summaryrefslogtreecommitdiff
path: root/cui/source/tabpages/page.cxx
blob: 054bc8fb16ed318421028dcee742ca060af2fd76 (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
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
/* -*- 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 <memory>
#include <sfx2/app.hxx>
#include <sfx2/objsh.hxx>
#include <sfx2/printer.hxx>
#include <vcl/graph.hxx>
#include <sfx2/viewsh.hxx>
#include <svl/itemiter.hxx>
#include <svl/languageoptions.hxx>
#include <vcl/weld.hxx>
#include <unotools/configitem.hxx>
#include <sfx2/htmlmode.hxx>
#include <sal/macros.h>

#include <svx/strings.hrc>
#include <svx/dialmgr.hxx>
#include <page.hxx>
#include <svx/pageitem.hxx>
#include <editeng/brushitem.hxx>
#include <editeng/boxitem.hxx>
#include <editeng/shaditem.hxx>
#include <editeng/pbinitem.hxx>
#include <editeng/lrspitem.hxx>
#include <editeng/ulspitem.hxx>
#include <editeng/sizeitem.hxx>
#include <editeng/frmdiritem.hxx>
#include <svx/dlgutil.hxx>
#include <editeng/paperinf.hxx>
#include <sfx2/module.hxx>
#include <svl/stritem.hxx>
#include <editeng/eerdll.hxx>
#include <editeng/editrids.hrc>
#include <svx/svxids.hrc>
#include <svtools/optionsdrawinglayer.hxx>
#include <svl/slstitm.hxx>
#include <svl/aeitem.hxx>
#include <sfx2/request.hxx>
#include <svx/xdef.hxx>
#include <svx/unobrushitemhelper.hxx>
#include <svx/SvxNumOptionsTabPageHelper.hxx>

// static ----------------------------------------------------------------

static const long MINBODY       = 284;  // 0,5 cm rounded up in twips
//static const long PRINT_OFFSET    = 17;   // 0,03 cm rounded down in twips
static const long PRINT_OFFSET  = 0;    // why was this ever set to 17 ? it led to wrong right and bottom margins.

const sal_uInt16 SvxPageDescPage::pRanges[] =
{
    SID_ATTR_BORDER_OUTER,
    SID_ATTR_BORDER_SHADOW,
    SID_ATTR_LRSPACE,
    SID_ATTR_PAGE_SHARED,
    SID_SWREGISTER_COLLECTION,
    SID_SWREGISTER_MODE,
    0
};
// ------- Mapping page layout ------------------------------------------

const SvxPageUsage aArr[] =
{
    SvxPageUsage::All,
    SvxPageUsage::Mirror,
    SvxPageUsage::Right,
    SvxPageUsage::Left
};


sal_uInt16 PageUsageToPos_Impl( SvxPageUsage nUsage )
{
    for ( sal_uInt16 i = 0; i < SAL_N_ELEMENTS(aArr); ++i )
        if ( aArr[i] ==  nUsage )
            return i;
    return 3;
}


SvxPageUsage PosToPageUsage_Impl( sal_uInt16 nPos )
{
    if ( nPos >= SAL_N_ELEMENTS(aArr) )
        return SvxPageUsage::NONE;
    return aArr[nPos];
}


Size GetMinBorderSpace_Impl( const SvxShadowItem& rShadow, const SvxBoxItem& rBox )
{
    Size aSz;
    aSz.setHeight( rShadow.CalcShadowSpace( SvxShadowItemSide::BOTTOM ) + rBox.CalcLineSpace( SvxBoxItemLine::BOTTOM ) );
    aSz.AdjustHeight(rShadow.CalcShadowSpace( SvxShadowItemSide::TOP ) + rBox.CalcLineSpace( SvxBoxItemLine::TOP ) );
    aSz.setWidth( rShadow.CalcShadowSpace( SvxShadowItemSide::LEFT ) + rBox.CalcLineSpace( SvxBoxItemLine::LEFT ) );
    aSz.AdjustWidth(rShadow.CalcShadowSpace( SvxShadowItemSide::RIGHT ) + rBox.CalcLineSpace( SvxBoxItemLine::RIGHT ) );
    return aSz;
}


long ConvertLong_Impl( const long nIn, MapUnit eUnit )
{
    return OutputDevice::LogicToLogic( nIn, eUnit, MapUnit::MapTwip );
}

bool IsEqualSize_Impl( const SvxSizeItem* pSize, const Size& rSize )
{
    if ( pSize )
    {
        Size aSize = pSize->GetSize();
        long nDiffW = std::abs( rSize.Width () - aSize.Width () );
        long nDiffH = std::abs( rSize.Height() - aSize.Height() );
        return ( nDiffW < 10 && nDiffH < 10 );
    }
    else
        return false;
}


#define MARGIN_LEFT     ( MarginPosition(0x0001) )
#define MARGIN_RIGHT    ( MarginPosition(0x0002) )
#define MARGIN_TOP      ( MarginPosition(0x0004) )
#define MARGIN_BOTTOM   ( MarginPosition(0x0008) )

// class SvxPageDescPage --------------------------------------------------

VclPtr<SfxTabPage> SvxPageDescPage::Create( TabPageParent pParent, const SfxItemSet* rSet )
{
    return VclPtr<SvxPageDescPage>::Create(pParent, *rSet);
}

SvxPageDescPage::SvxPageDescPage(TabPageParent pParent, const SfxItemSet& rAttr)
    : SfxTabPage(pParent, "cui/ui/pageformatpage.ui", "PageFormatPage", &rAttr)
    , bLandscape(false)
    , eMode(SVX_PAGE_MODE_STANDARD)
    , ePaperStart(PAPER_A3)
    , m_nPos(0)
    , mpDefPrinter(nullptr)
    , mbDelPrinter(false)
    , mbEnableDrawingLayerFillStyles(false)
    , m_xPaperSizeBox(new SvxPaperSizeListBox(m_xBuilder->weld_combo_box_text("comboPageFormat")))
    , m_xPaperWidthEdit(m_xBuilder->weld_metric_spin_button("spinWidth", FUNIT_CM))
    , m_xPaperHeightEdit(m_xBuilder->weld_metric_spin_button("spinHeight", FUNIT_CM))
    , m_xOrientationFT(m_xBuilder->weld_label("labelOrientation"))
    , m_xPortraitBtn(m_xBuilder->weld_radio_button("radiobuttonPortrait"))
    , m_xLandscapeBtn(m_xBuilder->weld_radio_button("radiobuttonLandscape"))
    , m_xTextFlowLbl(m_xBuilder->weld_label("labelTextFlow"))
    , m_xTextFlowBox(new svx::SvxFrameDirectionListBox(m_xBuilder->weld_combo_box_text("comboTextFlowBox")))
    , m_xPaperTrayBox(m_xBuilder->weld_combo_box_text("comboPaperTray"))
    , m_xLeftMarginLbl(m_xBuilder->weld_label("labelLeftMargin"))
    , m_xLeftMarginEdit(m_xBuilder->weld_metric_spin_button("spinMargLeft", FUNIT_CM))
    , m_xRightMarginLbl(m_xBuilder->weld_label("labelRightMargin"))
    , m_xRightMarginEdit(m_xBuilder->weld_metric_spin_button("spinMargRight", FUNIT_CM))
    , m_xTopMarginEdit(m_xBuilder->weld_metric_spin_button("spinMargTop", FUNIT_CM))
    , m_xBottomMarginEdit(m_xBuilder->weld_metric_spin_button("spinMargBot", FUNIT_CM))
    , m_xPageText(m_xBuilder->weld_label("labelPageLayout"))
    , m_xLayoutBox(m_xBuilder->weld_combo_box_text("comboPageLayout"))
    , m_xNumberFormatBox(new SvxPageNumberListBox(m_xBuilder->weld_combo_box_text("comboLayoutFormat")))
    , m_xTblAlignFT(m_xBuilder->weld_label("labelTblAlign"))
    , m_xHorzBox(m_xBuilder->weld_check_button("checkbuttonHorz"))
    , m_xVertBox(m_xBuilder->weld_check_button("checkbuttonVert"))
    , m_xAdaptBox(m_xBuilder->weld_check_button("checkAdaptBox"))
    , m_xRegisterCB(m_xBuilder->weld_check_button("checkRegisterTrue"))
    , m_xRegisterFT(m_xBuilder->weld_label("labelRegisterStyle"))
    , m_xRegisterLB(m_xBuilder->weld_combo_box_text("comboRegisterStyle"))
    // Strings stored in UI
    , m_xInsideLbl(m_xBuilder->weld_label("labelInner"))
    , m_xOutsideLbl(m_xBuilder->weld_label("labelOuter"))
    , m_xPrintRangeQueryText(m_xBuilder->weld_label("labelMsg"))
    , m_xBspWin(new weld::CustomWeld(*m_xBuilder, "drawingareaPageDirection", m_aBspWin))
{
    m_xRegisterLB->set_size_request(m_xRegisterLB->get_approximate_digit_width() * 20, -1);

    bBorderModified = false;
    m_aBspWin.EnableRTL(false);

    // this page needs ExchangeSupport
    SetExchangeSupport();

    SvtLanguageOptions aLangOptions;
    bool bCJK = aLangOptions.IsAsianTypographyEnabled();
    bool bCTL = aLangOptions.IsCTLFontEnabled();
    bool bWeb = false;
    const SfxPoolItem* pItem;

    SfxObjectShell* pShell;
    if(SfxItemState::SET == rAttr.GetItemState(SID_HTML_MODE, false, &pItem) ||
        ( nullptr != (pShell = SfxObjectShell::Current()) &&
                    nullptr != (pItem = pShell->GetItem(SID_HTML_MODE))))
        bWeb = 0 != (static_cast<const SfxUInt16Item*>(pItem)->GetValue() & HTMLMODE_ON);

    //  fill text flow listbox with valid entries

    m_xTextFlowBox->append(SvxFrameDirection::Horizontal_LR_TB, SvxResId(RID_SVXSTR_PAGEDIR_LTR_HORI));

    if (bCTL)
        m_xTextFlowBox->append(SvxFrameDirection::Horizontal_RL_TB, SvxResId(RID_SVXSTR_PAGEDIR_RTL_HORI));


    // #109989# do not show vertical directions in Writer/Web
    if( !bWeb )
    {
        if( bCJK )
        {
            m_xTextFlowBox->append(SvxFrameDirection::Vertical_RL_TB, SvxResId(RID_SVXSTR_PAGEDIR_RTL_VERT));
            m_xTextFlowBox->append(SvxFrameDirection::Vertical_LR_TB, SvxResId(RID_SVXSTR_PAGEDIR_LTR_VERT));
        }
    }

    // #109989# show the text direction box in Writer/Web too
    if( (bCJK || bCTL) &&
        SfxItemState::UNKNOWN < rAttr.GetItemState(GetWhich( SID_ATTR_FRAMEDIRECTION )))
    {
        m_xTextFlowLbl->show();
        m_xTextFlowBox->show();
        m_xTextFlowBox->connect_changed(LINK(this, SvxPageDescPage, FrameDirectionModify_Impl));

        m_aBspWin.EnableFrameDirection(true);
    }
    Init_Impl();

    FieldUnit eFUnit = GetModuleFieldUnit( rAttr );
    SetFieldUnit( *m_xLeftMarginEdit, eFUnit );
    SetFieldUnit( *m_xRightMarginEdit, eFUnit );
    SetFieldUnit( *m_xTopMarginEdit, eFUnit );
    SetFieldUnit( *m_xBottomMarginEdit, eFUnit );
    SetFieldUnit( *m_xPaperWidthEdit, eFUnit );
    SetFieldUnit( *m_xPaperHeightEdit, eFUnit );

    if ( SfxViewShell::Current() && SfxViewShell::Current()->GetPrinter() )
    {
        mpDefPrinter = SfxViewShell::Current()->GetPrinter();
    }
    else
    {
        mpDefPrinter = VclPtr<Printer>::Create();
        mbDelPrinter = true;
    }

    MapMode aOldMode = mpDefPrinter->GetMapMode();
    mpDefPrinter->SetMapMode(MapMode(MapUnit::MapTwip));

    // set first- and last-values for the margins
    Size aPaperSize = mpDefPrinter->GetPaperSize();
    Size aPrintSize = mpDefPrinter->GetOutputSize();

    /*
     * To convert a point ( 0,0 ) into logic coordinates
     * looks like nonsense; but it makes sense when the
     * coordinate system's origin has been moved.
     */
    Point aPrintOffset = mpDefPrinter->GetPageOffset() - mpDefPrinter->PixelToLogic( Point() );
    mpDefPrinter->SetMapMode( aOldMode );

    long nOffset = !aPrintOffset.X() && !aPrintOffset.Y() ? 0 : PRINT_OFFSET;
    nFirstLeftMargin = m_xLeftMarginEdit->convert_value_from(m_xLeftMarginEdit->normalize(aPrintOffset.X()), FUNIT_TWIP);
    nFirstRightMargin = m_xRightMarginEdit->convert_value_from(m_xRightMarginEdit->normalize(aPaperSize.Width() - aPrintSize.Width() - aPrintOffset.X() + nOffset), FUNIT_TWIP);
    nFirstTopMargin = m_xTopMarginEdit->convert_value_from(m_xTopMarginEdit->normalize(aPrintOffset.Y() ), FUNIT_TWIP);
    nFirstBottomMargin = m_xBottomMarginEdit->convert_value_from(m_xBottomMarginEdit->normalize(aPaperSize.Height() - aPrintSize.Height() - aPrintOffset.Y() + nOffset), FUNIT_TWIP );
    nLastLeftMargin = m_xLeftMarginEdit->convert_value_from(m_xLeftMarginEdit->normalize(aPrintOffset.X() + aPrintSize.Width()), FUNIT_TWIP);
    nLastRightMargin = m_xRightMarginEdit->convert_value_from(m_xRightMarginEdit->normalize(aPrintOffset.X() + aPrintSize.Width()), FUNIT_TWIP);
    nLastTopMargin = m_xTopMarginEdit->convert_value_from(m_xTopMarginEdit->normalize(aPrintOffset.Y() + aPrintSize.Height()), FUNIT_TWIP);
    nLastBottomMargin = m_xBottomMarginEdit->convert_value_from(m_xBottomMarginEdit->normalize(aPrintOffset.Y() + aPrintSize.Height()), FUNIT_TWIP);

    // #i4219# get DrawingLayer options
    const SvtOptionsDrawinglayer aDrawinglayerOpt;

    // #i4219# take Maximum now from configuration (1/100th cm)
    // was: 11900 -> 119 cm ;new value 3 meters -> 300 cm -> 30000
    m_xPaperWidthEdit->set_max(m_xPaperWidthEdit->normalize(aDrawinglayerOpt.GetMaximumPaperWidth()), FUNIT_CM);
    m_xPaperHeightEdit->set_max(m_xPaperHeightEdit->normalize(aDrawinglayerOpt.GetMaximumPaperHeight()), FUNIT_CM);

    // #i4219# also for margins (1/100th cm). Was: 9999, keeping.
    m_xLeftMarginEdit->set_max(m_xLeftMarginEdit->normalize(aDrawinglayerOpt.GetMaximumPaperLeftMargin()), FUNIT_MM);
    m_xRightMarginEdit->set_max(m_xRightMarginEdit->normalize(aDrawinglayerOpt.GetMaximumPaperRightMargin()), FUNIT_MM);
    m_xTopMarginEdit->set_max(m_xTopMarginEdit->normalize(aDrawinglayerOpt.GetMaximumPaperTopMargin()), FUNIT_MM);
    m_xBottomMarginEdit->set_max(m_xBottomMarginEdit->normalize(aDrawinglayerOpt.GetMaximumPaperBottomMargin()), FUNIT_MM);

    // Get the i18n framework numberings and add them to the listbox.
    SvxNumOptionsTabPageHelper::GetI18nNumbering(m_xNumberFormatBox->get_widget(), std::numeric_limits<sal_uInt16>::max());
}

SvxPageDescPage::~SvxPageDescPage()
{
    disposeOnce();
}

void SvxPageDescPage::dispose()
{
    if(mbDelPrinter)
    {
        mpDefPrinter.disposeAndClear();
        mbDelPrinter = false;
    }
    SfxTabPage::dispose();
}

void SvxPageDescPage::Init_Impl()
{
    // adjust the handler
    m_xLayoutBox->connect_changed(LINK(this, SvxPageDescPage, LayoutHdl_Impl));

    m_xPaperTrayBox->connect_changed(LINK(this, SvxPageDescPage, PaperBinHdl_Impl));
    m_xPaperSizeBox->connect_changed(LINK(this, SvxPageDescPage, PaperSizeSelect_Impl));
    m_xPaperWidthEdit->connect_value_changed( LINK(this, SvxPageDescPage, PaperSizeModify_Impl));
    m_xPaperHeightEdit->connect_value_changed(LINK(this, SvxPageDescPage, PaperSizeModify_Impl));
    m_xLandscapeBtn->connect_clicked(LINK(this, SvxPageDescPage, SwapOrientation_Impl));
    m_xPortraitBtn->connect_clicked(LINK(this, SvxPageDescPage, SwapOrientation_Impl));

    Link<weld::MetricSpinButton&, void> aLink = LINK(this, SvxPageDescPage, BorderModify_Impl);
    m_xLeftMarginEdit->connect_value_changed(aLink);
    m_xRightMarginEdit->connect_value_changed(aLink);
    m_xTopMarginEdit->connect_value_changed(aLink);
    m_xBottomMarginEdit->connect_value_changed(aLink);

    m_xHorzBox->connect_toggled(LINK(this, SvxPageDescPage, CenterHdl_Impl));
    m_xVertBox->connect_toggled(LINK(this, SvxPageDescPage, CenterHdl_Impl));
}

void SvxPageDescPage::Reset( const SfxItemSet* rSet )
{
    SfxItemPool* pPool = rSet->GetPool();
    DBG_ASSERT( pPool, "Where is the pool?" );
    MapUnit eUnit = pPool->GetMetric( GetWhich( SID_ATTR_LRSPACE ) );

    // adjust margins (right/left)
    const SfxPoolItem* pItem = GetItem( *rSet, SID_ATTR_LRSPACE );

    if ( pItem )
    {
        const SvxLRSpaceItem& rLRSpace = static_cast<const SvxLRSpaceItem&>(*pItem);
        SetMetricValue( *m_xLeftMarginEdit, rLRSpace.GetLeft(), eUnit );
        m_aBspWin.SetLeft(
            static_cast<sal_uInt16>(ConvertLong_Impl( rLRSpace.GetLeft(), eUnit )) );
        SetMetricValue( *m_xRightMarginEdit, rLRSpace.GetRight(), eUnit );
        m_aBspWin.SetRight(
            static_cast<sal_uInt16>(ConvertLong_Impl( rLRSpace.GetRight(), eUnit )) );
    }

    // adjust margins (top/bottom)
    pItem = GetItem( *rSet, SID_ATTR_ULSPACE );

    if ( pItem )
    {
        const SvxULSpaceItem& rULSpace = static_cast<const SvxULSpaceItem&>(*pItem);
        SetMetricValue( *m_xTopMarginEdit, rULSpace.GetUpper(), eUnit );
        m_aBspWin.SetTop(
            static_cast<sal_uInt16>(ConvertLong_Impl( static_cast<long>(rULSpace.GetUpper()), eUnit )) );
        SetMetricValue( *m_xBottomMarginEdit, rULSpace.GetLower(), eUnit );
        m_aBspWin.SetBottom(
            static_cast<sal_uInt16>(ConvertLong_Impl( static_cast<long>(rULSpace.GetLower()), eUnit )) );
    }

    // general page data
    SvxNumType eNumType = SVX_NUM_ARABIC;
    bLandscape = ( mpDefPrinter->GetOrientation() == Orientation::Landscape );
    SvxPageUsage nUse = SvxPageUsage::All;
    pItem = GetItem( *rSet, SID_ATTR_PAGE );

    if ( pItem )
    {
        const SvxPageItem& rItem = static_cast<const SvxPageItem&>(*pItem);
        eNumType = rItem.GetNumType();
        nUse = rItem.GetPageUsage();
        bLandscape = rItem.IsLandscape();
    }

    // alignment
    m_xLayoutBox->set_active(::PageUsageToPos_Impl(nUse));
    m_aBspWin.SetUsage( nUse );
    LayoutHdl_Impl( *m_xLayoutBox );

    //adjust numeration type of the page style
    //Get the Position of the saved NumType
    for (int i=0; i < m_xNumberFormatBox->get_count(); ++i)
    {
        if (eNumType == m_xNumberFormatBox->get_id(i).toInt32())
        {
            m_xNumberFormatBox->set_active(i);
            break;
        }
    }

    m_xPaperTrayBox->clear();
    sal_uInt8 nPaperBin = PAPERBIN_PRINTER_SETTINGS;
    pItem = GetItem( *rSet, SID_ATTR_PAGE_PAPERBIN );

    if ( pItem )
    {
        nPaperBin = static_cast<const SvxPaperBinItem*>(pItem)->GetValue();

        if ( nPaperBin >= mpDefPrinter->GetPaperBinCount() )
            nPaperBin = PAPERBIN_PRINTER_SETTINGS;
    }

    OUString aBinName;

    if ( PAPERBIN_PRINTER_SETTINGS  == nPaperBin )
        aBinName = EditResId(RID_SVXSTR_PAPERBIN_SETTINGS);
    else
        aBinName = mpDefPrinter->GetPaperBinName( static_cast<sal_uInt16>(nPaperBin) );

    m_xPaperTrayBox->append(OUString::number(nPaperBin), aBinName);
    m_xPaperTrayBox->set_active_text(aBinName);

    Size aPaperSize = SvxPaperInfo::GetPaperSize( mpDefPrinter );
    pItem = GetItem( *rSet, SID_ATTR_PAGE_SIZE );

    if ( pItem )
        aPaperSize = static_cast<const SvxSizeItem*>(pItem)->GetSize();

    bool bOrientationSupport =
        mpDefPrinter->HasSupport( PrinterSupport::SetOrientation );

    if ( !bOrientationSupport &&
         aPaperSize.Width() > aPaperSize.Height() )
        bLandscape = true;

    m_xLandscapeBtn->set_active(bLandscape);
    m_xPortraitBtn->set_active(!bLandscape);

    m_aBspWin.SetSize( Size( ConvertLong_Impl( aPaperSize.Width(), eUnit ),
                           ConvertLong_Impl( aPaperSize.Height(), eUnit ) ) );

    aPaperSize = OutputDevice::LogicToLogic(aPaperSize, MapMode(eUnit), MapMode(MapUnit::Map100thMM));
    if ( bLandscape )
        Swap( aPaperSize );

    // Actual Paper Format
    Paper ePaper = SvxPaperInfo::GetSvxPaper( aPaperSize, MapUnit::Map100thMM );

    if ( PAPER_USER != ePaper )
        aPaperSize = SvxPaperInfo::GetPaperSize( ePaper, MapUnit::Map100thMM );

    if ( bLandscape )
        Swap( aPaperSize );

    // write values into the edits
    SetMetricValue( *m_xPaperHeightEdit, aPaperSize.Height(), MapUnit::Map100thMM );
    SetMetricValue( *m_xPaperWidthEdit, aPaperSize.Width(), MapUnit::Map100thMM );
    m_xPaperSizeBox->clear();

    m_xPaperSizeBox->FillPaperSizeEntries( ( ePaperStart == PAPER_A3 ) ? PaperSizeApp::Std : PaperSizeApp::Draw );
    m_xPaperSizeBox->SetSelection( ePaper );

    // application specific

    switch ( eMode )
    {
        case SVX_PAGE_MODE_CENTER:
        {
            m_xTblAlignFT->show();
            m_xHorzBox->show();
            m_xVertBox->show();
            DisableVerticalPageDir();

            // horizontal alignment
            pItem = GetItem( *rSet, SID_ATTR_PAGE_EXT1 );
            m_xHorzBox->set_active(pItem && static_cast<const SfxBoolItem*>(pItem)->GetValue());

            // vertical alignment
            pItem = GetItem( *rSet, SID_ATTR_PAGE_EXT2 );
            m_xVertBox->set_active(pItem && static_cast<const SfxBoolItem*>(pItem)->GetValue());

            // set example window on the table
            m_aBspWin.SetTable( true );
            m_aBspWin.SetHorz(m_xHorzBox->get_active());
            m_aBspWin.SetVert(m_xVertBox->get_active());

            break;
        }

        case SVX_PAGE_MODE_PRESENTATION:
        {
            DisableVerticalPageDir();
            m_xAdaptBox->show();
            pItem = GetItem( *rSet, SID_ATTR_PAGE_EXT1 );
            m_xAdaptBox->set_active( pItem &&
                static_cast<const SfxBoolItem*>(pItem)->GetValue() );

            //!!! hidden, because not implemented by StarDraw
            m_xLayoutBox->hide();
            m_xPageText->hide();

            break;
        }
        default: ;//prevent warning
    }


    // display background and border in the example
    ResetBackground_Impl( *rSet );
//! UpdateExample_Impl();
    RangeHdl_Impl();

    InitHeadFoot_Impl( *rSet );

    bBorderModified = false;
    SwapFirstValues_Impl( false );
    UpdateExample_Impl();

    m_xLeftMarginEdit->save_value();
    m_xRightMarginEdit->save_value();
    m_xTopMarginEdit->save_value();
    m_xBottomMarginEdit->save_value();
    m_xLayoutBox->save_value();
    m_xNumberFormatBox->save_value();
    m_xPaperSizeBox->save_value();
    m_xPaperWidthEdit->save_value();
    m_xPaperHeightEdit->save_value();
    m_xPortraitBtn->save_state();
    m_xLandscapeBtn->save_state();
    m_xPaperTrayBox->save_value();
    m_xVertBox->save_state();
    m_xHorzBox->save_state();
    m_xAdaptBox->save_state();

    CheckMarginEdits( true );


    if(SfxItemState::SET == rSet->GetItemState(SID_SWREGISTER_MODE))
    {
        m_xRegisterCB->set_active(static_cast<const SfxBoolItem&>(rSet->Get(
                                  SID_SWREGISTER_MODE)).GetValue());
        m_xRegisterCB->save_state();
        RegisterModify(*m_xRegisterCB);
    }
    if(SfxItemState::SET == rSet->GetItemState(SID_SWREGISTER_COLLECTION))
    {
        m_xRegisterLB->set_active_text(
                static_cast<const SfxStringItem&>(rSet->Get(SID_SWREGISTER_COLLECTION)).GetValue());
        m_xRegisterLB->save_value();
    }

    SfxItemState eState = rSet->GetItemState( GetWhich( SID_ATTR_FRAMEDIRECTION ),
                                                true, &pItem );
    if( SfxItemState::UNKNOWN != eState )
    {
        SvxFrameDirection nVal  = SfxItemState::SET == eState
                                ? static_cast<const SvxFrameDirectionItem*>(pItem)->GetValue()
                                : SvxFrameDirection::Horizontal_LR_TB;
        m_xTextFlowBox->set_active_id(nVal);

        m_xTextFlowBox->save_value();
        m_aBspWin.SetFrameDirection(nVal);
    }
}

void SvxPageDescPage::FillUserData()
{
    if (SVX_PAGE_MODE_PRESENTATION == eMode)
        SetUserData(m_xAdaptBox->get_active() ? OUString("1") : OUString("0")) ;

}

bool SvxPageDescPage::FillItemSet( SfxItemSet* rSet )
{
    bool bModified = false;
    const SfxItemSet& rOldSet = GetItemSet();
    SfxItemPool* pPool = rOldSet.GetPool();
    DBG_ASSERT( pPool, "Where is the pool?" );
    sal_uInt16 nWhich = GetWhich( SID_ATTR_LRSPACE );
    MapUnit eUnit = pPool->GetMetric( nWhich );
    const SfxPoolItem* pOld = nullptr;

    // copy old left and right margins
    SvxLRSpaceItem aMargin( static_cast<const SvxLRSpaceItem&>(rOldSet.Get( nWhich )) );

    // copy old top and bottom margins
    nWhich = GetWhich( SID_ATTR_ULSPACE );
    SvxULSpaceItem aTopMargin( static_cast<const SvxULSpaceItem&>(rOldSet.Get( nWhich )) );

    if (m_xLeftMarginEdit->get_value_changed_from_saved())
    {
        aMargin.SetLeft( static_cast<sal_uInt16>(GetCoreValue( *m_xLeftMarginEdit, eUnit )) );
        bModified = true;
    }

    if (m_xRightMarginEdit->get_value_changed_from_saved())
    {
        aMargin.SetRight( static_cast<sal_uInt16>(GetCoreValue( *m_xRightMarginEdit, eUnit )) );
        bModified = true;
    }

    // set left and right margins
    if (bModified)
    {
        pOld = GetOldItem( *rSet, SID_ATTR_LRSPACE );

        if ( !pOld || !( *static_cast<const SvxLRSpaceItem*>(pOld) == aMargin ) )
            rSet->Put( aMargin );
        else
            bModified = false;
    }

    bool bMod = false;

    if (m_xTopMarginEdit->get_value_changed_from_saved())
    {
        aTopMargin.SetUpper( static_cast<sal_uInt16>(GetCoreValue( *m_xTopMarginEdit, eUnit )) );
        bMod = true;
    }

    if (m_xBottomMarginEdit->get_value_changed_from_saved())
    {
        aTopMargin.SetLower( static_cast<sal_uInt16>(GetCoreValue( *m_xBottomMarginEdit, eUnit )) );
        bMod = true;
    }

    // set top and bottom margins

    if ( bMod )
    {
        pOld = GetOldItem( *rSet, SID_ATTR_ULSPACE );

        if ( !pOld || !( *static_cast<const SvxULSpaceItem*>(pOld) == aTopMargin ) )
        {
            bModified = true;
            rSet->Put( aTopMargin );
        }
    }

    // paper tray
    nWhich = GetWhich( SID_ATTR_PAGE_PAPERBIN );
    sal_Int32 nPos = m_xPaperTrayBox->get_active();
    sal_uInt16 nBin = m_xPaperTrayBox->get_id(nPos).toInt32();
    pOld = GetOldItem( *rSet, SID_ATTR_PAGE_PAPERBIN );

    if ( !pOld || static_cast<const SvxPaperBinItem*>(pOld)->GetValue() != nBin )
    {
        rSet->Put( SvxPaperBinItem( nWhich, static_cast<sal_uInt8>(nBin) ) );
        bModified = true;
    }

    Paper ePaper = m_xPaperSizeBox->GetSelection();
    bool bChecked = m_xLandscapeBtn->get_active();

    if ( PAPER_USER == ePaper )
    {
        if ( m_xPaperSizeBox->get_value_changed_from_saved()    ||
             m_xPaperWidthEdit->get_value_changed_from_saved()  ||
             m_xPaperHeightEdit->get_value_changed_from_saved() ||
             m_xLandscapeBtn->get_state_changed_from_saved() )
        {
            Size aSize( GetCoreValue( *m_xPaperWidthEdit, eUnit ),
                        GetCoreValue( *m_xPaperHeightEdit, eUnit ) );
            pOld = GetOldItem( *rSet, SID_ATTR_PAGE_SIZE );

            if ( !pOld || static_cast<const SvxSizeItem*>(pOld)->GetSize() != aSize )
            {
                rSet->Put( SvxSizeItem( GetWhich(SID_ATTR_PAGE_SIZE), aSize ) );
                bModified = true;
            }
        }
    }
    else
    {
        if (m_xPaperSizeBox->get_value_changed_from_saved() || m_xLandscapeBtn->get_state_changed_from_saved())
        {
            Size aSize( SvxPaperInfo::GetPaperSize( ePaper, eUnit ) );

            if ( bChecked )
                Swap( aSize );

            pOld = GetOldItem( *rSet, SID_ATTR_PAGE_SIZE );

            if ( !pOld || static_cast<const SvxSizeItem*>(pOld)->GetSize() != aSize )
            {
                rSet->Put( SvxSizeItem( GetWhich(SID_ATTR_PAGE_SIZE), aSize ) );
                bModified = true;
            }
        }
    }

    nWhich = GetWhich( SID_ATTR_PAGE );
    SvxPageItem aPage( static_cast<const SvxPageItem&>(rOldSet.Get( nWhich )) );
    bMod = m_xLayoutBox->get_value_changed_from_saved();

    if ( bMod )
        aPage.SetPageUsage(::PosToPageUsage_Impl(m_xLayoutBox->get_active()));

    if (m_xLandscapeBtn->get_state_changed_from_saved())
    {
        aPage.SetLandscape(bChecked);
        bMod = true;
    }

    //Get the NumType value
    nPos = m_xNumberFormatBox->get_active();
    SvxNumType nEntryData = static_cast<SvxNumType>(m_xNumberFormatBox->get_id(nPos).toInt32());
    if (m_xNumberFormatBox->get_value_changed_from_saved())
    {
        aPage.SetNumType( nEntryData );
        bMod = true;
    }

    if ( bMod )
    {
        pOld = GetOldItem( *rSet, SID_ATTR_PAGE );

        if ( !pOld || !( *static_cast<const SvxPageItem*>(pOld) == aPage ) )
        {
            rSet->Put( aPage );
            bModified = true;
        }
    }
    else if ( SfxItemState::DEFAULT == rOldSet.GetItemState( nWhich ) )
        rSet->ClearItem( nWhich );
    else
        rSet->Put( rOldSet.Get( nWhich ) );

    // evaluate mode specific controls

    switch ( eMode )
    {
        case SVX_PAGE_MODE_CENTER:
        {
            if (m_xHorzBox->get_state_changed_from_saved())
            {
                SfxBoolItem aHorz( GetWhich( SID_ATTR_PAGE_EXT1 ),
                                   m_xHorzBox->get_active() );
                rSet->Put( aHorz );
                bModified = true;
            }

            if (m_xVertBox->get_state_changed_from_saved())
            {
                SfxBoolItem aVert( GetWhich( SID_ATTR_PAGE_EXT2 ),
                                   m_xVertBox->get_active() );
                rSet->Put( aVert );
                bModified = true;
            }
            break;
        }

        case SVX_PAGE_MODE_PRESENTATION:
        {
            // always put so that draw can evaluate this
            rSet->Put( SfxBoolItem( GetWhich( SID_ATTR_PAGE_EXT1 ),
                      m_xAdaptBox->get_active() ) );
            bModified = true;
            break;
        }
        default: ;//prevent warning

    }

    if (m_xRegisterCB->get_visible() &&
       (m_xRegisterCB->get_active() || m_xRegisterCB->get_state_changed_from_saved()))
    {
        const SfxBoolItem& rRegItem = static_cast<const SfxBoolItem&>(rOldSet.Get(SID_SWREGISTER_MODE));
        std::unique_ptr<SfxBoolItem> pRegItem(static_cast<SfxBoolItem*>(rRegItem.Clone()));
        bool bCheck = m_xRegisterCB->get_active();
        pRegItem->SetValue(bCheck);
        rSet->Put(*pRegItem);
        bModified = true;
        if(bCheck)
        {
            bModified = true;
            rSet->Put(SfxStringItem(SID_SWREGISTER_COLLECTION,
                            m_xRegisterLB->get_active_text()));
        }
    }

    if (m_xTextFlowBox->get_visible() && m_xTextFlowBox->get_value_changed_from_saved())
    {
        SvxFrameDirection eDirection = m_xTextFlowBox->get_active_id();
        rSet->Put( SvxFrameDirectionItem( eDirection, GetWhich( SID_ATTR_FRAMEDIRECTION ) ) );
        bModified = true;
    }

    return bModified;
}

IMPL_LINK_NOARG(SvxPageDescPage, LayoutHdl_Impl, weld::ComboBoxText&, void)
{
    // switch inside outside
    const SvxPageUsage nUsage = PosToPageUsage_Impl(m_xLayoutBox->get_active());

    if (nUsage == SvxPageUsage::Mirror)
    {
        m_xLeftMarginLbl->hide();
        m_xRightMarginLbl->hide();
        m_xInsideLbl->show();
        m_xOutsideLbl->show();
    }
    else
    {
        m_xLeftMarginLbl->show();
        m_xRightMarginLbl->show();
        m_xInsideLbl->hide();
        m_xOutsideLbl->hide();
    }
    UpdateExample_Impl( true );
}

IMPL_LINK_NOARG(SvxPageDescPage, PaperBinHdl_Impl, weld::ComboBoxText&, void)
{
    if (m_xPaperTrayBox->get_count() > 1)
        // already filled
        return;

    OUString aOldName = m_xPaperTrayBox->get_active_text();
    m_xPaperTrayBox->freeze();
    m_xPaperTrayBox->clear();
    m_xPaperTrayBox->append(OUString::number(PAPERBIN_PRINTER_SETTINGS), EditResId(RID_SVXSTR_PAPERBIN_SETTINGS));
    OUString aPaperBin(EditResId(RID_SVXSTR_PAPERBIN));
    const sal_uInt16 nBinCount = mpDefPrinter->GetPaperBinCount();

    for (sal_uInt16 i = 0; i < nBinCount; ++i)
    {
        OUString aName = mpDefPrinter->GetPaperBinName(i);
        if (aName.isEmpty())
        {
            aName = aPaperBin + " " + OUString::number( i+1 );
        }
        m_xPaperTrayBox->append(OUString::number(i), aName);
    }
    m_xPaperTrayBox->set_active_text(aOldName);
    m_xPaperTrayBox->thaw();
}

IMPL_LINK_NOARG(SvxPageDescPage, PaperSizeSelect_Impl, weld::ComboBoxText&, void)
{
    Paper ePaper = m_xPaperSizeBox->GetSelection();

    if ( ePaper != PAPER_USER )
    {
        Size aSize( SvxPaperInfo::GetPaperSize( ePaper, MapUnit::Map100thMM ) );

        if (m_xLandscapeBtn->get_active())
            Swap( aSize );

        if ( aSize.Height() < m_xPaperHeightEdit->get_min( FUNIT_100TH_MM ) )
            m_xPaperHeightEdit->set_min(
                m_xPaperHeightEdit->normalize( aSize.Height() ), FUNIT_100TH_MM );
        if ( aSize.Width() < m_xPaperWidthEdit->get_min( FUNIT_100TH_MM ) )
            m_xPaperWidthEdit->set_min(
                m_xPaperWidthEdit->normalize( aSize.Width() ), FUNIT_100TH_MM );
        SetMetricValue( *m_xPaperHeightEdit, aSize.Height(), MapUnit::Map100thMM );
        SetMetricValue( *m_xPaperWidthEdit, aSize.Width(), MapUnit::Map100thMM );

        CalcMargin_Impl();

        RangeHdl_Impl();
        UpdateExample_Impl( true );

        if ( eMode == SVX_PAGE_MODE_PRESENTATION )
        {
            // Draw: if paper format the margin shall be 1 cm
            long nTmp = 0;
            bool bScreen = (( PAPER_SCREEN_4_3 == ePaper )||( PAPER_SCREEN_16_9 == ePaper)||( PAPER_SCREEN_16_10 == ePaper));

            if ( !bScreen )
                // no margin if screen
                nTmp = 1; // accordingly 1 cm

            if ( bScreen || m_xRightMarginEdit->get_value(FUNIT_NONE) == 0 )
                SetMetricValue( *m_xRightMarginEdit, nTmp, MapUnit::MapCM );
            if ( bScreen || m_xLeftMarginEdit->get_value(FUNIT_NONE) == 0 )
                SetMetricValue( *m_xLeftMarginEdit, nTmp, MapUnit::MapCM );
            if ( bScreen || m_xBottomMarginEdit->get_value(FUNIT_NONE) == 0 )
                SetMetricValue( *m_xBottomMarginEdit, nTmp, MapUnit::MapCM );
            if ( bScreen || m_xTopMarginEdit->get_value(FUNIT_NONE) == 0 )
                SetMetricValue( *m_xTopMarginEdit, nTmp, MapUnit::MapCM );
            UpdateExample_Impl( true );
        }
    }
}

IMPL_LINK_NOARG(SvxPageDescPage, PaperSizeModify_Impl, weld::MetricSpinButton&, void)
{
    sal_uInt16 nWhich = GetWhich( SID_ATTR_LRSPACE );
    MapUnit eUnit = GetItemSet().GetPool()->GetMetric( nWhich );
    Size aSize( GetCoreValue( *m_xPaperWidthEdit, eUnit ),
                GetCoreValue( *m_xPaperHeightEdit, eUnit ) );

    if ( aSize.Width() > aSize.Height() )
    {
        m_xLandscapeBtn->set_active(true);
        bLandscape = true;
    }
    else
    {
        m_xPortraitBtn->set_active(true);
        bLandscape = false;
    }

    Paper ePaper = SvxPaperInfo::GetSvxPaper( aSize, eUnit );
    m_xPaperSizeBox->SetSelection( ePaper );
    UpdateExample_Impl( true );

    RangeHdl_Impl();
}

IMPL_LINK(SvxPageDescPage, SwapOrientation_Impl, weld::Button&, rBtn, void)
{
    if (
        (!bLandscape && &rBtn == m_xLandscapeBtn.get()) ||
        (bLandscape  && &rBtn == m_xPortraitBtn.get())
       )
    {
        bLandscape = m_xLandscapeBtn->get_active();

        const long lWidth = GetCoreValue( *m_xPaperWidthEdit, MapUnit::Map100thMM );
        const long lHeight = GetCoreValue( *m_xPaperHeightEdit, MapUnit::Map100thMM );

        // swap width and height
        SetMetricValue(*m_xPaperWidthEdit, lHeight, MapUnit::Map100thMM);
        SetMetricValue(*m_xPaperHeightEdit, lWidth, MapUnit::Map100thMM);

        // recalculate margins if necessary
        CalcMargin_Impl();

        PaperSizeSelect_Impl(m_xPaperSizeBox->get_widget());
        RangeHdl_Impl();
        SwapFirstValues_Impl(bBorderModified);
        UpdateExample_Impl(true);
    }
}

void SvxPageDescPage::SwapFirstValues_Impl( bool bSet )
{
    MapMode aOldMode = mpDefPrinter->GetMapMode();
    Orientation eOri = Orientation::Portrait;

    if ( bLandscape )
        eOri = Orientation::Landscape;
    Orientation eOldOri = mpDefPrinter->GetOrientation();
    mpDefPrinter->SetOrientation( eOri );
    mpDefPrinter->SetMapMode(MapMode(MapUnit::MapTwip));

    // set first- and last-values for margins
    Size aPaperSize = mpDefPrinter->GetPaperSize();
    Size aPrintSize = mpDefPrinter->GetOutputSize();
    /*
     * To convert a point ( 0,0 ) into logic coordinates
     * looks like nonsense; but it makes sense if the
     * coordinate system's origin has been moved.
     */
    Point aPrintOffset = mpDefPrinter->GetPageOffset() - mpDefPrinter->PixelToLogic( Point() );
    mpDefPrinter->SetMapMode( aOldMode );
    mpDefPrinter->SetOrientation( eOldOri );

    sal_Int64 nSetL = m_xLeftMarginEdit->denormalize(
                    m_xLeftMarginEdit->get_value( FUNIT_TWIP ) );
    sal_Int64 nSetR = m_xRightMarginEdit->denormalize(
                    m_xRightMarginEdit->get_value( FUNIT_TWIP ) );
    sal_Int64 nSetT = m_xTopMarginEdit->denormalize(
                    m_xTopMarginEdit->get_value( FUNIT_TWIP ) );
    sal_Int64 nSetB = m_xBottomMarginEdit->denormalize(
                    m_xBottomMarginEdit->get_value( FUNIT_TWIP ) );

    long nOffset = !aPrintOffset.X() && !aPrintOffset.Y() ? 0 : PRINT_OFFSET;
    long nNewL = aPrintOffset.X();
    long nNewR =
        aPaperSize.Width() - aPrintSize.Width() - aPrintOffset.X() + nOffset;
    long nNewT = aPrintOffset.Y();
    long nNewB =
        aPaperSize.Height() - aPrintSize.Height() - aPrintOffset.Y() + nOffset;

    nFirstLeftMargin = m_xLeftMarginEdit->convert_value_from(m_xLeftMarginEdit->normalize(nNewL), FUNIT_TWIP);
    nFirstRightMargin = m_xRightMarginEdit->convert_value_from(m_xRightMarginEdit->normalize(nNewR), FUNIT_TWIP);
    nFirstTopMargin = m_xTopMarginEdit->convert_value_from(m_xTopMarginEdit->normalize(nNewT), FUNIT_TWIP);
    nFirstBottomMargin = m_xBottomMarginEdit->convert_value_from(m_xBottomMarginEdit->normalize(nNewB), FUNIT_TWIP);

    if ( bSet )
    {
        if ( nSetL < nNewL )
            m_xLeftMarginEdit->set_value( m_xLeftMarginEdit->normalize( nNewL ),
                                      FUNIT_TWIP );
        if ( nSetR < nNewR )
            m_xRightMarginEdit->set_value( m_xRightMarginEdit->normalize( nNewR ),
                                       FUNIT_TWIP );
        if ( nSetT < nNewT )
            m_xTopMarginEdit->set_value( m_xTopMarginEdit->normalize( nNewT ),
                                     FUNIT_TWIP );
        if ( nSetB < nNewB )
            m_xBottomMarginEdit->set_value( m_xBottomMarginEdit->normalize( nNewB ),
                                        FUNIT_TWIP );
    }
}

IMPL_LINK_NOARG(SvxPageDescPage, BorderModify_Impl, weld::MetricSpinButton&, void)
{
    if ( !bBorderModified )
        bBorderModified = true;
    UpdateExample_Impl();

    RangeHdl_Impl();
}

void SvxPageDescPage::UpdateExample_Impl( bool bResetbackground )
{
    // Size
    Size aSize( GetCoreValue( *m_xPaperWidthEdit, MapUnit::MapTwip ),
                GetCoreValue( *m_xPaperHeightEdit, MapUnit::MapTwip ) );

    m_aBspWin.SetSize( aSize );

    // Margins
    m_aBspWin.SetTop( GetCoreValue( *m_xTopMarginEdit, MapUnit::MapTwip ) );
    m_aBspWin.SetBottom( GetCoreValue( *m_xBottomMarginEdit, MapUnit::MapTwip ) );
    m_aBspWin.SetLeft( GetCoreValue( *m_xLeftMarginEdit, MapUnit::MapTwip ) );
    m_aBspWin.SetRight( GetCoreValue( *m_xRightMarginEdit, MapUnit::MapTwip ) );

    // Layout
    m_aBspWin.SetUsage(PosToPageUsage_Impl(m_xLayoutBox->get_active()));
    if ( bResetbackground )
        m_aBspWin.ResetBackground();
    m_aBspWin.Invalidate();
}


void SvxPageDescPage::ResetBackground_Impl(const SfxItemSet& rSet)
{
    sal_uInt16 nWhich(GetWhich(SID_ATTR_PAGE_HEADERSET));

    if (SfxItemState::SET == rSet.GetItemState(nWhich, false))
    {
        const SvxSetItem& rSetItem = static_cast< const SvxSetItem& >(rSet.Get(nWhich, false));
        const SfxItemSet& rTmpSet = rSetItem.GetItemSet();
        const SfxBoolItem& rOn = static_cast< const SfxBoolItem& >(rTmpSet.Get(GetWhich(SID_ATTR_PAGE_ON)));

        if(rOn.GetValue())
        {
            drawinglayer::attribute::SdrAllFillAttributesHelperPtr aHeaderFillAttributes;

            if(mbEnableDrawingLayerFillStyles)
            {
                // create FillAttributes directly from DrawingLayer FillStyle entries
                aHeaderFillAttributes.reset(new drawinglayer::attribute::SdrAllFillAttributesHelper(rTmpSet));
            }
            else
            {
                nWhich = GetWhich(SID_ATTR_BRUSH);

                if(SfxItemState::SET == rTmpSet.GetItemState(nWhich))
                {
                    // create FillAttributes from SvxBrushItem
                    const SvxBrushItem& rItem = static_cast< const SvxBrushItem& >(rTmpSet.Get(nWhich));
                    SfxItemSet aTempSet(*rTmpSet.GetPool(), svl::Items<XATTR_FILL_FIRST, XATTR_FILL_LAST>{});

                    setSvxBrushItemAsFillAttributesToTargetSet(rItem, aTempSet);
                    aHeaderFillAttributes.reset(new drawinglayer::attribute::SdrAllFillAttributesHelper(aTempSet));
                }
            }

            m_aBspWin.setHeaderFillAttributes(aHeaderFillAttributes);
        }
    }

    nWhich = GetWhich(SID_ATTR_PAGE_FOOTERSET);

    if (SfxItemState::SET == rSet.GetItemState(nWhich, false))
    {
        const SvxSetItem& rSetItem = static_cast< const SvxSetItem& >(rSet.Get(nWhich,false));
        const SfxItemSet& rTmpSet = rSetItem.GetItemSet();
        const SfxBoolItem& rOn = static_cast< const SfxBoolItem& >(rTmpSet.Get(GetWhich(SID_ATTR_PAGE_ON)));

        if(rOn.GetValue())
        {
            drawinglayer::attribute::SdrAllFillAttributesHelperPtr aFooterFillAttributes;

            if(mbEnableDrawingLayerFillStyles)
            {
                // create FillAttributes directly from DrawingLayer FillStyle entries
                aFooterFillAttributes.reset(new drawinglayer::attribute::SdrAllFillAttributesHelper(rTmpSet));
            }
            else
            {
                nWhich = GetWhich(SID_ATTR_BRUSH);

                if(SfxItemState::SET == rTmpSet.GetItemState(nWhich))
                {
                    // create FillAttributes from SvxBrushItem
                    const SvxBrushItem& rItem = static_cast< const SvxBrushItem& >(rTmpSet.Get(nWhich));
                    SfxItemSet aTempSet(*rTmpSet.GetPool(), svl::Items<XATTR_FILL_FIRST, XATTR_FILL_LAST>{});

                    setSvxBrushItemAsFillAttributesToTargetSet(rItem, aTempSet);
                    aFooterFillAttributes.reset(new drawinglayer::attribute::SdrAllFillAttributesHelper(aTempSet));
                }
            }

            m_aBspWin.setFooterFillAttributes(aFooterFillAttributes);
        }
    }

    drawinglayer::attribute::SdrAllFillAttributesHelperPtr aPageFillAttributes;
    const SfxPoolItem* pItem = nullptr;

    if(mbEnableDrawingLayerFillStyles)
    {
        // create FillAttributes directly from DrawingLayer FillStyle entries
        aPageFillAttributes.reset(new drawinglayer::attribute::SdrAllFillAttributesHelper(rSet));
    }
    else
    {
        pItem = GetItem(rSet, SID_ATTR_BRUSH);

        if(pItem)
        {
            // create FillAttributes from SvxBrushItem
            const SvxBrushItem& rItem = static_cast< const SvxBrushItem& >(*pItem);
            SfxItemSet aTempSet(*rSet.GetPool(), svl::Items<XATTR_FILL_FIRST, XATTR_FILL_LAST>{});

            setSvxBrushItemAsFillAttributesToTargetSet(rItem, aTempSet);
            aPageFillAttributes.reset(new drawinglayer::attribute::SdrAllFillAttributesHelper(aTempSet));
        }
    }

    m_aBspWin.setPageFillAttributes(aPageFillAttributes);
}

void SvxPageDescPage::InitHeadFoot_Impl( const SfxItemSet& rSet )
{
    bLandscape = m_xLandscapeBtn->get_active();
    const SfxPoolItem* pItem = GetItem( rSet, SID_ATTR_PAGE_SIZE );

    if ( pItem )
        m_aBspWin.SetSize( static_cast<const SvxSizeItem*>(pItem)->GetSize() );

    const SvxSetItem* pSetItem = nullptr;

    // evaluate header attributes

    if ( SfxItemState::SET ==
         rSet.GetItemState( GetWhich( SID_ATTR_PAGE_HEADERSET ),
                            false, reinterpret_cast<const SfxPoolItem**>(&pSetItem) ) )
    {
        const SfxItemSet& rHeaderSet = pSetItem->GetItemSet();
        const SfxBoolItem& rHeaderOn =
            static_cast<const SfxBoolItem&>(rHeaderSet.Get( GetWhich( SID_ATTR_PAGE_ON ) ));

        if ( rHeaderOn.GetValue() )
        {
            const SvxSizeItem& rSize = static_cast<const SvxSizeItem&>(
                rHeaderSet.Get( GetWhich( SID_ATTR_PAGE_SIZE ) ));
            const SvxULSpaceItem& rUL = static_cast<const SvxULSpaceItem&>(
                rHeaderSet.Get( GetWhich( SID_ATTR_ULSPACE ) ));
            long nDist = rUL.GetLower();
            m_aBspWin.SetHdHeight( rSize.GetSize().Height() - nDist );
            m_aBspWin.SetHdDist( nDist );
            const SvxLRSpaceItem& rLR = static_cast<const SvxLRSpaceItem&>(
                rHeaderSet.Get( GetWhich( SID_ATTR_LRSPACE ) ));
            m_aBspWin.SetHdLeft( rLR.GetLeft() );
            m_aBspWin.SetHdRight( rLR.GetRight() );
            m_aBspWin.SetHeader( true );
        }
        else
            m_aBspWin.SetHeader( false );

        // show background and border in the example
        drawinglayer::attribute::SdrAllFillAttributesHelperPtr aHeaderFillAttributes;

        if(mbEnableDrawingLayerFillStyles)
        {
            // create FillAttributes directly from DrawingLayer FillStyle entries
            aHeaderFillAttributes.reset(new drawinglayer::attribute::SdrAllFillAttributesHelper(rHeaderSet));
        }
        else
        {
            const sal_uInt16 nWhich(GetWhich(SID_ATTR_BRUSH));

            if(rHeaderSet.GetItemState(nWhich) >= SfxItemState::DEFAULT)
            {
                // aBspWin.SetHdColor(rItem.GetColor());
                const SvxBrushItem& rItem = static_cast< const SvxBrushItem& >(rHeaderSet.Get(nWhich));
                SfxItemSet aTempSet(*rHeaderSet.GetPool(), svl::Items<XATTR_FILL_FIRST, XATTR_FILL_LAST>{});

                setSvxBrushItemAsFillAttributesToTargetSet(rItem, aTempSet);
                aHeaderFillAttributes.reset(new drawinglayer::attribute::SdrAllFillAttributesHelper(aTempSet));
            }
        }

        m_aBspWin.setHeaderFillAttributes(aHeaderFillAttributes);
    }

    // evaluate footer attributes

    if ( SfxItemState::SET ==
         rSet.GetItemState( GetWhich( SID_ATTR_PAGE_FOOTERSET ),
                            false, reinterpret_cast<const SfxPoolItem**>(&pSetItem) ) )
    {
        const SfxItemSet& rFooterSet = pSetItem->GetItemSet();
        const SfxBoolItem& rFooterOn =
            static_cast<const SfxBoolItem&>(rFooterSet.Get( GetWhich( SID_ATTR_PAGE_ON ) ));

        if ( rFooterOn.GetValue() )
        {
            const SvxSizeItem& rSize = static_cast<const SvxSizeItem&>(
                rFooterSet.Get( GetWhich( SID_ATTR_PAGE_SIZE ) ));
            const SvxULSpaceItem& rUL = static_cast<const SvxULSpaceItem&>(
                rFooterSet.Get( GetWhich( SID_ATTR_ULSPACE ) ));
            long nDist = rUL.GetUpper();
            m_aBspWin.SetFtHeight( rSize.GetSize().Height() - nDist );
            m_aBspWin.SetFtDist( nDist );
            const SvxLRSpaceItem& rLR = static_cast<const SvxLRSpaceItem&>(
                rFooterSet.Get( GetWhich( SID_ATTR_LRSPACE ) ));
            m_aBspWin.SetFtLeft( rLR.GetLeft() );
            m_aBspWin.SetFtRight( rLR.GetRight() );
            m_aBspWin.SetFooter( true );
        }
        else
            m_aBspWin.SetFooter( false );

        // show background and border in the example
        drawinglayer::attribute::SdrAllFillAttributesHelperPtr aFooterFillAttributes;

        if(mbEnableDrawingLayerFillStyles)
        {
            // create FillAttributes directly from DrawingLayer FillStyle entries
            aFooterFillAttributes.reset(new drawinglayer::attribute::SdrAllFillAttributesHelper(rFooterSet));
        }
        else
        {
            const sal_uInt16 nWhich(GetWhich(SID_ATTR_BRUSH));

            if(rFooterSet.GetItemState(nWhich) >= SfxItemState::DEFAULT)
            {
                // aBspWin.SetFtColor(rItem.GetColor());
                const SvxBrushItem& rItem = static_cast<const SvxBrushItem&>(rFooterSet.Get(nWhich));
                SfxItemSet aTempSet(*rFooterSet.GetPool(), svl::Items<XATTR_FILL_FIRST, XATTR_FILL_LAST>{});

                setSvxBrushItemAsFillAttributesToTargetSet(rItem, aTempSet);
                aFooterFillAttributes.reset(new drawinglayer::attribute::SdrAllFillAttributesHelper(aTempSet));
            }
        }

        m_aBspWin.setFooterFillAttributes(aFooterFillAttributes);
    }
}

void SvxPageDescPage::ActivatePage( const SfxItemSet& rSet )
{
    InitHeadFoot_Impl( rSet );
    UpdateExample_Impl();
    ResetBackground_Impl( rSet );
    RangeHdl_Impl();
}

DeactivateRC SvxPageDescPage::DeactivatePage( SfxItemSet* _pSet )
{
    // Inquiry whether the page margins are beyond the printing area.
    // If not, ask user whether they shall be taken.
    // If not, stay on the TabPage.
    Paper ePaper = m_xPaperSizeBox->GetSelection();

    if ( ePaper != PAPER_SCREEN_4_3 && ePaper != PAPER_SCREEN_16_9 && ePaper != PAPER_SCREEN_16_10 && IsMarginOutOfRange() )
    {
        std::unique_ptr<weld::MessageDialog> xQueryBox(Application::CreateMessageDialog(GetFrameWeld(),
                                                       VclMessageType::Question, VclButtonsType::YesNo,
                                                       m_xPrintRangeQueryText->get_label()));
        xQueryBox->set_default_response(RET_NO);
        if (xQueryBox->run() == RET_NO)
        {
            weld::MetricSpinButton* pField = nullptr;
            if ( IsPrinterRangeOverflow( *m_xLeftMarginEdit, nFirstLeftMargin, nLastLeftMargin, MARGIN_LEFT ) )
                pField = m_xLeftMarginEdit.get();
            if (    IsPrinterRangeOverflow( *m_xRightMarginEdit, nFirstRightMargin, nLastRightMargin, MARGIN_RIGHT )
                 && !pField )
                pField = m_xRightMarginEdit.get();
            if (    IsPrinterRangeOverflow( *m_xTopMarginEdit, nFirstTopMargin, nLastTopMargin, MARGIN_TOP )
                 && !pField )
                pField = m_xTopMarginEdit.get();
            if (    IsPrinterRangeOverflow( *m_xBottomMarginEdit, nFirstBottomMargin, nLastBottomMargin, MARGIN_BOTTOM )
                 && !pField )
                pField = m_xBottomMarginEdit.get();
            if ( pField )
                pField->grab_focus();
            UpdateExample_Impl();
            return DeactivateRC::KeepPage;
        }
        else
            CheckMarginEdits( false );
    }

    if ( _pSet )
    {
        FillItemSet( _pSet );

        // put portray/landscape if applicable
        sal_uInt16 nWh = GetWhich( SID_ATTR_PAGE_SIZE );
        MapUnit eUnit = GetItemSet().GetPool()->GetMetric( nWh );
        Size aSize( GetCoreValue( *m_xPaperWidthEdit, eUnit ),
                    GetCoreValue( *m_xPaperHeightEdit, eUnit ) );

        // put, if current size is different to the value in _pSet
        const SvxSizeItem* pSize = GetItem( *_pSet, SID_ATTR_PAGE_SIZE );
        if ( aSize.Width() && ( !pSize || !IsEqualSize_Impl( pSize, aSize ) ) )
            _pSet->Put( SvxSizeItem( nWh, aSize ) );
    }

    return DeactivateRC::LeavePage;
}

void SvxPageDescPage::RangeHdl_Impl()
{
    // example window
    long nHHeight = m_aBspWin.GetHdHeight();
    long nHDist = m_aBspWin.GetHdDist();

    long nFHeight = m_aBspWin.GetFtHeight();
    long nFDist = m_aBspWin.GetFtDist();

    long nHFLeft = std::max(m_aBspWin.GetHdLeft(), m_aBspWin.GetFtLeft());
    long nHFRight = std::max(m_aBspWin.GetHdRight(), m_aBspWin.GetFtRight());

    // current values for page margins
    long nBT = static_cast<long>(m_xTopMarginEdit->denormalize(m_xTopMarginEdit->get_value(FUNIT_TWIP)));
    long nBB = static_cast<long>(m_xBottomMarginEdit->denormalize(m_xBottomMarginEdit->get_value(FUNIT_TWIP)));
    long nBL = static_cast<long>(m_xLeftMarginEdit->denormalize(m_xLeftMarginEdit->get_value(FUNIT_TWIP)));
    long nBR = static_cast<long>(m_xRightMarginEdit->denormalize(m_xRightMarginEdit->get_value(FUNIT_TWIP)));

    // calculate width of page border
    const SfxItemSet* _pSet = &GetItemSet();
    Size aBorder;

    if ( _pSet->GetItemState( GetWhich(SID_ATTR_BORDER_SHADOW) ) >=
            SfxItemState::DEFAULT &&
         _pSet->GetItemState( GetWhich(SID_ATTR_BORDER_OUTER)  ) >=
            SfxItemState::DEFAULT )
    {
        aBorder = GetMinBorderSpace_Impl(
            static_cast<const SvxShadowItem&>(_pSet->Get(GetWhich(SID_ATTR_BORDER_SHADOW))),
            static_cast<const SvxBoxItem&>(_pSet->Get(GetWhich(SID_ATTR_BORDER_OUTER))));
    }

    // limits paper
    // maximum is 54 cm

    long nMin = nHHeight + nHDist + nFDist + nFHeight + nBT + nBB +
                MINBODY + aBorder.Height();
    m_xPaperHeightEdit->set_min(m_xPaperHeightEdit->normalize(nMin), FUNIT_TWIP);

    nMin = MINBODY + nBL + nBR + aBorder.Width();
    m_xPaperWidthEdit->set_min(m_xPaperWidthEdit->normalize(nMin), FUNIT_TWIP);

    long nH = static_cast<long>(m_xPaperHeightEdit->denormalize(m_xPaperHeightEdit->get_value(FUNIT_TWIP)));
    long nW = static_cast<long>(m_xPaperWidthEdit->denormalize(m_xPaperWidthEdit->get_value(FUNIT_TWIP)));

    // Top
    long nMax = nH - nBB - aBorder.Height() - MINBODY -
                nFDist - nFHeight - nHDist - nHHeight;

    m_xTopMarginEdit->set_max(m_xTopMarginEdit->normalize(nMax), FUNIT_TWIP);

    // Bottom
    nMax = nH - nBT - aBorder.Height() - MINBODY -
           nFDist - nFHeight - nHDist - nHHeight;

    m_xBottomMarginEdit->set_max(m_xTopMarginEdit->normalize(nMax), FUNIT_TWIP);

    // Left
    nMax = nW - nBR - MINBODY - aBorder.Width() - nHFLeft - nHFRight;
    m_xLeftMarginEdit->set_max(m_xLeftMarginEdit->normalize(nMax), FUNIT_TWIP);

    // Right
    nMax = nW - nBL - MINBODY - aBorder.Width() - nHFLeft - nHFRight;
    m_xRightMarginEdit->set_max(m_xRightMarginEdit->normalize(nMax), FUNIT_TWIP);
}

void SvxPageDescPage::CalcMargin_Impl()
{
    // current values for page margins
    long nBT = GetCoreValue( *m_xTopMarginEdit, MapUnit::MapTwip );
    long nBB = GetCoreValue( *m_xBottomMarginEdit, MapUnit::MapTwip );

    long nBL = GetCoreValue( *m_xLeftMarginEdit, MapUnit::MapTwip );
    long nBR = GetCoreValue( *m_xRightMarginEdit, MapUnit::MapTwip );

    long nH  = GetCoreValue( *m_xPaperHeightEdit, MapUnit::MapTwip );
    long nW  = GetCoreValue( *m_xPaperWidthEdit, MapUnit::MapTwip );

    long nWidth = nBL + nBR + MINBODY;
    long nHeight = nBT + nBB + MINBODY;

    if ( nWidth > nW || nHeight > nH )
    {
        if ( nWidth > nW )
        {
            long nTmp = nBL <= nBR ? nBR : nBL;
            nTmp -= nWidth - nW;

            if ( nBL <= nBR )
                SetMetricValue( *m_xRightMarginEdit, nTmp, MapUnit::MapTwip );
            else
                SetMetricValue( *m_xLeftMarginEdit, nTmp, MapUnit::MapTwip );
        }

        if ( nHeight > nH )
        {
            long nTmp = nBT <= nBB ? nBB : nBT;
            nTmp -= nHeight - nH;

            if ( nBT <= nBB )
                SetMetricValue( *m_xBottomMarginEdit, nTmp, MapUnit::MapTwip );
            else
                SetMetricValue( *m_xTopMarginEdit, nTmp, MapUnit::MapTwip );
        }
    }
}

IMPL_LINK_NOARG(SvxPageDescPage, CenterHdl_Impl, weld::ToggleButton&, void)
{
    m_aBspWin.SetHorz(m_xHorzBox->get_active());
    m_aBspWin.SetVert(m_xVertBox->get_active());
    UpdateExample_Impl();
}

void SvxPageDescPage::SetCollectionList(const std::vector<OUString> &aList)
{
    OSL_ENSURE(!aList.empty(), "Empty string list");

    sStandardRegister = aList[0];
    m_xRegisterLB->freeze();
    for (size_t i = 1; i < aList.size(); ++i)
        m_xRegisterLB->append_text(aList[i]);
    m_xRegisterLB->thaw();

    m_xRegisterCB->show();
    m_xRegisterFT->show();
    m_xRegisterLB->show();
    m_xRegisterCB->connect_toggled(LINK(this, SvxPageDescPage, RegisterModify));
}

IMPL_LINK(SvxPageDescPage, RegisterModify, weld::ToggleButton&, rBox, void)
{
    bool bEnable = false;
    if (rBox.get_active())
    {
        bEnable = true;
        if (m_xRegisterLB->get_active() == -1)
            m_xRegisterLB->set_active_text(sStandardRegister);
    }
    m_xRegisterFT->set_sensitive(bEnable);
    m_xRegisterLB->set_sensitive(bEnable);
}

void SvxPageDescPage::DisableVerticalPageDir()
{
    m_xTextFlowBox->remove_id(SvxFrameDirection::Vertical_RL_TB);
    m_xTextFlowBox->remove_id(SvxFrameDirection::Vertical_LR_TB);
    if (m_xTextFlowBox->get_count() < 2)
    {
        m_xTextFlowLbl->hide();
        m_xTextFlowBox->hide();
        m_aBspWin.EnableFrameDirection( false );
    }
}

IMPL_LINK_NOARG(SvxPageDescPage, FrameDirectionModify_Impl, weld::ComboBoxText&, void)
{
    m_aBspWin.SetFrameDirection(m_xTextFlowBox->get_active_id());
    m_aBspWin.Invalidate();
}

bool SvxPageDescPage::IsPrinterRangeOverflow(
    weld::MetricSpinButton& rField, long nFirstMargin, long nLastMargin, MarginPosition nPos )
{
    bool bRet = false;
    bool bCheck = ( ( m_nPos & nPos ) == 0 );
    long nValue = rField.get_value(FUNIT_NONE);
    if ( bCheck &&
         (  nValue < nFirstMargin || nValue > nLastMargin ) &&
         rField.get_value_changed_from_saved() )
    {
        rField.set_value(nValue < nFirstMargin ? nFirstMargin : nLastMargin, FUNIT_NONE);
        bRet = true;
    }

    return bRet;
}

/** Check if a value of a margin edit is outside the printer paper margins
    and save this information.
*/
void SvxPageDescPage::CheckMarginEdits( bool _bClear )
{
    if ( _bClear )
        m_nPos = 0;

    sal_Int64 nValue = m_xLeftMarginEdit->get_value(FUNIT_NONE);
    if (  nValue < nFirstLeftMargin || nValue > nLastLeftMargin )
        m_nPos |= MARGIN_LEFT;
    nValue = m_xRightMarginEdit->get_value(FUNIT_NONE);
    if (  nValue < nFirstRightMargin || nValue > nLastRightMargin )
        m_nPos |= MARGIN_RIGHT;
    nValue = m_xTopMarginEdit->get_value(FUNIT_NONE);
    if (  nValue < nFirstTopMargin || nValue > nLastTopMargin )
        m_nPos |= MARGIN_TOP;
    nValue = m_xBottomMarginEdit->get_value(FUNIT_NONE);
    if (  nValue < nFirstBottomMargin || nValue > nLastBottomMargin )
        m_nPos |= MARGIN_BOTTOM;
}

bool SvxPageDescPage::IsMarginOutOfRange()
{
    bool bRet = ( ( ( !( m_nPos & MARGIN_LEFT ) &&
                      m_xLeftMarginEdit->get_value_changed_from_saved() ) &&
                    ( m_xLeftMarginEdit->get_value(FUNIT_NONE) < nFirstLeftMargin ||
                      m_xLeftMarginEdit->get_value(FUNIT_NONE) > nLastLeftMargin ) ) ||
                  ( ( !( m_nPos & MARGIN_RIGHT ) &&
                      m_xRightMarginEdit->get_value_changed_from_saved() ) &&
                    ( m_xRightMarginEdit->get_value(FUNIT_NONE) < nFirstRightMargin ||
                      m_xRightMarginEdit->get_value(FUNIT_NONE) > nLastRightMargin ) ) ||
                  ( ( !( m_nPos & MARGIN_TOP ) &&
                      m_xTopMarginEdit->get_value_changed_from_saved() ) &&
                    ( m_xTopMarginEdit->get_value(FUNIT_NONE) < nFirstTopMargin ||
                      m_xTopMarginEdit->get_value(FUNIT_NONE) > nLastTopMargin ) ) ||
                  ( ( !( m_nPos & MARGIN_BOTTOM ) &&
                      m_xBottomMarginEdit->get_value_changed_from_saved() ) &&
                    ( m_xBottomMarginEdit->get_value(FUNIT_NONE) < nFirstBottomMargin ||
                      m_xBottomMarginEdit->get_value(FUNIT_NONE) > nLastBottomMargin ) ) );
    return bRet;
}

void SvxPageDescPage::PageCreated(const SfxAllItemSet& aSet)
{
    const SfxAllEnumItem* pModeItem = aSet.GetItem<SfxAllEnumItem>(SID_ENUM_PAGE_MODE, false);
    const SfxAllEnumItem* pPaperStartItem = aSet.GetItem<SfxAllEnumItem>(SID_PAPER_START, false);
    const SfxAllEnumItem* pPaperEndItem = aSet.GetItem<SfxAllEnumItem>(SID_PAPER_END, false);
    const SfxStringListItem* pCollectListItem = aSet.GetItem<SfxStringListItem>(SID_COLLECT_LIST, false);
    const SfxBoolItem* pSupportDrawingLayerFillStyleItem = aSet.GetItem<SfxBoolItem>(SID_DRAWINGLAYER_FILLSTYLES, false);

    if (pModeItem)
    {
        eMode = static_cast<SvxModeType>(pModeItem->GetEnumValue());
    }

    if(pPaperStartItem && pPaperEndItem)
    {
        SetPaperFormatRanges(static_cast<Paper>(pPaperStartItem->GetEnumValue()));
    }

    if(pCollectListItem)
    {
        SetCollectionList(pCollectListItem->GetList());
    }

    if(pSupportDrawingLayerFillStyleItem)
    {
        const bool bNew(pSupportDrawingLayerFillStyleItem->GetValue());

        mbEnableDrawingLayerFillStyles = bNew;
    }
}

/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
5%;'/> -rw-r--r--source/da/helpcontent2/source/text/sbasic/shared.po70
-rw-r--r--source/da/helpcontent2/source/text/sbasic/shared/01.po12
-rw-r--r--source/da/helpcontent2/source/text/scalc/01.po352
-rw-r--r--source/da/helpcontent2/source/text/scalc/06.po6
-rw-r--r--source/da/helpcontent2/source/text/scalc/guide.po120
-rw-r--r--source/da/helpcontent2/source/text/schart.po24
-rw-r--r--source/da/helpcontent2/source/text/schart/00.po18
-rw-r--r--source/da/helpcontent2/source/text/schart/01.po12
-rw-r--r--source/da/helpcontent2/source/text/sdraw/guide.po28
-rw-r--r--source/da/helpcontent2/source/text/shared/00.po396
-rw-r--r--source/da/helpcontent2/source/text/shared/01.po599
-rw-r--r--source/da/helpcontent2/source/text/shared/02.po50
-rw-r--r--source/da/helpcontent2/source/text/shared/04.po14
-rw-r--r--source/da/helpcontent2/source/text/shared/06.po6
-rw-r--r--source/da/helpcontent2/source/text/shared/autopi.po170
-rw-r--r--source/da/helpcontent2/source/text/shared/explorer/database.po20
-rw-r--r--source/da/helpcontent2/source/text/shared/guide.po104
-rw-r--r--source/da/helpcontent2/source/text/shared/help.po159
-rw-r--r--source/da/helpcontent2/source/text/shared/optionen.po168
-rw-r--r--source/da/helpcontent2/source/text/simpress/00.po10
-rw-r--r--source/da/helpcontent2/source/text/simpress/01.po46
-rw-r--r--source/da/helpcontent2/source/text/simpress/guide.po52
-rw-r--r--source/da/helpcontent2/source/text/smath/01.po36
-rw-r--r--source/da/helpcontent2/source/text/smath/06.po24
-rw-r--r--source/da/helpcontent2/source/text/swriter.po14
-rw-r--r--source/da/helpcontent2/source/text/swriter/00.po32
-rw-r--r--source/da/helpcontent2/source/text/swriter/01.po238
-rw-r--r--source/da/helpcontent2/source/text/swriter/guide.po32
-rw-r--r--source/da/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po8
-rw-r--r--source/da/officecfg/registry/data/org/openoffice/Office/UI.po14
-rw-r--r--source/da/readlicense_oo/docs.po12
-rw-r--r--source/da/sc/messages.po285
-rw-r--r--source/da/sd/messages.po86
-rw-r--r--source/da/svtools/messages.po12
-rw-r--r--source/da/svx/messages.po88
-rw-r--r--source/da/sw/messages.po229
-rw-r--r--source/da/swext/mediawiki/help.po34
-rw-r--r--source/da/swext/mediawiki/src.po8
-rw-r--r--source/da/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po23
-rw-r--r--source/da/writerperfect/messages.po40
-rw-r--r--source/de/cui/messages.po136
-rw-r--r--source/de/filter/source/config/fragments/filters.po14
-rw-r--r--source/de/filter/source/config/fragments/types.po12
-rw-r--r--source/de/fpicker/messages.po18
-rw-r--r--source/de/helpcontent2/source/auxiliary.po12
-rw-r--r--source/de/helpcontent2/source/text/scalc/01.po10
-rw-r--r--source/de/helpcontent2/source/text/scalc/06.po8
-rw-r--r--source/de/helpcontent2/source/text/scalc/guide.po96
-rw-r--r--source/de/helpcontent2/source/text/shared/00.po174
-rw-r--r--source/de/helpcontent2/source/text/shared/01.po114
-rw-r--r--source/de/helpcontent2/source/text/shared/02.po8
-rw-r--r--source/de/helpcontent2/source/text/shared/04.po8
-rw-r--r--source/de/helpcontent2/source/text/shared/explorer/database.po10
-rw-r--r--source/de/helpcontent2/source/text/shared/guide.po18
-rw-r--r--source/de/helpcontent2/source/text/shared/help.po40
-rw-r--r--source/de/helpcontent2/source/text/shared/optionen.po58
-rw-r--r--source/de/helpcontent2/source/text/simpress/01.po8
-rw-r--r--source/de/helpcontent2/source/text/simpress/guide.po10
-rw-r--r--source/de/helpcontent2/source/text/smath/00.po12
-rw-r--r--source/de/helpcontent2/source/text/smath/01.po30
-rw-r--r--source/de/helpcontent2/source/text/smath/06.po26
-rw-r--r--source/de/helpcontent2/source/text/swriter/00.po20
-rw-r--r--source/de/helpcontent2/source/text/swriter/01.po78
-rw-r--r--source/de/officecfg/registry/data/org/openoffice/Office/UI.po18
-rw-r--r--source/de/readlicense_oo/docs.po14
-rw-r--r--source/de/sc/messages.po271
-rw-r--r--source/de/sd/messages.po70
-rw-r--r--source/de/starmath/messages.po8
-rw-r--r--source/de/svx/messages.po86
-rw-r--r--source/de/sw/messages.po287
-rw-r--r--source/de/swext/mediawiki/help.po10
-rw-r--r--source/de/writerperfect/messages.po48
-rw-r--r--source/de/xmlsecurity/messages.po10
-rw-r--r--source/dgo/cui/messages.po126
-rw-r--r--source/dgo/filter/source/config/fragments/filters.po8
-rw-r--r--source/dgo/filter/source/config/fragments/types.po6
-rw-r--r--source/dgo/fpicker/messages.po9
-rw-r--r--source/dgo/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--source/dgo/readlicense_oo/docs.po4
-rw-r--r--source/dgo/sc/messages.po267
-rw-r--r--source/dgo/sd/messages.po68
-rw-r--r--source/dgo/svx/messages.po55
-rw-r--r--source/dgo/sw/messages.po193
-rw-r--r--source/dgo/writerperfect/messages.po40
-rw-r--r--source/dz/cui/messages.po126
-rw-r--r--source/dz/filter/source/config/fragments/filters.po8
-rw-r--r--source/dz/filter/source/config/fragments/types.po6
-rw-r--r--source/dz/fpicker/messages.po9
-rw-r--r--source/dz/helpcontent2/source/text/shared/00.po148
-rw-r--r--source/dz/helpcontent2/source/text/shared/01.po30
-rw-r--r--source/dz/helpcontent2/source/text/shared/optionen.po46
-rw-r--r--source/dz/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--source/dz/readlicense_oo/docs.po4
-rw-r--r--source/dz/sc/messages.po267
-rw-r--r--source/dz/sd/messages.po68
-rw-r--r--source/dz/svx/messages.po52
-rw-r--r--source/dz/sw/messages.po205
-rw-r--r--source/dz/writerperfect/messages.po40
-rw-r--r--source/el/cui/messages.po126
-rw-r--r--source/el/filter/source/config/fragments/filters.po16
-rw-r--r--source/el/filter/source/config/fragments/types.po10
-rw-r--r--source/el/fpicker/messages.po16
-rw-r--r--source/el/helpcontent2/source/text/shared/00.po158
-rw-r--r--source/el/helpcontent2/source/text/shared/01.po34
-rw-r--r--source/el/helpcontent2/source/text/shared/optionen.po60
-rw-r--r--source/el/helpcontent2/source/text/simpress/guide.po34
-rw-r--r--source/el/helpcontent2/source/text/smath/01.po34
-rw-r--r--source/el/helpcontent2/source/text/smath/06.po27
-rw-r--r--source/el/helpcontent2/source/text/swriter.po12
-rw-r--r--source/el/helpcontent2/source/text/swriter/00.po30
-rw-r--r--source/el/helpcontent2/source/text/swriter/01.po256
-rw-r--r--source/el/helpcontent2/source/text/swriter/guide.po30
-rw-r--r--source/el/officecfg/registry/data/org/openoffice/Office/UI.po10
-rw-r--r--source/el/readlicense_oo/docs.po10
-rw-r--r--source/el/sc/messages.po271
-rw-r--r--source/el/sd/messages.po70
-rw-r--r--source/el/svx/messages.po64
-rw-r--r--source/el/sw/messages.po203
-rw-r--r--source/el/writerperfect/messages.po40
-rw-r--r--source/en-GB/cui/messages.po126
-rw-r--r--source/en-GB/filter/source/config/fragments/filters.po10
-rw-r--r--source/en-GB/filter/source/config/fragments/types.po8
-rw-r--r--source/en-GB/fpicker/messages.po10
-rw-r--r--source/en-GB/helpcontent2/source/text/shared/00.po150
-rw-r--r--source/en-GB/helpcontent2/source/text/shared/01.po30
-rw-r--r--source/en-GB/helpcontent2/source/text/shared/optionen.po56
-rw-r--r--source/en-GB/officecfg/registry/data/org/openoffice/Office/UI.po28
-rw-r--r--source/en-GB/readlicense_oo/docs.po36
-rw-r--r--source/en-GB/sc/messages.po371
-rw-r--r--source/en-GB/sd/messages.po68
-rw-r--r--source/en-GB/svx/messages.po58
-rw-r--r--source/en-GB/sw/messages.po195
-rw-r--r--source/en-GB/writerperfect/messages.po40
-rw-r--r--source/en-ZA/cui/messages.po126
-rw-r--r--source/en-ZA/filter/source/config/fragments/filters.po8
-rw-r--r--source/en-ZA/filter/source/config/fragments/types.po6
-rw-r--r--source/en-ZA/fpicker/messages.po9
-rw-r--r--source/en-ZA/helpcontent2/source/text/shared/00.po148
-rw-r--r--source/en-ZA/helpcontent2/source/text/shared/01.po30
-rw-r--r--source/en-ZA/helpcontent2/source/text/shared/optionen.po50
-rw-r--r--source/en-ZA/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--source/en-ZA/readlicense_oo/docs.po4
-rw-r--r--source/en-ZA/sc/messages.po267
-rw-r--r--source/en-ZA/sd/messages.po68
-rw-r--r--source/en-ZA/svx/messages.po52
-rw-r--r--source/en-ZA/sw/messages.po197
-rw-r--r--source/en-ZA/writerperfect/messages.po40
-rw-r--r--source/eo/cui/messages.po126
-rw-r--r--source/eo/filter/source/config/fragments/filters.po10
-rw-r--r--source/eo/filter/source/config/fragments/types.po6
-rw-r--r--source/eo/fpicker/messages.po10
-rw-r--r--source/eo/helpcontent2/source/text/shared/00.po122
-rw-r--r--source/eo/helpcontent2/source/text/shared/01.po26
-rw-r--r--source/eo/helpcontent2/source/text/shared/optionen.po46
-rw-r--r--source/eo/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--source/eo/readlicense_oo/docs.po8
-rw-r--r--source/eo/sc/messages.po267
-rw-r--r--source/eo/scp2/source/ooo.po14
-rw-r--r--source/eo/sd/messages.po68
-rw-r--r--source/eo/svx/messages.po58
-rw-r--r--source/eo/sw/messages.po217
-rw-r--r--source/eo/writerperfect/messages.po40
-rw-r--r--source/es/cui/messages.po132
-rw-r--r--source/es/filter/source/config/fragments/filters.po14
-rw-r--r--source/es/filter/source/config/fragments/types.po10
-rw-r--r--source/es/fpicker/messages.po14
-rw-r--r--source/es/helpcontent2/source/text/sbasic/shared.po16
-rw-r--r--source/es/helpcontent2/source/text/scalc/00.po6
-rw-r--r--source/es/helpcontent2/source/text/scalc/01.po30
-rw-r--r--source/es/helpcontent2/source/text/scalc/guide.po22
-rw-r--r--source/es/helpcontent2/source/text/shared/00.po156
-rw-r--r--source/es/helpcontent2/source/text/shared/01.po76
-rw-r--r--source/es/helpcontent2/source/text/shared/02.po8
-rw-r--r--source/es/helpcontent2/source/text/shared/autopi.po8
-rw-r--r--source/es/helpcontent2/source/text/shared/guide.po10
-rw-r--r--source/es/helpcontent2/source/text/shared/optionen.po66
-rw-r--r--source/es/helpcontent2/source/text/smath/01.po36
-rw-r--r--source/es/helpcontent2/source/text/smath/06.po25
-rw-r--r--source/es/helpcontent2/source/text/swriter.po8
-rw-r--r--source/es/helpcontent2/source/text/swriter/00.po8
-rw-r--r--source/es/helpcontent2/source/text/swriter/01.po10
-rw-r--r--source/es/helpcontent2/source/text/swriter/guide.po18
-rw-r--r--source/es/officecfg/registry/data/org/openoffice/Office/UI.po50
-rw-r--r--source/es/readlicense_oo/docs.po20
-rw-r--r--source/es/sc/messages.po291
-rw-r--r--source/es/scp2/source/ooo.po32
-rw-r--r--source/es/sd/messages.po113
-rw-r--r--source/es/sfx2/messages.po8
-rw-r--r--source/es/svx/messages.po62
-rw-r--r--source/es/sw/messages.po217
-rw-r--r--source/es/writerperfect/messages.po40
-rw-r--r--source/es/xmlsecurity/messages.po8
-rw-r--r--source/et/cui/messages.po126
-rw-r--r--source/et/filter/source/config/fragments/filters.po10
-rw-r--r--source/et/filter/source/config/fragments/types.po6
-rw-r--r--source/et/fpicker/messages.po10
-rw-r--r--source/et/helpcontent2/source/text/shared/00.po148
-rw-r--r--source/et/helpcontent2/source/text/shared/01.po30
-rw-r--r--source/et/helpcontent2/source/text/shared/optionen.po56
-rw-r--r--source/et/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--source/et/readlicense_oo/docs.po6
-rw-r--r--source/et/sc/messages.po267
-rw-r--r--source/et/sd/messages.po68
-rw-r--r--source/et/svx/messages.po58
-rw-r--r--source/et/sw/messages.po195
-rw-r--r--source/et/writerperfect/messages.po40
-rw-r--r--source/eu/basic/messages.po10
-rw-r--r--source/eu/cui/messages.po146
-rw-r--r--source/eu/filter/messages.po13
-rw-r--r--source/eu/filter/source/config/fragments/filters.po16
-rw-r--r--source/eu/filter/source/config/fragments/types.po10
-rw-r--r--source/eu/fpicker/messages.po16
-rw-r--r--source/eu/helpcontent2/source/text/sbasic/guide.po6
-rw-r--r--source/eu/helpcontent2/source/text/scalc.po6
-rw-r--r--source/eu/helpcontent2/source/text/scalc/01.po6
-rw-r--r--source/eu/helpcontent2/source/text/scalc/04.po6
-rw-r--r--source/eu/helpcontent2/source/text/scalc/guide.po10
-rw-r--r--source/eu/helpcontent2/source/text/sdraw/guide.po6
-rw-r--r--source/eu/helpcontent2/source/text/shared/00.po164
-rw-r--r--source/eu/helpcontent2/source/text/shared/01.po106
-rw-r--r--source/eu/helpcontent2/source/text/shared/optionen.po58
-rw-r--r--source/eu/helpcontent2/source/text/simpress/guide.po8
-rw-r--r--source/eu/helpcontent2/source/text/swriter/00.po20
-rw-r--r--source/eu/helpcontent2/source/text/swriter/01.po76
-rw-r--r--source/eu/officecfg/registry/data/org/openoffice.po6
-rw-r--r--source/eu/officecfg/registry/data/org/openoffice/Office/UI.po36
-rw-r--r--source/eu/readlicense_oo/docs.po10
-rw-r--r--source/eu/sc/messages.po297
-rw-r--r--source/eu/scp2/source/ooo.po12
-rw-r--r--source/eu/sd/messages.po136
-rw-r--r--source/eu/svx/messages.po68
-rw-r--r--source/eu/sw/messages.po229
-rw-r--r--source/eu/writerperfect/messages.po40
-rw-r--r--source/eu/xmlsecurity/messages.po8
-rw-r--r--source/fa/cui/messages.po126
-rw-r--r--source/fa/filter/source/config/fragments/filters.po8
-rw-r--r--source/fa/filter/source/config/fragments/types.po6
-rw-r--r--source/fa/fpicker/messages.po10
-rw-r--r--source/fa/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--source/fa/readlicense_oo/docs.po4
-rw-r--r--source/fa/sc/messages.po269
-rw-r--r--source/fa/sd/messages.po68
-rw-r--r--source/fa/svx/messages.po48
-rw-r--r--source/fa/sw/messages.po197
-rw-r--r--source/fa/writerperfect/messages.po40
-rw-r--r--source/fi/connectivity/registry/mork/org/openoffice/Office/DataAccess.po10
-rw-r--r--source/fi/cui/messages.po126
-rw-r--r--source/fi/dbaccess/messages.po22
-rw-r--r--source/fi/dictionaries/id.po11
-rw-r--r--source/fi/filter/source/config/fragments/filters.po10
-rw-r--r--source/fi/filter/source/config/fragments/types.po6
-rw-r--r--source/fi/fpicker/messages.po18
-rw-r--r--source/fi/helpcontent2/source/text/shared/00.po148
-rw-r--r--source/fi/helpcontent2/source/text/shared/01.po30
-rw-r--r--source/fi/helpcontent2/source/text/shared/optionen.po56
-rw-r--r--source/fi/instsetoo_native/inc_openoffice/windows/msi_languages.po16
-rw-r--r--source/fi/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--source/fi/readlicense_oo/docs.po38
-rw-r--r--source/fi/sc/messages.po267
-rw-r--r--source/fi/scp2/source/ooo.po10
-rw-r--r--source/fi/sd/messages.po68
-rw-r--r--source/fi/svx/messages.po58
-rw-r--r--source/fi/sw/messages.po195
-rw-r--r--source/fi/writerperfect/messages.po52
-rw-r--r--source/fi/xmlsecurity/messages.po10
-rw-r--r--source/fr/cui/messages.po126
-rw-r--r--source/fr/filter/source/config/fragments/filters.po16
-rw-r--r--source/fr/filter/source/config/fragments/types.po10
-rw-r--r--source/fr/fpicker/messages.po16
-rw-r--r--source/fr/helpcontent2/source/text/sbasic/shared.po8
-rw-r--r--source/fr/helpcontent2/source/text/sbasic/shared/01.po14
-rw-r--r--source/fr/helpcontent2/source/text/scalc/01.po32
-rw-r--r--source/fr/helpcontent2/source/text/scalc/06.po8
-rw-r--r--source/fr/helpcontent2/source/text/scalc/guide.po100
-rw-r--r--source/fr/helpcontent2/source/text/shared/00.po368
-rw-r--r--source/fr/helpcontent2/source/text/shared/01.po98
-rw-r--r--source/fr/helpcontent2/source/text/shared/02.po24
-rw-r--r--source/fr/helpcontent2/source/text/shared/guide.po42
-rw-r--r--source/fr/helpcontent2/source/text/shared/help.po159
-rw-r--r--source/fr/helpcontent2/source/text/shared/optionen.po68
-rw-r--r--source/fr/helpcontent2/source/text/swriter/00.po20
-rw-r--r--source/fr/helpcontent2/source/text/swriter/01.po76
-rw-r--r--source/fr/officecfg/registry/data/org/openoffice/Office/UI.po20
-rw-r--r--source/fr/readlicense_oo/docs.po10
-rw-r--r--source/fr/sc/messages.po297
-rw-r--r--source/fr/scp2/source/ooo.po12
-rw-r--r--source/fr/sd/messages.po134
-rw-r--r--source/fr/svx/messages.po66
-rw-r--r--source/fr/sw/messages.po223
-rw-r--r--source/fr/writerperfect/messages.po40
-rw-r--r--source/fr/xmlsecurity/messages.po10
-rw-r--r--source/fy/cui/messages.po134
-rw-r--r--source/fy/dbaccess/messages.po6
-rw-r--r--source/fy/filter/messages.po8
-rw-r--r--source/fy/filter/source/config/fragments/filters.po16
-rw-r--r--source/fy/filter/source/config/fragments/types.po10
-rw-r--r--source/fy/fpicker/messages.po16
-rw-r--r--source/fy/instsetoo_native/inc_openoffice/windows/msi_languages.po8
-rw-r--r--source/fy/officecfg/registry/data/org/openoffice/Office.po6
-rw-r--r--source/fy/officecfg/registry/data/org/openoffice/Office/UI.po28
-rw-r--r--source/fy/readlicense_oo/docs.po10
-rw-r--r--source/fy/sc/messages.po299
-rw-r--r--source/fy/scp2/source/ooo.po10
-rw-r--r--source/fy/sd/messages.po134
-rw-r--r--source/fy/sfx2/messages.po18
-rw-r--r--source/fy/svx/messages.po64
-rw-r--r--source/fy/sw/messages.po225
-rw-r--r--source/fy/swext/mediawiki/help.po12
-rw-r--r--source/fy/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po6
-rw-r--r--source/fy/writerperfect/messages.po40
-rw-r--r--source/fy/xmlsecurity/messages.po8
-rw-r--r--source/ga/cui/messages.po126
-rw-r--r--source/ga/filter/source/config/fragments/filters.po10
-rw-r--r--source/ga/filter/source/config/fragments/types.po8
-rw-r--r--source/ga/fpicker/messages.po10
-rw-r--r--source/ga/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--source/ga/readlicense_oo/docs.po8
-rw-r--r--source/ga/sc/messages.po267
-rw-r--r--source/ga/sd/messages.po68
-rw-r--r--source/ga/svx/messages.po58
-rw-r--r--source/ga/sw/messages.po195
-rw-r--r--source/ga/writerperfect/messages.po40
-rw-r--r--source/gd/cui/messages.po126
-rw-r--r--source/gd/filter/source/config/fragments/filters.po10
-rw-r--r--source/gd/filter/source/config/fragments/types.po6
-rw-r--r--source/gd/fpicker/messages.po10
-rw-r--r--source/gd/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--source/gd/readlicense_oo/docs.po6
-rw-r--r--source/gd/sc/messages.po267
-rw-r--r--source/gd/sd/messages.po68
-rw-r--r--source/gd/svx/messages.po58
-rw-r--r--source/gd/sw/messages.po195
-rw-r--r--source/gd/writerperfect/messages.po40
-rw-r--r--source/gl/basctl/messages.po10
-rw-r--r--source/gl/cui/messages.po152
-rw-r--r--source/gl/extensions/messages.po12
-rw-r--r--source/gl/filter/messages.po24
-rw-r--r--source/gl/filter/source/config/fragments/filters.po18
-rw-r--r--source/gl/filter/source/config/fragments/types.po10
-rw-r--r--source/gl/fpicker/messages.po16
-rw-r--r--source/gl/helpcontent2/source/auxiliary.po10
-rw-r--r--source/gl/helpcontent2/source/text/sbasic/guide.po14
-rw-r--r--source/gl/helpcontent2/source/text/schart.po8
-rw-r--r--source/gl/helpcontent2/source/text/shared/00.po148
-rw-r--r--source/gl/helpcontent2/source/text/shared/01.po38
-rw-r--r--source/gl/helpcontent2/source/text/shared/optionen.po66
-rw-r--r--source/gl/helpcontent2/source/text/swriter/guide.po40
-rw-r--r--source/gl/officecfg/registry/data/org/openoffice/Office/UI.po48
-rw-r--r--source/gl/readlicense_oo/docs.po10
-rw-r--r--source/gl/sc/messages.po303
-rw-r--r--source/gl/scp2/source/ooo.po10
-rw-r--r--source/gl/sd/messages.po140
-rw-r--r--source/gl/svtools/messages.po10
-rw-r--r--source/gl/svx/messages.po70
-rw-r--r--source/gl/sw/messages.po233
-rw-r--r--source/gl/uui/messages.po12
-rw-r--r--source/gl/writerperfect/messages.po48
-rw-r--r--source/gl/xmlsecurity/messages.po8
-rw-r--r--source/gu/cui/messages.po126
-rw-r--r--source/gu/filter/source/config/fragments/filters.po8
-rw-r--r--source/gu/filter/source/config/fragments/types.po6
-rw-r--r--source/gu/fpicker/messages.po10
-rw-r--r--source/gu/helpcontent2/source/text/shared/00.po148
-rw-r--r--source/gu/helpcontent2/source/text/shared/01.po28
-rw-r--r--source/gu/helpcontent2/source/text/shared/optionen.po46
-rw-r--r--source/gu/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--source/gu/readlicense_oo/docs.po4
-rw-r--r--source/gu/sc/messages.po267
-rw-r--r--source/gu/sd/messages.po68
-rw-r--r--source/gu/svx/messages.po53
-rw-r--r--source/gu/sw/messages.po193
-rw-r--r--source/gu/writerperfect/messages.po40
-rw-r--r--source/gug/cui/messages.po126
-rw-r--r--source/gug/filter/source/config/fragments/filters.po8
-rw-r--r--source/gug/filter/source/config/fragments/types.po6
-rw-r--r--source/gug/fpicker/messages.po10
-rw-r--r--source/gug/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--source/gug/readlicense_oo/docs.po4
-rw-r--r--source/gug/sc/messages.po267
-rw-r--r--source/gug/sd/messages.po68
-rw-r--r--source/gug/svx/messages.po48
-rw-r--r--source/gug/sw/messages.po193
-rw-r--r--source/gug/writerperfect/messages.po40
-rw-r--r--source/he/cui/messages.po126
-rw-r--r--source/he/filter/source/config/fragments/filters.po8
-rw-r--r--source/he/filter/source/config/fragments/types.po6
-rw-r--r--source/he/fpicker/messages.po10
-rw-r--r--source/he/helpcontent2/source/text/shared/00.po118
-rw-r--r--source/he/helpcontent2/source/text/shared/01.po28
-rw-r--r--source/he/helpcontent2/source/text/shared/optionen.po46
-rw-r--r--source/he/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--source/he/readlicense_oo/docs.po6
-rw-r--r--source/he/sc/messages.po267
-rw-r--r--source/he/sd/messages.po68
-rw-r--r--source/he/svx/messages.po55
-rw-r--r--source/he/sw/messages.po195
-rw-r--r--source/he/writerperfect/messages.po40
-rw-r--r--source/hi/cui/messages.po126
-rw-r--r--source/hi/filter/source/config/fragments/filters.po8
-rw-r--r--source/hi/filter/source/config/fragments/types.po6
-rw-r--r--source/hi/fpicker/messages.po8
-rw-r--r--source/hi/helpcontent2/source/text/shared/00.po108
-rw-r--r--source/hi/helpcontent2/source/text/shared/01.po26
-rw-r--r--source/hi/helpcontent2/source/text/shared/optionen.po46
-rw-r--r--source/hi/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--source/hi/readlicense_oo/docs.po4
-rw-r--r--source/hi/sc/messages.po267
-rw-r--r--source/hi/sd/messages.po68
-rw-r--r--source/hi/svx/messages.po52
-rw-r--r--source/hi/sw/messages.po193
-rw-r--r--source/hi/writerperfect/messages.po40
-rw-r--r--source/hr/cui/messages.po126
-rw-r--r--source/hr/filter/source/config/fragments/filters.po30
-rw-r--r--source/hr/filter/source/config/fragments/types.po10
-rw-r--r--source/hr/fpicker/messages.po16
-rw-r--r--source/hr/helpcontent2/source/text/shared/00.po108
-rw-r--r--source/hr/helpcontent2/source/text/shared/01.po26
-rw-r--r--source/hr/helpcontent2/source/text/shared/optionen.po50
-rw-r--r--source/hr/officecfg/registry/data/org/openoffice/Office/UI.po20
-rw-r--r--source/hr/readlicense_oo/docs.po10
-rw-r--r--source/hr/sc/messages.po313
-rw-r--r--source/hr/scp2/source/ooo.po10
-rw-r--r--source/hr/sd/messages.po148
-rw-r--r--source/hr/svtools/messages.po12
-rw-r--r--source/hr/svx/messages.po92
-rw-r--r--source/hr/sw/messages.po267
-rw-r--r--source/hr/writerperfect/messages.po40
-rw-r--r--source/hr/xmlsecurity/messages.po8
-rw-r--r--source/hsb/cui/messages.po126
-rw-r--r--source/hsb/filter/source/config/fragments/filters.po16
-rw-r--r--source/hsb/filter/source/config/fragments/types.po10
-rw-r--r--source/hsb/fpicker/messages.po16
-rw-r--r--source/hsb/officecfg/registry/data/org/openoffice/Office.po8
-rw-r--r--source/hsb/officecfg/registry/data/org/openoffice/Office/UI.po22
-rw-r--r--source/hsb/readlicense_oo/docs.po10
-rw-r--r--source/hsb/sc/messages.po301
-rw-r--r--source/hsb/scp2/source/ooo.po10
-rw-r--r--source/hsb/sd/messages.po136
-rw-r--r--source/hsb/sfx2/messages.po14
-rw-r--r--source/hsb/svx/messages.po62
-rw-r--r--source/hsb/sw/messages.po245
-rw-r--r--source/hsb/writerperfect/messages.po40
-rw-r--r--source/hsb/xmlsecurity/messages.po8
-rw-r--r--source/hu/cui/messages.po126
-rw-r--r--source/hu/filter/source/config/fragments/filters.po10
-rw-r--r--source/hu/filter/source/config/fragments/types.po6
-rw-r--r--source/hu/fpicker/messages.po10
-rw-r--r--source/hu/helpcontent2/source/text/shared/00.po148
-rw-r--r--source/hu/helpcontent2/source/text/shared/01.po30
-rw-r--r--source/hu/helpcontent2/source/text/shared/optionen.po56
-rw-r--r--source/hu/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--source/hu/readlicense_oo/docs.po6
-rw-r--r--source/hu/sc/messages.po267
-rw-r--r--source/hu/sd/messages.po68
-rw-r--r--source/hu/svx/messages.po58
-rw-r--r--source/hu/sw/messages.po195
-rw-r--r--source/hu/writerperfect/messages.po40
-rw-r--r--source/id/cui/messages.po132
-rw-r--r--source/id/filter/source/config/fragments/filters.po54
-rw-r--r--source/id/filter/source/config/fragments/types.po28
-rw-r--r--source/id/fpicker/messages.po10
-rw-r--r--source/id/helpcontent2/source/text/shared/00.po118
-rw-r--r--source/id/helpcontent2/source/text/shared/01.po26
-rw-r--r--source/id/helpcontent2/source/text/shared/optionen.po46
-rw-r--r--source/id/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--source/id/readlicense_oo/docs.po6
-rw-r--r--source/id/sc/messages.po267
-rw-r--r--source/id/scp2/source/ooo.po10
-rw-r--r--source/id/sd/messages.po68
-rw-r--r--source/id/svx/messages.po57
-rw-r--r--source/id/sw/messages.po193
-rw-r--r--source/id/vcl/messages.po8
-rw-r--r--source/id/writerperfect/messages.po46
-rw-r--r--source/id/xmlsecurity/messages.po8
-rw-r--r--source/is/chart2/messages.po8
-rw-r--r--source/is/cui/messages.po228
-rw-r--r--source/is/dbaccess/messages.po22
-rw-r--r--source/is/extensions/messages.po14
-rw-r--r--source/is/filter/source/config/fragments/filters.po58
-rw-r--r--source/is/filter/source/config/fragments/types.po28
-rw-r--r--source/is/fpicker/messages.po10
-rw-r--r--source/is/helpcontent2/source/text/shared/00.po120
-rw-r--r--source/is/helpcontent2/source/text/shared/01.po28
-rw-r--r--source/is/helpcontent2/source/text/shared/optionen.po48
-rw-r--r--source/is/instsetoo_native/inc_openoffice/windows/msi_languages.po6
-rw-r--r--source/is/officecfg/registry/data/org/openoffice.po8
-rw-r--r--source/is/officecfg/registry/data/org/openoffice/Office.po8
-rw-r--r--source/is/officecfg/registry/data/org/openoffice/Office/UI.po188
-rw-r--r--source/is/readlicense_oo/docs.po36
-rw-r--r--source/is/sc/messages.po863
-rw-r--r--source/is/scp2/source/ooo.po10
-rw-r--r--source/is/sd/messages.po148
-rw-r--r--source/is/sfx2/messages.po39
-rw-r--r--source/is/svtools/messages.po60
-rw-r--r--source/is/svx/messages.po210
-rw-r--r--source/is/sw/messages.po365
-rw-r--r--source/is/uui/messages.po44
-rw-r--r--source/is/vcl/messages.po8
-rw-r--r--source/is/writerperfect/messages.po48
-rw-r--r--source/is/xmlsecurity/messages.po8
-rw-r--r--source/it/cui/messages.po146
-rw-r--r--source/it/filter/source/config/fragments/filters.po34
-rw-r--r--source/it/filter/source/config/fragments/types.po18
-rw-r--r--source/it/fpicker/messages.po16
-rw-r--r--source/it/helpcontent2/source/auxiliary.po12
-rw-r--r--source/it/helpcontent2/source/text/sbasic/guide.po26
-rw-r--r--source/it/helpcontent2/source/text/sbasic/shared.po586
-rw-r--r--source/it/helpcontent2/source/text/sbasic/shared/01.po12
-rw-r--r--source/it/helpcontent2/source/text/scalc/01.po297
-rw-r--r--source/it/helpcontent2/source/text/scalc/06.po16
-rw-r--r--source/it/helpcontent2/source/text/scalc/guide.po12
-rw-r--r--source/it/helpcontent2/source/text/schart.po16
-rw-r--r--source/it/helpcontent2/source/text/schart/00.po18
-rw-r--r--source/it/helpcontent2/source/text/schart/01.po8
-rw-r--r--source/it/helpcontent2/source/text/sdraw/guide.po8
-rw-r--r--source/it/helpcontent2/source/text/shared/00.po360
-rw-r--r--source/it/helpcontent2/source/text/shared/01.po410
-rw-r--r--source/it/helpcontent2/source/text/shared/02.po44
-rw-r--r--source/it/helpcontent2/source/text/shared/04.po10
-rw-r--r--source/it/helpcontent2/source/text/shared/06.po13
-rw-r--r--source/it/helpcontent2/source/text/shared/autopi.po148
-rw-r--r--source/it/helpcontent2/source/text/shared/explorer/database.po12
-rw-r--r--source/it/helpcontent2/source/text/shared/guide.po68
-rw-r--r--source/it/helpcontent2/source/text/shared/help.po13
-rw-r--r--source/it/helpcontent2/source/text/shared/optionen.po138
-rw-r--r--source/it/helpcontent2/source/text/simpress/00.po10
-rw-r--r--source/it/helpcontent2/source/text/simpress/01.po18
-rw-r--r--source/it/helpcontent2/source/text/simpress/guide.po38
-rw-r--r--source/it/helpcontent2/source/text/smath/01.po18
-rw-r--r--source/it/helpcontent2/source/text/swriter.po10
-rw-r--r--source/it/officecfg/registry/data/org/openoffice/Office/UI.po128
-rw-r--r--source/it/readlicense_oo/docs.po36
-rw-r--r--source/it/reportdesign/messages.po10
-rw-r--r--source/it/sc/messages.po321
-rw-r--r--source/it/scp2/source/ooo.po10
-rw-r--r--source/it/sd/messages.po68
-rw-r--r--source/it/sfx2/messages.po27
-rw-r--r--source/it/svtools/messages.po16
-rw-r--r--source/it/svx/messages.po100
-rw-r--r--source/it/sw/messages.po295
-rw-r--r--source/it/uui/messages.po32
-rw-r--r--source/it/vcl/messages.po12
-rw-r--r--source/it/writerperfect/messages.po64
-rw-r--r--source/ja/cui/messages.po142
-rw-r--r--source/ja/dbaccess/messages.po10
-rw-r--r--source/ja/filter/source/config/fragments/filters.po16
-rw-r--r--source/ja/filter/source/config/fragments/types.po10
-rw-r--r--source/ja/fpicker/messages.po10
-rw-r--r--source/ja/helpcontent2/source/text/shared/00.po148
-rw-r--r--source/ja/helpcontent2/source/text/shared/01.po30
-rw-r--r--source/ja/helpcontent2/source/text/shared/optionen.po50
-rw-r--r--source/ja/instsetoo_native/inc_openoffice/windows/msi_languages.po6
-rw-r--r--source/ja/officecfg/registry/data/org/openoffice/Office/UI.po28
-rw-r--r--source/ja/readlicense_oo/docs.po12
-rw-r--r--source/ja/sc/messages.po285
-rw-r--r--source/ja/scp2/source/ooo.po12
-rw-r--r--source/ja/sd/messages.po124
-rw-r--r--source/ja/sfx2/messages.po16
-rw-r--r--source/ja/svtools/messages.po10
-rw-r--r--source/ja/svx/messages.po74
-rw-r--r--source/ja/sw/messages.po227
-rw-r--r--source/ja/uui/messages.po9
-rw-r--r--source/ja/vcl/messages.po8
-rw-r--r--source/ja/writerperfect/messages.po56
-rw-r--r--source/ja/xmlsecurity/messages.po10
-rw-r--r--source/jv/cui/messages.po126
-rw-r--r--source/jv/filter/source/config/fragments/filters.po6
-rw-r--r--source/jv/filter/source/config/fragments/types.po4
-rw-r--r--source/jv/fpicker/messages.po6
-rw-r--r--source/jv/officecfg/registry/data/org/openoffice/Office/UI.po4
-rw-r--r--source/jv/readlicense_oo/docs.po4
-rw-r--r--source/jv/sc/messages.po263
-rw-r--r--source/jv/sd/messages.po68
-rw-r--r--source/jv/svx/messages.po46
-rw-r--r--source/jv/sw/messages.po193
-rw-r--r--source/jv/writerperfect/messages.po40
-rw-r--r--source/ka/cui/messages.po126
-rw-r--r--source/ka/filter/source/config/fragments/filters.po8
-rw-r--r--source/ka/filter/source/config/fragments/types.po6
-rw-r--r--source/ka/fpicker/messages.po8
-rw-r--r--source/ka/helpcontent2/source/text/shared/00.po110
-rw-r--r--source/ka/helpcontent2/source/text/shared/01.po24
-rw-r--r--source/ka/helpcontent2/source/text/shared/optionen.po46
-rw-r--r--source/ka/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--source/ka/readlicense_oo/docs.po4
-rw-r--r--source/ka/sc/messages.po263
-rw-r--r--source/ka/sd/messages.po68
-rw-r--r--source/ka/svx/messages.po46
-rw-r--r--source/ka/sw/messages.po195
-rw-r--r--source/ka/writerperfect/messages.po40
-rw-r--r--source/kk/cui/messages.po134
-rw-r--r--source/kk/filter/source/config/fragments/filters.po32
-rw-r--r--source/kk/filter/source/config/fragments/types.po10
-rw-r--r--source/kk/fpicker/messages.po16
-rw-r--r--source/kk/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--source/kk/readlicense_oo/docs.po10
-rw-r--r--source/kk/sc/messages.po267
-rw-r--r--source/kk/scp2/source/ooo.po10
-rw-r--r--source/kk/sd/messages.po68
-rw-r--r--source/kk/svx/messages.po58
-rw-r--r--source/kk/sw/messages.po195
-rw-r--r--source/kk/vcl/messages.po8
-rw-r--r--source/kk/writerperfect/messages.po40
-rw-r--r--source/kk/xmlsecurity/messages.po8
-rw-r--r--source/kl/cui/messages.po126
-rw-r--r--source/kl/filter/source/config/fragments/filters.po8
-rw-r--r--source/kl/filter/source/config/fragments/types.po6
-rw-r--r--source/kl/fpicker/messages.po9
-rw-r--r--source/kl/officecfg/registry/data/org/openoffice/Office/UI.po4
-rw-r--r--source/kl/readlicense_oo/docs.po4
-rw-r--r--source/kl/sc/messages.po263
-rw-r--r--source/kl/sd/messages.po68
-rw-r--r--source/kl/svx/messages.po46
-rw-r--r--source/kl/sw/messages.po189
-rw-r--r--source/kl/writerperfect/messages.po40
-rw-r--r--source/km/cui/messages.po126
-rw-r--r--source/km/filter/source/config/fragments/filters.po8
-rw-r--r--source/km/filter/source/config/fragments/types.po6
-rw-r--r--source/km/fpicker/messages.po10
-rw-r--r--source/km/helpcontent2/source/text/shared/00.po148
-rw-r--r--source/km/helpcontent2/source/text/shared/01.po30
-rw-r--r--source/km/helpcontent2/source/text/shared/optionen.po56
-rw-r--r--source/km/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--source/km/readlicense_oo/docs.po4
-rw-r--r--source/km/sc/messages.po267
-rw-r--r--source/km/sd/messages.po68
-rw-r--r--source/km/svx/messages.po55
-rw-r--r--source/km/sw/messages.po193
-rw-r--r--source/km/writerperfect/messages.po40
-rw-r--r--source/kmr-Latn/cui/messages.po126
-rw-r--r--source/kmr-Latn/filter/source/config/fragments/filters.po8
-rw-r--r--source/kmr-Latn/filter/source/config/fragments/types.po6
-rw-r--r--source/kmr-Latn/fpicker/messages.po9
-rw-r--r--source/kmr-Latn/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--source/kmr-Latn/readlicense_oo/docs.po4
-rw-r--r--source/kmr-Latn/sc/messages.po263
-rw-r--r--source/kmr-Latn/sd/messages.po68
-rw-r--r--source/kmr-Latn/svx/messages.po48
-rw-r--r--source/kmr-Latn/sw/messages.po205
-rw-r--r--source/kmr-Latn/writerperfect/messages.po40
-rw-r--r--source/kn/cui/messages.po126
-rw-r--r--source/kn/filter/source/config/fragments/filters.po9
-rw-r--r--source/kn/filter/source/config/fragments/types.po6
-rw-r--r--source/kn/fpicker/messages.po10
-rw-r--r--source/kn/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--source/kn/readlicense_oo/docs.po4
-rw-r--r--source/kn/sc/messages.po267
-rw-r--r--source/kn/sd/messages.po68
-rw-r--r--source/kn/svx/messages.po55
-rw-r--r--source/kn/sw/messages.po195
-rw-r--r--source/kn/writerperfect/messages.po40
-rw-r--r--source/ko/cui/messages.po126
-rw-r--r--source/ko/filter/source/config/fragments/filters.po10
-rw-r--r--source/ko/filter/source/config/fragments/types.po8
-rw-r--r--source/ko/fpicker/messages.po10
-rw-r--r--source/ko/helpcontent2/source/text/shared/00.po148
-rw-r--r--source/ko/helpcontent2/source/text/shared/01.po30
-rw-r--r--source/ko/helpcontent2/source/text/shared/optionen.po50
-rw-r--r--source/ko/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--source/ko/readlicense_oo/docs.po8
-rw-r--r--source/ko/sc/messages.po267
-rw-r--r--source/ko/sd/messages.po68
-rw-r--r--source/ko/svx/messages.po58
-rw-r--r--source/ko/sw/messages.po195
-rw-r--r--source/ko/writerperfect/messages.po40
-rw-r--r--source/kok/cui/messages.po126
-rw-r--r--source/kok/filter/source/config/fragments/filters.po8
-rw-r--r--source/kok/filter/source/config/fragments/types.po6
-rw-r--r--source/kok/fpicker/messages.po9
-rw-r--r--source/kok/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--source/kok/readlicense_oo/docs.po4
-rw-r--r--source/kok/sc/messages.po267
-rw-r--r--source/kok/sd/messages.po68
-rw-r--r--source/kok/svx/messages.po52
-rw-r--r--source/kok/sw/messages.po195
-rw-r--r--source/kok/writerperfect/messages.po40
-rw-r--r--source/ks/cui/messages.po126
-rw-r--r--source/ks/filter/source/config/fragments/filters.po8
-rw-r--r--source/ks/filter/source/config/fragments/types.po6
-rw-r--r--source/ks/fpicker/messages.po9
-rw-r--r--source/ks/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--source/ks/readlicense_oo/docs.po4
-rw-r--r--source/ks/sc/messages.po267
-rw-r--r--source/ks/sd/messages.po68
-rw-r--r--source/ks/svx/messages.po48
-rw-r--r--source/ks/sw/messages.po205
-rw-r--r--source/ks/writerperfect/messages.po40
-rw-r--r--source/ky/cui/messages.po126
-rw-r--r--source/ky/filter/source/config/fragments/filters.po6
-rw-r--r--source/ky/filter/source/config/fragments/types.po4
-rw-r--r--source/ky/fpicker/messages.po6
-rw-r--r--source/ky/officecfg/registry/data/org/openoffice/Office/UI.po4
-rw-r--r--source/ky/readlicense_oo/docs.po4
-rw-r--r--source/ky/sc/messages.po263
-rw-r--r--source/ky/sd/messages.po68
-rw-r--r--source/ky/svx/messages.po46
-rw-r--r--source/ky/sw/messages.po185
-rw-r--r--source/ky/writerperfect/messages.po40
-rw-r--r--source/lb/cui/messages.po126
-rw-r--r--source/lb/filter/source/config/fragments/filters.po8
-rw-r--r--source/lb/filter/source/config/fragments/types.po6
-rw-r--r--source/lb/fpicker/messages.po9
-rw-r--r--source/lb/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--source/lb/readlicense_oo/docs.po4
-rw-r--r--source/lb/sc/messages.po263
-rw-r--r--source/lb/sd/messages.po68
-rw-r--r--source/lb/svx/messages.po48
-rw-r--r--source/lb/sw/messages.po189
-rw-r--r--source/lb/writerperfect/messages.po40
-rw-r--r--source/lo/cui/messages.po126
-rw-r--r--source/lo/filter/source/config/fragments/filters.po8
-rw-r--r--source/lo/filter/source/config/fragments/types.po6
-rw-r--r--source/lo/fpicker/messages.po9
-rw-r--r--source/lo/helpcontent2/source/text/shared/00.po106
-rw-r--r--source/lo/helpcontent2/source/text/shared/01.po24
-rw-r--r--source/lo/helpcontent2/source/text/shared/optionen.po44
-rw-r--r--source/lo/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--source/lo/readlicense_oo/docs.po4
-rw-r--r--source/lo/sc/messages.po267
-rw-r--r--source/lo/sd/messages.po68
-rw-r--r--source/lo/svx/messages.po48
-rw-r--r--source/lo/sw/messages.po203
-rw-r--r--source/lo/writerperfect/messages.po40
-rw-r--r--source/lt/chart2/messages.po12
-rw-r--r--source/lt/cui/messages.po126
-rw-r--r--source/lt/extensions/messages.po6
-rw-r--r--source/lt/filter/source/config/fragments/filters.po10
-rw-r--r--source/lt/filter/source/config/fragments/types.po6
-rw-r--r--source/lt/fpicker/messages.po10
-rw-r--r--source/lt/helpcontent2/source/text/scalc/guide.po1666
-rw-r--r--source/lt/helpcontent2/source/text/shared/00.po168
-rw-r--r--source/lt/helpcontent2/source/text/shared/01.po30
-rw-r--r--source/lt/helpcontent2/source/text/shared/optionen.po126
-rw-r--r--source/lt/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--source/lt/readlicense_oo/docs.po8
-rw-r--r--source/lt/sc/messages.po395
-rw-r--r--source/lt/sd/messages.po68
-rw-r--r--source/lt/svx/messages.po59
-rw-r--r--source/lt/sw/messages.po203
-rw-r--r--source/lt/writerperfect/messages.po40
-rw-r--r--source/lv/cui/messages.po126
-rw-r--r--source/lv/filter/source/config/fragments/filters.po10
-rw-r--r--source/lv/filter/source/config/fragments/types.po6
-rw-r--r--source/lv/fpicker/messages.po10
-rw-r--r--source/lv/helpcontent2/source/text/shared/00.po118
-rw-r--r--source/lv/helpcontent2/source/text/shared/01.po26
-rw-r--r--source/lv/helpcontent2/source/text/shared/optionen.po48
-rw-r--r--source/lv/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--source/lv/readlicense_oo/docs.po6
-rw-r--r--source/lv/sc/messages.po267
-rw-r--r--source/lv/sd/messages.po68
-rw-r--r--source/lv/svx/messages.po57
-rw-r--r--source/lv/sw/messages.po195
-rw-r--r--source/lv/writerperfect/messages.po40
-rw-r--r--source/mai/cui/messages.po126
-rw-r--r--source/mai/filter/source/config/fragments/filters.po8
-rw-r--r--source/mai/filter/source/config/fragments/types.po6
-rw-r--r--source/mai/fpicker/messages.po9
-rw-r--r--source/mai/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--source/mai/readlicense_oo/docs.po4
-rw-r--r--source/mai/sc/messages.po267
-rw-r--r--source/mai/sd/messages.po68
-rw-r--r--source/mai/svx/messages.po48
-rw-r--r--source/mai/sw/messages.po203
-rw-r--r--source/mai/writerperfect/messages.po40
-rw-r--r--source/mk/cui/messages.po126
-rw-r--r--source/mk/filter/source/config/fragments/filters.po8
-rw-r--r--source/mk/filter/source/config/fragments/types.po6
-rw-r--r--source/mk/fpicker/messages.po9
-rw-r--r--source/mk/helpcontent2/source/text/shared/00.po148
-rw-r--r--source/mk/helpcontent2/source/text/shared/01.po30
-rw-r--r--source/mk/helpcontent2/source/text/shared/optionen.po46
-rw-r--r--source/mk/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--source/mk/readlicense_oo/docs.po4
-rw-r--r--source/mk/sc/messages.po267
-rw-r--r--source/mk/sd/messages.po68
-rw-r--r--source/mk/svx/messages.po48
-rw-r--r--source/mk/sw/messages.po199
-rw-r--r--source/mk/writerperfect/messages.po40
-rw-r--r--source/ml/cui/messages.po126
-rw-r--r--source/ml/filter/source/config/fragments/filters.po8
-rw-r--r--source/ml/filter/source/config/fragments/types.po6
-rw-r--r--source/ml/fpicker/messages.po10
-rw-r--r--source/ml/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--source/ml/readlicense_oo/docs.po4
-rw-r--r--source/ml/sc/messages.po267
-rw-r--r--source/ml/sd/messages.po68
-rw-r--r--source/ml/svx/messages.po52
-rw-r--r--source/ml/sw/messages.po195
-rw-r--r--source/ml/writerperfect/messages.po40
-rw-r--r--source/mn/cui/messages.po126
-rw-r--r--source/mn/filter/source/config/fragments/filters.po8
-rw-r--r--source/mn/filter/source/config/fragments/types.po6
-rw-r--r--source/mn/fpicker/messages.po10
-rw-r--r--source/mn/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--source/mn/readlicense_oo/docs.po4
-rw-r--r--source/mn/sc/messages.po267
-rw-r--r--source/mn/sd/messages.po68
-rw-r--r--source/mn/svx/messages.po48
-rw-r--r--source/mn/sw/messages.po199
-rw-r--r--source/mn/writerperfect/messages.po40
-rw-r--r--source/mni/cui/messages.po126
-rw-r--r--source/mni/filter/source/config/fragments/filters.po8
-rw-r--r--source/mni/filter/source/config/fragments/types.po6
-rw-r--r--source/mni/fpicker/messages.po9
-rw-r--r--source/mni/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--source/mni/readlicense_oo/docs.po4
-rw-r--r--source/mni/sc/messages.po267
-rw-r--r--source/mni/sd/messages.po68
-rw-r--r--source/mni/svx/messages.po48
-rw-r--r--source/mni/sw/messages.po201
-rw-r--r--source/mni/writerperfect/messages.po40
-rw-r--r--source/mr/cui/messages.po126
-rw-r--r--source/mr/filter/source/config/fragments/filters.po8
-rw-r--r--source/mr/filter/source/config/fragments/types.po6
-rw-r--r--source/mr/fpicker/messages.po10
-rw-r--r--source/mr/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--source/mr/readlicense_oo/docs.po4
-rw-r--r--source/mr/sc/messages.po267
-rw-r--r--source/mr/sd/messages.po68
-rw-r--r--source/mr/svx/messages.po52
-rw-r--r--source/mr/sw/messages.po193
-rw-r--r--source/mr/writerperfect/messages.po40
-rw-r--r--source/my/cui/messages.po126
-rw-r--r--source/my/filter/source/config/fragments/filters.po8
-rw-r--r--source/my/filter/source/config/fragments/types.po6
-rw-r--r--source/my/fpicker/messages.po8
-rw-r--r--source/my/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--source/my/readlicense_oo/docs.po4
-rw-r--r--source/my/sc/messages.po267
-rw-r--r--source/my/sd/messages.po68
-rw-r--r--source/my/svx/messages.po52
-rw-r--r--source/my/sw/messages.po195
-rw-r--r--source/my/writerperfect/messages.po40
-rw-r--r--source/nb/cui/messages.po126
-rw-r--r--source/nb/filter/source/config/fragments/filters.po10
-rw-r--r--source/nb/filter/source/config/fragments/types.po6
-rw-r--r--source/nb/fpicker/messages.po10
-rw-r--r--source/nb/helpcontent2/source/text/shared/00.po150
-rw-r--r--source/nb/helpcontent2/source/text/shared/01.po30
-rw-r--r--source/nb/helpcontent2/source/text/shared/optionen.po50
-rw-r--r--source/nb/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--source/nb/readlicense_oo/docs.po6
-rw-r--r--source/nb/sc/messages.po267
-rw-r--r--source/nb/sd/messages.po68
-rw-r--r--source/nb/svx/messages.po58
-rw-r--r--source/nb/sw/messages.po195
-rw-r--r--source/nb/writerperfect/messages.po40
-rw-r--r--source/ne/basctl/messages.po8
-rw-r--r--source/ne/basic/messages.po52
-rw-r--r--source/ne/cui/messages.po126
-rw-r--r--source/ne/filter/source/config/fragments/filters.po8
-rw-r--r--source/ne/filter/source/config/fragments/types.po6
-rw-r--r--source/ne/fpicker/messages.po8
-rw-r--r--source/ne/helpcontent2/source/auxiliary.po12
-rw-r--r--source/ne/helpcontent2/source/text/scalc/01.po16
-rw-r--r--source/ne/helpcontent2/source/text/scalc/guide.po22
-rw-r--r--source/ne/helpcontent2/source/text/sdraw.po30
-rw-r--r--source/ne/helpcontent2/source/text/shared/00.po144
-rw-r--r--source/ne/helpcontent2/source/text/shared/01.po94
-rw-r--r--source/ne/helpcontent2/source/text/shared/02.po8
-rw-r--r--source/ne/helpcontent2/source/text/shared/04.po6
-rw-r--r--source/ne/helpcontent2/source/text/shared/explorer/database.po8
-rw-r--r--source/ne/helpcontent2/source/text/shared/guide.po10
-rw-r--r--source/ne/helpcontent2/source/text/shared/optionen.po78
-rw-r--r--source/ne/helpcontent2/source/text/simpress/00.po10
-rw-r--r--source/ne/helpcontent2/source/text/simpress/01.po30
-rw-r--r--source/ne/helpcontent2/source/text/simpress/02.po22
-rw-r--r--source/ne/helpcontent2/source/text/simpress/guide.po34
-rw-r--r--source/ne/helpcontent2/source/text/smath/00.po8
-rw-r--r--source/ne/helpcontent2/source/text/smath/01.po68
-rw-r--r--source/ne/helpcontent2/source/text/swriter/01.po6
-rw-r--r--source/ne/helpcontent2/source/text/swriter/guide.po72
-rw-r--r--source/ne/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--source/ne/readlicense_oo/docs.po4
-rw-r--r--source/ne/sc/messages.po267
-rw-r--r--source/ne/sd/messages.po68
-rw-r--r--source/ne/svx/messages.po48
-rw-r--r--source/ne/sw/messages.po207
-rw-r--r--source/ne/writerperfect/messages.po40
-rw-r--r--source/nl/cui/messages.po126
-rw-r--r--source/nl/filter/source/config/fragments/filters.po16
-rw-r--r--source/nl/filter/source/config/fragments/types.po10
-rw-r--r--source/nl/fpicker/messages.po16
-rw-r--r--source/nl/helpcontent2/source/text/scalc/01.po10
-rw-r--r--source/nl/helpcontent2/source/text/shared/00.po138
-rw-r--r--source/nl/helpcontent2/source/text/shared/01.po94
-rw-r--r--source/nl/helpcontent2/source/text/shared/optionen.po58
-rw-r--r--source/nl/helpcontent2/source/text/simpress/01.po30
-rw-r--r--source/nl/helpcontent2/source/text/simpress/guide.po44
-rw-r--r--source/nl/helpcontent2/source/text/smath/01.po34
-rw-r--r--source/nl/helpcontent2/source/text/smath/06.po24
-rw-r--r--source/nl/helpcontent2/source/text/swriter.po12
-rw-r--r--source/nl/helpcontent2/source/text/swriter/00.po32
-rw-r--r--source/nl/helpcontent2/source/text/swriter/01.po146
-rw-r--r--source/nl/helpcontent2/source/text/swriter/guide.po26
-rw-r--r--source/nl/officecfg/registry/data/org/openoffice/Office/UI.po10
-rw-r--r--source/nl/readlicense_oo/docs.po10
-rw-r--r--source/nl/sc/messages.po273
-rw-r--r--source/nl/sd/messages.po70
-rw-r--r--source/nl/svx/messages.po66
-rw-r--r--source/nl/sw/messages.po203
-rw-r--r--source/nl/writerperfect/messages.po40
-rw-r--r--source/nn/cui/messages.po126
-rw-r--r--source/nn/filter/source/config/fragments/filters.po12
-rw-r--r--source/nn/filter/source/config/fragments/types.po8
-rw-r--r--source/nn/fpicker/messages.po10
-rw-r--r--source/nn/helpcontent2/source/auxiliary.po10
-rw-r--r--source/nn/helpcontent2/source/text/sbasic/shared.po8
-rw-r--r--source/nn/helpcontent2/source/text/sbasic/shared/01.po12
-rw-r--r--source/nn/helpcontent2/source/text/scalc/guide.po10
-rw-r--r--source/nn/helpcontent2/source/text/shared/00.po138
-rw-r--r--source/nn/helpcontent2/source/text/shared/01.po194
-rw-r--r--source/nn/helpcontent2/source/text/shared/02.po46
-rw-r--r--source/nn/helpcontent2/source/text/shared/04.po12
-rw-r--r--source/nn/helpcontent2/source/text/shared/06.po13
-rw-r--r--source/nn/helpcontent2/source/text/shared/autopi.po48
-rw-r--r--source/nn/helpcontent2/source/text/shared/optionen.po56
-rw-r--r--source/nn/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--source/nn/readlicense_oo/docs.po8
-rw-r--r--source/nn/sc/messages.po267
-rw-r--r--source/nn/sd/messages.po68
-rw-r--r--source/nn/svx/messages.po58
-rw-r--r--source/nn/sw/messages.po195
-rw-r--r--source/nn/writerperfect/messages.po40
-rw-r--r--source/nr/cui/messages.po126
-rw-r--r--source/nr/filter/source/config/fragments/filters.po8
-rw-r--r--source/nr/filter/source/config/fragments/types.po6
-rw-r--r--source/nr/fpicker/messages.po9
-rw-r--r--source/nr/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--source/nr/readlicense_oo/docs.po4
-rw-r--r--source/nr/sc/messages.po267
-rw-r--r--source/nr/sd/messages.po68
-rw-r--r--source/nr/svx/messages.po48
-rw-r--r--source/nr/sw/messages.po201
-rw-r--r--source/nr/writerperfect/messages.po40
-rw-r--r--source/nso/cui/messages.po126
-rw-r--r--source/nso/filter/source/config/fragments/filters.po8
-rw-r--r--source/nso/filter/source/config/fragments/types.po6
-rw-r--r--source/nso/fpicker/messages.po9
-rw-r--r--source/nso/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--source/nso/readlicense_oo/docs.po4
-rw-r--r--source/nso/sc/messages.po267
-rw-r--r--source/nso/sd/messages.po68
-rw-r--r--source/nso/svx/messages.po52
-rw-r--r--source/nso/sw/messages.po195
-rw-r--r--source/nso/writerperfect/messages.po40
-rw-r--r--source/oc/cui/messages.po126
-rw-r--r--source/oc/filter/source/config/fragments/filters.po10
-rw-r--r--source/oc/filter/source/config/fragments/types.po6
-rw-r--r--source/oc/fpicker/messages.po10
-rw-r--r--source/oc/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--source/oc/readlicense_oo/docs.po6
-rw-r--r--source/oc/sc/messages.po263
-rw-r--r--source/oc/sd/messages.po68
-rw-r--r--source/oc/svx/messages.po56
-rw-r--r--source/oc/sw/messages.po193
-rw-r--r--source/oc/writerperfect/messages.po40
-rw-r--r--source/om/cui/messages.po126
-rw-r--r--source/om/filter/source/config/fragments/filters.po8
-rw-r--r--source/om/filter/source/config/fragments/types.po6
-rw-r--r--source/om/fpicker/messages.po9
-rw-r--r--source/om/helpcontent2/source/text/shared/00.po148
-rw-r--r--source/om/helpcontent2/source/text/shared/01.po30
-rw-r--r--source/om/helpcontent2/source/text/shared/optionen.po50
-rw-r--r--source/om/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--source/om/readlicense_oo/docs.po4
-rw-r--r--source/om/sc/messages.po267
-rw-r--r--source/om/sd/messages.po68
-rw-r--r--source/om/svx/messages.po48
-rw-r--r--source/om/sw/messages.po203
-rw-r--r--source/om/writerperfect/messages.po40
-rw-r--r--source/or/cui/messages.po126
-rw-r--r--source/or/filter/source/config/fragments/filters.po8
-rw-r--r--source/or/filter/source/config/fragments/types.po6
-rw-r--r--source/or/fpicker/messages.po10
-rw-r--r--source/or/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--source/or/readlicense_oo/docs.po4
-rw-r--r--source/or/sc/messages.po267
-rw-r--r--source/or/sd/messages.po68
-rw-r--r--source/or/svx/messages.po52
-rw-r--r--source/or/sw/messages.po193
-rw-r--r--source/or/writerperfect/messages.po40
-rw-r--r--source/pa-IN/cui/messages.po126
-rw-r--r--source/pa-IN/filter/source/config/fragments/filters.po8
-rw-r--r--source/pa-IN/filter/source/config/fragments/types.po6
-rw-r--r--source/pa-IN/fpicker/messages.po10
-rw-r--r--source/pa-IN/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--source/pa-IN/readlicense_oo/docs.po4
-rw-r--r--source/pa-IN/sc/messages.po267
-rw-r--r--source/pa-IN/sd/messages.po68
-rw-r--r--source/pa-IN/svx/messages.po52
-rw-r--r--source/pa-IN/sw/messages.po195
-rw-r--r--source/pa-IN/writerperfect/messages.po40
-rw-r--r--source/pl/cui/messages.po126
-rw-r--r--source/pl/filter/source/config/fragments/filters.po10
-rw-r--r--source/pl/filter/source/config/fragments/types.po6
-rw-r--r--source/pl/fpicker/messages.po10
-rw-r--r--source/pl/helpcontent2/source/text/shared/00.po148
-rw-r--r--source/pl/helpcontent2/source/text/shared/01.po30
-rw-r--r--source/pl/helpcontent2/source/text/shared/optionen.po56
-rw-r--r--source/pl/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--source/pl/readlicense_oo/docs.po6
-rw-r--r--source/pl/sc/messages.po267
-rw-r--r--source/pl/sd/messages.po68
-rw-r--r--source/pl/svx/messages.po57
-rw-r--r--source/pl/sw/messages.po193
-rw-r--r--source/pl/writerperfect/messages.po40
-rw-r--r--source/pt-BR/cui/messages.po142
-rw-r--r--source/pt-BR/editeng/messages.po16
-rw-r--r--source/pt-BR/extensions/messages.po10
-rw-r--r--source/pt-BR/filter/source/config/fragments/filters.po16
-rw-r--r--source/pt-BR/filter/source/config/fragments/types.po10
-rw-r--r--source/pt-BR/forms/messages.po15
-rw-r--r--source/pt-BR/fpicker/messages.po16
-rw-r--r--source/pt-BR/helpcontent2/source/text/scalc/guide.po8
-rw-r--r--source/pt-BR/helpcontent2/source/text/shared/00.po150
-rw-r--r--source/pt-BR/helpcontent2/source/text/shared/01.po98
-rw-r--r--source/pt-BR/helpcontent2/source/text/shared/optionen.po64
-rw-r--r--source/pt-BR/helpcontent2/source/text/swriter/00.po22
-rw-r--r--source/pt-BR/helpcontent2/source/text/swriter/01.po76
-rw-r--r--source/pt-BR/instsetoo_native/inc_openoffice/windows/msi_languages.po6
-rw-r--r--source/pt-BR/officecfg/registry/data/org/openoffice/Office/UI.po48
-rw-r--r--source/pt-BR/readlicense_oo/docs.po10
-rw-r--r--source/pt-BR/reportdesign/messages.po10
-rw-r--r--source/pt-BR/sc/messages.po307
-rw-r--r--source/pt-BR/scp2/source/graphicfilter.po12
-rw-r--r--source/pt-BR/scp2/source/ooo.po10
-rw-r--r--source/pt-BR/sd/messages.po192
-rw-r--r--source/pt-BR/sfx2/messages.po20
-rw-r--r--source/pt-BR/svtools/messages.po16
-rw-r--r--source/pt-BR/svx/messages.po100
-rw-r--r--source/pt-BR/sw/messages.po283
-rw-r--r--source/pt-BR/swext/mediawiki/help.po8
-rw-r--r--source/pt-BR/vcl/messages.po8
-rw-r--r--source/pt-BR/writerperfect/messages.po40
-rw-r--r--source/pt-BR/xmlsecurity/messages.po8
-rw-r--r--source/pt/cui/messages.po178
-rw-r--r--source/pt/dbaccess/messages.po14
-rw-r--r--source/pt/dictionaries/en/dialog.po6
-rw-r--r--source/pt/editeng/messages.po8
-rw-r--r--source/pt/extensions/messages.po32
-rw-r--r--source/pt/filter/source/config/fragments/filters.po26
-rw-r--r--source/pt/filter/source/config/fragments/types.po8
-rw-r--r--source/pt/fpicker/messages.po16
-rw-r--r--source/pt/helpcontent2/source/text/sbasic/shared.po52
-rw-r--r--source/pt/helpcontent2/source/text/sbasic/shared/01.po12
-rw-r--r--source/pt/helpcontent2/source/text/scalc/01.po6
-rw-r--r--source/pt/helpcontent2/source/text/scalc/guide.po8
-rw-r--r--source/pt/helpcontent2/source/text/shared/00.po332
-rw-r--r--source/pt/helpcontent2/source/text/shared/01.po30
-rw-r--r--source/pt/helpcontent2/source/text/shared/02.po72
-rw-r--r--source/pt/helpcontent2/source/text/shared/05.po8
-rw-r--r--source/pt/helpcontent2/source/text/shared/autopi.po70
-rw-r--r--source/pt/helpcontent2/source/text/shared/explorer/database.po20
-rw-r--r--source/pt/helpcontent2/source/text/shared/help.po159
-rw-r--r--source/pt/helpcontent2/source/text/shared/optionen.po74
-rw-r--r--source/pt/helpcontent2/source/text/simpress/01.po42
-rw-r--r--source/pt/helpcontent2/source/text/simpress/02.po24
-rw-r--r--source/pt/helpcontent2/source/text/simpress/guide.po26
-rw-r--r--source/pt/helpcontent2/source/text/smath/01.po78
-rw-r--r--source/pt/helpcontent2/source/text/swriter/00.po20
-rw-r--r--source/pt/helpcontent2/source/text/swriter/01.po84
-rw-r--r--source/pt/helpcontent2/source/text/swriter/02.po36
-rw-r--r--source/pt/officecfg/registry/data/org/openoffice/Office/UI.po42
-rw-r--r--source/pt/readlicense_oo/docs.po16
-rw-r--r--source/pt/sc/messages.po321
-rw-r--r--source/pt/scp2/source/ooo.po10
-rw-r--r--source/pt/sd/messages.po148
-rw-r--r--source/pt/sfx2/messages.po8
-rw-r--r--source/pt/svtools/messages.po20
-rw-r--r--source/pt/svx/messages.po70
-rw-r--r--source/pt/sw/messages.po237
-rw-r--r--source/pt/sysui/desktop/share.po8
-rw-r--r--source/pt/vcl/messages.po6
-rw-r--r--source/pt/wizards/messages.po6
-rw-r--r--source/pt/writerperfect/messages.po48
-rw-r--r--source/pt/xmlsecurity/messages.po8
-rw-r--r--source/ro/cui/messages.po126
-rw-r--r--source/ro/filter/source/config/fragments/filters.po10
-rw-r--r--source/ro/filter/source/config/fragments/types.po6
-rw-r--r--source/ro/fpicker/messages.po10
-rw-r--r--source/ro/helpcontent2/source/text/shared/00.po106
-rw-r--r--source/ro/helpcontent2/source/text/shared/01.po24
-rw-r--r--source/ro/helpcontent2/source/text/shared/optionen.po44
-rw-r--r--source/ro/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--source/ro/readlicense_oo/docs.po6
-rw-r--r--source/ro/sc/messages.po267
-rw-r--r--source/ro/sd/messages.po68
-rw-r--r--source/ro/svx/messages.po55
-rw-r--r--source/ro/sw/messages.po193
-rw-r--r--source/ro/writerperfect/messages.po40
-rw-r--r--source/ru/cui/messages.po126
-rw-r--r--source/ru/filter/source/config/fragments/filters.po10
-rw-r--r--source/ru/filter/source/config/fragments/types.po6
-rw-r--r--source/ru/fpicker/messages.po10
-rw-r--r--source/ru/helpcontent2/source/text/shared/00.po148
-rw-r--r--source/ru/helpcontent2/source/text/shared/01.po30
-rw-r--r--source/ru/helpcontent2/source/text/shared/optionen.po50
-rw-r--r--source/ru/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--source/ru/readlicense_oo/docs.po8
-rw-r--r--source/ru/sc/messages.po267
-rw-r--r--source/ru/sd/messages.po68
-rw-r--r--source/ru/svx/messages.po58
-rw-r--r--source/ru/sw/messages.po195
-rw-r--r--source/ru/writerperfect/messages.po40
-rw-r--r--source/rw/cui/messages.po126
-rw-r--r--source/rw/filter/source/config/fragments/filters.po8
-rw-r--r--source/rw/filter/source/config/fragments/types.po6
-rw-r--r--source/rw/fpicker/messages.po9
-rw-r--r--source/rw/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--source/rw/readlicense_oo/docs.po4
-rw-r--r--source/rw/sc/messages.po267
-rw-r--r--source/rw/sd/messages.po68
-rw-r--r--source/rw/svx/messages.po48
-rw-r--r--source/rw/sw/messages.po195
-rw-r--r--source/rw/writerperfect/messages.po40
-rw-r--r--source/sa-IN/cui/messages.po126
-rw-r--r--source/sa-IN/filter/source/config/fragments/filters.po8
-rw-r--r--source/sa-IN/filter/source/config/fragments/types.po6
-rw-r--r--source/sa-IN/fpicker/messages.po9
-rw-r--r--source/sa-IN/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--source/sa-IN/readlicense_oo/docs.po4
-rw-r--r--source/sa-IN/sc/messages.po267
-rw-r--r--source/sa-IN/sd/messages.po68
-rw-r--r--source/sa-IN/svx/messages.po55
-rw-r--r--source/sa-IN/sw/messages.po193
-rw-r--r--source/sa-IN/writerperfect/messages.po40
-rw-r--r--source/sah/cui/messages.po126
-rw-r--r--source/sah/filter/source/config/fragments/filters.po6
-rw-r--r--source/sah/filter/source/config/fragments/types.po4
-rw-r--r--source/sah/fpicker/messages.po6
-rw-r--r--source/sah/officecfg/registry/data/org/openoffice/Office/UI.po4
-rw-r--r--source/sah/readlicense_oo/docs.po4
-rw-r--r--source/sah/sc/messages.po263
-rw-r--r--source/sah/sd/messages.po68
-rw-r--r--source/sah/svx/messages.po46
-rw-r--r--source/sah/sw/messages.po185
-rw-r--r--source/sah/writerperfect/messages.po40
-rw-r--r--source/sat/cui/messages.po126
-rw-r--r--source/sat/filter/source/config/fragments/filters.po8
-rw-r--r--source/sat/filter/source/config/fragments/types.po6
-rw-r--r--source/sat/fpicker/messages.po8
-rw-r--r--source/sat/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--source/sat/readlicense_oo/docs.po4
-rw-r--r--source/sat/sc/messages.po267
-rw-r--r--source/sat/sd/messages.po68
-rw-r--r--source/sat/svx/messages.po55
-rw-r--r--source/sat/sw/messages.po193
-rw-r--r--source/sat/writerperfect/messages.po40
-rw-r--r--source/sd/cui/messages.po126
-rw-r--r--source/sd/filter/source/config/fragments/filters.po8
-rw-r--r--source/sd/filter/source/config/fragments/types.po6
-rw-r--r--source/sd/fpicker/messages.po9
-rw-r--r--source/sd/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--source/sd/readlicense_oo/docs.po4
-rw-r--r--source/sd/sc/messages.po267
-rw-r--r--source/sd/sd/messages.po68
-rw-r--r--source/sd/svx/messages.po55
-rw-r--r--source/sd/sw/messages.po193
-rw-r--r--source/sd/writerperfect/messages.po40
-rw-r--r--source/si/cui/messages.po126
-rw-r--r--source/si/filter/source/config/fragments/filters.po8
-rw-r--r--source/si/filter/source/config/fragments/types.po6
-rw-r--r--source/si/fpicker/messages.po8
-rw-r--r--source/si/helpcontent2/source/text/shared/00.po110
-rw-r--r--source/si/helpcontent2/source/text/shared/01.po30
-rw-r--r--source/si/helpcontent2/source/text/shared/optionen.po46
-rw-r--r--source/si/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--source/si/readlicense_oo/docs.po4
-rw-r--r--source/si/sc/messages.po267
-rw-r--r--source/si/sd/messages.po68
-rw-r--r--source/si/svx/messages.po48
-rw-r--r--source/si/sw/messages.po195
-rw-r--r--source/si/writerperfect/messages.po40
-rw-r--r--source/sid/cui/messages.po126
-rw-r--r--source/sid/filter/source/config/fragments/filters.po8
-rw-r--r--source/sid/filter/source/config/fragments/types.po6
-rw-r--r--source/sid/fpicker/messages.po8
-rw-r--r--source/sid/helpcontent2/source/text/shared/00.po148
-rw-r--r--source/sid/helpcontent2/source/text/shared/01.po24
-rw-r--r--source/sid/helpcontent2/source/text/shared/optionen.po56
-rw-r--r--source/sid/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--source/sid/readlicense_oo/docs.po4
-rw-r--r--source/sid/sc/messages.po267
-rw-r--r--source/sid/sd/messages.po68
-rw-r--r--source/sid/svx/messages.po52
-rw-r--r--source/sid/sw/messages.po195
-rw-r--r--source/sid/writerperfect/messages.po40
-rw-r--r--source/sk/cui/messages.po126
-rw-r--r--source/sk/filter/source/config/fragments/filters.po30
-rw-r--r--source/sk/filter/source/config/fragments/types.po10
-rw-r--r--source/sk/fpicker/messages.po16
-rw-r--r--source/sk/helpcontent2/source/text/shared/00.po120
-rw-r--r--source/sk/helpcontent2/source/text/shared/01.po30
-rw-r--r--source/sk/helpcontent2/source/text/shared/optionen.po48
-rw-r--r--source/sk/officecfg/registry/data/org/openoffice/Office/UI.po20
-rw-r--r--source/sk/readlicense_oo/docs.po10
-rw-r--r--source/sk/sc/messages.po309
-rw-r--r--source/sk/scp2/source/ooo.po10
-rw-r--r--source/sk/sd/messages.po148
-rw-r--r--source/sk/svtools/messages.po12
-rw-r--r--source/sk/svx/messages.po64
-rw-r--r--source/sk/sw/messages.po269
-rw-r--r--source/sk/writerperfect/messages.po40
-rw-r--r--source/sk/xmlsecurity/messages.po8
-rw-r--r--source/sq/cui/messages.po126
-rw-r--r--source/sq/filter/source/config/fragments/filters.po8
-rw-r--r--source/sq/filter/source/config/fragments/types.po6
-rw-r--r--source/sq/fpicker/messages.po10
-rw-r--r--source/sq/helpcontent2/source/text/shared/00.po108
-rw-r--r--source/sq/helpcontent2/source/text/shared/01.po26
-rw-r--r--source/sq/helpcontent2/source/text/shared/optionen.po48
-rw-r--r--source/sq/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--source/sq/readlicense_oo/docs.po6
-rw-r--r--source/sq/sc/messages.po267
-rw-r--r--source/sq/sd/messages.po68
-rw-r--r--source/sq/svx/messages.po48
-rw-r--r--source/sq/sw/messages.po194
-rw-r--r--source/sq/writerperfect/messages.po40
-rw-r--r--source/ss/cui/messages.po126
-rw-r--r--source/ss/filter/source/config/fragments/filters.po8
-rw-r--r--source/ss/filter/source/config/fragments/types.po6
-rw-r--r--source/ss/fpicker/messages.po9
-rw-r--r--source/ss/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--source/ss/readlicense_oo/docs.po4
-rw-r--r--source/ss/sc/messages.po267
-rw-r--r--source/ss/sd/messages.po68
-rw-r--r--source/ss/svx/messages.po48
-rw-r--r--source/ss/sw/messages.po199
-rw-r--r--source/ss/writerperfect/messages.po40
-rw-r--r--source/st/cui/messages.po126
-rw-r--r--source/st/filter/source/config/fragments/filters.po8
-rw-r--r--source/st/filter/source/config/fragments/types.po6
-rw-r--r--source/st/fpicker/messages.po9
-rw-r--r--source/st/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--source/st/readlicense_oo/docs.po4
-rw-r--r--source/st/sc/messages.po267
-rw-r--r--source/st/sd/messages.po68
-rw-r--r--source/st/svx/messages.po48
-rw-r--r--source/st/sw/messages.po195
-rw-r--r--source/st/writerperfect/messages.po40
-rw-r--r--source/sv/cui/messages.po126
-rw-r--r--source/sv/filter/source/config/fragments/filters.po10
-rw-r--r--source/sv/filter/source/config/fragments/types.po6
-rw-r--r--source/sv/fpicker/messages.po10
-rw-r--r--source/sv/helpcontent2/source/text/shared/00.po148
-rw-r--r--source/sv/helpcontent2/source/text/shared/01.po30
-rw-r--r--source/sv/helpcontent2/source/text/shared/optionen.po56
-rw-r--r--source/sv/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--source/sv/readlicense_oo/docs.po6
-rw-r--r--source/sv/sc/messages.po267
-rw-r--r--source/sv/sd/messages.po68
-rw-r--r--source/sv/sfx2/messages.po8
-rw-r--r--source/sv/svx/messages.po55
-rw-r--r--source/sv/sw/messages.po193
-rw-r--r--source/sv/writerperfect/messages.po40
-rw-r--r--source/sw-TZ/cui/messages.po126
-rw-r--r--source/sw-TZ/filter/source/config/fragments/filters.po8
-rw-r--r--source/sw-TZ/filter/source/config/fragments/types.po6
-rw-r--r--source/sw-TZ/fpicker/messages.po9
-rw-r--r--source/sw-TZ/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--source/sw-TZ/readlicense_oo/docs.po4
-rw-r--r--source/sw-TZ/sc/messages.po267
-rw-r--r--source/sw-TZ/sd/messages.po68
-rw-r--r--source/sw-TZ/svx/messages.po48
-rw-r--r--source/sw-TZ/sw/messages.po195
-rw-r--r--source/sw-TZ/writerperfect/messages.po40
-rw-r--r--source/szl/cui/messages.po126
-rw-r--r--source/szl/filter/source/config/fragments/filters.po6
-rw-r--r--source/szl/filter/source/config/fragments/types.po4
-rw-r--r--source/szl/fpicker/messages.po6
-rw-r--r--source/szl/officecfg/registry/data/org/openoffice/Office/UI.po4
-rw-r--r--source/szl/readlicense_oo/docs.po4
-rw-r--r--source/szl/sc/messages.po263
-rw-r--r--source/szl/sd/messages.po68
-rw-r--r--source/szl/svx/messages.po46
-rw-r--r--source/szl/sw/messages.po185
-rw-r--r--source/szl/writerperfect/messages.po40
-rw-r--r--source/ta/cui/messages.po126
-rw-r--r--source/ta/filter/source/config/fragments/filters.po10
-rw-r--r--source/ta/filter/source/config/fragments/types.po6
-rw-r--r--source/ta/fpicker/messages.po10
-rw-r--r--source/ta/helpcontent2/source/text/scalc/01.po8
-rw-r--r--source/ta/helpcontent2/source/text/shared/00.po112
-rw-r--r--source/ta/helpcontent2/source/text/shared/01.po24
-rw-r--r--source/ta/helpcontent2/source/text/shared/help.po79
-rw-r--r--source/ta/helpcontent2/source/text/shared/optionen.po46
-rw-r--r--source/ta/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--source/ta/readlicense_oo/docs.po6
-rw-r--r--source/ta/sc/messages.po267
-rw-r--r--source/ta/sd/messages.po68
-rw-r--r--source/ta/svx/messages.po55
-rw-r--r--source/ta/sw/messages.po193
-rw-r--r--source/ta/writerperfect/messages.po40
-rw-r--r--source/te/cui/messages.po126
-rw-r--r--source/te/filter/source/config/fragments/filters.po8
-rw-r--r--source/te/filter/source/config/fragments/types.po6
-rw-r--r--source/te/fpicker/messages.po8
-rw-r--r--source/te/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--source/te/readlicense_oo/docs.po4
-rw-r--r--source/te/sc/messages.po267
-rw-r--r--source/te/sd/messages.po68
-rw-r--r--source/te/svx/messages.po52
-rw-r--r--source/te/sw/messages.po195
-rw-r--r--source/te/writerperfect/messages.po40
-rw-r--r--source/tg/cui/messages.po126
-rw-r--r--source/tg/filter/source/config/fragments/filters.po8
-rw-r--r--source/tg/filter/source/config/fragments/types.po6
-rw-r--r--source/tg/fpicker/messages.po9
-rw-r--r--source/tg/helpcontent2/source/text/shared/00.po146
-rw-r--r--source/tg/helpcontent2/source/text/shared/01.po26
-rw-r--r--source/tg/helpcontent2/source/text/shared/optionen.po46
-rw-r--r--source/tg/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--source/tg/readlicense_oo/docs.po4
-rw-r--r--source/tg/sc/messages.po267
-rw-r--r--source/tg/sd/messages.po68
-rw-r--r--source/tg/svx/messages.po48
-rw-r--r--source/tg/sw/messages.po195
-rw-r--r--source/tg/writerperfect/messages.po40
-rw-r--r--source/th/cui/messages.po126
-rw-r--r--source/th/filter/source/config/fragments/filters.po8
-rw-r--r--source/th/filter/source/config/fragments/types.po6
-rw-r--r--source/th/fpicker/messages.po10
-rw-r--r--source/th/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--source/th/readlicense_oo/docs.po4
-rw-r--r--source/th/sc/messages.po267
-rw-r--r--source/th/sd/messages.po68
-rw-r--r--source/th/svx/messages.po53
-rw-r--r--source/th/sw/messages.po197
-rw-r--r--source/th/writerperfect/messages.po40
-rw-r--r--source/ti/cui/messages.po126
-rw-r--r--source/ti/filter/source/config/fragments/filters.po6
-rw-r--r--source/ti/filter/source/config/fragments/types.po4
-rw-r--r--source/ti/fpicker/messages.po6
-rw-r--r--source/ti/officecfg/registry/data/org/openoffice/Office/UI.po4
-rw-r--r--source/ti/readlicense_oo/docs.po4
-rw-r--r--source/ti/sc/messages.po263
-rw-r--r--source/ti/sd/messages.po68
-rw-r--r--source/ti/svx/messages.po46
-rw-r--r--source/ti/sw/messages.po185
-rw-r--r--source/ti/writerperfect/messages.po40
-rw-r--r--source/tn/cui/messages.po126
-rw-r--r--source/tn/filter/source/config/fragments/filters.po8
-rw-r--r--source/tn/filter/source/config/fragments/types.po6
-rw-r--r--source/tn/fpicker/messages.po9
-rw-r--r--source/tn/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--source/tn/readlicense_oo/docs.po4
-rw-r--r--source/tn/sc/messages.po267
-rw-r--r--source/tn/sd/messages.po68
-rw-r--r--source/tn/svx/messages.po48
-rw-r--r--source/tn/sw/messages.po197
-rw-r--r--source/tn/writerperfect/messages.po40
-rw-r--r--source/tr/cui/messages.po126
-rw-r--r--source/tr/filter/source/config/fragments/filters.po10
-rw-r--r--source/tr/filter/source/config/fragments/types.po8
-rw-r--r--source/tr/fpicker/messages.po10
-rw-r--r--source/tr/helpcontent2/source/text/scalc/guide.po8
-rw-r--r--source/tr/helpcontent2/source/text/shared/00.po154
-rw-r--r--source/tr/helpcontent2/source/text/shared/01.po44
-rw-r--r--source/tr/helpcontent2/source/text/shared/optionen.po58
-rw-r--r--source/tr/officecfg/registry/data/org/openoffice/Office/UI.po18
-rw-r--r--source/tr/readlicense_oo/docs.po8
-rw-r--r--source/tr/sc/messages.po299
-rw-r--r--source/tr/scp2/source/ooo.po10
-rw-r--r--source/tr/sd/messages.po116
-rw-r--r--source/tr/svx/messages.po58
-rw-r--r--source/tr/sw/messages.po223
-rw-r--r--source/tr/writerperfect/messages.po40
-rw-r--r--source/tr/xmlsecurity/messages.po8
-rw-r--r--source/ts/cui/messages.po126
-rw-r--r--source/ts/filter/source/config/fragments/filters.po8
-rw-r--r--source/ts/filter/source/config/fragments/types.po6
-rw-r--r--source/ts/fpicker/messages.po9
-rw-r--r--source/ts/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--source/ts/readlicense_oo/docs.po4
-rw-r--r--source/ts/sc/messages.po267
-rw-r--r--source/ts/sd/messages.po68
-rw-r--r--source/ts/svx/messages.po48
-rw-r--r--source/ts/sw/messages.po199
-rw-r--r--source/ts/writerperfect/messages.po40
-rw-r--r--source/tt/cui/messages.po126
-rw-r--r--source/tt/filter/source/config/fragments/filters.po9
-rw-r--r--source/tt/filter/source/config/fragments/types.po4
-rw-r--r--source/tt/fpicker/messages.po9
-rw-r--r--source/tt/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--source/tt/readlicense_oo/docs.po4
-rw-r--r--source/tt/sc/messages.po263
-rw-r--r--source/tt/sd/messages.po68
-rw-r--r--source/tt/svx/messages.po48
-rw-r--r--source/tt/sw/messages.po185
-rw-r--r--source/tt/writerperfect/messages.po40
-rw-r--r--source/ug/cui/messages.po126
-rw-r--r--source/ug/filter/source/config/fragments/filters.po8
-rw-r--r--source/ug/filter/source/config/fragments/types.po6
-rw-r--r--source/ug/fpicker/messages.po10
-rw-r--r--source/ug/helpcontent2/source/text/shared/00.po110
-rw-r--r--source/ug/helpcontent2/source/text/shared/01.po26
-rw-r--r--source/ug/helpcontent2/source/text/shared/optionen.po46
-rw-r--r--source/ug/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--source/ug/readlicense_oo/docs.po6
-rw-r--r--source/ug/sc/messages.po267
-rw-r--r--source/ug/sd/messages.po68
-rw-r--r--source/ug/svx/messages.po52
-rw-r--r--source/ug/sw/messages.po195
-rw-r--r--source/ug/writerperfect/messages.po40
-rw-r--r--source/uk/cui/messages.po138
-rw-r--r--source/uk/filter/source/config/fragments/filters.po14
-rw-r--r--source/uk/filter/source/config/fragments/types.po10
-rw-r--r--source/uk/fpicker/messages.po16
-rw-r--r--source/uk/helpcontent2/source/text/scalc/01.po8
-rw-r--r--source/uk/helpcontent2/source/text/scalc/guide.po70
-rw-r--r--source/uk/helpcontent2/source/text/shared/00.po156
-rw-r--r--source/uk/helpcontent2/source/text/shared/01.po194
-rw-r--r--source/uk/helpcontent2/source/text/shared/02.po10
-rw-r--r--source/uk/helpcontent2/source/text/shared/guide.po70
-rw-r--r--source/uk/helpcontent2/source/text/shared/optionen.po48
-rw-r--r--source/uk/helpcontent2/source/text/swriter/00.po20
-rw-r--r--source/uk/helpcontent2/source/text/swriter/01.po76
-rw-r--r--source/uk/officecfg/registry/data/org/openoffice/Office/UI.po20
-rw-r--r--source/uk/readlicense_oo/docs.po10
-rw-r--r--source/uk/sc/messages.po299
-rw-r--r--source/uk/scp2/source/ooo.po10
-rw-r--r--source/uk/sd/messages.po134
-rw-r--r--source/uk/svtools/messages.po10
-rw-r--r--source/uk/svx/messages.po108
-rw-r--r--source/uk/sw/messages.po269
-rw-r--r--source/uk/writerperfect/messages.po40
-rw-r--r--source/uk/xmlsecurity/messages.po8
-rw-r--r--source/ur/cui/messages.po126
-rw-r--r--source/ur/filter/source/config/fragments/filters.po6
-rw-r--r--source/ur/filter/source/config/fragments/types.po4
-rw-r--r--source/ur/fpicker/messages.po8
-rw-r--r--source/ur/officecfg/registry/data/org/openoffice/Office/UI.po4
-rw-r--r--source/ur/readlicense_oo/docs.po4
-rw-r--r--source/ur/sc/messages.po263
-rw-r--r--source/ur/sd/messages.po68
-rw-r--r--source/ur/svx/messages.po46
-rw-r--r--source/ur/sw/messages.po185
-rw-r--r--source/ur/writerperfect/messages.po40
-rw-r--r--source/uz/cui/messages.po126
-rw-r--r--source/uz/filter/source/config/fragments/filters.po8
-rw-r--r--source/uz/filter/source/config/fragments/types.po6
-rw-r--r--source/uz/fpicker/messages.po9
-rw-r--r--source/uz/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--source/uz/readlicense_oo/docs.po4
-rw-r--r--source/uz/sc/messages.po263
-rw-r--r--source/uz/sd/messages.po68
-rw-r--r--source/uz/svx/messages.po48
-rw-r--r--source/uz/sw/messages.po199
-rw-r--r--source/uz/writerperfect/messages.po40
-rw-r--r--source/ve/cui/messages.po126
-rw-r--r--source/ve/filter/source/config/fragments/filters.po8
-rw-r--r--source/ve/filter/source/config/fragments/types.po6
-rw-r--r--source/ve/fpicker/messages.po9
-rw-r--r--source/ve/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--source/ve/readlicense_oo/docs.po4
-rw-r--r--source/ve/sc/messages.po267
-rw-r--r--source/ve/sd/messages.po68
-rw-r--r--source/ve/svx/messages.po48
-rw-r--r--source/ve/sw/messages.po195
-rw-r--r--source/ve/writerperfect/messages.po40
-rw-r--r--source/vec/cui/messages.po126
-rw-r--r--source/vec/filter/source/config/fragments/filters.po10
-rw-r--r--source/vec/filter/source/config/fragments/types.po6
-rw-r--r--source/vec/fpicker/messages.po10
-rw-r--r--source/vec/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--source/vec/readlicense_oo/docs.po6
-rw-r--r--source/vec/sc/messages.po267
-rw-r--r--source/vec/sd/messages.po68
-rw-r--r--source/vec/svx/messages.po58
-rw-r--r--source/vec/sw/messages.po195
-rw-r--r--source/vec/writerperfect/messages.po40
-rw-r--r--source/vi/cui/messages.po126
-rw-r--r--source/vi/filter/source/config/fragments/filters.po8
-rw-r--r--source/vi/filter/source/config/fragments/types.po6
-rw-r--r--source/vi/fpicker/messages.po8
-rw-r--r--source/vi/helpcontent2/source/text/shared/00.po148
-rw-r--r--source/vi/helpcontent2/source/text/shared/01.po30
-rw-r--r--source/vi/helpcontent2/source/text/shared/optionen.po50
-rw-r--r--source/vi/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--source/vi/readlicense_oo/docs.po4
-rw-r--r--source/vi/sc/messages.po267
-rw-r--r--source/vi/sd/messages.po68
-rw-r--r--source/vi/svx/messages.po52
-rw-r--r--source/vi/sw/messages.po195
-rw-r--r--source/vi/writerperfect/messages.po40
-rw-r--r--source/xh/cui/messages.po126
-rw-r--r--source/xh/filter/source/config/fragments/filters.po8
-rw-r--r--source/xh/filter/source/config/fragments/types.po6
-rw-r--r--source/xh/fpicker/messages.po9
-rw-r--r--source/xh/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--source/xh/readlicense_oo/docs.po4
-rw-r--r--source/xh/sc/messages.po267
-rw-r--r--source/xh/sd/messages.po68
-rw-r--r--source/xh/svx/messages.po48
-rw-r--r--source/xh/sw/messages.po197
-rw-r--r--source/xh/writerperfect/messages.po40
-rw-r--r--source/zh-CN/cui/messages.po126
-rw-r--r--source/zh-CN/filter/source/config/fragments/filters.po10
-rw-r--r--source/zh-CN/filter/source/config/fragments/types.po6
-rw-r--r--source/zh-CN/fpicker/messages.po10
-rw-r--r--source/zh-CN/helpcontent2/source/text/shared/00.po148
-rw-r--r--source/zh-CN/helpcontent2/source/text/shared/01.po30
-rw-r--r--source/zh-CN/helpcontent2/source/text/shared/optionen.po56
-rw-r--r--source/zh-CN/officecfg/registry/data/org/openoffice/Office/UI.po176
-rw-r--r--source/zh-CN/readlicense_oo/docs.po6
-rw-r--r--source/zh-CN/sc/messages.po267
-rw-r--r--source/zh-CN/sd/messages.po68
-rw-r--r--source/zh-CN/svx/messages.po58
-rw-r--r--source/zh-CN/sw/messages.po195
-rw-r--r--source/zh-CN/writerperfect/messages.po76
-rw-r--r--source/zh-TW/cui/messages.po132
-rw-r--r--source/zh-TW/extensions/messages.po6
-rw-r--r--source/zh-TW/filter/source/config/fragments/filters.po48
-rw-r--r--source/zh-TW/filter/source/config/fragments/types.po28
-rw-r--r--source/zh-TW/fpicker/messages.po10
-rw-r--r--source/zh-TW/helpcontent2/source/text/shared/00.po148
-rw-r--r--source/zh-TW/helpcontent2/source/text/shared/01.po30
-rw-r--r--source/zh-TW/helpcontent2/source/text/shared/optionen.po50
-rw-r--r--source/zh-TW/officecfg/registry/data/org/openoffice/Office/UI.po28
-rw-r--r--source/zh-TW/readlicense_oo/docs.po6
-rw-r--r--source/zh-TW/sc/messages.po267
-rw-r--r--source/zh-TW/scp2/source/ooo.po10
-rw-r--r--source/zh-TW/sd/messages.po148
-rw-r--r--source/zh-TW/svx/messages.po58
-rw-r--r--source/zh-TW/sw/messages.po195
-rw-r--r--source/zh-TW/vcl/messages.po8
-rw-r--r--source/zh-TW/writerperfect/messages.po46
-rw-r--r--source/zh-TW/xmlsecurity/messages.po8
-rw-r--r--source/zu/cui/messages.po126
-rw-r--r--source/zu/filter/source/config/fragments/filters.po8
-rw-r--r--source/zu/filter/source/config/fragments/types.po6
-rw-r--r--source/zu/fpicker/messages.po9
-rw-r--r--source/zu/officecfg/registry/data/org/openoffice/Office/UI.po6
-rw-r--r--source/zu/readlicense_oo/docs.po4
-rw-r--r--source/zu/sc/messages.po267
-rw-r--r--source/zu/sd/messages.po68
-rw-r--r--source/zu/svx/messages.po48
-rw-r--r--source/zu/sw/messages.po197
-rw-r--r--source/zu/writerperfect/messages.po40
1860 files changed, 68688 insertions, 61144 deletions
diff --git a/source/ab/cui/messages.po b/source/ab/cui/messages.po
index 9320740ec6f..3c4d365a386 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2018-04-02 10:50+0000\n"
"Last-Translator: Андрей Абухба <aabuchba@mail.ru>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -9885,97 +9885,97 @@ msgctxt "positionsizedialog|PositionAndSizeDialog"
msgid "Position and Size"
msgstr "Аҭыҧи ашәагааи"
-#: cui/uiconfig/ui/positionsizedialog.ui:107
+#: cui/uiconfig/ui/positionsizedialog.ui:136
msgctxt "positionsizedialog|RID_SVXPAGE_POSITION_SIZE"
msgid "Position and Size"
msgstr "Аҭыҧи ашәагааи"
-#: cui/uiconfig/ui/positionsizedialog.ui:129
+#: cui/uiconfig/ui/positionsizedialog.ui:182
msgctxt "positionsizedialog|RID_SVXPAGE_SWPOSSIZE"
msgid "Position and Size"
msgstr "Аҭыҧи ашәагааи"
-#: cui/uiconfig/ui/positionsizedialog.ui:152
+#: cui/uiconfig/ui/positionsizedialog.ui:229
msgctxt "positionsizedialog|RID_SVXPAGE_ANGLE"
msgid "Rotation"
msgstr "Аргьежьра"
-#: cui/uiconfig/ui/positionsizedialog.ui:175
+#: cui/uiconfig/ui/positionsizedialog.ui:276
msgctxt "positionsizedialog|RID_SVXPAGE_SLANT"
msgid "Slant & Corner Radius"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:40
+#: cui/uiconfig/ui/possizetabpage.ui:61
msgctxt "possizetabpage|FT_POS_X"
msgid "Position _X:"
msgstr "Аҭыҧ_X:"
-#: cui/uiconfig/ui/possizetabpage.ui:56
+#: cui/uiconfig/ui/possizetabpage.ui:75
msgctxt "possizetabpage|FT_POS_Y"
msgid "Position _Y:"
msgstr "Аҭыҧ _Y:"
-#: cui/uiconfig/ui/possizetabpage.ui:110
+#: cui/uiconfig/ui/possizetabpage.ui:128
msgctxt "possizetabpage|FT_POSREFERENCE"
msgid "_Base point:"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:148
+#: cui/uiconfig/ui/possizetabpage.ui:182
msgctxt "possizetabpage|label1"
msgid "Position"
msgstr "Аҭыҧ"
-#: cui/uiconfig/ui/possizetabpage.ui:190
+#: cui/uiconfig/ui/possizetabpage.ui:224
msgctxt "possizetabpage|FT_WIDTH"
msgid "Wi_dth:"
msgstr "Аҭбаара:"
-#: cui/uiconfig/ui/possizetabpage.ui:206
+#: cui/uiconfig/ui/possizetabpage.ui:238
msgctxt "possizetabpage|FT_HEIGHT"
msgid "H_eight:"
msgstr "Аҳаракыра:"
-#: cui/uiconfig/ui/possizetabpage.ui:247
+#: cui/uiconfig/ui/possizetabpage.ui:276
msgctxt "possizetabpage|CBX_SCALE"
msgid "_Keep ratio"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:279
+#: cui/uiconfig/ui/possizetabpage.ui:307
msgctxt "possizetabpage|FT_SIZEREFERENCE"
msgid "Base _point:"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:317
+#: cui/uiconfig/ui/possizetabpage.ui:361
msgctxt "possizetabpage|label2"
msgid "Size"
msgstr "Ашәагаа"
-#: cui/uiconfig/ui/possizetabpage.ui:356
+#: cui/uiconfig/ui/possizetabpage.ui:401
msgctxt "possizetabpage|TSB_POSPROTECT"
msgid "Positio_n"
msgstr "Аҭыҧ"
-#: cui/uiconfig/ui/possizetabpage.ui:373
+#: cui/uiconfig/ui/possizetabpage.ui:418
msgctxt "possizetabpage|TSB_SIZEPROTECT"
msgid "_Size"
msgstr "Ашәагаа"
-#: cui/uiconfig/ui/possizetabpage.ui:397
+#: cui/uiconfig/ui/possizetabpage.ui:441
msgctxt "possizetabpage|label3"
msgid "Protect"
msgstr "Ахьчара"
-#: cui/uiconfig/ui/possizetabpage.ui:430
+#: cui/uiconfig/ui/possizetabpage.ui:475
msgctxt "possizetabpage|TSB_AUTOGROW_WIDTH"
msgid "_Fit width to text"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:447
+#: cui/uiconfig/ui/possizetabpage.ui:492
msgctxt "possizetabpage|TSB_AUTOGROW_HEIGHT"
msgid "Fit _height to text"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:471
+#: cui/uiconfig/ui/possizetabpage.ui:515
msgctxt "possizetabpage|label4"
msgid "Adapt"
msgstr ""
@@ -10177,47 +10177,47 @@ msgctxt "recordnumberdialog|label2"
msgid "go to record"
msgstr ""
-#: cui/uiconfig/ui/rotationtabpage.ui:52
+#: cui/uiconfig/ui/rotationtabpage.ui:56
msgctxt "rotationtabpage|FT_POS_X"
msgid "Position _X:"
msgstr "Аҭыҧ _X:"
-#: cui/uiconfig/ui/rotationtabpage.ui:66
+#: cui/uiconfig/ui/rotationtabpage.ui:70
msgctxt "rotationtabpage|FT_POS_Y"
msgid "Position _Y:"
msgstr "Аҭыҧ _Y:"
-#: cui/uiconfig/ui/rotationtabpage.ui:116
+#: cui/uiconfig/ui/rotationtabpage.ui:123
msgctxt "rotationtabpage|FT_POSPRESETS"
msgid "_Default settings:"
msgstr ""
-#: cui/uiconfig/ui/rotationtabpage.ui:130
+#: cui/uiconfig/ui/rotationtabpage.ui:151
msgctxt "rotationtabpage|CTL_RECT|tooltip_text"
msgid "Rotation point"
msgstr ""
-#: cui/uiconfig/ui/rotationtabpage.ui:155
+#: cui/uiconfig/ui/rotationtabpage.ui:178
msgctxt "rotationtabpage|label1"
msgid "Pivot Point"
msgstr ""
-#: cui/uiconfig/ui/rotationtabpage.ui:197
+#: cui/uiconfig/ui/rotationtabpage.ui:220
msgctxt "rotationtabpage|FT_ANGLE"
msgid "_Angle:"
msgstr "Акәакь:"
-#: cui/uiconfig/ui/rotationtabpage.ui:238
+#: cui/uiconfig/ui/rotationtabpage.ui:263
msgctxt "rotationtabpage|FT_ANGLEPRESETS"
msgid "Default _settings:"
msgstr ""
-#: cui/uiconfig/ui/rotationtabpage.ui:252
+#: cui/uiconfig/ui/rotationtabpage.ui:287
msgctxt "rotationtabpage|CTL_ANGLE|tooltip_text"
msgid "Rotation Angle"
msgstr ""
-#: cui/uiconfig/ui/rotationtabpage.ui:277
+#: cui/uiconfig/ui/rotationtabpage.ui:314
msgctxt "rotationtabpage|label2"
msgid "Rotation Angle"
msgstr "Аргьежьра акәакь"
@@ -10598,52 +10598,52 @@ msgctxt "similaritysearchdialog|relaxbox"
msgid "_Combine"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:50
+#: cui/uiconfig/ui/slantcornertabpage.ui:70
msgctxt "slantcornertabpage|label5"
msgid "_X:"
msgstr "X:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:88
+#: cui/uiconfig/ui/slantcornertabpage.ui:110
msgctxt "slantcornertabpage|label6"
msgid "_Y:"
msgstr "Y:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:125
+#: cui/uiconfig/ui/slantcornertabpage.ui:149
msgctxt "slantcornertabpage|label3"
msgid "Control Point 1"
msgstr "Акәаҧ 1"
-#: cui/uiconfig/ui/slantcornertabpage.ui:159
+#: cui/uiconfig/ui/slantcornertabpage.ui:183
msgctxt "slantcornertabpage|FT_RADIUS"
msgid "_Radius:"
msgstr "Арадиус:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:189
+#: cui/uiconfig/ui/slantcornertabpage.ui:214
msgctxt "slantcornertabpage|label1"
msgid "Corner Radius"
msgstr "Акәакь арадиус"
-#: cui/uiconfig/ui/slantcornertabpage.ui:223
+#: cui/uiconfig/ui/slantcornertabpage.ui:248
msgctxt "slantcornertabpage|FT_ANGLE"
msgid "_Angle:"
msgstr "Акәакь:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:253
+#: cui/uiconfig/ui/slantcornertabpage.ui:279
msgctxt "slantcornertabpage|label2"
msgid "Slant"
msgstr "Анаара"
-#: cui/uiconfig/ui/slantcornertabpage.ui:294
+#: cui/uiconfig/ui/slantcornertabpage.ui:320
msgctxt "slantcornertabpage|label4"
msgid "_X:"
msgstr "X:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:332
+#: cui/uiconfig/ui/slantcornertabpage.ui:360
msgctxt "slantcornertabpage|label7"
msgid "_Y:"
msgstr "Y:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:369
+#: cui/uiconfig/ui/slantcornertabpage.ui:399
msgctxt "slantcornertabpage|label8"
msgid "Control Point 2"
msgstr "Акәаҧ 2"
@@ -10926,112 +10926,112 @@ msgctxt "storedwebconnectiondialog|change"
msgid "_Change Password..."
msgstr "Иҧсахтәуп ажәамаӡа..."
-#: cui/uiconfig/ui/swpossizepage.ui:74
+#: cui/uiconfig/ui/swpossizepage.ui:85
msgctxt "swpossizepage|widthft"
msgid "_Width:"
msgstr "_Аҭбаара:"
-#: cui/uiconfig/ui/swpossizepage.ui:111
+#: cui/uiconfig/ui/swpossizepage.ui:123
msgctxt "swpossizepage|heightft"
msgid "H_eight:"
msgstr "Аҳаракыра:"
-#: cui/uiconfig/ui/swpossizepage.ui:128
+#: cui/uiconfig/ui/swpossizepage.ui:141
msgctxt "swpossizepage|ratio"
msgid "_Keep ratio"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:149
+#: cui/uiconfig/ui/swpossizepage.ui:162
msgctxt "swpossizepage|label2"
msgid "Size"
msgstr "Ашәагаа"
-#: cui/uiconfig/ui/swpossizepage.ui:205
+#: cui/uiconfig/ui/swpossizepage.ui:218
msgctxt "swpossizepage|topage"
msgid "To _page"
msgstr "Адаҟьахь"
-#: cui/uiconfig/ui/swpossizepage.ui:222
+#: cui/uiconfig/ui/swpossizepage.ui:234
msgctxt "swpossizepage|topara"
msgid "To paragrap_h"
msgstr "Абзац ахь"
-#: cui/uiconfig/ui/swpossizepage.ui:238
+#: cui/uiconfig/ui/swpossizepage.ui:250
msgctxt "swpossizepage|tochar"
msgid "To cha_racter"
msgstr "Асимвол ахь"
-#: cui/uiconfig/ui/swpossizepage.ui:254
+#: cui/uiconfig/ui/swpossizepage.ui:266
msgctxt "swpossizepage|aschar"
msgid "_As character"
msgstr "Асимвол еиҧш"
-#: cui/uiconfig/ui/swpossizepage.ui:270
+#: cui/uiconfig/ui/swpossizepage.ui:282
msgctxt "swpossizepage|toframe"
msgid "To _frame"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:292
+#: cui/uiconfig/ui/swpossizepage.ui:304
msgctxt "swpossizepage|label1"
msgid "Anchor"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:333
+#: cui/uiconfig/ui/swpossizepage.ui:344
msgctxt "swpossizepage|horiposft"
msgid "Hori_zontal:"
msgstr "Горизонталла:"
-#: cui/uiconfig/ui/swpossizepage.ui:347
+#: cui/uiconfig/ui/swpossizepage.ui:358
msgctxt "swpossizepage|horibyft"
msgid "b_y:"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:361
+#: cui/uiconfig/ui/swpossizepage.ui:372
msgctxt "swpossizepage|vertbyft"
msgid "_by:"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:375
+#: cui/uiconfig/ui/swpossizepage.ui:386
msgctxt "swpossizepage|horitoft"
msgid "_to:"
msgstr "ахь:"
-#: cui/uiconfig/ui/swpossizepage.ui:421
+#: cui/uiconfig/ui/swpossizepage.ui:433
msgctxt "swpossizepage|vertposft"
msgid "_Vertical:"
msgstr "Вертикалла:"
-#: cui/uiconfig/ui/swpossizepage.ui:457
+#: cui/uiconfig/ui/swpossizepage.ui:470
msgctxt "swpossizepage|verttoft"
msgid "t_o:"
msgstr "ахь:"
-#: cui/uiconfig/ui/swpossizepage.ui:478
+#: cui/uiconfig/ui/swpossizepage.ui:492
msgctxt "swpossizepage|mirror"
msgid "_Mirror on even pages"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:495
+#: cui/uiconfig/ui/swpossizepage.ui:509
msgctxt "swpossizepage|followtextflow"
msgid "Follow te_xt flow"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:518
+#: cui/uiconfig/ui/swpossizepage.ui:532
msgctxt "swpossizepage|label11"
msgid "Position"
msgstr "Аҭыҧ"
-#: cui/uiconfig/ui/swpossizepage.ui:549
+#: cui/uiconfig/ui/swpossizepage.ui:563
msgctxt "swpossizepage|pos"
msgid "Positio_n"
msgstr "Аҭыҧ"
-#: cui/uiconfig/ui/swpossizepage.ui:565
+#: cui/uiconfig/ui/swpossizepage.ui:579
msgctxt "swpossizepage|size"
msgid "_Size"
msgstr "Ашәагаа"
-#: cui/uiconfig/ui/swpossizepage.ui:587
+#: cui/uiconfig/ui/swpossizepage.ui:601
msgctxt "swpossizepage|label3"
msgid "Protect"
msgstr "Ахьчара"
@@ -11221,12 +11221,12 @@ msgctxt "textattrtabpage|label2"
msgid "Spacing to Borders"
msgstr ""
-#: cui/uiconfig/ui/textattrtabpage.ui:425
+#: cui/uiconfig/ui/textattrtabpage.ui:423
msgctxt "textattrtabpage|TSB_FULL_WIDTH"
msgid "Full _width"
msgstr "Ихарҭәаау аҭбаара"
-#: cui/uiconfig/ui/textattrtabpage.ui:448
+#: cui/uiconfig/ui/textattrtabpage.ui:446
msgctxt "textattrtabpage|label3"
msgid "Text Anchor"
msgstr ""
diff --git a/source/ab/filter/source/config/fragments/filters.po b/source/ab/filter/source/config/fragments/filters.po
index 3661150dc38..345becb7892 100644
--- a/source/ab/filter/source/config/fragments/filters.po
+++ b/source/ab/filter/source/config/fragments/filters.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-16 16:54+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2017-12-24 18:11+0000\n"
"Last-Translator: Андрей Абухба <aabuchba@mail.ru>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -462,8 +462,8 @@ msgctxt ""
"MS Word 2003 XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Word 2003 XML"
-msgstr "Microsoft Word 2003 XML"
+msgid "Word 2003 XML"
+msgstr ""
#: MS_Word_2007_XML.xcu
msgctxt ""
@@ -1285,7 +1285,7 @@ msgctxt ""
"Calc MS Excel 2007 VBA XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Excel 2007-2016 XML (macro enabled)"
+msgid "Excel 2007–2019 (macro-enabled)"
msgstr ""
#: calc_MS_Excel_2007_XML.xcu
diff --git a/source/ab/filter/source/config/fragments/types.po b/source/ab/filter/source/config/fragments/types.po
index f8c011463b8..064549cd8a3 100644
--- a/source/ab/filter/source/config/fragments/types.po
+++ b/source/ab/filter/source/config/fragments/types.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-08 15:11+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2017-12-23 18:27+0000\n"
"Last-Translator: Андрей Абухба <aabuchba@mail.ru>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -291,8 +291,8 @@ msgctxt ""
"writer_MS_Word_2003_XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Word 2003 XML"
-msgstr "Microsoft Word 2003 XML"
+msgid "Word 2003 XML"
+msgstr ""
#: writer_MS_Word_2007_XML.xcu
msgctxt ""
diff --git a/source/ab/fpicker/messages.po b/source/ab/fpicker/messages.po
index 3cb21df2047..333960f8292 100644
--- a/source/ab/fpicker/messages.po
+++ b/source/ab/fpicker/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2018-02-17 17:56+0000\n"
"Last-Translator: Андрей Абухба <aabuchba@mail.ru>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -263,13 +263,13 @@ msgstr ""
#: fpicker/uiconfig/ui/foldernamedialog.ui:8
msgctxt "foldernamedialog|FolderNameDialog"
-msgid "Folder Name ?"
-msgstr "Аҭаӡ иахьӡуи?"
+msgid "Folder Name"
+msgstr ""
#: fpicker/uiconfig/ui/foldernamedialog.ui:91
msgctxt "foldernamedialog|label2"
-msgid "Na_me"
-msgstr "Ахьӡ"
+msgid "Na_me:"
+msgstr ""
#: fpicker/uiconfig/ui/foldernamedialog.ui:122
msgctxt "foldernamedialog|label1"
diff --git a/source/ab/officecfg/registry/data/org/openoffice/Office/UI.po b/source/ab/officecfg/registry/data/org/openoffice/Office/UI.po
index 61ee521cdf7..8f6714a6e34 100644
--- a/source/ab/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/ab/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-22 13:17+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2018-03-25 10:20+0000\n"
"Last-Translator: Андрей Абухба <aabuchba@mail.ru>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -26622,8 +26622,8 @@ msgctxt ""
"..WriterCommands.UserInterface.Commands..uno:TextAttributes\n"
"Label\n"
"value.text"
-msgid "Text Attributes"
-msgstr "Атеқст атрибутқәа..."
+msgid "Text Attributes..."
+msgstr ""
#: WriterCommands.xcu
msgctxt ""
diff --git a/source/ab/readlicense_oo/docs.po b/source/ab/readlicense_oo/docs.po
index f4e3153e660..668e8e3aa6f 100644
--- a/source/ab/readlicense_oo/docs.po
+++ b/source/ab/readlicense_oo/docs.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-04-17 15:54+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2017-12-29 15:26+0000\n"
"Last-Translator: Андрей Абухба <aabuchba@mail.ru>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -116,8 +116,8 @@ msgctxt ""
"readme.xrm\n"
"macxiOSX\n"
"readmeitem.text"
-msgid "MacOSX 10.8 (Mountain Lion) or higher"
-msgstr "MacOSX 10.8 (Mountain Lion) ма иеиҳау"
+msgid "MacOSX 10.9 (Mavericks) or higher"
+msgstr ""
#: readme.xrm
msgctxt ""
diff --git a/source/ab/sc/messages.po b/source/ab/sc/messages.po
index 34bd6def0a9..abd79434210 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-12 14:40+0200\n"
"PO-Revision-Date: 2018-03-25 10:22+0000\n"
"Last-Translator: Андрей Абухба <aabuchba@mail.ru>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1842,16 +1842,21 @@ msgid "Nested arrays are not supported."
msgstr ""
#: sc/inc/globstr.hrc:390
+msgctxt "STR_ERR_LONG_BAD_ARRAY_CONTENT"
+msgid "Unsupported inline array content."
+msgstr ""
+
+#: sc/inc/globstr.hrc:391
msgctxt "STR_UNDO_TEXTTOCOLUMNS"
msgid "Text to Columns"
msgstr ""
-#: sc/inc/globstr.hrc:391
+#: sc/inc/globstr.hrc:392
msgctxt "STR_DOC_UPDATED"
msgid "Your spreadsheet has been updated with changes saved by other users."
msgstr ""
-#: sc/inc/globstr.hrc:392
+#: sc/inc/globstr.hrc:393
msgctxt "STR_DOC_WILLBESAVED"
msgid ""
"The spreadsheet must be saved now to activate sharing mode.\n"
@@ -1859,7 +1864,7 @@ msgid ""
"Do you want to continue?"
msgstr ""
-#: sc/inc/globstr.hrc:393
+#: sc/inc/globstr.hrc:394
msgctxt "STR_DOC_WILLNOTBESAVED"
msgid ""
"Already resolved merge conflicts will be lost and your changes to the shared spreadsheet will not be saved.\n"
@@ -1867,7 +1872,7 @@ msgid ""
"Do you want to continue?"
msgstr ""
-#: sc/inc/globstr.hrc:394
+#: sc/inc/globstr.hrc:395
msgctxt "STR_DOC_DISABLESHARED"
msgid ""
"Disabling shared mode of a spreadsheet hinders all other users of the shared spreadsheet to merge back their work.\n"
@@ -1875,7 +1880,7 @@ msgid ""
"Do you want to continue?"
msgstr ""
-#: sc/inc/globstr.hrc:395
+#: sc/inc/globstr.hrc:396
msgctxt "STR_DOC_NOLONGERSHARED"
msgid ""
"This spreadsheet is no longer in shared mode.\n"
@@ -1883,7 +1888,7 @@ msgid ""
"Save your spreadsheet to a separate file and merge your changes to the shared spreadsheet manually."
msgstr ""
-#: sc/inc/globstr.hrc:396
+#: sc/inc/globstr.hrc:397
msgctxt "STR_FILE_LOCKED_TRY_LATER"
msgid ""
"The shared spreadsheet file is locked due to a merge in progress by user: '%1'\n"
@@ -1891,7 +1896,7 @@ msgid ""
"Sharing mode of a locked file cannot be disabled. Try again later."
msgstr ""
-#: sc/inc/globstr.hrc:397
+#: sc/inc/globstr.hrc:398
msgctxt "STR_FILE_LOCKED_SAVE_LATER"
msgid ""
"The shared spreadsheet file is locked due to a merge in progress by user: '%1'\n"
@@ -1899,147 +1904,147 @@ msgid ""
"Try again later to save your changes."
msgstr ""
-#: sc/inc/globstr.hrc:398
+#: sc/inc/globstr.hrc:399
msgctxt "STR_UNKNOWN_USER"
msgid "Unknown User"
msgstr "Идырым ахархәаҩ"
-#: sc/inc/globstr.hrc:399
+#: sc/inc/globstr.hrc:400
msgctxt "STR_SHAPE_AUTOSHAPE"
msgid "AutoShape"
msgstr "Автофигура"
-#: sc/inc/globstr.hrc:400
+#: sc/inc/globstr.hrc:401
msgctxt "STR_SHAPE_RECTANGLE"
msgid "Rectangle"
msgstr "Акәакьҭаиаша"
-#: sc/inc/globstr.hrc:401
+#: sc/inc/globstr.hrc:402
msgctxt "STR_SHAPE_LINE"
msgid "Line"
msgstr "Ацәаҳәа"
-#: sc/inc/globstr.hrc:402
+#: sc/inc/globstr.hrc:403
msgctxt "STR_SHAPE_OVAL"
msgid "Oval"
msgstr ""
-#: sc/inc/globstr.hrc:403
+#: sc/inc/globstr.hrc:404
msgctxt "STR_FORM_BUTTON"
msgid "Button"
msgstr "Акнопка"
-#: sc/inc/globstr.hrc:404
+#: sc/inc/globstr.hrc:405
msgctxt "STR_FORM_CHECKBOX"
msgid "Check Box"
msgstr ""
-#: sc/inc/globstr.hrc:405
+#: sc/inc/globstr.hrc:406
msgctxt "STR_FORM_OPTIONBUTTON"
msgid "Option Button"
msgstr ""
-#: sc/inc/globstr.hrc:406
+#: sc/inc/globstr.hrc:407
msgctxt "STR_FORM_LABEL"
msgid "Label"
msgstr "Аҭыҧрбага"
-#: sc/inc/globstr.hrc:407
+#: sc/inc/globstr.hrc:408
msgctxt "STR_FORM_LISTBOX"
msgid "List Box"
msgstr "Ахьӡынҵа"
-#: sc/inc/globstr.hrc:408
+#: sc/inc/globstr.hrc:409
msgctxt "STR_FORM_GROUPBOX"
msgid "Group Box"
msgstr "Агәыҧ"
-#: sc/inc/globstr.hrc:409
+#: sc/inc/globstr.hrc:410
msgctxt "STR_FORM_DROPDOWN"
msgid "Drop Down"
msgstr ""
-#: sc/inc/globstr.hrc:410
+#: sc/inc/globstr.hrc:411
msgctxt "STR_FORM_SPINNER"
msgid "Spinner"
msgstr ""
-#: sc/inc/globstr.hrc:411
+#: sc/inc/globstr.hrc:412
msgctxt "STR_FORM_SCROLLBAR"
msgid "Scroll Bar"
msgstr ""
-#: sc/inc/globstr.hrc:412
+#: sc/inc/globstr.hrc:413
msgctxt "STR_STYLE_FAMILY_CELL"
msgid "Cell Styles"
msgstr "Абларҭа астильқәа"
-#: sc/inc/globstr.hrc:413
+#: sc/inc/globstr.hrc:414
msgctxt "STR_STYLE_FAMILY_PAGE"
msgid "Page Styles"
msgstr "Адаҟьа астильқәа"
-#: sc/inc/globstr.hrc:414
+#: sc/inc/globstr.hrc:415
msgctxt "STR_ERR_DATAPILOTSOURCE"
msgid "Pivot table source data is invalid."
msgstr ""
-#: sc/inc/globstr.hrc:415
+#: sc/inc/globstr.hrc:416
msgctxt "STR_OPTIONS_WARN_SEPARATORS"
msgid "Because the current formula separator settings conflict with the locale, the formula separators have been reset to their default values."
msgstr ""
-#: sc/inc/globstr.hrc:416
+#: sc/inc/globstr.hrc:417
msgctxt "STR_UNDO_INSERT_CURRENT_DATE"
msgid "Insert Current Date"
msgstr ""
-#: sc/inc/globstr.hrc:417
+#: sc/inc/globstr.hrc:418
msgctxt "STR_UNDO_INSERT_CURRENT_TIME"
msgid "Insert Current Time"
msgstr ""
-#: sc/inc/globstr.hrc:418
+#: sc/inc/globstr.hrc:419
msgctxt "STR_MANAGE_NAMES"
msgid "Manage Names..."
msgstr ""
-#: sc/inc/globstr.hrc:419
+#: sc/inc/globstr.hrc:420
msgctxt "STR_HEADER_NAME"
msgid "Name"
msgstr "Ахьӡ"
-#: sc/inc/globstr.hrc:420
+#: sc/inc/globstr.hrc:421
msgctxt "STR_HEADER_RANGE_OR_EXPR"
msgid "Range or formula expression"
msgstr ""
-#: sc/inc/globstr.hrc:421
+#: sc/inc/globstr.hrc:422
msgctxt "STR_HEADER_SCOPE"
msgid "Scope"
msgstr ""
-#: sc/inc/globstr.hrc:422
+#: sc/inc/globstr.hrc:423
msgctxt "STR_MULTI_SELECT"
msgid "(multiple)"
msgstr "(ҧыҭк)"
-#: sc/inc/globstr.hrc:423
+#: sc/inc/globstr.hrc:424
msgctxt "STR_GLOBAL_SCOPE"
msgid "Document (Global)"
msgstr ""
-#: sc/inc/globstr.hrc:424
+#: sc/inc/globstr.hrc:425
msgctxt "STR_ERR_NAME_EXISTS"
msgid "Invalid name. Already in use for the selected scope."
msgstr ""
-#: sc/inc/globstr.hrc:425
+#: sc/inc/globstr.hrc:426
msgctxt "STR_ERR_NAME_INVALID"
msgid "Invalid name. Only use letters, numbers and underscore."
msgstr ""
-#: sc/inc/globstr.hrc:426
+#: sc/inc/globstr.hrc:427
msgctxt "STR_UNSAVED_EXT_REF"
msgid ""
"This Document contains external references to unsaved documents.\n"
@@ -2047,217 +2052,217 @@ msgid ""
"Do you want to continue?"
msgstr ""
-#: sc/inc/globstr.hrc:427
+#: sc/inc/globstr.hrc:428
msgctxt "STR_CLOSE_WITH_UNSAVED_REFS"
msgid "This Document is referenced by another document and not yet saved. Closing it without saving will result in data loss."
msgstr ""
-#: sc/inc/globstr.hrc:428
+#: sc/inc/globstr.hrc:429
msgctxt "STR_HEADER_RANGE"
msgid "Range"
msgstr "Адиапазон"
-#: sc/inc/globstr.hrc:429
+#: sc/inc/globstr.hrc:430
msgctxt "STR_HEADER_COND"
msgid "First Condition"
msgstr ""
-#: sc/inc/globstr.hrc:430
+#: sc/inc/globstr.hrc:431
msgctxt "STR_COND_CONDITION"
msgid "Cell value is"
msgstr "Абларҭа аҵакы"
-#: sc/inc/globstr.hrc:431
+#: sc/inc/globstr.hrc:432
msgctxt "STR_COND_COLORSCALE"
msgid "ColorScale"
msgstr ""
-#: sc/inc/globstr.hrc:432
+#: sc/inc/globstr.hrc:433
msgctxt "STR_COND_DATABAR"
msgid "DataBar"
msgstr "Агистограмма"
-#: sc/inc/globstr.hrc:433
+#: sc/inc/globstr.hrc:434
msgctxt "STR_COND_ICONSET"
msgid "IconSet"
msgstr ""
-#: sc/inc/globstr.hrc:434
+#: sc/inc/globstr.hrc:435
msgctxt "STR_COND_BETWEEN"
msgid "between"
msgstr "рыбжьара"
-#: sc/inc/globstr.hrc:435
+#: sc/inc/globstr.hrc:436
msgctxt "STR_COND_NOTBETWEEN"
msgid "not between"
msgstr "рыбжьара акәым"
-#: sc/inc/globstr.hrc:436
+#: sc/inc/globstr.hrc:437
msgctxt "STR_COND_UNIQUE"
msgid "unique"
msgstr "иуникалтәқәоу"
-#: sc/inc/globstr.hrc:437
+#: sc/inc/globstr.hrc:438
msgctxt "STR_COND_DUPLICATE"
msgid "duplicate"
msgstr ""
-#: sc/inc/globstr.hrc:438
+#: sc/inc/globstr.hrc:439
msgctxt "STR_COND_FORMULA"
msgid "Formula is"
msgstr "Аформула"
-#: sc/inc/globstr.hrc:439
+#: sc/inc/globstr.hrc:440
msgctxt "STR_COND_TOP10"
msgid "Top Elements"
msgstr "Раҧхьатәи аелементқәа"
-#: sc/inc/globstr.hrc:440
+#: sc/inc/globstr.hrc:441
msgctxt "STR_COND_BOTTOM10"
msgid "Bottom Elements"
msgstr "Аҵыхәтәантәи аелементқәа"
-#: sc/inc/globstr.hrc:441
+#: sc/inc/globstr.hrc:442
msgctxt "STR_COND_TOP_PERCENT"
msgid "Top Percent"
msgstr ""
-#: sc/inc/globstr.hrc:442
+#: sc/inc/globstr.hrc:443
msgctxt "STR_COND_DATE"
msgid "Date is"
msgstr "Арыцхә"
-#: sc/inc/globstr.hrc:443
+#: sc/inc/globstr.hrc:444
msgctxt "STR_COND_BOTTOM_PERCENT"
msgid "Bottom Percent"
msgstr ""
-#: sc/inc/globstr.hrc:444
+#: sc/inc/globstr.hrc:445
msgctxt "STR_COND_ABOVE_AVERAGE"
msgid "Above Average"
msgstr ""
-#: sc/inc/globstr.hrc:445
+#: sc/inc/globstr.hrc:446
msgctxt "STR_COND_BELOW_AVERAGE"
msgid "Below Average"
msgstr ""
-#: sc/inc/globstr.hrc:446
+#: sc/inc/globstr.hrc:447
msgctxt "STR_COND_ABOVE_EQUAL_AVERAGE"
msgid "Above or equal Average"
msgstr ""
-#: sc/inc/globstr.hrc:447
+#: sc/inc/globstr.hrc:448
msgctxt "STR_COND_BELOW_EQUAL_AVERAGE"
msgid "Below or equal Average"
msgstr ""
-#: sc/inc/globstr.hrc:448
+#: sc/inc/globstr.hrc:449
msgctxt "STR_COND_ERROR"
msgid "an Error code"
msgstr "Агха акод"
-#: sc/inc/globstr.hrc:449
+#: sc/inc/globstr.hrc:450
msgctxt "STR_COND_NOERROR"
msgid "not an Error code"
msgstr "Агха акод акәӡам"
-#: sc/inc/globstr.hrc:450
+#: sc/inc/globstr.hrc:451
msgctxt "STR_COND_BEGINS_WITH"
msgid "Begins with"
msgstr ""
-#: sc/inc/globstr.hrc:451
+#: sc/inc/globstr.hrc:452
msgctxt "STR_COND_ENDS_WITH"
msgid "Ends with"
msgstr ""
-#: sc/inc/globstr.hrc:452
+#: sc/inc/globstr.hrc:453
msgctxt "STR_COND_CONTAINS"
msgid "Contains"
msgstr "Иаҵанакуеит"
-#: sc/inc/globstr.hrc:453
+#: sc/inc/globstr.hrc:454
msgctxt "STR_COND_NOT_CONTAINS"
msgid "Not Contains"
msgstr "Иаҵанакӡом"
-#: sc/inc/globstr.hrc:454
+#: sc/inc/globstr.hrc:455
msgctxt "STR_COND_TODAY"
msgid "today"
msgstr "иахьа"
-#: sc/inc/globstr.hrc:455
+#: sc/inc/globstr.hrc:456
msgctxt "STR_COND_YESTERDAY"
msgid "yesterday"
msgstr "иацы"
-#: sc/inc/globstr.hrc:456
+#: sc/inc/globstr.hrc:457
msgctxt "STR_COND_TOMORROW"
msgid "tomorrow"
msgstr "уаҵәы"
-#: sc/inc/globstr.hrc:457
+#: sc/inc/globstr.hrc:458
msgctxt "STR_COND_LAST7DAYS"
msgid "in the last 7 days"
msgstr ""
-#: sc/inc/globstr.hrc:458
+#: sc/inc/globstr.hrc:459
msgctxt "STR_COND_THISWEEK"
msgid "this week"
msgstr "ари амчыбжь"
-#: sc/inc/globstr.hrc:459
+#: sc/inc/globstr.hrc:460
msgctxt "STR_COND_LASTWEEK"
msgid "last week"
msgstr "иҳаҩсыз амчыбжь"
-#: sc/inc/globstr.hrc:460
+#: sc/inc/globstr.hrc:461
msgctxt "STR_COND_NEXTWEEK"
msgid "next week"
msgstr "анаҩстәи амчыбжь"
-#: sc/inc/globstr.hrc:461
+#: sc/inc/globstr.hrc:462
msgctxt "STR_COND_THISMONTH"
msgid "this month"
msgstr "ари амза"
-#: sc/inc/globstr.hrc:462
+#: sc/inc/globstr.hrc:463
msgctxt "STR_COND_LASTMONTH"
msgid "last month"
msgstr "иҳаҩсыз амза"
-#: sc/inc/globstr.hrc:463
+#: sc/inc/globstr.hrc:464
msgctxt "STR_COND_NEXTMONTH"
msgid "next month"
msgstr "анаҩстәи амза"
-#: sc/inc/globstr.hrc:464
+#: sc/inc/globstr.hrc:465
msgctxt "STR_COND_THISYEAR"
msgid "this year"
msgstr "ари ашықәс"
-#: sc/inc/globstr.hrc:465
+#: sc/inc/globstr.hrc:466
msgctxt "STR_COND_LASTYEAR"
msgid "last year"
msgstr "иҳаҩсыз ашықәс"
-#: sc/inc/globstr.hrc:466
+#: sc/inc/globstr.hrc:467
msgctxt "STR_COND_NEXTYEAR"
msgid "next year"
msgstr "анаҩстәи ашықәс"
-#: sc/inc/globstr.hrc:467
+#: sc/inc/globstr.hrc:468
msgctxt "STR_COND_AND"
msgid "and"
msgstr "и"
-#: sc/inc/globstr.hrc:468
+#: sc/inc/globstr.hrc:469
msgctxt "STR_ERR_CONDFORMAT_PROTECTED"
msgid "Conditional Formats can not be created, deleted or changed in protected sheets."
msgstr ""
-#: sc/inc/globstr.hrc:469
+#: sc/inc/globstr.hrc:470
msgctxt "STR_EDIT_EXISTING_COND_FORMATS"
msgid ""
"The selected cell already contains conditional formatting. You can either edit the existing conditional format or you define a new overlapping conditional format.\n"
@@ -2265,7 +2270,7 @@ msgid ""
" Do you want to edit the existing conditional format?"
msgstr ""
-#: sc/inc/globstr.hrc:470
+#: sc/inc/globstr.hrc:471
msgctxt "STR_QUERY_FORMULA_RECALC_ONLOAD_ODS"
msgid ""
"This document was last saved by an application other than %PRODUCTNAME. Some formula cells may produce different results when recalculated.\n"
@@ -2273,7 +2278,7 @@ msgid ""
"Do you want to recalculate all formula cells in this document now?"
msgstr ""
-#: sc/inc/globstr.hrc:471
+#: sc/inc/globstr.hrc:472
msgctxt "STR_QUERY_FORMULA_RECALC_ONLOAD_XLS"
msgid ""
"This document was last saved by Excel. Some formula cells may produce different results when recalculated.\n"
@@ -2281,77 +2286,77 @@ msgid ""
"Do you want to recalculate all formula cells now?"
msgstr ""
-#: sc/inc/globstr.hrc:472
+#: sc/inc/globstr.hrc:473
msgctxt "STR_NO_INSERT_DELETE_OVER_PIVOT_TABLE"
msgid "You cannot insert or delete cells when the affected range intersects with pivot table."
msgstr ""
-#: sc/inc/globstr.hrc:473
+#: sc/inc/globstr.hrc:474
msgctxt "STR_DPFIELD_GROUP_BY_SECONDS"
msgid "Seconds"
msgstr "Асекундқәа"
-#: sc/inc/globstr.hrc:474
+#: sc/inc/globstr.hrc:475
msgctxt "STR_DPFIELD_GROUP_BY_MINUTES"
msgid "Minutes"
msgstr "Аминутқәа"
-#: sc/inc/globstr.hrc:475
+#: sc/inc/globstr.hrc:476
msgctxt "STR_DPFIELD_GROUP_BY_HOURS"
msgid "Hours"
msgstr "Асааҭқәа"
-#: sc/inc/globstr.hrc:476
+#: sc/inc/globstr.hrc:477
msgctxt "STR_DPFIELD_GROUP_BY_DAYS"
msgid "Days"
msgstr "Амшқәа"
-#: sc/inc/globstr.hrc:477
+#: sc/inc/globstr.hrc:478
msgctxt "STR_DPFIELD_GROUP_BY_MONTHS"
msgid "Months"
msgstr "Амзақәа"
-#: sc/inc/globstr.hrc:478
+#: sc/inc/globstr.hrc:479
msgctxt "STR_DPFIELD_GROUP_BY_QUARTERS"
msgid "Quarters"
msgstr "Акварталқәа"
-#: sc/inc/globstr.hrc:479
+#: sc/inc/globstr.hrc:480
msgctxt "STR_DPFIELD_GROUP_BY_YEARS"
msgid "Years"
msgstr "Ашықәсқәа"
-#: sc/inc/globstr.hrc:480
+#: sc/inc/globstr.hrc:481
msgctxt "STR_INVALIDVAL"
msgid "Invalid target value."
msgstr ""
-#: sc/inc/globstr.hrc:481
+#: sc/inc/globstr.hrc:482
msgctxt "STR_INVALIDVAR"
msgid "Undefined name for variable cell."
msgstr ""
-#: sc/inc/globstr.hrc:482
+#: sc/inc/globstr.hrc:483
msgctxt "STR_INVALIDFORM"
msgid "Undefined name as formula cell."
msgstr "Аформула абларҭазы еилкаам ахьӡ."
-#: sc/inc/globstr.hrc:483
+#: sc/inc/globstr.hrc:484
msgctxt "STR_NOFORMULA"
msgid "Formula cell must contain a formula."
msgstr "Абларҭа иаҵанакуазароуп аформула."
-#: sc/inc/globstr.hrc:484
+#: sc/inc/globstr.hrc:485
msgctxt "STR_INVALIDINPUT"
msgid "Invalid input."
msgstr ""
-#: sc/inc/globstr.hrc:485
+#: sc/inc/globstr.hrc:486
msgctxt "STR_INVALIDCONDITION"
msgid "Invalid condition."
msgstr ""
-#: sc/inc/globstr.hrc:486
+#: sc/inc/globstr.hrc:487
msgctxt "STR_QUERYREMOVE"
msgid ""
"Should the entry\n"
@@ -2359,134 +2364,134 @@ msgid ""
"be deleted?"
msgstr ""
-#: sc/inc/globstr.hrc:487
+#: sc/inc/globstr.hrc:488
msgctxt "STR_COPYLIST"
msgid "Copy List"
msgstr "Ахьӡынҵа акопиа ахыхтәуп"
-#: sc/inc/globstr.hrc:488
+#: sc/inc/globstr.hrc:489
msgctxt "STR_COPYFROM"
msgid "List from"
msgstr ""
-#: sc/inc/globstr.hrc:489
+#: sc/inc/globstr.hrc:490
msgctxt "STR_COPYERR"
msgid "Cells without text have been ignored."
msgstr ""
-#: sc/inc/globstr.hrc:490
+#: sc/inc/globstr.hrc:491
#, c-format
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%s-click to follow hyperlink:"
msgstr ""
-#: sc/inc/globstr.hrc:491
+#: sc/inc/globstr.hrc:492
msgctxt "STR_CLICKHYPERLINK"
msgid "click to open hyperlink:"
msgstr "Ақәыӷәӷәара иаанартуеит агиперзхьарҧш:"
-#: sc/inc/globstr.hrc:492
+#: sc/inc/globstr.hrc:493
msgctxt "STR_PRINT_PREVIEW_NODATA"
msgid "No Data"
msgstr "Аадырқәа ыҟаӡам"
-#: sc/inc/globstr.hrc:493
+#: sc/inc/globstr.hrc:494
msgctxt "STR_PRINT_PREVIEW_EMPTY_RANGE"
msgid "Print Range Empty"
msgstr "Акьыҧхьра адиапазон ҭацәуп"
-#: sc/inc/globstr.hrc:494
+#: sc/inc/globstr.hrc:495
msgctxt "STR_UNDO_CONDFORMAT"
msgid "Conditional Format"
msgstr ""
-#: sc/inc/globstr.hrc:495
+#: sc/inc/globstr.hrc:496
msgctxt "STR_UNDO_CONDFORMAT_LIST"
msgid "Conditional Formats"
msgstr ""
-#: sc/inc/globstr.hrc:496
+#: sc/inc/globstr.hrc:497
msgctxt "STR_UNDO_FORMULA_TO_VALUE"
msgid "Convert Formula To Value"
msgstr "Аформула аҵакахьы ииагатәуп"
-#: sc/inc/globstr.hrc:497
+#: sc/inc/globstr.hrc:498
msgctxt "STR_UNQUOTED_STRING"
msgid "Strings without quotes are interpreted as column/row labels."
msgstr ""
-#: sc/inc/globstr.hrc:498
+#: sc/inc/globstr.hrc:499
msgctxt "STR_ENTER_VALUE"
msgid "Enter a value!"
msgstr "Иҭажәгал аҵакы!"
-#: sc/inc/globstr.hrc:499
+#: sc/inc/globstr.hrc:500
msgctxt "STR_TABLE_COUNT"
msgid "Sheet %1 of %2"
msgstr ""
-#: sc/inc/globstr.hrc:500
+#: sc/inc/globstr.hrc:501
msgctxt "STR_FUNCTIONS_FOUND"
msgid "%1 and %2 more"
msgstr ""
-#: sc/inc/globstr.hrc:501
+#: sc/inc/globstr.hrc:502
msgctxt "STR_GENERAL"
msgid "General"
msgstr "Азеиҧшқәа"
-#: sc/inc/globstr.hrc:502
+#: sc/inc/globstr.hrc:503
msgctxt "STR_NUMBER"
msgid "Number"
msgstr "Ахыҧхьаӡаратә"
-#: sc/inc/globstr.hrc:503
+#: sc/inc/globstr.hrc:504
msgctxt "STR_PERCENT"
msgid "Percent"
msgstr "Апроценттә"
-#: sc/inc/globstr.hrc:504
+#: sc/inc/globstr.hrc:505
msgctxt "STR_CURRENCY"
msgid "Currency"
msgstr ""
-#: sc/inc/globstr.hrc:505
+#: sc/inc/globstr.hrc:506
msgctxt "STR_DATE"
msgid "Date"
msgstr "Арыцхә"
-#: sc/inc/globstr.hrc:506
+#: sc/inc/globstr.hrc:507
msgctxt "STR_TIME"
msgid "Time"
msgstr "Аамҭа"
-#: sc/inc/globstr.hrc:507
+#: sc/inc/globstr.hrc:508
msgctxt "STR_SCIENTIFIC"
msgid "Scientific"
msgstr "Анаукатә"
-#: sc/inc/globstr.hrc:508
+#: sc/inc/globstr.hrc:509
#, fuzzy
msgctxt "STR_FRACTION"
msgid "Fraction"
msgstr "Афункциа"
-#: sc/inc/globstr.hrc:509
+#: sc/inc/globstr.hrc:510
msgctxt "STR_BOOLEAN_VALUE"
msgid "Boolean Value"
msgstr "Алогикатә"
-#: sc/inc/globstr.hrc:510
+#: sc/inc/globstr.hrc:511
msgctxt "STR_TEXT"
msgid "Text"
msgstr "Атеқст"
-#: sc/inc/globstr.hrc:511
+#: sc/inc/globstr.hrc:512
msgctxt "STR_QUERY_PIVOTTABLE_DELTAB"
msgid "The selected sheet(s) contain source data of related pivot tables that will be lost. Are you sure you want to delete the selected sheet(s)?"
msgstr ""
-#: sc/inc/globstr.hrc:512
+#: sc/inc/globstr.hrc:513
msgctxt "STR_ERR_NAME_INVALID_CELL_REF"
msgid "Invalid name. Reference to a cell, or a range of cells not allowed."
msgstr ""
@@ -10432,7 +10437,7 @@ msgstr "Арежим"
#: sc/inc/scfuncs.hrc:3010
msgctxt "SC_OPCODE_T_TEST"
-msgid "Mode specifies the number of distribution tails to return. 1= one-tailed, 2 = two-tailed distribution"
+msgid "Mode specifies the number of distribution tails to return. 1 = one-tailed, 2 = two-tailed distribution"
msgstr ""
#: sc/inc/scfuncs.hrc:3011
@@ -10477,7 +10482,7 @@ msgstr "Арежим"
#: sc/inc/scfuncs.hrc:3024
msgctxt "SC_OPCODE_T_TEST_MS"
-msgid "Mode specifies the number of distribution tails to return. 1= one-tailed, 2 = two-tailed distribution"
+msgid "Mode specifies the number of distribution tails to return. 1 = one-tailed, 2 = two-tailed distribution"
msgstr ""
#: sc/inc/scfuncs.hrc:3025
@@ -17983,22 +17988,22 @@ msgctxt "mergecellsdialog|MergeCellsDialog"
msgid "Merge Cells"
msgstr "Еидҵатәуп абларҭақәа"
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:81
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:84
msgctxt "mergecellsdialog|label"
msgid "Some cells are not empty."
msgstr ""
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:96
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:99
msgctxt "mergecellsdialog|move-cells-radio"
msgid "Move the contents of the hidden cells into the first cell"
msgstr ""
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:112
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:115
msgctxt "mergecellsdialog|empty-cells-radio"
msgid "Empty the contents of the hidden cells"
msgstr ""
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:128
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:131
msgctxt "mergecellsdialog|keep-content-radio"
msgid "Keep the contents of the hidden cells"
msgstr ""
diff --git a/source/ab/sd/messages.po b/source/ab/sd/messages.po
index 258881707ed..146e750c73d 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2018-03-25 10:24+0000\n"
"Last-Translator: Андрей Абухба <aabuchba@mail.ru>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15,167 +15,167 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1521973478.000000\n"
-#: sd/inc/DocumentRenderer.hrc:29
+#: sd/inc/DocumentRenderer.hrc:27
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Slides"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:30
+#: sd/inc/DocumentRenderer.hrc:28
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Handouts"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:31
+#: sd/inc/DocumentRenderer.hrc:29
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Notes"
msgstr "Азгәаҭақәа"
-#: sd/inc/DocumentRenderer.hrc:32
+#: sd/inc/DocumentRenderer.hrc:30
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Outline"
msgstr "Аструктура"
-#: sd/inc/DocumentRenderer.hrc:37
+#: sd/inc/DocumentRenderer.hrc:35
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "According to layout"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:38
+#: sd/inc/DocumentRenderer.hrc:36
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "1"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:39
+#: sd/inc/DocumentRenderer.hrc:37
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "2"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:40
+#: sd/inc/DocumentRenderer.hrc:38
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "3"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:41
+#: sd/inc/DocumentRenderer.hrc:39
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "4"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:42
+#: sd/inc/DocumentRenderer.hrc:40
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "6"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:43
+#: sd/inc/DocumentRenderer.hrc:41
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "9"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:48
+#: sd/inc/DocumentRenderer.hrc:46
msgctxt "STR_IMPRESS_PRINT_UI_ORDER_CHOICES"
msgid "Left to right, then down"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:49
+#: sd/inc/DocumentRenderer.hrc:47
msgctxt "STR_IMPRESS_PRINT_UI_ORDER_CHOICES"
msgid "Top to bottom, then right"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:54
+#: sd/inc/DocumentRenderer.hrc:52
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Original colors"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:55
+#: sd/inc/DocumentRenderer.hrc:53
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Grayscale"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:56
+#: sd/inc/DocumentRenderer.hrc:54
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Black & white"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:61
+#: sd/inc/DocumentRenderer.hrc:59
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Original size"
msgstr "Ахалагаратә шәагаа"
-#: sd/inc/DocumentRenderer.hrc:62
+#: sd/inc/DocumentRenderer.hrc:60
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Fit to printable page"
msgstr "Адаҟьа ашәагаақәа ирҭакӡатәуп"
-#: sd/inc/DocumentRenderer.hrc:63
+#: sd/inc/DocumentRenderer.hrc:61
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Distribute on multiple sheets of paper"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:64
+#: sd/inc/DocumentRenderer.hrc:62
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Tile sheet of paper with repeated slides"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:69
+#: sd/inc/DocumentRenderer.hrc:67
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Original size"
msgstr "Ахалагаратә шәагаа"
-#: sd/inc/DocumentRenderer.hrc:70
+#: sd/inc/DocumentRenderer.hrc:68
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Fit to printable page"
msgstr "Адаҟьа ашәагаақәа ирҭакӡатәуп"
-#: sd/inc/DocumentRenderer.hrc:71
+#: sd/inc/DocumentRenderer.hrc:69
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Distribute on multiple sheets of paper"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:72
+#: sd/inc/DocumentRenderer.hrc:70
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Tile sheet of paper with repeated pages"
msgstr "Мозаикала акьыҧхьра"
-#: sd/inc/DocumentRenderer.hrc:77
+#: sd/inc/DocumentRenderer.hrc:75
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "All pages"
msgstr "Адаҟьақәа зегьы"
-#: sd/inc/DocumentRenderer.hrc:78
+#: sd/inc/DocumentRenderer.hrc:76
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "Front sides / right pages"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:79
+#: sd/inc/DocumentRenderer.hrc:77
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "Back sides / left pages"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:84
+#: sd/inc/DocumentRenderer.hrc:82
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~All slides"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:85
+#: sd/inc/DocumentRenderer.hrc:83
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~Slides"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:86
+#: sd/inc/DocumentRenderer.hrc:84
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Se~lection"
msgstr "Алкаара"
-#: sd/inc/DocumentRenderer.hrc:91
+#: sd/inc/DocumentRenderer.hrc:89
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~All pages"
msgstr "Адаҟьақәа зегьы"
-#: sd/inc/DocumentRenderer.hrc:92
+#: sd/inc/DocumentRenderer.hrc:90
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Pa~ges"
msgstr "Адаҟьақәа"
-#: sd/inc/DocumentRenderer.hrc:93
+#: sd/inc/DocumentRenderer.hrc:91
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Se~lection"
msgstr "Алкаара"
diff --git a/source/ab/svx/messages.po b/source/ab/svx/messages.po
index 79a9f6de7b2..4fccfd6d876 100644
--- a/source/ab/svx/messages.po
+++ b/source/ab/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-16 16:53+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2018-03-25 10:25+0000\n"
"Last-Translator: Андрей Абухба <aabuchba@mail.ru>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5174,7 +5174,7 @@ msgstr ""
#: svx/uiconfig/ui/safemodedialog.ui:432
msgctxt "safemodedialog|btn_create_zip"
-msgid "Create Zip Archive from User Profile"
+msgid "Archive User Profile"
msgstr ""
#: svx/uiconfig/ui/safemodedialog.ui:445
@@ -8790,8 +8790,8 @@ msgid "Red"
msgstr "Аҟаҧшь"
#: include/svx/strings.hrc:565
-msgctxt "RID_SVXSTR_COLOR_VIOLET"
-msgid "Violet"
+msgctxt "RID_SVXSTR_COLOR_MAGENTA"
+msgid "Magenta"
msgstr ""
#: include/svx/strings.hrc:566
@@ -8857,8 +8857,8 @@ msgid "Light Red"
msgstr ""
#: include/svx/strings.hrc:579
-msgctxt "RID_SVXSTR_COLOR_LIGHTVIOLET"
-msgid "Light Violet"
+msgctxt "RID_SVXSTR_COLOR_LIGHTMAGENTA"
+msgid "Light Magenta"
msgstr ""
#: include/svx/strings.hrc:580
@@ -8923,8 +8923,8 @@ msgid "Dark Red"
msgstr ""
#: include/svx/strings.hrc:593
-msgctxt "RID_SVXSTR_COLOR_DARKVIOLET1"
-msgid "Dark Violet"
+msgctxt "RID_SVXSTR_COLOR_DARKMAGENTA"
+msgid "Dark Magenta"
msgstr ""
#: include/svx/strings.hrc:594
@@ -8959,55 +8959,55 @@ msgstr ""
#. Elements of the Tonal color palette
#: include/svx/strings.hrc:601
+msgctxt "RID_SVXSTR_COLOR_VIOLET"
+msgid "Violet"
+msgstr ""
+
+#: include/svx/strings.hrc:602
msgctxt "RID_SVXSTR_COLOR_VIOLET_OUG"
msgid "Violet (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:602
+#: include/svx/strings.hrc:603
msgctxt "RID_SVXSTR_COLOR_BLUE_OUG"
msgid "Blue (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:603
+#: include/svx/strings.hrc:604
msgctxt "RID_SVXSTR_COLOR_AZURE_OUG"
msgid "Azure (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:604
+#: include/svx/strings.hrc:605
msgctxt "RID_SVXSTR_COLOR_SPRINGGREEN_OUG"
msgid "Spring Green (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:605
+#: include/svx/strings.hrc:606
msgctxt "RID_SVXSTR_COLOR_GREEN_OUG"
msgid "Green (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:606
+#: include/svx/strings.hrc:607
msgctxt "RID_SVXSTR_COLOR_CHARTREUSEGREEN_OUG"
msgid "Chartreuse Green (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:607
+#: include/svx/strings.hrc:608
msgctxt "RID_SVXSTR_COLOR_ORANGE_OUG"
msgid "Orange (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:608
+#: include/svx/strings.hrc:609
msgctxt "RID_SVXSTR_COLOR_RED_OUG"
msgid "Red (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:609
+#: include/svx/strings.hrc:610
msgctxt "RID_SVXSTR_COLOR_ROSE_OUG"
msgid "Rose (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:610
-msgctxt "RID_SVXSTR_COLOR_MAGENTA"
-msgid "Magenta"
-msgstr ""
-
#: include/svx/strings.hrc:611
msgctxt "RID_SVXSTR_COLOR_AZURE"
msgid "Azure"
@@ -12107,15 +12107,14 @@ msgid "Right pointing arrow bullets"
msgstr ""
#: include/svx/strings.hrc:1273
-#, fuzzy
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_6"
-msgid "Check mark bullets"
-msgstr "Иазгәаҭатәуп амаркерқәа"
+msgid "Cross mark bullets"
+msgstr ""
#: include/svx/strings.hrc:1274
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_7"
-msgid "Tick mark bullets"
-msgstr "Иазгәаҭатәуп амаркерқәа"
+msgid "Check mark bullets"
+msgstr ""
#: include/svx/strings.hrc:1275
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_0"
diff --git a/source/ab/sw/messages.po b/source/ab/sw/messages.po
index bedd6d75185..4574acf1c9b 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: 2018-05-22 13:17+0200\n"
+"POT-Creation-Date: 2018-06-12 14:41+0200\n"
"PO-Revision-Date: 2018-03-25 10:26+0000\n"
"Last-Translator: Андрей Абухба <aabuchba@mail.ru>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1181,12 +1181,12 @@ msgstr "Ацитата"
#: sw/inc/strings.hrc:172
msgctxt "STR_POOLCOLL_TOX_ILLUSH"
-msgid "Illustration Index Heading"
+msgid "Figure Index Heading"
msgstr ""
#: sw/inc/strings.hrc:173
msgctxt "STR_POOLCOLL_TOX_ILLUS1"
-msgid "Illustration Index 1"
+msgid "Figure Index 1"
msgstr ""
#: sw/inc/strings.hrc:174
@@ -3605,7 +3605,7 @@ msgstr "Аобиеқтқәа рыхьӡынҵа"
#: sw/inc/strings.hrc:672
msgctxt "STR_TOX_ILL"
-msgid "Illustration Index"
+msgid "Table of Figures"
msgstr ""
#: sw/inc/strings.hrc:673
@@ -9372,72 +9372,72 @@ msgctxt "footnotepage|label5"
msgid "Continuation Notice"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:49
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:55
msgctxt "footnotesendnotestabpage|ftnntnum"
msgid "_Restart numbering"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:91
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:93
msgctxt "footnotesendnotestabpage|ftnoffset_label"
msgid "_Start at:"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:112
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:111
msgctxt "footnotesendnotestabpage|ftnntnumfmt"
msgid "Custom _format"
msgstr "Ахархәаҩ иформат"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:155
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:150
msgctxt "footnotesendnotestabpage|ftnsuffix_label"
msgid "Aft_er:"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:199
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:188
msgctxt "footnotesendnotestabpage|ftnprefix_label"
msgid "Be_fore:"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:228
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:212
msgctxt "footnotesendnotestabpage|ftnntattextend"
msgid "Collec_t at end of text"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:252
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:234
msgctxt "footnotesendnotestabpage|label1"
msgid "Footnotes"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:289
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:271
msgctxt "footnotesendnotestabpage|endntattextend"
msgid "C_ollect at end of section"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:315
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:295
msgctxt "footnotesendnotestabpage|endntnum"
msgid "_Restart numbering"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:357
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:333
msgctxt "footnotesendnotestabpage|endoffset_label"
msgid "_Start at:"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:378
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:351
msgctxt "footnotesendnotestabpage|endntnumfmt"
msgid "_Custom format"
msgstr "Ахархәаҩ иформат"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:421
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:390
msgctxt "footnotesendnotestabpage|endsuffix_label"
msgid "Aft_er:"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:465
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:428
msgctxt "footnotesendnotestabpage|endprefix_label"
msgid "Be_fore:"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:500
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:458
msgctxt "footnotesendnotestabpage|label2"
msgid "Endnotes"
msgstr ""
@@ -9468,30 +9468,30 @@ msgctxt "formatsectiondialog|notes"
msgid "Footnotes/Endnotes"
msgstr ""
-#: sw/uiconfig/swriter/ui/formattablepage.ui:63
+#: sw/uiconfig/swriter/ui/formattablepage.ui:77
#, fuzzy
msgctxt "formattablepage|nameft"
msgid "_Name"
msgstr "Ахьӡ:"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:79
+#: sw/uiconfig/swriter/ui/formattablepage.ui:91
#, fuzzy
msgctxt "formattablepage|widthft"
msgid "W_idth"
msgstr "Аҭбаара"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:110
+#: sw/uiconfig/swriter/ui/formattablepage.ui:120
msgctxt "formattablepage|relwidth"
msgid "Relati_ve"
msgstr ""
-#: sw/uiconfig/swriter/ui/formattablepage.ui:155
+#: sw/uiconfig/swriter/ui/formattablepage.ui:160
#, fuzzy
msgctxt "formattablepage|label45"
msgid "Properties"
msgstr "Аҷыдаҟазшьақәа:"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:194
+#: sw/uiconfig/swriter/ui/formattablepage.ui:195
#, fuzzy
msgctxt "formattablepage|leftft"
msgid "Lef_t"
@@ -9503,70 +9503,70 @@ msgctxt "formattablepage|rightft"
msgid "Ri_ght"
msgstr "Арыӷьарахь"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:228
+#: sw/uiconfig/swriter/ui/formattablepage.ui:226
#, fuzzy
msgctxt "formattablepage|aboveft"
msgid "_Above"
msgstr "Хыхьла"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:245
+#: sw/uiconfig/swriter/ui/formattablepage.ui:241
#, fuzzy
msgctxt "formattablepage|belowft"
msgid "_Below"
msgstr "Илаҟәны"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:320
+#: sw/uiconfig/swriter/ui/formattablepage.ui:311
msgctxt "formattablepage|label46"
msgid "Spacing"
msgstr "Аинтервалқәа"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:362
+#: sw/uiconfig/swriter/ui/formattablepage.ui:349
#, fuzzy
msgctxt "formattablepage|full"
msgid "A_utomatic"
msgstr "Автоматикала"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:380
+#: sw/uiconfig/swriter/ui/formattablepage.ui:365
msgctxt "formattablepage|left"
msgid "_Left"
msgstr "Арымарахь"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:398
+#: sw/uiconfig/swriter/ui/formattablepage.ui:381
#, fuzzy
msgctxt "formattablepage|fromleft"
msgid "_From left"
msgstr "Арымарахь"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:416
+#: sw/uiconfig/swriter/ui/formattablepage.ui:397
#, fuzzy
msgctxt "formattablepage|right"
msgid "R_ight"
msgstr "Арыӷьарахь"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:435
+#: sw/uiconfig/swriter/ui/formattablepage.ui:413
#, fuzzy
msgctxt "formattablepage|center"
msgid "_Center"
msgstr "Ацентр ала"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:453
+#: sw/uiconfig/swriter/ui/formattablepage.ui:429
#, fuzzy
msgctxt "formattablepage|free"
msgid "_Manual"
msgstr "Напыла"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:478
+#: sw/uiconfig/swriter/ui/formattablepage.ui:452
msgctxt "formattablepage|label43"
msgid "Alignment"
msgstr "Аиҟаратәра"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:522
+#: sw/uiconfig/swriter/ui/formattablepage.ui:491
#, fuzzy
msgctxt "formattablepage|label53"
msgid "Text _direction"
msgstr "Атеқст ахырхарҭа"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:553
+#: sw/uiconfig/swriter/ui/formattablepage.ui:519
#, fuzzy
msgctxt "formattablepage|label44"
msgid "Properties "
@@ -9937,22 +9937,27 @@ msgctxt "headerfootermenu|insert_pagenumber"
msgid "Insert Page Number"
msgstr ""
-#: sw/uiconfig/swriter/ui/indentpage.ui:52
+#: sw/uiconfig/swriter/ui/headerfootermenu.ui:42
+msgctxt "headerfootermenu|insert_pagecount"
+msgid "Insert Page Count"
+msgstr ""
+
+#: sw/uiconfig/swriter/ui/indentpage.ui:57
msgctxt "indentpage|label1"
msgid "_Before section"
msgstr ""
-#: sw/uiconfig/swriter/ui/indentpage.ui:67
+#: sw/uiconfig/swriter/ui/indentpage.ui:71
msgctxt "indentpage|label3"
msgid "_After section"
msgstr ""
-#: sw/uiconfig/swriter/ui/indentpage.ui:113
+#: sw/uiconfig/swriter/ui/indentpage.ui:115
msgctxt "indentpage|label2"
msgid "Indent"
msgstr ""
-#: sw/uiconfig/swriter/ui/indentpage.ui:142
+#: sw/uiconfig/swriter/ui/indentpage.ui:155
#, fuzzy
msgctxt "indentpage|preview-atkobject"
msgid "Example"
@@ -13608,7 +13613,7 @@ msgstr "Аформа ахьчара"
#: sw/uiconfig/swriter/ui/optcompatpage.ui:68
msgctxt "optcompatpage|format"
-msgid "MS Word-compatible trailing blanks"
+msgid "Word-compatible trailing blanks"
msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:69
@@ -13618,7 +13623,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:70
msgctxt "optcompatpage|format"
-msgid "A database field (e.g., MailMerge) with empty value hides its paragraph"
+msgid "Hide paragraphs of database fields (e.g., mail merge) with an empty value"
msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:71
@@ -16416,130 +16421,130 @@ msgctxt "tableproperties|background"
msgid "Background"
msgstr "Аҿаҧшыра"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:25
-msgctxt "tabletextflowpage|liststore1"
-msgid "Horizontal"
-msgstr "Горизонталла"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:29
-msgctxt "tabletextflowpage|liststore1"
-msgid "Vertical"
-msgstr ""
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:33
-msgctxt "tabletextflowpage|liststore1"
-msgid "Use superordinate object settings"
-msgstr ""
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:47
-#, fuzzy
-msgctxt "tabletextflowpage|liststore2"
-msgid "Top"
-msgstr "Хыхьла"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:51
-msgctxt "tabletextflowpage|liststore2"
-msgid "Centered"
-msgstr "Ацентр ала"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:55
-#, fuzzy
-msgctxt "tabletextflowpage|liststore2"
-msgid "Bottom"
-msgstr "Ҵаҟала"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:97
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:53
msgctxt "tabletextflowpage|break"
msgid "_Break"
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:112
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:68
#, fuzzy
msgctxt "tabletextflowpage|page"
msgid "_Page"
msgstr "Адаҟьа"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:132
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:87
#, fuzzy
msgctxt "tabletextflowpage|column"
msgid "Col_umn"
msgstr "Аиҵагыла"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:151
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:106
msgctxt "tabletextflowpage|before"
msgid "Be_fore"
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:171
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:125
msgctxt "tabletextflowpage|after"
msgid "_After"
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:203
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:158
#, fuzzy
msgctxt "tabletextflowpage|pagestyle"
msgid "With Page St_yle"
msgstr "Иҧсахтәуп адаҟьа астиль"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:224
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:177
#, fuzzy
msgctxt "tabletextflowpage|pagenoft"
msgid "Page _number"
msgstr "Адаҟьа аномер:"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:257
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:213
#, fuzzy
msgctxt "tabletextflowpage|pagestylelb-atkobject"
msgid "With Page Style"
msgstr "Иҧсахтәуп адаҟьа астиль"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:274
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:230
msgctxt "tabletextflowpage|split"
msgid "Allow _table to split across pages and columns"
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:289
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:245
msgctxt "tabletextflowpage|splitrow"
msgid "Allow row to break a_cross pages and columns"
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:306
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:262
msgctxt "tabletextflowpage|keep"
msgid "_Keep with next paragraph"
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:328
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:284
msgctxt "tabletextflowpage|label40"
msgid "Text _orientation"
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:361
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:298
+msgctxt "tabletextflowpage|liststore1"
+msgid "Horizontal"
+msgstr "Горизонталла"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:299
+msgctxt "tabletextflowpage|liststore1"
+msgid "Vertical"
+msgstr ""
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:300
+msgctxt "tabletextflowpage|liststore1"
+msgid "Use superordinate object settings"
+msgstr ""
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:321
msgctxt "tabletextflowpage|headline"
msgid "R_epeat heading"
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:383
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:343
msgctxt "tabletextflowpage|label38"
msgid "The first "
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:396
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:356
#, fuzzy
msgctxt "tabletextflowpage|label39"
msgid "rows"
msgstr "Ацәаҳәақәа"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:434
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:395
msgctxt "tabletextflowpage|label35"
msgid "Text Flow"
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:467
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:428
msgctxt "tabletextflowpage|label41"
msgid "_Vertical alignment"
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:495
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:442
+#, fuzzy
+msgctxt "tabletextflowpage|liststore2"
+msgid "Top"
+msgstr "Хыхьла"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:443
+msgctxt "tabletextflowpage|liststore2"
+msgid "Centered"
+msgstr "Ацентр ала"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:444
+#, fuzzy
+msgctxt "tabletextflowpage|liststore2"
+msgid "Bottom"
+msgstr "Ҵаҟала"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:460
msgctxt "tabletextflowpage|label36"
msgid "Alignment"
msgstr "Аиҟаратәра"
@@ -17340,7 +17345,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/tocindexpage.ui:58
msgctxt "tocindexpage|liststore1"
-msgid "Illustration Index"
+msgid "Table of Figures"
msgstr ""
#: sw/uiconfig/swriter/ui/tocindexpage.ui:62
diff --git a/source/ab/writerperfect/messages.po b/source/ab/writerperfect/messages.po
index 19f5826812b..fbf96acc01c 100644
--- a/source/ab/writerperfect/messages.po
+++ b/source/ab/writerperfect/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-16 16:54+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2018-03-25 10:26+0000\n"
"Last-Translator: Андрей Абухба <aabuchba@mail.ru>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -65,97 +65,97 @@ msgctxt "exportepub|generalft"
msgid "General"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:122
+#: writerperfect/uiconfig/ui/exportepub.ui:121
msgctxt "exportepub|versionft"
msgid "Version:"
msgstr "Аверсиа:"
-#: writerperfect/uiconfig/ui/exportepub.ui:139
+#: writerperfect/uiconfig/ui/exportepub.ui:138
msgctxt "exportepub|epub3"
msgid "EPUB 3.0"
msgstr "EPUB 3.0"
-#: writerperfect/uiconfig/ui/exportepub.ui:140
+#: writerperfect/uiconfig/ui/exportepub.ui:139
msgctxt "exportepub|epub2"
msgid "EPUB 2.0"
msgstr "EPUB 2.0"
-#: writerperfect/uiconfig/ui/exportepub.ui:175
+#: writerperfect/uiconfig/ui/exportepub.ui:174
msgctxt "exportepub|splitft"
msgid "Split method:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:192
+#: writerperfect/uiconfig/ui/exportepub.ui:191
msgctxt "exportepub|splitpage"
msgid "Page break"
msgstr "Адаҟьа аимҟьара"
-#: writerperfect/uiconfig/ui/exportepub.ui:193
+#: writerperfect/uiconfig/ui/exportepub.ui:192
msgctxt "exportepub|splitheading"
msgid "Heading"
msgstr "Ахы"
-#: writerperfect/uiconfig/ui/exportepub.ui:228
+#: writerperfect/uiconfig/ui/exportepub.ui:227
msgctxt "exportepub|layoutft"
msgid "Layout method:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:245
+#: writerperfect/uiconfig/ui/exportepub.ui:244
msgctxt "exportepub|layoutreflowable"
msgid "Reflowable"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:246
+#: writerperfect/uiconfig/ui/exportepub.ui:245
msgctxt "exportepub|layoutfixed"
msgid "Fixed"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:281
+#: writerperfect/uiconfig/ui/exportepub.ui:280
msgctxt "exportepub|coverimageft"
msgid "Custom cover image:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:311
+#: writerperfect/uiconfig/ui/exportepub.ui:310
msgctxt "exportepub|coverbutton"
msgid "Browse..."
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:355
+#: writerperfect/uiconfig/ui/exportepub.ui:354
msgctxt "exportepub|mediadirft"
msgid "Custom media directory:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:385
+#: writerperfect/uiconfig/ui/exportepub.ui:384
msgctxt "exportepub|mediabutton"
msgid "Browse..."
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:429
+#: writerperfect/uiconfig/ui/exportepub.ui:428
msgctxt "exportepub|metadataft"
msgid "Metadata"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:470
+#: writerperfect/uiconfig/ui/exportepub.ui:468
msgctxt "exportepub|identifierft"
msgid "Identifier:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:485
+#: writerperfect/uiconfig/ui/exportepub.ui:483
msgctxt "exportepub|titleft"
msgid "Title:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:511
+#: writerperfect/uiconfig/ui/exportepub.ui:509
msgctxt "exportepub|authorft"
msgid "Author:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:537
+#: writerperfect/uiconfig/ui/exportepub.ui:535
msgctxt "exportepub|languageft"
msgid "Language:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:563
+#: writerperfect/uiconfig/ui/exportepub.ui:561
msgctxt "exportepub|dateft"
msgid "Date:"
msgstr "Арыцхә:"
diff --git a/source/af/cui/messages.po b/source/af/cui/messages.po
index 0cbc2cc9bea..73e4c6837f9 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+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"
@@ -10449,107 +10449,107 @@ msgctxt "positionsizedialog|PositionAndSizeDialog"
msgid "Position and Size"
msgstr "Posisie en groo~tte..."
-#: cui/uiconfig/ui/positionsizedialog.ui:107
+#: cui/uiconfig/ui/positionsizedialog.ui:136
#, fuzzy
msgctxt "positionsizedialog|RID_SVXPAGE_POSITION_SIZE"
msgid "Position and Size"
msgstr "Posisie en groo~tte..."
-#: cui/uiconfig/ui/positionsizedialog.ui:129
+#: cui/uiconfig/ui/positionsizedialog.ui:182
#, fuzzy
msgctxt "positionsizedialog|RID_SVXPAGE_SWPOSSIZE"
msgid "Position and Size"
msgstr "Posisie en groo~tte..."
-#: cui/uiconfig/ui/positionsizedialog.ui:152
+#: cui/uiconfig/ui/positionsizedialog.ui:229
msgctxt "positionsizedialog|RID_SVXPAGE_ANGLE"
msgid "Rotation"
msgstr "Rotering"
-#: cui/uiconfig/ui/positionsizedialog.ui:175
+#: cui/uiconfig/ui/positionsizedialog.ui:276
msgctxt "positionsizedialog|RID_SVXPAGE_SLANT"
msgid "Slant & Corner Radius"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:40
+#: cui/uiconfig/ui/possizetabpage.ui:61
#, fuzzy
msgctxt "possizetabpage|FT_POS_X"
msgid "Position _X:"
msgstr "Posisie"
-#: cui/uiconfig/ui/possizetabpage.ui:56
+#: cui/uiconfig/ui/possizetabpage.ui:75
#, fuzzy
msgctxt "possizetabpage|FT_POS_Y"
msgid "Position _Y:"
msgstr "Posisie"
-#: cui/uiconfig/ui/possizetabpage.ui:110
+#: cui/uiconfig/ui/possizetabpage.ui:128
msgctxt "possizetabpage|FT_POSREFERENCE"
msgid "_Base point:"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:148
+#: cui/uiconfig/ui/possizetabpage.ui:182
msgctxt "possizetabpage|label1"
msgid "Position"
msgstr "Posisie"
-#: cui/uiconfig/ui/possizetabpage.ui:190
+#: cui/uiconfig/ui/possizetabpage.ui:224
#, fuzzy
msgctxt "possizetabpage|FT_WIDTH"
msgid "Wi_dth:"
msgstr "Wydte"
-#: cui/uiconfig/ui/possizetabpage.ui:206
+#: cui/uiconfig/ui/possizetabpage.ui:238
#, fuzzy
msgctxt "possizetabpage|FT_HEIGHT"
msgid "H_eight:"
msgstr "Hoogte"
-#: cui/uiconfig/ui/possizetabpage.ui:247
+#: cui/uiconfig/ui/possizetabpage.ui:276
#, fuzzy
msgctxt "possizetabpage|CBX_SCALE"
msgid "_Keep ratio"
msgstr "Behou verhouding"
-#: cui/uiconfig/ui/possizetabpage.ui:279
+#: cui/uiconfig/ui/possizetabpage.ui:307
msgctxt "possizetabpage|FT_SIZEREFERENCE"
msgid "Base _point:"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:317
+#: cui/uiconfig/ui/possizetabpage.ui:361
msgctxt "possizetabpage|label2"
msgid "Size"
msgstr "Grootte"
-#: cui/uiconfig/ui/possizetabpage.ui:356
+#: cui/uiconfig/ui/possizetabpage.ui:401
#, fuzzy
msgctxt "possizetabpage|TSB_POSPROTECT"
msgid "Positio_n"
msgstr "Posisie"
-#: cui/uiconfig/ui/possizetabpage.ui:373
+#: cui/uiconfig/ui/possizetabpage.ui:418
#, fuzzy
msgctxt "possizetabpage|TSB_SIZEPROTECT"
msgid "_Size"
msgstr "Grootte"
-#: cui/uiconfig/ui/possizetabpage.ui:397
+#: cui/uiconfig/ui/possizetabpage.ui:441
#, fuzzy
msgctxt "possizetabpage|label3"
msgid "Protect"
msgstr "~Beskerm"
-#: cui/uiconfig/ui/possizetabpage.ui:430
+#: cui/uiconfig/ui/possizetabpage.ui:475
msgctxt "possizetabpage|TSB_AUTOGROW_WIDTH"
msgid "_Fit width to text"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:447
+#: cui/uiconfig/ui/possizetabpage.ui:492
msgctxt "possizetabpage|TSB_AUTOGROW_HEIGHT"
msgid "Fit _height to text"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:471
+#: cui/uiconfig/ui/possizetabpage.ui:515
msgctxt "possizetabpage|label4"
msgid "Adapt"
msgstr ""
@@ -10762,50 +10762,50 @@ msgctxt "recordnumberdialog|label2"
msgid "go to record"
msgstr ""
-#: cui/uiconfig/ui/rotationtabpage.ui:52
+#: cui/uiconfig/ui/rotationtabpage.ui:56
#, fuzzy
msgctxt "rotationtabpage|FT_POS_X"
msgid "Position _X:"
msgstr "Posisie"
-#: cui/uiconfig/ui/rotationtabpage.ui:66
+#: cui/uiconfig/ui/rotationtabpage.ui:70
#, fuzzy
msgctxt "rotationtabpage|FT_POS_Y"
msgid "Position _Y:"
msgstr "Posisie"
-#: cui/uiconfig/ui/rotationtabpage.ui:116
+#: cui/uiconfig/ui/rotationtabpage.ui:123
msgctxt "rotationtabpage|FT_POSPRESETS"
msgid "_Default settings:"
msgstr ""
-#: cui/uiconfig/ui/rotationtabpage.ui:130
+#: cui/uiconfig/ui/rotationtabpage.ui:151
msgctxt "rotationtabpage|CTL_RECT|tooltip_text"
msgid "Rotation point"
msgstr ""
-#: cui/uiconfig/ui/rotationtabpage.ui:155
+#: cui/uiconfig/ui/rotationtabpage.ui:178
msgctxt "rotationtabpage|label1"
msgid "Pivot Point"
msgstr ""
-#: cui/uiconfig/ui/rotationtabpage.ui:197
+#: cui/uiconfig/ui/rotationtabpage.ui:220
msgctxt "rotationtabpage|FT_ANGLE"
msgid "_Angle:"
msgstr ""
-#: cui/uiconfig/ui/rotationtabpage.ui:238
+#: cui/uiconfig/ui/rotationtabpage.ui:263
msgctxt "rotationtabpage|FT_ANGLEPRESETS"
msgid "Default _settings:"
msgstr ""
-#: cui/uiconfig/ui/rotationtabpage.ui:252
+#: cui/uiconfig/ui/rotationtabpage.ui:287
#, fuzzy
msgctxt "rotationtabpage|CTL_ANGLE|tooltip_text"
msgid "Rotation Angle"
msgstr "Rotasiehoek"
-#: cui/uiconfig/ui/rotationtabpage.ui:277
+#: cui/uiconfig/ui/rotationtabpage.ui:314
#, fuzzy
msgctxt "rotationtabpage|label2"
msgid "Rotation Angle"
@@ -11198,55 +11198,55 @@ msgctxt "similaritysearchdialog|relaxbox"
msgid "_Combine"
msgstr "Komb~ineer"
-#: cui/uiconfig/ui/slantcornertabpage.ui:50
+#: cui/uiconfig/ui/slantcornertabpage.ui:70
msgctxt "slantcornertabpage|label5"
msgid "_X:"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:88
+#: cui/uiconfig/ui/slantcornertabpage.ui:110
msgctxt "slantcornertabpage|label6"
msgid "_Y:"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:125
+#: cui/uiconfig/ui/slantcornertabpage.ui:149
msgctxt "slantcornertabpage|label3"
msgid "Control Point 1"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:159
+#: cui/uiconfig/ui/slantcornertabpage.ui:183
#, fuzzy
msgctxt "slantcornertabpage|FT_RADIUS"
msgid "_Radius:"
msgstr "Radius"
-#: cui/uiconfig/ui/slantcornertabpage.ui:189
+#: cui/uiconfig/ui/slantcornertabpage.ui:214
#, fuzzy
msgctxt "slantcornertabpage|label1"
msgid "Corner Radius"
msgstr "Hoekradius"
-#: cui/uiconfig/ui/slantcornertabpage.ui:223
+#: cui/uiconfig/ui/slantcornertabpage.ui:248
msgctxt "slantcornertabpage|FT_ANGLE"
msgid "_Angle:"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:253
+#: cui/uiconfig/ui/slantcornertabpage.ui:279
#, fuzzy
msgctxt "slantcornertabpage|label2"
msgid "Slant"
msgstr "Skuinsstreep"
-#: cui/uiconfig/ui/slantcornertabpage.ui:294
+#: cui/uiconfig/ui/slantcornertabpage.ui:320
msgctxt "slantcornertabpage|label4"
msgid "_X:"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:332
+#: cui/uiconfig/ui/slantcornertabpage.ui:360
msgctxt "slantcornertabpage|label7"
msgid "_Y:"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:369
+#: cui/uiconfig/ui/slantcornertabpage.ui:399
msgctxt "slantcornertabpage|label8"
msgid "Control Point 2"
msgstr ""
@@ -11542,124 +11542,124 @@ msgctxt "storedwebconnectiondialog|change"
msgid "_Change Password..."
msgstr "Verander ~wagwoord..."
-#: cui/uiconfig/ui/swpossizepage.ui:74
+#: cui/uiconfig/ui/swpossizepage.ui:85
#, fuzzy
msgctxt "swpossizepage|widthft"
msgid "_Width:"
msgstr "Wydte"
-#: cui/uiconfig/ui/swpossizepage.ui:111
+#: cui/uiconfig/ui/swpossizepage.ui:123
#, fuzzy
msgctxt "swpossizepage|heightft"
msgid "H_eight:"
msgstr "Hoogte"
-#: cui/uiconfig/ui/swpossizepage.ui:128
+#: cui/uiconfig/ui/swpossizepage.ui:141
#, fuzzy
msgctxt "swpossizepage|ratio"
msgid "_Keep ratio"
msgstr "Behou verhouding"
-#: cui/uiconfig/ui/swpossizepage.ui:149
+#: cui/uiconfig/ui/swpossizepage.ui:162
msgctxt "swpossizepage|label2"
msgid "Size"
msgstr "Grootte"
-#: cui/uiconfig/ui/swpossizepage.ui:205
+#: cui/uiconfig/ui/swpossizepage.ui:218
#, fuzzy
msgctxt "swpossizepage|topage"
msgid "To _page"
msgstr "Na bladsy"
-#: cui/uiconfig/ui/swpossizepage.ui:222
+#: cui/uiconfig/ui/swpossizepage.ui:234
#, fuzzy
msgctxt "swpossizepage|topara"
msgid "To paragrap_h"
msgstr "Na paragraaf"
-#: cui/uiconfig/ui/swpossizepage.ui:238
+#: cui/uiconfig/ui/swpossizepage.ui:250
#, fuzzy
msgctxt "swpossizepage|tochar"
msgid "To cha_racter"
msgstr "Na karakter"
-#: cui/uiconfig/ui/swpossizepage.ui:254
+#: cui/uiconfig/ui/swpossizepage.ui:266
#, fuzzy
msgctxt "swpossizepage|aschar"
msgid "_As character"
msgstr "As karakter"
-#: cui/uiconfig/ui/swpossizepage.ui:270
+#: cui/uiconfig/ui/swpossizepage.ui:282
#, fuzzy
msgctxt "swpossizepage|toframe"
msgid "To _frame"
msgstr "Na raam"
-#: cui/uiconfig/ui/swpossizepage.ui:292
+#: cui/uiconfig/ui/swpossizepage.ui:304
msgctxt "swpossizepage|label1"
msgid "Anchor"
msgstr "Anker"
-#: cui/uiconfig/ui/swpossizepage.ui:333
+#: cui/uiconfig/ui/swpossizepage.ui:344
#, fuzzy
msgctxt "swpossizepage|horiposft"
msgid "Hori_zontal:"
msgstr "Horisontaal"
-#: cui/uiconfig/ui/swpossizepage.ui:347
+#: cui/uiconfig/ui/swpossizepage.ui:358
msgctxt "swpossizepage|horibyft"
msgid "b_y:"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:361
+#: cui/uiconfig/ui/swpossizepage.ui:372
msgctxt "swpossizepage|vertbyft"
msgid "_by:"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:375
+#: cui/uiconfig/ui/swpossizepage.ui:386
msgctxt "swpossizepage|horitoft"
msgid "_to:"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:421
+#: cui/uiconfig/ui/swpossizepage.ui:433
#, fuzzy
msgctxt "swpossizepage|vertposft"
msgid "_Vertical:"
msgstr "Vertikaal"
-#: cui/uiconfig/ui/swpossizepage.ui:457
+#: cui/uiconfig/ui/swpossizepage.ui:470
msgctxt "swpossizepage|verttoft"
msgid "t_o:"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:478
+#: cui/uiconfig/ui/swpossizepage.ui:492
msgctxt "swpossizepage|mirror"
msgid "_Mirror on even pages"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:495
+#: cui/uiconfig/ui/swpossizepage.ui:509
msgctxt "swpossizepage|followtextflow"
msgid "Follow te_xt flow"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:518
+#: cui/uiconfig/ui/swpossizepage.ui:532
msgctxt "swpossizepage|label11"
msgid "Position"
msgstr "Posisie"
-#: cui/uiconfig/ui/swpossizepage.ui:549
+#: cui/uiconfig/ui/swpossizepage.ui:563
#, fuzzy
msgctxt "swpossizepage|pos"
msgid "Positio_n"
msgstr "Posisie"
-#: cui/uiconfig/ui/swpossizepage.ui:565
+#: cui/uiconfig/ui/swpossizepage.ui:579
#, fuzzy
msgctxt "swpossizepage|size"
msgid "_Size"
msgstr "Grootte"
-#: cui/uiconfig/ui/swpossizepage.ui:587
+#: cui/uiconfig/ui/swpossizepage.ui:601
#, fuzzy
msgctxt "swpossizepage|label3"
msgid "Protect"
@@ -11862,13 +11862,13 @@ msgctxt "textattrtabpage|label2"
msgid "Spacing to Borders"
msgstr ""
-#: cui/uiconfig/ui/textattrtabpage.ui:425
+#: cui/uiconfig/ui/textattrtabpage.ui:423
#, fuzzy
msgctxt "textattrtabpage|TSB_FULL_WIDTH"
msgid "Full _width"
msgstr "Volle breedte"
-#: cui/uiconfig/ui/textattrtabpage.ui:448
+#: cui/uiconfig/ui/textattrtabpage.ui:446
msgctxt "textattrtabpage|label3"
msgid "Text Anchor"
msgstr ""
diff --git a/source/af/filter/source/config/fragments/filters.po b/source/af/filter/source/config/fragments/filters.po
index 7c4ed670c63..7f59855d4d0 100644
--- a/source/af/filter/source/config/fragments/filters.po
+++ b/source/af/filter/source/config/fragments/filters.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-16 16:54+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2016-12-01 12:01+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -465,8 +465,8 @@ msgctxt ""
"MS Word 2003 XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Word 2003 XML"
-msgstr "Microsoft Word 2003 XML"
+msgid "Word 2003 XML"
+msgstr ""
#: MS_Word_2007_XML.xcu
msgctxt ""
@@ -1290,7 +1290,7 @@ msgctxt ""
"Calc MS Excel 2007 VBA XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Excel 2007-2016 XML (macro enabled)"
+msgid "Excel 2007–2019 (macro-enabled)"
msgstr ""
#: calc_MS_Excel_2007_XML.xcu
diff --git a/source/af/filter/source/config/fragments/types.po b/source/af/filter/source/config/fragments/types.po
index 26eba9301d6..44d2901bfc3 100644
--- a/source/af/filter/source/config/fragments/types.po
+++ b/source/af/filter/source/config/fragments/types.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-08 15:11+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2016-02-29 18:26+0000\n"
"Last-Translator: Noel Grandin <noelgrandin@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -294,8 +294,8 @@ msgctxt ""
"writer_MS_Word_2003_XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Word 2003 XML"
-msgstr "Microsoft Word 2003 XML"
+msgid "Word 2003 XML"
+msgstr ""
#: writer_MS_Word_2007_XML.xcu
msgctxt ""
diff --git a/source/af/fpicker/messages.po b/source/af/fpicker/messages.po
index 767aa34a7e8..0a288f62688 100644
--- a/source/af/fpicker/messages.po
+++ b/source/af/fpicker/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+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"
@@ -278,14 +278,13 @@ msgstr ""
#: fpicker/uiconfig/ui/foldernamedialog.ui:8
msgctxt "foldernamedialog|FolderNameDialog"
-msgid "Folder Name ?"
+msgid "Folder Name"
msgstr ""
#: fpicker/uiconfig/ui/foldernamedialog.ui:91
-#, fuzzy
msgctxt "foldernamedialog|label2"
-msgid "Na_me"
-msgstr "Naam"
+msgid "Na_me:"
+msgstr ""
#: fpicker/uiconfig/ui/foldernamedialog.ui:122
#, fuzzy
diff --git a/source/af/officecfg/registry/data/org/openoffice/Office/UI.po b/source/af/officecfg/registry/data/org/openoffice/Office/UI.po
index a855eaa28ee..5b8581c4c9a 100644
--- a/source/af/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/af/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-22 13:17+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2016-12-01 17:27+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -26984,8 +26984,8 @@ msgctxt ""
"..WriterCommands.UserInterface.Commands..uno:TextAttributes\n"
"Label\n"
"value.text"
-msgid "Text Attributes"
-msgstr "Teksattribute"
+msgid "Text Attributes..."
+msgstr ""
#: WriterCommands.xcu
msgctxt ""
diff --git a/source/af/readlicense_oo/docs.po b/source/af/readlicense_oo/docs.po
index 0bfa7f25405..e92fc0e4391 100644
--- a/source/af/readlicense_oo/docs.po
+++ b/source/af/readlicense_oo/docs.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-04-17 15:54+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2016-03-10 18:13+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -117,7 +117,7 @@ msgctxt ""
"readme.xrm\n"
"macxiOSX\n"
"readmeitem.text"
-msgid "MacOSX 10.8 (Mountain Lion) or higher"
+msgid "MacOSX 10.9 (Mavericks) or higher"
msgstr ""
#: readme.xrm
diff --git a/source/af/sc/messages.po b/source/af/sc/messages.po
index 5acbe51b92f..07bed7ccb32 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-12 14:40+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"
@@ -1887,17 +1887,22 @@ msgid "Nested arrays are not supported."
msgstr "Geneste skikkings word nie ondersteun nie."
#: sc/inc/globstr.hrc:390
+msgctxt "STR_ERR_LONG_BAD_ARRAY_CONTENT"
+msgid "Unsupported inline array content."
+msgstr ""
+
+#: sc/inc/globstr.hrc:391
#, fuzzy
msgctxt "STR_UNDO_TEXTTOCOLUMNS"
msgid "Text to Columns"
msgstr "Teks na kolomme"
-#: sc/inc/globstr.hrc:391
+#: sc/inc/globstr.hrc:392
msgctxt "STR_DOC_UPDATED"
msgid "Your spreadsheet has been updated with changes saved by other users."
msgstr "U sigblad is bygewerk met veranderinge wat deur ander gebruikers gestoor is."
-#: sc/inc/globstr.hrc:392
+#: sc/inc/globstr.hrc:393
msgctxt "STR_DOC_WILLBESAVED"
msgid ""
"The spreadsheet must be saved now to activate sharing mode.\n"
@@ -1908,7 +1913,7 @@ msgstr ""
"\n"
"Wil u voortgaan?"
-#: sc/inc/globstr.hrc:393
+#: sc/inc/globstr.hrc:394
msgctxt "STR_DOC_WILLNOTBESAVED"
msgid ""
"Already resolved merge conflicts will be lost and your changes to the shared spreadsheet will not be saved.\n"
@@ -1919,7 +1924,7 @@ msgstr ""
"\n"
"Wil u voortgaan?"
-#: sc/inc/globstr.hrc:394
+#: sc/inc/globstr.hrc:395
msgctxt "STR_DOC_DISABLESHARED"
msgid ""
"Disabling shared mode of a spreadsheet hinders all other users of the shared spreadsheet to merge back their work.\n"
@@ -1930,7 +1935,7 @@ msgstr ""
"\n"
"Wil u voortgaan?"
-#: sc/inc/globstr.hrc:395
+#: sc/inc/globstr.hrc:396
msgctxt "STR_DOC_NOLONGERSHARED"
msgid ""
"This spreadsheet is no longer in shared mode.\n"
@@ -1941,7 +1946,7 @@ msgstr ""
"\n"
"Stoor u sigblad in 'n aparte lêer en voeg u veranderinge handmatig saam met die gedeelde sigblad."
-#: sc/inc/globstr.hrc:396
+#: sc/inc/globstr.hrc:397
msgctxt "STR_FILE_LOCKED_TRY_LATER"
msgid ""
"The shared spreadsheet file is locked due to a merge in progress by user: '%1'\n"
@@ -1952,7 +1957,7 @@ msgstr ""
"\n"
"Gedeeldemodus van 'n geslote lêer kan nie gedeaktiveer word nie. Probeer later weer."
-#: sc/inc/globstr.hrc:397
+#: sc/inc/globstr.hrc:398
msgctxt "STR_FILE_LOCKED_SAVE_LATER"
msgid ""
"The shared spreadsheet file is locked due to a merge in progress by user: '%1'\n"
@@ -1963,152 +1968,152 @@ msgstr ""
"\n"
"Probeer later weer om u veranderinge te stoor."
-#: sc/inc/globstr.hrc:398
+#: sc/inc/globstr.hrc:399
msgctxt "STR_UNKNOWN_USER"
msgid "Unknown User"
msgstr "Onbekende gebruiker"
-#: sc/inc/globstr.hrc:399
+#: sc/inc/globstr.hrc:400
msgctxt "STR_SHAPE_AUTOSHAPE"
msgid "AutoShape"
msgstr ""
-#: sc/inc/globstr.hrc:400
+#: sc/inc/globstr.hrc:401
msgctxt "STR_SHAPE_RECTANGLE"
msgid "Rectangle"
msgstr "Reghoek"
-#: sc/inc/globstr.hrc:401
+#: sc/inc/globstr.hrc:402
msgctxt "STR_SHAPE_LINE"
msgid "Line"
msgstr "Reël"
-#: sc/inc/globstr.hrc:402
+#: sc/inc/globstr.hrc:403
msgctxt "STR_SHAPE_OVAL"
msgid "Oval"
msgstr "Ovaal"
-#: sc/inc/globstr.hrc:403
+#: sc/inc/globstr.hrc:404
msgctxt "STR_FORM_BUTTON"
msgid "Button"
msgstr "Knoppie"
-#: sc/inc/globstr.hrc:404
+#: sc/inc/globstr.hrc:405
msgctxt "STR_FORM_CHECKBOX"
msgid "Check Box"
msgstr "Merkblokkie"
-#: sc/inc/globstr.hrc:405
+#: sc/inc/globstr.hrc:406
msgctxt "STR_FORM_OPTIONBUTTON"
msgid "Option Button"
msgstr "Opsieknoppie"
-#: sc/inc/globstr.hrc:406
+#: sc/inc/globstr.hrc:407
msgctxt "STR_FORM_LABEL"
msgid "Label"
msgstr "Etiket"
-#: sc/inc/globstr.hrc:407
+#: sc/inc/globstr.hrc:408
msgctxt "STR_FORM_LISTBOX"
msgid "List Box"
msgstr "Lyskassie"
-#: sc/inc/globstr.hrc:408
+#: sc/inc/globstr.hrc:409
msgctxt "STR_FORM_GROUPBOX"
msgid "Group Box"
msgstr "Groepkassie"
-#: sc/inc/globstr.hrc:409
+#: sc/inc/globstr.hrc:410
#, fuzzy
msgctxt "STR_FORM_DROPDOWN"
msgid "Drop Down"
msgstr "Aftuimel"
-#: sc/inc/globstr.hrc:410
+#: sc/inc/globstr.hrc:411
msgctxt "STR_FORM_SPINNER"
msgid "Spinner"
msgstr ""
-#: sc/inc/globstr.hrc:411
+#: sc/inc/globstr.hrc:412
#, fuzzy
msgctxt "STR_FORM_SCROLLBAR"
msgid "Scroll Bar"
msgstr "Rolbalk"
-#: sc/inc/globstr.hrc:412
+#: sc/inc/globstr.hrc:413
msgctxt "STR_STYLE_FAMILY_CELL"
msgid "Cell Styles"
msgstr "Selstyle"
-#: sc/inc/globstr.hrc:413
+#: sc/inc/globstr.hrc:414
msgctxt "STR_STYLE_FAMILY_PAGE"
msgid "Page Styles"
msgstr "Bladsystyle"
-#: sc/inc/globstr.hrc:414
+#: sc/inc/globstr.hrc:415
#, fuzzy
msgctxt "STR_ERR_DATAPILOTSOURCE"
msgid "Pivot table source data is invalid."
msgstr "Die gegewe stroom is ongeldig."
-#: sc/inc/globstr.hrc:415
+#: sc/inc/globstr.hrc:416
msgctxt "STR_OPTIONS_WARN_SEPARATORS"
msgid "Because the current formula separator settings conflict with the locale, the formula separators have been reset to their default values."
msgstr ""
-#: sc/inc/globstr.hrc:416
+#: sc/inc/globstr.hrc:417
msgctxt "STR_UNDO_INSERT_CURRENT_DATE"
msgid "Insert Current Date"
msgstr ""
-#: sc/inc/globstr.hrc:417
+#: sc/inc/globstr.hrc:418
msgctxt "STR_UNDO_INSERT_CURRENT_TIME"
msgid "Insert Current Time"
msgstr ""
-#: sc/inc/globstr.hrc:418
+#: sc/inc/globstr.hrc:419
#, fuzzy
msgctxt "STR_MANAGE_NAMES"
msgid "Manage Names..."
msgstr "Omvangname"
-#: sc/inc/globstr.hrc:419
+#: sc/inc/globstr.hrc:420
msgctxt "STR_HEADER_NAME"
msgid "Name"
msgstr "Naam"
-#: sc/inc/globstr.hrc:420
+#: sc/inc/globstr.hrc:421
msgctxt "STR_HEADER_RANGE_OR_EXPR"
msgid "Range or formula expression"
msgstr ""
-#: sc/inc/globstr.hrc:421
+#: sc/inc/globstr.hrc:422
msgctxt "STR_HEADER_SCOPE"
msgid "Scope"
msgstr "Skopus"
-#: sc/inc/globstr.hrc:422
+#: sc/inc/globstr.hrc:423
msgctxt "STR_MULTI_SELECT"
msgid "(multiple)"
msgstr ""
-#: sc/inc/globstr.hrc:423
+#: sc/inc/globstr.hrc:424
#, fuzzy
msgctxt "STR_GLOBAL_SCOPE"
msgid "Document (Global)"
msgstr "Dokument gesluit"
-#: sc/inc/globstr.hrc:424
+#: sc/inc/globstr.hrc:425
msgctxt "STR_ERR_NAME_EXISTS"
msgid "Invalid name. Already in use for the selected scope."
msgstr ""
-#: sc/inc/globstr.hrc:425
+#: sc/inc/globstr.hrc:426
msgctxt "STR_ERR_NAME_INVALID"
msgid "Invalid name. Only use letters, numbers and underscore."
msgstr ""
-#: sc/inc/globstr.hrc:426
+#: sc/inc/globstr.hrc:427
msgctxt "STR_UNSAVED_EXT_REF"
msgid ""
"This Document contains external references to unsaved documents.\n"
@@ -2116,229 +2121,229 @@ msgid ""
"Do you want to continue?"
msgstr ""
-#: sc/inc/globstr.hrc:427
+#: sc/inc/globstr.hrc:428
msgctxt "STR_CLOSE_WITH_UNSAVED_REFS"
msgid "This Document is referenced by another document and not yet saved. Closing it without saving will result in data loss."
msgstr ""
-#: sc/inc/globstr.hrc:428
+#: sc/inc/globstr.hrc:429
msgctxt "STR_HEADER_RANGE"
msgid "Range"
msgstr "Omvang"
-#: sc/inc/globstr.hrc:429
+#: sc/inc/globstr.hrc:430
msgctxt "STR_HEADER_COND"
msgid "First Condition"
msgstr ""
-#: sc/inc/globstr.hrc:430
+#: sc/inc/globstr.hrc:431
#, fuzzy
msgctxt "STR_COND_CONDITION"
msgid "Cell value is"
msgstr "Selwaarde is"
-#: sc/inc/globstr.hrc:431
+#: sc/inc/globstr.hrc:432
msgctxt "STR_COND_COLORSCALE"
msgid "ColorScale"
msgstr ""
-#: sc/inc/globstr.hrc:432
+#: sc/inc/globstr.hrc:433
msgctxt "STR_COND_DATABAR"
msgid "DataBar"
msgstr ""
-#: sc/inc/globstr.hrc:433
+#: sc/inc/globstr.hrc:434
msgctxt "STR_COND_ICONSET"
msgid "IconSet"
msgstr ""
-#: sc/inc/globstr.hrc:434
+#: sc/inc/globstr.hrc:435
#, fuzzy
msgctxt "STR_COND_BETWEEN"
msgid "between"
msgstr "tussen"
-#: sc/inc/globstr.hrc:435
+#: sc/inc/globstr.hrc:436
#, fuzzy
msgctxt "STR_COND_NOTBETWEEN"
msgid "not between"
msgstr "nie tussen"
-#: sc/inc/globstr.hrc:436
+#: sc/inc/globstr.hrc:437
msgctxt "STR_COND_UNIQUE"
msgid "unique"
msgstr ""
-#: sc/inc/globstr.hrc:437
+#: sc/inc/globstr.hrc:438
#, fuzzy
msgctxt "STR_COND_DUPLICATE"
msgid "duplicate"
msgstr "Duplikaat"
-#: sc/inc/globstr.hrc:438
+#: sc/inc/globstr.hrc:439
#, fuzzy
msgctxt "STR_COND_FORMULA"
msgid "Formula is"
msgstr "Formule is"
-#: sc/inc/globstr.hrc:439
+#: sc/inc/globstr.hrc:440
msgctxt "STR_COND_TOP10"
msgid "Top Elements"
msgstr ""
-#: sc/inc/globstr.hrc:440
+#: sc/inc/globstr.hrc:441
msgctxt "STR_COND_BOTTOM10"
msgid "Bottom Elements"
msgstr ""
-#: sc/inc/globstr.hrc:441
+#: sc/inc/globstr.hrc:442
msgctxt "STR_COND_TOP_PERCENT"
msgid "Top Percent"
msgstr ""
-#: sc/inc/globstr.hrc:442
+#: sc/inc/globstr.hrc:443
msgctxt "STR_COND_DATE"
msgid "Date is"
msgstr ""
-#: sc/inc/globstr.hrc:443
+#: sc/inc/globstr.hrc:444
msgctxt "STR_COND_BOTTOM_PERCENT"
msgid "Bottom Percent"
msgstr ""
-#: sc/inc/globstr.hrc:444
+#: sc/inc/globstr.hrc:445
msgctxt "STR_COND_ABOVE_AVERAGE"
msgid "Above Average"
msgstr ""
-#: sc/inc/globstr.hrc:445
+#: sc/inc/globstr.hrc:446
msgctxt "STR_COND_BELOW_AVERAGE"
msgid "Below Average"
msgstr ""
-#: sc/inc/globstr.hrc:446
+#: sc/inc/globstr.hrc:447
msgctxt "STR_COND_ABOVE_EQUAL_AVERAGE"
msgid "Above or equal Average"
msgstr ""
-#: sc/inc/globstr.hrc:447
+#: sc/inc/globstr.hrc:448
msgctxt "STR_COND_BELOW_EQUAL_AVERAGE"
msgid "Below or equal Average"
msgstr ""
-#: sc/inc/globstr.hrc:448
+#: sc/inc/globstr.hrc:449
#, fuzzy
msgctxt "STR_COND_ERROR"
msgid "an Error code"
msgstr "Foutkode"
-#: sc/inc/globstr.hrc:449
+#: sc/inc/globstr.hrc:450
#, fuzzy
msgctxt "STR_COND_NOERROR"
msgid "not an Error code"
msgstr "Foutkode"
-#: sc/inc/globstr.hrc:450
+#: sc/inc/globstr.hrc:451
#, fuzzy
msgctxt "STR_COND_BEGINS_WITH"
msgid "Begins with"
msgstr "Begin met"
-#: sc/inc/globstr.hrc:451
+#: sc/inc/globstr.hrc:452
#, fuzzy
msgctxt "STR_COND_ENDS_WITH"
msgid "Ends with"
msgstr "Eindig met"
-#: sc/inc/globstr.hrc:452
+#: sc/inc/globstr.hrc:453
#, fuzzy
msgctxt "STR_COND_CONTAINS"
msgid "Contains"
msgstr "Bevat"
-#: sc/inc/globstr.hrc:453
+#: sc/inc/globstr.hrc:454
msgctxt "STR_COND_NOT_CONTAINS"
msgid "Not Contains"
msgstr ""
-#: sc/inc/globstr.hrc:454
+#: sc/inc/globstr.hrc:455
#, fuzzy
msgctxt "STR_COND_TODAY"
msgid "today"
msgstr "Vandag"
-#: sc/inc/globstr.hrc:455
+#: sc/inc/globstr.hrc:456
#, fuzzy
msgctxt "STR_COND_YESTERDAY"
msgid "yesterday"
msgstr "Gister,"
-#: sc/inc/globstr.hrc:456
+#: sc/inc/globstr.hrc:457
msgctxt "STR_COND_TOMORROW"
msgid "tomorrow"
msgstr ""
-#: sc/inc/globstr.hrc:457
+#: sc/inc/globstr.hrc:458
msgctxt "STR_COND_LAST7DAYS"
msgid "in the last 7 days"
msgstr ""
-#: sc/inc/globstr.hrc:458
+#: sc/inc/globstr.hrc:459
msgctxt "STR_COND_THISWEEK"
msgid "this week"
msgstr ""
-#: sc/inc/globstr.hrc:459
+#: sc/inc/globstr.hrc:460
msgctxt "STR_COND_LASTWEEK"
msgid "last week"
msgstr ""
-#: sc/inc/globstr.hrc:460
+#: sc/inc/globstr.hrc:461
msgctxt "STR_COND_NEXTWEEK"
msgid "next week"
msgstr ""
-#: sc/inc/globstr.hrc:461
+#: sc/inc/globstr.hrc:462
msgctxt "STR_COND_THISMONTH"
msgid "this month"
msgstr ""
-#: sc/inc/globstr.hrc:462
+#: sc/inc/globstr.hrc:463
msgctxt "STR_COND_LASTMONTH"
msgid "last month"
msgstr ""
-#: sc/inc/globstr.hrc:463
+#: sc/inc/globstr.hrc:464
msgctxt "STR_COND_NEXTMONTH"
msgid "next month"
msgstr ""
-#: sc/inc/globstr.hrc:464
+#: sc/inc/globstr.hrc:465
msgctxt "STR_COND_THISYEAR"
msgid "this year"
msgstr ""
-#: sc/inc/globstr.hrc:465
+#: sc/inc/globstr.hrc:466
msgctxt "STR_COND_LASTYEAR"
msgid "last year"
msgstr ""
-#: sc/inc/globstr.hrc:466
+#: sc/inc/globstr.hrc:467
msgctxt "STR_COND_NEXTYEAR"
msgid "next year"
msgstr ""
-#: sc/inc/globstr.hrc:467
+#: sc/inc/globstr.hrc:468
msgctxt "STR_COND_AND"
msgid "and"
msgstr "en"
-#: sc/inc/globstr.hrc:468
+#: sc/inc/globstr.hrc:469
msgctxt "STR_ERR_CONDFORMAT_PROTECTED"
msgid "Conditional Formats can not be created, deleted or changed in protected sheets."
msgstr ""
-#: sc/inc/globstr.hrc:469
+#: sc/inc/globstr.hrc:470
msgctxt "STR_EDIT_EXISTING_COND_FORMATS"
msgid ""
"The selected cell already contains conditional formatting. You can either edit the existing conditional format or you define a new overlapping conditional format.\n"
@@ -2346,7 +2351,7 @@ msgid ""
" Do you want to edit the existing conditional format?"
msgstr ""
-#: sc/inc/globstr.hrc:470
+#: sc/inc/globstr.hrc:471
msgctxt "STR_QUERY_FORMULA_RECALC_ONLOAD_ODS"
msgid ""
"This document was last saved by an application other than %PRODUCTNAME. Some formula cells may produce different results when recalculated.\n"
@@ -2354,7 +2359,7 @@ msgid ""
"Do you want to recalculate all formula cells in this document now?"
msgstr ""
-#: sc/inc/globstr.hrc:471
+#: sc/inc/globstr.hrc:472
msgctxt "STR_QUERY_FORMULA_RECALC_ONLOAD_XLS"
msgid ""
"This document was last saved by Excel. Some formula cells may produce different results when recalculated.\n"
@@ -2362,84 +2367,84 @@ msgid ""
"Do you want to recalculate all formula cells now?"
msgstr ""
-#: sc/inc/globstr.hrc:472
+#: sc/inc/globstr.hrc:473
msgctxt "STR_NO_INSERT_DELETE_OVER_PIVOT_TABLE"
msgid "You cannot insert or delete cells when the affected range intersects with pivot table."
msgstr ""
-#: sc/inc/globstr.hrc:473
+#: sc/inc/globstr.hrc:474
msgctxt "STR_DPFIELD_GROUP_BY_SECONDS"
msgid "Seconds"
msgstr "Sekondes"
-#: sc/inc/globstr.hrc:474
+#: sc/inc/globstr.hrc:475
msgctxt "STR_DPFIELD_GROUP_BY_MINUTES"
msgid "Minutes"
msgstr "Minute"
-#: sc/inc/globstr.hrc:475
+#: sc/inc/globstr.hrc:476
msgctxt "STR_DPFIELD_GROUP_BY_HOURS"
msgid "Hours"
msgstr "Ure"
-#: sc/inc/globstr.hrc:476
+#: sc/inc/globstr.hrc:477
msgctxt "STR_DPFIELD_GROUP_BY_DAYS"
msgid "Days"
msgstr "Dae"
-#: sc/inc/globstr.hrc:477
+#: sc/inc/globstr.hrc:478
msgctxt "STR_DPFIELD_GROUP_BY_MONTHS"
msgid "Months"
msgstr "Maande"
-#: sc/inc/globstr.hrc:478
+#: sc/inc/globstr.hrc:479
#, fuzzy
msgctxt "STR_DPFIELD_GROUP_BY_QUARTERS"
msgid "Quarters"
msgstr "Kwartaal"
-#: sc/inc/globstr.hrc:479
+#: sc/inc/globstr.hrc:480
#, fuzzy
msgctxt "STR_DPFIELD_GROUP_BY_YEARS"
msgid "Years"
msgstr "Jaar"
-#: sc/inc/globstr.hrc:480
+#: sc/inc/globstr.hrc:481
#, fuzzy
msgctxt "STR_INVALIDVAL"
msgid "Invalid target value."
msgstr "Ongeldige teikenwaarde."
-#: sc/inc/globstr.hrc:481
+#: sc/inc/globstr.hrc:482
#, fuzzy
msgctxt "STR_INVALIDVAR"
msgid "Undefined name for variable cell."
msgstr "Ongedefinieerde naam vir veranderlike sel."
-#: sc/inc/globstr.hrc:482
+#: sc/inc/globstr.hrc:483
#, fuzzy
msgctxt "STR_INVALIDFORM"
msgid "Undefined name as formula cell."
msgstr "Ongedefinieerde naam as formulesel."
-#: sc/inc/globstr.hrc:483
+#: sc/inc/globstr.hrc:484
msgctxt "STR_NOFORMULA"
msgid "Formula cell must contain a formula."
msgstr ""
-#: sc/inc/globstr.hrc:484
+#: sc/inc/globstr.hrc:485
#, fuzzy
msgctxt "STR_INVALIDINPUT"
msgid "Invalid input."
msgstr "Ongeldige toevoer."
-#: sc/inc/globstr.hrc:485
+#: sc/inc/globstr.hrc:486
#, fuzzy
msgctxt "STR_INVALIDCONDITION"
msgid "Invalid condition."
msgstr "Ongeldige voorwaarde."
-#: sc/inc/globstr.hrc:486
+#: sc/inc/globstr.hrc:487
msgctxt "STR_QUERYREMOVE"
msgid ""
"Should the entry\n"
@@ -2447,137 +2452,137 @@ msgid ""
"be deleted?"
msgstr ""
-#: sc/inc/globstr.hrc:487
+#: sc/inc/globstr.hrc:488
msgctxt "STR_COPYLIST"
msgid "Copy List"
msgstr ""
-#: sc/inc/globstr.hrc:488
+#: sc/inc/globstr.hrc:489
msgctxt "STR_COPYFROM"
msgid "List from"
msgstr ""
-#: sc/inc/globstr.hrc:489
+#: sc/inc/globstr.hrc:490
msgctxt "STR_COPYERR"
msgid "Cells without text have been ignored."
msgstr ""
-#: sc/inc/globstr.hrc:490
+#: sc/inc/globstr.hrc:491
#, c-format
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%s-click to follow hyperlink:"
msgstr ""
-#: sc/inc/globstr.hrc:491
+#: sc/inc/globstr.hrc:492
msgctxt "STR_CLICKHYPERLINK"
msgid "click to open hyperlink:"
msgstr ""
-#: sc/inc/globstr.hrc:492
+#: sc/inc/globstr.hrc:493
msgctxt "STR_PRINT_PREVIEW_NODATA"
msgid "No Data"
msgstr ""
-#: sc/inc/globstr.hrc:493
+#: sc/inc/globstr.hrc:494
msgctxt "STR_PRINT_PREVIEW_EMPTY_RANGE"
msgid "Print Range Empty"
msgstr ""
-#: sc/inc/globstr.hrc:494
+#: sc/inc/globstr.hrc:495
#, fuzzy
msgctxt "STR_UNDO_CONDFORMAT"
msgid "Conditional Format"
msgstr "Voorwaardelike formatering"
-#: sc/inc/globstr.hrc:495
+#: sc/inc/globstr.hrc:496
#, fuzzy
msgctxt "STR_UNDO_CONDFORMAT_LIST"
msgid "Conditional Formats"
msgstr "Voorwaardelike formatering"
-#: sc/inc/globstr.hrc:496
+#: sc/inc/globstr.hrc:497
msgctxt "STR_UNDO_FORMULA_TO_VALUE"
msgid "Convert Formula To Value"
msgstr ""
-#: sc/inc/globstr.hrc:497
+#: sc/inc/globstr.hrc:498
msgctxt "STR_UNQUOTED_STRING"
msgid "Strings without quotes are interpreted as column/row labels."
msgstr ""
-#: sc/inc/globstr.hrc:498
+#: sc/inc/globstr.hrc:499
msgctxt "STR_ENTER_VALUE"
msgid "Enter a value!"
msgstr ""
-#: sc/inc/globstr.hrc:499
+#: sc/inc/globstr.hrc:500
msgctxt "STR_TABLE_COUNT"
msgid "Sheet %1 of %2"
msgstr ""
-#: sc/inc/globstr.hrc:500
+#: sc/inc/globstr.hrc:501
msgctxt "STR_FUNCTIONS_FOUND"
msgid "%1 and %2 more"
msgstr ""
-#: sc/inc/globstr.hrc:501
+#: sc/inc/globstr.hrc:502
msgctxt "STR_GENERAL"
msgid "General"
msgstr "Algemeen"
-#: sc/inc/globstr.hrc:502
+#: sc/inc/globstr.hrc:503
msgctxt "STR_NUMBER"
msgid "Number"
msgstr "Nommer"
-#: sc/inc/globstr.hrc:503
+#: sc/inc/globstr.hrc:504
#, fuzzy
msgctxt "STR_PERCENT"
msgid "Percent"
msgstr "Persent"
-#: sc/inc/globstr.hrc:504
+#: sc/inc/globstr.hrc:505
msgctxt "STR_CURRENCY"
msgid "Currency"
msgstr "Valuta"
-#: sc/inc/globstr.hrc:505
+#: sc/inc/globstr.hrc:506
msgctxt "STR_DATE"
msgid "Date"
msgstr "Datum"
-#: sc/inc/globstr.hrc:506
+#: sc/inc/globstr.hrc:507
msgctxt "STR_TIME"
msgid "Time"
msgstr "Tyd"
-#: sc/inc/globstr.hrc:507
+#: sc/inc/globstr.hrc:508
msgctxt "STR_SCIENTIFIC"
msgid "Scientific"
msgstr ""
-#: sc/inc/globstr.hrc:508
+#: sc/inc/globstr.hrc:509
#, fuzzy
msgctxt "STR_FRACTION"
msgid "Fraction"
msgstr "Funksie"
-#: sc/inc/globstr.hrc:509
+#: sc/inc/globstr.hrc:510
msgctxt "STR_BOOLEAN_VALUE"
msgid "Boolean Value"
msgstr ""
-#: sc/inc/globstr.hrc:510
+#: sc/inc/globstr.hrc:511
msgctxt "STR_TEXT"
msgid "Text"
msgstr "Teks"
-#: sc/inc/globstr.hrc:511
+#: sc/inc/globstr.hrc:512
msgctxt "STR_QUERY_PIVOTTABLE_DELTAB"
msgid "The selected sheet(s) contain source data of related pivot tables that will be lost. Are you sure you want to delete the selected sheet(s)?"
msgstr ""
-#: sc/inc/globstr.hrc:512
+#: sc/inc/globstr.hrc:513
msgctxt "STR_ERR_NAME_INVALID_CELL_REF"
msgid "Invalid name. Reference to a cell, or a range of cells not allowed."
msgstr ""
@@ -10782,8 +10787,8 @@ msgstr "Modus"
#: sc/inc/scfuncs.hrc:3010
msgctxt "SC_OPCODE_T_TEST"
-msgid "Mode specifies the number of distribution tails to return. 1= one-tailed, 2 = two-tailed distribution"
-msgstr "Modus spesifiseer die getal verspreidingsterte om te lewer. 1 = eenstert-, 2 = tweestertverspreiding"
+msgid "Mode specifies the number of distribution tails to return. 1 = one-tailed, 2 = two-tailed distribution"
+msgstr ""
#: sc/inc/scfuncs.hrc:3011
msgctxt "SC_OPCODE_T_TEST"
@@ -10829,8 +10834,8 @@ msgstr "Modus"
#: sc/inc/scfuncs.hrc:3024
msgctxt "SC_OPCODE_T_TEST_MS"
-msgid "Mode specifies the number of distribution tails to return. 1= one-tailed, 2 = two-tailed distribution"
-msgstr "Modus spesifiseer die getal verspreidingsterte om te lewer. 1 = eenstert-, 2 = tweestertverspreiding"
+msgid "Mode specifies the number of distribution tails to return. 1 = one-tailed, 2 = two-tailed distribution"
+msgstr ""
#: sc/inc/scfuncs.hrc:3025
msgctxt "SC_OPCODE_T_TEST_MS"
@@ -18657,23 +18662,23 @@ msgctxt "mergecellsdialog|MergeCellsDialog"
msgid "Merge Cells"
msgstr "Voeg selle saam"
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:81
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:84
msgctxt "mergecellsdialog|label"
msgid "Some cells are not empty."
msgstr ""
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:96
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:99
#, fuzzy
msgctxt "mergecellsdialog|move-cells-radio"
msgid "Move the contents of the hidden cells into the first cell"
msgstr "Moet die inhoud van versteekde selle na die eerste sel geskuif word?"
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:112
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:115
msgctxt "mergecellsdialog|empty-cells-radio"
msgid "Empty the contents of the hidden cells"
msgstr ""
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:128
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:131
msgctxt "mergecellsdialog|keep-content-radio"
msgid "Keep the contents of the hidden cells"
msgstr ""
diff --git a/source/af/sd/messages.po b/source/af/sd/messages.po
index c6c1015f9c3..58788877aea 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+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"
@@ -13,174 +13,174 @@ msgstr ""
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-#: sd/inc/DocumentRenderer.hrc:29
+#: sd/inc/DocumentRenderer.hrc:27
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Slides"
msgstr "Skyfies"
-#: sd/inc/DocumentRenderer.hrc:30
+#: sd/inc/DocumentRenderer.hrc:28
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Handouts"
msgstr "Uitdeelstukke"
-#: sd/inc/DocumentRenderer.hrc:31
+#: sd/inc/DocumentRenderer.hrc:29
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Notes"
msgstr "Notas"
-#: sd/inc/DocumentRenderer.hrc:32
+#: sd/inc/DocumentRenderer.hrc:30
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Outline"
msgstr "Skema"
-#: sd/inc/DocumentRenderer.hrc:37
+#: sd/inc/DocumentRenderer.hrc:35
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "According to layout"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:38
+#: sd/inc/DocumentRenderer.hrc:36
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "1"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:39
+#: sd/inc/DocumentRenderer.hrc:37
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "2"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:40
+#: sd/inc/DocumentRenderer.hrc:38
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "3"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:41
+#: sd/inc/DocumentRenderer.hrc:39
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "4"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:42
+#: sd/inc/DocumentRenderer.hrc:40
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "6"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:43
+#: sd/inc/DocumentRenderer.hrc:41
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "9"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:48
+#: sd/inc/DocumentRenderer.hrc:46
msgctxt "STR_IMPRESS_PRINT_UI_ORDER_CHOICES"
msgid "Left to right, then down"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:49
+#: sd/inc/DocumentRenderer.hrc:47
msgctxt "STR_IMPRESS_PRINT_UI_ORDER_CHOICES"
msgid "Top to bottom, then right"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:54
+#: sd/inc/DocumentRenderer.hrc:52
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Original colors"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:55
+#: sd/inc/DocumentRenderer.hrc:53
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Grayscale"
msgstr "Grysskaal"
-#: sd/inc/DocumentRenderer.hrc:56
+#: sd/inc/DocumentRenderer.hrc:54
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Black & white"
msgstr "Swart-en-~wit"
-#: sd/inc/DocumentRenderer.hrc:61
+#: sd/inc/DocumentRenderer.hrc:59
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Original size"
msgstr "Oorspronklike grootte"
-#: sd/inc/DocumentRenderer.hrc:62
+#: sd/inc/DocumentRenderer.hrc:60
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Fit to printable page"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:63
+#: sd/inc/DocumentRenderer.hrc:61
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Distribute on multiple sheets of paper"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:64
+#: sd/inc/DocumentRenderer.hrc:62
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Tile sheet of paper with repeated slides"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:69
+#: sd/inc/DocumentRenderer.hrc:67
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Original size"
msgstr "Oorspronklike grootte"
-#: sd/inc/DocumentRenderer.hrc:70
+#: sd/inc/DocumentRenderer.hrc:68
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Fit to printable page"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:71
+#: sd/inc/DocumentRenderer.hrc:69
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Distribute on multiple sheets of paper"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:72
+#: sd/inc/DocumentRenderer.hrc:70
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Tile sheet of paper with repeated pages"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:77
+#: sd/inc/DocumentRenderer.hrc:75
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "All pages"
msgstr "Alle bladsye"
-#: sd/inc/DocumentRenderer.hrc:78
+#: sd/inc/DocumentRenderer.hrc:76
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "Front sides / right pages"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:79
+#: sd/inc/DocumentRenderer.hrc:77
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "Back sides / left pages"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:84
+#: sd/inc/DocumentRenderer.hrc:82
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~All slides"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:85
+#: sd/inc/DocumentRenderer.hrc:83
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~Slides"
msgstr "Skyfies"
-#: sd/inc/DocumentRenderer.hrc:86
+#: sd/inc/DocumentRenderer.hrc:84
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Se~lection"
msgstr "Seleksie"
-#: sd/inc/DocumentRenderer.hrc:91
+#: sd/inc/DocumentRenderer.hrc:89
#, fuzzy
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~All pages"
msgstr "Alle bladsye"
-#: sd/inc/DocumentRenderer.hrc:92
+#: sd/inc/DocumentRenderer.hrc:90
#, fuzzy
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Pa~ges"
msgstr "Bladsye"
-#: sd/inc/DocumentRenderer.hrc:93
+#: sd/inc/DocumentRenderer.hrc:91
#, fuzzy
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Se~lection"
diff --git a/source/af/svx/messages.po b/source/af/svx/messages.po
index 037c994f43c..b58579723cb 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: 2018-05-16 16:53+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+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"
@@ -5527,7 +5527,7 @@ msgstr ""
#: svx/uiconfig/ui/safemodedialog.ui:432
msgctxt "safemodedialog|btn_create_zip"
-msgid "Create Zip Archive from User Profile"
+msgid "Archive User Profile"
msgstr ""
#: svx/uiconfig/ui/safemodedialog.ui:445
@@ -9183,9 +9183,9 @@ msgid "Red"
msgstr "Rooi"
#: include/svx/strings.hrc:565
-msgctxt "RID_SVXSTR_COLOR_VIOLET"
-msgid "Violet"
-msgstr "Violet"
+msgctxt "RID_SVXSTR_COLOR_MAGENTA"
+msgid "Magenta"
+msgstr "Magenta"
#: include/svx/strings.hrc:566
msgctxt "RID_SVXSTR_COLOR_PURPLE"
@@ -9250,8 +9250,8 @@ msgid "Light Red"
msgstr "Ligrooi"
#: include/svx/strings.hrc:579
-msgctxt "RID_SVXSTR_COLOR_LIGHTVIOLET"
-msgid "Light Violet"
+msgctxt "RID_SVXSTR_COLOR_LIGHTMAGENTA"
+msgid "Light Magenta"
msgstr ""
#: include/svx/strings.hrc:580
@@ -9317,8 +9317,8 @@ msgid "Dark Red"
msgstr "Donkerrooi"
#: include/svx/strings.hrc:593
-msgctxt "RID_SVXSTR_COLOR_DARKVIOLET1"
-msgid "Dark Violet"
+msgctxt "RID_SVXSTR_COLOR_DARKMAGENTA"
+msgid "Dark Magenta"
msgstr ""
#: include/svx/strings.hrc:594
@@ -9353,55 +9353,55 @@ msgstr ""
#. Elements of the Tonal color palette
#: include/svx/strings.hrc:601
+msgctxt "RID_SVXSTR_COLOR_VIOLET"
+msgid "Violet"
+msgstr "Violet"
+
+#: include/svx/strings.hrc:602
msgctxt "RID_SVXSTR_COLOR_VIOLET_OUG"
msgid "Violet (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:602
+#: include/svx/strings.hrc:603
msgctxt "RID_SVXSTR_COLOR_BLUE_OUG"
msgid "Blue (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:603
+#: include/svx/strings.hrc:604
msgctxt "RID_SVXSTR_COLOR_AZURE_OUG"
msgid "Azure (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:604
+#: include/svx/strings.hrc:605
msgctxt "RID_SVXSTR_COLOR_SPRINGGREEN_OUG"
msgid "Spring Green (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:605
+#: include/svx/strings.hrc:606
msgctxt "RID_SVXSTR_COLOR_GREEN_OUG"
msgid "Green (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:606
+#: include/svx/strings.hrc:607
msgctxt "RID_SVXSTR_COLOR_CHARTREUSEGREEN_OUG"
msgid "Chartreuse Green (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:607
+#: include/svx/strings.hrc:608
msgctxt "RID_SVXSTR_COLOR_ORANGE_OUG"
msgid "Orange (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:608
+#: include/svx/strings.hrc:609
msgctxt "RID_SVXSTR_COLOR_RED_OUG"
msgid "Red (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:609
+#: include/svx/strings.hrc:610
msgctxt "RID_SVXSTR_COLOR_ROSE_OUG"
msgid "Rose (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:610
-msgctxt "RID_SVXSTR_COLOR_MAGENTA"
-msgid "Magenta"
-msgstr "Magenta"
-
#: include/svx/strings.hrc:611
msgctxt "RID_SVXSTR_COLOR_AZURE"
msgid "Azure"
@@ -12599,13 +12599,13 @@ msgstr "Regswysende pyltjie-koeëltjies"
#: include/svx/strings.hrc:1273
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_6"
-msgid "Check mark bullets"
-msgstr "Kruisie-koeëltjies"
+msgid "Cross mark bullets"
+msgstr ""
#: include/svx/strings.hrc:1274
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_7"
-msgid "Tick mark bullets"
-msgstr "Regmerkie-koeëltjies"
+msgid "Check mark bullets"
+msgstr ""
#: include/svx/strings.hrc:1275
#, fuzzy
diff --git a/source/af/sw/messages.po b/source/af/sw/messages.po
index 179c65d1b9c..51ff2c865fc 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: 2018-05-22 13:17+0200\n"
+"POT-Creation-Date: 2018-06-12 14:41+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"
@@ -1231,13 +1231,13 @@ msgstr "Aanhaling"
#: sw/inc/strings.hrc:172
msgctxt "STR_POOLCOLL_TOX_ILLUSH"
-msgid "Illustration Index Heading"
-msgstr "Illustrasie-indeks-opskrif"
+msgid "Figure Index Heading"
+msgstr ""
#: sw/inc/strings.hrc:173
msgctxt "STR_POOLCOLL_TOX_ILLUS1"
-msgid "Illustration Index 1"
-msgstr "Illustrasie-indeks 1"
+msgid "Figure Index 1"
+msgstr ""
#: sw/inc/strings.hrc:174
#, fuzzy
@@ -3720,10 +3720,9 @@ msgid "Table of Objects"
msgstr ""
#: sw/inc/strings.hrc:672
-#, fuzzy
msgctxt "STR_TOX_ILL"
-msgid "Illustration Index"
-msgstr "Illustrasie-indeks 1"
+msgid "Table of Figures"
+msgstr ""
#: sw/inc/strings.hrc:673
#, c-format
@@ -9714,81 +9713,81 @@ msgctxt "footnotepage|label5"
msgid "Continuation Notice"
msgstr "Voortsettingskennisgewing"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:49
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:55
#, fuzzy
msgctxt "footnotesendnotestabpage|ftnntnum"
msgid "_Restart numbering"
msgstr "Herbegin nommering"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:91
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:93
#, fuzzy
msgctxt "footnotesendnotestabpage|ftnoffset_label"
msgid "_Start at:"
msgstr "Begin by"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:112
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:111
msgctxt "footnotesendnotestabpage|ftnntnumfmt"
msgid "Custom _format"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:155
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:150
#, fuzzy
msgctxt "footnotesendnotestabpage|ftnsuffix_label"
msgid "Aft_er:"
msgstr "Na"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:199
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:188
#, fuzzy
msgctxt "footnotesendnotestabpage|ftnprefix_label"
msgid "Be_fore:"
msgstr "Voor"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:228
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:212
msgctxt "footnotesendnotestabpage|ftnntattextend"
msgid "Collec_t at end of text"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:252
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:234
#, fuzzy
msgctxt "footnotesendnotestabpage|label1"
msgid "Footnotes"
msgstr "Voetnoot"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:289
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:271
msgctxt "footnotesendnotestabpage|endntattextend"
msgid "C_ollect at end of section"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:315
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:295
#, fuzzy
msgctxt "footnotesendnotestabpage|endntnum"
msgid "_Restart numbering"
msgstr "Herbegin nommering"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:357
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:333
#, fuzzy
msgctxt "footnotesendnotestabpage|endoffset_label"
msgid "_Start at:"
msgstr "Begin by"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:378
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:351
msgctxt "footnotesendnotestabpage|endntnumfmt"
msgid "_Custom format"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:421
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:390
#, fuzzy
msgctxt "footnotesendnotestabpage|endsuffix_label"
msgid "Aft_er:"
msgstr "Na"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:465
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:428
#, fuzzy
msgctxt "footnotesendnotestabpage|endprefix_label"
msgid "Be_fore:"
msgstr "Voor"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:500
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:458
#, fuzzy
msgctxt "footnotesendnotestabpage|label2"
msgid "Endnotes"
@@ -9820,29 +9819,29 @@ msgctxt "formatsectiondialog|notes"
msgid "Footnotes/Endnotes"
msgstr "Voetnoot/eind~noot..."
-#: sw/uiconfig/swriter/ui/formattablepage.ui:63
+#: sw/uiconfig/swriter/ui/formattablepage.ui:77
#, fuzzy
msgctxt "formattablepage|nameft"
msgid "_Name"
msgstr "Naam"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:79
+#: sw/uiconfig/swriter/ui/formattablepage.ui:91
#, fuzzy
msgctxt "formattablepage|widthft"
msgid "W_idth"
msgstr "Wydte"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:110
+#: sw/uiconfig/swriter/ui/formattablepage.ui:120
msgctxt "formattablepage|relwidth"
msgid "Relati_ve"
msgstr ""
-#: sw/uiconfig/swriter/ui/formattablepage.ui:155
+#: sw/uiconfig/swriter/ui/formattablepage.ui:160
msgctxt "formattablepage|label45"
msgid "Properties"
msgstr "Eienskappe"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:194
+#: sw/uiconfig/swriter/ui/formattablepage.ui:195
#, fuzzy
msgctxt "formattablepage|leftft"
msgid "Lef_t"
@@ -9854,71 +9853,71 @@ msgctxt "formattablepage|rightft"
msgid "Ri_ght"
msgstr "Regs"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:228
+#: sw/uiconfig/swriter/ui/formattablepage.ui:226
#, fuzzy
msgctxt "formattablepage|aboveft"
msgid "_Above"
msgstr "Bo"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:245
+#: sw/uiconfig/swriter/ui/formattablepage.ui:241
#, fuzzy
msgctxt "formattablepage|belowft"
msgid "_Below"
msgstr "Onder"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:320
+#: sw/uiconfig/swriter/ui/formattablepage.ui:311
msgctxt "formattablepage|label46"
msgid "Spacing"
msgstr "Spasiëring"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:362
+#: sw/uiconfig/swriter/ui/formattablepage.ui:349
#, fuzzy
msgctxt "formattablepage|full"
msgid "A_utomatic"
msgstr "Outomaties"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:380
+#: sw/uiconfig/swriter/ui/formattablepage.ui:365
#, fuzzy
msgctxt "formattablepage|left"
msgid "_Left"
msgstr "Links"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:398
+#: sw/uiconfig/swriter/ui/formattablepage.ui:381
#, fuzzy
msgctxt "formattablepage|fromleft"
msgid "_From left"
msgstr "Van links"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:416
+#: sw/uiconfig/swriter/ui/formattablepage.ui:397
#, fuzzy
msgctxt "formattablepage|right"
msgid "R_ight"
msgstr "Regs"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:435
+#: sw/uiconfig/swriter/ui/formattablepage.ui:413
#, fuzzy
msgctxt "formattablepage|center"
msgid "_Center"
msgstr "Sentreer"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:453
+#: sw/uiconfig/swriter/ui/formattablepage.ui:429
#, fuzzy
msgctxt "formattablepage|free"
msgid "_Manual"
msgstr "Handmatig"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:478
+#: sw/uiconfig/swriter/ui/formattablepage.ui:452
msgctxt "formattablepage|label43"
msgid "Alignment"
msgstr "Belyning"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:522
+#: sw/uiconfig/swriter/ui/formattablepage.ui:491
#, fuzzy
msgctxt "formattablepage|label53"
msgid "Text _direction"
msgstr "Teksrigting"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:553
+#: sw/uiconfig/swriter/ui/formattablepage.ui:519
#, fuzzy
msgctxt "formattablepage|label44"
msgid "Properties "
@@ -10304,24 +10303,29 @@ msgctxt "headerfootermenu|insert_pagenumber"
msgid "Insert Page Number"
msgstr ""
-#: sw/uiconfig/swriter/ui/indentpage.ui:52
+#: sw/uiconfig/swriter/ui/headerfootermenu.ui:42
+msgctxt "headerfootermenu|insert_pagecount"
+msgid "Insert Page Count"
+msgstr ""
+
+#: sw/uiconfig/swriter/ui/indentpage.ui:57
#, fuzzy
msgctxt "indentpage|label1"
msgid "_Before section"
msgstr "Voor afdeling"
-#: sw/uiconfig/swriter/ui/indentpage.ui:67
+#: sw/uiconfig/swriter/ui/indentpage.ui:71
#, fuzzy
msgctxt "indentpage|label3"
msgid "_After section"
msgstr "Na afdeling"
-#: sw/uiconfig/swriter/ui/indentpage.ui:113
+#: sw/uiconfig/swriter/ui/indentpage.ui:115
msgctxt "indentpage|label2"
msgid "Indent"
msgstr "Inkeep"
-#: sw/uiconfig/swriter/ui/indentpage.ui:142
+#: sw/uiconfig/swriter/ui/indentpage.ui:155
msgctxt "indentpage|preview-atkobject"
msgid "Example"
msgstr "Voorbeeld"
@@ -14114,7 +14118,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:68
msgctxt "optcompatpage|format"
-msgid "MS Word-compatible trailing blanks"
+msgid "Word-compatible trailing blanks"
msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:69
@@ -14124,7 +14128,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:70
msgctxt "optcompatpage|format"
-msgid "A database field (e.g., MailMerge) with empty value hides its paragraph"
+msgid "Hide paragraphs of database fields (e.g., mail merge) with an empty value"
msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:71
@@ -17028,133 +17032,133 @@ msgctxt "tableproperties|background"
msgid "Background"
msgstr "Agtergrond"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:25
-msgctxt "tabletextflowpage|liststore1"
-msgid "Horizontal"
-msgstr "Horisontaal"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:29
-msgctxt "tabletextflowpage|liststore1"
-msgid "Vertical"
-msgstr "Vertikaal"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:33
-msgctxt "tabletextflowpage|liststore1"
-msgid "Use superordinate object settings"
-msgstr "Gebruik bogeskikte objekinstellings"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:47
-msgctxt "tabletextflowpage|liststore2"
-msgid "Top"
-msgstr "Bokant"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:51
-msgctxt "tabletextflowpage|liststore2"
-msgid "Centered"
-msgstr "Gesentreer"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:55
-msgctxt "tabletextflowpage|liststore2"
-msgid "Bottom"
-msgstr "Onderkant"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:97
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:53
#, fuzzy
msgctxt "tabletextflowpage|break"
msgid "_Break"
msgstr "~Breuk"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:112
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:68
#, fuzzy
msgctxt "tabletextflowpage|page"
msgid "_Page"
msgstr "Bladsy"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:132
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:87
#, fuzzy
msgctxt "tabletextflowpage|column"
msgid "Col_umn"
msgstr "Kolom"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:151
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:106
#, fuzzy
msgctxt "tabletextflowpage|before"
msgid "Be_fore"
msgstr "Voor"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:171
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:125
#, fuzzy
msgctxt "tabletextflowpage|after"
msgid "_After"
msgstr "Na"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:203
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:158
#, fuzzy
msgctxt "tabletextflowpage|pagestyle"
msgid "With Page St_yle"
msgstr "Redigeer bladsystyl"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:224
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:177
#, fuzzy
msgctxt "tabletextflowpage|pagenoft"
msgid "Page _number"
msgstr "Bladsynommer"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:257
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:213
#, fuzzy
msgctxt "tabletextflowpage|pagestylelb-atkobject"
msgid "With Page Style"
msgstr "Redigeer bladsystyl"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:274
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:230
msgctxt "tabletextflowpage|split"
msgid "Allow _table to split across pages and columns"
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:289
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:245
#, fuzzy
msgctxt "tabletextflowpage|splitrow"
msgid "Allow row to break a_cross pages and columns"
msgstr "Laat ry toe om oor bladsye en kolomme te breek"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:306
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:262
#, fuzzy
msgctxt "tabletextflowpage|keep"
msgid "_Keep with next paragraph"
msgstr "~Hou by volgende paragraaf"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:328
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:284
msgctxt "tabletextflowpage|label40"
msgid "Text _orientation"
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:361
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:298
+msgctxt "tabletextflowpage|liststore1"
+msgid "Horizontal"
+msgstr "Horisontaal"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:299
+msgctxt "tabletextflowpage|liststore1"
+msgid "Vertical"
+msgstr "Vertikaal"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:300
+msgctxt "tabletextflowpage|liststore1"
+msgid "Use superordinate object settings"
+msgstr "Gebruik bogeskikte objekinstellings"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:321
#, fuzzy
msgctxt "tabletextflowpage|headline"
msgid "R_epeat heading"
msgstr "Herhaal opskrif"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:383
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:343
msgctxt "tabletextflowpage|label38"
msgid "The first "
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:396
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:356
msgctxt "tabletextflowpage|label39"
msgid "rows"
msgstr "rye"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:434
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:395
msgctxt "tabletextflowpage|label35"
msgid "Text Flow"
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:467
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:428
msgctxt "tabletextflowpage|label41"
msgid "_Vertical alignment"
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:495
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:442
+msgctxt "tabletextflowpage|liststore2"
+msgid "Top"
+msgstr "Bokant"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:443
+msgctxt "tabletextflowpage|liststore2"
+msgid "Centered"
+msgstr "Gesentreer"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:444
+msgctxt "tabletextflowpage|liststore2"
+msgid "Bottom"
+msgstr "Onderkant"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:460
msgctxt "tabletextflowpage|label36"
msgid "Alignment"
msgstr "Belyning"
@@ -17975,10 +17979,9 @@ msgid "Alphabetical Index"
msgstr ""
#: sw/uiconfig/swriter/ui/tocindexpage.ui:58
-#, fuzzy
msgctxt "tocindexpage|liststore1"
-msgid "Illustration Index"
-msgstr "Illustrasie-indeks 1"
+msgid "Table of Figures"
+msgstr ""
#: sw/uiconfig/swriter/ui/tocindexpage.ui:62
msgctxt "tocindexpage|liststore1"
diff --git a/source/af/writerperfect/messages.po b/source/af/writerperfect/messages.po
index 22843eccd79..744421dd357 100644
--- a/source/af/writerperfect/messages.po
+++ b/source/af/writerperfect/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-16 16:54+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+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"
@@ -65,99 +65,99 @@ msgctxt "exportepub|generalft"
msgid "General"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:122
+#: writerperfect/uiconfig/ui/exportepub.ui:121
#, fuzzy
msgctxt "exportepub|versionft"
msgid "Version:"
msgstr "~Weergawe:"
-#: writerperfect/uiconfig/ui/exportepub.ui:139
+#: writerperfect/uiconfig/ui/exportepub.ui:138
msgctxt "exportepub|epub3"
msgid "EPUB 3.0"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:140
+#: writerperfect/uiconfig/ui/exportepub.ui:139
msgctxt "exportepub|epub2"
msgid "EPUB 2.0"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:175
+#: writerperfect/uiconfig/ui/exportepub.ui:174
msgctxt "exportepub|splitft"
msgid "Split method:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:192
+#: writerperfect/uiconfig/ui/exportepub.ui:191
#, fuzzy
msgctxt "exportepub|splitpage"
msgid "Page break"
msgstr "Bladsybreuk"
-#: writerperfect/uiconfig/ui/exportepub.ui:193
+#: writerperfect/uiconfig/ui/exportepub.ui:192
msgctxt "exportepub|splitheading"
msgid "Heading"
msgstr "Opskrif"
-#: writerperfect/uiconfig/ui/exportepub.ui:228
+#: writerperfect/uiconfig/ui/exportepub.ui:227
msgctxt "exportepub|layoutft"
msgid "Layout method:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:245
+#: writerperfect/uiconfig/ui/exportepub.ui:244
msgctxt "exportepub|layoutreflowable"
msgid "Reflowable"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:246
+#: writerperfect/uiconfig/ui/exportepub.ui:245
msgctxt "exportepub|layoutfixed"
msgid "Fixed"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:281
+#: writerperfect/uiconfig/ui/exportepub.ui:280
msgctxt "exportepub|coverimageft"
msgid "Custom cover image:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:311
+#: writerperfect/uiconfig/ui/exportepub.ui:310
msgctxt "exportepub|coverbutton"
msgid "Browse..."
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:355
+#: writerperfect/uiconfig/ui/exportepub.ui:354
msgctxt "exportepub|mediadirft"
msgid "Custom media directory:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:385
+#: writerperfect/uiconfig/ui/exportepub.ui:384
msgctxt "exportepub|mediabutton"
msgid "Browse..."
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:429
+#: writerperfect/uiconfig/ui/exportepub.ui:428
msgctxt "exportepub|metadataft"
msgid "Metadata"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:470
+#: writerperfect/uiconfig/ui/exportepub.ui:468
msgctxt "exportepub|identifierft"
msgid "Identifier:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:485
+#: writerperfect/uiconfig/ui/exportepub.ui:483
msgctxt "exportepub|titleft"
msgid "Title:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:511
+#: writerperfect/uiconfig/ui/exportepub.ui:509
msgctxt "exportepub|authorft"
msgid "Author:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:537
+#: writerperfect/uiconfig/ui/exportepub.ui:535
msgctxt "exportepub|languageft"
msgid "Language:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:563
+#: writerperfect/uiconfig/ui/exportepub.ui:561
msgctxt "exportepub|dateft"
msgid "Date:"
msgstr ""
diff --git a/source/am/cui/messages.po b/source/am/cui/messages.po
index 47881fab081..479f20c4549 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2018-05-21 18:21+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -9872,97 +9872,97 @@ msgctxt "positionsizedialog|PositionAndSizeDialog"
msgid "Position and Size"
msgstr "ቦታ እና መጠን"
-#: cui/uiconfig/ui/positionsizedialog.ui:107
+#: cui/uiconfig/ui/positionsizedialog.ui:136
msgctxt "positionsizedialog|RID_SVXPAGE_POSITION_SIZE"
msgid "Position and Size"
msgstr "ቦታ እና መጠን"
-#: cui/uiconfig/ui/positionsizedialog.ui:129
+#: cui/uiconfig/ui/positionsizedialog.ui:182
msgctxt "positionsizedialog|RID_SVXPAGE_SWPOSSIZE"
msgid "Position and Size"
msgstr "ቦታ እና መጠን"
-#: cui/uiconfig/ui/positionsizedialog.ui:152
+#: cui/uiconfig/ui/positionsizedialog.ui:229
msgctxt "positionsizedialog|RID_SVXPAGE_ANGLE"
msgid "Rotation"
msgstr "ማዞሪያ"
-#: cui/uiconfig/ui/positionsizedialog.ui:175
+#: cui/uiconfig/ui/positionsizedialog.ui:276
msgctxt "positionsizedialog|RID_SVXPAGE_SLANT"
msgid "Slant & Corner Radius"
msgstr "ማዘንበያ & የ ጠርዝ Radius"
-#: cui/uiconfig/ui/possizetabpage.ui:40
+#: cui/uiconfig/ui/possizetabpage.ui:61
msgctxt "possizetabpage|FT_POS_X"
msgid "Position _X:"
msgstr "ቦታ የ _X:"
-#: cui/uiconfig/ui/possizetabpage.ui:56
+#: cui/uiconfig/ui/possizetabpage.ui:75
msgctxt "possizetabpage|FT_POS_Y"
msgid "Position _Y:"
msgstr "ቦታ የ _Y:"
-#: cui/uiconfig/ui/possizetabpage.ui:110
+#: cui/uiconfig/ui/possizetabpage.ui:128
msgctxt "possizetabpage|FT_POSREFERENCE"
msgid "_Base point:"
msgstr "_መሰረታዊ ነጥብ:"
-#: cui/uiconfig/ui/possizetabpage.ui:148
+#: cui/uiconfig/ui/possizetabpage.ui:182
msgctxt "possizetabpage|label1"
msgid "Position"
msgstr "ቦታ"
-#: cui/uiconfig/ui/possizetabpage.ui:190
+#: cui/uiconfig/ui/possizetabpage.ui:224
msgctxt "possizetabpage|FT_WIDTH"
msgid "Wi_dth:"
msgstr "ስፋ_ት:"
-#: cui/uiconfig/ui/possizetabpage.ui:206
+#: cui/uiconfig/ui/possizetabpage.ui:238
msgctxt "possizetabpage|FT_HEIGHT"
msgid "H_eight:"
msgstr "እ_ርዝመት:"
-#: cui/uiconfig/ui/possizetabpage.ui:247
+#: cui/uiconfig/ui/possizetabpage.ui:276
msgctxt "possizetabpage|CBX_SCALE"
msgid "_Keep ratio"
msgstr "_መጠን መጠበቂያ"
-#: cui/uiconfig/ui/possizetabpage.ui:279
+#: cui/uiconfig/ui/possizetabpage.ui:307
msgctxt "possizetabpage|FT_SIZEREFERENCE"
msgid "Base _point:"
msgstr "መሰረታዊ _ነጥብ:"
-#: cui/uiconfig/ui/possizetabpage.ui:317
+#: cui/uiconfig/ui/possizetabpage.ui:361
msgctxt "possizetabpage|label2"
msgid "Size"
msgstr "መጠን"
-#: cui/uiconfig/ui/possizetabpage.ui:356
+#: cui/uiconfig/ui/possizetabpage.ui:401
msgctxt "possizetabpage|TSB_POSPROTECT"
msgid "Positio_n"
msgstr "ቦ_ታ"
-#: cui/uiconfig/ui/possizetabpage.ui:373
+#: cui/uiconfig/ui/possizetabpage.ui:418
msgctxt "possizetabpage|TSB_SIZEPROTECT"
msgid "_Size"
msgstr "_መጠን"
-#: cui/uiconfig/ui/possizetabpage.ui:397
+#: cui/uiconfig/ui/possizetabpage.ui:441
msgctxt "possizetabpage|label3"
msgid "Protect"
msgstr "መጠበቂያ"
-#: cui/uiconfig/ui/possizetabpage.ui:430
+#: cui/uiconfig/ui/possizetabpage.ui:475
msgctxt "possizetabpage|TSB_AUTOGROW_WIDTH"
msgid "_Fit width to text"
msgstr "ጽሁፉ በ ስፋቱ _ልክ"
-#: cui/uiconfig/ui/possizetabpage.ui:447
+#: cui/uiconfig/ui/possizetabpage.ui:492
msgctxt "possizetabpage|TSB_AUTOGROW_HEIGHT"
msgid "Fit _height to text"
msgstr "ጽሁፉ በ _እርዝመቱ ልክ"
-#: cui/uiconfig/ui/possizetabpage.ui:471
+#: cui/uiconfig/ui/possizetabpage.ui:515
msgctxt "possizetabpage|label4"
msgid "Adapt"
msgstr "ማስማሚያ"
@@ -10162,47 +10162,47 @@ msgctxt "recordnumberdialog|label2"
msgid "go to record"
msgstr "ወደ መዝገቡ መሄጃ"
-#: cui/uiconfig/ui/rotationtabpage.ui:52
+#: cui/uiconfig/ui/rotationtabpage.ui:56
msgctxt "rotationtabpage|FT_POS_X"
msgid "Position _X:"
msgstr "ቦታ የ _X:"
-#: cui/uiconfig/ui/rotationtabpage.ui:66
+#: cui/uiconfig/ui/rotationtabpage.ui:70
msgctxt "rotationtabpage|FT_POS_Y"
msgid "Position _Y:"
msgstr "ቦታ የ _Y:"
-#: cui/uiconfig/ui/rotationtabpage.ui:116
+#: cui/uiconfig/ui/rotationtabpage.ui:123
msgctxt "rotationtabpage|FT_POSPRESETS"
msgid "_Default settings:"
msgstr "_ነባር ማሰናጃዎች:"
-#: cui/uiconfig/ui/rotationtabpage.ui:130
+#: cui/uiconfig/ui/rotationtabpage.ui:151
msgctxt "rotationtabpage|CTL_RECT|tooltip_text"
msgid "Rotation point"
msgstr "ማዞሪያ ነጥብ"
-#: cui/uiconfig/ui/rotationtabpage.ui:155
+#: cui/uiconfig/ui/rotationtabpage.ui:178
msgctxt "rotationtabpage|label1"
msgid "Pivot Point"
msgstr "የ ፒቮት ነጥብ"
-#: cui/uiconfig/ui/rotationtabpage.ui:197
+#: cui/uiconfig/ui/rotationtabpage.ui:220
msgctxt "rotationtabpage|FT_ANGLE"
msgid "_Angle:"
msgstr "_አንግል:"
-#: cui/uiconfig/ui/rotationtabpage.ui:238
+#: cui/uiconfig/ui/rotationtabpage.ui:263
msgctxt "rotationtabpage|FT_ANGLEPRESETS"
msgid "Default _settings:"
msgstr "ነባር _ማሰናጃዎች:"
-#: cui/uiconfig/ui/rotationtabpage.ui:252
+#: cui/uiconfig/ui/rotationtabpage.ui:287
msgctxt "rotationtabpage|CTL_ANGLE|tooltip_text"
msgid "Rotation Angle"
msgstr "ማዞሪያ አንግል"
-#: cui/uiconfig/ui/rotationtabpage.ui:277
+#: cui/uiconfig/ui/rotationtabpage.ui:314
msgctxt "rotationtabpage|label2"
msgid "Rotation Angle"
msgstr "ማዞሪያ አንግል"
@@ -10582,52 +10582,52 @@ msgctxt "similaritysearchdialog|relaxbox"
msgid "_Combine"
msgstr "_መቀላቀያ"
-#: cui/uiconfig/ui/slantcornertabpage.ui:50
+#: cui/uiconfig/ui/slantcornertabpage.ui:70
msgctxt "slantcornertabpage|label5"
msgid "_X:"
msgstr "_X:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:88
+#: cui/uiconfig/ui/slantcornertabpage.ui:110
msgctxt "slantcornertabpage|label6"
msgid "_Y:"
msgstr "_Y:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:125
+#: cui/uiconfig/ui/slantcornertabpage.ui:149
msgctxt "slantcornertabpage|label3"
msgid "Control Point 1"
msgstr "መቆጣጠሪያ ነጥብ 1"
-#: cui/uiconfig/ui/slantcornertabpage.ui:159
+#: cui/uiconfig/ui/slantcornertabpage.ui:183
msgctxt "slantcornertabpage|FT_RADIUS"
msgid "_Radius:"
msgstr "_ራዲየስ:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:189
+#: cui/uiconfig/ui/slantcornertabpage.ui:214
msgctxt "slantcornertabpage|label1"
msgid "Corner Radius"
msgstr "የ ጠርዝ Radius"
-#: cui/uiconfig/ui/slantcornertabpage.ui:223
+#: cui/uiconfig/ui/slantcornertabpage.ui:248
msgctxt "slantcornertabpage|FT_ANGLE"
msgid "_Angle:"
msgstr "_አንግል:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:253
+#: cui/uiconfig/ui/slantcornertabpage.ui:279
msgctxt "slantcornertabpage|label2"
msgid "Slant"
msgstr "ማዘንበያ"
-#: cui/uiconfig/ui/slantcornertabpage.ui:294
+#: cui/uiconfig/ui/slantcornertabpage.ui:320
msgctxt "slantcornertabpage|label4"
msgid "_X:"
msgstr "_X:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:332
+#: cui/uiconfig/ui/slantcornertabpage.ui:360
msgctxt "slantcornertabpage|label7"
msgid "_Y:"
msgstr "_Y:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:369
+#: cui/uiconfig/ui/slantcornertabpage.ui:399
msgctxt "slantcornertabpage|label8"
msgid "Control Point 2"
msgstr "መቆጣጠሪያ ነጥብ 2"
@@ -10907,112 +10907,112 @@ msgctxt "storedwebconnectiondialog|change"
msgid "_Change Password..."
msgstr "የ መግቢያ ቃል _መቀየሪያ..."
-#: cui/uiconfig/ui/swpossizepage.ui:74
+#: cui/uiconfig/ui/swpossizepage.ui:85
msgctxt "swpossizepage|widthft"
msgid "_Width:"
msgstr "_ስፋት:"
-#: cui/uiconfig/ui/swpossizepage.ui:111
+#: cui/uiconfig/ui/swpossizepage.ui:123
msgctxt "swpossizepage|heightft"
msgid "H_eight:"
msgstr "እ_ርዝመት:"
-#: cui/uiconfig/ui/swpossizepage.ui:128
+#: cui/uiconfig/ui/swpossizepage.ui:141
msgctxt "swpossizepage|ratio"
msgid "_Keep ratio"
msgstr "መጠን _መጠበቂያ"
-#: cui/uiconfig/ui/swpossizepage.ui:149
+#: cui/uiconfig/ui/swpossizepage.ui:162
msgctxt "swpossizepage|label2"
msgid "Size"
msgstr "መጠን"
-#: cui/uiconfig/ui/swpossizepage.ui:205
+#: cui/uiconfig/ui/swpossizepage.ui:218
msgctxt "swpossizepage|topage"
msgid "To _page"
msgstr "ወደ _ገጽ"
-#: cui/uiconfig/ui/swpossizepage.ui:222
+#: cui/uiconfig/ui/swpossizepage.ui:234
msgctxt "swpossizepage|topara"
msgid "To paragrap_h"
msgstr "ወደ አንቀ_ጽ"
-#: cui/uiconfig/ui/swpossizepage.ui:238
+#: cui/uiconfig/ui/swpossizepage.ui:250
msgctxt "swpossizepage|tochar"
msgid "To cha_racter"
msgstr "ወደ ባህ_ሪ"
-#: cui/uiconfig/ui/swpossizepage.ui:254
+#: cui/uiconfig/ui/swpossizepage.ui:266
msgctxt "swpossizepage|aschar"
msgid "_As character"
msgstr "_እንደ ባህሪ"
-#: cui/uiconfig/ui/swpossizepage.ui:270
+#: cui/uiconfig/ui/swpossizepage.ui:282
msgctxt "swpossizepage|toframe"
msgid "To _frame"
msgstr "ወደ _ክፈፍ"
-#: cui/uiconfig/ui/swpossizepage.ui:292
+#: cui/uiconfig/ui/swpossizepage.ui:304
msgctxt "swpossizepage|label1"
msgid "Anchor"
msgstr "ማስቆሚያ"
-#: cui/uiconfig/ui/swpossizepage.ui:333
+#: cui/uiconfig/ui/swpossizepage.ui:344
msgctxt "swpossizepage|horiposft"
msgid "Hori_zontal:"
msgstr "በ አግ_ድም:"
-#: cui/uiconfig/ui/swpossizepage.ui:347
+#: cui/uiconfig/ui/swpossizepage.ui:358
msgctxt "swpossizepage|horibyft"
msgid "b_y:"
msgstr "በ_:"
-#: cui/uiconfig/ui/swpossizepage.ui:361
+#: cui/uiconfig/ui/swpossizepage.ui:372
msgctxt "swpossizepage|vertbyft"
msgid "_by:"
msgstr "_በ:"
-#: cui/uiconfig/ui/swpossizepage.ui:375
+#: cui/uiconfig/ui/swpossizepage.ui:386
msgctxt "swpossizepage|horitoft"
msgid "_to:"
msgstr "_ለ:"
-#: cui/uiconfig/ui/swpossizepage.ui:421
+#: cui/uiconfig/ui/swpossizepage.ui:433
msgctxt "swpossizepage|vertposft"
msgid "_Vertical:"
msgstr "በ _ቁመት:"
-#: cui/uiconfig/ui/swpossizepage.ui:457
+#: cui/uiconfig/ui/swpossizepage.ui:470
msgctxt "swpossizepage|verttoft"
msgid "t_o:"
msgstr "ለ_:"
-#: cui/uiconfig/ui/swpossizepage.ui:478
+#: cui/uiconfig/ui/swpossizepage.ui:492
msgctxt "swpossizepage|mirror"
msgid "_Mirror on even pages"
msgstr "በ ሙሉ ገጾች ላይ _ማንጸባረቂያ"
-#: cui/uiconfig/ui/swpossizepage.ui:495
+#: cui/uiconfig/ui/swpossizepage.ui:509
msgctxt "swpossizepage|followtextflow"
msgid "Follow te_xt flow"
msgstr "የ ጽ_ሁፉን ፍሰት ተከተል"
-#: cui/uiconfig/ui/swpossizepage.ui:518
+#: cui/uiconfig/ui/swpossizepage.ui:532
msgctxt "swpossizepage|label11"
msgid "Position"
msgstr "ቦታ"
-#: cui/uiconfig/ui/swpossizepage.ui:549
+#: cui/uiconfig/ui/swpossizepage.ui:563
msgctxt "swpossizepage|pos"
msgid "Positio_n"
msgstr "ቦ_ታ"
-#: cui/uiconfig/ui/swpossizepage.ui:565
+#: cui/uiconfig/ui/swpossizepage.ui:579
msgctxt "swpossizepage|size"
msgid "_Size"
msgstr "_መጠን"
-#: cui/uiconfig/ui/swpossizepage.ui:587
+#: cui/uiconfig/ui/swpossizepage.ui:601
msgctxt "swpossizepage|label3"
msgid "Protect"
msgstr "መጠበቂያ"
@@ -11202,12 +11202,12 @@ msgctxt "textattrtabpage|label2"
msgid "Spacing to Borders"
msgstr "ለ ድንበሮች ክፍተት"
-#: cui/uiconfig/ui/textattrtabpage.ui:425
+#: cui/uiconfig/ui/textattrtabpage.ui:423
msgctxt "textattrtabpage|TSB_FULL_WIDTH"
msgid "Full _width"
msgstr "በ ሙሉ _ስፋት"
-#: cui/uiconfig/ui/textattrtabpage.ui:448
+#: cui/uiconfig/ui/textattrtabpage.ui:446
msgctxt "textattrtabpage|label3"
msgid "Text Anchor"
msgstr "ጽሁፍ ማስቆሚያ"
diff --git a/source/am/filter/source/config/fragments/filters.po b/source/am/filter/source/config/fragments/filters.po
index b64651bb076..7fbd226c972 100644
--- a/source/am/filter/source/config/fragments/filters.po
+++ b/source/am/filter/source/config/fragments/filters.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: 2018-05-16 16:54+0200\n"
-"PO-Revision-Date: 2018-05-18 00:09+0000\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
+"PO-Revision-Date: 2018-06-07 14:27+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1526602198.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1528381673.000000\n"
#: ADO_rowset_XML.xcu
msgctxt ""
@@ -463,8 +463,8 @@ msgctxt ""
"MS Word 2003 XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Word 2003 XML"
-msgstr "Microsoft Word 2003 XML"
+msgid "Word 2003 XML"
+msgstr "Word 2003 XML"
#: MS_Word_2007_XML.xcu
msgctxt ""
@@ -1282,8 +1282,8 @@ msgctxt ""
"Calc MS Excel 2007 VBA XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Excel 2007-2016 XML (macro enabled)"
-msgstr "Microsoft Excel 2007-2016 XML (macro enabled)"
+msgid "Excel 2007–2019 (macro-enabled)"
+msgstr "Excel 2007–2019 (macro-enabled)"
#: calc_MS_Excel_2007_XML.xcu
msgctxt ""
diff --git a/source/am/filter/source/config/fragments/types.po b/source/am/filter/source/config/fragments/types.po
index 2c576ae72b0..846a3fec12c 100644
--- a/source/am/filter/source/config/fragments/types.po
+++ b/source/am/filter/source/config/fragments/types.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: 2018-05-08 15:11+0200\n"
-"PO-Revision-Date: 2018-05-13 19:02+0000\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
+"PO-Revision-Date: 2018-06-07 14:28+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1526238140.000000\n"
+"X-POOTLE-MTIME: 1528381685.000000\n"
#: MS_Excel_2007_Binary.xcu
msgctxt ""
@@ -292,8 +292,8 @@ msgctxt ""
"writer_MS_Word_2003_XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Word 2003 XML"
-msgstr "Microsoft Word 2003 XML"
+msgid "Word 2003 XML"
+msgstr "Word 2003 XML"
#: writer_MS_Word_2007_XML.xcu
msgctxt ""
diff --git a/source/am/fpicker/messages.po b/source/am/fpicker/messages.po
index b4d18d73af7..76f2a391d27 100644
--- a/source/am/fpicker/messages.po
+++ b/source/am/fpicker/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-22 13:16+0200\n"
-"PO-Revision-Date: 2018-02-27 23:29+0000\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
+"PO-Revision-Date: 2018-06-07 14:28+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1519774146.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1528381711.000000\n"
#: include/fpicker/strings.hrc:14
msgctxt "STR_SVT_FILEPICKER_AUTO_EXTENSION"
@@ -272,13 +272,13 @@ msgstr "በ GPG ቁልፍ መመስጠሪያ"
#: fpicker/uiconfig/ui/foldernamedialog.ui:8
msgctxt "foldernamedialog|FolderNameDialog"
-msgid "Folder Name ?"
-msgstr "የ ፎልደሩ ስም?"
+msgid "Folder Name"
+msgstr "የ &ፎልደር ስም:"
#: fpicker/uiconfig/ui/foldernamedialog.ui:91
msgctxt "foldernamedialog|label2"
-msgid "Na_me"
-msgstr "ስ_ም"
+msgid "Na_me:"
+msgstr "ስ_ም:"
#: fpicker/uiconfig/ui/foldernamedialog.ui:122
msgctxt "foldernamedialog|label1"
diff --git a/source/am/helpcontent2/source/auxiliary.po b/source/am/helpcontent2/source/auxiliary.po
index 0aa12bb58ee..79d959ebfda 100644
--- a/source/am/helpcontent2/source/auxiliary.po
+++ b/source/am/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: 2018-05-16 16:54+0200\n"
-"PO-Revision-Date: 2018-05-21 16:39+0000\n"
+"PO-Revision-Date: 2018-05-25 01:25+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1526920767.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1527211528.000000\n"
#: sbasic.tree
msgctxt ""
@@ -166,7 +166,7 @@ msgctxt ""
"08091\n"
"node.text"
msgid "Pivot Chart"
-msgstr ""
+msgstr "ፒቮት ቻርት"
#: scalc.tree
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/sbasic/guide.po b/source/am/helpcontent2/source/text/sbasic/guide.po
index a86c1ffa4c8..d317a067c62 100644
--- a/source/am/helpcontent2/source/text/sbasic/guide.po
+++ b/source/am/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: 2018-04-25 13:24+0200\n"
-"PO-Revision-Date: 2018-04-30 14:21+0000\n"
+"PO-Revision-Date: 2018-06-10 21:53+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1525098107.000000\n"
+"X-POOTLE-MTIME: 1528667609.000000\n"
#: access2base.xhp
msgctxt ""
@@ -110,7 +110,7 @@ msgctxt ""
"par_idA2B011\n"
"help.text"
msgid "a number of <emph>actions</emph> with a syntax identical to their corresponding Microsoft Access macros/actions,"
-msgstr ""
+msgstr "በ ቁጥር <emph> ተግባሮች </emph> አገባብ ለ ተመሳሳይ ወደ ተመሳሳያቸው Microsoft Access macros/actions"
#: access2base.xhp
msgctxt ""
@@ -118,7 +118,7 @@ msgctxt ""
"par_idA2B012\n"
"help.text"
msgid "the <emph>DLookup</emph>, <emph>DSum</emph>, ... database functions,"
-msgstr ""
+msgstr "የ <emph> ዳታ መፈለጊያ </emph><emph> የ ዳታ ድምር </emph> ... የ ዳታቤዝ ተግባሮች"
#: access2base.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/sbasic/shared.po b/source/am/helpcontent2/source/text/sbasic/shared.po
index 03ef3e5bb01..4dd3ef7e10b 100644
--- a/source/am/helpcontent2/source/text/sbasic/shared.po
+++ b/source/am/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: 2018-05-16 16:54+0200\n"
-"PO-Revision-Date: 2018-04-30 14:24+0000\n"
+"PO-Revision-Date: 2018-06-10 23:05+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1525098251.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1528671937.000000\n"
#: 00000002.xhp
msgctxt ""
@@ -4702,7 +4702,7 @@ msgctxt ""
"par_id3147318\n"
"help.text"
msgid "<ahelp hid=\"HID_PROP_IMAGE_ALIGN\">Specify the alignment option for the selected control.</ahelp>"
-msgstr "<ahelp hid=\"HID_PROP_IMAGE_ALIGN\">ለተመረጠው መቆጣጠሪያ ማሰለፊያ ምርጫ መወሰኛ </ahelp>"
+msgstr "<ahelp hid=\"HID_PROP_IMAGE_ALIGN\">ለ ተመረጠው መቆጣጠሪያ ማሰለፊያ ምርጫ መወሰኛ </ahelp>"
#: 01170101.xhp
msgctxt ""
@@ -5670,7 +5670,7 @@ msgctxt ""
"par_id3155930\n"
"help.text"
msgid "<ahelp hid=\".\">Select \"Yes\" to prevent the user from editing the value of the current control. The control is enabled and can be focused but not modified.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">ይምረጡ \"አዎ\" ተጠቃሚው ዋጋ እንዳያርም ለ መከልከል ለ አሁኑ መቆጣጠሪያ: መቆጣጠሪያው ተችሏል እና ማተኮር ይችላል ነገር ግን ማሻሻል አይቻልም </ahelp>"
#: 01170101.xhp
msgctxt ""
@@ -10342,7 +10342,7 @@ msgctxt ""
"par_id3147348\n"
"help.text"
msgid "To return directories only, use the attribute parameter. The same applies if you want to determine the name of a volume (for example, a hard drive partition)."
-msgstr ""
+msgstr "ዳይሬክቶሪ ብቻ እንዲመልስ: ይጠቀሙ የ መለያ ደንብ: ተመሳሳይ ይፈጽሙ እርስዎ መወሰን ከ ፈለጉ የ መጠን ስም (ለምሳሌ: የ hard drive partition)"
#: 03020404.xhp
msgctxt ""
@@ -12838,7 +12838,7 @@ msgctxt ""
"par_idN10629\n"
"help.text"
msgid "<emph>Add</emph> - A string expression from the following table, specifying the date interval."
-msgstr ""
+msgstr "<emph>መጨመሪያ</emph> - የ ሀረግ መግለጫ ከሚቀጥለው ሰንጠረዥ ውስጥ: የ ቀን ክፍተት መወሰኛ"
#: 03030110.xhp
msgctxt ""
@@ -13022,7 +13022,7 @@ msgctxt ""
"par_idN106C1\n"
"help.text"
msgid "<emph>Count</emph> - A numerical expression specifying how often the Add interval will be added (Count is positive) or subtracted (Count is negative)."
-msgstr ""
+msgstr "<emph>መቁጠሪያ</emph> - የ ቁጥር መግለጫ መወሰኛ ምን ያህል ጊዜ ክፍተት እንደሚጨመር (መቁጠሪያ አዎንታዊ ነው) ወይንም በሚቀነስ ጊዜ (መቁጠሪያ አሉታዊ) ነው"
#: 03030110.xhp
msgctxt ""
@@ -26070,7 +26070,7 @@ msgctxt ""
"bm_id3145090\n"
"help.text"
msgid "<bookmark_value>Microsoft Excel macros support;Enable</bookmark_value> <bookmark_value>Microsoft Excel macros support;Option VBASupport statement</bookmark_value> <bookmark_value>VBA Support;Option VBASupport statement</bookmark_value> <bookmark_value>Option VBASupport statement</bookmark_value>"
-msgstr "<bookmark_value>MS Excel macros ድጋፍ: ማስቻያ</bookmark_value> <bookmark_value>MS Excel macros ድጋፍ: ምርጫ VBASupport አረፍተ ነገር</bookmark_value> <bookmark_value>VBA ድጋፍ: ምርጫ VBASupport አረፍተ ነገር</bookmark_value> <bookmark_value>ምርጫ VBASupport አረፍተ ነገር</bookmark_value>"
+msgstr "<bookmark_value>MS Excel macros ድጋፍ:ማስቻያ</bookmark_value> <bookmark_value>MS Excel macros ድጋፍ:ምርጫ VBASupport አረፍተ ነገር</bookmark_value> <bookmark_value>VBA ድጋፍ:ምርጫ VBASupport አረፍተ ነገር</bookmark_value> <bookmark_value>ምርጫ VBASupport አረፍተ ነገር</bookmark_value>"
#: 03103350.xhp
msgctxt ""
@@ -26958,7 +26958,7 @@ msgctxt ""
"hd_id3149205\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03104100.xhp\" name=\"Optional (in Function Statement)\">Optional (in Function Statement)</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03104100.xhp\" name=\"Optional (in Function Statement)\">በ ምርጫ (በ ተግባር አረፍተ ነገር ውስጥ)</link>"
#: 03104100.xhp
msgctxt ""
@@ -28822,7 +28822,7 @@ msgctxt ""
"par_id3156042\n"
"help.text"
msgid "Converts a number to a string, and then formats it according to the format that you specify."
-msgstr "ቁጥር ወደ ሀረግ መቀየሪያ: እና ከዛ ያቀርባል እርስዎ እንደ ወሰኑት አይነት አቀራረብ"
+msgstr "ቁጥር ወደ ሀረግ መቀየሪያ: እና ከዛ እርስዎ እንደ ወሰኑት አይነት አቀራረብ ያቀርባል"
#: 03120301.xhp
msgctxt ""
@@ -34870,7 +34870,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Round Function [VBA]"
-msgstr ""
+msgstr "የ ክብ ተግባር [VBA]"
#: 03170000.xhp
msgctxt ""
@@ -34886,7 +34886,7 @@ msgctxt ""
"hd_id3150499\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03170000.xhp\" name=\"Round Function [VBA]\">Round Function [VBA]</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03170000.xhp\" name=\"Round Function [VBA]\">የ ክብ ተግባር [VBA]</link>"
#: 03170000.xhp
msgctxt ""
@@ -34902,7 +34902,7 @@ msgctxt ""
"par_id240720170117391741\n"
"help.text"
msgid "<emph>expression</emph>: Required. The numeric expression to be rounded."
-msgstr "<emph>መግለጫ</emph>: የ ቁጥር መግለጫ ለሚጠጋጋው ያስፈልጋል"
+msgstr "<emph>መግለጫ</emph>: ለሚጠጋጋው የ ቁጥር መግለጫ ያስፈልጋል"
#: 03170000.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/sbasic/shared/01.po b/source/am/helpcontent2/source/text/sbasic/shared/01.po
index b4ba950ad1b..dc92b96ce52 100644
--- a/source/am/helpcontent2/source/text/sbasic/shared/01.po
+++ b/source/am/helpcontent2/source/text/sbasic/shared/01.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2018-05-16 16:54+0200\n"
-"PO-Revision-Date: 2017-06-18 15:30+0000\n"
+"PO-Revision-Date: 2018-05-27 23:21+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1497799806.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1527463277.000000\n"
#: 06130000.xhp
msgctxt ""
@@ -46,7 +46,7 @@ msgctxt ""
"par_id3152886\n"
"help.text"
msgid "<variable id=\"makro\"><ahelp hid=\".uno:ChooseMacro\">Opens the <emph>Macro</emph> dialog, where you can create, edit, organize, and run $[officename] Basic macros.</ahelp></variable>"
-msgstr ""
+msgstr "<variable id=\"makro\"><ahelp hid=\".uno:ChooseMacro\">መክፈቻ የ <emph> ማክሮስ </emph> ንግግር መፍጠሪያ: ማረሚያ: ማደራጃ እና ማስኬጃ $[officename] Basic ማክሮስ </ahelp></variable>"
#: 06130000.xhp
msgctxt ""
@@ -374,7 +374,7 @@ msgctxt ""
"par_id3155126\n"
"help.text"
msgid "<ahelp hid=\"modules/BasicIDE/ui/libpage/import\">Locate that $[officename] Basic library that you want to add to the current list, and then click <emph>Open</emph>.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/BasicIDE/ui/libpage/import\"> ፈልጎ ማግኛ የ $[officename] መሰረታዊ መጻህፍት ቤት እርስዎ መጨመር የሚፈልጉትን ወደ አሁኑ ዝርዝር ውስጥ: እና ከዛ ይጫኑ: <emph>መክፈቻ</emph>:</ahelp>"
#: 06130100.xhp
msgctxt ""
@@ -494,7 +494,7 @@ msgctxt ""
"par_id3154840\n"
"help.text"
msgid "Locate that <item type=\"productname\">%PRODUCTNAME</item> Basic library that you want to add to the current list, and then click <emph>Open</emph>."
-msgstr ""
+msgstr "ፈልጎ ማግኛ የ <item type=\"productname\">%PRODUCTNAME</item> መሰረታዊ መጻህፍት ቤት እርስዎ መጨመር የሚፈልጉትን ወደ አሁኑ ዝርዝር ውስጥ: እና ከዛ ይጫኑ: <emph> መክፈቻ </emph>"
#: 06130500.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/scalc/01.po b/source/am/helpcontent2/source/text/scalc/01.po
index daf15809db0..ae0988266e3 100644
--- a/source/am/helpcontent2/source/text/scalc/01.po
+++ b/source/am/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: 2018-05-08 15:11+0200\n"
-"PO-Revision-Date: 2018-04-01 19:07+0000\n"
+"PO-Revision-Date: 2018-06-13 16:17+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1522609656.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1528906631.000000\n"
#: 01120000.xhp
msgctxt ""
@@ -2550,7 +2550,7 @@ msgctxt ""
"par_id3153969\n"
"help.text"
msgid "<ahelp hid=\"SC_HID_SELECTTABLES\">Lists the sheets in the current document. To select a sheet, press the up or down arrow keys to move to a sheet in the list. To add a sheet to the selection, hold down <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> while pressing the arrow keys and then press Spacebar. To select a range of sheets, hold down Shift and press the arrow keys. </ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"SC_HID_SELECTTABLES\"> የ ወረቀቶች ዝርዝር በ አሁኑ ወረቀት ውስጥ: ወረቀት ለ መምረጥ: ይጫኑ: የ ቀስት ቁልፍ ወደ ላይ ወይንም ወደ ታች ወረቀት ለማንቀሳቀስ ከ ዝርዝር ውስጥ: ወረቀት ወደ ምርጫ ለ መጨመር: ተጭነው ይያዙ <switchinline select=\"sys\"><caseinline select=\"MAC\">ትእዛዝ</caseinline><defaultinline>Ctrl</defaultinline></switchinline> የ ቀስት ቁልፍ ተጭነው ይያዙ: በሚጫኑ ጊዜ እና ይጫኑ ክፍተት ማስገቢያውን: የ ወረቀት መጠን ለ መምረጥ: ተጭነው ይያዙ እና ይጫኑ የ ቀስት ቁልፎች </ahelp>"
#: 03070000.xhp
msgctxt ""
@@ -2646,7 +2646,7 @@ msgctxt ""
"par_id3145784\n"
"help.text"
msgid "By default:"
-msgstr ""
+msgstr "በ ነባር:"
#: 03080000.xhp
msgctxt ""
@@ -2662,7 +2662,7 @@ msgctxt ""
"par_id3145786\n"
"help.text"
msgid "These colors can be customized 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 - Application Colors</item>."
-msgstr ""
+msgstr "እነዚህን ቀለሞች ማስተካከል ይቻላል በ <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"menuitem\">%PRODUCTNAME - ምርጫዎች</item></caseinline><defaultinline><item type=\"menuitem\">መሳሪያዎች - ምርጫ</item></defaultinline></switchinline><item type=\"menuitem\"> - %PRODUCTNAME - የ መተግበሪያ ቀለም</item>:"
#: 03080000.xhp
msgctxt ""
@@ -9974,7 +9974,7 @@ msgctxt ""
"par_id881520887475288\n"
"help.text"
msgid "Empty cells and text in cells are ignored."
-msgstr ""
+msgstr "ባዶ ክፍሎች እና ጽሁፍ በ ክፍል ውስጥ ይተዋሉ:"
#: 04060105.xhp
msgctxt ""
@@ -13214,7 +13214,7 @@ msgctxt ""
"par_id111516997803684\n"
"help.text"
msgid "<item type=\"input\">=CEILING.MATH(-10;-3)</item> returns -9"
-msgstr ""
+msgstr "<item type=\"input\">=ጣራ.ሂሳብ(-10;-3)</item> ይመልሳል -9"
#: 04060106.xhp
msgctxt ""
@@ -13222,7 +13222,7 @@ msgctxt ""
"par_id1001516997821483\n"
"help.text"
msgid "<item type=\"input\">=CEILING.MATH(-10;-3;0)</item> returns -9"
-msgstr ""
+msgstr "<item type=\"input\">=ጣራ.ሂሳብ(-10;-3;0)</item> ይመልሳል -9"
#: 04060106.xhp
msgctxt ""
@@ -13230,7 +13230,7 @@ msgctxt ""
"par_id641516997837754\n"
"help.text"
msgid "<item type=\"item_type\">=CEILING.MATH(-10;-3;1)</item> returns -12"
-msgstr ""
+msgstr "<item type=\"item_type\">=ጣራ.ሂሳብ(-10;-3;1)</item> ይመልሳል -12"
#: 04060106.xhp
msgctxt ""
@@ -13310,7 +13310,7 @@ msgctxt ""
"par_id91516998917254\n"
"help.text"
msgid "<item type=\"input\">=CEILING.XCL(1;3)</item> returns 3"
-msgstr ""
+msgstr "<item type=\"input\">=የ ጣራ.XCL(1;3)</item> ይመልሳል 3"
#: 04060106.xhp
msgctxt ""
@@ -13318,7 +13318,7 @@ msgctxt ""
"par_id761516998929693\n"
"help.text"
msgid "<item type=\"input\">=CEILING.XCL(7;4)</item> returns 8"
-msgstr ""
+msgstr "<item type=\"input\">=የ ጣራ.XCL(7;4)</item> ይመልሳል 8"
#: 04060106.xhp
msgctxt ""
@@ -13326,7 +13326,7 @@ msgctxt ""
"par_id671516998958873\n"
"help.text"
msgid "<item type=\"item_type\">=CEILING.XCL(-10;-3)</item> returns -12"
-msgstr ""
+msgstr "<item type=\"item_type\">=የ ጣራ.ሂሳብ(-10;-3)</item> ይመልሳል -12"
#: 04060106.xhp
msgctxt ""
@@ -35574,7 +35574,7 @@ msgctxt ""
"par_id3148585\n"
"help.text"
msgid "COUNT(Value1; Value2; ...; Value30)"
-msgstr ""
+msgstr "መቁጠሪያ(ዋጋ1: ዋጋ2; ... ዋጋ30)"
#: 04060181.xhp
msgctxt ""
@@ -35646,7 +35646,7 @@ msgctxt ""
"par_id3153111\n"
"help.text"
msgid "COUNTA(Value1; Value2; ...; Value30)"
-msgstr ""
+msgstr "ክርክር መቁጠሪያ(ዋጋ1: ዋጋ2: ... ዋጋ30)"
#: 04060181.xhp
msgctxt ""
@@ -35654,7 +35654,7 @@ msgctxt ""
"par_id3150001\n"
"help.text"
msgid "<emph>Value1; Value2, ..., Value30</emph> are 1 to 30 arguments representing the values to be counted."
-msgstr ""
+msgstr "<emph>ዋጋ 1, ዋጋ 2, ... ዋጋ30</emph> ከ 1 እስከ 30 ያሉ ክርክሮች ናቸው የሚወክሉት ዋጋ የሚቆጠረው:"
#: 04060181.xhp
msgctxt ""
@@ -39214,7 +39214,7 @@ msgctxt ""
"par_id3151015\n"
"help.text"
msgid "<emph>Beta</emph> is the parameter Beta of the Gamma distribution."
-msgstr ""
+msgstr "<emph>ቤታ</emph> የ ቤታ ደንብ ነው ለ ጋማ ስርጭት"
#: 04060182.xhp
msgctxt ""
@@ -39318,7 +39318,7 @@ msgctxt ""
"par_id2406201422390458\n"
"help.text"
msgid "<emph>Beta</emph> is the parameter Beta of the Gamma distribution."
-msgstr ""
+msgstr "<emph>ቤታ</emph> የ ቤታ ደንብ ነው ለ ጋማ ስርጭት"
#: 04060182.xhp
msgctxt ""
@@ -39758,7 +39758,7 @@ msgctxt ""
"par_id3154303\n"
"help.text"
msgid "<emph>Number1, Number2, ..., Number30</emph> are up to 30 values or ranges, that can be used to calculate the harmonic mean."
-msgstr ""
+msgstr "<emph>ቁጥር1,ቁጥር2,...ቁጥር30</emph> እስከ 30 ዋጋዎች ወይንም መጠኖች ናቸው: እርስዎ ማስላት የሚችሉበት የ ስምምነት አማካይ"
#: 04060182.xhp
msgctxt ""
@@ -40774,7 +40774,7 @@ msgctxt ""
"par_id3154508\n"
"help.text"
msgid "KURT(Number1; Number2; ...; Number30)"
-msgstr ""
+msgstr "ኩርት(ቁጥር1: ቁጥር2; ...ቁጥር30)"
#: 04060183.xhp
msgctxt ""
@@ -40782,7 +40782,7 @@ msgctxt ""
"par_id3145167\n"
"help.text"
msgid "<emph>Number1, Number2, ..., Number30</emph> are numeric arguments or ranges representing a random sample of distribution."
-msgstr ""
+msgstr "<emph>ቁጥር1, ቁጥር2,...ቁጥር30</emph> የ ቁጥር ክርክሮች ናቸው ወይንም መጠኖች በ ደፈናው ናሙና የሚወክሉ:"
#: 04060183.xhp
msgctxt ""
@@ -41206,7 +41206,7 @@ msgctxt ""
"par_id3147340\n"
"help.text"
msgid "MAX(Number1; Number2; ...; Number30)"
-msgstr ""
+msgstr "ከፍተኛ(ቁጥር1: ቁጥር2; ...; ቁጥር30)"
#: 04060184.xhp
msgctxt ""
@@ -41214,7 +41214,7 @@ msgctxt ""
"par_id3149568\n"
"help.text"
msgid "<emph>Number1, Number2, ..., Number30</emph> are numerical values or ranges."
-msgstr ""
+msgstr "<emph>ቁጥር1, ቁጥር2,...ቁጥር30</emph> የ ቁጥር ዋጋዎች ወይንም መጠኖች ናቸው:"
#: 04060184.xhp
msgctxt ""
@@ -41286,7 +41286,7 @@ msgctxt ""
"par_id3166431\n"
"help.text"
msgid "MAXA(Value1; Value2; ...; Value30)"
-msgstr ""
+msgstr "ከፍተኛ(ዋጋ1: ዋጋ2; ...; ዋጋ30)"
#: 04060184.xhp
msgctxt ""
@@ -41294,7 +41294,7 @@ msgctxt ""
"par_id3150202\n"
"help.text"
msgid "<emph>Value1; Value2;...; Value30</emph> are values or ranges. Text has the value of 0."
-msgstr ""
+msgstr "<emph>ዋጋ1: ዋጋ2:...ዋጋ30</emph> ዋጋዎች ወይንም መጠኖች ናቸው: ጽሁፍ ዋጋው 0 ነው:"
#: 04060184.xhp
msgctxt ""
@@ -41446,7 +41446,7 @@ msgctxt ""
"par_id3153486\n"
"help.text"
msgid "<emph>Number1, Number2, ..., Number30</emph> are numerical values or ranges."
-msgstr ""
+msgstr "<emph>ቁጥር1, ቁጥር2,...ቁጥር30</emph> የ ቁጥር ዋጋዎች ወይንም መጠኖች ናቸው:"
#: 04060184.xhp
msgctxt ""
@@ -41846,7 +41846,7 @@ msgctxt ""
"par_id2950337\n"
"help.text"
msgid "<emph>Number1, Number2, ..., Number30</emph> are numerical values or ranges."
-msgstr ""
+msgstr "<emph>ቁጥር1, ቁጥር2,...ቁጥር30</emph> የ ቁጥር ዋጋዎች ወይንም መጠኖች ናቸው:"
#: 04060184.xhp
msgctxt ""
@@ -41918,7 +41918,7 @@ msgctxt ""
"par_id2850337\n"
"help.text"
msgid "<emph>Number1, Number2, ..., Number30</emph> are numerical values or ranges."
-msgstr ""
+msgstr "<emph>ቁጥር1, ቁጥር2, ..., ቁጥር30</emph> የ ቁጥር ዋጋዎች ወይንም መጠኖች ናቸው:"
#: 04060184.xhp
msgctxt ""
@@ -44094,7 +44094,7 @@ msgctxt ""
"par_id3149946\n"
"help.text"
msgid "STDEV(Number1; Number2; ...; Number30)"
-msgstr ""
+msgstr "መደበኛ ልዩነት(ቁጥር1: ቁጥር2; ..., ቁጥር30)"
#: 04060185.xhp
msgctxt ""
@@ -52126,7 +52126,7 @@ msgctxt ""
"bm_id3147228\n"
"help.text"
msgid "<bookmark_value>sorting; options for database ranges</bookmark_value><bookmark_value>sorting;Asian languages</bookmark_value><bookmark_value>Asian languages;sorting</bookmark_value><bookmark_value>phonebook sorting rules</bookmark_value><bookmark_value>natural sort algorithm</bookmark_value>"
-msgstr "<bookmark_value>መለያ: ምርጫዎች ለ ዳታቤዝ መጠኖች</bookmark_value><bookmark_value>መለያ: የ እስያን ቋንቋ</bookmark_value><bookmark_value>የ እስያን ቋንቋ: መለያ</bookmark_value><bookmark_value>የ ስልክ ማውጫ መለያ ደንቦች</bookmark_value><bookmark_value>የ ተፈጥሮ መለያ algorithm</bookmark_value>"
+msgstr "<bookmark_value>መለያ: ምርጫዎች ለ ዳታቤዝ መጠኖች</bookmark_value><bookmark_value>መለያ:የ እስያን ቋንቋ</bookmark_value><bookmark_value>የ እስያን ቋንቋ:መለያ</bookmark_value><bookmark_value>የ ስልክ ማውጫ መለያ ደንቦች</bookmark_value><bookmark_value>የ ተፈጥሮ መለያ algorithm</bookmark_value>"
#: 12030200.xhp
msgctxt ""
@@ -62326,7 +62326,7 @@ msgctxt ""
"par_id691519155470333\n"
"help.text"
msgid "<item type=\"input\">=ROUNDSIG(123.456789; 5)</item> returns 123.46."
-msgstr ""
+msgstr "<item type=\"input\">=ወደ አስፈላጊ ማጠጋጊያ(123.456789; 5)</item> ይመልሳል 123.46."
#: func_roundsig.xhp
msgctxt ""
@@ -62334,7 +62334,7 @@ msgctxt ""
"par_id821519155475673\n"
"help.text"
msgid "<item type=\"input\">=ROUNDSIG(0.000123456789; 5)</item> returns 0.00012346"
-msgstr ""
+msgstr "<item type=\"input\">=ወደ አስፈላጊ ማጠጋጊያ(0.000123456789; 5)</item> ይመልሳል 0.00012346"
#: func_roundsig.xhp
msgctxt ""
@@ -62342,7 +62342,7 @@ msgctxt ""
"par_id381519155481234\n"
"help.text"
msgid "<item type=\"input\">=ROUNDSIG(123456789012345; 2)</item> returns 1.2E14"
-msgstr ""
+msgstr "<item type=\"input\">=ወደ አስፈላጊ ማጠጋጊያ(123456789012345; 2)</item> ይመልሳል 1.2E14"
#: func_roundsig.xhp
msgctxt ""
@@ -62350,7 +62350,7 @@ msgctxt ""
"par_id231519155486155\n"
"help.text"
msgid "<item type=\"input\">=ROUNDSIG(123456789; 4)</item> returns 123500000 or 123.5E6"
-msgstr ""
+msgstr "<item type=\"input\">=ወደ አስፈላጊ ማጠጋጊያ(123456789; 4)</item> ይመልሳል 123500000 ወይንም 123.5E6"
#: func_roundsig.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/scalc/04.po b/source/am/helpcontent2/source/text/scalc/04.po
index de3c8ed4efc..c89b540d0ec 100644
--- a/source/am/helpcontent2/source/text/scalc/04.po
+++ b/source/am/helpcontent2/source/text/scalc/04.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-10-04 11:48+0200\n"
-"PO-Revision-Date: 2017-10-04 23:03+0000\n"
+"PO-Revision-Date: 2018-06-10 22:13+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1507158184.000000\n"
+"X-POOTLE-MTIME: 1528668815.000000\n"
#: 01020000.xhp
msgctxt ""
@@ -46,7 +46,7 @@ msgctxt ""
"par_id3155067\n"
"help.text"
msgid "To fill a selected cell range with the formula that you entered on the <emph>Input line</emph>, press <switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>+Enter. Hold down <switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>+Enter+Shift to apply the cell format of the input cell to the entire cell range."
-msgstr "ለመሙላት የ ተመረጠውን ክፍል መጠን በ አስገቡት መቀመሪያ በ <emph> ማስገቢያ መስመር ላይ </emph> ይጫኑ <switchinline select=\"sys\"><caseinline select=\"MAC\"> ምርጫ </caseinline><defaultinline>Alt</defaultinline></switchinline>+ማስገቢያ ተጭነው ይያዙ <switchinline select=\"sys\"><caseinline select=\"MAC\"> ምርጫ </caseinline><defaultinline>Alt</defaultinline></switchinline>+ማስገቢያ+Shift ለ መፈጸም የ ክፍል አቀራረብ የ ማስገቢያው ክፍል ለ ሁሉም ክፍል መጠን"
+msgstr "ለ መሙላት የ ተመረጠውን ክፍል መጠን በ አስገቡት መቀመሪያ በ <emph> ማስገቢያ መስመር ላይ </emph> ይጫኑ <switchinline select=\"sys\"><caseinline select=\"MAC\"> ምርጫ </caseinline><defaultinline>Alt</defaultinline></switchinline>+ማስገቢያ ተጭነው ይያዙ <switchinline select=\"sys\"><caseinline select=\"MAC\"> ምርጫ </caseinline><defaultinline>Alt</defaultinline></switchinline>+ማስገቢያ+Shift ለ መፈጸም የ ክፍል አቀራረብ የ ማስገቢያው ክፍል ለ ሁሉም ክፍል መጠን"
#: 01020000.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/scalc/guide.po b/source/am/helpcontent2/source/text/scalc/guide.po
index eddc867fcf9..b8cb6fcad02 100644
--- a/source/am/helpcontent2/source/text/scalc/guide.po
+++ b/source/am/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: 2018-05-22 13:16+0200\n"
-"PO-Revision-Date: 2018-03-26 16:15+0000\n"
+"PO-Revision-Date: 2018-06-13 15:52+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1522080941.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1528905139.000000\n"
#: address_auto.xhp
msgctxt ""
@@ -78,7 +78,7 @@ msgctxt ""
"par_id3149210\n"
"help.text"
msgid "If you want a name to be automatically recognized by Calc, the name must start with a letter and be composed of alphanumeric characters. If you enter the name in the formula yourself, enclose the name in single quotation marks ('). If a single quotation mark appears in a name, you must enter a backslash in front of the quotation mark, for example, <item type=\"literal\">'Harry\\'s Bar'</item>."
-msgstr ""
+msgstr "እርስዎ ስም ራሱ በራሱ እንዲለይ ከ ፈለጉ በ ሰንጠረዥ ውስጥ: ስሙ በ ፊደል መጀመር አለበት እና የ ፊደል እና ቁጥር ባህሪዎች መያዝ አለበት: እርስዎ ስም ካስገቡ በ መቀመሪያ ውስጥ: ስሙን በ ነጠላ ጥቅስ ምልክት ውስጥ መሆን ('). ነጠላ ጥቅስ ምልክት ከ ስሙ ጋር ከቀረበ: እርስዎ ማስገባት አለብዎት ወደ ኋላ ስላሽ ከ ጥቅስ ምልክቱ ፊት ለ ፊት: ለምሳሌ <item type=\"literal\">'Harry\\'s Bar'.</item>"
#: auto_off.xhp
msgctxt ""
@@ -3510,7 +3510,7 @@ msgctxt ""
"par_id3153968\n"
"help.text"
msgid "In <item type=\"productname\">%PRODUCTNAME</item> Calc you can give numbers any currency format. When you click the <item type=\"menuitem\">Currency</item> icon <image id=\"img_id3150791\" src=\"cmd/sc_currencyfield.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3150791\">Icon</alt></image> in the <item type=\"menuitem\">Formatting</item> bar to format a number, the cell is given the default currency format set under <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\"> - Language Settings - Languages</item>."
-msgstr "በ <item type=\"productname\">%PRODUCTNAME</item> ሰንጠረዥ ውስጥ ቁጥሮችን የሚፈልጉትን የ ገንዘብ አቀራረብ መስጠት ይችላሉ ሲጫኑ የ <item type=\"menuitem\"> ገንዘብ </item> ምልክት <image id=\"img_id3150791\" src=\"cmd/sc_currencyfield.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3150791\"> ምልክት </alt></image> በ <item type=\"menuitem\"> አቀራረብ </item> መደርደሪያ ላይ ቁጥርን ለማቅረብ ክፍሉ ነባር የ ገንዘብ አቀራረብ ተሰጥቶታል ከ ስር <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"menuitem\">%PRODUCTNAME - ምርጫዎች </item></caseinline><defaultinline><item type=\"menuitem\"> መሳሪያ - ምርጫዎች </item></defaultinline></switchinline><item type=\"menuitem\"> - ቋንቋ - ማሰናጃዎች </item>"
+msgstr "በ <item type=\"productname\">%PRODUCTNAME</item> ሰንጠረዥ ውስጥ ቁጥሮችን የሚፈልጉትን የ ገንዘብ አቀራረብ መስጠት ይችላሉ ሲጫኑ የ <item type=\"menuitem\"> ገንዘብ </item> ምልክት <image id=\"img_id3150791\" src=\"cmd/sc_currencyfield.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3150791\"> ምልክት </alt></image> በ <item type=\"menuitem\"> አቀራረብ </item> መደርደሪያ ላይ ቁጥርን ለማቅረብ ክፍሉ ነባር የ ገንዘብ አቀራረብ ተሰጥቶታል ከ ስር <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"menuitem\">%PRODUCTNAME - ምርጫዎች </item></caseinline><defaultinline><item type=\"menuitem\"> መሳሪያ - ምርጫ </item></defaultinline></switchinline><item type=\"menuitem\"> - ቋንቋ - ማሰናጃዎች - ቋንቋዎች </item>"
#: currency_format.xhp
msgctxt ""
@@ -3830,7 +3830,7 @@ msgctxt ""
"par_id4525284\n"
"help.text"
msgid "<link href=\"https://wiki.documentfoundation.org/Documentation/How_Tos/Defining_a_Data_Range\" name=\"wiki.documentfoundation.org Defining a Data Range\">Wiki page about defining a data range</link>"
-msgstr ""
+msgstr "<link href=\"https://wiki.documentfoundation.org/Documentation/How_Tos/Defining_a_Data_Range\" name=\"wiki.documentfoundation.org Defining a Data Range\">የ ዊኪ ገጽ ስለ የ ዳታ መጠን መግለጫ</link>"
#: database_sort.xhp
msgctxt ""
@@ -3910,7 +3910,7 @@ msgctxt ""
"par_id1846980\n"
"help.text"
msgid "<link href=\"https://wiki.documentfoundation.org/Documentation/How_Tos/Defining_a_Data_Range\" name=\"wiki.documentfoundation.org: Defining a Data Range\">Wiki page about defining a data range</link>"
-msgstr ""
+msgstr "<link href=\"https://wiki.documentfoundation.org/Documentation/How_Tos/Defining_a_Data_Range\" name=\"wiki.documentfoundation.org: Defining a Data Range\">የ ዊኪ ገጽ ስለ የ ዳታ መጠን መግለጫ</link>"
#: datapilot.xhp
msgctxt ""
@@ -5158,7 +5158,7 @@ msgctxt ""
"bm_id3154125\n"
"help.text"
msgid "<bookmark_value>text in cells; formatting</bookmark_value><bookmark_value>spreadsheets;formatting</bookmark_value><bookmark_value>backgrounds;cells and pages</bookmark_value><bookmark_value>borders;cells and pages</bookmark_value><bookmark_value>formatting;spreadsheets</bookmark_value><bookmark_value>numbers; formatting options for selected cells</bookmark_value><bookmark_value>cells; number formats</bookmark_value><bookmark_value>currencies;formats</bookmark_value>"
-msgstr "<bookmark_value>ጽሁፍ በ ክፍሎች ውስጥ: አቀራረብ</bookmark_value><bookmark_value>ሰንጠረዥ: አቀራረብ</bookmark_value><bookmark_value>መደቡ: ክፍሎች እና ገጾች</bookmark_value><bookmark_value>ድንበሮች: ክፍሎች እና ገጾች</bookmark_value><bookmark_value>አቀራረብ: ሰንጠረዥ</bookmark_value><bookmark_value>ቁጥሮች: የ አቀራረብ ምርጫ ለተመረጠው ክፍል</bookmark_value><bookmark_value>ክፍሎች: የ ቁጥሮች አቀራረብ</bookmark_value><bookmark_value>ገንዘብ: አቀራረብ</bookmark_value>"
+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>"
#: format_table.xhp
msgctxt ""
@@ -7302,7 +7302,7 @@ msgctxt ""
"par_id9518723\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline> key"
-msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">ምርጫው</caseinline><defaultinline>Alt</defaultinline></switchinline> ቁልፍ"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">ምርጫ</caseinline><defaultinline>Alt</defaultinline></switchinline> ቁልፍ"
#: move_dragdrop.xhp
msgctxt ""
@@ -8126,7 +8126,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Pivot Chart"
-msgstr ""
+msgstr "ፒቮት ቻርት"
#: pivotchart.xhp
msgctxt ""
@@ -8134,7 +8134,7 @@ msgctxt ""
"bm_id541525139738752\n"
"help.text"
msgid "<bookmark_value>chart;pivot chart</bookmark_value> <bookmark_value>pivot table;pivot chart</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>ቻርት;ፒቮት ቻርት</bookmark_value> <bookmark_value>ፒቮት ሰንጠረዥ;ፒቮት ቻርት</bookmark_value>"
#: pivotchart.xhp
msgctxt ""
@@ -8142,7 +8142,7 @@ msgctxt ""
"hd_id141525139671420\n"
"help.text"
msgid "<variable id=\"pivotchart\"><link href=\"text/scalc/guide/pivotchart.xhp\" name=\"Pivot Chart\">Pivot Chart</link></variable>"
-msgstr ""
+msgstr "<variable id=\"pivotchart\"><link href=\"text/scalc/guide/pivotchart.xhp\" name=\"Pivot Chart\">ፒቮት ቻርት</link></variable>"
#: pivotchart.xhp
msgctxt ""
@@ -8182,7 +8182,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Creating Pivot Charts"
-msgstr ""
+msgstr "የ ፒቮት ቻርት መፍጠሪያ"
#: pivotchart_create.xhp
msgctxt ""
@@ -8190,7 +8190,7 @@ msgctxt ""
"bm_id531525141739769\n"
"help.text"
msgid "<bookmark_value>pivot chart;creating</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>የ ፒቮት ቻርት;መፍጠሪያ</bookmark_value>"
#: pivotchart_create.xhp
msgctxt ""
@@ -8198,7 +8198,7 @@ msgctxt ""
"hd_id441525141699185\n"
"help.text"
msgid "<variable id=\"pivotchartcreate\"><link href=\"text/scalc/guide/pivotchart_create.xhp\" name=\"pivot chart create\">Creating Pivot Charts</link></variable>"
-msgstr ""
+msgstr "<variable id=\"pivotchartcreate\"><link href=\"text/scalc/guide/pivotchart_create.xhp\" name=\"pivot chart create\">የ ፒቮት ቻርት መፍጠሪያ</link></variable>"
#: pivotchart_create.xhp
msgctxt ""
@@ -8206,7 +8206,7 @@ msgctxt ""
"par_id481525142550652\n"
"help.text"
msgid "To create a pivot chart proceed as below:"
-msgstr ""
+msgstr "የ ፒቮት ቻርት ለ መፍጠር ከ ታች በኩል እንደሚታየው ይቀጥሉ:"
#: pivotchart_create.xhp
msgctxt ""
@@ -8214,7 +8214,7 @@ msgctxt ""
"par_id761525140219212\n"
"help.text"
msgid "Click inside the pivot table that you want to present in your chart."
-msgstr ""
+msgstr "ይጫኑ በ ፒቮት ሰንጠረዥ ውስጥ እርስዎ ማቅረብ በሚፈልጉት ቻርትስ ውስጥ"
#: pivotchart_create.xhp
msgctxt ""
@@ -8222,7 +8222,7 @@ msgctxt ""
"par_id351525140237521\n"
"help.text"
msgid "Choose <emph>Insert – Chart</emph> or click in the <image id=\"img_id3157322\" src=\"cmd/sc_insertobjectchart.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3159322\">Insert Chart Icon</alt></image> <emph>Insert Chart</emph> icon in the main toolbar."
-msgstr ""
+msgstr "ይምረጡ <emph> ማስገቢያ – ቻርት </emph> ወይንም ይጫኑ በ <image id=\"img_id3157322\" src=\"cmd/sc_insertobjectchart.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3159322\">ማስገቢያ ቻርት ምልክት </alt></image> <emph>ማስገቢያ ቻርት</emph> ምልክት ላይ ከ ዋናው መሳሪያ መደርደሪያ ላይ"
#: pivotchart_create.xhp
msgctxt ""
@@ -8238,7 +8238,7 @@ msgctxt ""
"par_id861525140391601\n"
"help.text"
msgid "Select the <link href=\"text/schart/01/wiz_chart_type.xhp\" name=\"Chart type\">Chart type</link> for the data in the chart wizard."
-msgstr ""
+msgstr "ይምረጡ የ <link href=\"text/schart/01/wiz_chart_type.xhp\" name=\"Chart type\"> ቻርት አይነት </link> ለ ዳታ ከ ቻርት ዳታ አዋቂ ውስጥ:"
#: pivotchart_create.xhp
msgctxt ""
@@ -8254,7 +8254,7 @@ msgctxt ""
"par_id511525140411625\n"
"help.text"
msgid "Select the <link href=\"text/schart/01/wiz_chart_elements.xhp\" name=\"Chart elements\">Chart Elements</link> of the pivot chart in the wizard."
-msgstr ""
+msgstr "ይምረጡ የ <link href=\"text/schart/01/wiz_chart_elements.xhp\" name=\"Chart elements\"> ቻርት አካል </link> ከ ፒቮት ቻርት አዋቂ ውስጥ:"
#: pivotchart_create.xhp
msgctxt ""
@@ -8262,7 +8262,7 @@ msgctxt ""
"par_id1001525165156188\n"
"help.text"
msgid "Click <emph>OK</emph> to close the wizard and create the pivot chart."
-msgstr ""
+msgstr "ይጫኑ <emph> እሺ </emph> አዋቂውን ለ መዝጋት እና ፒቮት ቻርት ለ መፍጠር:"
#: pivotchart_delete.xhp
msgctxt ""
@@ -8270,7 +8270,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Deleting Pivot Charts"
-msgstr ""
+msgstr "የ ፒቮት ሰንጠረዥ ማጥፊያ"
#: pivotchart_delete.xhp
msgctxt ""
@@ -8278,7 +8278,7 @@ msgctxt ""
"hd_id231525147891984\n"
"help.text"
msgid "<variable id=\"pivotchartdelete\"><link href=\"text/scalc/guide/pivotchart_delete.xhp\" name=\"Deleting a Pivot Chart\">Deleting a Pivot Chart</link></variable>"
-msgstr ""
+msgstr "<variable id=\"pivotchartdelete\"><link href=\"text/scalc/guide/pivotchart_delete.xhp\" name=\"Deleting a Pivot Chart\">የ ፒቮት ሰንጠረዥ ማጥፊያ</link></variable>"
#: pivotchart_delete.xhp
msgctxt ""
@@ -8286,7 +8286,7 @@ msgctxt ""
"bm_id231525149357908\n"
"help.text"
msgid "<bookmark_value>pivot chart;deleting</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>የ ፒቮት ሰንጠረዥ;ማጥፊያ</bookmark_value>"
#: pivotchart_delete.xhp
msgctxt ""
@@ -8294,7 +8294,7 @@ msgctxt ""
"par_id141525147903623\n"
"help.text"
msgid "To delete a pivot chart, select the chart and press <emph>Del</emph>."
-msgstr ""
+msgstr "የ ፒቮት ሰንጠረዥ ለ ማጥፋት: ቻርት ይምረጡ እና ይጫኑ <emph> ማጥፊያ </emph>:"
#: pivotchart_delete.xhp
msgctxt ""
@@ -8318,7 +8318,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Editing Pivot Charts"
-msgstr ""
+msgstr "የ ፒቮት ሰንጠረዥ ማረሚያ"
#: pivotchart_edit.xhp
msgctxt ""
@@ -8326,7 +8326,7 @@ msgctxt ""
"bm_id661525144028976\n"
"help.text"
msgid "<bookmark_value>pivot chart;editing</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>የ ፒቮት ሰንጠረዥ;ማረሚያ</bookmark_value>"
#: pivotchart_edit.xhp
msgctxt ""
@@ -8334,7 +8334,7 @@ msgctxt ""
"hd_id271525144002806\n"
"help.text"
msgid "<variable id=\"pivotchartedit\"><link href=\"text/scalc/guide/pivotchart_edit.xhp\" name=\"Pivot Chart Editing\">Editing Pivot Charts</link></variable>"
-msgstr ""
+msgstr "<variable id=\"pivotchartedit\"><link href=\"text/scalc/guide/pivotchart_edit.xhp\" name=\"Pivot Chart Editing\">የ ፒቮት ሰንጠረዥ ማረሚያ</link></variable>"
#: pivotchart_edit.xhp
msgctxt ""
@@ -8350,7 +8350,7 @@ msgctxt ""
"hd_id5631580\n"
"help.text"
msgid "To edit a pivot chart"
-msgstr ""
+msgstr "የ ፒቮት ሰንጠረዥ ለማረም"
#: pivotchart_filter.xhp
msgctxt ""
@@ -8358,7 +8358,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Filtering Pivot Charts"
-msgstr ""
+msgstr "የ ፒቮት ሰንጠረዥ ማጣሪያ"
#: pivotchart_filter.xhp
msgctxt ""
@@ -8366,7 +8366,7 @@ msgctxt ""
"hd_id401525165755583\n"
"help.text"
msgid "<variable id=\"pivotchartfilter\"><link href=\"text/scalc/guide/pivotchart_filter.xhp\" name=\"Filtering Pivot Charts\">Filtering Pivot Charts</link></variable>"
-msgstr ""
+msgstr "<variable id=\"pivotchartfilter\"><link href=\"text/scalc/guide/pivotchart_filter.xhp\" name=\"Filtering Pivot Charts\">የ ፒቮት ሰንጠረዥ ማጣሪያ</link></variable>"
#: pivotchart_filter.xhp
msgctxt ""
@@ -8382,7 +8382,7 @@ msgctxt ""
"hd_id201525166689277\n"
"help.text"
msgid "Pivot chart field buttons"
-msgstr ""
+msgstr "የ ፒቮት ሰንጠረዥ ሜዳ ቁልፍ"
#: pivotchart_filter.xhp
msgctxt ""
@@ -8398,7 +8398,7 @@ msgctxt ""
"par_id681525167692377\n"
"help.text"
msgid "<image src=\"media/helpimg/sc_PivotChartButtons.png\" id=\"img_id801525167692378\" width=\"604px\" height=\"340px\"><alt id=\"alt_id881525167692378\">Pivot chart buttons</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/helpimg/sc_PivotChartButtons.png\" id=\"img_id801525167692378\" width=\"604px\" height=\"340px\"><alt id=\"alt_id881525167692378\">የ ፒቮት ሰንጠረዥ ቁልፍ</alt></image>"
#: pivotchart_filter.xhp
msgctxt ""
@@ -8422,7 +8422,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Pivot Chart Update"
-msgstr ""
+msgstr "የ ፒቮት ሰንጠረዥ ማሻሻያ"
#: pivotchart_update.xhp
msgctxt ""
@@ -8430,7 +8430,7 @@ msgctxt ""
"bm_id801525146393791\n"
"help.text"
msgid "<bookmark_value>pivot chart;update</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>የ ፒቮት ሰንጠረዥ;ማሻሻያ</bookmark_value>"
#: pivotchart_update.xhp
msgctxt ""
@@ -8438,7 +8438,7 @@ msgctxt ""
"hd_id281525146417678\n"
"help.text"
msgid "<variable id=\"pivotchartupdate\"><link href=\"text/scalc/guide/pivotchart_update.xhp\" name=\"Pivot Chart Update\">Updating Pivot Charts</link></variable>"
-msgstr ""
+msgstr "<variable id=\"pivotchartupdate\"><link href=\"text/scalc/guide/pivotchart_update.xhp\" name=\"Pivot Chart Update\">የ ፒቮት ሰንጠረዥ ማሻሻያ</link></variable>"
#: pivotchart_update.xhp
msgctxt ""
@@ -8454,7 +8454,7 @@ msgctxt ""
"par_id451525146722974\n"
"help.text"
msgid "Choose <emph>Data - Pivot Table - Refresh</emph>."
-msgstr ""
+msgstr "ይምረጡ <emph> ዳታ - የ ፒቮት ሰንጠረዥ - ማነቃቂያ</emph>:"
#: pivotchart_update.xhp
msgctxt ""
@@ -8462,7 +8462,7 @@ msgctxt ""
"par_id331525146738273\n"
"help.text"
msgid "Choose <emph>Refresh...</emph> in the context menu of any cell in the pivot table."
-msgstr ""
+msgstr "ይምረጡ <emph> ማነቃቂያ...</emph> በ ማንኛውም የ አገባብ ዝርዝር ውስጥ: በ ማንኛውም ክፍል በ ፒቮት ሰንጠረዥ ውስጥ:"
#: print_details.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/schart.po b/source/am/helpcontent2/source/text/schart.po
index 97eba7c6cab..3239163eada 100644
--- a/source/am/helpcontent2/source/text/schart.po
+++ b/source/am/helpcontent2/source/text/schart.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: 2018-05-08 15:10+0200\n"
-"PO-Revision-Date: 2018-03-04 00:53+0000\n"
+"PO-Revision-Date: 2018-05-25 01:24+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1520124816.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1527211498.000000\n"
#: main0000.xhp
msgctxt ""
@@ -46,7 +46,7 @@ msgctxt ""
"par_id3154685\n"
"help.text"
msgid "<variable id=\"chart\">$[officename] lets you present data graphically in a chart, so that you can visually compare data series and view trends in the data. You can insert charts into spreadsheets, text documents, drawings, and presentations.</variable>"
-msgstr ""
+msgstr "<variable id=\"chart\">$[officename] እርስዎን ዳታ በ ቻርትስ ውስጥ በ ንድፍ ዘዴ ማቅረብ እና ማየት ያስችሎታል: ስለዚህ እርስዎ ተከታታይ ዳታ ማወዳደር እና የ ዳታ አቅጣጫን ማየት ይችላሉ: እርስዎ ቻርትስ ወደ ሰንጠረዦች: የ ጽሁፍ ሰነዶች: መሳያዎች እና ማቅረቢያዎች ውስጥ ማስገባት ይችላሉ</variable>"
#: main0000.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/sdraw/guide.po b/source/am/helpcontent2/source/text/sdraw/guide.po
index f55f34752e0..9ca1d2b2919 100644
--- a/source/am/helpcontent2/source/text/sdraw/guide.po
+++ b/source/am/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: 2018-04-17 15:54+0200\n"
-"PO-Revision-Date: 2018-04-30 16:32+0000\n"
+"PO-Revision-Date: 2018-06-03 15:12+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1525105977.000000\n"
+"X-POOTLE-MTIME: 1528038766.000000\n"
#: align_arrange.xhp
msgctxt ""
@@ -310,7 +310,7 @@ msgctxt ""
"par_id3166425\n"
"help.text"
msgid "Click a color in the table that is similar to the one you want to define. You can select the similar color from any of the available color palettes in the <emph>Colors</emph> area on the left or the <emph>Recent colors</emph> in the list below the color table. The color appears in the <emph>New</emph> preview box to the right of the dialog."
-msgstr ""
+msgstr "ይጫኑ እርስዎ መወሰን የሚፈልጉትን ተመሳሳይ የሆነ ቀለም ከ ሰንጠረዡ ውስጥ: እርስዎ መምረጥ ይችላሉ ተመሳሳይ ቀለም ከ ዝግጁ ከሆነ ቀለም ማሰናጃ ውስጥ: በ <emph> ቀለሞች </emph> ቦታ ውስጥ በ ግራ በኩል ወይንም በ <emph> የ ቅርብ ጊዜ ቀለሞች </emph> ከ ታች በኩል ከሚገኘው የ ቀለም ሰንጠረዥ ዝርዝር ውስጥ: ቀለሙ የሚታየው በ <emph> አዲስ </emph> ቅድመ እይታ ሳጥን ውስጥ ነው: ከ ንግግሩ በ ቀኝ በኩል:"
#: color_define.xhp
msgctxt ""
@@ -326,7 +326,7 @@ msgctxt ""
"par_id4979705\n"
"help.text"
msgid "%PRODUCTNAME uses only the RGB color model for printing in color. The RGB values of the selected color are displayed below the preview boxes."
-msgstr ""
+msgstr "%PRODUCTNAME የሚጠቀመው የ ቀአስ ቀለም ዘዴ ብቻ ነው በ ቀለም ለ ማተም: የ ተመረጡት የ ቀአስ ዋጋዎች የሚታዩት ከ ታች በኩል ባለው በ ቅድመ እይታ ሳጥኖች ውስጥ ነው:"
#: color_define.xhp
msgctxt ""
@@ -334,7 +334,7 @@ msgctxt ""
"par_id691522706451849\n"
"help.text"
msgid "Press the <emph>Add</emph> button to add the custom color to the <emph>Custom</emph> color palette. A dialog box asking to enter a color name appears. Enter a unique name for the new color within all color names existing in the <emph>Custom</emph> color palette."
-msgstr ""
+msgstr "ይጫኑ የ <emph>መጨመሪያ</emph> ቁልፍ የ ቀለም ማስተካከያ ለ መጨመር ወደ የ <emph>ማስተካከያ</emph> የ ቀለም ማሰናጃ ውስጥ: የ ቀለም ስም እንዲያስገቡ የሚጠይቅ ንግግር ይታያል: ለ አዲሱ ቀለም የ ተለየ ስም ያስገቡ: በ ቀለም ማስተካከያ ውስጥ ካለው በ <emph> ማስተካከያ </emph> ቀለም ማሰናጃ ውስጥ:"
#: color_define.xhp
msgctxt ""
@@ -342,7 +342,7 @@ msgctxt ""
"par_id701522707038880\n"
"help.text"
msgid "To remove a color from the <emph>Custom</emph> color palette, select the <emph>Custom</emph> color palette in the <emph>Colors</emph> area, select the color to be deleted and click <emph>Delete</emph>."
-msgstr ""
+msgstr "ቀለም ለ ማስወገድ ከ <emph> ማስተካከያ </emph> ቀለም ማሰናጃ ውስጥ: ይምረጡ የ <emph> ማስተካከያ </emph> ቀለም ማሰናጃ በ <emph> ቀለሞች </emph> ቦታ ውስጥ: የሚጠፋውን ቀለም ይምረጡ እና ይጫኑ <emph> ማጥፊያ </emph>:"
#: color_define.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/shared/00.po b/source/am/helpcontent2/source/text/shared/00.po
index c50c20fad72..22fd2018205 100644
--- a/source/am/helpcontent2/source/text/shared/00.po
+++ b/source/am/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: 2018-05-22 13:16+0200\n"
-"PO-Revision-Date: 2018-04-30 14:40+0000\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
+"PO-Revision-Date: 2018-06-13 16:19+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1525099239.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1528906766.000000\n"
#: 00000001.xhp
msgctxt ""
@@ -397,16 +397,16 @@ msgctxt ""
"00000001.xhp\n"
"hd_id3149670\n"
"help.text"
-msgid "Back"
-msgstr "ወደ ኋላ"
+msgid "Reset"
+msgstr "እንደነበር መመለሻ"
#: 00000001.xhp
msgctxt ""
"00000001.xhp\n"
"par_id3145068\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optionsdialog/revert\">Resets modified values back to the $[officename] default values.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/optionsdialog/revert\">የተሻሻሉትን ዋጋዎች እንደነበር መመለሻ ወደ $[officename] ነባር ዋጋቸው</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optionsdialog/revert\">Resets changes made to the current tab to those applicable when this dialog was opened.</ahelp>"
+msgstr ""
#: 00000001.xhp
msgctxt ""
@@ -552,6 +552,54 @@ msgctxt ""
msgid "<variable id=\"ShiftF1\">Press Shift+F1 and point to a control to learn more about that control.</variable>"
msgstr "<variable id=\"ShiftF1\">ይጫኑ Shift+F1 እና ወደ መቆጣጠሪያው ይጠቁሙ ስለ መቆጣጠሪያው በበለጠ ለመረዳት</variable>"
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"hd_id631527692833772\n"
+"help.text"
+msgid "Options dialog buttons"
+msgstr "የ ምርጫ ንግግር ቁልፍ"
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"hd_id831527692839432\n"
+"help.text"
+msgid "OK"
+msgstr "እሺ"
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"par_id471527692844934\n"
+"help.text"
+msgid "Save the changes in the page and close the Options dialog."
+msgstr "በ ገጹ ላይ ያሉትን ለውጦች ማስቀመጫ እና የ ምርጫውን ንግግር መዝጊያ:"
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"hd_id261527692850720\n"
+"help.text"
+msgid "Cancel"
+msgstr "መሰረዣ"
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"par_id571527692855533\n"
+"help.text"
+msgid "Close the Options dialog and discard all changes done."
+msgstr "ሁሉንም ለውጦች ማስወገጃ እና የ ምርጫውን ንግግር መዝጊያ:"
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"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 Options dialog."
+msgstr ""
+
#: 00000002.xhp
msgctxt ""
"00000002.xhp\n"
@@ -606,7 +654,7 @@ msgctxt ""
"hd_id151525000078771\n"
"help.text"
msgid "EPUB"
-msgstr ""
+msgstr "EPUB"
#: 00000002.xhp
msgctxt ""
@@ -3190,7 +3238,7 @@ msgctxt ""
"par_id3153365\n"
"help.text"
msgid "$[officename] imports and exports references to deleted sections such as, for example, a referenced column. The whole formula can be viewed during the export process and the deleted reference contains an indication (#REF!) to the reference. A #REF! will be correspondingly created for the reference during the import."
-msgstr "$[officename] ማመሳከሪያዎች ማምጫ እና መላኪያ ለ ጠፊ ክፍሎች እንደ: ለምሳሌ: የ ተመሳከር አምድ: ጠቅላላ መቀመሪያ መመልከት ይቻላል በሚላክበት ሂደት ጊዜ እና የ ጠፉ ማመሳከሪያዎች የያዙት የሚያሳየው (#REF!) ለ ማመሳከሪያ ነው A #REF! ተመሳሳይ ይፈጠራል ለ ማመሳከሪያ በሚመጣ ጊዜ"
+msgstr "$[officename] ማመሳከሪያዎች ማምጫ እና መላኪያ ለ ጠፉ ክፍሎች እንደ: ለምሳሌ: የ ተመሳከረ አምድ: ጠቅላላ መቀመሪያ መመልከት ይቻላል በሚላክበት ሂደት ጊዜ እና የ ጠፉ ማመሳከሪያዎች የያዙት የሚያሳየው (#REF!) ለ ማመሳከሪያ ነው A #REF! ተመሳሳይ ይፈጠራል ለ ማመሳከሪያ በሚመጣ ጊዜ"
#: 00000020.xhp
msgctxt ""
@@ -6006,7 +6054,7 @@ msgctxt ""
"par_id181526424294565\n"
"help.text"
msgid "Choose <emph>File - Digital Signatures - Sign Existing PDF</emph>."
-msgstr ""
+msgstr "ይምረጡ <emph> ፋይል - ዲጂታል ፊርማ - የ ነበረ PDF መፈረሚያ </emph>"
#: 00000401.xhp
msgctxt ""
@@ -6174,7 +6222,7 @@ msgctxt ""
"par_id621525017637963\n"
"help.text"
msgid "Choose <emph>File - Export as EPUB</emph>."
-msgstr ""
+msgstr "ይምረጡ <emph> ፋይል - መላኪያ እንደ PDF </emph>"
#: 00000401.xhp
msgctxt ""
@@ -6182,7 +6230,7 @@ msgctxt ""
"par_id121525017890767\n"
"help.text"
msgid "<image src=\"cmd/sc_exportdirecttoepub.png\" id=\"img_id291525017890767\" width=\"0.566cm\" height=\"0.566cm\"> <alt id=\"alt_id51525017890767\">Export as EPUB</alt> </image>"
-msgstr ""
+msgstr "<image src=\"cmd/sc_exportdirecttoepub.png\" id=\"img_id291525017890767\" width=\"0.566cm\" height=\"0.566cm\"> <alt id=\"alt_id51525017890767\">መላኪያ እንደ EPUB</alt> </image>"
#: 00000401.xhp
msgctxt ""
@@ -6190,7 +6238,7 @@ msgctxt ""
"par_id421525017874627\n"
"help.text"
msgid "Export Directly as EPUB"
-msgstr ""
+msgstr "በ ቀጥታ እንደ EPUB መላኪያ"
#: 00000401.xhp
msgctxt ""
@@ -6198,7 +6246,7 @@ msgctxt ""
"par_id3163421\n"
"help.text"
msgid "Choose <emph>File - Export As - Export as PDF</emph>, Digital Signatures tab"
-msgstr ""
+msgstr "ይምረጡ <emph>ፋይል - መላኪያ እንደ - እንደ PDF መላኪያ</emph>: የ ዲጂታል ፊርማ tab"
#: 00000401.xhp
msgctxt ""
@@ -6206,7 +6254,7 @@ msgctxt ""
"par_id3166421\n"
"help.text"
msgid "Choose <emph>File - Export As - Export as PDF</emph>"
-msgstr ""
+msgstr "ይምረጡ <emph> ፋይል - እንደ PDF መላኪያ </emph>"
#: 00000401.xhp
msgctxt ""
@@ -6670,7 +6718,7 @@ msgctxt ""
"par_id3150396\n"
"help.text"
msgid "Choose <emph>Tools - AutoCorrect - Apply and Edit Changes</emph>. The AutoCorrect dialog appears. Click the <emph>Edit Changes</emph> button and navigate to the <emph>List</emph> tab."
-msgstr ""
+msgstr "ይምረጡ <emph> መሳሪያዎች - በራሱ አራሚ - መፈጸሚያ እና ለውጦችን ማረሚያ </emph> በራሱ አራሚ ንግግር ይታያል: ይጫኑ <emph> ለውጦችን ማረሚያ </emph> ቁልፍ ይመልከቱ ከ <emph> ዝርዝር </emph> tab ገጽ ውስጥ"
#: 00000402.xhp
msgctxt ""
@@ -6950,7 +6998,7 @@ msgctxt ""
"par_id3149962\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">Zoom also with (+) (-) (×) and (÷) on the number keypad</caseinline><caseinline select=\"IMPRESS\">Zoom also with (+) (-) (×) and (÷) on the number keypad</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"DRAW\">ማሳያ እንዲሁም በ (+) (-) (×) እና (÷) በ ቁጥር ገበታ ላይ </caseinline><caseinline select=\"IMPRESS\">ማሳያ እንዲሁም በ (+) (-) (×) እና (÷) በ ቁጥር ገበታ ላይ </caseinline></switchinline>"
#: 00000403.xhp
msgctxt ""
@@ -7102,7 +7150,7 @@ msgctxt ""
"par_id3149046\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> + Shift + F4 keys"
-msgstr ""
+msgstr "Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">ትእዛዝ</caseinline><defaultinline>Ctrl</defaultinline></switchinline> + Shift + F4 ቁልፎች"
#: 00000403.xhp
msgctxt ""
@@ -7158,7 +7206,7 @@ msgctxt ""
"par_idN1091B\n"
"help.text"
msgid "<variable id=\"grid\">Choose <emph>View - Grid</emph> (Impress or Draw)</variable>"
-msgstr ""
+msgstr "<variable id=\"grid\">ይምረጡ <emph>መመልከቻ - መጋጠሚያ</emph> (በ ማስደነቂያ ወይንም መሳያ) </variable>"
#: 00000403.xhp
msgctxt ""
@@ -7166,7 +7214,7 @@ msgctxt ""
"par_idN1092E\n"
"help.text"
msgid "<variable id=\"guides\">Choose <emph>View - Snap Lines</emph> (Impress or Draw)</variable>"
-msgstr ""
+msgstr "<variable id=\"guides\"> ይምረጡ <emph>መመልከቻ - መስመር መቁረጫ</emph> (በ ማስደነቂያ ወይንም መሳያ)</variable>"
#: 00000404.xhp
msgctxt ""
@@ -7670,7 +7718,7 @@ msgctxt ""
"par_id3146957\n"
"help.text"
msgid "<variable id=\"galleryregisterdateien\">Choose <emph>Tools - Gallery</emph> or click the <emph>Gallery </emph>icon on the <emph>Standard</emph> Bar - <emph>New Theme</emph> button - <emph>Files</emph> tab.</variable>"
-msgstr ""
+msgstr "<variable id=\"galleryregisterdateien\">ይምረጡ <emph> መሳሪያዎች - አዳራሽ </emph> ወይንም ይጫኑ የ <emph> አዳራሽ </emph> ምልክት ከ <emph> መደበኛ </emph> እቃ መደርደሪያ ላይ - <emph> አዲስ ገጽታ </emph> ቁልፍ - <emph> ፋይሎች </emph> tab</variable>"
#: 00000406.xhp
msgctxt ""
@@ -7678,7 +7726,7 @@ msgctxt ""
"par_id3166411\n"
"help.text"
msgid "Choose <emph>Tools - Spelling</emph>."
-msgstr ""
+msgstr "ይምረጡ <emph> መሳሪያዎች - ፊደል ማረሚያ </emph>"
#: 00000406.xhp
msgctxt ""
@@ -7718,7 +7766,7 @@ msgctxt ""
"par_id3156326\n"
"help.text"
msgid "<variable id=\"hangul\">Choose <emph>Tools - Language - Hangul/Hanja Conversion</emph>. Asian language support must be enabled.</variable>"
-msgstr ""
+msgstr "<variable id=\"hangul\">ይምረጡ <emph> መሳሪያዎች - ቋንቋ - ሀንጉል/ሀንጃ መቀየሪያ </emph> የ እስያ ቋንቋ ድጋፍ ማስቻል አለብዎት</variable>"
#: 00000406.xhp
msgctxt ""
@@ -7726,7 +7774,7 @@ msgctxt ""
"par_idN10705\n"
"help.text"
msgid "<variable id=\"chinese\">Choose <emph>Tools - Language - Chinese Conversion</emph>. Asian language support must be enabled.</variable>"
-msgstr ""
+msgstr "<variable id=\"chinese\">ይምረጡ <emph> መሳሪያዎች - ቋንቋ - ቻይንኛ መቀየሪያ </emph> የ እስያ ቋንቋ ድጋፍ ማስቻል አለብዎት</variable>"
#: 00000406.xhp
msgctxt ""
@@ -7734,7 +7782,7 @@ msgctxt ""
"par_idN1071E\n"
"help.text"
msgid "<variable id=\"chineseedit\">Choose <emph>Tools - Language - Chinese Conversion</emph> - <emph>Edit terms</emph> button. Asian language support must be enabled.</variable>"
-msgstr ""
+msgstr "<variable id=\"chineseedit\">ይምረጡ <emph>መሳሪያዎች - ቋንቋ - ቻይንኛ መቀየሪያ</emph> - <emph>ደንቦች ማረሚያ</emph> ቁልፍ: የ እስያ ቋንቋ ድጋፍ ማስቻል አለብዎት</variable>"
#: 00000406.xhp
msgctxt ""
@@ -7742,7 +7790,7 @@ msgctxt ""
"par_id3155419\n"
"help.text"
msgid "<variable id=\"rechtschreibungmenue\">Choose <emph>Tools - Spelling</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"rechtschreibungmenue\">ይምረጡ <emph> መሳሪያዎች - ፊደል ማረሚያ </emph></variable>"
#: 00000406.xhp
msgctxt ""
@@ -7750,7 +7798,7 @@ msgctxt ""
"par_id3150771\n"
"help.text"
msgid "<variable id=\"zoptionen\">Choose <emph>Tools - Spelling</emph>, then click <emph>Options</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"zoptionen\">ይምረጡ <emph> መሳሪያዎች - ፊደል ማረሚያ </emph> እና ከዛ ይጫኑ <emph> ምርጫዎች </emph></variable>"
#: 00000406.xhp
msgctxt ""
@@ -7774,7 +7822,7 @@ msgctxt ""
"par_id3153320\n"
"help.text"
msgid "Choose <emph>Tools - Color Replacer</emph> ($[officename] Draw and $[officename] Impress)."
-msgstr ""
+msgstr "ይምረጡ <emph> መሳሪያዎች - ቀለም መቀየሪያ </emph> ($[officename] መሳያ እና $[officename] ማስደነቂያ)"
#: 00000406.xhp
msgctxt ""
@@ -7782,7 +7830,7 @@ msgctxt ""
"par_idN107E9\n"
"help.text"
msgid "<variable id=\"mediaplayer\">Choose <emph>Tools - Media Player</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"mediaplayer\">ይምረጡ <emph> መሳሪያዎች - መገናኛ ማጫወቻ </emph></variable>"
#: 00000406.xhp
msgctxt ""
@@ -7790,7 +7838,7 @@ msgctxt ""
"par_id3151385\n"
"help.text"
msgid "<variable id=\"makro\">Choose <emph>Tools - Macros - Organize Macros - %PRODUCTNAME Basic</emph>, or press <switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>+F11 (if not assigned by your system).</variable>"
-msgstr ""
+msgstr "<variable id=\"makro\">ይምረጡ <emph> መሳሪያዎች - ማክሮስ - ማክሮስ ማደራጃ - %PRODUCTNAME Basic </emph> ወይንም ይጫኑ <switchinline select=\"sys\"><caseinline select=\"MAC\"> ምርጫ </caseinline><defaultinline>Alt</defaultinline></switchinline>+F11 (በ እርስዎ ስርአት ውስጥ ካልተመደበ) </variable>"
#: 00000406.xhp
msgctxt ""
@@ -7798,7 +7846,7 @@ msgctxt ""
"par_id3149456\n"
"help.text"
msgid "Choose <emph>Tools - Macros - Record Macro</emph>."
-msgstr ""
+msgstr "ይምረጡ <emph> መሳሪያዎች - ማክሮስ - ማክሮስ መቅረጫ </emph>"
#: 00000406.xhp
msgctxt ""
@@ -7806,7 +7854,7 @@ msgctxt ""
"par_id3150398\n"
"help.text"
msgid "<variable id=\"passwort\">Choose <emph>Tools - Macros - Organize Macros - %PRODUCTNAME Basic</emph>, click the <emph>Organizer</emph> button, click the <emph>Libraries</emph> tab, and then click the <emph>Password</emph> button.</variable>"
-msgstr ""
+msgstr "<variable id=\"passwort\">ይምረጡ <emph> መሳሪያዎች - ማክሮስ - ማክሮስ አደራጅ - %PRODUCTNAME Basic </emph> ይጫኑ የ <emph> አደራጅ </emph> ቁልፍ: ይጫኑ የ <emph> መጻህፍት ቤት </emph> tab: እና ከዛ ይጫኑ <emph> የ መግቢያ ቃል </emph> ቁልፍ </variable>"
#: 00000406.xhp
msgctxt ""
@@ -7814,7 +7862,7 @@ msgctxt ""
"par_idN10843\n"
"help.text"
msgid "<variable id=\"packagemanager\">Choose <emph>Tools - Extension Manager</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"packagemanager\">ይምረጡ <emph> መሳሪያዎች - የ ተጨማሪ አስተዳዳሪ </emph></variable>"
#: 00000406.xhp
msgctxt ""
@@ -7822,7 +7870,7 @@ msgctxt ""
"par_id9988402\n"
"help.text"
msgid "<variable id=\"packagemanager_eu\">Choose <emph>Tools - Extension Manager</emph>, click <emph>Updates</emph> button.</variable>"
-msgstr ""
+msgstr "<variable id=\"packagemanager_eu\">ይምረጡ <emph> መሳሪያዎች - የ ተጨማሪ አስተዳዳሪ </emph> ይጫኑ <emph> ማሻሻያ </emph> ቁልፍ </variable>"
#: 00000406.xhp
msgctxt ""
@@ -7830,7 +7878,7 @@ msgctxt ""
"par_id3151106\n"
"help.text"
msgid "<variable id=\"xmlfilter\">Choose <emph>Tools - XML Filter Settings</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"xmlfilter\">ይምረጡ <emph> መሳሪያዎች - የ XML ማጣሪያ ማሰናጃዎች </emph></variable>"
#: 00000406.xhp
msgctxt ""
@@ -7838,7 +7886,7 @@ msgctxt ""
"par_id3153778\n"
"help.text"
msgid "<variable id=\"xmlfilteredit\">Choose <emph>Tools - XML Filter Settings</emph>, then click <emph>New</emph> or <emph>Edit</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"xmlfilteredit\">ይምረጡ <emph> መሳሪያዎች - የ XML ማጣሪያ ማሰናጃዎች </emph> እና ከዛ ይጫኑ <emph> አዲስ </emph> ወይንም <emph> ማረሚያ </emph></variable>"
#: 00000406.xhp
msgctxt ""
@@ -7846,7 +7894,7 @@ msgctxt ""
"par_id3148979\n"
"help.text"
msgid "<variable id=\"xmlfiltertest\">Choose <emph>Tools - XML Filter Settings</emph>, then click <emph>Test XSLTs</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"xmlfiltertest\">ይምረጡ <emph> መሳሪያዎች - የ XML ማጣሪያ ማሰናጃዎች </emph> እና ይጫኑ <emph> XSLTs መሞከሪያ </emph></variable>"
#: 00000406.xhp
msgctxt ""
@@ -7854,7 +7902,7 @@ msgctxt ""
"par_id3148672\n"
"help.text"
msgid "<variable id=\"anpassen\">Choose <emph>Tools - Customize</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"anpassen\">ይምረጡ <emph> መሳሪያዎች - ማስተካከያ </emph></variable>"
#: 00000406.xhp
msgctxt ""
@@ -7862,7 +7910,7 @@ msgctxt ""
"par_id3147230\n"
"help.text"
msgid "<variable id=\"menue\">Choose <emph>Tools - Customize - Menus</emph> tab.</variable>"
-msgstr ""
+msgstr "<variable id=\"menue\">ይምረጡ <emph>መሳሪያዎች - ማስተካከያ - ዝርዝር</emph> tab</variable>"
#: 00000406.xhp
msgctxt ""
@@ -7870,7 +7918,7 @@ msgctxt ""
"par_idN108E9\n"
"help.text"
msgid "<variable id=\"menuenew\">Choose <emph>Tools - Customize - Menus</emph> tab, click <emph>New</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"menuenew\">ይምረጡ <emph> መሳሪያዎች - ማስተካከያ - ዝርዝር </emph> tab, ይጫኑ <emph> አዲስ </emph></variable>"
#: 00000406.xhp
msgctxt ""
@@ -7878,7 +7926,7 @@ msgctxt ""
"par_idN10919\n"
"help.text"
msgid "<variable id=\"menuemove\">Choose <emph>Tools - Customize - Menus</emph> tab, click <emph>Menu - Move</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"menuemove\">ይምረጡ <emph> መሳሪያዎች - ማስተካከያ - ዝርዝር </emph> tab, ይጫኑ <emph> ዝርዝር - ማንቀሳቀሻ </emph></variable>"
#: 00000406.xhp
msgctxt ""
@@ -7886,7 +7934,7 @@ msgctxt ""
"par_id3145171\n"
"help.text"
msgid "<variable id=\"tastatur\">Choose <emph>Tools - Customize - Keyboard</emph> tab. A document must be opened.</variable>"
-msgstr ""
+msgstr "<variable id=\"tastatur\">ይምረጡ <emph> መሳሪያዎች - ማስተካከያ - የ ፊደል ገበታ </emph> tab ሰነድ መከፈተ አለበት</variable>"
#: 00000406.xhp
msgctxt ""
@@ -7894,7 +7942,7 @@ msgctxt ""
"par_id3153968\n"
"help.text"
msgid "<variable id=\"symbole\">Choose <emph>Tools - Customize - Toolbars</emph> tab.</variable>"
-msgstr ""
+msgstr "<variable id=\"symbole\">ይምረጡ <emph> መሳሪያዎች - ማስተካከያ - እቃ መደርደሪያ </emph> tab</variable>"
#: 00000406.xhp
msgctxt ""
@@ -7902,7 +7950,7 @@ msgctxt ""
"par_id3144432\n"
"help.text"
msgid "<variable id=\"events\">Choose <emph>Tools - Customize - Events</emph> tab.</variable>"
-msgstr ""
+msgstr "<variable id=\"events\">ይምረጡ <emph> መሳሪያዎች - ማስተካከያ - ሁኔታዎች </emph> tab</variable>"
#: 00000406.xhp
msgctxt ""
@@ -7910,7 +7958,7 @@ msgctxt ""
"par_id3157895\n"
"help.text"
msgid "<variable id=\"autokorr\">Choose <emph>Tools - AutoCorrect - AutoCorrect Options</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"autokorr\">ይምረጡ <emph> መሳሪያዎች - በራሱ አራሚ - በራሱ አራሚ ምርጫዎች </emph></variable>"
#: 00000406.xhp
msgctxt ""
@@ -7918,7 +7966,7 @@ msgctxt ""
"par_id3153768\n"
"help.text"
msgid "<variable id=\"autokooptionen\">Choose <emph>Tools - AutoCorrect - AutoCorrect Options - Options</emph> tab.</variable>"
-msgstr ""
+msgstr "<variable id=\"autokooptionen\">ይምረጡ <emph> መሳሪያዎች - በራሱ አራሚ - በራሱ አራሚ ምርጫዎች - ምርጫዎች </emph> tab</variable>"
#: 00000406.xhp
msgctxt ""
@@ -7926,7 +7974,7 @@ msgctxt ""
"par_id1978514\n"
"help.text"
msgid "<variable id=\"autokosmarttags\">Choose <emph>Tools - AutoCorrect - AutoCorrect Options - Smart Tags</emph> tab.</variable>"
-msgstr ""
+msgstr "<variable id=\"autokosmarttags\">ይምረጡ <emph> መሳሪያዎች - በራሱ አራሚ - በራሱ አራሚ ምርጫዎች - Smart Tags</emph> tab</variable>"
#: 00000406.xhp
msgctxt ""
@@ -7934,7 +7982,7 @@ msgctxt ""
"par_id3155368\n"
"help.text"
msgid "<variable id=\"autokoersetzung\">Choose <emph>Tools - AutoCorrect - AutoCorrect Options - Replace</emph> tab.</variable>"
-msgstr ""
+msgstr "<variable id=\"autokoersetzung\">ይምረጡ <emph> መሳሪያዎች - በራሱ አራሚ - በራሱ አራሚ ምርጫዎች - መቀየሪያ </emph> tab</variable>"
#: 00000406.xhp
msgctxt ""
@@ -7942,7 +7990,7 @@ msgctxt ""
"par_id3155860\n"
"help.text"
msgid "<variable id=\"autokoausnahmen\">Choose <emph>Tools - AutoCorrect - AutoCorrect Options - Exceptions</emph> tab.</variable>"
-msgstr ""
+msgstr "<variable id=\"autokoausnahmen\">ይምረጡ <emph> መሳሪያዎች - በራሱ አራሚ - በራሱ አራሚ ምርጫዎች - የተለዩ </emph> tab</variable>"
#: 00000406.xhp
msgctxt ""
@@ -7950,7 +7998,7 @@ msgctxt ""
"par_id3153094\n"
"help.text"
msgid "<variable id=\"autokotyafz\">Choose <emph>Tools - AutoCorrect - AutoCorrect Options - Localized Options</emph> tab.</variable>"
-msgstr ""
+msgstr "<variable id=\"autokotyafz\">ይምረጡ <emph> መሳሪያዎች - በራሱ አራሚ - በራሱ አራሚ ምርጫዎች - የ ቋንቋ ምርጫ </emph> tab</variable>"
#: 00000406.xhp
msgctxt ""
@@ -7958,7 +8006,7 @@ msgctxt ""
"par_id3153945\n"
"help.text"
msgid "<variable id=\"autokoworterg\">Choose <emph>Tools - AutoCorrect - AutoCorrect Options - Word Completion</emph> tab.</variable>"
-msgstr ""
+msgstr "<variable id=\"autokoworterg\">ይምረጡ <emph> መሳሪያዎች - በራሱ አራሚ - በራሱ አራሚ ምርጫዎች - ቃላት መጨረሻ </emph> tab</variable>"
#: 00000406.xhp
msgctxt ""
@@ -7966,7 +8014,7 @@ msgctxt ""
"par_id3151352\n"
"help.text"
msgid "<variable id=\"exopas\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Calc - View</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"exopas\">ይምረጡ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች </emph></caseinline><defaultinline><emph> መሳሪያዎች - ምርጫዎች </emph></defaultinline></switchinline><emph> - %PRODUCTNAME ሰንጠረዥ - መመልከቻ </emph></variable>"
#: 00000406.xhp
msgctxt ""
@@ -7974,7 +8022,7 @@ msgctxt ""
"par_id3154127\n"
"help.text"
msgid "<variable id=\"etoplayout\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Impress/%PRODUCTNAME Draw - View</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"etoplayout\"> ይምረጡ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች</emph></caseinline><defaultinline><emph> መሳሪያዎች - ምርጫዎች</emph></defaultinline></switchinline><emph> - %PRODUCTNAME ማስደነቂያ/%PRODUCTNAME መሳያ – መመልከቻ</emph>:</variable>"
#: 00000406.xhp
msgctxt ""
@@ -7982,7 +8030,7 @@ msgctxt ""
"par_id3149664\n"
"help.text"
msgid "<variable id=\"etotm\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Draw - General</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"etotm\">ይምረጡ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች </emph></caseinline><defaultinline><emph> መሳሪያዎች - ምርጫዎች </emph></defaultinline></switchinline><emph> - %PRODUCTNAME መሳያ - ባጠቃላይ </emph></variable>"
#: 00000406.xhp
msgctxt ""
@@ -8006,7 +8054,7 @@ msgctxt ""
"par_id3147295\n"
"help.text"
msgid "<variable id=\"optionen\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline>.</variable>"
-msgstr ""
+msgstr "<variable id=\"optionen\">ይምረጡ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች </emph></caseinline><defaultinline><emph> መሳሪያዎች - ምርጫ </emph></defaultinline></switchinline>:</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8014,7 +8062,7 @@ msgctxt ""
"par_id3156006\n"
"help.text"
msgid "<variable id=\"optionenallgemein\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename]</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"optionenallgemein\">ይምረጡ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች</emph></caseinline><defaultinline><emph> መሳሪያዎች - ምርጫዎች </emph></defaultinline></switchinline><emph> - $[officename]</emph></variable>"
#: 00000406.xhp
msgctxt ""
@@ -8022,7 +8070,7 @@ msgctxt ""
"par_id3155308\n"
"help.text"
msgid "<variable id=\"benutzerdaten\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - User Data</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"benutzerdaten\">ይምረጡ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች </emph></caseinline><defaultinline><emph> መሳሪያዎች - ምርጫ </emph></defaultinline></switchinline><emph> - $[officename] - የ ተጠቃሚ ዳታ </emph></variable>"
#: 00000406.xhp
msgctxt ""
@@ -8030,7 +8078,7 @@ msgctxt ""
"par_id3155312\n"
"help.text"
msgid "<variable id=\"allg\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - General</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"allg\">ይምረጡ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች </emph></caseinline><defaultinline><emph> መሳሪያዎች - ምርጫ </emph></defaultinline></switchinline><emph> - $[officename] - ባጠቃላይ </emph></variable>"
#: 00000406.xhp
msgctxt ""
@@ -8038,7 +8086,7 @@ msgctxt ""
"par_id3150032\n"
"help.text"
msgid "<variable id=\"arbeit\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - Memory</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"arbeit\">ይምረጡ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች </emph></caseinline><defaultinline><emph> መሳሪያዎች - ምርጫ </emph></defaultinline></switchinline><emph> - $[officename] - ማስታወሻ </emph></variable>"
#: 00000406.xhp
msgctxt ""
@@ -8046,7 +8094,7 @@ msgctxt ""
"par_id3159153\n"
"help.text"
msgid "<variable id=\"ansicht\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - View</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"ansicht\">ይምረጡ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች </emph></caseinline><defaultinline><emph> መሳሪያዎች - ምርጫ </emph></defaultinline></switchinline><emph> - $[officename] - መመልከቻ </emph></variable>"
#: 00000406.xhp
msgctxt ""
@@ -8054,7 +8102,7 @@ msgctxt ""
"par_id3166413\n"
"help.text"
msgid "<variable id=\"drucken\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - Print</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"drucken\">ይምረጡ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች </emph></caseinline><defaultinline><emph> መሳሪያዎች - ምርጫ </emph></defaultinline></switchinline><emph> - $[officename] - ማተሚያ </emph></variable>"
#: 00000406.xhp
msgctxt ""
@@ -8062,7 +8110,7 @@ msgctxt ""
"par_id3147330\n"
"help.text"
msgid "Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - Paths</emph>."
-msgstr ""
+msgstr "ይምረጡ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች </emph></caseinline><defaultinline><emph> መሳሪያዎች - ምርጫ </emph></defaultinline></switchinline><emph> - $[officename] - መንገድ </emph>:"
#: 00000406.xhp
msgctxt ""
@@ -8070,7 +8118,7 @@ msgctxt ""
"par_id3150036\n"
"help.text"
msgid "Choose <emph>Tools - AutoText - Path</emph>."
-msgstr ""
+msgstr "ይምረጡ <emph> መሳሪያዎች - በራሱ ጽሁፍ - መንገድ </emph>"
#: 00000406.xhp
msgctxt ""
@@ -8078,7 +8126,7 @@ msgctxt ""
"par_id3149581\n"
"help.text"
msgid "Choose <emph>Format - Area - Colors</emph> tab."
-msgstr ""
+msgstr "ይምረጡ <emph> አቀራረብ - ቦታ - ቀለሞች </emph> tab"
#: 00000406.xhp
msgctxt ""
@@ -8102,7 +8150,7 @@ msgctxt ""
"par_id3151037\n"
"help.text"
msgid "Press the <emph>Color Dialog</emph> button in the <emph>Illumination</emph> tab of the <emph>3D Effects</emph> dialog."
-msgstr ""
+msgstr "ይጫኑ የ <emph> ቀለም ንግግር</emph> ቁልፍ በ <emph> ብርሃን </emph> tab በ <emph>3ዲ ውጤት </emph> ንግግር ውስጥ:"
#: 00000406.xhp
msgctxt ""
@@ -8110,7 +8158,7 @@ msgctxt ""
"par_id3149403\n"
"help.text"
msgid "<variable id=\"schriers\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - Fonts</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"schriers\">ይምረጡ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች </emph></caseinline><defaultinline><emph> መሳሪያዎች - ምርጫ </emph></defaultinline></switchinline><emph> - $[officename] - ፊደሎች </emph></variable>"
#: 00000406.xhp
msgctxt ""
@@ -8118,7 +8166,7 @@ msgctxt ""
"par_id3150717\n"
"help.text"
msgid "<variable id=\"scripting\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - Security</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"scripting\">ይምረጡ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች </emph></caseinline><defaultinline><emph> መሳሪያዎች - ምርጫ </emph></defaultinline></switchinline><emph> - $[officename] - ደህንነት </emph></variable>"
#: 00000406.xhp
msgctxt ""
@@ -8126,7 +8174,7 @@ msgctxt ""
"par_idN11C3D\n"
"help.text"
msgid "<variable id=\"advanced\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - Advanced</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"advanced\">ይምረጡ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች </emph></caseinline><defaultinline><emph> መሳሪያዎች - ምርጫ </emph></defaultinline></switchinline><emph> - $[officename] - የረቀቀ </emph></variable>"
#: 00000406.xhp
msgctxt ""
@@ -8134,7 +8182,7 @@ msgctxt ""
"par_idN11C3E\n"
"help.text"
msgid "<variable id=\"personalization\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - Personalization</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"personalization\">ይምረጡ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች </emph></caseinline><defaultinline><emph> መሳሪያዎች - ምርጫ </emph></defaultinline></switchinline><emph> - $[officename] - የ ግል ማድረጊያ </emph>:</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8142,7 +8190,7 @@ msgctxt ""
"par_idN11C3F\n"
"help.text"
msgid "<variable id=\"opencl\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - Open CL</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"opencl\">ይምረጡ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች </emph></caseinline><defaultinline><emph> መሳሪያዎች - ምርጫ </emph></defaultinline></switchinline><emph> - $[officename] - Open CL</emph></variable>"
#: 00000406.xhp
msgctxt ""
@@ -8150,7 +8198,7 @@ msgctxt ""
"par_idN11C3G\n"
"help.text"
msgid "<variable id=\"basicide\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - Basic IDE</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"basicide\"> ይምረጡ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች</emph></caseinline><defaultinline><emph> መሳሪያዎች - ምርጫ</emph></defaultinline></switchinline><emph> - $[officename] - Basic IDE</emph></variable>"
#: 00000406.xhp
msgctxt ""
@@ -8158,7 +8206,7 @@ msgctxt ""
"par_id5485702\n"
"help.text"
msgid "<variable id=\"online_update\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - Online Update</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"online_update\">ይምረጡ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች </emph></caseinline><defaultinline><emph> መሳሪያዎች - ምርጫ </emph></defaultinline></switchinline><emph> - $[officename] - በ መስመር ላይ ማሻሻያ </emph></variable>"
#: 00000406.xhp
msgctxt ""
@@ -8166,7 +8214,7 @@ msgctxt ""
"par_id3146989\n"
"help.text"
msgid "<variable id=\"accessibility\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - Accessibility</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"accessibility\">ይምረጡ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች </emph></caseinline><defaultinline><emph> መሳሪያዎች - ምርጫ </emph></defaultinline></switchinline><emph> - $[officename] - መድረሻ </emph></variable>"
#: 00000406.xhp
msgctxt ""
@@ -8174,7 +8222,7 @@ msgctxt ""
"par_id3144746\n"
"help.text"
msgid "<variable id=\"appearance\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - Application Colors</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"appearance\">ይምረጡ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች </emph></caseinline><defaultinline><emph> መሳሪያዎች - ምርጫ </emph></defaultinline></switchinline><emph> - $[officename] - የ መተግበሪያ ቀለም </emph></variable>"
#: 00000406.xhp
msgctxt ""
@@ -8182,7 +8230,7 @@ msgctxt ""
"par_id3156355\n"
"help.text"
msgid "<variable id=\"landen\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - Load/Save</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"landen\">ይምረጡ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች </emph></caseinline><defaultinline><emph> መሳሪያዎች - ምርጫዎች </emph></defaultinline></switchinline><emph> - መጫኛ/ማስቀመጫ </emph></variable>"
#: 00000406.xhp
msgctxt ""
@@ -8190,7 +8238,7 @@ msgctxt ""
"par_id3147223\n"
"help.text"
msgid "<variable id=\"rsave\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - Load/Save - General</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"rsave\">ይምረጡ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች </emph></caseinline><defaultinline><emph> መሳሪያዎች - ምርጫዎች </emph></defaultinline></switchinline><emph> - መጫኛ/ማስቀመጫ - ባጠቃላይ </emph></variable>"
#: 00000406.xhp
msgctxt ""
@@ -8198,7 +8246,7 @@ msgctxt ""
"par_id3153958\n"
"help.text"
msgid "<variable id=\"etsofi\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - Load/Save</emph> - <emph>VBA Properties</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"etsofi\"> ይምረጡ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች</emph></caseinline><defaultinline><emph> መሳሪያዎች - ምርጫ</emph></defaultinline></switchinline><emph> - መጫኛ/ማስቀመጫ</emph> - <emph>VBA Properties</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8206,7 +8254,7 @@ msgctxt ""
"par_id3153707\n"
"help.text"
msgid "<variable id=\"etsofi2\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - Load/Save</emph> - <emph>Microsoft Office</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"etsofi2\">ይምረጡ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች </emph></caseinline><defaultinline><emph> መሳሪያዎች - ምርጫዎች </emph></defaultinline></switchinline><emph> - መጫኛ/ማስቀመጫ </emph> - <emph> Microsoft Office </emph></variable>"
#: 00000406.xhp
msgctxt ""
@@ -8214,7 +8262,7 @@ msgctxt ""
"par_id3145667\n"
"help.text"
msgid "<variable id=\"html\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - Load/Save</emph> - <emph>HTML Compatibility</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"html\">ይምረጡ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች </emph></caseinline><defaultinline><emph>መሳሪያዎች - ምርጫዎች</emph></defaultinline></switchinline><emph> - መጫኛ/ማስቀመጫ</emph> - <emph>HTML Compatibility</emph></variable>"
#: 00000406.xhp
msgctxt ""
@@ -8222,7 +8270,7 @@ msgctxt ""
"par_id3146792\n"
"help.text"
msgid "<variable id=\"asiatypo\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - Language Settings</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"asiatypo\">ይምረጡ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች </emph></caseinline><defaultinline><emph> መሳሪያዎች - ምርጫዎች </emph></defaultinline></switchinline><emph> - ቋንቋ ማሰናጃዎች </emph></variable>"
#: 00000406.xhp
msgctxt ""
@@ -8230,7 +8278,7 @@ msgctxt ""
"par_id3157965\n"
"help.text"
msgid "<variable id=\"sprachen\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - Language Settings - Languages</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"sprachen\">ይምረጡ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች </emph></caseinline><defaultinline><emph> መሳሪያዎች - ምርጫ </emph></defaultinline></switchinline><emph> - ቋንቋ ማሰናጃ - ቋንቋዎች </emph></variable>"
#: 00000406.xhp
msgctxt ""
@@ -8238,7 +8286,7 @@ msgctxt ""
"par_id3155446\n"
"help.text"
msgid "<variable id=\"sprachenctl\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - Language Settings - Languages - Complex Text Layout</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"sprachenctl\">ይምረጡ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች</emph></caseinline><defaultinline><emph>መሳሪያዎች - ምርጫ</emph></defaultinline></switchinline><emph> - ቋንቋ ማሰናጃዎች - ቋንቋዎች - ውስብስብ የ ጽሁፍ እቅድ</emph></variable>"
#: 00000406.xhp
msgctxt ""
@@ -8246,7 +8294,7 @@ msgctxt ""
"par_id3150745\n"
"help.text"
msgid "Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - Language Settings - Languages</emph>."
-msgstr ""
+msgstr "ይምረጡ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች </emph></caseinline><defaultinline><emph> መሳሪያዎች - ምርጫዎች </emph></defaultinline></switchinline><emph> - ቋንቋ ማሰናጃዎች - ቋንቋዎች </emph>"
#: 00000406.xhp
msgctxt ""
@@ -8254,7 +8302,7 @@ msgctxt ""
"par_id3148407\n"
"help.text"
msgid "Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - Language Settings - Writing Aids</emph>, in the <emph>Available language modules</emph> list, select one of the language modules and then click <emph>Edit</emph>."
-msgstr ""
+msgstr "ይምረጡ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች</emph></caseinline><defaultinline><emph>መሳሪያዎች - ምርጫ</emph></defaultinline></switchinline><emph> - ቋንቋ ማሰናጃ - የ መጻፊያ እርዳታ</emph> በ <emph> ዝግጁ የ ቋንቋ ክፍሎች</emph> ዝርዝር ውስጥ: ይምረጡ አንድ የ ቋንቋ ክፍል እና ከዛ ይጫኑ <emph> ማረሚያ </emph>:"
#: 00000406.xhp
msgctxt ""
@@ -8262,7 +8310,7 @@ msgctxt ""
"par_id3150324\n"
"help.text"
msgid "Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - Language Settings - Writing Aids</emph>."
-msgstr ""
+msgstr "ይምረጡ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች </emph></caseinline><defaultinline><emph> መሳሪያዎች - ምርጫዎች </emph></defaultinline></switchinline><emph> - ቋንቋ ማሰናጃዎች - የ መጻፊያ እርዳታ </emph>:"
#: 00000406.xhp
msgctxt ""
@@ -8270,7 +8318,7 @@ msgctxt ""
"par_id3145620\n"
"help.text"
msgid "<variable id=\"suchja\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - Language Settings - Searching in Japanese</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"suchja\">ይምረጡ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች </emph></caseinline><defaultinline><emph> መሳሪያዎች - ምርጫ </emph></defaultinline></switchinline><emph> - ቋንቋ ማሰናጃ - በ ጃፓንኛ መፈለጊያ </emph>:</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8278,7 +8326,7 @@ msgctxt ""
"par_id3147341\n"
"help.text"
msgid "<variable id=\"asialayout\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - Language Settings - Asian Layout</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"asialayout\">ይምረጡ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች </emph></caseinline><defaultinline><emph> መሳሪያዎች - ምርጫ </emph></defaultinline></switchinline><emph> - ቋንቋ ማሰናጃ - የ እስያን እቅድ </emph></variable>"
#: 00000406.xhp
msgctxt ""
@@ -8286,7 +8334,7 @@ msgctxt ""
"par_id3147359\n"
"help.text"
msgid "<variable id=\"internet\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - Internet</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"internet\">ይምረጡ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች </emph></caseinline><defaultinline><emph> መሳሪያዎች - ምርጫ </emph></defaultinline></switchinline><emph> - ኢንተርኔት </emph>:</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8294,7 +8342,7 @@ msgctxt ""
"par_id3156374\n"
"help.text"
msgid "<variable id=\"internet1\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - Internet - Proxy</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"internet1\">ይምረጡ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች </emph></caseinline><defaultinline><emph> መሳሪያዎች - ምርጫዎች </emph></defaultinline></switchinline><emph> - የ ኢንተርኔት - ወኪል </emph>:</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8302,7 +8350,7 @@ msgctxt ""
"par_id3149280\n"
"help.text"
msgid "<variable id=\"optionentextdokument\">Open a text document, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"optionentextdokument\">የ ጽሁፍ ሰነድ መክፈቻ ይምረጡ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች </emph></caseinline><defaultinline><emph>መሳሪያዎች - ምርጫ</emph></defaultinline></switchinline><emph> - %PRODUCTNAME መጻፊያ </emph>:</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8310,7 +8358,7 @@ msgctxt ""
"par_idN10E4F\n"
"help.text"
msgid "<variable id=\"compatibility\">Open a text document, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer - Compatibility</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"compatibility\">የ ጽሁፍ ሰነድ መክፈቻ ይምረጡ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች</emph></caseinline><defaultinline><emph>መሳሪያዎች - ምርጫ</emph></defaultinline></switchinline><emph> - %PRODUCTNAME መጻፊያ - ተስማሚነቱን</emph>:</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8318,7 +8366,7 @@ msgctxt ""
"par_id3148929\n"
"help.text"
msgid "<variable id=\"laden\">Open a text document, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer - General</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"laden\">የ ጽሁፍ ሰነድ መክፈቻ ይምረጡ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች</emph></caseinline><defaultinline><emph>መሳሪያዎች - ምርጫ</emph></defaultinline></switchinline><emph> - %PRODUCTNAME መጻፊያ - ባጠቃላይ </emph></variable>"
#: 00000406.xhp
msgctxt ""
@@ -8326,7 +8374,7 @@ msgctxt ""
"par_idN10F2F\n"
"help.text"
msgid "<variable id=\"mailmergeemail\">Open a text document, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer - Mail Merge E-mail</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"mailmergeemail\">የ ጽሁፍ ሰነድ መክፈቻ ይምረጡ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች </emph></caseinline><defaultinline><emph> መሳሪያዎች - ምርጫ </emph></defaultinline></switchinline><emph> - %PRODUCTNAME መጻፊያ - ደብዳቤ ማዋሀጃ ኢ-ሜይል </emph></variable>"
#: 00000406.xhp
msgctxt ""
@@ -8334,7 +8382,7 @@ msgctxt ""
"par_id3149825\n"
"help.text"
msgid "<variable id=\"einfuegenbeschriftung\">Open a text document, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer - AutoCaption</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"einfuegenbeschriftung\">የ ጽሁፍ ሰነድ መክፈቻ ይምረጡ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች </emph></caseinline><defaultinline><emph>መሳሪያዎች - ምርጫ</emph></defaultinline></switchinline><emph> - %PRODUCTNAME መጻፊያ - በራሱ መግለጫ</emph>:</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8342,7 +8390,7 @@ msgctxt ""
"par_id3155333\n"
"help.text"
msgid "<variable id=\"layout\">Open a text document, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer/%PRODUCTNAME Writer/Web</emph> - <emph>View</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"layout\">የ ጽሁፍ ሰነድ መክፈቻ ይምረጡ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች </emph></caseinline><defaultinline><emph> መሳሪያዎች - ምርጫ </emph></defaultinline></switchinline><emph> - %PRODUCTNAME መጻፊያ/%PRODUCTNAME መጻፊያ/ዌብ </emph>- <emph> መመልከቻ </emph>:</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8350,7 +8398,7 @@ msgctxt ""
"par_id3146316\n"
"help.text"
msgid "<variable id=\"registerschattencursor\">Open a text document, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer/%PRODUCTNAME Writer/Web</emph> - <emph>Formatting Aids</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"registerschattencursor\">የ ጽሁፍ ሰነድ መክፈቻ ይምረጡ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች </emph></caseinline><defaultinline><emph> መሳሪያዎች - ምርጫ </emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer/%PRODUCTNAME መጻፊያ/ዌብ </emph> - <emph> የ አቀራረብ እርዳታ </emph>:</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8358,7 +8406,7 @@ msgctxt ""
"par_id3153534\n"
"help.text"
msgid "<variable id=\"raster\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer/%PRODUCTNAME Calc/%PRODUCTNAME Writer/Web - Grid</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"raster\">ይምረጡ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች </emph></caseinline><defaultinline><emph> መሳሪያዎች - ምርጫ </emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer/%PRODUCTNAME Calc/%PRODUCTNAME መጻፊያ/ዌብ - መጋጠሚያ </emph>:</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8366,7 +8414,7 @@ msgctxt ""
"par_id3155961\n"
"help.text"
msgid "Open a text document, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer - Basic Fonts (Western)</emph>."
-msgstr ""
+msgstr "የ ጽሁፍ ሰነድ መክፈቻ ይምረጡ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች</emph></caseinline><defaultinline><emph>መሳሪያዎች - ምርጫ</emph></defaultinline></switchinline><emph> - %PRODUCTNAME መጻፊያ - መሰረታዊ ፊደሎች (Western)</emph>:"
#: 00000406.xhp
msgctxt ""
@@ -8374,7 +8422,7 @@ msgctxt ""
"par_id3159313\n"
"help.text"
msgid "Open a text document, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer - Basic Fonts (Asian)</emph>. Asian language support must be enabled."
-msgstr ""
+msgstr "የ ጽሁፍ ሰነድ መክፈቻ ይምረጡ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች </emph></caseinline><defaultinline><emph> መሳሪያዎች - ምርጫ </emph></defaultinline></switchinline><emph> - %PRODUCTNAME መጻፊያ - መሰረታዊ ፊደሎች (እስያ)</emph> ዝግጁ የሚሆነው የ እስያ ቋንቋ ድጋፍ ካስቻሉ ነው:"
#: 00000406.xhp
msgctxt ""
@@ -8382,7 +8430,7 @@ msgctxt ""
"par_id3155607\n"
"help.text"
msgid "<variable id=\"drucken1\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer/ %PRODUCTNAME Writer/Web</emph> - <emph>Print</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"drucken1\">ይምረጡ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች </emph></caseinline><defaultinline><emph> መሳሪያዎች - ምርጫ </emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer/ %PRODUCTNAME መጻፊያ/ዌብ </emph>- <emph> ማተሚያ </emph>:</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8390,7 +8438,7 @@ msgctxt ""
"par_id3988769\n"
"help.text"
msgid "<variable id=\"drucken2\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Calc - Print</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"drucken2\">ይምረጡ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች </emph></caseinline><defaultinline><emph> መሳሪያዎች - ምርጫ </emph></defaultinline></switchinline><emph> - %PRODUCTNAME ሰንጠረዥ - ማተሚያ </emph>:</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8398,7 +8446,7 @@ msgctxt ""
"par_id3145769\n"
"help.text"
msgid "<variable id=\"registertabelle\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer/%PRODUCTNAME Writer/Web - Table</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"registertabelle\">ይምረጡ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች</emph></caseinline><defaultinline><emph>መሳሪያዎች - ምርጫ</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer/%PRODUCTNAME መጻፊያ/ዌብ - ሰንጠረዥ</emph>:</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8406,7 +8454,7 @@ msgctxt ""
"par_id3147005\n"
"help.text"
msgid "<variable id=\"registeraenderungen\">Open a text document, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer - Changes</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"registeraenderungen\">የ ጽሁፍ ሰነድ መክፈቻ ይምረጡ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች</emph></caseinline><defaultinline><emph>መሳሪያዎች - ምርጫ</emph></defaultinline></switchinline><emph> - %PRODUCTNAME መጻፊያ - ለውጦቹ</emph>:</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8414,7 +8462,7 @@ msgctxt ""
"par_id3159333\n"
"help.text"
msgid "<variable id=\"webbrowser1\">Open an HTML document, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer/Web</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"webbrowser1\">የ HTML ሰነድ መክፈቻ ይምረጡ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች</emph></caseinline><defaultinline><emph>መሳሪያዎች - ምርጫ</emph></defaultinline></switchinline><emph> - %PRODUCTNAME መጻፊያ/ዌብ</emph>:</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8422,7 +8470,7 @@ msgctxt ""
"par_id3149448\n"
"help.text"
msgid "<variable id=\"hinter\">Open an HTML document, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer/Web - Background</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"hinter\">የ HTML ሰነድ መክፈቻ ይምረጡ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች</emph></caseinline><defaultinline><emph>መሳሪያዎች - ምርጫ</emph></defaultinline></switchinline><emph> - %PRODUCTNAME መጻፊያ/ዌብ - መደብ</emph>:</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8430,7 +8478,7 @@ msgctxt ""
"par_id3149336\n"
"help.text"
msgid "<variable id=\"tabellendokument\">Open a spreadsheet document, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Calc</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"tabellendokument\">የ ሰንጠረዥ ሰነድ መክፈቻ ይምረጡ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች</emph></caseinline><defaultinline><emph>መሳሪያዎች - ምርጫ</emph></defaultinline></switchinline><emph> - %PRODUCTNAME ሰንጠረዥ</emph>:</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8438,7 +8486,7 @@ msgctxt ""
"par_id3152966\n"
"help.text"
msgid "<variable id=\"tabelleeingabe\">Open a spreadsheet document, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Calc - General</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"tabelleeingabe\">የ ሰንጠረዥ ሰነድ መክፈቻ ይምረጡ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች</emph></caseinline><defaultinline><emph>መሳሪያዎች - ምርጫ</emph></defaultinline></switchinline><emph> - %PRODUCTNAME ሰንጠረዥ - ባጠቃላይ</emph>:</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8446,7 +8494,7 @@ msgctxt ""
"par_id3149814\n"
"help.text"
msgid "<variable id=\"tabelleinhalte\">Open a spreadsheet document, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Calc - View</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"tabelleinhalte\">የ ሰንጠረዥ ሰነድ መክፈቻ ይምረጡ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች</emph></caseinline><defaultinline><emph>መሳሪያዎች - ምርጫ</emph></defaultinline></switchinline><emph> - %PRODUCTNAME ሰንጠረዥ - መመልከቻ</emph>:</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8454,7 +8502,7 @@ msgctxt ""
"par_id3154656\n"
"help.text"
msgid "<variable id=\"exopbe\">Open a spreadsheet document, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Calc - Calculate</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"exopbe\">የ ሰንጠረዥ ሰነድ መክፈቻ ይምረጡ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች</emph></caseinline><defaultinline><emph>መሳሪያዎች - ምርጫ</emph></defaultinline></switchinline><emph> - %PRODUCTNAME ሰንጠረዥ - ማስሊያ</emph>:</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8462,7 +8510,7 @@ msgctxt ""
"par_id3154657\n"
"help.text"
msgid "<variable id=\"exopco\">Open a spreadsheet document, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Calc - Compatibility</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"exopco\">የ ሰንጠረዥ ሰነድ መክፈቻ ይምረጡ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች</emph></caseinline><defaultinline><emph>መሳሪያዎች - ምርጫ</emph></defaultinline></switchinline><emph> - %PRODUCTNAME ሰንጠረዥ - ተስማሚነቱ</emph></variable>"
#: 00000406.xhp
msgctxt ""
@@ -8470,7 +8518,7 @@ msgctxt ""
"par_id3152494\n"
"help.text"
msgid "<variable id=\"exopso\">Open a spreadsheet document, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Calc - Sort Lists</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"exopso\">የ ሰንጠረዥ ሰነድ መክፈቻ ይምረጡ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች</emph></caseinline><defaultinline><emph>መሳሪያዎች - ምርጫ</emph></defaultinline></switchinline><emph> - %PRODUCTNAME ሰንጠረዥ - ዝርዝሮች መለያ</emph></variable>"
#: 00000406.xhp
msgctxt ""
@@ -8478,7 +8526,7 @@ msgctxt ""
"par_id3152495\n"
"help.text"
msgid "<variable id=\"exopfo\">Open a spreadsheet document, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Calc - Formula</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"exopfo\">የ ሰንጠረዥ ሰነድ መክፈቻ ይምረጡ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች</emph></caseinline><defaultinline><emph>መሳሪያዎች - ምርጫ</emph></defaultinline></switchinline><emph> - %PRODUCTNAME ሰንጠረዥ - መቀመሪያ</emph></variable>"
#: 00000406.xhp
msgctxt ""
@@ -8486,7 +8534,7 @@ msgctxt ""
"par_id3152496\n"
"help.text"
msgid "<variable id=\"exopde\">Open a spreadsheet document, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Calc - Defaults</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"exopde\">የ ሰንጠረዥ ሰነድ መክፈቻ ይምረጡ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች</emph></caseinline><defaultinline><emph>መሳሪያዎች - ምርጫ</emph></defaultinline></switchinline><emph> - %PRODUCTNAME ሰንጠረዥ - ነባር</emph></variable>"
#: 00000406.xhp
msgctxt ""
@@ -8494,7 +8542,7 @@ msgctxt ""
"par_id3149527\n"
"help.text"
msgid "<variable id=\"listekopieren\">Open a spreadsheet document, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Calc - Sort Lists - Copy</emph> button.</variable>"
-msgstr ""
+msgstr "<variable id=\"listekopieren\">የ ሰንጠረዥ ሰነድ መክፈቻ ይምረጡ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች </emph></caseinline><defaultinline><emph> መሳሪያዎች - ምርጫ </emph></defaultinline></switchinline><emph> - %PRODUCTNAME ሰንጠረዥ - ዝርዝር መለያ - ኮፒ </emph> ቁልፍ </variable>"
#: 00000406.xhp
msgctxt ""
@@ -8502,7 +8550,7 @@ msgctxt ""
"par_id3154903\n"
"help.text"
msgid "<variable id=\"exopaen\">Open a spreadsheet document, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Calc - Changes</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"exopaen\">የ ሰንጠረዥ ሰነድ መክፈቻ ይምረጡ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች</emph></caseinline><defaultinline><emph>መሳሪያዎች - ምርጫ</emph></defaultinline></switchinline><emph> - %PRODUCTNAME ሰንጠረዥ - መቀየሪያ</emph></variable>"
#: 00000406.xhp
msgctxt ""
@@ -8510,7 +8558,7 @@ msgctxt ""
"par_id3152582\n"
"help.text"
msgid "<variable id=\"etotall\">Open a presentation document, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Impress</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"etotall\">የ ማቅረቢያ ሰነድ መክፈቻ ይምረጡ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች</emph></caseinline><defaultinline><emph>መሳሪያዎች - ምርጫዎች</emph></defaultinline></switchinline><emph> - %PRODUCTNAME ማስደነቂያ</emph></variable>:"
#: 00000406.xhp
msgctxt ""
@@ -8518,7 +8566,7 @@ msgctxt ""
"par_id3148418\n"
"help.text"
msgid "<variable id=\"etopsonstiges\">Open a presentation document, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Impress/%PRODUCTNAME Draw - General</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"etopsonstiges\">የ ማቅረቢያ ሰነድ መክፈቻ ይምረጡ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች </emph></caseinline><defaultinline><emph> መሳሪያዎች - ምርጫ </emph></defaultinline></switchinline><emph> - %PRODUCTNAME Impress/%PRODUCTNAME መሳያ - ባጠቃላይ </emph></variable>"
#: 00000406.xhp
msgctxt ""
@@ -8526,7 +8574,7 @@ msgctxt ""
"par_id3150380\n"
"help.text"
msgid "<variable id=\"etopas\">Open a presentation document, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Impress/%PRODUCTNAME Draw - View</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"etopas\">የ ማቅረቢያ ሰነድ መክፈቻ ይምረጡ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች</emph></caseinline><defaultinline><emph>መሳሪያዎች - ምርጫዎች</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Impress/%PRODUCTNAME መሳያ - መመልከቻ</emph></variable>"
#: 00000406.xhp
msgctxt ""
@@ -8534,7 +8582,7 @@ msgctxt ""
"par_id3166423\n"
"help.text"
msgid "<variable id=\"etopfe\">Open a presentation document, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Impress/%PRODUCTNAME Draw - Grid</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"etopfe\">የ ማቅረቢያ ሰነድ መክፈቻ ይምረጡ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች</emph></caseinline><defaultinline><emph>መሳሪያዎች - ምርጫ</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Impress/%PRODUCTNAME መሳያ - መጋጠሚያ</emph></variable>"
#: 00000406.xhp
msgctxt ""
@@ -8542,7 +8590,7 @@ msgctxt ""
"par_id3148873\n"
"help.text"
msgid "<variable id=\"etopdk\">Open a presentation document, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Impress/%PRODUCTNAME Draw - Print</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"etopdk\">የ ማቅረቢያ ሰነድ መክፈቻ ይምረጡ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች</emph></caseinline><defaultinline><emph>መሳሪያዎች - ምርጫ</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Impress/%PRODUCTNAME መሳያ - ማተሚያ</emph></variable>"
#: 00000406.xhp
msgctxt ""
@@ -8550,7 +8598,7 @@ msgctxt ""
"par_id3145220\n"
"help.text"
msgid "<variable id=\"etotallz\">Open a drawing document, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Draw</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"etotallz\">የ መሳያ ሰነድ መክፈቻ ይምረጡ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች</emph></caseinline><defaultinline><emph>መሳሪያዎች - ምርጫ</emph></defaultinline></switchinline><emph> - %PRODUCTNAME መሳያ</emph>:</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8558,7 +8606,7 @@ msgctxt ""
"par_id3149573\n"
"help.text"
msgid "<variable id=\"etsodr\">Open a Math document, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Math</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"etsodr\">የ ሂሳብ ሰነድ መክፈቻ ይምረጡ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች</emph></caseinline><defaultinline><emph>መሳሪያዎች - ምርጫ</emph></defaultinline></switchinline><emph> - %PRODUCTNAME ሂሳብ </emph></variable>"
#: 00000406.xhp
msgctxt ""
@@ -8566,7 +8614,7 @@ msgctxt ""
"par_id3145613\n"
"help.text"
msgid "<variable id=\"formeinst\">Open a Math document, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Math - Settings</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"formeinst\">የ ሂሳብ ሰነድ መክፈቻ ይምረጡ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች </emph></caseinline><defaultinline><emph> መሳሪያዎች - ምርጫ </emph></defaultinline></switchinline><emph> - %PRODUCTNAME ሂሳብ - ማሰናጃዎች </emph>:</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8574,7 +8622,7 @@ msgctxt ""
"par_id3155137\n"
"help.text"
msgid "<variable id=\"diagrfarbe\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - Charts</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"diagrfarbe\">ይምረጡ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች </emph></caseinline><defaultinline><emph> መሳሪያዎች - ምርጫ </emph></defaultinline></switchinline><emph> - ቻርትስ </emph>:</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8582,7 +8630,7 @@ msgctxt ""
"par_id3149211\n"
"help.text"
msgid "<variable id=\"diagrgfarbe\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - Charts - Default Colors</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"diagrgfarbe\">ይምረጡ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች </emph></caseinline><defaultinline><emph> መሳሪያዎች - ምርጫ </emph></defaultinline></switchinline><emph> - ቻርትስ - ነባር ቀለሞች </emph></variable>"
#: 00000406.xhp
msgctxt ""
@@ -8590,7 +8638,7 @@ msgctxt ""
"par_id3150862\n"
"help.text"
msgid "<variable id=\"datenqu\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Base</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"datenqu\">ይምረጡ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች </emph></caseinline><defaultinline><emph> መሳሪያዎች - ምርጫ </emph></defaultinline></switchinline><emph> - %PRODUCTNAME ቤዝ </emph></variable>"
#: 00000406.xhp
msgctxt ""
@@ -8598,7 +8646,7 @@ msgctxt ""
"par_id3147368\n"
"help.text"
msgid "<variable id=\"verbindungen\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Base - Connections</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"verbindungen\">ይምረጡ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች </emph></caseinline><defaultinline><emph> መሳሪያዎች - ምርጫ </emph></defaultinline></switchinline><emph> - %PRODUCTNAME ቤዝ - ግንኙነቶች </emph></variable>"
#: 00000406.xhp
msgctxt ""
@@ -8606,7 +8654,7 @@ msgctxt ""
"par_idN1120D\n"
"help.text"
msgid "<variable id=\"registered\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Base - Databases</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"registered\">ይምረጡ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች </emph></caseinline><defaultinline><emph> መሳሪያዎች - ምርጫ </emph></defaultinline></switchinline><emph> - %PRODUCTNAME ቤዝ - ዳታቤዝ </emph></variable>"
#: 00000407.xhp
msgctxt ""
@@ -9566,7 +9614,7 @@ msgctxt ""
"par_id3149323\n"
"help.text"
msgid "Choose <emph>Slide - Properties - Page</emph> tab (in $[officename] Impress)"
-msgstr ""
+msgstr "ይምረጡ <emph>ተንሸራታች - ባህሪዎች - ገጽ</emph> tab (በ $[officename] ማስደነቂያ):"
#: 00040500.xhp
msgctxt ""
@@ -9574,7 +9622,7 @@ msgctxt ""
"par_id3154972\n"
"help.text"
msgid "Choose <emph>Page - Properties - Page</emph> tab (in $[officename] Draw)"
-msgstr ""
+msgstr "ይምረጡ <emph>ገጽ - ባህሪዎች - ገጽ</emph> tab (በ $[officename] መሳያ):"
#: 00040500.xhp
msgctxt ""
@@ -11125,16 +11173,16 @@ msgctxt ""
"00040502.xhp\n"
"par_id3151293\n"
"help.text"
-msgid "<variable id=\"linienstile\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Line Styles</emph> tab </variable>"
-msgstr "<variable id=\"linienstile\">ይምረጡ <emph> አቀራረብ - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph> እቃ - </emph></caseinline><caseinline select=\"CALC\"><emph> ንድፍ - </emph></caseinline></switchinline><emph> መስመር - የ መስመር ዘዴዎች </emph> tab </variable>"
+msgid "<variable id=\"linienstile\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Line Styles</emph> tab</variable>"
+msgstr "<variable id=\"linienstile\">ይምረጡ <emph> አቀራረብ - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph> እቃ - </emph></caseinline><caseinline select=\"CALC\"><emph> ንድፍ - </emph></caseinline></switchinline><emph> መስመር - የ መስመር ዘዴዎች </emph> tab</variable>"
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3149317\n"
"help.text"
-msgid "<variable id=\"linienenden\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Arrow Styles</emph> tab </variable>"
-msgstr "<variable id=\"linienenden\">ይምረጡ <emph> አቀራረብ - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph> እቃ - </emph></caseinline><caseinline select=\"CALC\"><emph> ንድፍ - </emph></caseinline></switchinline><emph> መስመር - የ ቀስት ዘዴዎች </emph> tab </variable>"
+msgid "<variable id=\"linienenden\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Arrow Styles</emph> tab</variable>"
+msgstr "<variable id=\"linienenden\">ይምረጡ <emph> አቀራረብ - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph> እቃ - </emph></caseinline><caseinline select=\"CALC\"><emph> ንድፍ - </emph></caseinline></switchinline><emph> መስመር - የ ቀስት ዘዴዎች </emph> tab</variable>"
#: 00040502.xhp
msgctxt ""
@@ -11173,7 +11221,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3154948\n"
"help.text"
-msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Area</emph> tab"
+msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Area</emph> tab."
msgstr "ይምረጡ <emph> አቀራረብ - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph> እቃ - </emph></caseinline><caseinline select=\"CALC\"><emph> ንድፍ - </emph></caseinline></switchinline><emph> ቦታ - ቦታ </emph> tab"
#: 00040502.xhp
@@ -11181,7 +11229,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3145607\n"
"help.text"
-msgid "Choose <emph>View - Styles</emph> - open context menu and choose <emph>Modify/New - Area</emph> tab (presentation documents)"
+msgid "Choose <emph>View - Styles</emph> - open context menu and choose <emph>Modify/New - Area</emph> tab (presentation documents)."
msgstr "ይምረጡ <emph> መመልከቻ - ዘዴዎች እና አቀራረብ </emph> - መክፈቻ የ አገባብ ዝርዝር እና ይምረጡ <emph> ማሻሻያ/አዲስ - ቦታ </emph> tab (ለ ማቅረቢያ ሰነዶች)"
#: 00040502.xhp
@@ -11189,56 +11237,64 @@ msgctxt ""
"00040502.xhp\n"
"par_id3152922\n"
"help.text"
-msgid "Choose <emph>Format - Title - Area</emph> tab (chart documents)"
-msgstr "ይምረጡ <emph> አቀራረብ - አርእስት - ቦታ </emph> tab (የ ቻርትስ ሰነዶች)"
+msgid "Choose <emph>Format - Title - Area</emph> tab (chart documents)."
+msgstr "ይምረጡ <emph> አቀራረብ - አርእስት - ቦታ </emph> tab (ለ ቻርት ሰነዶች)"
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3157894\n"
"help.text"
-msgid "Choose <emph>Format - Legend - Area</emph> tab (chart documents)"
-msgstr "ይምረጡ <emph> አቀራረብ - መግለጫ - ድንበሮች </emph> tab (የ ቻርትስ ሰነዶች)"
+msgid "Choose <emph>Format - Legend - Area</emph> tab (chart documents)."
+msgstr "ይምረጡ <emph> አቀራረብ - መግለጫ - ቦታ </emph> tab (ለ ቻርት ሰነዶች)"
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3144444\n"
"help.text"
-msgid "Choose <emph>Format - Chart Wall - Area</emph> tab (chart documents)"
-msgstr "ይምረጡ <emph> አቀራረብ - የ ቻርትስ ግድግዳ - ቦታ </emph> tab (የ ቻርትስ ሰነዶች)"
+msgid "Choose <emph>Format - Chart Wall - Area</emph> tab (chart documents)."
+msgstr "ይምረጡ <emph> አቀራረብ - የ ቻርት ግድግዳ - ቦታ </emph> tab (ለ ቻርት ሰነዶች)"
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3156543\n"
"help.text"
-msgid "Choose <emph>Format - Chart Floor - Area</emph> tab (chart documents)"
-msgstr "ይምረጡ <emph> አቀራረብ - የ ቻርትስ ወለል - ቦታ </emph> tab (የ ቻርትስ ሰነዶች)"
+msgid "Choose <emph>Format - Chart Floor - Area</emph> tab (chart documents)."
+msgstr "ይምረጡ <emph> አቀራረብ - የ ቻርትስ ወለል - ቦታ </emph> tab (ለ ቻርት ሰነዶች)"
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3150685\n"
"help.text"
-msgid "Choose <emph>Format - Chart Area - Area</emph> tab (chart documents)"
-msgstr "ይምረጡ <emph> አቀራረብ - የ ቻርትስ ቦታ - ቦታ </emph> tab (የ ቻርትስ ሰነዶች)"
+msgid "Choose <emph>Format - Chart Area - Area</emph> tab (chart documents)."
+msgstr "ይምረጡ <emph> አቀራረብ - የ ቻርት ቦታ - ቦታ </emph> tab (ለ ቻርት ሰነዶች)"
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3149664\n"
"help.text"
-msgid "Choose <emph>Slide - Properties - Background</emph> tab (in $[officename] Impress)"
-msgstr ""
+msgid "Choose <emph>Slide - Properties - Background</emph> tab (in $[officename] Impress)."
+msgstr "ይምረጡ <emph>ተንሸራታች - ባህሪዎች - መደብ</emph> tab (በ $[officename] ማስደነቂያ):"
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id9149694\n"
"help.text"
-msgid "Choose <emph>Page - Properties - Background</emph> tab (in $[officename] Draw)"
-msgstr ""
+msgid "Choose <emph>Page - Properties - Background</emph> tab (in $[officename] Draw)."
+msgstr "ይምረጡ <emph>ገጽ - ባህሪዎች - መደብ</emph> tab (በ $[officename] መሳያ):"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id841527083135387\n"
+"help.text"
+msgid "Choose <emph>Table - Properties - Background</emph> tab."
+msgstr "ይምረጡ <emph>ሰንጠረዥ - ባህሪ - መደብ</emph> tab"
#: 00040502.xhp
msgctxt ""
@@ -11349,7 +11405,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3150011\n"
"help.text"
-msgid "<variable id=\"schatte\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Shadow</emph> tab </variable>"
+msgid "<variable id=\"schatte\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Shadow</emph> tab</variable>"
msgstr "<variable id=\"schatte\">ይምረጡ <emph> አቀራረብ - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph> እቃ - </emph></caseinline><caseinline select=\"CALC\"><emph> ንድፍ - </emph></caseinline></switchinline><emph> ቦታ - ጥላ </emph> tab </variable>"
#: 00040502.xhp
@@ -11357,15 +11413,15 @@ msgctxt ""
"00040502.xhp\n"
"par_id3147441\n"
"help.text"
-msgid "<variable id=\"verlauf\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Gradients</emph> tab </variable>"
-msgstr "<variable id=\"verlauf\">ይምረጡ <emph> አቀራረብ - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph> እቃ - </emph></caseinline><caseinline select=\"CALC\"><emph> ንድፍ - </emph></caseinline></switchinline><emph> ቦታ - ከፍታዎች </emph> tab </variable>"
+msgid "<variable id=\"verlauf\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Gradients</emph> tab</variable>"
+msgstr "<variable id=\"verlauf\">ይምረጡ <emph> አቀራረብ - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph> እቃ - </emph></caseinline><caseinline select=\"CALC\"><emph> ንድፍ - </emph></caseinline></switchinline><emph> ቦታ - መጋጠሚያ </emph> tab </variable>"
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3155308\n"
"help.text"
-msgid "<variable id=\"schraffur\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Hatching</emph> tab </variable>"
+msgid "<variable id=\"schraffur\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Hatching</emph> tab</variable>"
msgstr "<variable id=\"schraffur\">ይምረጡ <emph> አቀራረብ - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph> እቃ - </emph></caseinline><caseinline select=\"CALC\"><emph> ንድፍ - </emph></caseinline></switchinline><emph> ቦታ - Hatching </emph> tab </variable>"
#: 00040502.xhp
@@ -11373,7 +11429,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3145800\n"
"help.text"
-msgid "<variable id=\"bitmap\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Bitmaps</emph> tab </variable>"
+msgid "<variable id=\"bitmap\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Bitmaps</emph> tab</variable>"
msgstr "<variable id=\"bitmap\">ይምረጡ <emph> አቀራረብ - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph> እቃ - </emph></caseinline><caseinline select=\"CALC\"><emph> ንድፍ - </emph></caseinline></switchinline><emph> ቦታ - ቢትማፕስ </emph> tab </variable>"
#: 00040502.xhp
@@ -11413,7 +11469,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3156286\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F4 key </caseinline><caseinline select=\"IMPRESS\">F4 key </caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F4 key</caseinline><caseinline select=\"IMPRESS\">F4 key</caseinline></switchinline>"
msgstr "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F4 ቁልፍ </caseinline><caseinline select=\"IMPRESS\">F4 ቁልፍ </caseinline></switchinline>"
#: 00040502.xhp
@@ -11453,7 +11509,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3153099\n"
"help.text"
-msgid "<variable id=\"position2\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Position and Size</emph> tab </variable>"
+msgid "<variable id=\"position2\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Position and Size</emph> tab</variable>"
msgstr "<variable id=\"position2\">ይምረጡ <emph> አቀራረብ - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph> እቃ - </emph></caseinline><caseinline select=\"CALC\"><emph> ንድፍ - </emph></caseinline></switchinline><emph> ቦታ እና መጠን - ቦታ እና መጠን </emph> tab </variable>"
#: 00040502.xhp
@@ -11485,7 +11541,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3145666\n"
"help.text"
-msgid "<variable id=\"ecke\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Slant & Corner Radius</emph> tab </variable>"
+msgid "<variable id=\"ecke\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Slant & Corner Radius</emph> tab</variable>"
msgstr "<variable id=\"ecke\">ይምረጡ <emph> አቀራረብ - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph> እቃ - </emph></caseinline><caseinline select=\"CALC\"><emph> ንድፍ - </emph></caseinline></switchinline><emph> ቦታ እና መጠን - ማዘንበያ & የ ጠርዝ ራዲየስ </emph> tab </variable>"
#: 00040502.xhp
@@ -11493,8 +11549,8 @@ msgctxt ""
"00040502.xhp\n"
"par_id3146081\n"
"help.text"
-msgid "<variable id=\"legende\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Callout</emph> tab (only for textbox callouts, not for custom shapes callouts) </variable>"
-msgstr "<variable id=\"legende\">ይምረጡ <emph> አቀራረብ - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph> እቃ - </emph></caseinline><caseinline select=\"CALC\"><emph>ንድፍ - </emph></caseinline></switchinline><emph> ቦታ እና መጠን - መጥሪያ </emph> tab (ለ ጽሁፍ ሳጥን መጥሪያ ብቻ: ለ ቅርጾች ማስተካከያ መጥሪያ አይደለም) </variable>"
+msgid "<variable id=\"legende\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Callout</emph> tab (only for textbox callouts, not for custom shapes callouts)</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
@@ -11517,7 +11573,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3149019\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F8 key </caseinline><caseinline select=\"IMPRESS\">F8 key </caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F8 key</caseinline><caseinline select=\"IMPRESS\">F8 key</caseinline></switchinline>"
msgstr "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F8 ቁልፍ </caseinline><caseinline select=\"IMPRESS\">F8 ቁልፍ </caseinline></switchinline>"
#: 00040502.xhp
@@ -11805,7 +11861,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3153076\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Align Center Horizontally </caseinline><defaultinline>Centered</defaultinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Align Center Horizontally</caseinline><defaultinline>Centered</defaultinline></switchinline>"
msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">በ አግድም መሀከል ማሰለፊያ </caseinline><defaultinline>መሀከል</defaultinline></switchinline>"
#: 00040502.xhp
@@ -11845,8 +11901,8 @@ msgctxt ""
"00040502.xhp\n"
"par_id3150527\n"
"help.text"
-msgid "<variable id=\"font\">Click <emph>Fontwork</emph> icon on <emph>Drawing</emph> bar </variable>"
-msgstr "<variable id=\"font\">ይጫኑ <emph>የ ፊደል ስራ</emph> ምልክት ከ <emph>መሳያ</emph> መደርደሪያ ላይ </variable>"
+msgid "<variable id=\"font\">Click <emph>Fontwork</emph> icon on <emph>Drawing</emph> bar</variable>"
+msgstr "<variable id=\"font\">ይጫኑ <emph>የ ፊደል ስራ</emph> ምልክት ከ <emph> መሳያ </emph> መደርደሪያ ላይ </variable>"
#: 00040502.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/shared/01.po b/source/am/helpcontent2/source/text/shared/01.po
index cbb91c0b30c..a2bab7b8065 100644
--- a/source/am/helpcontent2/source/text/shared/01.po
+++ b/source/am/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: 2018-05-23 23:19+0200\n"
-"PO-Revision-Date: 2018-04-01 22:56+0000\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
+"PO-Revision-Date: 2018-06-13 16:28+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1522623376.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1528907313.000000\n"
#: 01010000.xhp
msgctxt ""
@@ -2566,7 +2566,7 @@ msgctxt ""
"par_id3155934\n"
"help.text"
msgid "The following sections describe the <item type=\"productname\">%PRODUCTNAME</item> <emph>Save as</emph> dialog. To activate the <emph><item type=\"productname\">%PRODUCTNAME</item> Open</emph> and <emph>Save</emph> dialog boxes, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - </emph><link href=\"text/shared/optionen/01010600.xhp\" name=\"%PRODUCTNAME - General\"><emph>%PRODUCTNAME- General</emph></link>, and then select the <emph>Use %PRODUCTNAME dialogs</emph> in the <emph>Open/Save dialogs</emph> area."
-msgstr ""
+msgstr "የሚቀጥለው ክፍል የሚገልጸው የ <item type=\"productname\">%PRODUCTNAME</item> <emph> ማስቀመጫ እንደ </emph> ንግግር: ለማስነሳት የ <emph><item type=\"productname\">%PRODUCTNAME</item> መክፈቻ </emph> እና <emph> ማስቀመጫ </emph> ንግግር ሳጥን ውስጥ: ይምረጡ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች</emph></caseinline><defaultinline><emph>መሳሪያዎች - ምርጫ</emph></defaultinline></switchinline><emph> - </emph><link href=\"text/shared/optionen/01010600.xhp\" name=\"%PRODUCTNAME - General\"><emph>%PRODUCTNAME- ባጠቃላይ</emph></link>: እና ከዛ ይምረጡ የ <emph> ይጠቀሙ %PRODUCTNAME ንግግሮች </emph> ከ <emph> መክፈቻ/ማስቀመጫ ንግግሮች </emph> ቦታ ውስጥ"
#: 01070000.xhp
msgctxt ""
@@ -3422,7 +3422,7 @@ msgctxt ""
"par_id3156324\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Some statistic values can be used as <link href=\"text/swriter/02/14020000.xhp\" name=\"variables in formulas\">variables in formulas</link>.</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">አንዳንድ የ ስታትስቲክስ ዋጋዎችን መጠቀም ይችላሉ እንደ <link href=\"text/swriter/02/14020000.xhp\" name=\"variables in formulas\"> ተለዋዋጭ በ መቀመሪያ ውስጥ </link>. </caseinline></switchinline>"
#: 01100400.xhp
msgctxt ""
@@ -3470,7 +3470,7 @@ msgctxt ""
"par_id3156114\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Number of cells with content in the file.</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">በ ፋይል ውስጥ የ ክፍሎች ይዞታ ቁጥር </caseinline></switchinline>"
#: 01100400.xhp
msgctxt ""
@@ -3478,7 +3478,7 @@ msgctxt ""
"hd_id641526904710590\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Formula groups:</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">የ መቀመሪያ ቡድኖች:</caseinline></switchinline>"
#: 01100400.xhp
msgctxt ""
@@ -3494,7 +3494,7 @@ msgctxt ""
"hd_id3147210\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Images:</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">ምስሎች:</caseinline></switchinline>"
#: 01100400.xhp
msgctxt ""
@@ -3510,7 +3510,7 @@ msgctxt ""
"hd_id3147618\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">OLE Objects:</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">የ OLE እቃዎች: </caseinline></switchinline>"
#: 01100400.xhp
msgctxt ""
@@ -3526,7 +3526,7 @@ msgctxt ""
"hd_id3153665\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Paragraphs:</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">አንቀጾች: </caseinline></switchinline>"
#: 01100400.xhp
msgctxt ""
@@ -3542,7 +3542,7 @@ msgctxt ""
"hd_id3155261\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Words:</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">ቃላቶች: </caseinline></switchinline>"
#: 01100400.xhp
msgctxt ""
@@ -3550,7 +3550,7 @@ msgctxt ""
"par_id3147402\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Number of words (including words consisting of a single character) in the file.</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">የ ቃላቶች ቁጥር (አንድ ባህሪ ያለውንም ቃሎች ያካትታል) በ ፋይል ውስጥ </caseinline></switchinline>"
#: 01100400.xhp
msgctxt ""
@@ -3558,7 +3558,7 @@ msgctxt ""
"hd_id3150466\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Characters:</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">ባህሪዎች: </caseinline></switchinline>"
#: 01100400.xhp
msgctxt ""
@@ -3574,7 +3574,7 @@ msgctxt ""
"hd_id3148947\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Lines:</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">መስመሮች: </caseinline></switchinline>"
#: 01100400.xhp
msgctxt ""
@@ -3582,7 +3582,7 @@ msgctxt ""
"par_id3149650\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Number of lines in the file.</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">የ መስመሮች ቁጥር በ ፋይል ውስጥ </caseinline></switchinline>"
#: 01100400.xhp
msgctxt ""
@@ -3590,7 +3590,7 @@ msgctxt ""
"hd_id3153525\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Update</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">ማሻሻያ </caseinline></switchinline>"
#: 01100400.xhp
msgctxt ""
@@ -5742,7 +5742,7 @@ msgctxt ""
"par_id861521058166011\n"
"help.text"
msgid "There are two ways to paste the clipboard contents in a spreadsheet document:"
-msgstr ""
+msgstr "የ ቁራጭ ሰሌዳ ይዞታዎችን ወደ ሰንጠረዥ ውስጥ ለ መለጠፍ ሁለት ዘዴዎች አሉ:"
#: 02060000.xhp
msgctxt ""
@@ -5838,7 +5838,7 @@ msgctxt ""
"hd_id3155420\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Paste Special</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">የተለየ መለጠፊያ </caseinline></switchinline>"
#: 02070000.xhp
msgctxt ""
@@ -5854,7 +5854,7 @@ msgctxt ""
"hd_id3155341\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Selection</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">ምርጫዎች </caseinline></switchinline>"
#: 02070000.xhp
msgctxt ""
@@ -5862,7 +5862,7 @@ msgctxt ""
"par_id3152909\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Select a format for the clipboard contents that you want to paste.</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">እርስዎ መለጠፍ ለሚፈልጉት የ ቁራጭ ሰሌዳ ይዞታዎች አቀራረብ ይምረጡ </caseinline></switchinline>"
#: 02070000.xhp
msgctxt ""
@@ -5870,7 +5870,7 @@ msgctxt ""
"hd_id3145120\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Paste all</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">ሁሉንም መለጠፊያ </caseinline></switchinline>"
#: 02070000.xhp
msgctxt ""
@@ -5886,7 +5886,7 @@ msgctxt ""
"hd_id3155449\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Text</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">ጽሁፍ </caseinline></switchinline>"
#: 02070000.xhp
msgctxt ""
@@ -5894,7 +5894,7 @@ msgctxt ""
"par_id3149244\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/pastespecial/text\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Inserts cells containing text.</caseinline></switchinline></ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/scalc/ui/pastespecial/text\"><switchinline select=\"appl\"><caseinline select=\"CALC\">ጽሁፍ የያዙ ክፍሎች ማስገቢያ </caseinline></switchinline></ahelp>"
#: 02070000.xhp
msgctxt ""
@@ -5902,7 +5902,7 @@ msgctxt ""
"hd_id3148947\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Numbers</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">ቁጥሮች </caseinline></switchinline>"
#: 02070000.xhp
msgctxt ""
@@ -5910,7 +5910,7 @@ msgctxt ""
"par_id3152360\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/pastespecial/numbers\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Inserts cells containing numbers.</caseinline></switchinline></ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/scalc/ui/pastespecial/numbers\"><switchinline select=\"appl\"><caseinline select=\"CALC\">ቁጥሮች የያዙ ክፍሎች ማስገቢያ </caseinline></switchinline></ahelp>"
#: 02070000.xhp
msgctxt ""
@@ -5918,7 +5918,7 @@ msgctxt ""
"hd_id3151054\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Date & Time</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">ቀን & ሰአት </caseinline></switchinline>"
#: 02070000.xhp
msgctxt ""
@@ -5926,7 +5926,7 @@ msgctxt ""
"par_id3154226\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/pastespecial/datetime\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Inserts cells containing date and time values.</caseinline></switchinline></ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/scalc/ui/pastespecial/datetime\"><switchinline select=\"appl\"><caseinline select=\"CALC\">የ ቀን እና የ ሰአት ዋጋዎችን የያዙ ክፍሎች ማስገቢያ </caseinline></switchinline></ahelp>"
#: 02070000.xhp
msgctxt ""
@@ -5934,7 +5934,7 @@ msgctxt ""
"hd_id3150791\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Formulas</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">መቀመሪያ</caseinline></switchinline>"
#: 02070000.xhp
msgctxt ""
@@ -5950,7 +5950,7 @@ msgctxt ""
"hd_id3153968\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Comments</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">አስተያየቶች </caseinline></switchinline>"
#: 02070000.xhp
msgctxt ""
@@ -5958,7 +5958,7 @@ msgctxt ""
"par_id3156422\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/pastespecial/comments\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Inserts comments that are attached to cells. If you want to add the comments to the existing cell content, select the \"Add\" operation.</caseinline></switchinline></ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/scalc/ui/pastespecial/comments\"><switchinline select=\"appl\"><caseinline select=\"CALC\">ከ ክፍሉ ጋር የ ተያያዙ አስተያየቶች ማስገቢያ: እርስዎ አስተያየቶች መጨመር ከ ፈለጉ ወደ ነበረው የ ክፍል ይዞታ ውስጥ: ይምረጡ የ \"መጨመሪያ\" ተግባር </caseinline></switchinline></ahelp>"
#: 02070000.xhp
msgctxt ""
@@ -5966,7 +5966,7 @@ msgctxt ""
"hd_id3152935\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Formats</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">አቀራረብ</caseinline></switchinline>"
#: 02070000.xhp
msgctxt ""
@@ -5974,7 +5974,7 @@ msgctxt ""
"par_id3125863\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/pastespecial/formats\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Inserts cell format attributes.</caseinline></switchinline></ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/scalc/ui/pastespecial/formats\"><switchinline select=\"appl\"><caseinline select=\"CALC\">የ ክፍል አቀራረብ ባህሪዎች ማስገቢያ </caseinline></switchinline></ahelp>"
#: 02070000.xhp
msgctxt ""
@@ -5982,7 +5982,7 @@ msgctxt ""
"hd_id3156282\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Objects</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">እቃዎች</caseinline></switchinline>"
#: 02070000.xhp
msgctxt ""
@@ -5990,7 +5990,7 @@ msgctxt ""
"par_id3149810\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/pastespecial/objects\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Inserts objects contained within the selected cell range. These can be OLE objects, chart objects, or drawing objects.</caseinline></switchinline></ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/scalc/ui/pastespecial/objects\"><switchinline select=\"appl\"><caseinline select=\"CALC\"> በ ተመረጠው ክፍል መጠን ውስጥ ያሉ እቃዎች ማስገቢያ: እነዚህ ሊሆኑ ይችላሉ የ OLE እቃዎች: የ ቻርትስ እቃዎች: ወይንም የ መሳያ እቃዎች </caseinline></switchinline></ahelp>"
#: 02070000.xhp
msgctxt ""
@@ -5998,7 +5998,7 @@ msgctxt ""
"hd_id3150440\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Operations</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">ተግባሮች</caseinline></switchinline>"
#: 02070000.xhp
msgctxt ""
@@ -6006,7 +6006,7 @@ msgctxt ""
"par_id3151351\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Select the operation to apply when you paste cells into your sheet.</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">ይምረጡ ተግባሮች ለ መፈጸም እርስዎ ክፍሎች በሚለጥፉ ጊዜ ወደ እርስዎ ወረቀት ውስጥ </caseinline></switchinline>"
#: 02070000.xhp
msgctxt ""
@@ -6014,7 +6014,7 @@ msgctxt ""
"hd_id3153952\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">None</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">ምንም</caseinline></switchinline>"
#: 02070000.xhp
msgctxt ""
@@ -6022,7 +6022,7 @@ msgctxt ""
"par_id3147348\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/pastespecial/none\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Does not apply an operation when you insert the cell range from the clipboard. The contents of the clipboard will replace existing cell contents.</caseinline></switchinline></ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/scalc/ui/pastespecial/none\"><switchinline select=\"appl\"><caseinline select=\"CALC\">ምንም ተግባር አይፈጸምም እርስዎ የ ክፍል መጠን ከ ቁራጭ ሰሌዳ ውስጥ በሚያስገቡ ጊዜ: የ ቁራጭ ሰሌዳ ይዞታዎች የ ነበረውን የ ክፍል ይዞታዎች ይቀይራል: </caseinline></switchinline></ahelp>"
#: 02070000.xhp
msgctxt ""
@@ -6030,7 +6030,7 @@ msgctxt ""
"hd_id3154988\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Add</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">መጨመሪያ</caseinline></switchinline>"
#: 02070000.xhp
msgctxt ""
@@ -6046,7 +6046,7 @@ msgctxt ""
"hd_id3145263\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Subtract</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">መቀነሻ</caseinline></switchinline>"
#: 02070000.xhp
msgctxt ""
@@ -6054,7 +6054,7 @@ msgctxt ""
"par_id3154149\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/pastespecial/subtract\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Subtracts the values in the clipboard cells from the values in the target cells.</caseinline></switchinline></ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/scalc/ui/pastespecial/subtract\"><switchinline select=\"appl\"><caseinline select=\"CALC\">በ ቁራጭ ሰሌዳ ውስጥ ያሉትን ዋጋዎች መቀነሻ በ ታለመው ክፍሎች ዋጋ ውስጥ </caseinline></switchinline></ahelp>"
#: 02070000.xhp
msgctxt ""
@@ -6062,7 +6062,7 @@ msgctxt ""
"hd_id3155312\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Multiply</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">ማባዣ</caseinline></switchinline>"
#: 02070000.xhp
msgctxt ""
@@ -6070,7 +6070,7 @@ msgctxt ""
"par_id3155307\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/pastespecial/multiply\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Multiplies the values in the clipboard cells with the values in the target cells.</caseinline></switchinline></ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/scalc/ui/pastespecial/multiply\"><switchinline select=\"appl\"><caseinline select=\"CALC\">በ ቁራጭ ሰሌዳ ውስጥ ያሉትን ዋጋዎች ማባዣ በ ታለመው ክፍሎች ዋጋ ውስጥ </caseinline></switchinline></ahelp>"
#: 02070000.xhp
msgctxt ""
@@ -6078,7 +6078,7 @@ msgctxt ""
"hd_id3154320\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Divide</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">ማካፈያ</caseinline></switchinline>"
#: 02070000.xhp
msgctxt ""
@@ -6086,7 +6086,7 @@ msgctxt ""
"par_id3155417\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/pastespecial/divide\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Divides the values in the target cells by the values in the clipboard cells.</caseinline></switchinline></ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/scalc/ui/pastespecial/divide\"><switchinline select=\"appl\"><caseinline select=\"CALC\">በ ታለመው ክፍሎች ውስጥ ያሉትን ዋጋዎች ማካፈያ በ ቁራጭ ሰሌዳ ውስጥ ባሉት ዋጋዎች </caseinline></switchinline></ahelp>"
#: 02070000.xhp
msgctxt ""
@@ -6094,7 +6094,7 @@ msgctxt ""
"hd_id3147048\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Options</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">በ ምርጫ</caseinline></switchinline>"
#: 02070000.xhp
msgctxt ""
@@ -6102,7 +6102,7 @@ msgctxt ""
"par_id3156283\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Sets the paste options for the clipboard contents.</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">ለ ቁራጭ ሰሌዳ ይዞታዎች የ መለጠፊያ ምርጫ ማሰናጃ</caseinline></switchinline>"
#: 02070000.xhp
msgctxt ""
@@ -6110,7 +6110,7 @@ msgctxt ""
"hd_id3151052\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Skip empty cells</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">ባዶ ክፍሎችን መዝለያ </caseinline></switchinline>"
#: 02070000.xhp
msgctxt ""
@@ -6134,7 +6134,7 @@ msgctxt ""
"hd_id3147173\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Transpose</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">መቀየሪያ</caseinline></switchinline>"
#: 02070000.xhp
msgctxt ""
@@ -6150,7 +6150,7 @@ msgctxt ""
"hd_id3152971\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Link</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">አገናኝ</caseinline></switchinline>"
#: 02070000.xhp
msgctxt ""
@@ -6166,7 +6166,7 @@ msgctxt ""
"par_id3145667\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">You can also link sheets within the same spreadsheet. When you link to other files, a <link href=\"text/shared/00/00000005.xhp#dde\" name=\"DDE link\">DDE link</link> is automatically created. A DDE link is inserted as a matrix formula and can only be modified as a whole.</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">እርስዎ ማገናኘት ይችላሉ ወረቀቶች በ ተመሳሳይ ሰንጠረዥ ውስጥ: እርስዎ ሲያገናኙ ወደ ሌሎች ፋይሎች: የ <link href=\"text/shared/00/00000005.xhp#dde\" name=\"DDE link\">DDE አገናኝ</link> ራሱ በራሱ ይፈጠራል: የ DDE አገናኝ የሚገባው እንደ matrix መቀመሪያ እና ባጠቃላይ ማሻሻል ይቻላል </caseinline></switchinline>"
#: 02070000.xhp
msgctxt ""
@@ -6174,7 +6174,7 @@ msgctxt ""
"hd_id3146914\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Shift Cells</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">ክፍሎች መቀየሪያ </caseinline></switchinline>"
#: 02070000.xhp
msgctxt ""
@@ -6190,7 +6190,7 @@ msgctxt ""
"hd_id3155518\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Don't shift</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\"> አትቀይር </caseinline></switchinline>"
#: 02070000.xhp
msgctxt ""
@@ -6198,7 +6198,7 @@ msgctxt ""
"par_id3154158\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/pastespecial/no_shift\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Inserted cells replace the target cells.</caseinline></switchinline></ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/scalc/ui/pastespecial/no_shift\"><switchinline select=\"appl\"><caseinline select=\"CALC\">ያስገቡት ክፍሎች የታለመውን ክፍል ይቀይረዋል </caseinline></switchinline></ahelp>"
#: 02070000.xhp
msgctxt ""
@@ -6206,7 +6206,7 @@ msgctxt ""
"hd_id3148483\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Down</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">ወደ ታች</caseinline></switchinline>"
#: 02070000.xhp
msgctxt ""
@@ -6214,7 +6214,7 @@ msgctxt ""
"par_id3152962\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/pastespecial/move_down\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Target cells are shifted downward when you insert cells from the clipboard.</caseinline></switchinline></ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/scalc/ui/pastespecial/move_down\"><switchinline select=\"appl\"><caseinline select=\"CALC\"> እርስዎ ክፍሎች በሚያስገቡ ጊዜ ከ ቁራጭ ሰሌዳ ውስጥ የ ታለሙት ክፍሎች ወደ ታች በኩል ይቀየራሉ</caseinline></switchinline></ahelp>"
#: 02070000.xhp
msgctxt ""
@@ -6222,7 +6222,7 @@ msgctxt ""
"hd_id3145621\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Right</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">በ ቀኝ </caseinline></switchinline>"
#: 02070000.xhp
msgctxt ""
@@ -6230,7 +6230,7 @@ msgctxt ""
"par_id3159264\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/pastespecial/move_right\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Target cells are shifted to the right when you insert cells from the clipboard.</caseinline></switchinline></ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/scalc/ui/pastespecial/move_right\"><switchinline select=\"appl\"><caseinline select=\"CALC\">እርስዎ ክፍሎች በሚያስገቡ ጊዜ ከ ቁራጭ ሰሌዳ ውስጥ የ ታለሙት ክፍሎች ወደ ቀኝ በኩል ይቀየራሉ</caseinline></switchinline></ahelp>"
#: 02090000.xhp
msgctxt ""
@@ -6254,7 +6254,7 @@ msgctxt ""
"par_id3149999\n"
"help.text"
msgid "<variable id=\"allestext\"><ahelp hid=\".\">Selects the entire content of the current file, frame, or text object.</ahelp></variable>"
-msgstr ""
+msgstr "<variable id=\"allestext\"><ahelp hid=\".\">የ አሁኑን ፋይል ጠቅላላ ይዞታ ክፈፍ: ወይንም የ ጽሁፍ እቃ መምረጫ </ahelp></variable>"
#: 02090000.xhp
msgctxt ""
@@ -11046,7 +11046,7 @@ msgctxt ""
"par_id3151116\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">If you made changes by choosing <emph>Tools - AutoCorrect - Apply and Edit Changes</emph>, the <emph>Undo</emph> button appears in the dialog.<ahelp hid=\"svx/ui/acceptrejectchangesdialog/undo\"> Reverse the last Accept or Reject command.</ahelp></caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">እርስዎ ለውጥ ከ ፈጸሙ በ መምረጥ <emph> አቀራረብ - በራሱ አራሚ - ለውጦችን መፈጸሚያ እና ማረሚያ </emph> የ <emph> መተው </emph> ቁልፍ ይታያል በ ንግግር ውስጥ <ahelp hid=\"svx/ui/acceptrejectchangesdialog/undo\"> መጨረሻ እቀበላለሁ ወይንም አልቀበልም ትእዛዝ እንደ ነበር መመለሻ </ahelp></caseinline></switchinline>"
#: 02230401.xhp
msgctxt ""
@@ -12526,7 +12526,7 @@ msgctxt ""
"par_id3153124\n"
"help.text"
msgid "To insert a scanned image, the driver for your scanner must be installed. <switchinline select=\"sys\"><caseinline select=\"UNIX\">Under UNIX systems, install the SANE package found at <link href=\"http://www.sane-project.org\" name=\"Sane Project\">http://www.sane-project.org</link>. The SANE package must use the same libc as $[officename].</caseinline></switchinline>"
-msgstr ""
+msgstr "የ ታሰሰ ምስል ለማስገባት የ ማሰሻው driver በቅድሚያ መገጠም አለበት <switchinline select=\"sys\"><caseinline select=\"UNIX\">Under UNIX systems, install the SANE package found at <link href=\"http://www.sane-project.org\" name=\"Sane Project\">http://www.sane-project.org</link>. The SANE package must use the same libc as $[officename].</caseinline></switchinline>"
#: 04060000.xhp
msgctxt ""
@@ -16734,7 +16734,7 @@ msgctxt ""
"par_id231020161309291913\n"
"help.text"
msgid "Two first digits NN represents native numerals:"
-msgstr "የ መጀመሪያው ሁለት ዲጂት NN የሚወክለው የ ቋንቋውን ቁጥር:"
+msgstr "የ መጀመሪያው ሁለት ዲጂት NN የሚወክለው የ ቋንቋውን ቁጥር ነው:"
#: 05020301.xhp
msgctxt ""
@@ -23587,6 +23587,22 @@ msgstr "እርስዎ ማስተካከያ መጨመር ይችላሉ ለ ቀለሞ
#: 05210100.xhp
msgctxt ""
"05210100.xhp\n"
+"hd_id471527077476052\n"
+"help.text"
+msgid "Cell, Row or Table background selector"
+msgstr "የ ክፍል: ረድፍ ወይንም ሰንጠረዥ መደብ መምረጫ"
+
+#: 05210100.xhp
+msgctxt ""
+"05210100.xhp\n"
+"par_id661527077493366\n"
+"help.text"
+msgid "Select the table object which background area is to be filled."
+msgstr ""
+
+#: 05210100.xhp
+msgctxt ""
+"05210100.xhp\n"
"hd_id3147373\n"
"help.text"
msgid "None"
@@ -28038,7 +28054,7 @@ msgctxt ""
"par_id3149287\n"
"help.text"
msgid "You can cut, copy, and paste records in <emph>Data Source</emph> view. The Data Source browser also supports the dragging and dropping of records, or text and numbers from other $[officename] files."
-msgstr "እርስዎ መዝገቦች መቁረጥ: ኮፒ ማድረግ እና መለጠፍ ይችላሉ ከ <emph>ዳታ ምንጭ</emph> መመልከቻ ውስጥ: የ ዳታ ምንጭ መቃኛ እንዲሁም ይደግፋል መጎተት እና መጣል መዝገቦችን: ወይንም ጽሁፍ እና ቁጥሮች ከ ሌሎች $[officename] ፋይሎች ውስጥ"
+msgstr "እርስዎ መዝገቦች መቁረጥ: ኮፒ ማድረግ እና መለጠፍ ይችላሉ ከ <emph>ዳታ ምንጭ</emph> መመልከቻ ውስጥ: የ ዳታ ምንጭ መቃኛ እንዲሁም መዝገቦችን መጎተት እና መጣል ይደግፋል: ወይንም ጽሁፍ እና ቁጥሮች ከ ሌሎች $[officename] ፋይሎች ውስጥ"
#: 05340400.xhp
msgctxt ""
@@ -31086,7 +31102,7 @@ msgctxt ""
"par_id3153394\n"
"help.text"
msgid "To turn on or to turn off the AutoCorrect feature, in $[officename] Calc choose <emph>Tools - AutoInput</emph>, and in $[officename] Writer choose <emph>Tools - AutoCorrect - While Typing</emph>. To apply the AutoCorrect settings to an entire text document, choose <emph>Tools - AutoCorrect - Apply</emph>."
-msgstr ""
+msgstr "የ በራሱ አራሚ ገጽታ ለ ማብራት እና ለ ማጥፋት በ $[officename] ሰንጠረዥ ውስጥ ይምረጡ <emph>መሳሪያዎች - በራሱ ማስገቢያ</emph> እና በ $[officename] መጻፊያ ውስጥ ይምረጡ <emph> መሳሪያዎች - በራሱ አራሚ - በምጽፍ ጊዜ</emph>: የ በራሱ አራሚ ማሰናጃ ለ ጠቅላላ ሰነዱ ለ መፈጸም: ይምረጡ <emph> መሳሪያዎች - በራሱ አራሚ – መፈጸሚያ</emph>:"
#: 06040000.xhp
msgctxt ""
@@ -31134,7 +31150,7 @@ msgctxt ""
"par_id3153124\n"
"help.text"
msgid "In text documents, you can choose to apply the AutoCorrect corrections while you type [T], or only when you modify existing text [M] with <emph>Tools - AutoCorrect - Apply</emph>."
-msgstr ""
+msgstr "በ ጽሁፍ ሰነድ ውስጥ: እርስዎ መምረጥ ይችላሉ በራሱ አራሚ ለ መፈጸም: እርስዎ በሚጽፉ ጊዜ እንዲያርም [ጽ]: ወይንም የ ነበረ ጽሁፍ በሚያሻሽሉ ጊዜ [ማ] በ <emph> መሳሪያዎች - በራሱ አራሚ - መፈጸሚያ </emph>"
#: 06040100.xhp
msgctxt ""
@@ -31205,24 +31221,24 @@ msgctxt ""
"06040100.xhp\n"
"hd_id3145072\n"
"help.text"
-msgid "Automatic *bold* and _underline_"
-msgstr "ራሱ በራሱ *ማድመቂያ* እና _ከ ስሩ ማስመሪያ_"
+msgid "Automatic *bold*, /italic/, -strikeout- and _underline_"
+msgstr "ራሱ በራሱ *ማድመቂያ*: /ማዝመሚያ/: -በላዩ ላይ መሰረዣ- እና _ከ ስሩ ማስመሪያ_"
#: 06040100.xhp
msgctxt ""
"06040100.xhp\n"
"par_id3153577\n"
"help.text"
-msgid "Automatically applies bold formatting to text enclosed by asterisks (*), and underline to text enclosed by underscores ( _ ), for example, *bold*. The asterisks and underscores are not displayed after the formatting is applied."
-msgstr "ራሱ በራሱ ማድመቂያ መፈጸሚያ ጽሁፍ በ ኮከብ የ ተከበበ (*): እና ከ ስሩ የተሰመረ ጽሁፉ የ ተከበበ በ ከ ስሩ ማስመሪያ ( _ ): ለምሳሌ: *ማድመቂያ*: ኮከብ እና ከ ስሩ ማስመሪያ አይታይም አቀራረቡ ከ ተፈጸመ በኋላ"
+msgid "Automatically applies bold, italic, strikethrough or underline formatting to text enclosed by asterisks (*), slashes (/), hyphens (-), and underscores (_), respectively. These characters disappear after the formatting is applied."
+msgstr ""
#: 06040100.xhp
msgctxt ""
"06040100.xhp\n"
"par_id3153127\n"
"help.text"
-msgid "This feature does not work if the formatting characters * or _ are entered with an <link href=\"text/shared/00/00000005.xhp#IME\" name=\"Input Method Editor\">Input Method Editor</link>."
-msgstr "ይህ ገጽታ አይሰራም የ ባህሪዎች አቀራረብ * ወይንም _ ከ ገባ በ <link href=\"text/shared/00/00000005.xhp#IME\" name=\"Input Method Editor\"> ማስገቢያ ዘዴ ማረሚያ </link> ውስጥ"
+msgid "This feature does not work if the formatting characters <item type=\"literal\">* / - _</item> are entered with an <link href=\"text/shared/00/00000005.xhp#IME\" name=\"Input Method Editor\">Input Method Editor</link>."
+msgstr ""
#: 06040100.xhp
msgctxt ""
@@ -31646,7 +31662,7 @@ msgctxt ""
"par_id3145728\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Removes empty paragraphs from the current document when you choose <emph>Tools - AutoCorrect - Apply</emph>.</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">ከ አሁኑ ሰነድ ውስጥ ባዶ አንቀጾች ማስወገጃ ይህን ሲመርጡ <emph>መሳሪያዎች - በራሱ አራሚ - መፈጸሚያ</emph>:</caseinline></switchinline>"
#: 06040100.xhp
msgctxt ""
@@ -32118,7 +32134,7 @@ msgctxt ""
"par_id3152425\n"
"help.text"
msgid "<ahelp hid=\".\">Select the <link href=\"text/shared/01/04100000.xhp\" name=\"special character\">special character</link> that will automatically replace the current opening quotation mark in your document when you choose <emph>Tools - AutoCorrect - Apply</emph>.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">ይምረጡ <link href=\"text/shared/01/04100000.xhp\" name=\"special character\"> የ ተለዩ ባህሪዎች </link> ራሱ በራሱ መቀየሪያ የ አሁኑን የ ተከፈተውን የ ጥቅስ ምልክት በ እርስዎ ሰነድ ውስጥ እርስዎ ሲመርጡ <emph> መሳሪያዎች - በራሱ አራሚ - መፈጸሚያ </emph></ahelp>"
#: 06040400.xhp
msgctxt ""
@@ -34806,7 +34822,7 @@ msgctxt ""
"hd_id961514303975994\n"
"help.text"
msgid "Right Arrow button"
-msgstr ""
+msgstr "የ ቀኝ ቀስት ቁልፍ"
#: 06140100.xhp
msgctxt ""
@@ -34822,7 +34838,7 @@ msgctxt ""
"hd_id161514303992615\n"
"help.text"
msgid "Left Arrow button"
-msgstr ""
+msgstr "የ ግራ ቀስት ቁልፍ"
#: 06140100.xhp
msgctxt ""
@@ -34830,7 +34846,7 @@ msgctxt ""
"par_id361514304000470\n"
"help.text"
msgid "<ahelp hid=\".\">Click on the left arrow button to remove the selected command from the current menu.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">ይጫኑ በ ግራ ቀስት ቁልፍ ላይ የ ተመረጠውን ትእዛዝ ለ ማስወገድ ከ አሁኑ ዝርዝር ውስጥ </ahelp>"
#: 06140100.xhp
msgctxt ""
@@ -35422,7 +35438,7 @@ msgctxt ""
"hd_id961514303975994\n"
"help.text"
msgid "Right Arrow button"
-msgstr ""
+msgstr "የ ቀኝ ቀስት ቁልፍ"
#: 06140300.xhp
msgctxt ""
@@ -35430,7 +35446,7 @@ msgctxt ""
"par_id941514303982378\n"
"help.text"
msgid "Click on the right arrow button to select a function on the left display box and copy to the right display box. This will add the function to the selected context menu."
-msgstr ""
+msgstr "ይጫኑ በ ቀኝ ቀስት ቁልፍ ላይ ተግባር ለ መምረጥ በ ግራ በኩል ከሚታየው ሳጥን ውስጥ: እና ኮፒ ያድርጉ ወደ ቀኝ በኩል የሚታየው ሳጥን ውስጥ: ይህ ለ ተመረጠው ዝርዝር አገባብ ተግባር ይጨምራል"
#: 06140300.xhp
msgctxt ""
@@ -35438,7 +35454,7 @@ msgctxt ""
"hd_id161514303992615\n"
"help.text"
msgid "Left Arrow button"
-msgstr ""
+msgstr "የ ግራ ቀስት ቁልፍ"
#: 06140300.xhp
msgctxt ""
@@ -35446,7 +35462,7 @@ msgctxt ""
"par_id361514304000470\n"
"help.text"
msgid "Click on the left arrow button to remove the selected command from the current contex menu."
-msgstr ""
+msgstr "ይጫኑ በ ግራ ቀስት ቁልፍ ላይ የ ተመረጠውን ትእዛዝ ለ ማስወገድ ከ አሁኑ ዝርዝር ውስጥ"
#: 06140300.xhp
msgctxt ""
@@ -35654,7 +35670,7 @@ msgctxt ""
"par_id921514303969718\n"
"help.text"
msgid "Select the toolbar where the customization is to be applied. The current set of functions is displayed in the box below."
-msgstr ""
+msgstr "የ እቃ መደርደሪያ ይምረጡ ማስተካከያ የሚፈጸምበት: አሁን የ ተሰናዳው ተግባር ከ ታች በኩል ባለው ሳጥን ውስጥ ይታያል"
#: 06140400.xhp
msgctxt ""
@@ -35702,7 +35718,7 @@ msgctxt ""
"hd_id961514303975994\n"
"help.text"
msgid "Right Arrow button"
-msgstr ""
+msgstr "የ ቀኝ ቀስት ቁልፍ"
#: 06140400.xhp
msgctxt ""
@@ -35710,7 +35726,7 @@ msgctxt ""
"par_id941514303982378\n"
"help.text"
msgid "Click on the right arrow button to select a function on the left display box and copy to the right display box. This will add the function to the selected toolbar."
-msgstr ""
+msgstr "ይጫኑ በ ቀኝ ቀስት ቁልፍ ላይ ተግባር ለ መምረጥ በ ግራ በኩል ከሚታየው ሳጥን ውስጥ: እና ኮፒ ያድርጉ ወደ ቀኝ በኩል የሚታየው ሳጥን ውስጥ: ይህ ለ ተመረጠው እቃ መደርደሪያ ተግባር ይጨምራል"
#: 06140400.xhp
msgctxt ""
@@ -35718,7 +35734,7 @@ msgctxt ""
"hd_id161514303992615\n"
"help.text"
msgid "Left Arrow button"
-msgstr ""
+msgstr "የ ግራ ቀስት ቁልፍ"
#: 06140400.xhp
msgctxt ""
@@ -35726,7 +35742,7 @@ msgctxt ""
"par_id361514304000470\n"
"help.text"
msgid "Click on the left arrow button to remove the selected command from the current toolbar."
-msgstr ""
+msgstr "ይጫኑ በ ግራ ቀስት ቁልፍ ላይ የ ተመረጠውን ትእዛዝ ለ ማስወገድ ከ አሁኑ እቃ መደርደሪያ ውስጥ"
#: 06140400.xhp
msgctxt ""
@@ -36494,7 +36510,7 @@ msgctxt ""
"par_id3150506\n"
"help.text"
msgid "<ahelp hid=\".\">Opens a file selection dialog.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">ይጫኑ ለ መክፈት የ ፋይል ምርጫ ንግግር</ahelp>"
#: 06150120.xhp
msgctxt ""
@@ -36846,7 +36862,7 @@ msgctxt ""
"par_id3148520\n"
"help.text"
msgid "<ahelp hid=\".\">Displays the current selection.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">አሁን የ ተመረጠውን ማሳያ</ahelp>"
#: 06200000.xhp
msgctxt ""
@@ -36862,7 +36878,7 @@ msgctxt ""
"par_id3149205\n"
"help.text"
msgid "<ahelp hid=\".\">Displays the first replacement suggestion from the dictionary.</ahelp> You can edit the suggested word or enter another word. Click the <emph>Find</emph> button to replace your original word with the corresponding replacement word."
-msgstr ""
+msgstr "<ahelp hid=\".\">በ መዝገበ ቃላት ውስጥ የ መጀመሪያውን መቀየሪያ ማሳሰቢያ ማሳያ</ahelp> እርስዎ ማሳሰቢያ ቃሉን ማረም ይችላሉ ወይንም ሌላ ቃል ማስገባት: ይጫኑ የ <emph> መፈለጊያ </emph> ቁልፍ ለ መቀየር የ እርስዎን ዋናውን ቃል በ ተመሳሳይ መቀየሪያ ቃል"
#: 06200000.xhp
msgctxt ""
@@ -36878,7 +36894,7 @@ msgctxt ""
"par_id3156560\n"
"help.text"
msgid "<ahelp hid=\".\">Finds your Hangul input in the dictionary and replaces it with the corresponding Hanja.</ahelp> Click <emph>Ignore</emph> to cancel the find function."
-msgstr ""
+msgstr "<ahelp hid=\".\">የ እርስዎን ሀንጉል ማስገቢያ ፈልጎ ያገኛል በ መዝገበ ቃላት ውስጥ እና ይቀይራል በ ተመሳሳይ ሀንጃ </ahelp> ይጫኑ <emph> መተው </emph> የ ተገኘውን ተግባር ለ መሰረዝ"
#: 06200000.xhp
msgctxt ""
@@ -36894,7 +36910,7 @@ msgctxt ""
"par_id3154823\n"
"help.text"
msgid "<ahelp hid=\".\">Displays all available replacements in the dictionary.</ahelp> If the <emph>Replace by character</emph> box is enabled, you see a grid of characters. If the <emph>Replace by character</emph> box is not checked, you see a list of words."
-msgstr ""
+msgstr "<ahelp hid=\".\">ሁሉንም ዝግጁ መቀየሪያዎች በ መዝገበ ቃላቱ ውስጥ ማሳያ </ahelp> የ <emph> መቀየሪያ በ ባህሪ </emph> ሳጥን ውስጥ ካስቻሉ: ለ እርስዎ የ መጋጠሚያ ባህሪዎች ይታያሉ: የ <emph> መቀየሪያ በ ባህሪ </emph> ሳጥን ውስጥ ካላስቻሉ: ለ እርስዎ የ ቃላቶች ዝርዝር ይታያል"
#: 06200000.xhp
msgctxt ""
@@ -37870,7 +37886,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Digital Signature in PDF Export"
-msgstr ""
+msgstr "የ ዲጂታል ፊርማ በ ፒዲኤፍ መላኪያ ውስጥ"
#: digitalsignaturespdf.xhp
msgctxt ""
@@ -37878,7 +37894,7 @@ msgctxt ""
"hd_id771526419375353\n"
"help.text"
msgid "Signing Exported PDF"
-msgstr ""
+msgstr "የ ተላከ ፒዲኤፍ መፈረሚያ"
#: digitalsignaturespdf.xhp
msgctxt ""
@@ -37886,7 +37902,7 @@ msgctxt ""
"par_id321526421041596\n"
"help.text"
msgid "<link href=\"text/shared/guide/digital_signatures.xhp\">About Digital Signatures</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/guide/digital_signatures.xhp\">ስለ ዲጂታል ፊርማዎች</link>"
#: extensionupdate.xhp
msgctxt ""
@@ -38710,7 +38726,7 @@ msgctxt ""
"par_idN1057E\n"
"help.text"
msgid "<ahelp hid=\".\">Opens a movie file or a sound file that you want to preview.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">የ ሙቪ ፋይል ወይንም የ ድምፅ ፋይል መክፈቻ እርስዎ በ ቅድመ እይታ ማየት የሚፈልጉትን </ahelp>"
#: mediaplayer.xhp
msgctxt ""
@@ -38726,7 +38742,7 @@ msgctxt ""
"par_idN10585\n"
"help.text"
msgid "<ahelp hid=\".\">Inserts the current movie file or sound file as a media object into the current document.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">የ አሁኑን ሙቪ ፋይል ወይንም ድምፅ እንደ መገናኛ እቃ ወደ አሁኑ ሰነድ ውስጥ ማስገቢያ</ahelp>"
#: mediaplayer.xhp
msgctxt ""
@@ -38742,7 +38758,7 @@ msgctxt ""
"par_idN1058C\n"
"help.text"
msgid "<ahelp hid=\".\">Plays the current file.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">የ አሁኑን ፋይል ማጫወቻ</ahelp>"
#: mediaplayer.xhp
msgctxt ""
@@ -38758,7 +38774,7 @@ msgctxt ""
"par_idN10593\n"
"help.text"
msgid "<ahelp hid=\".\">Pauses or resumes the playback of the current file.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">የ አሁኑን ፋይል በ ድጋሚ ማጫወቻ ማስቆሚያ ወይንም መቀጠያ </ahelp>"
#: mediaplayer.xhp
msgctxt ""
@@ -38774,7 +38790,7 @@ msgctxt ""
"par_idN1059A\n"
"help.text"
msgid "<ahelp hid=\".\">Stops the playback of the current file.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">የ አሁኑን ፋይል በ ድጋሚ ማጫወቻ ማስቆሚያ </ahelp>"
#: mediaplayer.xhp
msgctxt ""
@@ -38790,7 +38806,7 @@ msgctxt ""
"par_idN105A1\n"
"help.text"
msgid "<ahelp hid=\".\">Plays the file repeatedly.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">የ ተመረጠውን የ ድምፅ ፋይል በ ድጋሚ ማጫወቻ </ahelp>"
#: mediaplayer.xhp
msgctxt ""
@@ -38806,7 +38822,7 @@ msgctxt ""
"par_idN105A8\n"
"help.text"
msgid "<ahelp hid=\".\">Turns sound off and on.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">ድምፅ ማብሪያ ወይንም ማጥፊያ </ahelp>"
#: mediaplayer.xhp
msgctxt ""
@@ -38822,7 +38838,7 @@ msgctxt ""
"par_idN105AF\n"
"help.text"
msgid "<ahelp hid=\".\">Adjusts the volume.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">መጠን ማስተካከያ </ahelp>"
#: mediaplayer.xhp
msgctxt ""
@@ -38838,7 +38854,7 @@ msgctxt ""
"par_idN105B6\n"
"help.text"
msgid "<ahelp hid=\".\">Adjusts the size of the movie playback.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">በ ድጋሚ የሚጫወተውን ሙቪ መጠን ማስተካከያ </ahelp>"
#: mediaplayer.xhp
msgctxt ""
@@ -40526,7 +40542,7 @@ msgctxt ""
"par_id3154044\n"
"help.text"
msgid "Export the current file to <link href=\"text/shared/00/00000002.xhp#epub\" name=\"epub\">EPUB</link>."
-msgstr ""
+msgstr "መላኪያ የ አሁኑን ፋይል ወደ <link href=\"text/shared/00/00000002.xhp#epub\" name=\"epub\">EPUB</link>."
#: ref_epub_export.xhp
msgctxt ""
@@ -40534,7 +40550,7 @@ msgctxt ""
"par_id701525003241759\n"
"help.text"
msgid "<embedvar href=\"text/shared/00/00000002.xhp#epubv\" markup=\"keep\"/>"
-msgstr ""
+msgstr "<embedvar href=\"text/shared/00/00000002.xhp#epubv\" markup=\"keep\"/>"
#: ref_epub_export.xhp
msgctxt ""
@@ -40726,7 +40742,7 @@ msgctxt ""
"par_id3154237\n"
"help.text"
msgid "Enter an unique identifier for the publication."
-msgstr ""
+msgstr "ለ ሕትመት የ ተለየ መለያ ያስገቡ"
#: ref_epub_export.xhp
msgctxt ""
@@ -40742,7 +40758,7 @@ msgctxt ""
"par_id3154238\n"
"help.text"
msgid "Enter the title of the publication."
-msgstr ""
+msgstr "ለ ሕትመት መለያ አርእስት ያስገቡ"
#: ref_epub_export.xhp
msgctxt ""
@@ -40758,7 +40774,7 @@ msgctxt ""
"par_id3154239\n"
"help.text"
msgid "Enter the Author of the publication."
-msgstr ""
+msgstr "ለ ሕትመት ደራሲ ያስገቡ"
#: ref_epub_export.xhp
msgctxt ""
@@ -40790,7 +40806,7 @@ msgctxt ""
"par_id3154241\n"
"help.text"
msgid "Last modification date for the publication. The value of this property must be an XML Schema dateTime conformant date in the form: CCYY-MM-DDThh:mm:ssZ. Default is the date and time when the export dialog opened."
-msgstr ""
+msgstr "ሕትመቱ መጨረሻ የ ተሻሻለበት ቀን: የዚህ ባህሪ ዋጋ የ XML Schema ቀን ሰአት መሆን አለበት ማረጋገጫ ቀን ለ ፎርም: CCYY-MM-DDThh:mm:ssZ. ነባሩ ቀን እና ሰአት ነው: የ መላኪያ ንግግር በሚከፈት ጊዜ:"
#: ref_pdf_export.xhp
msgctxt ""
@@ -41110,7 +41126,7 @@ msgctxt ""
"par_idN207C2\n"
"help.text"
msgid "To export comments of Writer documents as they are shown in %PRODUCTNAME, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer - Print</emph> and select the <emph>In margins</emph> option in the <emph>Comments</emph> area. The exported pages will be scaled down and the comments will be placed into their margins."
-msgstr ""
+msgstr "አስተያየት ለ መላክ በ መጻፊያ ሰነድ ውስጥ አሁን እንደሚታዩት በ %PRODUCTNAME, ይምረጡ <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - ምርጫዎች </emph></caseinline><defaultinline><emph> መሳሪያዎች - ምርጫ </emph></defaultinline></switchinline><emph> - %PRODUCTNAME መጻፊያ - ማተሚያ </emph> እና ይምረጡ <emph> በ መስመሮች </emph> ምርጫ በ <emph> አስተያየት </emph> ቦታ ውስጥ: የ ተላከው ገጽ ይመጠናል እና አስተያየቶቹ ወደ መስመሩ አጠገብ ይሆናሉ"
#: ref_pdf_export.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/shared/02.po b/source/am/helpcontent2/source/text/shared/02.po
index 800dc097cae..605bb12b425 100644
--- a/source/am/helpcontent2/source/text/shared/02.po
+++ b/source/am/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: 2018-05-08 15:10+0200\n"
-"PO-Revision-Date: 2018-04-30 14:42+0000\n"
+"PO-Revision-Date: 2018-06-03 16:40+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1525099333.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1528044031.000000\n"
#: 01110000.xhp
msgctxt ""
@@ -30,7 +30,7 @@ msgctxt ""
"bm_id3153539\n"
"help.text"
msgid "<bookmark_value>printing; directly</bookmark_value>"
-msgstr "<bookmark_value>በቀጥታ ; ማተሚያ</bookmark_value>"
+msgstr "<bookmark_value>በቀጥታ; በ ማተም ላይ</bookmark_value>"
#: 01110000.xhp
msgctxt ""
@@ -662,7 +662,7 @@ msgctxt ""
"par_idN10C39\n"
"help.text"
msgid "To add a control to a document"
-msgstr "መቆጣጠሪያ ወደ ሰነድ ለመጨመር"
+msgstr "መቆጣጠሪያ ወደ ሰነድ ለ መጨመር"
#: 01170000.xhp
msgctxt ""
@@ -8286,7 +8286,7 @@ msgctxt ""
"par_id3150040\n"
"help.text"
msgid "<ahelp hid=\".\">Toggles the Design mode on or off. This function is used to switch quickly between <link href=\"text/shared/explorer/database/04030000.xhp\" name=\"Design\">Design</link> and User mode. Activate to edit the form controls, deactivate to use the form controls.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">የ ንድፍ ዘዴ ማብሪያ ወይንም ማጥፊያ መቀያየሪያ: ይህ ተግባር የሚጠቅመው በፍጥነት ለ መቀየር ነው በ <link href=\"text/shared/explorer/database/04030000.xhp\" name=\"Design\"> ንድፍ </link> እና የተጠቃሚ ዘዴ መካከል: ያስነሱ ለ ማረም የ ፎርም መቆጣጠሪያዎች ያቦዝኑ የ ፎርም መቆጣጠሪያዎች ለመጠቀም </ahelp>"
#: 01170500.xhp
msgctxt ""
@@ -9718,7 +9718,7 @@ msgctxt ""
"par_id3153539\n"
"help.text"
msgid "<ahelp hid=\".uno:TextdirectionLeftToRight\">Specifies the horizontal direction of the text.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".uno:TextdirectionLeftToRight\">የ ጽሁፍ የ አግድም አቅጣጫ መወሰኛ</ahelp>"
#: 02040000.xhp
msgctxt ""
@@ -9758,7 +9758,7 @@ msgctxt ""
"par_id3153089\n"
"help.text"
msgid "<ahelp hid=\".uno:TextdirectionTopToBottom\" visibility=\"visible\">Specifies the vertical direction of the text.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".uno:TextdirectionTopToBottom\" visibility=\"visible\">የ ጽሁፍ በ ቁመት አቅጣጫ መወሰኛ</ahelp>"
#: 02050000.xhp
msgctxt ""
@@ -10766,7 +10766,7 @@ msgctxt ""
"par_id3109850\n"
"help.text"
msgid "<ahelp hid=\".\">Positions the selected paragraph before the one above it.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">የ ተመረጠውን አንቀጽ አንድ ደረጀ ወደ ፊት ያደርገዋል ከ አሁኑ በፊት</ahelp>"
#: 06100000.xhp
msgctxt ""
@@ -10822,7 +10822,7 @@ msgctxt ""
"par_id3154228\n"
"help.text"
msgid "<ahelp hid=\".\">Positions the selected paragraph after the one below it.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">የ ተመረጠውን አንቀጽ አንድ ደረጀ ወደ ኋላ ያደርገዋል ከ አሁኑ በታች በኩል</ahelp>"
#: 06110000.xhp
msgctxt ""
@@ -11990,7 +11990,7 @@ msgctxt ""
"par_id3150445\n"
"help.text"
msgid "<ahelp hid=\".\">Moves back to the previous page in the document.</ahelp> This function is only active when you select the <emph>Print Preview</emph> function on the <emph>File</emph> menu."
-msgstr ""
+msgstr "<ahelp hid=\".\">በ ሰነዱ ውስጥ ቀደም ወደ ያለፈው ገጽ ማንቀሳቀሻ </ahelp> ይህ ተግባር ንቁ የሚሆነው እርስዎ ሲመርጡ ነው የ <emph> ሕትመት ቅድመ እይታ </emph> ተግባር ከ <emph> ፋይል </emph> ዝርዝር ውስጥ:"
#: 10010000.xhp
msgctxt ""
@@ -12030,7 +12030,7 @@ msgctxt ""
"par_id3159224\n"
"help.text"
msgid "<ahelp hid=\".\">Moves forward to the next page in the document.</ahelp> This function is only active when you select the <emph>Print Preview</emph> function on the <emph>File</emph> menu."
-msgstr ""
+msgstr "<ahelp hid=\".\">በ ሰነዱ ውስጥ ወደሚቀጥለው ገጽ ማንቀሳቀሻ </ahelp> ይህ ተግባር ንቁ የሚሆነው እርስዎ ሲመርጡ ነው የ <emph> ሕትመት ቅድመ እይታ </emph> ተግባር ከ <emph> ፋይል </emph> ዝርዝር ውስጥ ነው:"
#: 10020000.xhp
msgctxt ""
@@ -12070,7 +12070,7 @@ msgctxt ""
"par_id3153539\n"
"help.text"
msgid "<ahelp hid=\".\">Moves to the first page of the document.</ahelp> This function is only active when you select the <emph>Print Preview</emph> function on the <emph>File</emph> menu."
-msgstr ""
+msgstr "<ahelp hid=\".\">በ ሰነዱ ውስጥ ወደ መጀመሪያው ገጽ ማንቀሳቀሻ </ahelp> ይህ ተግባር ንቁ የሚሆነው እርስዎ ሲመርጡ ነው የ <emph> ሕትመት ቅድመ እይታ </emph> ተግባር ከ <emph> ፋይል </emph> ዝርዝር ውስጥ ነው:"
#: 10030000.xhp
msgctxt ""
@@ -12110,7 +12110,7 @@ msgctxt ""
"par_id3149716\n"
"help.text"
msgid "<ahelp hid=\".\">Moves to the last page of the document.</ahelp> This function is only active when you select the <emph>Print Preview</emph> function on the <emph>File</emph> menu."
-msgstr ""
+msgstr "<ahelp hid=\".\">በ ሰነዱ ውስጥ ወደ መጨረሻው ገጽ ማንቀሳቀሻ </ahelp> ይህ ተግባር ንቁ የሚሆነው እርስዎ ሲመርጡ ነው የ <emph> ሕትመት ቅድመ እይታ </emph> ተግባር ከ <emph> ፋይል </emph> ዝርዝር ውስጥ ነው:"
#: 10040000.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/shared/04.po b/source/am/helpcontent2/source/text/shared/04.po
index 670ac65496a..70fd149b1c6 100644
--- a/source/am/helpcontent2/source/text/shared/04.po
+++ b/source/am/helpcontent2/source/text/shared/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: 2018-05-08 15:10+0200\n"
-"PO-Revision-Date: 2017-12-31 04:04+0000\n"
+"PO-Revision-Date: 2018-06-02 15:11+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1514693079.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1527952316.000000\n"
#: 01010000.xhp
msgctxt ""
@@ -214,7 +214,7 @@ msgctxt ""
"par_id3153968\n"
"help.text"
msgid "$[officename] has an AutoComplete function which activates itself in some text and list boxes. For example, enter <switchinline select=\"sys\"><caseinline select=\"WIN\">c:\\a</caseinline><defaultinline>~/a</defaultinline></switchinline> into the URL field and the AutoComplete function displays the first file or first directory found <switchinline select=\"sys\"><caseinline select=\"WIN\">on the C: drive</caseinline><defaultinline>in your home folder</defaultinline></switchinline> that starts with the letter \"a\"."
-msgstr ""
+msgstr "$[officename] በራሱ መጨረሻ ተግባር አለው ለ አንዳንድ ጽሁፍ ራሱን ያስነሳ እና ዝርዝሮችን በ ሳጥን ውስጥ ያሳያል: ለምሳሌ: ያስገቡ <switchinline select=\"sys\"><caseinline select=\"WIN\">c:\\a </caseinline><defaultinline>~/a</defaultinline></switchinline> ወደ URL ሜዳ እና በራሱ መጨረሻ ተግባር ያገኘውን የ መጀመሪያውን ፋይል ወይንም የ መጀመሪያውን ዳይሬክቶሪ ያሳያል <switchinline select=\"sys\"><caseinline select=\"WIN\">በ C: drive </caseinline><defaultinline>በ እርስዎ የ ቤት ፎልደር ውስጥ</defaultinline></switchinline> በ \"a\" ፊደል የሚጀምረውን"
#: 01010000.xhp
msgctxt ""
@@ -254,7 +254,7 @@ msgctxt ""
"par_id3145421\n"
"help.text"
msgid "The shortcut keys are shown on the right hand side of the menu lists next to the corresponding menu command. <switchinline select=\"sys\"><caseinline select=\"MAC\">(Not all of the mentioned keys for controlling dialogs are available on the Macintosh.)</caseinline></switchinline>"
-msgstr ""
+msgstr "አቋራጭ ቁልፎች ከ ዝርዝር በ ቀኝ በኩል በ ቅደም ተከተል ከ ትእዛዝ ዝርዝር አጠገብ ይታያሉ: <switchinline select=\"sys\"><caseinline select=\"MAC\">(ሁሉም ከ ላይ የ ተጠቀሱት የ ቁልፎች መቆጣጠሪያ ንግግር በ Macintosh ላይታዩ ይችላሉ) </caseinline></switchinline>"
#: 01010000.xhp
msgctxt ""
@@ -1502,7 +1502,7 @@ msgctxt ""
"hd_id3149722\n"
"help.text"
msgid "Selecting Rows and Columns in a Database Table (opened by <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> + Shift + F4 keys)"
-msgstr ""
+msgstr "ከ ዳታቤዝ ሰንጠረዥ ውስጥ ረድፍ እና አምድ መምረጥ (የ ተከፈተውን በ <switchinline select=\"sys\"><caseinline select=\"MAC\">ትእዛዝ</caseinline><defaultinline>Ctrl</defaultinline></switchinline> + Shift + F4 ቁልፎች)"
#: 01010000.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/shared/autopi.po b/source/am/helpcontent2/source/text/shared/autopi.po
index 82ad47e3ba8..db0ea2f830b 100644
--- a/source/am/helpcontent2/source/text/shared/autopi.po
+++ b/source/am/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: 2018-04-24 12:21+0200\n"
-"PO-Revision-Date: 2018-04-30 14:37+0000\n"
+"PO-Revision-Date: 2018-06-03 16:41+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1525099070.000000\n"
+"X-POOTLE-MTIME: 1528044063.000000\n"
#: 01000000.xhp
msgctxt ""
@@ -5414,7 +5414,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Group Element Wizard"
-msgstr "የቡድን አካሎች አዋቂ"
+msgstr "የ ቡድን አካሎች አዋቂ"
#: 01120000.xhp
msgctxt ""
@@ -5422,7 +5422,7 @@ msgctxt ""
"hd_id3149031\n"
"help.text"
msgid "Group Element Wizard"
-msgstr "የቡድን አካሎች አዋቂ"
+msgstr "የ ቡድን አካሎች አዋቂ"
#: 01120000.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/shared/explorer/database.po b/source/am/helpcontent2/source/text/shared/explorer/database.po
index f24a0ecb1dc..116ef87a85f 100644
--- a/source/am/helpcontent2/source/text/shared/explorer/database.po
+++ b/source/am/helpcontent2/source/text/shared/explorer/database.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: 2018-05-16 16:54+0200\n"
-"PO-Revision-Date: 2018-04-30 15:34+0000\n"
+"PO-Revision-Date: 2018-06-03 17:00+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1525102480.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1528045226.000000\n"
#: 02000000.xhp
msgctxt ""
@@ -10118,7 +10118,7 @@ msgctxt ""
"par_id0112200902353554\n"
"help.text"
msgid "<link href=\"https://wiki.documentfoundation.org/Macros_in_Database_Documents\" name=\"wiki.documentfoundation.org Macros in Database Documents\">An in depth explanation by the developers (Wiki).</link>"
-msgstr ""
+msgstr "<link href=\"https://wiki.documentfoundation.org/Macros_in_Database_Documents\" name=\"wiki.documentfoundation.org Macros in Database Documents\">የ አበልፃጊዎች ጥልቅ መግለጫ (Wiki).</link>"
#: password.xhp
msgctxt ""
@@ -11486,7 +11486,7 @@ msgctxt ""
"par_id5941648\n"
"help.text"
msgid "The Writer document is opened read-only. To edit the Writer document, click <emph>Edit Document</emph> on the information bar, or choose <emph>Edit - Edit Mode</emph>."
-msgstr ""
+msgstr "የ መጻፊያ ሰነድ የ ተከፈተው ለ ማንበብ-ብቻ ነው: የ መጻፊያ ሰነድ ለ ማረም ይጫኑ <emph> ሰነድ ማረሚያ </emph> በ መረጃ መደርደሪያ ላይ: ወይንም ይምረጡ <emph> ማረሚያ - ማረሚያ ዘዴ </emph>:"
#: rep_main.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/shared/guide.po b/source/am/helpcontent2/source/text/shared/guide.po
index d389f38a64f..f384ba962fb 100644
--- a/source/am/helpcontent2/source/text/shared/guide.po
+++ b/source/am/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: 2018-05-16 16:54+0200\n"
-"PO-Revision-Date: 2018-05-21 17:25+0000\n"
+"PO-Revision-Date: 2018-06-03 17:01+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1526923526.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1528045286.000000\n"
#: aaa_start.xhp
msgctxt ""
@@ -510,7 +510,7 @@ msgctxt ""
"par_id8847010\n"
"help.text"
msgid "A current list of supported assistive tools can be found on the Wiki at <link href=\"https://wiki.documentfoundation.org/Accessibility\" name=\"wiki.documentfoundation.org Accessibility\">https://wiki.documentfoundation.org/Accessibility</link>."
-msgstr ""
+msgstr "የ እርዳታ ቴክኖሎጂ መሳሪያዎች ዝርዝር ይገኛል በ ዊኪ በ <link href=\"https://wiki.documentfoundation.org/Accessibility\" name=\"wiki.documentfoundation.org Accessibility\">https://wiki.documentfoundation.org/Accessibility</link>."
#: assistive.xhp
msgctxt ""
@@ -4878,7 +4878,7 @@ msgctxt ""
"par_id3150984\n"
"help.text"
msgid "On the <emph>Form Controls</emph> toolbar, click the <emph>Design Mode On/Off</emph> icon<image id=\"img_id3147618\" src=\"cmd/sc_switchcontroldesignmode.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3147618\">Icon</alt></image> to turn off the design mode."
-msgstr ""
+msgstr "በ <emph> ፎርም መቆጣጠሪያዎች </emph> እቃ መደርደሪያ ላይ ይጫኑ የ <emph> ንድፍ ዘዴ ማብሪያ/ማጥፊያ </emph> ምልክት <image id=\"img_id3147618\" src=\"cmd/sc_switchcontroldesignmode.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3147618\"> ምልክት </alt></image> የ ንድፍ ዘዴን ለማጥፋት"
#: data_search2.xhp
msgctxt ""
@@ -4886,7 +4886,7 @@ msgctxt ""
"par_id3148672\n"
"help.text"
msgid "On the <emph>Form Navigation</emph> toolbar, click the <emph>Form-Based Filters</emph> icon<image id=\"img_id3149807\" src=\"cmd/sc_formfilter.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3149807\">Icon</alt></image>. The current document is displayed with its form controls as an empty edit mask. The <emph>Form Filter </emph>toolbar appears."
-msgstr ""
+msgstr "በ <emph> ፎርም መቃኛ </emph> እቃ መደርደሪያ ላይ ይጫኑ በ <emph> ፎርም-መሰረት ባደረገ ማጣሪያ </emph> ምልክት <image id=\"img_id3149807\" src=\"cmd/sc_formfilter.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3149807\"> ምልክት </alt></image> የ አሁኑ ሰነድ ይታያል ከ ፎርም መቆጣጠሪያ ጋር እንደ ባዶ ማረሚያ mask. የ <emph> ፎርም ማጣሪያ </emph> እቃ መደርደሪያ ይታያል"
#: data_search2.xhp
msgctxt ""
@@ -5398,7 +5398,7 @@ msgctxt ""
"par_id3152920\n"
"help.text"
msgid "<link href=\"text/shared/02/01170500.xhp\" name=\"entering data versus editing form\">Entering data versus editing form</link>"
-msgstr "<link href=\"text/shared/02/01170500.xhp\" name=\"entering data versus editing form\">ዳታ ከ ማስገባት እና ፎርም ከ ማረም</link>"
+msgstr "<link href=\"text/shared/02/01170500.xhp\" name=\"entering data versus editing form\">ዳታ ማስገቢያ እና ፎርም ማረሚያ </link>"
#: database_main.xhp
msgctxt ""
@@ -17950,7 +17950,7 @@ msgctxt ""
"par_id0820200802525413\n"
"help.text"
msgid "<ahelp hid=\".\">The <emph>Recent Files</emph> button shows thumbnails of the most recent documents you opened.</ahelp> Hover your mouse over the thumbnail to highlight the document, display a tip about the document location and display an icon on the top right to delete the thumbnail from the pane and from the recent files list. Click on the thumbnail to open the document underneath."
-msgstr ""
+msgstr "<ahelp hid=\".\">የ <emph> ቅርብ ጊዜ ፋይሎች </emph> ቁልፍ የሚያሳየው የ አውራ ጥፍር ልክ የ ቅርብ ጊዜ ሰነድ ነው እርስዎ የከፈቱትን: </ahelp> የ እርስዎን አይጥ መጠቆሚያ በላዩ ላይ ያንሳፉ በ አውራ ጥፍር ሰነዱን ለማድመቅ: ስለ ሰነዱ ያለበት ቦታ ጠቃሚ ምክር እና ምልክት ያሳያል ከ ላይ በ ቀኝ በኩል: የ አውራ ጥፍር ልክ ለማጥፋት ከ ክፍል እና ከ ቅርብ ጊዜ ፋይሎች ዝርዝር ውስጥ: ይጫኑ በ አውራ ጥፍር ልክ ስር ሰነድ ለ መክፈት:"
#: startcenter.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/shared/help.po b/source/am/helpcontent2/source/text/shared/help.po
index 33fd0a5387e..c04b672a02b 100644
--- a/source/am/helpcontent2/source/text/shared/help.po
+++ b/source/am/helpcontent2/source/text/shared/help.po
@@ -4,14 +4,17 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2018-05-16 16:54+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"PO-Revision-Date: 2018-06-02 16:34+0000\n"
+"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: am\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: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1527957278.000000\n"
#: browserhelp.xhp
msgctxt ""
@@ -19,7 +22,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Help Page Strings"
-msgstr ""
+msgstr "የ እርዳታ ገጽ ሐረጎች"
#: browserhelp.xhp
msgctxt ""
@@ -27,7 +30,7 @@ msgctxt ""
"par_id491525733955136\n"
"help.text"
msgid "<variable id=\"module\">Module</variable>"
-msgstr ""
+msgstr "<variable id=\"module\">ክፍል</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -35,7 +38,7 @@ msgctxt ""
"par_id531525734031068\n"
"help.text"
msgid "<variable id=\"language\">Language</variable>"
-msgstr ""
+msgstr "<variable id=\"language\">ቋንቋ</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -43,7 +46,7 @@ msgctxt ""
"par_id991525734084608\n"
"help.text"
msgid "<variable id=\"contents\">Contents</variable>"
-msgstr ""
+msgstr "<variable id=\"contents\">ይዞታዎች</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -51,7 +54,7 @@ msgctxt ""
"par_id601525734140935\n"
"help.text"
msgid "<variable id=\"index\">Index</variable>"
-msgstr ""
+msgstr "<variable id=\"index\">ማውጫ</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -67,7 +70,7 @@ msgctxt ""
"par_id881525734289794\n"
"help.text"
msgid "<variable id=\"LibreOfficeHelp\">%PRODUCTNAME %PRODUCTVERSION Help</variable>"
-msgstr ""
+msgstr "<variable id=\"LibreOfficeHelp\">%PRODUCTNAME %PRODUCTVERSION እርዳታ </variable>"
#: browserhelp.xhp
msgctxt ""
@@ -75,7 +78,7 @@ msgctxt ""
"par_id421525736799965\n"
"help.text"
msgid "<variable id=\"copyclip\">Click on text to copy to clipboard</variable>"
-msgstr ""
+msgstr "<variable id=\"copyclip\">ይጫኑ በ ጽሁፉ ላይ ወደ ቁራጭ ሰሌዳ ኮፒ ለማድረግ</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -83,7 +86,7 @@ msgctxt ""
"par_id31525734624833\n"
"help.text"
msgid "<variable id=\"selectmodule\">Select Module</variable>"
-msgstr ""
+msgstr "<variable id=\"selectmodule\">ክፍል ይምረጡ</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -91,7 +94,7 @@ msgctxt ""
"par_id1001525734619670\n"
"help.text"
msgid "<variable id=\"selectlanguage\">Select Language</variable>"
-msgstr ""
+msgstr "<variable id=\"selectlanguage\">ቋንቋ ይምረጡ</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -99,7 +102,7 @@ msgctxt ""
"par_id91525734616233\n"
"help.text"
msgid "<variable id=\"searchhelpcontents\">Search help contents</variable>"
-msgstr ""
+msgstr "<variable id=\"searchhelpcontents\">የ እርዳታ ይዞታዎች መፈለጊያ </variable>"
#: browserhelp.xhp
msgctxt ""
@@ -107,7 +110,7 @@ msgctxt ""
"par_id811525747677263\n"
"help.text"
msgid "<variable id=\"en-US\">English (USA)</variable>"
-msgstr ""
+msgstr "<variable id=\"en-US\">English (USA)</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -115,7 +118,7 @@ msgctxt ""
"par_id521525747699241\n"
"help.text"
msgid "<variable id=\"am\">Amharic</variable>"
-msgstr ""
+msgstr "<variable id=\"am\">አማርኛ</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -123,7 +126,7 @@ msgctxt ""
"par_id841525747709330\n"
"help.text"
msgid "<variable id=\"ar\">Arabic</variable>"
-msgstr ""
+msgstr "<variable id=\"ar\">Arabic</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -131,7 +134,7 @@ msgctxt ""
"par_id371525747715258\n"
"help.text"
msgid "<variable id=\"ast\">Asturian</variable>"
-msgstr ""
+msgstr "<variable id=\"ast\">Asturian</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -139,7 +142,7 @@ msgctxt ""
"par_id91525747756759\n"
"help.text"
msgid "<variable id=\"bg\">Bulgarian</variable>"
-msgstr ""
+msgstr "<variable id=\"bg\">Bulgarian</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -147,7 +150,7 @@ msgctxt ""
"par_id391525747761934\n"
"help.text"
msgid "<variable id=\"bn\">Bengali</variable>"
-msgstr ""
+msgstr "<variable id=\"bn\">Bengali</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -155,7 +158,7 @@ msgctxt ""
"par_id701525747766711\n"
"help.text"
msgid "<variable id=\"bn-IN\">Bengali (India)</variable>"
-msgstr ""
+msgstr "<variable id=\"bn-IN\">Bengali (India)</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -163,7 +166,7 @@ msgctxt ""
"par_id941525747772436\n"
"help.text"
msgid "<variable id=\"bo\">Tibetan</variable>"
-msgstr ""
+msgstr "<variable id=\"bo\">Tibetan</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -171,7 +174,7 @@ msgctxt ""
"par_id241525747783594\n"
"help.text"
msgid "<variable id=\"bs\">Bosnian</variable>"
-msgstr ""
+msgstr "<variable id=\"bs\">Bosnian</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -179,7 +182,7 @@ msgctxt ""
"par_id191525747798511\n"
"help.text"
msgid "<variable id=\"ca\">Catalan</variable>"
-msgstr ""
+msgstr "<variable id=\"ca\">Catalan</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -187,7 +190,7 @@ msgctxt ""
"par_id331525747842279\n"
"help.text"
msgid "<variable id=\"ca-valencia\">Valencian Catalan</variable>"
-msgstr ""
+msgstr "<variable id=\"ca-valencia\">Valencian Catalan</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -195,7 +198,7 @@ msgctxt ""
"par_id541525747847143\n"
"help.text"
msgid "<variable id=\"cs\">Czech</variable>"
-msgstr ""
+msgstr "<variable id=\"cs\">Czech</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -203,7 +206,7 @@ msgctxt ""
"par_id141525747867126\n"
"help.text"
msgid "<variable id=\"da\">Danish</variable>"
-msgstr ""
+msgstr "<variable id=\"da\">Danish</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -211,7 +214,7 @@ msgctxt ""
"par_id131525747872352\n"
"help.text"
msgid "<variable id=\"de\">German</variable>"
-msgstr ""
+msgstr "<variable id=\"de\">German</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -219,7 +222,7 @@ msgctxt ""
"par_id831525747962487\n"
"help.text"
msgid "<variable id=\"dz\">Dzongkha</variable>"
-msgstr ""
+msgstr "<variable id=\"dz\">Dzongkha</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -227,7 +230,7 @@ msgctxt ""
"par_id631525747969597\n"
"help.text"
msgid "<variable id=\"el\">Greek</variable>"
-msgstr ""
+msgstr "<variable id=\"el\">Greek</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -235,7 +238,7 @@ msgctxt ""
"par_id371525747976937\n"
"help.text"
msgid "<variable id=\"en-GB\">English (UK)</variable>"
-msgstr ""
+msgstr "<variable id=\"en-GB\">English (UK)</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -243,7 +246,7 @@ msgctxt ""
"par_id701525747984877\n"
"help.text"
msgid "<variable id=\"en-ZA\">English (SA)</variable>"
-msgstr ""
+msgstr "<variable id=\"en-ZA\">English (SA)</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -251,7 +254,7 @@ msgctxt ""
"par_id61525747994007\n"
"help.text"
msgid "<variable id=\"eo\">Esperanto</variable>"
-msgstr ""
+msgstr "<variable id=\"eo\">Esperanto</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -259,7 +262,7 @@ msgctxt ""
"par_id811525748006070\n"
"help.text"
msgid "<variable id=\"es\">Spanish</variable>"
-msgstr ""
+msgstr "<variable id=\"es\">Spanish</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -267,7 +270,7 @@ msgctxt ""
"par_id561525748012579\n"
"help.text"
msgid "<variable id=\"et\">Estonian</variable>"
-msgstr ""
+msgstr "<variable id=\"et\">Estonian</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -275,7 +278,7 @@ msgctxt ""
"par_id111525748019144\n"
"help.text"
msgid "<variable id=\"eu\">Basque</variable>"
-msgstr ""
+msgstr "<variable id=\"eu\">Basque</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -283,7 +286,7 @@ msgctxt ""
"par_id621525748022811\n"
"help.text"
msgid "<variable id=\"fi\">Finnish</variable>"
-msgstr ""
+msgstr "<variable id=\"fi\">Finnish</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -291,7 +294,7 @@ msgctxt ""
"par_id861525748027499\n"
"help.text"
msgid "<variable id=\"fr\">French</variable>"
-msgstr ""
+msgstr "<variable id=\"fr\">French</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -299,7 +302,7 @@ msgctxt ""
"par_id661525748030419\n"
"help.text"
msgid "<variable id=\"gl\">Galician</variable>"
-msgstr ""
+msgstr "<variable id=\"gl\">Galician</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -307,7 +310,7 @@ msgctxt ""
"par_id301525748033370\n"
"help.text"
msgid "<variable id=\"gu\">Gujarati</variable>"
-msgstr ""
+msgstr "<variable id=\"gu\">Gujarati</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -315,7 +318,7 @@ msgctxt ""
"par_id141525748036295\n"
"help.text"
msgid "<variable id=\"he\">Hebrew</variable>"
-msgstr ""
+msgstr "<variable id=\"he\">Hebrew</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -323,7 +326,7 @@ msgctxt ""
"par_id531525748040396\n"
"help.text"
msgid "<variable id=\"hi\">Hindi</variable>"
-msgstr ""
+msgstr "<variable id=\"hi\">Hindi</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -331,7 +334,7 @@ msgctxt ""
"par_id901525748044409\n"
"help.text"
msgid "<variable id=\"hr\">Croatian</variable>"
-msgstr ""
+msgstr "<variable id=\"hr\">Croatian</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -339,7 +342,7 @@ msgctxt ""
"par_id331525748049389\n"
"help.text"
msgid "<variable id=\"hu\">Hungarian</variable>"
-msgstr ""
+msgstr "<variable id=\"hu\">Hungarian</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -347,7 +350,7 @@ msgctxt ""
"par_id21525748084845\n"
"help.text"
msgid "<variable id=\"is\">Icelandic</variable>"
-msgstr ""
+msgstr "<variable id=\"is\">Icelandic</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -355,7 +358,7 @@ msgctxt ""
"par_id761525748087547\n"
"help.text"
msgid "<variable id=\"it\">Italian</variable>"
-msgstr ""
+msgstr "<variable id=\"it\">Italian</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -363,7 +366,7 @@ msgctxt ""
"par_id691525748090324\n"
"help.text"
msgid "<variable id=\"ja\">Japanese</variable>"
-msgstr ""
+msgstr "<variable id=\"ja\">Japanese</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -371,7 +374,7 @@ msgctxt ""
"par_id181525748093242\n"
"help.text"
msgid "<variable id=\"ka\">Georgian</variable>"
-msgstr ""
+msgstr "<variable id=\"ka\">Georgian</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -379,7 +382,7 @@ msgctxt ""
"par_id531525748097320\n"
"help.text"
msgid "<variable id=\"km\">Khmer</variable>"
-msgstr ""
+msgstr "<variable id=\"km\">Khmer</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -387,7 +390,7 @@ msgctxt ""
"par_id641525748100233\n"
"help.text"
msgid "<variable id=\"ko\">Korean</variable>"
-msgstr ""
+msgstr "<variable id=\"ko\">Korean</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -395,7 +398,7 @@ msgctxt ""
"par_id521525748103387\n"
"help.text"
msgid "<variable id=\"lo\">Lao</variable>"
-msgstr ""
+msgstr "<variable id=\"lo\">Lao</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -403,7 +406,7 @@ msgctxt ""
"par_id51525748108130\n"
"help.text"
msgid "<variable id=\"lt\">Lithuanian</variable>"
-msgstr ""
+msgstr "<variable id=\"lt\">Lithuanian</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -411,7 +414,7 @@ msgctxt ""
"par_id111525748111334\n"
"help.text"
msgid "<variable id=\"lv\">Latvian</variable>"
-msgstr ""
+msgstr "<variable id=\"lv\">Latvian</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -419,7 +422,7 @@ msgctxt ""
"par_id131525748114674\n"
"help.text"
msgid "<variable id=\"mk\">Macedonian</variable>"
-msgstr ""
+msgstr "<variable id=\"mk\">Macedonian</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -427,7 +430,7 @@ msgctxt ""
"par_id441525748118091\n"
"help.text"
msgid "<variable id=\"nb\">Norwegian Bokmål</variable>"
-msgstr ""
+msgstr "<variable id=\"nb\">Norwegian Bokmål</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -435,7 +438,7 @@ msgctxt ""
"par_id221525748121057\n"
"help.text"
msgid "<variable id=\"ne\">Nepali</variable>"
-msgstr ""
+msgstr "<variable id=\"ne\">Nepali</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -443,7 +446,7 @@ msgctxt ""
"par_id441525748123904\n"
"help.text"
msgid "<variable id=\"nl\">Dutch</variable>"
-msgstr ""
+msgstr "<variable id=\"nl\">Dutch</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -451,7 +454,7 @@ msgctxt ""
"par_id371525748126784\n"
"help.text"
msgid "<variable id=\"nn\">Norwegian Nynorsk</variable>"
-msgstr ""
+msgstr "<variable id=\"nn\">Norwegian Nynorsk</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -459,7 +462,7 @@ msgctxt ""
"par_id401525748129935\n"
"help.text"
msgid "<variable id=\"om\">Oromo</variable>"
-msgstr ""
+msgstr "<variable id=\"om\">Oromo</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -467,7 +470,7 @@ msgctxt ""
"par_id91525748133349\n"
"help.text"
msgid "<variable id=\"pl\">Polish</variable>"
-msgstr ""
+msgstr "<variable id=\"pl\">Polish</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -475,7 +478,7 @@ msgctxt ""
"par_id631525748136712\n"
"help.text"
msgid "<variable id=\"pt\">Portuguese</variable>"
-msgstr ""
+msgstr "<variable id=\"pt\">Portuguese</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -483,7 +486,7 @@ msgctxt ""
"par_id351525748140239\n"
"help.text"
msgid "<variable id=\"pt-BR\">Brazilian Portuguese</variable>"
-msgstr ""
+msgstr "<variable id=\"pt-BR\">Brazilian Portuguese</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -491,7 +494,7 @@ msgctxt ""
"par_id421525748143274\n"
"help.text"
msgid "<variable id=\"ro\">Romanian</variable>"
-msgstr ""
+msgstr "<variable id=\"ro\">Romanian</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -499,7 +502,7 @@ msgctxt ""
"par_id291525748146064\n"
"help.text"
msgid "<variable id=\"ru\">Russian</variable>"
-msgstr ""
+msgstr "<variable id=\"ru\">Russian</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -507,7 +510,7 @@ msgctxt ""
"par_id91525748149042\n"
"help.text"
msgid "<variable id=\"si\">Sinhala</variable>"
-msgstr ""
+msgstr "<variable id=\"si\">Sinhala</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -515,7 +518,7 @@ msgctxt ""
"par_id191525748182094\n"
"help.text"
msgid "<variable id=\"sid\">Sidama</variable>"
-msgstr ""
+msgstr "<variable id=\"sid\">Sidama</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -523,7 +526,7 @@ msgctxt ""
"par_id461525748185823\n"
"help.text"
msgid "<variable id=\"sk\">Slovak</variable>"
-msgstr ""
+msgstr "<variable id=\"sk\">Slovak</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -531,7 +534,7 @@ msgctxt ""
"par_id41525748190004\n"
"help.text"
msgid "<variable id=\"sl\">Slovenian</variable>"
-msgstr ""
+msgstr "<variable id=\"sl\">Slovenian</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -539,7 +542,7 @@ msgctxt ""
"par_id281525748193030\n"
"help.text"
msgid "<variable id=\"sq\">Albanian</variable>"
-msgstr ""
+msgstr "<variable id=\"sq\">Albanian</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -547,7 +550,7 @@ msgctxt ""
"par_id481525748203088\n"
"help.text"
msgid "<variable id=\"sv\">Swedish</variable>"
-msgstr ""
+msgstr "<variable id=\"sv\">Swedish</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -555,7 +558,7 @@ msgctxt ""
"par_id191525748206804\n"
"help.text"
msgid "<variable id=\"ta\">Tamil</variable>"
-msgstr ""
+msgstr "<variable id=\"ta\">Tamil</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -563,7 +566,7 @@ msgctxt ""
"par_id391525748210165\n"
"help.text"
msgid "<variable id=\"tg\">Tajik</variable>"
-msgstr ""
+msgstr "<variable id=\"tg\">Tajik</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -571,7 +574,7 @@ msgctxt ""
"par_id561525748213759\n"
"help.text"
msgid "<variable id=\"tr\">Turkish</variable>"
-msgstr ""
+msgstr "<variable id=\"tr\">Turkish</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -579,7 +582,7 @@ msgctxt ""
"par_id621525748217482\n"
"help.text"
msgid "<variable id=\"ug\">Uyghur</variable>"
-msgstr ""
+msgstr "<variable id=\"ug\">Uyghur</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -587,7 +590,7 @@ msgctxt ""
"par_id861525748221057\n"
"help.text"
msgid "<variable id=\"uk\">Ukrainian</variable>"
-msgstr ""
+msgstr "<variable id=\"uk\">Ukrainian</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -595,7 +598,7 @@ msgctxt ""
"par_id611525748224412\n"
"help.text"
msgid "<variable id=\"vi\">Vietnamese</variable>"
-msgstr ""
+msgstr "<variable id=\"vi\">Vietnamese</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -603,7 +606,7 @@ msgctxt ""
"par_id981525748227614\n"
"help.text"
msgid "<variable id=\"zh-CN\">Chinese (Simplified)</variable>"
-msgstr ""
+msgstr "<variable id=\"zh-CN\">Chinese (Simplified)</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -611,4 +614,4 @@ msgctxt ""
"par_id61525748230858\n"
"help.text"
msgid "<variable id=\"zh-TW\">Chinese (Traditional)</variable>"
-msgstr ""
+msgstr "<variable id=\"zh-TW\">Chinese (Traditional)</variable>"
diff --git a/source/am/helpcontent2/source/text/shared/optionen.po b/source/am/helpcontent2/source/text/shared/optionen.po
index 2a97e8eed87..8104a84733c 100644
--- a/source/am/helpcontent2/source/text/shared/optionen.po
+++ b/source/am/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: 2018-05-08 15:10+0200\n"
-"PO-Revision-Date: 2018-05-21 16:59+0000\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
+"PO-Revision-Date: 2018-06-10 23:13+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1526921963.000000\n"
+"X-POOTLE-MTIME: 1528672417.000000\n"
#: 01000000.xhp
msgctxt ""
@@ -83,6 +83,22 @@ msgstr "ማስታወሻ ለ: Mac OS ተጠቃሚዎች: እርዳታ ይገል
#: 01000000.xhp
msgctxt ""
"01000000.xhp\n"
+"hd_id551527692881035\n"
+"help.text"
+msgid "Help"
+msgstr "እርዳታ"
+
+#: 01000000.xhp
+msgctxt ""
+"01000000.xhp\n"
+"par_id831527692885723\n"
+"help.text"
+msgid "Opens the help contents for the Options page displayed."
+msgstr ""
+
+#: 01000000.xhp
+msgctxt ""
+"01000000.xhp\n"
"hd_id3159149\n"
"help.text"
msgid "<link href=\"text/shared/optionen/01010000.xhp\" name=\"$[officename]\">%PRODUCTNAME</link>"
@@ -502,7 +518,7 @@ msgctxt ""
"bm_id3143284\n"
"help.text"
msgid "<bookmark_value>saving; options</bookmark_value> <bookmark_value>defaults;of saving</bookmark_value> <bookmark_value>URL; saving absolute/relative paths</bookmark_value> <bookmark_value>relative saving of URLs</bookmark_value> <bookmark_value>absolute saving of URLs</bookmark_value>"
-msgstr "<bookmark_value>ማስቀመጫ: ምርጫ</bookmark_value> <bookmark_value>ነባር: የ ማስቀመጫ</bookmark_value> <bookmark_value>URL; ማስቀመጫ ፍጹም/አንፃራዊ መንገድ</bookmark_value> <bookmark_value>አንፃራዊ ማስቀመጫ በ URLs</bookmark_value> <bookmark_value>ፍጹም ማስቀመጫ በ URLs</bookmark_value>"
+msgstr "<bookmark_value>ማስቀመጫ: ምርጫ</bookmark_value> <bookmark_value>ነባር:የ ማስቀመጫ</bookmark_value> <bookmark_value>URL; ማስቀመጫ ፍጹም/አንፃራዊ መንገድ</bookmark_value> <bookmark_value>አንፃራዊ ማስቀመጫ በ URLs</bookmark_value> <bookmark_value>ፍጹም ማስቀመጫ በ URLs</bookmark_value>"
#: 01010200.xhp
msgctxt ""
@@ -870,7 +886,7 @@ msgctxt ""
"par_id6944181\n"
"help.text"
msgid "OpenOffice.org 3 and StarOffice 9 introduce new features which have to be saved using the <link href=\"https://en.wikipedia.org/wiki/OpenDocument\" name=\"English Wikipedia: OpenDocument\">OpenDocument</link> format (ODF) version 1.2. The prior versions of OpenOffice.org 2 and StarOffice 8 support the file formats ODF 1.0/1.1. Those prior file formats cannot store all new features of the new software."
-msgstr ""
+msgstr "OpenOffice.org 3 እና StarOffice 9 አዲስ ገጽታዎችን አስተዋውቀዋል ሰለዚህ መቀመጥ ያለበት በ መጠቀም ነው የ <link href=\"https://en.wikipedia.org/wiki/OpenDocument\" name=\"English Wikipedia: OpenDocument\">OpenDocument</link> አቀራረብ (ODF) እትም 1.2. ቀደም ያለው እትም የ OpenOffice.org 2 እና StarOffice 8 s የሚደግፉት የ ፋይል አቀራረብ ODF 1.0/1.1. ቀደም ያለው የ ፋይል አቀራረብ ማስቀመጥ አይችልም ሁሉንም አዲስ ገጽታዎች የ አዲሱን ሶፍትዌር:"
#: 01010200.xhp
msgctxt ""
@@ -1414,7 +1430,7 @@ msgctxt ""
"par_id3153663\n"
"help.text"
msgid "A language module can contain one, two or three submodules: Spellcheck, hyphenation and thesaurus. Each sub-module can be available in one or more languages. If you click in front of the name of the module, you activate all the available sub-modules simultaneously. If you remove a set mark, you deactivate all the available sub-modules simultaneously. If you wish to activate or deactivate individual sub-modules, click the <emph>Edit</emph> button to open the <link href=\"text/shared/optionen/01010401.xhp\" name=\"Edit Modules\"><emph>Edit Modules</emph></link> dialog."
-msgstr ""
+msgstr "የ ቋንቋ ክፍል አንድ ወይንም ሁለት ወይንም ሶስት ንዑስ ክፍሎች: ፊደል ማረሚያ: ጭረት: እና ተመሳሳይ መያዝ ይችላል: እያንዳንዱ ንዑስ-ክፍል ዝግጁ የሚሆነው በ አንድ ወይንም በ ተጨማሪ ቋንቋዎች ነው: እርስዎ ከ ተጫኑ ከ ስሙ ፊት ለ ፊት በ ክፍሉ ላይ: እርስዎ ማስጀመር ይችላሉ ሁሉንም ዝግጁ ንዑስ-ክፍሎች በ ተመሳሳይ ጊዜ: እርስዎ ከስወገዱ ምልክት ማድረጊያ ማሰናጃ: እርስዎ ያሰናክሉ ሁሉንም ዝግጁ ንዑስ-ክፍሎች በ ተመሳሳይ ጊዜ: እርስዎ ከ ፈለጉ ማስጀመር ወይንም ማሰናከል እያንዳንዱ ንዑስ-ክፍል: ይጫኑ በ <emph> ማረሚያ ቁልፍ </emph> ላይ ለ መክፈት የ <link href=\"text/shared/optionen/01010401.xhp\" name=\"Edit Modules\"><emph> ማረሚያ ክፍሎች </emph></link> ንግግር ውስጥ:"
#: 01010400.xhp
msgctxt ""
@@ -1422,7 +1438,7 @@ msgctxt ""
"par_id3294778\n"
"help.text"
msgid "The configuration allows two different directories: one folder where the user has write permissions, and one without write permissions. The user can only edit and delete the user dictionaries that are located in the writable path. Other dictionaries can be read only."
-msgstr ""
+msgstr "ማዋቀሪያው ሁለት የ ተለያዩ ዳይሬክቶሪዎች መፍጠር ያስችላል: አንዱ ፎልደር ተጠቃሚው የ መጻፍ መብት አለው: እና ሁለትኛው ተጠቃሚው የ መጻፍ መብት የለውም: ተጠቃሚው ማረም እና ማጥፋት ይችላል የ ተጠቃሚ መዝገበ ቃላት በ መጻፊያ አካባቢ መንገድ ውስጥ ባለው: ሌላው መዝገበ ቃላት ለ ንባብ ብቻ ነው"
#: 01010400.xhp
msgctxt ""
@@ -1590,7 +1606,7 @@ msgctxt ""
"par_id3154730\n"
"help.text"
msgid "<variable id=\"ignore\">The <emph>IgnoreAllList (All)</emph> includes all words that have been marked with <emph>Ignore</emph> during spellcheck. This list is valid only for the current spellcheck.</variable>"
-msgstr ""
+msgstr "<variable id=\"ignore\">የ <emph>ሁሉንም ዝርዝር መተው (ሁሉንም) </emph>ሁሉንም ቃሎች ያካትታል ምልክት የተደረገባቸውን በ <emph>መተው</emph> ፊደል በሚታረንም ጊዜ: ይህ ዝርዝር ዋጋ የሚኖረው ለ አሁኑ ፊደል ማረሚያ ብቻ ነው </variable>"
#: 01010400.xhp
msgctxt ""
@@ -1670,7 +1686,7 @@ msgctxt ""
"par_id3163808\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/editdictionarydialog/newreplace\">Adds the word in the <emph>Word</emph> text field to your current custom dictionary. The word in the <emph>Suggestion</emph> field is also added when working with exception dictionaries.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/editdictionarydialog/newreplace\">ቃላት መጨመሪያ ወደ <emph> ቃላት </emph>ጽሁፍ ሜዳ በ እርስዎ የ መዝገበ ቃላት ማስተካከያ ውስጥ: ቃሉ በ <emph> ተጠቆመው </emph>ሜዳ ውስጥ ይጨመራል ወደ የ ተለየ መዝገበ ቃላት በሚሰሩ ጊዜ</ahelp>"
#: 01010400.xhp
msgctxt ""
@@ -4565,8 +4581,8 @@ msgctxt ""
"01030300.xhp\n"
"par_idN10640\n"
"help.text"
-msgid "Options"
-msgstr "ምርጫዎች"
+msgid "Security Options and Warnings"
+msgstr ""
#: 01030300.xhp
msgctxt ""
@@ -4597,8 +4613,8 @@ msgctxt ""
"01030300.xhp\n"
"hd_id3168736\n"
"help.text"
-msgid "Persistently save passwords protected by a master password"
-msgstr "ቶሎ የማይጠፋ የ መግቢያ ቃል ማስቀመጫ የሚጠበቀው በ ዋናው የ መግቢያ ቃል ነው"
+msgid "Persistently save passwords for web connections"
+msgstr ""
#: 01030300.xhp
msgctxt ""
@@ -4613,6 +4629,22 @@ msgctxt ""
"01030300.xhp\n"
"hd_id3901791\n"
"help.text"
+msgid "Protected by a master password (recommended)"
+msgstr ""
+
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"par_id31527711486980\n"
+"help.text"
+msgid "Check to enable all connections' passwords to be protected by a master password."
+msgstr ""
+
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"hd_id141527711343312\n"
+"help.text"
msgid "Master Password"
msgstr "ዋናው የ መግቢያ ቃል"
@@ -11681,12 +11713,13 @@ msgid "Load Basic code"
msgstr "መሰረታዊ ኮድ መጫኛ"
#: 01130100.xhp
+#, fuzzy
msgctxt ""
"01130100.xhp\n"
"par_id3159399\n"
"help.text"
msgid "<variable id=\"codetext\"><ahelp hid=\".\">Loads and saves the Basic code from a Microsoft document as a special $[officename] Basic module with the document. The disabled Microsoft Basic code is visible in the $[officename] Basic IDE between <emph>Sub</emph> and <emph>End Sub</emph>.</ahelp> You can edit the code. When saving the document in $[officename] format, the Basic code is saved as well. When saving in another format, the Basic code from the $[officename] Basic IDE is not saved. </variable>"
-msgstr ""
+msgstr "<variable id=\"codetext\"><ahelp hid=\".\">መጫኛ እና ማስቀመጫ የ Basic code ከ Microsoft ሰነድ ውስጥ እንደ የ ተለየ $[officename] Basic ክፍል በ ሰነድ ውስጥ: የ ተሰናከለው የ Microsoft Basic code ይታያል በ $[officename] Basic IDE መካከል <emph> ንዑስ </emph> እና <emph> ንዑስ መጨረሻ </emph></ahelp> እርስዎ ኮድ ማረም ይችላሉ: ሰነድ በሚያስቀምጡ ጊዜ በ $[officename] አቀራረብ: የ Basic code እንዲሁም ይቀመጣል: በ ሌላ አቀራረብ በሚያስቀምጡ ጊዜ: የ Basic code ከ $[officename] Basic IDE አይቀመጥም </variable>"
#: 01130100.xhp
msgctxt ""
@@ -11726,7 +11759,7 @@ msgctxt ""
"par_id3150084\n"
"help.text"
msgid "<ahelp hid=\".\">Specifies that the original Microsoft Basic code contained in the document is held in a special internal memory for as long as the document remains loaded in $[officename]. When saving the document in Microsoft format the Microsoft Basic is saved again with the code in an unchanged form.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">መወሰኛ ዋናው የ Microsoft Basic code በ ሰነድ ውስጥ መያዙን በ ተለየ የ ውስጥ ማስታወሻ ሰነዱ እስከሚዘጋ ድረስ እንደ ተጫኑ ይቆያል $[officename]. ሰነድ በሚያስቀምጡ ጊዜ በ Microsoft አቀራረብ የ Microsoft Basic እንደገና ይቀመጣል በ ኮድ ባልተቀየረ ፎርም ውስጥ </ahelp>"
#: 01130100.xhp
msgctxt ""
@@ -11854,7 +11887,7 @@ msgctxt ""
"par_id3149095\n"
"help.text"
msgid "<ahelp hid=\".\">Specifies the settings for importing and exporting Microsoft Office documents.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">የ Microsoft Office ሰነዶች ለ ማምጣት እና ለ መላክ ማሰናጃ መወሰኛ</ahelp>"
#: 01130200.xhp
msgctxt ""
@@ -11942,7 +11975,7 @@ msgctxt ""
"par_id3150671\n"
"help.text"
msgid "<ahelp hid=\".\">Microsoft Office has two character attributes similar to $[officename] character background. Select the appropriate attribute (highlighting or shading) which you would like to use during export to Microsoft Office file formats.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Microsoft Office ሁለት የ ባህሪ መለያዎች አሉት ለ $[officename] ባህሪ መደብ: ይምረጡ ተገቢውን መለያ (ማድመቂያ ወይንም ጥላ) እርስዎ መጠቀም የሚፈልጉትን በሚልኩ ጊዜ ወደ Microsoft Office ፋይል አቀራረብ </ahelp>"
#: 01140000.xhp
msgctxt ""
@@ -13733,8 +13766,8 @@ msgctxt ""
"java.xhp\n"
"hd_id3148618\n"
"help.text"
-msgid "Optional (unstable) options"
-msgstr "በ ምርጫ (ያልተረጋጋ) ምርጫዎች"
+msgid "Optional Features"
+msgstr "ገጽታዎች በ ምርጫ"
#: java.xhp
msgctxt ""
@@ -13749,7 +13782,7 @@ msgctxt ""
"java.xhp\n"
"par_id3156344\n"
"help.text"
-msgid "It enables features that are not yet complete or contain known bugs. The list of these features is different version by version, or even it can be empty."
+msgid "Enables features that are not yet complete or may contain known bugs. The list of these features is different version by version, or even it can be empty."
msgstr "ገጽታዎችን ያስችላል ገና ያልተጨረሱ ወይንም የ ታወቀ ችግር ያለባቸውን: የ እነዚህ ዝርዝር ገጽታዎች ልዩ እትም ነው በ እትም: ወይንም ባዶ ቢሆኑም እንኳን"
#: java.xhp
@@ -13765,8 +13798,8 @@ msgctxt ""
"java.xhp\n"
"par_id3156345\n"
"help.text"
-msgid "It enables macro recording, so the <link href=\"text/shared/guide/macro_recording.xhp\" name=\"Tools - Macros - Record Macro\"><item type=\"menuitem\">Tools - Macros - Record Macro</item></link> menu item will be available."
-msgstr "ያስችላል የ macro መቅረጫ: ስለዚህ የ <link href=\"text/shared/guide/macro_recording.xhp\" name=\"Tools - Macros - Record Macro\"><item type=\"menuitem\"> መሳሪያዎች - ማክሮስ - ማክሮስ መቅረጫ </item></link> ዝርዝር እቃ ዝግጁ ይሆናል"
+msgid "Enables macro recording. The <link href=\"text/shared/guide/macro_recording.xhp\" name=\"Tools - Macros - Record Macro\"><item type=\"menuitem\">Tools - Macros - Record Macro</item></link> menu item is available."
+msgstr "የ ማክሮ መቅረጫ ማስቻያ: የ <link href=\"text/shared/guide/macro_recording.xhp\" name=\"Tools - Macros - Record Macro\"><item type=\"menuitem\"> መሳሪያዎች - ማክሮስ - ማክሮስ መቅረጫ </item></link> ዝርዝር እቃ ዝግጁ ይሆናል"
#: java.xhp
msgctxt ""
@@ -14926,7 +14959,7 @@ msgctxt ""
"bm_id2322154\n"
"help.text"
msgid "<bookmark_value>selecting;security warnings</bookmark_value><bookmark_value>selecting;security options</bookmark_value><bookmark_value>options;security</bookmark_value><bookmark_value>warnings;security</bookmark_value>"
-msgstr "<bookmark_value>መምረጫ: የ ደህንነት ማስጠንቀቂያ</bookmark_value><bookmark_value>መምረጫ: የ ደህንነት ምርጫዎች</bookmark_value><bookmark_value>ምርጫ: የ ደህንነት</bookmark_value><bookmark_value>ማስጠንቀቂያ: የ ደህንነት</bookmark_value>"
+msgstr "<bookmark_value>መምረጫ:የ ደህንነት ማስጠንቀቂያ</bookmark_value><bookmark_value>መምረጫ:የ ደህንነት ምርጫዎች</bookmark_value><bookmark_value>ምርጫ:የ ደህንነት</bookmark_value><bookmark_value>ማስጠንቀቂያ:የ ደህንነት</bookmark_value>"
#: securityoptionsdialog.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/simpress/01.po b/source/am/helpcontent2/source/text/simpress/01.po
index 2e054bcaffa..4a397042bfd 100644
--- a/source/am/helpcontent2/source/text/simpress/01.po
+++ b/source/am/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: 2018-05-08 15:10+0200\n"
-"PO-Revision-Date: 2018-04-30 14:31+0000\n"
+"PO-Revision-Date: 2018-06-10 21:56+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1525098714.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1528667819.000000\n"
#: 01170000.xhp
msgctxt ""
@@ -3310,7 +3310,7 @@ msgctxt ""
"par_id3145799\n"
"help.text"
msgid "<ahelp hid=\".\">Inserts the page number into the current slide or page.</ahelp> If you want to add a page number to every slide, choose View - Master<switchinline select=\"appl\"><caseinline select=\"IMPRESS\"> Slide</caseinline></switchinline> and insert the page number field. To change the number format, choose <switchinline select=\"appl\"><caseinline select=\"IMPRESS\"><emph>Slide</emph></caseinline><caseinline select=\"DRAW\"><emph>Page</emph></caseinline></switchinline><emph> - Properties - Page</emph> tab and then select a format from the list in the <emph>Layout Settings</emph> area."
-msgstr ""
+msgstr "<ahelp hid=\".\">ወደ አሁኑ ተንሸራታች ወይንም ገጽ ውስጥ የ ገጽ ቁጥር መጨመሪያ </ahelp> እርስዎ ለ እያንዳንዱ ተንሸራታች የ ገጽ ቁጥር መጨመር ከ ፈለጉ: ይምረጡ መመልከቻ - ዋናው <switchinline select=\"appl\"><caseinline select=\"IMPRESS\"> ተንሸራታች </caseinline></switchinline> እና የ ገጽ ቁጥር መጨመሪያ ሜዳ ያስገቡ: የ ቁጥር አቀራረብ ለ መቀየር: ይምረጡ <switchinline select=\"appl\"><caseinline select=\"IMPRESS\"><emph> ተንሸራታች </emph></caseinline><caseinline select=\"DRAW\"><emph> ገጽ </emph></caseinline></switchinline><emph> - ባህሪዎች - ገጽ </emph> tab እና ከዛ ይምረጡ አቀራረብ ከ ዝርዝር ውስጥ ከ <emph> እቅድ ማሰናጃ </emph> ቦታ ውስጥ:"
#: 04990600.xhp
msgctxt ""
@@ -4414,7 +4414,7 @@ msgctxt ""
"par_id3149209\n"
"help.text"
msgid "<variable id=\"verbindertext\"><ahelp hid=\".\">Sets the properties of a connector.</ahelp></variable>"
-msgstr ""
+msgstr "<variable id=\"verbindertext\"><ahelp hid=\".\">የ አገናኝ ባህሪዎች ማሰናጃ</ahelp></variable>"
#: 05170000.xhp
msgctxt ""
@@ -5518,7 +5518,7 @@ msgctxt ""
"par_idN1079F\n"
"help.text"
msgid "Each list entry consists of the following two rows:"
-msgstr ""
+msgstr "እያንዳንዱ የ ዝርዝር ማስገቢያ የያዘው የሚቀጥሉትን ሁለት ረድፎች ነው:"
#: 06060000.xhp
msgctxt ""
@@ -5606,7 +5606,7 @@ msgctxt ""
"par_idN10571\n"
"help.text"
msgid "<emph>Entrance:</emph> Select an entrance effect from the list of effects."
-msgstr ""
+msgstr "<emph>መግቢያ:</emph> የ መግቢያ ዝርዝር ውጤት ከ ዝርዝር ውጤት ውስጥ ይምረጡ:"
#: 06060000.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/simpress/guide.po b/source/am/helpcontent2/source/text/simpress/guide.po
index dd7109a0622..9b1ae82334f 100644
--- a/source/am/helpcontent2/source/text/simpress/guide.po
+++ b/source/am/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: 2018-05-16 16:54+0200\n"
-"PO-Revision-Date: 2018-04-30 14:36+0000\n"
+"PO-Revision-Date: 2018-06-13 16:27+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1525099013.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1528907244.000000\n"
#: 3d_create.xhp
msgctxt ""
@@ -4718,7 +4718,7 @@ msgctxt ""
"par_id351512577323192\n"
"help.text"
msgid "Choose <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 Impress - General</item>."
-msgstr ""
+msgstr "ይምረጡ <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"menuitem\">%PRODUCTNAME - ምርጫዎች </item></caseinline><defaultinline><item type=\"menuitem\"> መሳሪያዎች - ምርጫ </item></defaultinline></switchinline><item type=\"menuitem\"> - %PRODUCTNAME - ማስደነቂያ ባጠቃላይ </item>"
#: presenter_console.xhp
msgctxt ""
@@ -4734,7 +4734,7 @@ msgctxt ""
"par_id261512578116942\n"
"help.text"
msgid "<image id=\"img_impressoptions\" src=\"media/screenshots/cui/ui/optionsdialog/impressoptionsgeneraldialog.png\" width=\"793px\" height=\"538px\"><alt id=\"alt_id821512578116950\">Enable Presenter Console option</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_impressoptions\" src=\"media/screenshots/cui/ui/optionsdialog/impressoptionsgeneraldialog.png\" width=\"793px\" height=\"538px\"><alt id=\"alt_id821512578116950\">የ ማቅረቢያ መቆጣጠሪያ ምርጫ ማስቻያ </alt></image>"
#: presenter_console.xhp
msgctxt ""
@@ -4758,7 +4758,7 @@ msgctxt ""
"par_id391512577726275\n"
"help.text"
msgid "Run the slide show. Press F5 or Shift-F5 or choose <item type=\"menuitem\">Slide Show - Start from First Slide</item> or <item type=\"menuitem\">Start from Current Slide</item>."
-msgstr ""
+msgstr "ተንሸራታች ማስኬድ ይጀምሩ: ይጫኑ F5 ወይንም Shift-F5 ወይንም ይምረጡ <item type=\"menuitem\">ተንሸራታች ማሳያ - ከ መጀመሪያው ተንሸራታች ማስጀመሪያ </item> ወይንም <item type=\"menuitem\"> ከ አሁኑ ተንሸራታች ማስጀመሪያ</item>"
#: presenter_console.xhp
msgctxt ""
@@ -4774,7 +4774,7 @@ msgctxt ""
"par_id721512827886185\n"
"help.text"
msgid "<image src=\"media/helpimg/sd_PresenterConsole04.png\" id=\"img_id401512827886185\" width=\"640\" height=\"72\"><alt id=\"alt_id71512827886185\">Presenter Console Controls</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/helpimg/sd_PresenterConsole04.png\" id=\"img_id401512827886185\" width=\"640\" height=\"72\"><alt id=\"alt_id71512827886185\">የ ማቅረቢያ መቆጣጠሪያ ምርጫ </alt></image>"
#: presenter_console.xhp
msgctxt ""
@@ -4782,7 +4782,7 @@ msgctxt ""
"par_id71512828085688\n"
"help.text"
msgid "<emph>Previous</emph>: move to previous slide."
-msgstr ""
+msgstr "<emph> ያለፈው </emph>: ወደ ያለፈው ተንሸራታች ይመልሳል"
#: presenter_console.xhp
msgctxt ""
@@ -4790,7 +4790,7 @@ msgctxt ""
"par_id61512828110394\n"
"help.text"
msgid "<emph>Next</emph>: move to next slide."
-msgstr ""
+msgstr "<emph> ይቀጥሉ </emph>: ወደ የሚቀጥለው ተንሸራታች ይወስዳል"
#: presenter_console.xhp
msgctxt ""
@@ -4798,7 +4798,7 @@ msgctxt ""
"par_id981512828129990\n"
"help.text"
msgid "<emph>Notes</emph>: display the Presenter Console Notes mode."
-msgstr ""
+msgstr "<emph> ማስታወሻ </emph>: የ ማቅረቢያ መቆጣጠሪያ ዘዴ ማስታወሻ ያሳያል"
#: presenter_console.xhp
msgctxt ""
@@ -4806,7 +4806,7 @@ msgctxt ""
"par_id101512828220096\n"
"help.text"
msgid "<emph>Slide</emph>: display the Presenter Console Slide sorter mode."
-msgstr ""
+msgstr "<emph> ተንሸራታች </emph>: የ ማቅረቢያ መቆጣጠሪያ ተንሸራታች መለያ ዘዴ ያሳያል"
#: presenter_console.xhp
msgctxt ""
@@ -4870,7 +4870,7 @@ msgctxt ""
"par_id311512825411947\n"
"help.text"
msgid "<image src=\"media/helpimg/sd_PresenterConsole01.png\" id=\"img_id481512825411947\" width=\"640\" height=\"360\"><alt id=\"alt_id151512825411947\">Presenter console normal mode</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/helpimg/sd_PresenterConsole01.png\" id=\"img_id481512825411947\" width=\"640\" height=\"360\"><alt id=\"alt_id151512825411947\">የ ማቅረቢያ መደበኛ መቆጣጠሪያ ዘዴ</alt></image>"
#: presenter_console.xhp
msgctxt ""
@@ -4894,7 +4894,7 @@ msgctxt ""
"par_id961512827293400\n"
"help.text"
msgid "<image src=\"media/helpimg/sd_PresenterConsole03.png\" id=\"img_id651512827293401\" width=\"640\" height=\"360\"><alt id=\"alt_id881512827293401\">Notes mode</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/helpimg/sd_PresenterConsole03.png\" id=\"img_id651512827293401\" width=\"640\" height=\"360\"><alt id=\"alt_id881512827293401\">የ ማስታወሻዎች ዘዴ</alt></image>"
#: presenter_console.xhp
msgctxt ""
@@ -4918,7 +4918,7 @@ msgctxt ""
"par_id721512827434997\n"
"help.text"
msgid "<image src=\"media/helpimg/sd_PresenterConsole02.png\" id=\"img_id831512827434997\" width=\"640\" height=\"360\"><alt id=\"alt_id221512827434997\">Slide sorter mode</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/helpimg/sd_PresenterConsole02.png\" id=\"img_id831512827434997\" width=\"640\" height=\"360\"><alt id=\"alt_id221512827434997\">የ ተንሸራታች መለያ ዘዴ</alt></image>"
#: presenter_console.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/smath/01.po b/source/am/helpcontent2/source/text/smath/01.po
index 9d16e7fea15..2681635ff43 100644
--- a/source/am/helpcontent2/source/text/smath/01.po
+++ b/source/am/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: 2018-05-16 16:54+0200\n"
-"PO-Revision-Date: 2018-04-30 14:27+0000\n"
+"PO-Revision-Date: 2018-06-10 23:13+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1525098446.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1528672439.000000\n"
#: 02080000.xhp
msgctxt ""
@@ -342,7 +342,7 @@ msgctxt ""
"bm_id3155963\n"
"help.text"
msgid "<bookmark_value>selection options in formulas</bookmark_value> <bookmark_value>formulas; selections</bookmark_value> <bookmark_value>elements;in Math</bookmark_value>"
-msgstr "<bookmark_value>በ መቀመሪያ ውስጥ የ መምረጫ ምርጫ</bookmark_value> <bookmark_value>መቀመሪያ: ምርጫዎች</bookmark_value> <bookmark_value>አካሎች: በ ሂሳብ ውስጥ</bookmark_value>"
+msgstr "<bookmark_value>በ መቀመሪያ ውስጥ የ መምረጫ ምርጫ</bookmark_value> <bookmark_value>መቀመሪያ: ምርጫዎች</bookmark_value> <bookmark_value>አካሎች:በ ሂሳብ ውስጥ</bookmark_value>"
#: 03090000.xhp
msgctxt ""
@@ -5246,7 +5246,7 @@ msgctxt ""
"par_id3153818\n"
"help.text"
msgid "<image id=\"img_id3148870\" src=\"media/helpimg/smzb1.png\" width=\"95px\" height=\"80px\"><alt id=\"alt_id3148870\">Symbols with Indices</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3148870\" src=\"media/helpimg/smzb1.png\" width=\"95px\" height=\"80px\"><alt id=\"alt_id3148870\">ምልክቶች ከ ማውጫ ጋር</alt></image>"
#: 03090902.xhp
msgctxt ""
@@ -5278,7 +5278,7 @@ msgctxt ""
"par_id3153912\n"
"help.text"
msgid "<image id=\"img_id3149126\" src=\"media/helpimg/smzb2.png\" width=\"95px\" height=\"80px\"><alt id=\"alt_id3149126\">Symbols with Indices</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3149126\" src=\"media/helpimg/smzb2.png\" width=\"95px\" height=\"80px\"><alt id=\"alt_id3149126\">ምልክቶች ከ ማውጫ ጋር</alt></image>"
#: 03090903.xhp
msgctxt ""
@@ -5310,7 +5310,7 @@ msgctxt ""
"par_id3148866\n"
"help.text"
msgid "<image id=\"img_id3153246\" src=\"media/helpimg/smzb3.png\" width=\"175px\" height=\"80px\"><alt id=\"alt_id3153246\">Symbols with Indices</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3153246\" src=\"media/helpimg/smzb3.png\" width=\"175px\" height=\"80px\"><alt id=\"alt_id3153246\">ምልክቶች ከ ማውጫ ጋር</alt></image>"
#: 03090904.xhp
msgctxt ""
@@ -5438,7 +5438,7 @@ msgctxt ""
"par_id3153912\n"
"help.text"
msgid "<image id=\"img_id3148871\" src=\"media/helpimg/smzb7.png\" width=\"255px\" height=\"60px\"><alt id=\"alt_id3148871\">Functions</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3148871\" src=\"media/helpimg/smzb7.png\" width=\"255px\" height=\"60px\"><alt id=\"alt_id3148871\">ተግባሮች</alt></image>"
#: 03090908.xhp
msgctxt ""
@@ -5470,7 +5470,7 @@ msgctxt ""
"par_id3148870\n"
"help.text"
msgid "<image id=\"img_id3153917\" src=\"media/helpimg/smzb8.png\" width=\"303px\" height=\"83px\"><alt id=\"alt_id3153917\">Square Root</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3153917\" src=\"media/helpimg/smzb8.png\" width=\"303px\" height=\"83px\"><alt id=\"alt_id3153917\">ስኴር ሩት</alt></image>"
#: 03090909.xhp
msgctxt ""
@@ -5510,7 +5510,7 @@ msgctxt ""
"par_id3151243\n"
"help.text"
msgid "<image id=\"img_id3148871\" src=\"media/helpimg/smzb9.png\" width=\"300px\" height=\"90px\"><alt id=\"alt_id3148871\">Integral and Sum Ranges, Font Size</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3148871\" src=\"media/helpimg/smzb9.png\" width=\"300px\" height=\"90px\"><alt id=\"alt_id3148871\">የ ኢንቲግራል እና ድምር መጠኖች: የ ፊደል መጠን </alt></image>"
#: 03090910.xhp
msgctxt ""
@@ -5542,7 +5542,7 @@ msgctxt ""
"par_id3148703\n"
"help.text"
msgid "<image id=\"img_id3151242\" src=\"media/helpimg/smzb10.png\" width=\"295px\" height=\"40px\"><alt id=\"alt_id3151242\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3151242\" src=\"media/helpimg/smzb10.png\" width=\"295px\" height=\"40px\"><alt id=\"alt_id3151242\">ምልክት</alt></image>"
#: 03091100.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/smath/06.po b/source/am/helpcontent2/source/text/smath/06.po
index 0ce4253eacf..168ecace1d2 100644
--- a/source/am/helpcontent2/source/text/smath/06.po
+++ b/source/am/helpcontent2/source/text/smath/06.po
@@ -4,14 +4,17 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2018-05-16 16:54+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"PO-Revision-Date: 2018-05-28 22:32+0000\n"
+"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: am\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: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1527546732.000000\n"
#: screenshots.xhp
msgctxt ""
@@ -19,7 +22,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Math screenshots"
-msgstr ""
+msgstr "የ ሂሳብ መመልከቻ ፎቶ"
#: screenshots.xhp
msgctxt ""
@@ -27,7 +30,7 @@ msgctxt ""
"par_id141525570544232\n"
"help.text"
msgid "<image src=\"media/screenshots/modules/smath/ui/alignmentdialog/AlignmentDialog.png\" id=\"img_id331525570544232\" localize=\"true\"><alt id=\"alt_id641525570544232\">Alignment Dialog</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/screenshots/modules/smath/ui/alignmentdialog/AlignmentDialog.png\" id=\"img_id331525570544232\" localize=\"true\"><alt id=\"alt_id641525570544232\">ንግግር ማሰለፊያ</alt></image>"
#: screenshots.xhp
msgctxt ""
@@ -35,7 +38,7 @@ msgctxt ""
"par_id121525570707303\n"
"help.text"
msgid "<image src=\"media/screenshots/modules/smath/ui/catalogdialog/CatalogDialog.png\" id=\"img_id441525570707303\" localize=\"true\"><alt id=\"alt_id921525570707303\">Catalog Dialog</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/screenshots/modules/smath/ui/catalogdialog/CatalogDialog.png\" id=\"img_id441525570707303\" localize=\"true\"><alt id=\"alt_id921525570707303\">የ መዝገብ ንግግር</alt></image>"
#: screenshots.xhp
msgctxt ""
@@ -43,7 +46,7 @@ msgctxt ""
"par_id71525570710878\n"
"help.text"
msgid "<image src=\"media/screenshots/modules/smath/ui/fontdialog/FontDialog.png\" id=\"img_id41525570710879\" localize=\"true\"><alt id=\"alt_id931525570710879\">Font Dialog</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/screenshots/modules/smath/ui/fontdialog/FontDialog.png\" id=\"img_id41525570710879\" localize=\"true\"><alt id=\"alt_id931525570710879\">የ ፊደል ንግግር</alt></image>"
#: screenshots.xhp
msgctxt ""
@@ -51,7 +54,7 @@ msgctxt ""
"par_id671525570713808\n"
"help.text"
msgid "<image src=\"media/screenshots/modules/smath/ui/fontsizedialog/FontSizeDialog.png\" id=\"img_id131525570713808\" localize=\"true\"><alt id=\"alt_id501525570713809\">Font Size Dialog</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/screenshots/modules/smath/ui/fontsizedialog/FontSizeDialog.png\" id=\"img_id131525570713808\" localize=\"true\"><alt id=\"alt_id501525570713809\">የ ፊደል መጠን ንግግር</alt></image>"
#: screenshots.xhp
msgctxt ""
@@ -59,7 +62,7 @@ msgctxt ""
"par_id891525570718035\n"
"help.text"
msgid "<image src=\"media/screenshots/modules/smath/ui/fonttypedialog/FontsDialog.png\" id=\"img_id441525570718035\" localize=\"true\"><alt id=\"alt_id401525570718036\">Font Type Dialog</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/screenshots/modules/smath/ui/fonttypedialog/FontsDialog.png\" id=\"img_id441525570718035\" localize=\"true\"><alt id=\"alt_id401525570718036\">የ ፊደል አይነት ንግግር</alt></image>"
#: screenshots.xhp
msgctxt ""
@@ -67,7 +70,7 @@ msgctxt ""
"par_id991525570721266\n"
"help.text"
msgid "<image src=\"media/screenshots/modules/smath/ui/savedefaultsdialog/SaveDefaultsDialog.png\" id=\"img_id571525570721266\" localize=\"true\"><alt id=\"alt_id981525570721266\">Save Default Dialog</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/screenshots/modules/smath/ui/savedefaultsdialog/SaveDefaultsDialog.png\" id=\"img_id571525570721266\" localize=\"true\"><alt id=\"alt_id981525570721266\">ነባር ንግግር ማስቀመጫ</alt></image>"
#: screenshots.xhp
msgctxt ""
@@ -75,7 +78,7 @@ msgctxt ""
"par_id861525570725718\n"
"help.text"
msgid "<image src=\"media/screenshots/modules/smath/ui/spacingdialog/SpacingDialog.png\" id=\"img_id81525570725718\" localize=\"true\"><alt id=\"alt_id981525570725718\">Spacing Dialog</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/screenshots/modules/smath/ui/spacingdialog/SpacingDialog.png\" id=\"img_id81525570725718\" localize=\"true\"><alt id=\"alt_id981525570725718\">የ ክፍተት ንግግር</alt></image>"
#: screenshots.xhp
msgctxt ""
@@ -83,4 +86,4 @@ msgctxt ""
"par_id931525570728897\n"
"help.text"
msgid "<image src=\"media/screenshots/modules/smath/ui/symdefinedialog/EditSymbols.png\" id=\"img_id491525570728897\" localize=\"true\"><alt id=\"alt_id31525570728897\">Edit Symbols</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/screenshots/modules/smath/ui/symdefinedialog/EditSymbols.png\" id=\"img_id491525570728897\" localize=\"true\"><alt id=\"alt_id31525570728897\">ምልክቶች ማረሚያ</alt></image>"
diff --git a/source/am/helpcontent2/source/text/swriter/00.po b/source/am/helpcontent2/source/text/swriter/00.po
index a8dc30fa212..20df450caa9 100644
--- a/source/am/helpcontent2/source/text/swriter/00.po
+++ b/source/am/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: 2018-05-22 13:17+0200\n"
-"PO-Revision-Date: 2017-12-08 00:48+0000\n"
+"PO-Revision-Date: 2018-05-27 23:52+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1512694136.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1527465122.000000\n"
#: 00000004.xhp
msgctxt ""
@@ -598,7 +598,7 @@ msgctxt ""
"par_id3155990\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F2"
-msgstr ""
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">ትእዛዝ</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F2"
#: 00000404.xhp
msgctxt ""
@@ -854,7 +854,7 @@ msgctxt ""
"par_id3150113\n"
"help.text"
msgid "<variable id=\"einfscript\">Choose <emph>Insert - Script</emph> (only HTML documents)</variable>"
-msgstr ""
+msgstr "<variable id=\"einfscript\">ይምረጡ <emph> ማስገቢያ - Script </emph> (HTML ሰነድ ብቻ) </variable>"
#: 00000404.xhp
msgctxt ""
@@ -1094,7 +1094,7 @@ msgctxt ""
"par_id3155087\n"
"help.text"
msgid "<variable id=\"umschlagb\">Choose <emph>Insert - Envelope - Envelope</emph> tab</variable>"
-msgstr ""
+msgstr "<variable id=\"umschlagb\">ይምረጡ <emph> ማስገቢያ - ፖስታ - ፖስታ </emph> tab </variable>"
#: 00000404.xhp
msgctxt ""
@@ -1102,7 +1102,7 @@ msgctxt ""
"par_id3146955\n"
"help.text"
msgid "<variable id=\"formatbr\">Choose <emph>Insert - Envelope - Format</emph> tab</variable>"
-msgstr ""
+msgstr "<variable id=\"formatbr\">ይምረጡ <emph> ማስገቢያ - የ ፖስታ - አቀራረብ </emph> tab </variable>"
#: 00000404.xhp
msgctxt ""
@@ -1110,7 +1110,7 @@ msgctxt ""
"par_id3154342\n"
"help.text"
msgid "<variable id=\"druckerbr\">Choose <emph>Insert - Envelope - Printer</emph> tab</variable>"
-msgstr ""
+msgstr "<variable id=\"druckerbr\">ይምረጡ <emph> ማስገቢያ - የ ፖስታ - ማተሚያ </emph> tab </variable>"
#: 00000404.xhp
msgctxt ""
@@ -1158,7 +1158,7 @@ msgctxt ""
"par_id3154251\n"
"help.text"
msgid "Choose <emph>Table - Insert Table</emph>"
-msgstr ""
+msgstr "ይምረጡ <emph> ሰንጠረዥ - ማስገቢያ - ሰንጠረዥ </emph>"
#: 00000404.xhp
msgctxt ""
@@ -1166,7 +1166,7 @@ msgctxt ""
"par_id3153129\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F12"
-msgstr ""
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">ትእዛዝ</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F12"
#: 00000404.xhp
msgctxt ""
@@ -1254,7 +1254,7 @@ msgctxt ""
"par_id81526422144005\n"
"help.text"
msgid "Choose <emph>Insert - Signature Line...</emph>"
-msgstr ""
+msgstr "ይምረጡ <emph>ማስገቢያ - የ ፊርማ መስመር...</emph>"
#: 00000405.xhp
msgctxt ""
@@ -1478,7 +1478,7 @@ msgctxt ""
"par_id3151370\n"
"help.text"
msgid "<variable id=\"eingabe\">Choose <emph>Tools - AutoCorrect - While Typing</emph></variable>"
-msgstr ""
+msgstr "<variable id=\"eingabe\">ይምረጡ <emph> መሳሪያዎች - በራሱ አራሚ - በሚጽፉ ጊዜ </emph></variable>"
#: 00000405.xhp
msgctxt ""
@@ -1486,7 +1486,7 @@ msgctxt ""
"par_id3149538\n"
"help.text"
msgid "<variable id=\"autoformat1\">Choose <emph>Tools - AutoCorrect</emph></variable>"
-msgstr ""
+msgstr "<variable id=\"autoformat1\">ይምረጡ <emph> መሳሪያዎች - በራሱ አራሚ </emph></variable>"
#: 00000405.xhp
msgctxt ""
@@ -1494,7 +1494,7 @@ msgctxt ""
"par_id3150117\n"
"help.text"
msgid "<variable id=\"autoformat2\">Choose <emph>Tools - AutoCorrect - Apply</emph></variable>"
-msgstr ""
+msgstr "<variable id=\"autoformat2\">ይምረጡ <emph> መሳሪያዎች - በራሱ አራሚ - መፈጸሚያ </emph></variable>"
#: 00000405.xhp
msgctxt ""
@@ -1502,7 +1502,7 @@ msgctxt ""
"par_id3155870\n"
"help.text"
msgid "<variable id=\"autoformat3\">Choose <emph>Tools - AutoCorrect - Apply and Edit Changes</emph></variable>"
-msgstr ""
+msgstr "<variable id=\"autoformat3\">ይምረጡ <emph> መሳሪያዎች - በራሱ አራሚ - መፈጸሚያ እና ለውጦቹን ማረሚያ </emph></variable>"
#: 00000405.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/swriter/01.po b/source/am/helpcontent2/source/text/swriter/01.po
index a09f1e85313..de7a4a32114 100644
--- a/source/am/helpcontent2/source/text/swriter/01.po
+++ b/source/am/helpcontent2/source/text/swriter/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: 2018-05-22 13:17+0200\n"
-"PO-Revision-Date: 2018-04-08 18:11+0000\n"
+"PO-Revision-Date: 2018-06-10 21:50+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1523211082.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1528667428.000000\n"
#: 01120000.xhp
msgctxt ""
@@ -382,7 +382,7 @@ msgctxt ""
"par_id3155186\n"
"help.text"
msgid "<ahelp hid=\".uno:SendOutlineToStarImpress\">Sends the outline of the active document to a new presentation document.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".uno:SendOutlineToStarImpress\">የ ንቁውን ሰነድ እቅድ መላኪያ ወደ አዲስ የ ማቅረቢያ ሰነድ</ahelp>"
#: 01160200.xhp
msgctxt ""
@@ -486,7 +486,7 @@ msgctxt ""
"par_id3145412\n"
"help.text"
msgid "<ahelp hid=\".uno:SendAbstractToStarImpress\">Opens the current document as a $[officename] Impress presentation. The current document must contain at least one predefined heading paragraph style.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".uno:SendAbstractToStarImpress\">የ አሁኑን ሰነድ መክፈቻ እንደ $[officename] ማስደነቂያ ማቅረቢያ፡ የ አሁኑ ሰነድ ቢያንስ አንድ በቅድሚያ የተወሰነ አንቀጽ ዘዴ ሊኖረው ይገባል</ahelp>"
#: 01160400.xhp
msgctxt ""
@@ -9494,7 +9494,7 @@ msgctxt ""
"par_id761519649446210\n"
"help.text"
msgid "Choose <item type=\"menuitem\">Fields</item> of the context menu of the selected field."
-msgstr ""
+msgstr "ይምረጡ <item type=\"menuitem\">ሜዳዎች</item> ለ ተመረጠው ሜዳ ከ አገባብ ዝርዝር ውስጥ"
#: 04090300.xhp
msgctxt ""
@@ -20854,7 +20854,7 @@ msgctxt ""
"par_id3083446\n"
"help.text"
msgid "<variable id=\"vorlagentext\"><ahelp hid=\".\">Imports formatting styles from another document or template into the current document.</ahelp></variable>"
-msgstr ""
+msgstr "<variable id=\"vorlagentext\"><ahelp hid=\".\">የ አቀራረብ ዘዴ ማምጫ ከ ሌላ ሰነድ ወይንም ቴምፕሌት ወደ አሁኑ ሰነድ ውስጥ</ahelp></variable>"
#: 05170000.xhp
msgctxt ""
@@ -21134,7 +21134,7 @@ msgctxt ""
"par_id3147401\n"
"help.text"
msgid "<ahelp hid=\".\">Combines two consecutive tables into a single table. The tables must be directly next to each other and not separated by an empty paragraph.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">ተከታታይ ሰንጠረዦችን ወደ ነጠላ ሰንጠረዥ መቀላቀያ: ሰንጠረዦቹ በ ቀጥታ አጠገብ ለ አጠገብ መሆን አለባቸው: እና መለያየት የለባቸውም በ ባዶ አንቀጽ </ahelp>"
#: 05200000.xhp
msgctxt ""
@@ -23590,7 +23590,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Adding Signature Line in Text Documents"
-msgstr ""
+msgstr "በ ጽሁፍ ሰነድ ውስጥ የ ፊርማ መስመር መጨመሪያ"
#: addsignatureline.xhp
msgctxt ""
@@ -23598,7 +23598,7 @@ msgctxt ""
"bm_id821526779524753\n"
"help.text"
msgid "<bookmark_value>digital signature;add signature line</bookmark_value><bookmark_value>signature line;adding</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>የ ዲጂታል ፊርማ;የ ፊርማ መስመር መጨመሪያ</bookmark_value><bookmark_value>የ ፊርማ መስመር;መጨመሪያ</bookmark_value>"
#: addsignatureline.xhp
msgctxt ""
@@ -23606,7 +23606,7 @@ msgctxt ""
"hd_id501526421873817\n"
"help.text"
msgid "<variable id=\"addsignatureline01\"><link href=\"text/swriter/01/addsignatureline.xhp\" name=\"Adding Signature Line\">Adding a Signature Line in Text Documents</link></variable>"
-msgstr ""
+msgstr "<variable id=\"addsignatureline01\"><link href=\"text/swriter/01/addsignatureline.xhp\" name=\"Adding Signature Line\">በ ጽሁፍ ሰነድ ውስጥ የ ፊርማ መስመር መጨመሪያ</link></variable>"
#: addsignatureline.xhp
msgctxt ""
@@ -23622,7 +23622,7 @@ msgctxt ""
"par_id751526436546030\n"
"help.text"
msgid "<image src=\"media/helpimg/sw_signatureline01.png\" id=\"img_id91526436546031\" width=\"311px\" height=\"179px\"> <alt id=\"alt_id351526436546031\">Signature Line Box</alt> </image>"
-msgstr ""
+msgstr "<image src=\"media/helpimg/sw_signatureline01.png\" id=\"img_id91526436546031\" width=\"311px\" height=\"179px\"> <alt id=\"alt_id351526436546031\">የ ፊርማ መስመር ሳጥን</alt> </image>"
#: addsignatureline.xhp
msgctxt ""
@@ -23638,7 +23638,7 @@ msgctxt ""
"hd_id631526467960460\n"
"help.text"
msgid "Name"
-msgstr ""
+msgstr "ስም"
#: addsignatureline.xhp
msgctxt ""
@@ -23654,7 +23654,7 @@ msgctxt ""
"hd_id171526467974440\n"
"help.text"
msgid "Title"
-msgstr ""
+msgstr "አርእስት"
#: addsignatureline.xhp
msgctxt ""
@@ -23670,7 +23670,7 @@ msgctxt ""
"hd_id431526467986157\n"
"help.text"
msgid "Email"
-msgstr ""
+msgstr "ኢሜይል"
#: addsignatureline.xhp
msgctxt ""
@@ -23686,7 +23686,7 @@ msgctxt ""
"hd_id451526468019876\n"
"help.text"
msgid "Signer can add comments"
-msgstr ""
+msgstr "ፈራሚው አስተያየት መጨመር ይችላል"
#: addsignatureline.xhp
msgctxt ""
@@ -23702,7 +23702,7 @@ msgctxt ""
"hd_id31526468046686\n"
"help.text"
msgid "Show sign date in signature line"
-msgstr ""
+msgstr "የ ፊርማውን ቀን በ ፊርማው መስመር ላይ ማሳያ"
#: addsignatureline.xhp
msgctxt ""
@@ -23718,7 +23718,7 @@ msgctxt ""
"hd_id791526468057743\n"
"help.text"
msgid "Instructions to the signer"
-msgstr ""
+msgstr "ትእዛዝ ለ ፈራሚው:"
#: addsignatureline.xhp
msgctxt ""
@@ -26358,7 +26358,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Signing the Signature Line"
-msgstr ""
+msgstr "በ ፊርማ መስመር ላይ መፈረሚያ"
#: signsignatureline.xhp
msgctxt ""
@@ -26366,7 +26366,7 @@ msgctxt ""
"bm_id651526779220785\n"
"help.text"
msgid "<bookmark_value>digital signature;sign signature line</bookmark_value><bookmark_value>signature line;signing</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>የ ዲጂታል ፊርማ;በ ፊርማ መስመር ላይ መፈረሚያ</bookmark_value><bookmark_value>የ ፊርማ መስመር;መፈረሚያ</bookmark_value>"
#: signsignatureline.xhp
msgctxt ""
@@ -26382,7 +26382,7 @@ msgctxt ""
"par_id611526575121298\n"
"help.text"
msgid "%PRODUCTNAME Writer lets you sign digitally a signature line."
-msgstr ""
+msgstr "%PRODUCTNAME መጻፊያ እርስዎን የሚያስችለው በ መፈረሚያ መስመር ላይ ዲጂታሊ መፈረም ነው:"
#: signsignatureline.xhp
msgctxt ""
@@ -26406,7 +26406,7 @@ msgctxt ""
"hd_id311526563971364\n"
"help.text"
msgid "Your Name"
-msgstr ""
+msgstr "የ እርስዎ ስም"
#: signsignatureline.xhp
msgctxt ""
@@ -26422,7 +26422,7 @@ msgctxt ""
"hd_id401526563978041\n"
"help.text"
msgid "Certificate"
-msgstr ""
+msgstr "የምስክር ወረቀት"
#: signsignatureline.xhp
msgctxt ""
@@ -26446,7 +26446,7 @@ msgctxt ""
"hd_id301526563985718\n"
"help.text"
msgid "Instructions from the document creator"
-msgstr ""
+msgstr "ትእዛዝ ከ ሰነድ ፈጣሪው:"
#: signsignatureline.xhp
msgctxt ""
@@ -26462,7 +26462,7 @@ msgctxt ""
"hd_id161526563992082\n"
"help.text"
msgid "Add comments"
-msgstr ""
+msgstr "አስተያየት መጨመሪያ"
#: signsignatureline.xhp
msgctxt ""
@@ -26486,7 +26486,7 @@ msgctxt ""
"par_id21526579319036\n"
"help.text"
msgid "<image src=\"media/helpimg/sw_signatureline02.png\" id=\"img_id551526579319036\" width=\"280px\" height=\"173px\"><alt id=\"alt_id641526579319036\">Signed Signature Line</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/helpimg/sw_signatureline02.png\" id=\"img_id551526579319036\" width=\"280px\" height=\"173px\"><alt id=\"alt_id641526579319036\">የ ተፈረመ የ ፊርማ መስመር</alt></image>"
#: title_page.xhp
msgctxt ""
@@ -26822,7 +26822,7 @@ msgctxt ""
"par_id761516899094991\n"
"help.text"
msgid "Choose <item type=\"menuitem\">Format - Watermark</item>."
-msgstr ""
+msgstr "ይምረጡ <item type=\"menuitem\"> አቀራረብ - የ ውሀ ምልክት </item>"
#: watermark.xhp
msgctxt ""
@@ -26918,7 +26918,7 @@ msgctxt ""
"par_id531516900343270\n"
"help.text"
msgid "<ahelp hid=\".\">Select the slant angle for the watermark. A positive angle displays the watermark from bottom to top. A negative value displays the watermark text from top to bottom.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">ለ ውሀ ምልክት የ ማዝመሚያ አንግል ይምረጡ: አዎንታዊ አንግል የሚያሳየው የ ውሀ ምልክት ጽሁፍ ከ ታች ወደ ላይ በኩል ነው: አሉታዊ አንግል የሚያሳየው የ ውሀ ምልክት ጽሁፍ ከ ላይ ወደ ታች በኩል ነው:</ahelp>"
#: watermark.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/swriter/guide.po b/source/am/helpcontent2/source/text/swriter/guide.po
index 9de49b10c76..879865b0a6f 100644
--- a/source/am/helpcontent2/source/text/swriter/guide.po
+++ b/source/am/helpcontent2/source/text/swriter/guide.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2018-05-08 15:11+0200\n"
-"PO-Revision-Date: 2018-04-08 18:13+0000\n"
+"PO-Revision-Date: 2018-06-10 23:15+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1523211186.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1528672554.000000\n"
#: anchor_object.xhp
msgctxt ""
@@ -366,7 +366,7 @@ msgctxt ""
"par_id3152867\n"
"help.text"
msgid "Choose <emph>Tools - AutoCorrect</emph>, and ensure that <emph>While Typing</emph> is selected."
-msgstr ""
+msgstr "ይምረጡ <emph> መሳሪያዎች - በራሱ አራሚ </emph> እና ያረጋግጡ <emph> በምጽፍበት ጊዜ </emph> መመረጡን"
#: auto_numbering.xhp
msgctxt ""
@@ -470,7 +470,7 @@ msgctxt ""
"par_idN10846\n"
"help.text"
msgid "To turn off most AutoCorrect features, remove the check mark from the menu <emph>Tools - AutoCorrect - While Typing</emph>."
-msgstr ""
+msgstr "በራሱ አራሚ ገጽታዎችን ለ ማጥፋት: ከ ዝርዝሩ ውስጥ ምልክት ማድረጊያውን ያስወግዱ ከ <emph>አቀራረብ - በራሱ አራሚ - በምጽፍበት ጊዜ</emph>:"
#: auto_off.xhp
msgctxt ""
@@ -4430,7 +4430,7 @@ msgctxt ""
"bm_id1163670\n"
"help.text"
msgid "<bookmark_value>finding; text/text formats/styles/objects</bookmark_value> <bookmark_value>replacing; text and text formats</bookmark_value> <bookmark_value>styles;finding</bookmark_value> <bookmark_value>searching, see also finding</bookmark_value> <bookmark_value>text formats; finding</bookmark_value> <bookmark_value>formats; finding and replacing</bookmark_value> <bookmark_value>searching; formats</bookmark_value> <bookmark_value>objects;finding by Navigator</bookmark_value> <bookmark_value>Asian languages;search options</bookmark_value>"
-msgstr "<bookmark_value>መፈለጊያ: ጽሁፍ/የ ጽሁፍ አቀራረብ/ዘዴዎች/እቃዎች</bookmark_value> <bookmark_value>መቀየሪያ: ጽሁፍ እና የ ጽሁፍ አቀራረቦች</bookmark_value> <bookmark_value>ዘዴዎች: መፈለጊያ</bookmark_value> <bookmark_value>መፈለጊያ: ይህን ይመልከቱ መፈለጊያ</bookmark_value> <bookmark_value>የጽሁፍ አቀራረቦች: መፈለጊያ</bookmark_value> <bookmark_value>አቀራረቦች: መፈለጊያ እና መቀየሪያ</bookmark_value> <bookmark_value>መፈለጊያ: አቀራረቦች</bookmark_value> <bookmark_value>እቃዎች: መፈለጊያ በ መቃኛው</bookmark_value> <bookmark_value>የ እስያ ቋንቋ: መፈለጊያ ምርጫዎች</bookmark_value>"
+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>"
#: finding.xhp
msgctxt ""
@@ -12038,7 +12038,7 @@ msgctxt ""
"par_id3153388\n"
"help.text"
msgid "Choose <emph>Tools - AutoCorrect - Apply</emph>."
-msgstr ""
+msgstr "ይምረጡ <emph> መሳሪያዎች - በራሱ አራሚ - መፈጸሚያ </emph>"
#: reset_format.xhp
msgctxt ""
diff --git a/source/am/officecfg/registry/data/org/openoffice/Office/UI.po b/source/am/officecfg/registry/data/org/openoffice/Office/UI.po
index db27ac4771d..abc2ef15526 100644
--- a/source/am/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/am/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-22 13:17+0200\n"
-"PO-Revision-Date: 2018-05-24 01:20+0000\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
+"PO-Revision-Date: 2018-06-07 23:29+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1527124853.000000\n"
+"X-POOTLE-MTIME: 1528414195.000000\n"
#: BaseWindowState.xcu
msgctxt ""
@@ -25918,7 +25918,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "T~ooltips"
-msgstr ""
+msgstr "ፍ~ንጭ"
#: WriterCommands.xcu
msgctxt ""
@@ -25927,7 +25927,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Show change authorship in tooltips"
-msgstr ""
+msgstr "የ ደራሲውን ለውጥ በ ፍንጭ ማሳያ"
#: WriterCommands.xcu
msgctxt ""
@@ -26520,8 +26520,8 @@ msgctxt ""
"..WriterCommands.UserInterface.Commands..uno:TextAttributes\n"
"Label\n"
"value.text"
-msgid "Text Attributes"
-msgstr "የ ጽሁፍ ባህሪዎች"
+msgid "Text Attributes..."
+msgstr "የ ጽሁፍ መለያዎች..."
#: WriterCommands.xcu
msgctxt ""
diff --git a/source/am/readlicense_oo/docs.po b/source/am/readlicense_oo/docs.po
index 9bf622933a5..0868ca5aeb6 100644
--- a/source/am/readlicense_oo/docs.po
+++ b/source/am/readlicense_oo/docs.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-04-17 15:54+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2018-03-04 00:47+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -117,8 +117,8 @@ msgctxt ""
"readme.xrm\n"
"macxiOSX\n"
"readmeitem.text"
-msgid "MacOSX 10.8 (Mountain Lion) or higher"
-msgstr "MacOSX 10.8 (Mountain Lion) ወይንም ከዚያ በላይ"
+msgid "MacOSX 10.9 (Mavericks) or higher"
+msgstr ""
#: readme.xrm
msgctxt ""
diff --git a/source/am/sc/messages.po b/source/am/sc/messages.po
index db7c1a7fda6..29a50363811 100644
--- a/source/am/sc/messages.po
+++ b/source/am/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: 2018-05-22 13:16+0200\n"
-"PO-Revision-Date: 2018-05-24 01:22+0000\n"
+"POT-Creation-Date: 2018-06-12 14:40+0200\n"
+"PO-Revision-Date: 2018-06-07 23:30+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1527124942.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1528414242.000000\n"
#: sc/inc/compiler.hrc:27
msgctxt "RID_FUNCTION_CATEGORIES"
@@ -1870,16 +1870,21 @@ msgid "Nested arrays are not supported."
msgstr "Nested arrays are not supported."
#: sc/inc/globstr.hrc:390
+msgctxt "STR_ERR_LONG_BAD_ARRAY_CONTENT"
+msgid "Unsupported inline array content."
+msgstr ""
+
+#: sc/inc/globstr.hrc:391
msgctxt "STR_UNDO_TEXTTOCOLUMNS"
msgid "Text to Columns"
msgstr "ጽሁፍ ወደ አምዶች"
-#: sc/inc/globstr.hrc:391
+#: sc/inc/globstr.hrc:392
msgctxt "STR_DOC_UPDATED"
msgid "Your spreadsheet has been updated with changes saved by other users."
msgstr "የእርስዎ ሰንጠረዥ ተሻሽሏል ለውጦቹም በሌላ ተጠቃሚ ተቀምጠዋል"
-#: sc/inc/globstr.hrc:392
+#: sc/inc/globstr.hrc:393
msgctxt "STR_DOC_WILLBESAVED"
msgid ""
"The spreadsheet must be saved now to activate sharing mode.\n"
@@ -1890,7 +1895,7 @@ msgstr ""
"\n"
"መቀጠል ይፈልጋሉ?"
-#: sc/inc/globstr.hrc:393
+#: sc/inc/globstr.hrc:394
msgctxt "STR_DOC_WILLNOTBESAVED"
msgid ""
"Already resolved merge conflicts will be lost and your changes to the shared spreadsheet will not be saved.\n"
@@ -1901,7 +1906,7 @@ msgstr ""
"\n"
"መቀጠል ይፈልጋሉ?"
-#: sc/inc/globstr.hrc:394
+#: sc/inc/globstr.hrc:395
msgctxt "STR_DOC_DISABLESHARED"
msgid ""
"Disabling shared mode of a spreadsheet hinders all other users of the shared spreadsheet to merge back their work.\n"
@@ -1912,7 +1917,7 @@ msgstr ""
"\n"
"መቀጠል ይፈልጋሉ?"
-#: sc/inc/globstr.hrc:395
+#: sc/inc/globstr.hrc:396
msgctxt "STR_DOC_NOLONGERSHARED"
msgid ""
"This spreadsheet is no longer in shared mode.\n"
@@ -1923,7 +1928,7 @@ msgstr ""
"\n"
"የ ሰንጠረዥ ፋይሉን በሌላ ፋይል ውስጥ ያስቀምጡ እና ለውጦቹን ከሚካፈሉዋቸው ሰንጠረዦች ጋር በ እጅ ያዋህዱ"
-#: sc/inc/globstr.hrc:396
+#: sc/inc/globstr.hrc:397
msgctxt "STR_FILE_LOCKED_TRY_LATER"
msgid ""
"The shared spreadsheet file is locked due to a merge in progress by user: '%1'\n"
@@ -1934,7 +1939,7 @@ msgstr ""
"\n"
"ለውጦቹን ለማስቀመጥ ጥቂት ቆይተው በኋላ ይሞክሩ"
-#: sc/inc/globstr.hrc:397
+#: sc/inc/globstr.hrc:398
msgctxt "STR_FILE_LOCKED_SAVE_LATER"
msgid ""
"The shared spreadsheet file is locked due to a merge in progress by user: '%1'\n"
@@ -1945,147 +1950,147 @@ msgstr ""
"\n"
"ለውጦቹን ለማስቀመጥ ጥቂት ቆይተው በኋላ ይሞክሩ"
-#: sc/inc/globstr.hrc:398
+#: sc/inc/globstr.hrc:399
msgctxt "STR_UNKNOWN_USER"
msgid "Unknown User"
msgstr "ያልታወቀ ተጠቃሚ"
-#: sc/inc/globstr.hrc:399
+#: sc/inc/globstr.hrc:400
msgctxt "STR_SHAPE_AUTOSHAPE"
msgid "AutoShape"
msgstr "በራሱ ቅርጾች"
-#: sc/inc/globstr.hrc:400
+#: sc/inc/globstr.hrc:401
msgctxt "STR_SHAPE_RECTANGLE"
msgid "Rectangle"
msgstr "አራት ማእዘን"
-#: sc/inc/globstr.hrc:401
+#: sc/inc/globstr.hrc:402
msgctxt "STR_SHAPE_LINE"
msgid "Line"
msgstr "መስመር"
-#: sc/inc/globstr.hrc:402
+#: sc/inc/globstr.hrc:403
msgctxt "STR_SHAPE_OVAL"
msgid "Oval"
msgstr "ኦቫል"
-#: sc/inc/globstr.hrc:403
+#: sc/inc/globstr.hrc:404
msgctxt "STR_FORM_BUTTON"
msgid "Button"
msgstr "ቁልፍ"
-#: sc/inc/globstr.hrc:404
+#: sc/inc/globstr.hrc:405
msgctxt "STR_FORM_CHECKBOX"
msgid "Check Box"
msgstr "ሳጥኑ ውስጥ ምልክት ያድርጉ"
-#: sc/inc/globstr.hrc:405
+#: sc/inc/globstr.hrc:406
msgctxt "STR_FORM_OPTIONBUTTON"
msgid "Option Button"
msgstr "አማራጭ ቁልፍ"
-#: sc/inc/globstr.hrc:406
+#: sc/inc/globstr.hrc:407
msgctxt "STR_FORM_LABEL"
msgid "Label"
msgstr "ምልክት"
-#: sc/inc/globstr.hrc:407
+#: sc/inc/globstr.hrc:408
msgctxt "STR_FORM_LISTBOX"
msgid "List Box"
msgstr "የ ዝርዝር ሳጥን"
-#: sc/inc/globstr.hrc:408
+#: sc/inc/globstr.hrc:409
msgctxt "STR_FORM_GROUPBOX"
msgid "Group Box"
msgstr "የ ቡድን ሳጥን"
-#: sc/inc/globstr.hrc:409
+#: sc/inc/globstr.hrc:410
msgctxt "STR_FORM_DROPDOWN"
msgid "Drop Down"
msgstr "ወደ ታች የሚዘረግፍ"
-#: sc/inc/globstr.hrc:410
+#: sc/inc/globstr.hrc:411
msgctxt "STR_FORM_SPINNER"
msgid "Spinner"
msgstr "አሽከርካሪ"
-#: sc/inc/globstr.hrc:411
+#: sc/inc/globstr.hrc:412
msgctxt "STR_FORM_SCROLLBAR"
msgid "Scroll Bar"
msgstr "መሸብለያ መደርደሪያ"
-#: sc/inc/globstr.hrc:412
+#: sc/inc/globstr.hrc:413
msgctxt "STR_STYLE_FAMILY_CELL"
msgid "Cell Styles"
msgstr "የ ክፍል ዘዴዎች"
-#: sc/inc/globstr.hrc:413
+#: sc/inc/globstr.hrc:414
msgctxt "STR_STYLE_FAMILY_PAGE"
msgid "Page Styles"
msgstr "የ ገጽ ዘዴዎች"
-#: sc/inc/globstr.hrc:414
+#: sc/inc/globstr.hrc:415
msgctxt "STR_ERR_DATAPILOTSOURCE"
msgid "Pivot table source data is invalid."
msgstr "የ Pivot ሰንጠረዥ ምንጭ ዳታ ዋጋ የለውም"
-#: sc/inc/globstr.hrc:415
+#: sc/inc/globstr.hrc:416
msgctxt "STR_OPTIONS_WARN_SEPARATORS"
msgid "Because the current formula separator settings conflict with the locale, the formula separators have been reset to their default values."
msgstr "ምክንያቱም የ አሁኑ መቀመሪያ መለያያ ማሰናጃ ከ ቋንቋው ጋር ይጋጫል: ስለዚህ የ መቀመሪያ መለያያ ወደ ነባር ዋጋዎቹ እንደ ነበር ተመልሷል"
-#: sc/inc/globstr.hrc:416
+#: sc/inc/globstr.hrc:417
msgctxt "STR_UNDO_INSERT_CURRENT_DATE"
msgid "Insert Current Date"
msgstr "የዛሬን ቀን ማስገቢያ"
-#: sc/inc/globstr.hrc:417
+#: sc/inc/globstr.hrc:418
msgctxt "STR_UNDO_INSERT_CURRENT_TIME"
msgid "Insert Current Time"
msgstr "የአሁኑን ሰአት ማስገቢያ"
-#: sc/inc/globstr.hrc:418
+#: sc/inc/globstr.hrc:419
msgctxt "STR_MANAGE_NAMES"
msgid "Manage Names..."
msgstr "የስሞች አስተዳደሪ..."
-#: sc/inc/globstr.hrc:419
+#: sc/inc/globstr.hrc:420
msgctxt "STR_HEADER_NAME"
msgid "Name"
msgstr "ስም"
-#: sc/inc/globstr.hrc:420
+#: sc/inc/globstr.hrc:421
msgctxt "STR_HEADER_RANGE_OR_EXPR"
msgid "Range or formula expression"
msgstr "መጠን ወይንም የ መቀመሪያ መግለጫ"
-#: sc/inc/globstr.hrc:421
+#: sc/inc/globstr.hrc:422
msgctxt "STR_HEADER_SCOPE"
msgid "Scope"
msgstr "ክልል"
-#: sc/inc/globstr.hrc:422
+#: sc/inc/globstr.hrc:423
msgctxt "STR_MULTI_SELECT"
msgid "(multiple)"
msgstr "(በርካታ)"
-#: sc/inc/globstr.hrc:423
+#: sc/inc/globstr.hrc:424
msgctxt "STR_GLOBAL_SCOPE"
msgid "Document (Global)"
msgstr "ሰነድ (አለም አቀፍ)"
-#: sc/inc/globstr.hrc:424
+#: sc/inc/globstr.hrc:425
msgctxt "STR_ERR_NAME_EXISTS"
msgid "Invalid name. Already in use for the selected scope."
msgstr "ዋጋ የሌለው ስም: ለ ተመረጠው ክልል ቀደም ሲል ተጠቅመዋል"
-#: sc/inc/globstr.hrc:425
+#: sc/inc/globstr.hrc:426
msgctxt "STR_ERR_NAME_INVALID"
msgid "Invalid name. Only use letters, numbers and underscore."
msgstr "ዋጋ የሌለው ስም የሚጠቀመው ፊደሎችን: ቁጥሮችን እና ከ ስሩ ማስመሪያ ብቻ ነው"
-#: sc/inc/globstr.hrc:426
+#: sc/inc/globstr.hrc:427
msgctxt "STR_UNSAVED_EXT_REF"
msgid ""
"This Document contains external references to unsaved documents.\n"
@@ -2096,217 +2101,217 @@ msgstr ""
"\n"
"መቀጠል ይፈልጋሉ?"
-#: sc/inc/globstr.hrc:427
+#: sc/inc/globstr.hrc:428
msgctxt "STR_CLOSE_WITH_UNSAVED_REFS"
msgid "This Document is referenced by another document and not yet saved. Closing it without saving will result in data loss."
msgstr "ይህ ሰነድ በሌላ ሰነድ ለማመሳከሪያነት የቀረበ ነው እና ገና አልተቀመጠም ፡ ሰነዱን ሳያስቀምጡ ከዘጉት የዳታ መጥፋት ሊያስከትል ይችላል"
-#: sc/inc/globstr.hrc:428
+#: sc/inc/globstr.hrc:429
msgctxt "STR_HEADER_RANGE"
msgid "Range"
msgstr "መጠን"
-#: sc/inc/globstr.hrc:429
+#: sc/inc/globstr.hrc:430
msgctxt "STR_HEADER_COND"
msgid "First Condition"
msgstr "የመጀመሪያ ሁኔታ"
-#: sc/inc/globstr.hrc:430
+#: sc/inc/globstr.hrc:431
msgctxt "STR_COND_CONDITION"
msgid "Cell value is"
msgstr "የክፍሉ ዋጋ"
-#: sc/inc/globstr.hrc:431
+#: sc/inc/globstr.hrc:432
msgctxt "STR_COND_COLORSCALE"
msgid "ColorScale"
msgstr "ቀለም መመጠኛ"
-#: sc/inc/globstr.hrc:432
+#: sc/inc/globstr.hrc:433
msgctxt "STR_COND_DATABAR"
msgid "DataBar"
msgstr "DataBar"
-#: sc/inc/globstr.hrc:433
+#: sc/inc/globstr.hrc:434
msgctxt "STR_COND_ICONSET"
msgid "IconSet"
msgstr "ምልክት ማሰናጃ"
-#: sc/inc/globstr.hrc:434
+#: sc/inc/globstr.hrc:435
msgctxt "STR_COND_BETWEEN"
msgid "between"
msgstr "መካከል"
-#: sc/inc/globstr.hrc:435
+#: sc/inc/globstr.hrc:436
msgctxt "STR_COND_NOTBETWEEN"
msgid "not between"
msgstr "መካከል አይደለም"
-#: sc/inc/globstr.hrc:436
+#: sc/inc/globstr.hrc:437
msgctxt "STR_COND_UNIQUE"
msgid "unique"
msgstr "ልዩ"
-#: sc/inc/globstr.hrc:437
+#: sc/inc/globstr.hrc:438
msgctxt "STR_COND_DUPLICATE"
msgid "duplicate"
msgstr "ማባዣ"
-#: sc/inc/globstr.hrc:438
+#: sc/inc/globstr.hrc:439
msgctxt "STR_COND_FORMULA"
msgid "Formula is"
msgstr "መቀመሪያ ነው"
-#: sc/inc/globstr.hrc:439
+#: sc/inc/globstr.hrc:440
msgctxt "STR_COND_TOP10"
msgid "Top Elements"
msgstr "ከፍተኛ አካላቶች"
-#: sc/inc/globstr.hrc:440
+#: sc/inc/globstr.hrc:441
msgctxt "STR_COND_BOTTOM10"
msgid "Bottom Elements"
msgstr "የታችኛው አካላቶች"
-#: sc/inc/globstr.hrc:441
+#: sc/inc/globstr.hrc:442
msgctxt "STR_COND_TOP_PERCENT"
msgid "Top Percent"
msgstr "ከፍተኛው ፐርሰንት"
-#: sc/inc/globstr.hrc:442
+#: sc/inc/globstr.hrc:443
msgctxt "STR_COND_DATE"
msgid "Date is"
msgstr "ቀን ነው"
-#: sc/inc/globstr.hrc:443
+#: sc/inc/globstr.hrc:444
msgctxt "STR_COND_BOTTOM_PERCENT"
msgid "Bottom Percent"
msgstr "ዝቅተኛው ፐርሰንት"
-#: sc/inc/globstr.hrc:444
+#: sc/inc/globstr.hrc:445
msgctxt "STR_COND_ABOVE_AVERAGE"
msgid "Above Average"
msgstr "ከ መካከለኛ በላይ"
-#: sc/inc/globstr.hrc:445
+#: sc/inc/globstr.hrc:446
msgctxt "STR_COND_BELOW_AVERAGE"
msgid "Below Average"
msgstr "ከ መካከለኛ በታች"
-#: sc/inc/globstr.hrc:446
+#: sc/inc/globstr.hrc:447
msgctxt "STR_COND_ABOVE_EQUAL_AVERAGE"
msgid "Above or equal Average"
msgstr "ከ ላይ ወይንም ከ መካከለኛ ጋር እኩል ነው"
-#: sc/inc/globstr.hrc:447
+#: sc/inc/globstr.hrc:448
msgctxt "STR_COND_BELOW_EQUAL_AVERAGE"
msgid "Below or equal Average"
msgstr "በታች ወይንም ከ መካከለኛ እኩል"
-#: sc/inc/globstr.hrc:448
+#: sc/inc/globstr.hrc:449
msgctxt "STR_COND_ERROR"
msgid "an Error code"
msgstr "የ ኮድ ስህተት"
-#: sc/inc/globstr.hrc:449
+#: sc/inc/globstr.hrc:450
msgctxt "STR_COND_NOERROR"
msgid "not an Error code"
msgstr "የ ኮድ ስህተት አይደለም"
-#: sc/inc/globstr.hrc:450
+#: sc/inc/globstr.hrc:451
msgctxt "STR_COND_BEGINS_WITH"
msgid "Begins with"
msgstr "የሚጀምረው በ"
-#: sc/inc/globstr.hrc:451
+#: sc/inc/globstr.hrc:452
msgctxt "STR_COND_ENDS_WITH"
msgid "Ends with"
msgstr "የሚጨርሰው በ"
-#: sc/inc/globstr.hrc:452
+#: sc/inc/globstr.hrc:453
msgctxt "STR_COND_CONTAINS"
msgid "Contains"
msgstr "የያዘው"
-#: sc/inc/globstr.hrc:453
+#: sc/inc/globstr.hrc:454
msgctxt "STR_COND_NOT_CONTAINS"
msgid "Not Contains"
msgstr "ምንም አልያዘም"
-#: sc/inc/globstr.hrc:454
+#: sc/inc/globstr.hrc:455
msgctxt "STR_COND_TODAY"
msgid "today"
msgstr "ዛሬ"
-#: sc/inc/globstr.hrc:455
+#: sc/inc/globstr.hrc:456
msgctxt "STR_COND_YESTERDAY"
msgid "yesterday"
msgstr "ትናንትና"
-#: sc/inc/globstr.hrc:456
+#: sc/inc/globstr.hrc:457
msgctxt "STR_COND_TOMORROW"
msgid "tomorrow"
msgstr "ነገ"
-#: sc/inc/globstr.hrc:457
+#: sc/inc/globstr.hrc:458
msgctxt "STR_COND_LAST7DAYS"
msgid "in the last 7 days"
msgstr "ባለፉት 7 ቀኖች"
-#: sc/inc/globstr.hrc:458
+#: sc/inc/globstr.hrc:459
msgctxt "STR_COND_THISWEEK"
msgid "this week"
msgstr "በዚህ ሳምንት"
-#: sc/inc/globstr.hrc:459
+#: sc/inc/globstr.hrc:460
msgctxt "STR_COND_LASTWEEK"
msgid "last week"
msgstr "ባለፈው ሳምንት"
-#: sc/inc/globstr.hrc:460
+#: sc/inc/globstr.hrc:461
msgctxt "STR_COND_NEXTWEEK"
msgid "next week"
msgstr "በሚቀጥለው ሳምንት"
-#: sc/inc/globstr.hrc:461
+#: sc/inc/globstr.hrc:462
msgctxt "STR_COND_THISMONTH"
msgid "this month"
msgstr "በዚህ ወር"
-#: sc/inc/globstr.hrc:462
+#: sc/inc/globstr.hrc:463
msgctxt "STR_COND_LASTMONTH"
msgid "last month"
msgstr "ባለፈው ወር"
-#: sc/inc/globstr.hrc:463
+#: sc/inc/globstr.hrc:464
msgctxt "STR_COND_NEXTMONTH"
msgid "next month"
msgstr "በሚቀጥለው ወር"
-#: sc/inc/globstr.hrc:464
+#: sc/inc/globstr.hrc:465
msgctxt "STR_COND_THISYEAR"
msgid "this year"
msgstr "በዚህ አመት"
-#: sc/inc/globstr.hrc:465
+#: sc/inc/globstr.hrc:466
msgctxt "STR_COND_LASTYEAR"
msgid "last year"
msgstr "ባለፈው አመት"
-#: sc/inc/globstr.hrc:466
+#: sc/inc/globstr.hrc:467
msgctxt "STR_COND_NEXTYEAR"
msgid "next year"
msgstr "በሚቀጥለው አመት"
-#: sc/inc/globstr.hrc:467
+#: sc/inc/globstr.hrc:468
msgctxt "STR_COND_AND"
msgid "and"
msgstr "እና"
-#: sc/inc/globstr.hrc:468
+#: sc/inc/globstr.hrc:469
msgctxt "STR_ERR_CONDFORMAT_PROTECTED"
msgid "Conditional Formats can not be created, deleted or changed in protected sheets."
msgstr "በሚጠበቁ ወረቀቶች ውስጥ እንደ ሁኔታው አቀራረብ መፍጠር: ማጥፋት ወይንም መቀየር አይቻልም"
-#: sc/inc/globstr.hrc:469
+#: sc/inc/globstr.hrc:470
msgctxt "STR_EDIT_EXISTING_COND_FORMATS"
msgid ""
"The selected cell already contains conditional formatting. You can either edit the existing conditional format or you define a new overlapping conditional format.\n"
@@ -2317,7 +2322,7 @@ msgstr ""
"\n"
" የ ነበረውን ጊዚያዊ አቀራረብ ማረም ይፈልጋሉ?"
-#: sc/inc/globstr.hrc:470
+#: sc/inc/globstr.hrc:471
msgctxt "STR_QUERY_FORMULA_RECALC_ONLOAD_ODS"
msgid ""
"This document was last saved by an application other than %PRODUCTNAME. Some formula cells may produce different results when recalculated.\n"
@@ -2328,7 +2333,7 @@ msgstr ""
"\n"
"በዚህ ሰነድ ውስጥ ያሉትን የ መቀመሪያ ክፍሎች አሁን እንደገና ማስላት ይፈልጋሉ?"
-#: sc/inc/globstr.hrc:471
+#: sc/inc/globstr.hrc:472
msgctxt "STR_QUERY_FORMULA_RECALC_ONLOAD_XLS"
msgid ""
"This document was last saved by Excel. Some formula cells may produce different results when recalculated.\n"
@@ -2339,77 +2344,77 @@ msgstr ""
"\n"
"ሁሉንም የ መቀመሪያ ክፍሎች አሁን እንደገና ማስላት ይፈልጋሉ?"
-#: sc/inc/globstr.hrc:472
+#: sc/inc/globstr.hrc:473
msgctxt "STR_NO_INSERT_DELETE_OVER_PIVOT_TABLE"
msgid "You cannot insert or delete cells when the affected range intersects with pivot table."
msgstr "ክፍሎች ማስገባት ወይንም ማጥፋት አይችሉም የተጎዳው መጠን ከ pivot ሰንጠረዥ ጋር ሲገናኝ"
-#: sc/inc/globstr.hrc:473
+#: sc/inc/globstr.hrc:474
msgctxt "STR_DPFIELD_GROUP_BY_SECONDS"
msgid "Seconds"
msgstr "ሰከንዶች"
-#: sc/inc/globstr.hrc:474
+#: sc/inc/globstr.hrc:475
msgctxt "STR_DPFIELD_GROUP_BY_MINUTES"
msgid "Minutes"
msgstr "ደቂቃዎች"
-#: sc/inc/globstr.hrc:475
+#: sc/inc/globstr.hrc:476
msgctxt "STR_DPFIELD_GROUP_BY_HOURS"
msgid "Hours"
msgstr "ሰአቶች"
-#: sc/inc/globstr.hrc:476
+#: sc/inc/globstr.hrc:477
msgctxt "STR_DPFIELD_GROUP_BY_DAYS"
msgid "Days"
msgstr "ቀኖች"
-#: sc/inc/globstr.hrc:477
+#: sc/inc/globstr.hrc:478
msgctxt "STR_DPFIELD_GROUP_BY_MONTHS"
msgid "Months"
msgstr "ወሮች"
-#: sc/inc/globstr.hrc:478
+#: sc/inc/globstr.hrc:479
msgctxt "STR_DPFIELD_GROUP_BY_QUARTERS"
msgid "Quarters"
msgstr "ሩቦች"
-#: sc/inc/globstr.hrc:479
+#: sc/inc/globstr.hrc:480
msgctxt "STR_DPFIELD_GROUP_BY_YEARS"
msgid "Years"
msgstr "አመቶች"
-#: sc/inc/globstr.hrc:480
+#: sc/inc/globstr.hrc:481
msgctxt "STR_INVALIDVAL"
msgid "Invalid target value."
msgstr "ዋጋ የሌለው የ ኢላማ ዋጋ"
-#: sc/inc/globstr.hrc:481
+#: sc/inc/globstr.hrc:482
msgctxt "STR_INVALIDVAR"
msgid "Undefined name for variable cell."
msgstr "ለተለዋዋጭ ክፍል ያልተገለጽ ስም"
-#: sc/inc/globstr.hrc:482
+#: sc/inc/globstr.hrc:483
msgctxt "STR_INVALIDFORM"
msgid "Undefined name as formula cell."
msgstr "እንደ መቀመሪያ ክፍል ያልተገለጽ ስም"
-#: sc/inc/globstr.hrc:483
+#: sc/inc/globstr.hrc:484
msgctxt "STR_NOFORMULA"
msgid "Formula cell must contain a formula."
msgstr "የ መቀመሪያ ክፍል መቀመሪያ መያዝ አለበት"
-#: sc/inc/globstr.hrc:484
+#: sc/inc/globstr.hrc:485
msgctxt "STR_INVALIDINPUT"
msgid "Invalid input."
msgstr "ዋጋ የሌለው ማስገቢያ"
-#: sc/inc/globstr.hrc:485
+#: sc/inc/globstr.hrc:486
msgctxt "STR_INVALIDCONDITION"
msgid "Invalid condition."
msgstr "ዋጋ የሌለው ሁኔታ"
-#: sc/inc/globstr.hrc:486
+#: sc/inc/globstr.hrc:487
msgctxt "STR_QUERYREMOVE"
msgid ""
"Should the entry\n"
@@ -2420,133 +2425,133 @@ msgstr ""
"#\n"
"ላጥፋው?"
-#: sc/inc/globstr.hrc:487
+#: sc/inc/globstr.hrc:488
msgctxt "STR_COPYLIST"
msgid "Copy List"
msgstr "ዝርዝሮች ኮፒ ማድረጊያ"
-#: sc/inc/globstr.hrc:488
+#: sc/inc/globstr.hrc:489
msgctxt "STR_COPYFROM"
msgid "List from"
msgstr "ዝርዝር ከ"
-#: sc/inc/globstr.hrc:489
+#: sc/inc/globstr.hrc:490
msgctxt "STR_COPYERR"
msgid "Cells without text have been ignored."
msgstr "ጽሁፍ የሌላቸውን ክፍሎች መተው"
-#: sc/inc/globstr.hrc:490
+#: sc/inc/globstr.hrc:491
#, c-format
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%s-click to follow hyperlink:"
msgstr "%s-ይጫኑ hyperlink ለ መከተል:"
-#: sc/inc/globstr.hrc:491
+#: sc/inc/globstr.hrc:492
msgctxt "STR_CLICKHYPERLINK"
msgid "click to open hyperlink:"
msgstr "ይጫኑ hyperlink ለመክፈት:"
-#: sc/inc/globstr.hrc:492
+#: sc/inc/globstr.hrc:493
msgctxt "STR_PRINT_PREVIEW_NODATA"
msgid "No Data"
msgstr "ዳታ የለም"
-#: sc/inc/globstr.hrc:493
+#: sc/inc/globstr.hrc:494
msgctxt "STR_PRINT_PREVIEW_EMPTY_RANGE"
msgid "Print Range Empty"
msgstr "የ ማተሚያ መጠን ባዶ ነው"
-#: sc/inc/globstr.hrc:494
+#: sc/inc/globstr.hrc:495
msgctxt "STR_UNDO_CONDFORMAT"
msgid "Conditional Format"
msgstr "እንደ ሁኔታው አቀራረብ"
-#: sc/inc/globstr.hrc:495
+#: sc/inc/globstr.hrc:496
msgctxt "STR_UNDO_CONDFORMAT_LIST"
msgid "Conditional Formats"
msgstr "እንደ ሁኔታው አቀራረብ"
-#: sc/inc/globstr.hrc:496
+#: sc/inc/globstr.hrc:497
msgctxt "STR_UNDO_FORMULA_TO_VALUE"
msgid "Convert Formula To Value"
msgstr "መቀመሪያ ወደ ዋጋ መቀየሪያ"
-#: sc/inc/globstr.hrc:497
+#: sc/inc/globstr.hrc:498
msgctxt "STR_UNQUOTED_STRING"
msgid "Strings without quotes are interpreted as column/row labels."
msgstr "ሀረጎች ያለ ትምህርተ ጥቅስ የሚተረጎሙት እንደ አምድ/ረድፍ ምልክቶች ነው"
-#: sc/inc/globstr.hrc:498
+#: sc/inc/globstr.hrc:499
msgctxt "STR_ENTER_VALUE"
msgid "Enter a value!"
msgstr "ዋጋ ያስገቡ!"
-#: sc/inc/globstr.hrc:499
+#: sc/inc/globstr.hrc:500
msgctxt "STR_TABLE_COUNT"
msgid "Sheet %1 of %2"
msgstr "ወረቀት %1 ከ %2"
-#: sc/inc/globstr.hrc:500
+#: sc/inc/globstr.hrc:501
msgctxt "STR_FUNCTIONS_FOUND"
msgid "%1 and %2 more"
msgstr "%1 እና %2 ተጨማሪ"
-#: sc/inc/globstr.hrc:501
+#: sc/inc/globstr.hrc:502
msgctxt "STR_GENERAL"
msgid "General"
msgstr "ባጠቃላይ"
-#: sc/inc/globstr.hrc:502
+#: sc/inc/globstr.hrc:503
msgctxt "STR_NUMBER"
msgid "Number"
msgstr "ቁጥር"
-#: sc/inc/globstr.hrc:503
+#: sc/inc/globstr.hrc:504
msgctxt "STR_PERCENT"
msgid "Percent"
msgstr "ፐርሰንት"
-#: sc/inc/globstr.hrc:504
+#: sc/inc/globstr.hrc:505
msgctxt "STR_CURRENCY"
msgid "Currency"
msgstr "ገንዘብ"
-#: sc/inc/globstr.hrc:505
+#: sc/inc/globstr.hrc:506
msgctxt "STR_DATE"
msgid "Date"
msgstr "ቀን"
-#: sc/inc/globstr.hrc:506
+#: sc/inc/globstr.hrc:507
msgctxt "STR_TIME"
msgid "Time"
msgstr "ሰአት"
-#: sc/inc/globstr.hrc:507
+#: sc/inc/globstr.hrc:508
msgctxt "STR_SCIENTIFIC"
msgid "Scientific"
msgstr "ሳይንሳዊ"
-#: sc/inc/globstr.hrc:508
+#: sc/inc/globstr.hrc:509
msgctxt "STR_FRACTION"
msgid "Fraction"
msgstr "ክፍልፋይ"
-#: sc/inc/globstr.hrc:509
+#: sc/inc/globstr.hrc:510
msgctxt "STR_BOOLEAN_VALUE"
msgid "Boolean Value"
msgstr "የ ቡሊየን ዋጋ"
-#: sc/inc/globstr.hrc:510
+#: sc/inc/globstr.hrc:511
msgctxt "STR_TEXT"
msgid "Text"
msgstr "ጽሁፍ"
-#: sc/inc/globstr.hrc:511
+#: sc/inc/globstr.hrc:512
msgctxt "STR_QUERY_PIVOTTABLE_DELTAB"
msgid "The selected sheet(s) contain source data of related pivot tables that will be lost. Are you sure you want to delete the selected sheet(s)?"
msgstr "የ ተመረጠው ወረቀት(ቶች) የያዘው የ ዳታ ምንጭ ከ ፒቮት ሰንጠረዥ ጋር የ ተዛመደ የሚጠፋ ነው: እርስዎ በ እርግጥ የ ተመረጠው ወረቀት(ቶች) ማጥፋት ይፈልጋሉ?"
-#: sc/inc/globstr.hrc:512
+#: sc/inc/globstr.hrc:513
msgctxt "STR_ERR_NAME_INVALID_CELL_REF"
msgid "Invalid name. Reference to a cell, or a range of cells not allowed."
msgstr "ዋጋ የሌለው ስም: ወደ ክፍል ማመሳከሪያ: ወይንም የ ክፍሎች መጠን አይቻልም"
@@ -10488,7 +10493,7 @@ msgstr "ዘዴ"
#: sc/inc/scfuncs.hrc:3010
msgctxt "SC_OPCODE_T_TEST"
-msgid "Mode specifies the number of distribution tails to return. 1= one-tailed, 2 = two-tailed distribution"
+msgid "Mode specifies the number of distribution tails to return. 1 = one-tailed, 2 = two-tailed distribution"
msgstr "ዘዴ የሚወስነው ቁጥር ለ ስርጭት ጭራ እንዲመልስ 1= አንድ-ጭራ: 2 = ሁለት-ጭራ ስርጭት"
#: sc/inc/scfuncs.hrc:3011
@@ -10533,7 +10538,7 @@ msgstr "ዘዴ"
#: sc/inc/scfuncs.hrc:3024
msgctxt "SC_OPCODE_T_TEST_MS"
-msgid "Mode specifies the number of distribution tails to return. 1= one-tailed, 2 = two-tailed distribution"
+msgid "Mode specifies the number of distribution tails to return. 1 = one-tailed, 2 = two-tailed distribution"
msgstr "ዘዴ የሚወስነው ቁጥር ለ ስርጭት ጭራ እንዲመልስ 1= አንድ-ጭራ: 2 = ሁለት-ጭራ ስርጭት"
#: sc/inc/scfuncs.hrc:3025
@@ -18020,22 +18025,22 @@ msgctxt "mergecellsdialog|MergeCellsDialog"
msgid "Merge Cells"
msgstr "ክፍሎች ማዋሀጃ"
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:81
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:84
msgctxt "mergecellsdialog|label"
msgid "Some cells are not empty."
msgstr "አንዳንድ ክፍሎች ባዶ አይደሉም"
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:96
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:99
msgctxt "mergecellsdialog|move-cells-radio"
msgid "Move the contents of the hidden cells into the first cell"
msgstr "የ ተደበቁትን ክፍሎች ይዞታዎች ወደ መጀመሪያው ክፍል ይንቀሳቀሱ?"
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:112
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:115
msgctxt "mergecellsdialog|empty-cells-radio"
msgid "Empty the contents of the hidden cells"
msgstr "የ ተደበቁትን ክፍሎች ይዞታዎች ባዶ ማድረጊያ"
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:128
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:131
msgctxt "mergecellsdialog|keep-content-radio"
msgid "Keep the contents of the hidden cells"
msgstr "የ ተደበቁትን ክፍሎች ይዞታዎች እንደ ነበር ይቆዩ"
diff --git a/source/am/sd/messages.po b/source/am/sd/messages.po
index 1644ee394ee..f9c14565a15 100644
--- a/source/am/sd/messages.po
+++ b/source/am/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: 2018-05-22 13:16+0200\n"
-"PO-Revision-Date: 2018-05-24 01:29+0000\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
+"PO-Revision-Date: 2018-06-02 21:03+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -13,170 +13,170 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1527125398.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1527973412.000000\n"
-#: sd/inc/DocumentRenderer.hrc:29
+#: sd/inc/DocumentRenderer.hrc:27
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Slides"
msgstr "ተንሸራታቾች"
-#: sd/inc/DocumentRenderer.hrc:30
+#: sd/inc/DocumentRenderer.hrc:28
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Handouts"
msgstr "በ እጅ የሚሰጥ"
-#: sd/inc/DocumentRenderer.hrc:31
+#: sd/inc/DocumentRenderer.hrc:29
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Notes"
msgstr "ማስታወሻዎች"
-#: sd/inc/DocumentRenderer.hrc:32
+#: sd/inc/DocumentRenderer.hrc:30
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Outline"
msgstr "ረቂቅ"
-#: sd/inc/DocumentRenderer.hrc:37
+#: sd/inc/DocumentRenderer.hrc:35
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "According to layout"
msgstr "እንደ እቅዱ"
-#: sd/inc/DocumentRenderer.hrc:38
+#: sd/inc/DocumentRenderer.hrc:36
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "1"
msgstr "1"
-#: sd/inc/DocumentRenderer.hrc:39
+#: sd/inc/DocumentRenderer.hrc:37
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "2"
msgstr "2"
-#: sd/inc/DocumentRenderer.hrc:40
+#: sd/inc/DocumentRenderer.hrc:38
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "3"
msgstr "3"
-#: sd/inc/DocumentRenderer.hrc:41
+#: sd/inc/DocumentRenderer.hrc:39
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "4"
msgstr "4"
-#: sd/inc/DocumentRenderer.hrc:42
+#: sd/inc/DocumentRenderer.hrc:40
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "6"
msgstr "6"
-#: sd/inc/DocumentRenderer.hrc:43
+#: sd/inc/DocumentRenderer.hrc:41
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "9"
msgstr "9"
-#: sd/inc/DocumentRenderer.hrc:48
+#: sd/inc/DocumentRenderer.hrc:46
msgctxt "STR_IMPRESS_PRINT_UI_ORDER_CHOICES"
msgid "Left to right, then down"
msgstr "ከ ግራ ወደ ቀኝ ከዚያ ወደ ታች"
-#: sd/inc/DocumentRenderer.hrc:49
+#: sd/inc/DocumentRenderer.hrc:47
msgctxt "STR_IMPRESS_PRINT_UI_ORDER_CHOICES"
msgid "Top to bottom, then right"
msgstr "ከ ላይ ወደ ታች ከዚያ ወደ ቀኝ"
-#: sd/inc/DocumentRenderer.hrc:54
+#: sd/inc/DocumentRenderer.hrc:52
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Original colors"
msgstr "ዋናው ቀለም"
-#: sd/inc/DocumentRenderer.hrc:55
+#: sd/inc/DocumentRenderer.hrc:53
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Grayscale"
msgstr "ግራጫማ"
-#: sd/inc/DocumentRenderer.hrc:56
+#: sd/inc/DocumentRenderer.hrc:54
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Black & white"
msgstr "ጥቁር & ነጭ"
-#: sd/inc/DocumentRenderer.hrc:61
+#: sd/inc/DocumentRenderer.hrc:59
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Original size"
msgstr "ዋናው መጠን"
-#: sd/inc/DocumentRenderer.hrc:62
+#: sd/inc/DocumentRenderer.hrc:60
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Fit to printable page"
msgstr "በሚታተመው ገጽ ልክ"
-#: sd/inc/DocumentRenderer.hrc:63
+#: sd/inc/DocumentRenderer.hrc:61
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Distribute on multiple sheets of paper"
msgstr "በ በርካታ ወረቀቶች ላይ ማሰራጫ"
-#: sd/inc/DocumentRenderer.hrc:64
+#: sd/inc/DocumentRenderer.hrc:62
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Tile sheet of paper with repeated slides"
msgstr "የተደጋገሙ ተንሸራታች ወረቀቶችን መከመሪያ"
-#: sd/inc/DocumentRenderer.hrc:69
+#: sd/inc/DocumentRenderer.hrc:67
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Original size"
msgstr "ዋናው መጠን"
-#: sd/inc/DocumentRenderer.hrc:70
+#: sd/inc/DocumentRenderer.hrc:68
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Fit to printable page"
msgstr "በሚታተመው ገጽ ልክ"
-#: sd/inc/DocumentRenderer.hrc:71
+#: sd/inc/DocumentRenderer.hrc:69
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Distribute on multiple sheets of paper"
msgstr "በ በርካታ ወረቀቶች ላይ ማሰራጫ"
-#: sd/inc/DocumentRenderer.hrc:72
+#: sd/inc/DocumentRenderer.hrc:70
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Tile sheet of paper with repeated pages"
msgstr "የ ተደጋገሙ ተንሸራታች ወረቀቶችን መከመሪያ"
-#: sd/inc/DocumentRenderer.hrc:77
+#: sd/inc/DocumentRenderer.hrc:75
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "All pages"
msgstr "ሁሉንም ገጾች"
-#: sd/inc/DocumentRenderer.hrc:78
+#: sd/inc/DocumentRenderer.hrc:76
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "Front sides / right pages"
msgstr "የ ፊት ጎኖች / የ ቀኝ ገጾች"
-#: sd/inc/DocumentRenderer.hrc:79
+#: sd/inc/DocumentRenderer.hrc:77
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "Back sides / left pages"
msgstr "የኋላ ጎኖች / የ ግራ ገጾች"
-#: sd/inc/DocumentRenderer.hrc:84
+#: sd/inc/DocumentRenderer.hrc:82
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~All slides"
msgstr "~ሁሉንም ተንሸራታቾች"
-#: sd/inc/DocumentRenderer.hrc:85
+#: sd/inc/DocumentRenderer.hrc:83
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~Slides"
msgstr "~ተንሸራታቾች"
-#: sd/inc/DocumentRenderer.hrc:86
+#: sd/inc/DocumentRenderer.hrc:84
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Se~lection"
msgstr "ምር~ጫዎች"
-#: sd/inc/DocumentRenderer.hrc:91
+#: sd/inc/DocumentRenderer.hrc:89
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~All pages"
msgstr "~ሁሉንም ገጾች"
-#: sd/inc/DocumentRenderer.hrc:92
+#: sd/inc/DocumentRenderer.hrc:90
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Pa~ges"
msgstr "ገ~ጾች"
-#: sd/inc/DocumentRenderer.hrc:93
+#: sd/inc/DocumentRenderer.hrc:91
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Se~lection"
msgstr "ምር~ጫዎች"
@@ -1742,27 +1742,27 @@ msgstr "ቀይ የተሞላ"
#: sd/inc/strings.hrc:329
msgctxt "STR_POOLSHEET_OUTLINE"
msgid "Outlined"
-msgstr ""
+msgstr "እቅድ"
#: sd/inc/strings.hrc:330
msgctxt "STR_POOLSHEET_OUTLINE_BLUE"
msgid "Outlined Blue"
-msgstr ""
+msgstr "እቅድ በ ሰማያዊ"
#: sd/inc/strings.hrc:331
msgctxt "STR_POOLSHEET_OUTLINE_GREEN"
msgid "Outlined Green"
-msgstr ""
+msgstr "እቅድ በ አረንጓዴ"
#: sd/inc/strings.hrc:332
msgctxt "STR_POOLSHEET_OUTLINE_YELLOW"
msgid "Outlined Yellow"
-msgstr ""
+msgstr "እቅድ በ ቢጫ"
#: sd/inc/strings.hrc:333
msgctxt "STR_POOLSHEET_OUTLINE_RED"
msgid "Outlined Red"
-msgstr ""
+msgstr "እቅድ በ ቀይ"
#: sd/inc/strings.hrc:335
msgctxt "STR_PSEUDOSHEET_TITLE"
diff --git a/source/am/svx/messages.po b/source/am/svx/messages.po
index e96a8cad0b5..09acf3cc941 100644
--- a/source/am/svx/messages.po
+++ b/source/am/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: 2018-05-16 16:53+0200\n"
-"PO-Revision-Date: 2018-05-19 14:11+0000\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
+"PO-Revision-Date: 2018-06-13 14:41+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1526739106.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1528900912.000000\n"
#: svx/inc/fieldunit.hrc:30
msgctxt "RID_SVXSTR_FIELDUNIT_TABLE"
@@ -5179,8 +5179,8 @@ msgstr "እርስዎ እንዲሁም ማስገባት ይችላሉ ተገቢው
#: svx/uiconfig/ui/safemodedialog.ui:432
msgctxt "safemodedialog|btn_create_zip"
-msgid "Create Zip Archive from User Profile"
-msgstr "ይፍጠሩ የ Zip Archive ከ ተጠቃሚ ገጽታ ውስጥ"
+msgid "Archive User Profile"
+msgstr "የ ተጠቃሚ ገጽታ ማሕደር"
#: svx/uiconfig/ui/safemodedialog.ui:445
msgctxt "safemodedialog|linkbutton_profile"
@@ -8769,9 +8769,9 @@ msgid "Red"
msgstr "ቀይ"
#: include/svx/strings.hrc:565
-msgctxt "RID_SVXSTR_COLOR_VIOLET"
-msgid "Violet"
-msgstr "ወይን ጠጅ"
+msgctxt "RID_SVXSTR_COLOR_MAGENTA"
+msgid "Magenta"
+msgstr "Magenta"
#: include/svx/strings.hrc:566
msgctxt "RID_SVXSTR_COLOR_PURPLE"
@@ -8835,9 +8835,9 @@ msgid "Light Red"
msgstr "ነጣ ያለ ቀይ"
#: include/svx/strings.hrc:579
-msgctxt "RID_SVXSTR_COLOR_LIGHTVIOLET"
-msgid "Light Violet"
-msgstr "ነጣ ያለ ወይን ጠጅ"
+msgctxt "RID_SVXSTR_COLOR_LIGHTMAGENTA"
+msgid "Light Magenta"
+msgstr "ነጣ ያለ ማጄንታ"
#: include/svx/strings.hrc:580
msgctxt "RID_SVXSTR_COLOR_LIGHTPURPLE"
@@ -8901,9 +8901,9 @@ msgid "Dark Red"
msgstr "ጥቁር ቀይ"
#: include/svx/strings.hrc:593
-msgctxt "RID_SVXSTR_COLOR_DARKVIOLET1"
-msgid "Dark Violet"
-msgstr "ጥቁር የ ወይን ጠጅ"
+msgctxt "RID_SVXSTR_COLOR_DARKMAGENTA"
+msgid "Dark Magenta"
+msgstr "ጥቁር ማጄንታ"
#: include/svx/strings.hrc:594
msgctxt "RID_SVXSTR_COLOR_DARKPURPLE"
@@ -8937,55 +8937,55 @@ msgstr "ጥቁር ሎሚ"
#. Elements of the Tonal color palette
#: include/svx/strings.hrc:601
+msgctxt "RID_SVXSTR_COLOR_VIOLET"
+msgid "Violet"
+msgstr "ወይን ጠጅ"
+
+#: include/svx/strings.hrc:602
msgctxt "RID_SVXSTR_COLOR_VIOLET_OUG"
msgid "Violet (Out of Gamut)"
msgstr "ወይን ጠጅ (Out of Gamut)"
-#: include/svx/strings.hrc:602
+#: include/svx/strings.hrc:603
msgctxt "RID_SVXSTR_COLOR_BLUE_OUG"
msgid "Blue (Out of Gamut)"
msgstr "ሰማያዊ (Out of Gamut)"
-#: include/svx/strings.hrc:603
+#: include/svx/strings.hrc:604
msgctxt "RID_SVXSTR_COLOR_AZURE_OUG"
msgid "Azure (Out of Gamut)"
msgstr "ነጣ ያለ ሰማያዊ (Out of Gamut)"
-#: include/svx/strings.hrc:604
+#: include/svx/strings.hrc:605
msgctxt "RID_SVXSTR_COLOR_SPRINGGREEN_OUG"
msgid "Spring Green (Out of Gamut)"
msgstr "የ ፀደይ አረንጓዴ (Out of Gamut)"
-#: include/svx/strings.hrc:605
+#: include/svx/strings.hrc:606
msgctxt "RID_SVXSTR_COLOR_GREEN_OUG"
msgid "Green (Out of Gamut)"
msgstr "አረንጓዴ (Out of Gamut)"
-#: include/svx/strings.hrc:606
+#: include/svx/strings.hrc:607
msgctxt "RID_SVXSTR_COLOR_CHARTREUSEGREEN_OUG"
msgid "Chartreuse Green (Out of Gamut)"
msgstr "ፈዛዛ አረንጓዴ (Out of Gamut)"
-#: include/svx/strings.hrc:607
+#: include/svx/strings.hrc:608
msgctxt "RID_SVXSTR_COLOR_ORANGE_OUG"
msgid "Orange (Out of Gamut)"
msgstr "ብርቱካን (Out of Gamut)"
-#: include/svx/strings.hrc:608
+#: include/svx/strings.hrc:609
msgctxt "RID_SVXSTR_COLOR_RED_OUG"
msgid "Red (Out of Gamut)"
msgstr "ቀይ (Out of Gamut)"
-#: include/svx/strings.hrc:609
+#: include/svx/strings.hrc:610
msgctxt "RID_SVXSTR_COLOR_ROSE_OUG"
msgid "Rose (Out of Gamut)"
msgstr "ሮዝ (Out of Gamut)"
-#: include/svx/strings.hrc:610
-msgctxt "RID_SVXSTR_COLOR_MAGENTA"
-msgid "Magenta"
-msgstr "Magenta"
-
#: include/svx/strings.hrc:611
msgctxt "RID_SVXSTR_COLOR_AZURE"
msgid "Azure"
@@ -9608,37 +9608,37 @@ msgstr "አረንጓዴ ከፍታ"
#: include/svx/strings.hrc:746
msgctxt "RID_SVXSTR_GRDT70"
msgid "Pastel Bouquet"
-msgstr ""
+msgstr "እቅፍ አበባ"
#: include/svx/strings.hrc:747
msgctxt "RID_SVXSTR_GRDT71"
msgid "Pastel Dream"
-msgstr ""
+msgstr "ሕልም"
#: include/svx/strings.hrc:748
msgctxt "RID_SVXSTR_GRDT72"
msgid "Blue Touch"
-msgstr ""
+msgstr "ሰማያዊ ችቦ"
#: include/svx/strings.hrc:749
msgctxt "RID_SVXSTR_GRDT73"
msgid "Blank with Gray"
-msgstr ""
+msgstr "ባዶ በ ግራጫ"
#: include/svx/strings.hrc:750
msgctxt "RID_SVXSTR_GRDT74"
msgid "Spotted Gray"
-msgstr ""
+msgstr "ግራጫ ምልክት"
#: include/svx/strings.hrc:751
msgctxt "RID_SVXSTR_GRDT75"
msgid "London Mist"
-msgstr ""
+msgstr "የ ለንደን ጤዛ"
#: include/svx/strings.hrc:752
msgctxt "RID_SVXSTR_GRDT76"
msgid "Teal to Blue"
-msgstr ""
+msgstr "ሰማያዊ አረንጓዴ"
#: include/svx/strings.hrc:753
msgctxt "RID_SVXSTR_GRDT77"
@@ -9653,7 +9653,7 @@ msgstr "ጥልቅ ውቂያኖስ"
#: include/svx/strings.hrc:755
msgctxt "RID_SVXSTR_GRDT79"
msgid "Submarine"
-msgstr ""
+msgstr "ሰርጓጅ መርከብ"
#: include/svx/strings.hrc:756
msgctxt "RID_SVXSTR_GRDT80"
@@ -9663,7 +9663,7 @@ msgstr "አረንጓዴ ሳር"
#: include/svx/strings.hrc:757
msgctxt "RID_SVXSTR_GRDT81"
msgid "Neon Light"
-msgstr ""
+msgstr "የ ኔዮን ብርሃን"
#: include/svx/strings.hrc:758
msgctxt "RID_SVXSTR_GRDT82"
@@ -9673,12 +9673,12 @@ msgstr "የ ፀሐይ ብርሃን"
#: include/svx/strings.hrc:759
msgctxt "RID_SVXSTR_GRDT83"
msgid "Present"
-msgstr ""
+msgstr "አሁን"
#: include/svx/strings.hrc:760
msgctxt "RID_SVXSTR_GRDT84"
msgid "Mahagoni"
-msgstr ""
+msgstr "ማሀጎኒ"
#. /gradients
#: include/svx/strings.hrc:762
@@ -12091,12 +12091,12 @@ msgstr "ወደ ቀኝ የሚጠቁም ቀስት ነጥቦች"
#: include/svx/strings.hrc:1273
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_6"
-msgid "Check mark bullets"
+msgid "Cross mark bullets"
msgstr "ምልክት ማድረጊያ ነጥቦች"
#: include/svx/strings.hrc:1274
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_7"
-msgid "Tick mark bullets"
+msgid "Check mark bullets"
msgstr "ምልክት ማድረጊያ ነጥቦች"
#: include/svx/strings.hrc:1275
diff --git a/source/am/sw/messages.po b/source/am/sw/messages.po
index 71ee29b7e53..a624c7ab048 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: 2018-05-22 13:17+0200\n"
-"PO-Revision-Date: 2018-05-24 01:32+0000\n"
+"POT-Creation-Date: 2018-06-12 14:41+0200\n"
+"PO-Revision-Date: 2018-06-10 14:18+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: am\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1527125549.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1528640292.000000\n"
#: sw/inc/app.hrc:29
msgctxt "RID_PARAGRAPHSTYLEFAMILY"
@@ -1180,13 +1180,13 @@ msgstr "ጥቅስ"
#: sw/inc/strings.hrc:172
msgctxt "STR_POOLCOLL_TOX_ILLUSH"
-msgid "Illustration Index Heading"
-msgstr "የ ማውጫ ራስጌ ማብራሪያ"
+msgid "Figure Index Heading"
+msgstr ""
#: sw/inc/strings.hrc:173
msgctxt "STR_POOLCOLL_TOX_ILLUS1"
-msgid "Illustration Index 1"
-msgstr "የ ማውጫ ማብራሪያ 1"
+msgid "Figure Index 1"
+msgstr ""
#: sw/inc/strings.hrc:174
msgctxt "STR_POOLCOLL_TOX_OBJECTH"
@@ -3590,8 +3590,8 @@ msgstr "የ እቃዎች ሰንጠረዥ"
#: sw/inc/strings.hrc:672
msgctxt "STR_TOX_ILL"
-msgid "Illustration Index"
-msgstr "የ ማውጫ ማብራሪያ"
+msgid "Table of Figures"
+msgstr ""
#: sw/inc/strings.hrc:673
#, c-format
@@ -4033,12 +4033,12 @@ msgstr "%PRODUCTNAME %PRODUCTVERSION የ ጽሁፍ ሰነድ"
#: sw/inc/strings.hrc:765
msgctxt "STR_PRIVATEGRAPHIC"
msgid "Image (%PRODUCTNAME %PRODUCTVERSION Text Document)"
-msgstr ""
+msgstr "ምስል (%PRODUCTNAME %PRODUCTVERSION የ ጽሁፍ ሰነድ)"
#: sw/inc/strings.hrc:766
msgctxt "STR_PRIVATEOLE"
msgid "Object (%PRODUCTNAME %PRODUCTVERSION Text Document)"
-msgstr ""
+msgstr "እቃ (%PRODUCTNAME %PRODUCTVERSION የ ጽሁፍ ሰነድ)"
#: sw/inc/strings.hrc:767
msgctxt "STR_DDEFORMAT"
@@ -9244,72 +9244,72 @@ msgctxt "footnotepage|label5"
msgid "Continuation Notice"
msgstr "የሚቀጥል ማስታወቂያ"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:49
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:55
msgctxt "footnotesendnotestabpage|ftnntnum"
msgid "_Restart numbering"
msgstr "ቁጥር መስጫ _እንደገና ማስጀመሪያ"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:91
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:93
msgctxt "footnotesendnotestabpage|ftnoffset_label"
msgid "_Start at:"
msgstr "_መጀመሪያ በ:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:112
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:111
msgctxt "footnotesendnotestabpage|ftnntnumfmt"
msgid "Custom _format"
msgstr "_አቀራረብ ማስተካከያ"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:155
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:150
msgctxt "footnotesendnotestabpage|ftnsuffix_label"
msgid "Aft_er:"
msgstr "በኋ_ላ:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:199
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:188
msgctxt "footnotesendnotestabpage|ftnprefix_label"
msgid "Be_fore:"
msgstr "በፊ_ት:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:228
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:212
msgctxt "footnotesendnotestabpage|ftnntattextend"
msgid "Collec_t at end of text"
msgstr "ከ ጽሁፉ መጨረሻ መሰብሰቢ_ያ"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:252
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:234
msgctxt "footnotesendnotestabpage|label1"
msgid "Footnotes"
msgstr "የ ግርጌ ማስታወሻዎች"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:289
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:271
msgctxt "footnotesendnotestabpage|endntattextend"
msgid "C_ollect at end of section"
msgstr "ከ ክፍሉ መጨረሻ መ_ሰብሰቢያ"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:315
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:295
msgctxt "footnotesendnotestabpage|endntnum"
msgid "_Restart numbering"
msgstr "ቁጥር መስጫ _እንደገና ማስጀመሪያ"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:357
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:333
msgctxt "footnotesendnotestabpage|endoffset_label"
msgid "_Start at:"
msgstr "_መጀመሪያ በ:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:378
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:351
msgctxt "footnotesendnotestabpage|endntnumfmt"
msgid "_Custom format"
msgstr "_ማስተካከያ አቀራረብ"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:421
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:390
msgctxt "footnotesendnotestabpage|endsuffix_label"
msgid "Aft_er:"
msgstr "በኋ_ላ:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:465
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:428
msgctxt "footnotesendnotestabpage|endprefix_label"
msgid "Be_fore:"
msgstr "በፊ_ት:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:500
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:458
msgctxt "footnotesendnotestabpage|label2"
msgid "Endnotes"
msgstr "የ መጨረሻ ማስታወሻ"
@@ -9339,27 +9339,27 @@ msgctxt "formatsectiondialog|notes"
msgid "Footnotes/Endnotes"
msgstr "የ ግርጌ/መጨረሻ ማስታወሻ"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:63
+#: sw/uiconfig/swriter/ui/formattablepage.ui:77
msgctxt "formattablepage|nameft"
msgid "_Name"
msgstr "_ስም"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:79
+#: sw/uiconfig/swriter/ui/formattablepage.ui:91
msgctxt "formattablepage|widthft"
msgid "W_idth"
msgstr "ስ_ፋት"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:110
+#: sw/uiconfig/swriter/ui/formattablepage.ui:120
msgctxt "formattablepage|relwidth"
msgid "Relati_ve"
msgstr "ዝምድ_ናው"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:155
+#: sw/uiconfig/swriter/ui/formattablepage.ui:160
msgctxt "formattablepage|label45"
msgid "Properties"
msgstr "ባህሪዎች"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:194
+#: sw/uiconfig/swriter/ui/formattablepage.ui:195
msgctxt "formattablepage|leftft"
msgid "Lef_t"
msgstr "ግ_ራ"
@@ -9369,62 +9369,62 @@ msgctxt "formattablepage|rightft"
msgid "Ri_ght"
msgstr "ቀ_ኝ"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:228
+#: sw/uiconfig/swriter/ui/formattablepage.ui:226
msgctxt "formattablepage|aboveft"
msgid "_Above"
msgstr "ከ _ላይ"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:245
+#: sw/uiconfig/swriter/ui/formattablepage.ui:241
msgctxt "formattablepage|belowft"
msgid "_Below"
msgstr "ከ _ታች"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:320
+#: sw/uiconfig/swriter/ui/formattablepage.ui:311
msgctxt "formattablepage|label46"
msgid "Spacing"
msgstr "ክፍተት"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:362
+#: sw/uiconfig/swriter/ui/formattablepage.ui:349
msgctxt "formattablepage|full"
msgid "A_utomatic"
msgstr "ራ_ሱ በራሱ"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:380
+#: sw/uiconfig/swriter/ui/formattablepage.ui:365
msgctxt "formattablepage|left"
msgid "_Left"
msgstr "በ _ግራ"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:398
+#: sw/uiconfig/swriter/ui/formattablepage.ui:381
msgctxt "formattablepage|fromleft"
msgid "_From left"
msgstr "ከ _ግራ"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:416
+#: sw/uiconfig/swriter/ui/formattablepage.ui:397
msgctxt "formattablepage|right"
msgid "R_ight"
msgstr "ቀ_ኝ"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:435
+#: sw/uiconfig/swriter/ui/formattablepage.ui:413
msgctxt "formattablepage|center"
msgid "_Center"
msgstr "_መሀከል"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:453
+#: sw/uiconfig/swriter/ui/formattablepage.ui:429
msgctxt "formattablepage|free"
msgid "_Manual"
msgstr "_በእጅ"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:478
+#: sw/uiconfig/swriter/ui/formattablepage.ui:452
msgctxt "formattablepage|label43"
msgid "Alignment"
msgstr "ማሰለፊያ"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:522
+#: sw/uiconfig/swriter/ui/formattablepage.ui:491
msgctxt "formattablepage|label53"
msgid "Text _direction"
msgstr "የጽሁፍ _አቅጣጫ"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:553
+#: sw/uiconfig/swriter/ui/formattablepage.ui:519
msgctxt "formattablepage|label44"
msgid "Properties "
msgstr "ባህሪዎች "
@@ -9779,22 +9779,27 @@ msgctxt "headerfootermenu|insert_pagenumber"
msgid "Insert Page Number"
msgstr "የ ገጽ ቁጥር ለ ማስገባት"
-#: sw/uiconfig/swriter/ui/indentpage.ui:52
+#: sw/uiconfig/swriter/ui/headerfootermenu.ui:42
+msgctxt "headerfootermenu|insert_pagecount"
+msgid "Insert Page Count"
+msgstr "የ ገጽ መቁጠሪያ መጨመሪያ"
+
+#: sw/uiconfig/swriter/ui/indentpage.ui:57
msgctxt "indentpage|label1"
msgid "_Before section"
msgstr "ከ ክፍሉ _በፊት"
-#: sw/uiconfig/swriter/ui/indentpage.ui:67
+#: sw/uiconfig/swriter/ui/indentpage.ui:71
msgctxt "indentpage|label3"
msgid "_After section"
msgstr "ከ ክፍሉ _በኋላ"
-#: sw/uiconfig/swriter/ui/indentpage.ui:113
+#: sw/uiconfig/swriter/ui/indentpage.ui:115
msgctxt "indentpage|label2"
msgid "Indent"
msgstr "ማስረጊያ"
-#: sw/uiconfig/swriter/ui/indentpage.ui:142
+#: sw/uiconfig/swriter/ui/indentpage.ui:155
msgctxt "indentpage|preview-atkobject"
msgid "Example"
msgstr "ምሳሌ"
@@ -13285,8 +13290,8 @@ msgstr "ፎርም መጠበቂያ"
#: sw/uiconfig/swriter/ui/optcompatpage.ui:68
msgctxt "optcompatpage|format"
-msgid "MS Word-compatible trailing blanks"
-msgstr "MS Word-compatible trailing blanks"
+msgid "Word-compatible trailing blanks"
+msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:69
msgctxt "optcompatpage|format"
@@ -13295,7 +13300,7 @@ msgstr "ነጭ መስመር መተው በ PDF ገጽ መደብ ላይ: እንዲ
#: sw/uiconfig/swriter/ui/optcompatpage.ui:70
msgctxt "optcompatpage|format"
-msgid "A database field (e.g., MailMerge) with empty value hides its paragraph"
+msgid "Hide paragraphs of database fields (e.g., mail merge) with an empty value"
msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:71
@@ -15981,122 +15986,122 @@ msgctxt "tableproperties|background"
msgid "Background"
msgstr "መደብ"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:25
-msgctxt "tabletextflowpage|liststore1"
-msgid "Horizontal"
-msgstr "በ አግድም"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:29
-msgctxt "tabletextflowpage|liststore1"
-msgid "Vertical"
-msgstr "በ ቁመት"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:33
-msgctxt "tabletextflowpage|liststore1"
-msgid "Use superordinate object settings"
-msgstr "ከፍተኛ የ እቃ ማሰናጃዎች መጠቀሚያ"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:47
-msgctxt "tabletextflowpage|liststore2"
-msgid "Top"
-msgstr "ከ ላይ"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:51
-msgctxt "tabletextflowpage|liststore2"
-msgid "Centered"
-msgstr "መሀከል"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:55
-msgctxt "tabletextflowpage|liststore2"
-msgid "Bottom"
-msgstr "ከ ታች"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:97
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:53
msgctxt "tabletextflowpage|break"
msgid "_Break"
msgstr "_መጨረሻ"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:112
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:68
msgctxt "tabletextflowpage|page"
msgid "_Page"
msgstr "_ገጽ"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:132
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:87
msgctxt "tabletextflowpage|column"
msgid "Col_umn"
msgstr "አም_ድ"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:151
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:106
msgctxt "tabletextflowpage|before"
msgid "Be_fore"
msgstr "በፊ_ት"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:171
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:125
msgctxt "tabletextflowpage|after"
msgid "_After"
msgstr "_በኋላ"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:203
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:158
msgctxt "tabletextflowpage|pagestyle"
msgid "With Page St_yle"
msgstr "ከገጽ ዘዴ_ዎች ጋር"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:224
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:177
msgctxt "tabletextflowpage|pagenoft"
msgid "Page _number"
msgstr "የ ገጽ _ቁጥር"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:257
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:213
msgctxt "tabletextflowpage|pagestylelb-atkobject"
msgid "With Page Style"
msgstr "ከ ገጽ ዘዴ ጋር"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:274
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:230
msgctxt "tabletextflowpage|split"
msgid "Allow _table to split across pages and columns"
msgstr "_ሰንጠረዦች በገጾች እና አምዶች ባሻገር እንዲከፈሉ መፍቀጃ"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:289
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:245
msgctxt "tabletextflowpage|splitrow"
msgid "Allow row to break a_cross pages and columns"
msgstr "ረድፍ በገጾች እና አምዶች ባ_ሻገር እንዲከፈሉ መፍቀጃ"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:306
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:262
msgctxt "tabletextflowpage|keep"
msgid "_Keep with next paragraph"
msgstr "ከሚቀጥለው አንቀጽ ጋር _አስቀምጥ"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:328
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:284
msgctxt "tabletextflowpage|label40"
msgid "Text _orientation"
msgstr "የ ጽሁፍ _አቅጣጫ"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:361
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:298
+msgctxt "tabletextflowpage|liststore1"
+msgid "Horizontal"
+msgstr "በ አግድም"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:299
+msgctxt "tabletextflowpage|liststore1"
+msgid "Vertical"
+msgstr "በ ቁመት"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:300
+msgctxt "tabletextflowpage|liststore1"
+msgid "Use superordinate object settings"
+msgstr "ከፍተኛ የ እቃ ማሰናጃዎች መጠቀሚያ"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:321
msgctxt "tabletextflowpage|headline"
msgid "R_epeat heading"
msgstr "ራስጌ መ_ድገሚያ"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:383
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:343
msgctxt "tabletextflowpage|label38"
msgid "The first "
msgstr "መጀመሪያው "
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:396
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:356
msgctxt "tabletextflowpage|label39"
msgid "rows"
msgstr "ረድፎች"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:434
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:395
msgctxt "tabletextflowpage|label35"
msgid "Text Flow"
msgstr "የ ጽሁፍ ፍሰት"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:467
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:428
msgctxt "tabletextflowpage|label41"
msgid "_Vertical alignment"
msgstr "በ _ቁመት ማሰለፊያ"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:495
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:442
+msgctxt "tabletextflowpage|liststore2"
+msgid "Top"
+msgstr "ከ ላይ"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:443
+msgctxt "tabletextflowpage|liststore2"
+msgid "Centered"
+msgstr "መሀከል"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:444
+msgctxt "tabletextflowpage|liststore2"
+msgid "Bottom"
+msgstr "ከ ታች"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:460
msgctxt "tabletextflowpage|label36"
msgid "Alignment"
msgstr "ማሰለፊያ"
@@ -16878,8 +16883,8 @@ msgstr "በ ፊደል ቅደም ተከተል ማውጫ"
#: sw/uiconfig/swriter/ui/tocindexpage.ui:58
msgctxt "tocindexpage|liststore1"
-msgid "Illustration Index"
-msgstr "የማውጫ ማብራሪያ"
+msgid "Table of Figures"
+msgstr ""
#: sw/uiconfig/swriter/ui/tocindexpage.ui:62
msgctxt "tocindexpage|liststore1"
@@ -17204,7 +17209,7 @@ msgstr "_አስተያየቶች"
#: sw/uiconfig/swriter/ui/viewoptionspage.ui:170
msgctxt "viewoptionspage|changestooltip"
msgid "_Tooltips on tracked changes"
-msgstr ""
+msgstr "_ፍንጭ ለሚከታተሉት ለውጦች"
#: sw/uiconfig/swriter/ui/viewoptionspage.ui:190
msgctxt "viewoptionspage|displaylabel"
diff --git a/source/am/writerperfect/messages.po b/source/am/writerperfect/messages.po
index d8586f3c50f..defa6333331 100644
--- a/source/am/writerperfect/messages.po
+++ b/source/am/writerperfect/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-16 16:54+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2018-05-13 19:10+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -66,97 +66,97 @@ msgctxt "exportepub|generalft"
msgid "General"
msgstr "ባጠቃላይ"
-#: writerperfect/uiconfig/ui/exportepub.ui:122
+#: writerperfect/uiconfig/ui/exportepub.ui:121
msgctxt "exportepub|versionft"
msgid "Version:"
msgstr "እትም:"
-#: writerperfect/uiconfig/ui/exportepub.ui:139
+#: writerperfect/uiconfig/ui/exportepub.ui:138
msgctxt "exportepub|epub3"
msgid "EPUB 3.0"
msgstr "EPUB 3.0"
-#: writerperfect/uiconfig/ui/exportepub.ui:140
+#: writerperfect/uiconfig/ui/exportepub.ui:139
msgctxt "exportepub|epub2"
msgid "EPUB 2.0"
msgstr "EPUB 2.0"
-#: writerperfect/uiconfig/ui/exportepub.ui:175
+#: writerperfect/uiconfig/ui/exportepub.ui:174
msgctxt "exportepub|splitft"
msgid "Split method:"
msgstr "መክፈያ ዘዴ:"
-#: writerperfect/uiconfig/ui/exportepub.ui:192
+#: writerperfect/uiconfig/ui/exportepub.ui:191
msgctxt "exportepub|splitpage"
msgid "Page break"
msgstr "የ ገጽ መጨረሻ"
-#: writerperfect/uiconfig/ui/exportepub.ui:193
+#: writerperfect/uiconfig/ui/exportepub.ui:192
msgctxt "exportepub|splitheading"
msgid "Heading"
msgstr "ራስጌ"
-#: writerperfect/uiconfig/ui/exportepub.ui:228
+#: writerperfect/uiconfig/ui/exportepub.ui:227
msgctxt "exportepub|layoutft"
msgid "Layout method:"
msgstr "የ እቅድ ዘዴ:"
-#: writerperfect/uiconfig/ui/exportepub.ui:245
+#: writerperfect/uiconfig/ui/exportepub.ui:244
msgctxt "exportepub|layoutreflowable"
msgid "Reflowable"
msgstr "እንደገና የሚፈስ"
-#: writerperfect/uiconfig/ui/exportepub.ui:246
+#: writerperfect/uiconfig/ui/exportepub.ui:245
msgctxt "exportepub|layoutfixed"
msgid "Fixed"
msgstr "የተወሰነ"
-#: writerperfect/uiconfig/ui/exportepub.ui:281
+#: writerperfect/uiconfig/ui/exportepub.ui:280
msgctxt "exportepub|coverimageft"
msgid "Custom cover image:"
msgstr "የ ሽፋን ምስል ማስተካከያ:"
-#: writerperfect/uiconfig/ui/exportepub.ui:311
+#: writerperfect/uiconfig/ui/exportepub.ui:310
msgctxt "exportepub|coverbutton"
msgid "Browse..."
msgstr "መቃኛ..."
-#: writerperfect/uiconfig/ui/exportepub.ui:355
+#: writerperfect/uiconfig/ui/exportepub.ui:354
msgctxt "exportepub|mediadirft"
msgid "Custom media directory:"
msgstr "የ መገናኛ ዳይሬክቶሪ ማስተካከያ:"
-#: writerperfect/uiconfig/ui/exportepub.ui:385
+#: writerperfect/uiconfig/ui/exportepub.ui:384
msgctxt "exportepub|mediabutton"
msgid "Browse..."
msgstr "መቃኛ..."
-#: writerperfect/uiconfig/ui/exportepub.ui:429
+#: writerperfect/uiconfig/ui/exportepub.ui:428
msgctxt "exportepub|metadataft"
msgid "Metadata"
msgstr "Metadata"
-#: writerperfect/uiconfig/ui/exportepub.ui:470
+#: writerperfect/uiconfig/ui/exportepub.ui:468
msgctxt "exportepub|identifierft"
msgid "Identifier:"
msgstr "መለያ:"
-#: writerperfect/uiconfig/ui/exportepub.ui:485
+#: writerperfect/uiconfig/ui/exportepub.ui:483
msgctxt "exportepub|titleft"
msgid "Title:"
msgstr "አርእስት:"
-#: writerperfect/uiconfig/ui/exportepub.ui:511
+#: writerperfect/uiconfig/ui/exportepub.ui:509
msgctxt "exportepub|authorft"
msgid "Author:"
msgstr "ደራሲው:"
-#: writerperfect/uiconfig/ui/exportepub.ui:537
+#: writerperfect/uiconfig/ui/exportepub.ui:535
msgctxt "exportepub|languageft"
msgid "Language:"
msgstr "ቋንቋ:"
-#: writerperfect/uiconfig/ui/exportepub.ui:563
+#: writerperfect/uiconfig/ui/exportepub.ui:561
msgctxt "exportepub|dateft"
msgid "Date:"
msgstr "ቀን:"
diff --git a/source/an/cui/messages.po b/source/an/cui/messages.po
index d9976da7e0b..8d351c86119 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+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"
@@ -10059,100 +10059,100 @@ msgctxt "positionsizedialog|PositionAndSizeDialog"
msgid "Position and Size"
msgstr ""
-#: cui/uiconfig/ui/positionsizedialog.ui:107
+#: cui/uiconfig/ui/positionsizedialog.ui:136
msgctxt "positionsizedialog|RID_SVXPAGE_POSITION_SIZE"
msgid "Position and Size"
msgstr ""
-#: cui/uiconfig/ui/positionsizedialog.ui:129
+#: cui/uiconfig/ui/positionsizedialog.ui:182
msgctxt "positionsizedialog|RID_SVXPAGE_SWPOSSIZE"
msgid "Position and Size"
msgstr ""
-#: cui/uiconfig/ui/positionsizedialog.ui:152
+#: cui/uiconfig/ui/positionsizedialog.ui:229
msgctxt "positionsizedialog|RID_SVXPAGE_ANGLE"
msgid "Rotation"
msgstr ""
-#: cui/uiconfig/ui/positionsizedialog.ui:175
+#: cui/uiconfig/ui/positionsizedialog.ui:276
msgctxt "positionsizedialog|RID_SVXPAGE_SLANT"
msgid "Slant & Corner Radius"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:40
+#: cui/uiconfig/ui/possizetabpage.ui:61
#, fuzzy
msgctxt "possizetabpage|FT_POS_X"
msgid "Position _X:"
msgstr "Posición"
-#: cui/uiconfig/ui/possizetabpage.ui:56
+#: cui/uiconfig/ui/possizetabpage.ui:75
#, fuzzy
msgctxt "possizetabpage|FT_POS_Y"
msgid "Position _Y:"
msgstr "Posición"
-#: cui/uiconfig/ui/possizetabpage.ui:110
+#: cui/uiconfig/ui/possizetabpage.ui:128
msgctxt "possizetabpage|FT_POSREFERENCE"
msgid "_Base point:"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:148
+#: cui/uiconfig/ui/possizetabpage.ui:182
msgctxt "possizetabpage|label1"
msgid "Position"
msgstr "Posición"
-#: cui/uiconfig/ui/possizetabpage.ui:190
+#: cui/uiconfig/ui/possizetabpage.ui:224
msgctxt "possizetabpage|FT_WIDTH"
msgid "Wi_dth:"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:206
+#: cui/uiconfig/ui/possizetabpage.ui:238
msgctxt "possizetabpage|FT_HEIGHT"
msgid "H_eight:"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:247
+#: cui/uiconfig/ui/possizetabpage.ui:276
msgctxt "possizetabpage|CBX_SCALE"
msgid "_Keep ratio"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:279
+#: cui/uiconfig/ui/possizetabpage.ui:307
msgctxt "possizetabpage|FT_SIZEREFERENCE"
msgid "Base _point:"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:317
+#: cui/uiconfig/ui/possizetabpage.ui:361
msgctxt "possizetabpage|label2"
msgid "Size"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:356
+#: cui/uiconfig/ui/possizetabpage.ui:401
#, fuzzy
msgctxt "possizetabpage|TSB_POSPROTECT"
msgid "Positio_n"
msgstr "Posición"
-#: cui/uiconfig/ui/possizetabpage.ui:373
+#: cui/uiconfig/ui/possizetabpage.ui:418
msgctxt "possizetabpage|TSB_SIZEPROTECT"
msgid "_Size"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:397
+#: cui/uiconfig/ui/possizetabpage.ui:441
msgctxt "possizetabpage|label3"
msgid "Protect"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:430
+#: cui/uiconfig/ui/possizetabpage.ui:475
msgctxt "possizetabpage|TSB_AUTOGROW_WIDTH"
msgid "_Fit width to text"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:447
+#: cui/uiconfig/ui/possizetabpage.ui:492
msgctxt "possizetabpage|TSB_AUTOGROW_HEIGHT"
msgid "Fit _height to text"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:471
+#: cui/uiconfig/ui/possizetabpage.ui:515
msgctxt "possizetabpage|label4"
msgid "Adapt"
msgstr ""
@@ -10355,49 +10355,49 @@ msgctxt "recordnumberdialog|label2"
msgid "go to record"
msgstr ""
-#: cui/uiconfig/ui/rotationtabpage.ui:52
+#: cui/uiconfig/ui/rotationtabpage.ui:56
#, fuzzy
msgctxt "rotationtabpage|FT_POS_X"
msgid "Position _X:"
msgstr "Posición"
-#: cui/uiconfig/ui/rotationtabpage.ui:66
+#: cui/uiconfig/ui/rotationtabpage.ui:70
#, fuzzy
msgctxt "rotationtabpage|FT_POS_Y"
msgid "Position _Y:"
msgstr "Posición"
-#: cui/uiconfig/ui/rotationtabpage.ui:116
+#: cui/uiconfig/ui/rotationtabpage.ui:123
msgctxt "rotationtabpage|FT_POSPRESETS"
msgid "_Default settings:"
msgstr ""
-#: cui/uiconfig/ui/rotationtabpage.ui:130
+#: cui/uiconfig/ui/rotationtabpage.ui:151
msgctxt "rotationtabpage|CTL_RECT|tooltip_text"
msgid "Rotation point"
msgstr ""
-#: cui/uiconfig/ui/rotationtabpage.ui:155
+#: cui/uiconfig/ui/rotationtabpage.ui:178
msgctxt "rotationtabpage|label1"
msgid "Pivot Point"
msgstr ""
-#: cui/uiconfig/ui/rotationtabpage.ui:197
+#: cui/uiconfig/ui/rotationtabpage.ui:220
msgctxt "rotationtabpage|FT_ANGLE"
msgid "_Angle:"
msgstr ""
-#: cui/uiconfig/ui/rotationtabpage.ui:238
+#: cui/uiconfig/ui/rotationtabpage.ui:263
msgctxt "rotationtabpage|FT_ANGLEPRESETS"
msgid "Default _settings:"
msgstr ""
-#: cui/uiconfig/ui/rotationtabpage.ui:252
+#: cui/uiconfig/ui/rotationtabpage.ui:287
msgctxt "rotationtabpage|CTL_ANGLE|tooltip_text"
msgid "Rotation Angle"
msgstr ""
-#: cui/uiconfig/ui/rotationtabpage.ui:277
+#: cui/uiconfig/ui/rotationtabpage.ui:314
msgctxt "rotationtabpage|label2"
msgid "Rotation Angle"
msgstr ""
@@ -10780,52 +10780,52 @@ msgctxt "similaritysearchdialog|relaxbox"
msgid "_Combine"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:50
+#: cui/uiconfig/ui/slantcornertabpage.ui:70
msgctxt "slantcornertabpage|label5"
msgid "_X:"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:88
+#: cui/uiconfig/ui/slantcornertabpage.ui:110
msgctxt "slantcornertabpage|label6"
msgid "_Y:"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:125
+#: cui/uiconfig/ui/slantcornertabpage.ui:149
msgctxt "slantcornertabpage|label3"
msgid "Control Point 1"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:159
+#: cui/uiconfig/ui/slantcornertabpage.ui:183
msgctxt "slantcornertabpage|FT_RADIUS"
msgid "_Radius:"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:189
+#: cui/uiconfig/ui/slantcornertabpage.ui:214
msgctxt "slantcornertabpage|label1"
msgid "Corner Radius"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:223
+#: cui/uiconfig/ui/slantcornertabpage.ui:248
msgctxt "slantcornertabpage|FT_ANGLE"
msgid "_Angle:"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:253
+#: cui/uiconfig/ui/slantcornertabpage.ui:279
msgctxt "slantcornertabpage|label2"
msgid "Slant"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:294
+#: cui/uiconfig/ui/slantcornertabpage.ui:320
msgctxt "slantcornertabpage|label4"
msgid "_X:"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:332
+#: cui/uiconfig/ui/slantcornertabpage.ui:360
msgctxt "slantcornertabpage|label7"
msgid "_Y:"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:369
+#: cui/uiconfig/ui/slantcornertabpage.ui:399
msgctxt "slantcornertabpage|label8"
msgid "Control Point 2"
msgstr ""
@@ -11110,116 +11110,116 @@ msgctxt "storedwebconnectiondialog|change"
msgid "_Change Password..."
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:74
+#: cui/uiconfig/ui/swpossizepage.ui:85
msgctxt "swpossizepage|widthft"
msgid "_Width:"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:111
+#: cui/uiconfig/ui/swpossizepage.ui:123
msgctxt "swpossizepage|heightft"
msgid "H_eight:"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:128
+#: cui/uiconfig/ui/swpossizepage.ui:141
msgctxt "swpossizepage|ratio"
msgid "_Keep ratio"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:149
+#: cui/uiconfig/ui/swpossizepage.ui:162
msgctxt "swpossizepage|label2"
msgid "Size"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:205
+#: cui/uiconfig/ui/swpossizepage.ui:218
#, fuzzy
msgctxt "swpossizepage|topage"
msgid "To _page"
msgstr "Ta la pac~hina"
-#: cui/uiconfig/ui/swpossizepage.ui:222
+#: cui/uiconfig/ui/swpossizepage.ui:234
msgctxt "swpossizepage|topara"
msgid "To paragrap_h"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:238
+#: cui/uiconfig/ui/swpossizepage.ui:250
msgctxt "swpossizepage|tochar"
msgid "To cha_racter"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:254
+#: cui/uiconfig/ui/swpossizepage.ui:266
msgctxt "swpossizepage|aschar"
msgid "_As character"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:270
+#: cui/uiconfig/ui/swpossizepage.ui:282
msgctxt "swpossizepage|toframe"
msgid "To _frame"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:292
+#: cui/uiconfig/ui/swpossizepage.ui:304
#, fuzzy
msgctxt "swpossizepage|label1"
msgid "Anchor"
msgstr "An~corache"
-#: cui/uiconfig/ui/swpossizepage.ui:333
+#: cui/uiconfig/ui/swpossizepage.ui:344
#, fuzzy
msgctxt "swpossizepage|horiposft"
msgid "Hori_zontal:"
msgstr "~Horizontal"
-#: cui/uiconfig/ui/swpossizepage.ui:347
+#: cui/uiconfig/ui/swpossizepage.ui:358
msgctxt "swpossizepage|horibyft"
msgid "b_y:"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:361
+#: cui/uiconfig/ui/swpossizepage.ui:372
msgctxt "swpossizepage|vertbyft"
msgid "_by:"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:375
+#: cui/uiconfig/ui/swpossizepage.ui:386
msgctxt "swpossizepage|horitoft"
msgid "_to:"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:421
+#: cui/uiconfig/ui/swpossizepage.ui:433
msgctxt "swpossizepage|vertposft"
msgid "_Vertical:"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:457
+#: cui/uiconfig/ui/swpossizepage.ui:470
msgctxt "swpossizepage|verttoft"
msgid "t_o:"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:478
+#: cui/uiconfig/ui/swpossizepage.ui:492
msgctxt "swpossizepage|mirror"
msgid "_Mirror on even pages"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:495
+#: cui/uiconfig/ui/swpossizepage.ui:509
msgctxt "swpossizepage|followtextflow"
msgid "Follow te_xt flow"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:518
+#: cui/uiconfig/ui/swpossizepage.ui:532
msgctxt "swpossizepage|label11"
msgid "Position"
msgstr "Posición"
-#: cui/uiconfig/ui/swpossizepage.ui:549
+#: cui/uiconfig/ui/swpossizepage.ui:563
#, fuzzy
msgctxt "swpossizepage|pos"
msgid "Positio_n"
msgstr "Posición"
-#: cui/uiconfig/ui/swpossizepage.ui:565
+#: cui/uiconfig/ui/swpossizepage.ui:579
msgctxt "swpossizepage|size"
msgid "_Size"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:587
+#: cui/uiconfig/ui/swpossizepage.ui:601
msgctxt "swpossizepage|label3"
msgid "Protect"
msgstr ""
@@ -11414,12 +11414,12 @@ msgctxt "textattrtabpage|label2"
msgid "Spacing to Borders"
msgstr ""
-#: cui/uiconfig/ui/textattrtabpage.ui:425
+#: cui/uiconfig/ui/textattrtabpage.ui:423
msgctxt "textattrtabpage|TSB_FULL_WIDTH"
msgid "Full _width"
msgstr ""
-#: cui/uiconfig/ui/textattrtabpage.ui:448
+#: cui/uiconfig/ui/textattrtabpage.ui:446
msgctxt "textattrtabpage|label3"
msgid "Text Anchor"
msgstr ""
diff --git a/source/an/filter/source/config/fragments/filters.po b/source/an/filter/source/config/fragments/filters.po
index 24c6a3fec6d..48fa5d31c2c 100644
--- a/source/an/filter/source/config/fragments/filters.po
+++ b/source/an/filter/source/config/fragments/filters.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-16 16:54+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2016-12-01 11:55+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -463,7 +463,7 @@ msgctxt ""
"MS Word 2003 XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Word 2003 XML"
+msgid "Word 2003 XML"
msgstr ""
#: MS_Word_2007_XML.xcu
@@ -1283,7 +1283,7 @@ msgctxt ""
"Calc MS Excel 2007 VBA XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Excel 2007-2016 XML (macro enabled)"
+msgid "Excel 2007–2019 (macro-enabled)"
msgstr ""
#: calc_MS_Excel_2007_XML.xcu
diff --git a/source/an/filter/source/config/fragments/types.po b/source/an/filter/source/config/fragments/types.po
index a069ec8873f..20e4a9e1dc5 100644
--- a/source/an/filter/source/config/fragments/types.po
+++ b/source/an/filter/source/config/fragments/types.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-08 15:11+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2015-11-11 00:15+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -292,7 +292,7 @@ msgctxt ""
"writer_MS_Word_2003_XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Word 2003 XML"
+msgid "Word 2003 XML"
msgstr ""
#: writer_MS_Word_2007_XML.xcu
diff --git a/source/an/fpicker/messages.po b/source/an/fpicker/messages.po
index 9cef61cd24e..ed9b9b6c3df 100644
--- a/source/an/fpicker/messages.po
+++ b/source/an/fpicker/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+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"
@@ -263,14 +263,13 @@ msgstr ""
#: fpicker/uiconfig/ui/foldernamedialog.ui:8
msgctxt "foldernamedialog|FolderNameDialog"
-msgid "Folder Name ?"
+msgid "Folder Name"
msgstr ""
#: fpicker/uiconfig/ui/foldernamedialog.ui:91
-#, fuzzy
msgctxt "foldernamedialog|label2"
-msgid "Na_me"
-msgstr "Nombre"
+msgid "Na_me:"
+msgstr ""
#: fpicker/uiconfig/ui/foldernamedialog.ui:122
msgctxt "foldernamedialog|label1"
diff --git a/source/an/officecfg/registry/data/org/openoffice/Office/UI.po b/source/an/officecfg/registry/data/org/openoffice/Office/UI.po
index 7aba1406b4f..84e747d6a83 100644
--- a/source/an/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/an/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-22 13:17+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2016-12-01 17:10+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -28621,14 +28621,13 @@ msgid "Insert Formula"
msgstr ""
#: WriterCommands.xcu
-#, fuzzy
msgctxt ""
"WriterCommands.xcu\n"
"..WriterCommands.UserInterface.Commands..uno:TextAttributes\n"
"Label\n"
"value.text"
-msgid "Text Attributes"
-msgstr "Atributos de texto"
+msgid "Text Attributes..."
+msgstr ""
#: WriterCommands.xcu
#, fuzzy
diff --git a/source/an/readlicense_oo/docs.po b/source/an/readlicense_oo/docs.po
index 5633ab9e7b8..d2ac60db311 100644
--- a/source/an/readlicense_oo/docs.po
+++ b/source/an/readlicense_oo/docs.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-04-17 15:54+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2016-03-10 18:16+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -117,7 +117,7 @@ msgctxt ""
"readme.xrm\n"
"macxiOSX\n"
"readmeitem.text"
-msgid "MacOSX 10.8 (Mountain Lion) or higher"
+msgid "MacOSX 10.9 (Mavericks) or higher"
msgstr ""
#: readme.xrm
diff --git a/source/an/sc/messages.po b/source/an/sc/messages.po
index 9e89b4aafb9..ddb007eccd7 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-12 14:40+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"
@@ -2163,17 +2163,22 @@ msgid "Nested arrays are not supported."
msgstr "No s'admiten os arreglos anidados."
#: sc/inc/globstr.hrc:390
+msgctxt "STR_ERR_LONG_BAD_ARRAY_CONTENT"
+msgid "Unsupported inline array content."
+msgstr ""
+
+#: sc/inc/globstr.hrc:391
msgctxt "STR_UNDO_TEXTTOCOLUMNS"
msgid "Text to Columns"
msgstr ""
-#: sc/inc/globstr.hrc:391
+#: sc/inc/globstr.hrc:392
#, fuzzy
msgctxt "STR_DOC_UPDATED"
msgid "Your spreadsheet has been updated with changes saved by other users."
msgstr "A suya fuella de calculo ha estau actualizada con cambeos alzaus por unatro usuario."
-#: sc/inc/globstr.hrc:392
+#: sc/inc/globstr.hrc:393
#, fuzzy
msgctxt "STR_DOC_WILLBESAVED"
msgid ""
@@ -2184,7 +2189,7 @@ msgstr ""
"A fuella de calculo debe estar alzada agora ta activar o modo compartiu.\n"
"Deseya continar?"
-#: sc/inc/globstr.hrc:393
+#: sc/inc/globstr.hrc:394
#, fuzzy
msgctxt "STR_DOC_WILLNOTBESAVED"
msgid ""
@@ -2196,7 +2201,7 @@ msgstr ""
"\n"
"Deseya continar?"
-#: sc/inc/globstr.hrc:394
+#: sc/inc/globstr.hrc:395
#, fuzzy
msgctxt "STR_DOC_DISABLESHARED"
msgid ""
@@ -2208,7 +2213,7 @@ msgstr ""
"\n"
"Deseya continar?"
-#: sc/inc/globstr.hrc:395
+#: sc/inc/globstr.hrc:396
#, fuzzy
msgctxt "STR_DOC_NOLONGERSHARED"
msgid ""
@@ -2220,7 +2225,7 @@ msgstr ""
"\n"
"Alzar a fuella de calculo en un fichero separau y fusionar os cambeos a la fuella de calculo compartida manualment."
-#: sc/inc/globstr.hrc:396
+#: sc/inc/globstr.hrc:397
#, fuzzy
msgctxt "STR_FILE_LOCKED_TRY_LATER"
msgid ""
@@ -2232,7 +2237,7 @@ msgstr ""
"\n"
"O modo compartiu d'un fichero bloquiau no puede estar deshabilitau. Intente-lo mas tarde."
-#: sc/inc/globstr.hrc:397
+#: sc/inc/globstr.hrc:398
#, fuzzy
msgctxt "STR_FILE_LOCKED_SAVE_LATER"
msgid ""
@@ -2244,169 +2249,169 @@ msgstr ""
"\n"
"Intente alzar os cambeos mas tarde."
-#: sc/inc/globstr.hrc:398
+#: sc/inc/globstr.hrc:399
msgctxt "STR_UNKNOWN_USER"
msgid "Unknown User"
msgstr "Usuario desconoixiu"
-#: sc/inc/globstr.hrc:399
+#: sc/inc/globstr.hrc:400
#, fuzzy
msgctxt "STR_SHAPE_AUTOSHAPE"
msgid "AutoShape"
msgstr "AutoForma"
-#: sc/inc/globstr.hrc:400
+#: sc/inc/globstr.hrc:401
#, fuzzy
msgctxt "STR_SHAPE_RECTANGLE"
msgid "Rectangle"
msgstr "Rectanglo"
-#: sc/inc/globstr.hrc:401
+#: sc/inc/globstr.hrc:402
#, fuzzy
msgctxt "STR_SHAPE_LINE"
msgid "Line"
msgstr "Linia"
-#: sc/inc/globstr.hrc:402
+#: sc/inc/globstr.hrc:403
#, fuzzy
msgctxt "STR_SHAPE_OVAL"
msgid "Oval"
msgstr "Óvalo"
-#: sc/inc/globstr.hrc:403
+#: sc/inc/globstr.hrc:404
#, fuzzy
msgctxt "STR_FORM_BUTTON"
msgid "Button"
msgstr "Botón"
-#: sc/inc/globstr.hrc:404
+#: sc/inc/globstr.hrc:405
#, fuzzy
msgctxt "STR_FORM_CHECKBOX"
msgid "Check Box"
msgstr "Caixeta de verificación"
-#: sc/inc/globstr.hrc:405
+#: sc/inc/globstr.hrc:406
#, fuzzy
msgctxt "STR_FORM_OPTIONBUTTON"
msgid "Option Button"
msgstr "Botón d'opción"
-#: sc/inc/globstr.hrc:406
+#: sc/inc/globstr.hrc:407
#, fuzzy
msgctxt "STR_FORM_LABEL"
msgid "Label"
msgstr "Etiqueta"
-#: sc/inc/globstr.hrc:407
+#: sc/inc/globstr.hrc:408
#, fuzzy
msgctxt "STR_FORM_LISTBOX"
msgid "List Box"
msgstr "Quadro de lista"
-#: sc/inc/globstr.hrc:408
+#: sc/inc/globstr.hrc:409
#, fuzzy
msgctxt "STR_FORM_GROUPBOX"
msgid "Group Box"
msgstr "Caixeta de grupo"
-#: sc/inc/globstr.hrc:409
+#: sc/inc/globstr.hrc:410
#, fuzzy
msgctxt "STR_FORM_DROPDOWN"
msgid "Drop Down"
msgstr "Desplegable"
-#: sc/inc/globstr.hrc:410
+#: sc/inc/globstr.hrc:411
#, fuzzy
msgctxt "STR_FORM_SPINNER"
msgid "Spinner"
msgstr "Selector"
-#: sc/inc/globstr.hrc:411
+#: sc/inc/globstr.hrc:412
#, fuzzy
msgctxt "STR_FORM_SCROLLBAR"
msgid "Scroll Bar"
msgstr "Barra de desplazamiento"
-#: sc/inc/globstr.hrc:412
+#: sc/inc/globstr.hrc:413
msgctxt "STR_STYLE_FAMILY_CELL"
msgid "Cell Styles"
msgstr "Estilos de celda"
-#: sc/inc/globstr.hrc:413
+#: sc/inc/globstr.hrc:414
#, fuzzy
msgctxt "STR_STYLE_FAMILY_PAGE"
msgid "Page Styles"
msgstr "Estilos de pachina"
-#: sc/inc/globstr.hrc:414
+#: sc/inc/globstr.hrc:415
#, fuzzy
msgctxt "STR_ERR_DATAPILOTSOURCE"
msgid "Pivot table source data is invalid."
msgstr "Os datos d'orichen ta la tabla dinamica no son validos."
-#: sc/inc/globstr.hrc:415
+#: sc/inc/globstr.hrc:416
#, fuzzy
msgctxt "STR_OPTIONS_WARN_SEPARATORS"
msgid "Because the current formula separator settings conflict with the locale, the formula separators have been reset to their default values."
msgstr "Os separadors de formula han estau restablius a las suyas valors predeterminadas a causa que a configuración actual d'o separador de formula dentra en conflicto con a configuración rechional."
-#: sc/inc/globstr.hrc:416
+#: sc/inc/globstr.hrc:417
#, fuzzy
msgctxt "STR_UNDO_INSERT_CURRENT_DATE"
msgid "Insert Current Date"
msgstr "Ficar a calendata actual"
-#: sc/inc/globstr.hrc:417
+#: sc/inc/globstr.hrc:418
#, fuzzy
msgctxt "STR_UNDO_INSERT_CURRENT_TIME"
msgid "Insert Current Time"
msgstr "Ficar a hora actual"
-#: sc/inc/globstr.hrc:418
+#: sc/inc/globstr.hrc:419
#, fuzzy
msgctxt "STR_MANAGE_NAMES"
msgid "Manage Names..."
msgstr "Chestión de nombres"
-#: sc/inc/globstr.hrc:419
+#: sc/inc/globstr.hrc:420
msgctxt "STR_HEADER_NAME"
msgid "Name"
msgstr "Nombre"
-#: sc/inc/globstr.hrc:420
+#: sc/inc/globstr.hrc:421
msgctxt "STR_HEADER_RANGE_OR_EXPR"
msgid "Range or formula expression"
msgstr ""
-#: sc/inc/globstr.hrc:421
+#: sc/inc/globstr.hrc:422
#, fuzzy
msgctxt "STR_HEADER_SCOPE"
msgid "Scope"
msgstr "Ambito"
-#: sc/inc/globstr.hrc:422
+#: sc/inc/globstr.hrc:423
#, fuzzy
msgctxt "STR_MULTI_SELECT"
msgid "(multiple)"
msgstr "(multiple)"
-#: sc/inc/globstr.hrc:423
+#: sc/inc/globstr.hrc:424
#, fuzzy
msgctxt "STR_GLOBAL_SCOPE"
msgid "Document (Global)"
msgstr "Documento (Global)"
-#: sc/inc/globstr.hrc:424
+#: sc/inc/globstr.hrc:425
msgctxt "STR_ERR_NAME_EXISTS"
msgid "Invalid name. Already in use for the selected scope."
msgstr ""
-#: sc/inc/globstr.hrc:425
+#: sc/inc/globstr.hrc:426
msgctxt "STR_ERR_NAME_INVALID"
msgid "Invalid name. Only use letters, numbers and underscore."
msgstr ""
-#: sc/inc/globstr.hrc:426
+#: sc/inc/globstr.hrc:427
msgctxt "STR_UNSAVED_EXT_REF"
msgid ""
"This Document contains external references to unsaved documents.\n"
@@ -2414,224 +2419,224 @@ msgid ""
"Do you want to continue?"
msgstr ""
-#: sc/inc/globstr.hrc:427
+#: sc/inc/globstr.hrc:428
msgctxt "STR_CLOSE_WITH_UNSAVED_REFS"
msgid "This Document is referenced by another document and not yet saved. Closing it without saving will result in data loss."
msgstr ""
-#: sc/inc/globstr.hrc:428
+#: sc/inc/globstr.hrc:429
msgctxt "STR_HEADER_RANGE"
msgid "Range"
msgstr "Intervalo"
-#: sc/inc/globstr.hrc:429
+#: sc/inc/globstr.hrc:430
msgctxt "STR_HEADER_COND"
msgid "First Condition"
msgstr ""
-#: sc/inc/globstr.hrc:430
+#: sc/inc/globstr.hrc:431
#, fuzzy
msgctxt "STR_COND_CONDITION"
msgid "Cell value is"
msgstr "A valura d'a celda ye"
-#: sc/inc/globstr.hrc:431
+#: sc/inc/globstr.hrc:432
msgctxt "STR_COND_COLORSCALE"
msgid "ColorScale"
msgstr ""
-#: sc/inc/globstr.hrc:432
+#: sc/inc/globstr.hrc:433
msgctxt "STR_COND_DATABAR"
msgid "DataBar"
msgstr ""
-#: sc/inc/globstr.hrc:433
+#: sc/inc/globstr.hrc:434
msgctxt "STR_COND_ICONSET"
msgid "IconSet"
msgstr ""
-#: sc/inc/globstr.hrc:434
+#: sc/inc/globstr.hrc:435
#, fuzzy
msgctxt "STR_COND_BETWEEN"
msgid "between"
msgstr "dentre"
-#: sc/inc/globstr.hrc:435
+#: sc/inc/globstr.hrc:436
#, fuzzy
msgctxt "STR_COND_NOTBETWEEN"
msgid "not between"
msgstr "difuera de l'intervalo dentre"
-#: sc/inc/globstr.hrc:436
+#: sc/inc/globstr.hrc:437
msgctxt "STR_COND_UNIQUE"
msgid "unique"
msgstr ""
-#: sc/inc/globstr.hrc:437
+#: sc/inc/globstr.hrc:438
msgctxt "STR_COND_DUPLICATE"
msgid "duplicate"
msgstr ""
-#: sc/inc/globstr.hrc:438
+#: sc/inc/globstr.hrc:439
#, fuzzy
msgctxt "STR_COND_FORMULA"
msgid "Formula is"
msgstr "A formula ye"
-#: sc/inc/globstr.hrc:439
+#: sc/inc/globstr.hrc:440
msgctxt "STR_COND_TOP10"
msgid "Top Elements"
msgstr ""
-#: sc/inc/globstr.hrc:440
+#: sc/inc/globstr.hrc:441
msgctxt "STR_COND_BOTTOM10"
msgid "Bottom Elements"
msgstr ""
-#: sc/inc/globstr.hrc:441
+#: sc/inc/globstr.hrc:442
msgctxt "STR_COND_TOP_PERCENT"
msgid "Top Percent"
msgstr ""
-#: sc/inc/globstr.hrc:442
+#: sc/inc/globstr.hrc:443
msgctxt "STR_COND_DATE"
msgid "Date is"
msgstr ""
-#: sc/inc/globstr.hrc:443
+#: sc/inc/globstr.hrc:444
msgctxt "STR_COND_BOTTOM_PERCENT"
msgid "Bottom Percent"
msgstr ""
-#: sc/inc/globstr.hrc:444
+#: sc/inc/globstr.hrc:445
msgctxt "STR_COND_ABOVE_AVERAGE"
msgid "Above Average"
msgstr ""
-#: sc/inc/globstr.hrc:445
+#: sc/inc/globstr.hrc:446
msgctxt "STR_COND_BELOW_AVERAGE"
msgid "Below Average"
msgstr ""
-#: sc/inc/globstr.hrc:446
+#: sc/inc/globstr.hrc:447
msgctxt "STR_COND_ABOVE_EQUAL_AVERAGE"
msgid "Above or equal Average"
msgstr ""
-#: sc/inc/globstr.hrc:447
+#: sc/inc/globstr.hrc:448
msgctxt "STR_COND_BELOW_EQUAL_AVERAGE"
msgid "Below or equal Average"
msgstr ""
-#: sc/inc/globstr.hrc:448
+#: sc/inc/globstr.hrc:449
msgctxt "STR_COND_ERROR"
msgid "an Error code"
msgstr ""
-#: sc/inc/globstr.hrc:449
+#: sc/inc/globstr.hrc:450
msgctxt "STR_COND_NOERROR"
msgid "not an Error code"
msgstr ""
-#: sc/inc/globstr.hrc:450
+#: sc/inc/globstr.hrc:451
#, fuzzy
msgctxt "STR_COND_BEGINS_WITH"
msgid "Begins with"
msgstr "Prencipia con"
-#: sc/inc/globstr.hrc:451
+#: sc/inc/globstr.hrc:452
#, fuzzy
msgctxt "STR_COND_ENDS_WITH"
msgid "Ends with"
msgstr "Remata con"
-#: sc/inc/globstr.hrc:452
+#: sc/inc/globstr.hrc:453
#, fuzzy
msgctxt "STR_COND_CONTAINS"
msgid "Contains"
msgstr "Contiene"
-#: sc/inc/globstr.hrc:453
+#: sc/inc/globstr.hrc:454
msgctxt "STR_COND_NOT_CONTAINS"
msgid "Not Contains"
msgstr ""
-#: sc/inc/globstr.hrc:454
+#: sc/inc/globstr.hrc:455
msgctxt "STR_COND_TODAY"
msgid "today"
msgstr ""
-#: sc/inc/globstr.hrc:455
+#: sc/inc/globstr.hrc:456
msgctxt "STR_COND_YESTERDAY"
msgid "yesterday"
msgstr ""
-#: sc/inc/globstr.hrc:456
+#: sc/inc/globstr.hrc:457
msgctxt "STR_COND_TOMORROW"
msgid "tomorrow"
msgstr ""
-#: sc/inc/globstr.hrc:457
+#: sc/inc/globstr.hrc:458
msgctxt "STR_COND_LAST7DAYS"
msgid "in the last 7 days"
msgstr ""
-#: sc/inc/globstr.hrc:458
+#: sc/inc/globstr.hrc:459
msgctxt "STR_COND_THISWEEK"
msgid "this week"
msgstr ""
-#: sc/inc/globstr.hrc:459
+#: sc/inc/globstr.hrc:460
msgctxt "STR_COND_LASTWEEK"
msgid "last week"
msgstr ""
-#: sc/inc/globstr.hrc:460
+#: sc/inc/globstr.hrc:461
msgctxt "STR_COND_NEXTWEEK"
msgid "next week"
msgstr ""
-#: sc/inc/globstr.hrc:461
+#: sc/inc/globstr.hrc:462
msgctxt "STR_COND_THISMONTH"
msgid "this month"
msgstr ""
-#: sc/inc/globstr.hrc:462
+#: sc/inc/globstr.hrc:463
msgctxt "STR_COND_LASTMONTH"
msgid "last month"
msgstr ""
-#: sc/inc/globstr.hrc:463
+#: sc/inc/globstr.hrc:464
msgctxt "STR_COND_NEXTMONTH"
msgid "next month"
msgstr ""
-#: sc/inc/globstr.hrc:464
+#: sc/inc/globstr.hrc:465
msgctxt "STR_COND_THISYEAR"
msgid "this year"
msgstr ""
-#: sc/inc/globstr.hrc:465
+#: sc/inc/globstr.hrc:466
msgctxt "STR_COND_LASTYEAR"
msgid "last year"
msgstr ""
-#: sc/inc/globstr.hrc:466
+#: sc/inc/globstr.hrc:467
msgctxt "STR_COND_NEXTYEAR"
msgid "next year"
msgstr ""
-#: sc/inc/globstr.hrc:467
+#: sc/inc/globstr.hrc:468
msgctxt "STR_COND_AND"
msgid "and"
msgstr ""
-#: sc/inc/globstr.hrc:468
+#: sc/inc/globstr.hrc:469
msgctxt "STR_ERR_CONDFORMAT_PROTECTED"
msgid "Conditional Formats can not be created, deleted or changed in protected sheets."
msgstr ""
-#: sc/inc/globstr.hrc:469
+#: sc/inc/globstr.hrc:470
msgctxt "STR_EDIT_EXISTING_COND_FORMATS"
msgid ""
"The selected cell already contains conditional formatting. You can either edit the existing conditional format or you define a new overlapping conditional format.\n"
@@ -2639,7 +2644,7 @@ msgid ""
" Do you want to edit the existing conditional format?"
msgstr ""
-#: sc/inc/globstr.hrc:470
+#: sc/inc/globstr.hrc:471
msgctxt "STR_QUERY_FORMULA_RECALC_ONLOAD_ODS"
msgid ""
"This document was last saved by an application other than %PRODUCTNAME. Some formula cells may produce different results when recalculated.\n"
@@ -2647,7 +2652,7 @@ msgid ""
"Do you want to recalculate all formula cells in this document now?"
msgstr ""
-#: sc/inc/globstr.hrc:471
+#: sc/inc/globstr.hrc:472
msgctxt "STR_QUERY_FORMULA_RECALC_ONLOAD_XLS"
msgid ""
"This document was last saved by Excel. Some formula cells may produce different results when recalculated.\n"
@@ -2655,82 +2660,82 @@ msgid ""
"Do you want to recalculate all formula cells now?"
msgstr ""
-#: sc/inc/globstr.hrc:472
+#: sc/inc/globstr.hrc:473
msgctxt "STR_NO_INSERT_DELETE_OVER_PIVOT_TABLE"
msgid "You cannot insert or delete cells when the affected range intersects with pivot table."
msgstr ""
-#: sc/inc/globstr.hrc:473
+#: sc/inc/globstr.hrc:474
msgctxt "STR_DPFIELD_GROUP_BY_SECONDS"
msgid "Seconds"
msgstr "Segundos"
-#: sc/inc/globstr.hrc:474
+#: sc/inc/globstr.hrc:475
msgctxt "STR_DPFIELD_GROUP_BY_MINUTES"
msgid "Minutes"
msgstr "Menutos"
-#: sc/inc/globstr.hrc:475
+#: sc/inc/globstr.hrc:476
msgctxt "STR_DPFIELD_GROUP_BY_HOURS"
msgid "Hours"
msgstr "Horas"
-#: sc/inc/globstr.hrc:476
+#: sc/inc/globstr.hrc:477
msgctxt "STR_DPFIELD_GROUP_BY_DAYS"
msgid "Days"
msgstr "Días"
-#: sc/inc/globstr.hrc:477
+#: sc/inc/globstr.hrc:478
msgctxt "STR_DPFIELD_GROUP_BY_MONTHS"
msgid "Months"
msgstr ""
-#: sc/inc/globstr.hrc:478
+#: sc/inc/globstr.hrc:479
msgctxt "STR_DPFIELD_GROUP_BY_QUARTERS"
msgid "Quarters"
msgstr ""
-#: sc/inc/globstr.hrc:479
+#: sc/inc/globstr.hrc:480
msgctxt "STR_DPFIELD_GROUP_BY_YEARS"
msgid "Years"
msgstr ""
-#: sc/inc/globstr.hrc:480
+#: sc/inc/globstr.hrc:481
#, fuzzy
msgctxt "STR_INVALIDVAL"
msgid "Invalid target value."
msgstr "Valor de destín no valido!"
-#: sc/inc/globstr.hrc:481
+#: sc/inc/globstr.hrc:482
#, fuzzy
msgctxt "STR_INVALIDVAR"
msgid "Undefined name for variable cell."
msgstr "Nombre no definiu como celda de variable!"
-#: sc/inc/globstr.hrc:482
+#: sc/inc/globstr.hrc:483
#, fuzzy
msgctxt "STR_INVALIDFORM"
msgid "Undefined name as formula cell."
msgstr "Nombre no definiu como celda de formula!"
-#: sc/inc/globstr.hrc:483
+#: sc/inc/globstr.hrc:484
msgctxt "STR_NOFORMULA"
msgid "Formula cell must contain a formula."
msgstr ""
-#: sc/inc/globstr.hrc:484
+#: sc/inc/globstr.hrc:485
#, fuzzy
msgctxt "STR_INVALIDINPUT"
msgid "Invalid input."
msgstr "A dentrada no ye valida."
-#: sc/inc/globstr.hrc:485
+#: sc/inc/globstr.hrc:486
#, fuzzy
msgctxt "STR_INVALIDCONDITION"
msgid "Invalid condition."
msgstr "A condición no ye valida."
-#: sc/inc/globstr.hrc:486
+#: sc/inc/globstr.hrc:487
msgctxt "STR_QUERYREMOVE"
msgid ""
"Should the entry\n"
@@ -2738,136 +2743,136 @@ msgid ""
"be deleted?"
msgstr ""
-#: sc/inc/globstr.hrc:487
+#: sc/inc/globstr.hrc:488
msgctxt "STR_COPYLIST"
msgid "Copy List"
msgstr ""
-#: sc/inc/globstr.hrc:488
+#: sc/inc/globstr.hrc:489
msgctxt "STR_COPYFROM"
msgid "List from"
msgstr ""
-#: sc/inc/globstr.hrc:489
+#: sc/inc/globstr.hrc:490
msgctxt "STR_COPYERR"
msgid "Cells without text have been ignored."
msgstr ""
-#: sc/inc/globstr.hrc:490
+#: sc/inc/globstr.hrc:491
#, c-format
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%s-click to follow hyperlink:"
msgstr ""
-#: sc/inc/globstr.hrc:491
+#: sc/inc/globstr.hrc:492
msgctxt "STR_CLICKHYPERLINK"
msgid "click to open hyperlink:"
msgstr ""
-#: sc/inc/globstr.hrc:492
+#: sc/inc/globstr.hrc:493
msgctxt "STR_PRINT_PREVIEW_NODATA"
msgid "No Data"
msgstr ""
-#: sc/inc/globstr.hrc:493
+#: sc/inc/globstr.hrc:494
msgctxt "STR_PRINT_PREVIEW_EMPTY_RANGE"
msgid "Print Range Empty"
msgstr ""
-#: sc/inc/globstr.hrc:494
+#: sc/inc/globstr.hrc:495
msgctxt "STR_UNDO_CONDFORMAT"
msgid "Conditional Format"
msgstr ""
-#: sc/inc/globstr.hrc:495
+#: sc/inc/globstr.hrc:496
msgctxt "STR_UNDO_CONDFORMAT_LIST"
msgid "Conditional Formats"
msgstr ""
-#: sc/inc/globstr.hrc:496
+#: sc/inc/globstr.hrc:497
msgctxt "STR_UNDO_FORMULA_TO_VALUE"
msgid "Convert Formula To Value"
msgstr ""
-#: sc/inc/globstr.hrc:497
+#: sc/inc/globstr.hrc:498
msgctxt "STR_UNQUOTED_STRING"
msgid "Strings without quotes are interpreted as column/row labels."
msgstr ""
-#: sc/inc/globstr.hrc:498
+#: sc/inc/globstr.hrc:499
msgctxt "STR_ENTER_VALUE"
msgid "Enter a value!"
msgstr ""
-#: sc/inc/globstr.hrc:499
+#: sc/inc/globstr.hrc:500
msgctxt "STR_TABLE_COUNT"
msgid "Sheet %1 of %2"
msgstr ""
-#: sc/inc/globstr.hrc:500
+#: sc/inc/globstr.hrc:501
msgctxt "STR_FUNCTIONS_FOUND"
msgid "%1 and %2 more"
msgstr ""
-#: sc/inc/globstr.hrc:501
+#: sc/inc/globstr.hrc:502
msgctxt "STR_GENERAL"
msgid "General"
msgstr ""
-#: sc/inc/globstr.hrc:502
+#: sc/inc/globstr.hrc:503
msgctxt "STR_NUMBER"
msgid "Number"
msgstr "Numero"
-#: sc/inc/globstr.hrc:503
+#: sc/inc/globstr.hrc:504
msgctxt "STR_PERCENT"
msgid "Percent"
msgstr ""
-#: sc/inc/globstr.hrc:504
+#: sc/inc/globstr.hrc:505
msgctxt "STR_CURRENCY"
msgid "Currency"
msgstr ""
-#: sc/inc/globstr.hrc:505
+#: sc/inc/globstr.hrc:506
msgctxt "STR_DATE"
msgid "Date"
msgstr "Calendata"
-#: sc/inc/globstr.hrc:506
+#: sc/inc/globstr.hrc:507
#, fuzzy
msgctxt "STR_TIME"
msgid "Time"
msgstr "tiempo"
-#: sc/inc/globstr.hrc:507
+#: sc/inc/globstr.hrc:508
msgctxt "STR_SCIENTIFIC"
msgid "Scientific"
msgstr ""
-#: sc/inc/globstr.hrc:508
+#: sc/inc/globstr.hrc:509
#, fuzzy
msgctxt "STR_FRACTION"
msgid "Fraction"
msgstr "núm_función"
-#: sc/inc/globstr.hrc:509
+#: sc/inc/globstr.hrc:510
msgctxt "STR_BOOLEAN_VALUE"
msgid "Boolean Value"
msgstr ""
-#: sc/inc/globstr.hrc:510
+#: sc/inc/globstr.hrc:511
#, fuzzy
msgctxt "STR_TEXT"
msgid "Text"
msgstr "texto"
-#: sc/inc/globstr.hrc:511
+#: sc/inc/globstr.hrc:512
msgctxt "STR_QUERY_PIVOTTABLE_DELTAB"
msgid "The selected sheet(s) contain source data of related pivot tables that will be lost. Are you sure you want to delete the selected sheet(s)?"
msgstr ""
-#: sc/inc/globstr.hrc:512
+#: sc/inc/globstr.hrc:513
msgctxt "STR_ERR_NAME_INVALID_CELL_REF"
msgid "Invalid name. Reference to a cell, or a range of cells not allowed."
msgstr ""
@@ -11838,10 +11843,9 @@ msgid "Mode"
msgstr "Modo"
#: sc/inc/scfuncs.hrc:3010
-#, fuzzy
msgctxt "SC_OPCODE_T_TEST"
-msgid "Mode specifies the number of distribution tails to return. 1= one-tailed, 2 = two-tailed distribution"
-msgstr "especifica o numero de codas de distribución."
+msgid "Mode specifies the number of distribution tails to return. 1 = one-tailed, 2 = two-tailed distribution"
+msgstr ""
#: sc/inc/scfuncs.hrc:3011
#, fuzzy
@@ -11890,10 +11894,9 @@ msgid "Mode"
msgstr "Modo"
#: sc/inc/scfuncs.hrc:3024
-#, fuzzy
msgctxt "SC_OPCODE_T_TEST_MS"
-msgid "Mode specifies the number of distribution tails to return. 1= one-tailed, 2 = two-tailed distribution"
-msgstr "especifica o numero de codas de distribución."
+msgid "Mode specifies the number of distribution tails to return. 1 = one-tailed, 2 = two-tailed distribution"
+msgstr ""
#: sc/inc/scfuncs.hrc:3025
msgctxt "SC_OPCODE_T_TEST_MS"
@@ -20009,22 +20012,22 @@ msgctxt "mergecellsdialog|MergeCellsDialog"
msgid "Merge Cells"
msgstr ""
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:81
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:84
msgctxt "mergecellsdialog|label"
msgid "Some cells are not empty."
msgstr ""
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:96
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:99
msgctxt "mergecellsdialog|move-cells-radio"
msgid "Move the contents of the hidden cells into the first cell"
msgstr ""
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:112
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:115
msgctxt "mergecellsdialog|empty-cells-radio"
msgid "Empty the contents of the hidden cells"
msgstr ""
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:128
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:131
msgctxt "mergecellsdialog|keep-content-radio"
msgid "Keep the contents of the hidden cells"
msgstr ""
diff --git a/source/an/sd/messages.po b/source/an/sd/messages.po
index 6e9399f2b92..c750716c056 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+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"
@@ -13,173 +13,173 @@ msgstr ""
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-#: sd/inc/DocumentRenderer.hrc:29
+#: sd/inc/DocumentRenderer.hrc:27
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Slides"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:30
+#: sd/inc/DocumentRenderer.hrc:28
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Handouts"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:31
+#: sd/inc/DocumentRenderer.hrc:29
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Notes"
msgstr "Notas"
-#: sd/inc/DocumentRenderer.hrc:32
+#: sd/inc/DocumentRenderer.hrc:30
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Outline"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:37
+#: sd/inc/DocumentRenderer.hrc:35
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "According to layout"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:38
+#: sd/inc/DocumentRenderer.hrc:36
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "1"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:39
+#: sd/inc/DocumentRenderer.hrc:37
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "2"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:40
+#: sd/inc/DocumentRenderer.hrc:38
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "3"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:41
+#: sd/inc/DocumentRenderer.hrc:39
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "4"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:42
+#: sd/inc/DocumentRenderer.hrc:40
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "6"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:43
+#: sd/inc/DocumentRenderer.hrc:41
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "9"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:48
+#: sd/inc/DocumentRenderer.hrc:46
msgctxt "STR_IMPRESS_PRINT_UI_ORDER_CHOICES"
msgid "Left to right, then down"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:49
+#: sd/inc/DocumentRenderer.hrc:47
msgctxt "STR_IMPRESS_PRINT_UI_ORDER_CHOICES"
msgid "Top to bottom, then right"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:54
+#: sd/inc/DocumentRenderer.hrc:52
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Original colors"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:55
+#: sd/inc/DocumentRenderer.hrc:53
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Grayscale"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:56
+#: sd/inc/DocumentRenderer.hrc:54
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Black & white"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:61
+#: sd/inc/DocumentRenderer.hrc:59
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Original size"
msgstr "Mida ~orichinal"
-#: sd/inc/DocumentRenderer.hrc:62
+#: sd/inc/DocumentRenderer.hrc:60
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Fit to printable page"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:63
+#: sd/inc/DocumentRenderer.hrc:61
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Distribute on multiple sheets of paper"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:64
+#: sd/inc/DocumentRenderer.hrc:62
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Tile sheet of paper with repeated slides"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:69
+#: sd/inc/DocumentRenderer.hrc:67
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Original size"
msgstr "Mida ~orichinal"
-#: sd/inc/DocumentRenderer.hrc:70
+#: sd/inc/DocumentRenderer.hrc:68
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Fit to printable page"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:71
+#: sd/inc/DocumentRenderer.hrc:69
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Distribute on multiple sheets of paper"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:72
+#: sd/inc/DocumentRenderer.hrc:70
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Tile sheet of paper with repeated pages"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:77
+#: sd/inc/DocumentRenderer.hrc:75
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "All pages"
msgstr "Todas as pachinas"
-#: sd/inc/DocumentRenderer.hrc:78
+#: sd/inc/DocumentRenderer.hrc:76
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "Front sides / right pages"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:79
+#: sd/inc/DocumentRenderer.hrc:77
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "Back sides / left pages"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:84
+#: sd/inc/DocumentRenderer.hrc:82
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~All slides"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:85
+#: sd/inc/DocumentRenderer.hrc:83
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~Slides"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:86
+#: sd/inc/DocumentRenderer.hrc:84
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Se~lection"
msgstr "Selección"
-#: sd/inc/DocumentRenderer.hrc:91
+#: sd/inc/DocumentRenderer.hrc:89
#, fuzzy
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~All pages"
msgstr "Todas as pachinas"
-#: sd/inc/DocumentRenderer.hrc:92
+#: sd/inc/DocumentRenderer.hrc:90
#, fuzzy
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Pa~ges"
msgstr "Pachinas"
-#: sd/inc/DocumentRenderer.hrc:93
+#: sd/inc/DocumentRenderer.hrc:91
#, fuzzy
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Se~lection"
diff --git a/source/an/svx/messages.po b/source/an/svx/messages.po
index 1705b64347f..d6207d43b18 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: 2018-05-16 16:53+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+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"
@@ -5265,7 +5265,7 @@ msgstr ""
#: svx/uiconfig/ui/safemodedialog.ui:432
msgctxt "safemodedialog|btn_create_zip"
-msgid "Create Zip Archive from User Profile"
+msgid "Archive User Profile"
msgstr ""
#: svx/uiconfig/ui/safemodedialog.ui:445
@@ -8894,8 +8894,8 @@ msgid "Red"
msgstr "Royo"
#: include/svx/strings.hrc:565
-msgctxt "RID_SVXSTR_COLOR_VIOLET"
-msgid "Violet"
+msgctxt "RID_SVXSTR_COLOR_MAGENTA"
+msgid "Magenta"
msgstr ""
#: include/svx/strings.hrc:566
@@ -8961,8 +8961,8 @@ msgid "Light Red"
msgstr ""
#: include/svx/strings.hrc:579
-msgctxt "RID_SVXSTR_COLOR_LIGHTVIOLET"
-msgid "Light Violet"
+msgctxt "RID_SVXSTR_COLOR_LIGHTMAGENTA"
+msgid "Light Magenta"
msgstr ""
#: include/svx/strings.hrc:580
@@ -9029,8 +9029,8 @@ msgid "Dark Red"
msgstr "Granate"
#: include/svx/strings.hrc:593
-msgctxt "RID_SVXSTR_COLOR_DARKVIOLET1"
-msgid "Dark Violet"
+msgctxt "RID_SVXSTR_COLOR_DARKMAGENTA"
+msgid "Dark Magenta"
msgstr ""
#: include/svx/strings.hrc:594
@@ -9065,55 +9065,55 @@ msgstr ""
#. Elements of the Tonal color palette
#: include/svx/strings.hrc:601
+msgctxt "RID_SVXSTR_COLOR_VIOLET"
+msgid "Violet"
+msgstr ""
+
+#: include/svx/strings.hrc:602
msgctxt "RID_SVXSTR_COLOR_VIOLET_OUG"
msgid "Violet (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:602
+#: include/svx/strings.hrc:603
msgctxt "RID_SVXSTR_COLOR_BLUE_OUG"
msgid "Blue (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:603
+#: include/svx/strings.hrc:604
msgctxt "RID_SVXSTR_COLOR_AZURE_OUG"
msgid "Azure (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:604
+#: include/svx/strings.hrc:605
msgctxt "RID_SVXSTR_COLOR_SPRINGGREEN_OUG"
msgid "Spring Green (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:605
+#: include/svx/strings.hrc:606
msgctxt "RID_SVXSTR_COLOR_GREEN_OUG"
msgid "Green (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:606
+#: include/svx/strings.hrc:607
msgctxt "RID_SVXSTR_COLOR_CHARTREUSEGREEN_OUG"
msgid "Chartreuse Green (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:607
+#: include/svx/strings.hrc:608
msgctxt "RID_SVXSTR_COLOR_ORANGE_OUG"
msgid "Orange (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:608
+#: include/svx/strings.hrc:609
msgctxt "RID_SVXSTR_COLOR_RED_OUG"
msgid "Red (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:609
+#: include/svx/strings.hrc:610
msgctxt "RID_SVXSTR_COLOR_ROSE_OUG"
msgid "Rose (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:610
-msgctxt "RID_SVXSTR_COLOR_MAGENTA"
-msgid "Magenta"
-msgstr ""
-
#: include/svx/strings.hrc:611
msgctxt "RID_SVXSTR_COLOR_AZURE"
msgid "Azure"
@@ -12229,12 +12229,12 @@ msgstr ""
#: include/svx/strings.hrc:1273
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_6"
-msgid "Check mark bullets"
+msgid "Cross mark bullets"
msgstr ""
#: include/svx/strings.hrc:1274
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_7"
-msgid "Tick mark bullets"
+msgid "Check mark bullets"
msgstr ""
#: include/svx/strings.hrc:1275
diff --git a/source/an/sw/messages.po b/source/an/sw/messages.po
index 31d4da3e072..95689c1f0f9 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: 2018-05-22 13:17+0200\n"
+"POT-Creation-Date: 2018-06-12 14:41+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"
@@ -1210,12 +1210,12 @@ msgstr ""
#: sw/inc/strings.hrc:172
msgctxt "STR_POOLCOLL_TOX_ILLUSH"
-msgid "Illustration Index Heading"
+msgid "Figure Index Heading"
msgstr ""
#: sw/inc/strings.hrc:173
msgctxt "STR_POOLCOLL_TOX_ILLUS1"
-msgid "Illustration Index 1"
+msgid "Figure Index 1"
msgstr ""
#: sw/inc/strings.hrc:174
@@ -3682,7 +3682,7 @@ msgstr ""
#: sw/inc/strings.hrc:672
msgctxt "STR_TOX_ILL"
-msgid "Illustration Index"
+msgid "Table of Figures"
msgstr ""
#: sw/inc/strings.hrc:673
@@ -9484,72 +9484,72 @@ msgctxt "footnotepage|label5"
msgid "Continuation Notice"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:49
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:55
msgctxt "footnotesendnotestabpage|ftnntnum"
msgid "_Restart numbering"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:91
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:93
msgctxt "footnotesendnotestabpage|ftnoffset_label"
msgid "_Start at:"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:112
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:111
msgctxt "footnotesendnotestabpage|ftnntnumfmt"
msgid "Custom _format"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:155
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:150
msgctxt "footnotesendnotestabpage|ftnsuffix_label"
msgid "Aft_er:"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:199
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:188
msgctxt "footnotesendnotestabpage|ftnprefix_label"
msgid "Be_fore:"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:228
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:212
msgctxt "footnotesendnotestabpage|ftnntattextend"
msgid "Collec_t at end of text"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:252
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:234
msgctxt "footnotesendnotestabpage|label1"
msgid "Footnotes"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:289
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:271
msgctxt "footnotesendnotestabpage|endntattextend"
msgid "C_ollect at end of section"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:315
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:295
msgctxt "footnotesendnotestabpage|endntnum"
msgid "_Restart numbering"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:357
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:333
msgctxt "footnotesendnotestabpage|endoffset_label"
msgid "_Start at:"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:378
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:351
msgctxt "footnotesendnotestabpage|endntnumfmt"
msgid "_Custom format"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:421
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:390
msgctxt "footnotesendnotestabpage|endsuffix_label"
msgid "Aft_er:"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:465
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:428
msgctxt "footnotesendnotestabpage|endprefix_label"
msgid "Be_fore:"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:500
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:458
msgctxt "footnotesendnotestabpage|label2"
msgid "Endnotes"
msgstr ""
@@ -9581,29 +9581,29 @@ msgctxt "formatsectiondialog|notes"
msgid "Footnotes/Endnotes"
msgstr ""
-#: sw/uiconfig/swriter/ui/formattablepage.ui:63
+#: sw/uiconfig/swriter/ui/formattablepage.ui:77
#, fuzzy
msgctxt "formattablepage|nameft"
msgid "_Name"
msgstr "Nombre"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:79
+#: sw/uiconfig/swriter/ui/formattablepage.ui:91
msgctxt "formattablepage|widthft"
msgid "W_idth"
msgstr ""
-#: sw/uiconfig/swriter/ui/formattablepage.ui:110
+#: sw/uiconfig/swriter/ui/formattablepage.ui:120
msgctxt "formattablepage|relwidth"
msgid "Relati_ve"
msgstr ""
-#: sw/uiconfig/swriter/ui/formattablepage.ui:155
+#: sw/uiconfig/swriter/ui/formattablepage.ui:160
#, fuzzy
msgctxt "formattablepage|label45"
msgid "Properties"
msgstr "Propiedatz..."
-#: sw/uiconfig/swriter/ui/formattablepage.ui:194
+#: sw/uiconfig/swriter/ui/formattablepage.ui:195
#, fuzzy
msgctxt "formattablepage|leftft"
msgid "Lef_t"
@@ -9615,67 +9615,67 @@ msgctxt "formattablepage|rightft"
msgid "Ri_ght"
msgstr "Enta la dreita"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:228
+#: sw/uiconfig/swriter/ui/formattablepage.ui:226
msgctxt "formattablepage|aboveft"
msgid "_Above"
msgstr ""
-#: sw/uiconfig/swriter/ui/formattablepage.ui:245
+#: sw/uiconfig/swriter/ui/formattablepage.ui:241
msgctxt "formattablepage|belowft"
msgid "_Below"
msgstr ""
-#: sw/uiconfig/swriter/ui/formattablepage.ui:320
+#: sw/uiconfig/swriter/ui/formattablepage.ui:311
msgctxt "formattablepage|label46"
msgid "Spacing"
msgstr ""
-#: sw/uiconfig/swriter/ui/formattablepage.ui:362
+#: sw/uiconfig/swriter/ui/formattablepage.ui:349
#, fuzzy
msgctxt "formattablepage|full"
msgid "A_utomatic"
msgstr "Automatica"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:380
+#: sw/uiconfig/swriter/ui/formattablepage.ui:365
#, fuzzy
msgctxt "formattablepage|left"
msgid "_Left"
msgstr "Enta la cucha"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:398
+#: sw/uiconfig/swriter/ui/formattablepage.ui:381
msgctxt "formattablepage|fromleft"
msgid "_From left"
msgstr ""
-#: sw/uiconfig/swriter/ui/formattablepage.ui:416
+#: sw/uiconfig/swriter/ui/formattablepage.ui:397
#, fuzzy
msgctxt "formattablepage|right"
msgid "R_ight"
msgstr "Enta la dreita"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:435
+#: sw/uiconfig/swriter/ui/formattablepage.ui:413
#, fuzzy
msgctxt "formattablepage|center"
msgid "_Center"
msgstr "~Centrau"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:453
+#: sw/uiconfig/swriter/ui/formattablepage.ui:429
#, fuzzy
msgctxt "formattablepage|free"
msgid "_Manual"
msgstr "~Manual"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:478
+#: sw/uiconfig/swriter/ui/formattablepage.ui:452
msgctxt "formattablepage|label43"
msgid "Alignment"
msgstr "Aliniación"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:522
+#: sw/uiconfig/swriter/ui/formattablepage.ui:491
msgctxt "formattablepage|label53"
msgid "Text _direction"
msgstr ""
-#: sw/uiconfig/swriter/ui/formattablepage.ui:553
+#: sw/uiconfig/swriter/ui/formattablepage.ui:519
#, fuzzy
msgctxt "formattablepage|label44"
msgid "Properties "
@@ -10047,22 +10047,27 @@ msgctxt "headerfootermenu|insert_pagenumber"
msgid "Insert Page Number"
msgstr ""
-#: sw/uiconfig/swriter/ui/indentpage.ui:52
+#: sw/uiconfig/swriter/ui/headerfootermenu.ui:42
+msgctxt "headerfootermenu|insert_pagecount"
+msgid "Insert Page Count"
+msgstr ""
+
+#: sw/uiconfig/swriter/ui/indentpage.ui:57
msgctxt "indentpage|label1"
msgid "_Before section"
msgstr ""
-#: sw/uiconfig/swriter/ui/indentpage.ui:67
+#: sw/uiconfig/swriter/ui/indentpage.ui:71
msgctxt "indentpage|label3"
msgid "_After section"
msgstr ""
-#: sw/uiconfig/swriter/ui/indentpage.ui:113
+#: sw/uiconfig/swriter/ui/indentpage.ui:115
msgctxt "indentpage|label2"
msgid "Indent"
msgstr ""
-#: sw/uiconfig/swriter/ui/indentpage.ui:142
+#: sw/uiconfig/swriter/ui/indentpage.ui:155
msgctxt "indentpage|preview-atkobject"
msgid "Example"
msgstr "Eixemplo"
@@ -13682,7 +13687,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:68
msgctxt "optcompatpage|format"
-msgid "MS Word-compatible trailing blanks"
+msgid "Word-compatible trailing blanks"
msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:69
@@ -13692,7 +13697,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:70
msgctxt "optcompatpage|format"
-msgid "A database field (e.g., MailMerge) with empty value hides its paragraph"
+msgid "Hide paragraphs of database fields (e.g., mail merge) with an empty value"
msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:71
@@ -16483,127 +16488,127 @@ msgctxt "tableproperties|background"
msgid "Background"
msgstr "Fundo"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:25
-#, fuzzy
-msgctxt "tabletextflowpage|liststore1"
-msgid "Horizontal"
-msgstr "~Horizontal"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:29
-msgctxt "tabletextflowpage|liststore1"
-msgid "Vertical"
-msgstr ""
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:33
-msgctxt "tabletextflowpage|liststore1"
-msgid "Use superordinate object settings"
-msgstr ""
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:47
-msgctxt "tabletextflowpage|liststore2"
-msgid "Top"
-msgstr "Cobalto"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:51
-#, fuzzy
-msgctxt "tabletextflowpage|liststore2"
-msgid "Centered"
-msgstr "~Centrau"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:55
-msgctxt "tabletextflowpage|liststore2"
-msgid "Bottom"
-msgstr "Cobaixo"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:97
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:53
msgctxt "tabletextflowpage|break"
msgid "_Break"
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:112
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:68
#, fuzzy
msgctxt "tabletextflowpage|page"
msgid "_Page"
msgstr "Pachina"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:132
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:87
#, fuzzy
msgctxt "tabletextflowpage|column"
msgid "Col_umn"
msgstr "Columna"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:151
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:106
msgctxt "tabletextflowpage|before"
msgid "Be_fore"
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:171
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:125
msgctxt "tabletextflowpage|after"
msgid "_After"
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:203
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:158
msgctxt "tabletextflowpage|pagestyle"
msgid "With Page St_yle"
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:224
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:177
msgctxt "tabletextflowpage|pagenoft"
msgid "Page _number"
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:257
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:213
msgctxt "tabletextflowpage|pagestylelb-atkobject"
msgid "With Page Style"
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:274
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:230
msgctxt "tabletextflowpage|split"
msgid "Allow _table to split across pages and columns"
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:289
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:245
msgctxt "tabletextflowpage|splitrow"
msgid "Allow row to break a_cross pages and columns"
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:306
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:262
msgctxt "tabletextflowpage|keep"
msgid "_Keep with next paragraph"
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:328
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:284
msgctxt "tabletextflowpage|label40"
msgid "Text _orientation"
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:361
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:298
+#, fuzzy
+msgctxt "tabletextflowpage|liststore1"
+msgid "Horizontal"
+msgstr "~Horizontal"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:299
+msgctxt "tabletextflowpage|liststore1"
+msgid "Vertical"
+msgstr ""
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:300
+msgctxt "tabletextflowpage|liststore1"
+msgid "Use superordinate object settings"
+msgstr ""
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:321
msgctxt "tabletextflowpage|headline"
msgid "R_epeat heading"
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:383
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:343
msgctxt "tabletextflowpage|label38"
msgid "The first "
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:396
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:356
#, fuzzy
msgctxt "tabletextflowpage|label39"
msgid "rows"
msgstr "Ringlera"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:434
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:395
msgctxt "tabletextflowpage|label35"
msgid "Text Flow"
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:467
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:428
msgctxt "tabletextflowpage|label41"
msgid "_Vertical alignment"
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:495
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:442
+msgctxt "tabletextflowpage|liststore2"
+msgid "Top"
+msgstr "Cobalto"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:443
+#, fuzzy
+msgctxt "tabletextflowpage|liststore2"
+msgid "Centered"
+msgstr "~Centrau"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:444
+msgctxt "tabletextflowpage|liststore2"
+msgid "Bottom"
+msgstr "Cobaixo"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:460
msgctxt "tabletextflowpage|label36"
msgid "Alignment"
msgstr "Aliniación"
@@ -17412,7 +17417,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/tocindexpage.ui:58
msgctxt "tocindexpage|liststore1"
-msgid "Illustration Index"
+msgid "Table of Figures"
msgstr ""
#: sw/uiconfig/swriter/ui/tocindexpage.ui:62
diff --git a/source/an/writerperfect/messages.po b/source/an/writerperfect/messages.po
index 1e82e3e124a..7772a91312f 100644
--- a/source/an/writerperfect/messages.po
+++ b/source/an/writerperfect/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-16 16:54+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+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"
@@ -63,98 +63,98 @@ msgctxt "exportepub|generalft"
msgid "General"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:122
+#: writerperfect/uiconfig/ui/exportepub.ui:121
msgctxt "exportepub|versionft"
msgid "Version:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:139
+#: writerperfect/uiconfig/ui/exportepub.ui:138
msgctxt "exportepub|epub3"
msgid "EPUB 3.0"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:140
+#: writerperfect/uiconfig/ui/exportepub.ui:139
msgctxt "exportepub|epub2"
msgid "EPUB 2.0"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:175
+#: writerperfect/uiconfig/ui/exportepub.ui:174
msgctxt "exportepub|splitft"
msgid "Split method:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:192
+#: writerperfect/uiconfig/ui/exportepub.ui:191
#, fuzzy
msgctxt "exportepub|splitpage"
msgid "Page break"
msgstr "Brinco de ~pachina"
-#: writerperfect/uiconfig/ui/exportepub.ui:193
+#: writerperfect/uiconfig/ui/exportepub.ui:192
msgctxt "exportepub|splitheading"
msgid "Heading"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:228
+#: writerperfect/uiconfig/ui/exportepub.ui:227
msgctxt "exportepub|layoutft"
msgid "Layout method:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:245
+#: writerperfect/uiconfig/ui/exportepub.ui:244
msgctxt "exportepub|layoutreflowable"
msgid "Reflowable"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:246
+#: writerperfect/uiconfig/ui/exportepub.ui:245
msgctxt "exportepub|layoutfixed"
msgid "Fixed"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:281
+#: writerperfect/uiconfig/ui/exportepub.ui:280
msgctxt "exportepub|coverimageft"
msgid "Custom cover image:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:311
+#: writerperfect/uiconfig/ui/exportepub.ui:310
msgctxt "exportepub|coverbutton"
msgid "Browse..."
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:355
+#: writerperfect/uiconfig/ui/exportepub.ui:354
msgctxt "exportepub|mediadirft"
msgid "Custom media directory:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:385
+#: writerperfect/uiconfig/ui/exportepub.ui:384
msgctxt "exportepub|mediabutton"
msgid "Browse..."
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:429
+#: writerperfect/uiconfig/ui/exportepub.ui:428
msgctxt "exportepub|metadataft"
msgid "Metadata"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:470
+#: writerperfect/uiconfig/ui/exportepub.ui:468
msgctxt "exportepub|identifierft"
msgid "Identifier:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:485
+#: writerperfect/uiconfig/ui/exportepub.ui:483
msgctxt "exportepub|titleft"
msgid "Title:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:511
+#: writerperfect/uiconfig/ui/exportepub.ui:509
msgctxt "exportepub|authorft"
msgid "Author:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:537
+#: writerperfect/uiconfig/ui/exportepub.ui:535
msgctxt "exportepub|languageft"
msgid "Language:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:563
+#: writerperfect/uiconfig/ui/exportepub.ui:561
msgctxt "exportepub|dateft"
msgid "Date:"
msgstr ""
diff --git a/source/ar/cui/messages.po b/source/ar/cui/messages.po
index 0d559b6e8ce..c66bc7d364f 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2018-04-23 03:54+0000\n"
"Last-Translator: صفا الفليج <safa1996alfulaij@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -9918,97 +9918,97 @@ msgctxt "positionsizedialog|PositionAndSizeDialog"
msgid "Position and Size"
msgstr "الموقع والحجم"
-#: cui/uiconfig/ui/positionsizedialog.ui:107
+#: cui/uiconfig/ui/positionsizedialog.ui:136
msgctxt "positionsizedialog|RID_SVXPAGE_POSITION_SIZE"
msgid "Position and Size"
msgstr "الموقع والحجم"
-#: cui/uiconfig/ui/positionsizedialog.ui:129
+#: cui/uiconfig/ui/positionsizedialog.ui:182
msgctxt "positionsizedialog|RID_SVXPAGE_SWPOSSIZE"
msgid "Position and Size"
msgstr "الموقع والحجم"
-#: cui/uiconfig/ui/positionsizedialog.ui:152
+#: cui/uiconfig/ui/positionsizedialog.ui:229
msgctxt "positionsizedialog|RID_SVXPAGE_ANGLE"
msgid "Rotation"
msgstr "الدوران"
-#: cui/uiconfig/ui/positionsizedialog.ui:175
+#: cui/uiconfig/ui/positionsizedialog.ui:276
msgctxt "positionsizedialog|RID_SVXPAGE_SLANT"
msgid "Slant & Corner Radius"
msgstr "ميل ومركز نصف القطر"
-#: cui/uiconfig/ui/possizetabpage.ui:40
+#: cui/uiconfig/ui/possizetabpage.ui:61
msgctxt "possizetabpage|FT_POS_X"
msgid "Position _X:"
msgstr "موقع _س:"
-#: cui/uiconfig/ui/possizetabpage.ui:56
+#: cui/uiconfig/ui/possizetabpage.ui:75
msgctxt "possizetabpage|FT_POS_Y"
msgid "Position _Y:"
msgstr "موقع _ص:"
-#: cui/uiconfig/ui/possizetabpage.ui:110
+#: cui/uiconfig/ui/possizetabpage.ui:128
msgctxt "possizetabpage|FT_POSREFERENCE"
msgid "_Base point:"
msgstr "نقطة الأ_ساس:"
-#: cui/uiconfig/ui/possizetabpage.ui:148
+#: cui/uiconfig/ui/possizetabpage.ui:182
msgctxt "possizetabpage|label1"
msgid "Position"
msgstr "الموضع"
-#: cui/uiconfig/ui/possizetabpage.ui:190
+#: cui/uiconfig/ui/possizetabpage.ui:224
msgctxt "possizetabpage|FT_WIDTH"
msgid "Wi_dth:"
msgstr "العر_ض:"
-#: cui/uiconfig/ui/possizetabpage.ui:206
+#: cui/uiconfig/ui/possizetabpage.ui:238
msgctxt "possizetabpage|FT_HEIGHT"
msgid "H_eight:"
msgstr "الارت_فاع:"
-#: cui/uiconfig/ui/possizetabpage.ui:247
+#: cui/uiconfig/ui/possizetabpage.ui:276
msgctxt "possizetabpage|CBX_SCALE"
msgid "_Keep ratio"
msgstr "إب_قاء التناسب"
-#: cui/uiconfig/ui/possizetabpage.ui:279
+#: cui/uiconfig/ui/possizetabpage.ui:307
msgctxt "possizetabpage|FT_SIZEREFERENCE"
msgid "Base _point:"
msgstr "نق_طة الأساس:"
-#: cui/uiconfig/ui/possizetabpage.ui:317
+#: cui/uiconfig/ui/possizetabpage.ui:361
msgctxt "possizetabpage|label2"
msgid "Size"
msgstr "الحجم"
-#: cui/uiconfig/ui/possizetabpage.ui:356
+#: cui/uiconfig/ui/possizetabpage.ui:401
msgctxt "possizetabpage|TSB_POSPROTECT"
msgid "Positio_n"
msgstr "المو_قع"
-#: cui/uiconfig/ui/possizetabpage.ui:373
+#: cui/uiconfig/ui/possizetabpage.ui:418
msgctxt "possizetabpage|TSB_SIZEPROTECT"
msgid "_Size"
msgstr "ال_حجم"
-#: cui/uiconfig/ui/possizetabpage.ui:397
+#: cui/uiconfig/ui/possizetabpage.ui:441
msgctxt "possizetabpage|label3"
msgid "Protect"
msgstr "حماية"
-#: cui/uiconfig/ui/possizetabpage.ui:430
+#: cui/uiconfig/ui/possizetabpage.ui:475
msgctxt "possizetabpage|TSB_AUTOGROW_WIDTH"
msgid "_Fit width to text"
msgstr "_ملاءمة العرض مع النص"
-#: cui/uiconfig/ui/possizetabpage.ui:447
+#: cui/uiconfig/ui/possizetabpage.ui:492
msgctxt "possizetabpage|TSB_AUTOGROW_HEIGHT"
msgid "Fit _height to text"
msgstr "_ملاءمة الارتفاع مع النص"
-#: cui/uiconfig/ui/possizetabpage.ui:471
+#: cui/uiconfig/ui/possizetabpage.ui:515
msgctxt "possizetabpage|label4"
msgid "Adapt"
msgstr ""
@@ -10213,48 +10213,48 @@ msgctxt "recordnumberdialog|label2"
msgid "go to record"
msgstr ""
-#: cui/uiconfig/ui/rotationtabpage.ui:52
+#: cui/uiconfig/ui/rotationtabpage.ui:56
msgctxt "rotationtabpage|FT_POS_X"
msgid "Position _X:"
msgstr "موقع _س:"
-#: cui/uiconfig/ui/rotationtabpage.ui:66
+#: cui/uiconfig/ui/rotationtabpage.ui:70
msgctxt "rotationtabpage|FT_POS_Y"
msgid "Position _Y:"
msgstr "موقع _ص:"
-#: cui/uiconfig/ui/rotationtabpage.ui:116
+#: cui/uiconfig/ui/rotationtabpage.ui:123
msgctxt "rotationtabpage|FT_POSPRESETS"
msgid "_Default settings:"
msgstr "الإعدادات المبد_ئية:"
-#: cui/uiconfig/ui/rotationtabpage.ui:130
+#: cui/uiconfig/ui/rotationtabpage.ui:151
msgctxt "rotationtabpage|CTL_RECT|tooltip_text"
msgid "Rotation point"
msgstr "نقطة الدوران"
-#: cui/uiconfig/ui/rotationtabpage.ui:155
+#: cui/uiconfig/ui/rotationtabpage.ui:178
#, fuzzy
msgctxt "rotationtabpage|label1"
msgid "Pivot Point"
msgstr "النقطة المحورية"
-#: cui/uiconfig/ui/rotationtabpage.ui:197
+#: cui/uiconfig/ui/rotationtabpage.ui:220
msgctxt "rotationtabpage|FT_ANGLE"
msgid "_Angle:"
msgstr "ال_زاوية:"
-#: cui/uiconfig/ui/rotationtabpage.ui:238
+#: cui/uiconfig/ui/rotationtabpage.ui:263
msgctxt "rotationtabpage|FT_ANGLEPRESETS"
msgid "Default _settings:"
msgstr "الإ_عدادات المبدئية:"
-#: cui/uiconfig/ui/rotationtabpage.ui:252
+#: cui/uiconfig/ui/rotationtabpage.ui:287
msgctxt "rotationtabpage|CTL_ANGLE|tooltip_text"
msgid "Rotation Angle"
msgstr "زاوية الدوران"
-#: cui/uiconfig/ui/rotationtabpage.ui:277
+#: cui/uiconfig/ui/rotationtabpage.ui:314
msgctxt "rotationtabpage|label2"
msgid "Rotation Angle"
msgstr "زاوية الدوران"
@@ -10638,53 +10638,53 @@ msgctxt "similaritysearchdialog|relaxbox"
msgid "_Combine"
msgstr "_دمج"
-#: cui/uiconfig/ui/slantcornertabpage.ui:50
+#: cui/uiconfig/ui/slantcornertabpage.ui:70
msgctxt "slantcornertabpage|label5"
msgid "_X:"
msgstr "_س:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:88
+#: cui/uiconfig/ui/slantcornertabpage.ui:110
msgctxt "slantcornertabpage|label6"
msgid "_Y:"
msgstr "_ص:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:125
+#: cui/uiconfig/ui/slantcornertabpage.ui:149
msgctxt "slantcornertabpage|label3"
msgid "Control Point 1"
msgstr "نقطة التحكم ١"
-#: cui/uiconfig/ui/slantcornertabpage.ui:159
+#: cui/uiconfig/ui/slantcornertabpage.ui:183
msgctxt "slantcornertabpage|FT_RADIUS"
msgid "_Radius:"
msgstr "_نصف القطر:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:189
+#: cui/uiconfig/ui/slantcornertabpage.ui:214
#, fuzzy
msgctxt "slantcornertabpage|label1"
msgid "Corner Radius"
msgstr "نصف قطر الزاوية"
-#: cui/uiconfig/ui/slantcornertabpage.ui:223
+#: cui/uiconfig/ui/slantcornertabpage.ui:248
msgctxt "slantcornertabpage|FT_ANGLE"
msgid "_Angle:"
msgstr "ال_زاوية:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:253
+#: cui/uiconfig/ui/slantcornertabpage.ui:279
msgctxt "slantcornertabpage|label2"
msgid "Slant"
msgstr "الإمالة"
-#: cui/uiconfig/ui/slantcornertabpage.ui:294
+#: cui/uiconfig/ui/slantcornertabpage.ui:320
msgctxt "slantcornertabpage|label4"
msgid "_X:"
msgstr "_س:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:332
+#: cui/uiconfig/ui/slantcornertabpage.ui:360
msgctxt "slantcornertabpage|label7"
msgid "_Y:"
msgstr "_ص:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:369
+#: cui/uiconfig/ui/slantcornertabpage.ui:399
msgctxt "slantcornertabpage|label8"
msgid "Control Point 2"
msgstr "نقطة التحكم ٢"
@@ -10964,112 +10964,112 @@ msgctxt "storedwebconnectiondialog|change"
msgid "_Change Password..."
msgstr "_غير كلمة السر..."
-#: cui/uiconfig/ui/swpossizepage.ui:74
+#: cui/uiconfig/ui/swpossizepage.ui:85
msgctxt "swpossizepage|widthft"
msgid "_Width:"
msgstr "ال_عرض:"
-#: cui/uiconfig/ui/swpossizepage.ui:111
+#: cui/uiconfig/ui/swpossizepage.ui:123
msgctxt "swpossizepage|heightft"
msgid "H_eight:"
msgstr "الارت_فاع:"
-#: cui/uiconfig/ui/swpossizepage.ui:128
+#: cui/uiconfig/ui/swpossizepage.ui:141
msgctxt "swpossizepage|ratio"
msgid "_Keep ratio"
msgstr "_حافظ على التناسب"
-#: cui/uiconfig/ui/swpossizepage.ui:149
+#: cui/uiconfig/ui/swpossizepage.ui:162
msgctxt "swpossizepage|label2"
msgid "Size"
msgstr "الحجم"
-#: cui/uiconfig/ui/swpossizepage.ui:205
+#: cui/uiconfig/ui/swpossizepage.ui:218
msgctxt "swpossizepage|topage"
msgid "To _page"
msgstr "إلى ال_صفحة"
-#: cui/uiconfig/ui/swpossizepage.ui:222
+#: cui/uiconfig/ui/swpossizepage.ui:234
msgctxt "swpossizepage|topara"
msgid "To paragrap_h"
msgstr "إلى ال_فقرة"
-#: cui/uiconfig/ui/swpossizepage.ui:238
+#: cui/uiconfig/ui/swpossizepage.ui:250
msgctxt "swpossizepage|tochar"
msgid "To cha_racter"
msgstr "إلى الم_حرف"
-#: cui/uiconfig/ui/swpossizepage.ui:254
+#: cui/uiconfig/ui/swpossizepage.ui:266
msgctxt "swpossizepage|aschar"
msgid "_As character"
msgstr "كح_رف"
-#: cui/uiconfig/ui/swpossizepage.ui:270
+#: cui/uiconfig/ui/swpossizepage.ui:282
msgctxt "swpossizepage|toframe"
msgid "To _frame"
msgstr "إلى الإ_طار"
-#: cui/uiconfig/ui/swpossizepage.ui:292
+#: cui/uiconfig/ui/swpossizepage.ui:304
msgctxt "swpossizepage|label1"
msgid "Anchor"
msgstr "المربط"
-#: cui/uiconfig/ui/swpossizepage.ui:333
+#: cui/uiconfig/ui/swpossizepage.ui:344
msgctxt "swpossizepage|horiposft"
msgid "Hori_zontal:"
msgstr "أ_فقي:"
-#: cui/uiconfig/ui/swpossizepage.ui:347
+#: cui/uiconfig/ui/swpossizepage.ui:358
msgctxt "swpossizepage|horibyft"
msgid "b_y:"
msgstr "بمق_دار:"
-#: cui/uiconfig/ui/swpossizepage.ui:361
+#: cui/uiconfig/ui/swpossizepage.ui:372
msgctxt "swpossizepage|vertbyft"
msgid "_by:"
msgstr "_بمقدار:"
-#: cui/uiconfig/ui/swpossizepage.ui:375
+#: cui/uiconfig/ui/swpossizepage.ui:386
msgctxt "swpossizepage|horitoft"
msgid "_to:"
msgstr "إ_لى:"
-#: cui/uiconfig/ui/swpossizepage.ui:421
+#: cui/uiconfig/ui/swpossizepage.ui:433
msgctxt "swpossizepage|vertposft"
msgid "_Vertical:"
msgstr "_رأسي:"
-#: cui/uiconfig/ui/swpossizepage.ui:457
+#: cui/uiconfig/ui/swpossizepage.ui:470
msgctxt "swpossizepage|verttoft"
msgid "t_o:"
msgstr "إل_ى:"
-#: cui/uiconfig/ui/swpossizepage.ui:478
+#: cui/uiconfig/ui/swpossizepage.ui:492
msgctxt "swpossizepage|mirror"
msgid "_Mirror on even pages"
msgstr "اعكس على ال_صفحات الزوجية"
-#: cui/uiconfig/ui/swpossizepage.ui:495
+#: cui/uiconfig/ui/swpossizepage.ui:509
msgctxt "swpossizepage|followtextflow"
msgid "Follow te_xt flow"
msgstr "ا_تبع دفق النّص"
-#: cui/uiconfig/ui/swpossizepage.ui:518
+#: cui/uiconfig/ui/swpossizepage.ui:532
msgctxt "swpossizepage|label11"
msgid "Position"
msgstr "الموضع"
-#: cui/uiconfig/ui/swpossizepage.ui:549
+#: cui/uiconfig/ui/swpossizepage.ui:563
msgctxt "swpossizepage|pos"
msgid "Positio_n"
msgstr "الم_وضع"
-#: cui/uiconfig/ui/swpossizepage.ui:565
+#: cui/uiconfig/ui/swpossizepage.ui:579
msgctxt "swpossizepage|size"
msgid "_Size"
msgstr "ال_حجم"
-#: cui/uiconfig/ui/swpossizepage.ui:587
+#: cui/uiconfig/ui/swpossizepage.ui:601
msgctxt "swpossizepage|label3"
msgid "Protect"
msgstr "احمِ"
@@ -11260,12 +11260,12 @@ msgctxt "textattrtabpage|label2"
msgid "Spacing to Borders"
msgstr "التباعد حتّى الحدود"
-#: cui/uiconfig/ui/textattrtabpage.ui:425
+#: cui/uiconfig/ui/textattrtabpage.ui:423
msgctxt "textattrtabpage|TSB_FULL_WIDTH"
msgid "Full _width"
msgstr "ال_عرض بأكمله"
-#: cui/uiconfig/ui/textattrtabpage.ui:448
+#: cui/uiconfig/ui/textattrtabpage.ui:446
msgctxt "textattrtabpage|label3"
msgid "Text Anchor"
msgstr "مربط النص"
diff --git a/source/ar/filter/source/config/fragments/filters.po b/source/ar/filter/source/config/fragments/filters.po
index 5dcd36b872b..89c2386de56 100644
--- a/source/ar/filter/source/config/fragments/filters.po
+++ b/source/ar/filter/source/config/fragments/filters.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-16 16:54+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2017-01-17 14:34+0000\n"
"Last-Translator: Khaled <khaledhosny@eglug.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -464,8 +464,8 @@ msgctxt ""
"MS Word 2003 XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Word 2003 XML"
-msgstr "ميكروسوفت وورد ٢٠٠٣ بِمخطّط XML"
+msgid "Word 2003 XML"
+msgstr ""
#: MS_Word_2007_XML.xcu
msgctxt ""
@@ -1289,8 +1289,8 @@ msgctxt ""
"Calc MS Excel 2007 VBA XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Excel 2007-2016 XML (macro enabled)"
-msgstr "ميكروسوفت إكسل ٢٠٠٧-٢٠١٦ XML (الماكرو مفعل)"
+msgid "Excel 2007–2019 (macro-enabled)"
+msgstr ""
#: calc_MS_Excel_2007_XML.xcu
msgctxt ""
diff --git a/source/ar/filter/source/config/fragments/types.po b/source/ar/filter/source/config/fragments/types.po
index 8819e1deb02..76965cbb44c 100644
--- a/source/ar/filter/source/config/fragments/types.po
+++ b/source/ar/filter/source/config/fragments/types.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-08 15:11+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2017-01-17 14:33+0000\n"
"Last-Translator: Khaled <khaledhosny@eglug.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -295,8 +295,8 @@ msgctxt ""
"writer_MS_Word_2003_XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Word 2003 XML"
-msgstr "ميكروسوفت وورد ٢٠٠٣ XML"
+msgid "Word 2003 XML"
+msgstr ""
#: writer_MS_Word_2007_XML.xcu
msgctxt ""
diff --git a/source/ar/fpicker/messages.po b/source/ar/fpicker/messages.po
index 03ff70bbe83..37256b57903 100644
--- a/source/ar/fpicker/messages.po
+++ b/source/ar/fpicker/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2017-11-22 16:41+0000\n"
"Last-Translator: صفا الفليج <safa1996alfulaij@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -273,13 +273,13 @@ msgstr "عمِّ بمفتاح GPG"
#: fpicker/uiconfig/ui/foldernamedialog.ui:8
msgctxt "foldernamedialog|FolderNameDialog"
-msgid "Folder Name ?"
-msgstr "اسم المجلّد؟"
+msgid "Folder Name"
+msgstr ""
#: fpicker/uiconfig/ui/foldernamedialog.ui:91
msgctxt "foldernamedialog|label2"
-msgid "Na_me"
-msgstr "الا_سم"
+msgid "Na_me:"
+msgstr ""
#: fpicker/uiconfig/ui/foldernamedialog.ui:122
msgctxt "foldernamedialog|label1"
diff --git a/source/ar/helpcontent2/source/text/shared/00.po b/source/ar/helpcontent2/source/text/shared/00.po
index 4bf945a770c..53b9d9f6286 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2016-11-25 03:23+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -397,7 +397,7 @@ msgctxt ""
"00000001.xhp\n"
"hd_id3149670\n"
"help.text"
-msgid "Back"
+msgid "Reset"
msgstr ""
#: 00000001.xhp
@@ -405,7 +405,7 @@ msgctxt ""
"00000001.xhp\n"
"par_id3145068\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optionsdialog/revert\">Resets modified values back to the $[officename] default values.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optionsdialog/revert\">Resets changes made to the current tab to those applicable when this dialog was opened.</ahelp>"
msgstr ""
#: 00000001.xhp
@@ -552,6 +552,54 @@ msgctxt ""
msgid "<variable id=\"ShiftF1\">Press Shift+F1 and point to a control to learn more about that control.</variable>"
msgstr ""
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"hd_id631527692833772\n"
+"help.text"
+msgid "Options dialog buttons"
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"hd_id831527692839432\n"
+"help.text"
+msgid "OK"
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"par_id471527692844934\n"
+"help.text"
+msgid "Save the changes in the page and close the Options dialog."
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"hd_id261527692850720\n"
+"help.text"
+msgid "Cancel"
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"par_id571527692855533\n"
+"help.text"
+msgid "Close the Options dialog and discard all changes done."
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"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 Options dialog."
+msgstr ""
+
#: 00000002.xhp
msgctxt ""
"00000002.xhp\n"
@@ -11125,7 +11173,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3151293\n"
"help.text"
-msgid "<variable id=\"linienstile\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Line Styles</emph> tab </variable>"
+msgid "<variable id=\"linienstile\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Line Styles</emph> tab</variable>"
msgstr ""
#: 00040502.xhp
@@ -11133,7 +11181,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3149317\n"
"help.text"
-msgid "<variable id=\"linienenden\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Arrow Styles</emph> tab </variable>"
+msgid "<variable id=\"linienenden\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Arrow Styles</emph> tab</variable>"
msgstr ""
#: 00040502.xhp
@@ -11173,7 +11221,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3154948\n"
"help.text"
-msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Area</emph> tab"
+msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Area</emph> tab."
msgstr ""
#: 00040502.xhp
@@ -11181,7 +11229,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3145607\n"
"help.text"
-msgid "Choose <emph>View - Styles</emph> - open context menu and choose <emph>Modify/New - Area</emph> tab (presentation documents)"
+msgid "Choose <emph>View - Styles</emph> - open context menu and choose <emph>Modify/New - Area</emph> tab (presentation documents)."
msgstr ""
#: 00040502.xhp
@@ -11189,7 +11237,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3152922\n"
"help.text"
-msgid "Choose <emph>Format - Title - Area</emph> tab (chart documents)"
+msgid "Choose <emph>Format - Title - Area</emph> tab (chart documents)."
msgstr ""
#: 00040502.xhp
@@ -11197,7 +11245,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3157894\n"
"help.text"
-msgid "Choose <emph>Format - Legend - Area</emph> tab (chart documents)"
+msgid "Choose <emph>Format - Legend - Area</emph> tab (chart documents)."
msgstr ""
#: 00040502.xhp
@@ -11205,7 +11253,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3144444\n"
"help.text"
-msgid "Choose <emph>Format - Chart Wall - Area</emph> tab (chart documents)"
+msgid "Choose <emph>Format - Chart Wall - Area</emph> tab (chart documents)."
msgstr ""
#: 00040502.xhp
@@ -11213,7 +11261,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3156543\n"
"help.text"
-msgid "Choose <emph>Format - Chart Floor - Area</emph> tab (chart documents)"
+msgid "Choose <emph>Format - Chart Floor - Area</emph> tab (chart documents)."
msgstr ""
#: 00040502.xhp
@@ -11221,7 +11269,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3150685\n"
"help.text"
-msgid "Choose <emph>Format - Chart Area - Area</emph> tab (chart documents)"
+msgid "Choose <emph>Format - Chart Area - Area</emph> tab (chart documents)."
msgstr ""
#: 00040502.xhp
@@ -11229,7 +11277,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3149664\n"
"help.text"
-msgid "Choose <emph>Slide - Properties - Background</emph> tab (in $[officename] Impress)"
+msgid "Choose <emph>Slide - Properties - Background</emph> tab (in $[officename] Impress)."
msgstr ""
#: 00040502.xhp
@@ -11237,7 +11285,15 @@ msgctxt ""
"00040502.xhp\n"
"par_id9149694\n"
"help.text"
-msgid "Choose <emph>Page - Properties - Background</emph> tab (in $[officename] Draw)"
+msgid "Choose <emph>Page - Properties - Background</emph> tab (in $[officename] Draw)."
+msgstr ""
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id841527083135387\n"
+"help.text"
+msgid "Choose <emph>Table - Properties - Background</emph> tab."
msgstr ""
#: 00040502.xhp
@@ -11349,7 +11405,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3150011\n"
"help.text"
-msgid "<variable id=\"schatte\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Shadow</emph> tab </variable>"
+msgid "<variable id=\"schatte\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Shadow</emph> tab</variable>"
msgstr ""
#: 00040502.xhp
@@ -11357,7 +11413,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3147441\n"
"help.text"
-msgid "<variable id=\"verlauf\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Gradients</emph> tab </variable>"
+msgid "<variable id=\"verlauf\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Gradients</emph> tab</variable>"
msgstr ""
#: 00040502.xhp
@@ -11365,7 +11421,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3155308\n"
"help.text"
-msgid "<variable id=\"schraffur\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Hatching</emph> tab </variable>"
+msgid "<variable id=\"schraffur\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Hatching</emph> tab</variable>"
msgstr ""
#: 00040502.xhp
@@ -11373,7 +11429,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3145800\n"
"help.text"
-msgid "<variable id=\"bitmap\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Bitmaps</emph> tab </variable>"
+msgid "<variable id=\"bitmap\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Bitmaps</emph> tab</variable>"
msgstr ""
#: 00040502.xhp
@@ -11413,7 +11469,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3156286\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F4 key </caseinline><caseinline select=\"IMPRESS\">F4 key </caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F4 key</caseinline><caseinline select=\"IMPRESS\">F4 key</caseinline></switchinline>"
msgstr ""
#: 00040502.xhp
@@ -11453,7 +11509,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3153099\n"
"help.text"
-msgid "<variable id=\"position2\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Position and Size</emph> tab </variable>"
+msgid "<variable id=\"position2\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Position and Size</emph> tab</variable>"
msgstr ""
#: 00040502.xhp
@@ -11485,7 +11541,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3145666\n"
"help.text"
-msgid "<variable id=\"ecke\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Slant & Corner Radius</emph> tab </variable>"
+msgid "<variable id=\"ecke\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Slant & Corner Radius</emph> tab</variable>"
msgstr ""
#: 00040502.xhp
@@ -11493,7 +11549,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3146081\n"
"help.text"
-msgid "<variable id=\"legende\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Callout</emph> tab (only for textbox callouts, not for custom shapes callouts) </variable>"
+msgid "<variable id=\"legende\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Callout</emph> tab (only for textbox callouts, not for custom shapes callouts)</variable>"
msgstr ""
#: 00040502.xhp
@@ -11517,7 +11573,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3149019\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F8 key </caseinline><caseinline select=\"IMPRESS\">F8 key </caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F8 key</caseinline><caseinline select=\"IMPRESS\">F8 key</caseinline></switchinline>"
msgstr ""
#: 00040502.xhp
@@ -11805,7 +11861,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3153076\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Align Center Horizontally </caseinline><defaultinline>Centered</defaultinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Align Center Horizontally</caseinline><defaultinline>Centered</defaultinline></switchinline>"
msgstr ""
#: 00040502.xhp
@@ -11845,7 +11901,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3150527\n"
"help.text"
-msgid "<variable id=\"font\">Click <emph>Fontwork</emph> icon on <emph>Drawing</emph> bar </variable>"
+msgid "<variable id=\"font\">Click <emph>Fontwork</emph> icon on <emph>Drawing</emph> bar</variable>"
msgstr ""
#: 00040502.xhp
diff --git a/source/ar/helpcontent2/source/text/shared/01.po b/source/ar/helpcontent2/source/text/shared/01.po
index 6de2dd91037..11dcfea96a7 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: 2018-05-23 23:19+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2016-12-22 13:30+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -23587,6 +23587,22 @@ msgstr ""
#: 05210100.xhp
msgctxt ""
"05210100.xhp\n"
+"hd_id471527077476052\n"
+"help.text"
+msgid "Cell, Row or Table background selector"
+msgstr ""
+
+#: 05210100.xhp
+msgctxt ""
+"05210100.xhp\n"
+"par_id661527077493366\n"
+"help.text"
+msgid "Select the table object which background area is to be filled."
+msgstr ""
+
+#: 05210100.xhp
+msgctxt ""
+"05210100.xhp\n"
"hd_id3147373\n"
"help.text"
msgid "None"
@@ -31205,7 +31221,7 @@ msgctxt ""
"06040100.xhp\n"
"hd_id3145072\n"
"help.text"
-msgid "Automatic *bold* and _underline_"
+msgid "Automatic *bold*, /italic/, -strikeout- and _underline_"
msgstr ""
#: 06040100.xhp
@@ -31213,7 +31229,7 @@ msgctxt ""
"06040100.xhp\n"
"par_id3153577\n"
"help.text"
-msgid "Automatically applies bold formatting to text enclosed by asterisks (*), and underline to text enclosed by underscores ( _ ), for example, *bold*. The asterisks and underscores are not displayed after the formatting is applied."
+msgid "Automatically applies bold, italic, strikethrough or underline formatting to text enclosed by asterisks (*), slashes (/), hyphens (-), and underscores (_), respectively. These characters disappear after the formatting is applied."
msgstr ""
#: 06040100.xhp
@@ -31221,7 +31237,7 @@ msgctxt ""
"06040100.xhp\n"
"par_id3153127\n"
"help.text"
-msgid "This feature does not work if the formatting characters * or _ are entered with an <link href=\"text/shared/00/00000005.xhp#IME\" name=\"Input Method Editor\">Input Method Editor</link>."
+msgid "This feature does not work if the formatting characters <item type=\"literal\">* / - _</item> are entered with an <link href=\"text/shared/00/00000005.xhp#IME\" name=\"Input Method Editor\">Input Method Editor</link>."
msgstr ""
#: 06040100.xhp
diff --git a/source/ar/helpcontent2/source/text/shared/optionen.po b/source/ar/helpcontent2/source/text/shared/optionen.po
index 42c356f28ca..f62434e6ba7 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: 2018-05-08 15:10+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2016-07-05 15:55+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -83,6 +83,22 @@ msgstr ""
#: 01000000.xhp
msgctxt ""
"01000000.xhp\n"
+"hd_id551527692881035\n"
+"help.text"
+msgid "Help"
+msgstr ""
+
+#: 01000000.xhp
+msgctxt ""
+"01000000.xhp\n"
+"par_id831527692885723\n"
+"help.text"
+msgid "Opens the help contents for the Options page displayed."
+msgstr ""
+
+#: 01000000.xhp
+msgctxt ""
+"01000000.xhp\n"
"hd_id3159149\n"
"help.text"
msgid "<link href=\"text/shared/optionen/01010000.xhp\" name=\"$[officename]\">%PRODUCTNAME</link>"
@@ -4565,7 +4581,7 @@ msgctxt ""
"01030300.xhp\n"
"par_idN10640\n"
"help.text"
-msgid "Options"
+msgid "Security Options and Warnings"
msgstr ""
#: 01030300.xhp
@@ -4597,7 +4613,7 @@ msgctxt ""
"01030300.xhp\n"
"hd_id3168736\n"
"help.text"
-msgid "Persistently save passwords protected by a master password"
+msgid "Persistently save passwords for web connections"
msgstr ""
#: 01030300.xhp
@@ -4613,6 +4629,22 @@ msgctxt ""
"01030300.xhp\n"
"hd_id3901791\n"
"help.text"
+msgid "Protected by a master password (recommended)"
+msgstr ""
+
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"par_id31527711486980\n"
+"help.text"
+msgid "Check to enable all connections' passwords to be protected by a master password."
+msgstr ""
+
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"hd_id141527711343312\n"
+"help.text"
msgid "Master Password"
msgstr ""
@@ -13733,7 +13765,7 @@ msgctxt ""
"java.xhp\n"
"hd_id3148618\n"
"help.text"
-msgid "Optional (unstable) options"
+msgid "Optional Features"
msgstr ""
#: java.xhp
@@ -13749,7 +13781,7 @@ msgctxt ""
"java.xhp\n"
"par_id3156344\n"
"help.text"
-msgid "It enables features that are not yet complete or contain known bugs. The list of these features is different version by version, or even it can be empty."
+msgid "Enables features that are not yet complete or may contain known bugs. The list of these features is different version by version, or even it can be empty."
msgstr ""
#: java.xhp
@@ -13765,7 +13797,7 @@ msgctxt ""
"java.xhp\n"
"par_id3156345\n"
"help.text"
-msgid "It enables macro recording, so the <link href=\"text/shared/guide/macro_recording.xhp\" name=\"Tools - Macros - Record Macro\"><item type=\"menuitem\">Tools - Macros - Record Macro</item></link> menu item will be available."
+msgid "Enables macro recording. The <link href=\"text/shared/guide/macro_recording.xhp\" name=\"Tools - Macros - Record Macro\"><item type=\"menuitem\">Tools - Macros - Record Macro</item></link> menu item is available."
msgstr ""
#: java.xhp
diff --git a/source/ar/officecfg/registry/data/org/openoffice/Office/UI.po b/source/ar/officecfg/registry/data/org/openoffice/Office/UI.po
index a5f008b48f5..97f51c5e40a 100644
--- a/source/ar/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/ar/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-22 13:17+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2018-04-23 04:00+0000\n"
"Last-Translator: صفا الفليج <safa1996alfulaij@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -26591,8 +26591,8 @@ msgctxt ""
"..WriterCommands.UserInterface.Commands..uno:TextAttributes\n"
"Label\n"
"value.text"
-msgid "Text Attributes"
-msgstr "صفات النص"
+msgid "Text Attributes..."
+msgstr ""
#: WriterCommands.xcu
msgctxt ""
diff --git a/source/ar/readlicense_oo/docs.po b/source/ar/readlicense_oo/docs.po
index ebee50ca447..9e42c1c4c2f 100644
--- a/source/ar/readlicense_oo/docs.po
+++ b/source/ar/readlicense_oo/docs.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-04-17 15:54+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2018-04-21 06:03+0000\n"
"Last-Translator: صفا الفليج <safa1996alfulaij@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1524290580.000000\n"
#: readme.xrm
@@ -117,8 +117,8 @@ msgctxt ""
"readme.xrm\n"
"macxiOSX\n"
"readmeitem.text"
-msgid "MacOSX 10.8 (Mountain Lion) or higher"
-msgstr "ماك أوإس إكس 10.8 (أسد الجبل) أو أعلى"
+msgid "MacOSX 10.9 (Mavericks) or higher"
+msgstr ""
#: readme.xrm
msgctxt ""
diff --git a/source/ar/sc/messages.po b/source/ar/sc/messages.po
index 9399c203f55..96cdd39420d 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-12 14:40+0200\n"
"PO-Revision-Date: 2018-04-21 06:04+0000\n"
"Last-Translator: صفا الفليج <safa1996alfulaij@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1875,16 +1875,21 @@ msgid "Nested arrays are not supported."
msgstr "المصفوفات المتداخلة غير مدعومة."
#: sc/inc/globstr.hrc:390
+msgctxt "STR_ERR_LONG_BAD_ARRAY_CONTENT"
+msgid "Unsupported inline array content."
+msgstr ""
+
+#: sc/inc/globstr.hrc:391
msgctxt "STR_UNDO_TEXTTOCOLUMNS"
msgid "Text to Columns"
msgstr "نص إلى أعمدة"
-#: sc/inc/globstr.hrc:391
+#: sc/inc/globstr.hrc:392
msgctxt "STR_DOC_UPDATED"
msgid "Your spreadsheet has been updated with changes saved by other users."
msgstr "حُدِّث الجدول المُمتد بالتغييرات التي حفظها مستخدمين آخرين."
-#: sc/inc/globstr.hrc:392
+#: sc/inc/globstr.hrc:393
msgctxt "STR_DOC_WILLBESAVED"
msgid ""
"The spreadsheet must be saved now to activate sharing mode.\n"
@@ -1895,7 +1900,7 @@ msgstr ""
"\n"
"هل ترغب في المتابعة؟"
-#: sc/inc/globstr.hrc:393
+#: sc/inc/globstr.hrc:394
msgctxt "STR_DOC_WILLNOTBESAVED"
msgid ""
"Already resolved merge conflicts will be lost and your changes to the shared spreadsheet will not be saved.\n"
@@ -1906,7 +1911,7 @@ msgstr ""
"\n"
"هل ترغب في المتابعة؟"
-#: sc/inc/globstr.hrc:394
+#: sc/inc/globstr.hrc:395
msgctxt "STR_DOC_DISABLESHARED"
msgid ""
"Disabling shared mode of a spreadsheet hinders all other users of the shared spreadsheet to merge back their work.\n"
@@ -1917,7 +1922,7 @@ msgstr ""
"\n"
"هل ترغب في المتابعة؟"
-#: sc/inc/globstr.hrc:395
+#: sc/inc/globstr.hrc:396
msgctxt "STR_DOC_NOLONGERSHARED"
msgid ""
"This spreadsheet is no longer in shared mode.\n"
@@ -1928,7 +1933,7 @@ msgstr ""
"\n"
"قم بحفظ جدول البيانات إلى ملف آخر ودمج التغييرات إلى جدول البيانات المشترك يدويًا."
-#: sc/inc/globstr.hrc:396
+#: sc/inc/globstr.hrc:397
msgctxt "STR_FILE_LOCKED_TRY_LATER"
msgid ""
"The shared spreadsheet file is locked due to a merge in progress by user: '%1'\n"
@@ -1939,7 +1944,7 @@ msgstr ""
"\n"
"لا يمكن تعطيل وضع المشاركة لملف تم تأمينه. حاول مرة أخرى في وقت لاحق."
-#: sc/inc/globstr.hrc:397
+#: sc/inc/globstr.hrc:398
msgctxt "STR_FILE_LOCKED_SAVE_LATER"
msgid ""
"The shared spreadsheet file is locked due to a merge in progress by user: '%1'\n"
@@ -1950,147 +1955,147 @@ msgstr ""
"\n"
"حاول حفظ التغييرات مرة أخرى في وقت لاحق."
-#: sc/inc/globstr.hrc:398
+#: sc/inc/globstr.hrc:399
msgctxt "STR_UNKNOWN_USER"
msgid "Unknown User"
msgstr "مستخدم غير معروف"
-#: sc/inc/globstr.hrc:399
+#: sc/inc/globstr.hrc:400
msgctxt "STR_SHAPE_AUTOSHAPE"
msgid "AutoShape"
msgstr "شكل تلقائي"
-#: sc/inc/globstr.hrc:400
+#: sc/inc/globstr.hrc:401
msgctxt "STR_SHAPE_RECTANGLE"
msgid "Rectangle"
msgstr "مستطيل"
-#: sc/inc/globstr.hrc:401
+#: sc/inc/globstr.hrc:402
msgctxt "STR_SHAPE_LINE"
msgid "Line"
msgstr "خط"
-#: sc/inc/globstr.hrc:402
+#: sc/inc/globstr.hrc:403
msgctxt "STR_SHAPE_OVAL"
msgid "Oval"
msgstr "شكل بيضاوي"
-#: sc/inc/globstr.hrc:403
+#: sc/inc/globstr.hrc:404
msgctxt "STR_FORM_BUTTON"
msgid "Button"
msgstr "زر"
-#: sc/inc/globstr.hrc:404
+#: sc/inc/globstr.hrc:405
msgctxt "STR_FORM_CHECKBOX"
msgid "Check Box"
msgstr "خانة اختيار"
-#: sc/inc/globstr.hrc:405
+#: sc/inc/globstr.hrc:406
msgctxt "STR_FORM_OPTIONBUTTON"
msgid "Option Button"
msgstr "زر الخيارات"
-#: sc/inc/globstr.hrc:406
+#: sc/inc/globstr.hrc:407
msgctxt "STR_FORM_LABEL"
msgid "Label"
msgstr "التسمية"
-#: sc/inc/globstr.hrc:407
+#: sc/inc/globstr.hrc:408
msgctxt "STR_FORM_LISTBOX"
msgid "List Box"
msgstr "مربع قائمة"
-#: sc/inc/globstr.hrc:408
+#: sc/inc/globstr.hrc:409
msgctxt "STR_FORM_GROUPBOX"
msgid "Group Box"
msgstr "مربع مجموعة"
-#: sc/inc/globstr.hrc:409
+#: sc/inc/globstr.hrc:410
msgctxt "STR_FORM_DROPDOWN"
msgid "Drop Down"
msgstr "قائمة منسدلة"
-#: sc/inc/globstr.hrc:410
+#: sc/inc/globstr.hrc:411
msgctxt "STR_FORM_SPINNER"
msgid "Spinner"
msgstr "زيادة أو نقصان"
-#: sc/inc/globstr.hrc:411
+#: sc/inc/globstr.hrc:412
msgctxt "STR_FORM_SCROLLBAR"
msgid "Scroll Bar"
msgstr "شريط تمرير"
-#: sc/inc/globstr.hrc:412
+#: sc/inc/globstr.hrc:413
msgctxt "STR_STYLE_FAMILY_CELL"
msgid "Cell Styles"
msgstr "أنماط الخلايا"
-#: sc/inc/globstr.hrc:413
+#: sc/inc/globstr.hrc:414
msgctxt "STR_STYLE_FAMILY_PAGE"
msgid "Page Styles"
msgstr "أنماط الصفحات"
-#: sc/inc/globstr.hrc:414
+#: sc/inc/globstr.hrc:415
msgctxt "STR_ERR_DATAPILOTSOURCE"
msgid "Pivot table source data is invalid."
msgstr "بيانات مصدر الجدول المحوري غير صالحة."
-#: sc/inc/globstr.hrc:415
+#: sc/inc/globstr.hrc:416
msgctxt "STR_OPTIONS_WARN_SEPARATORS"
msgid "Because the current formula separator settings conflict with the locale, the formula separators have been reset to their default values."
msgstr "لأن إعدادات فاصل المعادلات الحالية تتناقض مع الإعدادات المحلية، صفّر فاصل المعادلات إلى القيم المبدئيّة."
-#: sc/inc/globstr.hrc:416
+#: sc/inc/globstr.hrc:417
msgctxt "STR_UNDO_INSERT_CURRENT_DATE"
msgid "Insert Current Date"
msgstr "ادرج التاريخ الحالى"
-#: sc/inc/globstr.hrc:417
+#: sc/inc/globstr.hrc:418
msgctxt "STR_UNDO_INSERT_CURRENT_TIME"
msgid "Insert Current Time"
msgstr "ادرج الوقت الحالى"
-#: sc/inc/globstr.hrc:418
+#: sc/inc/globstr.hrc:419
msgctxt "STR_MANAGE_NAMES"
msgid "Manage Names..."
msgstr "إدارة الاسماء..."
-#: sc/inc/globstr.hrc:419
+#: sc/inc/globstr.hrc:420
msgctxt "STR_HEADER_NAME"
msgid "Name"
msgstr "الاسم"
-#: sc/inc/globstr.hrc:420
+#: sc/inc/globstr.hrc:421
msgctxt "STR_HEADER_RANGE_OR_EXPR"
msgid "Range or formula expression"
msgstr ""
-#: sc/inc/globstr.hrc:421
+#: sc/inc/globstr.hrc:422
msgctxt "STR_HEADER_SCOPE"
msgid "Scope"
msgstr "المجال"
-#: sc/inc/globstr.hrc:422
+#: sc/inc/globstr.hrc:423
msgctxt "STR_MULTI_SELECT"
msgid "(multiple)"
msgstr "(متعدد)"
-#: sc/inc/globstr.hrc:423
+#: sc/inc/globstr.hrc:424
msgctxt "STR_GLOBAL_SCOPE"
msgid "Document (Global)"
msgstr "مستند (عالمي)"
-#: sc/inc/globstr.hrc:424
+#: sc/inc/globstr.hrc:425
msgctxt "STR_ERR_NAME_EXISTS"
msgid "Invalid name. Already in use for the selected scope."
msgstr "اسم غير صحيح. مستخدم بالفعل في مجال آخر."
-#: sc/inc/globstr.hrc:425
+#: sc/inc/globstr.hrc:426
msgctxt "STR_ERR_NAME_INVALID"
msgid "Invalid name. Only use letters, numbers and underscore."
msgstr "اسم غير صحيح. استخدم فقط الأحرف، الأرقام والتسطير السفلي."
-#: sc/inc/globstr.hrc:426
+#: sc/inc/globstr.hrc:427
msgctxt "STR_UNSAVED_EXT_REF"
msgid ""
"This Document contains external references to unsaved documents.\n"
@@ -2101,217 +2106,217 @@ msgstr ""
"\n"
"هل تود المتابعة؟"
-#: sc/inc/globstr.hrc:427
+#: sc/inc/globstr.hrc:428
msgctxt "STR_CLOSE_WITH_UNSAVED_REFS"
msgid "This Document is referenced by another document and not yet saved. Closing it without saving will result in data loss."
msgstr "المستند هذا مرجع لمستند آخر لم يُحفظ بعد. إغلاقه دون الحفظ سيتسبب بفقدان البيانات."
-#: sc/inc/globstr.hrc:428
+#: sc/inc/globstr.hrc:429
msgctxt "STR_HEADER_RANGE"
msgid "Range"
msgstr "النطاق"
-#: sc/inc/globstr.hrc:429
+#: sc/inc/globstr.hrc:430
msgctxt "STR_HEADER_COND"
msgid "First Condition"
msgstr "الشرط الأول"
-#: sc/inc/globstr.hrc:430
+#: sc/inc/globstr.hrc:431
msgctxt "STR_COND_CONDITION"
msgid "Cell value is"
msgstr "قيمة الخلية"
-#: sc/inc/globstr.hrc:431
+#: sc/inc/globstr.hrc:432
msgctxt "STR_COND_COLORSCALE"
msgid "ColorScale"
msgstr "قياس اللون"
-#: sc/inc/globstr.hrc:432
+#: sc/inc/globstr.hrc:433
msgctxt "STR_COND_DATABAR"
msgid "DataBar"
msgstr "شريط البيانات"
-#: sc/inc/globstr.hrc:433
+#: sc/inc/globstr.hrc:434
msgctxt "STR_COND_ICONSET"
msgid "IconSet"
msgstr "مجموعة الأيقونات"
-#: sc/inc/globstr.hrc:434
+#: sc/inc/globstr.hrc:435
msgctxt "STR_COND_BETWEEN"
msgid "between"
msgstr "بين"
-#: sc/inc/globstr.hrc:435
+#: sc/inc/globstr.hrc:436
msgctxt "STR_COND_NOTBETWEEN"
msgid "not between"
msgstr "ليس بين"
-#: sc/inc/globstr.hrc:436
+#: sc/inc/globstr.hrc:437
msgctxt "STR_COND_UNIQUE"
msgid "unique"
msgstr "فريد"
-#: sc/inc/globstr.hrc:437
+#: sc/inc/globstr.hrc:438
msgctxt "STR_COND_DUPLICATE"
msgid "duplicate"
msgstr "تكرار"
-#: sc/inc/globstr.hrc:438
+#: sc/inc/globstr.hrc:439
msgctxt "STR_COND_FORMULA"
msgid "Formula is"
msgstr "الصيغة هي"
-#: sc/inc/globstr.hrc:439
+#: sc/inc/globstr.hrc:440
msgctxt "STR_COND_TOP10"
msgid "Top Elements"
msgstr "العناصر العلوية"
-#: sc/inc/globstr.hrc:440
+#: sc/inc/globstr.hrc:441
msgctxt "STR_COND_BOTTOM10"
msgid "Bottom Elements"
msgstr "العناصر السفلية"
-#: sc/inc/globstr.hrc:441
+#: sc/inc/globstr.hrc:442
msgctxt "STR_COND_TOP_PERCENT"
msgid "Top Percent"
msgstr "النسبة العلوية"
-#: sc/inc/globstr.hrc:442
+#: sc/inc/globstr.hrc:443
msgctxt "STR_COND_DATE"
msgid "Date is"
msgstr "التاريخ هو"
-#: sc/inc/globstr.hrc:443
+#: sc/inc/globstr.hrc:444
msgctxt "STR_COND_BOTTOM_PERCENT"
msgid "Bottom Percent"
msgstr "النسبة السفلية"
-#: sc/inc/globstr.hrc:444
+#: sc/inc/globstr.hrc:445
msgctxt "STR_COND_ABOVE_AVERAGE"
msgid "Above Average"
msgstr "فوق المتوسط"
-#: sc/inc/globstr.hrc:445
+#: sc/inc/globstr.hrc:446
msgctxt "STR_COND_BELOW_AVERAGE"
msgid "Below Average"
msgstr "تحت المتوسط"
-#: sc/inc/globstr.hrc:446
+#: sc/inc/globstr.hrc:447
msgctxt "STR_COND_ABOVE_EQUAL_AVERAGE"
msgid "Above or equal Average"
msgstr "أعلى أو يساوي المتوسّط"
-#: sc/inc/globstr.hrc:447
+#: sc/inc/globstr.hrc:448
msgctxt "STR_COND_BELOW_EQUAL_AVERAGE"
msgid "Below or equal Average"
msgstr "أقل أو يساوي المتوسّط"
-#: sc/inc/globstr.hrc:448
+#: sc/inc/globstr.hrc:449
msgctxt "STR_COND_ERROR"
msgid "an Error code"
msgstr "رمز خطأ"
-#: sc/inc/globstr.hrc:449
+#: sc/inc/globstr.hrc:450
msgctxt "STR_COND_NOERROR"
msgid "not an Error code"
msgstr "ليس رمز خطأ"
-#: sc/inc/globstr.hrc:450
+#: sc/inc/globstr.hrc:451
msgctxt "STR_COND_BEGINS_WITH"
msgid "Begins with"
msgstr "يبدأ بـ"
-#: sc/inc/globstr.hrc:451
+#: sc/inc/globstr.hrc:452
msgctxt "STR_COND_ENDS_WITH"
msgid "Ends with"
msgstr "ينتهي بـ"
-#: sc/inc/globstr.hrc:452
+#: sc/inc/globstr.hrc:453
msgctxt "STR_COND_CONTAINS"
msgid "Contains"
msgstr "يحتوي على"
-#: sc/inc/globstr.hrc:453
+#: sc/inc/globstr.hrc:454
msgctxt "STR_COND_NOT_CONTAINS"
msgid "Not Contains"
msgstr "لا يحتوي على"
-#: sc/inc/globstr.hrc:454
+#: sc/inc/globstr.hrc:455
msgctxt "STR_COND_TODAY"
msgid "today"
msgstr "اليوم"
-#: sc/inc/globstr.hrc:455
+#: sc/inc/globstr.hrc:456
msgctxt "STR_COND_YESTERDAY"
msgid "yesterday"
msgstr "الأمس"
-#: sc/inc/globstr.hrc:456
+#: sc/inc/globstr.hrc:457
msgctxt "STR_COND_TOMORROW"
msgid "tomorrow"
msgstr "غدًا"
-#: sc/inc/globstr.hrc:457
+#: sc/inc/globstr.hrc:458
msgctxt "STR_COND_LAST7DAYS"
msgid "in the last 7 days"
msgstr "الـ 7 أيام الماضية"
-#: sc/inc/globstr.hrc:458
+#: sc/inc/globstr.hrc:459
msgctxt "STR_COND_THISWEEK"
msgid "this week"
msgstr "هذا الأسبوع"
-#: sc/inc/globstr.hrc:459
+#: sc/inc/globstr.hrc:460
msgctxt "STR_COND_LASTWEEK"
msgid "last week"
msgstr "الأسبوع الماضي"
-#: sc/inc/globstr.hrc:460
+#: sc/inc/globstr.hrc:461
msgctxt "STR_COND_NEXTWEEK"
msgid "next week"
msgstr "الأسبوع القادم"
-#: sc/inc/globstr.hrc:461
+#: sc/inc/globstr.hrc:462
msgctxt "STR_COND_THISMONTH"
msgid "this month"
msgstr "هذا الشهر"
-#: sc/inc/globstr.hrc:462
+#: sc/inc/globstr.hrc:463
msgctxt "STR_COND_LASTMONTH"
msgid "last month"
msgstr "الشهر الماضي"
-#: sc/inc/globstr.hrc:463
+#: sc/inc/globstr.hrc:464
msgctxt "STR_COND_NEXTMONTH"
msgid "next month"
msgstr "الشهر القادم"
-#: sc/inc/globstr.hrc:464
+#: sc/inc/globstr.hrc:465
msgctxt "STR_COND_THISYEAR"
msgid "this year"
msgstr "هذه السنة"
-#: sc/inc/globstr.hrc:465
+#: sc/inc/globstr.hrc:466
msgctxt "STR_COND_LASTYEAR"
msgid "last year"
msgstr "السنة الماضية"
-#: sc/inc/globstr.hrc:466
+#: sc/inc/globstr.hrc:467
msgctxt "STR_COND_NEXTYEAR"
msgid "next year"
msgstr "السنة القادمة"
-#: sc/inc/globstr.hrc:467
+#: sc/inc/globstr.hrc:468
msgctxt "STR_COND_AND"
msgid "and"
msgstr "و"
-#: sc/inc/globstr.hrc:468
+#: sc/inc/globstr.hrc:469
msgctxt "STR_ERR_CONDFORMAT_PROTECTED"
msgid "Conditional Formats can not be created, deleted or changed in protected sheets."
msgstr ""
-#: sc/inc/globstr.hrc:469
+#: sc/inc/globstr.hrc:470
msgctxt "STR_EDIT_EXISTING_COND_FORMATS"
msgid ""
"The selected cell already contains conditional formatting. You can either edit the existing conditional format or you define a new overlapping conditional format.\n"
@@ -2322,7 +2327,7 @@ msgstr ""
"\n"
" هل تود تحرير التنسيق الشرطي الحالي؟"
-#: sc/inc/globstr.hrc:470
+#: sc/inc/globstr.hrc:471
msgctxt "STR_QUERY_FORMULA_RECALC_ONLOAD_ODS"
msgid ""
"This document was last saved by an application other than %PRODUCTNAME. Some formula cells may produce different results when recalculated.\n"
@@ -2333,7 +2338,7 @@ msgstr ""
"\n"
"هل تود إعادة حساب كل خلايا الصيغ الآن؟"
-#: sc/inc/globstr.hrc:471
+#: sc/inc/globstr.hrc:472
msgctxt "STR_QUERY_FORMULA_RECALC_ONLOAD_XLS"
msgid ""
"This document was last saved by Excel. Some formula cells may produce different results when recalculated.\n"
@@ -2344,77 +2349,77 @@ msgstr ""
"\n"
"هل تود إعادة حساب كل خلايا الصيغ الآن؟"
-#: sc/inc/globstr.hrc:472
+#: sc/inc/globstr.hrc:473
msgctxt "STR_NO_INSERT_DELETE_OVER_PIVOT_TABLE"
msgid "You cannot insert or delete cells when the affected range intersects with pivot table."
msgstr "لا يمكنك إدراج أو حذف الخلايا عندما يتقاطع المجال المؤثَّر مع جدول محوري."
-#: sc/inc/globstr.hrc:473
+#: sc/inc/globstr.hrc:474
msgctxt "STR_DPFIELD_GROUP_BY_SECONDS"
msgid "Seconds"
msgstr "ثوانٍ"
-#: sc/inc/globstr.hrc:474
+#: sc/inc/globstr.hrc:475
msgctxt "STR_DPFIELD_GROUP_BY_MINUTES"
msgid "Minutes"
msgstr "دقائق"
-#: sc/inc/globstr.hrc:475
+#: sc/inc/globstr.hrc:476
msgctxt "STR_DPFIELD_GROUP_BY_HOURS"
msgid "Hours"
msgstr "ساعات"
-#: sc/inc/globstr.hrc:476
+#: sc/inc/globstr.hrc:477
msgctxt "STR_DPFIELD_GROUP_BY_DAYS"
msgid "Days"
msgstr "أيام"
-#: sc/inc/globstr.hrc:477
+#: sc/inc/globstr.hrc:478
msgctxt "STR_DPFIELD_GROUP_BY_MONTHS"
msgid "Months"
msgstr "شهور"
-#: sc/inc/globstr.hrc:478
+#: sc/inc/globstr.hrc:479
msgctxt "STR_DPFIELD_GROUP_BY_QUARTERS"
msgid "Quarters"
msgstr "أرباع سنة"
-#: sc/inc/globstr.hrc:479
+#: sc/inc/globstr.hrc:480
msgctxt "STR_DPFIELD_GROUP_BY_YEARS"
msgid "Years"
msgstr "سنوات"
-#: sc/inc/globstr.hrc:480
+#: sc/inc/globstr.hrc:481
msgctxt "STR_INVALIDVAL"
msgid "Invalid target value."
msgstr "قيمة هدف غير صالحة."
-#: sc/inc/globstr.hrc:481
+#: sc/inc/globstr.hrc:482
msgctxt "STR_INVALIDVAR"
msgid "Undefined name for variable cell."
msgstr "اسم غير معرف لخلية متغيرة."
-#: sc/inc/globstr.hrc:482
+#: sc/inc/globstr.hrc:483
msgctxt "STR_INVALIDFORM"
msgid "Undefined name as formula cell."
msgstr "اسم غير معرف لخلية صيغة."
-#: sc/inc/globstr.hrc:483
+#: sc/inc/globstr.hrc:484
msgctxt "STR_NOFORMULA"
msgid "Formula cell must contain a formula."
msgstr "على خلية المعادلة احتواء معادلة."
-#: sc/inc/globstr.hrc:484
+#: sc/inc/globstr.hrc:485
msgctxt "STR_INVALIDINPUT"
msgid "Invalid input."
msgstr "إدخال غير صالح."
-#: sc/inc/globstr.hrc:485
+#: sc/inc/globstr.hrc:486
msgctxt "STR_INVALIDCONDITION"
msgid "Invalid condition."
msgstr "شرط غير صالح."
-#: sc/inc/globstr.hrc:486
+#: sc/inc/globstr.hrc:487
msgctxt "STR_QUERYREMOVE"
msgid ""
"Should the entry\n"
@@ -2425,135 +2430,135 @@ msgstr ""
"الإدخال\n"
"#؟"
-#: sc/inc/globstr.hrc:487
+#: sc/inc/globstr.hrc:488
msgctxt "STR_COPYLIST"
msgid "Copy List"
msgstr "نسخ القائمة"
-#: sc/inc/globstr.hrc:488
+#: sc/inc/globstr.hrc:489
msgctxt "STR_COPYFROM"
msgid "List from"
msgstr "القائمة من"
-#: sc/inc/globstr.hrc:489
+#: sc/inc/globstr.hrc:490
msgctxt "STR_COPYERR"
msgid "Cells without text have been ignored."
msgstr "تم تجاهل الخلايا التي لا تحتوي على نص."
-#: sc/inc/globstr.hrc:490
+#: sc/inc/globstr.hrc:491
#, c-format
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%s-click to follow hyperlink:"
msgstr "انقر مع %s لاتّباع الرابط:"
-#: sc/inc/globstr.hrc:491
+#: sc/inc/globstr.hrc:492
msgctxt "STR_CLICKHYPERLINK"
msgid "click to open hyperlink:"
msgstr "انقر لفتح الرابط:"
-#: sc/inc/globstr.hrc:492
+#: sc/inc/globstr.hrc:493
msgctxt "STR_PRINT_PREVIEW_NODATA"
msgid "No Data"
msgstr "لا بيانات"
-#: sc/inc/globstr.hrc:493
+#: sc/inc/globstr.hrc:494
msgctxt "STR_PRINT_PREVIEW_EMPTY_RANGE"
msgid "Print Range Empty"
msgstr "نطاق الطّباعة فارغ"
-#: sc/inc/globstr.hrc:494
+#: sc/inc/globstr.hrc:495
msgctxt "STR_UNDO_CONDFORMAT"
msgid "Conditional Format"
msgstr "التّنسيق الشّرطيّ"
-#: sc/inc/globstr.hrc:495
+#: sc/inc/globstr.hrc:496
msgctxt "STR_UNDO_CONDFORMAT_LIST"
msgid "Conditional Formats"
msgstr "التّنسيقات الشّرطيّة"
-#: sc/inc/globstr.hrc:496
+#: sc/inc/globstr.hrc:497
msgctxt "STR_UNDO_FORMULA_TO_VALUE"
msgid "Convert Formula To Value"
msgstr "تحويل الصّيغة إلى قيمة"
-#: sc/inc/globstr.hrc:497
+#: sc/inc/globstr.hrc:498
msgctxt "STR_UNQUOTED_STRING"
msgid "Strings without quotes are interpreted as column/row labels."
msgstr "ستُعتبر السلاسل الخاوية من علامات الاقتباس لصائقَ للأعمدة/الصفوف."
-#: sc/inc/globstr.hrc:498
+#: sc/inc/globstr.hrc:499
msgctxt "STR_ENTER_VALUE"
msgid "Enter a value!"
msgstr "أدخل قيمة!"
-#: sc/inc/globstr.hrc:499
+#: sc/inc/globstr.hrc:500
msgctxt "STR_TABLE_COUNT"
msgid "Sheet %1 of %2"
msgstr "الورقة %1 من %2"
-#: sc/inc/globstr.hrc:500
+#: sc/inc/globstr.hrc:501
msgctxt "STR_FUNCTIONS_FOUND"
msgid "%1 and %2 more"
msgstr ""
-#: sc/inc/globstr.hrc:501
+#: sc/inc/globstr.hrc:502
msgctxt "STR_GENERAL"
msgid "General"
msgstr "عام"
-#: sc/inc/globstr.hrc:502
+#: sc/inc/globstr.hrc:503
#, fuzzy
msgctxt "STR_NUMBER"
msgid "Number"
msgstr "الرقم"
-#: sc/inc/globstr.hrc:503
+#: sc/inc/globstr.hrc:504
msgctxt "STR_PERCENT"
msgid "Percent"
msgstr "مئوية"
-#: sc/inc/globstr.hrc:504
+#: sc/inc/globstr.hrc:505
msgctxt "STR_CURRENCY"
msgid "Currency"
msgstr "عملة"
-#: sc/inc/globstr.hrc:505
+#: sc/inc/globstr.hrc:506
msgctxt "STR_DATE"
msgid "Date"
msgstr "التاريخ"
-#: sc/inc/globstr.hrc:506
+#: sc/inc/globstr.hrc:507
msgctxt "STR_TIME"
msgid "Time"
msgstr "الوقت"
-#: sc/inc/globstr.hrc:507
+#: sc/inc/globstr.hrc:508
msgctxt "STR_SCIENTIFIC"
msgid "Scientific"
msgstr "علمي"
-#: sc/inc/globstr.hrc:508
+#: sc/inc/globstr.hrc:509
msgctxt "STR_FRACTION"
msgid "Fraction"
msgstr "كسر"
-#: sc/inc/globstr.hrc:509
+#: sc/inc/globstr.hrc:510
msgctxt "STR_BOOLEAN_VALUE"
msgid "Boolean Value"
msgstr "قيمة منطقية"
-#: sc/inc/globstr.hrc:510
+#: sc/inc/globstr.hrc:511
#, fuzzy
msgctxt "STR_TEXT"
msgid "Text"
msgstr "النص"
-#: sc/inc/globstr.hrc:511
+#: sc/inc/globstr.hrc:512
msgctxt "STR_QUERY_PIVOTTABLE_DELTAB"
msgid "The selected sheet(s) contain source data of related pivot tables that will be lost. Are you sure you want to delete the selected sheet(s)?"
msgstr ""
-#: sc/inc/globstr.hrc:512
+#: sc/inc/globstr.hrc:513
msgctxt "STR_ERR_NAME_INVALID_CELL_REF"
msgid "Invalid name. Reference to a cell, or a range of cells not allowed."
msgstr "اسم غير صالح. ليس مسموحًا بإجراء مرجع إلى خلية أو مدى خلايا."
@@ -10707,8 +10712,8 @@ msgstr "الوضع"
#: sc/inc/scfuncs.hrc:3010
msgctxt "SC_OPCODE_T_TEST"
-msgid "Mode specifies the number of distribution tails to return. 1= one-tailed, 2 = two-tailed distribution"
-msgstr "تحديد عدد أطراف التوزيع للإرجاع؛ توزيع أحادي الطرف = 1؛ توزيع ثنائي الأطراف = 2."
+msgid "Mode specifies the number of distribution tails to return. 1 = one-tailed, 2 = two-tailed distribution"
+msgstr ""
#: sc/inc/scfuncs.hrc:3011
msgctxt "SC_OPCODE_T_TEST"
@@ -10754,8 +10759,8 @@ msgstr "الوضع"
#: sc/inc/scfuncs.hrc:3024
msgctxt "SC_OPCODE_T_TEST_MS"
-msgid "Mode specifies the number of distribution tails to return. 1= one-tailed, 2 = two-tailed distribution"
-msgstr "تحديد عدد أطراف التوزيع للإرجاع؛ توزيع أحادي الطرف = 1؛ توزيع ثنائي الأطراف = 2."
+msgid "Mode specifies the number of distribution tails to return. 1 = one-tailed, 2 = two-tailed distribution"
+msgstr ""
#: sc/inc/scfuncs.hrc:3025
msgctxt "SC_OPCODE_T_TEST_MS"
@@ -18493,22 +18498,22 @@ msgctxt "mergecellsdialog|MergeCellsDialog"
msgid "Merge Cells"
msgstr "ادمج الخلايا"
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:81
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:84
msgctxt "mergecellsdialog|label"
msgid "Some cells are not empty."
msgstr "بعض الخلايا ليست فارغة."
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:96
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:99
msgctxt "mergecellsdialog|move-cells-radio"
msgid "Move the contents of the hidden cells into the first cell"
msgstr "انقل محتويات الخلايا الفارغة إلى أول خلية"
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:112
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:115
msgctxt "mergecellsdialog|empty-cells-radio"
msgid "Empty the contents of the hidden cells"
msgstr "فرّغ محتويات الخلايا الفارغة"
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:128
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:131
msgctxt "mergecellsdialog|keep-content-radio"
msgid "Keep the contents of the hidden cells"
msgstr "أبقِ محتويات الخلايا الفارغة"
diff --git a/source/ar/sd/messages.po b/source/ar/sd/messages.po
index 0b832dfdfc2..74c0f7c28a6 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2018-04-30 02:52+0000\n"
"Last-Translator: صفا الفليج <safa1996alfulaij@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -16,168 +16,168 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1525056731.000000\n"
-#: sd/inc/DocumentRenderer.hrc:29
+#: sd/inc/DocumentRenderer.hrc:27
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Slides"
msgstr "الشرائح"
-#: sd/inc/DocumentRenderer.hrc:30
+#: sd/inc/DocumentRenderer.hrc:28
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Handouts"
msgstr "نشرات"
-#: sd/inc/DocumentRenderer.hrc:31
+#: sd/inc/DocumentRenderer.hrc:29
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Notes"
msgstr "الملاحظات"
-#: sd/inc/DocumentRenderer.hrc:32
+#: sd/inc/DocumentRenderer.hrc:30
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Outline"
msgstr "المخطط"
-#: sd/inc/DocumentRenderer.hrc:37
+#: sd/inc/DocumentRenderer.hrc:35
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "According to layout"
msgstr "حسب التخطيط"
-#: sd/inc/DocumentRenderer.hrc:38
+#: sd/inc/DocumentRenderer.hrc:36
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "1"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:39
+#: sd/inc/DocumentRenderer.hrc:37
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "2"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:40
+#: sd/inc/DocumentRenderer.hrc:38
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "3"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:41
+#: sd/inc/DocumentRenderer.hrc:39
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "4"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:42
+#: sd/inc/DocumentRenderer.hrc:40
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "6"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:43
+#: sd/inc/DocumentRenderer.hrc:41
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "9"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:48
+#: sd/inc/DocumentRenderer.hrc:46
msgctxt "STR_IMPRESS_PRINT_UI_ORDER_CHOICES"
msgid "Left to right, then down"
msgstr "من اليسار إلى اليمين ثم لأسفل"
-#: sd/inc/DocumentRenderer.hrc:49
+#: sd/inc/DocumentRenderer.hrc:47
msgctxt "STR_IMPRESS_PRINT_UI_ORDER_CHOICES"
msgid "Top to bottom, then right"
msgstr "من أعلى لأسفل ثم إلى اليمين"
-#: sd/inc/DocumentRenderer.hrc:54
+#: sd/inc/DocumentRenderer.hrc:52
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Original colors"
msgstr "الألوان الأصلية"
-#: sd/inc/DocumentRenderer.hrc:55
+#: sd/inc/DocumentRenderer.hrc:53
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Grayscale"
msgstr "تدرج الرمادي"
-#: sd/inc/DocumentRenderer.hrc:56
+#: sd/inc/DocumentRenderer.hrc:54
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Black & white"
msgstr "أبيض و أسود"
-#: sd/inc/DocumentRenderer.hrc:61
+#: sd/inc/DocumentRenderer.hrc:59
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Original size"
msgstr "الحجم الأصلي"
-#: sd/inc/DocumentRenderer.hrc:62
+#: sd/inc/DocumentRenderer.hrc:60
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Fit to printable page"
msgstr "لائم المنطقة المطبوعة"
-#: sd/inc/DocumentRenderer.hrc:63
+#: sd/inc/DocumentRenderer.hrc:61
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Distribute on multiple sheets of paper"
msgstr "توزيع على العديد من الأوراق الخاصة بورقة"
-#: sd/inc/DocumentRenderer.hrc:64
+#: sd/inc/DocumentRenderer.hrc:62
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Tile sheet of paper with repeated slides"
msgstr "ورقة العنوان لورقة تتضمن شرائح متكررة"
-#: sd/inc/DocumentRenderer.hrc:69
+#: sd/inc/DocumentRenderer.hrc:67
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Original size"
msgstr "الحجم الأصلي"
-#: sd/inc/DocumentRenderer.hrc:70
+#: sd/inc/DocumentRenderer.hrc:68
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Fit to printable page"
msgstr "لائم المنطقة المطبوعة"
-#: sd/inc/DocumentRenderer.hrc:71
+#: sd/inc/DocumentRenderer.hrc:69
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Distribute on multiple sheets of paper"
msgstr "توزيع على العديد من الأوراق الخاصة بورقة"
-#: sd/inc/DocumentRenderer.hrc:72
+#: sd/inc/DocumentRenderer.hrc:70
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Tile sheet of paper with repeated pages"
msgstr "ورقة العنوان لورقة تتضمن صفحات متكررة"
-#: sd/inc/DocumentRenderer.hrc:77
+#: sd/inc/DocumentRenderer.hrc:75
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "All pages"
msgstr "كل الصفحات"
-#: sd/inc/DocumentRenderer.hrc:78
+#: sd/inc/DocumentRenderer.hrc:76
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "Front sides / right pages"
msgstr "الجوانب الأمامية / الصفحات اليمنى"
-#: sd/inc/DocumentRenderer.hrc:79
+#: sd/inc/DocumentRenderer.hrc:77
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "Back sides / left pages"
msgstr "الجوانب الخلفية / الصفحات اليسرى"
-#: sd/inc/DocumentRenderer.hrc:84
+#: sd/inc/DocumentRenderer.hrc:82
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~All slides"
msgstr "~كل الشرائح"
-#: sd/inc/DocumentRenderer.hrc:85
+#: sd/inc/DocumentRenderer.hrc:83
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~Slides"
msgstr "ال~شرائح"
-#: sd/inc/DocumentRenderer.hrc:86
+#: sd/inc/DocumentRenderer.hrc:84
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Se~lection"
msgstr "ال~تحديد"
-#: sd/inc/DocumentRenderer.hrc:91
+#: sd/inc/DocumentRenderer.hrc:89
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~All pages"
msgstr "~كل الصفحات"
-#: sd/inc/DocumentRenderer.hrc:92
+#: sd/inc/DocumentRenderer.hrc:90
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Pa~ges"
msgstr "ال~صفحات"
-#: sd/inc/DocumentRenderer.hrc:93
+#: sd/inc/DocumentRenderer.hrc:91
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Se~lection"
msgstr "ال~تحديد"
diff --git a/source/ar/svx/messages.po b/source/ar/svx/messages.po
index 6eb6f3cddfa..63bbed47900 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: 2018-05-16 16:53+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2018-04-30 03:08+0000\n"
"Last-Translator: صفا الفليج <safa1996alfulaij@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5344,8 +5344,8 @@ msgstr "يمكنك أيضا تضمين بعض المعلومات المفيدة
#: svx/uiconfig/ui/safemodedialog.ui:432
msgctxt "safemodedialog|btn_create_zip"
-msgid "Create Zip Archive from User Profile"
-msgstr "أنشئ ملفًا مضغوطًا من إعدادات المستخدم"
+msgid "Archive User Profile"
+msgstr ""
#: svx/uiconfig/ui/safemodedialog.ui:445
msgctxt "safemodedialog|linkbutton_profile"
@@ -9001,9 +9001,9 @@ msgid "Red"
msgstr "أحمر"
#: include/svx/strings.hrc:565
-msgctxt "RID_SVXSTR_COLOR_VIOLET"
-msgid "Violet"
-msgstr "بنفسجي"
+msgctxt "RID_SVXSTR_COLOR_MAGENTA"
+msgid "Magenta"
+msgstr "أرجواني"
#: include/svx/strings.hrc:566
msgctxt "RID_SVXSTR_COLOR_PURPLE"
@@ -9067,9 +9067,9 @@ msgid "Light Red"
msgstr "أحمر فاتح"
#: include/svx/strings.hrc:579
-msgctxt "RID_SVXSTR_COLOR_LIGHTVIOLET"
-msgid "Light Violet"
-msgstr "بنفسجي فاتح"
+msgctxt "RID_SVXSTR_COLOR_LIGHTMAGENTA"
+msgid "Light Magenta"
+msgstr ""
#: include/svx/strings.hrc:580
msgctxt "RID_SVXSTR_COLOR_LIGHTPURPLE"
@@ -9133,9 +9133,9 @@ msgid "Dark Red"
msgstr "أحمر غامق"
#: include/svx/strings.hrc:593
-msgctxt "RID_SVXSTR_COLOR_DARKVIOLET1"
-msgid "Dark Violet"
-msgstr "بنفسجي غامق"
+msgctxt "RID_SVXSTR_COLOR_DARKMAGENTA"
+msgid "Dark Magenta"
+msgstr ""
#: include/svx/strings.hrc:594
msgctxt "RID_SVXSTR_COLOR_DARKPURPLE"
@@ -9169,55 +9169,55 @@ msgstr "ليموني غامق"
#. Elements of the Tonal color palette
#: include/svx/strings.hrc:601
+msgctxt "RID_SVXSTR_COLOR_VIOLET"
+msgid "Violet"
+msgstr "بنفسجي"
+
+#: include/svx/strings.hrc:602
msgctxt "RID_SVXSTR_COLOR_VIOLET_OUG"
msgid "Violet (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:602
+#: include/svx/strings.hrc:603
msgctxt "RID_SVXSTR_COLOR_BLUE_OUG"
msgid "Blue (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:603
+#: include/svx/strings.hrc:604
msgctxt "RID_SVXSTR_COLOR_AZURE_OUG"
msgid "Azure (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:604
+#: include/svx/strings.hrc:605
msgctxt "RID_SVXSTR_COLOR_SPRINGGREEN_OUG"
msgid "Spring Green (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:605
+#: include/svx/strings.hrc:606
msgctxt "RID_SVXSTR_COLOR_GREEN_OUG"
msgid "Green (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:606
+#: include/svx/strings.hrc:607
msgctxt "RID_SVXSTR_COLOR_CHARTREUSEGREEN_OUG"
msgid "Chartreuse Green (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:607
+#: include/svx/strings.hrc:608
msgctxt "RID_SVXSTR_COLOR_ORANGE_OUG"
msgid "Orange (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:608
+#: include/svx/strings.hrc:609
msgctxt "RID_SVXSTR_COLOR_RED_OUG"
msgid "Red (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:609
+#: include/svx/strings.hrc:610
msgctxt "RID_SVXSTR_COLOR_ROSE_OUG"
msgid "Rose (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:610
-msgctxt "RID_SVXSTR_COLOR_MAGENTA"
-msgid "Magenta"
-msgstr "أرجواني"
-
#: include/svx/strings.hrc:611
msgctxt "RID_SVXSTR_COLOR_AZURE"
msgid "Azure"
@@ -12334,13 +12334,13 @@ msgstr "تنقيط سهم التأشير اﻷيمن"
#: include/svx/strings.hrc:1273
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_6"
-msgid "Check mark bullets"
-msgstr "فحص علامة التنقيط"
+msgid "Cross mark bullets"
+msgstr ""
#: include/svx/strings.hrc:1274
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_7"
-msgid "Tick mark bullets"
-msgstr "اختر علامة التنقيط"
+msgid "Check mark bullets"
+msgstr ""
#: include/svx/strings.hrc:1275
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_0"
diff --git a/source/ar/sw/messages.po b/source/ar/sw/messages.po
index 76dec8e813f..15f7cf836b7 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: 2018-05-22 13:17+0200\n"
+"POT-Creation-Date: 2018-06-12 14:41+0200\n"
"PO-Revision-Date: 2018-04-30 02:36+0000\n"
"Last-Translator: صفا الفليج <safa1996alfulaij@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1180,13 +1180,13 @@ msgstr "اقتباس"
#: sw/inc/strings.hrc:172
msgctxt "STR_POOLCOLL_TOX_ILLUSH"
-msgid "Illustration Index Heading"
-msgstr "عنوان فهرس الرسوم التوضيحية"
+msgid "Figure Index Heading"
+msgstr ""
#: sw/inc/strings.hrc:173
msgctxt "STR_POOLCOLL_TOX_ILLUS1"
-msgid "Illustration Index 1"
-msgstr "فهرس الرسوم التوضيحية ١"
+msgid "Figure Index 1"
+msgstr ""
#: sw/inc/strings.hrc:174
msgctxt "STR_POOLCOLL_TOX_OBJECTH"
@@ -3592,8 +3592,8 @@ msgstr "جدول الكائنات"
#: sw/inc/strings.hrc:672
msgctxt "STR_TOX_ILL"
-msgid "Illustration Index"
-msgstr "فهرس رسوم توضيحية"
+msgid "Table of Figures"
+msgstr ""
#: sw/inc/strings.hrc:673
#, c-format
@@ -9288,73 +9288,73 @@ msgctxt "footnotepage|label5"
msgid "Continuation Notice"
msgstr "ملاحظة الاستكمال"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:49
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:55
msgctxt "footnotesendnotestabpage|ftnntnum"
msgid "_Restart numbering"
msgstr "أ_عد الترقيم"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:91
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:93
msgctxt "footnotesendnotestabpage|ftnoffset_label"
msgid "_Start at:"
msgstr "ا_بدأ عند:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:112
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:111
msgctxt "footnotesendnotestabpage|ftnntnumfmt"
msgid "Custom _format"
msgstr "تنسيق _مخصص"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:155
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:150
msgctxt "footnotesendnotestabpage|ftnsuffix_label"
msgid "Aft_er:"
msgstr "ب_عد:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:199
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:188
msgctxt "footnotesendnotestabpage|ftnprefix_label"
msgid "Be_fore:"
msgstr "_قبل:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:228
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:212
msgctxt "footnotesendnotestabpage|ftnntattextend"
msgid "Collec_t at end of text"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:252
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:234
msgctxt "footnotesendnotestabpage|label1"
msgid "Footnotes"
msgstr "الحواشي"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:289
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:271
msgctxt "footnotesendnotestabpage|endntattextend"
msgid "C_ollect at end of section"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:315
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:295
msgctxt "footnotesendnotestabpage|endntnum"
msgid "_Restart numbering"
msgstr "أ_عد الترقيم"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:357
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:333
msgctxt "footnotesendnotestabpage|endoffset_label"
msgid "_Start at:"
msgstr "اب_دأ عند:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:378
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:351
#, fuzzy
msgctxt "footnotesendnotestabpage|endntnumfmt"
msgid "_Custom format"
msgstr "تنسيق _مخصص"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:421
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:390
msgctxt "footnotesendnotestabpage|endsuffix_label"
msgid "Aft_er:"
msgstr "ب_عد:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:465
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:428
msgctxt "footnotesendnotestabpage|endprefix_label"
msgid "Be_fore:"
msgstr "_قبل:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:500
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:458
msgctxt "footnotesendnotestabpage|label2"
msgid "Endnotes"
msgstr "الحواشي الختامية"
@@ -9385,27 +9385,27 @@ msgctxt "formatsectiondialog|notes"
msgid "Footnotes/Endnotes"
msgstr "الحواشي/الحواشي الختامية"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:63
+#: sw/uiconfig/swriter/ui/formattablepage.ui:77
msgctxt "formattablepage|nameft"
msgid "_Name"
msgstr "الا_سم"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:79
+#: sw/uiconfig/swriter/ui/formattablepage.ui:91
msgctxt "formattablepage|widthft"
msgid "W_idth"
msgstr "الع_رض"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:110
+#: sw/uiconfig/swriter/ui/formattablepage.ui:120
msgctxt "formattablepage|relwidth"
msgid "Relati_ve"
msgstr "نس_بيّ"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:155
+#: sw/uiconfig/swriter/ui/formattablepage.ui:160
msgctxt "formattablepage|label45"
msgid "Properties"
msgstr "خصائص"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:194
+#: sw/uiconfig/swriter/ui/formattablepage.ui:195
msgctxt "formattablepage|leftft"
msgid "Lef_t"
msgstr "ي_سار"
@@ -9415,62 +9415,62 @@ msgctxt "formattablepage|rightft"
msgid "Ri_ght"
msgstr "ي_مين"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:228
+#: sw/uiconfig/swriter/ui/formattablepage.ui:226
msgctxt "formattablepage|aboveft"
msgid "_Above"
msgstr "إلى أ_على"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:245
+#: sw/uiconfig/swriter/ui/formattablepage.ui:241
msgctxt "formattablepage|belowft"
msgid "_Below"
msgstr "إلى أ_سفل"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:320
+#: sw/uiconfig/swriter/ui/formattablepage.ui:311
msgctxt "formattablepage|label46"
msgid "Spacing"
msgstr "التباعد"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:362
+#: sw/uiconfig/swriter/ui/formattablepage.ui:349
msgctxt "formattablepage|full"
msgid "A_utomatic"
msgstr "ت_لقائي"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:380
+#: sw/uiconfig/swriter/ui/formattablepage.ui:365
msgctxt "formattablepage|left"
msgid "_Left"
msgstr "_يسار"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:398
+#: sw/uiconfig/swriter/ui/formattablepage.ui:381
msgctxt "formattablepage|fromleft"
msgid "_From left"
msgstr "_من اليسار"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:416
+#: sw/uiconfig/swriter/ui/formattablepage.ui:397
msgctxt "formattablepage|right"
msgid "R_ight"
msgstr "يمي_ن"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:435
+#: sw/uiconfig/swriter/ui/formattablepage.ui:413
msgctxt "formattablepage|center"
msgid "_Center"
msgstr "ت_وسيط"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:453
+#: sw/uiconfig/swriter/ui/formattablepage.ui:429
msgctxt "formattablepage|free"
msgid "_Manual"
msgstr "_يدوي"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:478
+#: sw/uiconfig/swriter/ui/formattablepage.ui:452
msgctxt "formattablepage|label43"
msgid "Alignment"
msgstr "محاذاة"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:522
+#: sw/uiconfig/swriter/ui/formattablepage.ui:491
msgctxt "formattablepage|label53"
msgid "Text _direction"
msgstr "_اتجاه النص"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:553
+#: sw/uiconfig/swriter/ui/formattablepage.ui:519
msgctxt "formattablepage|label44"
msgid "Properties "
msgstr "خصائص"
@@ -9826,22 +9826,27 @@ msgctxt "headerfootermenu|insert_pagenumber"
msgid "Insert Page Number"
msgstr ""
-#: sw/uiconfig/swriter/ui/indentpage.ui:52
+#: sw/uiconfig/swriter/ui/headerfootermenu.ui:42
+msgctxt "headerfootermenu|insert_pagecount"
+msgid "Insert Page Count"
+msgstr ""
+
+#: sw/uiconfig/swriter/ui/indentpage.ui:57
msgctxt "indentpage|label1"
msgid "_Before section"
msgstr "_قبل القسم"
-#: sw/uiconfig/swriter/ui/indentpage.ui:67
+#: sw/uiconfig/swriter/ui/indentpage.ui:71
msgctxt "indentpage|label3"
msgid "_After section"
msgstr "ب_عد القسم"
-#: sw/uiconfig/swriter/ui/indentpage.ui:113
+#: sw/uiconfig/swriter/ui/indentpage.ui:115
msgctxt "indentpage|label2"
msgid "Indent"
msgstr "إزاحة"
-#: sw/uiconfig/swriter/ui/indentpage.ui:142
+#: sw/uiconfig/swriter/ui/indentpage.ui:155
msgctxt "indentpage|preview-atkobject"
msgid "Example"
msgstr "مثال"
@@ -13498,7 +13503,7 @@ msgstr "احمِ النموذج"
#: sw/uiconfig/swriter/ui/optcompatpage.ui:68
msgctxt "optcompatpage|format"
-msgid "MS Word-compatible trailing blanks"
+msgid "Word-compatible trailing blanks"
msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:69
@@ -13508,7 +13513,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:70
msgctxt "optcompatpage|format"
-msgid "A database field (e.g., MailMerge) with empty value hides its paragraph"
+msgid "Hide paragraphs of database fields (e.g., mail merge) with an empty value"
msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:71
@@ -16266,122 +16271,122 @@ msgctxt "tableproperties|background"
msgid "Background"
msgstr "الخلفية"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:25
-msgctxt "tabletextflowpage|liststore1"
-msgid "Horizontal"
-msgstr "أفقي"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:29
-msgctxt "tabletextflowpage|liststore1"
-msgid "Vertical"
-msgstr "رأسي"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:33
-msgctxt "tabletextflowpage|liststore1"
-msgid "Use superordinate object settings"
-msgstr "استخدم إعدادات كائن الاحداثيات الرئيسية "
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:47
-msgctxt "tabletextflowpage|liststore2"
-msgid "Top"
-msgstr "الجزء العلوي"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:51
-msgctxt "tabletextflowpage|liststore2"
-msgid "Centered"
-msgstr "وسط"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:55
-msgctxt "tabletextflowpage|liststore2"
-msgid "Bottom"
-msgstr "الجزء السفلي"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:97
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:53
msgctxt "tabletextflowpage|break"
msgid "_Break"
msgstr "_فاصل"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:112
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:68
msgctxt "tabletextflowpage|page"
msgid "_Page"
msgstr "_صفحة"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:132
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:87
msgctxt "tabletextflowpage|column"
msgid "Col_umn"
msgstr "_عمود"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:151
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:106
msgctxt "tabletextflowpage|before"
msgid "Be_fore"
msgstr "_قبل"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:171
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:125
msgctxt "tabletextflowpage|after"
msgid "_After"
msgstr "_بعد"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:203
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:158
msgctxt "tabletextflowpage|pagestyle"
msgid "With Page St_yle"
msgstr "ب_نمط صفحة"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:224
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:177
msgctxt "tabletextflowpage|pagenoft"
msgid "Page _number"
msgstr "ر_قم الصفحة"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:257
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:213
msgctxt "tabletextflowpage|pagestylelb-atkobject"
msgid "With Page Style"
msgstr "بنمط صفحة"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:274
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:230
msgctxt "tabletextflowpage|split"
msgid "Allow _table to split across pages and columns"
msgstr "السماح لل_جدول بالانقسام عبر الصفحات والأعمدة"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:289
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:245
msgctxt "tabletextflowpage|splitrow"
msgid "Allow row to break a_cross pages and columns"
msgstr "السماح للصّفّ بالانقسام _عبر الصفحات والأعمدة"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:306
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:262
msgctxt "tabletextflowpage|keep"
msgid "_Keep with next paragraph"
msgstr "إ_بقاء مع الفقرة التالية"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:328
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:284
msgctxt "tabletextflowpage|label40"
msgid "Text _orientation"
msgstr "ا_تجاه النص"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:361
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:298
+msgctxt "tabletextflowpage|liststore1"
+msgid "Horizontal"
+msgstr "أفقي"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:299
+msgctxt "tabletextflowpage|liststore1"
+msgid "Vertical"
+msgstr "رأسي"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:300
+msgctxt "tabletextflowpage|liststore1"
+msgid "Use superordinate object settings"
+msgstr "استخدم إعدادات كائن الاحداثيات الرئيسية "
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:321
msgctxt "tabletextflowpage|headline"
msgid "R_epeat heading"
msgstr "تكرار ال_رأس"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:383
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:343
msgctxt "tabletextflowpage|label38"
msgid "The first "
msgstr "الأول"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:396
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:356
msgctxt "tabletextflowpage|label39"
msgid "rows"
msgstr "صفوف"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:434
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:395
msgctxt "tabletextflowpage|label35"
msgid "Text Flow"
msgstr "انسياب النص"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:467
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:428
msgctxt "tabletextflowpage|label41"
msgid "_Vertical alignment"
msgstr "م_حاذاة رأسية"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:495
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:442
+msgctxt "tabletextflowpage|liststore2"
+msgid "Top"
+msgstr "الجزء العلوي"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:443
+msgctxt "tabletextflowpage|liststore2"
+msgid "Centered"
+msgstr "وسط"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:444
+msgctxt "tabletextflowpage|liststore2"
+msgid "Bottom"
+msgstr "الجزء السفلي"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:460
msgctxt "tabletextflowpage|label36"
msgid "Alignment"
msgstr "محاذاة"
@@ -17180,10 +17185,9 @@ msgid "Alphabetical Index"
msgstr ""
#: sw/uiconfig/swriter/ui/tocindexpage.ui:58
-#, fuzzy
msgctxt "tocindexpage|liststore1"
-msgid "Illustration Index"
-msgstr "فهرس الرسوم التوضيحية ١"
+msgid "Table of Figures"
+msgstr ""
#: sw/uiconfig/swriter/ui/tocindexpage.ui:62
#, fuzzy
diff --git a/source/ar/writerperfect/messages.po b/source/ar/writerperfect/messages.po
index 55655f8e5ca..3d3dcb9445e 100644
--- a/source/ar/writerperfect/messages.po
+++ b/source/ar/writerperfect/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-16 16:54+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2018-04-30 02:48+0000\n"
"Last-Translator: صفا الفليج <safa1996alfulaij@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -66,97 +66,97 @@ msgctxt "exportepub|generalft"
msgid "General"
msgstr "عام"
-#: writerperfect/uiconfig/ui/exportepub.ui:122
+#: writerperfect/uiconfig/ui/exportepub.ui:121
msgctxt "exportepub|versionft"
msgid "Version:"
msgstr "إصدارة:"
-#: writerperfect/uiconfig/ui/exportepub.ui:139
+#: writerperfect/uiconfig/ui/exportepub.ui:138
msgctxt "exportepub|epub3"
msgid "EPUB 3.0"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:140
+#: writerperfect/uiconfig/ui/exportepub.ui:139
msgctxt "exportepub|epub2"
msgid "EPUB 2.0"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:175
+#: writerperfect/uiconfig/ui/exportepub.ui:174
msgctxt "exportepub|splitft"
msgid "Split method:"
msgstr "طريقة التقسيم:"
-#: writerperfect/uiconfig/ui/exportepub.ui:192
+#: writerperfect/uiconfig/ui/exportepub.ui:191
msgctxt "exportepub|splitpage"
msgid "Page break"
msgstr "فاصل صفحات"
-#: writerperfect/uiconfig/ui/exportepub.ui:193
+#: writerperfect/uiconfig/ui/exportepub.ui:192
msgctxt "exportepub|splitheading"
msgid "Heading"
msgstr "عنوان رئيسي"
-#: writerperfect/uiconfig/ui/exportepub.ui:228
+#: writerperfect/uiconfig/ui/exportepub.ui:227
msgctxt "exportepub|layoutft"
msgid "Layout method:"
msgstr "طريقة التخطيط:"
-#: writerperfect/uiconfig/ui/exportepub.ui:245
+#: writerperfect/uiconfig/ui/exportepub.ui:244
msgctxt "exportepub|layoutreflowable"
msgid "Reflowable"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:246
+#: writerperfect/uiconfig/ui/exportepub.ui:245
msgctxt "exportepub|layoutfixed"
msgid "Fixed"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:281
+#: writerperfect/uiconfig/ui/exportepub.ui:280
msgctxt "exportepub|coverimageft"
msgid "Custom cover image:"
msgstr "صورة غلاف مخصصة:"
-#: writerperfect/uiconfig/ui/exportepub.ui:311
+#: writerperfect/uiconfig/ui/exportepub.ui:310
msgctxt "exportepub|coverbutton"
msgid "Browse..."
msgstr "تصفّح…"
-#: writerperfect/uiconfig/ui/exportepub.ui:355
+#: writerperfect/uiconfig/ui/exportepub.ui:354
msgctxt "exportepub|mediadirft"
msgid "Custom media directory:"
msgstr "دليل وسائط مخصص:"
-#: writerperfect/uiconfig/ui/exportepub.ui:385
+#: writerperfect/uiconfig/ui/exportepub.ui:384
msgctxt "exportepub|mediabutton"
msgid "Browse..."
msgstr "تصفّح…"
-#: writerperfect/uiconfig/ui/exportepub.ui:429
+#: writerperfect/uiconfig/ui/exportepub.ui:428
msgctxt "exportepub|metadataft"
msgid "Metadata"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:470
+#: writerperfect/uiconfig/ui/exportepub.ui:468
msgctxt "exportepub|identifierft"
msgid "Identifier:"
msgstr "المعرِّف:"
-#: writerperfect/uiconfig/ui/exportepub.ui:485
+#: writerperfect/uiconfig/ui/exportepub.ui:483
msgctxt "exportepub|titleft"
msgid "Title:"
msgstr "العنوان:"
-#: writerperfect/uiconfig/ui/exportepub.ui:511
+#: writerperfect/uiconfig/ui/exportepub.ui:509
msgctxt "exportepub|authorft"
msgid "Author:"
msgstr "المؤلف:"
-#: writerperfect/uiconfig/ui/exportepub.ui:537
+#: writerperfect/uiconfig/ui/exportepub.ui:535
msgctxt "exportepub|languageft"
msgid "Language:"
msgstr "اللغة:"
-#: writerperfect/uiconfig/ui/exportepub.ui:563
+#: writerperfect/uiconfig/ui/exportepub.ui:561
msgctxt "exportepub|dateft"
msgid "Date:"
msgstr "التاريخ:"
diff --git a/source/as/cui/messages.po b/source/as/cui/messages.po
index 0ef679210a3..424e268d3ee 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+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"
@@ -10384,106 +10384,106 @@ msgctxt "positionsizedialog|PositionAndSizeDialog"
msgid "Position and Size"
msgstr "অৱস্থান আৰু স্পেইচিং"
-#: cui/uiconfig/ui/positionsizedialog.ui:107
+#: cui/uiconfig/ui/positionsizedialog.ui:136
#, fuzzy
msgctxt "positionsizedialog|RID_SVXPAGE_POSITION_SIZE"
msgid "Position and Size"
msgstr "অৱস্থান আৰু স্পেইচিং"
-#: cui/uiconfig/ui/positionsizedialog.ui:129
+#: cui/uiconfig/ui/positionsizedialog.ui:182
#, fuzzy
msgctxt "positionsizedialog|RID_SVXPAGE_SWPOSSIZE"
msgid "Position and Size"
msgstr "অৱস্থান আৰু স্পেইচিং"
-#: cui/uiconfig/ui/positionsizedialog.ui:152
+#: cui/uiconfig/ui/positionsizedialog.ui:229
msgctxt "positionsizedialog|RID_SVXPAGE_ANGLE"
msgid "Rotation"
msgstr "ঘূৰ্ণন"
-#: cui/uiconfig/ui/positionsizedialog.ui:175
+#: cui/uiconfig/ui/positionsizedialog.ui:276
msgctxt "positionsizedialog|RID_SVXPAGE_SLANT"
msgid "Slant & Corner Radius"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:40
+#: cui/uiconfig/ui/possizetabpage.ui:61
#, fuzzy
msgctxt "possizetabpage|FT_POS_X"
msgid "Position _X:"
msgstr "স্থান"
-#: cui/uiconfig/ui/possizetabpage.ui:56
+#: cui/uiconfig/ui/possizetabpage.ui:75
#, fuzzy
msgctxt "possizetabpage|FT_POS_Y"
msgid "Position _Y:"
msgstr "স্থান"
-#: cui/uiconfig/ui/possizetabpage.ui:110
+#: cui/uiconfig/ui/possizetabpage.ui:128
msgctxt "possizetabpage|FT_POSREFERENCE"
msgid "_Base point:"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:148
+#: cui/uiconfig/ui/possizetabpage.ui:182
msgctxt "possizetabpage|label1"
msgid "Position"
msgstr "স্থান"
-#: cui/uiconfig/ui/possizetabpage.ui:190
+#: cui/uiconfig/ui/possizetabpage.ui:224
#, fuzzy
msgctxt "possizetabpage|FT_WIDTH"
msgid "Wi_dth:"
msgstr "প্ৰস্থ"
-#: cui/uiconfig/ui/possizetabpage.ui:206
+#: cui/uiconfig/ui/possizetabpage.ui:238
#, fuzzy
msgctxt "possizetabpage|FT_HEIGHT"
msgid "H_eight:"
msgstr "উচ্চতা"
-#: cui/uiconfig/ui/possizetabpage.ui:247
+#: cui/uiconfig/ui/possizetabpage.ui:276
#, fuzzy
msgctxt "possizetabpage|CBX_SCALE"
msgid "_Keep ratio"
msgstr "অনুপাত ৰাখক"
-#: cui/uiconfig/ui/possizetabpage.ui:279
+#: cui/uiconfig/ui/possizetabpage.ui:307
msgctxt "possizetabpage|FT_SIZEREFERENCE"
msgid "Base _point:"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:317
+#: cui/uiconfig/ui/possizetabpage.ui:361
msgctxt "possizetabpage|label2"
msgid "Size"
msgstr "আকাৰ"
-#: cui/uiconfig/ui/possizetabpage.ui:356
+#: cui/uiconfig/ui/possizetabpage.ui:401
#, fuzzy
msgctxt "possizetabpage|TSB_POSPROTECT"
msgid "Positio_n"
msgstr "স্থান"
-#: cui/uiconfig/ui/possizetabpage.ui:373
+#: cui/uiconfig/ui/possizetabpage.ui:418
msgctxt "possizetabpage|TSB_SIZEPROTECT"
msgid "_Size"
msgstr "আকাৰ (_S)"
-#: cui/uiconfig/ui/possizetabpage.ui:397
+#: cui/uiconfig/ui/possizetabpage.ui:441
#, fuzzy
msgctxt "possizetabpage|label3"
msgid "Protect"
msgstr "সুৰক্ষা দিয়ক (~P)"
-#: cui/uiconfig/ui/possizetabpage.ui:430
+#: cui/uiconfig/ui/possizetabpage.ui:475
msgctxt "possizetabpage|TSB_AUTOGROW_WIDTH"
msgid "_Fit width to text"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:447
+#: cui/uiconfig/ui/possizetabpage.ui:492
msgctxt "possizetabpage|TSB_AUTOGROW_HEIGHT"
msgid "Fit _height to text"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:471
+#: cui/uiconfig/ui/possizetabpage.ui:515
msgctxt "possizetabpage|label4"
msgid "Adapt"
msgstr ""
@@ -10695,52 +10695,52 @@ msgctxt "recordnumberdialog|label2"
msgid "go to record"
msgstr ""
-#: cui/uiconfig/ui/rotationtabpage.ui:52
+#: cui/uiconfig/ui/rotationtabpage.ui:56
#, fuzzy
msgctxt "rotationtabpage|FT_POS_X"
msgid "Position _X:"
msgstr "স্থান"
-#: cui/uiconfig/ui/rotationtabpage.ui:66
+#: cui/uiconfig/ui/rotationtabpage.ui:70
#, fuzzy
msgctxt "rotationtabpage|FT_POS_Y"
msgid "Position _Y:"
msgstr "স্থান"
-#: cui/uiconfig/ui/rotationtabpage.ui:116
+#: cui/uiconfig/ui/rotationtabpage.ui:123
#, fuzzy
msgctxt "rotationtabpage|FT_POSPRESETS"
msgid "_Default settings:"
msgstr "অবিকল্পত সংহতিসমূহ"
-#: cui/uiconfig/ui/rotationtabpage.ui:130
+#: cui/uiconfig/ui/rotationtabpage.ui:151
msgctxt "rotationtabpage|CTL_RECT|tooltip_text"
msgid "Rotation point"
msgstr ""
-#: cui/uiconfig/ui/rotationtabpage.ui:155
+#: cui/uiconfig/ui/rotationtabpage.ui:178
msgctxt "rotationtabpage|label1"
msgid "Pivot Point"
msgstr ""
-#: cui/uiconfig/ui/rotationtabpage.ui:197
+#: cui/uiconfig/ui/rotationtabpage.ui:220
#, fuzzy
msgctxt "rotationtabpage|FT_ANGLE"
msgid "_Angle:"
msgstr "কোণ (_A)"
-#: cui/uiconfig/ui/rotationtabpage.ui:238
+#: cui/uiconfig/ui/rotationtabpage.ui:263
#, fuzzy
msgctxt "rotationtabpage|FT_ANGLEPRESETS"
msgid "Default _settings:"
msgstr "অবিকল্পত সংহতিসমূহ"
-#: cui/uiconfig/ui/rotationtabpage.ui:252
+#: cui/uiconfig/ui/rotationtabpage.ui:287
msgctxt "rotationtabpage|CTL_ANGLE|tooltip_text"
msgid "Rotation Angle"
msgstr "ঘূৰ্ণন কোণ"
-#: cui/uiconfig/ui/rotationtabpage.ui:277
+#: cui/uiconfig/ui/rotationtabpage.ui:314
msgctxt "rotationtabpage|label2"
msgid "Rotation Angle"
msgstr "ঘূৰ্ণন কোণ"
@@ -11134,56 +11134,56 @@ msgctxt "similaritysearchdialog|relaxbox"
msgid "_Combine"
msgstr "একত্ৰিত কৰক (~i)"
-#: cui/uiconfig/ui/slantcornertabpage.ui:50
+#: cui/uiconfig/ui/slantcornertabpage.ui:70
msgctxt "slantcornertabpage|label5"
msgid "_X:"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:88
+#: cui/uiconfig/ui/slantcornertabpage.ui:110
msgctxt "slantcornertabpage|label6"
msgid "_Y:"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:125
+#: cui/uiconfig/ui/slantcornertabpage.ui:149
msgctxt "slantcornertabpage|label3"
msgid "Control Point 1"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:159
+#: cui/uiconfig/ui/slantcornertabpage.ui:183
#, fuzzy
msgctxt "slantcornertabpage|FT_RADIUS"
msgid "_Radius:"
msgstr "ব্যাসাৰ্ধ"
-#: cui/uiconfig/ui/slantcornertabpage.ui:189
+#: cui/uiconfig/ui/slantcornertabpage.ui:214
#, fuzzy
msgctxt "slantcornertabpage|label1"
msgid "Corner Radius"
msgstr "শ্লান্ট আৰু চুক ব্যাসাৰ্ধ"
-#: cui/uiconfig/ui/slantcornertabpage.ui:223
+#: cui/uiconfig/ui/slantcornertabpage.ui:248
#, fuzzy
msgctxt "slantcornertabpage|FT_ANGLE"
msgid "_Angle:"
msgstr "কোণ (_A)"
-#: cui/uiconfig/ui/slantcornertabpage.ui:253
+#: cui/uiconfig/ui/slantcornertabpage.ui:279
#, fuzzy
msgctxt "slantcornertabpage|label2"
msgid "Slant"
msgstr "শ্লাণ্ট ওপৰৰ"
-#: cui/uiconfig/ui/slantcornertabpage.ui:294
+#: cui/uiconfig/ui/slantcornertabpage.ui:320
msgctxt "slantcornertabpage|label4"
msgid "_X:"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:332
+#: cui/uiconfig/ui/slantcornertabpage.ui:360
msgctxt "slantcornertabpage|label7"
msgid "_Y:"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:369
+#: cui/uiconfig/ui/slantcornertabpage.ui:399
msgctxt "slantcornertabpage|label8"
msgid "Control Point 2"
msgstr ""
@@ -11475,123 +11475,123 @@ msgctxt "storedwebconnectiondialog|change"
msgid "_Change Password..."
msgstr "পাছৱাৰ্ড পৰিবৰ্তন কৰক (_C)..."
-#: cui/uiconfig/ui/swpossizepage.ui:74
+#: cui/uiconfig/ui/swpossizepage.ui:85
msgctxt "swpossizepage|widthft"
msgid "_Width:"
msgstr "প্ৰস্থ (_W):"
-#: cui/uiconfig/ui/swpossizepage.ui:111
+#: cui/uiconfig/ui/swpossizepage.ui:123
#, fuzzy
msgctxt "swpossizepage|heightft"
msgid "H_eight:"
msgstr "উচ্চতা"
-#: cui/uiconfig/ui/swpossizepage.ui:128
+#: cui/uiconfig/ui/swpossizepage.ui:141
#, fuzzy
msgctxt "swpossizepage|ratio"
msgid "_Keep ratio"
msgstr "অনুপাত ৰাখক"
-#: cui/uiconfig/ui/swpossizepage.ui:149
+#: cui/uiconfig/ui/swpossizepage.ui:162
msgctxt "swpossizepage|label2"
msgid "Size"
msgstr "আকাৰ"
-#: cui/uiconfig/ui/swpossizepage.ui:205
+#: cui/uiconfig/ui/swpossizepage.ui:218
#, fuzzy
msgctxt "swpossizepage|topage"
msgid "To _page"
msgstr "পৃষ্ঠালৈ"
-#: cui/uiconfig/ui/swpossizepage.ui:222
+#: cui/uiconfig/ui/swpossizepage.ui:234
#, fuzzy
msgctxt "swpossizepage|topara"
msgid "To paragrap_h"
msgstr "পেৰেগ্ৰাফলৈ"
-#: cui/uiconfig/ui/swpossizepage.ui:238
+#: cui/uiconfig/ui/swpossizepage.ui:250
#, fuzzy
msgctxt "swpossizepage|tochar"
msgid "To cha_racter"
msgstr "আখৰ"
-#: cui/uiconfig/ui/swpossizepage.ui:254
+#: cui/uiconfig/ui/swpossizepage.ui:266
#, fuzzy
msgctxt "swpossizepage|aschar"
msgid "_As character"
msgstr "আখৰ"
-#: cui/uiconfig/ui/swpossizepage.ui:270
+#: cui/uiconfig/ui/swpossizepage.ui:282
#, fuzzy
msgctxt "swpossizepage|toframe"
msgid "To _frame"
msgstr "ফ্ৰেমলৈ"
-#: cui/uiconfig/ui/swpossizepage.ui:292
+#: cui/uiconfig/ui/swpossizepage.ui:304
msgctxt "swpossizepage|label1"
msgid "Anchor"
msgstr "সংযোগ কৰক"
-#: cui/uiconfig/ui/swpossizepage.ui:333
+#: cui/uiconfig/ui/swpossizepage.ui:344
#, fuzzy
msgctxt "swpossizepage|horiposft"
msgid "Hori_zontal:"
msgstr "আনুভুমিক (‌_z)"
-#: cui/uiconfig/ui/swpossizepage.ui:347
+#: cui/uiconfig/ui/swpossizepage.ui:358
msgctxt "swpossizepage|horibyft"
msgid "b_y:"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:361
+#: cui/uiconfig/ui/swpossizepage.ui:372
msgctxt "swpossizepage|vertbyft"
msgid "_by:"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:375
+#: cui/uiconfig/ui/swpossizepage.ui:386
#, fuzzy
msgctxt "swpossizepage|horitoft"
msgid "_to:"
msgstr "লৈ (_T)"
-#: cui/uiconfig/ui/swpossizepage.ui:421
+#: cui/uiconfig/ui/swpossizepage.ui:433
#, fuzzy
msgctxt "swpossizepage|vertposft"
msgid "_Vertical:"
msgstr "উলম্ব (_V)"
-#: cui/uiconfig/ui/swpossizepage.ui:457
+#: cui/uiconfig/ui/swpossizepage.ui:470
msgctxt "swpossizepage|verttoft"
msgid "t_o:"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:478
+#: cui/uiconfig/ui/swpossizepage.ui:492
msgctxt "swpossizepage|mirror"
msgid "_Mirror on even pages"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:495
+#: cui/uiconfig/ui/swpossizepage.ui:509
msgctxt "swpossizepage|followtextflow"
msgid "Follow te_xt flow"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:518
+#: cui/uiconfig/ui/swpossizepage.ui:532
msgctxt "swpossizepage|label11"
msgid "Position"
msgstr "স্থান"
-#: cui/uiconfig/ui/swpossizepage.ui:549
+#: cui/uiconfig/ui/swpossizepage.ui:563
#, fuzzy
msgctxt "swpossizepage|pos"
msgid "Positio_n"
msgstr "স্থান"
-#: cui/uiconfig/ui/swpossizepage.ui:565
+#: cui/uiconfig/ui/swpossizepage.ui:579
msgctxt "swpossizepage|size"
msgid "_Size"
msgstr "আকাৰ (_S)"
-#: cui/uiconfig/ui/swpossizepage.ui:587
+#: cui/uiconfig/ui/swpossizepage.ui:601
#, fuzzy
msgctxt "swpossizepage|label3"
msgid "Protect"
@@ -11796,13 +11796,13 @@ msgctxt "textattrtabpage|label2"
msgid "Spacing to Borders"
msgstr ""
-#: cui/uiconfig/ui/textattrtabpage.ui:425
+#: cui/uiconfig/ui/textattrtabpage.ui:423
#, fuzzy
msgctxt "textattrtabpage|TSB_FULL_WIDTH"
msgid "Full _width"
msgstr "সম্পূর্ণ প্রস্থ"
-#: cui/uiconfig/ui/textattrtabpage.ui:448
+#: cui/uiconfig/ui/textattrtabpage.ui:446
msgctxt "textattrtabpage|label3"
msgid "Text Anchor"
msgstr ""
diff --git a/source/as/filter/source/config/fragments/filters.po b/source/as/filter/source/config/fragments/filters.po
index 409817552e3..be7343b6b71 100644
--- a/source/as/filter/source/config/fragments/filters.po
+++ b/source/as/filter/source/config/fragments/filters.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: 2018-05-16 16:54+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2016-12-01 12:07+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: as_IN <kde-i18n-doc@kde.org>\n"
@@ -468,8 +468,8 @@ msgctxt ""
"MS Word 2003 XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Word 2003 XML"
-msgstr "মাইক্ৰছফট ৱৰ্ড 2003 XML"
+msgid "Word 2003 XML"
+msgstr ""
#: MS_Word_2007_XML.xcu
msgctxt ""
@@ -1295,7 +1295,7 @@ msgctxt ""
"Calc MS Excel 2007 VBA XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Excel 2007-2016 XML (macro enabled)"
+msgid "Excel 2007–2019 (macro-enabled)"
msgstr ""
#: calc_MS_Excel_2007_XML.xcu
diff --git a/source/as/filter/source/config/fragments/types.po b/source/as/filter/source/config/fragments/types.po
index c45891323ba..79c7950fe6a 100644
--- a/source/as/filter/source/config/fragments/types.po
+++ b/source/as/filter/source/config/fragments/types.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: 2018-05-08 15:11+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2015-11-11 00:40+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: as_IN <kde-i18n-doc@kde.org>\n"
@@ -293,8 +293,8 @@ msgctxt ""
"writer_MS_Word_2003_XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Word 2003 XML"
-msgstr "Microsoft Word 2003 XML"
+msgid "Word 2003 XML"
+msgstr ""
#: writer_MS_Word_2007_XML.xcu
msgctxt ""
diff --git a/source/as/fpicker/messages.po b/source/as/fpicker/messages.po
index 19cb8ce701a..58cfb7f8aac 100644
--- a/source/as/fpicker/messages.po
+++ b/source/as/fpicker/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+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"
@@ -281,13 +281,13 @@ msgstr ""
#: fpicker/uiconfig/ui/foldernamedialog.ui:8
msgctxt "foldernamedialog|FolderNameDialog"
-msgid "Folder Name ?"
-msgstr "ফোল্ডাৰৰ নাম ?"
+msgid "Folder Name"
+msgstr ""
#: fpicker/uiconfig/ui/foldernamedialog.ui:91
msgctxt "foldernamedialog|label2"
-msgid "Na_me"
-msgstr "নাম (_m)"
+msgid "Na_me:"
+msgstr ""
#: fpicker/uiconfig/ui/foldernamedialog.ui:122
#, fuzzy
diff --git a/source/as/officecfg/registry/data/org/openoffice/Office/UI.po b/source/as/officecfg/registry/data/org/openoffice/Office/UI.po
index 00f16764b81..d5188235563 100644
--- a/source/as/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/as/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-22 13:17+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2016-12-01 12:13+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Assamese <kde-i18n-doc@kde.org>\n"
@@ -26938,8 +26938,8 @@ msgctxt ""
"..WriterCommands.UserInterface.Commands..uno:TextAttributes\n"
"Label\n"
"value.text"
-msgid "Text Attributes"
-msgstr "লিখনী বৈশিষ্টসমূহ"
+msgid "Text Attributes..."
+msgstr ""
#: WriterCommands.xcu
msgctxt ""
diff --git a/source/as/readlicense_oo/docs.po b/source/as/readlicense_oo/docs.po
index 7aa253c5674..a4c2880f9d9 100644
--- a/source/as/readlicense_oo/docs.po
+++ b/source/as/readlicense_oo/docs.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: 2018-04-17 15:54+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2016-05-01 18:56+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Assamese <kde-i18n-doc@kde.org>\n"
@@ -117,7 +117,7 @@ msgctxt ""
"readme.xrm\n"
"macxiOSX\n"
"readmeitem.text"
-msgid "MacOSX 10.8 (Mountain Lion) or higher"
+msgid "MacOSX 10.9 (Mavericks) or higher"
msgstr ""
#: readme.xrm
diff --git a/source/as/sc/messages.po b/source/as/sc/messages.po
index 8a70bf19a35..8fec09c6bef 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-12 14:40+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"
@@ -1870,16 +1870,21 @@ msgid "Nested arrays are not supported."
msgstr "নেস্টেড এৰেসমূহ অসমর্থিত।"
#: sc/inc/globstr.hrc:390
+msgctxt "STR_ERR_LONG_BAD_ARRAY_CONTENT"
+msgid "Unsupported inline array content."
+msgstr ""
+
+#: sc/inc/globstr.hrc:391
msgctxt "STR_UNDO_TEXTTOCOLUMNS"
msgid "Text to Columns"
msgstr "লিপিৰ পৰা স্তম্ভলৈ"
-#: sc/inc/globstr.hrc:391
+#: sc/inc/globstr.hrc:392
msgctxt "STR_DOC_UPDATED"
msgid "Your spreadsheet has been updated with changes saved by other users."
msgstr "অন্যই কৰা পৰিবৰ্তনৰে আপোনাৰ spreadsheet উন্নত কৰা হৈছে।"
-#: sc/inc/globstr.hrc:392
+#: sc/inc/globstr.hrc:393
msgctxt "STR_DOC_WILLBESAVED"
msgid ""
"The spreadsheet must be saved now to activate sharing mode.\n"
@@ -1890,7 +1895,7 @@ msgstr ""
"\n"
"আপুনি আগবাঢ়িব নে?"
-#: sc/inc/globstr.hrc:393
+#: sc/inc/globstr.hrc:394
msgctxt "STR_DOC_WILLNOTBESAVED"
msgid ""
"Already resolved merge conflicts will be lost and your changes to the shared spreadsheet will not be saved.\n"
@@ -1901,7 +1906,7 @@ msgstr ""
"\n"
"আপুনি আগবাঢ়িব নে?"
-#: sc/inc/globstr.hrc:394
+#: sc/inc/globstr.hrc:395
msgctxt "STR_DOC_DISABLESHARED"
msgid ""
"Disabling shared mode of a spreadsheet hinders all other users of the shared spreadsheet to merge back their work.\n"
@@ -1912,7 +1917,7 @@ msgstr ""
"\n"
"আপুনি আগবাঢ়িব নে?"
-#: sc/inc/globstr.hrc:395
+#: sc/inc/globstr.hrc:396
msgctxt "STR_DOC_NOLONGERSHARED"
msgid ""
"This spreadsheet is no longer in shared mode.\n"
@@ -1923,7 +1928,7 @@ msgstr ""
"\n"
"আপোনাৰ spreadsheet অন্য ফাইলত ৰক্ষা কৰক আৰু শেয়াৰ কৰা spreadsheet ত নিজে পৰিবৰ্তন কৰক।"
-#: sc/inc/globstr.hrc:396
+#: sc/inc/globstr.hrc:397
msgctxt "STR_FILE_LOCKED_TRY_LATER"
msgid ""
"The shared spreadsheet file is locked due to a merge in progress by user: '%1'\n"
@@ -1934,7 +1939,7 @@ msgstr ""
"\n"
"লক ফাইলৰ শেয়াৰিং ধৰণ নিষ্ক্ৰিয় কৰিব নোৱাৰি। পিছত চেষ্টা কৰক।"
-#: sc/inc/globstr.hrc:397
+#: sc/inc/globstr.hrc:398
msgctxt "STR_FILE_LOCKED_SAVE_LATER"
msgid ""
"The shared spreadsheet file is locked due to a merge in progress by user: '%1'\n"
@@ -1945,147 +1950,147 @@ msgstr ""
"\n"
"পিছত চেষ্টা কৰক পৰিবৰ্তন ৰক্ষা কৰিবলৈ।"
-#: sc/inc/globstr.hrc:398
+#: sc/inc/globstr.hrc:399
msgctxt "STR_UNKNOWN_USER"
msgid "Unknown User"
msgstr "অজ্ঞাত ব্যৱহাৰকৰ্তা"
-#: sc/inc/globstr.hrc:399
+#: sc/inc/globstr.hrc:400
msgctxt "STR_SHAPE_AUTOSHAPE"
msgid "AutoShape"
msgstr "স্বআকৃতি"
-#: sc/inc/globstr.hrc:400
+#: sc/inc/globstr.hrc:401
msgctxt "STR_SHAPE_RECTANGLE"
msgid "Rectangle"
msgstr "আয়তক্ষেত্ৰ"
-#: sc/inc/globstr.hrc:401
+#: sc/inc/globstr.hrc:402
msgctxt "STR_SHAPE_LINE"
msgid "Line"
msgstr "ৰেখা"
-#: sc/inc/globstr.hrc:402
+#: sc/inc/globstr.hrc:403
msgctxt "STR_SHAPE_OVAL"
msgid "Oval"
msgstr "ডিম্বাকৃতিৰ"
-#: sc/inc/globstr.hrc:403
+#: sc/inc/globstr.hrc:404
msgctxt "STR_FORM_BUTTON"
msgid "Button"
msgstr "বুটাম"
-#: sc/inc/globstr.hrc:404
+#: sc/inc/globstr.hrc:405
msgctxt "STR_FORM_CHECKBOX"
msgid "Check Box"
msgstr "চেক বাকচ"
-#: sc/inc/globstr.hrc:405
+#: sc/inc/globstr.hrc:406
msgctxt "STR_FORM_OPTIONBUTTON"
msgid "Option Button"
msgstr "বিকল্প বুটাম"
-#: sc/inc/globstr.hrc:406
+#: sc/inc/globstr.hrc:407
msgctxt "STR_FORM_LABEL"
msgid "Label"
msgstr "লেবেল"
-#: sc/inc/globstr.hrc:407
+#: sc/inc/globstr.hrc:408
msgctxt "STR_FORM_LISTBOX"
msgid "List Box"
msgstr "তালিকা বাকছ"
-#: sc/inc/globstr.hrc:408
+#: sc/inc/globstr.hrc:409
msgctxt "STR_FORM_GROUPBOX"
msgid "Group Box"
msgstr "গোট বাকছ"
-#: sc/inc/globstr.hrc:409
+#: sc/inc/globstr.hrc:410
msgctxt "STR_FORM_DROPDOWN"
msgid "Drop Down"
msgstr "ড্ৰপ ডাউন"
-#: sc/inc/globstr.hrc:410
+#: sc/inc/globstr.hrc:411
msgctxt "STR_FORM_SPINNER"
msgid "Spinner"
msgstr "স্পিনাৰ"
-#: sc/inc/globstr.hrc:411
+#: sc/inc/globstr.hrc:412
msgctxt "STR_FORM_SCROLLBAR"
msgid "Scroll Bar"
msgstr "স্ক্ৰল বাৰ"
-#: sc/inc/globstr.hrc:412
+#: sc/inc/globstr.hrc:413
msgctxt "STR_STYLE_FAMILY_CELL"
msgid "Cell Styles"
msgstr "শৈলীবোৰ"
-#: sc/inc/globstr.hrc:413
+#: sc/inc/globstr.hrc:414
msgctxt "STR_STYLE_FAMILY_PAGE"
msgid "Page Styles"
msgstr "ৰেখা শৈলীবোৰ"
-#: sc/inc/globstr.hrc:414
+#: sc/inc/globstr.hrc:415
msgctxt "STR_ERR_DATAPILOTSOURCE"
msgid "Pivot table source data is invalid."
msgstr "পিভট টেবুল উৎস তথ্য অবৈধ।"
-#: sc/inc/globstr.hrc:415
+#: sc/inc/globstr.hrc:416
msgctxt "STR_OPTIONS_WARN_SEPARATORS"
msgid "Because the current formula separator settings conflict with the locale, the formula separators have been reset to their default values."
msgstr "যিহেতু বৰ্তমান সুত্ৰ বিচ্ছেদক সংহতিসমূহ স্থানীয়ৰ লগত দন্দ কৰে, সুত্ৰ বিচ্ছেদকসমূহক তেওলোকৰ অবিকল্পিত মানলে পুনৰ সংহতি কৰা হৈছে।"
-#: sc/inc/globstr.hrc:416
+#: sc/inc/globstr.hrc:417
msgctxt "STR_UNDO_INSERT_CURRENT_DATE"
msgid "Insert Current Date"
msgstr "বৰ্তমান তাৰিখ সুমুৱাওক"
-#: sc/inc/globstr.hrc:417
+#: sc/inc/globstr.hrc:418
msgctxt "STR_UNDO_INSERT_CURRENT_TIME"
msgid "Insert Current Time"
msgstr "বৰ্তমান সময় সুমুৱাওক"
-#: sc/inc/globstr.hrc:418
+#: sc/inc/globstr.hrc:419
msgctxt "STR_MANAGE_NAMES"
msgid "Manage Names..."
msgstr "নামসমূহ ব্যৱস্থাপনা কৰক..."
-#: sc/inc/globstr.hrc:419
+#: sc/inc/globstr.hrc:420
msgctxt "STR_HEADER_NAME"
msgid "Name"
msgstr "নাম"
-#: sc/inc/globstr.hrc:420
+#: sc/inc/globstr.hrc:421
msgctxt "STR_HEADER_RANGE_OR_EXPR"
msgid "Range or formula expression"
msgstr ""
-#: sc/inc/globstr.hrc:421
+#: sc/inc/globstr.hrc:422
msgctxt "STR_HEADER_SCOPE"
msgid "Scope"
msgstr "সুবিধা"
-#: sc/inc/globstr.hrc:422
+#: sc/inc/globstr.hrc:423
msgctxt "STR_MULTI_SELECT"
msgid "(multiple)"
msgstr "(একাধিক)"
-#: sc/inc/globstr.hrc:423
+#: sc/inc/globstr.hrc:424
msgctxt "STR_GLOBAL_SCOPE"
msgid "Document (Global)"
msgstr "দস্তাবেজ (বিশ্বব্যাপী)"
-#: sc/inc/globstr.hrc:424
+#: sc/inc/globstr.hrc:425
msgctxt "STR_ERR_NAME_EXISTS"
msgid "Invalid name. Already in use for the selected scope."
msgstr "অবৈধ নাম। নিৰ্বাচিত সুবিধাৰ বাবে ইতিমধ্যে ব্যৱহৃত।"
-#: sc/inc/globstr.hrc:425
+#: sc/inc/globstr.hrc:426
msgctxt "STR_ERR_NAME_INVALID"
msgid "Invalid name. Only use letters, numbers and underscore."
msgstr "অবৈধ নাম। কেৱল আখৰ, নম্বৰ আৰু আন্ডাৰস্কৌৰ ব্যৱহাৰ কৰক।"
-#: sc/inc/globstr.hrc:426
+#: sc/inc/globstr.hrc:427
msgctxt "STR_UNSAVED_EXT_REF"
msgid ""
"This Document contains external references to unsaved documents.\n"
@@ -2096,218 +2101,218 @@ msgstr ""
"\n"
"আপুনি আগবাঢ়িব বিচাৰে নে?"
-#: sc/inc/globstr.hrc:427
+#: sc/inc/globstr.hrc:428
msgctxt "STR_CLOSE_WITH_UNSAVED_REFS"
msgid "This Document is referenced by another document and not yet saved. Closing it without saving will result in data loss."
msgstr "এই দস্তাবেজ অন্য দস্তাবেজ দ্বাৰা প্ৰসংগ কৰা হৈছে আৰু এতিয়াও সংৰক্ষণ কৰা হোৱা নাই। ইয়াক সংৰক্ষণ নকৰি বন্ধ কৰিলে তথ্যৰ হানি হব।"
-#: sc/inc/globstr.hrc:428
+#: sc/inc/globstr.hrc:429
msgctxt "STR_HEADER_RANGE"
msgid "Range"
msgstr "বিস্তাৰ"
-#: sc/inc/globstr.hrc:429
+#: sc/inc/globstr.hrc:430
msgctxt "STR_HEADER_COND"
msgid "First Condition"
msgstr "প্ৰথম চুক্তি"
-#: sc/inc/globstr.hrc:430
+#: sc/inc/globstr.hrc:431
msgctxt "STR_COND_CONDITION"
msgid "Cell value is"
msgstr "কোষ মান হল"
-#: sc/inc/globstr.hrc:431
+#: sc/inc/globstr.hrc:432
msgctxt "STR_COND_COLORSCALE"
msgid "ColorScale"
msgstr "ৰঙস্কেইল"
-#: sc/inc/globstr.hrc:432
+#: sc/inc/globstr.hrc:433
msgctxt "STR_COND_DATABAR"
msgid "DataBar"
msgstr "তথ্যবাৰ"
-#: sc/inc/globstr.hrc:433
+#: sc/inc/globstr.hrc:434
msgctxt "STR_COND_ICONSET"
msgid "IconSet"
msgstr "IconSet"
-#: sc/inc/globstr.hrc:434
+#: sc/inc/globstr.hrc:435
msgctxt "STR_COND_BETWEEN"
msgid "between"
msgstr "মাজত"
-#: sc/inc/globstr.hrc:435
+#: sc/inc/globstr.hrc:436
msgctxt "STR_COND_NOTBETWEEN"
msgid "not between"
msgstr "মাজত নহয়"
-#: sc/inc/globstr.hrc:436
+#: sc/inc/globstr.hrc:437
msgctxt "STR_COND_UNIQUE"
msgid "unique"
msgstr "অবিকল্প"
-#: sc/inc/globstr.hrc:437
+#: sc/inc/globstr.hrc:438
msgctxt "STR_COND_DUPLICATE"
msgid "duplicate"
msgstr "কপি"
-#: sc/inc/globstr.hrc:438
+#: sc/inc/globstr.hrc:439
msgctxt "STR_COND_FORMULA"
msgid "Formula is"
msgstr "সূত্ৰ হল"
-#: sc/inc/globstr.hrc:439
+#: sc/inc/globstr.hrc:440
msgctxt "STR_COND_TOP10"
msgid "Top Elements"
msgstr "ওপৰৰ উপাদানসমূহ"
-#: sc/inc/globstr.hrc:440
+#: sc/inc/globstr.hrc:441
msgctxt "STR_COND_BOTTOM10"
msgid "Bottom Elements"
msgstr "তলৰ উপাদানসমূহ"
-#: sc/inc/globstr.hrc:441
+#: sc/inc/globstr.hrc:442
msgctxt "STR_COND_TOP_PERCENT"
msgid "Top Percent"
msgstr "ওপৰৰ শতাংশ"
-#: sc/inc/globstr.hrc:442
+#: sc/inc/globstr.hrc:443
msgctxt "STR_COND_DATE"
msgid "Date is"
msgstr "তাৰিখ হল"
-#: sc/inc/globstr.hrc:443
+#: sc/inc/globstr.hrc:444
msgctxt "STR_COND_BOTTOM_PERCENT"
msgid "Bottom Percent"
msgstr "তলৰ শতাংশ"
-#: sc/inc/globstr.hrc:444
+#: sc/inc/globstr.hrc:445
msgctxt "STR_COND_ABOVE_AVERAGE"
msgid "Above Average"
msgstr "গড়ৰ ওপৰ"
-#: sc/inc/globstr.hrc:445
+#: sc/inc/globstr.hrc:446
msgctxt "STR_COND_BELOW_AVERAGE"
msgid "Below Average"
msgstr "গড়ৰ তল"
-#: sc/inc/globstr.hrc:446
+#: sc/inc/globstr.hrc:447
msgctxt "STR_COND_ABOVE_EQUAL_AVERAGE"
msgid "Above or equal Average"
msgstr "গড়ৰ অধিক অথবা সমান"
-#: sc/inc/globstr.hrc:447
+#: sc/inc/globstr.hrc:448
msgctxt "STR_COND_BELOW_EQUAL_AVERAGE"
msgid "Below or equal Average"
msgstr "গড়ৰ কম অথবা সমান"
-#: sc/inc/globstr.hrc:448
+#: sc/inc/globstr.hrc:449
msgctxt "STR_COND_ERROR"
msgid "an Error code"
msgstr "এটা ত্ৰুটি ক'ড"
-#: sc/inc/globstr.hrc:449
+#: sc/inc/globstr.hrc:450
msgctxt "STR_COND_NOERROR"
msgid "not an Error code"
msgstr "এটা ত্ৰুটি ক'ড নহয়"
-#: sc/inc/globstr.hrc:450
+#: sc/inc/globstr.hrc:451
msgctxt "STR_COND_BEGINS_WITH"
msgid "Begins with"
msgstr "আৰম্ভ হয়"
-#: sc/inc/globstr.hrc:451
+#: sc/inc/globstr.hrc:452
msgctxt "STR_COND_ENDS_WITH"
msgid "Ends with"
msgstr "শেষ হয়"
-#: sc/inc/globstr.hrc:452
+#: sc/inc/globstr.hrc:453
msgctxt "STR_COND_CONTAINS"
msgid "Contains"
msgstr "অন্তৰ্ভুক্ত কৰে"
-#: sc/inc/globstr.hrc:453
+#: sc/inc/globstr.hrc:454
msgctxt "STR_COND_NOT_CONTAINS"
msgid "Not Contains"
msgstr "অন্তৰ্ভুক্ত নকৰে"
-#: sc/inc/globstr.hrc:454
+#: sc/inc/globstr.hrc:455
msgctxt "STR_COND_TODAY"
msgid "today"
msgstr "আজি"
-#: sc/inc/globstr.hrc:455
+#: sc/inc/globstr.hrc:456
msgctxt "STR_COND_YESTERDAY"
msgid "yesterday"
msgstr "যোৱাকালি"
-#: sc/inc/globstr.hrc:456
+#: sc/inc/globstr.hrc:457
msgctxt "STR_COND_TOMORROW"
msgid "tomorrow"
msgstr "অহাকালি"
-#: sc/inc/globstr.hrc:457
+#: sc/inc/globstr.hrc:458
msgctxt "STR_COND_LAST7DAYS"
msgid "in the last 7 days"
msgstr "শেষ ৭ দিনত"
-#: sc/inc/globstr.hrc:458
+#: sc/inc/globstr.hrc:459
msgctxt "STR_COND_THISWEEK"
msgid "this week"
msgstr "এই সপ্তাহ"
-#: sc/inc/globstr.hrc:459
+#: sc/inc/globstr.hrc:460
msgctxt "STR_COND_LASTWEEK"
msgid "last week"
msgstr "যোৱা সপ্তাহ"
-#: sc/inc/globstr.hrc:460
+#: sc/inc/globstr.hrc:461
msgctxt "STR_COND_NEXTWEEK"
msgid "next week"
msgstr "অহা সপ্তাহ"
-#: sc/inc/globstr.hrc:461
+#: sc/inc/globstr.hrc:462
msgctxt "STR_COND_THISMONTH"
msgid "this month"
msgstr "এই মাহ"
-#: sc/inc/globstr.hrc:462
+#: sc/inc/globstr.hrc:463
msgctxt "STR_COND_LASTMONTH"
msgid "last month"
msgstr "যোৱা মাহ"
-#: sc/inc/globstr.hrc:463
+#: sc/inc/globstr.hrc:464
msgctxt "STR_COND_NEXTMONTH"
msgid "next month"
msgstr "অহা মাহ"
-#: sc/inc/globstr.hrc:464
+#: sc/inc/globstr.hrc:465
msgctxt "STR_COND_THISYEAR"
msgid "this year"
msgstr "এই বছৰ"
-#: sc/inc/globstr.hrc:465
+#: sc/inc/globstr.hrc:466
msgctxt "STR_COND_LASTYEAR"
msgid "last year"
msgstr "যোৱা বছৰ"
-#: sc/inc/globstr.hrc:466
+#: sc/inc/globstr.hrc:467
msgctxt "STR_COND_NEXTYEAR"
msgid "next year"
msgstr "অহা বছৰ"
-#: sc/inc/globstr.hrc:467
+#: sc/inc/globstr.hrc:468
#, fuzzy
msgctxt "STR_COND_AND"
msgid "and"
msgstr "আৰু"
-#: sc/inc/globstr.hrc:468
+#: sc/inc/globstr.hrc:469
msgctxt "STR_ERR_CONDFORMAT_PROTECTED"
msgid "Conditional Formats can not be created, deleted or changed in protected sheets."
msgstr ""
-#: sc/inc/globstr.hrc:469
+#: sc/inc/globstr.hrc:470
msgctxt "STR_EDIT_EXISTING_COND_FORMATS"
msgid ""
"The selected cell already contains conditional formatting. You can either edit the existing conditional format or you define a new overlapping conditional format.\n"
@@ -2318,7 +2323,7 @@ msgstr ""
"\n"
"আপুনি স্থায়ী চৰ্তসাপেক্ষ ফৰমেট সম্পাদন কৰিব বিচাৰে নে?"
-#: sc/inc/globstr.hrc:470
+#: sc/inc/globstr.hrc:471
msgctxt "STR_QUERY_FORMULA_RECALC_ONLOAD_ODS"
msgid ""
"This document was last saved by an application other than %PRODUCTNAME. Some formula cells may produce different results when recalculated.\n"
@@ -2329,7 +2334,7 @@ msgstr ""
"\n"
"আপুনি এই দস্তাবেজখনৰ সকলো সূত্ৰ কোষ এতিয়ায় পুন গণনা কৰিব বিচাৰে নে?"
-#: sc/inc/globstr.hrc:471
+#: sc/inc/globstr.hrc:472
msgctxt "STR_QUERY_FORMULA_RECALC_ONLOAD_XLS"
msgid ""
"This document was last saved by Excel. Some formula cells may produce different results when recalculated.\n"
@@ -2340,77 +2345,77 @@ msgstr ""
"\n"
"আপুনি সকলো সুত্ৰ কোষ পুনৰ গণনা কৰিব বিচাৰে নে?"
-#: sc/inc/globstr.hrc:472
+#: sc/inc/globstr.hrc:473
msgctxt "STR_NO_INSERT_DELETE_OVER_PIVOT_TABLE"
msgid "You cannot insert or delete cells when the affected range intersects with pivot table."
msgstr "আপুনি কোষবোৰ সুমুৱাব অথবা মচি পেলাব নোৱাৰিব যেতিয়া প্ৰভাৱিত বিস্তাৰে পিভট টেবুলৰ সৈতে ছেদ কৰে।"
-#: sc/inc/globstr.hrc:473
+#: sc/inc/globstr.hrc:474
msgctxt "STR_DPFIELD_GROUP_BY_SECONDS"
msgid "Seconds"
msgstr "ছেকেণ্ড"
-#: sc/inc/globstr.hrc:474
+#: sc/inc/globstr.hrc:475
msgctxt "STR_DPFIELD_GROUP_BY_MINUTES"
msgid "Minutes"
msgstr "লিখিত টোকাবোৰ"
-#: sc/inc/globstr.hrc:475
+#: sc/inc/globstr.hrc:476
msgctxt "STR_DPFIELD_GROUP_BY_HOURS"
msgid "Hours"
msgstr "ঘণ্টা"
-#: sc/inc/globstr.hrc:476
+#: sc/inc/globstr.hrc:477
msgctxt "STR_DPFIELD_GROUP_BY_DAYS"
msgid "Days"
msgstr "দিনবোৰ"
-#: sc/inc/globstr.hrc:477
+#: sc/inc/globstr.hrc:478
msgctxt "STR_DPFIELD_GROUP_BY_MONTHS"
msgid "Months"
msgstr "মাহবোৰ"
-#: sc/inc/globstr.hrc:478
+#: sc/inc/globstr.hrc:479
msgctxt "STR_DPFIELD_GROUP_BY_QUARTERS"
msgid "Quarters"
msgstr "এক-চতুৰ্থাংশসমূহ"
-#: sc/inc/globstr.hrc:479
+#: sc/inc/globstr.hrc:480
msgctxt "STR_DPFIELD_GROUP_BY_YEARS"
msgid "Years"
msgstr "বছৰবোৰ"
-#: sc/inc/globstr.hrc:480
+#: sc/inc/globstr.hrc:481
msgctxt "STR_INVALIDVAL"
msgid "Invalid target value."
msgstr "অবৈধ লক্ষ্য মান।"
-#: sc/inc/globstr.hrc:481
+#: sc/inc/globstr.hrc:482
msgctxt "STR_INVALIDVAR"
msgid "Undefined name for variable cell."
msgstr "পৰিৱৰ্তনশীল কোষৰ বাবে সংজ্ঞা নিৰূপিত নোহোৱা নাম।"
-#: sc/inc/globstr.hrc:482
+#: sc/inc/globstr.hrc:483
msgctxt "STR_INVALIDFORM"
msgid "Undefined name as formula cell."
msgstr "সূত্ৰ কোষ হিচাবে সংজ্ঞা নিৰূপিত নোহোৱা নাম।"
-#: sc/inc/globstr.hrc:483
+#: sc/inc/globstr.hrc:484
msgctxt "STR_NOFORMULA"
msgid "Formula cell must contain a formula."
msgstr ""
-#: sc/inc/globstr.hrc:484
+#: sc/inc/globstr.hrc:485
msgctxt "STR_INVALIDINPUT"
msgid "Invalid input."
msgstr "অকার্যকৰী"
-#: sc/inc/globstr.hrc:485
+#: sc/inc/globstr.hrc:486
msgctxt "STR_INVALIDCONDITION"
msgid "Invalid condition."
msgstr "অবৈধ চৰ্ত"
-#: sc/inc/globstr.hrc:486
+#: sc/inc/globstr.hrc:487
msgctxt "STR_QUERYREMOVE"
msgid ""
"Should the entry\n"
@@ -2418,136 +2423,136 @@ msgid ""
"be deleted?"
msgstr ""
-#: sc/inc/globstr.hrc:487
+#: sc/inc/globstr.hrc:488
msgctxt "STR_COPYLIST"
msgid "Copy List"
msgstr ""
-#: sc/inc/globstr.hrc:488
+#: sc/inc/globstr.hrc:489
msgctxt "STR_COPYFROM"
msgid "List from"
msgstr ""
-#: sc/inc/globstr.hrc:489
+#: sc/inc/globstr.hrc:490
msgctxt "STR_COPYERR"
msgid "Cells without text have been ignored."
msgstr ""
-#: sc/inc/globstr.hrc:490
+#: sc/inc/globstr.hrc:491
#, c-format
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%s-click to follow hyperlink:"
msgstr ""
-#: sc/inc/globstr.hrc:491
+#: sc/inc/globstr.hrc:492
msgctxt "STR_CLICKHYPERLINK"
msgid "click to open hyperlink:"
msgstr ""
-#: sc/inc/globstr.hrc:492
+#: sc/inc/globstr.hrc:493
msgctxt "STR_PRINT_PREVIEW_NODATA"
msgid "No Data"
msgstr ""
-#: sc/inc/globstr.hrc:493
+#: sc/inc/globstr.hrc:494
msgctxt "STR_PRINT_PREVIEW_EMPTY_RANGE"
msgid "Print Range Empty"
msgstr ""
-#: sc/inc/globstr.hrc:494
+#: sc/inc/globstr.hrc:495
#, fuzzy
msgctxt "STR_UNDO_CONDFORMAT"
msgid "Conditional Format"
msgstr "চৰ্তসূচক ফৰমেটিং"
-#: sc/inc/globstr.hrc:495
+#: sc/inc/globstr.hrc:496
#, fuzzy
msgctxt "STR_UNDO_CONDFORMAT_LIST"
msgid "Conditional Formats"
msgstr "চৰ্তসূচক ফৰমেটিং"
-#: sc/inc/globstr.hrc:496
+#: sc/inc/globstr.hrc:497
msgctxt "STR_UNDO_FORMULA_TO_VALUE"
msgid "Convert Formula To Value"
msgstr ""
-#: sc/inc/globstr.hrc:497
+#: sc/inc/globstr.hrc:498
msgctxt "STR_UNQUOTED_STRING"
msgid "Strings without quotes are interpreted as column/row labels."
msgstr ""
-#: sc/inc/globstr.hrc:498
+#: sc/inc/globstr.hrc:499
msgctxt "STR_ENTER_VALUE"
msgid "Enter a value!"
msgstr ""
-#: sc/inc/globstr.hrc:499
+#: sc/inc/globstr.hrc:500
msgctxt "STR_TABLE_COUNT"
msgid "Sheet %1 of %2"
msgstr ""
-#: sc/inc/globstr.hrc:500
+#: sc/inc/globstr.hrc:501
msgctxt "STR_FUNCTIONS_FOUND"
msgid "%1 and %2 more"
msgstr ""
-#: sc/inc/globstr.hrc:501
+#: sc/inc/globstr.hrc:502
msgctxt "STR_GENERAL"
msgid "General"
msgstr "সাধাৰণ"
-#: sc/inc/globstr.hrc:502
+#: sc/inc/globstr.hrc:503
msgctxt "STR_NUMBER"
msgid "Number"
msgstr "সংখ্যা"
-#: sc/inc/globstr.hrc:503
+#: sc/inc/globstr.hrc:504
msgctxt "STR_PERCENT"
msgid "Percent"
msgstr "শতাংশ"
-#: sc/inc/globstr.hrc:504
+#: sc/inc/globstr.hrc:505
msgctxt "STR_CURRENCY"
msgid "Currency"
msgstr "মুদ্ৰা"
-#: sc/inc/globstr.hrc:505
+#: sc/inc/globstr.hrc:506
msgctxt "STR_DATE"
msgid "Date"
msgstr "তাৰিখ"
-#: sc/inc/globstr.hrc:506
+#: sc/inc/globstr.hrc:507
msgctxt "STR_TIME"
msgid "Time"
msgstr "সময়"
-#: sc/inc/globstr.hrc:507
+#: sc/inc/globstr.hrc:508
msgctxt "STR_SCIENTIFIC"
msgid "Scientific"
msgstr "বৈজ্ঞানীক"
-#: sc/inc/globstr.hrc:508
+#: sc/inc/globstr.hrc:509
#, fuzzy
msgctxt "STR_FRACTION"
msgid "Fraction"
msgstr "ফলন (_F):"
-#: sc/inc/globstr.hrc:509
+#: sc/inc/globstr.hrc:510
msgctxt "STR_BOOLEAN_VALUE"
msgid "Boolean Value"
msgstr "বুলিয়ান মান"
-#: sc/inc/globstr.hrc:510
+#: sc/inc/globstr.hrc:511
msgctxt "STR_TEXT"
msgid "Text"
msgstr "লিখনী"
-#: sc/inc/globstr.hrc:511
+#: sc/inc/globstr.hrc:512
msgctxt "STR_QUERY_PIVOTTABLE_DELTAB"
msgid "The selected sheet(s) contain source data of related pivot tables that will be lost. Are you sure you want to delete the selected sheet(s)?"
msgstr ""
-#: sc/inc/globstr.hrc:512
+#: sc/inc/globstr.hrc:513
msgctxt "STR_ERR_NAME_INVALID_CELL_REF"
msgid "Invalid name. Reference to a cell, or a range of cells not allowed."
msgstr ""
@@ -10717,8 +10722,8 @@ msgstr "ধৰণ"
#: sc/inc/scfuncs.hrc:3010
msgctxt "SC_OPCODE_T_TEST"
-msgid "Mode specifies the number of distribution tails to return. 1= one-tailed, 2 = two-tailed distribution"
-msgstr "ধৰণটোৱে বিতৰণ টেইলবোৰৰ সংখ্যাটোক ঘূৰাই পথাবৰ বাবে নিৰ্দিষ্ট কৰে। 1= এটা-টেইলযুক্ত, 2 = দুটা-টেইলযুক্ত বিতৰণ"
+msgid "Mode specifies the number of distribution tails to return. 1 = one-tailed, 2 = two-tailed distribution"
+msgstr ""
#: sc/inc/scfuncs.hrc:3011
msgctxt "SC_OPCODE_T_TEST"
@@ -10764,8 +10769,8 @@ msgstr "ধৰণ"
#: sc/inc/scfuncs.hrc:3024
msgctxt "SC_OPCODE_T_TEST_MS"
-msgid "Mode specifies the number of distribution tails to return. 1= one-tailed, 2 = two-tailed distribution"
-msgstr "ধৰণটোৱে বিতৰণ টেইলবোৰৰ সংখ্যাটোক ঘূৰাই পথাবৰ বাবে নিৰ্দিষ্ট কৰে। 1= এটা-টেইলযুক্ত, 2 = দুটা-টেইলযুক্ত বিতৰণ"
+msgid "Mode specifies the number of distribution tails to return. 1 = one-tailed, 2 = two-tailed distribution"
+msgstr ""
#: sc/inc/scfuncs.hrc:3025
msgctxt "SC_OPCODE_T_TEST_MS"
@@ -18607,22 +18612,22 @@ msgctxt "mergecellsdialog|MergeCellsDialog"
msgid "Merge Cells"
msgstr "কক্ষসমূহ একত্ৰিত কৰক"
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:81
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:84
msgctxt "mergecellsdialog|label"
msgid "Some cells are not empty."
msgstr ""
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:96
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:99
msgctxt "mergecellsdialog|move-cells-radio"
msgid "Move the contents of the hidden cells into the first cell"
msgstr ""
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:112
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:115
msgctxt "mergecellsdialog|empty-cells-radio"
msgid "Empty the contents of the hidden cells"
msgstr ""
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:128
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:131
msgctxt "mergecellsdialog|keep-content-radio"
msgid "Keep the contents of the hidden cells"
msgstr ""
diff --git a/source/as/sd/messages.po b/source/as/sd/messages.po
index b43a3b61ae8..c854ea1f084 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+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"
@@ -13,181 +13,181 @@ msgstr ""
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-#: sd/inc/DocumentRenderer.hrc:29
+#: sd/inc/DocumentRenderer.hrc:27
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Slides"
msgstr "শ্লাইডবোৰ"
-#: sd/inc/DocumentRenderer.hrc:30
+#: sd/inc/DocumentRenderer.hrc:28
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Handouts"
msgstr "হেণ্ডআউটবোৰ"
-#: sd/inc/DocumentRenderer.hrc:31
+#: sd/inc/DocumentRenderer.hrc:29
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Notes"
msgstr "টিপ্পনীবোৰ"
-#: sd/inc/DocumentRenderer.hrc:32
+#: sd/inc/DocumentRenderer.hrc:30
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Outline"
msgstr "ৰূপৰেখা"
-#: sd/inc/DocumentRenderer.hrc:37
+#: sd/inc/DocumentRenderer.hrc:35
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "According to layout"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:38
+#: sd/inc/DocumentRenderer.hrc:36
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "1"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:39
+#: sd/inc/DocumentRenderer.hrc:37
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "2"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:40
+#: sd/inc/DocumentRenderer.hrc:38
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "3"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:41
+#: sd/inc/DocumentRenderer.hrc:39
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "4"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:42
+#: sd/inc/DocumentRenderer.hrc:40
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "6"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:43
+#: sd/inc/DocumentRenderer.hrc:41
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "9"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:48
+#: sd/inc/DocumentRenderer.hrc:46
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_ORDER_CHOICES"
msgid "Left to right, then down"
msgstr "বাওফালৰ পৰা সোফাল, তাৰ পিছত তলত"
-#: sd/inc/DocumentRenderer.hrc:49
+#: sd/inc/DocumentRenderer.hrc:47
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_ORDER_CHOICES"
msgid "Top to bottom, then right"
msgstr "উপৰৰ পৰা তল, তাৰ পিছত সোফাল"
-#: sd/inc/DocumentRenderer.hrc:54
+#: sd/inc/DocumentRenderer.hrc:52
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Original colors"
msgstr "প্ৰকৃত ৰঙবোৰ"
-#: sd/inc/DocumentRenderer.hrc:55
+#: sd/inc/DocumentRenderer.hrc:53
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Grayscale"
msgstr "ধোঁৱাবৰন"
-#: sd/inc/DocumentRenderer.hrc:56
+#: sd/inc/DocumentRenderer.hrc:54
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Black & white"
msgstr "কলা & বগা"
-#: sd/inc/DocumentRenderer.hrc:61
+#: sd/inc/DocumentRenderer.hrc:59
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Original size"
msgstr "প্ৰকৃত আকাৰ"
-#: sd/inc/DocumentRenderer.hrc:62
+#: sd/inc/DocumentRenderer.hrc:60
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Fit to printable page"
msgstr "প্ৰিন্ট হব পৰা পৃষ্ঠাৰ সৈতে খাপ খুৱাওক"
-#: sd/inc/DocumentRenderer.hrc:63
+#: sd/inc/DocumentRenderer.hrc:61
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Distribute on multiple sheets of paper"
msgstr "পৃষ্টাৰ বহু চাদৰত বিলাওক"
-#: sd/inc/DocumentRenderer.hrc:64
+#: sd/inc/DocumentRenderer.hrc:62
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Tile sheet of paper with repeated slides"
msgstr "দোহৰা স্লাইডসমূহৰ লগত পৃষ্ঠাৰ চাদৰ টাইল কৰক"
-#: sd/inc/DocumentRenderer.hrc:69
+#: sd/inc/DocumentRenderer.hrc:67
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Original size"
msgstr "প্ৰকৃত আকাৰ"
-#: sd/inc/DocumentRenderer.hrc:70
+#: sd/inc/DocumentRenderer.hrc:68
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Fit to printable page"
msgstr "প্ৰিন্ট হব পৰা পৃষ্ঠাৰ সৈতে খাপ খুৱাওক"
-#: sd/inc/DocumentRenderer.hrc:71
+#: sd/inc/DocumentRenderer.hrc:69
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Distribute on multiple sheets of paper"
msgstr "পৃষ্টাৰ বহু চাদৰত বিলাওক"
-#: sd/inc/DocumentRenderer.hrc:72
+#: sd/inc/DocumentRenderer.hrc:70
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Tile sheet of paper with repeated pages"
msgstr "দোহৰা পৃষ্টাসমূহৰ লগত পৃষ্ঠাৰ চাদৰ টাইল কৰক"
-#: sd/inc/DocumentRenderer.hrc:77
+#: sd/inc/DocumentRenderer.hrc:75
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "All pages"
msgstr "সকলো পৃষ্ঠা"
-#: sd/inc/DocumentRenderer.hrc:78
+#: sd/inc/DocumentRenderer.hrc:76
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "Front sides / right pages"
msgstr "সন্মুখ ফালৰ / সোফালৰ পৃষ্ঠাসমূহ"
-#: sd/inc/DocumentRenderer.hrc:79
+#: sd/inc/DocumentRenderer.hrc:77
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "Back sides / left pages"
msgstr "পিছফাল / বাওফালৰ পৃষ্ঠাসমূহ"
-#: sd/inc/DocumentRenderer.hrc:84
+#: sd/inc/DocumentRenderer.hrc:82
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~All slides"
msgstr "সকলো স্লাইড (_s)"
-#: sd/inc/DocumentRenderer.hrc:85
+#: sd/inc/DocumentRenderer.hrc:83
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~Slides"
msgstr "শ্লাইডবোৰ"
-#: sd/inc/DocumentRenderer.hrc:86
+#: sd/inc/DocumentRenderer.hrc:84
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Se~lection"
msgstr "বাচনি (~l)"
-#: sd/inc/DocumentRenderer.hrc:91
+#: sd/inc/DocumentRenderer.hrc:89
#, fuzzy
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~All pages"
msgstr "সকলো পৃষ্ঠা (~A)"
-#: sd/inc/DocumentRenderer.hrc:92
+#: sd/inc/DocumentRenderer.hrc:90
#, fuzzy
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Pa~ges"
msgstr "পৃষ্ঠাবোৰ"
-#: sd/inc/DocumentRenderer.hrc:93
+#: sd/inc/DocumentRenderer.hrc:91
#, fuzzy
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Se~lection"
diff --git a/source/as/svx/messages.po b/source/as/svx/messages.po
index de24817fd75..0e5d4c65136 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: 2018-05-16 16:53+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+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"
@@ -5530,7 +5530,7 @@ msgstr ""
#: svx/uiconfig/ui/safemodedialog.ui:432
msgctxt "safemodedialog|btn_create_zip"
-msgid "Create Zip Archive from User Profile"
+msgid "Archive User Profile"
msgstr ""
#: svx/uiconfig/ui/safemodedialog.ui:445
@@ -9203,9 +9203,9 @@ msgid "Red"
msgstr "ৰঙা"
#: include/svx/strings.hrc:565
-msgctxt "RID_SVXSTR_COLOR_VIOLET"
-msgid "Violet"
-msgstr "বেঙুনীয়া"
+msgctxt "RID_SVXSTR_COLOR_MAGENTA"
+msgid "Magenta"
+msgstr "মেজেন্টা"
#: include/svx/strings.hrc:566
#, fuzzy
@@ -9273,8 +9273,8 @@ msgid "Light Red"
msgstr "পাতল ৰঙা"
#: include/svx/strings.hrc:579
-msgctxt "RID_SVXSTR_COLOR_LIGHTVIOLET"
-msgid "Light Violet"
+msgctxt "RID_SVXSTR_COLOR_LIGHTMAGENTA"
+msgid "Light Magenta"
msgstr ""
#: include/svx/strings.hrc:580
@@ -9340,8 +9340,8 @@ msgid "Dark Red"
msgstr "ডাঠ ৰঙা"
#: include/svx/strings.hrc:593
-msgctxt "RID_SVXSTR_COLOR_DARKVIOLET1"
-msgid "Dark Violet"
+msgctxt "RID_SVXSTR_COLOR_DARKMAGENTA"
+msgid "Dark Magenta"
msgstr ""
#: include/svx/strings.hrc:594
@@ -9376,55 +9376,55 @@ msgstr ""
#. Elements of the Tonal color palette
#: include/svx/strings.hrc:601
+msgctxt "RID_SVXSTR_COLOR_VIOLET"
+msgid "Violet"
+msgstr "বেঙুনীয়া"
+
+#: include/svx/strings.hrc:602
msgctxt "RID_SVXSTR_COLOR_VIOLET_OUG"
msgid "Violet (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:602
+#: include/svx/strings.hrc:603
msgctxt "RID_SVXSTR_COLOR_BLUE_OUG"
msgid "Blue (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:603
+#: include/svx/strings.hrc:604
msgctxt "RID_SVXSTR_COLOR_AZURE_OUG"
msgid "Azure (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:604
+#: include/svx/strings.hrc:605
msgctxt "RID_SVXSTR_COLOR_SPRINGGREEN_OUG"
msgid "Spring Green (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:605
+#: include/svx/strings.hrc:606
msgctxt "RID_SVXSTR_COLOR_GREEN_OUG"
msgid "Green (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:606
+#: include/svx/strings.hrc:607
msgctxt "RID_SVXSTR_COLOR_CHARTREUSEGREEN_OUG"
msgid "Chartreuse Green (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:607
+#: include/svx/strings.hrc:608
msgctxt "RID_SVXSTR_COLOR_ORANGE_OUG"
msgid "Orange (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:608
+#: include/svx/strings.hrc:609
msgctxt "RID_SVXSTR_COLOR_RED_OUG"
msgid "Red (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:609
+#: include/svx/strings.hrc:610
msgctxt "RID_SVXSTR_COLOR_ROSE_OUG"
msgid "Rose (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:610
-msgctxt "RID_SVXSTR_COLOR_MAGENTA"
-msgid "Magenta"
-msgstr "মেজেন্টা"
-
#: include/svx/strings.hrc:611
msgctxt "RID_SVXSTR_COLOR_AZURE"
msgid "Azure"
@@ -12584,13 +12584,13 @@ msgstr "Right pointing arrow bullets"
#: include/svx/strings.hrc:1273
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_6"
-msgid "Check mark bullets"
-msgstr "Check mark bullets"
+msgid "Cross mark bullets"
+msgstr ""
#: include/svx/strings.hrc:1274
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_7"
-msgid "Tick mark bullets"
-msgstr "Tick mark bullets"
+msgid "Check mark bullets"
+msgstr ""
#: include/svx/strings.hrc:1275
#, fuzzy
diff --git a/source/as/sw/messages.po b/source/as/sw/messages.po
index 9efa1794405..5da4341e2ce 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: 2018-05-22 13:17+0200\n"
+"POT-Creation-Date: 2018-06-12 14:41+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"
@@ -1221,13 +1221,13 @@ msgstr "উদ্ধৃতি"
#: sw/inc/strings.hrc:172
msgctxt "STR_POOLCOLL_TOX_ILLUSH"
-msgid "Illustration Index Heading"
-msgstr "দৃষ্টান্ত সূচী শিৰোনাম"
+msgid "Figure Index Heading"
+msgstr ""
#: sw/inc/strings.hrc:173
msgctxt "STR_POOLCOLL_TOX_ILLUS1"
-msgid "Illustration Index 1"
-msgstr "দৃষ্টান্ত সূচী 1"
+msgid "Figure Index 1"
+msgstr ""
#: sw/inc/strings.hrc:174
msgctxt "STR_POOLCOLL_TOX_OBJECTH"
@@ -3709,10 +3709,9 @@ msgid "Table of Objects"
msgstr ""
#: sw/inc/strings.hrc:672
-#, fuzzy
msgctxt "STR_TOX_ILL"
-msgid "Illustration Index"
-msgstr "দৃষ্টান্ত সূচী 1"
+msgid "Table of Figures"
+msgstr ""
#: sw/inc/strings.hrc:673
#, c-format
@@ -9650,81 +9649,81 @@ msgctxt "footnotepage|label5"
msgid "Continuation Notice"
msgstr "ধাৰাবাহিকতাৰ জাননী"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:49
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:55
#, fuzzy
msgctxt "footnotesendnotestabpage|ftnntnum"
msgid "_Restart numbering"
msgstr "নাম্বাৰীং পুনাৰম্ভ কৰক"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:91
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:93
#, fuzzy
msgctxt "footnotesendnotestabpage|ftnoffset_label"
msgid "_Start at:"
msgstr "চিহ্নিত স্থানত আৰম্ভ কৰক"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:112
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:111
msgctxt "footnotesendnotestabpage|ftnntnumfmt"
msgid "Custom _format"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:155
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:150
#, fuzzy
msgctxt "footnotesendnotestabpage|ftnsuffix_label"
msgid "Aft_er:"
msgstr "পাছত"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:199
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:188
#, fuzzy
msgctxt "footnotesendnotestabpage|ftnprefix_label"
msgid "Be_fore:"
msgstr "আগত (_f)"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:228
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:212
msgctxt "footnotesendnotestabpage|ftnntattextend"
msgid "Collec_t at end of text"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:252
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:234
#, fuzzy
msgctxt "footnotesendnotestabpage|label1"
msgid "Footnotes"
msgstr "ফুটনোট"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:289
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:271
msgctxt "footnotesendnotestabpage|endntattextend"
msgid "C_ollect at end of section"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:315
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:295
#, fuzzy
msgctxt "footnotesendnotestabpage|endntnum"
msgid "_Restart numbering"
msgstr "নাম্বাৰীং পুনাৰম্ভ কৰক"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:357
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:333
#, fuzzy
msgctxt "footnotesendnotestabpage|endoffset_label"
msgid "_Start at:"
msgstr "চিহ্নিত স্থানত আৰম্ভ কৰক"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:378
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:351
msgctxt "footnotesendnotestabpage|endntnumfmt"
msgid "_Custom format"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:421
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:390
#, fuzzy
msgctxt "footnotesendnotestabpage|endsuffix_label"
msgid "Aft_er:"
msgstr "পাছত"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:465
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:428
#, fuzzy
msgctxt "footnotesendnotestabpage|endprefix_label"
msgid "Be_fore:"
msgstr "আগত (_f)"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:500
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:458
#, fuzzy
msgctxt "footnotesendnotestabpage|label2"
msgid "Endnotes"
@@ -9757,27 +9756,27 @@ msgctxt "formatsectiondialog|notes"
msgid "Footnotes/Endnotes"
msgstr "পাদটীকাৰ/অন্তিম টীকাৰ সম্পাদনা কৰক..."
-#: sw/uiconfig/swriter/ui/formattablepage.ui:63
+#: sw/uiconfig/swriter/ui/formattablepage.ui:77
msgctxt "formattablepage|nameft"
msgid "_Name"
msgstr "নাম (_N)"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:79
+#: sw/uiconfig/swriter/ui/formattablepage.ui:91
msgctxt "formattablepage|widthft"
msgid "W_idth"
msgstr "প্ৰস্থ (_i)"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:110
+#: sw/uiconfig/swriter/ui/formattablepage.ui:120
msgctxt "formattablepage|relwidth"
msgid "Relati_ve"
msgstr "সম্বন্ধীয় (_v)"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:155
+#: sw/uiconfig/swriter/ui/formattablepage.ui:160
msgctxt "formattablepage|label45"
msgid "Properties"
msgstr "বৈশিষ্টসমূহ"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:194
+#: sw/uiconfig/swriter/ui/formattablepage.ui:195
msgctxt "formattablepage|leftft"
msgid "Lef_t"
msgstr "বাঁওফাল (_t)"
@@ -9787,62 +9786,62 @@ msgctxt "formattablepage|rightft"
msgid "Ri_ght"
msgstr "সোঁফাল (_g)"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:228
+#: sw/uiconfig/swriter/ui/formattablepage.ui:226
msgctxt "formattablepage|aboveft"
msgid "_Above"
msgstr "ওপৰত (_A)"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:245
+#: sw/uiconfig/swriter/ui/formattablepage.ui:241
msgctxt "formattablepage|belowft"
msgid "_Below"
msgstr "তলত (_B)"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:320
+#: sw/uiconfig/swriter/ui/formattablepage.ui:311
msgctxt "formattablepage|label46"
msgid "Spacing"
msgstr "ব্যৱধান"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:362
+#: sw/uiconfig/swriter/ui/formattablepage.ui:349
msgctxt "formattablepage|full"
msgid "A_utomatic"
msgstr "স্বয়ংক্রিয় (_u)"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:380
+#: sw/uiconfig/swriter/ui/formattablepage.ui:365
msgctxt "formattablepage|left"
msgid "_Left"
msgstr "বাওঁ (_L)"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:398
+#: sw/uiconfig/swriter/ui/formattablepage.ui:381
msgctxt "formattablepage|fromleft"
msgid "_From left"
msgstr "বাওঁফালৰ পৰা (_F)"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:416
+#: sw/uiconfig/swriter/ui/formattablepage.ui:397
msgctxt "formattablepage|right"
msgid "R_ight"
msgstr "সোঁফাল (_i)"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:435
+#: sw/uiconfig/swriter/ui/formattablepage.ui:413
msgctxt "formattablepage|center"
msgid "_Center"
msgstr "মধ্যভাগ (_C)"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:453
+#: sw/uiconfig/swriter/ui/formattablepage.ui:429
msgctxt "formattablepage|free"
msgid "_Manual"
msgstr "হাতেৰে কৰা (_M)"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:478
+#: sw/uiconfig/swriter/ui/formattablepage.ui:452
msgctxt "formattablepage|label43"
msgid "Alignment"
msgstr "শাৰীকৰণ"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:522
+#: sw/uiconfig/swriter/ui/formattablepage.ui:491
msgctxt "formattablepage|label53"
msgid "Text _direction"
msgstr "টেক্সটৰ দিশ (_d)"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:553
+#: sw/uiconfig/swriter/ui/formattablepage.ui:519
msgctxt "formattablepage|label44"
msgid "Properties "
msgstr "বৈশিষ্টসমূহ "
@@ -10225,24 +10224,29 @@ msgctxt "headerfootermenu|insert_pagenumber"
msgid "Insert Page Number"
msgstr ""
-#: sw/uiconfig/swriter/ui/indentpage.ui:52
+#: sw/uiconfig/swriter/ui/headerfootermenu.ui:42
+msgctxt "headerfootermenu|insert_pagecount"
+msgid "Insert Page Count"
+msgstr ""
+
+#: sw/uiconfig/swriter/ui/indentpage.ui:57
#, fuzzy
msgctxt "indentpage|label1"
msgid "_Before section"
msgstr "আগৰ খণ্ড"
-#: sw/uiconfig/swriter/ui/indentpage.ui:67
+#: sw/uiconfig/swriter/ui/indentpage.ui:71
#, fuzzy
msgctxt "indentpage|label3"
msgid "_After section"
msgstr "পিছৰ খণ্ড"
-#: sw/uiconfig/swriter/ui/indentpage.ui:113
+#: sw/uiconfig/swriter/ui/indentpage.ui:115
msgctxt "indentpage|label2"
msgid "Indent"
msgstr "ইনডেণ্ট"
-#: sw/uiconfig/swriter/ui/indentpage.ui:142
+#: sw/uiconfig/swriter/ui/indentpage.ui:155
msgctxt "indentpage|preview-atkobject"
msgid "Example"
msgstr "উদাহৰণ"
@@ -14002,7 +14006,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:68
msgctxt "optcompatpage|format"
-msgid "MS Word-compatible trailing blanks"
+msgid "Word-compatible trailing blanks"
msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:69
@@ -14012,7 +14016,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:70
msgctxt "optcompatpage|format"
-msgid "A database field (e.g., MailMerge) with empty value hides its paragraph"
+msgid "Hide paragraphs of database fields (e.g., mail merge) with an empty value"
msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:71
@@ -16880,123 +16884,123 @@ msgctxt "tableproperties|background"
msgid "Background"
msgstr "পৃষ্ঠভূমি"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:25
-msgctxt "tabletextflowpage|liststore1"
-msgid "Horizontal"
-msgstr "অনুভূমিক"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:29
-msgctxt "tabletextflowpage|liststore1"
-msgid "Vertical"
-msgstr "উলম্ব"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:33
-msgctxt "tabletextflowpage|liststore1"
-msgid "Use superordinate object settings"
-msgstr "ছুপাৰঅৰ্ডিনেট বস্তু ছেটীংছ ব্যৱহাৰ কৰক"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:47
-msgctxt "tabletextflowpage|liststore2"
-msgid "Top"
-msgstr "ওপৰ"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:51
-msgctxt "tabletextflowpage|liststore2"
-msgid "Centered"
-msgstr "কেন্দ্ৰীত"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:55
-msgctxt "tabletextflowpage|liststore2"
-msgid "Bottom"
-msgstr "তলত"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:97
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:53
msgctxt "tabletextflowpage|break"
msgid "_Break"
msgstr "ব্যাঘাট (_B)"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:112
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:68
msgctxt "tabletextflowpage|page"
msgid "_Page"
msgstr "পৃষ্ঠা (_P)"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:132
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:87
msgctxt "tabletextflowpage|column"
msgid "Col_umn"
msgstr "স্তম্ভ (_u)"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:151
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:106
msgctxt "tabletextflowpage|before"
msgid "Be_fore"
msgstr "আগত (_f)"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:171
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:125
msgctxt "tabletextflowpage|after"
msgid "_After"
msgstr "পাছত (_A)"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:203
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:158
msgctxt "tabletextflowpage|pagestyle"
msgid "With Page St_yle"
msgstr "পৃষ্ঠা শৈলীৰ সৈতে (_y)"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:224
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:177
msgctxt "tabletextflowpage|pagenoft"
msgid "Page _number"
msgstr "পৃষ্ঠাৰ সংখ্যা (_n)"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:257
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:213
#, fuzzy
msgctxt "tabletextflowpage|pagestylelb-atkobject"
msgid "With Page Style"
msgstr "পৃষ্ঠা শৈলীৰ সৈতে (_y)"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:274
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:230
msgctxt "tabletextflowpage|split"
msgid "Allow _table to split across pages and columns"
msgstr "পৃষ্ঠা আৰু স্তম্ভবোৰৰ মাজত বিভাজিত কৰিবলৈ অনুমতী দিয়ক (_t)"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:289
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:245
msgctxt "tabletextflowpage|splitrow"
msgid "Allow row to break a_cross pages and columns"
msgstr "পৃষ্ঠা আৰু স্তম্ভবোৰৰ মাজত শাৰী দিবলৈ অনুমতী দিয়ক (_c)"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:306
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:262
msgctxt "tabletextflowpage|keep"
msgid "_Keep with next paragraph"
msgstr "পৰৱৰ্তী পেৰেগ্ৰাফৰ সৈতে ৰাখক (_K)"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:328
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:284
msgctxt "tabletextflowpage|label40"
msgid "Text _orientation"
msgstr "লিখনী দিশনিৰ্ণয় (_o)"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:361
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:298
+msgctxt "tabletextflowpage|liststore1"
+msgid "Horizontal"
+msgstr "অনুভূমিক"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:299
+msgctxt "tabletextflowpage|liststore1"
+msgid "Vertical"
+msgstr "উলম্ব"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:300
+msgctxt "tabletextflowpage|liststore1"
+msgid "Use superordinate object settings"
+msgstr "ছুপাৰঅৰ্ডিনেট বস্তু ছেটীংছ ব্যৱহাৰ কৰক"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:321
msgctxt "tabletextflowpage|headline"
msgid "R_epeat heading"
msgstr "শিৰোনামৰ পুনৰাবৃত্তি কৰক (_e)"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:383
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:343
msgctxt "tabletextflowpage|label38"
msgid "The first "
msgstr "প্ৰথম "
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:396
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:356
msgctxt "tabletextflowpage|label39"
msgid "rows"
msgstr "শাৰীবোৰ"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:434
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:395
msgctxt "tabletextflowpage|label35"
msgid "Text Flow"
msgstr "টেক্সটৰ ধাৰা"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:467
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:428
msgctxt "tabletextflowpage|label41"
msgid "_Vertical alignment"
msgstr "উলম্ব শাৰীকৰণ (_V)"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:495
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:442
+msgctxt "tabletextflowpage|liststore2"
+msgid "Top"
+msgstr "ওপৰ"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:443
+msgctxt "tabletextflowpage|liststore2"
+msgid "Centered"
+msgstr "কেন্দ্ৰীত"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:444
+msgctxt "tabletextflowpage|liststore2"
+msgid "Bottom"
+msgstr "তলত"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:460
msgctxt "tabletextflowpage|label36"
msgid "Alignment"
msgstr "শাৰীকৰণ"
@@ -17817,10 +17821,9 @@ msgid "Alphabetical Index"
msgstr ""
#: sw/uiconfig/swriter/ui/tocindexpage.ui:58
-#, fuzzy
msgctxt "tocindexpage|liststore1"
-msgid "Illustration Index"
-msgstr "দৃষ্টান্ত সূচী 1"
+msgid "Table of Figures"
+msgstr ""
#: sw/uiconfig/swriter/ui/tocindexpage.ui:62
msgctxt "tocindexpage|liststore1"
diff --git a/source/as/writerperfect/messages.po b/source/as/writerperfect/messages.po
index fe548f3d0e6..e47eb09b828 100644
--- a/source/as/writerperfect/messages.po
+++ b/source/as/writerperfect/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-16 16:54+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+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"
@@ -65,99 +65,99 @@ msgctxt "exportepub|generalft"
msgid "General"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:122
+#: writerperfect/uiconfig/ui/exportepub.ui:121
#, fuzzy
msgctxt "exportepub|versionft"
msgid "Version:"
msgstr "সংস্কৰণ (~V):"
-#: writerperfect/uiconfig/ui/exportepub.ui:139
+#: writerperfect/uiconfig/ui/exportepub.ui:138
msgctxt "exportepub|epub3"
msgid "EPUB 3.0"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:140
+#: writerperfect/uiconfig/ui/exportepub.ui:139
msgctxt "exportepub|epub2"
msgid "EPUB 2.0"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:175
+#: writerperfect/uiconfig/ui/exportepub.ui:174
msgctxt "exportepub|splitft"
msgid "Split method:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:192
+#: writerperfect/uiconfig/ui/exportepub.ui:191
msgctxt "exportepub|splitpage"
msgid "Page break"
msgstr "পৃষ্ঠা বিৰতি"
-#: writerperfect/uiconfig/ui/exportepub.ui:193
+#: writerperfect/uiconfig/ui/exportepub.ui:192
#, fuzzy
msgctxt "exportepub|splitheading"
msgid "Heading"
msgstr "শীৰ্ষক"
-#: writerperfect/uiconfig/ui/exportepub.ui:228
+#: writerperfect/uiconfig/ui/exportepub.ui:227
msgctxt "exportepub|layoutft"
msgid "Layout method:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:245
+#: writerperfect/uiconfig/ui/exportepub.ui:244
msgctxt "exportepub|layoutreflowable"
msgid "Reflowable"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:246
+#: writerperfect/uiconfig/ui/exportepub.ui:245
msgctxt "exportepub|layoutfixed"
msgid "Fixed"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:281
+#: writerperfect/uiconfig/ui/exportepub.ui:280
msgctxt "exportepub|coverimageft"
msgid "Custom cover image:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:311
+#: writerperfect/uiconfig/ui/exportepub.ui:310
msgctxt "exportepub|coverbutton"
msgid "Browse..."
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:355
+#: writerperfect/uiconfig/ui/exportepub.ui:354
msgctxt "exportepub|mediadirft"
msgid "Custom media directory:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:385
+#: writerperfect/uiconfig/ui/exportepub.ui:384
msgctxt "exportepub|mediabutton"
msgid "Browse..."
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:429
+#: writerperfect/uiconfig/ui/exportepub.ui:428
msgctxt "exportepub|metadataft"
msgid "Metadata"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:470
+#: writerperfect/uiconfig/ui/exportepub.ui:468
msgctxt "exportepub|identifierft"
msgid "Identifier:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:485
+#: writerperfect/uiconfig/ui/exportepub.ui:483
msgctxt "exportepub|titleft"
msgid "Title:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:511
+#: writerperfect/uiconfig/ui/exportepub.ui:509
msgctxt "exportepub|authorft"
msgid "Author:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:537
+#: writerperfect/uiconfig/ui/exportepub.ui:535
msgctxt "exportepub|languageft"
msgid "Language:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:563
+#: writerperfect/uiconfig/ui/exportepub.ui:561
msgctxt "exportepub|dateft"
msgid "Date:"
msgstr ""
diff --git a/source/ast/cui/messages.po b/source/ast/cui/messages.po
index bdb36f62fdc..7620de9c9d2 100644
--- a/source/ast/cui/messages.po
+++ b/source/ast/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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+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"
@@ -10372,97 +10372,97 @@ msgctxt "positionsizedialog|PositionAndSizeDialog"
msgid "Position and Size"
msgstr "Posición y tamañu"
-#: cui/uiconfig/ui/positionsizedialog.ui:107
+#: cui/uiconfig/ui/positionsizedialog.ui:136
msgctxt "positionsizedialog|RID_SVXPAGE_POSITION_SIZE"
msgid "Position and Size"
msgstr "Posición y tamañu"
-#: cui/uiconfig/ui/positionsizedialog.ui:129
+#: cui/uiconfig/ui/positionsizedialog.ui:182
msgctxt "positionsizedialog|RID_SVXPAGE_SWPOSSIZE"
msgid "Position and Size"
msgstr "Posición y tamañu"
-#: cui/uiconfig/ui/positionsizedialog.ui:152
+#: cui/uiconfig/ui/positionsizedialog.ui:229
msgctxt "positionsizedialog|RID_SVXPAGE_ANGLE"
msgid "Rotation"
msgstr "Xiru"
-#: cui/uiconfig/ui/positionsizedialog.ui:175
+#: cui/uiconfig/ui/positionsizedialog.ui:276
msgctxt "positionsizedialog|RID_SVXPAGE_SLANT"
msgid "Slant & Corner Radius"
msgstr "Inclinación y radiu d'esquines"
-#: cui/uiconfig/ui/possizetabpage.ui:40
+#: cui/uiconfig/ui/possizetabpage.ui:61
msgctxt "possizetabpage|FT_POS_X"
msgid "Position _X:"
msgstr "Posición _X:"
-#: cui/uiconfig/ui/possizetabpage.ui:56
+#: cui/uiconfig/ui/possizetabpage.ui:75
msgctxt "possizetabpage|FT_POS_Y"
msgid "Position _Y:"
msgstr "Posición _Y:"
-#: cui/uiconfig/ui/possizetabpage.ui:110
+#: cui/uiconfig/ui/possizetabpage.ui:128
msgctxt "possizetabpage|FT_POSREFERENCE"
msgid "_Base point:"
msgstr "Puntu _base:"
-#: cui/uiconfig/ui/possizetabpage.ui:148
+#: cui/uiconfig/ui/possizetabpage.ui:182
msgctxt "possizetabpage|label1"
msgid "Position"
msgstr "Allugamientu"
-#: cui/uiconfig/ui/possizetabpage.ui:190
+#: cui/uiconfig/ui/possizetabpage.ui:224
msgctxt "possizetabpage|FT_WIDTH"
msgid "Wi_dth:"
msgstr "Anc_hor:"
-#: cui/uiconfig/ui/possizetabpage.ui:206
+#: cui/uiconfig/ui/possizetabpage.ui:238
msgctxt "possizetabpage|FT_HEIGHT"
msgid "H_eight:"
msgstr "Alt_or:"
-#: cui/uiconfig/ui/possizetabpage.ui:247
+#: cui/uiconfig/ui/possizetabpage.ui:276
msgctxt "possizetabpage|CBX_SCALE"
msgid "_Keep ratio"
msgstr "_Caltener proporciones"
-#: cui/uiconfig/ui/possizetabpage.ui:279
+#: cui/uiconfig/ui/possizetabpage.ui:307
msgctxt "possizetabpage|FT_SIZEREFERENCE"
msgid "Base _point:"
msgstr "_Puntu base:"
-#: cui/uiconfig/ui/possizetabpage.ui:317
+#: cui/uiconfig/ui/possizetabpage.ui:361
msgctxt "possizetabpage|label2"
msgid "Size"
msgstr "Tamañu"
-#: cui/uiconfig/ui/possizetabpage.ui:356
+#: cui/uiconfig/ui/possizetabpage.ui:401
msgctxt "possizetabpage|TSB_POSPROTECT"
msgid "Positio_n"
msgstr "Posició_n"
-#: cui/uiconfig/ui/possizetabpage.ui:373
+#: cui/uiconfig/ui/possizetabpage.ui:418
msgctxt "possizetabpage|TSB_SIZEPROTECT"
msgid "_Size"
msgstr "_Tamañu"
-#: cui/uiconfig/ui/possizetabpage.ui:397
+#: cui/uiconfig/ui/possizetabpage.ui:441
msgctxt "possizetabpage|label3"
msgid "Protect"
msgstr "Protexer"
-#: cui/uiconfig/ui/possizetabpage.ui:430
+#: cui/uiconfig/ui/possizetabpage.ui:475
msgctxt "possizetabpage|TSB_AUTOGROW_WIDTH"
msgid "_Fit width to text"
msgstr "Axustar anc_hor al testu"
-#: cui/uiconfig/ui/possizetabpage.ui:447
+#: cui/uiconfig/ui/possizetabpage.ui:492
msgctxt "possizetabpage|TSB_AUTOGROW_HEIGHT"
msgid "Fit _height to text"
msgstr "A_xustar altor al testu"
-#: cui/uiconfig/ui/possizetabpage.ui:471
+#: cui/uiconfig/ui/possizetabpage.ui:515
msgctxt "possizetabpage|label4"
msgid "Adapt"
msgstr "Adautar"
@@ -10674,51 +10674,51 @@ msgctxt "recordnumberdialog|label2"
msgid "go to record"
msgstr ""
-#: cui/uiconfig/ui/rotationtabpage.ui:52
+#: cui/uiconfig/ui/rotationtabpage.ui:56
msgctxt "rotationtabpage|FT_POS_X"
msgid "Position _X:"
msgstr "Posición _X:"
-#: cui/uiconfig/ui/rotationtabpage.ui:66
+#: cui/uiconfig/ui/rotationtabpage.ui:70
msgctxt "rotationtabpage|FT_POS_Y"
msgid "Position _Y:"
msgstr "Posición _Y:"
-#: cui/uiconfig/ui/rotationtabpage.ui:116
+#: cui/uiconfig/ui/rotationtabpage.ui:123
#, fuzzy
msgctxt "rotationtabpage|FT_POSPRESETS"
msgid "_Default settings:"
msgstr "Configuración pre_determinada"
-#: cui/uiconfig/ui/rotationtabpage.ui:130
+#: cui/uiconfig/ui/rotationtabpage.ui:151
msgctxt "rotationtabpage|CTL_RECT|tooltip_text"
msgid "Rotation point"
msgstr "Puntu de xiru"
-#: cui/uiconfig/ui/rotationtabpage.ui:155
+#: cui/uiconfig/ui/rotationtabpage.ui:178
#, fuzzy
msgctxt "rotationtabpage|label1"
msgid "Pivot Point"
msgstr "Puntu pivote"
-#: cui/uiconfig/ui/rotationtabpage.ui:197
+#: cui/uiconfig/ui/rotationtabpage.ui:220
#, fuzzy
msgctxt "rotationtabpage|FT_ANGLE"
msgid "_Angle:"
msgstr "_Angulu"
-#: cui/uiconfig/ui/rotationtabpage.ui:238
+#: cui/uiconfig/ui/rotationtabpage.ui:263
#, fuzzy
msgctxt "rotationtabpage|FT_ANGLEPRESETS"
msgid "Default _settings:"
msgstr "Preferencie_s predeterminaes"
-#: cui/uiconfig/ui/rotationtabpage.ui:252
+#: cui/uiconfig/ui/rotationtabpage.ui:287
msgctxt "rotationtabpage|CTL_ANGLE|tooltip_text"
msgid "Rotation Angle"
msgstr "Ángulu de xiru"
-#: cui/uiconfig/ui/rotationtabpage.ui:277
+#: cui/uiconfig/ui/rotationtabpage.ui:314
msgctxt "rotationtabpage|label2"
msgid "Rotation Angle"
msgstr "Ángulu de xiru"
@@ -11112,55 +11112,55 @@ msgctxt "similaritysearchdialog|relaxbox"
msgid "_Combine"
msgstr "_Combinar"
-#: cui/uiconfig/ui/slantcornertabpage.ui:50
+#: cui/uiconfig/ui/slantcornertabpage.ui:70
msgctxt "slantcornertabpage|label5"
msgid "_X:"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:88
+#: cui/uiconfig/ui/slantcornertabpage.ui:110
msgctxt "slantcornertabpage|label6"
msgid "_Y:"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:125
+#: cui/uiconfig/ui/slantcornertabpage.ui:149
msgctxt "slantcornertabpage|label3"
msgid "Control Point 1"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:159
+#: cui/uiconfig/ui/slantcornertabpage.ui:183
#, fuzzy
msgctxt "slantcornertabpage|FT_RADIUS"
msgid "_Radius:"
msgstr "_Radiu"
-#: cui/uiconfig/ui/slantcornertabpage.ui:189
+#: cui/uiconfig/ui/slantcornertabpage.ui:214
#, fuzzy
msgctxt "slantcornertabpage|label1"
msgid "Corner Radius"
msgstr "Radiu de la esquina"
-#: cui/uiconfig/ui/slantcornertabpage.ui:223
+#: cui/uiconfig/ui/slantcornertabpage.ui:248
#, fuzzy
msgctxt "slantcornertabpage|FT_ANGLE"
msgid "_Angle:"
msgstr "_Angulu"
-#: cui/uiconfig/ui/slantcornertabpage.ui:253
+#: cui/uiconfig/ui/slantcornertabpage.ui:279
msgctxt "slantcornertabpage|label2"
msgid "Slant"
msgstr "Inclinación"
-#: cui/uiconfig/ui/slantcornertabpage.ui:294
+#: cui/uiconfig/ui/slantcornertabpage.ui:320
msgctxt "slantcornertabpage|label4"
msgid "_X:"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:332
+#: cui/uiconfig/ui/slantcornertabpage.ui:360
msgctxt "slantcornertabpage|label7"
msgid "_Y:"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:369
+#: cui/uiconfig/ui/slantcornertabpage.ui:399
msgctxt "slantcornertabpage|label8"
msgid "Control Point 2"
msgstr ""
@@ -11454,118 +11454,118 @@ msgctxt "storedwebconnectiondialog|change"
msgid "_Change Password..."
msgstr "_Cambiar la contraseña..."
-#: cui/uiconfig/ui/swpossizepage.ui:74
+#: cui/uiconfig/ui/swpossizepage.ui:85
msgctxt "swpossizepage|widthft"
msgid "_Width:"
msgstr "_Anchor:"
-#: cui/uiconfig/ui/swpossizepage.ui:111
+#: cui/uiconfig/ui/swpossizepage.ui:123
msgctxt "swpossizepage|heightft"
msgid "H_eight:"
msgstr "Alt_or:"
-#: cui/uiconfig/ui/swpossizepage.ui:128
+#: cui/uiconfig/ui/swpossizepage.ui:141
msgctxt "swpossizepage|ratio"
msgid "_Keep ratio"
msgstr "_Caltener proporción"
-#: cui/uiconfig/ui/swpossizepage.ui:149
+#: cui/uiconfig/ui/swpossizepage.ui:162
msgctxt "swpossizepage|label2"
msgid "Size"
msgstr "Tamañu"
-#: cui/uiconfig/ui/swpossizepage.ui:205
+#: cui/uiconfig/ui/swpossizepage.ui:218
msgctxt "swpossizepage|topage"
msgid "To _page"
msgstr "A la _páxina"
-#: cui/uiconfig/ui/swpossizepage.ui:222
+#: cui/uiconfig/ui/swpossizepage.ui:234
msgctxt "swpossizepage|topara"
msgid "To paragrap_h"
msgstr "Al párra_fu"
-#: cui/uiconfig/ui/swpossizepage.ui:238
+#: cui/uiconfig/ui/swpossizepage.ui:250
msgctxt "swpossizepage|tochar"
msgid "To cha_racter"
msgstr "Al ca_ráuter"
-#: cui/uiconfig/ui/swpossizepage.ui:254
+#: cui/uiconfig/ui/swpossizepage.ui:266
msgctxt "swpossizepage|aschar"
msgid "_As character"
msgstr "Como c_aráuter"
-#: cui/uiconfig/ui/swpossizepage.ui:270
+#: cui/uiconfig/ui/swpossizepage.ui:282
msgctxt "swpossizepage|toframe"
msgid "To _frame"
msgstr "Al _marcu"
-#: cui/uiconfig/ui/swpossizepage.ui:292
+#: cui/uiconfig/ui/swpossizepage.ui:304
msgctxt "swpossizepage|label1"
msgid "Anchor"
msgstr "Ancla"
-#: cui/uiconfig/ui/swpossizepage.ui:333
+#: cui/uiconfig/ui/swpossizepage.ui:344
#, fuzzy
msgctxt "swpossizepage|horiposft"
msgid "Hori_zontal:"
msgstr "Hori_zontal"
-#: cui/uiconfig/ui/swpossizepage.ui:347
+#: cui/uiconfig/ui/swpossizepage.ui:358
#, fuzzy
msgctxt "swpossizepage|horibyft"
msgid "b_y:"
msgstr "_por"
-#: cui/uiconfig/ui/swpossizepage.ui:361
+#: cui/uiconfig/ui/swpossizepage.ui:372
#, fuzzy
msgctxt "swpossizepage|vertbyft"
msgid "_by:"
msgstr "p_or"
-#: cui/uiconfig/ui/swpossizepage.ui:375
+#: cui/uiconfig/ui/swpossizepage.ui:386
#, fuzzy
msgctxt "swpossizepage|horitoft"
msgid "_to:"
msgstr "_a"
-#: cui/uiconfig/ui/swpossizepage.ui:421
+#: cui/uiconfig/ui/swpossizepage.ui:433
#, fuzzy
msgctxt "swpossizepage|vertposft"
msgid "_Vertical:"
msgstr "_Vertical"
-#: cui/uiconfig/ui/swpossizepage.ui:457
+#: cui/uiconfig/ui/swpossizepage.ui:470
#, fuzzy
msgctxt "swpossizepage|verttoft"
msgid "t_o:"
msgstr "_a"
-#: cui/uiconfig/ui/swpossizepage.ui:478
+#: cui/uiconfig/ui/swpossizepage.ui:492
msgctxt "swpossizepage|mirror"
msgid "_Mirror on even pages"
msgstr "Espe_yar nes páxines pares"
-#: cui/uiconfig/ui/swpossizepage.ui:495
+#: cui/uiconfig/ui/swpossizepage.ui:509
msgctxt "swpossizepage|followtextflow"
msgid "Follow te_xt flow"
msgstr "Siguir el flu_xu del testu"
-#: cui/uiconfig/ui/swpossizepage.ui:518
+#: cui/uiconfig/ui/swpossizepage.ui:532
msgctxt "swpossizepage|label11"
msgid "Position"
msgstr "Allugamientu"
-#: cui/uiconfig/ui/swpossizepage.ui:549
+#: cui/uiconfig/ui/swpossizepage.ui:563
msgctxt "swpossizepage|pos"
msgid "Positio_n"
msgstr "Posició_n"
-#: cui/uiconfig/ui/swpossizepage.ui:565
+#: cui/uiconfig/ui/swpossizepage.ui:579
msgctxt "swpossizepage|size"
msgid "_Size"
msgstr "_Tamañu"
-#: cui/uiconfig/ui/swpossizepage.ui:587
+#: cui/uiconfig/ui/swpossizepage.ui:601
msgctxt "swpossizepage|label3"
msgid "Protect"
msgstr "Protexer"
@@ -11761,12 +11761,12 @@ msgctxt "textattrtabpage|label2"
msgid "Spacing to Borders"
msgstr "Espaciáu a los bordes"
-#: cui/uiconfig/ui/textattrtabpage.ui:425
+#: cui/uiconfig/ui/textattrtabpage.ui:423
msgctxt "textattrtabpage|TSB_FULL_WIDTH"
msgid "Full _width"
msgstr "Anc_hor completu"
-#: cui/uiconfig/ui/textattrtabpage.ui:448
+#: cui/uiconfig/ui/textattrtabpage.ui:446
#, fuzzy
msgctxt "textattrtabpage|label3"
msgid "Text Anchor"
diff --git a/source/ast/filter/source/config/fragments/filters.po b/source/ast/filter/source/config/fragments/filters.po
index c651b11e6d5..e3afbb5a6e2 100644
--- a/source/ast/filter/source/config/fragments/filters.po
+++ b/source/ast/filter/source/config/fragments/filters.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-16 16:54+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2016-12-01 12:07+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -466,8 +466,8 @@ msgctxt ""
"MS Word 2003 XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Word 2003 XML"
-msgstr "XML de Microsoft Word 2003"
+msgid "Word 2003 XML"
+msgstr ""
#: MS_Word_2007_XML.xcu
msgctxt ""
@@ -1291,7 +1291,7 @@ msgctxt ""
"Calc MS Excel 2007 VBA XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Excel 2007-2016 XML (macro enabled)"
+msgid "Excel 2007–2019 (macro-enabled)"
msgstr ""
#: calc_MS_Excel_2007_XML.xcu
diff --git a/source/ast/filter/source/config/fragments/types.po b/source/ast/filter/source/config/fragments/types.po
index 320dc9d2987..fc4d130d5e7 100644
--- a/source/ast/filter/source/config/fragments/types.po
+++ b/source/ast/filter/source/config/fragments/types.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-08 15:11+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2015-11-11 00:40+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -293,8 +293,8 @@ msgctxt ""
"writer_MS_Word_2003_XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Word 2003 XML"
-msgstr "XML de Microsoft Word 2003"
+msgid "Word 2003 XML"
+msgstr ""
#: writer_MS_Word_2007_XML.xcu
msgctxt ""
diff --git a/source/ast/fpicker/messages.po b/source/ast/fpicker/messages.po
index b0d795e81f1..d16aaf329e1 100644
--- a/source/ast/fpicker/messages.po
+++ b/source/ast/fpicker/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+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"
@@ -280,13 +280,13 @@ msgstr ""
#: fpicker/uiconfig/ui/foldernamedialog.ui:8
msgctxt "foldernamedialog|FolderNameDialog"
-msgid "Folder Name ?"
+msgid "Folder Name"
msgstr ""
#: fpicker/uiconfig/ui/foldernamedialog.ui:91
msgctxt "foldernamedialog|label2"
-msgid "Na_me"
-msgstr "No_me"
+msgid "Na_me:"
+msgstr ""
#: fpicker/uiconfig/ui/foldernamedialog.ui:122
#, fuzzy
diff --git a/source/ast/helpcontent2/source/text/shared/00.po b/source/ast/helpcontent2/source/text/shared/00.po
index ac36cc9d977..764a7679685 100644
--- a/source/ast/helpcontent2/source/text/shared/00.po
+++ b/source/ast/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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2016-05-24 02:25+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Softastur <alministradores@softastur.org>\n"
@@ -397,16 +397,16 @@ msgctxt ""
"00000001.xhp\n"
"hd_id3149670\n"
"help.text"
-msgid "Back"
-msgstr "Anterior"
+msgid "Reset"
+msgstr ""
#: 00000001.xhp
msgctxt ""
"00000001.xhp\n"
"par_id3145068\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optionsdialog/revert\">Resets modified values back to the $[officename] default values.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/optionsdialog/revert\">Restablez los valores modificaos a los predeterminaos de $[officename].</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optionsdialog/revert\">Resets changes made to the current tab to those applicable when this dialog was opened.</ahelp>"
+msgstr ""
#: 00000001.xhp
msgctxt ""
@@ -552,6 +552,54 @@ msgctxt ""
msgid "<variable id=\"ShiftF1\">Press Shift+F1 and point to a control to learn more about that control.</variable>"
msgstr ""
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"hd_id631527692833772\n"
+"help.text"
+msgid "Options dialog buttons"
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"hd_id831527692839432\n"
+"help.text"
+msgid "OK"
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"par_id471527692844934\n"
+"help.text"
+msgid "Save the changes in the page and close the Options dialog."
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"hd_id261527692850720\n"
+"help.text"
+msgid "Cancel"
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"par_id571527692855533\n"
+"help.text"
+msgid "Close the Options dialog and discard all changes done."
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"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 Options dialog."
+msgstr ""
+
#: 00000002.xhp
msgctxt ""
"00000002.xhp\n"
@@ -11125,16 +11173,16 @@ msgctxt ""
"00040502.xhp\n"
"par_id3151293\n"
"help.text"
-msgid "<variable id=\"linienstile\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Line Styles</emph> tab </variable>"
-msgstr "<variable id=\"linienstile\">Escueya <emph>Formatu - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Oxetu - </emph></caseinline><caseinline select=\"CALC\"><emph>Gráficu - </emph></caseinline></switchinline><emph>Llinia, ficha Estilos de llinia</emph></variable>"
+msgid "<variable id=\"linienstile\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Line Styles</emph> tab</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3149317\n"
"help.text"
-msgid "<variable id=\"linienenden\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Arrow Styles</emph> tab </variable>"
-msgstr "<variable id=\"linienenden\">Escueya <emph>Formatu - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Oxetu - </emph></caseinline><caseinline select=\"CALC\"><emph>Gráficu - </emph></caseinline></switchinline><emph>Llinia, ficha Estilos de flecha</emph></variable>"
+msgid "<variable id=\"linienenden\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Arrow Styles</emph> tab</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
@@ -11173,15 +11221,15 @@ msgctxt ""
"00040502.xhp\n"
"par_id3154948\n"
"help.text"
-msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Area</emph> tab"
-msgstr "Escueya <emph>Formatu - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Oxetu - </emph></caseinline><caseinline select=\"CALC\"><emph>Gráficu - </emph></caseinline></switchinline><emph>Área, ficha Área</emph>"
+msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Area</emph> tab."
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3145607\n"
"help.text"
-msgid "Choose <emph>View - Styles</emph> - open context menu and choose <emph>Modify/New - Area</emph> tab (presentation documents)"
+msgid "Choose <emph>View - Styles</emph> - open context menu and choose <emph>Modify/New - Area</emph> tab (presentation documents)."
msgstr ""
#: 00040502.xhp
@@ -11189,47 +11237,47 @@ msgctxt ""
"00040502.xhp\n"
"par_id3152922\n"
"help.text"
-msgid "Choose <emph>Format - Title - Area</emph> tab (chart documents)"
-msgstr "Escueya la llingüeta <emph>Formatu - Títulu - Área</emph> (documentos del gráficu)"
+msgid "Choose <emph>Format - Title - Area</emph> tab (chart documents)."
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3157894\n"
"help.text"
-msgid "Choose <emph>Format - Legend - Area</emph> tab (chart documents)"
-msgstr "Escueya la llingüeta (gráficu)<emph>Formatu - Lleenda - Área</emph>"
+msgid "Choose <emph>Format - Legend - Area</emph> tab (chart documents)."
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3144444\n"
"help.text"
-msgid "Choose <emph>Format - Chart Wall - Area</emph> tab (chart documents)"
-msgstr "Menú <emph>Formatu - Planu llateral... - </emph> Ficha <emph>Área</emph> (diagrames)"
+msgid "Choose <emph>Format - Chart Wall - Area</emph> tab (chart documents)."
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3156543\n"
"help.text"
-msgid "Choose <emph>Format - Chart Floor - Area</emph> tab (chart documents)"
-msgstr "Menú <emph>Formatu - Base del diagrama... -</emph> Ficha <emph>Área</emph> (diagrames)"
+msgid "Choose <emph>Format - Chart Floor - Area</emph> tab (chart documents)."
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3150685\n"
"help.text"
-msgid "Choose <emph>Format - Chart Area - Area</emph> tab (chart documents)"
-msgstr "Menú <emph>Formatu - Área del diagrama... - </emph> Ficha <emph>Área</emph> (diagrames)"
+msgid "Choose <emph>Format - Chart Area - Area</emph> tab (chart documents)."
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3149664\n"
"help.text"
-msgid "Choose <emph>Slide - Properties - Background</emph> tab (in $[officename] Impress)"
+msgid "Choose <emph>Slide - Properties - Background</emph> tab (in $[officename] Impress)."
msgstr ""
#: 00040502.xhp
@@ -11237,7 +11285,15 @@ msgctxt ""
"00040502.xhp\n"
"par_id9149694\n"
"help.text"
-msgid "Choose <emph>Page - Properties - Background</emph> tab (in $[officename] Draw)"
+msgid "Choose <emph>Page - Properties - Background</emph> tab (in $[officename] Draw)."
+msgstr ""
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id841527083135387\n"
+"help.text"
+msgid "Choose <emph>Table - Properties - Background</emph> tab."
msgstr ""
#: 00040502.xhp
@@ -11349,32 +11405,32 @@ msgctxt ""
"00040502.xhp\n"
"par_id3150011\n"
"help.text"
-msgid "<variable id=\"schatte\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Shadow</emph> tab </variable>"
-msgstr "<variable id=\"schatte\">Escueya <emph>Formatu - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Oxetu - </emph></caseinline><caseinline select=\"CALC\"><emph>Gráficu - </emph></caseinline></switchinline><emph>Área, ficha Solombra</emph></variable>"
+msgid "<variable id=\"schatte\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Shadow</emph> tab</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3147441\n"
"help.text"
-msgid "<variable id=\"verlauf\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Gradients</emph> tab </variable>"
-msgstr "<variable id=\"verlauf\">Escueya <emph>Formatu - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Oxetu - </emph></caseinline><caseinline select=\"CALC\"><emph>Grafico - </emph></caseinline></switchinline><emph>Área, ficha Gradientes</emph></variable>"
+msgid "<variable id=\"verlauf\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Gradients</emph> tab</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3155308\n"
"help.text"
-msgid "<variable id=\"schraffur\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Hatching</emph> tab </variable>"
-msgstr "<variable id=\"schraffur\">Escueya <emph>Formatu - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Oxetu - </emph></caseinline><caseinline select=\"CALC\"><emph>Gráficu - </emph></caseinline></switchinline><emph>Área, ficha Trama</emph></variable>"
+msgid "<variable id=\"schraffur\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Hatching</emph> tab</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3145800\n"
"help.text"
-msgid "<variable id=\"bitmap\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Bitmaps</emph> tab </variable>"
-msgstr "<variable id=\"bitmap\">Escueya <emph>Formatu - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Oxetu - </emph></caseinline><caseinline select=\"CALC\"><emph>Gráficu - </emph></caseinline></switchinline><emph>Área, ficha Mapes de bits</emph></variable>"
+msgid "<variable id=\"bitmap\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Bitmaps</emph> tab</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
@@ -11413,8 +11469,8 @@ msgctxt ""
"00040502.xhp\n"
"par_id3156286\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F4 key </caseinline><caseinline select=\"IMPRESS\">F4 key </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F4 </caseinline><caseinline select=\"IMPRESS\">F4 </caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F4 key</caseinline><caseinline select=\"IMPRESS\">F4 key</caseinline></switchinline>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
@@ -11453,8 +11509,8 @@ msgctxt ""
"00040502.xhp\n"
"par_id3153099\n"
"help.text"
-msgid "<variable id=\"position2\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Position and Size</emph> tab </variable>"
-msgstr "<variable id=\"position2\">Escueya <emph>Formatu - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Oxetu - </emph></caseinline><caseinline select=\"CALC\"><emph>Gráficu - </emph></caseinline></switchinline><emph>Posición y tamañu, ficha Posición y tamañu</emph></variable>"
+msgid "<variable id=\"position2\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Position and Size</emph> tab</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
@@ -11485,16 +11541,16 @@ msgctxt ""
"00040502.xhp\n"
"par_id3145666\n"
"help.text"
-msgid "<variable id=\"ecke\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Slant & Corner Radius</emph> tab </variable>"
-msgstr "<variable id=\"ecke\">Escueya <emph>Formatu - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Oxetu - </emph></caseinline><caseinline select=\"CALC\"><emph>Gráficu - </emph></caseinline></switchinline><emph>Posición y tamañu - ficha Enclín / Radio d'esquina</emph></variable>"
+msgid "<variable id=\"ecke\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Slant & Corner Radius</emph> tab</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3146081\n"
"help.text"
-msgid "<variable id=\"legende\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Callout</emph> tab (only for textbox callouts, not for custom shapes callouts) </variable>"
-msgstr "<variable id=\"legende\">Escueya la llingüeta <emph>Llamada</emph> en <emph>Formatu - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Oxetu - </emph></caseinline><caseinline select=\"CALC\"><emph>Gráficu - </emph></caseinline></switchinline><emph>Posición y tamañu</emph> (namái pa llamaes con cuadros de testu, non pa llamaes con formes personalizaes) </variable>"
+msgid "<variable id=\"legende\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Callout</emph> tab (only for textbox callouts, not for custom shapes callouts)</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
@@ -11517,8 +11573,8 @@ msgctxt ""
"00040502.xhp\n"
"par_id3149019\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F8 key </caseinline><caseinline select=\"IMPRESS\">F8 key </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F8 </caseinline><caseinline select=\"IMPRESS\">F8 </caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F8 key</caseinline><caseinline select=\"IMPRESS\">F8 key</caseinline></switchinline>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
@@ -11805,8 +11861,8 @@ msgctxt ""
"00040502.xhp\n"
"par_id3153076\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Align Center Horizontally </caseinline><defaultinline>Centered</defaultinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Alliniar centráu horizontalmente</caseinline><defaultinline>Centráu</defaultinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Align Center Horizontally</caseinline><defaultinline>Centered</defaultinline></switchinline>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
@@ -11845,8 +11901,8 @@ msgctxt ""
"00040502.xhp\n"
"par_id3150527\n"
"help.text"
-msgid "<variable id=\"font\">Click <emph>Fontwork</emph> icon on <emph>Drawing</emph> bar </variable>"
-msgstr "<variable id=\"font\">Faiga clic n'iconu <emph>Fontwork</emph> de la barra de ferramientes <emph>Dibuxu</emph></variable>"
+msgid "<variable id=\"font\">Click <emph>Fontwork</emph> icon on <emph>Drawing</emph> bar</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
diff --git a/source/ast/helpcontent2/source/text/shared/01.po b/source/ast/helpcontent2/source/text/shared/01.po
index 33b23ca8ef7..8b8adc2b29c 100644
--- a/source/ast/helpcontent2/source/text/shared/01.po
+++ b/source/ast/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: 2018-05-23 23:19+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2016-12-24 12:08+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -23587,6 +23587,22 @@ msgstr ""
#: 05210100.xhp
msgctxt ""
"05210100.xhp\n"
+"hd_id471527077476052\n"
+"help.text"
+msgid "Cell, Row or Table background selector"
+msgstr ""
+
+#: 05210100.xhp
+msgctxt ""
+"05210100.xhp\n"
+"par_id661527077493366\n"
+"help.text"
+msgid "Select the table object which background area is to be filled."
+msgstr ""
+
+#: 05210100.xhp
+msgctxt ""
+"05210100.xhp\n"
"hd_id3147373\n"
"help.text"
msgid "None"
@@ -31205,7 +31221,7 @@ msgctxt ""
"06040100.xhp\n"
"hd_id3145072\n"
"help.text"
-msgid "Automatic *bold* and _underline_"
+msgid "Automatic *bold*, /italic/, -strikeout- and _underline_"
msgstr ""
#: 06040100.xhp
@@ -31213,7 +31229,7 @@ msgctxt ""
"06040100.xhp\n"
"par_id3153577\n"
"help.text"
-msgid "Automatically applies bold formatting to text enclosed by asterisks (*), and underline to text enclosed by underscores ( _ ), for example, *bold*. The asterisks and underscores are not displayed after the formatting is applied."
+msgid "Automatically applies bold, italic, strikethrough or underline formatting to text enclosed by asterisks (*), slashes (/), hyphens (-), and underscores (_), respectively. These characters disappear after the formatting is applied."
msgstr ""
#: 06040100.xhp
@@ -31221,7 +31237,7 @@ msgctxt ""
"06040100.xhp\n"
"par_id3153127\n"
"help.text"
-msgid "This feature does not work if the formatting characters * or _ are entered with an <link href=\"text/shared/00/00000005.xhp#IME\" name=\"Input Method Editor\">Input Method Editor</link>."
+msgid "This feature does not work if the formatting characters <item type=\"literal\">* / - _</item> are entered with an <link href=\"text/shared/00/00000005.xhp#IME\" name=\"Input Method Editor\">Input Method Editor</link>."
msgstr ""
#: 06040100.xhp
diff --git a/source/ast/helpcontent2/source/text/shared/optionen.po b/source/ast/helpcontent2/source/text/shared/optionen.po
index 67cc9fb8bad..436bada6c9e 100644
--- a/source/ast/helpcontent2/source/text/shared/optionen.po
+++ b/source/ast/helpcontent2/source/text/shared/optionen.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-08 15:10+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2016-07-05 17:23+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Softastur <alministradores@softastur.org>\n"
@@ -83,6 +83,22 @@ msgstr ""
#: 01000000.xhp
msgctxt ""
"01000000.xhp\n"
+"hd_id551527692881035\n"
+"help.text"
+msgid "Help"
+msgstr ""
+
+#: 01000000.xhp
+msgctxt ""
+"01000000.xhp\n"
+"par_id831527692885723\n"
+"help.text"
+msgid "Opens the help contents for the Options page displayed."
+msgstr ""
+
+#: 01000000.xhp
+msgctxt ""
+"01000000.xhp\n"
"hd_id3159149\n"
"help.text"
msgid "<link href=\"text/shared/optionen/01010000.xhp\" name=\"$[officename]\">%PRODUCTNAME</link>"
@@ -4565,8 +4581,8 @@ msgctxt ""
"01030300.xhp\n"
"par_idN10640\n"
"help.text"
-msgid "Options"
-msgstr "Opciones"
+msgid "Security Options and Warnings"
+msgstr ""
#: 01030300.xhp
msgctxt ""
@@ -4597,8 +4613,8 @@ msgctxt ""
"01030300.xhp\n"
"hd_id3168736\n"
"help.text"
-msgid "Persistently save passwords protected by a master password"
-msgstr "Persistentemente guardar les contraseñes protexíes por una contraseña maestra"
+msgid "Persistently save passwords for web connections"
+msgstr ""
#: 01030300.xhp
msgctxt ""
@@ -4613,8 +4629,24 @@ msgctxt ""
"01030300.xhp\n"
"hd_id3901791\n"
"help.text"
+msgid "Protected by a master password (recommended)"
+msgstr ""
+
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"par_id31527711486980\n"
+"help.text"
+msgid "Check to enable all connections' passwords to be protected by a master password."
+msgstr ""
+
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"hd_id141527711343312\n"
+"help.text"
msgid "Master Password"
-msgstr "Contraseña maestra"
+msgstr ""
#: 01030300.xhp
msgctxt ""
@@ -13733,8 +13765,8 @@ msgctxt ""
"java.xhp\n"
"hd_id3148618\n"
"help.text"
-msgid "Optional (unstable) options"
-msgstr "Carauterístiques opcionales (inestables)"
+msgid "Optional Features"
+msgstr ""
#: java.xhp
msgctxt ""
@@ -13749,8 +13781,8 @@ msgctxt ""
"java.xhp\n"
"par_id3156344\n"
"help.text"
-msgid "It enables features that are not yet complete or contain known bugs. The list of these features is different version by version, or even it can be empty."
-msgstr "Activa carauterístiques qu'entá nun tan completes o contienen fallos conocíos. La llista d'eses carauterístiques ye distinta d'una versión a otra, o tamién pue tar balera."
+msgid "Enables features that are not yet complete or may contain known bugs. The list of these features is different version by version, or even it can be empty."
+msgstr ""
#: java.xhp
msgctxt ""
@@ -13765,7 +13797,7 @@ msgctxt ""
"java.xhp\n"
"par_id3156345\n"
"help.text"
-msgid "It enables macro recording, so the <link href=\"text/shared/guide/macro_recording.xhp\" name=\"Tools - Macros - Record Macro\"><item type=\"menuitem\">Tools - Macros - Record Macro</item></link> menu item will be available."
+msgid "Enables macro recording. The <link href=\"text/shared/guide/macro_recording.xhp\" name=\"Tools - Macros - Record Macro\"><item type=\"menuitem\">Tools - Macros - Record Macro</item></link> menu item is available."
msgstr ""
#: java.xhp
diff --git a/source/ast/officecfg/registry/data/org/openoffice/Office/UI.po b/source/ast/officecfg/registry/data/org/openoffice/Office/UI.po
index a050495e787..7433123b6ae 100644
--- a/source/ast/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/ast/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-22 13:17+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2016-12-01 12:14+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -26930,8 +26930,8 @@ msgctxt ""
"..WriterCommands.UserInterface.Commands..uno:TextAttributes\n"
"Label\n"
"value.text"
-msgid "Text Attributes"
-msgstr "Atributos de Testu"
+msgid "Text Attributes..."
+msgstr ""
#: WriterCommands.xcu
msgctxt ""
diff --git a/source/ast/readlicense_oo/docs.po b/source/ast/readlicense_oo/docs.po
index 5c9a88e949d..f5e9f39940f 100644
--- a/source/ast/readlicense_oo/docs.po
+++ b/source/ast/readlicense_oo/docs.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-04-17 15:54+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2016-11-22 15:08+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -117,7 +117,7 @@ msgctxt ""
"readme.xrm\n"
"macxiOSX\n"
"readmeitem.text"
-msgid "MacOSX 10.8 (Mountain Lion) or higher"
+msgid "MacOSX 10.9 (Mavericks) or higher"
msgstr ""
#: readme.xrm
diff --git a/source/ast/sc/messages.po b/source/ast/sc/messages.po
index a9854f10785..251e63701ea 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-12 14:40+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"
@@ -1872,16 +1872,21 @@ msgid "Nested arrays are not supported."
msgstr "Nun hai encontu pa matrices añeraes."
#: sc/inc/globstr.hrc:390
+msgctxt "STR_ERR_LONG_BAD_ARRAY_CONTENT"
+msgid "Unsupported inline array content."
+msgstr ""
+
+#: sc/inc/globstr.hrc:391
msgctxt "STR_UNDO_TEXTTOCOLUMNS"
msgid "Text to Columns"
msgstr "Testu a Columnes"
-#: sc/inc/globstr.hrc:391
+#: sc/inc/globstr.hrc:392
msgctxt "STR_DOC_UPDATED"
msgid "Your spreadsheet has been updated with changes saved by other users."
msgstr "La to fueya de cálculu anovóse con cambeos guardaos por otru usuariu."
-#: sc/inc/globstr.hrc:392
+#: sc/inc/globstr.hrc:393
msgctxt "STR_DOC_WILLBESAVED"
msgid ""
"The spreadsheet must be saved now to activate sharing mode.\n"
@@ -1892,7 +1897,7 @@ msgstr ""
"\n"
"¿Quies siguir?"
-#: sc/inc/globstr.hrc:393
+#: sc/inc/globstr.hrc:394
msgctxt "STR_DOC_WILLNOTBESAVED"
msgid ""
"Already resolved merge conflicts will be lost and your changes to the shared spreadsheet will not be saved.\n"
@@ -1903,7 +1908,7 @@ msgstr ""
"\n"
"¿Quies siguir?"
-#: sc/inc/globstr.hrc:394
+#: sc/inc/globstr.hrc:395
msgctxt "STR_DOC_DISABLESHARED"
msgid ""
"Disabling shared mode of a spreadsheet hinders all other users of the shared spreadsheet to merge back their work.\n"
@@ -1914,7 +1919,7 @@ msgstr ""
"\n"
"¿Quies siguir?"
-#: sc/inc/globstr.hrc:395
+#: sc/inc/globstr.hrc:396
msgctxt "STR_DOC_NOLONGERSHARED"
msgid ""
"This spreadsheet is no longer in shared mode.\n"
@@ -1925,7 +1930,7 @@ msgstr ""
"\n"
"Guardar la fueya de cálculu nun ficheru aparte y fusionar los cambeos a la fueya de cálculu compartida manualmente."
-#: sc/inc/globstr.hrc:396
+#: sc/inc/globstr.hrc:397
msgctxt "STR_FILE_LOCKED_TRY_LATER"
msgid ""
"The shared spreadsheet file is locked due to a merge in progress by user: '%1'\n"
@@ -1936,7 +1941,7 @@ msgstr ""
"\n"
"El mou compartíu d'un ficheru bloquiáu nun pue desactivase. Inténtalo más sero."
-#: sc/inc/globstr.hrc:397
+#: sc/inc/globstr.hrc:398
msgctxt "STR_FILE_LOCKED_SAVE_LATER"
msgid ""
"The shared spreadsheet file is locked due to a merge in progress by user: '%1'\n"
@@ -1947,147 +1952,147 @@ msgstr ""
"\n"
"Vuelvi a intentalo más sero pa guardar los cambios."
-#: sc/inc/globstr.hrc:398
+#: sc/inc/globstr.hrc:399
msgctxt "STR_UNKNOWN_USER"
msgid "Unknown User"
msgstr "Usuariu desconocíu"
-#: sc/inc/globstr.hrc:399
+#: sc/inc/globstr.hrc:400
msgctxt "STR_SHAPE_AUTOSHAPE"
msgid "AutoShape"
msgstr "AutoForma"
-#: sc/inc/globstr.hrc:400
+#: sc/inc/globstr.hrc:401
msgctxt "STR_SHAPE_RECTANGLE"
msgid "Rectangle"
msgstr "Rectángulu"
-#: sc/inc/globstr.hrc:401
+#: sc/inc/globstr.hrc:402
msgctxt "STR_SHAPE_LINE"
msgid "Line"
msgstr "Llinia"
-#: sc/inc/globstr.hrc:402
+#: sc/inc/globstr.hrc:403
msgctxt "STR_SHAPE_OVAL"
msgid "Oval"
msgstr "Óvalu"
-#: sc/inc/globstr.hrc:403
+#: sc/inc/globstr.hrc:404
msgctxt "STR_FORM_BUTTON"
msgid "Button"
msgstr "Botón"
-#: sc/inc/globstr.hrc:404
+#: sc/inc/globstr.hrc:405
msgctxt "STR_FORM_CHECKBOX"
msgid "Check Box"
msgstr "Caxellu de verificación"
-#: sc/inc/globstr.hrc:405
+#: sc/inc/globstr.hrc:406
msgctxt "STR_FORM_OPTIONBUTTON"
msgid "Option Button"
msgstr "Botón de seleición"
-#: sc/inc/globstr.hrc:406
+#: sc/inc/globstr.hrc:407
msgctxt "STR_FORM_LABEL"
msgid "Label"
msgstr "Etiqueta"
-#: sc/inc/globstr.hrc:407
+#: sc/inc/globstr.hrc:408
msgctxt "STR_FORM_LISTBOX"
msgid "List Box"
msgstr "Caxellu de llista"
-#: sc/inc/globstr.hrc:408
+#: sc/inc/globstr.hrc:409
msgctxt "STR_FORM_GROUPBOX"
msgid "Group Box"
msgstr "Cuadru de grupu"
-#: sc/inc/globstr.hrc:409
+#: sc/inc/globstr.hrc:410
msgctxt "STR_FORM_DROPDOWN"
msgid "Drop Down"
msgstr "Caxa estenderexable"
-#: sc/inc/globstr.hrc:410
+#: sc/inc/globstr.hrc:411
msgctxt "STR_FORM_SPINNER"
msgid "Spinner"
msgstr "Seleutor"
-#: sc/inc/globstr.hrc:411
+#: sc/inc/globstr.hrc:412
msgctxt "STR_FORM_SCROLLBAR"
msgid "Scroll Bar"
msgstr "Barra de desplazamientu"
-#: sc/inc/globstr.hrc:412
+#: sc/inc/globstr.hrc:413
msgctxt "STR_STYLE_FAMILY_CELL"
msgid "Cell Styles"
msgstr "Estilos de caxella"
-#: sc/inc/globstr.hrc:413
+#: sc/inc/globstr.hrc:414
msgctxt "STR_STYLE_FAMILY_PAGE"
msgid "Page Styles"
msgstr "Estilos de páxina"
-#: sc/inc/globstr.hrc:414
+#: sc/inc/globstr.hrc:415
msgctxt "STR_ERR_DATAPILOTSOURCE"
msgid "Pivot table source data is invalid."
msgstr "Los datos d'orixe de la tabla dinámica nun son válidos."
-#: sc/inc/globstr.hrc:415
+#: sc/inc/globstr.hrc:416
msgctxt "STR_OPTIONS_WARN_SEPARATORS"
msgid "Because the current formula separator settings conflict with the locale, the formula separators have been reset to their default values."
msgstr "Los separtadores de fórmula reaniciáronse a los valores predeterminaos, darréu que los separtadores actuales entren en conflictu col locale."
-#: sc/inc/globstr.hrc:416
+#: sc/inc/globstr.hrc:417
msgctxt "STR_UNDO_INSERT_CURRENT_DATE"
msgid "Insert Current Date"
msgstr "Inxertar data actual"
-#: sc/inc/globstr.hrc:417
+#: sc/inc/globstr.hrc:418
msgctxt "STR_UNDO_INSERT_CURRENT_TIME"
msgid "Insert Current Time"
msgstr "Inxertar tiempu actual"
-#: sc/inc/globstr.hrc:418
+#: sc/inc/globstr.hrc:419
msgctxt "STR_MANAGE_NAMES"
msgid "Manage Names..."
msgstr "Xestionar nomes..."
-#: sc/inc/globstr.hrc:419
+#: sc/inc/globstr.hrc:420
msgctxt "STR_HEADER_NAME"
msgid "Name"
msgstr "Nome"
-#: sc/inc/globstr.hrc:420
+#: sc/inc/globstr.hrc:421
msgctxt "STR_HEADER_RANGE_OR_EXPR"
msgid "Range or formula expression"
msgstr ""
-#: sc/inc/globstr.hrc:421
+#: sc/inc/globstr.hrc:422
msgctxt "STR_HEADER_SCOPE"
msgid "Scope"
msgstr "Ámbitu"
-#: sc/inc/globstr.hrc:422
+#: sc/inc/globstr.hrc:423
msgctxt "STR_MULTI_SELECT"
msgid "(multiple)"
msgstr "(múltiple)"
-#: sc/inc/globstr.hrc:423
+#: sc/inc/globstr.hrc:424
msgctxt "STR_GLOBAL_SCOPE"
msgid "Document (Global)"
msgstr "Documentu (Global)"
-#: sc/inc/globstr.hrc:424
+#: sc/inc/globstr.hrc:425
msgctxt "STR_ERR_NAME_EXISTS"
msgid "Invalid name. Already in use for the selected scope."
msgstr "Nome inválidu. Yá se ta usando pal contestu seleicionáu."
-#: sc/inc/globstr.hrc:425
+#: sc/inc/globstr.hrc:426
msgctxt "STR_ERR_NAME_INVALID"
msgid "Invalid name. Only use letters, numbers and underscore."
msgstr "Nome inválidu. Usa namái lletres, númberos y guión baxu."
-#: sc/inc/globstr.hrc:426
+#: sc/inc/globstr.hrc:427
msgctxt "STR_UNSAVED_EXT_REF"
msgid ""
"This Document contains external references to unsaved documents.\n"
@@ -2098,217 +2103,217 @@ msgstr ""
"\n"
"¿Quies siguir?"
-#: sc/inc/globstr.hrc:427
+#: sc/inc/globstr.hrc:428
msgctxt "STR_CLOSE_WITH_UNSAVED_REFS"
msgid "This Document is referenced by another document and not yet saved. Closing it without saving will result in data loss."
msgstr "Esti documentu tien referencies n'otru documentu y entá nun se guardó. Zarralu ensin guardar producirá la perda de datos."
-#: sc/inc/globstr.hrc:428
+#: sc/inc/globstr.hrc:429
msgctxt "STR_HEADER_RANGE"
msgid "Range"
msgstr "Rangu"
-#: sc/inc/globstr.hrc:429
+#: sc/inc/globstr.hrc:430
msgctxt "STR_HEADER_COND"
msgid "First Condition"
msgstr "Primera condición"
-#: sc/inc/globstr.hrc:430
+#: sc/inc/globstr.hrc:431
msgctxt "STR_COND_CONDITION"
msgid "Cell value is"
msgstr "El valor de la caxella ye"
-#: sc/inc/globstr.hrc:431
+#: sc/inc/globstr.hrc:432
msgctxt "STR_COND_COLORSCALE"
msgid "ColorScale"
msgstr "EscalaColor"
-#: sc/inc/globstr.hrc:432
+#: sc/inc/globstr.hrc:433
msgctxt "STR_COND_DATABAR"
msgid "DataBar"
msgstr "BarraDatos"
-#: sc/inc/globstr.hrc:433
+#: sc/inc/globstr.hrc:434
msgctxt "STR_COND_ICONSET"
msgid "IconSet"
msgstr "XueguIconos"
-#: sc/inc/globstr.hrc:434
+#: sc/inc/globstr.hrc:435
msgctxt "STR_COND_BETWEEN"
msgid "between"
msgstr "ente"
-#: sc/inc/globstr.hrc:435
+#: sc/inc/globstr.hrc:436
msgctxt "STR_COND_NOTBETWEEN"
msgid "not between"
msgstr "nun ta ente"
-#: sc/inc/globstr.hrc:436
+#: sc/inc/globstr.hrc:437
msgctxt "STR_COND_UNIQUE"
msgid "unique"
msgstr "únicu"
-#: sc/inc/globstr.hrc:437
+#: sc/inc/globstr.hrc:438
msgctxt "STR_COND_DUPLICATE"
msgid "duplicate"
msgstr "duplicáu"
-#: sc/inc/globstr.hrc:438
+#: sc/inc/globstr.hrc:439
msgctxt "STR_COND_FORMULA"
msgid "Formula is"
msgstr "La fórmula ye"
-#: sc/inc/globstr.hrc:439
+#: sc/inc/globstr.hrc:440
msgctxt "STR_COND_TOP10"
msgid "Top Elements"
msgstr "Elementos superiores"
-#: sc/inc/globstr.hrc:440
+#: sc/inc/globstr.hrc:441
msgctxt "STR_COND_BOTTOM10"
msgid "Bottom Elements"
msgstr "Elementos inferiores"
-#: sc/inc/globstr.hrc:441
+#: sc/inc/globstr.hrc:442
msgctxt "STR_COND_TOP_PERCENT"
msgid "Top Percent"
msgstr "Porcentaxe superior"
-#: sc/inc/globstr.hrc:442
+#: sc/inc/globstr.hrc:443
msgctxt "STR_COND_DATE"
msgid "Date is"
msgstr "La data ye"
-#: sc/inc/globstr.hrc:443
+#: sc/inc/globstr.hrc:444
msgctxt "STR_COND_BOTTOM_PERCENT"
msgid "Bottom Percent"
msgstr "Porcentax inferior"
-#: sc/inc/globstr.hrc:444
+#: sc/inc/globstr.hrc:445
msgctxt "STR_COND_ABOVE_AVERAGE"
msgid "Above Average"
msgstr "Per riba de la media"
-#: sc/inc/globstr.hrc:445
+#: sc/inc/globstr.hrc:446
msgctxt "STR_COND_BELOW_AVERAGE"
msgid "Below Average"
msgstr "Per baxo de la media"
-#: sc/inc/globstr.hrc:446
+#: sc/inc/globstr.hrc:447
msgctxt "STR_COND_ABOVE_EQUAL_AVERAGE"
msgid "Above or equal Average"
msgstr "Superior o igual a la media"
-#: sc/inc/globstr.hrc:447
+#: sc/inc/globstr.hrc:448
msgctxt "STR_COND_BELOW_EQUAL_AVERAGE"
msgid "Below or equal Average"
msgstr "Inferior o igual a la media"
-#: sc/inc/globstr.hrc:448
+#: sc/inc/globstr.hrc:449
msgctxt "STR_COND_ERROR"
msgid "an Error code"
msgstr "un códigu d'error"
-#: sc/inc/globstr.hrc:449
+#: sc/inc/globstr.hrc:450
msgctxt "STR_COND_NOERROR"
msgid "not an Error code"
msgstr "nun ye un códigu d'error"
-#: sc/inc/globstr.hrc:450
+#: sc/inc/globstr.hrc:451
msgctxt "STR_COND_BEGINS_WITH"
msgid "Begins with"
msgstr "Principia con"
-#: sc/inc/globstr.hrc:451
+#: sc/inc/globstr.hrc:452
msgctxt "STR_COND_ENDS_WITH"
msgid "Ends with"
msgstr "Fina con"
-#: sc/inc/globstr.hrc:452
+#: sc/inc/globstr.hrc:453
msgctxt "STR_COND_CONTAINS"
msgid "Contains"
msgstr "Contién"
-#: sc/inc/globstr.hrc:453
+#: sc/inc/globstr.hrc:454
msgctxt "STR_COND_NOT_CONTAINS"
msgid "Not Contains"
msgstr "Nun contién"
-#: sc/inc/globstr.hrc:454
+#: sc/inc/globstr.hrc:455
msgctxt "STR_COND_TODAY"
msgid "today"
msgstr "güei"
-#: sc/inc/globstr.hrc:455
+#: sc/inc/globstr.hrc:456
msgctxt "STR_COND_YESTERDAY"
msgid "yesterday"
msgstr "ayeri"
-#: sc/inc/globstr.hrc:456
+#: sc/inc/globstr.hrc:457
msgctxt "STR_COND_TOMORROW"
msgid "tomorrow"
msgstr "mañana"
-#: sc/inc/globstr.hrc:457
+#: sc/inc/globstr.hrc:458
msgctxt "STR_COND_LAST7DAYS"
msgid "in the last 7 days"
msgstr "nos últimos 7 díes"
-#: sc/inc/globstr.hrc:458
+#: sc/inc/globstr.hrc:459
msgctxt "STR_COND_THISWEEK"
msgid "this week"
msgstr "esta selmana"
-#: sc/inc/globstr.hrc:459
+#: sc/inc/globstr.hrc:460
msgctxt "STR_COND_LASTWEEK"
msgid "last week"
msgstr "la selmana pasada"
-#: sc/inc/globstr.hrc:460
+#: sc/inc/globstr.hrc:461
msgctxt "STR_COND_NEXTWEEK"
msgid "next week"
msgstr "la selmana que vien"
-#: sc/inc/globstr.hrc:461
+#: sc/inc/globstr.hrc:462
msgctxt "STR_COND_THISMONTH"
msgid "this month"
msgstr "esti mes"
-#: sc/inc/globstr.hrc:462
+#: sc/inc/globstr.hrc:463
msgctxt "STR_COND_LASTMONTH"
msgid "last month"
msgstr "últimu mes"
-#: sc/inc/globstr.hrc:463
+#: sc/inc/globstr.hrc:464
msgctxt "STR_COND_NEXTMONTH"
msgid "next month"
msgstr "siguiente mes"
-#: sc/inc/globstr.hrc:464
+#: sc/inc/globstr.hrc:465
msgctxt "STR_COND_THISYEAR"
msgid "this year"
msgstr "esti añu"
-#: sc/inc/globstr.hrc:465
+#: sc/inc/globstr.hrc:466
msgctxt "STR_COND_LASTYEAR"
msgid "last year"
msgstr "caberu añu"
-#: sc/inc/globstr.hrc:466
+#: sc/inc/globstr.hrc:467
msgctxt "STR_COND_NEXTYEAR"
msgid "next year"
msgstr "siguiente añu"
-#: sc/inc/globstr.hrc:467
+#: sc/inc/globstr.hrc:468
msgctxt "STR_COND_AND"
msgid "and"
msgstr "y"
-#: sc/inc/globstr.hrc:468
+#: sc/inc/globstr.hrc:469
msgctxt "STR_ERR_CONDFORMAT_PROTECTED"
msgid "Conditional Formats can not be created, deleted or changed in protected sheets."
msgstr ""
-#: sc/inc/globstr.hrc:469
+#: sc/inc/globstr.hrc:470
msgctxt "STR_EDIT_EXISTING_COND_FORMATS"
msgid ""
"The selected cell already contains conditional formatting. You can either edit the existing conditional format or you define a new overlapping conditional format.\n"
@@ -2319,7 +2324,7 @@ msgstr ""
"\n"
" ¿Quies editar el formatu condicional esistente?"
-#: sc/inc/globstr.hrc:470
+#: sc/inc/globstr.hrc:471
msgctxt "STR_QUERY_FORMULA_RECALC_ONLOAD_ODS"
msgid ""
"This document was last saved by an application other than %PRODUCTNAME. Some formula cells may produce different results when recalculated.\n"
@@ -2330,7 +2335,7 @@ msgstr ""
"\n"
"¿Quier recalcular agora toles caxelles con fórmules d'esti documentu?"
-#: sc/inc/globstr.hrc:471
+#: sc/inc/globstr.hrc:472
msgctxt "STR_QUERY_FORMULA_RECALC_ONLOAD_XLS"
msgid ""
"This document was last saved by Excel. Some formula cells may produce different results when recalculated.\n"
@@ -2341,77 +2346,77 @@ msgstr ""
"\n"
"¿Quies recalcular agora toles caxelles con fórmules del documentu?"
-#: sc/inc/globstr.hrc:472
+#: sc/inc/globstr.hrc:473
msgctxt "STR_NO_INSERT_DELETE_OVER_PIVOT_TABLE"
msgid "You cannot insert or delete cells when the affected range intersects with pivot table."
msgstr "Nun pue inxertar o desaniciar caxelles cuando l'área afeutada cruza una tabla dinámica."
-#: sc/inc/globstr.hrc:473
+#: sc/inc/globstr.hrc:474
msgctxt "STR_DPFIELD_GROUP_BY_SECONDS"
msgid "Seconds"
msgstr "Segundos"
-#: sc/inc/globstr.hrc:474
+#: sc/inc/globstr.hrc:475
msgctxt "STR_DPFIELD_GROUP_BY_MINUTES"
msgid "Minutes"
msgstr "Minutos"
-#: sc/inc/globstr.hrc:475
+#: sc/inc/globstr.hrc:476
msgctxt "STR_DPFIELD_GROUP_BY_HOURS"
msgid "Hours"
msgstr "Hores"
-#: sc/inc/globstr.hrc:476
+#: sc/inc/globstr.hrc:477
msgctxt "STR_DPFIELD_GROUP_BY_DAYS"
msgid "Days"
msgstr "Díes"
-#: sc/inc/globstr.hrc:477
+#: sc/inc/globstr.hrc:478
msgctxt "STR_DPFIELD_GROUP_BY_MONTHS"
msgid "Months"
msgstr "Meses"
-#: sc/inc/globstr.hrc:478
+#: sc/inc/globstr.hrc:479
msgctxt "STR_DPFIELD_GROUP_BY_QUARTERS"
msgid "Quarters"
msgstr "Trimestres"
-#: sc/inc/globstr.hrc:479
+#: sc/inc/globstr.hrc:480
msgctxt "STR_DPFIELD_GROUP_BY_YEARS"
msgid "Years"
msgstr "Años"
-#: sc/inc/globstr.hrc:480
+#: sc/inc/globstr.hrc:481
msgctxt "STR_INVALIDVAL"
msgid "Invalid target value."
msgstr "Valor de destín inválidu."
-#: sc/inc/globstr.hrc:481
+#: sc/inc/globstr.hrc:482
msgctxt "STR_INVALIDVAR"
msgid "Undefined name for variable cell."
msgstr "Nome indefiníu pa caxella de variable."
-#: sc/inc/globstr.hrc:482
+#: sc/inc/globstr.hrc:483
msgctxt "STR_INVALIDFORM"
msgid "Undefined name as formula cell."
msgstr "Nome indefiníu como caxella de fórmula."
-#: sc/inc/globstr.hrc:483
+#: sc/inc/globstr.hrc:484
msgctxt "STR_NOFORMULA"
msgid "Formula cell must contain a formula."
msgstr ""
-#: sc/inc/globstr.hrc:484
+#: sc/inc/globstr.hrc:485
msgctxt "STR_INVALIDINPUT"
msgid "Invalid input."
msgstr "Entrada inválida."
-#: sc/inc/globstr.hrc:485
+#: sc/inc/globstr.hrc:486
msgctxt "STR_INVALIDCONDITION"
msgid "Invalid condition."
msgstr "Condición inválida."
-#: sc/inc/globstr.hrc:486
+#: sc/inc/globstr.hrc:487
msgctxt "STR_QUERYREMOVE"
msgid ""
"Should the entry\n"
@@ -2422,135 +2427,135 @@ msgstr ""
"#\n"
"se desanicie?"
-#: sc/inc/globstr.hrc:487
+#: sc/inc/globstr.hrc:488
msgctxt "STR_COPYLIST"
msgid "Copy List"
msgstr "Copiar llista"
-#: sc/inc/globstr.hrc:488
+#: sc/inc/globstr.hrc:489
msgctxt "STR_COPYFROM"
msgid "List from"
msgstr "Llista de"
-#: sc/inc/globstr.hrc:489
+#: sc/inc/globstr.hrc:490
msgctxt "STR_COPYERR"
msgid "Cells without text have been ignored."
msgstr "Inoráronse les caxelles ensin testu."
-#: sc/inc/globstr.hrc:490
+#: sc/inc/globstr.hrc:491
#, c-format
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%s-click to follow hyperlink:"
msgstr ""
-#: sc/inc/globstr.hrc:491
+#: sc/inc/globstr.hrc:492
msgctxt "STR_CLICKHYPERLINK"
msgid "click to open hyperlink:"
msgstr "clic p'abrir l'hiperenllaz:"
-#: sc/inc/globstr.hrc:492
+#: sc/inc/globstr.hrc:493
msgctxt "STR_PRINT_PREVIEW_NODATA"
msgid "No Data"
msgstr ""
-#: sc/inc/globstr.hrc:493
+#: sc/inc/globstr.hrc:494
msgctxt "STR_PRINT_PREVIEW_EMPTY_RANGE"
msgid "Print Range Empty"
msgstr ""
-#: sc/inc/globstr.hrc:494
+#: sc/inc/globstr.hrc:495
#, fuzzy
msgctxt "STR_UNDO_CONDFORMAT"
msgid "Conditional Format"
msgstr "Fomatu condicional"
-#: sc/inc/globstr.hrc:495
+#: sc/inc/globstr.hrc:496
#, fuzzy
msgctxt "STR_UNDO_CONDFORMAT_LIST"
msgid "Conditional Formats"
msgstr "Fomatu condicional"
-#: sc/inc/globstr.hrc:496
+#: sc/inc/globstr.hrc:497
msgctxt "STR_UNDO_FORMULA_TO_VALUE"
msgid "Convert Formula To Value"
msgstr ""
-#: sc/inc/globstr.hrc:497
+#: sc/inc/globstr.hrc:498
msgctxt "STR_UNQUOTED_STRING"
msgid "Strings without quotes are interpreted as column/row labels."
msgstr ""
-#: sc/inc/globstr.hrc:498
+#: sc/inc/globstr.hrc:499
msgctxt "STR_ENTER_VALUE"
msgid "Enter a value!"
msgstr ""
-#: sc/inc/globstr.hrc:499
+#: sc/inc/globstr.hrc:500
msgctxt "STR_TABLE_COUNT"
msgid "Sheet %1 of %2"
msgstr ""
-#: sc/inc/globstr.hrc:500
+#: sc/inc/globstr.hrc:501
msgctxt "STR_FUNCTIONS_FOUND"
msgid "%1 and %2 more"
msgstr ""
-#: sc/inc/globstr.hrc:501
+#: sc/inc/globstr.hrc:502
msgctxt "STR_GENERAL"
msgid "General"
msgstr "Xeneral"
-#: sc/inc/globstr.hrc:502
+#: sc/inc/globstr.hrc:503
msgctxt "STR_NUMBER"
msgid "Number"
msgstr "Númberu"
-#: sc/inc/globstr.hrc:503
+#: sc/inc/globstr.hrc:504
msgctxt "STR_PERCENT"
msgid "Percent"
msgstr "Porcentaxe"
-#: sc/inc/globstr.hrc:504
+#: sc/inc/globstr.hrc:505
msgctxt "STR_CURRENCY"
msgid "Currency"
msgstr "Moneda"
-#: sc/inc/globstr.hrc:505
+#: sc/inc/globstr.hrc:506
msgctxt "STR_DATE"
msgid "Date"
msgstr "Data"
-#: sc/inc/globstr.hrc:506
+#: sc/inc/globstr.hrc:507
msgctxt "STR_TIME"
msgid "Time"
msgstr "Tiempu"
-#: sc/inc/globstr.hrc:507
+#: sc/inc/globstr.hrc:508
msgctxt "STR_SCIENTIFIC"
msgid "Scientific"
msgstr "Científicu"
-#: sc/inc/globstr.hrc:508
+#: sc/inc/globstr.hrc:509
msgctxt "STR_FRACTION"
msgid "Fraction"
msgstr "Fraición"
-#: sc/inc/globstr.hrc:509
+#: sc/inc/globstr.hrc:510
msgctxt "STR_BOOLEAN_VALUE"
msgid "Boolean Value"
msgstr "Valor booleanu"
-#: sc/inc/globstr.hrc:510
+#: sc/inc/globstr.hrc:511
msgctxt "STR_TEXT"
msgid "Text"
msgstr "Testu"
-#: sc/inc/globstr.hrc:511
+#: sc/inc/globstr.hrc:512
msgctxt "STR_QUERY_PIVOTTABLE_DELTAB"
msgid "The selected sheet(s) contain source data of related pivot tables that will be lost. Are you sure you want to delete the selected sheet(s)?"
msgstr ""
-#: sc/inc/globstr.hrc:512
+#: sc/inc/globstr.hrc:513
msgctxt "STR_ERR_NAME_INVALID_CELL_REF"
msgid "Invalid name. Reference to a cell, or a range of cells not allowed."
msgstr ""
@@ -10681,8 +10686,8 @@ msgstr "Mou"
#: sc/inc/scfuncs.hrc:3010
msgctxt "SC_OPCODE_T_TEST"
-msgid "Mode specifies the number of distribution tails to return. 1= one-tailed, 2 = two-tailed distribution"
-msgstr "Mou especifica'l númberu de coles de distribución a devolver. 1= una cola, 2 = dos coles"
+msgid "Mode specifies the number of distribution tails to return. 1 = one-tailed, 2 = two-tailed distribution"
+msgstr ""
#: sc/inc/scfuncs.hrc:3011
msgctxt "SC_OPCODE_T_TEST"
@@ -10728,8 +10733,8 @@ msgstr "Mou"
#: sc/inc/scfuncs.hrc:3024
msgctxt "SC_OPCODE_T_TEST_MS"
-msgid "Mode specifies the number of distribution tails to return. 1= one-tailed, 2 = two-tailed distribution"
-msgstr "Mou especifica'l númberu de coles de distribución a devolver. 1= una cola, 2 = dos coles"
+msgid "Mode specifies the number of distribution tails to return. 1 = one-tailed, 2 = two-tailed distribution"
+msgstr ""
#: sc/inc/scfuncs.hrc:3025
msgctxt "SC_OPCODE_T_TEST_MS"
@@ -18504,22 +18509,22 @@ msgctxt "mergecellsdialog|MergeCellsDialog"
msgid "Merge Cells"
msgstr "Combinar caxelles"
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:81
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:84
msgctxt "mergecellsdialog|label"
msgid "Some cells are not empty."
msgstr ""
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:96
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:99
msgctxt "mergecellsdialog|move-cells-radio"
msgid "Move the contents of the hidden cells into the first cell"
msgstr ""
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:112
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:115
msgctxt "mergecellsdialog|empty-cells-radio"
msgid "Empty the contents of the hidden cells"
msgstr ""
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:128
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:131
msgctxt "mergecellsdialog|keep-content-radio"
msgid "Keep the contents of the hidden cells"
msgstr ""
diff --git a/source/ast/sd/messages.po b/source/ast/sd/messages.po
index 4f522e8a430..744bf9c4fda 100644
--- a/source/ast/sd/messages.po
+++ b/source/ast/sd/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+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"
@@ -13,179 +13,179 @@ msgstr ""
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-#: sd/inc/DocumentRenderer.hrc:29
+#: sd/inc/DocumentRenderer.hrc:27
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Slides"
msgstr "Diapositives"
-#: sd/inc/DocumentRenderer.hrc:30
+#: sd/inc/DocumentRenderer.hrc:28
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Handouts"
msgstr "Folletu"
-#: sd/inc/DocumentRenderer.hrc:31
+#: sd/inc/DocumentRenderer.hrc:29
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Notes"
msgstr "Notes"
-#: sd/inc/DocumentRenderer.hrc:32
+#: sd/inc/DocumentRenderer.hrc:30
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Outline"
msgstr "Fuera de llinia"
-#: sd/inc/DocumentRenderer.hrc:37
+#: sd/inc/DocumentRenderer.hrc:35
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "According to layout"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:38
+#: sd/inc/DocumentRenderer.hrc:36
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "1"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:39
+#: sd/inc/DocumentRenderer.hrc:37
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "2"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:40
+#: sd/inc/DocumentRenderer.hrc:38
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "3"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:41
+#: sd/inc/DocumentRenderer.hrc:39
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "4"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:42
+#: sd/inc/DocumentRenderer.hrc:40
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "6"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:43
+#: sd/inc/DocumentRenderer.hrc:41
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "9"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:48
+#: sd/inc/DocumentRenderer.hrc:46
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_ORDER_CHOICES"
msgid "Left to right, then down"
msgstr "D'esquierda a drecha y llueu abaxo"
-#: sd/inc/DocumentRenderer.hrc:49
+#: sd/inc/DocumentRenderer.hrc:47
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_ORDER_CHOICES"
msgid "Top to bottom, then right"
msgstr "D'arriba haza abaxo, dempués a la drecha"
-#: sd/inc/DocumentRenderer.hrc:54
+#: sd/inc/DocumentRenderer.hrc:52
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Original colors"
msgstr "Colores orixinales"
-#: sd/inc/DocumentRenderer.hrc:55
+#: sd/inc/DocumentRenderer.hrc:53
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Grayscale"
msgstr "Escala de buxos"
-#: sd/inc/DocumentRenderer.hrc:56
+#: sd/inc/DocumentRenderer.hrc:54
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Black & white"
msgstr "Blanco y prieto"
-#: sd/inc/DocumentRenderer.hrc:61
+#: sd/inc/DocumentRenderer.hrc:59
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Original size"
msgstr "Tamañu orixinal"
-#: sd/inc/DocumentRenderer.hrc:62
+#: sd/inc/DocumentRenderer.hrc:60
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Fit to printable page"
msgstr "Axustar a la zona d'imprentación"
-#: sd/inc/DocumentRenderer.hrc:63
+#: sd/inc/DocumentRenderer.hrc:61
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Distribute on multiple sheets of paper"
msgstr "Distribuyir en delles fueyes de papel"
-#: sd/inc/DocumentRenderer.hrc:64
+#: sd/inc/DocumentRenderer.hrc:62
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Tile sheet of paper with repeated slides"
msgstr "Páxinas como azulexos con diapositives repetíes"
-#: sd/inc/DocumentRenderer.hrc:69
+#: sd/inc/DocumentRenderer.hrc:67
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Original size"
msgstr "Tamañu orixinal"
-#: sd/inc/DocumentRenderer.hrc:70
+#: sd/inc/DocumentRenderer.hrc:68
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Fit to printable page"
msgstr "Axustar a la zona d'imprentación"
-#: sd/inc/DocumentRenderer.hrc:71
+#: sd/inc/DocumentRenderer.hrc:69
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Distribute on multiple sheets of paper"
msgstr "Distribuyir en delles fueyes de papel"
-#: sd/inc/DocumentRenderer.hrc:72
+#: sd/inc/DocumentRenderer.hrc:70
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Tile sheet of paper with repeated pages"
msgstr "Páxines como azulexos con páxines repetíes"
-#: sd/inc/DocumentRenderer.hrc:77
+#: sd/inc/DocumentRenderer.hrc:75
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "All pages"
msgstr "Toles páxines"
-#: sd/inc/DocumentRenderer.hrc:78
+#: sd/inc/DocumentRenderer.hrc:76
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "Front sides / right pages"
msgstr "Cares delanteres / páxines dreches"
-#: sd/inc/DocumentRenderer.hrc:79
+#: sd/inc/DocumentRenderer.hrc:77
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "Back sides / left pages"
msgstr "Cares posteriores / páxines esquierdes"
-#: sd/inc/DocumentRenderer.hrc:84
+#: sd/inc/DocumentRenderer.hrc:82
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~All slides"
msgstr "Toles _diapositives"
-#: sd/inc/DocumentRenderer.hrc:85
+#: sd/inc/DocumentRenderer.hrc:83
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~Slides"
msgstr "Diapositives"
-#: sd/inc/DocumentRenderer.hrc:86
+#: sd/inc/DocumentRenderer.hrc:84
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Se~lection"
msgstr "Se~leición"
-#: sd/inc/DocumentRenderer.hrc:91
+#: sd/inc/DocumentRenderer.hrc:89
#, fuzzy
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~All pages"
msgstr "Tol~es páxines"
-#: sd/inc/DocumentRenderer.hrc:92
+#: sd/inc/DocumentRenderer.hrc:90
#, fuzzy
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Pa~ges"
msgstr "Páxines"
-#: sd/inc/DocumentRenderer.hrc:93
+#: sd/inc/DocumentRenderer.hrc:91
#, fuzzy
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Se~lection"
diff --git a/source/ast/svx/messages.po b/source/ast/svx/messages.po
index 4b0fbbbc1f3..abcc3436126 100644
--- a/source/ast/svx/messages.po
+++ b/source/ast/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: 2018-05-16 16:53+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+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"
@@ -5519,7 +5519,7 @@ msgstr ""
#: svx/uiconfig/ui/safemodedialog.ui:432
msgctxt "safemodedialog|btn_create_zip"
-msgid "Create Zip Archive from User Profile"
+msgid "Archive User Profile"
msgstr ""
#: svx/uiconfig/ui/safemodedialog.ui:445
@@ -9176,9 +9176,9 @@ msgid "Red"
msgstr "Coloráu"
#: include/svx/strings.hrc:565
-msgctxt "RID_SVXSTR_COLOR_VIOLET"
-msgid "Violet"
-msgstr "Violeta"
+msgctxt "RID_SVXSTR_COLOR_MAGENTA"
+msgid "Magenta"
+msgstr "Maxenta"
#: include/svx/strings.hrc:566
msgctxt "RID_SVXSTR_COLOR_PURPLE"
@@ -9245,8 +9245,8 @@ msgid "Light Red"
msgstr "Bermeyu claru"
#: include/svx/strings.hrc:579
-msgctxt "RID_SVXSTR_COLOR_LIGHTVIOLET"
-msgid "Light Violet"
+msgctxt "RID_SVXSTR_COLOR_LIGHTMAGENTA"
+msgid "Light Magenta"
msgstr ""
#: include/svx/strings.hrc:580
@@ -9312,10 +9312,9 @@ msgid "Dark Red"
msgstr "Colloráu buxu"
#: include/svx/strings.hrc:593
-#, fuzzy
-msgctxt "RID_SVXSTR_COLOR_DARKVIOLET1"
-msgid "Dark Violet"
-msgstr "Violeta escuru"
+msgctxt "RID_SVXSTR_COLOR_DARKMAGENTA"
+msgid "Dark Magenta"
+msgstr ""
#: include/svx/strings.hrc:594
msgctxt "RID_SVXSTR_COLOR_DARKPURPLE"
@@ -9349,55 +9348,55 @@ msgstr ""
#. Elements of the Tonal color palette
#: include/svx/strings.hrc:601
+msgctxt "RID_SVXSTR_COLOR_VIOLET"
+msgid "Violet"
+msgstr "Violeta"
+
+#: include/svx/strings.hrc:602
msgctxt "RID_SVXSTR_COLOR_VIOLET_OUG"
msgid "Violet (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:602
+#: include/svx/strings.hrc:603
msgctxt "RID_SVXSTR_COLOR_BLUE_OUG"
msgid "Blue (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:603
+#: include/svx/strings.hrc:604
msgctxt "RID_SVXSTR_COLOR_AZURE_OUG"
msgid "Azure (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:604
+#: include/svx/strings.hrc:605
msgctxt "RID_SVXSTR_COLOR_SPRINGGREEN_OUG"
msgid "Spring Green (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:605
+#: include/svx/strings.hrc:606
msgctxt "RID_SVXSTR_COLOR_GREEN_OUG"
msgid "Green (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:606
+#: include/svx/strings.hrc:607
msgctxt "RID_SVXSTR_COLOR_CHARTREUSEGREEN_OUG"
msgid "Chartreuse Green (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:607
+#: include/svx/strings.hrc:608
msgctxt "RID_SVXSTR_COLOR_ORANGE_OUG"
msgid "Orange (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:608
+#: include/svx/strings.hrc:609
msgctxt "RID_SVXSTR_COLOR_RED_OUG"
msgid "Red (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:609
+#: include/svx/strings.hrc:610
msgctxt "RID_SVXSTR_COLOR_ROSE_OUG"
msgid "Rose (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:610
-msgctxt "RID_SVXSTR_COLOR_MAGENTA"
-msgid "Magenta"
-msgstr "Maxenta"
-
#: include/svx/strings.hrc:611
msgctxt "RID_SVXSTR_COLOR_AZURE"
msgid "Azure"
@@ -12551,13 +12550,13 @@ msgstr "Viñetes en forma de flecha a la drecha"
#: include/svx/strings.hrc:1273
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_6"
-msgid "Check mark bullets"
-msgstr "Viñetes de marca de verificación"
+msgid "Cross mark bullets"
+msgstr ""
#: include/svx/strings.hrc:1274
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_7"
-msgid "Tick mark bullets"
-msgstr "Viñetes de marca de graduación"
+msgid "Check mark bullets"
+msgstr ""
#: include/svx/strings.hrc:1275
#, fuzzy
diff --git a/source/ast/sw/messages.po b/source/ast/sw/messages.po
index 5e4a249899a..d8914e65d3e 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: 2018-05-22 13:17+0200\n"
+"POT-Creation-Date: 2018-06-12 14:41+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"
@@ -1216,13 +1216,13 @@ msgstr "Encomilláu"
#: sw/inc/strings.hrc:172
msgctxt "STR_POOLCOLL_TOX_ILLUSH"
-msgid "Illustration Index Heading"
-msgstr "Encabezamientu del índiz d'ilustraciones"
+msgid "Figure Index Heading"
+msgstr ""
#: sw/inc/strings.hrc:173
msgctxt "STR_POOLCOLL_TOX_ILLUS1"
-msgid "Illustration Index 1"
-msgstr "Índiz d'ilustraciones 1"
+msgid "Figure Index 1"
+msgstr ""
#: sw/inc/strings.hrc:174
msgctxt "STR_POOLCOLL_TOX_OBJECTH"
@@ -3703,8 +3703,8 @@ msgstr "Índiz d'oxetos"
#: sw/inc/strings.hrc:672
msgctxt "STR_TOX_ILL"
-msgid "Illustration Index"
-msgstr "Índiz d'ilustraciones"
+msgid "Table of Figures"
+msgstr ""
#: sw/inc/strings.hrc:673
#, c-format
@@ -9564,72 +9564,72 @@ msgctxt "footnotepage|label5"
msgid "Continuation Notice"
msgstr "Notes de continuación"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:49
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:55
msgctxt "footnotesendnotestabpage|ftnntnum"
msgid "_Restart numbering"
msgstr "_Reaniciar la numberación"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:91
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:93
msgctxt "footnotesendnotestabpage|ftnoffset_label"
msgid "_Start at:"
msgstr "_Principiar en:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:112
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:111
msgctxt "footnotesendnotestabpage|ftnntnumfmt"
msgid "Custom _format"
msgstr "_Formatu personalizáu"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:155
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:150
msgctxt "footnotesendnotestabpage|ftnsuffix_label"
msgid "Aft_er:"
msgstr "D_empués:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:199
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:188
msgctxt "footnotesendnotestabpage|ftnprefix_label"
msgid "Be_fore:"
msgstr "An_tes:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:228
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:212
msgctxt "footnotesendnotestabpage|ftnntattextend"
msgid "Collec_t at end of text"
msgstr "Collechar al final del _testu"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:252
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:234
msgctxt "footnotesendnotestabpage|label1"
msgid "Footnotes"
msgstr "Notes al pie"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:289
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:271
msgctxt "footnotesendnotestabpage|endntattextend"
msgid "C_ollect at end of section"
msgstr "C_ollechar al final de la seición"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:315
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:295
msgctxt "footnotesendnotestabpage|endntnum"
msgid "_Restart numbering"
msgstr "_Reaniciar la numberación"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:357
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:333
msgctxt "footnotesendnotestabpage|endoffset_label"
msgid "_Start at:"
msgstr "Prin_cipiar en:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:378
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:351
msgctxt "footnotesendnotestabpage|endntnumfmt"
msgid "_Custom format"
msgstr "_Formatu personalizáu"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:421
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:390
msgctxt "footnotesendnotestabpage|endsuffix_label"
msgid "Aft_er:"
msgstr "D_empués:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:465
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:428
msgctxt "footnotesendnotestabpage|endprefix_label"
msgid "Be_fore:"
msgstr "_Antes:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:500
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:458
msgctxt "footnotesendnotestabpage|label2"
msgid "Endnotes"
msgstr "Notes finales"
@@ -9659,27 +9659,27 @@ msgctxt "formatsectiondialog|notes"
msgid "Footnotes/Endnotes"
msgstr "Notes al pie/final"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:63
+#: sw/uiconfig/swriter/ui/formattablepage.ui:77
msgctxt "formattablepage|nameft"
msgid "_Name"
msgstr "_Nome"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:79
+#: sw/uiconfig/swriter/ui/formattablepage.ui:91
msgctxt "formattablepage|widthft"
msgid "W_idth"
msgstr "Anc_hu"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:110
+#: sw/uiconfig/swriter/ui/formattablepage.ui:120
msgctxt "formattablepage|relwidth"
msgid "Relati_ve"
msgstr "Relati_vu"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:155
+#: sw/uiconfig/swriter/ui/formattablepage.ui:160
msgctxt "formattablepage|label45"
msgid "Properties"
msgstr "Propiedaes"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:194
+#: sw/uiconfig/swriter/ui/formattablepage.ui:195
msgctxt "formattablepage|leftft"
msgid "Lef_t"
msgstr "Izquie_rda"
@@ -9689,62 +9689,62 @@ msgctxt "formattablepage|rightft"
msgid "Ri_ght"
msgstr "Drec_ha"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:228
+#: sw/uiconfig/swriter/ui/formattablepage.ui:226
msgctxt "formattablepage|aboveft"
msgid "_Above"
msgstr "_Enriba"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:245
+#: sw/uiconfig/swriter/ui/formattablepage.ui:241
msgctxt "formattablepage|belowft"
msgid "_Below"
msgstr "_Embaxo"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:320
+#: sw/uiconfig/swriter/ui/formattablepage.ui:311
msgctxt "formattablepage|label46"
msgid "Spacing"
msgstr "Espaciáu"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:362
+#: sw/uiconfig/swriter/ui/formattablepage.ui:349
msgctxt "formattablepage|full"
msgid "A_utomatic"
msgstr "A_utomáticu"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:380
+#: sw/uiconfig/swriter/ui/formattablepage.ui:365
msgctxt "formattablepage|left"
msgid "_Left"
msgstr "_Izquierda"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:398
+#: sw/uiconfig/swriter/ui/formattablepage.ui:381
msgctxt "formattablepage|fromleft"
msgid "_From left"
msgstr "Dende i_zquierda"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:416
+#: sw/uiconfig/swriter/ui/formattablepage.ui:397
msgctxt "formattablepage|right"
msgid "R_ight"
msgstr "D_recha"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:435
+#: sw/uiconfig/swriter/ui/formattablepage.ui:413
msgctxt "formattablepage|center"
msgid "_Center"
msgstr "_Centráu"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:453
+#: sw/uiconfig/swriter/ui/formattablepage.ui:429
msgctxt "formattablepage|free"
msgid "_Manual"
msgstr "_Manual"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:478
+#: sw/uiconfig/swriter/ui/formattablepage.ui:452
msgctxt "formattablepage|label43"
msgid "Alignment"
msgstr "Alliniamientu"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:522
+#: sw/uiconfig/swriter/ui/formattablepage.ui:491
msgctxt "formattablepage|label53"
msgid "Text _direction"
msgstr "_Direición testu"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:553
+#: sw/uiconfig/swriter/ui/formattablepage.ui:519
msgctxt "formattablepage|label44"
msgid "Properties "
msgstr "Propiedaes "
@@ -10106,22 +10106,27 @@ msgctxt "headerfootermenu|insert_pagenumber"
msgid "Insert Page Number"
msgstr ""
-#: sw/uiconfig/swriter/ui/indentpage.ui:52
+#: sw/uiconfig/swriter/ui/headerfootermenu.ui:42
+msgctxt "headerfootermenu|insert_pagecount"
+msgid "Insert Page Count"
+msgstr ""
+
+#: sw/uiconfig/swriter/ui/indentpage.ui:57
msgctxt "indentpage|label1"
msgid "_Before section"
msgstr "_Enantes de seición"
-#: sw/uiconfig/swriter/ui/indentpage.ui:67
+#: sw/uiconfig/swriter/ui/indentpage.ui:71
msgctxt "indentpage|label3"
msgid "_After section"
msgstr "_Dempués de seición"
-#: sw/uiconfig/swriter/ui/indentpage.ui:113
+#: sw/uiconfig/swriter/ui/indentpage.ui:115
msgctxt "indentpage|label2"
msgid "Indent"
msgstr "Sangráu"
-#: sw/uiconfig/swriter/ui/indentpage.ui:142
+#: sw/uiconfig/swriter/ui/indentpage.ui:155
msgctxt "indentpage|preview-atkobject"
msgid "Example"
msgstr "Exemplu"
@@ -13846,7 +13851,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:68
msgctxt "optcompatpage|format"
-msgid "MS Word-compatible trailing blanks"
+msgid "Word-compatible trailing blanks"
msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:69
@@ -13856,7 +13861,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:70
msgctxt "optcompatpage|format"
-msgid "A database field (e.g., MailMerge) with empty value hides its paragraph"
+msgid "Hide paragraphs of database fields (e.g., mail merge) with an empty value"
msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:71
@@ -16674,123 +16679,123 @@ msgctxt "tableproperties|background"
msgid "Background"
msgstr "Fondu"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:25
-msgctxt "tabletextflowpage|liststore1"
-msgid "Horizontal"
-msgstr "Horizontal"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:29
-msgctxt "tabletextflowpage|liststore1"
-msgid "Vertical"
-msgstr "Vertical"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:33
-msgctxt "tabletextflowpage|liststore1"
-msgid "Use superordinate object settings"
-msgstr "Usar la configuración del oxetu superior"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:47
-msgctxt "tabletextflowpage|liststore2"
-msgid "Top"
-msgstr "Arriba"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:51
-msgctxt "tabletextflowpage|liststore2"
-msgid "Centered"
-msgstr "Centráu"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:55
-msgctxt "tabletextflowpage|liststore2"
-msgid "Bottom"
-msgstr "Abaxo"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:97
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:53
msgctxt "tabletextflowpage|break"
msgid "_Break"
msgstr "Que_brar"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:112
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:68
msgctxt "tabletextflowpage|page"
msgid "_Page"
msgstr "_Páxina"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:132
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:87
msgctxt "tabletextflowpage|column"
msgid "Col_umn"
msgstr "Col_umna"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:151
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:106
msgctxt "tabletextflowpage|before"
msgid "Be_fore"
msgstr "Delan_tre"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:171
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:125
msgctxt "tabletextflowpage|after"
msgid "_After"
msgstr "De_mpués"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:203
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:158
msgctxt "tabletextflowpage|pagestyle"
msgid "With Page St_yle"
msgstr "Con Est_ilu Páxina"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:224
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:177
msgctxt "tabletextflowpage|pagenoft"
msgid "Page _number"
msgstr "_Númberu páxina"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:257
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:213
#, fuzzy
msgctxt "tabletextflowpage|pagestylelb-atkobject"
msgid "With Page Style"
msgstr "Con Est_ilu Páxina"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:274
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:230
msgctxt "tabletextflowpage|split"
msgid "Allow _table to split across pages and columns"
msgstr "Permitir dixebrar _tabla en páxines y columnes"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:289
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:245
msgctxt "tabletextflowpage|splitrow"
msgid "Allow row to break a_cross pages and columns"
msgstr "Permitir dixebrar filera en páxines y _columnes"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:306
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:262
msgctxt "tabletextflowpage|keep"
msgid "_Keep with next paragraph"
msgstr "_Caltener col siguiente párrafu"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:328
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:284
msgctxt "tabletextflowpage|label40"
msgid "Text _orientation"
msgstr "_Orientación del testu"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:361
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:298
+msgctxt "tabletextflowpage|liststore1"
+msgid "Horizontal"
+msgstr "Horizontal"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:299
+msgctxt "tabletextflowpage|liststore1"
+msgid "Vertical"
+msgstr "Vertical"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:300
+msgctxt "tabletextflowpage|liststore1"
+msgid "Use superordinate object settings"
+msgstr "Usar la configuración del oxetu superior"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:321
msgctxt "tabletextflowpage|headline"
msgid "R_epeat heading"
msgstr "R_epetir encabezamientu"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:383
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:343
msgctxt "tabletextflowpage|label38"
msgid "The first "
msgstr "El primer "
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:396
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:356
msgctxt "tabletextflowpage|label39"
msgid "rows"
msgstr "fileres"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:434
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:395
msgctxt "tabletextflowpage|label35"
msgid "Text Flow"
msgstr "Fluxu de testu"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:467
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:428
msgctxt "tabletextflowpage|label41"
msgid "_Vertical alignment"
msgstr "Alliniamientu _vertical"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:495
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:442
+msgctxt "tabletextflowpage|liststore2"
+msgid "Top"
+msgstr "Arriba"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:443
+msgctxt "tabletextflowpage|liststore2"
+msgid "Centered"
+msgstr "Centráu"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:444
+msgctxt "tabletextflowpage|liststore2"
+msgid "Bottom"
+msgstr "Abaxo"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:460
msgctxt "tabletextflowpage|label36"
msgid "Alignment"
msgstr "Alliniamientu"
@@ -17594,8 +17599,8 @@ msgstr "Índiz alfabéticu"
#: sw/uiconfig/swriter/ui/tocindexpage.ui:58
msgctxt "tocindexpage|liststore1"
-msgid "Illustration Index"
-msgstr "Índiz d'ilustraciones"
+msgid "Table of Figures"
+msgstr ""
#: sw/uiconfig/swriter/ui/tocindexpage.ui:62
msgctxt "tocindexpage|liststore1"
diff --git a/source/ast/writerperfect/messages.po b/source/ast/writerperfect/messages.po
index 76a0ba57a4a..e4b72047f2d 100644
--- a/source/ast/writerperfect/messages.po
+++ b/source/ast/writerperfect/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-16 16:54+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+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"
@@ -65,99 +65,99 @@ msgctxt "exportepub|generalft"
msgid "General"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:122
+#: writerperfect/uiconfig/ui/exportepub.ui:121
#, fuzzy
msgctxt "exportepub|versionft"
msgid "Version:"
msgstr "~Versión:"
-#: writerperfect/uiconfig/ui/exportepub.ui:139
+#: writerperfect/uiconfig/ui/exportepub.ui:138
msgctxt "exportepub|epub3"
msgid "EPUB 3.0"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:140
+#: writerperfect/uiconfig/ui/exportepub.ui:139
msgctxt "exportepub|epub2"
msgid "EPUB 2.0"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:175
+#: writerperfect/uiconfig/ui/exportepub.ui:174
msgctxt "exportepub|splitft"
msgid "Split method:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:192
+#: writerperfect/uiconfig/ui/exportepub.ui:191
msgctxt "exportepub|splitpage"
msgid "Page break"
msgstr "Saltu de páxina"
-#: writerperfect/uiconfig/ui/exportepub.ui:193
+#: writerperfect/uiconfig/ui/exportepub.ui:192
#, fuzzy
msgctxt "exportepub|splitheading"
msgid "Heading"
msgstr "Testera"
-#: writerperfect/uiconfig/ui/exportepub.ui:228
+#: writerperfect/uiconfig/ui/exportepub.ui:227
msgctxt "exportepub|layoutft"
msgid "Layout method:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:245
+#: writerperfect/uiconfig/ui/exportepub.ui:244
msgctxt "exportepub|layoutreflowable"
msgid "Reflowable"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:246
+#: writerperfect/uiconfig/ui/exportepub.ui:245
msgctxt "exportepub|layoutfixed"
msgid "Fixed"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:281
+#: writerperfect/uiconfig/ui/exportepub.ui:280
msgctxt "exportepub|coverimageft"
msgid "Custom cover image:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:311
+#: writerperfect/uiconfig/ui/exportepub.ui:310
msgctxt "exportepub|coverbutton"
msgid "Browse..."
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:355
+#: writerperfect/uiconfig/ui/exportepub.ui:354
msgctxt "exportepub|mediadirft"
msgid "Custom media directory:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:385
+#: writerperfect/uiconfig/ui/exportepub.ui:384
msgctxt "exportepub|mediabutton"
msgid "Browse..."
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:429
+#: writerperfect/uiconfig/ui/exportepub.ui:428
msgctxt "exportepub|metadataft"
msgid "Metadata"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:470
+#: writerperfect/uiconfig/ui/exportepub.ui:468
msgctxt "exportepub|identifierft"
msgid "Identifier:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:485
+#: writerperfect/uiconfig/ui/exportepub.ui:483
msgctxt "exportepub|titleft"
msgid "Title:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:511
+#: writerperfect/uiconfig/ui/exportepub.ui:509
msgctxt "exportepub|authorft"
msgid "Author:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:537
+#: writerperfect/uiconfig/ui/exportepub.ui:535
msgctxt "exportepub|languageft"
msgid "Language:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:563
+#: writerperfect/uiconfig/ui/exportepub.ui:561
msgctxt "exportepub|dateft"
msgid "Date:"
msgstr ""
diff --git a/source/az/cui/messages.po b/source/az/cui/messages.po
index f8c3d9d98fb..5e258cee05d 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+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"
@@ -9983,98 +9983,98 @@ msgctxt "positionsizedialog|PositionAndSizeDialog"
msgid "Position and Size"
msgstr ""
-#: cui/uiconfig/ui/positionsizedialog.ui:107
+#: cui/uiconfig/ui/positionsizedialog.ui:136
msgctxt "positionsizedialog|RID_SVXPAGE_POSITION_SIZE"
msgid "Position and Size"
msgstr ""
-#: cui/uiconfig/ui/positionsizedialog.ui:129
+#: cui/uiconfig/ui/positionsizedialog.ui:182
msgctxt "positionsizedialog|RID_SVXPAGE_SWPOSSIZE"
msgid "Position and Size"
msgstr ""
-#: cui/uiconfig/ui/positionsizedialog.ui:152
+#: cui/uiconfig/ui/positionsizedialog.ui:229
msgctxt "positionsizedialog|RID_SVXPAGE_ANGLE"
msgid "Rotation"
msgstr ""
-#: cui/uiconfig/ui/positionsizedialog.ui:175
+#: cui/uiconfig/ui/positionsizedialog.ui:276
msgctxt "positionsizedialog|RID_SVXPAGE_SLANT"
msgid "Slant & Corner Radius"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:40
+#: cui/uiconfig/ui/possizetabpage.ui:61
msgctxt "possizetabpage|FT_POS_X"
msgid "Position _X:"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:56
+#: cui/uiconfig/ui/possizetabpage.ui:75
msgctxt "possizetabpage|FT_POS_Y"
msgid "Position _Y:"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:110
+#: cui/uiconfig/ui/possizetabpage.ui:128
msgctxt "possizetabpage|FT_POSREFERENCE"
msgid "_Base point:"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:148
+#: cui/uiconfig/ui/possizetabpage.ui:182
msgctxt "possizetabpage|label1"
msgid "Position"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:190
+#: cui/uiconfig/ui/possizetabpage.ui:224
msgctxt "possizetabpage|FT_WIDTH"
msgid "Wi_dth:"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:206
+#: cui/uiconfig/ui/possizetabpage.ui:238
msgctxt "possizetabpage|FT_HEIGHT"
msgid "H_eight:"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:247
+#: cui/uiconfig/ui/possizetabpage.ui:276
msgctxt "possizetabpage|CBX_SCALE"
msgid "_Keep ratio"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:279
+#: cui/uiconfig/ui/possizetabpage.ui:307
msgctxt "possizetabpage|FT_SIZEREFERENCE"
msgid "Base _point:"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:317
+#: cui/uiconfig/ui/possizetabpage.ui:361
#, fuzzy
msgctxt "possizetabpage|label2"
msgid "Size"
msgstr "Ölçü:"
-#: cui/uiconfig/ui/possizetabpage.ui:356
+#: cui/uiconfig/ui/possizetabpage.ui:401
msgctxt "possizetabpage|TSB_POSPROTECT"
msgid "Positio_n"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:373
+#: cui/uiconfig/ui/possizetabpage.ui:418
msgctxt "possizetabpage|TSB_SIZEPROTECT"
msgid "_Size"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:397
+#: cui/uiconfig/ui/possizetabpage.ui:441
msgctxt "possizetabpage|label3"
msgid "Protect"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:430
+#: cui/uiconfig/ui/possizetabpage.ui:475
msgctxt "possizetabpage|TSB_AUTOGROW_WIDTH"
msgid "_Fit width to text"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:447
+#: cui/uiconfig/ui/possizetabpage.ui:492
msgctxt "possizetabpage|TSB_AUTOGROW_HEIGHT"
msgid "Fit _height to text"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:471
+#: cui/uiconfig/ui/possizetabpage.ui:515
msgctxt "possizetabpage|label4"
msgid "Adapt"
msgstr ""
@@ -10280,47 +10280,47 @@ msgctxt "recordnumberdialog|label2"
msgid "go to record"
msgstr ""
-#: cui/uiconfig/ui/rotationtabpage.ui:52
+#: cui/uiconfig/ui/rotationtabpage.ui:56
msgctxt "rotationtabpage|FT_POS_X"
msgid "Position _X:"
msgstr ""
-#: cui/uiconfig/ui/rotationtabpage.ui:66
+#: cui/uiconfig/ui/rotationtabpage.ui:70
msgctxt "rotationtabpage|FT_POS_Y"
msgid "Position _Y:"
msgstr ""
-#: cui/uiconfig/ui/rotationtabpage.ui:116
+#: cui/uiconfig/ui/rotationtabpage.ui:123
msgctxt "rotationtabpage|FT_POSPRESETS"
msgid "_Default settings:"
msgstr ""
-#: cui/uiconfig/ui/rotationtabpage.ui:130
+#: cui/uiconfig/ui/rotationtabpage.ui:151
msgctxt "rotationtabpage|CTL_RECT|tooltip_text"
msgid "Rotation point"
msgstr ""
-#: cui/uiconfig/ui/rotationtabpage.ui:155
+#: cui/uiconfig/ui/rotationtabpage.ui:178
msgctxt "rotationtabpage|label1"
msgid "Pivot Point"
msgstr ""
-#: cui/uiconfig/ui/rotationtabpage.ui:197
+#: cui/uiconfig/ui/rotationtabpage.ui:220
msgctxt "rotationtabpage|FT_ANGLE"
msgid "_Angle:"
msgstr ""
-#: cui/uiconfig/ui/rotationtabpage.ui:238
+#: cui/uiconfig/ui/rotationtabpage.ui:263
msgctxt "rotationtabpage|FT_ANGLEPRESETS"
msgid "Default _settings:"
msgstr ""
-#: cui/uiconfig/ui/rotationtabpage.ui:252
+#: cui/uiconfig/ui/rotationtabpage.ui:287
msgctxt "rotationtabpage|CTL_ANGLE|tooltip_text"
msgid "Rotation Angle"
msgstr ""
-#: cui/uiconfig/ui/rotationtabpage.ui:277
+#: cui/uiconfig/ui/rotationtabpage.ui:314
msgctxt "rotationtabpage|label2"
msgid "Rotation Angle"
msgstr ""
@@ -10702,52 +10702,52 @@ msgctxt "similaritysearchdialog|relaxbox"
msgid "_Combine"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:50
+#: cui/uiconfig/ui/slantcornertabpage.ui:70
msgctxt "slantcornertabpage|label5"
msgid "_X:"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:88
+#: cui/uiconfig/ui/slantcornertabpage.ui:110
msgctxt "slantcornertabpage|label6"
msgid "_Y:"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:125
+#: cui/uiconfig/ui/slantcornertabpage.ui:149
msgctxt "slantcornertabpage|label3"
msgid "Control Point 1"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:159
+#: cui/uiconfig/ui/slantcornertabpage.ui:183
msgctxt "slantcornertabpage|FT_RADIUS"
msgid "_Radius:"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:189
+#: cui/uiconfig/ui/slantcornertabpage.ui:214
msgctxt "slantcornertabpage|label1"
msgid "Corner Radius"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:223
+#: cui/uiconfig/ui/slantcornertabpage.ui:248
msgctxt "slantcornertabpage|FT_ANGLE"
msgid "_Angle:"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:253
+#: cui/uiconfig/ui/slantcornertabpage.ui:279
msgctxt "slantcornertabpage|label2"
msgid "Slant"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:294
+#: cui/uiconfig/ui/slantcornertabpage.ui:320
msgctxt "slantcornertabpage|label4"
msgid "_X:"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:332
+#: cui/uiconfig/ui/slantcornertabpage.ui:360
msgctxt "slantcornertabpage|label7"
msgid "_Y:"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:369
+#: cui/uiconfig/ui/slantcornertabpage.ui:399
msgctxt "slantcornertabpage|label8"
msgid "Control Point 2"
msgstr ""
@@ -11032,113 +11032,113 @@ msgctxt "storedwebconnectiondialog|change"
msgid "_Change Password..."
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:74
+#: cui/uiconfig/ui/swpossizepage.ui:85
msgctxt "swpossizepage|widthft"
msgid "_Width:"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:111
+#: cui/uiconfig/ui/swpossizepage.ui:123
msgctxt "swpossizepage|heightft"
msgid "H_eight:"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:128
+#: cui/uiconfig/ui/swpossizepage.ui:141
msgctxt "swpossizepage|ratio"
msgid "_Keep ratio"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:149
+#: cui/uiconfig/ui/swpossizepage.ui:162
#, fuzzy
msgctxt "swpossizepage|label2"
msgid "Size"
msgstr "Ölçü:"
-#: cui/uiconfig/ui/swpossizepage.ui:205
+#: cui/uiconfig/ui/swpossizepage.ui:218
msgctxt "swpossizepage|topage"
msgid "To _page"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:222
+#: cui/uiconfig/ui/swpossizepage.ui:234
msgctxt "swpossizepage|topara"
msgid "To paragrap_h"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:238
+#: cui/uiconfig/ui/swpossizepage.ui:250
msgctxt "swpossizepage|tochar"
msgid "To cha_racter"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:254
+#: cui/uiconfig/ui/swpossizepage.ui:266
msgctxt "swpossizepage|aschar"
msgid "_As character"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:270
+#: cui/uiconfig/ui/swpossizepage.ui:282
msgctxt "swpossizepage|toframe"
msgid "To _frame"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:292
+#: cui/uiconfig/ui/swpossizepage.ui:304
msgctxt "swpossizepage|label1"
msgid "Anchor"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:333
+#: cui/uiconfig/ui/swpossizepage.ui:344
msgctxt "swpossizepage|horiposft"
msgid "Hori_zontal:"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:347
+#: cui/uiconfig/ui/swpossizepage.ui:358
msgctxt "swpossizepage|horibyft"
msgid "b_y:"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:361
+#: cui/uiconfig/ui/swpossizepage.ui:372
msgctxt "swpossizepage|vertbyft"
msgid "_by:"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:375
+#: cui/uiconfig/ui/swpossizepage.ui:386
msgctxt "swpossizepage|horitoft"
msgid "_to:"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:421
+#: cui/uiconfig/ui/swpossizepage.ui:433
msgctxt "swpossizepage|vertposft"
msgid "_Vertical:"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:457
+#: cui/uiconfig/ui/swpossizepage.ui:470
msgctxt "swpossizepage|verttoft"
msgid "t_o:"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:478
+#: cui/uiconfig/ui/swpossizepage.ui:492
msgctxt "swpossizepage|mirror"
msgid "_Mirror on even pages"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:495
+#: cui/uiconfig/ui/swpossizepage.ui:509
msgctxt "swpossizepage|followtextflow"
msgid "Follow te_xt flow"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:518
+#: cui/uiconfig/ui/swpossizepage.ui:532
msgctxt "swpossizepage|label11"
msgid "Position"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:549
+#: cui/uiconfig/ui/swpossizepage.ui:563
msgctxt "swpossizepage|pos"
msgid "Positio_n"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:565
+#: cui/uiconfig/ui/swpossizepage.ui:579
msgctxt "swpossizepage|size"
msgid "_Size"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:587
+#: cui/uiconfig/ui/swpossizepage.ui:601
msgctxt "swpossizepage|label3"
msgid "Protect"
msgstr ""
@@ -11332,12 +11332,12 @@ msgctxt "textattrtabpage|label2"
msgid "Spacing to Borders"
msgstr ""
-#: cui/uiconfig/ui/textattrtabpage.ui:425
+#: cui/uiconfig/ui/textattrtabpage.ui:423
msgctxt "textattrtabpage|TSB_FULL_WIDTH"
msgid "Full _width"
msgstr ""
-#: cui/uiconfig/ui/textattrtabpage.ui:448
+#: cui/uiconfig/ui/textattrtabpage.ui:446
msgctxt "textattrtabpage|label3"
msgid "Text Anchor"
msgstr ""
diff --git a/source/az/filter/source/config/fragments/filters.po b/source/az/filter/source/config/fragments/filters.po
index b37da68cdbf..c8b6eb8fc9f 100644
--- a/source/az/filter/source/config/fragments/filters.po
+++ b/source/az/filter/source/config/fragments/filters.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-16 16:54+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2016-12-01 11:47+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -463,7 +463,7 @@ msgctxt ""
"MS Word 2003 XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Word 2003 XML"
+msgid "Word 2003 XML"
msgstr ""
#: MS_Word_2007_XML.xcu
@@ -1282,7 +1282,7 @@ msgctxt ""
"Calc MS Excel 2007 VBA XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Excel 2007-2016 XML (macro enabled)"
+msgid "Excel 2007–2019 (macro-enabled)"
msgstr ""
#: calc_MS_Excel_2007_XML.xcu
diff --git a/source/az/filter/source/config/fragments/types.po b/source/az/filter/source/config/fragments/types.po
index fef708757c9..c2b14a1e3e0 100644
--- a/source/az/filter/source/config/fragments/types.po
+++ b/source/az/filter/source/config/fragments/types.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-08 15:11+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2015-11-11 00:13+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -292,7 +292,7 @@ msgctxt ""
"writer_MS_Word_2003_XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Word 2003 XML"
+msgid "Word 2003 XML"
msgstr ""
#: writer_MS_Word_2007_XML.xcu
diff --git a/source/az/fpicker/messages.po b/source/az/fpicker/messages.po
index 2d6fb534344..82424bbbf39 100644
--- a/source/az/fpicker/messages.po
+++ b/source/az/fpicker/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+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"
@@ -268,12 +268,12 @@ msgstr ""
#: fpicker/uiconfig/ui/foldernamedialog.ui:8
msgctxt "foldernamedialog|FolderNameDialog"
-msgid "Folder Name ?"
+msgid "Folder Name"
msgstr ""
#: fpicker/uiconfig/ui/foldernamedialog.ui:91
msgctxt "foldernamedialog|label2"
-msgid "Na_me"
+msgid "Na_me:"
msgstr ""
#: fpicker/uiconfig/ui/foldernamedialog.ui:122
diff --git a/source/az/officecfg/registry/data/org/openoffice/Office/UI.po b/source/az/officecfg/registry/data/org/openoffice/Office/UI.po
index 57e0af47496..f41c8e51259 100644
--- a/source/az/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/az/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-22 13:17+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2016-12-01 11:47+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -26661,7 +26661,7 @@ msgctxt ""
"..WriterCommands.UserInterface.Commands..uno:TextAttributes\n"
"Label\n"
"value.text"
-msgid "Text Attributes"
+msgid "Text Attributes..."
msgstr ""
#: WriterCommands.xcu
diff --git a/source/az/readlicense_oo/docs.po b/source/az/readlicense_oo/docs.po
index 875c1213a7f..8bb274ed268 100644
--- a/source/az/readlicense_oo/docs.po
+++ b/source/az/readlicense_oo/docs.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-04-17 15:54+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2016-03-10 12:59+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -117,7 +117,7 @@ msgctxt ""
"readme.xrm\n"
"macxiOSX\n"
"readmeitem.text"
-msgid "MacOSX 10.8 (Mountain Lion) or higher"
+msgid "MacOSX 10.9 (Mavericks) or higher"
msgstr ""
#: readme.xrm
diff --git a/source/az/sc/messages.po b/source/az/sc/messages.po
index 71c4acfbef4..9eb98a7aaf9 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-12 14:40+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"
@@ -1848,16 +1848,21 @@ msgid "Nested arrays are not supported."
msgstr ""
#: sc/inc/globstr.hrc:390
+msgctxt "STR_ERR_LONG_BAD_ARRAY_CONTENT"
+msgid "Unsupported inline array content."
+msgstr ""
+
+#: sc/inc/globstr.hrc:391
msgctxt "STR_UNDO_TEXTTOCOLUMNS"
msgid "Text to Columns"
msgstr ""
-#: sc/inc/globstr.hrc:391
+#: sc/inc/globstr.hrc:392
msgctxt "STR_DOC_UPDATED"
msgid "Your spreadsheet has been updated with changes saved by other users."
msgstr ""
-#: sc/inc/globstr.hrc:392
+#: sc/inc/globstr.hrc:393
msgctxt "STR_DOC_WILLBESAVED"
msgid ""
"The spreadsheet must be saved now to activate sharing mode.\n"
@@ -1865,7 +1870,7 @@ msgid ""
"Do you want to continue?"
msgstr ""
-#: sc/inc/globstr.hrc:393
+#: sc/inc/globstr.hrc:394
msgctxt "STR_DOC_WILLNOTBESAVED"
msgid ""
"Already resolved merge conflicts will be lost and your changes to the shared spreadsheet will not be saved.\n"
@@ -1873,7 +1878,7 @@ msgid ""
"Do you want to continue?"
msgstr ""
-#: sc/inc/globstr.hrc:394
+#: sc/inc/globstr.hrc:395
msgctxt "STR_DOC_DISABLESHARED"
msgid ""
"Disabling shared mode of a spreadsheet hinders all other users of the shared spreadsheet to merge back their work.\n"
@@ -1881,7 +1886,7 @@ msgid ""
"Do you want to continue?"
msgstr ""
-#: sc/inc/globstr.hrc:395
+#: sc/inc/globstr.hrc:396
msgctxt "STR_DOC_NOLONGERSHARED"
msgid ""
"This spreadsheet is no longer in shared mode.\n"
@@ -1889,7 +1894,7 @@ msgid ""
"Save your spreadsheet to a separate file and merge your changes to the shared spreadsheet manually."
msgstr ""
-#: sc/inc/globstr.hrc:396
+#: sc/inc/globstr.hrc:397
msgctxt "STR_FILE_LOCKED_TRY_LATER"
msgid ""
"The shared spreadsheet file is locked due to a merge in progress by user: '%1'\n"
@@ -1897,7 +1902,7 @@ msgid ""
"Sharing mode of a locked file cannot be disabled. Try again later."
msgstr ""
-#: sc/inc/globstr.hrc:397
+#: sc/inc/globstr.hrc:398
msgctxt "STR_FILE_LOCKED_SAVE_LATER"
msgid ""
"The shared spreadsheet file is locked due to a merge in progress by user: '%1'\n"
@@ -1905,149 +1910,149 @@ msgid ""
"Try again later to save your changes."
msgstr ""
-#: sc/inc/globstr.hrc:398
+#: sc/inc/globstr.hrc:399
msgctxt "STR_UNKNOWN_USER"
msgid "Unknown User"
msgstr ""
-#: sc/inc/globstr.hrc:399
+#: sc/inc/globstr.hrc:400
msgctxt "STR_SHAPE_AUTOSHAPE"
msgid "AutoShape"
msgstr ""
-#: sc/inc/globstr.hrc:400
+#: sc/inc/globstr.hrc:401
#, fuzzy
msgctxt "STR_SHAPE_RECTANGLE"
msgid "Rectangle"
msgstr "düzbucaq"
-#: sc/inc/globstr.hrc:401
+#: sc/inc/globstr.hrc:402
#, fuzzy
msgctxt "STR_SHAPE_LINE"
msgid "Line"
msgstr "Xəttlər"
-#: sc/inc/globstr.hrc:402
+#: sc/inc/globstr.hrc:403
msgctxt "STR_SHAPE_OVAL"
msgid "Oval"
msgstr ""
-#: sc/inc/globstr.hrc:403
+#: sc/inc/globstr.hrc:404
msgctxt "STR_FORM_BUTTON"
msgid "Button"
msgstr ""
-#: sc/inc/globstr.hrc:404
+#: sc/inc/globstr.hrc:405
msgctxt "STR_FORM_CHECKBOX"
msgid "Check Box"
msgstr ""
-#: sc/inc/globstr.hrc:405
+#: sc/inc/globstr.hrc:406
msgctxt "STR_FORM_OPTIONBUTTON"
msgid "Option Button"
msgstr ""
-#: sc/inc/globstr.hrc:406
+#: sc/inc/globstr.hrc:407
msgctxt "STR_FORM_LABEL"
msgid "Label"
msgstr ""
-#: sc/inc/globstr.hrc:407
+#: sc/inc/globstr.hrc:408
msgctxt "STR_FORM_LISTBOX"
msgid "List Box"
msgstr ""
-#: sc/inc/globstr.hrc:408
+#: sc/inc/globstr.hrc:409
msgctxt "STR_FORM_GROUPBOX"
msgid "Group Box"
msgstr ""
-#: sc/inc/globstr.hrc:409
+#: sc/inc/globstr.hrc:410
msgctxt "STR_FORM_DROPDOWN"
msgid "Drop Down"
msgstr ""
-#: sc/inc/globstr.hrc:410
+#: sc/inc/globstr.hrc:411
msgctxt "STR_FORM_SPINNER"
msgid "Spinner"
msgstr ""
-#: sc/inc/globstr.hrc:411
+#: sc/inc/globstr.hrc:412
msgctxt "STR_FORM_SCROLLBAR"
msgid "Scroll Bar"
msgstr ""
-#: sc/inc/globstr.hrc:412
+#: sc/inc/globstr.hrc:413
msgctxt "STR_STYLE_FAMILY_CELL"
msgid "Cell Styles"
msgstr ""
-#: sc/inc/globstr.hrc:413
+#: sc/inc/globstr.hrc:414
msgctxt "STR_STYLE_FAMILY_PAGE"
msgid "Page Styles"
msgstr ""
-#: sc/inc/globstr.hrc:414
+#: sc/inc/globstr.hrc:415
msgctxt "STR_ERR_DATAPILOTSOURCE"
msgid "Pivot table source data is invalid."
msgstr ""
-#: sc/inc/globstr.hrc:415
+#: sc/inc/globstr.hrc:416
msgctxt "STR_OPTIONS_WARN_SEPARATORS"
msgid "Because the current formula separator settings conflict with the locale, the formula separators have been reset to their default values."
msgstr ""
-#: sc/inc/globstr.hrc:416
+#: sc/inc/globstr.hrc:417
msgctxt "STR_UNDO_INSERT_CURRENT_DATE"
msgid "Insert Current Date"
msgstr ""
-#: sc/inc/globstr.hrc:417
+#: sc/inc/globstr.hrc:418
msgctxt "STR_UNDO_INSERT_CURRENT_TIME"
msgid "Insert Current Time"
msgstr ""
-#: sc/inc/globstr.hrc:418
+#: sc/inc/globstr.hrc:419
msgctxt "STR_MANAGE_NAMES"
msgid "Manage Names..."
msgstr ""
-#: sc/inc/globstr.hrc:419
+#: sc/inc/globstr.hrc:420
msgctxt "STR_HEADER_NAME"
msgid "Name"
msgstr ""
-#: sc/inc/globstr.hrc:420
+#: sc/inc/globstr.hrc:421
msgctxt "STR_HEADER_RANGE_OR_EXPR"
msgid "Range or formula expression"
msgstr ""
-#: sc/inc/globstr.hrc:421
+#: sc/inc/globstr.hrc:422
msgctxt "STR_HEADER_SCOPE"
msgid "Scope"
msgstr ""
-#: sc/inc/globstr.hrc:422
+#: sc/inc/globstr.hrc:423
msgctxt "STR_MULTI_SELECT"
msgid "(multiple)"
msgstr ""
-#: sc/inc/globstr.hrc:423
+#: sc/inc/globstr.hrc:424
msgctxt "STR_GLOBAL_SCOPE"
msgid "Document (Global)"
msgstr ""
-#: sc/inc/globstr.hrc:424
+#: sc/inc/globstr.hrc:425
msgctxt "STR_ERR_NAME_EXISTS"
msgid "Invalid name. Already in use for the selected scope."
msgstr ""
-#: sc/inc/globstr.hrc:425
+#: sc/inc/globstr.hrc:426
msgctxt "STR_ERR_NAME_INVALID"
msgid "Invalid name. Only use letters, numbers and underscore."
msgstr ""
-#: sc/inc/globstr.hrc:426
+#: sc/inc/globstr.hrc:427
msgctxt "STR_UNSAVED_EXT_REF"
msgid ""
"This Document contains external references to unsaved documents.\n"
@@ -2055,217 +2060,217 @@ msgid ""
"Do you want to continue?"
msgstr ""
-#: sc/inc/globstr.hrc:427
+#: sc/inc/globstr.hrc:428
msgctxt "STR_CLOSE_WITH_UNSAVED_REFS"
msgid "This Document is referenced by another document and not yet saved. Closing it without saving will result in data loss."
msgstr ""
-#: sc/inc/globstr.hrc:428
+#: sc/inc/globstr.hrc:429
msgctxt "STR_HEADER_RANGE"
msgid "Range"
msgstr ""
-#: sc/inc/globstr.hrc:429
+#: sc/inc/globstr.hrc:430
msgctxt "STR_HEADER_COND"
msgid "First Condition"
msgstr ""
-#: sc/inc/globstr.hrc:430
+#: sc/inc/globstr.hrc:431
msgctxt "STR_COND_CONDITION"
msgid "Cell value is"
msgstr ""
-#: sc/inc/globstr.hrc:431
+#: sc/inc/globstr.hrc:432
msgctxt "STR_COND_COLORSCALE"
msgid "ColorScale"
msgstr ""
-#: sc/inc/globstr.hrc:432
+#: sc/inc/globstr.hrc:433
msgctxt "STR_COND_DATABAR"
msgid "DataBar"
msgstr ""
-#: sc/inc/globstr.hrc:433
+#: sc/inc/globstr.hrc:434
msgctxt "STR_COND_ICONSET"
msgid "IconSet"
msgstr ""
-#: sc/inc/globstr.hrc:434
+#: sc/inc/globstr.hrc:435
msgctxt "STR_COND_BETWEEN"
msgid "between"
msgstr ""
-#: sc/inc/globstr.hrc:435
+#: sc/inc/globstr.hrc:436
msgctxt "STR_COND_NOTBETWEEN"
msgid "not between"
msgstr ""
-#: sc/inc/globstr.hrc:436
+#: sc/inc/globstr.hrc:437
msgctxt "STR_COND_UNIQUE"
msgid "unique"
msgstr ""
-#: sc/inc/globstr.hrc:437
+#: sc/inc/globstr.hrc:438
msgctxt "STR_COND_DUPLICATE"
msgid "duplicate"
msgstr ""
-#: sc/inc/globstr.hrc:438
+#: sc/inc/globstr.hrc:439
msgctxt "STR_COND_FORMULA"
msgid "Formula is"
msgstr ""
-#: sc/inc/globstr.hrc:439
+#: sc/inc/globstr.hrc:440
msgctxt "STR_COND_TOP10"
msgid "Top Elements"
msgstr ""
-#: sc/inc/globstr.hrc:440
+#: sc/inc/globstr.hrc:441
msgctxt "STR_COND_BOTTOM10"
msgid "Bottom Elements"
msgstr ""
-#: sc/inc/globstr.hrc:441
+#: sc/inc/globstr.hrc:442
msgctxt "STR_COND_TOP_PERCENT"
msgid "Top Percent"
msgstr ""
-#: sc/inc/globstr.hrc:442
+#: sc/inc/globstr.hrc:443
msgctxt "STR_COND_DATE"
msgid "Date is"
msgstr ""
-#: sc/inc/globstr.hrc:443
+#: sc/inc/globstr.hrc:444
msgctxt "STR_COND_BOTTOM_PERCENT"
msgid "Bottom Percent"
msgstr ""
-#: sc/inc/globstr.hrc:444
+#: sc/inc/globstr.hrc:445
msgctxt "STR_COND_ABOVE_AVERAGE"
msgid "Above Average"
msgstr ""
-#: sc/inc/globstr.hrc:445
+#: sc/inc/globstr.hrc:446
msgctxt "STR_COND_BELOW_AVERAGE"
msgid "Below Average"
msgstr ""
-#: sc/inc/globstr.hrc:446
+#: sc/inc/globstr.hrc:447
msgctxt "STR_COND_ABOVE_EQUAL_AVERAGE"
msgid "Above or equal Average"
msgstr ""
-#: sc/inc/globstr.hrc:447
+#: sc/inc/globstr.hrc:448
msgctxt "STR_COND_BELOW_EQUAL_AVERAGE"
msgid "Below or equal Average"
msgstr ""
-#: sc/inc/globstr.hrc:448
+#: sc/inc/globstr.hrc:449
msgctxt "STR_COND_ERROR"
msgid "an Error code"
msgstr ""
-#: sc/inc/globstr.hrc:449
+#: sc/inc/globstr.hrc:450
msgctxt "STR_COND_NOERROR"
msgid "not an Error code"
msgstr ""
-#: sc/inc/globstr.hrc:450
+#: sc/inc/globstr.hrc:451
msgctxt "STR_COND_BEGINS_WITH"
msgid "Begins with"
msgstr ""
-#: sc/inc/globstr.hrc:451
+#: sc/inc/globstr.hrc:452
msgctxt "STR_COND_ENDS_WITH"
msgid "Ends with"
msgstr ""
-#: sc/inc/globstr.hrc:452
+#: sc/inc/globstr.hrc:453
msgctxt "STR_COND_CONTAINS"
msgid "Contains"
msgstr ""
-#: sc/inc/globstr.hrc:453
+#: sc/inc/globstr.hrc:454
msgctxt "STR_COND_NOT_CONTAINS"
msgid "Not Contains"
msgstr ""
-#: sc/inc/globstr.hrc:454
+#: sc/inc/globstr.hrc:455
msgctxt "STR_COND_TODAY"
msgid "today"
msgstr ""
-#: sc/inc/globstr.hrc:455
+#: sc/inc/globstr.hrc:456
msgctxt "STR_COND_YESTERDAY"
msgid "yesterday"
msgstr ""
-#: sc/inc/globstr.hrc:456
+#: sc/inc/globstr.hrc:457
msgctxt "STR_COND_TOMORROW"
msgid "tomorrow"
msgstr ""
-#: sc/inc/globstr.hrc:457
+#: sc/inc/globstr.hrc:458
msgctxt "STR_COND_LAST7DAYS"
msgid "in the last 7 days"
msgstr ""
-#: sc/inc/globstr.hrc:458
+#: sc/inc/globstr.hrc:459
msgctxt "STR_COND_THISWEEK"
msgid "this week"
msgstr ""
-#: sc/inc/globstr.hrc:459
+#: sc/inc/globstr.hrc:460
msgctxt "STR_COND_LASTWEEK"
msgid "last week"
msgstr ""
-#: sc/inc/globstr.hrc:460
+#: sc/inc/globstr.hrc:461
msgctxt "STR_COND_NEXTWEEK"
msgid "next week"
msgstr ""
-#: sc/inc/globstr.hrc:461
+#: sc/inc/globstr.hrc:462
msgctxt "STR_COND_THISMONTH"
msgid "this month"
msgstr ""
-#: sc/inc/globstr.hrc:462
+#: sc/inc/globstr.hrc:463
msgctxt "STR_COND_LASTMONTH"
msgid "last month"
msgstr ""
-#: sc/inc/globstr.hrc:463
+#: sc/inc/globstr.hrc:464
msgctxt "STR_COND_NEXTMONTH"
msgid "next month"
msgstr ""
-#: sc/inc/globstr.hrc:464
+#: sc/inc/globstr.hrc:465
msgctxt "STR_COND_THISYEAR"
msgid "this year"
msgstr ""
-#: sc/inc/globstr.hrc:465
+#: sc/inc/globstr.hrc:466
msgctxt "STR_COND_LASTYEAR"
msgid "last year"
msgstr ""
-#: sc/inc/globstr.hrc:466
+#: sc/inc/globstr.hrc:467
msgctxt "STR_COND_NEXTYEAR"
msgid "next year"
msgstr ""
-#: sc/inc/globstr.hrc:467
+#: sc/inc/globstr.hrc:468
msgctxt "STR_COND_AND"
msgid "and"
msgstr "və"
-#: sc/inc/globstr.hrc:468
+#: sc/inc/globstr.hrc:469
msgctxt "STR_ERR_CONDFORMAT_PROTECTED"
msgid "Conditional Formats can not be created, deleted or changed in protected sheets."
msgstr ""
-#: sc/inc/globstr.hrc:469
+#: sc/inc/globstr.hrc:470
msgctxt "STR_EDIT_EXISTING_COND_FORMATS"
msgid ""
"The selected cell already contains conditional formatting. You can either edit the existing conditional format or you define a new overlapping conditional format.\n"
@@ -2273,7 +2278,7 @@ msgid ""
" Do you want to edit the existing conditional format?"
msgstr ""
-#: sc/inc/globstr.hrc:470
+#: sc/inc/globstr.hrc:471
msgctxt "STR_QUERY_FORMULA_RECALC_ONLOAD_ODS"
msgid ""
"This document was last saved by an application other than %PRODUCTNAME. Some formula cells may produce different results when recalculated.\n"
@@ -2281,7 +2286,7 @@ msgid ""
"Do you want to recalculate all formula cells in this document now?"
msgstr ""
-#: sc/inc/globstr.hrc:471
+#: sc/inc/globstr.hrc:472
msgctxt "STR_QUERY_FORMULA_RECALC_ONLOAD_XLS"
msgid ""
"This document was last saved by Excel. Some formula cells may produce different results when recalculated.\n"
@@ -2289,77 +2294,77 @@ msgid ""
"Do you want to recalculate all formula cells now?"
msgstr ""
-#: sc/inc/globstr.hrc:472
+#: sc/inc/globstr.hrc:473
msgctxt "STR_NO_INSERT_DELETE_OVER_PIVOT_TABLE"
msgid "You cannot insert or delete cells when the affected range intersects with pivot table."
msgstr ""
-#: sc/inc/globstr.hrc:473
+#: sc/inc/globstr.hrc:474
msgctxt "STR_DPFIELD_GROUP_BY_SECONDS"
msgid "Seconds"
msgstr ""
-#: sc/inc/globstr.hrc:474
+#: sc/inc/globstr.hrc:475
msgctxt "STR_DPFIELD_GROUP_BY_MINUTES"
msgid "Minutes"
msgstr ""
-#: sc/inc/globstr.hrc:475
+#: sc/inc/globstr.hrc:476
msgctxt "STR_DPFIELD_GROUP_BY_HOURS"
msgid "Hours"
msgstr ""
-#: sc/inc/globstr.hrc:476
+#: sc/inc/globstr.hrc:477
msgctxt "STR_DPFIELD_GROUP_BY_DAYS"
msgid "Days"
msgstr ""
-#: sc/inc/globstr.hrc:477
+#: sc/inc/globstr.hrc:478
msgctxt "STR_DPFIELD_GROUP_BY_MONTHS"
msgid "Months"
msgstr ""
-#: sc/inc/globstr.hrc:478
+#: sc/inc/globstr.hrc:479
msgctxt "STR_DPFIELD_GROUP_BY_QUARTERS"
msgid "Quarters"
msgstr ""
-#: sc/inc/globstr.hrc:479
+#: sc/inc/globstr.hrc:480
msgctxt "STR_DPFIELD_GROUP_BY_YEARS"
msgid "Years"
msgstr ""
-#: sc/inc/globstr.hrc:480
+#: sc/inc/globstr.hrc:481
msgctxt "STR_INVALIDVAL"
msgid "Invalid target value."
msgstr ""
-#: sc/inc/globstr.hrc:481
+#: sc/inc/globstr.hrc:482
msgctxt "STR_INVALIDVAR"
msgid "Undefined name for variable cell."
msgstr ""
-#: sc/inc/globstr.hrc:482
+#: sc/inc/globstr.hrc:483
msgctxt "STR_INVALIDFORM"
msgid "Undefined name as formula cell."
msgstr ""
-#: sc/inc/globstr.hrc:483
+#: sc/inc/globstr.hrc:484
msgctxt "STR_NOFORMULA"
msgid "Formula cell must contain a formula."
msgstr ""
-#: sc/inc/globstr.hrc:484
+#: sc/inc/globstr.hrc:485
msgctxt "STR_INVALIDINPUT"
msgid "Invalid input."
msgstr ""
-#: sc/inc/globstr.hrc:485
+#: sc/inc/globstr.hrc:486
msgctxt "STR_INVALIDCONDITION"
msgid "Invalid condition."
msgstr ""
-#: sc/inc/globstr.hrc:486
+#: sc/inc/globstr.hrc:487
msgctxt "STR_QUERYREMOVE"
msgid ""
"Should the entry\n"
@@ -2367,133 +2372,133 @@ msgid ""
"be deleted?"
msgstr ""
-#: sc/inc/globstr.hrc:487
+#: sc/inc/globstr.hrc:488
msgctxt "STR_COPYLIST"
msgid "Copy List"
msgstr ""
-#: sc/inc/globstr.hrc:488
+#: sc/inc/globstr.hrc:489
msgctxt "STR_COPYFROM"
msgid "List from"
msgstr ""
-#: sc/inc/globstr.hrc:489
+#: sc/inc/globstr.hrc:490
msgctxt "STR_COPYERR"
msgid "Cells without text have been ignored."
msgstr ""
-#: sc/inc/globstr.hrc:490
+#: sc/inc/globstr.hrc:491
#, c-format
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%s-click to follow hyperlink:"
msgstr ""
-#: sc/inc/globstr.hrc:491
+#: sc/inc/globstr.hrc:492
msgctxt "STR_CLICKHYPERLINK"
msgid "click to open hyperlink:"
msgstr ""
-#: sc/inc/globstr.hrc:492
+#: sc/inc/globstr.hrc:493
msgctxt "STR_PRINT_PREVIEW_NODATA"
msgid "No Data"
msgstr ""
-#: sc/inc/globstr.hrc:493
+#: sc/inc/globstr.hrc:494
msgctxt "STR_PRINT_PREVIEW_EMPTY_RANGE"
msgid "Print Range Empty"
msgstr ""
-#: sc/inc/globstr.hrc:494
+#: sc/inc/globstr.hrc:495
msgctxt "STR_UNDO_CONDFORMAT"
msgid "Conditional Format"
msgstr ""
-#: sc/inc/globstr.hrc:495
+#: sc/inc/globstr.hrc:496
msgctxt "STR_UNDO_CONDFORMAT_LIST"
msgid "Conditional Formats"
msgstr ""
-#: sc/inc/globstr.hrc:496
+#: sc/inc/globstr.hrc:497
msgctxt "STR_UNDO_FORMULA_TO_VALUE"
msgid "Convert Formula To Value"
msgstr ""
-#: sc/inc/globstr.hrc:497
+#: sc/inc/globstr.hrc:498
msgctxt "STR_UNQUOTED_STRING"
msgid "Strings without quotes are interpreted as column/row labels."
msgstr ""
-#: sc/inc/globstr.hrc:498
+#: sc/inc/globstr.hrc:499
msgctxt "STR_ENTER_VALUE"
msgid "Enter a value!"
msgstr ""
-#: sc/inc/globstr.hrc:499
+#: sc/inc/globstr.hrc:500
msgctxt "STR_TABLE_COUNT"
msgid "Sheet %1 of %2"
msgstr ""
-#: sc/inc/globstr.hrc:500
+#: sc/inc/globstr.hrc:501
msgctxt "STR_FUNCTIONS_FOUND"
msgid "%1 and %2 more"
msgstr ""
-#: sc/inc/globstr.hrc:501
+#: sc/inc/globstr.hrc:502
msgctxt "STR_GENERAL"
msgid "General"
msgstr ""
-#: sc/inc/globstr.hrc:502
+#: sc/inc/globstr.hrc:503
msgctxt "STR_NUMBER"
msgid "Number"
msgstr ""
-#: sc/inc/globstr.hrc:503
+#: sc/inc/globstr.hrc:504
msgctxt "STR_PERCENT"
msgid "Percent"
msgstr ""
-#: sc/inc/globstr.hrc:504
+#: sc/inc/globstr.hrc:505
msgctxt "STR_CURRENCY"
msgid "Currency"
msgstr ""
-#: sc/inc/globstr.hrc:505
+#: sc/inc/globstr.hrc:506
msgctxt "STR_DATE"
msgid "Date"
msgstr ""
-#: sc/inc/globstr.hrc:506
+#: sc/inc/globstr.hrc:507
msgctxt "STR_TIME"
msgid "Time"
msgstr ""
-#: sc/inc/globstr.hrc:507
+#: sc/inc/globstr.hrc:508
msgctxt "STR_SCIENTIFIC"
msgid "Scientific"
msgstr ""
-#: sc/inc/globstr.hrc:508
+#: sc/inc/globstr.hrc:509
msgctxt "STR_FRACTION"
msgid "Fraction"
msgstr ""
-#: sc/inc/globstr.hrc:509
+#: sc/inc/globstr.hrc:510
msgctxt "STR_BOOLEAN_VALUE"
msgid "Boolean Value"
msgstr ""
-#: sc/inc/globstr.hrc:510
+#: sc/inc/globstr.hrc:511
msgctxt "STR_TEXT"
msgid "Text"
msgstr ""
-#: sc/inc/globstr.hrc:511
+#: sc/inc/globstr.hrc:512
msgctxt "STR_QUERY_PIVOTTABLE_DELTAB"
msgid "The selected sheet(s) contain source data of related pivot tables that will be lost. Are you sure you want to delete the selected sheet(s)?"
msgstr ""
-#: sc/inc/globstr.hrc:512
+#: sc/inc/globstr.hrc:513
msgctxt "STR_ERR_NAME_INVALID_CELL_REF"
msgid "Invalid name. Reference to a cell, or a range of cells not allowed."
msgstr ""
@@ -10434,7 +10439,7 @@ msgstr ""
#: sc/inc/scfuncs.hrc:3010
msgctxt "SC_OPCODE_T_TEST"
-msgid "Mode specifies the number of distribution tails to return. 1= one-tailed, 2 = two-tailed distribution"
+msgid "Mode specifies the number of distribution tails to return. 1 = one-tailed, 2 = two-tailed distribution"
msgstr ""
#: sc/inc/scfuncs.hrc:3011
@@ -10479,7 +10484,7 @@ msgstr ""
#: sc/inc/scfuncs.hrc:3024
msgctxt "SC_OPCODE_T_TEST_MS"
-msgid "Mode specifies the number of distribution tails to return. 1= one-tailed, 2 = two-tailed distribution"
+msgid "Mode specifies the number of distribution tails to return. 1 = one-tailed, 2 = two-tailed distribution"
msgstr ""
#: sc/inc/scfuncs.hrc:3025
@@ -18017,22 +18022,22 @@ msgctxt "mergecellsdialog|MergeCellsDialog"
msgid "Merge Cells"
msgstr ""
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:81
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:84
msgctxt "mergecellsdialog|label"
msgid "Some cells are not empty."
msgstr ""
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:96
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:99
msgctxt "mergecellsdialog|move-cells-radio"
msgid "Move the contents of the hidden cells into the first cell"
msgstr ""
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:112
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:115
msgctxt "mergecellsdialog|empty-cells-radio"
msgid "Empty the contents of the hidden cells"
msgstr ""
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:128
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:131
msgctxt "mergecellsdialog|keep-content-radio"
msgid "Keep the contents of the hidden cells"
msgstr ""
diff --git a/source/az/sd/messages.po b/source/az/sd/messages.po
index e12cd027ddf..6e71c067392 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+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"
@@ -13,170 +13,170 @@ msgstr ""
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-#: sd/inc/DocumentRenderer.hrc:29
+#: sd/inc/DocumentRenderer.hrc:27
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Slides"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:30
+#: sd/inc/DocumentRenderer.hrc:28
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Handouts"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:31
+#: sd/inc/DocumentRenderer.hrc:29
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Notes"
msgstr "notalar"
-#: sd/inc/DocumentRenderer.hrc:32
+#: sd/inc/DocumentRenderer.hrc:30
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Outline"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:37
+#: sd/inc/DocumentRenderer.hrc:35
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "According to layout"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:38
+#: sd/inc/DocumentRenderer.hrc:36
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "1"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:39
+#: sd/inc/DocumentRenderer.hrc:37
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "2"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:40
+#: sd/inc/DocumentRenderer.hrc:38
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "3"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:41
+#: sd/inc/DocumentRenderer.hrc:39
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "4"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:42
+#: sd/inc/DocumentRenderer.hrc:40
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "6"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:43
+#: sd/inc/DocumentRenderer.hrc:41
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "9"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:48
+#: sd/inc/DocumentRenderer.hrc:46
msgctxt "STR_IMPRESS_PRINT_UI_ORDER_CHOICES"
msgid "Left to right, then down"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:49
+#: sd/inc/DocumentRenderer.hrc:47
msgctxt "STR_IMPRESS_PRINT_UI_ORDER_CHOICES"
msgid "Top to bottom, then right"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:54
+#: sd/inc/DocumentRenderer.hrc:52
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Original colors"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:55
+#: sd/inc/DocumentRenderer.hrc:53
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Grayscale"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:56
+#: sd/inc/DocumentRenderer.hrc:54
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Black & white"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:61
+#: sd/inc/DocumentRenderer.hrc:59
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Original size"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:62
+#: sd/inc/DocumentRenderer.hrc:60
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Fit to printable page"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:63
+#: sd/inc/DocumentRenderer.hrc:61
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Distribute on multiple sheets of paper"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:64
+#: sd/inc/DocumentRenderer.hrc:62
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Tile sheet of paper with repeated slides"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:69
+#: sd/inc/DocumentRenderer.hrc:67
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Original size"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:70
+#: sd/inc/DocumentRenderer.hrc:68
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Fit to printable page"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:71
+#: sd/inc/DocumentRenderer.hrc:69
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Distribute on multiple sheets of paper"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:72
+#: sd/inc/DocumentRenderer.hrc:70
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Tile sheet of paper with repeated pages"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:77
+#: sd/inc/DocumentRenderer.hrc:75
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "All pages"
msgstr "Bütün ~Sәhifәlәr"
-#: sd/inc/DocumentRenderer.hrc:78
+#: sd/inc/DocumentRenderer.hrc:76
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "Front sides / right pages"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:79
+#: sd/inc/DocumentRenderer.hrc:77
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "Back sides / left pages"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:84
+#: sd/inc/DocumentRenderer.hrc:82
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~All slides"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:85
+#: sd/inc/DocumentRenderer.hrc:83
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~Slides"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:86
+#: sd/inc/DocumentRenderer.hrc:84
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Se~lection"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:91
+#: sd/inc/DocumentRenderer.hrc:89
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~All pages"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:92
+#: sd/inc/DocumentRenderer.hrc:90
#, fuzzy
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Pa~ges"
msgstr "Sә~hifәlәr"
-#: sd/inc/DocumentRenderer.hrc:93
+#: sd/inc/DocumentRenderer.hrc:91
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Se~lection"
msgstr ""
diff --git a/source/az/svx/messages.po b/source/az/svx/messages.po
index 431bc95256d..5bf3c6265b9 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: 2018-05-16 16:53+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+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"
@@ -5220,7 +5220,7 @@ msgstr ""
#: svx/uiconfig/ui/safemodedialog.ui:432
msgctxt "safemodedialog|btn_create_zip"
-msgid "Create Zip Archive from User Profile"
+msgid "Archive User Profile"
msgstr ""
#: svx/uiconfig/ui/safemodedialog.ui:445
@@ -8837,8 +8837,8 @@ msgid "Red"
msgstr ""
#: include/svx/strings.hrc:565
-msgctxt "RID_SVXSTR_COLOR_VIOLET"
-msgid "Violet"
+msgctxt "RID_SVXSTR_COLOR_MAGENTA"
+msgid "Magenta"
msgstr ""
#: include/svx/strings.hrc:566
@@ -8903,8 +8903,8 @@ msgid "Light Red"
msgstr ""
#: include/svx/strings.hrc:579
-msgctxt "RID_SVXSTR_COLOR_LIGHTVIOLET"
-msgid "Light Violet"
+msgctxt "RID_SVXSTR_COLOR_LIGHTMAGENTA"
+msgid "Light Magenta"
msgstr ""
#: include/svx/strings.hrc:580
@@ -8969,8 +8969,8 @@ msgid "Dark Red"
msgstr ""
#: include/svx/strings.hrc:593
-msgctxt "RID_SVXSTR_COLOR_DARKVIOLET1"
-msgid "Dark Violet"
+msgctxt "RID_SVXSTR_COLOR_DARKMAGENTA"
+msgid "Dark Magenta"
msgstr ""
#: include/svx/strings.hrc:594
@@ -9005,55 +9005,55 @@ msgstr ""
#. Elements of the Tonal color palette
#: include/svx/strings.hrc:601
+msgctxt "RID_SVXSTR_COLOR_VIOLET"
+msgid "Violet"
+msgstr ""
+
+#: include/svx/strings.hrc:602
msgctxt "RID_SVXSTR_COLOR_VIOLET_OUG"
msgid "Violet (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:602
+#: include/svx/strings.hrc:603
msgctxt "RID_SVXSTR_COLOR_BLUE_OUG"
msgid "Blue (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:603
+#: include/svx/strings.hrc:604
msgctxt "RID_SVXSTR_COLOR_AZURE_OUG"
msgid "Azure (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:604
+#: include/svx/strings.hrc:605
msgctxt "RID_SVXSTR_COLOR_SPRINGGREEN_OUG"
msgid "Spring Green (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:605
+#: include/svx/strings.hrc:606
msgctxt "RID_SVXSTR_COLOR_GREEN_OUG"
msgid "Green (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:606
+#: include/svx/strings.hrc:607
msgctxt "RID_SVXSTR_COLOR_CHARTREUSEGREEN_OUG"
msgid "Chartreuse Green (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:607
+#: include/svx/strings.hrc:608
msgctxt "RID_SVXSTR_COLOR_ORANGE_OUG"
msgid "Orange (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:608
+#: include/svx/strings.hrc:609
msgctxt "RID_SVXSTR_COLOR_RED_OUG"
msgid "Red (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:609
+#: include/svx/strings.hrc:610
msgctxt "RID_SVXSTR_COLOR_ROSE_OUG"
msgid "Rose (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:610
-msgctxt "RID_SVXSTR_COLOR_MAGENTA"
-msgid "Magenta"
-msgstr ""
-
#: include/svx/strings.hrc:611
msgctxt "RID_SVXSTR_COLOR_AZURE"
msgid "Azure"
@@ -12167,12 +12167,12 @@ msgstr ""
#: include/svx/strings.hrc:1273
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_6"
-msgid "Check mark bullets"
+msgid "Cross mark bullets"
msgstr ""
#: include/svx/strings.hrc:1274
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_7"
-msgid "Tick mark bullets"
+msgid "Check mark bullets"
msgstr ""
#: include/svx/strings.hrc:1275
diff --git a/source/az/sw/messages.po b/source/az/sw/messages.po
index fbb14bdd416..38336258b12 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: 2018-05-22 13:17+0200\n"
+"POT-Creation-Date: 2018-06-12 14:41+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"
@@ -1180,12 +1180,12 @@ msgstr ""
#: sw/inc/strings.hrc:172
msgctxt "STR_POOLCOLL_TOX_ILLUSH"
-msgid "Illustration Index Heading"
+msgid "Figure Index Heading"
msgstr ""
#: sw/inc/strings.hrc:173
msgctxt "STR_POOLCOLL_TOX_ILLUS1"
-msgid "Illustration Index 1"
+msgid "Figure Index 1"
msgstr ""
#: sw/inc/strings.hrc:174
@@ -3618,7 +3618,7 @@ msgstr ""
#: sw/inc/strings.hrc:672
msgctxt "STR_TOX_ILL"
-msgid "Illustration Index"
+msgid "Table of Figures"
msgstr ""
#: sw/inc/strings.hrc:673
@@ -9361,72 +9361,72 @@ msgctxt "footnotepage|label5"
msgid "Continuation Notice"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:49
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:55
msgctxt "footnotesendnotestabpage|ftnntnum"
msgid "_Restart numbering"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:91
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:93
msgctxt "footnotesendnotestabpage|ftnoffset_label"
msgid "_Start at:"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:112
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:111
msgctxt "footnotesendnotestabpage|ftnntnumfmt"
msgid "Custom _format"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:155
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:150
msgctxt "footnotesendnotestabpage|ftnsuffix_label"
msgid "Aft_er:"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:199
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:188
msgctxt "footnotesendnotestabpage|ftnprefix_label"
msgid "Be_fore:"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:228
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:212
msgctxt "footnotesendnotestabpage|ftnntattextend"
msgid "Collec_t at end of text"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:252
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:234
msgctxt "footnotesendnotestabpage|label1"
msgid "Footnotes"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:289
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:271
msgctxt "footnotesendnotestabpage|endntattextend"
msgid "C_ollect at end of section"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:315
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:295
msgctxt "footnotesendnotestabpage|endntnum"
msgid "_Restart numbering"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:357
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:333
msgctxt "footnotesendnotestabpage|endoffset_label"
msgid "_Start at:"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:378
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:351
msgctxt "footnotesendnotestabpage|endntnumfmt"
msgid "_Custom format"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:421
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:390
msgctxt "footnotesendnotestabpage|endsuffix_label"
msgid "Aft_er:"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:465
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:428
msgctxt "footnotesendnotestabpage|endprefix_label"
msgid "Be_fore:"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:500
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:458
msgctxt "footnotesendnotestabpage|label2"
msgid "Endnotes"
msgstr ""
@@ -9456,29 +9456,29 @@ msgctxt "formatsectiondialog|notes"
msgid "Footnotes/Endnotes"
msgstr ""
-#: sw/uiconfig/swriter/ui/formattablepage.ui:63
+#: sw/uiconfig/swriter/ui/formattablepage.ui:77
#, fuzzy
msgctxt "formattablepage|nameft"
msgid "_Name"
msgstr "_Ad:"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:79
+#: sw/uiconfig/swriter/ui/formattablepage.ui:91
msgctxt "formattablepage|widthft"
msgid "W_idth"
msgstr ""
-#: sw/uiconfig/swriter/ui/formattablepage.ui:110
+#: sw/uiconfig/swriter/ui/formattablepage.ui:120
msgctxt "formattablepage|relwidth"
msgid "Relati_ve"
msgstr ""
-#: sw/uiconfig/swriter/ui/formattablepage.ui:155
+#: sw/uiconfig/swriter/ui/formattablepage.ui:160
#, fuzzy
msgctxt "formattablepage|label45"
msgid "Properties"
msgstr "Xassələr"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:194
+#: sw/uiconfig/swriter/ui/formattablepage.ui:195
msgctxt "formattablepage|leftft"
msgid "Lef_t"
msgstr ""
@@ -9488,62 +9488,62 @@ msgctxt "formattablepage|rightft"
msgid "Ri_ght"
msgstr ""
-#: sw/uiconfig/swriter/ui/formattablepage.ui:228
+#: sw/uiconfig/swriter/ui/formattablepage.ui:226
msgctxt "formattablepage|aboveft"
msgid "_Above"
msgstr ""
-#: sw/uiconfig/swriter/ui/formattablepage.ui:245
+#: sw/uiconfig/swriter/ui/formattablepage.ui:241
msgctxt "formattablepage|belowft"
msgid "_Below"
msgstr ""
-#: sw/uiconfig/swriter/ui/formattablepage.ui:320
+#: sw/uiconfig/swriter/ui/formattablepage.ui:311
msgctxt "formattablepage|label46"
msgid "Spacing"
msgstr ""
-#: sw/uiconfig/swriter/ui/formattablepage.ui:362
+#: sw/uiconfig/swriter/ui/formattablepage.ui:349
msgctxt "formattablepage|full"
msgid "A_utomatic"
msgstr ""
-#: sw/uiconfig/swriter/ui/formattablepage.ui:380
+#: sw/uiconfig/swriter/ui/formattablepage.ui:365
msgctxt "formattablepage|left"
msgid "_Left"
msgstr ""
-#: sw/uiconfig/swriter/ui/formattablepage.ui:398
+#: sw/uiconfig/swriter/ui/formattablepage.ui:381
msgctxt "formattablepage|fromleft"
msgid "_From left"
msgstr ""
-#: sw/uiconfig/swriter/ui/formattablepage.ui:416
+#: sw/uiconfig/swriter/ui/formattablepage.ui:397
msgctxt "formattablepage|right"
msgid "R_ight"
msgstr ""
-#: sw/uiconfig/swriter/ui/formattablepage.ui:435
+#: sw/uiconfig/swriter/ui/formattablepage.ui:413
msgctxt "formattablepage|center"
msgid "_Center"
msgstr ""
-#: sw/uiconfig/swriter/ui/formattablepage.ui:453
+#: sw/uiconfig/swriter/ui/formattablepage.ui:429
msgctxt "formattablepage|free"
msgid "_Manual"
msgstr ""
-#: sw/uiconfig/swriter/ui/formattablepage.ui:478
+#: sw/uiconfig/swriter/ui/formattablepage.ui:452
msgctxt "formattablepage|label43"
msgid "Alignment"
msgstr ""
-#: sw/uiconfig/swriter/ui/formattablepage.ui:522
+#: sw/uiconfig/swriter/ui/formattablepage.ui:491
msgctxt "formattablepage|label53"
msgid "Text _direction"
msgstr ""
-#: sw/uiconfig/swriter/ui/formattablepage.ui:553
+#: sw/uiconfig/swriter/ui/formattablepage.ui:519
#, fuzzy
msgctxt "formattablepage|label44"
msgid "Properties "
@@ -9903,22 +9903,27 @@ msgctxt "headerfootermenu|insert_pagenumber"
msgid "Insert Page Number"
msgstr ""
-#: sw/uiconfig/swriter/ui/indentpage.ui:52
+#: sw/uiconfig/swriter/ui/headerfootermenu.ui:42
+msgctxt "headerfootermenu|insert_pagecount"
+msgid "Insert Page Count"
+msgstr ""
+
+#: sw/uiconfig/swriter/ui/indentpage.ui:57
msgctxt "indentpage|label1"
msgid "_Before section"
msgstr ""
-#: sw/uiconfig/swriter/ui/indentpage.ui:67
+#: sw/uiconfig/swriter/ui/indentpage.ui:71
msgctxt "indentpage|label3"
msgid "_After section"
msgstr ""
-#: sw/uiconfig/swriter/ui/indentpage.ui:113
+#: sw/uiconfig/swriter/ui/indentpage.ui:115
msgctxt "indentpage|label2"
msgid "Indent"
msgstr ""
-#: sw/uiconfig/swriter/ui/indentpage.ui:142
+#: sw/uiconfig/swriter/ui/indentpage.ui:155
msgctxt "indentpage|preview-atkobject"
msgid "Example"
msgstr ""
@@ -13488,7 +13493,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:68
msgctxt "optcompatpage|format"
-msgid "MS Word-compatible trailing blanks"
+msgid "Word-compatible trailing blanks"
msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:69
@@ -13498,7 +13503,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:70
msgctxt "optcompatpage|format"
-msgid "A database field (e.g., MailMerge) with empty value hides its paragraph"
+msgid "Hide paragraphs of database fields (e.g., mail merge) with an empty value"
msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:71
@@ -16239,123 +16244,123 @@ msgctxt "tableproperties|background"
msgid "Background"
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:25
-msgctxt "tabletextflowpage|liststore1"
-msgid "Horizontal"
-msgstr ""
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:29
-msgctxt "tabletextflowpage|liststore1"
-msgid "Vertical"
-msgstr ""
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:33
-msgctxt "tabletextflowpage|liststore1"
-msgid "Use superordinate object settings"
-msgstr ""
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:47
-msgctxt "tabletextflowpage|liststore2"
-msgid "Top"
-msgstr ""
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:51
-msgctxt "tabletextflowpage|liststore2"
-msgid "Centered"
-msgstr ""
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:55
-msgctxt "tabletextflowpage|liststore2"
-msgid "Bottom"
-msgstr ""
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:97
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:53
msgctxt "tabletextflowpage|break"
msgid "_Break"
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:112
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:68
#, fuzzy
msgctxt "tabletextflowpage|page"
msgid "_Page"
msgstr "Sәhifә"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:132
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:87
msgctxt "tabletextflowpage|column"
msgid "Col_umn"
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:151
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:106
msgctxt "tabletextflowpage|before"
msgid "Be_fore"
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:171
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:125
msgctxt "tabletextflowpage|after"
msgid "_After"
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:203
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:158
msgctxt "tabletextflowpage|pagestyle"
msgid "With Page St_yle"
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:224
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:177
msgctxt "tabletextflowpage|pagenoft"
msgid "Page _number"
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:257
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:213
msgctxt "tabletextflowpage|pagestylelb-atkobject"
msgid "With Page Style"
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:274
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:230
msgctxt "tabletextflowpage|split"
msgid "Allow _table to split across pages and columns"
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:289
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:245
msgctxt "tabletextflowpage|splitrow"
msgid "Allow row to break a_cross pages and columns"
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:306
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:262
msgctxt "tabletextflowpage|keep"
msgid "_Keep with next paragraph"
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:328
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:284
msgctxt "tabletextflowpage|label40"
msgid "Text _orientation"
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:361
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:298
+msgctxt "tabletextflowpage|liststore1"
+msgid "Horizontal"
+msgstr ""
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:299
+msgctxt "tabletextflowpage|liststore1"
+msgid "Vertical"
+msgstr ""
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:300
+msgctxt "tabletextflowpage|liststore1"
+msgid "Use superordinate object settings"
+msgstr ""
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:321
msgctxt "tabletextflowpage|headline"
msgid "R_epeat heading"
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:383
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:343
msgctxt "tabletextflowpage|label38"
msgid "The first "
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:396
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:356
msgctxt "tabletextflowpage|label39"
msgid "rows"
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:434
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:395
msgctxt "tabletextflowpage|label35"
msgid "Text Flow"
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:467
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:428
msgctxt "tabletextflowpage|label41"
msgid "_Vertical alignment"
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:495
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:442
+msgctxt "tabletextflowpage|liststore2"
+msgid "Top"
+msgstr ""
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:443
+msgctxt "tabletextflowpage|liststore2"
+msgid "Centered"
+msgstr ""
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:444
+msgctxt "tabletextflowpage|liststore2"
+msgid "Bottom"
+msgstr ""
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:460
msgctxt "tabletextflowpage|label36"
msgid "Alignment"
msgstr ""
@@ -17149,7 +17154,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/tocindexpage.ui:58
msgctxt "tocindexpage|liststore1"
-msgid "Illustration Index"
+msgid "Table of Figures"
msgstr ""
#: sw/uiconfig/swriter/ui/tocindexpage.ui:62
diff --git a/source/az/writerperfect/messages.po b/source/az/writerperfect/messages.po
index a2212ef3f6e..8cb36f0d5a0 100644
--- a/source/az/writerperfect/messages.po
+++ b/source/az/writerperfect/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-16 16:54+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+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"
@@ -63,98 +63,98 @@ msgctxt "exportepub|generalft"
msgid "General"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:122
+#: writerperfect/uiconfig/ui/exportepub.ui:121
#, fuzzy
msgctxt "exportepub|versionft"
msgid "Version:"
msgstr "Versiya"
-#: writerperfect/uiconfig/ui/exportepub.ui:139
+#: writerperfect/uiconfig/ui/exportepub.ui:138
msgctxt "exportepub|epub3"
msgid "EPUB 3.0"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:140
+#: writerperfect/uiconfig/ui/exportepub.ui:139
msgctxt "exportepub|epub2"
msgid "EPUB 2.0"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:175
+#: writerperfect/uiconfig/ui/exportepub.ui:174
msgctxt "exportepub|splitft"
msgid "Split method:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:192
+#: writerperfect/uiconfig/ui/exportepub.ui:191
msgctxt "exportepub|splitpage"
msgid "Page break"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:193
+#: writerperfect/uiconfig/ui/exportepub.ui:192
msgctxt "exportepub|splitheading"
msgid "Heading"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:228
+#: writerperfect/uiconfig/ui/exportepub.ui:227
msgctxt "exportepub|layoutft"
msgid "Layout method:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:245
+#: writerperfect/uiconfig/ui/exportepub.ui:244
msgctxt "exportepub|layoutreflowable"
msgid "Reflowable"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:246
+#: writerperfect/uiconfig/ui/exportepub.ui:245
msgctxt "exportepub|layoutfixed"
msgid "Fixed"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:281
+#: writerperfect/uiconfig/ui/exportepub.ui:280
msgctxt "exportepub|coverimageft"
msgid "Custom cover image:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:311
+#: writerperfect/uiconfig/ui/exportepub.ui:310
msgctxt "exportepub|coverbutton"
msgid "Browse..."
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:355
+#: writerperfect/uiconfig/ui/exportepub.ui:354
msgctxt "exportepub|mediadirft"
msgid "Custom media directory:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:385
+#: writerperfect/uiconfig/ui/exportepub.ui:384
msgctxt "exportepub|mediabutton"
msgid "Browse..."
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:429
+#: writerperfect/uiconfig/ui/exportepub.ui:428
msgctxt "exportepub|metadataft"
msgid "Metadata"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:470
+#: writerperfect/uiconfig/ui/exportepub.ui:468
msgctxt "exportepub|identifierft"
msgid "Identifier:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:485
+#: writerperfect/uiconfig/ui/exportepub.ui:483
msgctxt "exportepub|titleft"
msgid "Title:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:511
+#: writerperfect/uiconfig/ui/exportepub.ui:509
msgctxt "exportepub|authorft"
msgid "Author:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:537
+#: writerperfect/uiconfig/ui/exportepub.ui:535
msgctxt "exportepub|languageft"
msgid "Language:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:563
+#: writerperfect/uiconfig/ui/exportepub.ui:561
msgctxt "exportepub|dateft"
msgid "Date:"
msgstr ""
diff --git a/source/be/cui/messages.po b/source/be/cui/messages.po
index 676e5f70254..8dd483850e1 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2017-12-24 17:58+0000\n"
"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -9872,97 +9872,97 @@ msgctxt "positionsizedialog|PositionAndSizeDialog"
msgid "Position and Size"
msgstr "Месца і водступ"
-#: cui/uiconfig/ui/positionsizedialog.ui:107
+#: cui/uiconfig/ui/positionsizedialog.ui:136
msgctxt "positionsizedialog|RID_SVXPAGE_POSITION_SIZE"
msgid "Position and Size"
msgstr "Месца і водступ"
-#: cui/uiconfig/ui/positionsizedialog.ui:129
+#: cui/uiconfig/ui/positionsizedialog.ui:182
msgctxt "positionsizedialog|RID_SVXPAGE_SWPOSSIZE"
msgid "Position and Size"
msgstr "Месца і водступ"
-#: cui/uiconfig/ui/positionsizedialog.ui:152
+#: cui/uiconfig/ui/positionsizedialog.ui:229
msgctxt "positionsizedialog|RID_SVXPAGE_ANGLE"
msgid "Rotation"
msgstr "Паварот"
-#: cui/uiconfig/ui/positionsizedialog.ui:175
+#: cui/uiconfig/ui/positionsizedialog.ui:276
msgctxt "positionsizedialog|RID_SVXPAGE_SLANT"
msgid "Slant & Corner Radius"
msgstr "Нахіл і радыус акругленага вугла"
-#: cui/uiconfig/ui/possizetabpage.ui:40
+#: cui/uiconfig/ui/possizetabpage.ui:61
msgctxt "possizetabpage|FT_POS_X"
msgid "Position _X:"
msgstr "Пазіцыя _X:"
-#: cui/uiconfig/ui/possizetabpage.ui:56
+#: cui/uiconfig/ui/possizetabpage.ui:75
msgctxt "possizetabpage|FT_POS_Y"
msgid "Position _Y:"
msgstr "Пазіцыя _Y:"
-#: cui/uiconfig/ui/possizetabpage.ui:110
+#: cui/uiconfig/ui/possizetabpage.ui:128
msgctxt "possizetabpage|FT_POSREFERENCE"
msgid "_Base point:"
msgstr "Базавы пункт:"
-#: cui/uiconfig/ui/possizetabpage.ui:148
+#: cui/uiconfig/ui/possizetabpage.ui:182
msgctxt "possizetabpage|label1"
msgid "Position"
msgstr "Месца"
-#: cui/uiconfig/ui/possizetabpage.ui:190
+#: cui/uiconfig/ui/possizetabpage.ui:224
msgctxt "possizetabpage|FT_WIDTH"
msgid "Wi_dth:"
msgstr "Шырыня:"
-#: cui/uiconfig/ui/possizetabpage.ui:206
+#: cui/uiconfig/ui/possizetabpage.ui:238
msgctxt "possizetabpage|FT_HEIGHT"
msgid "H_eight:"
msgstr "Вышыня:"
-#: cui/uiconfig/ui/possizetabpage.ui:247
+#: cui/uiconfig/ui/possizetabpage.ui:276
msgctxt "possizetabpage|CBX_SCALE"
msgid "_Keep ratio"
msgstr "Захоўваць прапорцыі"
-#: cui/uiconfig/ui/possizetabpage.ui:279
+#: cui/uiconfig/ui/possizetabpage.ui:307
msgctxt "possizetabpage|FT_SIZEREFERENCE"
msgid "Base _point:"
msgstr "Базавы пункт:"
-#: cui/uiconfig/ui/possizetabpage.ui:317
+#: cui/uiconfig/ui/possizetabpage.ui:361
msgctxt "possizetabpage|label2"
msgid "Size"
msgstr "Памер"
-#: cui/uiconfig/ui/possizetabpage.ui:356
+#: cui/uiconfig/ui/possizetabpage.ui:401
msgctxt "possizetabpage|TSB_POSPROTECT"
msgid "Positio_n"
msgstr "Месца"
-#: cui/uiconfig/ui/possizetabpage.ui:373
+#: cui/uiconfig/ui/possizetabpage.ui:418
msgctxt "possizetabpage|TSB_SIZEPROTECT"
msgid "_Size"
msgstr "Памер"
-#: cui/uiconfig/ui/possizetabpage.ui:397
+#: cui/uiconfig/ui/possizetabpage.ui:441
msgctxt "possizetabpage|label3"
msgid "Protect"
msgstr "Засцерагчы"
-#: cui/uiconfig/ui/possizetabpage.ui:430
+#: cui/uiconfig/ui/possizetabpage.ui:475
msgctxt "possizetabpage|TSB_AUTOGROW_WIDTH"
msgid "_Fit width to text"
msgstr "Па шырыні тэксту"
-#: cui/uiconfig/ui/possizetabpage.ui:447
+#: cui/uiconfig/ui/possizetabpage.ui:492
msgctxt "possizetabpage|TSB_AUTOGROW_HEIGHT"
msgid "Fit _height to text"
msgstr "Па вышыні тэксту"
-#: cui/uiconfig/ui/possizetabpage.ui:471
+#: cui/uiconfig/ui/possizetabpage.ui:515
msgctxt "possizetabpage|label4"
msgid "Adapt"
msgstr "Дапасаваць"
@@ -10162,47 +10162,47 @@ msgctxt "recordnumberdialog|label2"
msgid "go to record"
msgstr "перайсці да запісу"
-#: cui/uiconfig/ui/rotationtabpage.ui:52
+#: cui/uiconfig/ui/rotationtabpage.ui:56
msgctxt "rotationtabpage|FT_POS_X"
msgid "Position _X:"
msgstr "Пазіцыя _X:"
-#: cui/uiconfig/ui/rotationtabpage.ui:66
+#: cui/uiconfig/ui/rotationtabpage.ui:70
msgctxt "rotationtabpage|FT_POS_Y"
msgid "Position _Y:"
msgstr "Пазіцыя _Y:"
-#: cui/uiconfig/ui/rotationtabpage.ui:116
+#: cui/uiconfig/ui/rotationtabpage.ui:123
msgctxt "rotationtabpage|FT_POSPRESETS"
msgid "_Default settings:"
msgstr "Прадвызначаныя настройкі:"
-#: cui/uiconfig/ui/rotationtabpage.ui:130
+#: cui/uiconfig/ui/rotationtabpage.ui:151
msgctxt "rotationtabpage|CTL_RECT|tooltip_text"
msgid "Rotation point"
msgstr "Цэнтр павароту"
-#: cui/uiconfig/ui/rotationtabpage.ui:155
+#: cui/uiconfig/ui/rotationtabpage.ui:178
msgctxt "rotationtabpage|label1"
msgid "Pivot Point"
msgstr "Апорны пункт"
-#: cui/uiconfig/ui/rotationtabpage.ui:197
+#: cui/uiconfig/ui/rotationtabpage.ui:220
msgctxt "rotationtabpage|FT_ANGLE"
msgid "_Angle:"
msgstr "Вугал:"
-#: cui/uiconfig/ui/rotationtabpage.ui:238
+#: cui/uiconfig/ui/rotationtabpage.ui:263
msgctxt "rotationtabpage|FT_ANGLEPRESETS"
msgid "Default _settings:"
msgstr "Прадвызначаныя настройкі:"
-#: cui/uiconfig/ui/rotationtabpage.ui:252
+#: cui/uiconfig/ui/rotationtabpage.ui:287
msgctxt "rotationtabpage|CTL_ANGLE|tooltip_text"
msgid "Rotation Angle"
msgstr "Вугал павароту"
-#: cui/uiconfig/ui/rotationtabpage.ui:277
+#: cui/uiconfig/ui/rotationtabpage.ui:314
msgctxt "rotationtabpage|label2"
msgid "Rotation Angle"
msgstr "Вугал павароту"
@@ -10582,52 +10582,52 @@ msgctxt "similaritysearchdialog|relaxbox"
msgid "_Combine"
msgstr "_Спалучыць"
-#: cui/uiconfig/ui/slantcornertabpage.ui:50
+#: cui/uiconfig/ui/slantcornertabpage.ui:70
msgctxt "slantcornertabpage|label5"
msgid "_X:"
msgstr "_X:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:88
+#: cui/uiconfig/ui/slantcornertabpage.ui:110
msgctxt "slantcornertabpage|label6"
msgid "_Y:"
msgstr "_Y:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:125
+#: cui/uiconfig/ui/slantcornertabpage.ui:149
msgctxt "slantcornertabpage|label3"
msgid "Control Point 1"
msgstr "Кантрольны пункт 1"
-#: cui/uiconfig/ui/slantcornertabpage.ui:159
+#: cui/uiconfig/ui/slantcornertabpage.ui:183
msgctxt "slantcornertabpage|FT_RADIUS"
msgid "_Radius:"
msgstr "_Радыус:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:189
+#: cui/uiconfig/ui/slantcornertabpage.ui:214
msgctxt "slantcornertabpage|label1"
msgid "Corner Radius"
msgstr "Радыус скруглення"
-#: cui/uiconfig/ui/slantcornertabpage.ui:223
+#: cui/uiconfig/ui/slantcornertabpage.ui:248
msgctxt "slantcornertabpage|FT_ANGLE"
msgid "_Angle:"
msgstr "_Вугал:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:253
+#: cui/uiconfig/ui/slantcornertabpage.ui:279
msgctxt "slantcornertabpage|label2"
msgid "Slant"
msgstr "Нахіл"
-#: cui/uiconfig/ui/slantcornertabpage.ui:294
+#: cui/uiconfig/ui/slantcornertabpage.ui:320
msgctxt "slantcornertabpage|label4"
msgid "_X:"
msgstr "_X:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:332
+#: cui/uiconfig/ui/slantcornertabpage.ui:360
msgctxt "slantcornertabpage|label7"
msgid "_Y:"
msgstr "_Y:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:369
+#: cui/uiconfig/ui/slantcornertabpage.ui:399
msgctxt "slantcornertabpage|label8"
msgid "Control Point 2"
msgstr "Кантрольны пункт 2"
@@ -10907,112 +10907,112 @@ msgctxt "storedwebconnectiondialog|change"
msgid "_Change Password..."
msgstr "Змяніць пароль..."
-#: cui/uiconfig/ui/swpossizepage.ui:74
+#: cui/uiconfig/ui/swpossizepage.ui:85
msgctxt "swpossizepage|widthft"
msgid "_Width:"
msgstr "Шырыня:"
-#: cui/uiconfig/ui/swpossizepage.ui:111
+#: cui/uiconfig/ui/swpossizepage.ui:123
msgctxt "swpossizepage|heightft"
msgid "H_eight:"
msgstr "Вышыня:"
-#: cui/uiconfig/ui/swpossizepage.ui:128
+#: cui/uiconfig/ui/swpossizepage.ui:141
msgctxt "swpossizepage|ratio"
msgid "_Keep ratio"
msgstr "Захоўваць прапорцыі"
-#: cui/uiconfig/ui/swpossizepage.ui:149
+#: cui/uiconfig/ui/swpossizepage.ui:162
msgctxt "swpossizepage|label2"
msgid "Size"
msgstr "Памер"
-#: cui/uiconfig/ui/swpossizepage.ui:205
+#: cui/uiconfig/ui/swpossizepage.ui:218
msgctxt "swpossizepage|topage"
msgid "To _page"
msgstr "Да старонкі"
-#: cui/uiconfig/ui/swpossizepage.ui:222
+#: cui/uiconfig/ui/swpossizepage.ui:234
msgctxt "swpossizepage|topara"
msgid "To paragrap_h"
msgstr "Да абзаца"
-#: cui/uiconfig/ui/swpossizepage.ui:238
+#: cui/uiconfig/ui/swpossizepage.ui:250
msgctxt "swpossizepage|tochar"
msgid "To cha_racter"
msgstr "Да знака"
-#: cui/uiconfig/ui/swpossizepage.ui:254
+#: cui/uiconfig/ui/swpossizepage.ui:266
msgctxt "swpossizepage|aschar"
msgid "_As character"
msgstr "Як знак"
-#: cui/uiconfig/ui/swpossizepage.ui:270
+#: cui/uiconfig/ui/swpossizepage.ui:282
msgctxt "swpossizepage|toframe"
msgid "To _frame"
msgstr "Д_а рамкі"
-#: cui/uiconfig/ui/swpossizepage.ui:292
+#: cui/uiconfig/ui/swpossizepage.ui:304
msgctxt "swpossizepage|label1"
msgid "Anchor"
msgstr "Якар"
-#: cui/uiconfig/ui/swpossizepage.ui:333
+#: cui/uiconfig/ui/swpossizepage.ui:344
msgctxt "swpossizepage|horiposft"
msgid "Hori_zontal:"
msgstr "Гарызантальна:"
-#: cui/uiconfig/ui/swpossizepage.ui:347
+#: cui/uiconfig/ui/swpossizepage.ui:358
msgctxt "swpossizepage|horibyft"
msgid "b_y:"
msgstr "ад:"
-#: cui/uiconfig/ui/swpossizepage.ui:361
+#: cui/uiconfig/ui/swpossizepage.ui:372
msgctxt "swpossizepage|vertbyft"
msgid "_by:"
msgstr "на:"
-#: cui/uiconfig/ui/swpossizepage.ui:375
+#: cui/uiconfig/ui/swpossizepage.ui:386
msgctxt "swpossizepage|horitoft"
msgid "_to:"
msgstr "да:"
-#: cui/uiconfig/ui/swpossizepage.ui:421
+#: cui/uiconfig/ui/swpossizepage.ui:433
msgctxt "swpossizepage|vertposft"
msgid "_Vertical:"
msgstr "Вертыкальна:"
-#: cui/uiconfig/ui/swpossizepage.ui:457
+#: cui/uiconfig/ui/swpossizepage.ui:470
msgctxt "swpossizepage|verttoft"
msgid "t_o:"
msgstr "да:"
-#: cui/uiconfig/ui/swpossizepage.ui:478
+#: cui/uiconfig/ui/swpossizepage.ui:492
msgctxt "swpossizepage|mirror"
msgid "_Mirror on even pages"
msgstr "Адлюстроўваць на цотных старонках"
-#: cui/uiconfig/ui/swpossizepage.ui:495
+#: cui/uiconfig/ui/swpossizepage.ui:509
msgctxt "swpossizepage|followtextflow"
msgid "Follow te_xt flow"
msgstr "Следаваць плыні тэксту"
-#: cui/uiconfig/ui/swpossizepage.ui:518
+#: cui/uiconfig/ui/swpossizepage.ui:532
msgctxt "swpossizepage|label11"
msgid "Position"
msgstr "Месца"
-#: cui/uiconfig/ui/swpossizepage.ui:549
+#: cui/uiconfig/ui/swpossizepage.ui:563
msgctxt "swpossizepage|pos"
msgid "Positio_n"
msgstr "Месца"
-#: cui/uiconfig/ui/swpossizepage.ui:565
+#: cui/uiconfig/ui/swpossizepage.ui:579
msgctxt "swpossizepage|size"
msgid "_Size"
msgstr "Памер"
-#: cui/uiconfig/ui/swpossizepage.ui:587
+#: cui/uiconfig/ui/swpossizepage.ui:601
msgctxt "swpossizepage|label3"
msgid "Protect"
msgstr "Засцерагаць"
@@ -11202,12 +11202,12 @@ msgctxt "textattrtabpage|label2"
msgid "Spacing to Borders"
msgstr "Водступ да краёў"
-#: cui/uiconfig/ui/textattrtabpage.ui:425
+#: cui/uiconfig/ui/textattrtabpage.ui:423
msgctxt "textattrtabpage|TSB_FULL_WIDTH"
msgid "Full _width"
msgstr "Поўная шырыня"
-#: cui/uiconfig/ui/textattrtabpage.ui:448
+#: cui/uiconfig/ui/textattrtabpage.ui:446
msgctxt "textattrtabpage|label3"
msgid "Text Anchor"
msgstr "Прывязка тэксту"
diff --git a/source/be/filter/source/config/fragments/filters.po b/source/be/filter/source/config/fragments/filters.po
index c3fd1ea0289..ee40d1e568d 100644
--- a/source/be/filter/source/config/fragments/filters.po
+++ b/source/be/filter/source/config/fragments/filters.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: filters\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-16 16:54+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2017-12-10 14:26+0000\n"
"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: <en@li.org>\n"
@@ -463,8 +463,8 @@ msgctxt ""
"MS Word 2003 XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Word 2003 XML"
-msgstr "Microsoft Word 2003 XML"
+msgid "Word 2003 XML"
+msgstr ""
#: MS_Word_2007_XML.xcu
msgctxt ""
@@ -1282,8 +1282,8 @@ msgctxt ""
"Calc MS Excel 2007 VBA XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Excel 2007-2016 XML (macro enabled)"
-msgstr "Microsoft Excel 2007-2016 XML (з макрасамі)"
+msgid "Excel 2007–2019 (macro-enabled)"
+msgstr ""
#: calc_MS_Excel_2007_XML.xcu
msgctxt ""
diff --git a/source/be/filter/source/config/fragments/types.po b/source/be/filter/source/config/fragments/types.po
index 11642cb54f4..e8710887d1c 100644
--- a/source/be/filter/source/config/fragments/types.po
+++ b/source/be/filter/source/config/fragments/types.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: types\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-08 15:11+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2017-12-12 17:28+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: <en@li.org>\n"
@@ -292,8 +292,8 @@ msgctxt ""
"writer_MS_Word_2003_XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Word 2003 XML"
-msgstr "Microsoft Word 2003 XML"
+msgid "Word 2003 XML"
+msgstr ""
#: writer_MS_Word_2007_XML.xcu
msgctxt ""
diff --git a/source/be/fpicker/messages.po b/source/be/fpicker/messages.po
index 3b3687acee1..dfbb211646f 100644
--- a/source/be/fpicker/messages.po
+++ b/source/be/fpicker/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2017-12-10 14:28+0000\n"
"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -272,13 +272,13 @@ msgstr "Зашыфраваць ключом GPG"
#: fpicker/uiconfig/ui/foldernamedialog.ui:8
msgctxt "foldernamedialog|FolderNameDialog"
-msgid "Folder Name ?"
-msgstr "Назва каталога ?"
+msgid "Folder Name"
+msgstr ""
#: fpicker/uiconfig/ui/foldernamedialog.ui:91
msgctxt "foldernamedialog|label2"
-msgid "Na_me"
-msgstr "Назва"
+msgid "Na_me:"
+msgstr ""
#: fpicker/uiconfig/ui/foldernamedialog.ui:122
msgctxt "foldernamedialog|label1"
diff --git a/source/be/officecfg/registry/data/org/openoffice/Office/UI.po b/source/be/officecfg/registry/data/org/openoffice/Office/UI.po
index 2e0083bc0f2..e9a4084942f 100644
--- a/source/be/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/be/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: UI\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-22 13:17+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2018-01-16 17:04+0000\n"
"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: Belarusian <yury.tarasievich@gmail.com>\n"
@@ -26537,8 +26537,8 @@ msgctxt ""
"..WriterCommands.UserInterface.Commands..uno:TextAttributes\n"
"Label\n"
"value.text"
-msgid "Text Attributes"
-msgstr "Атрыбуты тэксту"
+msgid "Text Attributes..."
+msgstr ""
#: WriterCommands.xcu
msgctxt ""
diff --git a/source/be/readlicense_oo/docs.po b/source/be/readlicense_oo/docs.po
index 81293bffc4a..387f97c48ea 100644
--- a/source/be/readlicense_oo/docs.po
+++ b/source/be/readlicense_oo/docs.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: docs\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-04-17 15:54+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2017-12-10 14:48+0000\n"
"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: <en@li.org>\n"
@@ -120,8 +120,8 @@ msgctxt ""
"readme.xrm\n"
"macxiOSX\n"
"readmeitem.text"
-msgid "MacOSX 10.8 (Mountain Lion) or higher"
-msgstr "MacOSX 10.8 (Mountain Lion) або вышэй"
+msgid "MacOSX 10.9 (Mavericks) or higher"
+msgstr ""
#: readme.xrm
msgctxt ""
diff --git a/source/be/sc/messages.po b/source/be/sc/messages.po
index 569b026d609..2010671a25f 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-12 14:40+0200\n"
"PO-Revision-Date: 2018-01-16 17:08+0000\n"
"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1864,16 +1864,21 @@ msgid "Nested arrays are not supported."
msgstr "Не падтрымліваюцца ўкладзеныя масівы."
#: sc/inc/globstr.hrc:390
+msgctxt "STR_ERR_LONG_BAD_ARRAY_CONTENT"
+msgid "Unsupported inline array content."
+msgstr ""
+
+#: sc/inc/globstr.hrc:391
msgctxt "STR_UNDO_TEXTTOCOLUMNS"
msgid "Text to Columns"
msgstr "Тэкст у калонкі"
-#: sc/inc/globstr.hrc:391
+#: sc/inc/globstr.hrc:392
msgctxt "STR_DOC_UPDATED"
msgid "Your spreadsheet has been updated with changes saved by other users."
msgstr "Ваш разліковы аркуш быў абноўлены запісамі, якія зрабілі іншыя карыстальнікі."
-#: sc/inc/globstr.hrc:392
+#: sc/inc/globstr.hrc:393
msgctxt "STR_DOC_WILLBESAVED"
msgid ""
"The spreadsheet must be saved now to activate sharing mode.\n"
@@ -1884,7 +1889,7 @@ msgstr ""
"\n"
"Do you want to continue?"
-#: sc/inc/globstr.hrc:393
+#: sc/inc/globstr.hrc:394
msgctxt "STR_DOC_WILLNOTBESAVED"
msgid ""
"Already resolved merge conflicts will be lost and your changes to the shared spreadsheet will not be saved.\n"
@@ -1895,7 +1900,7 @@ msgstr ""
"\n"
"Працягваць?"
-#: sc/inc/globstr.hrc:394
+#: sc/inc/globstr.hrc:395
msgctxt "STR_DOC_DISABLESHARED"
msgid ""
"Disabling shared mode of a spreadsheet hinders all other users of the shared spreadsheet to merge back their work.\n"
@@ -1906,7 +1911,7 @@ msgstr ""
"\n"
"Do you want to continue?"
-#: sc/inc/globstr.hrc:395
+#: sc/inc/globstr.hrc:396
msgctxt "STR_DOC_NOLONGERSHARED"
msgid ""
"This spreadsheet is no longer in shared mode.\n"
@@ -1917,7 +1922,7 @@ msgstr ""
"\n"
"Запішыце свой разліковы аркуш у іншы файл і аб'яднайце свае змены ў супольным аркушы ўручную."
-#: sc/inc/globstr.hrc:396
+#: sc/inc/globstr.hrc:397
#, fuzzy
msgctxt "STR_FILE_LOCKED_TRY_LATER"
msgid ""
@@ -1929,7 +1934,7 @@ msgstr ""
"\n"
"Sharing mode of a locked file cannot be disabled. Try again later."
-#: sc/inc/globstr.hrc:397
+#: sc/inc/globstr.hrc:398
#, fuzzy
msgctxt "STR_FILE_LOCKED_SAVE_LATER"
msgid ""
@@ -1941,148 +1946,148 @@ msgstr ""
"\n"
"Try again later to save your changes."
-#: sc/inc/globstr.hrc:398
+#: sc/inc/globstr.hrc:399
msgctxt "STR_UNKNOWN_USER"
msgid "Unknown User"
msgstr "Невядомы карыстальнік"
-#: sc/inc/globstr.hrc:399
+#: sc/inc/globstr.hrc:400
#, fuzzy
msgctxt "STR_SHAPE_AUTOSHAPE"
msgid "AutoShape"
msgstr "AutoShape"
-#: sc/inc/globstr.hrc:400
+#: sc/inc/globstr.hrc:401
msgctxt "STR_SHAPE_RECTANGLE"
msgid "Rectangle"
msgstr "Прамавугольнік"
-#: sc/inc/globstr.hrc:401
+#: sc/inc/globstr.hrc:402
msgctxt "STR_SHAPE_LINE"
msgid "Line"
msgstr "Лінія"
-#: sc/inc/globstr.hrc:402
+#: sc/inc/globstr.hrc:403
msgctxt "STR_SHAPE_OVAL"
msgid "Oval"
msgstr "Авал"
-#: sc/inc/globstr.hrc:403
+#: sc/inc/globstr.hrc:404
msgctxt "STR_FORM_BUTTON"
msgid "Button"
msgstr "Кнопка"
-#: sc/inc/globstr.hrc:404
+#: sc/inc/globstr.hrc:405
msgctxt "STR_FORM_CHECKBOX"
msgid "Check Box"
msgstr "Так-бокс"
-#: sc/inc/globstr.hrc:405
+#: sc/inc/globstr.hrc:406
msgctxt "STR_FORM_OPTIONBUTTON"
msgid "Option Button"
msgstr "Радыё-кнопка"
-#: sc/inc/globstr.hrc:406
+#: sc/inc/globstr.hrc:407
msgctxt "STR_FORM_LABEL"
msgid "Label"
msgstr "Метка"
-#: sc/inc/globstr.hrc:407
+#: sc/inc/globstr.hrc:408
msgctxt "STR_FORM_LISTBOX"
msgid "List Box"
msgstr "Спісавы бокс"
-#: sc/inc/globstr.hrc:408
+#: sc/inc/globstr.hrc:409
msgctxt "STR_FORM_GROUPBOX"
msgid "Group Box"
msgstr "Групавая рамка"
-#: sc/inc/globstr.hrc:409
+#: sc/inc/globstr.hrc:410
msgctxt "STR_FORM_DROPDOWN"
msgid "Drop Down"
msgstr "Выпадальнік"
-#: sc/inc/globstr.hrc:410
+#: sc/inc/globstr.hrc:411
msgctxt "STR_FORM_SPINNER"
msgid "Spinner"
msgstr "Вярчальнік"
-#: sc/inc/globstr.hrc:411
+#: sc/inc/globstr.hrc:412
msgctxt "STR_FORM_SCROLLBAR"
msgid "Scroll Bar"
msgstr "Стужка пракруткі"
-#: sc/inc/globstr.hrc:412
+#: sc/inc/globstr.hrc:413
msgctxt "STR_STYLE_FAMILY_CELL"
msgid "Cell Styles"
msgstr "Стылі клетак"
-#: sc/inc/globstr.hrc:413
+#: sc/inc/globstr.hrc:414
msgctxt "STR_STYLE_FAMILY_PAGE"
msgid "Page Styles"
msgstr "Стылі старонак"
-#: sc/inc/globstr.hrc:414
+#: sc/inc/globstr.hrc:415
msgctxt "STR_ERR_DATAPILOTSOURCE"
msgid "Pivot table source data is invalid."
msgstr "Недапушчальныя даныя ў крыніцы зводкавай табліцы."
-#: sc/inc/globstr.hrc:415
+#: sc/inc/globstr.hrc:416
msgctxt "STR_OPTIONS_WARN_SEPARATORS"
msgid "Because the current formula separator settings conflict with the locale, the formula separators have been reset to their default values."
msgstr "Because the current formula separator settings conflict with the locale, the formula separators have been reset to their default values."
-#: sc/inc/globstr.hrc:416
+#: sc/inc/globstr.hrc:417
msgctxt "STR_UNDO_INSERT_CURRENT_DATE"
msgid "Insert Current Date"
msgstr "Уставіць актуальную дату"
-#: sc/inc/globstr.hrc:417
+#: sc/inc/globstr.hrc:418
msgctxt "STR_UNDO_INSERT_CURRENT_TIME"
msgid "Insert Current Time"
msgstr "Уставіць актуальны час"
-#: sc/inc/globstr.hrc:418
+#: sc/inc/globstr.hrc:419
msgctxt "STR_MANAGE_NAMES"
msgid "Manage Names..."
msgstr "Арганізаваць назвы..."
-#: sc/inc/globstr.hrc:419
+#: sc/inc/globstr.hrc:420
msgctxt "STR_HEADER_NAME"
msgid "Name"
msgstr "Назва"
-#: sc/inc/globstr.hrc:420
+#: sc/inc/globstr.hrc:421
msgctxt "STR_HEADER_RANGE_OR_EXPR"
msgid "Range or formula expression"
msgstr "Дыяпазон або формульны выраз"
-#: sc/inc/globstr.hrc:421
+#: sc/inc/globstr.hrc:422
msgctxt "STR_HEADER_SCOPE"
msgid "Scope"
msgstr "Абсяг бачнасці"
-#: sc/inc/globstr.hrc:422
+#: sc/inc/globstr.hrc:423
msgctxt "STR_MULTI_SELECT"
msgid "(multiple)"
msgstr "(шматразова)"
-#: sc/inc/globstr.hrc:423
+#: sc/inc/globstr.hrc:424
msgctxt "STR_GLOBAL_SCOPE"
msgid "Document (Global)"
msgstr "Дакумент (глабальна)"
-#: sc/inc/globstr.hrc:424
+#: sc/inc/globstr.hrc:425
msgctxt "STR_ERR_NAME_EXISTS"
msgid "Invalid name. Already in use for the selected scope."
msgstr "Недапушчальная назва. Ужо выкарыстана ў выбраным абсягу бачнасці."
-#: sc/inc/globstr.hrc:425
+#: sc/inc/globstr.hrc:426
msgctxt "STR_ERR_NAME_INVALID"
msgid "Invalid name. Only use letters, numbers and underscore."
msgstr "Недапушчальная назва. Дазваляюцца толькі літары, лічбы і падкрэсліванне."
-#: sc/inc/globstr.hrc:426
+#: sc/inc/globstr.hrc:427
msgctxt "STR_UNSAVED_EXT_REF"
msgid ""
"This Document contains external references to unsaved documents.\n"
@@ -2093,229 +2098,229 @@ msgstr ""
"\n"
"Ці трэба працягваць?"
-#: sc/inc/globstr.hrc:427
+#: sc/inc/globstr.hrc:428
msgctxt "STR_CLOSE_WITH_UNSAVED_REFS"
msgid "This Document is referenced by another document and not yet saved. Closing it without saving will result in data loss."
msgstr "На гэты незапісаны дакумент спасылаюцца іншыя дакументы. Закрыўшы яго без запісу, можна страціць даныя."
-#: sc/inc/globstr.hrc:428
+#: sc/inc/globstr.hrc:429
msgctxt "STR_HEADER_RANGE"
msgid "Range"
msgstr "Дыяпазон"
-#: sc/inc/globstr.hrc:429
+#: sc/inc/globstr.hrc:430
msgctxt "STR_HEADER_COND"
msgid "First Condition"
msgstr "Першая ўмова"
-#: sc/inc/globstr.hrc:430
+#: sc/inc/globstr.hrc:431
msgctxt "STR_COND_CONDITION"
msgid "Cell value is"
msgstr "Значэнне клеткі"
-#: sc/inc/globstr.hrc:431
+#: sc/inc/globstr.hrc:432
msgctxt "STR_COND_COLORSCALE"
msgid "ColorScale"
msgstr "ШкалаКолераў"
-#: sc/inc/globstr.hrc:432
+#: sc/inc/globstr.hrc:433
#, fuzzy
msgctxt "STR_COND_DATABAR"
msgid "DataBar"
msgstr "Даныя Брусок"
-#: sc/inc/globstr.hrc:433
+#: sc/inc/globstr.hrc:434
#, fuzzy
msgctxt "STR_COND_ICONSET"
msgid "IconSet"
msgstr "Мноства"
-#: sc/inc/globstr.hrc:434
+#: sc/inc/globstr.hrc:435
msgctxt "STR_COND_BETWEEN"
msgid "between"
msgstr "паміж"
-#: sc/inc/globstr.hrc:435
+#: sc/inc/globstr.hrc:436
msgctxt "STR_COND_NOTBETWEEN"
msgid "not between"
msgstr "па-за"
-#: sc/inc/globstr.hrc:436
+#: sc/inc/globstr.hrc:437
msgctxt "STR_COND_UNIQUE"
msgid "unique"
msgstr "унікальнае"
-#: sc/inc/globstr.hrc:437
+#: sc/inc/globstr.hrc:438
msgctxt "STR_COND_DUPLICATE"
msgid "duplicate"
msgstr "дублікат"
-#: sc/inc/globstr.hrc:438
+#: sc/inc/globstr.hrc:439
msgctxt "STR_COND_FORMULA"
msgid "Formula is"
msgstr "Формула"
-#: sc/inc/globstr.hrc:439
+#: sc/inc/globstr.hrc:440
#, fuzzy
msgctxt "STR_COND_TOP10"
msgid "Top Elements"
msgstr "Зверху Элементы"
-#: sc/inc/globstr.hrc:440
+#: sc/inc/globstr.hrc:441
#, fuzzy
msgctxt "STR_COND_BOTTOM10"
msgid "Bottom Elements"
msgstr "Знізу Элементы"
-#: sc/inc/globstr.hrc:441
+#: sc/inc/globstr.hrc:442
#, fuzzy
msgctxt "STR_COND_TOP_PERCENT"
msgid "Top Percent"
msgstr "Зверху Працэнт"
-#: sc/inc/globstr.hrc:442
+#: sc/inc/globstr.hrc:443
msgctxt "STR_COND_DATE"
msgid "Date is"
msgstr "Дата"
-#: sc/inc/globstr.hrc:443
+#: sc/inc/globstr.hrc:444
#, fuzzy
msgctxt "STR_COND_BOTTOM_PERCENT"
msgid "Bottom Percent"
msgstr "Знізу Працэнт"
-#: sc/inc/globstr.hrc:444
+#: sc/inc/globstr.hrc:445
#, fuzzy
msgctxt "STR_COND_ABOVE_AVERAGE"
msgid "Above Average"
msgstr "Над Сярэдняе"
-#: sc/inc/globstr.hrc:445
+#: sc/inc/globstr.hrc:446
#, fuzzy
msgctxt "STR_COND_BELOW_AVERAGE"
msgid "Below Average"
msgstr "Пад Сярэдняе"
-#: sc/inc/globstr.hrc:446
+#: sc/inc/globstr.hrc:447
#, fuzzy
msgctxt "STR_COND_ABOVE_EQUAL_AVERAGE"
msgid "Above or equal Average"
msgstr "Над or роўна Сярэдняе"
-#: sc/inc/globstr.hrc:447
+#: sc/inc/globstr.hrc:448
#, fuzzy
msgctxt "STR_COND_BELOW_EQUAL_AVERAGE"
msgid "Below or equal Average"
msgstr "Пад or роўна Сярэдняе"
-#: sc/inc/globstr.hrc:448
+#: sc/inc/globstr.hrc:449
#, fuzzy
msgctxt "STR_COND_ERROR"
msgid "an Error code"
msgstr "Памылка"
-#: sc/inc/globstr.hrc:449
+#: sc/inc/globstr.hrc:450
#, fuzzy
msgctxt "STR_COND_NOERROR"
msgid "not an Error code"
msgstr "Памылка"
-#: sc/inc/globstr.hrc:450
+#: sc/inc/globstr.hrc:451
msgctxt "STR_COND_BEGINS_WITH"
msgid "Begins with"
msgstr "Пачынаецца на"
-#: sc/inc/globstr.hrc:451
+#: sc/inc/globstr.hrc:452
msgctxt "STR_COND_ENDS_WITH"
msgid "Ends with"
msgstr "Канчаецца на"
-#: sc/inc/globstr.hrc:452
+#: sc/inc/globstr.hrc:453
msgctxt "STR_COND_CONTAINS"
msgid "Contains"
msgstr "Утрымлівае"
-#: sc/inc/globstr.hrc:453
+#: sc/inc/globstr.hrc:454
msgctxt "STR_COND_NOT_CONTAINS"
msgid "Not Contains"
msgstr "Не ўтрымлівае"
-#: sc/inc/globstr.hrc:454
+#: sc/inc/globstr.hrc:455
msgctxt "STR_COND_TODAY"
msgid "today"
msgstr "сёння"
-#: sc/inc/globstr.hrc:455
+#: sc/inc/globstr.hrc:456
msgctxt "STR_COND_YESTERDAY"
msgid "yesterday"
msgstr "учора"
-#: sc/inc/globstr.hrc:456
+#: sc/inc/globstr.hrc:457
msgctxt "STR_COND_TOMORROW"
msgid "tomorrow"
msgstr "заўтра"
-#: sc/inc/globstr.hrc:457
+#: sc/inc/globstr.hrc:458
msgctxt "STR_COND_LAST7DAYS"
msgid "in the last 7 days"
msgstr "за апошнія 7 дзён"
-#: sc/inc/globstr.hrc:458
+#: sc/inc/globstr.hrc:459
msgctxt "STR_COND_THISWEEK"
msgid "this week"
msgstr "гэты тыдзень"
-#: sc/inc/globstr.hrc:459
+#: sc/inc/globstr.hrc:460
msgctxt "STR_COND_LASTWEEK"
msgid "last week"
msgstr "мінулы тыдзень"
-#: sc/inc/globstr.hrc:460
+#: sc/inc/globstr.hrc:461
msgctxt "STR_COND_NEXTWEEK"
msgid "next week"
msgstr "наступны тыдзень"
-#: sc/inc/globstr.hrc:461
+#: sc/inc/globstr.hrc:462
msgctxt "STR_COND_THISMONTH"
msgid "this month"
msgstr "гэты месяц"
-#: sc/inc/globstr.hrc:462
+#: sc/inc/globstr.hrc:463
msgctxt "STR_COND_LASTMONTH"
msgid "last month"
msgstr "мінулы месяц"
-#: sc/inc/globstr.hrc:463
+#: sc/inc/globstr.hrc:464
msgctxt "STR_COND_NEXTMONTH"
msgid "next month"
msgstr "наступны месяц"
-#: sc/inc/globstr.hrc:464
+#: sc/inc/globstr.hrc:465
msgctxt "STR_COND_THISYEAR"
msgid "this year"
msgstr "гэты год"
-#: sc/inc/globstr.hrc:465
+#: sc/inc/globstr.hrc:466
msgctxt "STR_COND_LASTYEAR"
msgid "last year"
msgstr "мінулы год"
-#: sc/inc/globstr.hrc:466
+#: sc/inc/globstr.hrc:467
msgctxt "STR_COND_NEXTYEAR"
msgid "next year"
msgstr "наступны год"
-#: sc/inc/globstr.hrc:467
+#: sc/inc/globstr.hrc:468
msgctxt "STR_COND_AND"
msgid "and"
msgstr "і"
-#: sc/inc/globstr.hrc:468
+#: sc/inc/globstr.hrc:469
msgctxt "STR_ERR_CONDFORMAT_PROTECTED"
msgid "Conditional Formats can not be created, deleted or changed in protected sheets."
msgstr ""
-#: sc/inc/globstr.hrc:469
+#: sc/inc/globstr.hrc:470
msgctxt "STR_EDIT_EXISTING_COND_FORMATS"
msgid ""
"The selected cell already contains conditional formatting. You can either edit the existing conditional format or you define a new overlapping conditional format.\n"
@@ -2326,7 +2331,7 @@ msgstr ""
"\n"
" Будзеце рэдагаваць наяўны ўмоўны фармат?"
-#: sc/inc/globstr.hrc:470
+#: sc/inc/globstr.hrc:471
msgctxt "STR_QUERY_FORMULA_RECALC_ONLOAD_ODS"
msgid ""
"This document was last saved by an application other than %PRODUCTNAME. Some formula cells may produce different results when recalculated.\n"
@@ -2337,7 +2342,7 @@ msgstr ""
"\n"
"Хочаце пераразлічыць усе формулы ў дакуменце зараз?"
-#: sc/inc/globstr.hrc:471
+#: sc/inc/globstr.hrc:472
msgctxt "STR_QUERY_FORMULA_RECALC_ONLOAD_XLS"
msgid ""
"This document was last saved by Excel. Some formula cells may produce different results when recalculated.\n"
@@ -2348,78 +2353,78 @@ msgstr ""
"\n"
"Пераразлічыць усе формулы?"
-#: sc/inc/globstr.hrc:472
+#: sc/inc/globstr.hrc:473
#, fuzzy
msgctxt "STR_NO_INSERT_DELETE_OVER_PIVOT_TABLE"
msgid "You cannot insert or delete cells when the affected range intersects with pivot table."
msgstr "or range з."
-#: sc/inc/globstr.hrc:473
+#: sc/inc/globstr.hrc:474
msgctxt "STR_DPFIELD_GROUP_BY_SECONDS"
msgid "Seconds"
msgstr "Секунды"
-#: sc/inc/globstr.hrc:474
+#: sc/inc/globstr.hrc:475
msgctxt "STR_DPFIELD_GROUP_BY_MINUTES"
msgid "Minutes"
msgstr "Мінуты"
-#: sc/inc/globstr.hrc:475
+#: sc/inc/globstr.hrc:476
msgctxt "STR_DPFIELD_GROUP_BY_HOURS"
msgid "Hours"
msgstr "Гадзіны"
-#: sc/inc/globstr.hrc:476
+#: sc/inc/globstr.hrc:477
msgctxt "STR_DPFIELD_GROUP_BY_DAYS"
msgid "Days"
msgstr "Дні"
-#: sc/inc/globstr.hrc:477
+#: sc/inc/globstr.hrc:478
msgctxt "STR_DPFIELD_GROUP_BY_MONTHS"
msgid "Months"
msgstr "Месяцы"
-#: sc/inc/globstr.hrc:478
+#: sc/inc/globstr.hrc:479
msgctxt "STR_DPFIELD_GROUP_BY_QUARTERS"
msgid "Quarters"
msgstr "Кварталы"
-#: sc/inc/globstr.hrc:479
+#: sc/inc/globstr.hrc:480
msgctxt "STR_DPFIELD_GROUP_BY_YEARS"
msgid "Years"
msgstr "Гады"
-#: sc/inc/globstr.hrc:480
+#: sc/inc/globstr.hrc:481
msgctxt "STR_INVALIDVAL"
msgid "Invalid target value."
msgstr "Недапушчальнае мэтавае значэнне."
-#: sc/inc/globstr.hrc:481
+#: sc/inc/globstr.hrc:482
msgctxt "STR_INVALIDVAR"
msgid "Undefined name for variable cell."
msgstr "Нявызначаная назва клеткі з зменнай."
-#: sc/inc/globstr.hrc:482
+#: sc/inc/globstr.hrc:483
msgctxt "STR_INVALIDFORM"
msgid "Undefined name as formula cell."
msgstr "Нявызначаная назва клеткі з формулай."
-#: sc/inc/globstr.hrc:483
+#: sc/inc/globstr.hrc:484
msgctxt "STR_NOFORMULA"
msgid "Formula cell must contain a formula."
msgstr "Формульная клетка мусіць утрымліваць формулу."
-#: sc/inc/globstr.hrc:484
+#: sc/inc/globstr.hrc:485
msgctxt "STR_INVALIDINPUT"
msgid "Invalid input."
msgstr "Недапушчальны ўвод."
-#: sc/inc/globstr.hrc:485
+#: sc/inc/globstr.hrc:486
msgctxt "STR_INVALIDCONDITION"
msgid "Invalid condition."
msgstr "Недапушчальная ўмова."
-#: sc/inc/globstr.hrc:486
+#: sc/inc/globstr.hrc:487
msgctxt "STR_QUERYREMOVE"
msgid ""
"Should the entry\n"
@@ -2430,133 +2435,133 @@ msgstr ""
"#\n"
"складнік?"
-#: sc/inc/globstr.hrc:487
+#: sc/inc/globstr.hrc:488
msgctxt "STR_COPYLIST"
msgid "Copy List"
msgstr "Капіраваць спіс"
-#: sc/inc/globstr.hrc:488
+#: sc/inc/globstr.hrc:489
msgctxt "STR_COPYFROM"
msgid "List from"
msgstr "Спіс з"
-#: sc/inc/globstr.hrc:489
+#: sc/inc/globstr.hrc:490
msgctxt "STR_COPYERR"
msgid "Cells without text have been ignored."
msgstr "Клеткі без тэксту былі ігнараваны."
-#: sc/inc/globstr.hrc:490
+#: sc/inc/globstr.hrc:491
#, c-format
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%s-click to follow hyperlink:"
msgstr "%s-клік, каб перайсці па спасылцы:"
-#: sc/inc/globstr.hrc:491
+#: sc/inc/globstr.hrc:492
msgctxt "STR_CLICKHYPERLINK"
msgid "click to open hyperlink:"
msgstr "клікніце, каб адкрыць гіперспасылку:"
-#: sc/inc/globstr.hrc:492
+#: sc/inc/globstr.hrc:493
msgctxt "STR_PRINT_PREVIEW_NODATA"
msgid "No Data"
msgstr "Няма даных"
-#: sc/inc/globstr.hrc:493
+#: sc/inc/globstr.hrc:494
msgctxt "STR_PRINT_PREVIEW_EMPTY_RANGE"
msgid "Print Range Empty"
msgstr "Абсяг друку пусты"
-#: sc/inc/globstr.hrc:494
+#: sc/inc/globstr.hrc:495
msgctxt "STR_UNDO_CONDFORMAT"
msgid "Conditional Format"
msgstr "Умоўны фармат"
-#: sc/inc/globstr.hrc:495
+#: sc/inc/globstr.hrc:496
msgctxt "STR_UNDO_CONDFORMAT_LIST"
msgid "Conditional Formats"
msgstr "Умоўныя фарматы"
-#: sc/inc/globstr.hrc:496
+#: sc/inc/globstr.hrc:497
msgctxt "STR_UNDO_FORMULA_TO_VALUE"
msgid "Convert Formula To Value"
msgstr "Ператварыць формулу ў значэнне"
-#: sc/inc/globstr.hrc:497
+#: sc/inc/globstr.hrc:498
msgctxt "STR_UNQUOTED_STRING"
msgid "Strings without quotes are interpreted as column/row labels."
msgstr "Радкі без двукоссяў інтэрпрэтуюцца як подпісы калонак/радкоў."
-#: sc/inc/globstr.hrc:498
+#: sc/inc/globstr.hrc:499
msgctxt "STR_ENTER_VALUE"
msgid "Enter a value!"
msgstr "Увядзіце значэнне!"
-#: sc/inc/globstr.hrc:499
+#: sc/inc/globstr.hrc:500
msgctxt "STR_TABLE_COUNT"
msgid "Sheet %1 of %2"
msgstr "Аркуш %1 з %2"
-#: sc/inc/globstr.hrc:500
+#: sc/inc/globstr.hrc:501
msgctxt "STR_FUNCTIONS_FOUND"
msgid "%1 and %2 more"
msgstr "%1 і яшчэ %2"
-#: sc/inc/globstr.hrc:501
+#: sc/inc/globstr.hrc:502
msgctxt "STR_GENERAL"
msgid "General"
msgstr "Агульныя"
-#: sc/inc/globstr.hrc:502
+#: sc/inc/globstr.hrc:503
msgctxt "STR_NUMBER"
msgid "Number"
msgstr "Лік"
-#: sc/inc/globstr.hrc:503
+#: sc/inc/globstr.hrc:504
msgctxt "STR_PERCENT"
msgid "Percent"
msgstr "Працэнт"
-#: sc/inc/globstr.hrc:504
+#: sc/inc/globstr.hrc:505
msgctxt "STR_CURRENCY"
msgid "Currency"
msgstr "Валюта"
-#: sc/inc/globstr.hrc:505
+#: sc/inc/globstr.hrc:506
msgctxt "STR_DATE"
msgid "Date"
msgstr "Дата"
-#: sc/inc/globstr.hrc:506
+#: sc/inc/globstr.hrc:507
msgctxt "STR_TIME"
msgid "Time"
msgstr "Час"
-#: sc/inc/globstr.hrc:507
+#: sc/inc/globstr.hrc:508
msgctxt "STR_SCIENTIFIC"
msgid "Scientific"
msgstr "Навуковы"
-#: sc/inc/globstr.hrc:508
+#: sc/inc/globstr.hrc:509
msgctxt "STR_FRACTION"
msgid "Fraction"
msgstr "Дроб"
-#: sc/inc/globstr.hrc:509
+#: sc/inc/globstr.hrc:510
msgctxt "STR_BOOLEAN_VALUE"
msgid "Boolean Value"
msgstr "Булева значэнне"
-#: sc/inc/globstr.hrc:510
+#: sc/inc/globstr.hrc:511
msgctxt "STR_TEXT"
msgid "Text"
msgstr "Тэкст"
-#: sc/inc/globstr.hrc:511
+#: sc/inc/globstr.hrc:512
msgctxt "STR_QUERY_PIVOTTABLE_DELTAB"
msgid "The selected sheet(s) contain source data of related pivot tables that will be lost. Are you sure you want to delete the selected sheet(s)?"
msgstr ""
-#: sc/inc/globstr.hrc:512
+#: sc/inc/globstr.hrc:513
msgctxt "STR_ERR_NAME_INVALID_CELL_REF"
msgid "Invalid name. Reference to a cell, or a range of cells not allowed."
msgstr "Недапушчальная назва. Спасылкі на клетку або абсяг клетак не дазваляюцца."
@@ -10764,8 +10769,8 @@ msgstr "Рэжым"
#: sc/inc/scfuncs.hrc:3010
msgctxt "SC_OPCODE_T_TEST"
-msgid "Mode specifies the number of distribution tails to return. 1= one-tailed, 2 = two-tailed distribution"
-msgstr "Лад вызначае колькасць вяртаных кірункаў размеркавання, 1 = адзін, 2 = двукірункавае размеркаванне"
+msgid "Mode specifies the number of distribution tails to return. 1 = one-tailed, 2 = two-tailed distribution"
+msgstr ""
#: sc/inc/scfuncs.hrc:3011
msgctxt "SC_OPCODE_T_TEST"
@@ -10812,8 +10817,8 @@ msgstr "Рэжым"
#: sc/inc/scfuncs.hrc:3024
msgctxt "SC_OPCODE_T_TEST_MS"
-msgid "Mode specifies the number of distribution tails to return. 1= one-tailed, 2 = two-tailed distribution"
-msgstr "Лад вызначае колькасць вяртаных кірункаў размеркавання, 1 = адзін, 2 = двукірункавае размеркаванне"
+msgid "Mode specifies the number of distribution tails to return. 1 = one-tailed, 2 = two-tailed distribution"
+msgstr ""
#: sc/inc/scfuncs.hrc:3025
msgctxt "SC_OPCODE_T_TEST_MS"
@@ -18595,22 +18600,22 @@ msgctxt "mergecellsdialog|MergeCellsDialog"
msgid "Merge Cells"
msgstr "Аб'яднаць клеткі"
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:81
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:84
msgctxt "mergecellsdialog|label"
msgid "Some cells are not empty."
msgstr "Некаторыя клеткі не пустыя."
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:96
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:99
msgctxt "mergecellsdialog|move-cells-radio"
msgid "Move the contents of the hidden cells into the first cell"
msgstr "Перанесці змесціва нябачных клетак у першую клетку"
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:112
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:115
msgctxt "mergecellsdialog|empty-cells-radio"
msgid "Empty the contents of the hidden cells"
msgstr "Ачысціць змесціва нябачных клетак"
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:128
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:131
msgctxt "mergecellsdialog|keep-content-radio"
msgid "Keep the contents of the hidden cells"
msgstr "Запісаць змест нябачных клетак"
diff --git a/source/be/sd/messages.po b/source/be/sd/messages.po
index 63a063a6f38..01f93ddf91a 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2017-12-23 20:29+0000\n"
"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -16,167 +16,167 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1514060971.000000\n"
-#: sd/inc/DocumentRenderer.hrc:29
+#: sd/inc/DocumentRenderer.hrc:27
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Slides"
msgstr "Слайды"
-#: sd/inc/DocumentRenderer.hrc:30
+#: sd/inc/DocumentRenderer.hrc:28
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Handouts"
msgstr "Раздаткі"
-#: sd/inc/DocumentRenderer.hrc:31
+#: sd/inc/DocumentRenderer.hrc:29
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Notes"
msgstr "Заўвагі"
-#: sd/inc/DocumentRenderer.hrc:32
+#: sd/inc/DocumentRenderer.hrc:30
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Outline"
msgstr "Контур"
-#: sd/inc/DocumentRenderer.hrc:37
+#: sd/inc/DocumentRenderer.hrc:35
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "According to layout"
msgstr "Згодна з выкладам"
-#: sd/inc/DocumentRenderer.hrc:38
+#: sd/inc/DocumentRenderer.hrc:36
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "1"
msgstr "1"
-#: sd/inc/DocumentRenderer.hrc:39
+#: sd/inc/DocumentRenderer.hrc:37
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "2"
msgstr "2"
-#: sd/inc/DocumentRenderer.hrc:40
+#: sd/inc/DocumentRenderer.hrc:38
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "3"
msgstr "3"
-#: sd/inc/DocumentRenderer.hrc:41
+#: sd/inc/DocumentRenderer.hrc:39
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "4"
msgstr "4"
-#: sd/inc/DocumentRenderer.hrc:42
+#: sd/inc/DocumentRenderer.hrc:40
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "6"
msgstr "6"
-#: sd/inc/DocumentRenderer.hrc:43
+#: sd/inc/DocumentRenderer.hrc:41
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "9"
msgstr "9"
-#: sd/inc/DocumentRenderer.hrc:48
+#: sd/inc/DocumentRenderer.hrc:46
msgctxt "STR_IMPRESS_PRINT_UI_ORDER_CHOICES"
msgid "Left to right, then down"
msgstr "Злева направа, затым уніз"
-#: sd/inc/DocumentRenderer.hrc:49
+#: sd/inc/DocumentRenderer.hrc:47
msgctxt "STR_IMPRESS_PRINT_UI_ORDER_CHOICES"
msgid "Top to bottom, then right"
msgstr "Зверху ўніз, затым направа"
-#: sd/inc/DocumentRenderer.hrc:54
+#: sd/inc/DocumentRenderer.hrc:52
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Original colors"
msgstr "Пачатковыя колеры"
-#: sd/inc/DocumentRenderer.hrc:55
+#: sd/inc/DocumentRenderer.hrc:53
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Grayscale"
msgstr "Шэрыя адценні"
-#: sd/inc/DocumentRenderer.hrc:56
+#: sd/inc/DocumentRenderer.hrc:54
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Black & white"
msgstr "Чорна-белы"
-#: sd/inc/DocumentRenderer.hrc:61
+#: sd/inc/DocumentRenderer.hrc:59
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Original size"
msgstr "Пачатковы памер"
-#: sd/inc/DocumentRenderer.hrc:62
+#: sd/inc/DocumentRenderer.hrc:60
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Fit to printable page"
msgstr "Умяшчаць на друкавальны аркуш"
-#: sd/inc/DocumentRenderer.hrc:63
+#: sd/inc/DocumentRenderer.hrc:61
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Distribute on multiple sheets of paper"
msgstr "Размеркаваць на некалькі аркушаў"
-#: sd/inc/DocumentRenderer.hrc:64
+#: sd/inc/DocumentRenderer.hrc:62
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Tile sheet of paper with repeated slides"
msgstr "Запоўніць аркуш паўторамі слайдаў"
-#: sd/inc/DocumentRenderer.hrc:69
+#: sd/inc/DocumentRenderer.hrc:67
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Original size"
msgstr "Пачатковы памер"
-#: sd/inc/DocumentRenderer.hrc:70
+#: sd/inc/DocumentRenderer.hrc:68
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Fit to printable page"
msgstr "Умясціць на друкавальны аркуш"
-#: sd/inc/DocumentRenderer.hrc:71
+#: sd/inc/DocumentRenderer.hrc:69
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Distribute on multiple sheets of paper"
msgstr "Размеркаваць на некалькі аркушаў"
-#: sd/inc/DocumentRenderer.hrc:72
+#: sd/inc/DocumentRenderer.hrc:70
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Tile sheet of paper with repeated pages"
msgstr "Запоўніць аркуш паўторамі старонак"
-#: sd/inc/DocumentRenderer.hrc:77
+#: sd/inc/DocumentRenderer.hrc:75
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "All pages"
msgstr "Усе старонкі"
-#: sd/inc/DocumentRenderer.hrc:78
+#: sd/inc/DocumentRenderer.hrc:76
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "Front sides / right pages"
msgstr "Пярэднія бакі / правыя старонкі"
-#: sd/inc/DocumentRenderer.hrc:79
+#: sd/inc/DocumentRenderer.hrc:77
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "Back sides / left pages"
msgstr "Заднія бакі / левыя старонкі"
-#: sd/inc/DocumentRenderer.hrc:84
+#: sd/inc/DocumentRenderer.hrc:82
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~All slides"
msgstr "Усе слайды"
-#: sd/inc/DocumentRenderer.hrc:85
+#: sd/inc/DocumentRenderer.hrc:83
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~Slides"
msgstr "Слайды"
-#: sd/inc/DocumentRenderer.hrc:86
+#: sd/inc/DocumentRenderer.hrc:84
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Se~lection"
msgstr "Пазначанае"
-#: sd/inc/DocumentRenderer.hrc:91
+#: sd/inc/DocumentRenderer.hrc:89
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~All pages"
msgstr "Усе старонкі"
-#: sd/inc/DocumentRenderer.hrc:92
+#: sd/inc/DocumentRenderer.hrc:90
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Pa~ges"
msgstr "Старонкі"
-#: sd/inc/DocumentRenderer.hrc:93
+#: sd/inc/DocumentRenderer.hrc:91
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Se~lection"
msgstr "Пазначанае"
diff --git a/source/be/svx/messages.po b/source/be/svx/messages.po
index a7c8a0c3d0f..aed54a18589 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: 2018-05-16 16:53+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2017-12-23 20:29+0000\n"
"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5175,8 +5175,8 @@ msgstr ""
#: svx/uiconfig/ui/safemodedialog.ui:432
msgctxt "safemodedialog|btn_create_zip"
-msgid "Create Zip Archive from User Profile"
-msgstr "Стварыць zip-архіў профілю карыстальніка"
+msgid "Archive User Profile"
+msgstr ""
#: svx/uiconfig/ui/safemodedialog.ui:445
msgctxt "safemodedialog|linkbutton_profile"
@@ -8765,9 +8765,9 @@ msgid "Red"
msgstr "Чырвоны"
#: include/svx/strings.hrc:565
-msgctxt "RID_SVXSTR_COLOR_VIOLET"
-msgid "Violet"
-msgstr "Фіялетавы"
+msgctxt "RID_SVXSTR_COLOR_MAGENTA"
+msgid "Magenta"
+msgstr "Пурпурны"
#: include/svx/strings.hrc:566
msgctxt "RID_SVXSTR_COLOR_PURPLE"
@@ -8831,9 +8831,9 @@ msgid "Light Red"
msgstr "Светла-чырвоны"
#: include/svx/strings.hrc:579
-msgctxt "RID_SVXSTR_COLOR_LIGHTVIOLET"
-msgid "Light Violet"
-msgstr "Светла-фіялетавы"
+msgctxt "RID_SVXSTR_COLOR_LIGHTMAGENTA"
+msgid "Light Magenta"
+msgstr ""
#: include/svx/strings.hrc:580
msgctxt "RID_SVXSTR_COLOR_LIGHTPURPLE"
@@ -8897,9 +8897,9 @@ msgid "Dark Red"
msgstr "Цёмна-чырвоны"
#: include/svx/strings.hrc:593
-msgctxt "RID_SVXSTR_COLOR_DARKVIOLET1"
-msgid "Dark Violet"
-msgstr "Цёмна-фіялетавы"
+msgctxt "RID_SVXSTR_COLOR_DARKMAGENTA"
+msgid "Dark Magenta"
+msgstr ""
#: include/svx/strings.hrc:594
msgctxt "RID_SVXSTR_COLOR_DARKPURPLE"
@@ -8933,55 +8933,55 @@ msgstr "Цёмны лаймавы"
#. Elements of the Tonal color palette
#: include/svx/strings.hrc:601
+msgctxt "RID_SVXSTR_COLOR_VIOLET"
+msgid "Violet"
+msgstr "Фіялетавы"
+
+#: include/svx/strings.hrc:602
msgctxt "RID_SVXSTR_COLOR_VIOLET_OUG"
msgid "Violet (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:602
+#: include/svx/strings.hrc:603
msgctxt "RID_SVXSTR_COLOR_BLUE_OUG"
msgid "Blue (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:603
+#: include/svx/strings.hrc:604
msgctxt "RID_SVXSTR_COLOR_AZURE_OUG"
msgid "Azure (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:604
+#: include/svx/strings.hrc:605
msgctxt "RID_SVXSTR_COLOR_SPRINGGREEN_OUG"
msgid "Spring Green (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:605
+#: include/svx/strings.hrc:606
msgctxt "RID_SVXSTR_COLOR_GREEN_OUG"
msgid "Green (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:606
+#: include/svx/strings.hrc:607
msgctxt "RID_SVXSTR_COLOR_CHARTREUSEGREEN_OUG"
msgid "Chartreuse Green (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:607
+#: include/svx/strings.hrc:608
msgctxt "RID_SVXSTR_COLOR_ORANGE_OUG"
msgid "Orange (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:608
+#: include/svx/strings.hrc:609
msgctxt "RID_SVXSTR_COLOR_RED_OUG"
msgid "Red (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:609
+#: include/svx/strings.hrc:610
msgctxt "RID_SVXSTR_COLOR_ROSE_OUG"
msgid "Rose (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:610
-msgctxt "RID_SVXSTR_COLOR_MAGENTA"
-msgid "Magenta"
-msgstr "Пурпурны"
-
#: include/svx/strings.hrc:611
msgctxt "RID_SVXSTR_COLOR_AZURE"
msgid "Azure"
@@ -12095,16 +12095,14 @@ msgid "Right pointing arrow bullets"
msgstr "Маркёр-стрэлка ўправа"
#: include/svx/strings.hrc:1273
-#, fuzzy
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_6"
-msgid "Check mark bullets"
-msgstr "Check mark bullets"
+msgid "Cross mark bullets"
+msgstr ""
#: include/svx/strings.hrc:1274
-#, fuzzy
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_7"
-msgid "Tick mark bullets"
-msgstr "Tick mark bullets"
+msgid "Check mark bullets"
+msgstr ""
#: include/svx/strings.hrc:1275
#, fuzzy
diff --git a/source/be/sw/messages.po b/source/be/sw/messages.po
index 99b9a5211ad..7b640b6c8e9 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: 2018-05-22 13:17+0200\n"
+"POT-Creation-Date: 2018-06-12 14:41+0200\n"
"PO-Revision-Date: 2017-12-23 20:22+0000\n"
"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1180,13 +1180,13 @@ msgstr "Цытата"
#: sw/inc/strings.hrc:172
msgctxt "STR_POOLCOLL_TOX_ILLUSH"
-msgid "Illustration Index Heading"
-msgstr "Індэкс ілюстрацый, загаловак"
+msgid "Figure Index Heading"
+msgstr ""
#: sw/inc/strings.hrc:173
msgctxt "STR_POOLCOLL_TOX_ILLUS1"
-msgid "Illustration Index 1"
-msgstr "Індэкс ілюстрацый 1"
+msgid "Figure Index 1"
+msgstr ""
#: sw/inc/strings.hrc:174
msgctxt "STR_POOLCOLL_TOX_OBJECTH"
@@ -3590,8 +3590,8 @@ msgstr "Спіс аб'ектаў"
#: sw/inc/strings.hrc:672
msgctxt "STR_TOX_ILL"
-msgid "Illustration Index"
-msgstr "Індэкс ілюстрацый"
+msgid "Table of Figures"
+msgstr ""
#: sw/inc/strings.hrc:673
#, c-format
@@ -9244,72 +9244,72 @@ msgctxt "footnotepage|label5"
msgid "Continuation Notice"
msgstr "Метка працягу"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:49
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:55
msgctxt "footnotesendnotestabpage|ftnntnum"
msgid "_Restart numbering"
msgstr "Пачаць нумараванне нанова"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:91
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:93
msgctxt "footnotesendnotestabpage|ftnoffset_label"
msgid "_Start at:"
msgstr "Пачаць ад:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:112
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:111
msgctxt "footnotesendnotestabpage|ftnntnumfmt"
msgid "Custom _format"
msgstr "Адмысловы фармат"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:155
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:150
msgctxt "footnotesendnotestabpage|ftnsuffix_label"
msgid "Aft_er:"
msgstr "Пасля:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:199
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:188
msgctxt "footnotesendnotestabpage|ftnprefix_label"
msgid "Be_fore:"
msgstr "Перад:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:228
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:212
msgctxt "footnotesendnotestabpage|ftnntattextend"
msgid "Collec_t at end of text"
msgstr "Змяшчаць у заканчэнні тэксту"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:252
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:234
msgctxt "footnotesendnotestabpage|label1"
msgid "Footnotes"
msgstr "Зноскі"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:289
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:271
msgctxt "footnotesendnotestabpage|endntattextend"
msgid "C_ollect at end of section"
msgstr "Змяшчаць у заканчэнні раздзела"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:315
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:295
msgctxt "footnotesendnotestabpage|endntnum"
msgid "_Restart numbering"
msgstr "Пачаць нумараванне нанова"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:357
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:333
msgctxt "footnotesendnotestabpage|endoffset_label"
msgid "_Start at:"
msgstr "Пачаць ад:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:378
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:351
msgctxt "footnotesendnotestabpage|endntnumfmt"
msgid "_Custom format"
msgstr "Адмысловы фармат"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:421
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:390
msgctxt "footnotesendnotestabpage|endsuffix_label"
msgid "Aft_er:"
msgstr "Пасля:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:465
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:428
msgctxt "footnotesendnotestabpage|endprefix_label"
msgid "Be_fore:"
msgstr "Пер_ад:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:500
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:458
msgctxt "footnotesendnotestabpage|label2"
msgid "Endnotes"
msgstr "Зноскі затэкставыя"
@@ -9339,27 +9339,27 @@ msgctxt "formatsectiondialog|notes"
msgid "Footnotes/Endnotes"
msgstr "Калантытулы верхнія/ніжнія"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:63
+#: sw/uiconfig/swriter/ui/formattablepage.ui:77
msgctxt "formattablepage|nameft"
msgid "_Name"
msgstr "Назва"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:79
+#: sw/uiconfig/swriter/ui/formattablepage.ui:91
msgctxt "formattablepage|widthft"
msgid "W_idth"
msgstr "Шырыня"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:110
+#: sw/uiconfig/swriter/ui/formattablepage.ui:120
msgctxt "formattablepage|relwidth"
msgid "Relati_ve"
msgstr "Адносна"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:155
+#: sw/uiconfig/swriter/ui/formattablepage.ui:160
msgctxt "formattablepage|label45"
msgid "Properties"
msgstr "Уласцівасці"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:194
+#: sw/uiconfig/swriter/ui/formattablepage.ui:195
msgctxt "formattablepage|leftft"
msgid "Lef_t"
msgstr "Злева"
@@ -9369,62 +9369,62 @@ msgctxt "formattablepage|rightft"
msgid "Ri_ght"
msgstr "Справа"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:228
+#: sw/uiconfig/swriter/ui/formattablepage.ui:226
msgctxt "formattablepage|aboveft"
msgid "_Above"
msgstr "Над"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:245
+#: sw/uiconfig/swriter/ui/formattablepage.ui:241
msgctxt "formattablepage|belowft"
msgid "_Below"
msgstr "Пад"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:320
+#: sw/uiconfig/swriter/ui/formattablepage.ui:311
msgctxt "formattablepage|label46"
msgid "Spacing"
msgstr "Інтэрвал"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:362
+#: sw/uiconfig/swriter/ui/formattablepage.ui:349
msgctxt "formattablepage|full"
msgid "A_utomatic"
msgstr "Аўтаматычна"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:380
+#: sw/uiconfig/swriter/ui/formattablepage.ui:365
msgctxt "formattablepage|left"
msgid "_Left"
msgstr "Злева"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:398
+#: sw/uiconfig/swriter/ui/formattablepage.ui:381
msgctxt "formattablepage|fromleft"
msgid "_From left"
msgstr "Ад левага краю*"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:416
+#: sw/uiconfig/swriter/ui/formattablepage.ui:397
msgctxt "formattablepage|right"
msgid "R_ight"
msgstr "Справа"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:435
+#: sw/uiconfig/swriter/ui/formattablepage.ui:413
msgctxt "formattablepage|center"
msgid "_Center"
msgstr "У цэнтры"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:453
+#: sw/uiconfig/swriter/ui/formattablepage.ui:429
msgctxt "formattablepage|free"
msgid "_Manual"
msgstr "Па-свойму"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:478
+#: sw/uiconfig/swriter/ui/formattablepage.ui:452
msgctxt "formattablepage|label43"
msgid "Alignment"
msgstr "Раўнаванне"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:522
+#: sw/uiconfig/swriter/ui/formattablepage.ui:491
msgctxt "formattablepage|label53"
msgid "Text _direction"
msgstr "Кірунак тэксту"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:553
+#: sw/uiconfig/swriter/ui/formattablepage.ui:519
msgctxt "formattablepage|label44"
msgid "Properties "
msgstr "Уласцівасці "
@@ -9779,22 +9779,27 @@ msgctxt "headerfootermenu|insert_pagenumber"
msgid "Insert Page Number"
msgstr ""
-#: sw/uiconfig/swriter/ui/indentpage.ui:52
+#: sw/uiconfig/swriter/ui/headerfootermenu.ui:42
+msgctxt "headerfootermenu|insert_pagecount"
+msgid "Insert Page Count"
+msgstr ""
+
+#: sw/uiconfig/swriter/ui/indentpage.ui:57
msgctxt "indentpage|label1"
msgid "_Before section"
msgstr "Перад раздзелам"
-#: sw/uiconfig/swriter/ui/indentpage.ui:67
+#: sw/uiconfig/swriter/ui/indentpage.ui:71
msgctxt "indentpage|label3"
msgid "_After section"
msgstr "Пасля раздзела"
-#: sw/uiconfig/swriter/ui/indentpage.ui:113
+#: sw/uiconfig/swriter/ui/indentpage.ui:115
msgctxt "indentpage|label2"
msgid "Indent"
msgstr "Водступ"
-#: sw/uiconfig/swriter/ui/indentpage.ui:142
+#: sw/uiconfig/swriter/ui/indentpage.ui:155
msgctxt "indentpage|preview-atkobject"
msgid "Example"
msgstr "Прыклад"
@@ -13285,8 +13290,8 @@ msgstr "Засцерагаць форму"
#: sw/uiconfig/swriter/ui/optcompatpage.ui:68
msgctxt "optcompatpage|format"
-msgid "MS Word-compatible trailing blanks"
-msgstr "Канцавыя прабелы сумяшчальныя з MS Word"
+msgid "Word-compatible trailing blanks"
+msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:69
msgctxt "optcompatpage|format"
@@ -13295,7 +13300,7 @@ msgstr "Дапускаць белыя лініі фону старонак PDF
#: sw/uiconfig/swriter/ui/optcompatpage.ui:70
msgctxt "optcompatpage|format"
-msgid "A database field (e.g., MailMerge) with empty value hides its paragraph"
+msgid "Hide paragraphs of database fields (e.g., mail merge) with an empty value"
msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:71
@@ -15979,122 +15984,122 @@ msgctxt "tableproperties|background"
msgid "Background"
msgstr "Фон"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:25
-msgctxt "tabletextflowpage|liststore1"
-msgid "Horizontal"
-msgstr "Гарызантальна"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:29
-msgctxt "tabletextflowpage|liststore1"
-msgid "Vertical"
-msgstr "Вертыкальна"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:33
-msgctxt "tabletextflowpage|liststore1"
-msgid "Use superordinate object settings"
-msgstr "Як у вышэйпастаўленага аб'екта"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:47
-msgctxt "tabletextflowpage|liststore2"
-msgid "Top"
-msgstr "Зверху"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:51
-msgctxt "tabletextflowpage|liststore2"
-msgid "Centered"
-msgstr "У цэнтры"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:55
-msgctxt "tabletextflowpage|liststore2"
-msgid "Bottom"
-msgstr "Знізу"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:97
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:53
msgctxt "tabletextflowpage|break"
msgid "_Break"
msgstr "Разрыў"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:112
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:68
msgctxt "tabletextflowpage|page"
msgid "_Page"
msgstr "Старонка"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:132
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:87
msgctxt "tabletextflowpage|column"
msgid "Col_umn"
msgstr "Калонка"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:151
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:106
msgctxt "tabletextflowpage|before"
msgid "Be_fore"
msgstr "Перад"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:171
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:125
msgctxt "tabletextflowpage|after"
msgid "_After"
msgstr "Пасля"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:203
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:158
msgctxt "tabletextflowpage|pagestyle"
msgid "With Page St_yle"
msgstr "Са стылем старонкі"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:224
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:177
msgctxt "tabletextflowpage|pagenoft"
msgid "Page _number"
msgstr "Нумар старонкі"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:257
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:213
msgctxt "tabletextflowpage|pagestylelb-atkobject"
msgid "With Page Style"
msgstr "Са стылем старонкі"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:274
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:230
msgctxt "tabletextflowpage|split"
msgid "Allow _table to split across pages and columns"
msgstr "Табліца можа пераходзіць межы старонак і калонак"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:289
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:245
msgctxt "tabletextflowpage|splitrow"
msgid "Allow row to break a_cross pages and columns"
msgstr "Радок можа пераходзіць межы старонак і калонак"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:306
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:262
msgctxt "tabletextflowpage|keep"
msgid "_Keep with next paragraph"
msgstr "Разам з наступным абзацам"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:328
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:284
msgctxt "tabletextflowpage|label40"
msgid "Text _orientation"
msgstr "Кірунак тэксту"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:361
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:298
+msgctxt "tabletextflowpage|liststore1"
+msgid "Horizontal"
+msgstr "Гарызантальна"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:299
+msgctxt "tabletextflowpage|liststore1"
+msgid "Vertical"
+msgstr "Вертыкальна"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:300
+msgctxt "tabletextflowpage|liststore1"
+msgid "Use superordinate object settings"
+msgstr "Як у вышэйпастаўленага аб'екта"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:321
msgctxt "tabletextflowpage|headline"
msgid "R_epeat heading"
msgstr "Паўтараць шапку"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:383
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:343
msgctxt "tabletextflowpage|label38"
msgid "The first "
msgstr "Першыя "
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:396
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:356
msgctxt "tabletextflowpage|label39"
msgid "rows"
msgstr "радкі"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:434
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:395
msgctxt "tabletextflowpage|label35"
msgid "Text Flow"
msgstr "Плынь тэксту"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:467
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:428
msgctxt "tabletextflowpage|label41"
msgid "_Vertical alignment"
msgstr "Вертыкальнае раўнаванне"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:495
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:442
+msgctxt "tabletextflowpage|liststore2"
+msgid "Top"
+msgstr "Зверху"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:443
+msgctxt "tabletextflowpage|liststore2"
+msgid "Centered"
+msgstr "У цэнтры"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:444
+msgctxt "tabletextflowpage|liststore2"
+msgid "Bottom"
+msgstr "Знізу"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:460
msgctxt "tabletextflowpage|label36"
msgid "Alignment"
msgstr "Раўнаванне"
@@ -16876,8 +16881,8 @@ msgstr "Алфавітны паказальнік"
#: sw/uiconfig/swriter/ui/tocindexpage.ui:58
msgctxt "tocindexpage|liststore1"
-msgid "Illustration Index"
-msgstr "Спіс ілюстрацый"
+msgid "Table of Figures"
+msgstr ""
#: sw/uiconfig/swriter/ui/tocindexpage.ui:62
msgctxt "tocindexpage|liststore1"
diff --git a/source/be/writerperfect/messages.po b/source/be/writerperfect/messages.po
index c51b3fd6eef..02b40a44f3e 100644
--- a/source/be/writerperfect/messages.po
+++ b/source/be/writerperfect/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-16 16:54+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2017-12-10 17:01+0000\n"
"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -66,97 +66,97 @@ msgctxt "exportepub|generalft"
msgid "General"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:122
+#: writerperfect/uiconfig/ui/exportepub.ui:121
msgctxt "exportepub|versionft"
msgid "Version:"
msgstr "Версія:"
-#: writerperfect/uiconfig/ui/exportepub.ui:139
+#: writerperfect/uiconfig/ui/exportepub.ui:138
msgctxt "exportepub|epub3"
msgid "EPUB 3.0"
msgstr "EPUB 3.0"
-#: writerperfect/uiconfig/ui/exportepub.ui:140
+#: writerperfect/uiconfig/ui/exportepub.ui:139
msgctxt "exportepub|epub2"
msgid "EPUB 2.0"
msgstr "EPUB 2.0"
-#: writerperfect/uiconfig/ui/exportepub.ui:175
+#: writerperfect/uiconfig/ui/exportepub.ui:174
msgctxt "exportepub|splitft"
msgid "Split method:"
msgstr "Метад разбіцця:"
-#: writerperfect/uiconfig/ui/exportepub.ui:192
+#: writerperfect/uiconfig/ui/exportepub.ui:191
msgctxt "exportepub|splitpage"
msgid "Page break"
msgstr "Разрыў старонкі"
-#: writerperfect/uiconfig/ui/exportepub.ui:193
+#: writerperfect/uiconfig/ui/exportepub.ui:192
msgctxt "exportepub|splitheading"
msgid "Heading"
msgstr "Загаловак"
-#: writerperfect/uiconfig/ui/exportepub.ui:228
+#: writerperfect/uiconfig/ui/exportepub.ui:227
msgctxt "exportepub|layoutft"
msgid "Layout method:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:245
+#: writerperfect/uiconfig/ui/exportepub.ui:244
msgctxt "exportepub|layoutreflowable"
msgid "Reflowable"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:246
+#: writerperfect/uiconfig/ui/exportepub.ui:245
msgctxt "exportepub|layoutfixed"
msgid "Fixed"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:281
+#: writerperfect/uiconfig/ui/exportepub.ui:280
msgctxt "exportepub|coverimageft"
msgid "Custom cover image:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:311
+#: writerperfect/uiconfig/ui/exportepub.ui:310
msgctxt "exportepub|coverbutton"
msgid "Browse..."
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:355
+#: writerperfect/uiconfig/ui/exportepub.ui:354
msgctxt "exportepub|mediadirft"
msgid "Custom media directory:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:385
+#: writerperfect/uiconfig/ui/exportepub.ui:384
msgctxt "exportepub|mediabutton"
msgid "Browse..."
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:429
+#: writerperfect/uiconfig/ui/exportepub.ui:428
msgctxt "exportepub|metadataft"
msgid "Metadata"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:470
+#: writerperfect/uiconfig/ui/exportepub.ui:468
msgctxt "exportepub|identifierft"
msgid "Identifier:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:485
+#: writerperfect/uiconfig/ui/exportepub.ui:483
msgctxt "exportepub|titleft"
msgid "Title:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:511
+#: writerperfect/uiconfig/ui/exportepub.ui:509
msgctxt "exportepub|authorft"
msgid "Author:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:537
+#: writerperfect/uiconfig/ui/exportepub.ui:535
msgctxt "exportepub|languageft"
msgid "Language:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:563
+#: writerperfect/uiconfig/ui/exportepub.ui:561
msgctxt "exportepub|dateft"
msgid "Date:"
msgstr ""
diff --git a/source/bg/basctl/messages.po b/source/bg/basctl/messages.po
index fd203ddeea3..c7943e6f1ca 100644
--- a/source/bg/basctl/messages.po
+++ b/source/bg/basctl/messages.po
@@ -4,14 +4,17 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2018-05-16 16:54+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"PO-Revision-Date: 2018-06-08 11:32+0000\n"
+"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: bg\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: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1528457556.000000\n"
#: basctl/inc/strings.hrc:25
msgctxt "RID_STR_FILTER_ALLFILES"
@@ -407,11 +410,11 @@ msgid ""
"Note: For languages not supported by the dialog the resources of the dialog's default language will be used.\n"
" "
msgstr ""
-"Импортираният диалогов прозорец поддържа различни езици от библиотеката – цел.\n"
+"Импортираният диалогов прозорец поддържа различни езици от библиотеката цел.\n"
"\n"
"Добавете тези езици в библиотеката, за да не изгубите допълнителните езикови ресурси на диалога, или укажете пропускането им, за да запазите сегашните езици на библиотеката.\n"
"\n"
-"Бележка: за езици, неподдържани от диалоговия прозорец, ще бъдет използвани ресурсите за неговия подразбиран език.\n"
+"Бележка: за езици, неподдържани от диалоговия прозорец, ще бъдат използвани ресурсите за неговия подразбиран език.\n"
" "
#: basctl/inc/strings.hrc:100
diff --git a/source/bg/cui/messages.po b/source/bg/cui/messages.po
index 0b1761e2db6..06643e0ed76 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: 2018-05-22 13:16+0200\n"
-"PO-Revision-Date: 2018-05-08 14:47+0000\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
+"PO-Revision-Date: 2018-06-08 12:30+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bg\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1525790838.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1528461043.000000\n"
#: cui/inc/personalization.hrc:31
msgctxt "RID_SVXSTR_PERSONA_CATEGORIES"
@@ -5158,7 +5158,7 @@ msgstr "Директория"
#: cui/uiconfig/ui/gallerythemedialog.ui:8
msgctxt "gallerythemedialog|GalleryThemeDialog"
msgid "Properties of "
-msgstr "Свойства на"
+msgstr "Свойства на "
#: cui/uiconfig/ui/gallerythemedialog.ui:106
msgctxt "gallerythemedialog|general"
@@ -9872,97 +9872,97 @@ msgctxt "positionsizedialog|PositionAndSizeDialog"
msgid "Position and Size"
msgstr "Позиция и размер"
-#: cui/uiconfig/ui/positionsizedialog.ui:107
+#: cui/uiconfig/ui/positionsizedialog.ui:136
msgctxt "positionsizedialog|RID_SVXPAGE_POSITION_SIZE"
msgid "Position and Size"
msgstr "Позиция и размер"
-#: cui/uiconfig/ui/positionsizedialog.ui:129
+#: cui/uiconfig/ui/positionsizedialog.ui:182
msgctxt "positionsizedialog|RID_SVXPAGE_SWPOSSIZE"
msgid "Position and Size"
msgstr "Позиция и размер"
-#: cui/uiconfig/ui/positionsizedialog.ui:152
+#: cui/uiconfig/ui/positionsizedialog.ui:229
msgctxt "positionsizedialog|RID_SVXPAGE_ANGLE"
msgid "Rotation"
msgstr "Завъртане"
-#: cui/uiconfig/ui/positionsizedialog.ui:175
+#: cui/uiconfig/ui/positionsizedialog.ui:276
msgctxt "positionsizedialog|RID_SVXPAGE_SLANT"
msgid "Slant & Corner Radius"
msgstr "Наклон и радиус на ъгъл"
-#: cui/uiconfig/ui/possizetabpage.ui:40
+#: cui/uiconfig/ui/possizetabpage.ui:61
msgctxt "possizetabpage|FT_POS_X"
msgid "Position _X:"
msgstr "Позиция по _Х:"
-#: cui/uiconfig/ui/possizetabpage.ui:56
+#: cui/uiconfig/ui/possizetabpage.ui:75
msgctxt "possizetabpage|FT_POS_Y"
msgid "Position _Y:"
msgstr "Позиция по _Y:"
-#: cui/uiconfig/ui/possizetabpage.ui:110
+#: cui/uiconfig/ui/possizetabpage.ui:128
msgctxt "possizetabpage|FT_POSREFERENCE"
msgid "_Base point:"
msgstr "_Базова точка:"
-#: cui/uiconfig/ui/possizetabpage.ui:148
+#: cui/uiconfig/ui/possizetabpage.ui:182
msgctxt "possizetabpage|label1"
msgid "Position"
msgstr "Позиция"
-#: cui/uiconfig/ui/possizetabpage.ui:190
+#: cui/uiconfig/ui/possizetabpage.ui:224
msgctxt "possizetabpage|FT_WIDTH"
msgid "Wi_dth:"
msgstr "_Ширина:"
-#: cui/uiconfig/ui/possizetabpage.ui:206
+#: cui/uiconfig/ui/possizetabpage.ui:238
msgctxt "possizetabpage|FT_HEIGHT"
msgid "H_eight:"
msgstr "_Височина:"
-#: cui/uiconfig/ui/possizetabpage.ui:247
+#: cui/uiconfig/ui/possizetabpage.ui:276
msgctxt "possizetabpage|CBX_SCALE"
msgid "_Keep ratio"
msgstr "_Запазване на пропорциите"
-#: cui/uiconfig/ui/possizetabpage.ui:279
+#: cui/uiconfig/ui/possizetabpage.ui:307
msgctxt "possizetabpage|FT_SIZEREFERENCE"
msgid "Base _point:"
msgstr "Базова _точка:"
-#: cui/uiconfig/ui/possizetabpage.ui:317
+#: cui/uiconfig/ui/possizetabpage.ui:361
msgctxt "possizetabpage|label2"
msgid "Size"
msgstr "Размер"
-#: cui/uiconfig/ui/possizetabpage.ui:356
+#: cui/uiconfig/ui/possizetabpage.ui:401
msgctxt "possizetabpage|TSB_POSPROTECT"
msgid "Positio_n"
msgstr "_Позиция"
-#: cui/uiconfig/ui/possizetabpage.ui:373
+#: cui/uiconfig/ui/possizetabpage.ui:418
msgctxt "possizetabpage|TSB_SIZEPROTECT"
msgid "_Size"
msgstr "_Размер"
-#: cui/uiconfig/ui/possizetabpage.ui:397
+#: cui/uiconfig/ui/possizetabpage.ui:441
msgctxt "possizetabpage|label3"
msgid "Protect"
msgstr "Защитаване"
-#: cui/uiconfig/ui/possizetabpage.ui:430
+#: cui/uiconfig/ui/possizetabpage.ui:475
msgctxt "possizetabpage|TSB_AUTOGROW_WIDTH"
msgid "_Fit width to text"
msgstr "_Ширина според текста"
-#: cui/uiconfig/ui/possizetabpage.ui:447
+#: cui/uiconfig/ui/possizetabpage.ui:492
msgctxt "possizetabpage|TSB_AUTOGROW_HEIGHT"
msgid "Fit _height to text"
msgstr "_Височина според текста"
-#: cui/uiconfig/ui/possizetabpage.ui:471
+#: cui/uiconfig/ui/possizetabpage.ui:515
msgctxt "possizetabpage|label4"
msgid "Adapt"
msgstr "Напасване"
@@ -10162,47 +10162,47 @@ msgctxt "recordnumberdialog|label2"
msgid "go to record"
msgstr "преход към запис"
-#: cui/uiconfig/ui/rotationtabpage.ui:52
+#: cui/uiconfig/ui/rotationtabpage.ui:56
msgctxt "rotationtabpage|FT_POS_X"
msgid "Position _X:"
msgstr "Позиция по Х:"
-#: cui/uiconfig/ui/rotationtabpage.ui:66
+#: cui/uiconfig/ui/rotationtabpage.ui:70
msgctxt "rotationtabpage|FT_POS_Y"
msgid "Position _Y:"
msgstr "Позиция по Y:"
-#: cui/uiconfig/ui/rotationtabpage.ui:116
+#: cui/uiconfig/ui/rotationtabpage.ui:123
msgctxt "rotationtabpage|FT_POSPRESETS"
msgid "_Default settings:"
msgstr "Подразбирани настройки:"
-#: cui/uiconfig/ui/rotationtabpage.ui:130
+#: cui/uiconfig/ui/rotationtabpage.ui:151
msgctxt "rotationtabpage|CTL_RECT|tooltip_text"
msgid "Rotation point"
msgstr "Център на въртене"
-#: cui/uiconfig/ui/rotationtabpage.ui:155
+#: cui/uiconfig/ui/rotationtabpage.ui:178
msgctxt "rotationtabpage|label1"
msgid "Pivot Point"
msgstr "Център на въртене"
-#: cui/uiconfig/ui/rotationtabpage.ui:197
+#: cui/uiconfig/ui/rotationtabpage.ui:220
msgctxt "rotationtabpage|FT_ANGLE"
msgid "_Angle:"
msgstr "Ъгъл:"
-#: cui/uiconfig/ui/rotationtabpage.ui:238
+#: cui/uiconfig/ui/rotationtabpage.ui:263
msgctxt "rotationtabpage|FT_ANGLEPRESETS"
msgid "Default _settings:"
msgstr "Подразбирани настройки:"
-#: cui/uiconfig/ui/rotationtabpage.ui:252
+#: cui/uiconfig/ui/rotationtabpage.ui:287
msgctxt "rotationtabpage|CTL_ANGLE|tooltip_text"
msgid "Rotation Angle"
msgstr "Ъгъл на завъртане"
-#: cui/uiconfig/ui/rotationtabpage.ui:277
+#: cui/uiconfig/ui/rotationtabpage.ui:314
msgctxt "rotationtabpage|label2"
msgid "Rotation Angle"
msgstr "Ъгъл на завъртане"
@@ -10477,7 +10477,7 @@ msgstr "Име:"
#: cui/uiconfig/ui/signatureline.ui:163
msgctxt "signatureline|label_title"
msgid "Title:"
-msgstr "Звание:"
+msgstr "Длъжност:"
#. Suggested Signer email
#: cui/uiconfig/ui/signatureline.ui:177
@@ -10582,52 +10582,52 @@ msgctxt "similaritysearchdialog|relaxbox"
msgid "_Combine"
msgstr "_Комбиниране"
-#: cui/uiconfig/ui/slantcornertabpage.ui:50
+#: cui/uiconfig/ui/slantcornertabpage.ui:70
msgctxt "slantcornertabpage|label5"
msgid "_X:"
msgstr "X:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:88
+#: cui/uiconfig/ui/slantcornertabpage.ui:110
msgctxt "slantcornertabpage|label6"
msgid "_Y:"
msgstr "Y:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:125
+#: cui/uiconfig/ui/slantcornertabpage.ui:149
msgctxt "slantcornertabpage|label3"
msgid "Control Point 1"
msgstr "Контролна точка 1"
-#: cui/uiconfig/ui/slantcornertabpage.ui:159
+#: cui/uiconfig/ui/slantcornertabpage.ui:183
msgctxt "slantcornertabpage|FT_RADIUS"
msgid "_Radius:"
msgstr "Радиус:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:189
+#: cui/uiconfig/ui/slantcornertabpage.ui:214
msgctxt "slantcornertabpage|label1"
msgid "Corner Radius"
msgstr "Радиус на ъгъл"
-#: cui/uiconfig/ui/slantcornertabpage.ui:223
+#: cui/uiconfig/ui/slantcornertabpage.ui:248
msgctxt "slantcornertabpage|FT_ANGLE"
msgid "_Angle:"
msgstr "Ъгъл:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:253
+#: cui/uiconfig/ui/slantcornertabpage.ui:279
msgctxt "slantcornertabpage|label2"
msgid "Slant"
msgstr "Наклон"
-#: cui/uiconfig/ui/slantcornertabpage.ui:294
+#: cui/uiconfig/ui/slantcornertabpage.ui:320
msgctxt "slantcornertabpage|label4"
msgid "_X:"
msgstr "X:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:332
+#: cui/uiconfig/ui/slantcornertabpage.ui:360
msgctxt "slantcornertabpage|label7"
msgid "_Y:"
msgstr "Y:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:369
+#: cui/uiconfig/ui/slantcornertabpage.ui:399
msgctxt "slantcornertabpage|label8"
msgid "Control Point 2"
msgstr "Контролна точка 2"
@@ -10907,112 +10907,112 @@ msgctxt "storedwebconnectiondialog|change"
msgid "_Change Password..."
msgstr "_Смяна на парола..."
-#: cui/uiconfig/ui/swpossizepage.ui:74
+#: cui/uiconfig/ui/swpossizepage.ui:85
msgctxt "swpossizepage|widthft"
msgid "_Width:"
msgstr "Ширина:"
-#: cui/uiconfig/ui/swpossizepage.ui:111
+#: cui/uiconfig/ui/swpossizepage.ui:123
msgctxt "swpossizepage|heightft"
msgid "H_eight:"
msgstr "Височина:"
-#: cui/uiconfig/ui/swpossizepage.ui:128
+#: cui/uiconfig/ui/swpossizepage.ui:141
msgctxt "swpossizepage|ratio"
msgid "_Keep ratio"
msgstr "_Запазване на пропорциите"
-#: cui/uiconfig/ui/swpossizepage.ui:149
+#: cui/uiconfig/ui/swpossizepage.ui:162
msgctxt "swpossizepage|label2"
msgid "Size"
msgstr "Размер"
-#: cui/uiconfig/ui/swpossizepage.ui:205
+#: cui/uiconfig/ui/swpossizepage.ui:218
msgctxt "swpossizepage|topage"
msgid "To _page"
msgstr "Към _страница"
-#: cui/uiconfig/ui/swpossizepage.ui:222
+#: cui/uiconfig/ui/swpossizepage.ui:234
msgctxt "swpossizepage|topara"
msgid "To paragrap_h"
msgstr "Към _абзац"
-#: cui/uiconfig/ui/swpossizepage.ui:238
+#: cui/uiconfig/ui/swpossizepage.ui:250
msgctxt "swpossizepage|tochar"
msgid "To cha_racter"
msgstr "Към _знак"
-#: cui/uiconfig/ui/swpossizepage.ui:254
+#: cui/uiconfig/ui/swpossizepage.ui:266
msgctxt "swpossizepage|aschar"
msgid "_As character"
msgstr "_Като знак"
-#: cui/uiconfig/ui/swpossizepage.ui:270
+#: cui/uiconfig/ui/swpossizepage.ui:282
msgctxt "swpossizepage|toframe"
msgid "To _frame"
msgstr "Към _рамка"
-#: cui/uiconfig/ui/swpossizepage.ui:292
+#: cui/uiconfig/ui/swpossizepage.ui:304
msgctxt "swpossizepage|label1"
msgid "Anchor"
msgstr "Закотвяне"
-#: cui/uiconfig/ui/swpossizepage.ui:333
+#: cui/uiconfig/ui/swpossizepage.ui:344
msgctxt "swpossizepage|horiposft"
msgid "Hori_zontal:"
msgstr "Хоризонтално:"
-#: cui/uiconfig/ui/swpossizepage.ui:347
+#: cui/uiconfig/ui/swpossizepage.ui:358
msgctxt "swpossizepage|horibyft"
msgid "b_y:"
msgstr "с:"
-#: cui/uiconfig/ui/swpossizepage.ui:361
+#: cui/uiconfig/ui/swpossizepage.ui:372
msgctxt "swpossizepage|vertbyft"
msgid "_by:"
msgstr "с:"
-#: cui/uiconfig/ui/swpossizepage.ui:375
+#: cui/uiconfig/ui/swpossizepage.ui:386
msgctxt "swpossizepage|horitoft"
msgid "_to:"
msgstr "спрямо:"
-#: cui/uiconfig/ui/swpossizepage.ui:421
+#: cui/uiconfig/ui/swpossizepage.ui:433
msgctxt "swpossizepage|vertposft"
msgid "_Vertical:"
msgstr "Вертикално:"
-#: cui/uiconfig/ui/swpossizepage.ui:457
+#: cui/uiconfig/ui/swpossizepage.ui:470
msgctxt "swpossizepage|verttoft"
msgid "t_o:"
msgstr "спрямо:"
-#: cui/uiconfig/ui/swpossizepage.ui:478
+#: cui/uiconfig/ui/swpossizepage.ui:492
msgctxt "swpossizepage|mirror"
msgid "_Mirror on even pages"
msgstr "_Обръщане на четните страници"
-#: cui/uiconfig/ui/swpossizepage.ui:495
+#: cui/uiconfig/ui/swpossizepage.ui:509
msgctxt "swpossizepage|followtextflow"
msgid "Follow te_xt flow"
msgstr "Следване _изливането на текста"
-#: cui/uiconfig/ui/swpossizepage.ui:518
+#: cui/uiconfig/ui/swpossizepage.ui:532
msgctxt "swpossizepage|label11"
msgid "Position"
msgstr "Позиция"
-#: cui/uiconfig/ui/swpossizepage.ui:549
+#: cui/uiconfig/ui/swpossizepage.ui:563
msgctxt "swpossizepage|pos"
msgid "Positio_n"
msgstr "_Позиция"
-#: cui/uiconfig/ui/swpossizepage.ui:565
+#: cui/uiconfig/ui/swpossizepage.ui:579
msgctxt "swpossizepage|size"
msgid "_Size"
msgstr "_Размер"
-#: cui/uiconfig/ui/swpossizepage.ui:587
+#: cui/uiconfig/ui/swpossizepage.ui:601
msgctxt "swpossizepage|label3"
msgid "Protect"
msgstr "Защитаване"
@@ -11202,12 +11202,12 @@ msgctxt "textattrtabpage|label2"
msgid "Spacing to Borders"
msgstr "Разстояние до кантовете"
-#: cui/uiconfig/ui/textattrtabpage.ui:425
+#: cui/uiconfig/ui/textattrtabpage.ui:423
msgctxt "textattrtabpage|TSB_FULL_WIDTH"
msgid "Full _width"
msgstr "П_ълна ширина"
-#: cui/uiconfig/ui/textattrtabpage.ui:448
+#: cui/uiconfig/ui/textattrtabpage.ui:446
msgctxt "textattrtabpage|label3"
msgid "Text Anchor"
msgstr "Котва на текста"
diff --git a/source/bg/dbaccess/messages.po b/source/bg/dbaccess/messages.po
index 78eb8383ce3..20ba85c7c44 100644
--- a/source/bg/dbaccess/messages.po
+++ b/source/bg/dbaccess/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2018-04-23 18:10+0200\n"
-"PO-Revision-Date: 2018-04-30 10:21+0000\n"
+"PO-Revision-Date: 2018-06-08 12:23+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bg\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1525083681.000000\n"
+"X-POOTLE-MTIME: 1528460586.000000\n"
#: dbaccess/inc/query.hrc:26
msgctxt "RSC_QUERY_OBJECT_TYPE"
@@ -2062,7 +2062,7 @@ msgstr "По подразбиране: 1521"
#: dbaccess/inc/strings.hrc:434
msgctxt "STR_ORACLE_DRIVERCLASSTEXT"
msgid "Oracle JDBC ~driver class"
-msgstr "Клас - JDBC драйвер за Oracle "
+msgstr "Клас - JDBC драйвер за Oracle"
#: dbaccess/inc/strings.hrc:435
msgctxt "STR_ORACLE_HELPTEXT"
diff --git a/source/bg/filter/source/config/fragments/filters.po b/source/bg/filter/source/config/fragments/filters.po
index 30bff7f82db..b192d141fc6 100644
--- a/source/bg/filter/source/config/fragments/filters.po
+++ b/source/bg/filter/source/config/fragments/filters.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: 2018-05-16 16:54+0200\n"
-"PO-Revision-Date: 2018-05-17 09:17+0000\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
+"PO-Revision-Date: 2018-06-05 12:17+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bg\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1526548635.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1528201033.000000\n"
#: ADO_rowset_XML.xcu
msgctxt ""
@@ -463,8 +463,8 @@ msgctxt ""
"MS Word 2003 XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Word 2003 XML"
-msgstr "Microsoft Word 2003 XML"
+msgid "Word 2003 XML"
+msgstr "Word 2003 XML"
#: MS_Word_2007_XML.xcu
msgctxt ""
@@ -1282,8 +1282,8 @@ msgctxt ""
"Calc MS Excel 2007 VBA XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Excel 2007-2016 XML (macro enabled)"
-msgstr "Microsoft Excel 2007-2016 XML (с макроси)"
+msgid "Excel 2007–2019 (macro-enabled)"
+msgstr "Excel 2007 – 2019 (разрешени макроси)"
#: calc_MS_Excel_2007_XML.xcu
msgctxt ""
diff --git a/source/bg/filter/source/config/fragments/types.po b/source/bg/filter/source/config/fragments/types.po
index 74a6bb17d31..795b8f8ffd4 100644
--- a/source/bg/filter/source/config/fragments/types.po
+++ b/source/bg/filter/source/config/fragments/types.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: 2018-05-08 15:11+0200\n"
-"PO-Revision-Date: 2018-05-09 21:47+0000\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
+"PO-Revision-Date: 2018-06-05 12:17+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bg\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1525902420.000000\n"
+"X-POOTLE-MTIME: 1528201037.000000\n"
#: MS_Excel_2007_Binary.xcu
msgctxt ""
@@ -292,8 +292,8 @@ msgctxt ""
"writer_MS_Word_2003_XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Word 2003 XML"
-msgstr "Microsoft Word 2003 XML"
+msgid "Word 2003 XML"
+msgstr "Word 2003 XML"
#: writer_MS_Word_2007_XML.xcu
msgctxt ""
diff --git a/source/bg/fpicker/messages.po b/source/bg/fpicker/messages.po
index e883acc7338..77b0abfca3c 100644
--- a/source/bg/fpicker/messages.po
+++ b/source/bg/fpicker/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-22 13:16+0200\n"
-"PO-Revision-Date: 2018-02-28 16:51+0000\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
+"PO-Revision-Date: 2018-06-05 12:17+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bg\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1519836664.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1528201048.000000\n"
#: include/fpicker/strings.hrc:14
msgctxt "STR_SVT_FILEPICKER_AUTO_EXTENSION"
@@ -272,13 +272,13 @@ msgstr "Шифроване с ключ на GPG"
#: fpicker/uiconfig/ui/foldernamedialog.ui:8
msgctxt "foldernamedialog|FolderNameDialog"
-msgid "Folder Name ?"
-msgstr "Име на папка?"
+msgid "Folder Name"
+msgstr "Име на папка"
#: fpicker/uiconfig/ui/foldernamedialog.ui:91
msgctxt "foldernamedialog|label2"
-msgid "Na_me"
-msgstr "_Име"
+msgid "Na_me:"
+msgstr "Име:"
#: fpicker/uiconfig/ui/foldernamedialog.ui:122
msgctxt "foldernamedialog|label1"
diff --git a/source/bg/helpcontent2/source/text/scalc/guide.po b/source/bg/helpcontent2/source/text/scalc/guide.po
index 517314d035d..12aa1605c6a 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: 2018-05-22 13:16+0200\n"
-"PO-Revision-Date: 2018-05-17 14:59+0000\n"
+"PO-Revision-Date: 2018-05-27 21:07+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: .\n"
"Language: bg\n"
@@ -13,9 +13,9 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Pootle 2.8\n"
"X-Project-Style: openoffice\n"
-"X-POOTLE-MTIME: 1526569179.000000\n"
+"X-POOTLE-MTIME: 1527455225.000000\n"
#: address_auto.xhp
msgctxt ""
@@ -8399,7 +8399,7 @@ msgctxt ""
"par_id681525167692377\n"
"help.text"
msgid "<image src=\"media/helpimg/sc_PivotChartButtons.png\" id=\"img_id801525167692378\" width=\"604px\" height=\"340px\"><alt id=\"alt_id881525167692378\">Pivot chart buttons</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/helpimg/sc_PivotChartButtons.png\" id=\"img_id801525167692378\" width=\"604px\" height=\"340px\"><alt id=\"alt_id881525167692378\">Бутони на обобщена диаграма</alt></image>"
#: pivotchart_filter.xhp
msgctxt ""
diff --git a/source/bg/helpcontent2/source/text/shared/00.po b/source/bg/helpcontent2/source/text/shared/00.po
index 4e11913a66c..4c6e6ea110c 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: 2018-05-22 13:16+0200\n"
-"PO-Revision-Date: 2018-05-09 21:09+0000\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
+"PO-Revision-Date: 2018-06-05 21:34+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bg\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1525900162.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1528234473.000000\n"
#: 00000001.xhp
msgctxt ""
@@ -397,16 +397,16 @@ msgctxt ""
"00000001.xhp\n"
"hd_id3149670\n"
"help.text"
-msgid "Back"
-msgstr "Назад"
+msgid "Reset"
+msgstr "Нулиране"
#: 00000001.xhp
msgctxt ""
"00000001.xhp\n"
"par_id3145068\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optionsdialog/revert\">Resets modified values back to the $[officename] default values.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/optionsdialog/revert\">Нулира променените настройки до подразбираните от $[officename] стойности.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optionsdialog/revert\">Resets changes made to the current tab to those applicable when this dialog was opened.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/optionsdialog/revert\">Анулира промените, зададени в текущия раздел, и връща стойностите от момента на отваряне на диалоговия прозорец.</ahelp>"
#: 00000001.xhp
msgctxt ""
@@ -552,6 +552,54 @@ msgctxt ""
msgid "<variable id=\"ShiftF1\">Press Shift+F1 and point to a control to learn more about that control.</variable>"
msgstr "<variable id=\"ShiftF1\">Натиснете Shift+F1 и посочете елемент за управление, за да научите повече за него.</variable>"
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"hd_id631527692833772\n"
+"help.text"
+msgid "Options dialog buttons"
+msgstr "Бутони на диалоговия прозорец „Настройки“"
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"hd_id831527692839432\n"
+"help.text"
+msgid "OK"
+msgstr "OK"
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"par_id471527692844934\n"
+"help.text"
+msgid "Save the changes in the page and close the Options dialog."
+msgstr "Записва промените в страницата и затваря диалога „Настройки“."
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"hd_id261527692850720\n"
+"help.text"
+msgid "Cancel"
+msgstr "Отмяна"
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"par_id571527692855533\n"
+"help.text"
+msgid "Close the Options dialog and discard all changes done."
+msgstr "Затваря диалога „Настройки“ и отхвърля промените."
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"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 Options dialog."
+msgstr "Някои настройки не могат да се нулират, след като са редактирани. Или заличете промените ръчно, или щракнете върху <emph>Отмяна</emph> и отворете отново диалоговия прозорец „Настройки“."
+
#: 00000002.xhp
msgctxt ""
"00000002.xhp\n"
@@ -6006,7 +6054,7 @@ msgctxt ""
"par_id181526424294565\n"
"help.text"
msgid "Choose <emph>File - Digital Signatures - Sign Existing PDF</emph>."
-msgstr ""
+msgstr "Изберете <emph>Файл - Цифрови подписи - Подписване на съществуващ PDF</emph>."
#: 00000401.xhp
msgctxt ""
@@ -6198,7 +6246,7 @@ msgctxt ""
"par_id3163421\n"
"help.text"
msgid "Choose <emph>File - Export As - Export as PDF</emph>, Digital Signatures tab"
-msgstr ""
+msgstr "Изберете <emph>Файл - Експортиране като - Експортиране като PDF</emph>, раздел „Цифрови подписи“."
#: 00000401.xhp
msgctxt ""
@@ -6206,7 +6254,7 @@ msgctxt ""
"par_id3166421\n"
"help.text"
msgid "Choose <emph>File - Export As - Export as PDF</emph>"
-msgstr ""
+msgstr "Изберете <emph>Файл - Експортиране като - Експортиране като PDF</emph>."
#: 00000401.xhp
msgctxt ""
@@ -11125,16 +11173,16 @@ msgctxt ""
"00040502.xhp\n"
"par_id3151293\n"
"help.text"
-msgid "<variable id=\"linienstile\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Line Styles</emph> tab </variable>"
-msgstr "<variable id=\"linienstile\">Изберете раздела <emph>Форматиране - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Обект - </emph></caseinline><caseinline select=\"CALC\"><emph>Графика - </emph></caseinline></switchinline><emph>Линия - Стилове за линии</emph></variable>"
+msgid "<variable id=\"linienstile\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Line Styles</emph> tab</variable>"
+msgstr "<variable id=\"linienstile\">Изберете раздела <emph>Форматиране - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Обект - </emph></caseinline><caseinline select=\"CALC\"><emph>Графика - </emph></caseinline></switchinline><emph>Линия - Стилове за линии</emph>.</variable>"
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3149317\n"
"help.text"
-msgid "<variable id=\"linienenden\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Arrow Styles</emph> tab </variable>"
-msgstr "<variable id=\"linienenden\">Изберете раздела <emph>Форматиране - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Обект - </emph></caseinline><caseinline select=\"CALC\"><emph>Графика - </emph></caseinline></switchinline><emph>Линия - Стилове за краища</emph></variable>"
+msgid "<variable id=\"linienenden\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Arrow Styles</emph> tab</variable>"
+msgstr "<variable id=\"linienenden\">Изберете раздела <emph>Форматиране - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Обект - </emph></caseinline><caseinline select=\"CALC\"><emph>Графика - </emph></caseinline></switchinline><emph>Линия - Стилове за краища</emph>.</variable>"
#: 00040502.xhp
msgctxt ""
@@ -11173,15 +11221,15 @@ msgctxt ""
"00040502.xhp\n"
"par_id3154948\n"
"help.text"
-msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Area</emph> tab"
-msgstr "Изберете раздела <emph>Форматиране - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Обект - </emph></caseinline><caseinline select=\"CALC\"><emph>Графика - </emph></caseinline></switchinline><emph>Област - Област</emph>"
+msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Area</emph> tab."
+msgstr "Изберете раздела <emph>Форматиране - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Обект - </emph></caseinline><caseinline select=\"CALC\"><emph>Графика - </emph></caseinline></switchinline><emph>Област - Област</emph>."
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3145607\n"
"help.text"
-msgid "Choose <emph>View - Styles</emph> - open context menu and choose <emph>Modify/New - Area</emph> tab (presentation documents)"
+msgid "Choose <emph>View - Styles</emph> - open context menu and choose <emph>Modify/New - Area</emph> tab (presentation documents)."
msgstr "Изберете <emph>Изглед - Стилове</emph> - отворете контекстното меню на елемент и изберете раздела <emph>Промяна/Нов - Област</emph> (документи - презентации)."
#: 00040502.xhp
@@ -11189,56 +11237,64 @@ msgctxt ""
"00040502.xhp\n"
"par_id3152922\n"
"help.text"
-msgid "Choose <emph>Format - Title - Area</emph> tab (chart documents)"
-msgstr "Изберете раздела <emph>Форматиране - Заглавие - Област</emph> (документи - диаграми)"
+msgid "Choose <emph>Format - Title - Area</emph> tab (chart documents)."
+msgstr "Изберете раздела <emph>Форматиране - Заглавие - Област</emph> (документи - диаграми)."
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3157894\n"
"help.text"
-msgid "Choose <emph>Format - Legend - Area</emph> tab (chart documents)"
-msgstr "Изберете раздела <emph>Форматиране - Легенда - Област</emph> (документи - диаграми)"
+msgid "Choose <emph>Format - Legend - Area</emph> tab (chart documents)."
+msgstr "Изберете раздела <emph>Форматиране - Легенда - Област</emph> (документи - диаграми)."
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3144444\n"
"help.text"
-msgid "Choose <emph>Format - Chart Wall - Area</emph> tab (chart documents)"
-msgstr "Изберете раздела <emph>Форматиране - Стена на диаграма - Област</emph> (документи - диаграми)"
+msgid "Choose <emph>Format - Chart Wall - Area</emph> tab (chart documents)."
+msgstr "Изберете раздела <emph>Форматиране - Стена на диаграма - Област</emph> (документи - диаграми)."
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3156543\n"
"help.text"
-msgid "Choose <emph>Format - Chart Floor - Area</emph> tab (chart documents)"
-msgstr "Изберете раздела <emph>Форматиране - Дъно на диаграма - Област</emph> (документи - диаграми)"
+msgid "Choose <emph>Format - Chart Floor - Area</emph> tab (chart documents)."
+msgstr "Изберете раздела <emph>Форматиране - Дъно на диаграма - Област</emph> (документи - диаграми)."
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3150685\n"
"help.text"
-msgid "Choose <emph>Format - Chart Area - Area</emph> tab (chart documents)"
-msgstr "Изберете раздела <emph>Форматиране - Основна област на диаграма - Област</emph> (документи - диаграми)"
+msgid "Choose <emph>Format - Chart Area - Area</emph> tab (chart documents)."
+msgstr "Изберете раздела <emph>Форматиране - Основна област на диаграма - Област</emph> (документи - диаграми)."
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3149664\n"
"help.text"
-msgid "Choose <emph>Slide - Properties - Background</emph> tab (in $[officename] Impress)"
-msgstr "Изберете раздела <emph>Кадър - Свойства - Фон</emph> (в $[officename] Impress)"
+msgid "Choose <emph>Slide - Properties - Background</emph> tab (in $[officename] Impress)."
+msgstr "Изберете раздела <emph>Кадър - Свойства - Фон</emph> (в $[officename] Impress)."
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id9149694\n"
"help.text"
-msgid "Choose <emph>Page - Properties - Background</emph> tab (in $[officename] Draw)"
-msgstr "Изберете раздела <emph>Страница - Свойства - Фон</emph> (в $[officename] Draw)"
+msgid "Choose <emph>Page - Properties - Background</emph> tab (in $[officename] Draw)."
+msgstr "Изберете раздела <emph>Страница - Свойства - Фон</emph> (в $[officename] Draw)."
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id841527083135387\n"
+"help.text"
+msgid "Choose <emph>Table - Properties - Background</emph> tab."
+msgstr "Изберете раздела <emph>Таблица - Свойства - Фон</emph>."
#: 00040502.xhp
msgctxt ""
@@ -11349,32 +11405,32 @@ msgctxt ""
"00040502.xhp\n"
"par_id3150011\n"
"help.text"
-msgid "<variable id=\"schatte\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Shadow</emph> tab </variable>"
-msgstr "<variable id=\"schatte\">Изберете раздела <emph>Форматиране - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Обект - </emph></caseinline><caseinline select=\"CALC\"><emph>Графика - </emph></caseinline></switchinline><emph>Област - Сянка</emph></variable>"
+msgid "<variable id=\"schatte\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Shadow</emph> tab</variable>"
+msgstr "<variable id=\"schatte\">Изберете раздела <emph>Форматиране - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Обект - </emph></caseinline><caseinline select=\"CALC\"><emph>Графика - </emph></caseinline></switchinline><emph>Област - Сянка</emph>.</variable>"
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3147441\n"
"help.text"
-msgid "<variable id=\"verlauf\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Gradients</emph> tab </variable>"
-msgstr "<variable id=\"verlauf\">Изберете раздела <emph>Форматиране - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Обект - </emph></caseinline><caseinline select=\"CALC\"><emph>Графика - </emph></caseinline></switchinline><emph>Област - Градиенти</emph></variable>"
+msgid "<variable id=\"verlauf\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Gradients</emph> tab</variable>"
+msgstr "<variable id=\"verlauf\">Изберете раздела <emph>Форматиране - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Обект - </emph></caseinline><caseinline select=\"CALC\"><emph>Графика - </emph></caseinline></switchinline><emph>Област - Градиенти</emph>.</variable>"
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3155308\n"
"help.text"
-msgid "<variable id=\"schraffur\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Hatching</emph> tab </variable>"
-msgstr "<variable id=\"schraffur\">Изберете раздела <emph>Форматиране - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Обект - </emph></caseinline><caseinline select=\"CALC\"><emph>Графика - </emph></caseinline></switchinline><emph>Област - Щриховка</emph></variable>"
+msgid "<variable id=\"schraffur\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Hatching</emph> tab</variable>"
+msgstr "<variable id=\"schraffur\">Изберете раздела <emph>Форматиране - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Обект - </emph></caseinline><caseinline select=\"CALC\"><emph>Графика - </emph></caseinline></switchinline><emph>Област - Щриховка</emph>.</variable>"
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3145800\n"
"help.text"
-msgid "<variable id=\"bitmap\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Bitmaps</emph> tab </variable>"
-msgstr "<variable id=\"bitmap\">Изберете раздела <emph>Форматиране - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Обект - </emph></caseinline><caseinline select=\"CALC\"><emph>Графика - </emph></caseinline></switchinline><emph>Област - Растерни изображения</emph></variable>"
+msgid "<variable id=\"bitmap\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Bitmaps</emph> tab</variable>"
+msgstr "<variable id=\"bitmap\">Изберете раздела <emph>Форматиране - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Обект - </emph></caseinline><caseinline select=\"CALC\"><emph>Графика - </emph></caseinline></switchinline><emph>Област - Растерни изображения</emph>.</variable>"
#: 00040502.xhp
msgctxt ""
@@ -11413,8 +11469,8 @@ msgctxt ""
"00040502.xhp\n"
"par_id3156286\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F4 key </caseinline><caseinline select=\"IMPRESS\">F4 key </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"DRAW\">Клавиш F4 </caseinline><caseinline select=\"IMPRESS\">Клавиш F4 </caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F4 key</caseinline><caseinline select=\"IMPRESS\">F4 key</caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"DRAW\">Клавиш F4</caseinline><caseinline select=\"IMPRESS\">Клавиш F4</caseinline></switchinline>"
#: 00040502.xhp
msgctxt ""
@@ -11453,8 +11509,8 @@ msgctxt ""
"00040502.xhp\n"
"par_id3153099\n"
"help.text"
-msgid "<variable id=\"position2\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Position and Size</emph> tab </variable>"
-msgstr "<variable id=\"position2\">Изберете раздела <emph>Форматиране - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Обект - </emph></caseinline><caseinline select=\"CALC\"><emph>Графика - </emph></caseinline></switchinline><emph>Позиция и размер - Позиция и размер</emph></variable>"
+msgid "<variable id=\"position2\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Position and Size</emph> tab</variable>"
+msgstr "<variable id=\"position2\">Изберете раздела <emph>Форматиране - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Обект - </emph></caseinline><caseinline select=\"CALC\"><emph>Графика - </emph></caseinline></switchinline><emph>Позиция и размер - Позиция и размер</emph>.</variable>"
#: 00040502.xhp
msgctxt ""
@@ -11485,16 +11541,16 @@ msgctxt ""
"00040502.xhp\n"
"par_id3145666\n"
"help.text"
-msgid "<variable id=\"ecke\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Slant & Corner Radius</emph> tab </variable>"
-msgstr "<variable id=\"ecke\">Изберете раздела <emph>Форматиране - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Обект - </emph></caseinline><caseinline select=\"CALC\"><emph>Графика - </emph></caseinline></switchinline><emph>Позиция и размер - Наклон и радиус на ъгъл</emph></variable>"
+msgid "<variable id=\"ecke\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Slant & Corner Radius</emph> tab</variable>"
+msgstr "<variable id=\"ecke\">Изберете раздела <emph>Форматиране - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Обект - </emph></caseinline><caseinline select=\"CALC\"><emph>Графика - </emph></caseinline></switchinline><emph>Позиция и размер - Наклон и радиус на ъгъл</emph>.</variable>"
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3146081\n"
"help.text"
-msgid "<variable id=\"legende\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Callout</emph> tab (only for textbox callouts, not for custom shapes callouts) </variable>"
-msgstr "<variable id=\"legende\">Изберете раздела <emph>Форматиране - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Обект - </emph></caseinline><caseinline select=\"CALC\"><emph>Графика - </emph></caseinline></switchinline><emph>Позиция и размер - Изнесено означение</emph> (само за изнесени означения, които са текстови обекти, не и за потребителски фигури)</variable>"
+msgid "<variable id=\"legende\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Callout</emph> tab (only for textbox callouts, not for custom shapes callouts)</variable>"
+msgstr "<variable id=\"legende\">Изберете раздела <emph>Форматиране - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Обект - </emph></caseinline><caseinline select=\"CALC\"><emph>Графика - </emph></caseinline></switchinline><emph>Позиция и размер - Изнесено означение</emph> (само за изнесени означения, които са текстови обекти, не и за фигури по избор).</variable>"
#: 00040502.xhp
msgctxt ""
@@ -11517,8 +11573,8 @@ msgctxt ""
"00040502.xhp\n"
"par_id3149019\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F8 key </caseinline><caseinline select=\"IMPRESS\">F8 key </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"DRAW\">Клавиш F8 </caseinline><caseinline select=\"IMPRESS\">Клавиш F8 </caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F8 key</caseinline><caseinline select=\"IMPRESS\">F8 key</caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"DRAW\">Клавиш F8</caseinline><caseinline select=\"IMPRESS\">Клавиш F8</caseinline></switchinline>"
#: 00040502.xhp
msgctxt ""
@@ -11805,8 +11861,8 @@ msgctxt ""
"00040502.xhp\n"
"par_id3153076\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Align Center Horizontally </caseinline><defaultinline>Centered</defaultinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Хоризонтално центриране </caseinline><defaultinline>Центрирано</defaultinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Align Center Horizontally</caseinline><defaultinline>Centered</defaultinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Хоризонтално центриране</caseinline><defaultinline>Центрирано</defaultinline></switchinline>"
#: 00040502.xhp
msgctxt ""
@@ -11845,8 +11901,8 @@ msgctxt ""
"00040502.xhp\n"
"par_id3150527\n"
"help.text"
-msgid "<variable id=\"font\">Click <emph>Fontwork</emph> icon on <emph>Drawing</emph> bar </variable>"
-msgstr "<variable id=\"font\">Щракнете върху иконата <emph>Fontwork</emph> в лентата <emph>Рисуване</emph> </variable>"
+msgid "<variable id=\"font\">Click <emph>Fontwork</emph> icon on <emph>Drawing</emph> bar</variable>"
+msgstr "<variable id=\"font\">Щракнете върху иконата <emph>Fontwork</emph> в лентата <emph>Рисуване</emph>.</variable>"
#: 00040502.xhp
msgctxt ""
diff --git a/source/bg/helpcontent2/source/text/shared/01.po b/source/bg/helpcontent2/source/text/shared/01.po
index 7b952e94459..eea257ff0c7 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: 2018-05-23 23:19+0200\n"
-"PO-Revision-Date: 2018-05-09 20:17+0000\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
+"PO-Revision-Date: 2018-06-08 11:24+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: .\n"
"Language: bg\n"
@@ -13,9 +13,9 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Pootle 2.8\n"
"X-Project-Style: openoffice\n"
-"X-POOTLE-MTIME: 1525897042.000000\n"
+"X-POOTLE-MTIME: 1528457089.000000\n"
#: 01010000.xhp
msgctxt ""
@@ -2567,7 +2567,7 @@ msgctxt ""
"par_id3155934\n"
"help.text"
msgid "The following sections describe the <item type=\"productname\">%PRODUCTNAME</item> <emph>Save as</emph> dialog. To activate the <emph><item type=\"productname\">%PRODUCTNAME</item> Open</emph> and <emph>Save</emph> dialog boxes, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - </emph><link href=\"text/shared/optionen/01010600.xhp\" name=\"%PRODUCTNAME - General\"><emph>%PRODUCTNAME- General</emph></link>, and then select the <emph>Use %PRODUCTNAME dialogs</emph> in the <emph>Open/Save dialogs</emph> area."
-msgstr ""
+msgstr "Следващите раздели описват диалоговия прозорец <emph>Записване като</emph> на <item type=\"productname\">%PRODUCTNAME</item>. За да активирате диалоговите прозорци <emph>Отваряне</emph> и <emph>Записване</emph> на <item type=\"productname\">%PRODUCTNAME</item>, изберете <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Инструменти - Настройки</emph></defaultinline></switchinline><emph> - </emph><link href=\"text/shared/optionen/01010600.xhp\" name=\"%PRODUCTNAME - General\"><emph>%PRODUCTNAME - Общи</emph></link> и отметнете <emph>Диалогови прозорци на %PRODUCTNAME</emph> в областта <emph>Диалогови прозорци за отваряне/записване</emph>."
#: 01070000.xhp
msgctxt ""
@@ -3423,7 +3423,7 @@ msgctxt ""
"par_id3156324\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Some statistic values can be used as <link href=\"text/swriter/02/14020000.xhp\" name=\"variables in formulas\">variables in formulas</link>.</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Някои статистически стойности могат да се използват като <link href=\"text/swriter/02/14020000.xhp\" name=\"variables in formulas\">променливи във формули</link>.</caseinline></switchinline>"
#: 01100400.xhp
msgctxt ""
@@ -3455,7 +3455,7 @@ msgctxt ""
"par_id3153527\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Number of tables in the file.</caseinline><caseinline select=\"CALC\">Number of sheets in the file.</caseinline></switchinline> This statistic does not include tables that were inserted as <link href=\"text/shared/00/00000005.xhp#ole\" name=\"OLE\">OLE</link> objects."
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Брой на таблиците във файла.</caseinline><caseinline select=\"CALC\">Брой на листовете във файла.</caseinline></switchinline> Не включва таблици, вмъкнати като <link href=\"text/shared/00/00000005.xhp#ole\" name=\"OLE\">OLE</link> обекти."
#: 01100400.xhp
msgctxt ""
@@ -3471,7 +3471,7 @@ msgctxt ""
"par_id3156114\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Number of cells with content in the file.</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Брой на клетките със съдържание във файла.</caseinline></switchinline>"
#: 01100400.xhp
msgctxt ""
@@ -3479,7 +3479,7 @@ msgctxt ""
"hd_id641526904710590\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Formula groups:</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Групи от формули:</caseinline></switchinline>"
#: 01100400.xhp
msgctxt ""
@@ -3487,7 +3487,7 @@ msgctxt ""
"par_id541526903668055\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Number of contiguous ranges in a column with same formula.</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Брой на непрекъснатите диапазони в една колона с една и съща формула.</caseinline></switchinline>"
#: 01100400.xhp
msgctxt ""
@@ -3495,7 +3495,7 @@ msgctxt ""
"hd_id3147210\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Images:</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Изображения:</caseinline></switchinline>"
#: 01100400.xhp
msgctxt ""
@@ -3503,7 +3503,7 @@ msgctxt ""
"par_id3166411\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Number of images in the file. This statistic does not include images that were inserted as <link href=\"text/shared/00/00000005.xhp#ole\" name=\"OLE\">OLE</link> objects.</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Брой на изображенията във файла. Не включва изображенията, вмъкнати като <link href=\"text/shared/00/00000005.xhp#ole\" name=\"OLE\">OLE</link> обекти.</caseinline></switchinline>"
#: 01100400.xhp
msgctxt ""
@@ -3511,7 +3511,7 @@ msgctxt ""
"hd_id3147618\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">OLE Objects:</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">OLE обекти:</caseinline></switchinline>"
#: 01100400.xhp
msgctxt ""
@@ -3519,7 +3519,7 @@ msgctxt ""
"par_id3149820\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Number of <link href=\"text/shared/00/00000005.xhp#ole\" name=\"OLE\">OLE</link> objects in the file, including tables and graphics that were inserted as OLE objects.</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Брой на <link href=\"text/shared/00/00000005.xhp#ole\" name=\"OLE\">OLE</link> обектите във файла, включително таблици и графики, вмъкнати като OLE обекти.</caseinline></switchinline>"
#: 01100400.xhp
msgctxt ""
@@ -3527,7 +3527,7 @@ msgctxt ""
"hd_id3153665\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Paragraphs:</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Абзаци:</caseinline></switchinline>"
#: 01100400.xhp
msgctxt ""
@@ -3535,7 +3535,7 @@ msgctxt ""
"par_id3156156\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Number of paragraphs (including blank paragraphs) in the file.</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Брой на абзаците във файла (включително празните).</caseinline></switchinline>"
#: 01100400.xhp
msgctxt ""
@@ -3543,7 +3543,7 @@ msgctxt ""
"hd_id3155261\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Words:</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Думи:</caseinline></switchinline>"
#: 01100400.xhp
msgctxt ""
@@ -3551,7 +3551,7 @@ msgctxt ""
"par_id3147402\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Number of words (including words consisting of a single character) in the file.</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Брой на думите във файла (включително еднобуквените).</caseinline></switchinline>"
#: 01100400.xhp
msgctxt ""
@@ -3559,7 +3559,7 @@ msgctxt ""
"hd_id3150466\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Characters:</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Знаци:</caseinline></switchinline>"
#: 01100400.xhp
msgctxt ""
@@ -3567,7 +3567,7 @@ msgctxt ""
"par_id3149294\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Number of characters (including spaces) in the file. Non-printable characters are not included.</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Брой на знаците във файла (включително интервалите). Непечатаемите знаци не се включват.</caseinline></switchinline>"
#: 01100400.xhp
msgctxt ""
@@ -3575,7 +3575,7 @@ msgctxt ""
"hd_id3148947\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Lines:</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Редове:</caseinline></switchinline>"
#: 01100400.xhp
msgctxt ""
@@ -3583,7 +3583,7 @@ msgctxt ""
"par_id3149650\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Number of lines in the file.</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Брой на редовете във файла.</caseinline></switchinline>"
#: 01100400.xhp
msgctxt ""
@@ -3591,7 +3591,7 @@ msgctxt ""
"hd_id3153525\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Update</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Обновяване</caseinline></switchinline>"
#: 01100400.xhp
msgctxt ""
@@ -23588,6 +23588,22 @@ msgstr "Можете да добавяте към подразбираните
#: 05210100.xhp
msgctxt ""
"05210100.xhp\n"
+"hd_id471527077476052\n"
+"help.text"
+msgid "Cell, Row or Table background selector"
+msgstr "Селектор за фон на клетка, ред или таблица"
+
+#: 05210100.xhp
+msgctxt ""
+"05210100.xhp\n"
+"par_id661527077493366\n"
+"help.text"
+msgid "Select the table object which background area is to be filled."
+msgstr "Изберете табличния обект, чиято фонова област да се запълни."
+
+#: 05210100.xhp
+msgctxt ""
+"05210100.xhp\n"
"hd_id3147373\n"
"help.text"
msgid "None"
@@ -31206,24 +31222,24 @@ msgctxt ""
"06040100.xhp\n"
"hd_id3145072\n"
"help.text"
-msgid "Automatic *bold* and _underline_"
-msgstr "Автоматичен *получер* и _подчертан_ текст"
+msgid "Automatic *bold*, /italic/, -strikeout- and _underline_"
+msgstr "Автоматичен *получер*, /курсив/, -зачертан- и _подчертан_"
#: 06040100.xhp
msgctxt ""
"06040100.xhp\n"
"par_id3153577\n"
"help.text"
-msgid "Automatically applies bold formatting to text enclosed by asterisks (*), and underline to text enclosed by underscores ( _ ), for example, *bold*. The asterisks and underscores are not displayed after the formatting is applied."
-msgstr "Автоматично изписва с получер шрифт текста, заграден със звездички (*), и подчертава текста, заграден с долни черти ( _ ), например *получер*. Звездичките и долните черти не се показват след прилагането на формата."
+msgid "Automatically applies bold, italic, strikethrough or underline formatting to text enclosed by asterisks (*), slashes (/), hyphens (-), and underscores (_), respectively. These characters disappear after the formatting is applied."
+msgstr "Автоматично прилага форматите получер, курсивен, зачертан или подчертан върху текст, ограден съответно със звездички (*), наклонени черти (/), тирета (-) или долни черти (_). Тези знаци изчезват, след като бъде приложен форматът."
#: 06040100.xhp
msgctxt ""
"06040100.xhp\n"
"par_id3153127\n"
"help.text"
-msgid "This feature does not work if the formatting characters * or _ are entered with an <link href=\"text/shared/00/00000005.xhp#IME\" name=\"Input Method Editor\">Input Method Editor</link>."
-msgstr "Тази възможност не работи, ако форматиращите знаци * или _ са въведени с <link href=\"text/shared/00/00000005.xhp#IME\" name=\"редактор на входен метод\">редактор на входен метод</link>."
+msgid "This feature does not work if the formatting characters <item type=\"literal\">* / - _</item> are entered with an <link href=\"text/shared/00/00000005.xhp#IME\" name=\"Input Method Editor\">Input Method Editor</link>."
+msgstr "Тази възможност не работи, ако форматиращите знаци <item type=\"literal\">* / - _</item> са въведени с <link href=\"text/shared/00/00000005.xhp#IME\" name=\"Input Method Editor\">редактор на метод за въвеждане</link>."
#: 06040100.xhp
msgctxt ""
@@ -37871,7 +37887,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Digital Signature in PDF Export"
-msgstr ""
+msgstr "Цифров подпис при експортиране на PDF"
#: digitalsignaturespdf.xhp
msgctxt ""
@@ -37879,7 +37895,7 @@ msgctxt ""
"hd_id771526419375353\n"
"help.text"
msgid "Signing Exported PDF"
-msgstr ""
+msgstr "Подписване на експортиран PDF файл"
#: digitalsignaturespdf.xhp
msgctxt ""
@@ -37887,7 +37903,7 @@ msgctxt ""
"par_id321526421041596\n"
"help.text"
msgid "<link href=\"text/shared/guide/digital_signatures.xhp\">About Digital Signatures</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/guide/digital_signatures.xhp\">Относно цифровите подписи</link>"
#: extensionupdate.xhp
msgctxt ""
@@ -41111,7 +41127,7 @@ msgctxt ""
"par_idN207C2\n"
"help.text"
msgid "To export comments of Writer documents as they are shown in %PRODUCTNAME, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer - Print</emph> and select the <emph>In margins</emph> option in the <emph>Comments</emph> area. The exported pages will be scaled down and the comments will be placed into their margins."
-msgstr ""
+msgstr "За да експортирате коментарите в документи на Writer както се виждат в %PRODUCTNAME, изберете <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Инструменти - Настройки</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer - Печат</emph> и изберете настройката <emph>В полетата</emph> в областта <emph>Коментари</emph>. Експортираните страници ще бъдат смалени и коментарите ще бъдат поставени в полетата им."
#: ref_pdf_export.xhp
msgctxt ""
@@ -42039,7 +42055,7 @@ msgctxt ""
"par_id22107306\n"
"help.text"
msgid "The key store to be used can be selected under <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME - Security - Certificate Path</emph>."
-msgstr ""
+msgstr "Хранилището за ключове може да бъде избрано в <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Инструменти - Настройки</emph></defaultinline></switchinline><emph> - %PRODUCTNAME - Сигурност - Път за сертификати</emph>."
#: ref_pdf_export.xhp
msgctxt ""
@@ -42183,7 +42199,7 @@ msgctxt ""
"par_id39089022\n"
"help.text"
msgid "The list of TSA URLs that can be selected is maintained under <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME - Security - TSAs</emph>."
-msgstr ""
+msgstr "Списъкът с URL на услуги за времеви печати се управлява чрез <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Инструменти - Настройки</emph></defaultinline></switchinline><emph> - %PRODUCTNAME - Сигурност - Услуги за времеви печати (TSA)</emph>."
#: ref_pdf_export.xhp
msgctxt ""
@@ -42415,7 +42431,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Signing Existing PDF"
-msgstr ""
+msgstr "Подписване на съществуващ PDF файл"
#: signexistingpdf.xhp
msgctxt ""
@@ -42423,7 +42439,7 @@ msgctxt ""
"bm_id581526779778738\n"
"help.text"
msgid "<bookmark_value>digital signature;signing existing PDF</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>цифрови подписи;подписване на съществуващ PDF</bookmark_value>"
#: signexistingpdf.xhp
msgctxt ""
@@ -42431,7 +42447,7 @@ msgctxt ""
"hd_id201526432498222\n"
"help.text"
msgid "<variable id=\"signexisitingpdf\"><link href=\"text/shared/01/signexistingpdf.xhp\" name=\"Sign Existing PDF Files\">Signing Existing PDF files</link></variable>"
-msgstr ""
+msgstr "<variable id=\"signexisitingpdf\"><link href=\"text/shared/01/signexistingpdf.xhp\" name=\"Sign Existing PDF Files\">Подписване на съществуващи PDF файлове</link></variable>"
#: signexistingpdf.xhp
msgctxt ""
@@ -42439,7 +42455,7 @@ msgctxt ""
"par_id41526423955118\n"
"help.text"
msgid "%PRODUCTNAME can digitally sign an existing PDF document."
-msgstr ""
+msgstr "%PRODUCTNAME може да добави цифров подпис към съществуващ PDF документ."
#: signexistingpdf.xhp
msgctxt ""
@@ -42447,7 +42463,7 @@ msgctxt ""
"par_id821526581027302\n"
"help.text"
msgid "The file opens in %PRODUCTNAME Draw in read only mode."
-msgstr ""
+msgstr "Файлът се отваря в %PRODUCTNAME Draw в режим само за четене."
#: signexistingpdf.xhp
msgctxt ""
@@ -42455,7 +42471,7 @@ msgctxt ""
"par_id361526580565237\n"
"help.text"
msgid "Sign the PDF document as usual."
-msgstr ""
+msgstr "Подпишете PDF документа по обичайния начин."
#: webhtml.xhp
msgctxt ""
diff --git a/source/bg/helpcontent2/source/text/shared/guide.po b/source/bg/helpcontent2/source/text/shared/guide.po
index 992664b245f..0d69e992eee 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: 2018-05-16 16:54+0200\n"
-"PO-Revision-Date: 2018-05-17 15:08+0000\n"
+"PO-Revision-Date: 2018-06-08 11:35+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: .\n"
"Language: bg\n"
@@ -13,9 +13,9 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Pootle 2.8\n"
"X-Project-Style: openoffice\n"
-"X-POOTLE-MTIME: 1526569727.000000\n"
+"X-POOTLE-MTIME: 1528457729.000000\n"
#: aaa_start.xhp
msgctxt ""
@@ -5551,7 +5551,7 @@ msgctxt ""
"par_idN10678\n"
"help.text"
msgid "When someone later opens the document on any computer with a recent version of %PRODUCTNAME, the program will compute the checksum again and compare it with the stored checksum. If both are the same, the program will signal that you see the original, unchanged document. In addition, the program can show you the public key information from the certificate."
-msgstr "Когато по-късно някой отвори документа в компютър с актуална версия на %PRODUCTNAME, програмата ще изчисли отново контролната сума и ще я сравни със записаната. Ако двете са еднакви, програмата ще съобщии, че виждате оригиналния, непроменен документ. Освен това тя може да ви покаже информацията на публичния ключ от сертификата."
+msgstr "Когато по-късно някой отвори документа в компютър с актуална версия на %PRODUCTNAME, програмата ще изчисли отново контролната сума и ще я сравни със записаната. Ако двете са еднакви, програмата ще съобщи, че виждате оригиналния, непроменен документ. Освен това тя може да ви покаже информацията на публичния ключ от сертификата."
#: digital_signatures.xhp
msgctxt ""
@@ -12391,7 +12391,7 @@ msgctxt ""
"par_idN107CC\n"
"help.text"
msgid "If you start a new line in a Writer text document by typing three or more hyphen characters and press the Enter key, the characters are removed and the previous paragraph gets a line as a bottom border."
-msgstr "Ако започнете нов ред в текстов документ на Writer, като въведете три или повече тирета и натиснете клавиша Enter, знаците ще бъдет премахнати и към предходния абзац ще бъде добавена линия – долен кант."
+msgstr "Ако започнете нов ред в текстов документ на Writer, като въведете три или повече тирета и натиснете клавиша Enter, знаците ще бъдат премахнати и към предходния абзац ще бъде добавена линия – долен кант."
#: line_intext.xhp
msgctxt ""
diff --git a/source/bg/helpcontent2/source/text/shared/optionen.po b/source/bg/helpcontent2/source/text/shared/optionen.po
index 2838533dd91..070a0db2551 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: 2018-05-08 15:10+0200\n"
-"PO-Revision-Date: 2018-05-09 14:23+0000\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
+"PO-Revision-Date: 2018-06-05 21:20+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: .\n"
"Language: bg\n"
@@ -15,7 +15,7 @@ msgstr ""
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
"X-Project-Style: openoffice\n"
-"X-POOTLE-MTIME: 1525875817.000000\n"
+"X-POOTLE-MTIME: 1528233654.000000\n"
#: 01000000.xhp
msgctxt ""
@@ -84,6 +84,22 @@ msgstr "Бележка за потребители на macOS: в помощта
#: 01000000.xhp
msgctxt ""
"01000000.xhp\n"
+"hd_id551527692881035\n"
+"help.text"
+msgid "Help"
+msgstr "Помощ"
+
+#: 01000000.xhp
+msgctxt ""
+"01000000.xhp\n"
+"par_id831527692885723\n"
+"help.text"
+msgid "Opens the help contents for the Options page displayed."
+msgstr "Отваря съдържанието на помощта за показаната страница от „Настройки“."
+
+#: 01000000.xhp
+msgctxt ""
+"01000000.xhp\n"
"hd_id3159149\n"
"help.text"
msgid "<link href=\"text/shared/optionen/01010000.xhp\" name=\"$[officename]\">%PRODUCTNAME</link>"
@@ -4566,8 +4582,8 @@ msgctxt ""
"01030300.xhp\n"
"par_idN10640\n"
"help.text"
-msgid "Options"
-msgstr "Настройки"
+msgid "Security Options and Warnings"
+msgstr "Настройки и предупреждения за сигурността"
#: 01030300.xhp
msgctxt ""
@@ -4598,8 +4614,8 @@ msgctxt ""
"01030300.xhp\n"
"hd_id3168736\n"
"help.text"
-msgid "Persistently save passwords protected by a master password"
-msgstr "Постоянно съхранение на паролите, защитени с главна парола"
+msgid "Persistently save passwords for web connections"
+msgstr "Постоянно съхраняване на пароли за връзки с Уеб"
#: 01030300.xhp
msgctxt ""
@@ -4614,6 +4630,22 @@ msgctxt ""
"01030300.xhp\n"
"hd_id3901791\n"
"help.text"
+msgid "Protected by a master password (recommended)"
+msgstr "Защита с главна парола (препоръчва се)"
+
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"par_id31527711486980\n"
+"help.text"
+msgid "Check to enable all connections' passwords to be protected by a master password."
+msgstr "Отметнете, за да разрешите паролите на всички връзки да бъдат защитени с главна парола."
+
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"hd_id141527711343312\n"
+"help.text"
msgid "Master Password"
msgstr "Главна парола"
@@ -13734,8 +13766,8 @@ msgctxt ""
"java.xhp\n"
"hd_id3148618\n"
"help.text"
-msgid "Optional (unstable) options"
-msgstr "Незадължителни (нестабилни) възможности"
+msgid "Optional Features"
+msgstr "Незадължителни възможности"
#: java.xhp
msgctxt ""
@@ -13750,8 +13782,8 @@ msgctxt ""
"java.xhp\n"
"par_id3156344\n"
"help.text"
-msgid "It enables features that are not yet complete or contain known bugs. The list of these features is different version by version, or even it can be empty."
-msgstr "Разрешава функции, които не са завършени или съдържат известни дефекти. Списъкът на тези възможности се мени между версиите и може да е празен."
+msgid "Enables features that are not yet complete or may contain known bugs. The list of these features is different version by version, or even it can be empty."
+msgstr "Разрешава функции, които не са завършени или може да съдържат известни дефекти. Списъкът на тези възможности се мени между версиите и може да е празен."
#: java.xhp
msgctxt ""
@@ -13766,7 +13798,7 @@ msgctxt ""
"java.xhp\n"
"par_id3156345\n"
"help.text"
-msgid "It enables macro recording, so the <link href=\"text/shared/guide/macro_recording.xhp\" name=\"Tools - Macros - Record Macro\"><item type=\"menuitem\">Tools - Macros - Record Macro</item></link> menu item will be available."
+msgid "Enables macro recording. The <link href=\"text/shared/guide/macro_recording.xhp\" name=\"Tools - Macros - Record Macro\"><item type=\"menuitem\">Tools - Macros - Record Macro</item></link> menu item is available."
msgstr "Разрешава записването на макроси, така че да бъде достъпна командата <link href=\"text/shared/guide/macro_recording.xhp\" name=\"Tools - Macros - Record Macro\"><item type=\"menuitem\">Инструменти - Макроси - Записване на макрос</item></link>."
#: java.xhp
diff --git a/source/bg/helpcontent2/source/text/swriter/00.po b/source/bg/helpcontent2/source/text/swriter/00.po
index 3784222352e..e86a9b1d6a7 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: 2018-05-22 13:17+0200\n"
-"PO-Revision-Date: 2018-05-09 11:41+0000\n"
+"PO-Revision-Date: 2018-05-30 00:04+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bg\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1525866065.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1527638664.000000\n"
#: 00000004.xhp
msgctxt ""
@@ -598,7 +598,7 @@ msgctxt ""
"par_id3155990\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F2"
-msgstr ""
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F2"
#: 00000404.xhp
msgctxt ""
@@ -854,7 +854,7 @@ msgctxt ""
"par_id3150113\n"
"help.text"
msgid "<variable id=\"einfscript\">Choose <emph>Insert - Script</emph> (only HTML documents)</variable>"
-msgstr ""
+msgstr "<variable id=\"einfscript\">Изберете <emph>Вмъкване - Скрипт</emph> (само за документи на HTML).</variable>"
#: 00000404.xhp
msgctxt ""
@@ -1094,7 +1094,7 @@ msgctxt ""
"par_id3155087\n"
"help.text"
msgid "<variable id=\"umschlagb\">Choose <emph>Insert - Envelope - Envelope</emph> tab</variable>"
-msgstr ""
+msgstr "<variable id=\"umschlagb\">Изберете раздела <emph>Вмъкване - Плик за писмо - Плик</emph>.</variable>"
#: 00000404.xhp
msgctxt ""
@@ -1102,7 +1102,7 @@ msgctxt ""
"par_id3146955\n"
"help.text"
msgid "<variable id=\"formatbr\">Choose <emph>Insert - Envelope - Format</emph> tab</variable>"
-msgstr ""
+msgstr "<variable id=\"formatbr\">Изберете раздела <emph>Вмъкване - Плик за писмо - Формат</emph>.</variable>"
#: 00000404.xhp
msgctxt ""
@@ -1110,7 +1110,7 @@ msgctxt ""
"par_id3154342\n"
"help.text"
msgid "<variable id=\"druckerbr\">Choose <emph>Insert - Envelope - Printer</emph> tab</variable>"
-msgstr ""
+msgstr "<variable id=\"druckerbr\">Изберете раздела <emph>Вмъкване - Плик за писмо - Принтер</emph>.</variable>"
#: 00000404.xhp
msgctxt ""
@@ -1166,7 +1166,7 @@ msgctxt ""
"par_id3153129\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F12"
-msgstr ""
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F12"
#: 00000404.xhp
msgctxt ""
@@ -1254,7 +1254,7 @@ msgctxt ""
"par_id81526422144005\n"
"help.text"
msgid "Choose <emph>Insert - Signature Line...</emph>"
-msgstr ""
+msgstr "Изберете <emph>Вмъкване - Ред за подпис...</emph>"
#: 00000405.xhp
msgctxt ""
diff --git a/source/bg/helpcontent2/source/text/swriter/01.po b/source/bg/helpcontent2/source/text/swriter/01.po
index 4a1672e8a3d..f55d043d117 100644
--- a/source/bg/helpcontent2/source/text/swriter/01.po
+++ b/source/bg/helpcontent2/source/text/swriter/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: 2018-05-22 13:17+0200\n"
-"PO-Revision-Date: 2018-05-09 12:04+0000\n"
+"PO-Revision-Date: 2018-05-30 00:34+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: .\n"
"Language: bg\n"
@@ -13,9 +13,9 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Pootle 2.8\n"
"X-Project-Style: openoffice\n"
-"X-POOTLE-MTIME: 1525867442.000000\n"
+"X-POOTLE-MTIME: 1527640443.000000\n"
#: 01120000.xhp
msgctxt ""
@@ -23591,7 +23591,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Adding Signature Line in Text Documents"
-msgstr ""
+msgstr "Добавяне на ред за подпис в текстови документи"
#: addsignatureline.xhp
msgctxt ""
@@ -23599,7 +23599,7 @@ msgctxt ""
"bm_id821526779524753\n"
"help.text"
msgid "<bookmark_value>digital signature;add signature line</bookmark_value><bookmark_value>signature line;adding</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>цифров подпис;добавяне на ред за подпис</bookmark_value><bookmark_value>ред за подпис;добавяне</bookmark_value>"
#: addsignatureline.xhp
msgctxt ""
@@ -23607,7 +23607,7 @@ msgctxt ""
"hd_id501526421873817\n"
"help.text"
msgid "<variable id=\"addsignatureline01\"><link href=\"text/swriter/01/addsignatureline.xhp\" name=\"Adding Signature Line\">Adding a Signature Line in Text Documents</link></variable>"
-msgstr ""
+msgstr "<variable id=\"addsignatureline01\"><link href=\"text/swriter/01/addsignatureline.xhp\" name=\"Adding Signature Line\">Добавяне на ред за подпис в текстови документи</link></variable>"
#: addsignatureline.xhp
msgctxt ""
@@ -23615,7 +23615,7 @@ msgctxt ""
"par_id991526423190756\n"
"help.text"
msgid "%PRODUCTNAME Writer can insert a graphic box inside the document representing a signature line of the document."
-msgstr ""
+msgstr "%PRODUCTNAME Writer може да вмъкне в документа графично каре, което представлява ред за подпис."
#: addsignatureline.xhp
msgctxt ""
@@ -23623,7 +23623,7 @@ msgctxt ""
"par_id751526436546030\n"
"help.text"
msgid "<image src=\"media/helpimg/sw_signatureline01.png\" id=\"img_id91526436546031\" width=\"311px\" height=\"179px\"> <alt id=\"alt_id351526436546031\">Signature Line Box</alt> </image>"
-msgstr ""
+msgstr "<image src=\"media/helpimg/sw_signatureline01.png\" id=\"img_id91526436546031\" width=\"311px\" height=\"179px\"> <alt id=\"alt_id351526436546031\">Каре с ред за подпис</alt> </image>"
#: addsignatureline.xhp
msgctxt ""
@@ -23631,7 +23631,7 @@ msgctxt ""
"par_id651526423393786\n"
"help.text"
msgid "The signature line displays an horizontal line, a location mark, the name, title and e-mail of signer."
-msgstr ""
+msgstr "Редът за подпис съдържа хоризонтална линия, маркер за позиция и името, длъжността и адреса за е-поща на подписващия."
#: addsignatureline.xhp
msgctxt ""
@@ -23639,7 +23639,7 @@ msgctxt ""
"hd_id631526467960460\n"
"help.text"
msgid "Name"
-msgstr ""
+msgstr "Име"
#: addsignatureline.xhp
msgctxt ""
@@ -23647,7 +23647,7 @@ msgctxt ""
"par_id351526467968348\n"
"help.text"
msgid "Insert the name of the signer. The name is displayed in the signature line graphic box."
-msgstr ""
+msgstr "Въведете името на подписващия. То се изписва в графичното каре с реда за подпис."
#: addsignatureline.xhp
msgctxt ""
@@ -23655,7 +23655,7 @@ msgctxt ""
"hd_id171526467974440\n"
"help.text"
msgid "Title"
-msgstr ""
+msgstr "Длъжност"
#: addsignatureline.xhp
msgctxt ""
@@ -23663,7 +23663,7 @@ msgctxt ""
"par_id701526467979209\n"
"help.text"
msgid "Enter the title of the signer. The title is displayed in the signature line graphic box."
-msgstr ""
+msgstr "Въведете длъжността на подписващия. Тя се изписва в графичното каре с реда за подпис."
#: addsignatureline.xhp
msgctxt ""
@@ -23671,7 +23671,7 @@ msgctxt ""
"hd_id431526467986157\n"
"help.text"
msgid "Email"
-msgstr ""
+msgstr "Е-поща"
#: addsignatureline.xhp
msgctxt ""
@@ -23679,7 +23679,7 @@ msgctxt ""
"par_id111526467993387\n"
"help.text"
msgid "Enter the e-mail of the signer. The email is not displayed in the signature line graphic box, and is be used for the digital signature."
-msgstr ""
+msgstr "Въведете адреса за е-поща на подписващия. Той не се показва в графичното каре с реда за подпис, а се използва за цифровия подпис."
#: addsignatureline.xhp
msgctxt ""
@@ -23687,7 +23687,7 @@ msgctxt ""
"hd_id451526468019876\n"
"help.text"
msgid "Signer can add comments"
-msgstr ""
+msgstr "Подписващият може да коментира"
#: addsignatureline.xhp
msgctxt ""
@@ -23695,7 +23695,7 @@ msgctxt ""
"par_id531526562791579\n"
"help.text"
msgid "Enable signer to insert comments in the Sign Signature Line dialog at time of signature."
-msgstr ""
+msgstr "Позволява на подписващия да въвежда коментари в диалога „Подписване на реда за подпис“ по време на подписването."
#: addsignatureline.xhp
msgctxt ""
@@ -23703,7 +23703,7 @@ msgctxt ""
"hd_id31526468046686\n"
"help.text"
msgid "Show sign date in signature line"
-msgstr ""
+msgstr "Дата на подписването в реда за подпис"
#: addsignatureline.xhp
msgctxt ""
@@ -23711,7 +23711,7 @@ msgctxt ""
"par_id11526468051934\n"
"help.text"
msgid "Mark this checkbox to display the date of the signature, at the time when the document is digitally signed."
-msgstr ""
+msgstr "Отметнете това квадратче, за да се покаже дата на подписа в момента на цифровото подписване на допкумента."
#: addsignatureline.xhp
msgctxt ""
@@ -23719,7 +23719,7 @@ msgctxt ""
"hd_id791526468057743\n"
"help.text"
msgid "Instructions to the signer"
-msgstr ""
+msgstr "Указания за подписващия"
#: addsignatureline.xhp
msgctxt ""
@@ -23727,7 +23727,7 @@ msgctxt ""
"par_id131526560799876\n"
"help.text"
msgid "Insert instructions for the signer. The instructions appears in the Sign Signature Line dialog box, at the time of signature."
-msgstr ""
+msgstr "Въведете указания за подписващия. Те ще се покажат в диалоговия прозорец „Подписване на реда за подпис“ по време на подписването."
#: format_object.xhp
msgctxt ""
@@ -26359,7 +26359,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Signing the Signature Line"
-msgstr ""
+msgstr "Подписване на реда за подпис"
#: signsignatureline.xhp
msgctxt ""
@@ -26367,7 +26367,7 @@ msgctxt ""
"bm_id651526779220785\n"
"help.text"
msgid "<bookmark_value>digital signature;sign signature line</bookmark_value><bookmark_value>signature line;signing</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>цифров подпис;подписване на ред за подпис</bookmark_value><bookmark_value>ред за подпис;подписване</bookmark_value>"
#: signsignatureline.xhp
msgctxt ""
@@ -26375,7 +26375,7 @@ msgctxt ""
"hd_id401526575112776\n"
"help.text"
msgid "<variable id=\"signsignatureline01\"><link href=\"text/swriter/01/signsignatureline.xhp\" name=\"Sign Signature Line\">Digitally Signing the Signature Line</link></variable>"
-msgstr ""
+msgstr "<variable id=\"signsignatureline01\"><link href=\"text/swriter/01/signsignatureline.xhp\" name=\"Sign Signature Line\">Цифрово подписване на реда за подпис</link></variable>"
#: signsignatureline.xhp
msgctxt ""
@@ -26383,7 +26383,7 @@ msgctxt ""
"par_id611526575121298\n"
"help.text"
msgid "%PRODUCTNAME Writer lets you sign digitally a signature line."
-msgstr ""
+msgstr "%PRODUCTNAME Writer позволява цифрово подписване на реда за подпис."
#: signsignatureline.xhp
msgctxt ""
@@ -26391,7 +26391,7 @@ msgctxt ""
"par_id511526575127337\n"
"help.text"
msgid "On signing a signature line, %PRODUCTNAME Writer fills the line with the name of signer, adds the digital certificate issuer information and optionally insert the date of signature."
-msgstr ""
+msgstr "При подписването %PRODUCTNAME Writer попълва реда с името на подписващия, добавя информация за издателя на цифровия сертификат и по желание може да вмъкне датата на подписване."
#: signsignatureline.xhp
msgctxt ""
@@ -26399,7 +26399,7 @@ msgctxt ""
"par_id291526564031387\n"
"help.text"
msgid "Select the signature line graphic object context menu. Choose <emph>Sign Signature Line</emph>."
-msgstr ""
+msgstr "Отворете контекстното меню на графичния обект с реда за подпис. Изберете <emph>Подписване на реда за подпис</emph>."
#: signsignatureline.xhp
msgctxt ""
@@ -26407,7 +26407,7 @@ msgctxt ""
"hd_id311526563971364\n"
"help.text"
msgid "Your Name"
-msgstr ""
+msgstr "Вашето име"
#: signsignatureline.xhp
msgctxt ""
@@ -26415,7 +26415,7 @@ msgctxt ""
"par_id511526564217965\n"
"help.text"
msgid "Enter your name as signer of the document. Your name will be inserted above the signature horizontal line."
-msgstr ""
+msgstr "Въведете името си като подписващ документа. То ще бъде вмъкнато над хоризонталната линия за подпис."
#: signsignatureline.xhp
msgctxt ""
@@ -26423,7 +26423,7 @@ msgctxt ""
"hd_id401526563978041\n"
"help.text"
msgid "Certificate"
-msgstr ""
+msgstr "Сертификат"
#: signsignatureline.xhp
msgctxt ""
@@ -26431,7 +26431,7 @@ msgctxt ""
"par_id31526564223526\n"
"help.text"
msgid "Click on the Select Certificate button to open the Select Certificate dialog box, where your certificates are listed. Select the certificate suitable for signing the document."
-msgstr ""
+msgstr "Щракнете върху бутона „Избор на сертификат“, за да отворите диалоговия прозорец „Избор на сертификат“, в който са изброени сертификатите ви. Изберете подходящ сертификат за подписване на документа."
#: signsignatureline.xhp
msgctxt ""
@@ -26439,7 +26439,7 @@ msgctxt ""
"par_id251526576138883\n"
"help.text"
msgid "The information of the certificate issuer is inserted in the bottom of the Signature Line object."
-msgstr ""
+msgstr "Информацията за издателя на сертификата се вмъква в долната част на обекта „Ред за подпис“."
#: signsignatureline.xhp
msgctxt ""
@@ -26447,7 +26447,7 @@ msgctxt ""
"hd_id301526563985718\n"
"help.text"
msgid "Instructions from the document creator"
-msgstr ""
+msgstr "Указания от създателя на документа"
#: signsignatureline.xhp
msgctxt ""
@@ -26455,7 +26455,7 @@ msgctxt ""
"par_id271526564228571\n"
"help.text"
msgid "This area displays the instructions entered by the document creator when <link href=\"text/swriter/01/addsignatureline.xhp\" name=\"Adding the Signature Line\">adding the signature line</link>."
-msgstr ""
+msgstr "В тази област се показват указанията, въведени от създателя на документа по време на <link href=\"text/swriter/01/addsignatureline.xhp\" name=\"Adding the Signature Line\">добавянето на реда за подпис</link>."
#: signsignatureline.xhp
msgctxt ""
@@ -26463,7 +26463,7 @@ msgctxt ""
"hd_id161526563992082\n"
"help.text"
msgid "Add comments"
-msgstr ""
+msgstr "Коментар"
#: signsignatureline.xhp
msgctxt ""
@@ -26471,7 +26471,7 @@ msgctxt ""
"par_id21526564234712\n"
"help.text"
msgid "Enter comments about the signature. The comments are displayed in the <emph>Description</emph> field of the certificate."
-msgstr ""
+msgstr "Въведете коментари относно подписа. Те се показват в полето <emph>Описание</emph> на сертификата."
#: signsignatureline.xhp
msgctxt ""
@@ -26479,7 +26479,7 @@ msgctxt ""
"par_id621526576147414\n"
"help.text"
msgid "If enabled when the signature line was created, the date of signature is inserted on the top right of the signature line object."
-msgstr ""
+msgstr "Ако е разрешено при създаването на реда за подпис, датата на подписа се вмъква в горния десен ъгъл на обекта му."
#: signsignatureline.xhp
msgctxt ""
@@ -26487,7 +26487,7 @@ msgctxt ""
"par_id21526579319036\n"
"help.text"
msgid "<image src=\"media/helpimg/sw_signatureline02.png\" id=\"img_id551526579319036\" width=\"280px\" height=\"173px\"><alt id=\"alt_id641526579319036\">Signed Signature Line</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/helpimg/sw_signatureline02.png\" id=\"img_id551526579319036\" width=\"280px\" height=\"173px\"><alt id=\"alt_id641526579319036\">Подписан ред за подпис</alt></image>"
#: title_page.xhp
msgctxt ""
diff --git a/source/bg/officecfg/registry/data/org/openoffice/Office/UI.po b/source/bg/officecfg/registry/data/org/openoffice/Office/UI.po
index 35e9d6a5370..3fdfa3ab154 100644
--- a/source/bg/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/bg/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-22 13:17+0200\n"
-"PO-Revision-Date: 2018-05-08 14:49+0000\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
+"PO-Revision-Date: 2018-06-08 12:34+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bg\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1525790952.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1528461294.000000\n"
#: BaseWindowState.xcu
msgctxt ""
@@ -149,7 +149,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Form Horizontal Scroll Bar"
-msgstr ""
+msgstr "Формуляр - хоризонтален плъзгач"
#: BasicIDECommands.xcu
msgctxt ""
@@ -9248,7 +9248,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Distribute Rows Equally "
-msgstr "Равни височини на редове"
+msgstr "Равни височини на редове "
#: DrawImpressCommands.xcu
msgctxt ""
@@ -25342,7 +25342,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Tabbed"
-msgstr ""
+msgstr "С раздели"
#: ToolbarMode.xcu
msgctxt ""
@@ -25351,7 +25351,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Groupedbar Compact"
-msgstr ""
+msgstr "Лента с групи, компактна"
#: ToolbarMode.xcu
msgctxt ""
@@ -25360,7 +25360,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Groupedbar"
-msgstr ""
+msgstr "Лента с групи"
#: ToolbarMode.xcu
msgctxt ""
@@ -26520,8 +26520,8 @@ msgctxt ""
"..WriterCommands.UserInterface.Commands..uno:TextAttributes\n"
"Label\n"
"value.text"
-msgid "Text Attributes"
-msgstr "Свойства на текста"
+msgid "Text Attributes..."
+msgstr "Атрибути на текста..."
#: WriterCommands.xcu
msgctxt ""
diff --git a/source/bg/readlicense_oo/docs.po b/source/bg/readlicense_oo/docs.po
index ce2e4b0a72d..cdfa555558e 100644
--- a/source/bg/readlicense_oo/docs.po
+++ b/source/bg/readlicense_oo/docs.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: 2018-04-17 15:54+0200\n"
-"PO-Revision-Date: 2018-04-19 13:39+0000\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
+"PO-Revision-Date: 2018-06-08 11:35+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bg\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1524145164.000000\n"
+"X-POOTLE-MTIME: 1528457756.000000\n"
#: readme.xrm
msgctxt ""
@@ -117,8 +117,8 @@ msgctxt ""
"readme.xrm\n"
"macxiOSX\n"
"readmeitem.text"
-msgid "MacOSX 10.8 (Mountain Lion) or higher"
-msgstr "MacOSX 10.8 (Mountain Lion) или по-нова"
+msgid "MacOSX 10.9 (Mavericks) or higher"
+msgstr "MacOSX 10.9 (Mavericks) или по-висока"
#: readme.xrm
msgctxt ""
@@ -454,7 +454,7 @@ msgctxt ""
"linuxlangpack5\n"
"readmeitem.text"
msgid "From the Nautilus file manager, right-click in the directory and choose the command \"Open in terminal\". In the terminal window you just opened, execute the command to install the language pack (with all of the commands below, you may be prompted to enter your root user's password):"
-msgstr "Във файловия диспечер Nautilus щракнете с десния бутон в директорията и изберете командата „Отваряне в терминал“. В току-що отворения прозореца на терминала подайте командата за инсталиране на езиковия пакет (за всяка от изброените по-долу команди може да бъдете подканени да въведете паролата на потребителя root):"
+msgstr "Във файловия диспечер Nautilus щракнете с десния бутон в директорията и изберете командата „Отваряне в терминал“. В току-що отворения прозорец на терминала подайте командата за инсталиране на езиковия пакет (за всяка от изброените по-долу команди може да бъдете подканени да въведете паролата на потребителя root):"
#: readme.xrm
msgctxt ""
diff --git a/source/bg/reportdesign/messages.po b/source/bg/reportdesign/messages.po
index ff33ecbc9c7..bf11c5fafe1 100644
--- a/source/bg/reportdesign/messages.po
+++ b/source/bg/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: 2018-05-22 13:17+0200\n"
-"PO-Revision-Date: 2017-11-06 00:21+0000\n"
+"PO-Revision-Date: 2018-06-08 12:43+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bg\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1509927694.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1528461811.000000\n"
#: reportdesign/inc/stringarray.hrc:17
msgctxt "RID_STR_FORCENEWPAGE_CONST"
@@ -500,22 +500,22 @@ msgstr "Промяна на свойство \"#\""
#: reportdesign/inc/strings.hrc:98
msgctxt "RID_STR_UNDO_ADD_GROUP_HEADER"
msgid "Add group header "
-msgstr "Добавяне на горен колонтитул на група"
+msgstr "Добавяне горен колонтитул на група "
#: reportdesign/inc/strings.hrc:99
msgctxt "RID_STR_UNDO_REMOVE_GROUP_HEADER"
msgid "Remove group header "
-msgstr "Премахване на горен колонтитул на група"
+msgstr "Премахване горен колонтитул на група "
#: reportdesign/inc/strings.hrc:100
msgctxt "RID_STR_UNDO_ADD_GROUP_FOOTER"
msgid "Add group footer "
-msgstr "Добавяне на долен колонтитул на група"
+msgstr "Добавяне долен колонтитул на група "
#: reportdesign/inc/strings.hrc:101
msgctxt "RID_STR_UNDO_REMOVE_GROUP_FOOTER"
msgid "Remove group footer "
-msgstr "Премахване на долен колонтитул на група"
+msgstr "Премахване долен колонтитул на група "
#: reportdesign/inc/strings.hrc:102
msgctxt "RID_STR_UNDO_ADDFUNCTION"
diff --git a/source/bg/sc/messages.po b/source/bg/sc/messages.po
index 56e4e7586ce..17e48f93fe8 100644
--- a/source/bg/sc/messages.po
+++ b/source/bg/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: 2018-05-22 13:16+0200\n"
-"PO-Revision-Date: 2018-05-17 09:34+0000\n"
+"POT-Creation-Date: 2018-06-12 14:40+0200\n"
+"PO-Revision-Date: 2018-06-13 09:15+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bg\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1526549676.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1528881334.000000\n"
#: sc/inc/compiler.hrc:27
msgctxt "RID_FUNCTION_CATEGORIES"
@@ -1870,16 +1870,21 @@ msgid "Nested arrays are not supported."
msgstr "Не се поддържат вложени масиви."
#: sc/inc/globstr.hrc:390
+msgctxt "STR_ERR_LONG_BAD_ARRAY_CONTENT"
+msgid "Unsupported inline array content."
+msgstr "Не се поддържа такъв вид съдържание на вграден масив."
+
+#: sc/inc/globstr.hrc:391
msgctxt "STR_UNDO_TEXTTOCOLUMNS"
msgid "Text to Columns"
msgstr "Текст към колони"
-#: sc/inc/globstr.hrc:391
+#: sc/inc/globstr.hrc:392
msgctxt "STR_DOC_UPDATED"
msgid "Your spreadsheet has been updated with changes saved by other users."
msgstr "Електронната таблица бе обновена с промени, записани от други потребители."
-#: sc/inc/globstr.hrc:392
+#: sc/inc/globstr.hrc:393
msgctxt "STR_DOC_WILLBESAVED"
msgid ""
"The spreadsheet must be saved now to activate sharing mode.\n"
@@ -1890,7 +1895,7 @@ msgstr ""
"\n"
"Желаете ли да продължите?"
-#: sc/inc/globstr.hrc:393
+#: sc/inc/globstr.hrc:394
msgctxt "STR_DOC_WILLNOTBESAVED"
msgid ""
"Already resolved merge conflicts will be lost and your changes to the shared spreadsheet will not be saved.\n"
@@ -1901,7 +1906,7 @@ msgstr ""
"\n"
"Желаете ли да продължите?"
-#: sc/inc/globstr.hrc:394
+#: sc/inc/globstr.hrc:395
msgctxt "STR_DOC_DISABLESHARED"
msgid ""
"Disabling shared mode of a spreadsheet hinders all other users of the shared spreadsheet to merge back their work.\n"
@@ -1912,7 +1917,7 @@ msgstr ""
"\n"
"Желаете ли да продължите?"
-#: sc/inc/globstr.hrc:395
+#: sc/inc/globstr.hrc:396
msgctxt "STR_DOC_NOLONGERSHARED"
msgid ""
"This spreadsheet is no longer in shared mode.\n"
@@ -1923,7 +1928,7 @@ msgstr ""
"\n"
"Запишете я в отделен файл и обединете ръчно промените в споделената електронна таблица."
-#: sc/inc/globstr.hrc:396
+#: sc/inc/globstr.hrc:397
msgctxt "STR_FILE_LOCKED_TRY_LATER"
msgid ""
"The shared spreadsheet file is locked due to a merge in progress by user: '%1'\n"
@@ -1934,7 +1939,7 @@ msgstr ""
"\n"
"Режимът на споделяне на заключен файл не може да се променя. Опитайте отново по-късно."
-#: sc/inc/globstr.hrc:397
+#: sc/inc/globstr.hrc:398
msgctxt "STR_FILE_LOCKED_SAVE_LATER"
msgid ""
"The shared spreadsheet file is locked due to a merge in progress by user: '%1'\n"
@@ -1945,147 +1950,147 @@ msgstr ""
"\n"
"Опитайте отново да запишете промените си по-късно."
-#: sc/inc/globstr.hrc:398
+#: sc/inc/globstr.hrc:399
msgctxt "STR_UNKNOWN_USER"
msgid "Unknown User"
msgstr "Неизвестен потребител"
-#: sc/inc/globstr.hrc:399
+#: sc/inc/globstr.hrc:400
msgctxt "STR_SHAPE_AUTOSHAPE"
msgid "AutoShape"
msgstr "Автофигура"
-#: sc/inc/globstr.hrc:400
+#: sc/inc/globstr.hrc:401
msgctxt "STR_SHAPE_RECTANGLE"
msgid "Rectangle"
msgstr "Правоъгълник"
-#: sc/inc/globstr.hrc:401
+#: sc/inc/globstr.hrc:402
msgctxt "STR_SHAPE_LINE"
msgid "Line"
msgstr "Ред"
-#: sc/inc/globstr.hrc:402
+#: sc/inc/globstr.hrc:403
msgctxt "STR_SHAPE_OVAL"
msgid "Oval"
msgstr "Овал"
-#: sc/inc/globstr.hrc:403
+#: sc/inc/globstr.hrc:404
msgctxt "STR_FORM_BUTTON"
msgid "Button"
msgstr "Бутон"
-#: sc/inc/globstr.hrc:404
+#: sc/inc/globstr.hrc:405
msgctxt "STR_FORM_CHECKBOX"
msgid "Check Box"
msgstr "Поле за отметка"
-#: sc/inc/globstr.hrc:405
+#: sc/inc/globstr.hrc:406
msgctxt "STR_FORM_OPTIONBUTTON"
msgid "Option Button"
msgstr "Бутон за избор"
-#: sc/inc/globstr.hrc:406
+#: sc/inc/globstr.hrc:407
msgctxt "STR_FORM_LABEL"
msgid "Label"
msgstr "Надпис"
-#: sc/inc/globstr.hrc:407
+#: sc/inc/globstr.hrc:408
msgctxt "STR_FORM_LISTBOX"
msgid "List Box"
msgstr "Списъчно поле"
-#: sc/inc/globstr.hrc:408
+#: sc/inc/globstr.hrc:409
msgctxt "STR_FORM_GROUPBOX"
msgid "Group Box"
msgstr "Групираща рамка"
-#: sc/inc/globstr.hrc:409
+#: sc/inc/globstr.hrc:410
msgctxt "STR_FORM_DROPDOWN"
msgid "Drop Down"
msgstr "Падащ списък"
-#: sc/inc/globstr.hrc:410
+#: sc/inc/globstr.hrc:411
msgctxt "STR_FORM_SPINNER"
msgid "Spinner"
msgstr "Брояч"
-#: sc/inc/globstr.hrc:411
+#: sc/inc/globstr.hrc:412
msgctxt "STR_FORM_SCROLLBAR"
msgid "Scroll Bar"
msgstr "Плъзгач"
-#: sc/inc/globstr.hrc:412
+#: sc/inc/globstr.hrc:413
msgctxt "STR_STYLE_FAMILY_CELL"
msgid "Cell Styles"
msgstr "Стилове за клетки"
-#: sc/inc/globstr.hrc:413
+#: sc/inc/globstr.hrc:414
msgctxt "STR_STYLE_FAMILY_PAGE"
msgid "Page Styles"
msgstr "Стилове за страници"
-#: sc/inc/globstr.hrc:414
+#: sc/inc/globstr.hrc:415
msgctxt "STR_ERR_DATAPILOTSOURCE"
msgid "Pivot table source data is invalid."
msgstr "Невалиден източник на данни за обобщаващата таблица."
-#: sc/inc/globstr.hrc:415
+#: sc/inc/globstr.hrc:416
msgctxt "STR_OPTIONS_WARN_SEPARATORS"
msgid "Because the current formula separator settings conflict with the locale, the formula separators have been reset to their default values."
msgstr "Текущият разделител за формули е в противоречие с локала, затова разделителите за формули са върнати към подразбираните си стойности."
-#: sc/inc/globstr.hrc:416
+#: sc/inc/globstr.hrc:417
msgctxt "STR_UNDO_INSERT_CURRENT_DATE"
msgid "Insert Current Date"
msgstr "Вмъкване на текущата дата"
-#: sc/inc/globstr.hrc:417
+#: sc/inc/globstr.hrc:418
msgctxt "STR_UNDO_INSERT_CURRENT_TIME"
msgid "Insert Current Time"
msgstr "Вмъкване на текущия час"
-#: sc/inc/globstr.hrc:418
+#: sc/inc/globstr.hrc:419
msgctxt "STR_MANAGE_NAMES"
msgid "Manage Names..."
msgstr "Управление на имена…"
-#: sc/inc/globstr.hrc:419
+#: sc/inc/globstr.hrc:420
msgctxt "STR_HEADER_NAME"
msgid "Name"
msgstr "Име"
-#: sc/inc/globstr.hrc:420
+#: sc/inc/globstr.hrc:421
msgctxt "STR_HEADER_RANGE_OR_EXPR"
msgid "Range or formula expression"
msgstr "Израз – диапазон или формула"
-#: sc/inc/globstr.hrc:421
+#: sc/inc/globstr.hrc:422
msgctxt "STR_HEADER_SCOPE"
msgid "Scope"
msgstr "Обхват"
-#: sc/inc/globstr.hrc:422
+#: sc/inc/globstr.hrc:423
msgctxt "STR_MULTI_SELECT"
msgid "(multiple)"
msgstr "(няколко)"
-#: sc/inc/globstr.hrc:423
+#: sc/inc/globstr.hrc:424
msgctxt "STR_GLOBAL_SCOPE"
msgid "Document (Global)"
msgstr "Документ (глобално)"
-#: sc/inc/globstr.hrc:424
+#: sc/inc/globstr.hrc:425
msgctxt "STR_ERR_NAME_EXISTS"
msgid "Invalid name. Already in use for the selected scope."
msgstr "Невалидно име. Вече е използвано в избрания обхват."
-#: sc/inc/globstr.hrc:425
+#: sc/inc/globstr.hrc:426
msgctxt "STR_ERR_NAME_INVALID"
msgid "Invalid name. Only use letters, numbers and underscore."
msgstr "Невалидно име. Използвайте само букви, цифри и знак долна черта."
-#: sc/inc/globstr.hrc:426
+#: sc/inc/globstr.hrc:427
msgctxt "STR_UNSAVED_EXT_REF"
msgid ""
"This Document contains external references to unsaved documents.\n"
@@ -2096,217 +2101,217 @@ msgstr ""
"\n"
"Желаете ли да продължите?"
-#: sc/inc/globstr.hrc:427
+#: sc/inc/globstr.hrc:428
msgctxt "STR_CLOSE_WITH_UNSAVED_REFS"
msgid "This Document is referenced by another document and not yet saved. Closing it without saving will result in data loss."
msgstr "Документът е цел на обръщение от друг документ и още не е записан. Затварянето му без записване ще предизвика загуба на данни."
-#: sc/inc/globstr.hrc:428
+#: sc/inc/globstr.hrc:429
msgctxt "STR_HEADER_RANGE"
msgid "Range"
msgstr "Област"
-#: sc/inc/globstr.hrc:429
+#: sc/inc/globstr.hrc:430
msgctxt "STR_HEADER_COND"
msgid "First Condition"
msgstr "Първо условие"
-#: sc/inc/globstr.hrc:430
+#: sc/inc/globstr.hrc:431
msgctxt "STR_COND_CONDITION"
msgid "Cell value is"
msgstr "Стойността на клетката е"
-#: sc/inc/globstr.hrc:431
+#: sc/inc/globstr.hrc:432
msgctxt "STR_COND_COLORSCALE"
msgid "ColorScale"
msgstr "Цветова скала"
-#: sc/inc/globstr.hrc:432
+#: sc/inc/globstr.hrc:433
msgctxt "STR_COND_DATABAR"
msgid "DataBar"
msgstr "Лента за данни"
-#: sc/inc/globstr.hrc:433
+#: sc/inc/globstr.hrc:434
msgctxt "STR_COND_ICONSET"
msgid "IconSet"
msgstr "Набор икони"
-#: sc/inc/globstr.hrc:434
+#: sc/inc/globstr.hrc:435
msgctxt "STR_COND_BETWEEN"
msgid "between"
msgstr "между"
-#: sc/inc/globstr.hrc:435
+#: sc/inc/globstr.hrc:436
msgctxt "STR_COND_NOTBETWEEN"
msgid "not between"
msgstr "не между"
-#: sc/inc/globstr.hrc:436
+#: sc/inc/globstr.hrc:437
msgctxt "STR_COND_UNIQUE"
msgid "unique"
msgstr "уникален"
-#: sc/inc/globstr.hrc:437
+#: sc/inc/globstr.hrc:438
msgctxt "STR_COND_DUPLICATE"
msgid "duplicate"
msgstr "дубликат"
-#: sc/inc/globstr.hrc:438
+#: sc/inc/globstr.hrc:439
msgctxt "STR_COND_FORMULA"
msgid "Formula is"
msgstr "Формулата е"
-#: sc/inc/globstr.hrc:439
+#: sc/inc/globstr.hrc:440
msgctxt "STR_COND_TOP10"
msgid "Top Elements"
msgstr "Първи елементи"
-#: sc/inc/globstr.hrc:440
+#: sc/inc/globstr.hrc:441
msgctxt "STR_COND_BOTTOM10"
msgid "Bottom Elements"
msgstr "Последни елементи"
-#: sc/inc/globstr.hrc:441
+#: sc/inc/globstr.hrc:442
msgctxt "STR_COND_TOP_PERCENT"
msgid "Top Percent"
msgstr "Високи проценти"
-#: sc/inc/globstr.hrc:442
+#: sc/inc/globstr.hrc:443
msgctxt "STR_COND_DATE"
msgid "Date is"
msgstr "Датата е"
-#: sc/inc/globstr.hrc:443
+#: sc/inc/globstr.hrc:444
msgctxt "STR_COND_BOTTOM_PERCENT"
msgid "Bottom Percent"
msgstr "Ниски проценти"
-#: sc/inc/globstr.hrc:444
+#: sc/inc/globstr.hrc:445
msgctxt "STR_COND_ABOVE_AVERAGE"
msgid "Above Average"
msgstr "Над средното"
-#: sc/inc/globstr.hrc:445
+#: sc/inc/globstr.hrc:446
msgctxt "STR_COND_BELOW_AVERAGE"
msgid "Below Average"
msgstr "Под средното"
-#: sc/inc/globstr.hrc:446
+#: sc/inc/globstr.hrc:447
msgctxt "STR_COND_ABOVE_EQUAL_AVERAGE"
msgid "Above or equal Average"
msgstr "Над или равно на средното"
-#: sc/inc/globstr.hrc:447
+#: sc/inc/globstr.hrc:448
msgctxt "STR_COND_BELOW_EQUAL_AVERAGE"
msgid "Below or equal Average"
msgstr "Под или равно на средното"
-#: sc/inc/globstr.hrc:448
+#: sc/inc/globstr.hrc:449
msgctxt "STR_COND_ERROR"
msgid "an Error code"
msgstr "Код на грешка"
-#: sc/inc/globstr.hrc:449
+#: sc/inc/globstr.hrc:450
msgctxt "STR_COND_NOERROR"
msgid "not an Error code"
msgstr "Не код на грешка"
-#: sc/inc/globstr.hrc:450
+#: sc/inc/globstr.hrc:451
msgctxt "STR_COND_BEGINS_WITH"
msgid "Begins with"
msgstr "Започва с"
-#: sc/inc/globstr.hrc:451
+#: sc/inc/globstr.hrc:452
msgctxt "STR_COND_ENDS_WITH"
msgid "Ends with"
msgstr "Завършва с"
-#: sc/inc/globstr.hrc:452
+#: sc/inc/globstr.hrc:453
msgctxt "STR_COND_CONTAINS"
msgid "Contains"
msgstr "Съдържа"
-#: sc/inc/globstr.hrc:453
+#: sc/inc/globstr.hrc:454
msgctxt "STR_COND_NOT_CONTAINS"
msgid "Not Contains"
msgstr "Не съдържа"
-#: sc/inc/globstr.hrc:454
+#: sc/inc/globstr.hrc:455
msgctxt "STR_COND_TODAY"
msgid "today"
msgstr "днес"
-#: sc/inc/globstr.hrc:455
+#: sc/inc/globstr.hrc:456
msgctxt "STR_COND_YESTERDAY"
msgid "yesterday"
msgstr "вчера"
-#: sc/inc/globstr.hrc:456
+#: sc/inc/globstr.hrc:457
msgctxt "STR_COND_TOMORROW"
msgid "tomorrow"
msgstr "утре"
-#: sc/inc/globstr.hrc:457
+#: sc/inc/globstr.hrc:458
msgctxt "STR_COND_LAST7DAYS"
msgid "in the last 7 days"
msgstr "през последните 7 дни"
-#: sc/inc/globstr.hrc:458
+#: sc/inc/globstr.hrc:459
msgctxt "STR_COND_THISWEEK"
msgid "this week"
msgstr "тази седмица"
-#: sc/inc/globstr.hrc:459
+#: sc/inc/globstr.hrc:460
msgctxt "STR_COND_LASTWEEK"
msgid "last week"
msgstr "миналата седмица"
-#: sc/inc/globstr.hrc:460
+#: sc/inc/globstr.hrc:461
msgctxt "STR_COND_NEXTWEEK"
msgid "next week"
msgstr "следващата седмица"
-#: sc/inc/globstr.hrc:461
+#: sc/inc/globstr.hrc:462
msgctxt "STR_COND_THISMONTH"
msgid "this month"
msgstr "този месец"
-#: sc/inc/globstr.hrc:462
+#: sc/inc/globstr.hrc:463
msgctxt "STR_COND_LASTMONTH"
msgid "last month"
msgstr "миналия месец"
-#: sc/inc/globstr.hrc:463
+#: sc/inc/globstr.hrc:464
msgctxt "STR_COND_NEXTMONTH"
msgid "next month"
msgstr "следващия месец"
-#: sc/inc/globstr.hrc:464
+#: sc/inc/globstr.hrc:465
msgctxt "STR_COND_THISYEAR"
msgid "this year"
msgstr "тази година"
-#: sc/inc/globstr.hrc:465
+#: sc/inc/globstr.hrc:466
msgctxt "STR_COND_LASTYEAR"
msgid "last year"
msgstr "миналата година"
-#: sc/inc/globstr.hrc:466
+#: sc/inc/globstr.hrc:467
msgctxt "STR_COND_NEXTYEAR"
msgid "next year"
msgstr "следващата година"
-#: sc/inc/globstr.hrc:467
+#: sc/inc/globstr.hrc:468
msgctxt "STR_COND_AND"
msgid "and"
msgstr "и"
-#: sc/inc/globstr.hrc:468
+#: sc/inc/globstr.hrc:469
msgctxt "STR_ERR_CONDFORMAT_PROTECTED"
msgid "Conditional Formats can not be created, deleted or changed in protected sheets."
msgstr "В защитени листове не могат да се създават, изтриват и променят условни формати."
-#: sc/inc/globstr.hrc:469
+#: sc/inc/globstr.hrc:470
msgctxt "STR_EDIT_EXISTING_COND_FORMATS"
msgid ""
"The selected cell already contains conditional formatting. You can either edit the existing conditional format or you define a new overlapping conditional format.\n"
@@ -2317,7 +2322,7 @@ msgstr ""
"\n"
"Желаете ли да редактирате съществуващия условен формат?"
-#: sc/inc/globstr.hrc:470
+#: sc/inc/globstr.hrc:471
msgctxt "STR_QUERY_FORMULA_RECALC_ONLOAD_ODS"
msgid ""
"This document was last saved by an application other than %PRODUCTNAME. Some formula cells may produce different results when recalculated.\n"
@@ -2328,7 +2333,7 @@ msgstr ""
"\n"
"Желаете ли веднага да се преизчислят всички формули в документа?"
-#: sc/inc/globstr.hrc:471
+#: sc/inc/globstr.hrc:472
msgctxt "STR_QUERY_FORMULA_RECALC_ONLOAD_XLS"
msgid ""
"This document was last saved by Excel. Some formula cells may produce different results when recalculated.\n"
@@ -2339,77 +2344,77 @@ msgstr ""
"\n"
"Желаете ли веднага да се преизчислят всички формули в документа?"
-#: sc/inc/globstr.hrc:472
+#: sc/inc/globstr.hrc:473
msgctxt "STR_NO_INSERT_DELETE_OVER_PIVOT_TABLE"
msgid "You cannot insert or delete cells when the affected range intersects with pivot table."
msgstr "Не можете да вмъквате или изтривате клетки в области, застъпени от обобщаваща таблица."
-#: sc/inc/globstr.hrc:473
+#: sc/inc/globstr.hrc:474
msgctxt "STR_DPFIELD_GROUP_BY_SECONDS"
msgid "Seconds"
msgstr "Секунди"
-#: sc/inc/globstr.hrc:474
+#: sc/inc/globstr.hrc:475
msgctxt "STR_DPFIELD_GROUP_BY_MINUTES"
msgid "Minutes"
msgstr "минути"
-#: sc/inc/globstr.hrc:475
+#: sc/inc/globstr.hrc:476
msgctxt "STR_DPFIELD_GROUP_BY_HOURS"
msgid "Hours"
msgstr "Часове"
-#: sc/inc/globstr.hrc:476
+#: sc/inc/globstr.hrc:477
msgctxt "STR_DPFIELD_GROUP_BY_DAYS"
msgid "Days"
msgstr "Дни"
-#: sc/inc/globstr.hrc:477
+#: sc/inc/globstr.hrc:478
msgctxt "STR_DPFIELD_GROUP_BY_MONTHS"
msgid "Months"
msgstr "Месеци"
-#: sc/inc/globstr.hrc:478
+#: sc/inc/globstr.hrc:479
msgctxt "STR_DPFIELD_GROUP_BY_QUARTERS"
msgid "Quarters"
msgstr "Тримесечия"
-#: sc/inc/globstr.hrc:479
+#: sc/inc/globstr.hrc:480
msgctxt "STR_DPFIELD_GROUP_BY_YEARS"
msgid "Years"
msgstr "Години"
-#: sc/inc/globstr.hrc:480
+#: sc/inc/globstr.hrc:481
msgctxt "STR_INVALIDVAL"
msgid "Invalid target value."
msgstr "Невалидна целева стойност."
-#: sc/inc/globstr.hrc:481
+#: sc/inc/globstr.hrc:482
msgctxt "STR_INVALIDVAR"
msgid "Undefined name for variable cell."
msgstr "Недефинирано име за променливата клетка."
-#: sc/inc/globstr.hrc:482
+#: sc/inc/globstr.hrc:483
msgctxt "STR_INVALIDFORM"
msgid "Undefined name as formula cell."
msgstr "Недефинирано име за клетката с формула."
-#: sc/inc/globstr.hrc:483
+#: sc/inc/globstr.hrc:484
msgctxt "STR_NOFORMULA"
msgid "Formula cell must contain a formula."
msgstr "Клетката за формула трябва да съдържа формула."
-#: sc/inc/globstr.hrc:484
+#: sc/inc/globstr.hrc:485
msgctxt "STR_INVALIDINPUT"
msgid "Invalid input."
msgstr "Невалидни начални данни."
-#: sc/inc/globstr.hrc:485
+#: sc/inc/globstr.hrc:486
msgctxt "STR_INVALIDCONDITION"
msgid "Invalid condition."
msgstr "Неправилно условие."
-#: sc/inc/globstr.hrc:486
+#: sc/inc/globstr.hrc:487
msgctxt "STR_QUERYREMOVE"
msgid ""
"Should the entry\n"
@@ -2420,133 +2425,133 @@ msgstr ""
"#\n"
"да бъде ли изтрит?"
-#: sc/inc/globstr.hrc:487
+#: sc/inc/globstr.hrc:488
msgctxt "STR_COPYLIST"
msgid "Copy List"
msgstr "Копиране на списък"
-#: sc/inc/globstr.hrc:488
+#: sc/inc/globstr.hrc:489
msgctxt "STR_COPYFROM"
msgid "List from"
msgstr "Списък от"
-#: sc/inc/globstr.hrc:489
+#: sc/inc/globstr.hrc:490
msgctxt "STR_COPYERR"
msgid "Cells without text have been ignored."
msgstr "Клетките без текст бяха игнорирани."
-#: sc/inc/globstr.hrc:490
+#: sc/inc/globstr.hrc:491
#, c-format
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%s-click to follow hyperlink:"
msgstr "Щракнете с %s, за да проследите хипервръзката:"
-#: sc/inc/globstr.hrc:491
+#: sc/inc/globstr.hrc:492
msgctxt "STR_CLICKHYPERLINK"
msgid "click to open hyperlink:"
msgstr "Щракнете с Ctrl за отваряне на хипервръзката"
-#: sc/inc/globstr.hrc:492
+#: sc/inc/globstr.hrc:493
msgctxt "STR_PRINT_PREVIEW_NODATA"
msgid "No Data"
msgstr "Няма данни"
-#: sc/inc/globstr.hrc:493
+#: sc/inc/globstr.hrc:494
msgctxt "STR_PRINT_PREVIEW_EMPTY_RANGE"
msgid "Print Range Empty"
msgstr "Областта за печат е празна"
-#: sc/inc/globstr.hrc:494
+#: sc/inc/globstr.hrc:495
msgctxt "STR_UNDO_CONDFORMAT"
msgid "Conditional Format"
msgstr "Условен формат"
-#: sc/inc/globstr.hrc:495
+#: sc/inc/globstr.hrc:496
msgctxt "STR_UNDO_CONDFORMAT_LIST"
msgid "Conditional Formats"
msgstr "Условно форматиране"
-#: sc/inc/globstr.hrc:496
+#: sc/inc/globstr.hrc:497
msgctxt "STR_UNDO_FORMULA_TO_VALUE"
msgid "Convert Formula To Value"
msgstr "Преобразуване на формула в стойност"
-#: sc/inc/globstr.hrc:497
+#: sc/inc/globstr.hrc:498
msgctxt "STR_UNQUOTED_STRING"
msgid "Strings without quotes are interpreted as column/row labels."
msgstr "Низовете без кавички се тълкуват като заглавия на колони/редове."
-#: sc/inc/globstr.hrc:498
+#: sc/inc/globstr.hrc:499
msgctxt "STR_ENTER_VALUE"
msgid "Enter a value!"
msgstr "Въведете стойност!"
-#: sc/inc/globstr.hrc:499
+#: sc/inc/globstr.hrc:500
msgctxt "STR_TABLE_COUNT"
msgid "Sheet %1 of %2"
msgstr "Лист %1 от %2"
-#: sc/inc/globstr.hrc:500
+#: sc/inc/globstr.hrc:501
msgctxt "STR_FUNCTIONS_FOUND"
msgid "%1 and %2 more"
msgstr "%1 и още %2"
-#: sc/inc/globstr.hrc:501
+#: sc/inc/globstr.hrc:502
msgctxt "STR_GENERAL"
msgid "General"
msgstr "Общи"
-#: sc/inc/globstr.hrc:502
+#: sc/inc/globstr.hrc:503
msgctxt "STR_NUMBER"
msgid "Number"
msgstr "Число"
-#: sc/inc/globstr.hrc:503
+#: sc/inc/globstr.hrc:504
msgctxt "STR_PERCENT"
msgid "Percent"
msgstr "Процент"
-#: sc/inc/globstr.hrc:504
+#: sc/inc/globstr.hrc:505
msgctxt "STR_CURRENCY"
msgid "Currency"
msgstr "Валута"
-#: sc/inc/globstr.hrc:505
+#: sc/inc/globstr.hrc:506
msgctxt "STR_DATE"
msgid "Date"
msgstr "Дата"
-#: sc/inc/globstr.hrc:506
+#: sc/inc/globstr.hrc:507
msgctxt "STR_TIME"
msgid "Time"
msgstr "Час"
-#: sc/inc/globstr.hrc:507
+#: sc/inc/globstr.hrc:508
msgctxt "STR_SCIENTIFIC"
msgid "Scientific"
msgstr "Експоненциален запис"
-#: sc/inc/globstr.hrc:508
+#: sc/inc/globstr.hrc:509
msgctxt "STR_FRACTION"
msgid "Fraction"
msgstr "Дроб"
-#: sc/inc/globstr.hrc:509
+#: sc/inc/globstr.hrc:510
msgctxt "STR_BOOLEAN_VALUE"
msgid "Boolean Value"
msgstr "Булева стойност"
-#: sc/inc/globstr.hrc:510
+#: sc/inc/globstr.hrc:511
msgctxt "STR_TEXT"
msgid "Text"
msgstr "Текст"
-#: sc/inc/globstr.hrc:511
+#: sc/inc/globstr.hrc:512
msgctxt "STR_QUERY_PIVOTTABLE_DELTAB"
msgid "The selected sheet(s) contain source data of related pivot tables that will be lost. Are you sure you want to delete the selected sheet(s)?"
msgstr "Избраните листове съдържат изходни данни за обобщаващи таблици, които ще бъдат изгубени. Наистина ли искате да изтриете листовете?"
-#: sc/inc/globstr.hrc:512
+#: sc/inc/globstr.hrc:513
msgctxt "STR_ERR_NAME_INVALID_CELL_REF"
msgid "Invalid name. Reference to a cell, or a range of cells not allowed."
msgstr "Невалидно име. Не е разрешено обръщение към клетка или диапазон от клетки."
@@ -5276,7 +5281,7 @@ msgstr "Диапазон"
#: sc/inc/scfuncs.hrc:946
msgctxt "SC_OPCODE_COUNT_EMPTY_CELLS"
msgid "The range in which empty cells are to be counted."
-msgstr "Областта, в която трябва да бъдет преброени празните клетки."
+msgstr "Областта, в която трябва да бъдат преброени празните клетки."
#: sc/inc/scfuncs.hrc:952
msgctxt "SC_OPCODE_PI"
@@ -10488,7 +10493,7 @@ msgstr "Режим"
#: sc/inc/scfuncs.hrc:3010
msgctxt "SC_OPCODE_T_TEST"
-msgid "Mode specifies the number of distribution tails to return. 1= one-tailed, 2 = two-tailed distribution"
+msgid "Mode specifies the number of distribution tails to return. 1 = one-tailed, 2 = two-tailed distribution"
msgstr "Режим = 1 - едностранен критерий, 2 - двустранен."
#: sc/inc/scfuncs.hrc:3011
@@ -10533,7 +10538,7 @@ msgstr "Режим"
#: sc/inc/scfuncs.hrc:3024
msgctxt "SC_OPCODE_T_TEST_MS"
-msgid "Mode specifies the number of distribution tails to return. 1= one-tailed, 2 = two-tailed distribution"
+msgid "Mode specifies the number of distribution tails to return. 1 = one-tailed, 2 = two-tailed distribution"
msgstr "Режим = 1 - едностранен критерий, 2 - двустранен."
#: sc/inc/scfuncs.hrc:3025
@@ -14572,7 +14577,7 @@ msgstr "Брой"
#: sc/inc/strings.hrc:254
msgctxt "STRID_CALC_FIRST_QUARTILE"
msgid "First Quartile "
-msgstr "Първи квартил"
+msgstr "Първи квартил "
#: sc/inc/strings.hrc:255
msgctxt "STRID_CALC_THIRD_QUARTILE"
@@ -18020,22 +18025,22 @@ msgctxt "mergecellsdialog|MergeCellsDialog"
msgid "Merge Cells"
msgstr "Сливане на клетки"
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:81
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:84
msgctxt "mergecellsdialog|label"
msgid "Some cells are not empty."
msgstr "Някои клетки не са празни."
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:96
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:99
msgctxt "mergecellsdialog|move-cells-radio"
msgid "Move the contents of the hidden cells into the first cell"
msgstr "Преместване съдържанието на скритите клетки в първата клетка"
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:112
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:115
msgctxt "mergecellsdialog|empty-cells-radio"
msgid "Empty the contents of the hidden cells"
msgstr "Изтриване съдържанието на скритите клетки"
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:128
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:131
msgctxt "mergecellsdialog|keep-content-radio"
msgid "Keep the contents of the hidden cells"
msgstr "Запазване съдържанието на скритите клетки"
@@ -18303,12 +18308,12 @@ msgstr "Проверка за обновяване..."
#: sc/uiconfig/scalc/ui/notebookbar.ui:1952
msgctxt "notebookbar|FileLabel"
msgid "_File"
-msgstr ""
+msgstr "Файл"
#: sc/uiconfig/scalc/ui/notebookbar.ui:1971
msgctxt "notebookbar|HelpMenuButton"
msgid "_Help"
-msgstr ""
+msgstr "Помощ"
#: sc/uiconfig/scalc/ui/notebookbar.ui:2769
msgctxt "notebookbar|FileLabel"
@@ -18334,7 +18339,7 @@ msgstr "Намаляване на отстъпа"
#: sc/uiconfig/scalc/ui/notebookbar.ui:4436
msgctxt "notebookbar|HomeMenuButton"
msgid "_Home"
-msgstr ""
+msgstr "Начало"
#: sc/uiconfig/scalc/ui/notebookbar.ui:4544
msgctxt "notebookbar|CalcLabel"
@@ -18344,12 +18349,12 @@ msgstr "Начало"
#: sc/uiconfig/scalc/ui/notebookbar.ui:4991
msgctxt "notebookbar|FieldMenuButton"
msgid "Fiel_d"
-msgstr ""
+msgstr "Поле"
#: sc/uiconfig/scalc/ui/notebookbar.ui:5496
msgctxt "notebookbar|InsertMenuButton"
msgid "_Insert"
-msgstr ""
+msgstr "Вмъкване"
#: sc/uiconfig/scalc/ui/notebookbar.ui:5581
msgctxt "notebookbar|InsertLabel"
@@ -18359,7 +18364,7 @@ msgstr "Вмъкване"
#: sc/uiconfig/scalc/ui/notebookbar.ui:5610
msgctxt "notebookbar|reviewb"
msgid "Pag_e"
-msgstr ""
+msgstr "Страница"
#: sc/uiconfig/scalc/ui/notebookbar.ui:6335
msgctxt "notebookbar|PageLayoutLabel"
@@ -18374,7 +18379,7 @@ msgstr "Статистика"
#: sc/uiconfig/scalc/ui/notebookbar.ui:7304
msgctxt "notebookbar|DataMenuButton"
msgid "_Data"
-msgstr ""
+msgstr "Данни"
#: sc/uiconfig/scalc/ui/notebookbar.ui:7412
msgctxt "notebookbar|DataLabel"
@@ -18384,7 +18389,7 @@ msgstr "Данни"
#: sc/uiconfig/scalc/ui/notebookbar.ui:8035
msgctxt "notebookbar|ReviewMenuButton"
msgid "_Review"
-msgstr ""
+msgstr "Преглед"
#: sc/uiconfig/scalc/ui/notebookbar.ui:8120
msgctxt "notebookbar|ReviewLabel"
@@ -18394,7 +18399,7 @@ msgstr "Преглед"
#: sc/uiconfig/scalc/ui/notebookbar.ui:8896
msgctxt "notebookbar|ViewMenuButton"
msgid "_View"
-msgstr ""
+msgstr "Изглед"
#: sc/uiconfig/scalc/ui/notebookbar.ui:8981
msgctxt "notebookbar|ViewLabel"
@@ -18404,7 +18409,7 @@ msgstr "Изглед"
#: sc/uiconfig/scalc/ui/notebookbar.ui:9008
msgctxt "notebookbar|GraphicMenuButton"
msgid "_Graphic"
-msgstr ""
+msgstr "Графика"
#: sc/uiconfig/scalc/ui/notebookbar.ui:9949
msgctxt "notebookbar|ImageLabel"
@@ -18414,12 +18419,12 @@ msgstr "Изображение"
#: sc/uiconfig/scalc/ui/notebookbar.ui:11228
msgctxt "notebookbar|DrawMenuButton"
msgid "D_raw"
-msgstr ""
+msgstr "Рисуване"
#: sc/uiconfig/scalc/ui/notebookbar.ui:11340
msgctxt "notebookbar|DrawLabel"
msgid "Draw"
-msgstr ""
+msgstr "Рисуване"
#: sc/uiconfig/scalc/ui/notebookbar.ui:11993
msgctxt "notebookbar|frame:MenuDraw"
@@ -18434,12 +18439,12 @@ msgstr "Обект"
#: sc/uiconfig/scalc/ui/notebookbar.ui:12113
msgctxt "notebookbar|ToolsMenuButton"
msgid "_Tools"
-msgstr ""
+msgstr "Инструменти"
#: sc/uiconfig/scalc/ui/notebookbar.ui:13250
msgctxt "notebookbar|DevLabel"
msgid "Tools"
-msgstr ""
+msgstr "Инструменти"
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:2945
msgctxt "notebookbar_groupedbar_compact|Menu"
diff --git a/source/bg/scp2/source/ooo.po b/source/bg/scp2/source/ooo.po
index 55111fa29ac..1931bc2a2b4 100644
--- a/source/bg/scp2/source/ooo.po
+++ b/source/bg/scp2/source/ooo.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2018-05-23 23:20+0200\n"
-"PO-Revision-Date: 2018-03-31 21:36+0000\n"
+"PO-Revision-Date: 2018-05-24 16:20+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bg\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1522532214.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1527178810.000000\n"
#: folderitem_ooo.ulf
msgctxt ""
@@ -1886,7 +1886,7 @@ msgctxt ""
"STR_NAME_MODULE_LANGPACK_FY\n"
"LngText.text"
msgid "Frisian"
-msgstr ""
+msgstr "Фризийски"
#: module_langpack.ulf
msgctxt ""
@@ -1894,7 +1894,7 @@ msgctxt ""
"STR_DESC_MODULE_LANGPACK_FY\n"
"LngText.text"
msgid "Installs the Frisian user interface"
-msgstr ""
+msgstr "Инсталира потребителски интерфейс на фризийски"
#: module_langpack.ulf
msgctxt ""
diff --git a/source/bg/sd/messages.po b/source/bg/sd/messages.po
index 27b1950880f..a7230932509 100644
--- a/source/bg/sd/messages.po
+++ b/source/bg/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: 2018-05-22 13:16+0200\n"
-"PO-Revision-Date: 2018-05-17 09:32+0000\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
+"PO-Revision-Date: 2018-05-27 21:06+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bg\n"
@@ -14,169 +14,169 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1526549551.000000\n"
+"X-POOTLE-MTIME: 1527455168.000000\n"
-#: sd/inc/DocumentRenderer.hrc:29
+#: sd/inc/DocumentRenderer.hrc:27
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Slides"
msgstr "Кадри"
-#: sd/inc/DocumentRenderer.hrc:30
+#: sd/inc/DocumentRenderer.hrc:28
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Handouts"
msgstr "Листовки"
-#: sd/inc/DocumentRenderer.hrc:31
+#: sd/inc/DocumentRenderer.hrc:29
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Notes"
msgstr "Бележки"
-#: sd/inc/DocumentRenderer.hrc:32
+#: sd/inc/DocumentRenderer.hrc:30
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Outline"
msgstr "План"
-#: sd/inc/DocumentRenderer.hrc:37
+#: sd/inc/DocumentRenderer.hrc:35
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "According to layout"
msgstr "Според оформлението"
-#: sd/inc/DocumentRenderer.hrc:38
+#: sd/inc/DocumentRenderer.hrc:36
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "1"
msgstr "1"
-#: sd/inc/DocumentRenderer.hrc:39
+#: sd/inc/DocumentRenderer.hrc:37
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "2"
msgstr "2"
-#: sd/inc/DocumentRenderer.hrc:40
+#: sd/inc/DocumentRenderer.hrc:38
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "3"
msgstr "3"
-#: sd/inc/DocumentRenderer.hrc:41
+#: sd/inc/DocumentRenderer.hrc:39
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "4"
msgstr "4"
-#: sd/inc/DocumentRenderer.hrc:42
+#: sd/inc/DocumentRenderer.hrc:40
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "6"
msgstr "6"
-#: sd/inc/DocumentRenderer.hrc:43
+#: sd/inc/DocumentRenderer.hrc:41
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "9"
msgstr "9"
-#: sd/inc/DocumentRenderer.hrc:48
+#: sd/inc/DocumentRenderer.hrc:46
msgctxt "STR_IMPRESS_PRINT_UI_ORDER_CHOICES"
msgid "Left to right, then down"
msgstr "От ляво надясно, после надолу"
-#: sd/inc/DocumentRenderer.hrc:49
+#: sd/inc/DocumentRenderer.hrc:47
msgctxt "STR_IMPRESS_PRINT_UI_ORDER_CHOICES"
msgid "Top to bottom, then right"
msgstr "От горе надолу, после надясно"
-#: sd/inc/DocumentRenderer.hrc:54
+#: sd/inc/DocumentRenderer.hrc:52
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Original colors"
msgstr "Оригинални цветове"
-#: sd/inc/DocumentRenderer.hrc:55
+#: sd/inc/DocumentRenderer.hrc:53
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Grayscale"
msgstr "Степени на сивото"
-#: sd/inc/DocumentRenderer.hrc:56
+#: sd/inc/DocumentRenderer.hrc:54
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Black & white"
msgstr "Черно и бяло"
-#: sd/inc/DocumentRenderer.hrc:61
+#: sd/inc/DocumentRenderer.hrc:59
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Original size"
msgstr "Оригинален размер"
-#: sd/inc/DocumentRenderer.hrc:62
+#: sd/inc/DocumentRenderer.hrc:60
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Fit to printable page"
msgstr "Побиране в печатната страница"
-#: sd/inc/DocumentRenderer.hrc:63
+#: sd/inc/DocumentRenderer.hrc:61
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Distribute on multiple sheets of paper"
msgstr "Разпределяне върху няколко листа"
-#: sd/inc/DocumentRenderer.hrc:64
+#: sd/inc/DocumentRenderer.hrc:62
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Tile sheet of paper with repeated slides"
msgstr "Запълване на листа с повторени кадри"
-#: sd/inc/DocumentRenderer.hrc:69
+#: sd/inc/DocumentRenderer.hrc:67
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Original size"
msgstr "Оригинален размер"
-#: sd/inc/DocumentRenderer.hrc:70
+#: sd/inc/DocumentRenderer.hrc:68
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Fit to printable page"
msgstr "Побиране в печатната страница"
-#: sd/inc/DocumentRenderer.hrc:71
+#: sd/inc/DocumentRenderer.hrc:69
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Distribute on multiple sheets of paper"
msgstr "Разпределяне върху няколко листа"
-#: sd/inc/DocumentRenderer.hrc:72
+#: sd/inc/DocumentRenderer.hrc:70
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Tile sheet of paper with repeated pages"
msgstr "Запълване на листа с повторени страници"
-#: sd/inc/DocumentRenderer.hrc:77
+#: sd/inc/DocumentRenderer.hrc:75
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "All pages"
msgstr "Всички страници"
-#: sd/inc/DocumentRenderer.hrc:78
+#: sd/inc/DocumentRenderer.hrc:76
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "Front sides / right pages"
msgstr "Предни страни / десни страници"
-#: sd/inc/DocumentRenderer.hrc:79
+#: sd/inc/DocumentRenderer.hrc:77
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "Back sides / left pages"
msgstr "Задни страни / леви страници"
-#: sd/inc/DocumentRenderer.hrc:84
+#: sd/inc/DocumentRenderer.hrc:82
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~All slides"
msgstr "Всички кадри"
-#: sd/inc/DocumentRenderer.hrc:85
+#: sd/inc/DocumentRenderer.hrc:83
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~Slides"
msgstr "Кадри"
-#: sd/inc/DocumentRenderer.hrc:86
+#: sd/inc/DocumentRenderer.hrc:84
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Se~lection"
msgstr "Селекция"
-#: sd/inc/DocumentRenderer.hrc:91
+#: sd/inc/DocumentRenderer.hrc:89
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~All pages"
msgstr "Всички страници"
-#: sd/inc/DocumentRenderer.hrc:92
+#: sd/inc/DocumentRenderer.hrc:90
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Pa~ges"
msgstr "Страници"
-#: sd/inc/DocumentRenderer.hrc:93
+#: sd/inc/DocumentRenderer.hrc:91
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Se~lection"
msgstr "Селекция"
@@ -1717,52 +1717,52 @@ msgstr "Обект без запълване и очертание"
#: sd/inc/strings.hrc:323
msgctxt "STR_POOLSHEET_FILLED"
msgid "Filled"
-msgstr ""
+msgstr "Запълнено"
#: sd/inc/strings.hrc:324
msgctxt "STR_POOLSHEET_FILLED_BLUE"
msgid "Filled Blue"
-msgstr ""
+msgstr "Запълнено със синьо"
#: sd/inc/strings.hrc:325
msgctxt "STR_POOLSHEET_FILLED_GREEN"
msgid "Filled Green"
-msgstr ""
+msgstr "Запълнено със зелено"
#: sd/inc/strings.hrc:326
msgctxt "STR_POOLSHEET_FILLED_YELLOW"
msgid "Filled Yellow"
-msgstr ""
+msgstr "Запълнено с жълто"
#: sd/inc/strings.hrc:327
msgctxt "STR_POOLSHEET_FILLED_RED"
msgid "Filled Red"
-msgstr ""
+msgstr "Запълнено с червено"
#: sd/inc/strings.hrc:329
msgctxt "STR_POOLSHEET_OUTLINE"
msgid "Outlined"
-msgstr ""
+msgstr "Очертано"
#: sd/inc/strings.hrc:330
msgctxt "STR_POOLSHEET_OUTLINE_BLUE"
msgid "Outlined Blue"
-msgstr ""
+msgstr "Очертано със синьо"
#: sd/inc/strings.hrc:331
msgctxt "STR_POOLSHEET_OUTLINE_GREEN"
msgid "Outlined Green"
-msgstr ""
+msgstr "Очертано със зелено"
#: sd/inc/strings.hrc:332
msgctxt "STR_POOLSHEET_OUTLINE_YELLOW"
msgid "Outlined Yellow"
-msgstr ""
+msgstr "Очертано с жълто"
#: sd/inc/strings.hrc:333
msgctxt "STR_POOLSHEET_OUTLINE_RED"
msgid "Outlined Red"
-msgstr ""
+msgstr "Очертано с червено"
#: sd/inc/strings.hrc:335
msgctxt "STR_PSEUDOSHEET_TITLE"
@@ -3615,67 +3615,67 @@ msgstr "Проверка за обновяване..."
#: sd/uiconfig/simpress/ui/notebookbar.ui:2422
msgctxt "notebookbar|FileLabel"
msgid "_File"
-msgstr ""
+msgstr "Файл"
#: sd/uiconfig/simpress/ui/notebookbar.ui:2441
msgctxt "notebookbar|HelpMenuButton"
msgid "_Help"
-msgstr ""
+msgstr "Помощ"
#: sd/uiconfig/simpress/ui/notebookbar.ui:3230
msgctxt "notebookbar|FileLabel"
msgid "File"
-msgstr ""
+msgstr "Файл"
#: sd/uiconfig/simpress/ui/notebookbar.ui:3389
msgctxt "notebookbar|HomeMenuButton"
msgid "_Home"
-msgstr ""
+msgstr "Начало"
#: sd/uiconfig/simpress/ui/notebookbar.ui:4846
msgctxt "notebookbar|HomeLabel"
msgid "Home"
-msgstr ""
+msgstr "Начало"
#: sd/uiconfig/simpress/ui/notebookbar.ui:5293
msgctxt "notebookbar|FieldMenuButton"
msgid "Fiel_d"
-msgstr ""
+msgstr "Поле"
#: sd/uiconfig/simpress/ui/notebookbar.ui:5820
msgctxt "notebookbar|InsertMenuButton"
msgid "_Insert"
-msgstr ""
+msgstr "Вмъкване"
#: sd/uiconfig/simpress/ui/notebookbar.ui:5905
msgctxt "notebookbar|InsertLabel"
msgid "Insert"
-msgstr ""
+msgstr "Вмъкване"
#: sd/uiconfig/simpress/ui/notebookbar.ui:5935
msgctxt "notebookbar|SlideMenuButton"
msgid "S_lide"
-msgstr ""
+msgstr "Кадър"
#: sd/uiconfig/simpress/ui/notebookbar.ui:6688
msgctxt "notebookbar|LayoutLabel"
msgid "Slide"
-msgstr ""
+msgstr "Кадър"
#: sd/uiconfig/simpress/ui/notebookbar.ui:6716
msgctxt "notebookbar|SlideShowMenuButton"
msgid "_Slide Show"
-msgstr ""
+msgstr "Прожекция"
#: sd/uiconfig/simpress/ui/notebookbar.ui:7194
msgctxt "notebookbar|ReferencesLabel"
msgid "Slide Show"
-msgstr ""
+msgstr "Прожекция"
#: sd/uiconfig/simpress/ui/notebookbar.ui:7222
msgctxt "notebookbar|ReviewMenuButton"
msgid "_Review"
-msgstr ""
+msgstr "Преглед"
#: sd/uiconfig/simpress/ui/notebookbar.ui:7651
msgctxt "notebookbar|ReviewLabel"
@@ -3685,7 +3685,7 @@ msgstr "Преглед"
#: sd/uiconfig/simpress/ui/notebookbar.ui:7679
msgctxt "notebookbar|ViewMenuButton"
msgid "_View"
-msgstr ""
+msgstr "Изглед"
#: sd/uiconfig/simpress/ui/notebookbar.ui:8580
msgctxt "notebookbar|ViewLabel"
@@ -3695,7 +3695,7 @@ msgstr "Изглед"
#: sd/uiconfig/simpress/ui/notebookbar.ui:9369
msgctxt "notebookbar|TableMenuButton"
msgid "T_able"
-msgstr ""
+msgstr "Таблица"
#: sd/uiconfig/simpress/ui/notebookbar.ui:9453
msgctxt "notebookbar|TableLabel"
@@ -3706,12 +3706,12 @@ msgstr "Таблица"
#: sd/uiconfig/simpress/ui/notebookbar.ui:11131
msgctxt "notebookbar|ConvertMenuButton"
msgid "Convert"
-msgstr ""
+msgstr "Преобразуване"
#: sd/uiconfig/simpress/ui/notebookbar.ui:10335
msgctxt "notebookbar|GraphicMenuButton"
msgid "_Graphic"
-msgstr ""
+msgstr "Графика"
#: sd/uiconfig/simpress/ui/notebookbar.ui:10447
msgctxt "notebookbar|ImageLabel"
@@ -3721,22 +3721,22 @@ msgstr "Изображение"
#: sd/uiconfig/simpress/ui/notebookbar.ui:11658
msgctxt "notebookbar|DrawMenuButton"
msgid "D_raw"
-msgstr ""
+msgstr "Рисуване"
#: sd/uiconfig/simpress/ui/notebookbar.ui:11772
msgctxt "notebookbar|DrawLabel"
msgid "Draw"
-msgstr ""
+msgstr "Рисуване"
#: sd/uiconfig/simpress/ui/notebookbar.ui:11804
msgctxt "notebookbar|ToolsMenuButton"
msgid "_Tools"
-msgstr ""
+msgstr "Инструменти"
#: sd/uiconfig/simpress/ui/notebookbar.ui:12758
msgctxt "notebookbar|DevLabel"
msgid "Tools"
-msgstr ""
+msgstr "Инструменти"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:1922
msgctxt "notebookbar_groupedbar_compact|Menu"
diff --git a/source/bg/svx/messages.po b/source/bg/svx/messages.po
index 2cbe45342b4..9a54bd79b4b 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: 2018-05-16 16:53+0200\n"
-"PO-Revision-Date: 2018-05-20 12:59+0000\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
+"PO-Revision-Date: 2018-06-08 13:46+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bg\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1526821193.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1528465607.000000\n"
#: svx/inc/fieldunit.hrc:30
msgctxt "RID_SVXSTR_FIELDUNIT_TABLE"
@@ -5179,8 +5179,8 @@ msgstr "Можете да включите в доклада за грешка
#: svx/uiconfig/ui/safemodedialog.ui:432
msgctxt "safemodedialog|btn_create_zip"
-msgid "Create Zip Archive from User Profile"
-msgstr "Архивиране на потребителския профил (Zip)"
+msgid "Archive User Profile"
+msgstr "Архивиране на потребителския профил"
#: svx/uiconfig/ui/safemodedialog.ui:445
msgctxt "safemodedialog|linkbutton_profile"
@@ -8769,9 +8769,9 @@ msgid "Red"
msgstr "Червено"
#: include/svx/strings.hrc:565
-msgctxt "RID_SVXSTR_COLOR_VIOLET"
-msgid "Violet"
-msgstr "Виолетово"
+msgctxt "RID_SVXSTR_COLOR_MAGENTA"
+msgid "Magenta"
+msgstr "Пурпурно"
#: include/svx/strings.hrc:566
msgctxt "RID_SVXSTR_COLOR_PURPLE"
@@ -8835,9 +8835,9 @@ msgid "Light Red"
msgstr "Светло червено"
#: include/svx/strings.hrc:579
-msgctxt "RID_SVXSTR_COLOR_LIGHTVIOLET"
-msgid "Light Violet"
-msgstr "Светло виолетово"
+msgctxt "RID_SVXSTR_COLOR_LIGHTMAGENTA"
+msgid "Light Magenta"
+msgstr "Светла магента"
#: include/svx/strings.hrc:580
msgctxt "RID_SVXSTR_COLOR_LIGHTPURPLE"
@@ -8901,9 +8901,9 @@ msgid "Dark Red"
msgstr "Тъмно червено"
#: include/svx/strings.hrc:593
-msgctxt "RID_SVXSTR_COLOR_DARKVIOLET1"
-msgid "Dark Violet"
-msgstr "Тъмно виолетово"
+msgctxt "RID_SVXSTR_COLOR_DARKMAGENTA"
+msgid "Dark Magenta"
+msgstr "Тъмна магента"
#: include/svx/strings.hrc:594
msgctxt "RID_SVXSTR_COLOR_DARKPURPLE"
@@ -8937,55 +8937,55 @@ msgstr "Тъмно жълтозелено"
#. Elements of the Tonal color palette
#: include/svx/strings.hrc:601
+msgctxt "RID_SVXSTR_COLOR_VIOLET"
+msgid "Violet"
+msgstr "Виолетово"
+
+#: include/svx/strings.hrc:602
msgctxt "RID_SVXSTR_COLOR_VIOLET_OUG"
msgid "Violet (Out of Gamut)"
msgstr "Виолетово (извън гамата)"
-#: include/svx/strings.hrc:602
+#: include/svx/strings.hrc:603
msgctxt "RID_SVXSTR_COLOR_BLUE_OUG"
msgid "Blue (Out of Gamut)"
msgstr "Синьо (извън гамата)"
-#: include/svx/strings.hrc:603
+#: include/svx/strings.hrc:604
msgctxt "RID_SVXSTR_COLOR_AZURE_OUG"
msgid "Azure (Out of Gamut)"
msgstr "Лазурно (извън гамата)"
-#: include/svx/strings.hrc:604
+#: include/svx/strings.hrc:605
msgctxt "RID_SVXSTR_COLOR_SPRINGGREEN_OUG"
msgid "Spring Green (Out of Gamut)"
msgstr "Пролетно зелено (извън гамата)"
-#: include/svx/strings.hrc:605
+#: include/svx/strings.hrc:606
msgctxt "RID_SVXSTR_COLOR_GREEN_OUG"
msgid "Green (Out of Gamut)"
msgstr "Зелено (извън гамата)"
-#: include/svx/strings.hrc:606
+#: include/svx/strings.hrc:607
msgctxt "RID_SVXSTR_COLOR_CHARTREUSEGREEN_OUG"
msgid "Chartreuse Green (Out of Gamut)"
msgstr "Бледозелено (извън гамата)"
-#: include/svx/strings.hrc:607
+#: include/svx/strings.hrc:608
msgctxt "RID_SVXSTR_COLOR_ORANGE_OUG"
msgid "Orange (Out of Gamut)"
msgstr "Оранжево (извън гамата)"
-#: include/svx/strings.hrc:608
+#: include/svx/strings.hrc:609
msgctxt "RID_SVXSTR_COLOR_RED_OUG"
msgid "Red (Out of Gamut)"
msgstr "Червено (извън гамата)"
-#: include/svx/strings.hrc:609
+#: include/svx/strings.hrc:610
msgctxt "RID_SVXSTR_COLOR_ROSE_OUG"
msgid "Rose (Out of Gamut)"
msgstr "Розово (извън гамата)"
-#: include/svx/strings.hrc:610
-msgctxt "RID_SVXSTR_COLOR_MAGENTA"
-msgid "Magenta"
-msgstr "Пурпурно"
-
#: include/svx/strings.hrc:611
msgctxt "RID_SVXSTR_COLOR_AZURE"
msgid "Azure"
@@ -11724,7 +11724,7 @@ msgstr "Документ"
#: include/svx/strings.hrc:1192
msgctxt "RID_STR_DATANAV_SUBM_BIND"
msgid "Binding: "
-msgstr "Обвързване:"
+msgstr "Обвързване: "
#: include/svx/strings.hrc:1193
msgctxt "RID_STR_DATANAV_SUBM_REF"
@@ -11739,7 +11739,7 @@ msgstr "Действие: "
#: include/svx/strings.hrc:1195
msgctxt "RID_STR_DATANAV_SUBM_METHOD"
msgid "Method: "
-msgstr "Метод:"
+msgstr "Метод: "
#: include/svx/strings.hrc:1196
msgctxt "RID_STR_DATANAV_SUBM_REPLACE"
@@ -12089,12 +12089,12 @@ msgstr "Водачи - стрелки надясно"
#: include/svx/strings.hrc:1273
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_6"
-msgid "Check mark bullets"
+msgid "Cross mark bullets"
msgstr "Водачи - хиксове"
#: include/svx/strings.hrc:1274
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_7"
-msgid "Tick mark bullets"
+msgid "Check mark bullets"
msgstr "Водачи - отметки"
#: include/svx/strings.hrc:1275
diff --git a/source/bg/sw/messages.po b/source/bg/sw/messages.po
index 448e2fc1d51..be38a090c85 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: 2018-05-22 13:17+0200\n"
-"PO-Revision-Date: 2018-05-17 13:56+0000\n"
+"POT-Creation-Date: 2018-06-12 14:41+0200\n"
+"PO-Revision-Date: 2018-06-13 09:10+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bg\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1526565372.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1528881011.000000\n"
#: sw/inc/app.hrc:29
msgctxt "RID_PARAGRAPHSTYLEFAMILY"
@@ -1180,13 +1180,13 @@ msgstr "Позоваване"
#: sw/inc/strings.hrc:172
msgctxt "STR_POOLCOLL_TOX_ILLUSH"
-msgid "Illustration Index Heading"
-msgstr "Указател на илюстрации - заглавие"
+msgid "Figure Index Heading"
+msgstr "Указател на фигури - заглавие"
#: sw/inc/strings.hrc:173
msgctxt "STR_POOLCOLL_TOX_ILLUS1"
-msgid "Illustration Index 1"
-msgstr "Указател на илюстрации 1"
+msgid "Figure Index 1"
+msgstr "Указател на фигури 1"
#: sw/inc/strings.hrc:174
msgctxt "STR_POOLCOLL_TOX_OBJECTH"
@@ -2608,7 +2608,7 @@ msgstr "→"
#: sw/inc/strings.hrc:465
msgctxt "STR_OCCURRENCES_OF"
msgid "occurrences of"
-msgstr "срещания на "
+msgstr "срещания на"
#: sw/inc/strings.hrc:466
msgctxt "STR_UNDO_TABS"
@@ -3590,8 +3590,8 @@ msgstr "Таблица на обектите"
#: sw/inc/strings.hrc:672
msgctxt "STR_TOX_ILL"
-msgid "Illustration Index"
-msgstr "Указател на илюстрациите"
+msgid "Table of Figures"
+msgstr "Таблица на фигурите"
#: sw/inc/strings.hrc:673
#, c-format
@@ -4058,7 +4058,7 @@ msgstr "Всички коментари"
#: sw/inc/strings.hrc:771
msgctxt "STR_DELETE_AUTHOR_NOTES"
msgid "Comments by "
-msgstr "Коментари от"
+msgstr "Коментари от "
#: sw/inc/strings.hrc:772
msgctxt "STR_NODATE"
@@ -9244,72 +9244,72 @@ msgctxt "footnotepage|label5"
msgid "Continuation Notice"
msgstr "Бележка за продължение"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:49
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:55
msgctxt "footnotesendnotestabpage|ftnntnum"
msgid "_Restart numbering"
msgstr "_Ново номериране"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:91
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:93
msgctxt "footnotesendnotestabpage|ftnoffset_label"
msgid "_Start at:"
msgstr "_Започване от:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:112
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:111
msgctxt "footnotesendnotestabpage|ftnntnumfmt"
msgid "Custom _format"
msgstr "Формат по _избор"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:155
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:150
msgctxt "footnotesendnotestabpage|ftnsuffix_label"
msgid "Aft_er:"
msgstr "_След:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:199
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:188
msgctxt "footnotesendnotestabpage|ftnprefix_label"
msgid "Be_fore:"
msgstr "_Преди:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:228
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:212
msgctxt "footnotesendnotestabpage|ftnntattextend"
msgid "Collec_t at end of text"
msgstr "Обединяване в края на _текст"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:252
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:234
msgctxt "footnotesendnotestabpage|label1"
msgid "Footnotes"
msgstr "Бележки под линия"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:289
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:271
msgctxt "footnotesendnotestabpage|endntattextend"
msgid "C_ollect at end of section"
msgstr "Обединяване в края на _раздел"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:315
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:295
msgctxt "footnotesendnotestabpage|endntnum"
msgid "_Restart numbering"
msgstr "_Ново номериране"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:357
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:333
msgctxt "footnotesendnotestabpage|endoffset_label"
msgid "_Start at:"
msgstr "_Започване от:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:378
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:351
msgctxt "footnotesendnotestabpage|endntnumfmt"
msgid "_Custom format"
msgstr "Формат по _избор"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:421
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:390
msgctxt "footnotesendnotestabpage|endsuffix_label"
msgid "Aft_er:"
msgstr "_След:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:465
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:428
msgctxt "footnotesendnotestabpage|endprefix_label"
msgid "Be_fore:"
msgstr "_Преди:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:500
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:458
msgctxt "footnotesendnotestabpage|label2"
msgid "Endnotes"
msgstr "Бележки в края"
@@ -9339,27 +9339,27 @@ msgctxt "formatsectiondialog|notes"
msgid "Footnotes/Endnotes"
msgstr "Бележки под линия/в края"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:63
+#: sw/uiconfig/swriter/ui/formattablepage.ui:77
msgctxt "formattablepage|nameft"
msgid "_Name"
msgstr "_Име"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:79
+#: sw/uiconfig/swriter/ui/formattablepage.ui:91
msgctxt "formattablepage|widthft"
msgid "W_idth"
msgstr "Ш_ирина"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:110
+#: sw/uiconfig/swriter/ui/formattablepage.ui:120
msgctxt "formattablepage|relwidth"
msgid "Relati_ve"
msgstr "_Относителна"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:155
+#: sw/uiconfig/swriter/ui/formattablepage.ui:160
msgctxt "formattablepage|label45"
msgid "Properties"
msgstr "Свойства"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:194
+#: sw/uiconfig/swriter/ui/formattablepage.ui:195
msgctxt "formattablepage|leftft"
msgid "Lef_t"
msgstr "Отля_во"
@@ -9369,62 +9369,62 @@ msgctxt "formattablepage|rightft"
msgid "Ri_ght"
msgstr "Отдя_сно"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:228
+#: sw/uiconfig/swriter/ui/formattablepage.ui:226
msgctxt "formattablepage|aboveft"
msgid "_Above"
msgstr "От_горе"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:245
+#: sw/uiconfig/swriter/ui/formattablepage.ui:241
msgctxt "formattablepage|belowft"
msgid "_Below"
msgstr "Отдол_у"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:320
+#: sw/uiconfig/swriter/ui/formattablepage.ui:311
msgctxt "formattablepage|label46"
msgid "Spacing"
msgstr "Разредка"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:362
+#: sw/uiconfig/swriter/ui/formattablepage.ui:349
msgctxt "formattablepage|full"
msgid "A_utomatic"
msgstr "_Автоматично"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:380
+#: sw/uiconfig/swriter/ui/formattablepage.ui:365
msgctxt "formattablepage|left"
msgid "_Left"
msgstr "От_ляво"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:398
+#: sw/uiconfig/swriter/ui/formattablepage.ui:381
msgctxt "formattablepage|fromleft"
msgid "_From left"
msgstr "_Отстъп отляво"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:416
+#: sw/uiconfig/swriter/ui/formattablepage.ui:397
msgctxt "formattablepage|right"
msgid "R_ight"
msgstr "От_дясно"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:435
+#: sw/uiconfig/swriter/ui/formattablepage.ui:413
msgctxt "formattablepage|center"
msgid "_Center"
msgstr "Ц_ентрирано"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:453
+#: sw/uiconfig/swriter/ui/formattablepage.ui:429
msgctxt "formattablepage|free"
msgid "_Manual"
msgstr "_Ръчно"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:478
+#: sw/uiconfig/swriter/ui/formattablepage.ui:452
msgctxt "formattablepage|label43"
msgid "Alignment"
msgstr "Подравняване"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:522
+#: sw/uiconfig/swriter/ui/formattablepage.ui:491
msgctxt "formattablepage|label53"
msgid "Text _direction"
msgstr "П_осока на текста"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:553
+#: sw/uiconfig/swriter/ui/formattablepage.ui:519
msgctxt "formattablepage|label44"
msgid "Properties "
msgstr "Свойства "
@@ -9779,22 +9779,27 @@ msgctxt "headerfootermenu|insert_pagenumber"
msgid "Insert Page Number"
msgstr "Вмъкване номер на страница"
-#: sw/uiconfig/swriter/ui/indentpage.ui:52
+#: sw/uiconfig/swriter/ui/headerfootermenu.ui:42
+msgctxt "headerfootermenu|insert_pagecount"
+msgid "Insert Page Count"
+msgstr "Вмъкване броя на страниците"
+
+#: sw/uiconfig/swriter/ui/indentpage.ui:57
msgctxt "indentpage|label1"
msgid "_Before section"
msgstr "_Преди раздел"
-#: sw/uiconfig/swriter/ui/indentpage.ui:67
+#: sw/uiconfig/swriter/ui/indentpage.ui:71
msgctxt "indentpage|label3"
msgid "_After section"
msgstr "_След раздел"
-#: sw/uiconfig/swriter/ui/indentpage.ui:113
+#: sw/uiconfig/swriter/ui/indentpage.ui:115
msgctxt "indentpage|label2"
msgid "Indent"
msgstr "Отстъп"
-#: sw/uiconfig/swriter/ui/indentpage.ui:142
+#: sw/uiconfig/swriter/ui/indentpage.ui:155
msgctxt "indentpage|preview-atkobject"
msgid "Example"
msgstr "Пример"
@@ -11912,7 +11917,7 @@ msgstr "Проверка за обновяване..."
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:2007
msgctxt "notebookbar_compact|FileMenuButton"
msgid "_File"
-msgstr ""
+msgstr "Файл"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:2721
msgctxt "notebookbar_compact|FileLabel"
@@ -11922,7 +11927,7 @@ msgstr "Файл"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:2770
msgctxt "notebookbar_compact|HomeMenuButton"
msgid "_Menu"
-msgstr ""
+msgstr "Меню"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3829
msgctxt "notebookbar_compact|HomeLabel"
@@ -11932,7 +11937,7 @@ msgstr "Начало"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3882
msgctxt "notebookbar_compact|InsertMenuButton"
msgid "_Insert"
-msgstr ""
+msgstr "Вмъкване"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4501
msgctxt "notebookbar_compact|InsertLabel"
@@ -11950,7 +11955,7 @@ msgstr "Обтичане"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5221
msgctxt "notebookbar_compact|PageMenuButton"
msgid "Pag_e"
-msgstr ""
+msgstr "Страница"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5273
msgctxt "notebookbar_compact|LayoutLabel"
@@ -11960,7 +11965,7 @@ msgstr "Оформление"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5320
msgctxt "notebookbar_compact|ReferencesMenuButton"
msgid "Reference_s"
-msgstr ""
+msgstr "Препратки"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5708
msgctxt "notebookbar_compact|ReferencesLabel"
@@ -11970,7 +11975,7 @@ msgstr "Препратки"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6204
msgctxt "notebookbar_compact|ReviewMenuButton"
msgid "_Review"
-msgstr ""
+msgstr "Преглед"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6237
msgctxt "notebookbar_compact|ReviewLabel"
@@ -11980,7 +11985,7 @@ msgstr "Преглед"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6706
msgctxt "notebookbar_compact|ViewMenuButton"
msgid "_View"
-msgstr ""
+msgstr "Изглед"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6758
msgctxt "notebookbar_compact|ViewLabel"
@@ -11990,7 +11995,7 @@ msgstr "Изглед"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6806
msgctxt "notebookbar_compact|TableMenuButton"
msgid "T_able"
-msgstr ""
+msgstr "Таблица"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7540
msgctxt "notebookbar_compact|TableLabel"
@@ -12007,7 +12012,7 @@ msgstr "Подравняване"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8291
msgctxt "notebookbar_compact|GraphicMenuButton"
msgid "_Graphic"
-msgstr ""
+msgstr "Графика"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8324
msgctxt "notebookbar_compact|ImageLabel"
@@ -12017,7 +12022,7 @@ msgstr "Изображение"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9070
msgctxt "notebookbar_compact|DrawMenuButton"
msgid "D_raw"
-msgstr ""
+msgstr "Рисуване"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9125
msgctxt "notebookbar_compact|ShapeLabel"
@@ -12027,7 +12032,7 @@ msgstr "Рисуване"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9651
msgctxt "notebookbar_compact|ObjectMenuButton:MenuDraw"
msgid "Object"
-msgstr ""
+msgstr "Обект"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9707
msgctxt "notebookbar_compact|FrameLabel"
@@ -12037,7 +12042,7 @@ msgstr "Обект"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9757
msgctxt "notebookbar_compact|ToolsMenuButton"
msgid "_Tools"
-msgstr ""
+msgstr "Инструменти"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10600
msgctxt "notebookbar_compact|DevLabel"
@@ -13285,8 +13290,8 @@ msgstr "Защита на формуляр"
#: sw/uiconfig/swriter/ui/optcompatpage.ui:68
msgctxt "optcompatpage|format"
-msgid "MS Word-compatible trailing blanks"
-msgstr "Крайни интервали, съвместими с MS Word"
+msgid "Word-compatible trailing blanks"
+msgstr "Крайни интервали, съвместими с Word"
#: sw/uiconfig/swriter/ui/optcompatpage.ui:69
msgctxt "optcompatpage|format"
@@ -13295,8 +13300,8 @@ msgstr "Допускат се бели линии от фона на стран
#: sw/uiconfig/swriter/ui/optcompatpage.ui:70
msgctxt "optcompatpage|format"
-msgid "A database field (e.g., MailMerge) with empty value hides its paragraph"
-msgstr ""
+msgid "Hide paragraphs of database fields (e.g., mail merge) with an empty value"
+msgstr "Скриване абзаците с празни полета за данни (напр. в циркулярно писмо)"
#: sw/uiconfig/swriter/ui/optcompatpage.ui:71
msgctxt "optcompatpage|format"
@@ -15981,122 +15986,122 @@ msgctxt "tableproperties|background"
msgid "Background"
msgstr "Фон"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:25
-msgctxt "tabletextflowpage|liststore1"
-msgid "Horizontal"
-msgstr "Хоризонтално"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:29
-msgctxt "tabletextflowpage|liststore1"
-msgid "Vertical"
-msgstr "Вертикално"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:33
-msgctxt "tabletextflowpage|liststore1"
-msgid "Use superordinate object settings"
-msgstr "Настройки от родителския обект"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:47
-msgctxt "tabletextflowpage|liststore2"
-msgid "Top"
-msgstr "Отгоре"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:51
-msgctxt "tabletextflowpage|liststore2"
-msgid "Centered"
-msgstr "В средата"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:55
-msgctxt "tabletextflowpage|liststore2"
-msgid "Bottom"
-msgstr "Отдолу"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:97
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:53
msgctxt "tabletextflowpage|break"
msgid "_Break"
msgstr "_Разделител"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:112
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:68
msgctxt "tabletextflowpage|page"
msgid "_Page"
msgstr "_Страница"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:132
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:87
msgctxt "tabletextflowpage|column"
msgid "Col_umn"
msgstr "Кол_она"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:151
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:106
msgctxt "tabletextflowpage|before"
msgid "Be_fore"
msgstr "_Преди"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:171
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:125
msgctxt "tabletextflowpage|after"
msgid "_After"
msgstr "_След"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:203
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:158
msgctxt "tabletextflowpage|pagestyle"
msgid "With Page St_yle"
msgstr "_Със стил на страница"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:224
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:177
msgctxt "tabletextflowpage|pagenoft"
msgid "Page _number"
msgstr "_Номер на страница"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:257
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:213
msgctxt "tabletextflowpage|pagestylelb-atkobject"
msgid "With Page Style"
msgstr "Със стил на страница"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:274
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:230
msgctxt "tabletextflowpage|split"
msgid "Allow _table to split across pages and columns"
msgstr "_Таблицата може да бъде разделяна от страници и колони"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:289
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:245
msgctxt "tabletextflowpage|splitrow"
msgid "Allow row to break a_cross pages and columns"
msgstr "_Редът може да бъде разделян от страници и колони"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:306
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:262
msgctxt "tabletextflowpage|keep"
msgid "_Keep with next paragraph"
msgstr "_Заедно със следващия абзац"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:328
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:284
msgctxt "tabletextflowpage|label40"
msgid "Text _orientation"
msgstr "_Ориентация на текста"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:361
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:298
+msgctxt "tabletextflowpage|liststore1"
+msgid "Horizontal"
+msgstr "Хоризонтално"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:299
+msgctxt "tabletextflowpage|liststore1"
+msgid "Vertical"
+msgstr "Вертикално"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:300
+msgctxt "tabletextflowpage|liststore1"
+msgid "Use superordinate object settings"
+msgstr "Настройки от родителския обект"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:321
msgctxt "tabletextflowpage|headline"
msgid "R_epeat heading"
msgstr "П_овтаряне на заглавието"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:383
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:343
msgctxt "tabletextflowpage|label38"
msgid "The first "
msgstr "Първите "
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:396
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:356
msgctxt "tabletextflowpage|label39"
msgid "rows"
msgstr "реда"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:434
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:395
msgctxt "tabletextflowpage|label35"
msgid "Text Flow"
msgstr "Изливане на текст"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:467
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:428
msgctxt "tabletextflowpage|label41"
msgid "_Vertical alignment"
msgstr "_Вертикално подреждане"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:495
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:442
+msgctxt "tabletextflowpage|liststore2"
+msgid "Top"
+msgstr "Отгоре"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:443
+msgctxt "tabletextflowpage|liststore2"
+msgid "Centered"
+msgstr "В средата"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:444
+msgctxt "tabletextflowpage|liststore2"
+msgid "Bottom"
+msgstr "Отдолу"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:460
msgctxt "tabletextflowpage|label36"
msgid "Alignment"
msgstr "Подравняване"
@@ -16878,8 +16883,8 @@ msgstr "Азбучен указател"
#: sw/uiconfig/swriter/ui/tocindexpage.ui:58
msgctxt "tocindexpage|liststore1"
-msgid "Illustration Index"
-msgstr "Указател на илюстрациите"
+msgid "Table of Figures"
+msgstr "Таблица на фигурите"
#: sw/uiconfig/swriter/ui/tocindexpage.ui:62
msgctxt "tocindexpage|liststore1"
diff --git a/source/bg/wizards/source/resources.po b/source/bg/wizards/source/resources.po
index 01ef6939ce5..ef6547f7353 100644
--- a/source/bg/wizards/source/resources.po
+++ b/source/bg/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: 2017-10-04 11:47+0200\n"
-"PO-Revision-Date: 2017-12-17 11:54+0000\n"
+"PO-Revision-Date: 2018-06-08 13:09+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bg\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1513511665.000000\n"
+"X-POOTLE-MTIME: 1528463393.000000\n"
#: resources_en_US.properties
msgctxt ""
@@ -1606,7 +1606,7 @@ msgctxt ""
"RID_QUERY_50\n"
"property.text"
msgid "Fie~lds in the Query:"
-msgstr "Полета в заявката: "
+msgstr "Полета в заявката:"
#: resources_en_US.properties
msgctxt ""
@@ -1614,7 +1614,7 @@ msgctxt ""
"RID_QUERY_51\n"
"property.text"
msgid "Sorting order:"
-msgstr "Ред на сортиране: "
+msgstr "Ред на сортиране:"
#: resources_en_US.properties
msgctxt ""
@@ -1630,7 +1630,7 @@ msgctxt ""
"RID_QUERY_53\n"
"property.text"
msgid "Search conditions:"
-msgstr "Условия за търсене: "
+msgstr "Условия за търсене:"
#: resources_en_US.properties
msgctxt ""
@@ -1646,7 +1646,7 @@ msgctxt ""
"RID_QUERY_55\n"
"property.text"
msgid "Aggregate functions:"
-msgstr "Агрегатни функции: "
+msgstr "Агрегатни функции:"
#: resources_en_US.properties
msgctxt ""
@@ -1662,7 +1662,7 @@ msgctxt ""
"RID_QUERY_57\n"
"property.text"
msgid "Grouped by:"
-msgstr "Групиране по: "
+msgstr "Групиране по:"
#: resources_en_US.properties
msgctxt ""
@@ -1678,7 +1678,7 @@ msgctxt ""
"RID_QUERY_59\n"
"property.text"
msgid "Grouping conditions:"
-msgstr "Условия за групиране: "
+msgstr "Условия за групиране:"
#: resources_en_US.properties
msgctxt ""
@@ -3022,7 +3022,7 @@ msgctxt ""
"STATUSLINE_0\n"
"property.text"
msgid "Conversion status:"
-msgstr "Ход на преобразуването: "
+msgstr "Ход на преобразуването:"
#: resources_en_US.properties
msgctxt ""
@@ -3998,7 +3998,7 @@ msgctxt ""
"NoDirCreation\n"
"property.text"
msgid "The '%1' directory cannot be created:"
-msgstr "Директорията „%1“ не може да бъде създадена: "
+msgstr "Директорията „%1“ не може да бъде създадена:"
#: resources_en_US.properties
msgctxt ""
diff --git a/source/bg/writerperfect/messages.po b/source/bg/writerperfect/messages.po
index 1ba248ed15a..024bd68455b 100644
--- a/source/bg/writerperfect/messages.po
+++ b/source/bg/writerperfect/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-16 16:54+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2018-05-08 13:45+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -66,97 +66,97 @@ msgctxt "exportepub|generalft"
msgid "General"
msgstr "Общи"
-#: writerperfect/uiconfig/ui/exportepub.ui:122
+#: writerperfect/uiconfig/ui/exportepub.ui:121
msgctxt "exportepub|versionft"
msgid "Version:"
msgstr "Версия:"
-#: writerperfect/uiconfig/ui/exportepub.ui:139
+#: writerperfect/uiconfig/ui/exportepub.ui:138
msgctxt "exportepub|epub3"
msgid "EPUB 3.0"
msgstr "EPUB 3.0"
-#: writerperfect/uiconfig/ui/exportepub.ui:140
+#: writerperfect/uiconfig/ui/exportepub.ui:139
msgctxt "exportepub|epub2"
msgid "EPUB 2.0"
msgstr "EPUB 2.0"
-#: writerperfect/uiconfig/ui/exportepub.ui:175
+#: writerperfect/uiconfig/ui/exportepub.ui:174
msgctxt "exportepub|splitft"
msgid "Split method:"
msgstr "Метод на разделяне:"
-#: writerperfect/uiconfig/ui/exportepub.ui:192
+#: writerperfect/uiconfig/ui/exportepub.ui:191
msgctxt "exportepub|splitpage"
msgid "Page break"
msgstr "Нова страница"
-#: writerperfect/uiconfig/ui/exportepub.ui:193
+#: writerperfect/uiconfig/ui/exportepub.ui:192
msgctxt "exportepub|splitheading"
msgid "Heading"
msgstr "Заглавие"
-#: writerperfect/uiconfig/ui/exportepub.ui:228
+#: writerperfect/uiconfig/ui/exportepub.ui:227
msgctxt "exportepub|layoutft"
msgid "Layout method:"
msgstr "Метод на оформление:"
-#: writerperfect/uiconfig/ui/exportepub.ui:245
+#: writerperfect/uiconfig/ui/exportepub.ui:244
msgctxt "exportepub|layoutreflowable"
msgid "Reflowable"
msgstr "С изливане"
-#: writerperfect/uiconfig/ui/exportepub.ui:246
+#: writerperfect/uiconfig/ui/exportepub.ui:245
msgctxt "exportepub|layoutfixed"
msgid "Fixed"
msgstr "Фиксирано"
-#: writerperfect/uiconfig/ui/exportepub.ui:281
+#: writerperfect/uiconfig/ui/exportepub.ui:280
msgctxt "exportepub|coverimageft"
msgid "Custom cover image:"
msgstr "Заглавно изображение:"
-#: writerperfect/uiconfig/ui/exportepub.ui:311
+#: writerperfect/uiconfig/ui/exportepub.ui:310
msgctxt "exportepub|coverbutton"
msgid "Browse..."
msgstr "Преглед..."
-#: writerperfect/uiconfig/ui/exportepub.ui:355
+#: writerperfect/uiconfig/ui/exportepub.ui:354
msgctxt "exportepub|mediadirft"
msgid "Custom media directory:"
msgstr "Директория с допълнителни файлове:"
-#: writerperfect/uiconfig/ui/exportepub.ui:385
+#: writerperfect/uiconfig/ui/exportepub.ui:384
msgctxt "exportepub|mediabutton"
msgid "Browse..."
msgstr "Преглед..."
-#: writerperfect/uiconfig/ui/exportepub.ui:429
+#: writerperfect/uiconfig/ui/exportepub.ui:428
msgctxt "exportepub|metadataft"
msgid "Metadata"
msgstr "Метаданни"
-#: writerperfect/uiconfig/ui/exportepub.ui:470
+#: writerperfect/uiconfig/ui/exportepub.ui:468
msgctxt "exportepub|identifierft"
msgid "Identifier:"
msgstr "Идентификатор:"
-#: writerperfect/uiconfig/ui/exportepub.ui:485
+#: writerperfect/uiconfig/ui/exportepub.ui:483
msgctxt "exportepub|titleft"
msgid "Title:"
msgstr "Заглавие:"
-#: writerperfect/uiconfig/ui/exportepub.ui:511
+#: writerperfect/uiconfig/ui/exportepub.ui:509
msgctxt "exportepub|authorft"
msgid "Author:"
msgstr "Автор:"
-#: writerperfect/uiconfig/ui/exportepub.ui:537
+#: writerperfect/uiconfig/ui/exportepub.ui:535
msgctxt "exportepub|languageft"
msgid "Language:"
msgstr "Език:"
-#: writerperfect/uiconfig/ui/exportepub.ui:563
+#: writerperfect/uiconfig/ui/exportepub.ui:561
msgctxt "exportepub|dateft"
msgid "Date:"
msgstr "Дата:"
diff --git a/source/bg/xmlsecurity/messages.po b/source/bg/xmlsecurity/messages.po
index 71c3702fb91..d9676844dce 100644
--- a/source/bg/xmlsecurity/messages.po
+++ b/source/bg/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: 2018-05-22 13:17+0200\n"
-"PO-Revision-Date: 2018-02-28 16:50+0000\n"
+"PO-Revision-Date: 2018-05-27 21:06+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: bg\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1519836619.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1527455203.000000\n"
#: xmlsecurity/inc/strings.hrc:25
msgctxt "STR_CERTIFICATE_NOT_VALIDATED"
@@ -460,7 +460,7 @@ msgstr "Подписване"
#: xmlsecurity/uiconfig/ui/selectcertificatedialog.ui:194
msgctxt "selectcertificatedialog|str_selectsign"
msgid "Select"
-msgstr ""
+msgstr "Избор"
#: xmlsecurity/uiconfig/ui/selectcertificatedialog.ui:199
msgctxt "selectcertificatedialog|str_encrypt"
diff --git a/source/bn-IN/cui/messages.po b/source/bn-IN/cui/messages.po
index 9a75eda390f..e2506fb8383 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+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"
@@ -9999,97 +9999,97 @@ msgctxt "positionsizedialog|PositionAndSizeDialog"
msgid "Position and Size"
msgstr "অবস্থান ও আকার"
-#: cui/uiconfig/ui/positionsizedialog.ui:107
+#: cui/uiconfig/ui/positionsizedialog.ui:136
msgctxt "positionsizedialog|RID_SVXPAGE_POSITION_SIZE"
msgid "Position and Size"
msgstr "অবস্থান ও আকার"
-#: cui/uiconfig/ui/positionsizedialog.ui:129
+#: cui/uiconfig/ui/positionsizedialog.ui:182
msgctxt "positionsizedialog|RID_SVXPAGE_SWPOSSIZE"
msgid "Position and Size"
msgstr "অবস্থান ও আকার"
-#: cui/uiconfig/ui/positionsizedialog.ui:152
+#: cui/uiconfig/ui/positionsizedialog.ui:229
msgctxt "positionsizedialog|RID_SVXPAGE_ANGLE"
msgid "Rotation"
msgstr "ঘূর্ণন"
-#: cui/uiconfig/ui/positionsizedialog.ui:175
+#: cui/uiconfig/ui/positionsizedialog.ui:276
msgctxt "positionsizedialog|RID_SVXPAGE_SLANT"
msgid "Slant & Corner Radius"
msgstr "তির্যক ও কৌণিক ব্যাসার্ধ"
-#: cui/uiconfig/ui/possizetabpage.ui:40
+#: cui/uiconfig/ui/possizetabpage.ui:61
msgctxt "possizetabpage|FT_POS_X"
msgid "Position _X:"
msgstr "অবস্থান _X:"
-#: cui/uiconfig/ui/possizetabpage.ui:56
+#: cui/uiconfig/ui/possizetabpage.ui:75
msgctxt "possizetabpage|FT_POS_Y"
msgid "Position _Y:"
msgstr "অবস্থান _Y:"
-#: cui/uiconfig/ui/possizetabpage.ui:110
+#: cui/uiconfig/ui/possizetabpage.ui:128
msgctxt "possizetabpage|FT_POSREFERENCE"
msgid "_Base point:"
msgstr "বেস পয়েন্ট (_B):"
-#: cui/uiconfig/ui/possizetabpage.ui:148
+#: cui/uiconfig/ui/possizetabpage.ui:182
msgctxt "possizetabpage|label1"
msgid "Position"
msgstr "অবস্থান"
-#: cui/uiconfig/ui/possizetabpage.ui:190
+#: cui/uiconfig/ui/possizetabpage.ui:224
msgctxt "possizetabpage|FT_WIDTH"
msgid "Wi_dth:"
msgstr "প্রস্থ (_d):"
-#: cui/uiconfig/ui/possizetabpage.ui:206
+#: cui/uiconfig/ui/possizetabpage.ui:238
msgctxt "possizetabpage|FT_HEIGHT"
msgid "H_eight:"
msgstr "উচ্চতা (_e):"
-#: cui/uiconfig/ui/possizetabpage.ui:247
+#: cui/uiconfig/ui/possizetabpage.ui:276
msgctxt "possizetabpage|CBX_SCALE"
msgid "_Keep ratio"
msgstr "অনুপাত বজায় রাখুন (_K)"
-#: cui/uiconfig/ui/possizetabpage.ui:279
+#: cui/uiconfig/ui/possizetabpage.ui:307
msgctxt "possizetabpage|FT_SIZEREFERENCE"
msgid "Base _point:"
msgstr "বেস পয়েন্ট (_p):"
-#: cui/uiconfig/ui/possizetabpage.ui:317
+#: cui/uiconfig/ui/possizetabpage.ui:361
msgctxt "possizetabpage|label2"
msgid "Size"
msgstr "মাপ"
-#: cui/uiconfig/ui/possizetabpage.ui:356
+#: cui/uiconfig/ui/possizetabpage.ui:401
msgctxt "possizetabpage|TSB_POSPROTECT"
msgid "Positio_n"
msgstr "অবস্থান (_n)"
-#: cui/uiconfig/ui/possizetabpage.ui:373
+#: cui/uiconfig/ui/possizetabpage.ui:418
msgctxt "possizetabpage|TSB_SIZEPROTECT"
msgid "_Size"
msgstr "আকার (_S)"
-#: cui/uiconfig/ui/possizetabpage.ui:397
+#: cui/uiconfig/ui/possizetabpage.ui:441
msgctxt "possizetabpage|label3"
msgid "Protect"
msgstr "সুরক্ষা"
-#: cui/uiconfig/ui/possizetabpage.ui:430
+#: cui/uiconfig/ui/possizetabpage.ui:475
msgctxt "possizetabpage|TSB_AUTOGROW_WIDTH"
msgid "_Fit width to text"
msgstr "পাঠ্য অনুযায়ী প্রস্থ মানানসই (_F)"
-#: cui/uiconfig/ui/possizetabpage.ui:447
+#: cui/uiconfig/ui/possizetabpage.ui:492
msgctxt "possizetabpage|TSB_AUTOGROW_HEIGHT"
msgid "Fit _height to text"
msgstr "পাঠ্য অনুযায়ী উচ্চতা মানানসই (_h)"
-#: cui/uiconfig/ui/possizetabpage.ui:471
+#: cui/uiconfig/ui/possizetabpage.ui:515
msgctxt "possizetabpage|label4"
msgid "Adapt"
msgstr "খাপ খাওয়ানো"
@@ -10289,47 +10289,47 @@ msgctxt "recordnumberdialog|label2"
msgid "go to record"
msgstr "রেকর্ডে যান"
-#: cui/uiconfig/ui/rotationtabpage.ui:52
+#: cui/uiconfig/ui/rotationtabpage.ui:56
msgctxt "rotationtabpage|FT_POS_X"
msgid "Position _X:"
msgstr "অবস্থান _X:"
-#: cui/uiconfig/ui/rotationtabpage.ui:66
+#: cui/uiconfig/ui/rotationtabpage.ui:70
msgctxt "rotationtabpage|FT_POS_Y"
msgid "Position _Y:"
msgstr "অবস্থান _Y:"
-#: cui/uiconfig/ui/rotationtabpage.ui:116
+#: cui/uiconfig/ui/rotationtabpage.ui:123
msgctxt "rotationtabpage|FT_POSPRESETS"
msgid "_Default settings:"
msgstr "ডিফল্ট সেটিংসমূহ (_D):"
-#: cui/uiconfig/ui/rotationtabpage.ui:130
+#: cui/uiconfig/ui/rotationtabpage.ui:151
msgctxt "rotationtabpage|CTL_RECT|tooltip_text"
msgid "Rotation point"
msgstr "আবর্তন পয়েন্ট"
-#: cui/uiconfig/ui/rotationtabpage.ui:155
+#: cui/uiconfig/ui/rotationtabpage.ui:178
msgctxt "rotationtabpage|label1"
msgid "Pivot Point"
msgstr "পিভট পয়েন্ট"
-#: cui/uiconfig/ui/rotationtabpage.ui:197
+#: cui/uiconfig/ui/rotationtabpage.ui:220
msgctxt "rotationtabpage|FT_ANGLE"
msgid "_Angle:"
msgstr "কোণ (_A):"
-#: cui/uiconfig/ui/rotationtabpage.ui:238
+#: cui/uiconfig/ui/rotationtabpage.ui:263
msgctxt "rotationtabpage|FT_ANGLEPRESETS"
msgid "Default _settings:"
msgstr "ডিফল্ট সেটিংসমূহ (_s):"
-#: cui/uiconfig/ui/rotationtabpage.ui:252
+#: cui/uiconfig/ui/rotationtabpage.ui:287
msgctxt "rotationtabpage|CTL_ANGLE|tooltip_text"
msgid "Rotation Angle"
msgstr "আবর্তন কোণ"
-#: cui/uiconfig/ui/rotationtabpage.ui:277
+#: cui/uiconfig/ui/rotationtabpage.ui:314
msgctxt "rotationtabpage|label2"
msgid "Rotation Angle"
msgstr "আবর্তন কোণ"
@@ -10712,52 +10712,52 @@ msgctxt "similaritysearchdialog|relaxbox"
msgid "_Combine"
msgstr "মিলিত (_C)"
-#: cui/uiconfig/ui/slantcornertabpage.ui:50
+#: cui/uiconfig/ui/slantcornertabpage.ui:70
msgctxt "slantcornertabpage|label5"
msgid "_X:"
msgstr "_X:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:88
+#: cui/uiconfig/ui/slantcornertabpage.ui:110
msgctxt "slantcornertabpage|label6"
msgid "_Y:"
msgstr "_Y:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:125
+#: cui/uiconfig/ui/slantcornertabpage.ui:149
msgctxt "slantcornertabpage|label3"
msgid "Control Point 1"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:159
+#: cui/uiconfig/ui/slantcornertabpage.ui:183
msgctxt "slantcornertabpage|FT_RADIUS"
msgid "_Radius:"
msgstr "ব্যাসার্ধ (_R):"
-#: cui/uiconfig/ui/slantcornertabpage.ui:189
+#: cui/uiconfig/ui/slantcornertabpage.ui:214
msgctxt "slantcornertabpage|label1"
msgid "Corner Radius"
msgstr "কৌণিক ব্যাসার্ধ"
-#: cui/uiconfig/ui/slantcornertabpage.ui:223
+#: cui/uiconfig/ui/slantcornertabpage.ui:248
msgctxt "slantcornertabpage|FT_ANGLE"
msgid "_Angle:"
msgstr "কোণ (_A):"
-#: cui/uiconfig/ui/slantcornertabpage.ui:253
+#: cui/uiconfig/ui/slantcornertabpage.ui:279
msgctxt "slantcornertabpage|label2"
msgid "Slant"
msgstr "তির্যক"
-#: cui/uiconfig/ui/slantcornertabpage.ui:294
+#: cui/uiconfig/ui/slantcornertabpage.ui:320
msgctxt "slantcornertabpage|label4"
msgid "_X:"
msgstr "_X:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:332
+#: cui/uiconfig/ui/slantcornertabpage.ui:360
msgctxt "slantcornertabpage|label7"
msgid "_Y:"
msgstr "_Y:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:369
+#: cui/uiconfig/ui/slantcornertabpage.ui:399
msgctxt "slantcornertabpage|label8"
msgid "Control Point 2"
msgstr ""
@@ -11040,112 +11040,112 @@ msgctxt "storedwebconnectiondialog|change"
msgid "_Change Password..."
msgstr "পাসওয়ার্ড পরিবর্তন করুন (_C)..."
-#: cui/uiconfig/ui/swpossizepage.ui:74
+#: cui/uiconfig/ui/swpossizepage.ui:85
msgctxt "swpossizepage|widthft"
msgid "_Width:"
msgstr "প্রস্থ (_W):"
-#: cui/uiconfig/ui/swpossizepage.ui:111
+#: cui/uiconfig/ui/swpossizepage.ui:123
msgctxt "swpossizepage|heightft"
msgid "H_eight:"
msgstr "উচ্চতা (_e):"
-#: cui/uiconfig/ui/swpossizepage.ui:128
+#: cui/uiconfig/ui/swpossizepage.ui:141
msgctxt "swpossizepage|ratio"
msgid "_Keep ratio"
msgstr "অনুপাত বজায় রাখুন (_K)"
-#: cui/uiconfig/ui/swpossizepage.ui:149
+#: cui/uiconfig/ui/swpossizepage.ui:162
msgctxt "swpossizepage|label2"
msgid "Size"
msgstr "মাপ"
-#: cui/uiconfig/ui/swpossizepage.ui:205
+#: cui/uiconfig/ui/swpossizepage.ui:218
msgctxt "swpossizepage|topage"
msgid "To _page"
msgstr "পৃষ্ঠায় (_p)"
-#: cui/uiconfig/ui/swpossizepage.ui:222
+#: cui/uiconfig/ui/swpossizepage.ui:234
msgctxt "swpossizepage|topara"
msgid "To paragrap_h"
msgstr "অনুচ্ছেদে (_h)"
-#: cui/uiconfig/ui/swpossizepage.ui:238
+#: cui/uiconfig/ui/swpossizepage.ui:250
msgctxt "swpossizepage|tochar"
msgid "To cha_racter"
msgstr "অক্ষরে (_r)"
-#: cui/uiconfig/ui/swpossizepage.ui:254
+#: cui/uiconfig/ui/swpossizepage.ui:266
msgctxt "swpossizepage|aschar"
msgid "_As character"
msgstr "অক্ষর হিসেবে (_A)"
-#: cui/uiconfig/ui/swpossizepage.ui:270
+#: cui/uiconfig/ui/swpossizepage.ui:282
msgctxt "swpossizepage|toframe"
msgid "To _frame"
msgstr "ফ্রেমে (_f)"
-#: cui/uiconfig/ui/swpossizepage.ui:292
+#: cui/uiconfig/ui/swpossizepage.ui:304
msgctxt "swpossizepage|label1"
msgid "Anchor"
msgstr "অ্যাঙ্কর"
-#: cui/uiconfig/ui/swpossizepage.ui:333
+#: cui/uiconfig/ui/swpossizepage.ui:344
msgctxt "swpossizepage|horiposft"
msgid "Hori_zontal:"
msgstr "অনুভূমিক (_z):"
-#: cui/uiconfig/ui/swpossizepage.ui:347
+#: cui/uiconfig/ui/swpossizepage.ui:358
msgctxt "swpossizepage|horibyft"
msgid "b_y:"
msgstr "দ্বারা (_y):"
-#: cui/uiconfig/ui/swpossizepage.ui:361
+#: cui/uiconfig/ui/swpossizepage.ui:372
msgctxt "swpossizepage|vertbyft"
msgid "_by:"
msgstr "দ্বারা (_b):"
-#: cui/uiconfig/ui/swpossizepage.ui:375
+#: cui/uiconfig/ui/swpossizepage.ui:386
msgctxt "swpossizepage|horitoft"
msgid "_to:"
msgstr "এতে (_t):"
-#: cui/uiconfig/ui/swpossizepage.ui:421
+#: cui/uiconfig/ui/swpossizepage.ui:433
msgctxt "swpossizepage|vertposft"
msgid "_Vertical:"
msgstr "উল্লম্ব (_V):"
-#: cui/uiconfig/ui/swpossizepage.ui:457
+#: cui/uiconfig/ui/swpossizepage.ui:470
msgctxt "swpossizepage|verttoft"
msgid "t_o:"
msgstr "এতে (_o):"
-#: cui/uiconfig/ui/swpossizepage.ui:478
+#: cui/uiconfig/ui/swpossizepage.ui:492
msgctxt "swpossizepage|mirror"
msgid "_Mirror on even pages"
msgstr "জোড় পৃষ্ঠার প্রতিফলন (_M)"
-#: cui/uiconfig/ui/swpossizepage.ui:495
+#: cui/uiconfig/ui/swpossizepage.ui:509
msgctxt "swpossizepage|followtextflow"
msgid "Follow te_xt flow"
msgstr "পাঠ্য প্রবাহ অনুসরণ করুন (_x)"
-#: cui/uiconfig/ui/swpossizepage.ui:518
+#: cui/uiconfig/ui/swpossizepage.ui:532
msgctxt "swpossizepage|label11"
msgid "Position"
msgstr "অবস্থান"
-#: cui/uiconfig/ui/swpossizepage.ui:549
+#: cui/uiconfig/ui/swpossizepage.ui:563
msgctxt "swpossizepage|pos"
msgid "Positio_n"
msgstr "অবস্থান (_n)"
-#: cui/uiconfig/ui/swpossizepage.ui:565
+#: cui/uiconfig/ui/swpossizepage.ui:579
msgctxt "swpossizepage|size"
msgid "_Size"
msgstr "আকার (_S)"
-#: cui/uiconfig/ui/swpossizepage.ui:587
+#: cui/uiconfig/ui/swpossizepage.ui:601
msgctxt "swpossizepage|label3"
msgid "Protect"
msgstr "সুরক্ষা"
@@ -11336,12 +11336,12 @@ msgctxt "textattrtabpage|label2"
msgid "Spacing to Borders"
msgstr "সীমানায় ব্যবধান"
-#: cui/uiconfig/ui/textattrtabpage.ui:425
+#: cui/uiconfig/ui/textattrtabpage.ui:423
msgctxt "textattrtabpage|TSB_FULL_WIDTH"
msgid "Full _width"
msgstr "সম্পূর্ণ প্রস্থ (_w)"
-#: cui/uiconfig/ui/textattrtabpage.ui:448
+#: cui/uiconfig/ui/textattrtabpage.ui:446
msgctxt "textattrtabpage|label3"
msgid "Text Anchor"
msgstr "টেক্সট অ্যাঙ্কর"
diff --git a/source/bn-IN/filter/source/config/fragments/filters.po b/source/bn-IN/filter/source/config/fragments/filters.po
index d64829b2ceb..1af6308f84d 100644
--- a/source/bn-IN/filter/source/config/fragments/filters.po
+++ b/source/bn-IN/filter/source/config/fragments/filters.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: 2018-05-16 16:54+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2016-12-01 12:09+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Bengali (India) <anubad@lists.ankur.org.in>\n"
@@ -463,8 +463,8 @@ msgctxt ""
"MS Word 2003 XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Word 2003 XML"
-msgstr "মাইক্রোসফট ওয়ার্ড 2003 XML"
+msgid "Word 2003 XML"
+msgstr ""
#: MS_Word_2007_XML.xcu
msgctxt ""
@@ -1286,7 +1286,7 @@ msgctxt ""
"Calc MS Excel 2007 VBA XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Excel 2007-2016 XML (macro enabled)"
+msgid "Excel 2007–2019 (macro-enabled)"
msgstr ""
#: calc_MS_Excel_2007_XML.xcu
diff --git a/source/bn-IN/filter/source/config/fragments/types.po b/source/bn-IN/filter/source/config/fragments/types.po
index 41ba8071ec3..94e962c0574 100644
--- a/source/bn-IN/filter/source/config/fragments/types.po
+++ b/source/bn-IN/filter/source/config/fragments/types.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: 2018-05-08 15:11+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2015-11-11 00:41+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Bengali (India) <anubad@lists.ankur.org.in>\n"
@@ -293,8 +293,8 @@ msgctxt ""
"writer_MS_Word_2003_XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Word 2003 XML"
-msgstr "মাইক্রোসফট ওয়ার্ড ২০০৩ XML"
+msgid "Word 2003 XML"
+msgstr ""
#: writer_MS_Word_2007_XML.xcu
msgctxt ""
diff --git a/source/bn-IN/fpicker/messages.po b/source/bn-IN/fpicker/messages.po
index a26570fdcc3..b1df98af858 100644
--- a/source/bn-IN/fpicker/messages.po
+++ b/source/bn-IN/fpicker/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+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"
@@ -269,13 +269,13 @@ msgstr ""
#: fpicker/uiconfig/ui/foldernamedialog.ui:8
msgctxt "foldernamedialog|FolderNameDialog"
-msgid "Folder Name ?"
-msgstr "ফোল্ডারের নাম?"
+msgid "Folder Name"
+msgstr ""
#: fpicker/uiconfig/ui/foldernamedialog.ui:91
msgctxt "foldernamedialog|label2"
-msgid "Na_me"
-msgstr "নাম (_m)"
+msgid "Na_me:"
+msgstr ""
#: fpicker/uiconfig/ui/foldernamedialog.ui:122
msgctxt "foldernamedialog|label1"
diff --git a/source/bn-IN/helpcontent2/source/text/shared/00.po b/source/bn-IN/helpcontent2/source/text/shared/00.po
index 96f7e520ba5..d61a12608d9 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2016-05-24 02:23+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -397,16 +397,16 @@ msgctxt ""
"00000001.xhp\n"
"hd_id3149670\n"
"help.text"
-msgid "Back"
-msgstr "পূর্ববর্তী"
+msgid "Reset"
+msgstr ""
#: 00000001.xhp
msgctxt ""
"00000001.xhp\n"
"par_id3145068\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optionsdialog/revert\">Resets modified values back to the $[officename] default values.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/optionsdialog/revert\">$[officename] পূর্বনির্ধারিত মানে পরিবর্তিত মান গুলো পুনরায় নিযুক্ত করা হয়েছে।</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optionsdialog/revert\">Resets changes made to the current tab to those applicable when this dialog was opened.</ahelp>"
+msgstr ""
#: 00000001.xhp
msgctxt ""
@@ -552,6 +552,54 @@ msgctxt ""
msgid "<variable id=\"ShiftF1\">Press Shift+F1 and point to a control to learn more about that control.</variable>"
msgstr ""
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"hd_id631527692833772\n"
+"help.text"
+msgid "Options dialog buttons"
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"hd_id831527692839432\n"
+"help.text"
+msgid "OK"
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"par_id471527692844934\n"
+"help.text"
+msgid "Save the changes in the page and close the Options dialog."
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"hd_id261527692850720\n"
+"help.text"
+msgid "Cancel"
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"par_id571527692855533\n"
+"help.text"
+msgid "Close the Options dialog and discard all changes done."
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"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 Options dialog."
+msgstr ""
+
#: 00000002.xhp
msgctxt ""
"00000002.xhp\n"
@@ -11125,16 +11173,16 @@ msgctxt ""
"00040502.xhp\n"
"par_id3151293\n"
"help.text"
-msgid "<variable id=\"linienstile\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Line Styles</emph> tab </variable>"
-msgstr "<variable id=\"linienstile\"> <emph>বিন্যাস - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>বস্তু - </emph></caseinline><caseinline select=\"CALC\"><emph>গ্রাফিক্স - </emph></caseinline></switchinline><emph>লাইন - লাইনেরর শৈলী</emph> ট্যাবটি নির্বাচন করুন </variable>"
+msgid "<variable id=\"linienstile\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Line Styles</emph> tab</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3149317\n"
"help.text"
-msgid "<variable id=\"linienenden\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Arrow Styles</emph> tab </variable>"
-msgstr "<variable id=\"linienenden\"> <emph>বিন্যাস - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>বস্তু - </emph></caseinline><caseinline select=\"CALC\"><emph>গ্রাফিক্স - </emph></caseinline></switchinline><emph>সারি - তীর চিহ্নের শৈলী</emph> ট্যাবটি নির্বাচন করুন </variable>"
+msgid "<variable id=\"linienenden\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Arrow Styles</emph> tab</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
@@ -11173,15 +11221,15 @@ msgctxt ""
"00040502.xhp\n"
"par_id3154948\n"
"help.text"
-msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Area</emph> tab"
-msgstr "<emph>বিন্যাস - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>বস্তু - </emph></caseinline><caseinline select=\"CALC\"><emph>গ্রাফিক্স - </emph></caseinline></switchinline><emph>এলাকা - এলাকা</emph> ট্যাবটি নির্বাচন করুন"
+msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Area</emph> tab."
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3145607\n"
"help.text"
-msgid "Choose <emph>View - Styles</emph> - open context menu and choose <emph>Modify/New - Area</emph> tab (presentation documents)"
+msgid "Choose <emph>View - Styles</emph> - open context menu and choose <emph>Modify/New - Area</emph> tab (presentation documents)."
msgstr ""
#: 00040502.xhp
@@ -11189,47 +11237,47 @@ msgctxt ""
"00040502.xhp\n"
"par_id3152922\n"
"help.text"
-msgid "Choose <emph>Format - Title - Area</emph> tab (chart documents)"
-msgstr "<emph>বিন্যাস - শিরোনাম - এলাকা</emph> ট্যাব (লেখচিত্র নথি) নির্বাচন করুন"
+msgid "Choose <emph>Format - Title - Area</emph> tab (chart documents)."
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3157894\n"
"help.text"
-msgid "Choose <emph>Format - Legend - Area</emph> tab (chart documents)"
-msgstr "<emph>বিন্যাস - লেজেন্ড - এলাকা</emph> ট্যাব (লেখচিত্র নথি) নির্বাচন করুন"
+msgid "Choose <emph>Format - Legend - Area</emph> tab (chart documents)."
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3144444\n"
"help.text"
-msgid "Choose <emph>Format - Chart Wall - Area</emph> tab (chart documents)"
-msgstr "<emph>বিন্যাস - লেখচিত্রের বেষ্টনী - এলাকা</emph> ট্যাব (লেখচিত্র নথি) নির্বাচন করুন"
+msgid "Choose <emph>Format - Chart Wall - Area</emph> tab (chart documents)."
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3156543\n"
"help.text"
-msgid "Choose <emph>Format - Chart Floor - Area</emph> tab (chart documents)"
-msgstr "<emph>বিন্যাস - লেখচিত্রের মেঝে - এলাকা</emph> ট্যাব (লেখচিত্র নথি) নির্বাচন করুন"
+msgid "Choose <emph>Format - Chart Floor - Area</emph> tab (chart documents)."
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3150685\n"
"help.text"
-msgid "Choose <emph>Format - Chart Area - Area</emph> tab (chart documents)"
-msgstr "<emph>বিন্যাস - লেখচিত্রের এলাকা - এলাকা</emph> ট্যাব (লেখচিত্র নথি) নির্বাচন করুন"
+msgid "Choose <emph>Format - Chart Area - Area</emph> tab (chart documents)."
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3149664\n"
"help.text"
-msgid "Choose <emph>Slide - Properties - Background</emph> tab (in $[officename] Impress)"
+msgid "Choose <emph>Slide - Properties - Background</emph> tab (in $[officename] Impress)."
msgstr ""
#: 00040502.xhp
@@ -11237,7 +11285,15 @@ msgctxt ""
"00040502.xhp\n"
"par_id9149694\n"
"help.text"
-msgid "Choose <emph>Page - Properties - Background</emph> tab (in $[officename] Draw)"
+msgid "Choose <emph>Page - Properties - Background</emph> tab (in $[officename] Draw)."
+msgstr ""
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id841527083135387\n"
+"help.text"
+msgid "Choose <emph>Table - Properties - Background</emph> tab."
msgstr ""
#: 00040502.xhp
@@ -11349,32 +11405,32 @@ msgctxt ""
"00040502.xhp\n"
"par_id3150011\n"
"help.text"
-msgid "<variable id=\"schatte\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Shadow</emph> tab </variable>"
-msgstr "<variable id=\"schatte\"> <emph>বিন্যাস - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>বস্তু - </emph></caseinline><caseinline select=\"CALC\"><emph>গ্রাফিক্স - </emph></caseinline></switchinline><emph>এলাকা - ছায়া</emph> ট্যাব নির্বাচন করুন </variable>"
+msgid "<variable id=\"schatte\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Shadow</emph> tab</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3147441\n"
"help.text"
-msgid "<variable id=\"verlauf\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Gradients</emph> tab </variable>"
-msgstr "<variable id=\"verlauf\"> <emph>বিন্যাস - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>বস্তু - </emph></caseinline><caseinline select=\"CALC\"><emph>গ্রাফিক্স - </emph></caseinline></switchinline><emph>এলাকা - গ্রেডিয়েন্ট</emph> ট্যাব নির্বাচন করুন </variable>"
+msgid "<variable id=\"verlauf\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Gradients</emph> tab</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3155308\n"
"help.text"
-msgid "<variable id=\"schraffur\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Hatching</emph> tab </variable>"
-msgstr "<variable id=\"schraffur\"> <emph>বিন্যাস - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>বস্তু - </emph></caseinline><caseinline select=\"CALC\"><emph>গ্রাফিক্স - </emph></caseinline></switchinline><emph>এলাকা - হ্যাচিং</emph> ট্যাবটি নির্বাচন করুন </variable>"
+msgid "<variable id=\"schraffur\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Hatching</emph> tab</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3145800\n"
"help.text"
-msgid "<variable id=\"bitmap\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Bitmaps</emph> tab </variable>"
-msgstr "<variable id=\"bitmap\"> <emph>বিন্যাস - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>বস্তু - </emph></caseinline><caseinline select=\"CALC\"><emph>গ্রাফিক্স - </emph></caseinline></switchinline><emph>এলাকা - বিটম্যাপ</emph> ট্যাব নির্বাচন করুন </variable>"
+msgid "<variable id=\"bitmap\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Bitmaps</emph> tab</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
@@ -11413,8 +11469,8 @@ msgctxt ""
"00040502.xhp\n"
"par_id3156286\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F4 key </caseinline><caseinline select=\"IMPRESS\">F4 key </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F4 কী </caseinline><caseinline select=\"IMPRESS\">F4 কী </caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F4 key</caseinline><caseinline select=\"IMPRESS\">F4 key</caseinline></switchinline>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
@@ -11453,8 +11509,8 @@ msgctxt ""
"00040502.xhp\n"
"par_id3153099\n"
"help.text"
-msgid "<variable id=\"position2\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Position and Size</emph> tab </variable>"
-msgstr "<variable id=\"position2\"> <emph>বিন্যাস - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>বস্তু - </emph></caseinline><caseinline select=\"CALC\"><emph>গ্রাফিক্স - </emph></caseinline></switchinline><emph>অবস্থান ও আকার - অবস্থান ও আকার</emph> ট্যাবটি নির্বাচন করুন </variable>"
+msgid "<variable id=\"position2\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Position and Size</emph> tab</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
@@ -11485,16 +11541,16 @@ msgctxt ""
"00040502.xhp\n"
"par_id3145666\n"
"help.text"
-msgid "<variable id=\"ecke\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Slant & Corner Radius</emph> tab </variable>"
-msgstr "<variable id=\"ecke\"> <emph>বিন্যাস - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>বস্তু - </emph></caseinline><caseinline select=\"CALC\"><emph>গ্রাফিক্স - </emph></caseinline></switchinline><emph>অবস্থান ও আকার- তির্যক & কৌনিক ব্যাসার্ধ</emph> ট্যাব নির্বাচন করুন </variable>"
+msgid "<variable id=\"ecke\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Slant & Corner Radius</emph> tab</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3146081\n"
"help.text"
-msgid "<variable id=\"legende\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Callout</emph> tab (only for textbox callouts, not for custom shapes callouts) </variable>"
-msgstr "<variable id=\"ecke\"> <emph>বিন্যাস - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>বস্তু - </emph></caseinline><caseinline select=\"CALC\"><emph>গ্রাফিক্স - </emph></caseinline></switchinline><emph>অবস্থান ও আকার- তির্যক & কৌনিক ব্যাসার্ধ</emph> ট্যাব নির্বাচন করুন </variable>"
+msgid "<variable id=\"legende\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Callout</emph> tab (only for textbox callouts, not for custom shapes callouts)</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
@@ -11517,8 +11573,8 @@ msgctxt ""
"00040502.xhp\n"
"par_id3149019\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F8 key </caseinline><caseinline select=\"IMPRESS\">F8 key </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F8 কী </caseinline><caseinline select=\"IMPRESS\">F8 কী </caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F8 key</caseinline><caseinline select=\"IMPRESS\">F8 key</caseinline></switchinline>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
@@ -11805,8 +11861,8 @@ msgctxt ""
"00040502.xhp\n"
"par_id3153076\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Align Center Horizontally </caseinline><defaultinline>Centered</defaultinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">কেন্দ্রস্থিত বস্তু উল্লম্বভাবে প্রান্তিককরণ </caseinline><defaultinline>কেন্দ্রস্থিত</defaultinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Align Center Horizontally</caseinline><defaultinline>Centered</defaultinline></switchinline>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
@@ -11845,8 +11901,8 @@ msgctxt ""
"00040502.xhp\n"
"par_id3150527\n"
"help.text"
-msgid "<variable id=\"font\">Click <emph>Fontwork</emph> icon on <emph>Drawing</emph> bar </variable>"
-msgstr "<variable id=\"font\"> <emph>ফন্টওয়ার্ক</emph> আইকনে <emph>অঙ্কন</emph> বারে </variable> ক্লিক করুন"
+msgid "<variable id=\"font\">Click <emph>Fontwork</emph> icon on <emph>Drawing</emph> bar</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
diff --git a/source/bn-IN/helpcontent2/source/text/shared/01.po b/source/bn-IN/helpcontent2/source/text/shared/01.po
index 9b88d92678e..5e153b00d6d 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: 2018-05-23 23:19+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2016-10-18 20:14+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -23587,6 +23587,22 @@ msgstr ""
#: 05210100.xhp
msgctxt ""
"05210100.xhp\n"
+"hd_id471527077476052\n"
+"help.text"
+msgid "Cell, Row or Table background selector"
+msgstr ""
+
+#: 05210100.xhp
+msgctxt ""
+"05210100.xhp\n"
+"par_id661527077493366\n"
+"help.text"
+msgid "Select the table object which background area is to be filled."
+msgstr ""
+
+#: 05210100.xhp
+msgctxt ""
+"05210100.xhp\n"
"hd_id3147373\n"
"help.text"
msgid "None"
@@ -31205,7 +31221,7 @@ msgctxt ""
"06040100.xhp\n"
"hd_id3145072\n"
"help.text"
-msgid "Automatic *bold* and _underline_"
+msgid "Automatic *bold*, /italic/, -strikeout- and _underline_"
msgstr ""
#: 06040100.xhp
@@ -31213,7 +31229,7 @@ msgctxt ""
"06040100.xhp\n"
"par_id3153577\n"
"help.text"
-msgid "Automatically applies bold formatting to text enclosed by asterisks (*), and underline to text enclosed by underscores ( _ ), for example, *bold*. The asterisks and underscores are not displayed after the formatting is applied."
+msgid "Automatically applies bold, italic, strikethrough or underline formatting to text enclosed by asterisks (*), slashes (/), hyphens (-), and underscores (_), respectively. These characters disappear after the formatting is applied."
msgstr ""
#: 06040100.xhp
@@ -31221,7 +31237,7 @@ msgctxt ""
"06040100.xhp\n"
"par_id3153127\n"
"help.text"
-msgid "This feature does not work if the formatting characters * or _ are entered with an <link href=\"text/shared/00/00000005.xhp#IME\" name=\"Input Method Editor\">Input Method Editor</link>."
+msgid "This feature does not work if the formatting characters <item type=\"literal\">* / - _</item> are entered with an <link href=\"text/shared/00/00000005.xhp#IME\" name=\"Input Method Editor\">Input Method Editor</link>."
msgstr ""
#: 06040100.xhp
diff --git a/source/bn-IN/helpcontent2/source/text/shared/optionen.po b/source/bn-IN/helpcontent2/source/text/shared/optionen.po
index 92f6275f865..9f7e81ec9ef 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: 2018-05-08 15:10+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2016-07-05 17:05+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -83,6 +83,22 @@ msgstr ""
#: 01000000.xhp
msgctxt ""
"01000000.xhp\n"
+"hd_id551527692881035\n"
+"help.text"
+msgid "Help"
+msgstr ""
+
+#: 01000000.xhp
+msgctxt ""
+"01000000.xhp\n"
+"par_id831527692885723\n"
+"help.text"
+msgid "Opens the help contents for the Options page displayed."
+msgstr ""
+
+#: 01000000.xhp
+msgctxt ""
+"01000000.xhp\n"
"hd_id3159149\n"
"help.text"
msgid "<link href=\"text/shared/optionen/01010000.xhp\" name=\"$[officename]\">%PRODUCTNAME</link>"
@@ -4565,8 +4581,8 @@ msgctxt ""
"01030300.xhp\n"
"par_idN10640\n"
"help.text"
-msgid "Options"
-msgstr "অপশন"
+msgid "Security Options and Warnings"
+msgstr ""
#: 01030300.xhp
msgctxt ""
@@ -4597,8 +4613,8 @@ msgctxt ""
"01030300.xhp\n"
"hd_id3168736\n"
"help.text"
-msgid "Persistently save passwords protected by a master password"
-msgstr "পুনঃপুন সংরক্ষিত গুপ্তসঙ্কেত মাষ্টার গুপ্তসঙ্কেত দ্বারা সুরক্ষিত"
+msgid "Persistently save passwords for web connections"
+msgstr ""
#: 01030300.xhp
msgctxt ""
@@ -4613,8 +4629,24 @@ msgctxt ""
"01030300.xhp\n"
"hd_id3901791\n"
"help.text"
+msgid "Protected by a master password (recommended)"
+msgstr ""
+
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"par_id31527711486980\n"
+"help.text"
+msgid "Check to enable all connections' passwords to be protected by a master password."
+msgstr ""
+
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"hd_id141527711343312\n"
+"help.text"
msgid "Master Password"
-msgstr "মাষ্টার গুপ্তসঙ্কেত"
+msgstr ""
#: 01030300.xhp
msgctxt ""
@@ -13733,7 +13765,7 @@ msgctxt ""
"java.xhp\n"
"hd_id3148618\n"
"help.text"
-msgid "Optional (unstable) options"
+msgid "Optional Features"
msgstr ""
#: java.xhp
@@ -13749,7 +13781,7 @@ msgctxt ""
"java.xhp\n"
"par_id3156344\n"
"help.text"
-msgid "It enables features that are not yet complete or contain known bugs. The list of these features is different version by version, or even it can be empty."
+msgid "Enables features that are not yet complete or may contain known bugs. The list of these features is different version by version, or even it can be empty."
msgstr ""
#: java.xhp
@@ -13765,7 +13797,7 @@ msgctxt ""
"java.xhp\n"
"par_id3156345\n"
"help.text"
-msgid "It enables macro recording, so the <link href=\"text/shared/guide/macro_recording.xhp\" name=\"Tools - Macros - Record Macro\"><item type=\"menuitem\">Tools - Macros - Record Macro</item></link> menu item will be available."
+msgid "Enables macro recording. The <link href=\"text/shared/guide/macro_recording.xhp\" name=\"Tools - Macros - Record Macro\"><item type=\"menuitem\">Tools - Macros - Record Macro</item></link> menu item is available."
msgstr ""
#: java.xhp
diff --git a/source/bn-IN/officecfg/registry/data/org/openoffice/Office/UI.po b/source/bn-IN/officecfg/registry/data/org/openoffice/Office/UI.po
index 11aabf026b3..459f57c0b08 100644
--- a/source/bn-IN/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/bn-IN/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-22 13:17+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2016-12-01 12:16+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Bengali (India) <anubad@lists.ankur.org.in>\n"
@@ -26948,8 +26948,8 @@ msgctxt ""
"..WriterCommands.UserInterface.Commands..uno:TextAttributes\n"
"Label\n"
"value.text"
-msgid "Text Attributes"
-msgstr "লেখার বৈশিষ্ট্য"
+msgid "Text Attributes..."
+msgstr ""
#: WriterCommands.xcu
msgctxt ""
diff --git a/source/bn-IN/readlicense_oo/docs.po b/source/bn-IN/readlicense_oo/docs.po
index 85421749d0c..f76aec8b0fe 100644
--- a/source/bn-IN/readlicense_oo/docs.po
+++ b/source/bn-IN/readlicense_oo/docs.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: 2018-04-17 15:54+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2016-03-10 17:14+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Bengali (India) <anubad@lists.ankur.org.in>\n"
@@ -117,8 +117,8 @@ msgctxt ""
"readme.xrm\n"
"macxiOSX\n"
"readmeitem.text"
-msgid "MacOSX 10.8 (Mountain Lion) or higher"
-msgstr "MacOSX 10.8 (মাউন্টেন লায়ন) বা তার বেশি"
+msgid "MacOSX 10.9 (Mavericks) or higher"
+msgstr ""
#: readme.xrm
msgctxt ""
diff --git a/source/bn-IN/sc/messages.po b/source/bn-IN/sc/messages.po
index 2e4683e0a74..18d661030f3 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-12 14:40+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"
@@ -1871,16 +1871,21 @@ msgid "Nested arrays are not supported."
msgstr "নেস্টেড অ্যারেসমূহ সমর্থিত নয়।"
#: sc/inc/globstr.hrc:390
+msgctxt "STR_ERR_LONG_BAD_ARRAY_CONTENT"
+msgid "Unsupported inline array content."
+msgstr ""
+
+#: sc/inc/globstr.hrc:391
msgctxt "STR_UNDO_TEXTTOCOLUMNS"
msgid "Text to Columns"
msgstr "পাঠ্য থেকে কলাম"
-#: sc/inc/globstr.hrc:391
+#: sc/inc/globstr.hrc:392
msgctxt "STR_DOC_UPDATED"
msgid "Your spreadsheet has been updated with changes saved by other users."
msgstr "আপনার স্প্রেডশীট অন্যান্য ব্যবহারকারী দ্বারা সংরক্ষিত পরিবর্তনসহ হালনাগাদ করা হয়েছে।"
-#: sc/inc/globstr.hrc:392
+#: sc/inc/globstr.hrc:393
msgctxt "STR_DOC_WILLBESAVED"
msgid ""
"The spreadsheet must be saved now to activate sharing mode.\n"
@@ -1891,7 +1896,7 @@ msgstr ""
"\n"
"আপনি কি চালিয়ে যেতে চান?"
-#: sc/inc/globstr.hrc:393
+#: sc/inc/globstr.hrc:394
msgctxt "STR_DOC_WILLNOTBESAVED"
msgid ""
"Already resolved merge conflicts will be lost and your changes to the shared spreadsheet will not be saved.\n"
@@ -1902,7 +1907,7 @@ msgstr ""
"\n"
"আপনি কি অব্যাহত রাখতে চান?"
-#: sc/inc/globstr.hrc:394
+#: sc/inc/globstr.hrc:395
msgctxt "STR_DOC_DISABLESHARED"
msgid ""
"Disabling shared mode of a spreadsheet hinders all other users of the shared spreadsheet to merge back their work.\n"
@@ -1913,7 +1918,7 @@ msgstr ""
"\n"
"আপনি কি অব্যাহত রাখতে চান?"
-#: sc/inc/globstr.hrc:395
+#: sc/inc/globstr.hrc:396
msgctxt "STR_DOC_NOLONGERSHARED"
msgid ""
"This spreadsheet is no longer in shared mode.\n"
@@ -1924,7 +1929,7 @@ msgstr ""
"\n"
"আপনার স্প্রেডশীটটি একটি পৃথক ফাইলে সংরক্ষণ করুন এবং আপনার পরিবর্তনসমূহ নিজে হাতে শেয়ারকৃত স্প্রেডশীটে সংযোজন করুন।"
-#: sc/inc/globstr.hrc:396
+#: sc/inc/globstr.hrc:397
msgctxt "STR_FILE_LOCKED_TRY_LATER"
msgid ""
"The shared spreadsheet file is locked due to a merge in progress by user: '%1'\n"
@@ -1935,7 +1940,7 @@ msgstr ""
"\n"
"আবদ্ধ ফাইলের শেয়ারকরণ মোড নিষ্ক্রিয় করা যায় না। পরবর্তীতে আবার চেষ্টা করুন।"
-#: sc/inc/globstr.hrc:397
+#: sc/inc/globstr.hrc:398
msgctxt "STR_FILE_LOCKED_SAVE_LATER"
msgid ""
"The shared spreadsheet file is locked due to a merge in progress by user: '%1'\n"
@@ -1946,147 +1951,147 @@ msgstr ""
"\n"
"আপনার পরিবর্তনসমূহ সংরক্ষণ করতে পরবর্তীতে আবার চেষ্টা করুন।"
-#: sc/inc/globstr.hrc:398
+#: sc/inc/globstr.hrc:399
msgctxt "STR_UNKNOWN_USER"
msgid "Unknown User"
msgstr "অজানা ব্যবহারকারী"
-#: sc/inc/globstr.hrc:399
+#: sc/inc/globstr.hrc:400
msgctxt "STR_SHAPE_AUTOSHAPE"
msgid "AutoShape"
msgstr "স্বয়ংক্রিয় আকার"
-#: sc/inc/globstr.hrc:400
+#: sc/inc/globstr.hrc:401
msgctxt "STR_SHAPE_RECTANGLE"
msgid "Rectangle"
msgstr "আয়তাকার"
-#: sc/inc/globstr.hrc:401
+#: sc/inc/globstr.hrc:402
msgctxt "STR_SHAPE_LINE"
msgid "Line"
msgstr "লাইন"
-#: sc/inc/globstr.hrc:402
+#: sc/inc/globstr.hrc:403
msgctxt "STR_SHAPE_OVAL"
msgid "Oval"
msgstr "উপবৃত্ত"
-#: sc/inc/globstr.hrc:403
+#: sc/inc/globstr.hrc:404
msgctxt "STR_FORM_BUTTON"
msgid "Button"
msgstr "বোতাম"
-#: sc/inc/globstr.hrc:404
+#: sc/inc/globstr.hrc:405
msgctxt "STR_FORM_CHECKBOX"
msgid "Check Box"
msgstr "চেক বাক্স"
-#: sc/inc/globstr.hrc:405
+#: sc/inc/globstr.hrc:406
msgctxt "STR_FORM_OPTIONBUTTON"
msgid "Option Button"
msgstr "অপশন বোতাম"
-#: sc/inc/globstr.hrc:406
+#: sc/inc/globstr.hrc:407
msgctxt "STR_FORM_LABEL"
msgid "Label"
msgstr "লেবেল"
-#: sc/inc/globstr.hrc:407
+#: sc/inc/globstr.hrc:408
msgctxt "STR_FORM_LISTBOX"
msgid "List Box"
msgstr "তালিকা বাক্স"
-#: sc/inc/globstr.hrc:408
+#: sc/inc/globstr.hrc:409
msgctxt "STR_FORM_GROUPBOX"
msgid "Group Box"
msgstr "গ্রুপ বক্স"
-#: sc/inc/globstr.hrc:409
+#: sc/inc/globstr.hrc:410
msgctxt "STR_FORM_DROPDOWN"
msgid "Drop Down"
msgstr "নিম্ন প্রসারন"
-#: sc/inc/globstr.hrc:410
+#: sc/inc/globstr.hrc:411
msgctxt "STR_FORM_SPINNER"
msgid "Spinner"
msgstr "স্পিনার"
-#: sc/inc/globstr.hrc:411
+#: sc/inc/globstr.hrc:412
msgctxt "STR_FORM_SCROLLBAR"
msgid "Scroll Bar"
msgstr "স্ক্রল বার"
-#: sc/inc/globstr.hrc:412
+#: sc/inc/globstr.hrc:413
msgctxt "STR_STYLE_FAMILY_CELL"
msgid "Cell Styles"
msgstr "ঘরের শৈলী"
-#: sc/inc/globstr.hrc:413
+#: sc/inc/globstr.hrc:414
msgctxt "STR_STYLE_FAMILY_PAGE"
msgid "Page Styles"
msgstr "পৃষ্ঠার শৈলী"
-#: sc/inc/globstr.hrc:414
+#: sc/inc/globstr.hrc:415
msgctxt "STR_ERR_DATAPILOTSOURCE"
msgid "Pivot table source data is invalid."
msgstr "পিভট টেবিল সোর্স ডাটা অকার্যকর।"
-#: sc/inc/globstr.hrc:415
+#: sc/inc/globstr.hrc:416
msgctxt "STR_OPTIONS_WARN_SEPARATORS"
msgid "Because the current formula separator settings conflict with the locale, the formula separators have been reset to their default values."
msgstr "লোক্যালের সাথে বর্তমান সূত্র বিভাজক সেটিং কনফ্লিক্ট করার কারণে, সূত্র বিভাজকের মান পুনরায় ডিফল্ট নির্ধারণ করা হয়েছে।"
-#: sc/inc/globstr.hrc:416
+#: sc/inc/globstr.hrc:417
msgctxt "STR_UNDO_INSERT_CURRENT_DATE"
msgid "Insert Current Date"
msgstr "বর্তমান তারিখ সংযোজন"
-#: sc/inc/globstr.hrc:417
+#: sc/inc/globstr.hrc:418
msgctxt "STR_UNDO_INSERT_CURRENT_TIME"
msgid "Insert Current Time"
msgstr "বর্তমান সময় সংযোজন"
-#: sc/inc/globstr.hrc:418
+#: sc/inc/globstr.hrc:419
msgctxt "STR_MANAGE_NAMES"
msgid "Manage Names..."
msgstr "নাম সমূহ পরিচালনা করুন..."
-#: sc/inc/globstr.hrc:419
+#: sc/inc/globstr.hrc:420
msgctxt "STR_HEADER_NAME"
msgid "Name"
msgstr "নাম"
-#: sc/inc/globstr.hrc:420
+#: sc/inc/globstr.hrc:421
msgctxt "STR_HEADER_RANGE_OR_EXPR"
msgid "Range or formula expression"
msgstr ""
-#: sc/inc/globstr.hrc:421
+#: sc/inc/globstr.hrc:422
msgctxt "STR_HEADER_SCOPE"
msgid "Scope"
msgstr "সুযোগ"
-#: sc/inc/globstr.hrc:422
+#: sc/inc/globstr.hrc:423
msgctxt "STR_MULTI_SELECT"
msgid "(multiple)"
msgstr "(একাধিক)"
-#: sc/inc/globstr.hrc:423
+#: sc/inc/globstr.hrc:424
msgctxt "STR_GLOBAL_SCOPE"
msgid "Document (Global)"
msgstr "নথি (গ্লোবাল)"
-#: sc/inc/globstr.hrc:424
+#: sc/inc/globstr.hrc:425
msgctxt "STR_ERR_NAME_EXISTS"
msgid "Invalid name. Already in use for the selected scope."
msgstr "অবৈধ নাম. ইতিমধ্যে নির্বাচিত প্রসারের জন্য ব্যবহৃত হয়েছে।"
-#: sc/inc/globstr.hrc:425
+#: sc/inc/globstr.hrc:426
msgctxt "STR_ERR_NAME_INVALID"
msgid "Invalid name. Only use letters, numbers and underscore."
msgstr "অবৈধ নাম। শুধুমাত্র অক্ষর, সংখ্যা ও আন্ডার-স্কোর ব্যবহার করা যাবে।"
-#: sc/inc/globstr.hrc:426
+#: sc/inc/globstr.hrc:427
msgctxt "STR_UNSAVED_EXT_REF"
msgid ""
"This Document contains external references to unsaved documents.\n"
@@ -2097,217 +2102,217 @@ msgstr ""
"\n"
"আপনি কি এগিয়ে যেতে ইচ্ছুক?"
-#: sc/inc/globstr.hrc:427
+#: sc/inc/globstr.hrc:428
msgctxt "STR_CLOSE_WITH_UNSAVED_REFS"
msgid "This Document is referenced by another document and not yet saved. Closing it without saving will result in data loss."
msgstr "অন্য একটি নথির মধ্যে এটই নথির উল্লেখ করা হয়েছে এবং সেটি সংরক্ষণ করা হয়নি। এটি সংরক্ষণ না করে বন্ধ করা হলে তথ্যের ক্ষতি হবে।"
-#: sc/inc/globstr.hrc:428
+#: sc/inc/globstr.hrc:429
msgctxt "STR_HEADER_RANGE"
msgid "Range"
msgstr "পরিসর"
-#: sc/inc/globstr.hrc:429
+#: sc/inc/globstr.hrc:430
msgctxt "STR_HEADER_COND"
msgid "First Condition"
msgstr "প্রথম শর্ত"
-#: sc/inc/globstr.hrc:430
+#: sc/inc/globstr.hrc:431
msgctxt "STR_COND_CONDITION"
msgid "Cell value is"
msgstr "ঘরের মান"
-#: sc/inc/globstr.hrc:431
+#: sc/inc/globstr.hrc:432
msgctxt "STR_COND_COLORSCALE"
msgid "ColorScale"
msgstr "রং-স্কেল"
-#: sc/inc/globstr.hrc:432
+#: sc/inc/globstr.hrc:433
msgctxt "STR_COND_DATABAR"
msgid "DataBar"
msgstr "ডেটা-বার"
-#: sc/inc/globstr.hrc:433
+#: sc/inc/globstr.hrc:434
msgctxt "STR_COND_ICONSET"
msgid "IconSet"
msgstr "অাইকন-সেট"
-#: sc/inc/globstr.hrc:434
+#: sc/inc/globstr.hrc:435
msgctxt "STR_COND_BETWEEN"
msgid "between"
msgstr "মধ্যবর্তী"
-#: sc/inc/globstr.hrc:435
+#: sc/inc/globstr.hrc:436
msgctxt "STR_COND_NOTBETWEEN"
msgid "not between"
msgstr "মধ্যবর্তী নয়"
-#: sc/inc/globstr.hrc:436
+#: sc/inc/globstr.hrc:437
msgctxt "STR_COND_UNIQUE"
msgid "unique"
msgstr "স্বতন্ত্র"
-#: sc/inc/globstr.hrc:437
+#: sc/inc/globstr.hrc:438
msgctxt "STR_COND_DUPLICATE"
msgid "duplicate"
msgstr "অনুরূপ"
-#: sc/inc/globstr.hrc:438
+#: sc/inc/globstr.hrc:439
msgctxt "STR_COND_FORMULA"
msgid "Formula is"
msgstr "সূত্র"
-#: sc/inc/globstr.hrc:439
+#: sc/inc/globstr.hrc:440
msgctxt "STR_COND_TOP10"
msgid "Top Elements"
msgstr "উপরের উপাদান"
-#: sc/inc/globstr.hrc:440
+#: sc/inc/globstr.hrc:441
msgctxt "STR_COND_BOTTOM10"
msgid "Bottom Elements"
msgstr "তলদেশের উপাদান"
-#: sc/inc/globstr.hrc:441
+#: sc/inc/globstr.hrc:442
msgctxt "STR_COND_TOP_PERCENT"
msgid "Top Percent"
msgstr "উপরের শতাংশ"
-#: sc/inc/globstr.hrc:442
+#: sc/inc/globstr.hrc:443
msgctxt "STR_COND_DATE"
msgid "Date is"
msgstr "তারিখ হল"
-#: sc/inc/globstr.hrc:443
+#: sc/inc/globstr.hrc:444
msgctxt "STR_COND_BOTTOM_PERCENT"
msgid "Bottom Percent"
msgstr "তলদেশ শতাংশ"
-#: sc/inc/globstr.hrc:444
+#: sc/inc/globstr.hrc:445
msgctxt "STR_COND_ABOVE_AVERAGE"
msgid "Above Average"
msgstr "গড়ের বেশি"
-#: sc/inc/globstr.hrc:445
+#: sc/inc/globstr.hrc:446
msgctxt "STR_COND_BELOW_AVERAGE"
msgid "Below Average"
msgstr "গড়ের কম"
-#: sc/inc/globstr.hrc:446
+#: sc/inc/globstr.hrc:447
msgctxt "STR_COND_ABOVE_EQUAL_AVERAGE"
msgid "Above or equal Average"
msgstr "গড়ের বেশি বা সমান"
-#: sc/inc/globstr.hrc:447
+#: sc/inc/globstr.hrc:448
msgctxt "STR_COND_BELOW_EQUAL_AVERAGE"
msgid "Below or equal Average"
msgstr "গড়ের কম বা সমান"
-#: sc/inc/globstr.hrc:448
+#: sc/inc/globstr.hrc:449
msgctxt "STR_COND_ERROR"
msgid "an Error code"
msgstr "ত্রুটি কোড"
-#: sc/inc/globstr.hrc:449
+#: sc/inc/globstr.hrc:450
msgctxt "STR_COND_NOERROR"
msgid "not an Error code"
msgstr "ত্রুটি কোড"
-#: sc/inc/globstr.hrc:450
+#: sc/inc/globstr.hrc:451
msgctxt "STR_COND_BEGINS_WITH"
msgid "Begins with"
msgstr "শুরু হয়"
-#: sc/inc/globstr.hrc:451
+#: sc/inc/globstr.hrc:452
msgctxt "STR_COND_ENDS_WITH"
msgid "Ends with"
msgstr "শেষ হয়"
-#: sc/inc/globstr.hrc:452
+#: sc/inc/globstr.hrc:453
msgctxt "STR_COND_CONTAINS"
msgid "Contains"
msgstr "আছে"
-#: sc/inc/globstr.hrc:453
+#: sc/inc/globstr.hrc:454
msgctxt "STR_COND_NOT_CONTAINS"
msgid "Not Contains"
msgstr "অন্তর্ভুক্ত নেই"
-#: sc/inc/globstr.hrc:454
+#: sc/inc/globstr.hrc:455
msgctxt "STR_COND_TODAY"
msgid "today"
msgstr "আজ"
-#: sc/inc/globstr.hrc:455
+#: sc/inc/globstr.hrc:456
msgctxt "STR_COND_YESTERDAY"
msgid "yesterday"
msgstr "গতকাল"
-#: sc/inc/globstr.hrc:456
+#: sc/inc/globstr.hrc:457
msgctxt "STR_COND_TOMORROW"
msgid "tomorrow"
msgstr "আগামী কাল"
-#: sc/inc/globstr.hrc:457
+#: sc/inc/globstr.hrc:458
msgctxt "STR_COND_LAST7DAYS"
msgid "in the last 7 days"
msgstr "বিগত ৭ দিনে"
-#: sc/inc/globstr.hrc:458
+#: sc/inc/globstr.hrc:459
msgctxt "STR_COND_THISWEEK"
msgid "this week"
msgstr "এই সপ্তাহে"
-#: sc/inc/globstr.hrc:459
+#: sc/inc/globstr.hrc:460
msgctxt "STR_COND_LASTWEEK"
msgid "last week"
msgstr "গত সপ্তাহে"
-#: sc/inc/globstr.hrc:460
+#: sc/inc/globstr.hrc:461
msgctxt "STR_COND_NEXTWEEK"
msgid "next week"
msgstr "অাগামী সপ্তাহে"
-#: sc/inc/globstr.hrc:461
+#: sc/inc/globstr.hrc:462
msgctxt "STR_COND_THISMONTH"
msgid "this month"
msgstr "এই মাসে"
-#: sc/inc/globstr.hrc:462
+#: sc/inc/globstr.hrc:463
msgctxt "STR_COND_LASTMONTH"
msgid "last month"
msgstr "গত মাসে"
-#: sc/inc/globstr.hrc:463
+#: sc/inc/globstr.hrc:464
msgctxt "STR_COND_NEXTMONTH"
msgid "next month"
msgstr "অাগামী মাসে"
-#: sc/inc/globstr.hrc:464
+#: sc/inc/globstr.hrc:465
msgctxt "STR_COND_THISYEAR"
msgid "this year"
msgstr "এই বছরে"
-#: sc/inc/globstr.hrc:465
+#: sc/inc/globstr.hrc:466
msgctxt "STR_COND_LASTYEAR"
msgid "last year"
msgstr "গত বছর"
-#: sc/inc/globstr.hrc:466
+#: sc/inc/globstr.hrc:467
msgctxt "STR_COND_NEXTYEAR"
msgid "next year"
msgstr "অাগামী বছর"
-#: sc/inc/globstr.hrc:467
+#: sc/inc/globstr.hrc:468
msgctxt "STR_COND_AND"
msgid "and"
msgstr "এবং"
-#: sc/inc/globstr.hrc:468
+#: sc/inc/globstr.hrc:469
msgctxt "STR_ERR_CONDFORMAT_PROTECTED"
msgid "Conditional Formats can not be created, deleted or changed in protected sheets."
msgstr ""
-#: sc/inc/globstr.hrc:469
+#: sc/inc/globstr.hrc:470
msgctxt "STR_EDIT_EXISTING_COND_FORMATS"
msgid ""
"The selected cell already contains conditional formatting. You can either edit the existing conditional format or you define a new overlapping conditional format.\n"
@@ -2318,7 +2323,7 @@ msgstr ""
"\n"
" অাপনি কি বিদ্যমান শর্তাধীন ফর্ম্যাট সম্পাদন করতে চান?"
-#: sc/inc/globstr.hrc:470
+#: sc/inc/globstr.hrc:471
msgctxt "STR_QUERY_FORMULA_RECALC_ONLOAD_ODS"
msgid ""
"This document was last saved by an application other than %PRODUCTNAME. Some formula cells may produce different results when recalculated.\n"
@@ -2329,7 +2334,7 @@ msgstr ""
"\n"
"অাপনি কি এখনই এই ডকুমেন্টের সব সূত্র কক্ষ পুনঃগণনা করতে চান?"
-#: sc/inc/globstr.hrc:471
+#: sc/inc/globstr.hrc:472
msgctxt "STR_QUERY_FORMULA_RECALC_ONLOAD_XLS"
msgid ""
"This document was last saved by Excel. Some formula cells may produce different results when recalculated.\n"
@@ -2340,77 +2345,77 @@ msgstr ""
"\n"
"অাপনি কি এখনই সকল সূত্র কক্ষ পুনঃগণনা করতে চান?"
-#: sc/inc/globstr.hrc:472
+#: sc/inc/globstr.hrc:473
msgctxt "STR_NO_INSERT_DELETE_OVER_PIVOT_TABLE"
msgid "You cannot insert or delete cells when the affected range intersects with pivot table."
msgstr "ক্ষতিগ্রস্ত পাল্লা পিভট টেবিলের সাথে অন্তর্চ্ছেদ করলে অাপনি কক্ষ সন্নিবেশ বা মুছতে পারবেন না।"
-#: sc/inc/globstr.hrc:473
+#: sc/inc/globstr.hrc:474
msgctxt "STR_DPFIELD_GROUP_BY_SECONDS"
msgid "Seconds"
msgstr "সেকেন্ড"
-#: sc/inc/globstr.hrc:474
+#: sc/inc/globstr.hrc:475
msgctxt "STR_DPFIELD_GROUP_BY_MINUTES"
msgid "Minutes"
msgstr "মিনিট"
-#: sc/inc/globstr.hrc:475
+#: sc/inc/globstr.hrc:476
msgctxt "STR_DPFIELD_GROUP_BY_HOURS"
msgid "Hours"
msgstr "ঘন্টা"
-#: sc/inc/globstr.hrc:476
+#: sc/inc/globstr.hrc:477
msgctxt "STR_DPFIELD_GROUP_BY_DAYS"
msgid "Days"
msgstr "দিনগুলো"
-#: sc/inc/globstr.hrc:477
+#: sc/inc/globstr.hrc:478
msgctxt "STR_DPFIELD_GROUP_BY_MONTHS"
msgid "Months"
msgstr "মাস"
-#: sc/inc/globstr.hrc:478
+#: sc/inc/globstr.hrc:479
msgctxt "STR_DPFIELD_GROUP_BY_QUARTERS"
msgid "Quarters"
msgstr "এক চতুর্থাংশ"
-#: sc/inc/globstr.hrc:479
+#: sc/inc/globstr.hrc:480
msgctxt "STR_DPFIELD_GROUP_BY_YEARS"
msgid "Years"
msgstr "বছর"
-#: sc/inc/globstr.hrc:480
+#: sc/inc/globstr.hrc:481
msgctxt "STR_INVALIDVAL"
msgid "Invalid target value."
msgstr "অকার্যকর গন্তব্য মান।"
-#: sc/inc/globstr.hrc:481
+#: sc/inc/globstr.hrc:482
msgctxt "STR_INVALIDVAR"
msgid "Undefined name for variable cell."
msgstr "চলক ঘরের জন্য অনির্ধারিত নাম।"
-#: sc/inc/globstr.hrc:482
+#: sc/inc/globstr.hrc:483
msgctxt "STR_INVALIDFORM"
msgid "Undefined name as formula cell."
msgstr "সূত্র ঘর হিসেবে অনির্ধারিত নাম।"
-#: sc/inc/globstr.hrc:483
+#: sc/inc/globstr.hrc:484
msgctxt "STR_NOFORMULA"
msgid "Formula cell must contain a formula."
msgstr "সূত্র কক্ষে অবশ্যই একটি সূত্র থাকতে হবে।"
-#: sc/inc/globstr.hrc:484
+#: sc/inc/globstr.hrc:485
msgctxt "STR_INVALIDINPUT"
msgid "Invalid input."
msgstr "অকার্যকর ইনপুট।"
-#: sc/inc/globstr.hrc:485
+#: sc/inc/globstr.hrc:486
msgctxt "STR_INVALIDCONDITION"
msgid "Invalid condition."
msgstr "অকার্যকর শর্ত।"
-#: sc/inc/globstr.hrc:486
+#: sc/inc/globstr.hrc:487
msgctxt "STR_QUERYREMOVE"
msgid ""
"Should the entry\n"
@@ -2421,135 +2426,135 @@ msgstr ""
"#\n"
"মুছে দেওয়া হবে?"
-#: sc/inc/globstr.hrc:487
+#: sc/inc/globstr.hrc:488
msgctxt "STR_COPYLIST"
msgid "Copy List"
msgstr "তালিকা অনুলিপি করুন"
-#: sc/inc/globstr.hrc:488
+#: sc/inc/globstr.hrc:489
msgctxt "STR_COPYFROM"
msgid "List from"
msgstr "তালিকার উৎস"
-#: sc/inc/globstr.hrc:489
+#: sc/inc/globstr.hrc:490
msgctxt "STR_COPYERR"
msgid "Cells without text have been ignored."
msgstr "লেখাবিহীন ঘরসমূহ অগ্রাহ্য করা হয়েছে।"
-#: sc/inc/globstr.hrc:490
+#: sc/inc/globstr.hrc:491
#, c-format
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%s-click to follow hyperlink:"
msgstr ""
-#: sc/inc/globstr.hrc:491
+#: sc/inc/globstr.hrc:492
msgctxt "STR_CLICKHYPERLINK"
msgid "click to open hyperlink:"
msgstr "হাইপারলিংক খুলতে ক্লিক করুন:"
-#: sc/inc/globstr.hrc:492
+#: sc/inc/globstr.hrc:493
msgctxt "STR_PRINT_PREVIEW_NODATA"
msgid "No Data"
msgstr "তথ্য অনুপস্থিত"
-#: sc/inc/globstr.hrc:493
+#: sc/inc/globstr.hrc:494
msgctxt "STR_PRINT_PREVIEW_EMPTY_RANGE"
msgid "Print Range Empty"
msgstr "মুদ্রণ রেঞ্জ খালি"
-#: sc/inc/globstr.hrc:494
+#: sc/inc/globstr.hrc:495
msgctxt "STR_UNDO_CONDFORMAT"
msgid "Conditional Format"
msgstr "শর্তাধীন বিন্যাস"
-#: sc/inc/globstr.hrc:495
+#: sc/inc/globstr.hrc:496
msgctxt "STR_UNDO_CONDFORMAT_LIST"
msgid "Conditional Formats"
msgstr "শর্তাধীন বিন্যাস"
-#: sc/inc/globstr.hrc:496
+#: sc/inc/globstr.hrc:497
msgctxt "STR_UNDO_FORMULA_TO_VALUE"
msgid "Convert Formula To Value"
msgstr "সূত্র মানে রূপান্তর করুন"
-#: sc/inc/globstr.hrc:497
+#: sc/inc/globstr.hrc:498
msgctxt "STR_UNQUOTED_STRING"
msgid "Strings without quotes are interpreted as column/row labels."
msgstr ""
-#: sc/inc/globstr.hrc:498
+#: sc/inc/globstr.hrc:499
msgctxt "STR_ENTER_VALUE"
msgid "Enter a value!"
msgstr ""
-#: sc/inc/globstr.hrc:499
+#: sc/inc/globstr.hrc:500
msgctxt "STR_TABLE_COUNT"
msgid "Sheet %1 of %2"
msgstr ""
-#: sc/inc/globstr.hrc:500
+#: sc/inc/globstr.hrc:501
msgctxt "STR_FUNCTIONS_FOUND"
msgid "%1 and %2 more"
msgstr ""
-#: sc/inc/globstr.hrc:501
+#: sc/inc/globstr.hrc:502
msgctxt "STR_GENERAL"
msgid "General"
msgstr "সাধারণ"
-#: sc/inc/globstr.hrc:502
+#: sc/inc/globstr.hrc:503
#, fuzzy
msgctxt "STR_NUMBER"
msgid "Number"
msgstr "নম্বর"
-#: sc/inc/globstr.hrc:503
+#: sc/inc/globstr.hrc:504
msgctxt "STR_PERCENT"
msgid "Percent"
msgstr "শতাংশ"
-#: sc/inc/globstr.hrc:504
+#: sc/inc/globstr.hrc:505
msgctxt "STR_CURRENCY"
msgid "Currency"
msgstr "মুদ্রা"
-#: sc/inc/globstr.hrc:505
+#: sc/inc/globstr.hrc:506
msgctxt "STR_DATE"
msgid "Date"
msgstr "তারিখ"
-#: sc/inc/globstr.hrc:506
+#: sc/inc/globstr.hrc:507
msgctxt "STR_TIME"
msgid "Time"
msgstr "সময়"
-#: sc/inc/globstr.hrc:507
+#: sc/inc/globstr.hrc:508
msgctxt "STR_SCIENTIFIC"
msgid "Scientific"
msgstr "বৈজ্ঞানিক"
-#: sc/inc/globstr.hrc:508
+#: sc/inc/globstr.hrc:509
msgctxt "STR_FRACTION"
msgid "Fraction"
msgstr "ফাংশন"
-#: sc/inc/globstr.hrc:509
+#: sc/inc/globstr.hrc:510
msgctxt "STR_BOOLEAN_VALUE"
msgid "Boolean Value"
msgstr "বুলিয়ান মান"
-#: sc/inc/globstr.hrc:510
+#: sc/inc/globstr.hrc:511
#, fuzzy
msgctxt "STR_TEXT"
msgid "Text"
msgstr "পাঠ্য"
-#: sc/inc/globstr.hrc:511
+#: sc/inc/globstr.hrc:512
msgctxt "STR_QUERY_PIVOTTABLE_DELTAB"
msgid "The selected sheet(s) contain source data of related pivot tables that will be lost. Are you sure you want to delete the selected sheet(s)?"
msgstr ""
-#: sc/inc/globstr.hrc:512
+#: sc/inc/globstr.hrc:513
msgctxt "STR_ERR_NAME_INVALID_CELL_REF"
msgid "Invalid name. Reference to a cell, or a range of cells not allowed."
msgstr ""
@@ -10731,8 +10736,8 @@ msgstr "Mode"
#: sc/inc/scfuncs.hrc:3010
msgctxt "SC_OPCODE_T_TEST"
-msgid "Mode specifies the number of distribution tails to return. 1= one-tailed, 2 = two-tailed distribution"
-msgstr "মোড ফেরত পাঠানোর জন্য নিবেশন টেইলের সংখ্যা নির্ধারণ করে। 1=এক-টেইল্ড, 2=দুই-টেইল্ড নিবেশন"
+msgid "Mode specifies the number of distribution tails to return. 1 = one-tailed, 2 = two-tailed distribution"
+msgstr ""
#: sc/inc/scfuncs.hrc:3011
msgctxt "SC_OPCODE_T_TEST"
@@ -10778,8 +10783,8 @@ msgstr "Mode"
#: sc/inc/scfuncs.hrc:3024
msgctxt "SC_OPCODE_T_TEST_MS"
-msgid "Mode specifies the number of distribution tails to return. 1= one-tailed, 2 = two-tailed distribution"
-msgstr "মোড ফেরত পাঠানোর জন্য নিবেশন টেইলের সংখ্যা নির্ধারণ করে। 1=এক-টেইল্ড, 2=দুই-টেইল্ড নিবেশন"
+msgid "Mode specifies the number of distribution tails to return. 1 = one-tailed, 2 = two-tailed distribution"
+msgstr ""
#: sc/inc/scfuncs.hrc:3025
msgctxt "SC_OPCODE_T_TEST_MS"
@@ -18540,22 +18545,22 @@ msgctxt "mergecellsdialog|MergeCellsDialog"
msgid "Merge Cells"
msgstr "ঘরগুলো একত্রিতকরণ"
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:81
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:84
msgctxt "mergecellsdialog|label"
msgid "Some cells are not empty."
msgstr ""
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:96
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:99
msgctxt "mergecellsdialog|move-cells-radio"
msgid "Move the contents of the hidden cells into the first cell"
msgstr ""
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:112
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:115
msgctxt "mergecellsdialog|empty-cells-radio"
msgid "Empty the contents of the hidden cells"
msgstr ""
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:128
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:131
msgctxt "mergecellsdialog|keep-content-radio"
msgid "Keep the contents of the hidden cells"
msgstr ""
diff --git a/source/bn-IN/sd/messages.po b/source/bn-IN/sd/messages.po
index 35c933106d5..6ca553eb723 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+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"
@@ -13,177 +13,177 @@ msgstr ""
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-#: sd/inc/DocumentRenderer.hrc:29
+#: sd/inc/DocumentRenderer.hrc:27
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Slides"
msgstr "স্লাইড"
-#: sd/inc/DocumentRenderer.hrc:30
+#: sd/inc/DocumentRenderer.hrc:28
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Handouts"
msgstr "বিলিপত্র"
-#: sd/inc/DocumentRenderer.hrc:31
+#: sd/inc/DocumentRenderer.hrc:29
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Notes"
msgstr "নোট"
-#: sd/inc/DocumentRenderer.hrc:32
+#: sd/inc/DocumentRenderer.hrc:30
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Outline"
msgstr "রূপরেখা"
-#: sd/inc/DocumentRenderer.hrc:37
+#: sd/inc/DocumentRenderer.hrc:35
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "According to layout"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:38
+#: sd/inc/DocumentRenderer.hrc:36
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "1"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:39
+#: sd/inc/DocumentRenderer.hrc:37
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "2"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:40
+#: sd/inc/DocumentRenderer.hrc:38
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "3"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:41
+#: sd/inc/DocumentRenderer.hrc:39
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "4"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:42
+#: sd/inc/DocumentRenderer.hrc:40
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "6"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:43
+#: sd/inc/DocumentRenderer.hrc:41
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "9"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:48
+#: sd/inc/DocumentRenderer.hrc:46
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_ORDER_CHOICES"
msgid "Left to right, then down"
msgstr "বাম থেকে ডানে, এরপর নিচে "
-#: sd/inc/DocumentRenderer.hrc:49
+#: sd/inc/DocumentRenderer.hrc:47
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_ORDER_CHOICES"
msgid "Top to bottom, then right"
msgstr "উপর থেকে নিচে, এরপর ডানে"
-#: sd/inc/DocumentRenderer.hrc:54
+#: sd/inc/DocumentRenderer.hrc:52
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Original colors"
msgstr "আসল রং"
-#: sd/inc/DocumentRenderer.hrc:55
+#: sd/inc/DocumentRenderer.hrc:53
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Grayscale"
msgstr "গ্রেস্কেল"
-#: sd/inc/DocumentRenderer.hrc:56
+#: sd/inc/DocumentRenderer.hrc:54
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Black & white"
msgstr "সাদা ও কালো"
-#: sd/inc/DocumentRenderer.hrc:61
+#: sd/inc/DocumentRenderer.hrc:59
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Original size"
msgstr "আদি আকার"
-#: sd/inc/DocumentRenderer.hrc:62
+#: sd/inc/DocumentRenderer.hrc:60
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Fit to printable page"
msgstr "মুদ্রণযোগ্য পৃষ্ঠায় মানানসই করা হবে"
-#: sd/inc/DocumentRenderer.hrc:63
+#: sd/inc/DocumentRenderer.hrc:61
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Distribute on multiple sheets of paper"
msgstr "একাধিক কাগজের পাতায় ভাগ করে দেয়া হয়"
-#: sd/inc/DocumentRenderer.hrc:64
+#: sd/inc/DocumentRenderer.hrc:62
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Tile sheet of paper with repeated slides"
msgstr "পুনরাবৃত্ত স্লাইডে কাগজের পাতা টালি করা হবে"
-#: sd/inc/DocumentRenderer.hrc:69
+#: sd/inc/DocumentRenderer.hrc:67
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Original size"
msgstr "আদি আকার"
-#: sd/inc/DocumentRenderer.hrc:70
+#: sd/inc/DocumentRenderer.hrc:68
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Fit to printable page"
msgstr "মুদ্রণযোগ্য পৃষ্ঠায় মানানসই করা হবে"
-#: sd/inc/DocumentRenderer.hrc:71
+#: sd/inc/DocumentRenderer.hrc:69
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Distribute on multiple sheets of paper"
msgstr "একাধিক কাগজের পাতায় ভাগ করে দেয়া হয়"
-#: sd/inc/DocumentRenderer.hrc:72
+#: sd/inc/DocumentRenderer.hrc:70
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Tile sheet of paper with repeated pages"
msgstr "পুনরাবৃত্ত স্লাইডে কাগজের পাতা টালি করা হবে"
-#: sd/inc/DocumentRenderer.hrc:77
+#: sd/inc/DocumentRenderer.hrc:75
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "All pages"
msgstr "সব পৃষ্ঠা"
-#: sd/inc/DocumentRenderer.hrc:78
+#: sd/inc/DocumentRenderer.hrc:76
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "Front sides / right pages"
msgstr "সম্মুখ দিক / ডান পৃষ্ঠা"
-#: sd/inc/DocumentRenderer.hrc:79
+#: sd/inc/DocumentRenderer.hrc:77
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "Back sides / left pages"
msgstr "পেছনের দিক / বাম পৃষ্ঠা"
-#: sd/inc/DocumentRenderer.hrc:84
+#: sd/inc/DocumentRenderer.hrc:82
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~All slides"
msgstr "সব স্লাইড (_s)"
-#: sd/inc/DocumentRenderer.hrc:85
+#: sd/inc/DocumentRenderer.hrc:83
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~Slides"
msgstr "স্লাইড"
-#: sd/inc/DocumentRenderer.hrc:86
+#: sd/inc/DocumentRenderer.hrc:84
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Se~lection"
msgstr "নির্বাচন (~l)"
-#: sd/inc/DocumentRenderer.hrc:91
+#: sd/inc/DocumentRenderer.hrc:89
#, fuzzy
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~All pages"
msgstr "সব পৃষ্ঠা (~A)"
-#: sd/inc/DocumentRenderer.hrc:92
+#: sd/inc/DocumentRenderer.hrc:90
#, fuzzy
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Pa~ges"
msgstr "পৃষ্ঠা"
-#: sd/inc/DocumentRenderer.hrc:93
+#: sd/inc/DocumentRenderer.hrc:91
#, fuzzy
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Se~lection"
diff --git a/source/bn-IN/svx/messages.po b/source/bn-IN/svx/messages.po
index 5adaf9bd825..7376c7951df 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: 2018-05-16 16:53+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+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"
@@ -5483,7 +5483,7 @@ msgstr ""
#: svx/uiconfig/ui/safemodedialog.ui:432
msgctxt "safemodedialog|btn_create_zip"
-msgid "Create Zip Archive from User Profile"
+msgid "Archive User Profile"
msgstr ""
#: svx/uiconfig/ui/safemodedialog.ui:445
@@ -9153,9 +9153,9 @@ msgid "Red"
msgstr "লাল"
#: include/svx/strings.hrc:565
-msgctxt "RID_SVXSTR_COLOR_VIOLET"
-msgid "Violet"
-msgstr "বেগুনি"
+msgctxt "RID_SVXSTR_COLOR_MAGENTA"
+msgid "Magenta"
+msgstr "ম্যাজেন্টা"
#: include/svx/strings.hrc:566
msgctxt "RID_SVXSTR_COLOR_PURPLE"
@@ -9221,8 +9221,8 @@ msgid "Light Red"
msgstr "হালকা লাল"
#: include/svx/strings.hrc:579
-msgctxt "RID_SVXSTR_COLOR_LIGHTVIOLET"
-msgid "Light Violet"
+msgctxt "RID_SVXSTR_COLOR_LIGHTMAGENTA"
+msgid "Light Magenta"
msgstr ""
#: include/svx/strings.hrc:580
@@ -9288,10 +9288,9 @@ msgid "Dark Red"
msgstr "গাঢ় লাল"
#: include/svx/strings.hrc:593
-#, fuzzy
-msgctxt "RID_SVXSTR_COLOR_DARKVIOLET1"
-msgid "Dark Violet"
-msgstr "গাঢ় বেগুনি"
+msgctxt "RID_SVXSTR_COLOR_DARKMAGENTA"
+msgid "Dark Magenta"
+msgstr ""
#: include/svx/strings.hrc:594
msgctxt "RID_SVXSTR_COLOR_DARKPURPLE"
@@ -9325,55 +9324,55 @@ msgstr ""
#. Elements of the Tonal color palette
#: include/svx/strings.hrc:601
+msgctxt "RID_SVXSTR_COLOR_VIOLET"
+msgid "Violet"
+msgstr "বেগুনি"
+
+#: include/svx/strings.hrc:602
msgctxt "RID_SVXSTR_COLOR_VIOLET_OUG"
msgid "Violet (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:602
+#: include/svx/strings.hrc:603
msgctxt "RID_SVXSTR_COLOR_BLUE_OUG"
msgid "Blue (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:603
+#: include/svx/strings.hrc:604
msgctxt "RID_SVXSTR_COLOR_AZURE_OUG"
msgid "Azure (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:604
+#: include/svx/strings.hrc:605
msgctxt "RID_SVXSTR_COLOR_SPRINGGREEN_OUG"
msgid "Spring Green (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:605
+#: include/svx/strings.hrc:606
msgctxt "RID_SVXSTR_COLOR_GREEN_OUG"
msgid "Green (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:606
+#: include/svx/strings.hrc:607
msgctxt "RID_SVXSTR_COLOR_CHARTREUSEGREEN_OUG"
msgid "Chartreuse Green (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:607
+#: include/svx/strings.hrc:608
msgctxt "RID_SVXSTR_COLOR_ORANGE_OUG"
msgid "Orange (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:608
+#: include/svx/strings.hrc:609
msgctxt "RID_SVXSTR_COLOR_RED_OUG"
msgid "Red (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:609
+#: include/svx/strings.hrc:610
msgctxt "RID_SVXSTR_COLOR_ROSE_OUG"
msgid "Rose (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:610
-msgctxt "RID_SVXSTR_COLOR_MAGENTA"
-msgid "Magenta"
-msgstr "ম্যাজেন্টা"
-
#: include/svx/strings.hrc:611
msgctxt "RID_SVXSTR_COLOR_AZURE"
msgid "Azure"
@@ -12520,13 +12519,13 @@ msgstr "ডান নির্দেশিত তীর বুলেট"
#: include/svx/strings.hrc:1273
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_6"
-msgid "Check mark bullets"
-msgstr "টিক চিহ্নিত বুলেট"
+msgid "Cross mark bullets"
+msgstr ""
#: include/svx/strings.hrc:1274
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_7"
-msgid "Tick mark bullets"
-msgstr "টিক চিহ্নিত বুলেট"
+msgid "Check mark bullets"
+msgstr ""
#: include/svx/strings.hrc:1275
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_0"
diff --git a/source/bn-IN/sw/messages.po b/source/bn-IN/sw/messages.po
index 141f5c13011..b6d47388128 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: 2018-05-22 13:17+0200\n"
+"POT-Creation-Date: 2018-06-12 14:41+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"
@@ -1223,13 +1223,13 @@ msgstr "উদ্ধৃতি"
#: sw/inc/strings.hrc:172
msgctxt "STR_POOLCOLL_TOX_ILLUSH"
-msgid "Illustration Index Heading"
-msgstr "চিত্র সূচির শিরোনাম"
+msgid "Figure Index Heading"
+msgstr ""
#: sw/inc/strings.hrc:173
msgctxt "STR_POOLCOLL_TOX_ILLUS1"
-msgid "Illustration Index 1"
-msgstr "চিত্র সূচি ১"
+msgid "Figure Index 1"
+msgstr ""
#: sw/inc/strings.hrc:174
msgctxt "STR_POOLCOLL_TOX_OBJECTH"
@@ -3716,10 +3716,9 @@ msgid "Table of Objects"
msgstr ""
#: sw/inc/strings.hrc:672
-#, fuzzy
msgctxt "STR_TOX_ILL"
-msgid "Illustration Index"
-msgstr "চিত্র সূচি ১"
+msgid "Table of Figures"
+msgstr ""
#: sw/inc/strings.hrc:673
#, c-format
@@ -9661,81 +9660,81 @@ msgctxt "footnotepage|label5"
msgid "Continuation Notice"
msgstr "পরবর্তীতে অংশের ঘোষণা"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:49
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:55
#, fuzzy
msgctxt "footnotesendnotestabpage|ftnntnum"
msgid "_Restart numbering"
msgstr "সংখ্যায়ন পুনরায় শুরু"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:91
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:93
#, fuzzy
msgctxt "footnotesendnotestabpage|ftnoffset_label"
msgid "_Start at:"
msgstr "যেখান থেকে শুরু হবে"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:112
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:111
msgctxt "footnotesendnotestabpage|ftnntnumfmt"
msgid "Custom _format"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:155
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:150
#, fuzzy
msgctxt "footnotesendnotestabpage|ftnsuffix_label"
msgid "Aft_er:"
msgstr "পরে"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:199
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:188
#, fuzzy
msgctxt "footnotesendnotestabpage|ftnprefix_label"
msgid "Be_fore:"
msgstr "পূর্বে (_f)"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:228
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:212
msgctxt "footnotesendnotestabpage|ftnntattextend"
msgid "Collec_t at end of text"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:252
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:234
#, fuzzy
msgctxt "footnotesendnotestabpage|label1"
msgid "Footnotes"
msgstr "পাদটীকা"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:289
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:271
msgctxt "footnotesendnotestabpage|endntattextend"
msgid "C_ollect at end of section"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:315
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:295
#, fuzzy
msgctxt "footnotesendnotestabpage|endntnum"
msgid "_Restart numbering"
msgstr "সংখ্যায়ন পুনরায় শুরু"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:357
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:333
#, fuzzy
msgctxt "footnotesendnotestabpage|endoffset_label"
msgid "_Start at:"
msgstr "যেখান থেকে শুরু হবে"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:378
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:351
msgctxt "footnotesendnotestabpage|endntnumfmt"
msgid "_Custom format"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:421
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:390
#, fuzzy
msgctxt "footnotesendnotestabpage|endsuffix_label"
msgid "Aft_er:"
msgstr "পরে"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:465
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:428
#, fuzzy
msgctxt "footnotesendnotestabpage|endprefix_label"
msgid "Be_fore:"
msgstr "পূর্বে (_f)"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:500
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:458
#, fuzzy
msgctxt "footnotesendnotestabpage|label2"
msgid "Endnotes"
@@ -9767,27 +9766,27 @@ msgctxt "formatsectiondialog|notes"
msgid "Footnotes/Endnotes"
msgstr "পাদটীকা/প্রান্তটীকা... (~.)"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:63
+#: sw/uiconfig/swriter/ui/formattablepage.ui:77
msgctxt "formattablepage|nameft"
msgid "_Name"
msgstr "নাম (_N)"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:79
+#: sw/uiconfig/swriter/ui/formattablepage.ui:91
msgctxt "formattablepage|widthft"
msgid "W_idth"
msgstr "প্রস্থ (_i)"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:110
+#: sw/uiconfig/swriter/ui/formattablepage.ui:120
msgctxt "formattablepage|relwidth"
msgid "Relati_ve"
msgstr "সংশ্লিষ্ট (_v)"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:155
+#: sw/uiconfig/swriter/ui/formattablepage.ui:160
msgctxt "formattablepage|label45"
msgid "Properties"
msgstr "বৈশিষ্ট্যাবলী"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:194
+#: sw/uiconfig/swriter/ui/formattablepage.ui:195
msgctxt "formattablepage|leftft"
msgid "Lef_t"
msgstr "বাম (_t)"
@@ -9797,62 +9796,62 @@ msgctxt "formattablepage|rightft"
msgid "Ri_ght"
msgstr "ডান (_g)"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:228
+#: sw/uiconfig/swriter/ui/formattablepage.ui:226
msgctxt "formattablepage|aboveft"
msgid "_Above"
msgstr "উপরে (_A)"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:245
+#: sw/uiconfig/swriter/ui/formattablepage.ui:241
msgctxt "formattablepage|belowft"
msgid "_Below"
msgstr "নিচে (_B)"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:320
+#: sw/uiconfig/swriter/ui/formattablepage.ui:311
msgctxt "formattablepage|label46"
msgid "Spacing"
msgstr "ফাঁকা"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:362
+#: sw/uiconfig/swriter/ui/formattablepage.ui:349
msgctxt "formattablepage|full"
msgid "A_utomatic"
msgstr "স্বয়ংক্রিয় (_u)"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:380
+#: sw/uiconfig/swriter/ui/formattablepage.ui:365
msgctxt "formattablepage|left"
msgid "_Left"
msgstr "বাম (_L)"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:398
+#: sw/uiconfig/swriter/ui/formattablepage.ui:381
msgctxt "formattablepage|fromleft"
msgid "_From left"
msgstr "বাম থেকে (_F)"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:416
+#: sw/uiconfig/swriter/ui/formattablepage.ui:397
msgctxt "formattablepage|right"
msgid "R_ight"
msgstr "ডান (_i)"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:435
+#: sw/uiconfig/swriter/ui/formattablepage.ui:413
msgctxt "formattablepage|center"
msgid "_Center"
msgstr "কেন্দ্রে (_C) "
-#: sw/uiconfig/swriter/ui/formattablepage.ui:453
+#: sw/uiconfig/swriter/ui/formattablepage.ui:429
msgctxt "formattablepage|free"
msgid "_Manual"
msgstr "স্বনির্ধারিত (_M)"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:478
+#: sw/uiconfig/swriter/ui/formattablepage.ui:452
msgctxt "formattablepage|label43"
msgid "Alignment"
msgstr "প্রান্তিককরণ"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:522
+#: sw/uiconfig/swriter/ui/formattablepage.ui:491
msgctxt "formattablepage|label53"
msgid "Text _direction"
msgstr "লেখার দিকবিন্যাস (_d)"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:553
+#: sw/uiconfig/swriter/ui/formattablepage.ui:519
#, fuzzy
msgctxt "formattablepage|label44"
msgid "Properties "
@@ -10236,24 +10235,29 @@ msgctxt "headerfootermenu|insert_pagenumber"
msgid "Insert Page Number"
msgstr ""
-#: sw/uiconfig/swriter/ui/indentpage.ui:52
+#: sw/uiconfig/swriter/ui/headerfootermenu.ui:42
+msgctxt "headerfootermenu|insert_pagecount"
+msgid "Insert Page Count"
+msgstr ""
+
+#: sw/uiconfig/swriter/ui/indentpage.ui:57
#, fuzzy
msgctxt "indentpage|label1"
msgid "_Before section"
msgstr "বিভাগের পূর্বে"
-#: sw/uiconfig/swriter/ui/indentpage.ui:67
+#: sw/uiconfig/swriter/ui/indentpage.ui:71
#, fuzzy
msgctxt "indentpage|label3"
msgid "_After section"
msgstr "বিভাগের পরে"
-#: sw/uiconfig/swriter/ui/indentpage.ui:113
+#: sw/uiconfig/swriter/ui/indentpage.ui:115
msgctxt "indentpage|label2"
msgid "Indent"
msgstr "ইন্ডেন্ট"
-#: sw/uiconfig/swriter/ui/indentpage.ui:142
+#: sw/uiconfig/swriter/ui/indentpage.ui:155
msgctxt "indentpage|preview-atkobject"
msgid "Example"
msgstr "উদাহরণ"
@@ -14021,7 +14025,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:68
msgctxt "optcompatpage|format"
-msgid "MS Word-compatible trailing blanks"
+msgid "Word-compatible trailing blanks"
msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:69
@@ -14031,7 +14035,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:70
msgctxt "optcompatpage|format"
-msgid "A database field (e.g., MailMerge) with empty value hides its paragraph"
+msgid "Hide paragraphs of database fields (e.g., mail merge) with an empty value"
msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:71
@@ -16897,123 +16901,123 @@ msgctxt "tableproperties|background"
msgid "Background"
msgstr "পটভূমি"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:25
-msgctxt "tabletextflowpage|liststore1"
-msgid "Horizontal"
-msgstr "অনুভূমিক"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:29
-msgctxt "tabletextflowpage|liststore1"
-msgid "Vertical"
-msgstr "উল্লম্ব"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:33
-msgctxt "tabletextflowpage|liststore1"
-msgid "Use superordinate object settings"
-msgstr "উর্ধ্বঃস্তন বস্তুর সেটিংস ব্যবহার"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:47
-msgctxt "tabletextflowpage|liststore2"
-msgid "Top"
-msgstr "শীর্ষ"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:51
-msgctxt "tabletextflowpage|liststore2"
-msgid "Centered"
-msgstr "কেন্দ্রস্থিত"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:55
-msgctxt "tabletextflowpage|liststore2"
-msgid "Bottom"
-msgstr "নিচে"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:97
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:53
msgctxt "tabletextflowpage|break"
msgid "_Break"
msgstr "বিরতি (_B)"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:112
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:68
msgctxt "tabletextflowpage|page"
msgid "_Page"
msgstr "পৃষ্ঠা (_P)"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:132
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:87
msgctxt "tabletextflowpage|column"
msgid "Col_umn"
msgstr "কলাম (_C)"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:151
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:106
msgctxt "tabletextflowpage|before"
msgid "Be_fore"
msgstr "পূর্বে (_f)"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:171
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:125
msgctxt "tabletextflowpage|after"
msgid "_After"
msgstr "পরে (_A)"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:203
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:158
msgctxt "tabletextflowpage|pagestyle"
msgid "With Page St_yle"
msgstr "পৃষ্ঠার শৈলী সহ (_y)"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:224
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:177
msgctxt "tabletextflowpage|pagenoft"
msgid "Page _number"
msgstr "পৃষ্ঠা নম্বর (_n)"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:257
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:213
#, fuzzy
msgctxt "tabletextflowpage|pagestylelb-atkobject"
msgid "With Page Style"
msgstr "পৃষ্ঠার শৈলী সহ (_y)"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:274
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:230
msgctxt "tabletextflowpage|split"
msgid "Allow _table to split across pages and columns"
msgstr "পৃষ্ঠা এবং কলাম অনুসারে সারণির বিভাজন অনুমোদন (_t)"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:289
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:245
msgctxt "tabletextflowpage|splitrow"
msgid "Allow row to break a_cross pages and columns"
msgstr "সারি পরবর্তী পৃষ্ঠা এবং কলামে বিস্তার করতে পারবে (_c)"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:306
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:262
msgctxt "tabletextflowpage|keep"
msgid "_Keep with next paragraph"
msgstr "পরবর্তী অনুচ্ছেদের সাথে রাখা (_K)"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:328
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:284
msgctxt "tabletextflowpage|label40"
msgid "Text _orientation"
msgstr "টেক্সট স্থিতিবিন্যাস (_o)"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:361
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:298
+msgctxt "tabletextflowpage|liststore1"
+msgid "Horizontal"
+msgstr "অনুভূমিক"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:299
+msgctxt "tabletextflowpage|liststore1"
+msgid "Vertical"
+msgstr "উল্লম্ব"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:300
+msgctxt "tabletextflowpage|liststore1"
+msgid "Use superordinate object settings"
+msgstr "উর্ধ্বঃস্তন বস্তুর সেটিংস ব্যবহার"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:321
msgctxt "tabletextflowpage|headline"
msgid "R_epeat heading"
msgstr "শিরোনাম পুনরাবৃত্তি (_e)"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:383
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:343
msgctxt "tabletextflowpage|label38"
msgid "The first "
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:396
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:356
msgctxt "tabletextflowpage|label39"
msgid "rows"
msgstr "সারি"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:434
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:395
msgctxt "tabletextflowpage|label35"
msgid "Text Flow"
msgstr "লেখা প্রবাহ"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:467
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:428
msgctxt "tabletextflowpage|label41"
msgid "_Vertical alignment"
msgstr "উল্লম্ব প্রান্তিককরণ (_V)"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:495
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:442
+msgctxt "tabletextflowpage|liststore2"
+msgid "Top"
+msgstr "শীর্ষ"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:443
+msgctxt "tabletextflowpage|liststore2"
+msgid "Centered"
+msgstr "কেন্দ্রস্থিত"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:444
+msgctxt "tabletextflowpage|liststore2"
+msgid "Bottom"
+msgstr "নিচে"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:460
msgctxt "tabletextflowpage|label36"
msgid "Alignment"
msgstr "প্রান্তিককরণ"
@@ -17834,10 +17838,9 @@ msgid "Alphabetical Index"
msgstr ""
#: sw/uiconfig/swriter/ui/tocindexpage.ui:58
-#, fuzzy
msgctxt "tocindexpage|liststore1"
-msgid "Illustration Index"
-msgstr "চিত্র সূচি ১"
+msgid "Table of Figures"
+msgstr ""
#: sw/uiconfig/swriter/ui/tocindexpage.ui:62
msgctxt "tocindexpage|liststore1"
diff --git a/source/bn-IN/writerperfect/messages.po b/source/bn-IN/writerperfect/messages.po
index a759c48be16..5b1d40fb87a 100644
--- a/source/bn-IN/writerperfect/messages.po
+++ b/source/bn-IN/writerperfect/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-16 16:54+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+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"
@@ -65,98 +65,98 @@ msgctxt "exportepub|generalft"
msgid "General"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:122
+#: writerperfect/uiconfig/ui/exportepub.ui:121
#, fuzzy
msgctxt "exportepub|versionft"
msgid "Version:"
msgstr "সংস্করণ: (~V)"
-#: writerperfect/uiconfig/ui/exportepub.ui:139
+#: writerperfect/uiconfig/ui/exportepub.ui:138
msgctxt "exportepub|epub3"
msgid "EPUB 3.0"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:140
+#: writerperfect/uiconfig/ui/exportepub.ui:139
msgctxt "exportepub|epub2"
msgid "EPUB 2.0"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:175
+#: writerperfect/uiconfig/ui/exportepub.ui:174
msgctxt "exportepub|splitft"
msgid "Split method:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:192
+#: writerperfect/uiconfig/ui/exportepub.ui:191
msgctxt "exportepub|splitpage"
msgid "Page break"
msgstr "পৃষ্ঠা বিভাজক (~P)"
-#: writerperfect/uiconfig/ui/exportepub.ui:193
+#: writerperfect/uiconfig/ui/exportepub.ui:192
msgctxt "exportepub|splitheading"
msgid "Heading"
msgstr "শিরোনাম"
-#: writerperfect/uiconfig/ui/exportepub.ui:228
+#: writerperfect/uiconfig/ui/exportepub.ui:227
msgctxt "exportepub|layoutft"
msgid "Layout method:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:245
+#: writerperfect/uiconfig/ui/exportepub.ui:244
msgctxt "exportepub|layoutreflowable"
msgid "Reflowable"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:246
+#: writerperfect/uiconfig/ui/exportepub.ui:245
msgctxt "exportepub|layoutfixed"
msgid "Fixed"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:281
+#: writerperfect/uiconfig/ui/exportepub.ui:280
msgctxt "exportepub|coverimageft"
msgid "Custom cover image:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:311
+#: writerperfect/uiconfig/ui/exportepub.ui:310
msgctxt "exportepub|coverbutton"
msgid "Browse..."
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:355
+#: writerperfect/uiconfig/ui/exportepub.ui:354
msgctxt "exportepub|mediadirft"
msgid "Custom media directory:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:385
+#: writerperfect/uiconfig/ui/exportepub.ui:384
msgctxt "exportepub|mediabutton"
msgid "Browse..."
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:429
+#: writerperfect/uiconfig/ui/exportepub.ui:428
msgctxt "exportepub|metadataft"
msgid "Metadata"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:470
+#: writerperfect/uiconfig/ui/exportepub.ui:468
msgctxt "exportepub|identifierft"
msgid "Identifier:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:485
+#: writerperfect/uiconfig/ui/exportepub.ui:483
msgctxt "exportepub|titleft"
msgid "Title:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:511
+#: writerperfect/uiconfig/ui/exportepub.ui:509
msgctxt "exportepub|authorft"
msgid "Author:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:537
+#: writerperfect/uiconfig/ui/exportepub.ui:535
msgctxt "exportepub|languageft"
msgid "Language:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:563
+#: writerperfect/uiconfig/ui/exportepub.ui:561
msgctxt "exportepub|dateft"
msgid "Date:"
msgstr ""
diff --git a/source/bn/cui/messages.po b/source/bn/cui/messages.po
index 5dfd4545613..405881811dd 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+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"
@@ -10508,108 +10508,108 @@ msgctxt "positionsizedialog|PositionAndSizeDialog"
msgid "Position and Size"
msgstr "অবস্থান ও আকার... (~z)"
-#: cui/uiconfig/ui/positionsizedialog.ui:107
+#: cui/uiconfig/ui/positionsizedialog.ui:136
#, fuzzy
msgctxt "positionsizedialog|RID_SVXPAGE_POSITION_SIZE"
msgid "Position and Size"
msgstr "অবস্থান ও আকার... (~z)"
-#: cui/uiconfig/ui/positionsizedialog.ui:129
+#: cui/uiconfig/ui/positionsizedialog.ui:182
#, fuzzy
msgctxt "positionsizedialog|RID_SVXPAGE_SWPOSSIZE"
msgid "Position and Size"
msgstr "অবস্থান ও আকার... (~z)"
-#: cui/uiconfig/ui/positionsizedialog.ui:152
+#: cui/uiconfig/ui/positionsizedialog.ui:229
#, fuzzy
msgctxt "positionsizedialog|RID_SVXPAGE_ANGLE"
msgid "Rotation"
msgstr "উদ্ধৃতি"
-#: cui/uiconfig/ui/positionsizedialog.ui:175
+#: cui/uiconfig/ui/positionsizedialog.ui:276
msgctxt "positionsizedialog|RID_SVXPAGE_SLANT"
msgid "Slant & Corner Radius"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:40
+#: cui/uiconfig/ui/possizetabpage.ui:61
#, fuzzy
msgctxt "possizetabpage|FT_POS_X"
msgid "Position _X:"
msgstr "অবস্থান"
-#: cui/uiconfig/ui/possizetabpage.ui:56
+#: cui/uiconfig/ui/possizetabpage.ui:75
#, fuzzy
msgctxt "possizetabpage|FT_POS_Y"
msgid "Position _Y:"
msgstr "অবস্থান"
-#: cui/uiconfig/ui/possizetabpage.ui:110
+#: cui/uiconfig/ui/possizetabpage.ui:128
msgctxt "possizetabpage|FT_POSREFERENCE"
msgid "_Base point:"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:148
+#: cui/uiconfig/ui/possizetabpage.ui:182
msgctxt "possizetabpage|label1"
msgid "Position"
msgstr "অবস্থান"
-#: cui/uiconfig/ui/possizetabpage.ui:190
+#: cui/uiconfig/ui/possizetabpage.ui:224
#, fuzzy
msgctxt "possizetabpage|FT_WIDTH"
msgid "Wi_dth:"
msgstr "প্রস্থ"
-#: cui/uiconfig/ui/possizetabpage.ui:206
+#: cui/uiconfig/ui/possizetabpage.ui:238
#, fuzzy
msgctxt "possizetabpage|FT_HEIGHT"
msgid "H_eight:"
msgstr "উচ্চতা"
-#: cui/uiconfig/ui/possizetabpage.ui:247
+#: cui/uiconfig/ui/possizetabpage.ui:276
#, fuzzy
msgctxt "possizetabpage|CBX_SCALE"
msgid "_Keep ratio"
msgstr "অনুপাত বজায় রাখা হবে"
-#: cui/uiconfig/ui/possizetabpage.ui:279
+#: cui/uiconfig/ui/possizetabpage.ui:307
msgctxt "possizetabpage|FT_SIZEREFERENCE"
msgid "Base _point:"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:317
+#: cui/uiconfig/ui/possizetabpage.ui:361
msgctxt "possizetabpage|label2"
msgid "Size"
msgstr "আকার"
-#: cui/uiconfig/ui/possizetabpage.ui:356
+#: cui/uiconfig/ui/possizetabpage.ui:401
#, fuzzy
msgctxt "possizetabpage|TSB_POSPROTECT"
msgid "Positio_n"
msgstr "অবস্থান"
-#: cui/uiconfig/ui/possizetabpage.ui:373
+#: cui/uiconfig/ui/possizetabpage.ui:418
#, fuzzy
msgctxt "possizetabpage|TSB_SIZEPROTECT"
msgid "_Size"
msgstr "আকার"
-#: cui/uiconfig/ui/possizetabpage.ui:397
+#: cui/uiconfig/ui/possizetabpage.ui:441
#, fuzzy
msgctxt "possizetabpage|label3"
msgid "Protect"
msgstr "সুরক্ষিতকরণ (~P)"
-#: cui/uiconfig/ui/possizetabpage.ui:430
+#: cui/uiconfig/ui/possizetabpage.ui:475
msgctxt "possizetabpage|TSB_AUTOGROW_WIDTH"
msgid "_Fit width to text"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:447
+#: cui/uiconfig/ui/possizetabpage.ui:492
msgctxt "possizetabpage|TSB_AUTOGROW_HEIGHT"
msgid "Fit _height to text"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:471
+#: cui/uiconfig/ui/possizetabpage.ui:515
msgctxt "possizetabpage|label4"
msgid "Adapt"
msgstr ""
@@ -10822,50 +10822,50 @@ msgctxt "recordnumberdialog|label2"
msgid "go to record"
msgstr ""
-#: cui/uiconfig/ui/rotationtabpage.ui:52
+#: cui/uiconfig/ui/rotationtabpage.ui:56
#, fuzzy
msgctxt "rotationtabpage|FT_POS_X"
msgid "Position _X:"
msgstr "অবস্থান"
-#: cui/uiconfig/ui/rotationtabpage.ui:66
+#: cui/uiconfig/ui/rotationtabpage.ui:70
#, fuzzy
msgctxt "rotationtabpage|FT_POS_Y"
msgid "Position _Y:"
msgstr "অবস্থান"
-#: cui/uiconfig/ui/rotationtabpage.ui:116
+#: cui/uiconfig/ui/rotationtabpage.ui:123
msgctxt "rotationtabpage|FT_POSPRESETS"
msgid "_Default settings:"
msgstr ""
-#: cui/uiconfig/ui/rotationtabpage.ui:130
+#: cui/uiconfig/ui/rotationtabpage.ui:151
msgctxt "rotationtabpage|CTL_RECT|tooltip_text"
msgid "Rotation point"
msgstr ""
-#: cui/uiconfig/ui/rotationtabpage.ui:155
+#: cui/uiconfig/ui/rotationtabpage.ui:178
msgctxt "rotationtabpage|label1"
msgid "Pivot Point"
msgstr ""
-#: cui/uiconfig/ui/rotationtabpage.ui:197
+#: cui/uiconfig/ui/rotationtabpage.ui:220
msgctxt "rotationtabpage|FT_ANGLE"
msgid "_Angle:"
msgstr ""
-#: cui/uiconfig/ui/rotationtabpage.ui:238
+#: cui/uiconfig/ui/rotationtabpage.ui:263
msgctxt "rotationtabpage|FT_ANGLEPRESETS"
msgid "Default _settings:"
msgstr ""
-#: cui/uiconfig/ui/rotationtabpage.ui:252
+#: cui/uiconfig/ui/rotationtabpage.ui:287
#, fuzzy
msgctxt "rotationtabpage|CTL_ANGLE|tooltip_text"
msgid "Rotation Angle"
msgstr "ঘুর্ণন কোণ"
-#: cui/uiconfig/ui/rotationtabpage.ui:277
+#: cui/uiconfig/ui/rotationtabpage.ui:314
#, fuzzy
msgctxt "rotationtabpage|label2"
msgid "Rotation Angle"
@@ -11260,55 +11260,55 @@ msgctxt "similaritysearchdialog|relaxbox"
msgid "_Combine"
msgstr "একত্ররীকরণ (~i)"
-#: cui/uiconfig/ui/slantcornertabpage.ui:50
+#: cui/uiconfig/ui/slantcornertabpage.ui:70
msgctxt "slantcornertabpage|label5"
msgid "_X:"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:88
+#: cui/uiconfig/ui/slantcornertabpage.ui:110
msgctxt "slantcornertabpage|label6"
msgid "_Y:"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:125
+#: cui/uiconfig/ui/slantcornertabpage.ui:149
msgctxt "slantcornertabpage|label3"
msgid "Control Point 1"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:159
+#: cui/uiconfig/ui/slantcornertabpage.ui:183
#, fuzzy
msgctxt "slantcornertabpage|FT_RADIUS"
msgid "_Radius:"
msgstr "ব্যাসার্ধ"
-#: cui/uiconfig/ui/slantcornertabpage.ui:189
+#: cui/uiconfig/ui/slantcornertabpage.ui:214
#, fuzzy
msgctxt "slantcornertabpage|label1"
msgid "Corner Radius"
msgstr "কোণার ব্যাসার্ধ"
-#: cui/uiconfig/ui/slantcornertabpage.ui:223
+#: cui/uiconfig/ui/slantcornertabpage.ui:248
msgctxt "slantcornertabpage|FT_ANGLE"
msgid "_Angle:"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:253
+#: cui/uiconfig/ui/slantcornertabpage.ui:279
#, fuzzy
msgctxt "slantcornertabpage|label2"
msgid "Slant"
msgstr "তির্যক"
-#: cui/uiconfig/ui/slantcornertabpage.ui:294
+#: cui/uiconfig/ui/slantcornertabpage.ui:320
msgctxt "slantcornertabpage|label4"
msgid "_X:"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:332
+#: cui/uiconfig/ui/slantcornertabpage.ui:360
msgctxt "slantcornertabpage|label7"
msgid "_Y:"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:369
+#: cui/uiconfig/ui/slantcornertabpage.ui:399
msgctxt "slantcornertabpage|label8"
msgid "Control Point 2"
msgstr ""
@@ -11606,124 +11606,124 @@ msgctxt "storedwebconnectiondialog|change"
msgid "_Change Password..."
msgstr "পাসওয়ার্ড পরিবর্তন... (~P)"
-#: cui/uiconfig/ui/swpossizepage.ui:74
+#: cui/uiconfig/ui/swpossizepage.ui:85
#, fuzzy
msgctxt "swpossizepage|widthft"
msgid "_Width:"
msgstr "প্রস্থ"
-#: cui/uiconfig/ui/swpossizepage.ui:111
+#: cui/uiconfig/ui/swpossizepage.ui:123
#, fuzzy
msgctxt "swpossizepage|heightft"
msgid "H_eight:"
msgstr "উচ্চতা"
-#: cui/uiconfig/ui/swpossizepage.ui:128
+#: cui/uiconfig/ui/swpossizepage.ui:141
#, fuzzy
msgctxt "swpossizepage|ratio"
msgid "_Keep ratio"
msgstr "অনুপাত বজায় রাখা হবে"
-#: cui/uiconfig/ui/swpossizepage.ui:149
+#: cui/uiconfig/ui/swpossizepage.ui:162
msgctxt "swpossizepage|label2"
msgid "Size"
msgstr "আকার"
-#: cui/uiconfig/ui/swpossizepage.ui:205
+#: cui/uiconfig/ui/swpossizepage.ui:218
#, fuzzy
msgctxt "swpossizepage|topage"
msgid "To _page"
msgstr "পৃষ্ঠায়"
-#: cui/uiconfig/ui/swpossizepage.ui:222
+#: cui/uiconfig/ui/swpossizepage.ui:234
#, fuzzy
msgctxt "swpossizepage|topara"
msgid "To paragrap_h"
msgstr "অনুচ্ছেদে"
-#: cui/uiconfig/ui/swpossizepage.ui:238
+#: cui/uiconfig/ui/swpossizepage.ui:250
#, fuzzy
msgctxt "swpossizepage|tochar"
msgid "To cha_racter"
msgstr "অক্ষরে"
-#: cui/uiconfig/ui/swpossizepage.ui:254
+#: cui/uiconfig/ui/swpossizepage.ui:266
#, fuzzy
msgctxt "swpossizepage|aschar"
msgid "_As character"
msgstr "অক্ষর হিসেবে"
-#: cui/uiconfig/ui/swpossizepage.ui:270
+#: cui/uiconfig/ui/swpossizepage.ui:282
#, fuzzy
msgctxt "swpossizepage|toframe"
msgid "To _frame"
msgstr "ফ্রেমে"
-#: cui/uiconfig/ui/swpossizepage.ui:292
+#: cui/uiconfig/ui/swpossizepage.ui:304
msgctxt "swpossizepage|label1"
msgid "Anchor"
msgstr "নোঙ্গর"
-#: cui/uiconfig/ui/swpossizepage.ui:333
+#: cui/uiconfig/ui/swpossizepage.ui:344
#, fuzzy
msgctxt "swpossizepage|horiposft"
msgid "Hori_zontal:"
msgstr "অনুভূমিক"
-#: cui/uiconfig/ui/swpossizepage.ui:347
+#: cui/uiconfig/ui/swpossizepage.ui:358
msgctxt "swpossizepage|horibyft"
msgid "b_y:"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:361
+#: cui/uiconfig/ui/swpossizepage.ui:372
msgctxt "swpossizepage|vertbyft"
msgid "_by:"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:375
+#: cui/uiconfig/ui/swpossizepage.ui:386
msgctxt "swpossizepage|horitoft"
msgid "_to:"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:421
+#: cui/uiconfig/ui/swpossizepage.ui:433
#, fuzzy
msgctxt "swpossizepage|vertposft"
msgid "_Vertical:"
msgstr "উল্লম্ব"
-#: cui/uiconfig/ui/swpossizepage.ui:457
+#: cui/uiconfig/ui/swpossizepage.ui:470
msgctxt "swpossizepage|verttoft"
msgid "t_o:"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:478
+#: cui/uiconfig/ui/swpossizepage.ui:492
msgctxt "swpossizepage|mirror"
msgid "_Mirror on even pages"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:495
+#: cui/uiconfig/ui/swpossizepage.ui:509
msgctxt "swpossizepage|followtextflow"
msgid "Follow te_xt flow"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:518
+#: cui/uiconfig/ui/swpossizepage.ui:532
msgctxt "swpossizepage|label11"
msgid "Position"
msgstr "অবস্থান"
-#: cui/uiconfig/ui/swpossizepage.ui:549
+#: cui/uiconfig/ui/swpossizepage.ui:563
#, fuzzy
msgctxt "swpossizepage|pos"
msgid "Positio_n"
msgstr "অবস্থান"
-#: cui/uiconfig/ui/swpossizepage.ui:565
+#: cui/uiconfig/ui/swpossizepage.ui:579
#, fuzzy
msgctxt "swpossizepage|size"
msgid "_Size"
msgstr "আকার"
-#: cui/uiconfig/ui/swpossizepage.ui:587
+#: cui/uiconfig/ui/swpossizepage.ui:601
#, fuzzy
msgctxt "swpossizepage|label3"
msgid "Protect"
@@ -11927,13 +11927,13 @@ msgctxt "textattrtabpage|label2"
msgid "Spacing to Borders"
msgstr ""
-#: cui/uiconfig/ui/textattrtabpage.ui:425
+#: cui/uiconfig/ui/textattrtabpage.ui:423
#, fuzzy
msgctxt "textattrtabpage|TSB_FULL_WIDTH"
msgid "Full _width"
msgstr "পূর্ণ-প্রস্থ"
-#: cui/uiconfig/ui/textattrtabpage.ui:448
+#: cui/uiconfig/ui/textattrtabpage.ui:446
msgctxt "textattrtabpage|label3"
msgid "Text Anchor"
msgstr ""
diff --git a/source/bn/filter/source/config/fragments/filters.po b/source/bn/filter/source/config/fragments/filters.po
index 42529104a28..77d682e6441 100644
--- a/source/bn/filter/source/config/fragments/filters.po
+++ b/source/bn/filter/source/config/fragments/filters.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-16 16:54+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2016-12-01 12:01+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -466,8 +466,8 @@ msgctxt ""
"MS Word 2003 XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Word 2003 XML"
-msgstr "মাইক্রোসফট ওয়ার্ড 2003 XML"
+msgid "Word 2003 XML"
+msgstr ""
#: MS_Word_2007_XML.xcu
msgctxt ""
@@ -1291,7 +1291,7 @@ msgctxt ""
"Calc MS Excel 2007 VBA XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Excel 2007-2016 XML (macro enabled)"
+msgid "Excel 2007–2019 (macro-enabled)"
msgstr ""
#: calc_MS_Excel_2007_XML.xcu
diff --git a/source/bn/filter/source/config/fragments/types.po b/source/bn/filter/source/config/fragments/types.po
index b644981d766..18964229b01 100644
--- a/source/bn/filter/source/config/fragments/types.po
+++ b/source/bn/filter/source/config/fragments/types.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-08 15:11+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2015-11-11 20:25+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -296,8 +296,8 @@ msgctxt ""
"writer_MS_Word_2003_XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Word 2003 XML"
-msgstr "মাইক্রোসফট ওয়ার্ড ২০০৩ XML"
+msgid "Word 2003 XML"
+msgstr ""
#: writer_MS_Word_2007_XML.xcu
msgctxt ""
diff --git a/source/bn/fpicker/messages.po b/source/bn/fpicker/messages.po
index 22ddefc1b51..0881c4d1242 100644
--- a/source/bn/fpicker/messages.po
+++ b/source/bn/fpicker/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+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"
@@ -278,14 +278,13 @@ msgstr ""
#: fpicker/uiconfig/ui/foldernamedialog.ui:8
msgctxt "foldernamedialog|FolderNameDialog"
-msgid "Folder Name ?"
+msgid "Folder Name"
msgstr ""
#: fpicker/uiconfig/ui/foldernamedialog.ui:91
-#, fuzzy
msgctxt "foldernamedialog|label2"
-msgid "Na_me"
-msgstr "নাম"
+msgid "Na_me:"
+msgstr ""
#: fpicker/uiconfig/ui/foldernamedialog.ui:122
#, fuzzy
diff --git a/source/bn/helpcontent2/source/text/shared/00.po b/source/bn/helpcontent2/source/text/shared/00.po
index 3835fca4466..6dab535ec60 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2016-05-24 02:24+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -397,16 +397,16 @@ msgctxt ""
"00000001.xhp\n"
"hd_id3149670\n"
"help.text"
-msgid "Back"
-msgstr "পূর্ববর্তী"
+msgid "Reset"
+msgstr ""
#: 00000001.xhp
msgctxt ""
"00000001.xhp\n"
"par_id3145068\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optionsdialog/revert\">Resets modified values back to the $[officename] default values.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/optionsdialog/revert\">$[officename] পূর্বনির্ধারিত মানে পরিবর্তিত মান গুলো পুনরায় নিযুক্ত করা হয়েছে।</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optionsdialog/revert\">Resets changes made to the current tab to those applicable when this dialog was opened.</ahelp>"
+msgstr ""
#: 00000001.xhp
msgctxt ""
@@ -552,6 +552,54 @@ msgctxt ""
msgid "<variable id=\"ShiftF1\">Press Shift+F1 and point to a control to learn more about that control.</variable>"
msgstr ""
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"hd_id631527692833772\n"
+"help.text"
+msgid "Options dialog buttons"
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"hd_id831527692839432\n"
+"help.text"
+msgid "OK"
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"par_id471527692844934\n"
+"help.text"
+msgid "Save the changes in the page and close the Options dialog."
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"hd_id261527692850720\n"
+"help.text"
+msgid "Cancel"
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"par_id571527692855533\n"
+"help.text"
+msgid "Close the Options dialog and discard all changes done."
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"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 Options dialog."
+msgstr ""
+
#: 00000002.xhp
msgctxt ""
"00000002.xhp\n"
@@ -11125,16 +11173,16 @@ msgctxt ""
"00040502.xhp\n"
"par_id3151293\n"
"help.text"
-msgid "<variable id=\"linienstile\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Line Styles</emph> tab </variable>"
-msgstr "<variable id=\"linienstile\"> <emph>বিন্যাস - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>বস্তু - </emph></caseinline><caseinline select=\"CALC\"><emph>গ্রাফিক্স - </emph></caseinline></switchinline><emph>লাইন - লাইনেরর শৈলী</emph> ট্যাবটি নির্বাচন করুন </variable>"
+msgid "<variable id=\"linienstile\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Line Styles</emph> tab</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3149317\n"
"help.text"
-msgid "<variable id=\"linienenden\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Arrow Styles</emph> tab </variable>"
-msgstr "<variable id=\"linienenden\"> <emph>বিন্যাস - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>বস্তু - </emph></caseinline><caseinline select=\"CALC\"><emph>গ্রাফিক্স - </emph></caseinline></switchinline><emph>সারি - তীর চিহ্নের শৈলী</emph> ট্যাবটি নির্বাচন করুন </variable>"
+msgid "<variable id=\"linienenden\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Arrow Styles</emph> tab</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
@@ -11173,15 +11221,15 @@ msgctxt ""
"00040502.xhp\n"
"par_id3154948\n"
"help.text"
-msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Area</emph> tab"
-msgstr "<emph>বিন্যাস - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>বস্তু - </emph></caseinline><caseinline select=\"CALC\"><emph>গ্রাফিক্স - </emph></caseinline></switchinline><emph>এলাকা - এলাকা</emph> ট্যাবটি নির্বাচন করুন"
+msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Area</emph> tab."
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3145607\n"
"help.text"
-msgid "Choose <emph>View - Styles</emph> - open context menu and choose <emph>Modify/New - Area</emph> tab (presentation documents)"
+msgid "Choose <emph>View - Styles</emph> - open context menu and choose <emph>Modify/New - Area</emph> tab (presentation documents)."
msgstr ""
#: 00040502.xhp
@@ -11189,47 +11237,47 @@ msgctxt ""
"00040502.xhp\n"
"par_id3152922\n"
"help.text"
-msgid "Choose <emph>Format - Title - Area</emph> tab (chart documents)"
-msgstr "<emph>বিন্যাস - শিরোনাম - এলাকা</emph> ট্যাব (লেখচিত্র নথি) নির্বাচন করুন"
+msgid "Choose <emph>Format - Title - Area</emph> tab (chart documents)."
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3157894\n"
"help.text"
-msgid "Choose <emph>Format - Legend - Area</emph> tab (chart documents)"
-msgstr "<emph>বিন্যাস - লেজেন্ড - এলাকা</emph> ট্যাব (লেখচিত্র নথি) নির্বাচন করুন"
+msgid "Choose <emph>Format - Legend - Area</emph> tab (chart documents)."
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3144444\n"
"help.text"
-msgid "Choose <emph>Format - Chart Wall - Area</emph> tab (chart documents)"
-msgstr "<emph>বিন্যাস - লেখচিত্রের বেষ্টনী - এলাকা</emph> ট্যাব (লেখচিত্র নথি) নির্বাচন করুন"
+msgid "Choose <emph>Format - Chart Wall - Area</emph> tab (chart documents)."
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3156543\n"
"help.text"
-msgid "Choose <emph>Format - Chart Floor - Area</emph> tab (chart documents)"
-msgstr "<emph>বিন্যাস - লেখচিত্রের মেঝে - এলাকা</emph> ট্যাব (লেখচিত্র নথি) নির্বাচন করুন"
+msgid "Choose <emph>Format - Chart Floor - Area</emph> tab (chart documents)."
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3150685\n"
"help.text"
-msgid "Choose <emph>Format - Chart Area - Area</emph> tab (chart documents)"
-msgstr "<emph>বিন্যাস - লেখচিত্রের এলাকা - এলাকা</emph> ট্যাব (লেখচিত্র নথি) নির্বাচন করুন"
+msgid "Choose <emph>Format - Chart Area - Area</emph> tab (chart documents)."
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3149664\n"
"help.text"
-msgid "Choose <emph>Slide - Properties - Background</emph> tab (in $[officename] Impress)"
+msgid "Choose <emph>Slide - Properties - Background</emph> tab (in $[officename] Impress)."
msgstr ""
#: 00040502.xhp
@@ -11237,7 +11285,15 @@ msgctxt ""
"00040502.xhp\n"
"par_id9149694\n"
"help.text"
-msgid "Choose <emph>Page - Properties - Background</emph> tab (in $[officename] Draw)"
+msgid "Choose <emph>Page - Properties - Background</emph> tab (in $[officename] Draw)."
+msgstr ""
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id841527083135387\n"
+"help.text"
+msgid "Choose <emph>Table - Properties - Background</emph> tab."
msgstr ""
#: 00040502.xhp
@@ -11349,32 +11405,32 @@ msgctxt ""
"00040502.xhp\n"
"par_id3150011\n"
"help.text"
-msgid "<variable id=\"schatte\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Shadow</emph> tab </variable>"
-msgstr "<variable id=\"schatte\"> <emph>বিন্যাস - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>বস্তু - </emph></caseinline><caseinline select=\"CALC\"><emph>গ্রাফিক্স - </emph></caseinline></switchinline><emph>এলাকা - ছায়া</emph> ট্যাব নির্বাচন করুন </variable>"
+msgid "<variable id=\"schatte\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Shadow</emph> tab</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3147441\n"
"help.text"
-msgid "<variable id=\"verlauf\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Gradients</emph> tab </variable>"
-msgstr "<variable id=\"verlauf\"> <emph>বিন্যাস - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>বস্তু - </emph></caseinline><caseinline select=\"CALC\"><emph>গ্রাফিক্স - </emph></caseinline></switchinline><emph>এলাকা - গ্রেডিয়েন্ট</emph> ট্যাব নির্বাচন করুন </variable>"
+msgid "<variable id=\"verlauf\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Gradients</emph> tab</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3155308\n"
"help.text"
-msgid "<variable id=\"schraffur\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Hatching</emph> tab </variable>"
-msgstr "<variable id=\"schraffur\"> <emph>বিন্যাস - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>বস্তু - </emph></caseinline><caseinline select=\"CALC\"><emph>গ্রাফিক্স - </emph></caseinline></switchinline><emph>এলাকা - হ্যাচিং</emph> ট্যাবটি নির্বাচন করুন </variable>"
+msgid "<variable id=\"schraffur\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Hatching</emph> tab</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3145800\n"
"help.text"
-msgid "<variable id=\"bitmap\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Bitmaps</emph> tab </variable>"
-msgstr "<variable id=\"bitmap\"> <emph>বিন্যাস - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>বস্তু - </emph></caseinline><caseinline select=\"CALC\"><emph>গ্রাফিক্স - </emph></caseinline></switchinline><emph>এলাকা - বিটম্যাপ</emph> ট্যাব নির্বাচন করুন </variable>"
+msgid "<variable id=\"bitmap\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Bitmaps</emph> tab</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
@@ -11413,8 +11469,8 @@ msgctxt ""
"00040502.xhp\n"
"par_id3156286\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F4 key </caseinline><caseinline select=\"IMPRESS\">F4 key </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F4 কী </caseinline><caseinline select=\"IMPRESS\">F4 কী </caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F4 key</caseinline><caseinline select=\"IMPRESS\">F4 key</caseinline></switchinline>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
@@ -11453,8 +11509,8 @@ msgctxt ""
"00040502.xhp\n"
"par_id3153099\n"
"help.text"
-msgid "<variable id=\"position2\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Position and Size</emph> tab </variable>"
-msgstr "<variable id=\"position2\"> <emph>বিন্যাস - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>বস্তু - </emph></caseinline><caseinline select=\"CALC\"><emph>গ্রাফিক্স - </emph></caseinline></switchinline><emph>অবস্থান ও আকার - অবস্থান ও আকার</emph> ট্যাবটি নির্বাচন করুন </variable>"
+msgid "<variable id=\"position2\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Position and Size</emph> tab</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
@@ -11485,16 +11541,16 @@ msgctxt ""
"00040502.xhp\n"
"par_id3145666\n"
"help.text"
-msgid "<variable id=\"ecke\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Slant & Corner Radius</emph> tab </variable>"
-msgstr "<variable id=\"ecke\"> <emph>বিন্যাস - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>বস্তু - </emph></caseinline><caseinline select=\"CALC\"><emph>গ্রাফিক্স - </emph></caseinline></switchinline><emph>অবস্থান ও আকার- তির্যক & কৌনিক ব্যাসার্ধ</emph> ট্যাব নির্বাচন করুন </variable>"
+msgid "<variable id=\"ecke\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Slant & Corner Radius</emph> tab</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3146081\n"
"help.text"
-msgid "<variable id=\"legende\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Callout</emph> tab (only for textbox callouts, not for custom shapes callouts) </variable>"
-msgstr "<variable id=\"ecke\"> <emph>বিন্যাস - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>বস্তু - </emph></caseinline><caseinline select=\"CALC\"><emph>গ্রাফিক্স - </emph></caseinline></switchinline><emph>অবস্থান ও আকার- তির্যক & কৌনিক ব্যাসার্ধ</emph> ট্যাব নির্বাচন করুন </variable>"
+msgid "<variable id=\"legende\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Callout</emph> tab (only for textbox callouts, not for custom shapes callouts)</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
@@ -11517,8 +11573,8 @@ msgctxt ""
"00040502.xhp\n"
"par_id3149019\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F8 key </caseinline><caseinline select=\"IMPRESS\">F8 key </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F8 কী </caseinline><caseinline select=\"IMPRESS\">F8 কী </caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F8 key</caseinline><caseinline select=\"IMPRESS\">F8 key</caseinline></switchinline>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
@@ -11805,8 +11861,8 @@ msgctxt ""
"00040502.xhp\n"
"par_id3153076\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Align Center Horizontally </caseinline><defaultinline>Centered</defaultinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">কেন্দ্রস্থিত বস্তু উল্লম্বভাবে প্রান্তিককরণ </caseinline><defaultinline>কেন্দ্রস্থিত</defaultinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Align Center Horizontally</caseinline><defaultinline>Centered</defaultinline></switchinline>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
@@ -11845,8 +11901,8 @@ msgctxt ""
"00040502.xhp\n"
"par_id3150527\n"
"help.text"
-msgid "<variable id=\"font\">Click <emph>Fontwork</emph> icon on <emph>Drawing</emph> bar </variable>"
-msgstr "<variable id=\"font\"> <emph>ফন্টওয়ার্ক</emph> আইকনে <emph>অঙ্কন</emph> বারে </variable> ক্লিক করুন"
+msgid "<variable id=\"font\">Click <emph>Fontwork</emph> icon on <emph>Drawing</emph> bar</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
diff --git a/source/bn/helpcontent2/source/text/shared/01.po b/source/bn/helpcontent2/source/text/shared/01.po
index f522213b6a5..ced254ed7e4 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: 2018-05-23 23:19+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2016-12-24 13:49+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -23587,6 +23587,22 @@ msgstr ""
#: 05210100.xhp
msgctxt ""
"05210100.xhp\n"
+"hd_id471527077476052\n"
+"help.text"
+msgid "Cell, Row or Table background selector"
+msgstr ""
+
+#: 05210100.xhp
+msgctxt ""
+"05210100.xhp\n"
+"par_id661527077493366\n"
+"help.text"
+msgid "Select the table object which background area is to be filled."
+msgstr ""
+
+#: 05210100.xhp
+msgctxt ""
+"05210100.xhp\n"
"hd_id3147373\n"
"help.text"
msgid "None"
@@ -31205,7 +31221,7 @@ msgctxt ""
"06040100.xhp\n"
"hd_id3145072\n"
"help.text"
-msgid "Automatic *bold* and _underline_"
+msgid "Automatic *bold*, /italic/, -strikeout- and _underline_"
msgstr ""
#: 06040100.xhp
@@ -31213,7 +31229,7 @@ msgctxt ""
"06040100.xhp\n"
"par_id3153577\n"
"help.text"
-msgid "Automatically applies bold formatting to text enclosed by asterisks (*), and underline to text enclosed by underscores ( _ ), for example, *bold*. The asterisks and underscores are not displayed after the formatting is applied."
+msgid "Automatically applies bold, italic, strikethrough or underline formatting to text enclosed by asterisks (*), slashes (/), hyphens (-), and underscores (_), respectively. These characters disappear after the formatting is applied."
msgstr ""
#: 06040100.xhp
@@ -31221,7 +31237,7 @@ msgctxt ""
"06040100.xhp\n"
"par_id3153127\n"
"help.text"
-msgid "This feature does not work if the formatting characters * or _ are entered with an <link href=\"text/shared/00/00000005.xhp#IME\" name=\"Input Method Editor\">Input Method Editor</link>."
+msgid "This feature does not work if the formatting characters <item type=\"literal\">* / - _</item> are entered with an <link href=\"text/shared/00/00000005.xhp#IME\" name=\"Input Method Editor\">Input Method Editor</link>."
msgstr ""
#: 06040100.xhp
diff --git a/source/bn/helpcontent2/source/text/shared/optionen.po b/source/bn/helpcontent2/source/text/shared/optionen.po
index 106559f988a..64768b7d8e5 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: 2018-05-08 15:10+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2016-07-05 17:11+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -83,6 +83,22 @@ msgstr ""
#: 01000000.xhp
msgctxt ""
"01000000.xhp\n"
+"hd_id551527692881035\n"
+"help.text"
+msgid "Help"
+msgstr ""
+
+#: 01000000.xhp
+msgctxt ""
+"01000000.xhp\n"
+"par_id831527692885723\n"
+"help.text"
+msgid "Opens the help contents for the Options page displayed."
+msgstr ""
+
+#: 01000000.xhp
+msgctxt ""
+"01000000.xhp\n"
"hd_id3159149\n"
"help.text"
msgid "<link href=\"text/shared/optionen/01010000.xhp\" name=\"$[officename]\">%PRODUCTNAME</link>"
@@ -4565,8 +4581,8 @@ msgctxt ""
"01030300.xhp\n"
"par_idN10640\n"
"help.text"
-msgid "Options"
-msgstr "অপশন"
+msgid "Security Options and Warnings"
+msgstr ""
#: 01030300.xhp
msgctxt ""
@@ -4597,8 +4613,8 @@ msgctxt ""
"01030300.xhp\n"
"hd_id3168736\n"
"help.text"
-msgid "Persistently save passwords protected by a master password"
-msgstr "পুনঃপুন সংরক্ষিত গুপ্তসঙ্কেত মাষ্টার গুপ্তসঙ্কেত দ্বারা সুরক্ষিত"
+msgid "Persistently save passwords for web connections"
+msgstr ""
#: 01030300.xhp
msgctxt ""
@@ -4613,8 +4629,24 @@ msgctxt ""
"01030300.xhp\n"
"hd_id3901791\n"
"help.text"
+msgid "Protected by a master password (recommended)"
+msgstr ""
+
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"par_id31527711486980\n"
+"help.text"
+msgid "Check to enable all connections' passwords to be protected by a master password."
+msgstr ""
+
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"hd_id141527711343312\n"
+"help.text"
msgid "Master Password"
-msgstr "মাষ্টার গুপ্তসঙ্কেত"
+msgstr ""
#: 01030300.xhp
msgctxt ""
@@ -13733,7 +13765,7 @@ msgctxt ""
"java.xhp\n"
"hd_id3148618\n"
"help.text"
-msgid "Optional (unstable) options"
+msgid "Optional Features"
msgstr ""
#: java.xhp
@@ -13749,7 +13781,7 @@ msgctxt ""
"java.xhp\n"
"par_id3156344\n"
"help.text"
-msgid "It enables features that are not yet complete or contain known bugs. The list of these features is different version by version, or even it can be empty."
+msgid "Enables features that are not yet complete or may contain known bugs. The list of these features is different version by version, or even it can be empty."
msgstr ""
#: java.xhp
@@ -13765,7 +13797,7 @@ msgctxt ""
"java.xhp\n"
"par_id3156345\n"
"help.text"
-msgid "It enables macro recording, so the <link href=\"text/shared/guide/macro_recording.xhp\" name=\"Tools - Macros - Record Macro\"><item type=\"menuitem\">Tools - Macros - Record Macro</item></link> menu item will be available."
+msgid "Enables macro recording. The <link href=\"text/shared/guide/macro_recording.xhp\" name=\"Tools - Macros - Record Macro\"><item type=\"menuitem\">Tools - Macros - Record Macro</item></link> menu item is available."
msgstr ""
#: java.xhp
diff --git a/source/bn/officecfg/registry/data/org/openoffice/Office/UI.po b/source/bn/officecfg/registry/data/org/openoffice/Office/UI.po
index fd5a4243825..c3e68dd1948 100644
--- a/source/bn/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/bn/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-22 13:17+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2016-12-01 12:05+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -26991,8 +26991,8 @@ msgctxt ""
"..WriterCommands.UserInterface.Commands..uno:TextAttributes\n"
"Label\n"
"value.text"
-msgid "Text Attributes"
-msgstr "লেখার বৈশিষ্ট্য"
+msgid "Text Attributes..."
+msgstr ""
#: WriterCommands.xcu
msgctxt ""
diff --git a/source/bn/readlicense_oo/docs.po b/source/bn/readlicense_oo/docs.po
index cd4d03d8f8a..c8109e7a8c4 100644
--- a/source/bn/readlicense_oo/docs.po
+++ b/source/bn/readlicense_oo/docs.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-04-17 15:54+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2016-03-10 18:12+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -117,7 +117,7 @@ msgctxt ""
"readme.xrm\n"
"macxiOSX\n"
"readmeitem.text"
-msgid "MacOSX 10.8 (Mountain Lion) or higher"
+msgid "MacOSX 10.9 (Mavericks) or higher"
msgstr ""
#: readme.xrm
diff --git a/source/bn/sc/messages.po b/source/bn/sc/messages.po
index 1232e8df032..8e83cb0a96f 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-12 14:40+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"
@@ -1885,17 +1885,22 @@ msgid "Nested arrays are not supported."
msgstr "নেস্টেড অ্যারেসমূহ সমর্থিত নয়।"
#: sc/inc/globstr.hrc:390
+msgctxt "STR_ERR_LONG_BAD_ARRAY_CONTENT"
+msgid "Unsupported inline array content."
+msgstr ""
+
+#: sc/inc/globstr.hrc:391
#, fuzzy
msgctxt "STR_UNDO_TEXTTOCOLUMNS"
msgid "Text to Columns"
msgstr "পাঠ্য থেকে কলামে"
-#: sc/inc/globstr.hrc:391
+#: sc/inc/globstr.hrc:392
msgctxt "STR_DOC_UPDATED"
msgid "Your spreadsheet has been updated with changes saved by other users."
msgstr "আপনার স্প্রেডশীট অন্যান্য ব্যবহারকারী দ্বারা সংরক্ষিত পরিবর্তনসহ হালনাগাদ করা হয়েছে।"
-#: sc/inc/globstr.hrc:392
+#: sc/inc/globstr.hrc:393
msgctxt "STR_DOC_WILLBESAVED"
msgid ""
"The spreadsheet must be saved now to activate sharing mode.\n"
@@ -1906,7 +1911,7 @@ msgstr ""
"\n"
"আপনি কি চালিয়ে যেতে চান?"
-#: sc/inc/globstr.hrc:393
+#: sc/inc/globstr.hrc:394
msgctxt "STR_DOC_WILLNOTBESAVED"
msgid ""
"Already resolved merge conflicts will be lost and your changes to the shared spreadsheet will not be saved.\n"
@@ -1917,7 +1922,7 @@ msgstr ""
"\n"
"আপনি কি অব্যাহত রাখতে চান?"
-#: sc/inc/globstr.hrc:394
+#: sc/inc/globstr.hrc:395
msgctxt "STR_DOC_DISABLESHARED"
msgid ""
"Disabling shared mode of a spreadsheet hinders all other users of the shared spreadsheet to merge back their work.\n"
@@ -1928,7 +1933,7 @@ msgstr ""
"\n"
"আপনি কি অব্যাহত রাখতে চান?"
-#: sc/inc/globstr.hrc:395
+#: sc/inc/globstr.hrc:396
msgctxt "STR_DOC_NOLONGERSHARED"
msgid ""
"This spreadsheet is no longer in shared mode.\n"
@@ -1939,7 +1944,7 @@ msgstr ""
"\n"
"আপনার স্প্রেডশীটটি একটি পৃথক ফাইলে সংরক্ষণ করুন এবং আপনার পরিবর্তনসমূহ নিজে হাতে শেয়ারকৃত স্প্রেডশীটে সংযোজন করুন।"
-#: sc/inc/globstr.hrc:396
+#: sc/inc/globstr.hrc:397
msgctxt "STR_FILE_LOCKED_TRY_LATER"
msgid ""
"The shared spreadsheet file is locked due to a merge in progress by user: '%1'\n"
@@ -1950,7 +1955,7 @@ msgstr ""
"\n"
"আবদ্ধ ফাইলের শেয়ারকরণ মোড নিষ্ক্রিয় করা যায় না। পরবর্তীতে আবার চেষ্টা করুন।"
-#: sc/inc/globstr.hrc:397
+#: sc/inc/globstr.hrc:398
msgctxt "STR_FILE_LOCKED_SAVE_LATER"
msgid ""
"The shared spreadsheet file is locked due to a merge in progress by user: '%1'\n"
@@ -1961,151 +1966,151 @@ msgstr ""
"\n"
"আপনার পরিবর্তনসমূহ সংরক্ষণ করতে পরবর্তীতে আবার চেষ্টা করুন।"
-#: sc/inc/globstr.hrc:398
+#: sc/inc/globstr.hrc:399
msgctxt "STR_UNKNOWN_USER"
msgid "Unknown User"
msgstr "অজানা ব্যবহারকারী"
-#: sc/inc/globstr.hrc:399
+#: sc/inc/globstr.hrc:400
msgctxt "STR_SHAPE_AUTOSHAPE"
msgid "AutoShape"
msgstr "স্বয়ংক্রিয় আকার"
-#: sc/inc/globstr.hrc:400
+#: sc/inc/globstr.hrc:401
msgctxt "STR_SHAPE_RECTANGLE"
msgid "Rectangle"
msgstr "আয়তক্ষেত্র"
-#: sc/inc/globstr.hrc:401
+#: sc/inc/globstr.hrc:402
#, fuzzy
msgctxt "STR_SHAPE_LINE"
msgid "Line"
msgstr "জীবন"
-#: sc/inc/globstr.hrc:402
+#: sc/inc/globstr.hrc:403
msgctxt "STR_SHAPE_OVAL"
msgid "Oval"
msgstr "উপবৃত্ত"
-#: sc/inc/globstr.hrc:403
+#: sc/inc/globstr.hrc:404
msgctxt "STR_FORM_BUTTON"
msgid "Button"
msgstr "বোতাম"
-#: sc/inc/globstr.hrc:404
+#: sc/inc/globstr.hrc:405
msgctxt "STR_FORM_CHECKBOX"
msgid "Check Box"
msgstr "চেক বাক্স"
-#: sc/inc/globstr.hrc:405
+#: sc/inc/globstr.hrc:406
msgctxt "STR_FORM_OPTIONBUTTON"
msgid "Option Button"
msgstr "অপশন বোতাম"
-#: sc/inc/globstr.hrc:406
+#: sc/inc/globstr.hrc:407
msgctxt "STR_FORM_LABEL"
msgid "Label"
msgstr "লেবেল"
-#: sc/inc/globstr.hrc:407
+#: sc/inc/globstr.hrc:408
msgctxt "STR_FORM_LISTBOX"
msgid "List Box"
msgstr "তালিকা বাক্স"
-#: sc/inc/globstr.hrc:408
+#: sc/inc/globstr.hrc:409
msgctxt "STR_FORM_GROUPBOX"
msgid "Group Box"
msgstr "গ্রুপ বাক্স"
-#: sc/inc/globstr.hrc:409
+#: sc/inc/globstr.hrc:410
msgctxt "STR_FORM_DROPDOWN"
msgid "Drop Down"
msgstr "নিম্ন প্রসারন"
-#: sc/inc/globstr.hrc:410
+#: sc/inc/globstr.hrc:411
msgctxt "STR_FORM_SPINNER"
msgid "Spinner"
msgstr "স্পিনার"
-#: sc/inc/globstr.hrc:411
+#: sc/inc/globstr.hrc:412
msgctxt "STR_FORM_SCROLLBAR"
msgid "Scroll Bar"
msgstr "স্ক্রল বার"
-#: sc/inc/globstr.hrc:412
+#: sc/inc/globstr.hrc:413
msgctxt "STR_STYLE_FAMILY_CELL"
msgid "Cell Styles"
msgstr "ঘরের শৈলী"
-#: sc/inc/globstr.hrc:413
+#: sc/inc/globstr.hrc:414
msgctxt "STR_STYLE_FAMILY_PAGE"
msgid "Page Styles"
msgstr "পৃষ্ঠার শৈলী"
-#: sc/inc/globstr.hrc:414
+#: sc/inc/globstr.hrc:415
#, fuzzy
msgctxt "STR_ERR_DATAPILOTSOURCE"
msgid "Pivot table source data is invalid."
msgstr "DataPilot সোর্স ডাটা অকার্যকর।"
-#: sc/inc/globstr.hrc:415
+#: sc/inc/globstr.hrc:416
msgctxt "STR_OPTIONS_WARN_SEPARATORS"
msgid "Because the current formula separator settings conflict with the locale, the formula separators have been reset to their default values."
msgstr "লোক্যালের সাথে বর্তমান সূত্র বিভাজক সেটিং কনফ্লিক্ট করার কারণে, সূত্র বিভাজকের মান পুনরায় ডিফল্ট নির্ধারণ করা হয়েছে।"
-#: sc/inc/globstr.hrc:416
+#: sc/inc/globstr.hrc:417
msgctxt "STR_UNDO_INSERT_CURRENT_DATE"
msgid "Insert Current Date"
msgstr "বর্তমান তারিখ সংযোজন"
-#: sc/inc/globstr.hrc:417
+#: sc/inc/globstr.hrc:418
msgctxt "STR_UNDO_INSERT_CURRENT_TIME"
msgid "Insert Current Time"
msgstr "বর্তমান সময় সংযোজন"
-#: sc/inc/globstr.hrc:418
+#: sc/inc/globstr.hrc:419
#, fuzzy
msgctxt "STR_MANAGE_NAMES"
msgid "Manage Names..."
msgstr "পরিসরের নাম"
-#: sc/inc/globstr.hrc:419
+#: sc/inc/globstr.hrc:420
msgctxt "STR_HEADER_NAME"
msgid "Name"
msgstr "নাম"
-#: sc/inc/globstr.hrc:420
+#: sc/inc/globstr.hrc:421
msgctxt "STR_HEADER_RANGE_OR_EXPR"
msgid "Range or formula expression"
msgstr ""
-#: sc/inc/globstr.hrc:421
+#: sc/inc/globstr.hrc:422
msgctxt "STR_HEADER_SCOPE"
msgid "Scope"
msgstr "সুযোগ"
-#: sc/inc/globstr.hrc:422
+#: sc/inc/globstr.hrc:423
msgctxt "STR_MULTI_SELECT"
msgid "(multiple)"
msgstr ""
-#: sc/inc/globstr.hrc:423
+#: sc/inc/globstr.hrc:424
#, fuzzy
msgctxt "STR_GLOBAL_SCOPE"
msgid "Document (Global)"
msgstr "নথি বন্ধ করা হয়েছে"
-#: sc/inc/globstr.hrc:424
+#: sc/inc/globstr.hrc:425
msgctxt "STR_ERR_NAME_EXISTS"
msgid "Invalid name. Already in use for the selected scope."
msgstr ""
-#: sc/inc/globstr.hrc:425
+#: sc/inc/globstr.hrc:426
msgctxt "STR_ERR_NAME_INVALID"
msgid "Invalid name. Only use letters, numbers and underscore."
msgstr ""
-#: sc/inc/globstr.hrc:426
+#: sc/inc/globstr.hrc:427
msgctxt "STR_UNSAVED_EXT_REF"
msgid ""
"This Document contains external references to unsaved documents.\n"
@@ -2113,229 +2118,229 @@ msgid ""
"Do you want to continue?"
msgstr ""
-#: sc/inc/globstr.hrc:427
+#: sc/inc/globstr.hrc:428
msgctxt "STR_CLOSE_WITH_UNSAVED_REFS"
msgid "This Document is referenced by another document and not yet saved. Closing it without saving will result in data loss."
msgstr ""
-#: sc/inc/globstr.hrc:428
+#: sc/inc/globstr.hrc:429
msgctxt "STR_HEADER_RANGE"
msgid "Range"
msgstr "পরিসর"
-#: sc/inc/globstr.hrc:429
+#: sc/inc/globstr.hrc:430
msgctxt "STR_HEADER_COND"
msgid "First Condition"
msgstr ""
-#: sc/inc/globstr.hrc:430
+#: sc/inc/globstr.hrc:431
#, fuzzy
msgctxt "STR_COND_CONDITION"
msgid "Cell value is"
msgstr "ঘরের মান"
-#: sc/inc/globstr.hrc:431
+#: sc/inc/globstr.hrc:432
msgctxt "STR_COND_COLORSCALE"
msgid "ColorScale"
msgstr ""
-#: sc/inc/globstr.hrc:432
+#: sc/inc/globstr.hrc:433
msgctxt "STR_COND_DATABAR"
msgid "DataBar"
msgstr ""
-#: sc/inc/globstr.hrc:433
+#: sc/inc/globstr.hrc:434
msgctxt "STR_COND_ICONSET"
msgid "IconSet"
msgstr ""
-#: sc/inc/globstr.hrc:434
+#: sc/inc/globstr.hrc:435
#, fuzzy
msgctxt "STR_COND_BETWEEN"
msgid "between"
msgstr "মধ্যবর্তী"
-#: sc/inc/globstr.hrc:435
+#: sc/inc/globstr.hrc:436
#, fuzzy
msgctxt "STR_COND_NOTBETWEEN"
msgid "not between"
msgstr "মধ্যবর্তী নয়"
-#: sc/inc/globstr.hrc:436
+#: sc/inc/globstr.hrc:437
msgctxt "STR_COND_UNIQUE"
msgid "unique"
msgstr ""
-#: sc/inc/globstr.hrc:437
+#: sc/inc/globstr.hrc:438
#, fuzzy
msgctxt "STR_COND_DUPLICATE"
msgid "duplicate"
msgstr "অনুরূপ"
-#: sc/inc/globstr.hrc:438
+#: sc/inc/globstr.hrc:439
#, fuzzy
msgctxt "STR_COND_FORMULA"
msgid "Formula is"
msgstr "সূত্র"
-#: sc/inc/globstr.hrc:439
+#: sc/inc/globstr.hrc:440
msgctxt "STR_COND_TOP10"
msgid "Top Elements"
msgstr ""
-#: sc/inc/globstr.hrc:440
+#: sc/inc/globstr.hrc:441
msgctxt "STR_COND_BOTTOM10"
msgid "Bottom Elements"
msgstr ""
-#: sc/inc/globstr.hrc:441
+#: sc/inc/globstr.hrc:442
msgctxt "STR_COND_TOP_PERCENT"
msgid "Top Percent"
msgstr ""
-#: sc/inc/globstr.hrc:442
+#: sc/inc/globstr.hrc:443
msgctxt "STR_COND_DATE"
msgid "Date is"
msgstr ""
-#: sc/inc/globstr.hrc:443
+#: sc/inc/globstr.hrc:444
msgctxt "STR_COND_BOTTOM_PERCENT"
msgid "Bottom Percent"
msgstr ""
-#: sc/inc/globstr.hrc:444
+#: sc/inc/globstr.hrc:445
msgctxt "STR_COND_ABOVE_AVERAGE"
msgid "Above Average"
msgstr ""
-#: sc/inc/globstr.hrc:445
+#: sc/inc/globstr.hrc:446
msgctxt "STR_COND_BELOW_AVERAGE"
msgid "Below Average"
msgstr ""
-#: sc/inc/globstr.hrc:446
+#: sc/inc/globstr.hrc:447
msgctxt "STR_COND_ABOVE_EQUAL_AVERAGE"
msgid "Above or equal Average"
msgstr ""
-#: sc/inc/globstr.hrc:447
+#: sc/inc/globstr.hrc:448
msgctxt "STR_COND_BELOW_EQUAL_AVERAGE"
msgid "Below or equal Average"
msgstr ""
-#: sc/inc/globstr.hrc:448
+#: sc/inc/globstr.hrc:449
#, fuzzy
msgctxt "STR_COND_ERROR"
msgid "an Error code"
msgstr "ত্রুটি কোড"
-#: sc/inc/globstr.hrc:449
+#: sc/inc/globstr.hrc:450
#, fuzzy
msgctxt "STR_COND_NOERROR"
msgid "not an Error code"
msgstr "ত্রুটি কোড"
-#: sc/inc/globstr.hrc:450
+#: sc/inc/globstr.hrc:451
#, fuzzy
msgctxt "STR_COND_BEGINS_WITH"
msgid "Begins with"
msgstr "শুরু হয়"
-#: sc/inc/globstr.hrc:451
+#: sc/inc/globstr.hrc:452
#, fuzzy
msgctxt "STR_COND_ENDS_WITH"
msgid "Ends with"
msgstr "শেষ হয়"
-#: sc/inc/globstr.hrc:452
+#: sc/inc/globstr.hrc:453
#, fuzzy
msgctxt "STR_COND_CONTAINS"
msgid "Contains"
msgstr "আছে"
-#: sc/inc/globstr.hrc:453
+#: sc/inc/globstr.hrc:454
msgctxt "STR_COND_NOT_CONTAINS"
msgid "Not Contains"
msgstr ""
-#: sc/inc/globstr.hrc:454
+#: sc/inc/globstr.hrc:455
#, fuzzy
msgctxt "STR_COND_TODAY"
msgid "today"
msgstr "আজ"
-#: sc/inc/globstr.hrc:455
+#: sc/inc/globstr.hrc:456
#, fuzzy
msgctxt "STR_COND_YESTERDAY"
msgid "yesterday"
msgstr "গতকাল,"
-#: sc/inc/globstr.hrc:456
+#: sc/inc/globstr.hrc:457
msgctxt "STR_COND_TOMORROW"
msgid "tomorrow"
msgstr ""
-#: sc/inc/globstr.hrc:457
+#: sc/inc/globstr.hrc:458
msgctxt "STR_COND_LAST7DAYS"
msgid "in the last 7 days"
msgstr ""
-#: sc/inc/globstr.hrc:458
+#: sc/inc/globstr.hrc:459
msgctxt "STR_COND_THISWEEK"
msgid "this week"
msgstr ""
-#: sc/inc/globstr.hrc:459
+#: sc/inc/globstr.hrc:460
msgctxt "STR_COND_LASTWEEK"
msgid "last week"
msgstr ""
-#: sc/inc/globstr.hrc:460
+#: sc/inc/globstr.hrc:461
msgctxt "STR_COND_NEXTWEEK"
msgid "next week"
msgstr ""
-#: sc/inc/globstr.hrc:461
+#: sc/inc/globstr.hrc:462
msgctxt "STR_COND_THISMONTH"
msgid "this month"
msgstr ""
-#: sc/inc/globstr.hrc:462
+#: sc/inc/globstr.hrc:463
msgctxt "STR_COND_LASTMONTH"
msgid "last month"
msgstr ""
-#: sc/inc/globstr.hrc:463
+#: sc/inc/globstr.hrc:464
msgctxt "STR_COND_NEXTMONTH"
msgid "next month"
msgstr ""
-#: sc/inc/globstr.hrc:464
+#: sc/inc/globstr.hrc:465
msgctxt "STR_COND_THISYEAR"
msgid "this year"
msgstr ""
-#: sc/inc/globstr.hrc:465
+#: sc/inc/globstr.hrc:466
msgctxt "STR_COND_LASTYEAR"
msgid "last year"
msgstr ""
-#: sc/inc/globstr.hrc:466
+#: sc/inc/globstr.hrc:467
msgctxt "STR_COND_NEXTYEAR"
msgid "next year"
msgstr ""
-#: sc/inc/globstr.hrc:467
+#: sc/inc/globstr.hrc:468
msgctxt "STR_COND_AND"
msgid "and"
msgstr "এবং"
-#: sc/inc/globstr.hrc:468
+#: sc/inc/globstr.hrc:469
msgctxt "STR_ERR_CONDFORMAT_PROTECTED"
msgid "Conditional Formats can not be created, deleted or changed in protected sheets."
msgstr ""
-#: sc/inc/globstr.hrc:469
+#: sc/inc/globstr.hrc:470
msgctxt "STR_EDIT_EXISTING_COND_FORMATS"
msgid ""
"The selected cell already contains conditional formatting. You can either edit the existing conditional format or you define a new overlapping conditional format.\n"
@@ -2343,7 +2348,7 @@ msgid ""
" Do you want to edit the existing conditional format?"
msgstr ""
-#: sc/inc/globstr.hrc:470
+#: sc/inc/globstr.hrc:471
msgctxt "STR_QUERY_FORMULA_RECALC_ONLOAD_ODS"
msgid ""
"This document was last saved by an application other than %PRODUCTNAME. Some formula cells may produce different results when recalculated.\n"
@@ -2351,7 +2356,7 @@ msgid ""
"Do you want to recalculate all formula cells in this document now?"
msgstr ""
-#: sc/inc/globstr.hrc:471
+#: sc/inc/globstr.hrc:472
msgctxt "STR_QUERY_FORMULA_RECALC_ONLOAD_XLS"
msgid ""
"This document was last saved by Excel. Some formula cells may produce different results when recalculated.\n"
@@ -2359,84 +2364,84 @@ msgid ""
"Do you want to recalculate all formula cells now?"
msgstr ""
-#: sc/inc/globstr.hrc:472
+#: sc/inc/globstr.hrc:473
msgctxt "STR_NO_INSERT_DELETE_OVER_PIVOT_TABLE"
msgid "You cannot insert or delete cells when the affected range intersects with pivot table."
msgstr ""
-#: sc/inc/globstr.hrc:473
+#: sc/inc/globstr.hrc:474
msgctxt "STR_DPFIELD_GROUP_BY_SECONDS"
msgid "Seconds"
msgstr "সেকেন্ড"
-#: sc/inc/globstr.hrc:474
+#: sc/inc/globstr.hrc:475
msgctxt "STR_DPFIELD_GROUP_BY_MINUTES"
msgid "Minutes"
msgstr "মিনিট"
-#: sc/inc/globstr.hrc:475
+#: sc/inc/globstr.hrc:476
msgctxt "STR_DPFIELD_GROUP_BY_HOURS"
msgid "Hours"
msgstr "ঘন্টা"
-#: sc/inc/globstr.hrc:476
+#: sc/inc/globstr.hrc:477
msgctxt "STR_DPFIELD_GROUP_BY_DAYS"
msgid "Days"
msgstr "দিনগুলো"
-#: sc/inc/globstr.hrc:477
+#: sc/inc/globstr.hrc:478
msgctxt "STR_DPFIELD_GROUP_BY_MONTHS"
msgid "Months"
msgstr "মাস"
-#: sc/inc/globstr.hrc:478
+#: sc/inc/globstr.hrc:479
#, fuzzy
msgctxt "STR_DPFIELD_GROUP_BY_QUARTERS"
msgid "Quarters"
msgstr "ত্রৈমাসিক"
-#: sc/inc/globstr.hrc:479
+#: sc/inc/globstr.hrc:480
#, fuzzy
msgctxt "STR_DPFIELD_GROUP_BY_YEARS"
msgid "Years"
msgstr "বছর"
-#: sc/inc/globstr.hrc:480
+#: sc/inc/globstr.hrc:481
#, fuzzy
msgctxt "STR_INVALIDVAL"
msgid "Invalid target value."
msgstr "অকার্যকর গন্তব্য মান।"
-#: sc/inc/globstr.hrc:481
+#: sc/inc/globstr.hrc:482
#, fuzzy
msgctxt "STR_INVALIDVAR"
msgid "Undefined name for variable cell."
msgstr "চলক ঘরের জন্য অনির্ধারিত নাম।"
-#: sc/inc/globstr.hrc:482
+#: sc/inc/globstr.hrc:483
#, fuzzy
msgctxt "STR_INVALIDFORM"
msgid "Undefined name as formula cell."
msgstr "সূত্র ঘর হিসেবে অনির্ধারিত নাম।"
-#: sc/inc/globstr.hrc:483
+#: sc/inc/globstr.hrc:484
msgctxt "STR_NOFORMULA"
msgid "Formula cell must contain a formula."
msgstr ""
-#: sc/inc/globstr.hrc:484
+#: sc/inc/globstr.hrc:485
#, fuzzy
msgctxt "STR_INVALIDINPUT"
msgid "Invalid input."
msgstr "অকার্যকর ইনপুট।"
-#: sc/inc/globstr.hrc:485
+#: sc/inc/globstr.hrc:486
#, fuzzy
msgctxt "STR_INVALIDCONDITION"
msgid "Invalid condition."
msgstr "অকার্যকর শর্ত।"
-#: sc/inc/globstr.hrc:486
+#: sc/inc/globstr.hrc:487
msgctxt "STR_QUERYREMOVE"
msgid ""
"Should the entry\n"
@@ -2444,138 +2449,138 @@ msgid ""
"be deleted?"
msgstr ""
-#: sc/inc/globstr.hrc:487
+#: sc/inc/globstr.hrc:488
msgctxt "STR_COPYLIST"
msgid "Copy List"
msgstr ""
-#: sc/inc/globstr.hrc:488
+#: sc/inc/globstr.hrc:489
msgctxt "STR_COPYFROM"
msgid "List from"
msgstr ""
-#: sc/inc/globstr.hrc:489
+#: sc/inc/globstr.hrc:490
msgctxt "STR_COPYERR"
msgid "Cells without text have been ignored."
msgstr ""
-#: sc/inc/globstr.hrc:490
+#: sc/inc/globstr.hrc:491
#, c-format
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%s-click to follow hyperlink:"
msgstr ""
-#: sc/inc/globstr.hrc:491
+#: sc/inc/globstr.hrc:492
msgctxt "STR_CLICKHYPERLINK"
msgid "click to open hyperlink:"
msgstr ""
-#: sc/inc/globstr.hrc:492
+#: sc/inc/globstr.hrc:493
msgctxt "STR_PRINT_PREVIEW_NODATA"
msgid "No Data"
msgstr ""
-#: sc/inc/globstr.hrc:493
+#: sc/inc/globstr.hrc:494
msgctxt "STR_PRINT_PREVIEW_EMPTY_RANGE"
msgid "Print Range Empty"
msgstr ""
-#: sc/inc/globstr.hrc:494
+#: sc/inc/globstr.hrc:495
#, fuzzy
msgctxt "STR_UNDO_CONDFORMAT"
msgid "Conditional Format"
msgstr "শর্তাধীন বিন্যাস"
-#: sc/inc/globstr.hrc:495
+#: sc/inc/globstr.hrc:496
#, fuzzy
msgctxt "STR_UNDO_CONDFORMAT_LIST"
msgid "Conditional Formats"
msgstr "শর্তাধীন বিন্যাস"
-#: sc/inc/globstr.hrc:496
+#: sc/inc/globstr.hrc:497
msgctxt "STR_UNDO_FORMULA_TO_VALUE"
msgid "Convert Formula To Value"
msgstr ""
-#: sc/inc/globstr.hrc:497
+#: sc/inc/globstr.hrc:498
msgctxt "STR_UNQUOTED_STRING"
msgid "Strings without quotes are interpreted as column/row labels."
msgstr ""
-#: sc/inc/globstr.hrc:498
+#: sc/inc/globstr.hrc:499
msgctxt "STR_ENTER_VALUE"
msgid "Enter a value!"
msgstr ""
-#: sc/inc/globstr.hrc:499
+#: sc/inc/globstr.hrc:500
msgctxt "STR_TABLE_COUNT"
msgid "Sheet %1 of %2"
msgstr ""
-#: sc/inc/globstr.hrc:500
+#: sc/inc/globstr.hrc:501
msgctxt "STR_FUNCTIONS_FOUND"
msgid "%1 and %2 more"
msgstr ""
-#: sc/inc/globstr.hrc:501
+#: sc/inc/globstr.hrc:502
msgctxt "STR_GENERAL"
msgid "General"
msgstr "সাধারণ"
-#: sc/inc/globstr.hrc:502
+#: sc/inc/globstr.hrc:503
#, fuzzy
msgctxt "STR_NUMBER"
msgid "Number"
msgstr "নম্বর"
-#: sc/inc/globstr.hrc:503
+#: sc/inc/globstr.hrc:504
#, fuzzy
msgctxt "STR_PERCENT"
msgid "Percent"
msgstr "শতকরা"
-#: sc/inc/globstr.hrc:504
+#: sc/inc/globstr.hrc:505
msgctxt "STR_CURRENCY"
msgid "Currency"
msgstr "মুদ্রা"
-#: sc/inc/globstr.hrc:505
+#: sc/inc/globstr.hrc:506
msgctxt "STR_DATE"
msgid "Date"
msgstr "তারিখ"
-#: sc/inc/globstr.hrc:506
+#: sc/inc/globstr.hrc:507
msgctxt "STR_TIME"
msgid "Time"
msgstr "সময়"
-#: sc/inc/globstr.hrc:507
+#: sc/inc/globstr.hrc:508
msgctxt "STR_SCIENTIFIC"
msgid "Scientific"
msgstr ""
-#: sc/inc/globstr.hrc:508
+#: sc/inc/globstr.hrc:509
#, fuzzy
msgctxt "STR_FRACTION"
msgid "Fraction"
msgstr "ফাংশন"
-#: sc/inc/globstr.hrc:509
+#: sc/inc/globstr.hrc:510
msgctxt "STR_BOOLEAN_VALUE"
msgid "Boolean Value"
msgstr ""
-#: sc/inc/globstr.hrc:510
+#: sc/inc/globstr.hrc:511
msgctxt "STR_TEXT"
msgid "Text"
msgstr "পাঠ্য"
-#: sc/inc/globstr.hrc:511
+#: sc/inc/globstr.hrc:512
msgctxt "STR_QUERY_PIVOTTABLE_DELTAB"
msgid "The selected sheet(s) contain source data of related pivot tables that will be lost. Are you sure you want to delete the selected sheet(s)?"
msgstr ""
-#: sc/inc/globstr.hrc:512
+#: sc/inc/globstr.hrc:513
msgctxt "STR_ERR_NAME_INVALID_CELL_REF"
msgid "Invalid name. Reference to a cell, or a range of cells not allowed."
msgstr ""
@@ -10806,8 +10811,8 @@ msgstr "Mode"
#: sc/inc/scfuncs.hrc:3010
msgctxt "SC_OPCODE_T_TEST"
-msgid "Mode specifies the number of distribution tails to return. 1= one-tailed, 2 = two-tailed distribution"
-msgstr "মোড ফেরত পাঠানোর জন্য নিবেশন টেইলের সংখ্যা নির্ধারণ করে। 1=এক-টেইল্ড, 2=দুই-টেইল্ড নিবেশন"
+msgid "Mode specifies the number of distribution tails to return. 1 = one-tailed, 2 = two-tailed distribution"
+msgstr ""
#: sc/inc/scfuncs.hrc:3011
msgctxt "SC_OPCODE_T_TEST"
@@ -10854,8 +10859,8 @@ msgstr "Mode"
#: sc/inc/scfuncs.hrc:3024
msgctxt "SC_OPCODE_T_TEST_MS"
-msgid "Mode specifies the number of distribution tails to return. 1= one-tailed, 2 = two-tailed distribution"
-msgstr "মোড ফেরত পাঠানোর জন্য নিবেশন টেইলের সংখ্যা নির্ধারণ করে। 1=এক-টেইল্ড, 2=দুই-টেইল্ড নিবেশন"
+msgid "Mode specifies the number of distribution tails to return. 1 = one-tailed, 2 = two-tailed distribution"
+msgstr ""
#: sc/inc/scfuncs.hrc:3025
msgctxt "SC_OPCODE_T_TEST_MS"
@@ -18694,23 +18699,23 @@ msgctxt "mergecellsdialog|MergeCellsDialog"
msgid "Merge Cells"
msgstr "ঘর মিলিতকরণ"
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:81
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:84
msgctxt "mergecellsdialog|label"
msgid "Some cells are not empty."
msgstr ""
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:96
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:99
#, fuzzy
msgctxt "mergecellsdialog|move-cells-radio"
msgid "Move the contents of the hidden cells into the first cell"
msgstr "লুকায়িত ঘরসমূহের বিষয়বস্তুসমূহ কি প্রথম ঘরে সরানো হবে?"
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:112
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:115
msgctxt "mergecellsdialog|empty-cells-radio"
msgid "Empty the contents of the hidden cells"
msgstr ""
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:128
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:131
msgctxt "mergecellsdialog|keep-content-radio"
msgid "Keep the contents of the hidden cells"
msgstr ""
diff --git a/source/bn/sd/messages.po b/source/bn/sd/messages.po
index e7e1fbe7a15..223ba31990a 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+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"
@@ -13,177 +13,177 @@ msgstr ""
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-#: sd/inc/DocumentRenderer.hrc:29
+#: sd/inc/DocumentRenderer.hrc:27
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Slides"
msgstr "স্লাইড"
-#: sd/inc/DocumentRenderer.hrc:30
+#: sd/inc/DocumentRenderer.hrc:28
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Handouts"
msgstr "বিলিপত্র"
-#: sd/inc/DocumentRenderer.hrc:31
+#: sd/inc/DocumentRenderer.hrc:29
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Notes"
msgstr "নোট"
-#: sd/inc/DocumentRenderer.hrc:32
+#: sd/inc/DocumentRenderer.hrc:30
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Outline"
msgstr "রূপরেখা"
-#: sd/inc/DocumentRenderer.hrc:37
+#: sd/inc/DocumentRenderer.hrc:35
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "According to layout"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:38
+#: sd/inc/DocumentRenderer.hrc:36
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "1"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:39
+#: sd/inc/DocumentRenderer.hrc:37
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "2"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:40
+#: sd/inc/DocumentRenderer.hrc:38
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "3"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:41
+#: sd/inc/DocumentRenderer.hrc:39
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "4"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:42
+#: sd/inc/DocumentRenderer.hrc:40
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "6"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:43
+#: sd/inc/DocumentRenderer.hrc:41
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "9"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:48
+#: sd/inc/DocumentRenderer.hrc:46
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_ORDER_CHOICES"
msgid "Left to right, then down"
msgstr "বাম থেকে ডানে, এরপর নিচে "
-#: sd/inc/DocumentRenderer.hrc:49
+#: sd/inc/DocumentRenderer.hrc:47
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_ORDER_CHOICES"
msgid "Top to bottom, then right"
msgstr "উপর থেকে নিচে, এরপর ডানে"
-#: sd/inc/DocumentRenderer.hrc:54
+#: sd/inc/DocumentRenderer.hrc:52
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Original colors"
msgstr "আসল রং"
-#: sd/inc/DocumentRenderer.hrc:55
+#: sd/inc/DocumentRenderer.hrc:53
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Grayscale"
msgstr "গ্রেস্কেল"
-#: sd/inc/DocumentRenderer.hrc:56
+#: sd/inc/DocumentRenderer.hrc:54
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Black & white"
msgstr "সাদা ও কালো"
-#: sd/inc/DocumentRenderer.hrc:61
+#: sd/inc/DocumentRenderer.hrc:59
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Original size"
msgstr "আদি আকার"
-#: sd/inc/DocumentRenderer.hrc:62
+#: sd/inc/DocumentRenderer.hrc:60
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Fit to printable page"
msgstr "মুদ্রণযোগ্য পৃষ্ঠায় মানানসই করা হবে"
-#: sd/inc/DocumentRenderer.hrc:63
+#: sd/inc/DocumentRenderer.hrc:61
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Distribute on multiple sheets of paper"
msgstr "একাধিক কাগজের পাতায় ভাগ করে দেয়া হয়"
-#: sd/inc/DocumentRenderer.hrc:64
+#: sd/inc/DocumentRenderer.hrc:62
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Tile sheet of paper with repeated slides"
msgstr "পুনরাবৃত্ত স্লাইডে কাগজের পাতা টালি করা হবে"
-#: sd/inc/DocumentRenderer.hrc:69
+#: sd/inc/DocumentRenderer.hrc:67
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Original size"
msgstr "আদি আকার"
-#: sd/inc/DocumentRenderer.hrc:70
+#: sd/inc/DocumentRenderer.hrc:68
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Fit to printable page"
msgstr "মুদ্রণযোগ্য পৃষ্ঠায় মানানসই করা হবে"
-#: sd/inc/DocumentRenderer.hrc:71
+#: sd/inc/DocumentRenderer.hrc:69
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Distribute on multiple sheets of paper"
msgstr "একাধিক কাগজের পাতায় ভাগ করে দেয়া হয়"
-#: sd/inc/DocumentRenderer.hrc:72
+#: sd/inc/DocumentRenderer.hrc:70
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Tile sheet of paper with repeated pages"
msgstr "পুনরাবৃত্ত স্লাইডে কাগজের পাতা টালি করা হবে"
-#: sd/inc/DocumentRenderer.hrc:77
+#: sd/inc/DocumentRenderer.hrc:75
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "All pages"
msgstr "সব পৃষ্ঠা"
-#: sd/inc/DocumentRenderer.hrc:78
+#: sd/inc/DocumentRenderer.hrc:76
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "Front sides / right pages"
msgstr "সম্মুখ দিক / ডান পৃষ্ঠা"
-#: sd/inc/DocumentRenderer.hrc:79
+#: sd/inc/DocumentRenderer.hrc:77
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "Back sides / left pages"
msgstr "পেছনের দিক / বাম পৃষ্ঠা"
-#: sd/inc/DocumentRenderer.hrc:84
+#: sd/inc/DocumentRenderer.hrc:82
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~All slides"
msgstr "সব স্লাইড (~A)"
-#: sd/inc/DocumentRenderer.hrc:85
+#: sd/inc/DocumentRenderer.hrc:83
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~Slides"
msgstr "স্লাইড"
-#: sd/inc/DocumentRenderer.hrc:86
+#: sd/inc/DocumentRenderer.hrc:84
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Se~lection"
msgstr "নির্বাচন (~l)"
-#: sd/inc/DocumentRenderer.hrc:91
+#: sd/inc/DocumentRenderer.hrc:89
#, fuzzy
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~All pages"
msgstr "সব পৃষ্ঠা (~A)"
-#: sd/inc/DocumentRenderer.hrc:92
+#: sd/inc/DocumentRenderer.hrc:90
#, fuzzy
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Pa~ges"
msgstr "পৃষ্ঠা"
-#: sd/inc/DocumentRenderer.hrc:93
+#: sd/inc/DocumentRenderer.hrc:91
#, fuzzy
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Se~lection"
diff --git a/source/bn/svx/messages.po b/source/bn/svx/messages.po
index 831d6067a5d..e3feccfa36d 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: 2018-05-16 16:53+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+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"
@@ -5573,7 +5573,7 @@ msgstr ""
#: svx/uiconfig/ui/safemodedialog.ui:432
msgctxt "safemodedialog|btn_create_zip"
-msgid "Create Zip Archive from User Profile"
+msgid "Archive User Profile"
msgstr ""
#: svx/uiconfig/ui/safemodedialog.ui:445
@@ -9233,9 +9233,9 @@ msgid "Red"
msgstr "লাল"
#: include/svx/strings.hrc:565
-msgctxt "RID_SVXSTR_COLOR_VIOLET"
-msgid "Violet"
-msgstr "বেগুনী"
+msgctxt "RID_SVXSTR_COLOR_MAGENTA"
+msgid "Magenta"
+msgstr "ম্যাজেন্টা"
#: include/svx/strings.hrc:566
msgctxt "RID_SVXSTR_COLOR_PURPLE"
@@ -9300,8 +9300,8 @@ msgid "Light Red"
msgstr "হালকা লাল"
#: include/svx/strings.hrc:579
-msgctxt "RID_SVXSTR_COLOR_LIGHTVIOLET"
-msgid "Light Violet"
+msgctxt "RID_SVXSTR_COLOR_LIGHTMAGENTA"
+msgid "Light Magenta"
msgstr ""
#: include/svx/strings.hrc:580
@@ -9367,8 +9367,8 @@ msgid "Dark Red"
msgstr "গাঢ় লাল"
#: include/svx/strings.hrc:593
-msgctxt "RID_SVXSTR_COLOR_DARKVIOLET1"
-msgid "Dark Violet"
+msgctxt "RID_SVXSTR_COLOR_DARKMAGENTA"
+msgid "Dark Magenta"
msgstr ""
#: include/svx/strings.hrc:594
@@ -9403,55 +9403,55 @@ msgstr ""
#. Elements of the Tonal color palette
#: include/svx/strings.hrc:601
+msgctxt "RID_SVXSTR_COLOR_VIOLET"
+msgid "Violet"
+msgstr "বেগুনী"
+
+#: include/svx/strings.hrc:602
msgctxt "RID_SVXSTR_COLOR_VIOLET_OUG"
msgid "Violet (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:602
+#: include/svx/strings.hrc:603
msgctxt "RID_SVXSTR_COLOR_BLUE_OUG"
msgid "Blue (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:603
+#: include/svx/strings.hrc:604
msgctxt "RID_SVXSTR_COLOR_AZURE_OUG"
msgid "Azure (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:604
+#: include/svx/strings.hrc:605
msgctxt "RID_SVXSTR_COLOR_SPRINGGREEN_OUG"
msgid "Spring Green (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:605
+#: include/svx/strings.hrc:606
msgctxt "RID_SVXSTR_COLOR_GREEN_OUG"
msgid "Green (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:606
+#: include/svx/strings.hrc:607
msgctxt "RID_SVXSTR_COLOR_CHARTREUSEGREEN_OUG"
msgid "Chartreuse Green (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:607
+#: include/svx/strings.hrc:608
msgctxt "RID_SVXSTR_COLOR_ORANGE_OUG"
msgid "Orange (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:608
+#: include/svx/strings.hrc:609
msgctxt "RID_SVXSTR_COLOR_RED_OUG"
msgid "Red (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:609
+#: include/svx/strings.hrc:610
msgctxt "RID_SVXSTR_COLOR_ROSE_OUG"
msgid "Rose (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:610
-msgctxt "RID_SVXSTR_COLOR_MAGENTA"
-msgid "Magenta"
-msgstr "ম্যাজেন্টা"
-
#: include/svx/strings.hrc:611
msgctxt "RID_SVXSTR_COLOR_AZURE"
msgid "Azure"
@@ -12622,13 +12622,13 @@ msgstr "ডান নির্দেশিত তীর বুলেট"
#: include/svx/strings.hrc:1273
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_6"
-msgid "Check mark bullets"
-msgstr "টিক চিহ্নিত বুলেট"
+msgid "Cross mark bullets"
+msgstr ""
#: include/svx/strings.hrc:1274
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_7"
-msgid "Tick mark bullets"
-msgstr "টিক চিহ্নিত বুলেট"
+msgid "Check mark bullets"
+msgstr ""
#: include/svx/strings.hrc:1275
#, fuzzy
diff --git a/source/bn/sw/messages.po b/source/bn/sw/messages.po
index bb8fa258de5..a18b3b07686 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: 2018-05-22 13:17+0200\n"
+"POT-Creation-Date: 2018-06-12 14:41+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"
@@ -1233,13 +1233,13 @@ msgstr "উদ্ধৃতি"
#: sw/inc/strings.hrc:172
msgctxt "STR_POOLCOLL_TOX_ILLUSH"
-msgid "Illustration Index Heading"
-msgstr "চিত্র সূচির শিরোনাম"
+msgid "Figure Index Heading"
+msgstr ""
#: sw/inc/strings.hrc:173
msgctxt "STR_POOLCOLL_TOX_ILLUS1"
-msgid "Illustration Index 1"
-msgstr "চিত্র সূচি ১"
+msgid "Figure Index 1"
+msgstr ""
#: sw/inc/strings.hrc:174
#, fuzzy
@@ -3733,10 +3733,9 @@ msgid "Table of Objects"
msgstr ""
#: sw/inc/strings.hrc:672
-#, fuzzy
msgctxt "STR_TOX_ILL"
-msgid "Illustration Index"
-msgstr "চিত্র সূচি ১"
+msgid "Table of Figures"
+msgstr ""
#: sw/inc/strings.hrc:673
#, c-format
@@ -9752,81 +9751,81 @@ msgctxt "footnotepage|label5"
msgid "Continuation Notice"
msgstr "পরবর্তীতে অংশের ঘোষণা"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:49
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:55
#, fuzzy
msgctxt "footnotesendnotestabpage|ftnntnum"
msgid "_Restart numbering"
msgstr "সংখ্যায়ন পুনরায় শুরু"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:91
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:93
#, fuzzy
msgctxt "footnotesendnotestabpage|ftnoffset_label"
msgid "_Start at:"
msgstr "যেখান থেকে শুরু হবে"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:112
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:111
msgctxt "footnotesendnotestabpage|ftnntnumfmt"
msgid "Custom _format"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:155
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:150
#, fuzzy
msgctxt "footnotesendnotestabpage|ftnsuffix_label"
msgid "Aft_er:"
msgstr "পরে"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:199
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:188
#, fuzzy
msgctxt "footnotesendnotestabpage|ftnprefix_label"
msgid "Be_fore:"
msgstr "পূর্বে"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:228
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:212
msgctxt "footnotesendnotestabpage|ftnntattextend"
msgid "Collec_t at end of text"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:252
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:234
#, fuzzy
msgctxt "footnotesendnotestabpage|label1"
msgid "Footnotes"
msgstr "পাদটীকা"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:289
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:271
msgctxt "footnotesendnotestabpage|endntattextend"
msgid "C_ollect at end of section"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:315
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:295
#, fuzzy
msgctxt "footnotesendnotestabpage|endntnum"
msgid "_Restart numbering"
msgstr "সংখ্যায়ন পুনরায় শুরু"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:357
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:333
#, fuzzy
msgctxt "footnotesendnotestabpage|endoffset_label"
msgid "_Start at:"
msgstr "যেখান থেকে শুরু হবে"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:378
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:351
msgctxt "footnotesendnotestabpage|endntnumfmt"
msgid "_Custom format"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:421
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:390
#, fuzzy
msgctxt "footnotesendnotestabpage|endsuffix_label"
msgid "Aft_er:"
msgstr "পরে"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:465
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:428
#, fuzzy
msgctxt "footnotesendnotestabpage|endprefix_label"
msgid "Be_fore:"
msgstr "পূর্বে"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:500
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:458
#, fuzzy
msgctxt "footnotesendnotestabpage|label2"
msgid "Endnotes"
@@ -9858,29 +9857,29 @@ msgctxt "formatsectiondialog|notes"
msgid "Footnotes/Endnotes"
msgstr "পাদটীকা/প্রান্তটীকা... (~.)"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:63
+#: sw/uiconfig/swriter/ui/formattablepage.ui:77
#, fuzzy
msgctxt "formattablepage|nameft"
msgid "_Name"
msgstr "নাম"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:79
+#: sw/uiconfig/swriter/ui/formattablepage.ui:91
#, fuzzy
msgctxt "formattablepage|widthft"
msgid "W_idth"
msgstr "প্রস্থ"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:110
+#: sw/uiconfig/swriter/ui/formattablepage.ui:120
msgctxt "formattablepage|relwidth"
msgid "Relati_ve"
msgstr ""
-#: sw/uiconfig/swriter/ui/formattablepage.ui:155
+#: sw/uiconfig/swriter/ui/formattablepage.ui:160
msgctxt "formattablepage|label45"
msgid "Properties"
msgstr "বৈশিষ্ট্য"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:194
+#: sw/uiconfig/swriter/ui/formattablepage.ui:195
#, fuzzy
msgctxt "formattablepage|leftft"
msgid "Lef_t"
@@ -9892,72 +9891,72 @@ msgctxt "formattablepage|rightft"
msgid "Ri_ght"
msgstr "ডান"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:228
+#: sw/uiconfig/swriter/ui/formattablepage.ui:226
#, fuzzy
msgctxt "formattablepage|aboveft"
msgid "_Above"
msgstr "উপরে"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:245
+#: sw/uiconfig/swriter/ui/formattablepage.ui:241
#, fuzzy
msgctxt "formattablepage|belowft"
msgid "_Below"
msgstr "নিচে"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:320
+#: sw/uiconfig/swriter/ui/formattablepage.ui:311
#, fuzzy
msgctxt "formattablepage|label46"
msgid "Spacing"
msgstr "ফাঁকা"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:362
+#: sw/uiconfig/swriter/ui/formattablepage.ui:349
#, fuzzy
msgctxt "formattablepage|full"
msgid "A_utomatic"
msgstr "স্বয়ংক্রিয়"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:380
+#: sw/uiconfig/swriter/ui/formattablepage.ui:365
#, fuzzy
msgctxt "formattablepage|left"
msgid "_Left"
msgstr "বাম"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:398
+#: sw/uiconfig/swriter/ui/formattablepage.ui:381
#, fuzzy
msgctxt "formattablepage|fromleft"
msgid "_From left"
msgstr "বাঁদিক থেকে"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:416
+#: sw/uiconfig/swriter/ui/formattablepage.ui:397
#, fuzzy
msgctxt "formattablepage|right"
msgid "R_ight"
msgstr "ডান"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:435
+#: sw/uiconfig/swriter/ui/formattablepage.ui:413
#, fuzzy
msgctxt "formattablepage|center"
msgid "_Center"
msgstr "কেন্দ্র"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:453
+#: sw/uiconfig/swriter/ui/formattablepage.ui:429
#, fuzzy
msgctxt "formattablepage|free"
msgid "_Manual"
msgstr "স্বনির্বাচিত"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:478
+#: sw/uiconfig/swriter/ui/formattablepage.ui:452
msgctxt "formattablepage|label43"
msgid "Alignment"
msgstr "প্রান্তিককরণ"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:522
+#: sw/uiconfig/swriter/ui/formattablepage.ui:491
#, fuzzy
msgctxt "formattablepage|label53"
msgid "Text _direction"
msgstr "পাঠ্য দিকবিন্যাস"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:553
+#: sw/uiconfig/swriter/ui/formattablepage.ui:519
#, fuzzy
msgctxt "formattablepage|label44"
msgid "Properties "
@@ -10345,24 +10344,29 @@ msgctxt "headerfootermenu|insert_pagenumber"
msgid "Insert Page Number"
msgstr ""
-#: sw/uiconfig/swriter/ui/indentpage.ui:52
+#: sw/uiconfig/swriter/ui/headerfootermenu.ui:42
+msgctxt "headerfootermenu|insert_pagecount"
+msgid "Insert Page Count"
+msgstr ""
+
+#: sw/uiconfig/swriter/ui/indentpage.ui:57
#, fuzzy
msgctxt "indentpage|label1"
msgid "_Before section"
msgstr "বিভাগের পূর্বে"
-#: sw/uiconfig/swriter/ui/indentpage.ui:67
+#: sw/uiconfig/swriter/ui/indentpage.ui:71
#, fuzzy
msgctxt "indentpage|label3"
msgid "_After section"
msgstr "বিভাগের পরে"
-#: sw/uiconfig/swriter/ui/indentpage.ui:113
+#: sw/uiconfig/swriter/ui/indentpage.ui:115
msgctxt "indentpage|label2"
msgid "Indent"
msgstr "ইন্ডেন্ট"
-#: sw/uiconfig/swriter/ui/indentpage.ui:142
+#: sw/uiconfig/swriter/ui/indentpage.ui:155
msgctxt "indentpage|preview-atkobject"
msgid "Example"
msgstr "উদাহরণ"
@@ -14182,7 +14186,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:68
msgctxt "optcompatpage|format"
-msgid "MS Word-compatible trailing blanks"
+msgid "Word-compatible trailing blanks"
msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:69
@@ -14192,7 +14196,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:70
msgctxt "optcompatpage|format"
-msgid "A database field (e.g., MailMerge) with empty value hides its paragraph"
+msgid "Hide paragraphs of database fields (e.g., mail merge) with an empty value"
msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:71
@@ -17109,137 +17113,137 @@ msgctxt "tableproperties|background"
msgid "Background"
msgstr "পটভূমি"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:25
-msgctxt "tabletextflowpage|liststore1"
-msgid "Horizontal"
-msgstr "অনুভূমিক"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:29
-msgctxt "tabletextflowpage|liststore1"
-msgid "Vertical"
-msgstr "উল্লম্ব"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:33
-#, fuzzy
-msgctxt "tabletextflowpage|liststore1"
-msgid "Use superordinate object settings"
-msgstr "উর্ধঃস্তন বস্তুর সেটিং ব্যবহার"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:47
-#, fuzzy
-msgctxt "tabletextflowpage|liststore2"
-msgid "Top"
-msgstr "উপরে"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:51
-msgctxt "tabletextflowpage|liststore2"
-msgid "Centered"
-msgstr "কেন্দ্রস্থিত"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:55
-#, fuzzy
-msgctxt "tabletextflowpage|liststore2"
-msgid "Bottom"
-msgstr "নিচে"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:97
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:53
#, fuzzy
msgctxt "tabletextflowpage|break"
msgid "_Break"
msgstr "আলাদা করা(~B)"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:112
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:68
#, fuzzy
msgctxt "tabletextflowpage|page"
msgid "_Page"
msgstr "পৃষ্ঠা"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:132
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:87
#, fuzzy
msgctxt "tabletextflowpage|column"
msgid "Col_umn"
msgstr "কলাম"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:151
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:106
#, fuzzy
msgctxt "tabletextflowpage|before"
msgid "Be_fore"
msgstr "পূর্বে"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:171
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:125
#, fuzzy
msgctxt "tabletextflowpage|after"
msgid "_After"
msgstr "পরে"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:203
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:158
#, fuzzy
msgctxt "tabletextflowpage|pagestyle"
msgid "With Page St_yle"
msgstr "পৃষ্ঠা শৈলী সম্পাদনা"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:224
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:177
#, fuzzy
msgctxt "tabletextflowpage|pagenoft"
msgid "Page _number"
msgstr "পৃষ্ঠা নম্বর"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:257
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:213
#, fuzzy
msgctxt "tabletextflowpage|pagestylelb-atkobject"
msgid "With Page Style"
msgstr "পৃষ্ঠা শৈলী সম্পাদনা"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:274
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:230
msgctxt "tabletextflowpage|split"
msgid "Allow _table to split across pages and columns"
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:289
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:245
#, fuzzy
msgctxt "tabletextflowpage|splitrow"
msgid "Allow row to break a_cross pages and columns"
msgstr "সারি পরবর্তী পৃষ্ঠায় এবং কলামে বিস্তার করতে পারবে "
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:306
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:262
#, fuzzy
msgctxt "tabletextflowpage|keep"
msgid "_Keep with next paragraph"
msgstr "পরবর্তী অনুচ্ছেদের সাথে রাখা হবে"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:328
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:284
msgctxt "tabletextflowpage|label40"
msgid "Text _orientation"
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:361
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:298
+msgctxt "tabletextflowpage|liststore1"
+msgid "Horizontal"
+msgstr "অনুভূমিক"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:299
+msgctxt "tabletextflowpage|liststore1"
+msgid "Vertical"
+msgstr "উল্লম্ব"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:300
+#, fuzzy
+msgctxt "tabletextflowpage|liststore1"
+msgid "Use superordinate object settings"
+msgstr "উর্ধঃস্তন বস্তুর সেটিং ব্যবহার"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:321
#, fuzzy
msgctxt "tabletextflowpage|headline"
msgid "R_epeat heading"
msgstr "শিরোনাম পুনরাবৃত্তি"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:383
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:343
msgctxt "tabletextflowpage|label38"
msgid "The first "
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:396
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:356
#, fuzzy
msgctxt "tabletextflowpage|label39"
msgid "rows"
msgstr "সারি"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:434
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:395
msgctxt "tabletextflowpage|label35"
msgid "Text Flow"
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:467
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:428
msgctxt "tabletextflowpage|label41"
msgid "_Vertical alignment"
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:495
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:442
+#, fuzzy
+msgctxt "tabletextflowpage|liststore2"
+msgid "Top"
+msgstr "উপরে"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:443
+msgctxt "tabletextflowpage|liststore2"
+msgid "Centered"
+msgstr "কেন্দ্রস্থিত"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:444
+#, fuzzy
+msgctxt "tabletextflowpage|liststore2"
+msgid "Bottom"
+msgstr "নিচে"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:460
msgctxt "tabletextflowpage|label36"
msgid "Alignment"
msgstr "প্রান্তিককরণ"
@@ -18069,10 +18073,9 @@ msgid "Alphabetical Index"
msgstr ""
#: sw/uiconfig/swriter/ui/tocindexpage.ui:58
-#, fuzzy
msgctxt "tocindexpage|liststore1"
-msgid "Illustration Index"
-msgstr "চিত্র সূচি ১"
+msgid "Table of Figures"
+msgstr ""
#: sw/uiconfig/swriter/ui/tocindexpage.ui:62
msgctxt "tocindexpage|liststore1"
diff --git a/source/bn/writerperfect/messages.po b/source/bn/writerperfect/messages.po
index 7387e9c071c..07a5bff6bb9 100644
--- a/source/bn/writerperfect/messages.po
+++ b/source/bn/writerperfect/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-16 16:54+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+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"
@@ -65,99 +65,99 @@ msgctxt "exportepub|generalft"
msgid "General"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:122
+#: writerperfect/uiconfig/ui/exportepub.ui:121
#, fuzzy
msgctxt "exportepub|versionft"
msgid "Version:"
msgstr "সংস্করণ: (~V)"
-#: writerperfect/uiconfig/ui/exportepub.ui:139
+#: writerperfect/uiconfig/ui/exportepub.ui:138
msgctxt "exportepub|epub3"
msgid "EPUB 3.0"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:140
+#: writerperfect/uiconfig/ui/exportepub.ui:139
msgctxt "exportepub|epub2"
msgid "EPUB 2.0"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:175
+#: writerperfect/uiconfig/ui/exportepub.ui:174
msgctxt "exportepub|splitft"
msgid "Split method:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:192
+#: writerperfect/uiconfig/ui/exportepub.ui:191
#, fuzzy
msgctxt "exportepub|splitpage"
msgid "Page break"
msgstr "পৃষ্ঠাবিভাজক"
-#: writerperfect/uiconfig/ui/exportepub.ui:193
+#: writerperfect/uiconfig/ui/exportepub.ui:192
msgctxt "exportepub|splitheading"
msgid "Heading"
msgstr "শিরোনাম"
-#: writerperfect/uiconfig/ui/exportepub.ui:228
+#: writerperfect/uiconfig/ui/exportepub.ui:227
msgctxt "exportepub|layoutft"
msgid "Layout method:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:245
+#: writerperfect/uiconfig/ui/exportepub.ui:244
msgctxt "exportepub|layoutreflowable"
msgid "Reflowable"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:246
+#: writerperfect/uiconfig/ui/exportepub.ui:245
msgctxt "exportepub|layoutfixed"
msgid "Fixed"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:281
+#: writerperfect/uiconfig/ui/exportepub.ui:280
msgctxt "exportepub|coverimageft"
msgid "Custom cover image:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:311
+#: writerperfect/uiconfig/ui/exportepub.ui:310
msgctxt "exportepub|coverbutton"
msgid "Browse..."
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:355
+#: writerperfect/uiconfig/ui/exportepub.ui:354
msgctxt "exportepub|mediadirft"
msgid "Custom media directory:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:385
+#: writerperfect/uiconfig/ui/exportepub.ui:384
msgctxt "exportepub|mediabutton"
msgid "Browse..."
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:429
+#: writerperfect/uiconfig/ui/exportepub.ui:428
msgctxt "exportepub|metadataft"
msgid "Metadata"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:470
+#: writerperfect/uiconfig/ui/exportepub.ui:468
msgctxt "exportepub|identifierft"
msgid "Identifier:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:485
+#: writerperfect/uiconfig/ui/exportepub.ui:483
msgctxt "exportepub|titleft"
msgid "Title:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:511
+#: writerperfect/uiconfig/ui/exportepub.ui:509
msgctxt "exportepub|authorft"
msgid "Author:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:537
+#: writerperfect/uiconfig/ui/exportepub.ui:535
msgctxt "exportepub|languageft"
msgid "Language:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:563
+#: writerperfect/uiconfig/ui/exportepub.ui:561
msgctxt "exportepub|dateft"
msgid "Date:"
msgstr ""
diff --git a/source/bo/cui/messages.po b/source/bo/cui/messages.po
index abe874bad29..e9a8e79de65 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+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"
@@ -10455,108 +10455,108 @@ msgctxt "positionsizedialog|PositionAndSizeDialog"
msgid "Position and Size"
msgstr "གནས་ས་དང་ཆེ་ཆུང་།(~Z)..."
-#: cui/uiconfig/ui/positionsizedialog.ui:107
+#: cui/uiconfig/ui/positionsizedialog.ui:136
#, fuzzy
msgctxt "positionsizedialog|RID_SVXPAGE_POSITION_SIZE"
msgid "Position and Size"
msgstr "གནས་ས་དང་ཆེ་ཆུང་།(~Z)..."
-#: cui/uiconfig/ui/positionsizedialog.ui:129
+#: cui/uiconfig/ui/positionsizedialog.ui:182
#, fuzzy
msgctxt "positionsizedialog|RID_SVXPAGE_SWPOSSIZE"
msgid "Position and Size"
msgstr "གནས་ས་དང་ཆེ་ཆུང་།(~Z)..."
-#: cui/uiconfig/ui/positionsizedialog.ui:152
+#: cui/uiconfig/ui/positionsizedialog.ui:229
#, fuzzy
msgctxt "positionsizedialog|RID_SVXPAGE_ANGLE"
msgid "Rotation"
msgstr "འདྲེན་སྤྱོད་ཡི་གེ"
-#: cui/uiconfig/ui/positionsizedialog.ui:175
+#: cui/uiconfig/ui/positionsizedialog.ui:276
msgctxt "positionsizedialog|RID_SVXPAGE_SLANT"
msgid "Slant & Corner Radius"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:40
+#: cui/uiconfig/ui/possizetabpage.ui:61
#, fuzzy
msgctxt "possizetabpage|FT_POS_X"
msgid "Position _X:"
msgstr "གནས་ས།"
-#: cui/uiconfig/ui/possizetabpage.ui:56
+#: cui/uiconfig/ui/possizetabpage.ui:75
#, fuzzy
msgctxt "possizetabpage|FT_POS_Y"
msgid "Position _Y:"
msgstr "གནས་ས།"
-#: cui/uiconfig/ui/possizetabpage.ui:110
+#: cui/uiconfig/ui/possizetabpage.ui:128
msgctxt "possizetabpage|FT_POSREFERENCE"
msgid "_Base point:"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:148
+#: cui/uiconfig/ui/possizetabpage.ui:182
msgctxt "possizetabpage|label1"
msgid "Position"
msgstr "གནས་ས།"
-#: cui/uiconfig/ui/possizetabpage.ui:190
+#: cui/uiconfig/ui/possizetabpage.ui:224
#, fuzzy
msgctxt "possizetabpage|FT_WIDTH"
msgid "Wi_dth:"
msgstr "ཞེང་ཚད།"
-#: cui/uiconfig/ui/possizetabpage.ui:206
+#: cui/uiconfig/ui/possizetabpage.ui:238
#, fuzzy
msgctxt "possizetabpage|FT_HEIGHT"
msgid "H_eight:"
msgstr "མཐོ་ཚད།"
-#: cui/uiconfig/ui/possizetabpage.ui:247
+#: cui/uiconfig/ui/possizetabpage.ui:276
#, fuzzy
msgctxt "possizetabpage|CBX_SCALE"
msgid "_Keep ratio"
msgstr "འཕྲེད་གཞུང་གི་བསྡུར་ཚད་གཏན་བཀག"
-#: cui/uiconfig/ui/possizetabpage.ui:279
+#: cui/uiconfig/ui/possizetabpage.ui:307
msgctxt "possizetabpage|FT_SIZEREFERENCE"
msgid "Base _point:"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:317
+#: cui/uiconfig/ui/possizetabpage.ui:361
msgctxt "possizetabpage|label2"
msgid "Size"
msgstr "ཆེ་ཆུང་།"
-#: cui/uiconfig/ui/possizetabpage.ui:356
+#: cui/uiconfig/ui/possizetabpage.ui:401
#, fuzzy
msgctxt "possizetabpage|TSB_POSPROTECT"
msgid "Positio_n"
msgstr "གནས་ས།"
-#: cui/uiconfig/ui/possizetabpage.ui:373
+#: cui/uiconfig/ui/possizetabpage.ui:418
#, fuzzy
msgctxt "possizetabpage|TSB_SIZEPROTECT"
msgid "_Size"
msgstr "ཆེ་ཆུང་།"
-#: cui/uiconfig/ui/possizetabpage.ui:397
+#: cui/uiconfig/ui/possizetabpage.ui:441
#, fuzzy
msgctxt "possizetabpage|label3"
msgid "Protect"
msgstr "སྲུང་སྐྱོབ།(~P)"
-#: cui/uiconfig/ui/possizetabpage.ui:430
+#: cui/uiconfig/ui/possizetabpage.ui:475
msgctxt "possizetabpage|TSB_AUTOGROW_WIDTH"
msgid "_Fit width to text"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:447
+#: cui/uiconfig/ui/possizetabpage.ui:492
msgctxt "possizetabpage|TSB_AUTOGROW_HEIGHT"
msgid "Fit _height to text"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:471
+#: cui/uiconfig/ui/possizetabpage.ui:515
msgctxt "possizetabpage|label4"
msgid "Adapt"
msgstr ""
@@ -10769,50 +10769,50 @@ msgctxt "recordnumberdialog|label2"
msgid "go to record"
msgstr ""
-#: cui/uiconfig/ui/rotationtabpage.ui:52
+#: cui/uiconfig/ui/rotationtabpage.ui:56
#, fuzzy
msgctxt "rotationtabpage|FT_POS_X"
msgid "Position _X:"
msgstr "གནས་ས།"
-#: cui/uiconfig/ui/rotationtabpage.ui:66
+#: cui/uiconfig/ui/rotationtabpage.ui:70
#, fuzzy
msgctxt "rotationtabpage|FT_POS_Y"
msgid "Position _Y:"
msgstr "གནས་ས།"
-#: cui/uiconfig/ui/rotationtabpage.ui:116
+#: cui/uiconfig/ui/rotationtabpage.ui:123
msgctxt "rotationtabpage|FT_POSPRESETS"
msgid "_Default settings:"
msgstr ""
-#: cui/uiconfig/ui/rotationtabpage.ui:130
+#: cui/uiconfig/ui/rotationtabpage.ui:151
msgctxt "rotationtabpage|CTL_RECT|tooltip_text"
msgid "Rotation point"
msgstr ""
-#: cui/uiconfig/ui/rotationtabpage.ui:155
+#: cui/uiconfig/ui/rotationtabpage.ui:178
msgctxt "rotationtabpage|label1"
msgid "Pivot Point"
msgstr ""
-#: cui/uiconfig/ui/rotationtabpage.ui:197
+#: cui/uiconfig/ui/rotationtabpage.ui:220
msgctxt "rotationtabpage|FT_ANGLE"
msgid "_Angle:"
msgstr ""
-#: cui/uiconfig/ui/rotationtabpage.ui:238
+#: cui/uiconfig/ui/rotationtabpage.ui:263
msgctxt "rotationtabpage|FT_ANGLEPRESETS"
msgid "Default _settings:"
msgstr ""
-#: cui/uiconfig/ui/rotationtabpage.ui:252
+#: cui/uiconfig/ui/rotationtabpage.ui:287
#, fuzzy
msgctxt "rotationtabpage|CTL_ANGLE|tooltip_text"
msgid "Rotation Angle"
msgstr "འཁྱིལ་སྐོར་ཟུར་ཚད།"
-#: cui/uiconfig/ui/rotationtabpage.ui:277
+#: cui/uiconfig/ui/rotationtabpage.ui:314
#, fuzzy
msgctxt "rotationtabpage|label2"
msgid "Rotation Angle"
@@ -11206,55 +11206,55 @@ msgctxt "similaritysearchdialog|relaxbox"
msgid "_Combine"
msgstr "ཟླ་སྒྲིལ།(~I)"
-#: cui/uiconfig/ui/slantcornertabpage.ui:50
+#: cui/uiconfig/ui/slantcornertabpage.ui:70
msgctxt "slantcornertabpage|label5"
msgid "_X:"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:88
+#: cui/uiconfig/ui/slantcornertabpage.ui:110
msgctxt "slantcornertabpage|label6"
msgid "_Y:"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:125
+#: cui/uiconfig/ui/slantcornertabpage.ui:149
msgctxt "slantcornertabpage|label3"
msgid "Control Point 1"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:159
+#: cui/uiconfig/ui/slantcornertabpage.ui:183
#, fuzzy
msgctxt "slantcornertabpage|FT_RADIUS"
msgid "_Radius:"
msgstr "ཚངས་ཕྱེད།"
-#: cui/uiconfig/ui/slantcornertabpage.ui:189
+#: cui/uiconfig/ui/slantcornertabpage.ui:214
#, fuzzy
msgctxt "slantcornertabpage|label1"
msgid "Corner Radius"
msgstr "ཟུར་ཚད་ཕྱེད་ཀ"
-#: cui/uiconfig/ui/slantcornertabpage.ui:223
+#: cui/uiconfig/ui/slantcornertabpage.ui:248
msgctxt "slantcornertabpage|FT_ANGLE"
msgid "_Angle:"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:253
+#: cui/uiconfig/ui/slantcornertabpage.ui:279
#, fuzzy
msgctxt "slantcornertabpage|label2"
msgid "Slant"
msgstr "ཡོ་བ།"
-#: cui/uiconfig/ui/slantcornertabpage.ui:294
+#: cui/uiconfig/ui/slantcornertabpage.ui:320
msgctxt "slantcornertabpage|label4"
msgid "_X:"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:332
+#: cui/uiconfig/ui/slantcornertabpage.ui:360
msgctxt "slantcornertabpage|label7"
msgid "_Y:"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:369
+#: cui/uiconfig/ui/slantcornertabpage.ui:399
msgctxt "slantcornertabpage|label8"
msgid "Control Point 2"
msgstr ""
@@ -11553,124 +11553,124 @@ msgctxt "storedwebconnectiondialog|change"
msgid "_Change Password..."
msgstr "གསང་ཨང་བཟོ་བཅོས།(~P)..."
-#: cui/uiconfig/ui/swpossizepage.ui:74
+#: cui/uiconfig/ui/swpossizepage.ui:85
#, fuzzy
msgctxt "swpossizepage|widthft"
msgid "_Width:"
msgstr "ཞེང་ཚད།"
-#: cui/uiconfig/ui/swpossizepage.ui:111
+#: cui/uiconfig/ui/swpossizepage.ui:123
#, fuzzy
msgctxt "swpossizepage|heightft"
msgid "H_eight:"
msgstr "མཐོ་ཚད།"
-#: cui/uiconfig/ui/swpossizepage.ui:128
+#: cui/uiconfig/ui/swpossizepage.ui:141
#, fuzzy
msgctxt "swpossizepage|ratio"
msgid "_Keep ratio"
msgstr "འཕྲེད་གཞུང་གི་བསྡུར་ཚད་གཏན་བཀག"
-#: cui/uiconfig/ui/swpossizepage.ui:149
+#: cui/uiconfig/ui/swpossizepage.ui:162
msgctxt "swpossizepage|label2"
msgid "Size"
msgstr "ཆེ་ཆུང་།"
-#: cui/uiconfig/ui/swpossizepage.ui:205
+#: cui/uiconfig/ui/swpossizepage.ui:218
#, fuzzy
msgctxt "swpossizepage|topage"
msgid "To _page"
msgstr "ཤོག་ངོས་ལ་སྒྱུར།"
-#: cui/uiconfig/ui/swpossizepage.ui:222
+#: cui/uiconfig/ui/swpossizepage.ui:234
#, fuzzy
msgctxt "swpossizepage|topara"
msgid "To paragrap_h"
msgstr "དུམ་མཚམས་སྟེང་ལ།(~P)"
-#: cui/uiconfig/ui/swpossizepage.ui:238
+#: cui/uiconfig/ui/swpossizepage.ui:250
#, fuzzy
msgctxt "swpossizepage|tochar"
msgid "To cha_racter"
msgstr "ཡིག་རྟགས།"
-#: cui/uiconfig/ui/swpossizepage.ui:254
+#: cui/uiconfig/ui/swpossizepage.ui:266
#, fuzzy
msgctxt "swpossizepage|aschar"
msgid "_As character"
msgstr "ཡིག་རྟགས།"
-#: cui/uiconfig/ui/swpossizepage.ui:270
+#: cui/uiconfig/ui/swpossizepage.ui:282
#, fuzzy
msgctxt "swpossizepage|toframe"
msgid "To _frame"
msgstr "སྒྲོམ་སྟེང་ལ།(~F)"
-#: cui/uiconfig/ui/swpossizepage.ui:292
+#: cui/uiconfig/ui/swpossizepage.ui:304
msgctxt "swpossizepage|label1"
msgid "Anchor"
msgstr "འཆིང་བརྒྱབ།"
-#: cui/uiconfig/ui/swpossizepage.ui:333
+#: cui/uiconfig/ui/swpossizepage.ui:344
#, fuzzy
msgctxt "swpossizepage|horiposft"
msgid "Hori_zontal:"
msgstr "ཆུ་སྙོམས་ཀྱི་ཁ་ཕྱོགས།"
-#: cui/uiconfig/ui/swpossizepage.ui:347
+#: cui/uiconfig/ui/swpossizepage.ui:358
msgctxt "swpossizepage|horibyft"
msgid "b_y:"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:361
+#: cui/uiconfig/ui/swpossizepage.ui:372
msgctxt "swpossizepage|vertbyft"
msgid "_by:"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:375
+#: cui/uiconfig/ui/swpossizepage.ui:386
msgctxt "swpossizepage|horitoft"
msgid "_to:"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:421
+#: cui/uiconfig/ui/swpossizepage.ui:433
#, fuzzy
msgctxt "swpossizepage|vertposft"
msgid "_Vertical:"
msgstr "དྲང་འཕྱང་ཁ་ཕྱོགས།"
-#: cui/uiconfig/ui/swpossizepage.ui:457
+#: cui/uiconfig/ui/swpossizepage.ui:470
msgctxt "swpossizepage|verttoft"
msgid "t_o:"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:478
+#: cui/uiconfig/ui/swpossizepage.ui:492
msgctxt "swpossizepage|mirror"
msgid "_Mirror on even pages"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:495
+#: cui/uiconfig/ui/swpossizepage.ui:509
msgctxt "swpossizepage|followtextflow"
msgid "Follow te_xt flow"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:518
+#: cui/uiconfig/ui/swpossizepage.ui:532
msgctxt "swpossizepage|label11"
msgid "Position"
msgstr "གནས་ས།"
-#: cui/uiconfig/ui/swpossizepage.ui:549
+#: cui/uiconfig/ui/swpossizepage.ui:563
#, fuzzy
msgctxt "swpossizepage|pos"
msgid "Positio_n"
msgstr "གནས་ས།"
-#: cui/uiconfig/ui/swpossizepage.ui:565
+#: cui/uiconfig/ui/swpossizepage.ui:579
#, fuzzy
msgctxt "swpossizepage|size"
msgid "_Size"
msgstr "ཆེ་ཆུང་།"
-#: cui/uiconfig/ui/swpossizepage.ui:587
+#: cui/uiconfig/ui/swpossizepage.ui:601
#, fuzzy
msgctxt "swpossizepage|label3"
msgid "Protect"
@@ -11873,13 +11873,13 @@ msgctxt "textattrtabpage|label2"
msgid "Spacing to Borders"
msgstr ""
-#: cui/uiconfig/ui/textattrtabpage.ui:425
+#: cui/uiconfig/ui/textattrtabpage.ui:423
#, fuzzy
msgctxt "textattrtabpage|TSB_FULL_WIDTH"
msgid "Full _width"
msgstr "ཧྲིལ་ཟུར།(~B)"
-#: cui/uiconfig/ui/textattrtabpage.ui:448
+#: cui/uiconfig/ui/textattrtabpage.ui:446
msgctxt "textattrtabpage|label3"
msgid "Text Anchor"
msgstr ""
diff --git a/source/bo/filter/source/config/fragments/filters.po b/source/bo/filter/source/config/fragments/filters.po
index 48ab5d30a65..da9ba11e2c4 100644
--- a/source/bo/filter/source/config/fragments/filters.po
+++ b/source/bo/filter/source/config/fragments/filters.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-16 16:54+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2016-12-01 12:00+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -466,8 +466,8 @@ msgctxt ""
"MS Word 2003 XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Word 2003 XML"
-msgstr "Microsoft Word 2003 XML"
+msgid "Word 2003 XML"
+msgstr ""
#: MS_Word_2007_XML.xcu
msgctxt ""
@@ -1291,7 +1291,7 @@ msgctxt ""
"Calc MS Excel 2007 VBA XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Excel 2007-2016 XML (macro enabled)"
+msgid "Excel 2007–2019 (macro-enabled)"
msgstr ""
#: calc_MS_Excel_2007_XML.xcu
diff --git a/source/bo/filter/source/config/fragments/types.po b/source/bo/filter/source/config/fragments/types.po
index 5f6a469da0c..098fe7700c7 100644
--- a/source/bo/filter/source/config/fragments/types.po
+++ b/source/bo/filter/source/config/fragments/types.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-08 15:11+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2015-11-11 20:24+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -295,8 +295,8 @@ msgctxt ""
"writer_MS_Word_2003_XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Word 2003 XML"
-msgstr "Microsoft Word 2003 XML"
+msgid "Word 2003 XML"
+msgstr ""
#: writer_MS_Word_2007_XML.xcu
msgctxt ""
diff --git a/source/bo/fpicker/messages.po b/source/bo/fpicker/messages.po
index da4d002e005..07a2a5f63d8 100644
--- a/source/bo/fpicker/messages.po
+++ b/source/bo/fpicker/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+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"
@@ -273,14 +273,13 @@ msgstr ""
#: fpicker/uiconfig/ui/foldernamedialog.ui:8
msgctxt "foldernamedialog|FolderNameDialog"
-msgid "Folder Name ?"
+msgid "Folder Name"
msgstr ""
#: fpicker/uiconfig/ui/foldernamedialog.ui:91
-#, fuzzy
msgctxt "foldernamedialog|label2"
-msgid "Na_me"
-msgstr "མིང་།"
+msgid "Na_me:"
+msgstr ""
#: fpicker/uiconfig/ui/foldernamedialog.ui:122
msgctxt "foldernamedialog|label1"
diff --git a/source/bo/helpcontent2/source/text/shared/00.po b/source/bo/helpcontent2/source/text/shared/00.po
index 5322089968f..5deb0eb48c0 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2016-05-24 02:25+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -397,16 +397,16 @@ msgctxt ""
"00000001.xhp\n"
"hd_id3149670\n"
"help.text"
-msgid "Back"
-msgstr "གོམ་སྟབས་སྔོན་མ།"
+msgid "Reset"
+msgstr ""
#: 00000001.xhp
msgctxt ""
"00000001.xhp\n"
"par_id3145068\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optionsdialog/revert\">Resets modified values back to the $[officename] default values.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/optionsdialog/revert\">བཅོས་ཟིན་པའི་གྲངས་ཐང་ཉིད་སླར་$[officename] ཁས་ལེན་ཐང་དུ་སྒྲིག་པ།</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optionsdialog/revert\">Resets changes made to the current tab to those applicable when this dialog was opened.</ahelp>"
+msgstr ""
#: 00000001.xhp
msgctxt ""
@@ -552,6 +552,54 @@ msgctxt ""
msgid "<variable id=\"ShiftF1\">Press Shift+F1 and point to a control to learn more about that control.</variable>"
msgstr ""
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"hd_id631527692833772\n"
+"help.text"
+msgid "Options dialog buttons"
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"hd_id831527692839432\n"
+"help.text"
+msgid "OK"
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"par_id471527692844934\n"
+"help.text"
+msgid "Save the changes in the page and close the Options dialog."
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"hd_id261527692850720\n"
+"help.text"
+msgid "Cancel"
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"par_id571527692855533\n"
+"help.text"
+msgid "Close the Options dialog and discard all changes done."
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"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 Options dialog."
+msgstr ""
+
#: 00000002.xhp
msgctxt ""
"00000002.xhp\n"
@@ -11125,7 +11173,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3151293\n"
"help.text"
-msgid "<variable id=\"linienstile\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Line Styles</emph> tab </variable>"
+msgid "<variable id=\"linienstile\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Line Styles</emph> tab</variable>"
msgstr ""
#: 00040502.xhp
@@ -11133,7 +11181,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3149317\n"
"help.text"
-msgid "<variable id=\"linienenden\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Arrow Styles</emph> tab </variable>"
+msgid "<variable id=\"linienenden\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Arrow Styles</emph> tab</variable>"
msgstr ""
#: 00040502.xhp
@@ -11173,7 +11221,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3154948\n"
"help.text"
-msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Area</emph> tab"
+msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Area</emph> tab."
msgstr ""
#: 00040502.xhp
@@ -11181,7 +11229,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3145607\n"
"help.text"
-msgid "Choose <emph>View - Styles</emph> - open context menu and choose <emph>Modify/New - Area</emph> tab (presentation documents)"
+msgid "Choose <emph>View - Styles</emph> - open context menu and choose <emph>Modify/New - Area</emph> tab (presentation documents)."
msgstr ""
#: 00040502.xhp
@@ -11189,47 +11237,47 @@ msgctxt ""
"00040502.xhp\n"
"par_id3152922\n"
"help.text"
-msgid "Choose <emph>Format - Title - Area</emph> tab (chart documents)"
-msgstr "ཚལ་ཐོ་:<emph>[རྣམ་གཞག་] - [སྐོང་གསབ་བཟོ་ལྟ་...] - \"གསབ་སྐོང་\"</emph>འདེམས་གཞི་ཁཱ(རིས་འགོད་ཡིག་ཚགས་)"
+msgid "Choose <emph>Format - Title - Area</emph> tab (chart documents)."
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3157894\n"
"help.text"
-msgid "Choose <emph>Format - Legend - Area</emph> tab (chart documents)"
-msgstr "ཚལ་ཐོ་:<emph>[རྣམ་གཞག་] - [དཔེ་རིས་...] - \"གསབ་སྐོང་\"</emph>འདེམས་གཞི་ཁཱ་(རིས་མཚོན་རྩོམ་སྒྲིག་མ་ཚུལ་)"
+msgid "Choose <emph>Format - Legend - Area</emph> tab (chart documents)."
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3144444\n"
"help.text"
-msgid "Choose <emph>Format - Chart Wall - Area</emph> tab (chart documents)"
-msgstr "ཚལ་ཐོ་:<emph>[རྣམ་གཞག་] - [རིས་འགོད་ཁུལ་...] - \"གསབ་སྐོང་\"</emph>འདེམས་གཞི་ཁཱ་(རིས་མཚོན་རྩོམ་སྒྲིག་མ་ཚུལ་)"
+msgid "Choose <emph>Format - Chart Wall - Area</emph> tab (chart documents)."
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3156543\n"
"help.text"
-msgid "Choose <emph>Format - Chart Floor - Area</emph> tab (chart documents)"
-msgstr "ཚལ་ཐོ་:<emph>[རྣམ་གཞག་] - [རིས་མཚོན་རྨང་ཞབས་...] - \"གསབ་སྐོང་\"</emph>འདེམས་གཞི་ཁཱ་(རིས་མཚོན་རྩོམ་སྒྲིག་མ་ཚུལ་)"
+msgid "Choose <emph>Format - Chart Floor - Area</emph> tab (chart documents)."
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3150685\n"
"help.text"
-msgid "Choose <emph>Format - Chart Area - Area</emph> tab (chart documents)"
-msgstr "ཚལ་ཐོ་:<emph>[རྣམ་གཞག་] - [རིས་མཚོན་ཁུལ་...] - \"སྐོང་གསབ་\"</emph>འདེམས་གཞི་ཁཱ།"
+msgid "Choose <emph>Format - Chart Area - Area</emph> tab (chart documents)."
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3149664\n"
"help.text"
-msgid "Choose <emph>Slide - Properties - Background</emph> tab (in $[officename] Impress)"
+msgid "Choose <emph>Slide - Properties - Background</emph> tab (in $[officename] Impress)."
msgstr ""
#: 00040502.xhp
@@ -11237,7 +11285,15 @@ msgctxt ""
"00040502.xhp\n"
"par_id9149694\n"
"help.text"
-msgid "Choose <emph>Page - Properties - Background</emph> tab (in $[officename] Draw)"
+msgid "Choose <emph>Page - Properties - Background</emph> tab (in $[officename] Draw)."
+msgstr ""
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id841527083135387\n"
+"help.text"
+msgid "Choose <emph>Table - Properties - Background</emph> tab."
msgstr ""
#: 00040502.xhp
@@ -11349,7 +11405,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3150011\n"
"help.text"
-msgid "<variable id=\"schatte\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Shadow</emph> tab </variable>"
+msgid "<variable id=\"schatte\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Shadow</emph> tab</variable>"
msgstr ""
#: 00040502.xhp
@@ -11357,7 +11413,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3147441\n"
"help.text"
-msgid "<variable id=\"verlauf\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Gradients</emph> tab </variable>"
+msgid "<variable id=\"verlauf\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Gradients</emph> tab</variable>"
msgstr ""
#: 00040502.xhp
@@ -11365,7 +11421,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3155308\n"
"help.text"
-msgid "<variable id=\"schraffur\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Hatching</emph> tab </variable>"
+msgid "<variable id=\"schraffur\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Hatching</emph> tab</variable>"
msgstr ""
#: 00040502.xhp
@@ -11373,7 +11429,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3145800\n"
"help.text"
-msgid "<variable id=\"bitmap\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Bitmaps</emph> tab </variable>"
+msgid "<variable id=\"bitmap\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Bitmaps</emph> tab</variable>"
msgstr ""
#: 00040502.xhp
@@ -11413,8 +11469,8 @@ msgctxt ""
"00040502.xhp\n"
"par_id3156286\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F4 key </caseinline><caseinline select=\"IMPRESS\">F4 key </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F4 མཐེབ་ </caseinline><caseinline select=\"IMPRESS\">F4 མཐེབ་ </caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F4 key</caseinline><caseinline select=\"IMPRESS\">F4 key</caseinline></switchinline>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
@@ -11453,7 +11509,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3153099\n"
"help.text"
-msgid "<variable id=\"position2\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Position and Size</emph> tab </variable>"
+msgid "<variable id=\"position2\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Position and Size</emph> tab</variable>"
msgstr ""
#: 00040502.xhp
@@ -11485,7 +11541,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3145666\n"
"help.text"
-msgid "<variable id=\"ecke\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Slant & Corner Radius</emph> tab </variable>"
+msgid "<variable id=\"ecke\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Slant & Corner Radius</emph> tab</variable>"
msgstr ""
#: 00040502.xhp
@@ -11493,7 +11549,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3146081\n"
"help.text"
-msgid "<variable id=\"legende\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Callout</emph> tab (only for textbox callouts, not for custom shapes callouts) </variable>"
+msgid "<variable id=\"legende\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Callout</emph> tab (only for textbox callouts, not for custom shapes callouts)</variable>"
msgstr ""
#: 00040502.xhp
@@ -11517,8 +11573,8 @@ msgctxt ""
"00040502.xhp\n"
"par_id3149019\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F8 key </caseinline><caseinline select=\"IMPRESS\">F8 key </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F4 མཐེབ་ </caseinline><caseinline select=\"IMPRESS\">F4 མཐེབ་ </caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F8 key</caseinline><caseinline select=\"IMPRESS\">F8 key</caseinline></switchinline>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
@@ -11805,8 +11861,8 @@ msgctxt ""
"00040502.xhp\n"
"par_id3153076\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Align Center Horizontally </caseinline><defaultinline>Centered</defaultinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">ཆུ་སྙོམས་དཀྱིལ་བསྡུ་</caseinline><defaultinline>དཀྱིལ་བསྡུ་</defaultinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Align Center Horizontally</caseinline><defaultinline>Centered</defaultinline></switchinline>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
@@ -11845,8 +11901,8 @@ msgctxt ""
"00040502.xhp\n"
"par_id3150527\n"
"help.text"
-msgid "<variable id=\"font\">Click <emph>Fontwork</emph> icon on <emph>Drawing</emph> bar </variable>"
-msgstr "<variable id=\"font\">རིས་མཚོན་ཚང་སྟེང་གི་<emph>\"སྒྱུ་རྩལ་ཡིག་གཟུགས་\"</emph>རིས་རྟགས་</variable>ལ་རྐྱང་རྡེབ་བྱ།"
+msgid "<variable id=\"font\">Click <emph>Fontwork</emph> icon on <emph>Drawing</emph> bar</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
diff --git a/source/bo/helpcontent2/source/text/shared/01.po b/source/bo/helpcontent2/source/text/shared/01.po
index c0de4f694a1..bc5dace8de5 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: 2018-05-23 23:19+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2016-12-22 14:32+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -23587,6 +23587,22 @@ msgstr ""
#: 05210100.xhp
msgctxt ""
"05210100.xhp\n"
+"hd_id471527077476052\n"
+"help.text"
+msgid "Cell, Row or Table background selector"
+msgstr ""
+
+#: 05210100.xhp
+msgctxt ""
+"05210100.xhp\n"
+"par_id661527077493366\n"
+"help.text"
+msgid "Select the table object which background area is to be filled."
+msgstr ""
+
+#: 05210100.xhp
+msgctxt ""
+"05210100.xhp\n"
"hd_id3147373\n"
"help.text"
msgid "None"
@@ -31205,7 +31221,7 @@ msgctxt ""
"06040100.xhp\n"
"hd_id3145072\n"
"help.text"
-msgid "Automatic *bold* and _underline_"
+msgid "Automatic *bold*, /italic/, -strikeout- and _underline_"
msgstr ""
#: 06040100.xhp
@@ -31213,7 +31229,7 @@ msgctxt ""
"06040100.xhp\n"
"par_id3153577\n"
"help.text"
-msgid "Automatically applies bold formatting to text enclosed by asterisks (*), and underline to text enclosed by underscores ( _ ), for example, *bold*. The asterisks and underscores are not displayed after the formatting is applied."
+msgid "Automatically applies bold, italic, strikethrough or underline formatting to text enclosed by asterisks (*), slashes (/), hyphens (-), and underscores (_), respectively. These characters disappear after the formatting is applied."
msgstr ""
#: 06040100.xhp
@@ -31221,7 +31237,7 @@ msgctxt ""
"06040100.xhp\n"
"par_id3153127\n"
"help.text"
-msgid "This feature does not work if the formatting characters * or _ are entered with an <link href=\"text/shared/00/00000005.xhp#IME\" name=\"Input Method Editor\">Input Method Editor</link>."
+msgid "This feature does not work if the formatting characters <item type=\"literal\">* / - _</item> are entered with an <link href=\"text/shared/00/00000005.xhp#IME\" name=\"Input Method Editor\">Input Method Editor</link>."
msgstr ""
#: 06040100.xhp
diff --git a/source/bo/helpcontent2/source/text/shared/optionen.po b/source/bo/helpcontent2/source/text/shared/optionen.po
index 5c73b7e47e9..0b16aafe3bf 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: 2018-05-08 15:10+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2016-07-05 16:59+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -83,6 +83,22 @@ msgstr ""
#: 01000000.xhp
msgctxt ""
"01000000.xhp\n"
+"hd_id551527692881035\n"
+"help.text"
+msgid "Help"
+msgstr ""
+
+#: 01000000.xhp
+msgctxt ""
+"01000000.xhp\n"
+"par_id831527692885723\n"
+"help.text"
+msgid "Opens the help contents for the Options page displayed."
+msgstr ""
+
+#: 01000000.xhp
+msgctxt ""
+"01000000.xhp\n"
"hd_id3159149\n"
"help.text"
msgid "<link href=\"text/shared/optionen/01010000.xhp\" name=\"$[officename]\">%PRODUCTNAME</link>"
@@ -4565,8 +4581,8 @@ msgctxt ""
"01030300.xhp\n"
"par_idN10640\n"
"help.text"
-msgid "Options"
-msgstr "འདེམས་གཞི།"
+msgid "Security Options and Warnings"
+msgstr ""
#: 01030300.xhp
msgctxt ""
@@ -4597,7 +4613,7 @@ msgctxt ""
"01030300.xhp\n"
"hd_id3168736\n"
"help.text"
-msgid "Persistently save passwords protected by a master password"
+msgid "Persistently save passwords for web connections"
msgstr ""
#: 01030300.xhp
@@ -4613,6 +4629,22 @@ msgctxt ""
"01030300.xhp\n"
"hd_id3901791\n"
"help.text"
+msgid "Protected by a master password (recommended)"
+msgstr ""
+
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"par_id31527711486980\n"
+"help.text"
+msgid "Check to enable all connections' passwords to be protected by a master password."
+msgstr ""
+
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"hd_id141527711343312\n"
+"help.text"
msgid "Master Password"
msgstr ""
@@ -13733,7 +13765,7 @@ msgctxt ""
"java.xhp\n"
"hd_id3148618\n"
"help.text"
-msgid "Optional (unstable) options"
+msgid "Optional Features"
msgstr ""
#: java.xhp
@@ -13749,7 +13781,7 @@ msgctxt ""
"java.xhp\n"
"par_id3156344\n"
"help.text"
-msgid "It enables features that are not yet complete or contain known bugs. The list of these features is different version by version, or even it can be empty."
+msgid "Enables features that are not yet complete or may contain known bugs. The list of these features is different version by version, or even it can be empty."
msgstr ""
#: java.xhp
@@ -13765,7 +13797,7 @@ msgctxt ""
"java.xhp\n"
"par_id3156345\n"
"help.text"
-msgid "It enables macro recording, so the <link href=\"text/shared/guide/macro_recording.xhp\" name=\"Tools - Macros - Record Macro\"><item type=\"menuitem\">Tools - Macros - Record Macro</item></link> menu item will be available."
+msgid "Enables macro recording. The <link href=\"text/shared/guide/macro_recording.xhp\" name=\"Tools - Macros - Record Macro\"><item type=\"menuitem\">Tools - Macros - Record Macro</item></link> menu item is available."
msgstr ""
#: java.xhp
diff --git a/source/bo/officecfg/registry/data/org/openoffice/Office/UI.po b/source/bo/officecfg/registry/data/org/openoffice/Office/UI.po
index f0dd8d6312d..42e1f184c5b 100644
--- a/source/bo/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/bo/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-22 13:17+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2016-12-01 12:04+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -26974,8 +26974,8 @@ msgctxt ""
"..WriterCommands.UserInterface.Commands..uno:TextAttributes\n"
"Label\n"
"value.text"
-msgid "Text Attributes"
-msgstr "ཡི་གེའི་གཏོགས་གཤིས།"
+msgid "Text Attributes..."
+msgstr ""
#: WriterCommands.xcu
msgctxt ""
diff --git a/source/bo/readlicense_oo/docs.po b/source/bo/readlicense_oo/docs.po
index 4a4953bfb4c..6551491c345 100644
--- a/source/bo/readlicense_oo/docs.po
+++ b/source/bo/readlicense_oo/docs.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-04-17 15:54+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2016-05-01 19:44+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -117,7 +117,7 @@ msgctxt ""
"readme.xrm\n"
"macxiOSX\n"
"readmeitem.text"
-msgid "MacOSX 10.8 (Mountain Lion) or higher"
+msgid "MacOSX 10.9 (Mavericks) or higher"
msgstr ""
#: readme.xrm
diff --git a/source/bo/sc/messages.po b/source/bo/sc/messages.po
index 80c5ea0701e..c527de9fa11 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-12 14:40+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"
@@ -1889,17 +1889,22 @@ msgid "Nested arrays are not supported."
msgstr "གྲངས་ཚོ་བསྒར་འཛུད་བྱེད་མི་ཐུབ།"
#: sc/inc/globstr.hrc:390
+msgctxt "STR_ERR_LONG_BAD_ARRAY_CONTENT"
+msgid "Unsupported inline array content."
+msgstr ""
+
+#: sc/inc/globstr.hrc:391
#, fuzzy
msgctxt "STR_UNDO_TEXTTOCOLUMNS"
msgid "Text to Columns"
msgstr "ཡི་གེའི་གཞུང་བགོས།"
-#: sc/inc/globstr.hrc:391
+#: sc/inc/globstr.hrc:392
msgctxt "STR_DOC_UPDATED"
msgid "Your spreadsheet has been updated with changes saved by other users."
msgstr "ཁྱེད་ཀྱི་གློག་རྡུལ་རེའུ་མིག་དེ་སྤྱོད་མཁན་གཞན་དག་འཇོག་སར་སྒྱུར་ཟིན་འདུག"
-#: sc/inc/globstr.hrc:392
+#: sc/inc/globstr.hrc:393
msgctxt "STR_DOC_WILLBESAVED"
msgid ""
"The spreadsheet must be saved now to activate sharing mode.\n"
@@ -1910,7 +1915,7 @@ msgstr ""
"\n"
"མུ་མཐུད་བྱེད་དམ།"
-#: sc/inc/globstr.hrc:393
+#: sc/inc/globstr.hrc:394
msgctxt "STR_DOC_WILLNOTBESAVED"
msgid ""
"Already resolved merge conflicts will be lost and your changes to the shared spreadsheet will not be saved.\n"
@@ -1921,7 +1926,7 @@ msgstr ""
"\n"
"མུ་མཐུད་ལག་བསྟར་བྱེད་མཁན་ཡིན་ནམ།"
-#: sc/inc/globstr.hrc:394
+#: sc/inc/globstr.hrc:395
msgctxt "STR_DOC_DISABLESHARED"
msgid ""
"Disabling shared mode of a spreadsheet hinders all other users of the shared spreadsheet to merge back their work.\n"
@@ -1932,7 +1937,7 @@ msgstr ""
"\n"
" མུ་མཐུད་བྱེད་དམ།"
-#: sc/inc/globstr.hrc:395
+#: sc/inc/globstr.hrc:396
msgctxt "STR_DOC_NOLONGERSHARED"
msgid ""
"This spreadsheet is no longer in shared mode.\n"
@@ -1943,7 +1948,7 @@ msgstr ""
"\n"
"ཁྱེད་ཀྱི་གློག་རྡུལ་རེའུ་མིག་དེ་ཁེར་རྐྱང་ཡིག་ཆར་ཉར་ཚགས་བྱེད་པ་དང་སྦྲགས་ལག་པ་འགུལ་ནས་མཉམ་སྤྱོད་གློག་རྡུལ་རེའུ་མིག་ནང་བཟོ་བཅོས་མཉམ་འདུས་ཉར་ཚགས་བྱེད།"
-#: sc/inc/globstr.hrc:396
+#: sc/inc/globstr.hrc:397
msgctxt "STR_FILE_LOCKED_TRY_LATER"
msgid ""
"The shared spreadsheet file is locked due to a merge in progress by user: '%1'\n"
@@ -1954,7 +1959,7 @@ msgstr ""
"\n"
"གཏན་བཀག་ཟིན་པའི་ཡིག་ཆའི་མཉམ་སྤྱོད་དཔེ་ཚུལ་དེ་བཀག་ཐབས་མེད་པས་གཏོགས་ཙམ་ནས་བསྐྱར་དུ་ཚོད་ལྟར་གནང་རོགས།"
-#: sc/inc/globstr.hrc:397
+#: sc/inc/globstr.hrc:398
msgctxt "STR_FILE_LOCKED_SAVE_LATER"
msgid ""
"The shared spreadsheet file is locked due to a merge in progress by user: '%1'\n"
@@ -1965,160 +1970,160 @@ msgstr ""
"\n"
"གཏོགས་ཙམ་ནས་ཁྱེད་ཀྱི་བཟོ་བཅོས་དེ་ཉར་ཚགས་བྱེད་རྒྱུ་ཚོད་ལྟ་གནང་རོགས།"
-#: sc/inc/globstr.hrc:398
+#: sc/inc/globstr.hrc:399
msgctxt "STR_UNKNOWN_USER"
msgid "Unknown User"
msgstr "ཧ་མི་གོ་བའི་སྤྱོད་དུད།"
-#: sc/inc/globstr.hrc:399
+#: sc/inc/globstr.hrc:400
msgctxt "STR_SHAPE_AUTOSHAPE"
msgid "AutoShape"
msgstr ""
-#: sc/inc/globstr.hrc:400
+#: sc/inc/globstr.hrc:401
#, fuzzy
msgctxt "STR_SHAPE_RECTANGLE"
msgid "Rectangle"
msgstr "ལིང་ཚེ།"
-#: sc/inc/globstr.hrc:401
+#: sc/inc/globstr.hrc:402
#, fuzzy
msgctxt "STR_SHAPE_LINE"
msgid "Line"
msgstr "life"
-#: sc/inc/globstr.hrc:402
+#: sc/inc/globstr.hrc:403
msgctxt "STR_SHAPE_OVAL"
msgid "Oval"
msgstr "སྐྱུ་རུའི་སྤོ་ལོའི་དབྱིབས།"
-#: sc/inc/globstr.hrc:403
+#: sc/inc/globstr.hrc:404
#, fuzzy
msgctxt "STR_FORM_BUTTON"
msgid "Button"
msgstr "རྐྱང་རྡེབ་བྱེད་དགོས།"
-#: sc/inc/globstr.hrc:404
+#: sc/inc/globstr.hrc:405
#, fuzzy
msgctxt "STR_FORM_CHECKBOX"
msgid "Check Box"
msgstr "མང་འདེམས་སྒྲོམ།"
-#: sc/inc/globstr.hrc:405
+#: sc/inc/globstr.hrc:406
#, fuzzy
msgctxt "STR_FORM_OPTIONBUTTON"
msgid "Option Button"
msgstr "གདམ་ཚན་ཡིག་དུམ།"
-#: sc/inc/globstr.hrc:406
+#: sc/inc/globstr.hrc:407
#, fuzzy
msgctxt "STR_FORM_LABEL"
msgid "Label"
msgstr "གཞི་གྲངས་ཀྱི་མཚོན་རྟགས།"
-#: sc/inc/globstr.hrc:407
+#: sc/inc/globstr.hrc:408
#, fuzzy
msgctxt "STR_FORM_LISTBOX"
msgid "List Box"
msgstr "རེའུ་སྒྲོམ།"
-#: sc/inc/globstr.hrc:408
+#: sc/inc/globstr.hrc:409
#, fuzzy
msgctxt "STR_FORM_GROUPBOX"
msgid "Group Box"
msgstr "ཚོགས་ཆུང་སྒྲོམ།"
-#: sc/inc/globstr.hrc:409
+#: sc/inc/globstr.hrc:410
#, fuzzy
msgctxt "STR_FORM_DROPDOWN"
msgid "Drop Down"
msgstr "རྒྱ་བསྐྱེད་བྱེད་པ།"
-#: sc/inc/globstr.hrc:410
+#: sc/inc/globstr.hrc:411
msgctxt "STR_FORM_SPINNER"
msgid "Spinner"
msgstr ""
-#: sc/inc/globstr.hrc:411
+#: sc/inc/globstr.hrc:412
#, fuzzy
msgctxt "STR_FORM_SCROLLBAR"
msgid "Scroll Bar"
msgstr "འགྲིལ་འཁོར་མདའ།"
-#: sc/inc/globstr.hrc:412
+#: sc/inc/globstr.hrc:413
msgctxt "STR_STYLE_FAMILY_CELL"
msgid "Cell Styles"
msgstr "སྡེ་ཚན་ཁྲ་མིག་གི་བཟོ་ལྟ།"
-#: sc/inc/globstr.hrc:413
+#: sc/inc/globstr.hrc:414
msgctxt "STR_STYLE_FAMILY_PAGE"
msgid "Page Styles"
msgstr "ཤོག་ངོས་བཟོ་དབྱིབས་།"
-#: sc/inc/globstr.hrc:414
+#: sc/inc/globstr.hrc:415
#, fuzzy
msgctxt "STR_ERR_DATAPILOTSOURCE"
msgid "Pivot table source data is invalid."
msgstr "སྤྲད་པའི་གཞི་གྲངས་རྒྱུན་གོ་མི་ཆོད།"
-#: sc/inc/globstr.hrc:415
+#: sc/inc/globstr.hrc:416
msgctxt "STR_OPTIONS_WARN_SEPARATORS"
msgid "Because the current formula separator settings conflict with the locale, the formula separators have been reset to their default values."
msgstr ""
-#: sc/inc/globstr.hrc:416
+#: sc/inc/globstr.hrc:417
msgctxt "STR_UNDO_INSERT_CURRENT_DATE"
msgid "Insert Current Date"
msgstr ""
-#: sc/inc/globstr.hrc:417
+#: sc/inc/globstr.hrc:418
msgctxt "STR_UNDO_INSERT_CURRENT_TIME"
msgid "Insert Current Time"
msgstr ""
-#: sc/inc/globstr.hrc:418
+#: sc/inc/globstr.hrc:419
#, fuzzy
msgctxt "STR_MANAGE_NAMES"
msgid "Manage Names..."
msgstr "ཁུལ་ཁོངས་ཀྱི་མིང་།"
-#: sc/inc/globstr.hrc:419
+#: sc/inc/globstr.hrc:420
msgctxt "STR_HEADER_NAME"
msgid "Name"
msgstr "མིང་།"
-#: sc/inc/globstr.hrc:420
+#: sc/inc/globstr.hrc:421
msgctxt "STR_HEADER_RANGE_OR_EXPR"
msgid "Range or formula expression"
msgstr ""
-#: sc/inc/globstr.hrc:421
+#: sc/inc/globstr.hrc:422
msgctxt "STR_HEADER_SCOPE"
msgid "Scope"
msgstr ""
-#: sc/inc/globstr.hrc:422
+#: sc/inc/globstr.hrc:423
msgctxt "STR_MULTI_SELECT"
msgid "(multiple)"
msgstr ""
-#: sc/inc/globstr.hrc:423
+#: sc/inc/globstr.hrc:424
#, fuzzy
msgctxt "STR_GLOBAL_SCOPE"
msgid "Document (Global)"
msgstr "ཡིག་ཚགས་དཔེ་བཟོ།"
-#: sc/inc/globstr.hrc:424
+#: sc/inc/globstr.hrc:425
msgctxt "STR_ERR_NAME_EXISTS"
msgid "Invalid name. Already in use for the selected scope."
msgstr ""
-#: sc/inc/globstr.hrc:425
+#: sc/inc/globstr.hrc:426
msgctxt "STR_ERR_NAME_INVALID"
msgid "Invalid name. Only use letters, numbers and underscore."
msgstr ""
-#: sc/inc/globstr.hrc:426
+#: sc/inc/globstr.hrc:427
msgctxt "STR_UNSAVED_EXT_REF"
msgid ""
"This Document contains external references to unsaved documents.\n"
@@ -2126,228 +2131,228 @@ msgid ""
"Do you want to continue?"
msgstr ""
-#: sc/inc/globstr.hrc:427
+#: sc/inc/globstr.hrc:428
msgctxt "STR_CLOSE_WITH_UNSAVED_REFS"
msgid "This Document is referenced by another document and not yet saved. Closing it without saving will result in data loss."
msgstr ""
-#: sc/inc/globstr.hrc:428
+#: sc/inc/globstr.hrc:429
msgctxt "STR_HEADER_RANGE"
msgid "Range"
msgstr "ས་ཁོངས།"
-#: sc/inc/globstr.hrc:429
+#: sc/inc/globstr.hrc:430
msgctxt "STR_HEADER_COND"
msgid "First Condition"
msgstr ""
-#: sc/inc/globstr.hrc:430
+#: sc/inc/globstr.hrc:431
#, fuzzy
msgctxt "STR_COND_CONDITION"
msgid "Cell value is"
msgstr "དྲ་མིག་གི་གྲངས་ཐང་།"
-#: sc/inc/globstr.hrc:431
+#: sc/inc/globstr.hrc:432
msgctxt "STR_COND_COLORSCALE"
msgid "ColorScale"
msgstr ""
-#: sc/inc/globstr.hrc:432
+#: sc/inc/globstr.hrc:433
msgctxt "STR_COND_DATABAR"
msgid "DataBar"
msgstr ""
-#: sc/inc/globstr.hrc:433
+#: sc/inc/globstr.hrc:434
msgctxt "STR_COND_ICONSET"
msgid "IconSet"
msgstr ""
-#: sc/inc/globstr.hrc:434
+#: sc/inc/globstr.hrc:435
#, fuzzy
msgctxt "STR_COND_BETWEEN"
msgid "between"
msgstr "བར་ཡོད།"
-#: sc/inc/globstr.hrc:435
+#: sc/inc/globstr.hrc:436
#, fuzzy
msgctxt "STR_COND_NOTBETWEEN"
msgid "not between"
msgstr "བར་མེད།"
-#: sc/inc/globstr.hrc:436
+#: sc/inc/globstr.hrc:437
msgctxt "STR_COND_UNIQUE"
msgid "unique"
msgstr ""
-#: sc/inc/globstr.hrc:437
+#: sc/inc/globstr.hrc:438
#, fuzzy
msgctxt "STR_COND_DUPLICATE"
msgid "duplicate"
msgstr "པར་སློག"
-#: sc/inc/globstr.hrc:438
+#: sc/inc/globstr.hrc:439
#, fuzzy
msgctxt "STR_COND_FORMULA"
msgid "Formula is"
msgstr "སྤྱི་འགྲོས།"
-#: sc/inc/globstr.hrc:439
+#: sc/inc/globstr.hrc:440
msgctxt "STR_COND_TOP10"
msgid "Top Elements"
msgstr ""
-#: sc/inc/globstr.hrc:440
+#: sc/inc/globstr.hrc:441
msgctxt "STR_COND_BOTTOM10"
msgid "Bottom Elements"
msgstr ""
-#: sc/inc/globstr.hrc:441
+#: sc/inc/globstr.hrc:442
msgctxt "STR_COND_TOP_PERCENT"
msgid "Top Percent"
msgstr ""
-#: sc/inc/globstr.hrc:442
+#: sc/inc/globstr.hrc:443
msgctxt "STR_COND_DATE"
msgid "Date is"
msgstr ""
-#: sc/inc/globstr.hrc:443
+#: sc/inc/globstr.hrc:444
msgctxt "STR_COND_BOTTOM_PERCENT"
msgid "Bottom Percent"
msgstr ""
-#: sc/inc/globstr.hrc:444
+#: sc/inc/globstr.hrc:445
msgctxt "STR_COND_ABOVE_AVERAGE"
msgid "Above Average"
msgstr ""
-#: sc/inc/globstr.hrc:445
+#: sc/inc/globstr.hrc:446
msgctxt "STR_COND_BELOW_AVERAGE"
msgid "Below Average"
msgstr ""
-#: sc/inc/globstr.hrc:446
+#: sc/inc/globstr.hrc:447
msgctxt "STR_COND_ABOVE_EQUAL_AVERAGE"
msgid "Above or equal Average"
msgstr ""
-#: sc/inc/globstr.hrc:447
+#: sc/inc/globstr.hrc:448
msgctxt "STR_COND_BELOW_EQUAL_AVERAGE"
msgid "Below or equal Average"
msgstr ""
-#: sc/inc/globstr.hrc:448
+#: sc/inc/globstr.hrc:449
#, fuzzy
msgctxt "STR_COND_ERROR"
msgid "an Error code"
msgstr "ནོར་བའི་རྟགས།"
-#: sc/inc/globstr.hrc:449
+#: sc/inc/globstr.hrc:450
#, fuzzy
msgctxt "STR_COND_NOERROR"
msgid "not an Error code"
msgstr "ནོར་བའི་རྟགས།"
-#: sc/inc/globstr.hrc:450
+#: sc/inc/globstr.hrc:451
msgctxt "STR_COND_BEGINS_WITH"
msgid "Begins with"
msgstr ""
-#: sc/inc/globstr.hrc:451
+#: sc/inc/globstr.hrc:452
msgctxt "STR_COND_ENDS_WITH"
msgid "Ends with"
msgstr ""
-#: sc/inc/globstr.hrc:452
+#: sc/inc/globstr.hrc:453
#, fuzzy
msgctxt "STR_COND_CONTAINS"
msgid "Contains"
msgstr "ཚུད་ཡོད།"
-#: sc/inc/globstr.hrc:453
+#: sc/inc/globstr.hrc:454
msgctxt "STR_COND_NOT_CONTAINS"
msgid "Not Contains"
msgstr ""
-#: sc/inc/globstr.hrc:454
+#: sc/inc/globstr.hrc:455
#, fuzzy
msgctxt "STR_COND_TODAY"
msgid "today"
msgstr "དེ་རིང་།"
-#: sc/inc/globstr.hrc:455
+#: sc/inc/globstr.hrc:456
#, fuzzy
msgctxt "STR_COND_YESTERDAY"
msgid "yesterday"
msgstr "ཁ་སང་།"
-#: sc/inc/globstr.hrc:456
+#: sc/inc/globstr.hrc:457
msgctxt "STR_COND_TOMORROW"
msgid "tomorrow"
msgstr ""
-#: sc/inc/globstr.hrc:457
+#: sc/inc/globstr.hrc:458
msgctxt "STR_COND_LAST7DAYS"
msgid "in the last 7 days"
msgstr ""
-#: sc/inc/globstr.hrc:458
+#: sc/inc/globstr.hrc:459
msgctxt "STR_COND_THISWEEK"
msgid "this week"
msgstr ""
-#: sc/inc/globstr.hrc:459
+#: sc/inc/globstr.hrc:460
msgctxt "STR_COND_LASTWEEK"
msgid "last week"
msgstr ""
-#: sc/inc/globstr.hrc:460
+#: sc/inc/globstr.hrc:461
msgctxt "STR_COND_NEXTWEEK"
msgid "next week"
msgstr ""
-#: sc/inc/globstr.hrc:461
+#: sc/inc/globstr.hrc:462
msgctxt "STR_COND_THISMONTH"
msgid "this month"
msgstr ""
-#: sc/inc/globstr.hrc:462
+#: sc/inc/globstr.hrc:463
msgctxt "STR_COND_LASTMONTH"
msgid "last month"
msgstr ""
-#: sc/inc/globstr.hrc:463
+#: sc/inc/globstr.hrc:464
msgctxt "STR_COND_NEXTMONTH"
msgid "next month"
msgstr ""
-#: sc/inc/globstr.hrc:464
+#: sc/inc/globstr.hrc:465
msgctxt "STR_COND_THISYEAR"
msgid "this year"
msgstr ""
-#: sc/inc/globstr.hrc:465
+#: sc/inc/globstr.hrc:466
msgctxt "STR_COND_LASTYEAR"
msgid "last year"
msgstr ""
-#: sc/inc/globstr.hrc:466
+#: sc/inc/globstr.hrc:467
msgctxt "STR_COND_NEXTYEAR"
msgid "next year"
msgstr ""
-#: sc/inc/globstr.hrc:467
+#: sc/inc/globstr.hrc:468
#, fuzzy
msgctxt "STR_COND_AND"
msgid "and"
msgstr "བསྡོམས་འབོར།"
-#: sc/inc/globstr.hrc:468
+#: sc/inc/globstr.hrc:469
msgctxt "STR_ERR_CONDFORMAT_PROTECTED"
msgid "Conditional Formats can not be created, deleted or changed in protected sheets."
msgstr ""
-#: sc/inc/globstr.hrc:469
+#: sc/inc/globstr.hrc:470
msgctxt "STR_EDIT_EXISTING_COND_FORMATS"
msgid ""
"The selected cell already contains conditional formatting. You can either edit the existing conditional format or you define a new overlapping conditional format.\n"
@@ -2355,7 +2360,7 @@ msgid ""
" Do you want to edit the existing conditional format?"
msgstr ""
-#: sc/inc/globstr.hrc:470
+#: sc/inc/globstr.hrc:471
msgctxt "STR_QUERY_FORMULA_RECALC_ONLOAD_ODS"
msgid ""
"This document was last saved by an application other than %PRODUCTNAME. Some formula cells may produce different results when recalculated.\n"
@@ -2363,7 +2368,7 @@ msgid ""
"Do you want to recalculate all formula cells in this document now?"
msgstr ""
-#: sc/inc/globstr.hrc:471
+#: sc/inc/globstr.hrc:472
msgctxt "STR_QUERY_FORMULA_RECALC_ONLOAD_XLS"
msgid ""
"This document was last saved by Excel. Some formula cells may produce different results when recalculated.\n"
@@ -2371,83 +2376,83 @@ msgid ""
"Do you want to recalculate all formula cells now?"
msgstr ""
-#: sc/inc/globstr.hrc:472
+#: sc/inc/globstr.hrc:473
msgctxt "STR_NO_INSERT_DELETE_OVER_PIVOT_TABLE"
msgid "You cannot insert or delete cells when the affected range intersects with pivot table."
msgstr ""
-#: sc/inc/globstr.hrc:473
+#: sc/inc/globstr.hrc:474
msgctxt "STR_DPFIELD_GROUP_BY_SECONDS"
msgid "Seconds"
msgstr "སྐར་ཆ།"
-#: sc/inc/globstr.hrc:474
+#: sc/inc/globstr.hrc:475
msgctxt "STR_DPFIELD_GROUP_BY_MINUTES"
msgid "Minutes"
msgstr "སྐར་མ།"
-#: sc/inc/globstr.hrc:475
+#: sc/inc/globstr.hrc:476
msgctxt "STR_DPFIELD_GROUP_BY_HOURS"
msgid "Hours"
msgstr "ཆུ་ཚོད།"
-#: sc/inc/globstr.hrc:476
+#: sc/inc/globstr.hrc:477
msgctxt "STR_DPFIELD_GROUP_BY_DAYS"
msgid "Days"
msgstr "days"
-#: sc/inc/globstr.hrc:477
+#: sc/inc/globstr.hrc:478
msgctxt "STR_DPFIELD_GROUP_BY_MONTHS"
msgid "Months"
msgstr "months"
-#: sc/inc/globstr.hrc:478
+#: sc/inc/globstr.hrc:479
msgctxt "STR_DPFIELD_GROUP_BY_QUARTERS"
msgid "Quarters"
msgstr ""
-#: sc/inc/globstr.hrc:479
+#: sc/inc/globstr.hrc:480
#, fuzzy
msgctxt "STR_DPFIELD_GROUP_BY_YEARS"
msgid "Years"
msgstr "ལོ།"
-#: sc/inc/globstr.hrc:480
+#: sc/inc/globstr.hrc:481
#, fuzzy
msgctxt "STR_INVALIDVAL"
msgid "Invalid target value."
msgstr "དམིགས་ཡུལ་གྱི་གྲངས་ཐང་དེ་ཕན་མེད་ཡིན་པ།"
-#: sc/inc/globstr.hrc:481
+#: sc/inc/globstr.hrc:482
#, fuzzy
msgctxt "STR_INVALIDVAR"
msgid "Undefined name for variable cell."
msgstr "མཚན་ཉིད་བཞག་མེད་པའི་མིང་དེ་འགྱུར་ཆོག་པའི་ཚད་ཀྱི་སྡེ་ཚན་དྲ་མིག་ལ་བརྩི་རྒྱུ།"
-#: sc/inc/globstr.hrc:482
+#: sc/inc/globstr.hrc:483
#, fuzzy
msgctxt "STR_INVALIDFORM"
msgid "Undefined name as formula cell."
msgstr "མཚན་ཉིད་བཞག་མེད་པའི་མིང་དེ་སྤྱི་འགྲོས་ཀྱི་སྡེ་ཚན་དྲ་མིག་ལ་བརྩི་རྒྱུ།"
-#: sc/inc/globstr.hrc:483
+#: sc/inc/globstr.hrc:484
msgctxt "STR_NOFORMULA"
msgid "Formula cell must contain a formula."
msgstr ""
-#: sc/inc/globstr.hrc:484
+#: sc/inc/globstr.hrc:485
#, fuzzy
msgctxt "STR_INVALIDINPUT"
msgid "Invalid input."
msgstr "རྩིས་འགྲོ་མེད་པའི་ནང་འཇུག"
-#: sc/inc/globstr.hrc:485
+#: sc/inc/globstr.hrc:486
#, fuzzy
msgctxt "STR_INVALIDCONDITION"
msgid "Invalid condition."
msgstr "རྩིས་འགྲོ་མེད་པའི་ཆ་རྐྱེན།"
-#: sc/inc/globstr.hrc:486
+#: sc/inc/globstr.hrc:487
msgctxt "STR_QUERYREMOVE"
msgid ""
"Should the entry\n"
@@ -2455,136 +2460,136 @@ msgid ""
"be deleted?"
msgstr ""
-#: sc/inc/globstr.hrc:487
+#: sc/inc/globstr.hrc:488
msgctxt "STR_COPYLIST"
msgid "Copy List"
msgstr ""
-#: sc/inc/globstr.hrc:488
+#: sc/inc/globstr.hrc:489
msgctxt "STR_COPYFROM"
msgid "List from"
msgstr ""
-#: sc/inc/globstr.hrc:489
+#: sc/inc/globstr.hrc:490
msgctxt "STR_COPYERR"
msgid "Cells without text have been ignored."
msgstr ""
-#: sc/inc/globstr.hrc:490
+#: sc/inc/globstr.hrc:491
#, c-format
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%s-click to follow hyperlink:"
msgstr ""
-#: sc/inc/globstr.hrc:491
+#: sc/inc/globstr.hrc:492
msgctxt "STR_CLICKHYPERLINK"
msgid "click to open hyperlink:"
msgstr ""
-#: sc/inc/globstr.hrc:492
+#: sc/inc/globstr.hrc:493
msgctxt "STR_PRINT_PREVIEW_NODATA"
msgid "No Data"
msgstr ""
-#: sc/inc/globstr.hrc:493
+#: sc/inc/globstr.hrc:494
msgctxt "STR_PRINT_PREVIEW_EMPTY_RANGE"
msgid "Print Range Empty"
msgstr ""
-#: sc/inc/globstr.hrc:494
+#: sc/inc/globstr.hrc:495
#, fuzzy
msgctxt "STR_UNDO_CONDFORMAT"
msgid "Conditional Format"
msgstr "ཆ་རྐྱེན་གྱི་རྣམ་གཞག"
-#: sc/inc/globstr.hrc:495
+#: sc/inc/globstr.hrc:496
#, fuzzy
msgctxt "STR_UNDO_CONDFORMAT_LIST"
msgid "Conditional Formats"
msgstr "ཆ་རྐྱེན་གྱི་རྣམ་གཞག"
-#: sc/inc/globstr.hrc:496
+#: sc/inc/globstr.hrc:497
msgctxt "STR_UNDO_FORMULA_TO_VALUE"
msgid "Convert Formula To Value"
msgstr ""
-#: sc/inc/globstr.hrc:497
+#: sc/inc/globstr.hrc:498
msgctxt "STR_UNQUOTED_STRING"
msgid "Strings without quotes are interpreted as column/row labels."
msgstr ""
-#: sc/inc/globstr.hrc:498
+#: sc/inc/globstr.hrc:499
msgctxt "STR_ENTER_VALUE"
msgid "Enter a value!"
msgstr ""
-#: sc/inc/globstr.hrc:499
+#: sc/inc/globstr.hrc:500
msgctxt "STR_TABLE_COUNT"
msgid "Sheet %1 of %2"
msgstr ""
-#: sc/inc/globstr.hrc:500
+#: sc/inc/globstr.hrc:501
msgctxt "STR_FUNCTIONS_FOUND"
msgid "%1 and %2 more"
msgstr ""
-#: sc/inc/globstr.hrc:501
+#: sc/inc/globstr.hrc:502
msgctxt "STR_GENERAL"
msgid "General"
msgstr "རྒྱུནགཏན།"
-#: sc/inc/globstr.hrc:502
+#: sc/inc/globstr.hrc:503
msgctxt "STR_NUMBER"
msgid "Number"
msgstr "number"
-#: sc/inc/globstr.hrc:503
+#: sc/inc/globstr.hrc:504
msgctxt "STR_PERCENT"
msgid "Percent"
msgstr ""
-#: sc/inc/globstr.hrc:504
+#: sc/inc/globstr.hrc:505
msgctxt "STR_CURRENCY"
msgid "Currency"
msgstr "དངུལ་ལོར།"
-#: sc/inc/globstr.hrc:505
+#: sc/inc/globstr.hrc:506
msgctxt "STR_DATE"
msgid "Date"
msgstr "དུས་ཚོད།"
-#: sc/inc/globstr.hrc:506
+#: sc/inc/globstr.hrc:507
msgctxt "STR_TIME"
msgid "Time"
msgstr "time"
-#: sc/inc/globstr.hrc:507
+#: sc/inc/globstr.hrc:508
msgctxt "STR_SCIENTIFIC"
msgid "Scientific"
msgstr ""
-#: sc/inc/globstr.hrc:508
+#: sc/inc/globstr.hrc:509
#, fuzzy
msgctxt "STR_FRACTION"
msgid "Fraction"
msgstr "function"
-#: sc/inc/globstr.hrc:509
+#: sc/inc/globstr.hrc:510
msgctxt "STR_BOOLEAN_VALUE"
msgid "Boolean Value"
msgstr ""
-#: sc/inc/globstr.hrc:510
+#: sc/inc/globstr.hrc:511
msgctxt "STR_TEXT"
msgid "Text"
msgstr "old_text"
-#: sc/inc/globstr.hrc:511
+#: sc/inc/globstr.hrc:512
msgctxt "STR_QUERY_PIVOTTABLE_DELTAB"
msgid "The selected sheet(s) contain source data of related pivot tables that will be lost. Are you sure you want to delete the selected sheet(s)?"
msgstr ""
-#: sc/inc/globstr.hrc:512
+#: sc/inc/globstr.hrc:513
msgctxt "STR_ERR_NAME_INVALID_CELL_REF"
msgid "Invalid name. Reference to a cell, or a range of cells not allowed."
msgstr ""
@@ -10890,8 +10895,8 @@ msgstr "mode"
#: sc/inc/scfuncs.hrc:3010
msgctxt "SC_OPCODE_T_TEST"
-msgid "Mode specifies the number of distribution tails to return. 1= one-tailed, 2 = two-tailed distribution"
-msgstr "tails = 1 རྐྱང་མཇུག་གི་ཁྱབ་ཚུལ་རྩིས་ tails = 2 ཟུང་མཇུག་ཁྱབ་ཚུལ་རྩིས།"
+msgid "Mode specifies the number of distribution tails to return. 1 = one-tailed, 2 = two-tailed distribution"
+msgstr ""
#: sc/inc/scfuncs.hrc:3011
msgctxt "SC_OPCODE_T_TEST"
@@ -10937,8 +10942,8 @@ msgstr "mode"
#: sc/inc/scfuncs.hrc:3024
msgctxt "SC_OPCODE_T_TEST_MS"
-msgid "Mode specifies the number of distribution tails to return. 1= one-tailed, 2 = two-tailed distribution"
-msgstr "tails = 1 རྐྱང་མཇུག་གི་ཁྱབ་ཚུལ་རྩིས་ tails = 2 ཟུང་མཇུག་ཁྱབ་ཚུལ་རྩིས།"
+msgid "Mode specifies the number of distribution tails to return. 1 = one-tailed, 2 = two-tailed distribution"
+msgstr ""
#: sc/inc/scfuncs.hrc:3025
msgctxt "SC_OPCODE_T_TEST_MS"
@@ -18794,23 +18799,23 @@ msgctxt "mergecellsdialog|MergeCellsDialog"
msgid "Merge Cells"
msgstr "རེའུ་མིག་ཟླ་སྒྲིལ།"
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:81
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:84
msgctxt "mergecellsdialog|label"
msgid "Some cells are not empty."
msgstr ""
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:96
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:99
#, fuzzy
msgctxt "mergecellsdialog|move-cells-radio"
msgid "Move the contents of the hidden cells into the first cell"
msgstr "བདམས་པའི་་ས་ཁོངས་ལ་གཞི་གྲངས་ཟློས་མང་ཚུད་ རེའུ་མིག་གཅིག་ལ་ཟླ་སྒྲིལ་རྗེས་ཆེར་གཡོན་སྟེང་ཟུར་གྱི་གཞི་གྲངས་སོར་ཉར་ཁོ་ན་བྱེད།"
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:112
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:115
msgctxt "mergecellsdialog|empty-cells-radio"
msgid "Empty the contents of the hidden cells"
msgstr ""
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:128
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:131
msgctxt "mergecellsdialog|keep-content-radio"
msgid "Keep the contents of the hidden cells"
msgstr ""
diff --git a/source/bo/sd/messages.po b/source/bo/sd/messages.po
index b03ab22b181..13810b5f8b6 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+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"
@@ -13,175 +13,175 @@ msgstr ""
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-#: sd/inc/DocumentRenderer.hrc:29
+#: sd/inc/DocumentRenderer.hrc:27
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Slides"
msgstr "བསྡུས་རིས།"
-#: sd/inc/DocumentRenderer.hrc:30
+#: sd/inc/DocumentRenderer.hrc:28
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Handouts"
msgstr "སློབ་ཁྲིད་འཆར་ཟིན།"
-#: sd/inc/DocumentRenderer.hrc:31
+#: sd/inc/DocumentRenderer.hrc:29
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Notes"
msgstr "།གྲབས་ཉར།"
-#: sd/inc/DocumentRenderer.hrc:32
+#: sd/inc/DocumentRenderer.hrc:30
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Outline"
msgstr "རྩ་གནད།"
-#: sd/inc/DocumentRenderer.hrc:37
+#: sd/inc/DocumentRenderer.hrc:35
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "According to layout"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:38
+#: sd/inc/DocumentRenderer.hrc:36
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "1"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:39
+#: sd/inc/DocumentRenderer.hrc:37
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "2"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:40
+#: sd/inc/DocumentRenderer.hrc:38
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "3"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:41
+#: sd/inc/DocumentRenderer.hrc:39
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "4"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:42
+#: sd/inc/DocumentRenderer.hrc:40
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "6"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:43
+#: sd/inc/DocumentRenderer.hrc:41
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "9"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:48
+#: sd/inc/DocumentRenderer.hrc:46
msgctxt "STR_IMPRESS_PRINT_UI_ORDER_CHOICES"
msgid "Left to right, then down"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:49
+#: sd/inc/DocumentRenderer.hrc:47
msgctxt "STR_IMPRESS_PRINT_UI_ORDER_CHOICES"
msgid "Top to bottom, then right"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:54
+#: sd/inc/DocumentRenderer.hrc:52
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Original colors"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:55
+#: sd/inc/DocumentRenderer.hrc:53
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Grayscale"
msgstr "སྐྱ་ཚད།"
-#: sd/inc/DocumentRenderer.hrc:56
+#: sd/inc/DocumentRenderer.hrc:54
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Black & white"
msgstr "དཀར་ནག(~W)"
-#: sd/inc/DocumentRenderer.hrc:61
+#: sd/inc/DocumentRenderer.hrc:59
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Original size"
msgstr "མ་དེབ་ཆེ་ཆུང་།(~R)"
-#: sd/inc/DocumentRenderer.hrc:62
+#: sd/inc/DocumentRenderer.hrc:60
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Fit to printable page"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:63
+#: sd/inc/DocumentRenderer.hrc:61
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Distribute on multiple sheets of paper"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:64
+#: sd/inc/DocumentRenderer.hrc:62
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Tile sheet of paper with repeated slides"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:69
+#: sd/inc/DocumentRenderer.hrc:67
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Original size"
msgstr "མ་དེབ་ཆེ་ཆུང་།(~R)"
-#: sd/inc/DocumentRenderer.hrc:70
+#: sd/inc/DocumentRenderer.hrc:68
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Fit to printable page"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:71
+#: sd/inc/DocumentRenderer.hrc:69
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Distribute on multiple sheets of paper"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:72
+#: sd/inc/DocumentRenderer.hrc:70
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Tile sheet of paper with repeated pages"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:77
+#: sd/inc/DocumentRenderer.hrc:75
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "All pages"
msgstr "ཡོངས་རྫོགས།"
-#: sd/inc/DocumentRenderer.hrc:78
+#: sd/inc/DocumentRenderer.hrc:76
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "Front sides / right pages"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:79
+#: sd/inc/DocumentRenderer.hrc:77
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "Back sides / left pages"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:84
+#: sd/inc/DocumentRenderer.hrc:82
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~All slides"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:85
+#: sd/inc/DocumentRenderer.hrc:83
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~Slides"
msgstr "བསྡུས་རིས།"
-#: sd/inc/DocumentRenderer.hrc:86
+#: sd/inc/DocumentRenderer.hrc:84
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Se~lection"
msgstr "བྲིས་རྟགས།"
-#: sd/inc/DocumentRenderer.hrc:91
+#: sd/inc/DocumentRenderer.hrc:89
#, fuzzy
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~All pages"
msgstr "ཡོངས་རྫོགས།"
-#: sd/inc/DocumentRenderer.hrc:92
+#: sd/inc/DocumentRenderer.hrc:90
#, fuzzy
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Pa~ges"
msgstr "བསྡུས་རིས།"
-#: sd/inc/DocumentRenderer.hrc:93
+#: sd/inc/DocumentRenderer.hrc:91
#, fuzzy
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Se~lection"
diff --git a/source/bo/svx/messages.po b/source/bo/svx/messages.po
index e3d86a445fc..1d5c00e9763 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: 2018-05-16 16:53+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+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"
@@ -5561,7 +5561,7 @@ msgstr ""
#: svx/uiconfig/ui/safemodedialog.ui:432
msgctxt "safemodedialog|btn_create_zip"
-msgid "Create Zip Archive from User Profile"
+msgid "Archive User Profile"
msgstr ""
#: svx/uiconfig/ui/safemodedialog.ui:445
@@ -9230,9 +9230,9 @@ msgid "Red"
msgstr "དམར་པོ།"
#: include/svx/strings.hrc:565
-msgctxt "RID_SVXSTR_COLOR_VIOLET"
-msgid "Violet"
-msgstr "མུ་མེན་མདོག"
+msgctxt "RID_SVXSTR_COLOR_MAGENTA"
+msgid "Magenta"
+msgstr "མུ་མེན་དམར་མདོག"
#: include/svx/strings.hrc:566
msgctxt "RID_SVXSTR_COLOR_PURPLE"
@@ -9297,8 +9297,8 @@ msgid "Light Red"
msgstr ""
#: include/svx/strings.hrc:579
-msgctxt "RID_SVXSTR_COLOR_LIGHTVIOLET"
-msgid "Light Violet"
+msgctxt "RID_SVXSTR_COLOR_LIGHTMAGENTA"
+msgid "Light Magenta"
msgstr ""
#: include/svx/strings.hrc:580
@@ -9365,8 +9365,8 @@ msgid "Dark Red"
msgstr "དམར་ནག"
#: include/svx/strings.hrc:593
-msgctxt "RID_SVXSTR_COLOR_DARKVIOLET1"
-msgid "Dark Violet"
+msgctxt "RID_SVXSTR_COLOR_DARKMAGENTA"
+msgid "Dark Magenta"
msgstr ""
#: include/svx/strings.hrc:594
@@ -9401,55 +9401,55 @@ msgstr ""
#. Elements of the Tonal color palette
#: include/svx/strings.hrc:601
+msgctxt "RID_SVXSTR_COLOR_VIOLET"
+msgid "Violet"
+msgstr "མུ་མེན་མདོག"
+
+#: include/svx/strings.hrc:602
msgctxt "RID_SVXSTR_COLOR_VIOLET_OUG"
msgid "Violet (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:602
+#: include/svx/strings.hrc:603
msgctxt "RID_SVXSTR_COLOR_BLUE_OUG"
msgid "Blue (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:603
+#: include/svx/strings.hrc:604
msgctxt "RID_SVXSTR_COLOR_AZURE_OUG"
msgid "Azure (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:604
+#: include/svx/strings.hrc:605
msgctxt "RID_SVXSTR_COLOR_SPRINGGREEN_OUG"
msgid "Spring Green (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:605
+#: include/svx/strings.hrc:606
msgctxt "RID_SVXSTR_COLOR_GREEN_OUG"
msgid "Green (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:606
+#: include/svx/strings.hrc:607
msgctxt "RID_SVXSTR_COLOR_CHARTREUSEGREEN_OUG"
msgid "Chartreuse Green (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:607
+#: include/svx/strings.hrc:608
msgctxt "RID_SVXSTR_COLOR_ORANGE_OUG"
msgid "Orange (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:608
+#: include/svx/strings.hrc:609
msgctxt "RID_SVXSTR_COLOR_RED_OUG"
msgid "Red (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:609
+#: include/svx/strings.hrc:610
msgctxt "RID_SVXSTR_COLOR_ROSE_OUG"
msgid "Rose (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:610
-msgctxt "RID_SVXSTR_COLOR_MAGENTA"
-msgid "Magenta"
-msgstr "མུ་མེན་དམར་མདོག"
-
#: include/svx/strings.hrc:611
msgctxt "RID_SVXSTR_COLOR_AZURE"
msgid "Azure"
@@ -12645,13 +12645,13 @@ msgstr "གཡས་སྟོན་མདའ་རྟགས་རྣམ་གྲ
#: include/svx/strings.hrc:1273
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_6"
-msgid "Check mark bullets"
-msgstr "མང་འདེམས་རྟགས་ཀྱི་རྣམ་གྲངས་མཚོན་རྟགས།"
+msgid "Cross mark bullets"
+msgstr ""
#: include/svx/strings.hrc:1274
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_7"
-msgid "Tick mark bullets"
-msgstr "མཚོན་རྟགས་རྣམ་གྲངས་ཀྱི་མཚོན་རྟགས།"
+msgid "Check mark bullets"
+msgstr ""
#: include/svx/strings.hrc:1275
#, fuzzy
diff --git a/source/bo/sw/messages.po b/source/bo/sw/messages.po
index 25fa5ac8540..644dbcdb416 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: 2018-05-22 13:17+0200\n"
+"POT-Creation-Date: 2018-06-12 14:41+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"
@@ -1235,13 +1235,13 @@ msgstr "འདྲེན་སྤྱོད་ཡི་གེ"
#: sw/inc/strings.hrc:172
msgctxt "STR_POOLCOLL_TOX_ILLUSH"
-msgid "Illustration Index Heading"
-msgstr "བར་འཇུག་རི་མོའི་དཀར་ཆག ཁ་བྱང་།"
+msgid "Figure Index Heading"
+msgstr ""
#: sw/inc/strings.hrc:173
msgctxt "STR_POOLCOLL_TOX_ILLUS1"
-msgid "Illustration Index 1"
-msgstr "བར་འཇུག་རི་མོའི་དཀར་ཆག 1"
+msgid "Figure Index 1"
+msgstr ""
#: sw/inc/strings.hrc:174
#, fuzzy
@@ -3735,10 +3735,9 @@ msgid "Table of Objects"
msgstr ""
#: sw/inc/strings.hrc:672
-#, fuzzy
msgctxt "STR_TOX_ILL"
-msgid "Illustration Index"
-msgstr "བར་འཇུག་རི་མོའི་དཀར་ཆག 1"
+msgid "Table of Figures"
+msgstr ""
#: sw/inc/strings.hrc:673
#, c-format
@@ -9758,80 +9757,80 @@ msgctxt "footnotepage|label5"
msgid "Continuation Notice"
msgstr "མཐུད་སྦྲེལ་གྱི་གསལ་བཤད།"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:49
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:55
#, fuzzy
msgctxt "footnotesendnotestabpage|ftnntnum"
msgid "_Restart numbering"
msgstr "བསྐྱར་དུ་སྒྲིག་ཨང་བྱེད་རྒྱུ།"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:91
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:93
#, fuzzy
msgctxt "footnotesendnotestabpage|ftnoffset_label"
msgid "_Start at:"
msgstr "ནས་འགོ་འཛུགས་པ།"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:112
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:111
msgctxt "footnotesendnotestabpage|ftnntnumfmt"
msgid "Custom _format"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:155
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:150
#, fuzzy
msgctxt "footnotesendnotestabpage|ftnsuffix_label"
msgid "Aft_er:"
msgstr "གཡས་ངོས་ཟླུམ་སྐོར།"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:199
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:188
#, fuzzy
msgctxt "footnotesendnotestabpage|ftnprefix_label"
msgid "Be_fore:"
msgstr "གཡོན་ངོས་ཟླུམ་སྐོར།"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:228
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:212
msgctxt "footnotesendnotestabpage|ftnntattextend"
msgid "Collec_t at end of text"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:252
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:234
msgctxt "footnotesendnotestabpage|label1"
msgid "Footnotes"
msgstr "ཞབས་མཆན།"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:289
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:271
msgctxt "footnotesendnotestabpage|endntattextend"
msgid "C_ollect at end of section"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:315
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:295
#, fuzzy
msgctxt "footnotesendnotestabpage|endntnum"
msgid "_Restart numbering"
msgstr "བསྐྱར་དུ་སྒྲིག་ཨང་བྱེད་རྒྱུ།"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:357
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:333
#, fuzzy
msgctxt "footnotesendnotestabpage|endoffset_label"
msgid "_Start at:"
msgstr "ནས་འགོ་འཛུགས་པ།"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:378
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:351
msgctxt "footnotesendnotestabpage|endntnumfmt"
msgid "_Custom format"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:421
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:390
#, fuzzy
msgctxt "footnotesendnotestabpage|endsuffix_label"
msgid "Aft_er:"
msgstr "གཡས་ངོས་ཟླུམ་སྐོར།"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:465
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:428
#, fuzzy
msgctxt "footnotesendnotestabpage|endprefix_label"
msgid "Be_fore:"
msgstr "གཡོན་ངོས་ཟླུམ་སྐོར།"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:500
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:458
#, fuzzy
msgctxt "footnotesendnotestabpage|label2"
msgid "Endnotes"
@@ -9865,29 +9864,29 @@ msgctxt "formatsectiondialog|notes"
msgid "Footnotes/Endnotes"
msgstr "ཞབས་མཆན།(~.)..."
-#: sw/uiconfig/swriter/ui/formattablepage.ui:63
+#: sw/uiconfig/swriter/ui/formattablepage.ui:77
#, fuzzy
msgctxt "formattablepage|nameft"
msgid "_Name"
msgstr "མིང་།"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:79
+#: sw/uiconfig/swriter/ui/formattablepage.ui:91
#, fuzzy
msgctxt "formattablepage|widthft"
msgid "W_idth"
msgstr "ཞེང་ཚད།"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:110
+#: sw/uiconfig/swriter/ui/formattablepage.ui:120
msgctxt "formattablepage|relwidth"
msgid "Relati_ve"
msgstr ""
-#: sw/uiconfig/swriter/ui/formattablepage.ui:155
+#: sw/uiconfig/swriter/ui/formattablepage.ui:160
msgctxt "formattablepage|label45"
msgid "Properties"
msgstr "གཏོགས་གཤིས།"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:194
+#: sw/uiconfig/swriter/ui/formattablepage.ui:195
#, fuzzy
msgctxt "formattablepage|leftft"
msgid "Lef_t"
@@ -9899,70 +9898,70 @@ msgctxt "formattablepage|rightft"
msgid "Ri_ght"
msgstr "གཡས།"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:228
+#: sw/uiconfig/swriter/ui/formattablepage.ui:226
msgctxt "formattablepage|aboveft"
msgid "_Above"
msgstr ""
-#: sw/uiconfig/swriter/ui/formattablepage.ui:245
+#: sw/uiconfig/swriter/ui/formattablepage.ui:241
#, fuzzy
msgctxt "formattablepage|belowft"
msgid "_Below"
msgstr "འོག་ལ།"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:320
+#: sw/uiconfig/swriter/ui/formattablepage.ui:311
msgctxt "formattablepage|label46"
msgid "Spacing"
msgstr "བར་ཆོད།"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:362
+#: sw/uiconfig/swriter/ui/formattablepage.ui:349
#, fuzzy
msgctxt "formattablepage|full"
msgid "A_utomatic"
msgstr "རང་འགུལ།"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:380
+#: sw/uiconfig/swriter/ui/formattablepage.ui:365
#, fuzzy
msgctxt "formattablepage|left"
msgid "_Left"
msgstr "གཡོན།"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:398
+#: sw/uiconfig/swriter/ui/formattablepage.ui:381
#, fuzzy
msgctxt "formattablepage|fromleft"
msgid "_From left"
msgstr "གཡོན་ནས།"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:416
+#: sw/uiconfig/swriter/ui/formattablepage.ui:397
#, fuzzy
msgctxt "formattablepage|right"
msgid "R_ight"
msgstr "གཡས།"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:435
+#: sw/uiconfig/swriter/ui/formattablepage.ui:413
#, fuzzy
msgctxt "formattablepage|center"
msgid "_Center"
msgstr "ནང་།"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:453
+#: sw/uiconfig/swriter/ui/formattablepage.ui:429
#, fuzzy
msgctxt "formattablepage|free"
msgid "_Manual"
msgstr "ལག་ཐབས།"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:478
+#: sw/uiconfig/swriter/ui/formattablepage.ui:452
msgctxt "formattablepage|label43"
msgid "Alignment"
msgstr "སྙོམ་གཤིབ།"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:522
+#: sw/uiconfig/swriter/ui/formattablepage.ui:491
#, fuzzy
msgctxt "formattablepage|label53"
msgid "Text _direction"
msgstr "ཡི་གེའི་ཁ་ཕྱོགས།"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:553
+#: sw/uiconfig/swriter/ui/formattablepage.ui:519
#, fuzzy
msgctxt "formattablepage|label44"
msgid "Properties "
@@ -10354,23 +10353,28 @@ msgctxt "headerfootermenu|insert_pagenumber"
msgid "Insert Page Number"
msgstr ""
-#: sw/uiconfig/swriter/ui/indentpage.ui:52
+#: sw/uiconfig/swriter/ui/headerfootermenu.ui:42
+msgctxt "headerfootermenu|insert_pagecount"
+msgid "Insert Page Count"
+msgstr ""
+
+#: sw/uiconfig/swriter/ui/indentpage.ui:57
msgctxt "indentpage|label1"
msgid "_Before section"
msgstr ""
-#: sw/uiconfig/swriter/ui/indentpage.ui:67
+#: sw/uiconfig/swriter/ui/indentpage.ui:71
msgctxt "indentpage|label3"
msgid "_After section"
msgstr ""
-#: sw/uiconfig/swriter/ui/indentpage.ui:113
+#: sw/uiconfig/swriter/ui/indentpage.ui:115
#, fuzzy
msgctxt "indentpage|label2"
msgid "Indent"
msgstr "ནང་སྡུད།"
-#: sw/uiconfig/swriter/ui/indentpage.ui:142
+#: sw/uiconfig/swriter/ui/indentpage.ui:155
msgctxt "indentpage|preview-atkobject"
msgid "Example"
msgstr "དཔེ་སྟོན།"
@@ -14201,7 +14205,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:68
msgctxt "optcompatpage|format"
-msgid "MS Word-compatible trailing blanks"
+msgid "Word-compatible trailing blanks"
msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:69
@@ -14211,7 +14215,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:70
msgctxt "optcompatpage|format"
-msgid "A database field (e.g., MailMerge) with empty value hides its paragraph"
+msgid "Hide paragraphs of database fields (e.g., mail merge) with an empty value"
msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:71
@@ -17136,138 +17140,138 @@ msgctxt "tableproperties|background"
msgid "Background"
msgstr "རྒྱབ་ལྗོངས།"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:25
-#, fuzzy
-msgctxt "tabletextflowpage|liststore1"
-msgid "Horizontal"
-msgstr "ཆུ་སྙོམས་ཀྱི་ཁ་ཕྱོགས།"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:29
-#, fuzzy
-msgctxt "tabletextflowpage|liststore1"
-msgid "Vertical"
-msgstr "དྲང་འཕྱང་ཁ་ཕྱོགས།"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:33
-msgctxt "tabletextflowpage|liststore1"
-msgid "Use superordinate object settings"
-msgstr "རིམ་པ་མཐོ་བའི་བྱ་ཡུལ་གནས་ས་བེད་སྤྱོད་བྱེད་རྒྱུ།"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:47
-#, fuzzy
-msgctxt "tabletextflowpage|liststore2"
-msgid "Top"
-msgstr "སྟེང་ཕྱོགས།"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:51
-msgctxt "tabletextflowpage|liststore2"
-msgid "Centered"
-msgstr "དཀྱིལ་བསྡུ།"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:55
-#, fuzzy
-msgctxt "tabletextflowpage|liststore2"
-msgid "Bottom"
-msgstr "འོག་ཕྱོགས།"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:97
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:53
#, fuzzy
msgctxt "tabletextflowpage|break"
msgid "_Break"
msgstr "ཁ་ཕྲལ་བ།(~B)"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:112
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:68
#, fuzzy
msgctxt "tabletextflowpage|page"
msgid "_Page"
msgstr "ཤོག་ལྷེ།"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:132
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:87
#, fuzzy
msgctxt "tabletextflowpage|column"
msgid "Col_umn"
msgstr "སྟར།"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:151
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:106
#, fuzzy
msgctxt "tabletextflowpage|before"
msgid "Be_fore"
msgstr "གཡོན་ངོས་ཟླུམ་སྐོར།"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:171
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:125
#, fuzzy
msgctxt "tabletextflowpage|after"
msgid "_After"
msgstr "གཡས་ངོས་ཟླུམ་སྐོར།"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:203
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:158
#, fuzzy
msgctxt "tabletextflowpage|pagestyle"
msgid "With Page St_yle"
msgstr "ཤོག་ངོས་ཀྱི་བཟོ་ལྟ་རྩོམ་སྒྲིག"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:224
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:177
#, fuzzy
msgctxt "tabletextflowpage|pagenoft"
msgid "Page _number"
msgstr "ཤོག་ཨང་།"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:257
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:213
#, fuzzy
msgctxt "tabletextflowpage|pagestylelb-atkobject"
msgid "With Page Style"
msgstr "ཤོག་ངོས་ཀྱི་བཟོ་ལྟ་རྩོམ་སྒྲིག"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:274
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:230
msgctxt "tabletextflowpage|split"
msgid "Allow _table to split across pages and columns"
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:289
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:245
#, fuzzy
msgctxt "tabletextflowpage|splitrow"
msgid "Allow row to break a_cross pages and columns"
msgstr "ཤོག་བརྒལ་ཕྲེང་བཅད་ཆོག་པ།"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:306
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:262
#, fuzzy
msgctxt "tabletextflowpage|keep"
msgid "_Keep with next paragraph"
msgstr "གཤམ་གྱི་དུམ་ཚན་དང་ཤོག་ལྷེ་གཅིག་པ།"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:328
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:284
msgctxt "tabletextflowpage|label40"
msgid "Text _orientation"
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:361
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:298
+#, fuzzy
+msgctxt "tabletextflowpage|liststore1"
+msgid "Horizontal"
+msgstr "ཆུ་སྙོམས་ཀྱི་ཁ་ཕྱོགས།"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:299
+#, fuzzy
+msgctxt "tabletextflowpage|liststore1"
+msgid "Vertical"
+msgstr "དྲང་འཕྱང་ཁ་ཕྱོགས།"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:300
+msgctxt "tabletextflowpage|liststore1"
+msgid "Use superordinate object settings"
+msgstr "རིམ་པ་མཐོ་བའི་བྱ་ཡུལ་གནས་ས་བེད་སྤྱོད་བྱེད་རྒྱུ།"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:321
#, fuzzy
msgctxt "tabletextflowpage|headline"
msgid "R_epeat heading"
msgstr "ཤོག་ངོས་རེ་རེར་བསྐྱར་ཟློས་སུ་མངོན།(~P)"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:383
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:343
msgctxt "tabletextflowpage|label38"
msgid "The first "
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:396
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:356
#, fuzzy
msgctxt "tabletextflowpage|label39"
msgid "rows"
msgstr "row_num"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:434
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:395
msgctxt "tabletextflowpage|label35"
msgid "Text Flow"
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:467
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:428
msgctxt "tabletextflowpage|label41"
msgid "_Vertical alignment"
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:495
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:442
+#, fuzzy
+msgctxt "tabletextflowpage|liststore2"
+msgid "Top"
+msgstr "སྟེང་ཕྱོགས།"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:443
+msgctxt "tabletextflowpage|liststore2"
+msgid "Centered"
+msgstr "དཀྱིལ་བསྡུ།"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:444
+#, fuzzy
+msgctxt "tabletextflowpage|liststore2"
+msgid "Bottom"
+msgstr "འོག་ཕྱོགས།"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:460
msgctxt "tabletextflowpage|label36"
msgid "Alignment"
msgstr "སྙོམ་གཤིབ།"
@@ -18107,10 +18111,9 @@ msgid "Alphabetical Index"
msgstr ""
#: sw/uiconfig/swriter/ui/tocindexpage.ui:58
-#, fuzzy
msgctxt "tocindexpage|liststore1"
-msgid "Illustration Index"
-msgstr "བར་འཇུག་རི་མོའི་དཀར་ཆག 1"
+msgid "Table of Figures"
+msgstr ""
#: sw/uiconfig/swriter/ui/tocindexpage.ui:62
msgctxt "tocindexpage|liststore1"
diff --git a/source/bo/writerperfect/messages.po b/source/bo/writerperfect/messages.po
index ae978898f41..af96021820c 100644
--- a/source/bo/writerperfect/messages.po
+++ b/source/bo/writerperfect/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-16 16:54+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+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"
@@ -65,100 +65,100 @@ msgctxt "exportepub|generalft"
msgid "General"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:122
+#: writerperfect/uiconfig/ui/exportepub.ui:121
#, fuzzy
msgctxt "exportepub|versionft"
msgid "Version:"
msgstr "དཔར་གཞི།(~V):"
-#: writerperfect/uiconfig/ui/exportepub.ui:139
+#: writerperfect/uiconfig/ui/exportepub.ui:138
msgctxt "exportepub|epub3"
msgid "EPUB 3.0"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:140
+#: writerperfect/uiconfig/ui/exportepub.ui:139
msgctxt "exportepub|epub2"
msgid "EPUB 2.0"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:175
+#: writerperfect/uiconfig/ui/exportepub.ui:174
msgctxt "exportepub|splitft"
msgid "Split method:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:192
+#: writerperfect/uiconfig/ui/exportepub.ui:191
#, fuzzy
msgctxt "exportepub|splitpage"
msgid "Page break"
msgstr "ཤོག་གྲངས་བརྗེ་བ།"
-#: writerperfect/uiconfig/ui/exportepub.ui:193
+#: writerperfect/uiconfig/ui/exportepub.ui:192
#, fuzzy
msgctxt "exportepub|splitheading"
msgid "Heading"
msgstr "ཁ་བྱང་།"
-#: writerperfect/uiconfig/ui/exportepub.ui:228
+#: writerperfect/uiconfig/ui/exportepub.ui:227
msgctxt "exportepub|layoutft"
msgid "Layout method:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:245
+#: writerperfect/uiconfig/ui/exportepub.ui:244
msgctxt "exportepub|layoutreflowable"
msgid "Reflowable"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:246
+#: writerperfect/uiconfig/ui/exportepub.ui:245
msgctxt "exportepub|layoutfixed"
msgid "Fixed"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:281
+#: writerperfect/uiconfig/ui/exportepub.ui:280
msgctxt "exportepub|coverimageft"
msgid "Custom cover image:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:311
+#: writerperfect/uiconfig/ui/exportepub.ui:310
msgctxt "exportepub|coverbutton"
msgid "Browse..."
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:355
+#: writerperfect/uiconfig/ui/exportepub.ui:354
msgctxt "exportepub|mediadirft"
msgid "Custom media directory:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:385
+#: writerperfect/uiconfig/ui/exportepub.ui:384
msgctxt "exportepub|mediabutton"
msgid "Browse..."
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:429
+#: writerperfect/uiconfig/ui/exportepub.ui:428
msgctxt "exportepub|metadataft"
msgid "Metadata"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:470
+#: writerperfect/uiconfig/ui/exportepub.ui:468
msgctxt "exportepub|identifierft"
msgid "Identifier:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:485
+#: writerperfect/uiconfig/ui/exportepub.ui:483
msgctxt "exportepub|titleft"
msgid "Title:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:511
+#: writerperfect/uiconfig/ui/exportepub.ui:509
msgctxt "exportepub|authorft"
msgid "Author:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:537
+#: writerperfect/uiconfig/ui/exportepub.ui:535
msgctxt "exportepub|languageft"
msgid "Language:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:563
+#: writerperfect/uiconfig/ui/exportepub.ui:561
msgctxt "exportepub|dateft"
msgid "Date:"
msgstr ""
diff --git a/source/br/cui/messages.po b/source/br/cui/messages.po
index 0a1ed255968..ec5c84cfd12 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2018-03-21 11:54+0000\n"
"Last-Translator: Tornoz <tornoz@laposte.net>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -9915,97 +9915,97 @@ msgctxt "positionsizedialog|PositionAndSizeDialog"
msgid "Position and Size"
msgstr "Lec'hiadur ha ment"
-#: cui/uiconfig/ui/positionsizedialog.ui:107
+#: cui/uiconfig/ui/positionsizedialog.ui:136
msgctxt "positionsizedialog|RID_SVXPAGE_POSITION_SIZE"
msgid "Position and Size"
msgstr "Lec'hiadur ha ment"
-#: cui/uiconfig/ui/positionsizedialog.ui:129
+#: cui/uiconfig/ui/positionsizedialog.ui:182
msgctxt "positionsizedialog|RID_SVXPAGE_SWPOSSIZE"
msgid "Position and Size"
msgstr "Lec'hiadur ha ment"
-#: cui/uiconfig/ui/positionsizedialog.ui:152
+#: cui/uiconfig/ui/positionsizedialog.ui:229
msgctxt "positionsizedialog|RID_SVXPAGE_ANGLE"
msgid "Rotation"
msgstr "C'hwelañ"
-#: cui/uiconfig/ui/positionsizedialog.ui:175
+#: cui/uiconfig/ui/positionsizedialog.ui:276
msgctxt "positionsizedialog|RID_SVXPAGE_SLANT"
msgid "Slant & Corner Radius"
msgstr "Stouadur & skin ar c'horn"
-#: cui/uiconfig/ui/possizetabpage.ui:40
+#: cui/uiconfig/ui/possizetabpage.ui:61
msgctxt "possizetabpage|FT_POS_X"
msgid "Position _X:"
msgstr "Lec'hiadur _X :"
-#: cui/uiconfig/ui/possizetabpage.ui:56
+#: cui/uiconfig/ui/possizetabpage.ui:75
msgctxt "possizetabpage|FT_POS_Y"
msgid "Position _Y:"
msgstr "Lec'hiadur _Y :"
-#: cui/uiconfig/ui/possizetabpage.ui:110
+#: cui/uiconfig/ui/possizetabpage.ui:128
msgctxt "possizetabpage|FT_POSREFERENCE"
msgid "_Base point:"
msgstr "Poent _diazez :"
-#: cui/uiconfig/ui/possizetabpage.ui:148
+#: cui/uiconfig/ui/possizetabpage.ui:182
msgctxt "possizetabpage|label1"
msgid "Position"
msgstr "Lec'hiadur"
-#: cui/uiconfig/ui/possizetabpage.ui:190
+#: cui/uiconfig/ui/possizetabpage.ui:224
msgctxt "possizetabpage|FT_WIDTH"
msgid "Wi_dth:"
msgstr "Le_d :"
-#: cui/uiconfig/ui/possizetabpage.ui:206
+#: cui/uiconfig/ui/possizetabpage.ui:238
msgctxt "possizetabpage|FT_HEIGHT"
msgid "H_eight:"
msgstr "S_av :"
-#: cui/uiconfig/ui/possizetabpage.ui:247
+#: cui/uiconfig/ui/possizetabpage.ui:276
msgctxt "possizetabpage|CBX_SCALE"
msgid "_Keep ratio"
msgstr "_Kenfeuriek"
-#: cui/uiconfig/ui/possizetabpage.ui:279
+#: cui/uiconfig/ui/possizetabpage.ui:307
msgctxt "possizetabpage|FT_SIZEREFERENCE"
msgid "Base _point:"
msgstr "_Poent diazez :"
-#: cui/uiconfig/ui/possizetabpage.ui:317
+#: cui/uiconfig/ui/possizetabpage.ui:361
msgctxt "possizetabpage|label2"
msgid "Size"
msgstr "Ment "
-#: cui/uiconfig/ui/possizetabpage.ui:356
+#: cui/uiconfig/ui/possizetabpage.ui:401
msgctxt "possizetabpage|TSB_POSPROTECT"
msgid "Positio_n"
msgstr "Le_c'hiadur"
-#: cui/uiconfig/ui/possizetabpage.ui:373
+#: cui/uiconfig/ui/possizetabpage.ui:418
msgctxt "possizetabpage|TSB_SIZEPROTECT"
msgid "_Size"
msgstr "_Ment"
-#: cui/uiconfig/ui/possizetabpage.ui:397
+#: cui/uiconfig/ui/possizetabpage.ui:441
msgctxt "possizetabpage|label3"
msgid "Protect"
msgstr "Gwareziñ"
-#: cui/uiconfig/ui/possizetabpage.ui:430
+#: cui/uiconfig/ui/possizetabpage.ui:475
msgctxt "possizetabpage|TSB_AUTOGROW_WIDTH"
msgid "_Fit width to text"
msgstr "Lakaat al led da _genglotañ gant an destenn "
-#: cui/uiconfig/ui/possizetabpage.ui:447
+#: cui/uiconfig/ui/possizetabpage.ui:492
msgctxt "possizetabpage|TSB_AUTOGROW_HEIGHT"
msgid "Fit _height to text"
msgstr "Lakaat ar _sav da genglotañ gant an destenn "
-#: cui/uiconfig/ui/possizetabpage.ui:471
+#: cui/uiconfig/ui/possizetabpage.ui:515
msgctxt "possizetabpage|label4"
msgid "Adapt"
msgstr "Azasaat"
@@ -10205,47 +10205,47 @@ msgctxt "recordnumberdialog|label2"
msgid "go to record"
msgstr "mont d'an enrolladenn"
-#: cui/uiconfig/ui/rotationtabpage.ui:52
+#: cui/uiconfig/ui/rotationtabpage.ui:56
msgctxt "rotationtabpage|FT_POS_X"
msgid "Position _X:"
msgstr "Lec'hiadur _X :"
-#: cui/uiconfig/ui/rotationtabpage.ui:66
+#: cui/uiconfig/ui/rotationtabpage.ui:70
msgctxt "rotationtabpage|FT_POS_Y"
msgid "Position _Y:"
msgstr "Lec'hiadur _Y :"
-#: cui/uiconfig/ui/rotationtabpage.ui:116
+#: cui/uiconfig/ui/rotationtabpage.ui:123
msgctxt "rotationtabpage|FT_POSPRESETS"
msgid "_Default settings:"
msgstr "Arventennoù dre _ziouer :"
-#: cui/uiconfig/ui/rotationtabpage.ui:130
+#: cui/uiconfig/ui/rotationtabpage.ui:151
msgctxt "rotationtabpage|CTL_RECT|tooltip_text"
msgid "Rotation point"
msgstr "Poent c'hwelañ"
-#: cui/uiconfig/ui/rotationtabpage.ui:155
+#: cui/uiconfig/ui/rotationtabpage.ui:178
msgctxt "rotationtabpage|label1"
msgid "Pivot Point"
msgstr "Poent c'hwelañ"
-#: cui/uiconfig/ui/rotationtabpage.ui:197
+#: cui/uiconfig/ui/rotationtabpage.ui:220
msgctxt "rotationtabpage|FT_ANGLE"
msgid "_Angle:"
msgstr "_Korn :"
-#: cui/uiconfig/ui/rotationtabpage.ui:238
+#: cui/uiconfig/ui/rotationtabpage.ui:263
msgctxt "rotationtabpage|FT_ANGLEPRESETS"
msgid "Default _settings:"
msgstr "Arventennoù dre _ziouer :"
-#: cui/uiconfig/ui/rotationtabpage.ui:252
+#: cui/uiconfig/ui/rotationtabpage.ui:287
msgctxt "rotationtabpage|CTL_ANGLE|tooltip_text"
msgid "Rotation Angle"
msgstr "Korn ar c'hwelañ"
-#: cui/uiconfig/ui/rotationtabpage.ui:277
+#: cui/uiconfig/ui/rotationtabpage.ui:314
msgctxt "rotationtabpage|label2"
msgid "Rotation Angle"
msgstr "Korn ar c'hwelañ"
@@ -10627,52 +10627,52 @@ msgctxt "similaritysearchdialog|relaxbox"
msgid "_Combine"
msgstr "Keda_ozañ"
-#: cui/uiconfig/ui/slantcornertabpage.ui:50
+#: cui/uiconfig/ui/slantcornertabpage.ui:70
msgctxt "slantcornertabpage|label5"
msgid "_X:"
msgstr "_X :"
-#: cui/uiconfig/ui/slantcornertabpage.ui:88
+#: cui/uiconfig/ui/slantcornertabpage.ui:110
msgctxt "slantcornertabpage|label6"
msgid "_Y:"
msgstr "_Y :"
-#: cui/uiconfig/ui/slantcornertabpage.ui:125
+#: cui/uiconfig/ui/slantcornertabpage.ui:149
msgctxt "slantcornertabpage|label3"
msgid "Control Point 1"
msgstr "Poent reoliñ 1"
-#: cui/uiconfig/ui/slantcornertabpage.ui:159
+#: cui/uiconfig/ui/slantcornertabpage.ui:183
msgctxt "slantcornertabpage|FT_RADIUS"
msgid "_Radius:"
msgstr "_Skin :"
-#: cui/uiconfig/ui/slantcornertabpage.ui:189
+#: cui/uiconfig/ui/slantcornertabpage.ui:214
msgctxt "slantcornertabpage|label1"
msgid "Corner Radius"
msgstr "Skin ar c'horn"
-#: cui/uiconfig/ui/slantcornertabpage.ui:223
+#: cui/uiconfig/ui/slantcornertabpage.ui:248
msgctxt "slantcornertabpage|FT_ANGLE"
msgid "_Angle:"
msgstr "_Korn :"
-#: cui/uiconfig/ui/slantcornertabpage.ui:253
+#: cui/uiconfig/ui/slantcornertabpage.ui:279
msgctxt "slantcornertabpage|label2"
msgid "Slant"
msgstr "Stouiñ"
-#: cui/uiconfig/ui/slantcornertabpage.ui:294
+#: cui/uiconfig/ui/slantcornertabpage.ui:320
msgctxt "slantcornertabpage|label4"
msgid "_X:"
msgstr "_X :"
-#: cui/uiconfig/ui/slantcornertabpage.ui:332
+#: cui/uiconfig/ui/slantcornertabpage.ui:360
msgctxt "slantcornertabpage|label7"
msgid "_Y:"
msgstr "_Y :"
-#: cui/uiconfig/ui/slantcornertabpage.ui:369
+#: cui/uiconfig/ui/slantcornertabpage.ui:399
msgctxt "slantcornertabpage|label8"
msgid "Control Point 2"
msgstr "Poent reoliñ 2"
@@ -10953,112 +10953,112 @@ msgctxt "storedwebconnectiondialog|change"
msgid "_Change Password..."
msgstr "_Kemmañ ar ger-tremen..."
-#: cui/uiconfig/ui/swpossizepage.ui:74
+#: cui/uiconfig/ui/swpossizepage.ui:85
msgctxt "swpossizepage|widthft"
msgid "_Width:"
msgstr "_Led :"
-#: cui/uiconfig/ui/swpossizepage.ui:111
+#: cui/uiconfig/ui/swpossizepage.ui:123
msgctxt "swpossizepage|heightft"
msgid "H_eight:"
msgstr "S_av :"
-#: cui/uiconfig/ui/swpossizepage.ui:128
+#: cui/uiconfig/ui/swpossizepage.ui:141
msgctxt "swpossizepage|ratio"
msgid "_Keep ratio"
msgstr "_Mirout ar c'henfeur"
-#: cui/uiconfig/ui/swpossizepage.ui:149
+#: cui/uiconfig/ui/swpossizepage.ui:162
msgctxt "swpossizepage|label2"
msgid "Size"
msgstr "Ment "
-#: cui/uiconfig/ui/swpossizepage.ui:205
+#: cui/uiconfig/ui/swpossizepage.ui:218
msgctxt "swpossizepage|topage"
msgid "To _page"
msgstr "Ouzh ar _bajenn"
-#: cui/uiconfig/ui/swpossizepage.ui:222
+#: cui/uiconfig/ui/swpossizepage.ui:234
msgctxt "swpossizepage|topara"
msgid "To paragrap_h"
msgstr "Ouzh ar rann_bennad"
-#: cui/uiconfig/ui/swpossizepage.ui:238
+#: cui/uiconfig/ui/swpossizepage.ui:250
msgctxt "swpossizepage|tochar"
msgid "To cha_racter"
msgstr "Ouzh an a_rouezenn"
-#: cui/uiconfig/ui/swpossizepage.ui:254
+#: cui/uiconfig/ui/swpossizepage.ui:266
msgctxt "swpossizepage|aschar"
msgid "_As character"
msgstr "_Evel arouezenn"
-#: cui/uiconfig/ui/swpossizepage.ui:270
+#: cui/uiconfig/ui/swpossizepage.ui:282
msgctxt "swpossizepage|toframe"
msgid "To _frame"
msgstr "Ouzh ar _stern"
-#: cui/uiconfig/ui/swpossizepage.ui:292
+#: cui/uiconfig/ui/swpossizepage.ui:304
msgctxt "swpossizepage|label1"
msgid "Anchor"
msgstr "Eoriñ"
-#: cui/uiconfig/ui/swpossizepage.ui:333
+#: cui/uiconfig/ui/swpossizepage.ui:344
msgctxt "swpossizepage|horiposft"
msgid "Hori_zontal:"
msgstr "A-_blaen :"
-#: cui/uiconfig/ui/swpossizepage.ui:347
+#: cui/uiconfig/ui/swpossizepage.ui:358
msgctxt "swpossizepage|horibyft"
msgid "b_y:"
msgstr "_gant :"
-#: cui/uiconfig/ui/swpossizepage.ui:361
+#: cui/uiconfig/ui/swpossizepage.ui:372
msgctxt "swpossizepage|vertbyft"
msgid "_by:"
msgstr "g_ant :"
-#: cui/uiconfig/ui/swpossizepage.ui:375
+#: cui/uiconfig/ui/swpossizepage.ui:386
msgctxt "swpossizepage|horitoft"
msgid "_to:"
msgstr "_da :"
-#: cui/uiconfig/ui/swpossizepage.ui:421
+#: cui/uiconfig/ui/swpossizepage.ui:433
msgctxt "swpossizepage|vertposft"
msgid "_Vertical:"
msgstr "A-_serzh :"
-#: cui/uiconfig/ui/swpossizepage.ui:457
+#: cui/uiconfig/ui/swpossizepage.ui:470
msgctxt "swpossizepage|verttoft"
msgid "t_o:"
msgstr "_da :"
-#: cui/uiconfig/ui/swpossizepage.ui:478
+#: cui/uiconfig/ui/swpossizepage.ui:492
msgctxt "swpossizepage|mirror"
msgid "_Mirror on even pages"
msgstr "Keñver-ha-keñver war ar pajennoù _hebar"
-#: cui/uiconfig/ui/swpossizepage.ui:495
+#: cui/uiconfig/ui/swpossizepage.ui:509
msgctxt "swpossizepage|followtextflow"
msgid "Follow te_xt flow"
msgstr "Doujañs d'ar gwide_nnadurioù"
-#: cui/uiconfig/ui/swpossizepage.ui:518
+#: cui/uiconfig/ui/swpossizepage.ui:532
msgctxt "swpossizepage|label11"
msgid "Position"
msgstr "Lec'hiadur"
-#: cui/uiconfig/ui/swpossizepage.ui:549
+#: cui/uiconfig/ui/swpossizepage.ui:563
msgctxt "swpossizepage|pos"
msgid "Positio_n"
msgstr "Lec'hia_dur"
-#: cui/uiconfig/ui/swpossizepage.ui:565
+#: cui/uiconfig/ui/swpossizepage.ui:579
msgctxt "swpossizepage|size"
msgid "_Size"
msgstr "_Ment"
-#: cui/uiconfig/ui/swpossizepage.ui:587
+#: cui/uiconfig/ui/swpossizepage.ui:601
msgctxt "swpossizepage|label3"
msgid "Protect"
msgstr "Gwareziñ"
@@ -11249,12 +11249,12 @@ msgctxt "textattrtabpage|label2"
msgid "Spacing to Borders"
msgstr "Esaouiñ e-keñver ar riblennoù"
-#: cui/uiconfig/ui/textattrtabpage.ui:425
+#: cui/uiconfig/ui/textattrtabpage.ui:423
msgctxt "textattrtabpage|TSB_FULL_WIDTH"
msgid "Full _width"
msgstr "War al led a-_bezh"
-#: cui/uiconfig/ui/textattrtabpage.ui:448
+#: cui/uiconfig/ui/textattrtabpage.ui:446
msgctxt "textattrtabpage|label3"
msgid "Text Anchor"
msgstr "Eoriñ an destenn"
diff --git a/source/br/filter/source/config/fragments/filters.po b/source/br/filter/source/config/fragments/filters.po
index 7ab8731b2c0..3cd55041027 100644
--- a/source/br/filter/source/config/fragments/filters.po
+++ b/source/br/filter/source/config/fragments/filters.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-16 16:54+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2017-02-23 10:07+0000\n"
"Last-Translator: Tornoz <tornoz@laposte.net>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -464,8 +464,8 @@ msgctxt ""
"MS Word 2003 XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Word 2003 XML"
-msgstr "XML Microsoft Word 2003"
+msgid "Word 2003 XML"
+msgstr ""
#: MS_Word_2007_XML.xcu
msgctxt ""
@@ -1283,8 +1283,8 @@ msgctxt ""
"Calc MS Excel 2007 VBA XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Excel 2007-2016 XML (macro enabled)"
-msgstr "Restr mod XML Microsoft Excel 2007-2016 (makro gweredekaet)"
+msgid "Excel 2007–2019 (macro-enabled)"
+msgstr ""
#: calc_MS_Excel_2007_XML.xcu
msgctxt ""
diff --git a/source/br/filter/source/config/fragments/types.po b/source/br/filter/source/config/fragments/types.po
index 7a37da45dae..fc822c60629 100644
--- a/source/br/filter/source/config/fragments/types.po
+++ b/source/br/filter/source/config/fragments/types.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-08 15:11+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2015-11-11 10:05+0000\n"
"Last-Translator: Alan <alan.monfort@free.fr>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -292,8 +292,8 @@ msgctxt ""
"writer_MS_Word_2003_XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Word 2003 XML"
-msgstr "Microsoft Word 2003 XML"
+msgid "Word 2003 XML"
+msgstr ""
#: writer_MS_Word_2007_XML.xcu
msgctxt ""
diff --git a/source/br/fpicker/messages.po b/source/br/fpicker/messages.po
index 476b36b6614..711160f8431 100644
--- a/source/br/fpicker/messages.po
+++ b/source/br/fpicker/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+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"
@@ -271,13 +271,13 @@ msgstr ""
#: fpicker/uiconfig/ui/foldernamedialog.ui:8
msgctxt "foldernamedialog|FolderNameDialog"
-msgid "Folder Name ?"
-msgstr "Anv an teuliad ?"
+msgid "Folder Name"
+msgstr ""
#: fpicker/uiconfig/ui/foldernamedialog.ui:91
msgctxt "foldernamedialog|label2"
-msgid "Na_me"
-msgstr "A_nv"
+msgid "Na_me:"
+msgstr ""
#: fpicker/uiconfig/ui/foldernamedialog.ui:122
msgctxt "foldernamedialog|label1"
diff --git a/source/br/officecfg/registry/data/org/openoffice/Office/UI.po b/source/br/officecfg/registry/data/org/openoffice/Office/UI.po
index 8a5f9935c9a..a27e6aa42ba 100644
--- a/source/br/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/br/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-22 13:17+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2016-12-01 12:45+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -26729,8 +26729,8 @@ msgctxt ""
"..WriterCommands.UserInterface.Commands..uno:TextAttributes\n"
"Label\n"
"value.text"
-msgid "Text Attributes"
-msgstr "Doareennoù testenn"
+msgid "Text Attributes..."
+msgstr ""
#: WriterCommands.xcu
msgctxt ""
diff --git a/source/br/readlicense_oo/docs.po b/source/br/readlicense_oo/docs.po
index 8ed99e19067..b5926a29afd 100644
--- a/source/br/readlicense_oo/docs.po
+++ b/source/br/readlicense_oo/docs.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-04-17 15:54+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2016-07-01 18:45+0000\n"
"Last-Translator: Alan <alan.monfort@free.fr>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -117,8 +117,8 @@ msgctxt ""
"readme.xrm\n"
"macxiOSX\n"
"readmeitem.text"
-msgid "MacOSX 10.8 (Mountain Lion) or higher"
-msgstr "MacOSX 10.8 (Mountain Lion) pe nevesoc'h"
+msgid "MacOSX 10.9 (Mavericks) or higher"
+msgstr ""
#: readme.xrm
msgctxt ""
diff --git a/source/br/sc/messages.po b/source/br/sc/messages.po
index 83379e1bdb5..716c0c91bdc 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-12 14:40+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"
@@ -1869,16 +1869,21 @@ msgid "Nested arrays are not supported."
msgstr "N'eo ket skoret an ogedoù kenweet."
#: sc/inc/globstr.hrc:390
+msgctxt "STR_ERR_LONG_BAD_ARRAY_CONTENT"
+msgid "Unsupported inline array content."
+msgstr ""
+
+#: sc/inc/globstr.hrc:391
msgctxt "STR_UNDO_TEXTTOCOLUMNS"
msgid "Text to Columns"
msgstr "Testenn da vannoù"
-#: sc/inc/globstr.hrc:391
+#: sc/inc/globstr.hrc:392
msgctxt "STR_DOC_UPDATED"
msgid "Your spreadsheet has been updated with changes saved by other users."
msgstr "Hizivaet eo bet ho renkell gant kemmoù graet gant arveriadoù all."
-#: sc/inc/globstr.hrc:392
+#: sc/inc/globstr.hrc:393
msgctxt "STR_DOC_WILLBESAVED"
msgid ""
"The spreadsheet must be saved now to activate sharing mode.\n"
@@ -1889,7 +1894,7 @@ msgstr ""
"\n"
"Fellout a ra deoc'h kenderc'hel ganti ?"
-#: sc/inc/globstr.hrc:393
+#: sc/inc/globstr.hrc:394
msgctxt "STR_DOC_WILLNOTBESAVED"
msgid ""
"Already resolved merge conflicts will be lost and your changes to the shared spreadsheet will not be saved.\n"
@@ -1900,7 +1905,7 @@ msgstr ""
"\n"
"Ha fellout a ra deoc'h kenderc'hel ganti ?"
-#: sc/inc/globstr.hrc:394
+#: sc/inc/globstr.hrc:395
msgctxt "STR_DOC_DISABLESHARED"
msgid ""
"Disabling shared mode of a spreadsheet hinders all other users of the shared spreadsheet to merge back their work.\n"
@@ -1911,7 +1916,7 @@ msgstr ""
"\n"
"Ha fellout a ra deoc'h kenderc'hel ganti ?"
-#: sc/inc/globstr.hrc:395
+#: sc/inc/globstr.hrc:396
msgctxt "STR_DOC_NOLONGERSHARED"
msgid ""
"This spreadsheet is no longer in shared mode.\n"
@@ -1922,7 +1927,7 @@ msgstr ""
"\n"
"Enrollit ho renkell en ur restr disheñvel ha touezit ho kemmoù er renkell rannet dre zorn."
-#: sc/inc/globstr.hrc:396
+#: sc/inc/globstr.hrc:397
msgctxt "STR_FILE_LOCKED_TRY_LATER"
msgid ""
"The shared spreadsheet file is locked due to a merge in progress by user: '%1'\n"
@@ -1933,7 +1938,7 @@ msgstr ""
"\n"
"N'haller ket diweredekaat ar mod dre rannañ evit un teul prennet. Klaskit en-dro diwezhatoc'h."
-#: sc/inc/globstr.hrc:397
+#: sc/inc/globstr.hrc:398
msgctxt "STR_FILE_LOCKED_SAVE_LATER"
msgid ""
"The shared spreadsheet file is locked due to a merge in progress by user: '%1'\n"
@@ -1944,147 +1949,147 @@ msgstr ""
"\n"
"Klaskit en-dro da enrollañ ho kemmoù diwezhatoc'h."
-#: sc/inc/globstr.hrc:398
+#: sc/inc/globstr.hrc:399
msgctxt "STR_UNKNOWN_USER"
msgid "Unknown User"
msgstr "Arveriad dianav"
-#: sc/inc/globstr.hrc:399
+#: sc/inc/globstr.hrc:400
msgctxt "STR_SHAPE_AUTOSHAPE"
msgid "AutoShape"
msgstr "EmStummañ"
-#: sc/inc/globstr.hrc:400
+#: sc/inc/globstr.hrc:401
msgctxt "STR_SHAPE_RECTANGLE"
msgid "Rectangle"
msgstr "Reizhkorneg"
-#: sc/inc/globstr.hrc:401
+#: sc/inc/globstr.hrc:402
msgctxt "STR_SHAPE_LINE"
msgid "Line"
msgstr "Linenn"
-#: sc/inc/globstr.hrc:402
+#: sc/inc/globstr.hrc:403
msgctxt "STR_SHAPE_OVAL"
msgid "Oval"
msgstr "Elipsenn"
-#: sc/inc/globstr.hrc:403
+#: sc/inc/globstr.hrc:404
msgctxt "STR_FORM_BUTTON"
msgid "Button"
msgstr "Afell"
-#: sc/inc/globstr.hrc:404
+#: sc/inc/globstr.hrc:405
msgctxt "STR_FORM_CHECKBOX"
msgid "Check Box"
msgstr "Log da gevaskañ"
-#: sc/inc/globstr.hrc:405
+#: sc/inc/globstr.hrc:406
msgctxt "STR_FORM_OPTIONBUTTON"
msgid "Option Button"
msgstr "Afell radio"
-#: sc/inc/globstr.hrc:406
+#: sc/inc/globstr.hrc:407
msgctxt "STR_FORM_LABEL"
msgid "Label"
msgstr "Tikedenn"
-#: sc/inc/globstr.hrc:407
+#: sc/inc/globstr.hrc:408
msgctxt "STR_FORM_LISTBOX"
msgid "List Box"
msgstr "Maez roll"
-#: sc/inc/globstr.hrc:408
+#: sc/inc/globstr.hrc:409
msgctxt "STR_FORM_GROUPBOX"
msgid "Group Box"
msgstr "Maez stroll"
-#: sc/inc/globstr.hrc:409
+#: sc/inc/globstr.hrc:410
msgctxt "STR_FORM_DROPDOWN"
msgid "Drop Down"
msgstr "Dibunañ"
-#: sc/inc/globstr.hrc:410
+#: sc/inc/globstr.hrc:411
msgctxt "STR_FORM_SPINNER"
msgid "Spinner"
msgstr "Konterez"
-#: sc/inc/globstr.hrc:411
+#: sc/inc/globstr.hrc:412
msgctxt "STR_FORM_SCROLLBAR"
msgid "Scroll Bar"
msgstr "Barrenn dibunañ"
-#: sc/inc/globstr.hrc:412
+#: sc/inc/globstr.hrc:413
msgctxt "STR_STYLE_FAMILY_CELL"
msgid "Cell Styles"
msgstr "Stiloù kellig"
-#: sc/inc/globstr.hrc:413
+#: sc/inc/globstr.hrc:414
msgctxt "STR_STYLE_FAMILY_PAGE"
msgid "Page Styles"
msgstr "Stiloù pajenn"
-#: sc/inc/globstr.hrc:414
+#: sc/inc/globstr.hrc:415
msgctxt "STR_ERR_DATAPILOTSOURCE"
msgid "Pivot table source data is invalid."
msgstr "Didalvoudek eo tarzh an daolenn groaz dialuskel."
-#: sc/inc/globstr.hrc:415
+#: sc/inc/globstr.hrc:416
msgctxt "STR_OPTIONS_WARN_SEPARATORS"
msgid "Because the current formula separator settings conflict with the locale, the formula separators have been reset to their default values."
msgstr "Rak ez eus ur c'henniñv etre arventennoù kefarzoù ar reollunioù hag ar re lec'hel, adderaouekaet eo bet kefarzoù ar reollunioù gant o gwerzhioù dre ziouer."
-#: sc/inc/globstr.hrc:416
+#: sc/inc/globstr.hrc:417
msgctxt "STR_UNDO_INSERT_CURRENT_DATE"
msgid "Insert Current Date"
msgstr "Enlakaat an deiziad bremanel"
-#: sc/inc/globstr.hrc:417
+#: sc/inc/globstr.hrc:418
msgctxt "STR_UNDO_INSERT_CURRENT_TIME"
msgid "Insert Current Time"
msgstr "Enlakaat an eur vremanel"
-#: sc/inc/globstr.hrc:418
+#: sc/inc/globstr.hrc:419
msgctxt "STR_MANAGE_NAMES"
msgid "Manage Names..."
msgstr "Ardeiñ an anvioù..."
-#: sc/inc/globstr.hrc:419
+#: sc/inc/globstr.hrc:420
msgctxt "STR_HEADER_NAME"
msgid "Name"
msgstr "Anv"
-#: sc/inc/globstr.hrc:420
+#: sc/inc/globstr.hrc:421
msgctxt "STR_HEADER_RANGE_OR_EXPR"
msgid "Range or formula expression"
msgstr "Riñvenn ar reollun pe al ledad"
-#: sc/inc/globstr.hrc:421
+#: sc/inc/globstr.hrc:422
msgctxt "STR_HEADER_SCOPE"
msgid "Scope"
msgstr "Ledennad"
-#: sc/inc/globstr.hrc:422
+#: sc/inc/globstr.hrc:423
msgctxt "STR_MULTI_SELECT"
msgid "(multiple)"
msgstr "(lies)"
-#: sc/inc/globstr.hrc:423
+#: sc/inc/globstr.hrc:424
msgctxt "STR_GLOBAL_SCOPE"
msgid "Document (Global)"
msgstr "Teul (hollel)"
-#: sc/inc/globstr.hrc:424
+#: sc/inc/globstr.hrc:425
msgctxt "STR_ERR_NAME_EXISTS"
msgid "Invalid name. Already in use for the selected scope."
msgstr "Anv didalvoudek. Arveret eo endeo evit al ledennad diuzet."
-#: sc/inc/globstr.hrc:425
+#: sc/inc/globstr.hrc:426
msgctxt "STR_ERR_NAME_INVALID"
msgid "Invalid name. Only use letters, numbers and underscore."
msgstr "Anv didalvoudek. Grit gant lizherennoù, niverennoù hag islinenn (underscore)."
-#: sc/inc/globstr.hrc:426
+#: sc/inc/globstr.hrc:427
msgctxt "STR_UNSAVED_EXT_REF"
msgid ""
"This Document contains external references to unsaved documents.\n"
@@ -2095,217 +2100,217 @@ msgstr ""
"\n"
"Fellout a ra deoc'h kenderc'hel ganti ?"
-#: sc/inc/globstr.hrc:427
+#: sc/inc/globstr.hrc:428
msgctxt "STR_CLOSE_WITH_UNSAVED_REFS"
msgid "This Document is referenced by another document and not yet saved. Closing it without saving will result in data loss."
msgstr "An teul all a ro dave eus an teul-mañ nad eo ket enrollet c'hoazh. Mar bez serret hep bezañ bet enrollet e vo kollet roadennoù."
-#: sc/inc/globstr.hrc:428
+#: sc/inc/globstr.hrc:429
msgctxt "STR_HEADER_RANGE"
msgid "Range"
msgstr "Lijorenn"
-#: sc/inc/globstr.hrc:429
+#: sc/inc/globstr.hrc:430
msgctxt "STR_HEADER_COND"
msgid "First Condition"
msgstr "Amplegad kentañ"
-#: sc/inc/globstr.hrc:430
+#: sc/inc/globstr.hrc:431
msgctxt "STR_COND_CONDITION"
msgid "Cell value is"
msgstr "Gwerzh ar gellig zo"
-#: sc/inc/globstr.hrc:431
+#: sc/inc/globstr.hrc:432
msgctxt "STR_COND_COLORSCALE"
msgid "ColorScale"
msgstr "Skeul livioù"
-#: sc/inc/globstr.hrc:432
+#: sc/inc/globstr.hrc:433
msgctxt "STR_COND_DATABAR"
msgid "DataBar"
msgstr "Barrennad roadennoù"
-#: sc/inc/globstr.hrc:433
+#: sc/inc/globstr.hrc:434
msgctxt "STR_COND_ICONSET"
msgid "IconSet"
msgstr "Spletad arlunioù"
-#: sc/inc/globstr.hrc:434
+#: sc/inc/globstr.hrc:435
msgctxt "STR_COND_BETWEEN"
msgid "between"
msgstr "etre"
-#: sc/inc/globstr.hrc:435
+#: sc/inc/globstr.hrc:436
msgctxt "STR_COND_NOTBETWEEN"
msgid "not between"
msgstr "ket etre"
-#: sc/inc/globstr.hrc:436
+#: sc/inc/globstr.hrc:437
msgctxt "STR_COND_UNIQUE"
msgid "unique"
msgstr "unel"
-#: sc/inc/globstr.hrc:437
+#: sc/inc/globstr.hrc:438
msgctxt "STR_COND_DUPLICATE"
msgid "duplicate"
msgstr "eilañ"
-#: sc/inc/globstr.hrc:438
+#: sc/inc/globstr.hrc:439
msgctxt "STR_COND_FORMULA"
msgid "Formula is"
msgstr "Reollun zo"
-#: sc/inc/globstr.hrc:439
+#: sc/inc/globstr.hrc:440
msgctxt "STR_COND_TOP10"
msgid "Top Elements"
msgstr "Elfennoù uhelañ"
-#: sc/inc/globstr.hrc:440
+#: sc/inc/globstr.hrc:441
msgctxt "STR_COND_BOTTOM10"
msgid "Bottom Elements"
msgstr "Elfennoù izelañ"
-#: sc/inc/globstr.hrc:441
+#: sc/inc/globstr.hrc:442
msgctxt "STR_COND_TOP_PERCENT"
msgid "Top Percent"
msgstr "Dregantad uhelañ"
-#: sc/inc/globstr.hrc:442
+#: sc/inc/globstr.hrc:443
msgctxt "STR_COND_DATE"
msgid "Date is"
msgstr "An deiziad a dalv da "
-#: sc/inc/globstr.hrc:443
+#: sc/inc/globstr.hrc:444
msgctxt "STR_COND_BOTTOM_PERCENT"
msgid "Bottom Percent"
msgstr "Dregantad izelañ"
-#: sc/inc/globstr.hrc:444
+#: sc/inc/globstr.hrc:445
msgctxt "STR_COND_ABOVE_AVERAGE"
msgid "Above Average"
msgstr "Keitad uheloc'h"
-#: sc/inc/globstr.hrc:445
+#: sc/inc/globstr.hrc:446
msgctxt "STR_COND_BELOW_AVERAGE"
msgid "Below Average"
msgstr "Keitad izeloc'h"
-#: sc/inc/globstr.hrc:446
+#: sc/inc/globstr.hrc:447
msgctxt "STR_COND_ABOVE_EQUAL_AVERAGE"
msgid "Above or equal Average"
msgstr "Keitad uheloc'h pe bar"
-#: sc/inc/globstr.hrc:447
+#: sc/inc/globstr.hrc:448
msgctxt "STR_COND_BELOW_EQUAL_AVERAGE"
msgid "Below or equal Average"
msgstr "Keitad izeloc'h pe bar"
-#: sc/inc/globstr.hrc:448
+#: sc/inc/globstr.hrc:449
msgctxt "STR_COND_ERROR"
msgid "an Error code"
msgstr "ur voneg Fazi"
-#: sc/inc/globstr.hrc:449
+#: sc/inc/globstr.hrc:450
msgctxt "STR_COND_NOERROR"
msgid "not an Error code"
msgstr "ket ur voneg Fazi"
-#: sc/inc/globstr.hrc:450
+#: sc/inc/globstr.hrc:451
msgctxt "STR_COND_BEGINS_WITH"
msgid "Begins with"
msgstr "A grog gant"
-#: sc/inc/globstr.hrc:451
+#: sc/inc/globstr.hrc:452
msgctxt "STR_COND_ENDS_WITH"
msgid "Ends with"
msgstr "A echu gant"
-#: sc/inc/globstr.hrc:452
+#: sc/inc/globstr.hrc:453
msgctxt "STR_COND_CONTAINS"
msgid "Contains"
msgstr "Zo ennañ"
-#: sc/inc/globstr.hrc:453
+#: sc/inc/globstr.hrc:454
msgctxt "STR_COND_NOT_CONTAINS"
msgid "Not Contains"
msgstr "N'eus ket ennañ"
-#: sc/inc/globstr.hrc:454
+#: sc/inc/globstr.hrc:455
msgctxt "STR_COND_TODAY"
msgid "today"
msgstr "hiziv"
-#: sc/inc/globstr.hrc:455
+#: sc/inc/globstr.hrc:456
msgctxt "STR_COND_YESTERDAY"
msgid "yesterday"
msgstr "dec'h"
-#: sc/inc/globstr.hrc:456
+#: sc/inc/globstr.hrc:457
msgctxt "STR_COND_TOMORROW"
msgid "tomorrow"
msgstr "warc'hoazh"
-#: sc/inc/globstr.hrc:457
+#: sc/inc/globstr.hrc:458
msgctxt "STR_COND_LAST7DAYS"
msgid "in the last 7 days"
msgstr "e korf ar 7 deiz diwezhañ"
-#: sc/inc/globstr.hrc:458
+#: sc/inc/globstr.hrc:459
msgctxt "STR_COND_THISWEEK"
msgid "this week"
msgstr "er sizhun-mañ"
-#: sc/inc/globstr.hrc:459
+#: sc/inc/globstr.hrc:460
msgctxt "STR_COND_LASTWEEK"
msgid "last week"
msgstr "er sizhun tremenet"
-#: sc/inc/globstr.hrc:460
+#: sc/inc/globstr.hrc:461
msgctxt "STR_COND_NEXTWEEK"
msgid "next week"
msgstr "a-benn ar sizhun a zeu"
-#: sc/inc/globstr.hrc:461
+#: sc/inc/globstr.hrc:462
msgctxt "STR_COND_THISMONTH"
msgid "this month"
msgstr "er miz-mañ"
-#: sc/inc/globstr.hrc:462
+#: sc/inc/globstr.hrc:463
msgctxt "STR_COND_LASTMONTH"
msgid "last month"
msgstr "er miz tremenet"
-#: sc/inc/globstr.hrc:463
+#: sc/inc/globstr.hrc:464
msgctxt "STR_COND_NEXTMONTH"
msgid "next month"
msgstr "a-benn ar miz a zeu"
-#: sc/inc/globstr.hrc:464
+#: sc/inc/globstr.hrc:465
msgctxt "STR_COND_THISYEAR"
msgid "this year"
msgstr "er bloaz-mañ"
-#: sc/inc/globstr.hrc:465
+#: sc/inc/globstr.hrc:466
msgctxt "STR_COND_LASTYEAR"
msgid "last year"
msgstr "er bloaz tremenet"
-#: sc/inc/globstr.hrc:466
+#: sc/inc/globstr.hrc:467
msgctxt "STR_COND_NEXTYEAR"
msgid "next year"
msgstr "er bloaz a zeu"
-#: sc/inc/globstr.hrc:467
+#: sc/inc/globstr.hrc:468
msgctxt "STR_COND_AND"
msgid "and"
msgstr "ha"
-#: sc/inc/globstr.hrc:468
+#: sc/inc/globstr.hrc:469
msgctxt "STR_ERR_CONDFORMAT_PROTECTED"
msgid "Conditional Formats can not be created, deleted or changed in protected sheets."
msgstr ""
-#: sc/inc/globstr.hrc:469
+#: sc/inc/globstr.hrc:470
msgctxt "STR_EDIT_EXISTING_COND_FORMATS"
msgid ""
"The selected cell already contains conditional formatting. You can either edit the existing conditional format or you define a new overlapping conditional format.\n"
@@ -2316,7 +2321,7 @@ msgstr ""
"\n"
"Ha fellout a ra deoc'h embann ar mentrezh amplegadek a zo anezhañ ?"
-#: sc/inc/globstr.hrc:470
+#: sc/inc/globstr.hrc:471
msgctxt "STR_QUERY_FORMULA_RECALC_ONLOAD_ODS"
msgid ""
"This document was last saved by an application other than %PRODUCTNAME. Some formula cells may produce different results when recalculated.\n"
@@ -2327,7 +2332,7 @@ msgstr ""
"\n"
"Ha fellout a ra deoc'h jediñ en-dro holl reollunioù ar c'helligadoù en teul-mañ bremañ ?"
-#: sc/inc/globstr.hrc:471
+#: sc/inc/globstr.hrc:472
msgctxt "STR_QUERY_FORMULA_RECALC_ONLOAD_XLS"
msgid ""
"This document was last saved by Excel. Some formula cells may produce different results when recalculated.\n"
@@ -2338,77 +2343,77 @@ msgstr ""
"\n"
"Ha fellout a ra deoc'h adjediñ an holl reollunioù a zo en teul-mañ bremañ ?"
-#: sc/inc/globstr.hrc:472
+#: sc/inc/globstr.hrc:473
msgctxt "STR_NO_INSERT_DELETE_OVER_PIVOT_TABLE"
msgid "You cannot insert or delete cells when the affected range intersects with pivot table."
msgstr "N'hallit ket enlakaat pe dilemel kelligoù mar kenskej al lijorenn tizhet gant an daolenn groaz dialuskel."
-#: sc/inc/globstr.hrc:473
+#: sc/inc/globstr.hrc:474
msgctxt "STR_DPFIELD_GROUP_BY_SECONDS"
msgid "Seconds"
msgstr "Eilennoù"
-#: sc/inc/globstr.hrc:474
+#: sc/inc/globstr.hrc:475
msgctxt "STR_DPFIELD_GROUP_BY_MINUTES"
msgid "Minutes"
msgstr "a vunutennoù"
-#: sc/inc/globstr.hrc:475
+#: sc/inc/globstr.hrc:476
msgctxt "STR_DPFIELD_GROUP_BY_HOURS"
msgid "Hours"
msgstr "Eurioù"
-#: sc/inc/globstr.hrc:476
+#: sc/inc/globstr.hrc:477
msgctxt "STR_DPFIELD_GROUP_BY_DAYS"
msgid "Days"
msgstr "Deizioù"
-#: sc/inc/globstr.hrc:477
+#: sc/inc/globstr.hrc:478
msgctxt "STR_DPFIELD_GROUP_BY_MONTHS"
msgid "Months"
msgstr "Mizioù"
-#: sc/inc/globstr.hrc:478
+#: sc/inc/globstr.hrc:479
msgctxt "STR_DPFIELD_GROUP_BY_QUARTERS"
msgid "Quarters"
msgstr "Trimizvezhioù"
-#: sc/inc/globstr.hrc:479
+#: sc/inc/globstr.hrc:480
msgctxt "STR_DPFIELD_GROUP_BY_YEARS"
msgid "Years"
msgstr "Bloavezhioù"
-#: sc/inc/globstr.hrc:480
+#: sc/inc/globstr.hrc:481
msgctxt "STR_INVALIDVAL"
msgid "Invalid target value."
msgstr "Didalvoudek eo ar werzh vukenn "
-#: sc/inc/globstr.hrc:481
+#: sc/inc/globstr.hrc:482
msgctxt "STR_INVALIDVAR"
msgid "Undefined name for variable cell."
msgstr "N'eo ket bet despizet an anv evit ar gellig argemmus "
-#: sc/inc/globstr.hrc:482
+#: sc/inc/globstr.hrc:483
msgctxt "STR_INVALIDFORM"
msgid "Undefined name as formula cell."
msgstr "Anv ar gelligad bomm n'eo ket bet spisaet "
-#: sc/inc/globstr.hrc:483
+#: sc/inc/globstr.hrc:484
msgctxt "STR_NOFORMULA"
msgid "Formula cell must contain a formula."
msgstr "Ur reollun a rank bezañ e-barzh ar gellig reollun"
-#: sc/inc/globstr.hrc:484
+#: sc/inc/globstr.hrc:485
msgctxt "STR_INVALIDINPUT"
msgid "Invalid input."
msgstr "Enankad didalvoudek."
-#: sc/inc/globstr.hrc:485
+#: sc/inc/globstr.hrc:486
msgctxt "STR_INVALIDCONDITION"
msgid "Invalid condition."
msgstr "Amplegad didalvoudek."
-#: sc/inc/globstr.hrc:486
+#: sc/inc/globstr.hrc:487
msgctxt "STR_QUERYREMOVE"
msgid ""
"Should the entry\n"
@@ -2419,134 +2424,134 @@ msgstr ""
"an enankad\n"
"# ?"
-#: sc/inc/globstr.hrc:487
+#: sc/inc/globstr.hrc:488
msgctxt "STR_COPYLIST"
msgid "Copy List"
msgstr "Eilañ ar roll"
-#: sc/inc/globstr.hrc:488
+#: sc/inc/globstr.hrc:489
msgctxt "STR_COPYFROM"
msgid "List from"
msgstr "Roll adalek"
-#: sc/inc/globstr.hrc:489
+#: sc/inc/globstr.hrc:490
msgctxt "STR_COPYERR"
msgid "Cells without text have been ignored."
msgstr "Dilaosket eo bet ar c'helligoù hep testenn."
-#: sc/inc/globstr.hrc:490
+#: sc/inc/globstr.hrc:491
#, fuzzy, c-format
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%s-click to follow hyperlink:"
msgstr "%s-Klik da heuliañ en ere"
-#: sc/inc/globstr.hrc:491
+#: sc/inc/globstr.hrc:492
msgctxt "STR_CLICKHYPERLINK"
msgid "click to open hyperlink:"
msgstr "Klik a-benn digeriñ ur gourere :"
-#: sc/inc/globstr.hrc:492
+#: sc/inc/globstr.hrc:493
msgctxt "STR_PRINT_PREVIEW_NODATA"
msgid "No Data"
msgstr "Roadenn ebet"
-#: sc/inc/globstr.hrc:493
+#: sc/inc/globstr.hrc:494
msgctxt "STR_PRINT_PREVIEW_EMPTY_RANGE"
msgid "Print Range Empty"
msgstr "Goullo eo al ledad moullañ"
-#: sc/inc/globstr.hrc:494
+#: sc/inc/globstr.hrc:495
msgctxt "STR_UNDO_CONDFORMAT"
msgid "Conditional Format"
msgstr "Mentrezh amplegadek"
-#: sc/inc/globstr.hrc:495
+#: sc/inc/globstr.hrc:496
msgctxt "STR_UNDO_CONDFORMAT_LIST"
msgid "Conditional Formats"
msgstr "Mentrezhañ amplegadek"
-#: sc/inc/globstr.hrc:496
+#: sc/inc/globstr.hrc:497
msgctxt "STR_UNDO_FORMULA_TO_VALUE"
msgid "Convert Formula To Value"
msgstr "Amdreiñ ar reollun d'ur werzh"
-#: sc/inc/globstr.hrc:497
+#: sc/inc/globstr.hrc:498
msgctxt "STR_UNQUOTED_STRING"
msgid "Strings without quotes are interpreted as column/row labels."
msgstr "An hedadoù hep menegoù zo dewezhiet evel skritelloù bannoù/renkoù."
-#: sc/inc/globstr.hrc:498
+#: sc/inc/globstr.hrc:499
msgctxt "STR_ENTER_VALUE"
msgid "Enter a value!"
msgstr "Enankit ur werzh !"
-#: sc/inc/globstr.hrc:499
+#: sc/inc/globstr.hrc:500
msgctxt "STR_TABLE_COUNT"
msgid "Sheet %1 of %2"
msgstr "Follenn %1 eus %2"
-#: sc/inc/globstr.hrc:500
+#: sc/inc/globstr.hrc:501
msgctxt "STR_FUNCTIONS_FOUND"
msgid "%1 and %2 more"
msgstr "%1 ha %2 ouzhpenn"
-#: sc/inc/globstr.hrc:501
+#: sc/inc/globstr.hrc:502
msgctxt "STR_GENERAL"
msgid "General"
msgstr "Hollek"
-#: sc/inc/globstr.hrc:502
+#: sc/inc/globstr.hrc:503
msgctxt "STR_NUMBER"
msgid "Number"
msgstr "Niver"
-#: sc/inc/globstr.hrc:503
+#: sc/inc/globstr.hrc:504
msgctxt "STR_PERCENT"
msgid "Percent"
msgstr "Dregantad"
-#: sc/inc/globstr.hrc:504
+#: sc/inc/globstr.hrc:505
msgctxt "STR_CURRENCY"
msgid "Currency"
msgstr "Teulenn"
-#: sc/inc/globstr.hrc:505
+#: sc/inc/globstr.hrc:506
msgctxt "STR_DATE"
msgid "Date"
msgstr "Deiziad"
-#: sc/inc/globstr.hrc:506
+#: sc/inc/globstr.hrc:507
#, fuzzy
msgctxt "STR_TIME"
msgid "Time"
msgstr "Pad"
-#: sc/inc/globstr.hrc:507
+#: sc/inc/globstr.hrc:508
msgctxt "STR_SCIENTIFIC"
msgid "Scientific"
msgstr "Skiantel"
-#: sc/inc/globstr.hrc:508
+#: sc/inc/globstr.hrc:509
msgctxt "STR_FRACTION"
msgid "Fraction"
msgstr "Rann"
-#: sc/inc/globstr.hrc:509
+#: sc/inc/globstr.hrc:510
msgctxt "STR_BOOLEAN_VALUE"
msgid "Boolean Value"
msgstr "Gwerzh voolean"
-#: sc/inc/globstr.hrc:510
+#: sc/inc/globstr.hrc:511
msgctxt "STR_TEXT"
msgid "Text"
msgstr "Testenn"
-#: sc/inc/globstr.hrc:511
+#: sc/inc/globstr.hrc:512
msgctxt "STR_QUERY_PIVOTTABLE_DELTAB"
msgid "The selected sheet(s) contain source data of related pivot tables that will be lost. Are you sure you want to delete the selected sheet(s)?"
msgstr ""
-#: sc/inc/globstr.hrc:512
+#: sc/inc/globstr.hrc:513
msgctxt "STR_ERR_NAME_INVALID_CELL_REF"
msgid "Invalid name. Reference to a cell, or a range of cells not allowed."
msgstr ""
@@ -10656,8 +10661,8 @@ msgstr "Mod"
#: sc/inc/scfuncs.hrc:3010
msgctxt "SC_OPCODE_T_TEST"
-msgid "Mode specifies the number of distribution tails to return. 1= one-tailed, 2 = two-tailed distribution"
-msgstr "Gant Mod e vez erspizet niver an tuioù evit an dasparzh da jediñ. Mod = 1 a jed ar prouad untu ; mod = 2 a jed ar prouad daoudu."
+msgid "Mode specifies the number of distribution tails to return. 1 = one-tailed, 2 = two-tailed distribution"
+msgstr ""
#: sc/inc/scfuncs.hrc:3011
msgctxt "SC_OPCODE_T_TEST"
@@ -10703,8 +10708,8 @@ msgstr "Mod"
#: sc/inc/scfuncs.hrc:3024
msgctxt "SC_OPCODE_T_TEST_MS"
-msgid "Mode specifies the number of distribution tails to return. 1= one-tailed, 2 = two-tailed distribution"
-msgstr "Gant Mod e vez erspizet niver an tuioù evit an dasparzh da jediñ. Mode = 1 a jed ar prouad untu ; mod = 2 a jed ar prouad daoudu."
+msgid "Mode specifies the number of distribution tails to return. 1 = one-tailed, 2 = two-tailed distribution"
+msgstr ""
#: sc/inc/scfuncs.hrc:3025
msgctxt "SC_OPCODE_T_TEST_MS"
@@ -18427,22 +18432,22 @@ msgctxt "mergecellsdialog|MergeCellsDialog"
msgid "Merge Cells"
msgstr "Toueziañ ar c'helligoù"
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:81
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:84
msgctxt "mergecellsdialog|label"
msgid "Some cells are not empty."
msgstr ""
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:96
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:99
msgctxt "mergecellsdialog|move-cells-radio"
msgid "Move the contents of the hidden cells into the first cell"
msgstr ""
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:112
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:115
msgctxt "mergecellsdialog|empty-cells-radio"
msgid "Empty the contents of the hidden cells"
msgstr ""
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:128
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:131
msgctxt "mergecellsdialog|keep-content-radio"
msgid "Keep the contents of the hidden cells"
msgstr ""
diff --git a/source/br/sd/messages.po b/source/br/sd/messages.po
index 79874335306..341adee856a 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+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"
@@ -13,178 +13,178 @@ msgstr ""
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-#: sd/inc/DocumentRenderer.hrc:29
+#: sd/inc/DocumentRenderer.hrc:27
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Slides"
msgstr "Treyonennoù"
-#: sd/inc/DocumentRenderer.hrc:30
+#: sd/inc/DocumentRenderer.hrc:28
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Handouts"
msgstr "Brudfollenn"
-#: sd/inc/DocumentRenderer.hrc:31
+#: sd/inc/DocumentRenderer.hrc:29
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Notes"
msgstr "Notennoù"
-#: sd/inc/DocumentRenderer.hrc:32
+#: sd/inc/DocumentRenderer.hrc:30
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Outline"
msgstr "Steuñv"
-#: sd/inc/DocumentRenderer.hrc:37
+#: sd/inc/DocumentRenderer.hrc:35
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "According to layout"
msgstr "Hervez ar pajennaozañ"
-#: sd/inc/DocumentRenderer.hrc:38
+#: sd/inc/DocumentRenderer.hrc:36
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "1"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:39
+#: sd/inc/DocumentRenderer.hrc:37
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "2"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:40
+#: sd/inc/DocumentRenderer.hrc:38
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "3"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:41
+#: sd/inc/DocumentRenderer.hrc:39
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "4"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:42
+#: sd/inc/DocumentRenderer.hrc:40
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "6"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:43
+#: sd/inc/DocumentRenderer.hrc:41
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "9"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:48
+#: sd/inc/DocumentRenderer.hrc:46
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_ORDER_CHOICES"
msgid "Left to right, then down"
msgstr "Eus an tu kleiz d'an tu dehou ha d'an traoñ"
-#: sd/inc/DocumentRenderer.hrc:49
+#: sd/inc/DocumentRenderer.hrc:47
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_ORDER_CHOICES"
msgid "Top to bottom, then right"
msgstr "Eus krec'h d'an traoñ, ha d'an tu dehou"
-#: sd/inc/DocumentRenderer.hrc:54
+#: sd/inc/DocumentRenderer.hrc:52
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Original colors"
msgstr "Livioù a-orin"
-#: sd/inc/DocumentRenderer.hrc:55
+#: sd/inc/DocumentRenderer.hrc:53
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Grayscale"
msgstr "Liveoù louedoù"
-#: sd/inc/DocumentRenderer.hrc:56
+#: sd/inc/DocumentRenderer.hrc:54
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Black & white"
msgstr "Du & gwenn"
-#: sd/inc/DocumentRenderer.hrc:61
+#: sd/inc/DocumentRenderer.hrc:59
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Original size"
msgstr "Ment a-orin"
-#: sd/inc/DocumentRenderer.hrc:62
+#: sd/inc/DocumentRenderer.hrc:60
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Fit to printable page"
msgstr "Lakaat da genglotañ gant ar bajennad voulladus"
-#: sd/inc/DocumentRenderer.hrc:63
+#: sd/inc/DocumentRenderer.hrc:61
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Distribute on multiple sheets of paper"
msgstr "Dasparzhañ war veur a bajenn baper"
-#: sd/inc/DocumentRenderer.hrc:64
+#: sd/inc/DocumentRenderer.hrc:62
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Tile sheet of paper with repeated slides"
msgstr "Gourloañ ar follennoù paper gant an treyonennoù arreet"
-#: sd/inc/DocumentRenderer.hrc:69
+#: sd/inc/DocumentRenderer.hrc:67
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Original size"
msgstr "Ment a-orin"
-#: sd/inc/DocumentRenderer.hrc:70
+#: sd/inc/DocumentRenderer.hrc:68
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Fit to printable page"
msgstr "Lakaat da genglotañ gant ar bajennad voulladus"
-#: sd/inc/DocumentRenderer.hrc:71
+#: sd/inc/DocumentRenderer.hrc:69
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Distribute on multiple sheets of paper"
msgstr "Dasparzhañ war veur a bajenn baper"
-#: sd/inc/DocumentRenderer.hrc:72
+#: sd/inc/DocumentRenderer.hrc:70
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Tile sheet of paper with repeated pages"
msgstr "Gourloañ ar follennoù paper gant ar pajennadoù arreet"
-#: sd/inc/DocumentRenderer.hrc:77
+#: sd/inc/DocumentRenderer.hrc:75
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "All pages"
msgstr "An holl bajennadoù"
-#: sd/inc/DocumentRenderer.hrc:78
+#: sd/inc/DocumentRenderer.hrc:76
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "Front sides / right pages"
msgstr "Tuioù reizh / pajennoù a-zehou"
-#: sd/inc/DocumentRenderer.hrc:79
+#: sd/inc/DocumentRenderer.hrc:77
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "Back sides / left pages"
msgstr "Tuioù gin / pajennoù a-gleiz"
-#: sd/inc/DocumentRenderer.hrc:84
+#: sd/inc/DocumentRenderer.hrc:82
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~All slides"
msgstr "An holl dre_yonennoù"
-#: sd/inc/DocumentRenderer.hrc:85
+#: sd/inc/DocumentRenderer.hrc:83
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~Slides"
msgstr "Treyonennoù"
-#: sd/inc/DocumentRenderer.hrc:86
+#: sd/inc/DocumentRenderer.hrc:84
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Se~lection"
msgstr "Diu~zad"
-#: sd/inc/DocumentRenderer.hrc:91
+#: sd/inc/DocumentRenderer.hrc:89
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~All pages"
msgstr "~An holl bajennoù"
-#: sd/inc/DocumentRenderer.hrc:92
+#: sd/inc/DocumentRenderer.hrc:90
#, fuzzy
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Pa~ges"
msgstr "Pajennoù"
-#: sd/inc/DocumentRenderer.hrc:93
+#: sd/inc/DocumentRenderer.hrc:91
#, fuzzy
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Se~lection"
diff --git a/source/br/svx/messages.po b/source/br/svx/messages.po
index df04ac54c81..11673ac1443 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: 2018-05-16 16:53+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+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"
@@ -5322,7 +5322,7 @@ msgstr ""
#: svx/uiconfig/ui/safemodedialog.ui:432
msgctxt "safemodedialog|btn_create_zip"
-msgid "Create Zip Archive from User Profile"
+msgid "Archive User Profile"
msgstr ""
#: svx/uiconfig/ui/safemodedialog.ui:445
@@ -8923,9 +8923,9 @@ msgid "Red"
msgstr "Ruz"
#: include/svx/strings.hrc:565
-msgctxt "RID_SVXSTR_COLOR_VIOLET"
-msgid "Violet"
-msgstr "Mouk"
+msgctxt "RID_SVXSTR_COLOR_MAGENTA"
+msgid "Magenta"
+msgstr "Majenta"
#: include/svx/strings.hrc:566
msgctxt "RID_SVXSTR_COLOR_PURPLE"
@@ -8991,8 +8991,8 @@ msgid "Light Red"
msgstr "Ruz sklaer"
#: include/svx/strings.hrc:579
-msgctxt "RID_SVXSTR_COLOR_LIGHTVIOLET"
-msgid "Light Violet"
+msgctxt "RID_SVXSTR_COLOR_LIGHTMAGENTA"
+msgid "Light Magenta"
msgstr ""
#: include/svx/strings.hrc:580
@@ -9058,10 +9058,9 @@ msgid "Dark Red"
msgstr "Ruz teñval"
#: include/svx/strings.hrc:593
-#, fuzzy
-msgctxt "RID_SVXSTR_COLOR_DARKVIOLET1"
-msgid "Dark Violet"
-msgstr "Mouk teñval"
+msgctxt "RID_SVXSTR_COLOR_DARKMAGENTA"
+msgid "Dark Magenta"
+msgstr ""
#: include/svx/strings.hrc:594
msgctxt "RID_SVXSTR_COLOR_DARKPURPLE"
@@ -9095,55 +9094,55 @@ msgstr ""
#. Elements of the Tonal color palette
#: include/svx/strings.hrc:601
+msgctxt "RID_SVXSTR_COLOR_VIOLET"
+msgid "Violet"
+msgstr "Mouk"
+
+#: include/svx/strings.hrc:602
msgctxt "RID_SVXSTR_COLOR_VIOLET_OUG"
msgid "Violet (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:602
+#: include/svx/strings.hrc:603
msgctxt "RID_SVXSTR_COLOR_BLUE_OUG"
msgid "Blue (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:603
+#: include/svx/strings.hrc:604
msgctxt "RID_SVXSTR_COLOR_AZURE_OUG"
msgid "Azure (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:604
+#: include/svx/strings.hrc:605
msgctxt "RID_SVXSTR_COLOR_SPRINGGREEN_OUG"
msgid "Spring Green (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:605
+#: include/svx/strings.hrc:606
msgctxt "RID_SVXSTR_COLOR_GREEN_OUG"
msgid "Green (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:606
+#: include/svx/strings.hrc:607
msgctxt "RID_SVXSTR_COLOR_CHARTREUSEGREEN_OUG"
msgid "Chartreuse Green (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:607
+#: include/svx/strings.hrc:608
msgctxt "RID_SVXSTR_COLOR_ORANGE_OUG"
msgid "Orange (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:608
+#: include/svx/strings.hrc:609
msgctxt "RID_SVXSTR_COLOR_RED_OUG"
msgid "Red (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:609
+#: include/svx/strings.hrc:610
msgctxt "RID_SVXSTR_COLOR_ROSE_OUG"
msgid "Rose (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:610
-msgctxt "RID_SVXSTR_COLOR_MAGENTA"
-msgid "Magenta"
-msgstr "Majenta"
-
#: include/svx/strings.hrc:611
msgctxt "RID_SVXSTR_COLOR_AZURE"
msgid "Azure"
@@ -12279,13 +12278,13 @@ msgstr "Padelligoù evel biroù o vont d'an tu dehou"
#: include/svx/strings.hrc:1273
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_6"
-msgid "Check mark bullets"
-msgstr "Padelligoù o stumm kevaskoù"
+msgid "Cross mark bullets"
+msgstr ""
#: include/svx/strings.hrc:1274
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_7"
-msgid "Tick mark bullets"
-msgstr "Padelligoù o stumm merkoù askañ"
+msgid "Check mark bullets"
+msgstr ""
#: include/svx/strings.hrc:1275
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_0"
diff --git a/source/br/sw/messages.po b/source/br/sw/messages.po
index 171580f2559..aaeeadd3e84 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: 2018-05-22 13:17+0200\n"
+"POT-Creation-Date: 2018-06-12 14:41+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"
@@ -1217,13 +1217,13 @@ msgstr "Meneg"
#: sw/inc/strings.hrc:172
msgctxt "STR_POOLCOLL_TOX_ILLUSH"
-msgid "Illustration Index Heading"
-msgstr "Talbenn ibil ar skeudennoù"
+msgid "Figure Index Heading"
+msgstr ""
#: sw/inc/strings.hrc:173
msgctxt "STR_POOLCOLL_TOX_ILLUS1"
-msgid "Illustration Index 1"
-msgstr "Ibil ar skeudennadurioù 1"
+msgid "Figure Index 1"
+msgstr ""
#: sw/inc/strings.hrc:174
msgctxt "STR_POOLCOLL_TOX_OBJECTH"
@@ -3657,8 +3657,8 @@ msgstr "Ibil an ergorennoù"
#: sw/inc/strings.hrc:672
msgctxt "STR_TOX_ILL"
-msgid "Illustration Index"
-msgstr "Ibil ar skeudennadurioù"
+msgid "Table of Figures"
+msgstr ""
#: sw/inc/strings.hrc:673
#, fuzzy, c-format
@@ -9352,72 +9352,72 @@ msgctxt "footnotepage|label5"
msgid "Continuation Notice"
msgstr "Meneg an heuliad"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:49
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:55
msgctxt "footnotesendnotestabpage|ftnntnum"
msgid "_Restart numbering"
msgstr "_Adloc'hañ an niverenniñ"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:91
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:93
msgctxt "footnotesendnotestabpage|ftnoffset_label"
msgid "_Start at:"
msgstr "_Kregiñ gant :"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:112
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:111
msgctxt "footnotesendnotestabpage|ftnntnumfmt"
msgid "Custom _format"
msgstr "Mentrezh _personelaet"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:155
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:150
msgctxt "footnotesendnotestabpage|ftnsuffix_label"
msgid "Aft_er:"
msgstr "Gou_de :"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:199
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:188
msgctxt "footnotesendnotestabpage|ftnprefix_label"
msgid "Be_fore:"
msgstr "A-ra_ok :"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:228
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:212
msgctxt "footnotesendnotestabpage|ftnntattextend"
msgid "Collec_t at end of text"
msgstr "Strollañ e di_benn an destenn"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:252
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:234
msgctxt "footnotesendnotestabpage|label1"
msgid "Footnotes"
msgstr "Notennoù diaz pajenn"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:289
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:271
msgctxt "footnotesendnotestabpage|endntattextend"
msgid "C_ollect at end of section"
msgstr "_Strollañ e dibenn ar gevrenn"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:315
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:295
msgctxt "footnotesendnotestabpage|endntnum"
msgid "_Restart numbering"
msgstr "_Adloc'hañ an niverenniñ"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:357
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:333
msgctxt "footnotesendnotestabpage|endoffset_label"
msgid "_Start at:"
msgstr "_Kregiñ gant :"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:378
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:351
msgctxt "footnotesendnotestabpage|endntnumfmt"
msgid "_Custom format"
msgstr "Mentrezh _personelaet"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:421
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:390
msgctxt "footnotesendnotestabpage|endsuffix_label"
msgid "Aft_er:"
msgstr "Goud_e :"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:465
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:428
msgctxt "footnotesendnotestabpage|endprefix_label"
msgid "Be_fore:"
msgstr "A-ra_ok :"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:500
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:458
msgctxt "footnotesendnotestabpage|label2"
msgid "Endnotes"
msgstr "Notennoù dibenn"
@@ -9447,27 +9447,27 @@ msgctxt "formatsectiondialog|notes"
msgid "Footnotes/Endnotes"
msgstr "Notennoù diaz pajenn/dibenn"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:63
+#: sw/uiconfig/swriter/ui/formattablepage.ui:77
msgctxt "formattablepage|nameft"
msgid "_Name"
msgstr "_Anv"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:79
+#: sw/uiconfig/swriter/ui/formattablepage.ui:91
msgctxt "formattablepage|widthft"
msgid "W_idth"
msgstr "Le_d"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:110
+#: sw/uiconfig/swriter/ui/formattablepage.ui:120
msgctxt "formattablepage|relwidth"
msgid "Relati_ve"
msgstr "Da_veel"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:155
+#: sw/uiconfig/swriter/ui/formattablepage.ui:160
msgctxt "formattablepage|label45"
msgid "Properties"
msgstr "Perzhioù"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:194
+#: sw/uiconfig/swriter/ui/formattablepage.ui:195
msgctxt "formattablepage|leftft"
msgid "Lef_t"
msgstr "A-_gleiz"
@@ -9477,62 +9477,62 @@ msgctxt "formattablepage|rightft"
msgid "Ri_ght"
msgstr "A-_zehou"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:228
+#: sw/uiconfig/swriter/ui/formattablepage.ui:226
msgctxt "formattablepage|aboveft"
msgid "_Above"
msgstr "_A-us"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:245
+#: sw/uiconfig/swriter/ui/formattablepage.ui:241
msgctxt "formattablepage|belowft"
msgid "_Below"
msgstr "_Dindan"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:320
+#: sw/uiconfig/swriter/ui/formattablepage.ui:311
msgctxt "formattablepage|label46"
msgid "Spacing"
msgstr "Esaouiñ"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:362
+#: sw/uiconfig/swriter/ui/formattablepage.ui:349
msgctxt "formattablepage|full"
msgid "A_utomatic"
msgstr "Em_gefreek"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:380
+#: sw/uiconfig/swriter/ui/formattablepage.ui:365
msgctxt "formattablepage|left"
msgid "_Left"
msgstr "A _gleiz"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:398
+#: sw/uiconfig/swriter/ui/formattablepage.ui:381
msgctxt "formattablepage|fromleft"
msgid "_From left"
msgstr "Eus an tu _kleiz"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:416
+#: sw/uiconfig/swriter/ui/formattablepage.ui:397
msgctxt "formattablepage|right"
msgid "R_ight"
msgstr "A-ze_hou"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:435
+#: sw/uiconfig/swriter/ui/formattablepage.ui:413
msgctxt "formattablepage|center"
msgid "_Center"
msgstr "Krei_zañ"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:453
+#: sw/uiconfig/swriter/ui/formattablepage.ui:429
msgctxt "formattablepage|free"
msgid "_Manual"
msgstr "_Dre zorn"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:478
+#: sw/uiconfig/swriter/ui/formattablepage.ui:452
msgctxt "formattablepage|label43"
msgid "Alignment"
msgstr "Steudadur"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:522
+#: sw/uiconfig/swriter/ui/formattablepage.ui:491
msgctxt "formattablepage|label53"
msgid "Text _direction"
msgstr "Tuadur an _destenn"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:553
+#: sw/uiconfig/swriter/ui/formattablepage.ui:519
msgctxt "formattablepage|label44"
msgid "Properties "
msgstr "Perzhioù "
@@ -9890,22 +9890,27 @@ msgctxt "headerfootermenu|insert_pagenumber"
msgid "Insert Page Number"
msgstr ""
-#: sw/uiconfig/swriter/ui/indentpage.ui:52
+#: sw/uiconfig/swriter/ui/headerfootermenu.ui:42
+msgctxt "headerfootermenu|insert_pagecount"
+msgid "Insert Page Count"
+msgstr ""
+
+#: sw/uiconfig/swriter/ui/indentpage.ui:57
msgctxt "indentpage|label1"
msgid "_Before section"
msgstr "_A-raok ar gevrenn"
-#: sw/uiconfig/swriter/ui/indentpage.ui:67
+#: sw/uiconfig/swriter/ui/indentpage.ui:71
msgctxt "indentpage|label3"
msgid "_After section"
msgstr "_Goude ar gevrenn"
-#: sw/uiconfig/swriter/ui/indentpage.ui:113
+#: sw/uiconfig/swriter/ui/indentpage.ui:115
msgctxt "indentpage|label2"
msgid "Indent"
msgstr "Pukañ"
-#: sw/uiconfig/swriter/ui/indentpage.ui:142
+#: sw/uiconfig/swriter/ui/indentpage.ui:155
msgctxt "indentpage|preview-atkobject"
msgid "Example"
msgstr "Skouer"
@@ -13519,7 +13524,7 @@ msgstr "Gwareziñ ar furmskrid"
#: sw/uiconfig/swriter/ui/optcompatpage.ui:68
msgctxt "optcompatpage|format"
-msgid "MS Word-compatible trailing blanks"
+msgid "Word-compatible trailing blanks"
msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:69
@@ -13529,7 +13534,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:70
msgctxt "optcompatpage|format"
-msgid "A database field (e.g., MailMerge) with empty value hides its paragraph"
+msgid "Hide paragraphs of database fields (e.g., mail merge) with an empty value"
msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:71
@@ -16285,123 +16290,123 @@ msgctxt "tableproperties|background"
msgid "Background"
msgstr "Drekleur"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:25
-msgctxt "tabletextflowpage|liststore1"
-msgid "Horizontal"
-msgstr "A-blaen"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:29
-msgctxt "tabletextflowpage|liststore1"
-msgid "Vertical"
-msgstr "A-serzh"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:33
-msgctxt "tabletextflowpage|liststore1"
-msgid "Use superordinate object settings"
-msgstr "Arverañ arventennoù an ergorenn uheloc'h"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:47
-msgctxt "tabletextflowpage|liststore2"
-msgid "Top"
-msgstr "Lein"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:51
-msgctxt "tabletextflowpage|liststore2"
-msgid "Centered"
-msgstr "Kreizet"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:55
-msgctxt "tabletextflowpage|liststore2"
-msgid "Bottom"
-msgstr "Traoñ"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:97
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:53
msgctxt "tabletextflowpage|break"
msgid "_Break"
msgstr "_Lamm"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:112
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:68
msgctxt "tabletextflowpage|page"
msgid "_Page"
msgstr "_Pajenn"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:132
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:87
msgctxt "tabletextflowpage|column"
msgid "Col_umn"
msgstr "Ba_nn"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:151
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:106
msgctxt "tabletextflowpage|before"
msgid "Be_fore"
msgstr "A-ra_ok"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:171
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:125
msgctxt "tabletextflowpage|after"
msgid "_After"
msgstr "_Goude"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:203
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:158
msgctxt "tabletextflowpage|pagestyle"
msgid "With Page St_yle"
msgstr "Gant st_il ar bajenn"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:224
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:177
msgctxt "tabletextflowpage|pagenoft"
msgid "Page _number"
msgstr "_Niverenn bajenn"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:257
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:213
#, fuzzy
msgctxt "tabletextflowpage|pagestylelb-atkobject"
msgid "With Page Style"
msgstr "Gant st_il ar bajenn"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:274
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:230
msgctxt "tabletextflowpage|split"
msgid "Allow _table to split across pages and columns"
msgstr "Aotren troc'hañ an _taolennoù war veur a bajenn ha bann"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:289
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:245
msgctxt "tabletextflowpage|splitrow"
msgid "Allow row to break a_cross pages and columns"
msgstr "_Aotren troc'hañ ar renkoù war veur a bajenn ha bann"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:306
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:262
msgctxt "tabletextflowpage|keep"
msgid "_Keep with next paragraph"
msgstr "_Mirout gant ar rannbennad da heul"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:328
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:284
msgctxt "tabletextflowpage|label40"
msgid "Text _orientation"
msgstr "Re_teradur an destenn"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:361
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:298
+msgctxt "tabletextflowpage|liststore1"
+msgid "Horizontal"
+msgstr "A-blaen"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:299
+msgctxt "tabletextflowpage|liststore1"
+msgid "Vertical"
+msgstr "A-serzh"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:300
+msgctxt "tabletextflowpage|liststore1"
+msgid "Use superordinate object settings"
+msgstr "Arverañ arventennoù an ergorenn uheloc'h"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:321
msgctxt "tabletextflowpage|headline"
msgid "R_epeat heading"
msgstr "Arren an _talbenn "
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:383
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:343
msgctxt "tabletextflowpage|label38"
msgid "The first "
msgstr "An hini kentañ "
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:396
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:356
msgctxt "tabletextflowpage|label39"
msgid "rows"
msgstr "renk"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:434
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:395
msgctxt "tabletextflowpage|label35"
msgid "Text Flow"
msgstr "Gwidennadurioù"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:467
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:428
msgctxt "tabletextflowpage|label41"
msgid "_Vertical alignment"
msgstr "Steudadur a-_serzh"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:495
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:442
+msgctxt "tabletextflowpage|liststore2"
+msgid "Top"
+msgstr "Lein"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:443
+msgctxt "tabletextflowpage|liststore2"
+msgid "Centered"
+msgstr "Kreizet"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:444
+msgctxt "tabletextflowpage|liststore2"
+msgid "Bottom"
+msgstr "Traoñ"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:460
msgctxt "tabletextflowpage|label36"
msgid "Alignment"
msgstr "Steudadur"
@@ -17183,8 +17188,8 @@ msgstr "Ibil lizherennel"
#: sw/uiconfig/swriter/ui/tocindexpage.ui:58
msgctxt "tocindexpage|liststore1"
-msgid "Illustration Index"
-msgstr "Ibil ar skeudennadurioù"
+msgid "Table of Figures"
+msgstr ""
#: sw/uiconfig/swriter/ui/tocindexpage.ui:62
msgctxt "tocindexpage|liststore1"
diff --git a/source/br/writerperfect/messages.po b/source/br/writerperfect/messages.po
index cc06c8f70ed..8dfb969bbee 100644
--- a/source/br/writerperfect/messages.po
+++ b/source/br/writerperfect/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-16 16:54+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+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"
@@ -65,97 +65,97 @@ msgctxt "exportepub|generalft"
msgid "General"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:122
+#: writerperfect/uiconfig/ui/exportepub.ui:121
msgctxt "exportepub|versionft"
msgid "Version:"
msgstr "Handelv :"
-#: writerperfect/uiconfig/ui/exportepub.ui:139
+#: writerperfect/uiconfig/ui/exportepub.ui:138
msgctxt "exportepub|epub3"
msgid "EPUB 3.0"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:140
+#: writerperfect/uiconfig/ui/exportepub.ui:139
msgctxt "exportepub|epub2"
msgid "EPUB 2.0"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:175
+#: writerperfect/uiconfig/ui/exportepub.ui:174
msgctxt "exportepub|splitft"
msgid "Split method:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:192
+#: writerperfect/uiconfig/ui/exportepub.ui:191
msgctxt "exportepub|splitpage"
msgid "Page break"
msgstr "Lamm pajenn"
-#: writerperfect/uiconfig/ui/exportepub.ui:193
+#: writerperfect/uiconfig/ui/exportepub.ui:192
msgctxt "exportepub|splitheading"
msgid "Heading"
msgstr "Talbenn"
-#: writerperfect/uiconfig/ui/exportepub.ui:228
+#: writerperfect/uiconfig/ui/exportepub.ui:227
msgctxt "exportepub|layoutft"
msgid "Layout method:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:245
+#: writerperfect/uiconfig/ui/exportepub.ui:244
msgctxt "exportepub|layoutreflowable"
msgid "Reflowable"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:246
+#: writerperfect/uiconfig/ui/exportepub.ui:245
msgctxt "exportepub|layoutfixed"
msgid "Fixed"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:281
+#: writerperfect/uiconfig/ui/exportepub.ui:280
msgctxt "exportepub|coverimageft"
msgid "Custom cover image:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:311
+#: writerperfect/uiconfig/ui/exportepub.ui:310
msgctxt "exportepub|coverbutton"
msgid "Browse..."
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:355
+#: writerperfect/uiconfig/ui/exportepub.ui:354
msgctxt "exportepub|mediadirft"
msgid "Custom media directory:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:385
+#: writerperfect/uiconfig/ui/exportepub.ui:384
msgctxt "exportepub|mediabutton"
msgid "Browse..."
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:429
+#: writerperfect/uiconfig/ui/exportepub.ui:428
msgctxt "exportepub|metadataft"
msgid "Metadata"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:470
+#: writerperfect/uiconfig/ui/exportepub.ui:468
msgctxt "exportepub|identifierft"
msgid "Identifier:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:485
+#: writerperfect/uiconfig/ui/exportepub.ui:483
msgctxt "exportepub|titleft"
msgid "Title:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:511
+#: writerperfect/uiconfig/ui/exportepub.ui:509
msgctxt "exportepub|authorft"
msgid "Author:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:537
+#: writerperfect/uiconfig/ui/exportepub.ui:535
msgctxt "exportepub|languageft"
msgid "Language:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:563
+#: writerperfect/uiconfig/ui/exportepub.ui:561
msgctxt "exportepub|dateft"
msgid "Date:"
msgstr ""
diff --git a/source/brx/cui/messages.po b/source/brx/cui/messages.po
index 11af242d604..7bfb76e8d27 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+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"
@@ -10394,107 +10394,107 @@ msgctxt "positionsizedialog|PositionAndSizeDialog"
msgid "Position and Size"
msgstr "जायगा आरो ~बिबां..."
-#: cui/uiconfig/ui/positionsizedialog.ui:107
+#: cui/uiconfig/ui/positionsizedialog.ui:136
#, fuzzy
msgctxt "positionsizedialog|RID_SVXPAGE_POSITION_SIZE"
msgid "Position and Size"
msgstr "जायगा आरो ~बिबां..."
-#: cui/uiconfig/ui/positionsizedialog.ui:129
+#: cui/uiconfig/ui/positionsizedialog.ui:182
#, fuzzy
msgctxt "positionsizedialog|RID_SVXPAGE_SWPOSSIZE"
msgid "Position and Size"
msgstr "जायगा आरो ~बिबां..."
-#: cui/uiconfig/ui/positionsizedialog.ui:152
+#: cui/uiconfig/ui/positionsizedialog.ui:229
msgctxt "positionsizedialog|RID_SVXPAGE_ANGLE"
msgid "Rotation"
msgstr "गिदिंनाय"
-#: cui/uiconfig/ui/positionsizedialog.ui:175
+#: cui/uiconfig/ui/positionsizedialog.ui:276
msgctxt "positionsizedialog|RID_SVXPAGE_SLANT"
msgid "Slant & Corner Radius"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:40
+#: cui/uiconfig/ui/possizetabpage.ui:61
#, fuzzy
msgctxt "possizetabpage|FT_POS_X"
msgid "Position _X:"
msgstr "थासारि"
-#: cui/uiconfig/ui/possizetabpage.ui:56
+#: cui/uiconfig/ui/possizetabpage.ui:75
#, fuzzy
msgctxt "possizetabpage|FT_POS_Y"
msgid "Position _Y:"
msgstr "थासारि"
-#: cui/uiconfig/ui/possizetabpage.ui:110
+#: cui/uiconfig/ui/possizetabpage.ui:128
msgctxt "possizetabpage|FT_POSREFERENCE"
msgid "_Base point:"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:148
+#: cui/uiconfig/ui/possizetabpage.ui:182
#, fuzzy
msgctxt "possizetabpage|label1"
msgid "Position"
msgstr "थासारि"
-#: cui/uiconfig/ui/possizetabpage.ui:190
+#: cui/uiconfig/ui/possizetabpage.ui:224
#, fuzzy
msgctxt "possizetabpage|FT_WIDTH"
msgid "Wi_dth:"
msgstr "गुवारथि"
-#: cui/uiconfig/ui/possizetabpage.ui:206
+#: cui/uiconfig/ui/possizetabpage.ui:238
#, fuzzy
msgctxt "possizetabpage|FT_HEIGHT"
msgid "H_eight:"
msgstr "गोजौथि"
-#: cui/uiconfig/ui/possizetabpage.ui:247
+#: cui/uiconfig/ui/possizetabpage.ui:276
msgctxt "possizetabpage|CBX_SCALE"
msgid "_Keep ratio"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:279
+#: cui/uiconfig/ui/possizetabpage.ui:307
msgctxt "possizetabpage|FT_SIZEREFERENCE"
msgid "Base _point:"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:317
+#: cui/uiconfig/ui/possizetabpage.ui:361
msgctxt "possizetabpage|label2"
msgid "Size"
msgstr "महर"
-#: cui/uiconfig/ui/possizetabpage.ui:356
+#: cui/uiconfig/ui/possizetabpage.ui:401
#, fuzzy
msgctxt "possizetabpage|TSB_POSPROTECT"
msgid "Positio_n"
msgstr "थासारि"
-#: cui/uiconfig/ui/possizetabpage.ui:373
+#: cui/uiconfig/ui/possizetabpage.ui:418
#, fuzzy
msgctxt "possizetabpage|TSB_SIZEPROTECT"
msgid "_Size"
msgstr "महर"
-#: cui/uiconfig/ui/possizetabpage.ui:397
+#: cui/uiconfig/ui/possizetabpage.ui:441
#, fuzzy
msgctxt "possizetabpage|label3"
msgid "Protect"
msgstr "रैखाथि"
-#: cui/uiconfig/ui/possizetabpage.ui:430
+#: cui/uiconfig/ui/possizetabpage.ui:475
msgctxt "possizetabpage|TSB_AUTOGROW_WIDTH"
msgid "_Fit width to text"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:447
+#: cui/uiconfig/ui/possizetabpage.ui:492
msgctxt "possizetabpage|TSB_AUTOGROW_HEIGHT"
msgid "Fit _height to text"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:471
+#: cui/uiconfig/ui/possizetabpage.ui:515
msgctxt "possizetabpage|label4"
msgid "Adapt"
msgstr ""
@@ -10707,50 +10707,50 @@ msgctxt "recordnumberdialog|label2"
msgid "go to record"
msgstr ""
-#: cui/uiconfig/ui/rotationtabpage.ui:52
+#: cui/uiconfig/ui/rotationtabpage.ui:56
#, fuzzy
msgctxt "rotationtabpage|FT_POS_X"
msgid "Position _X:"
msgstr "थासारि"
-#: cui/uiconfig/ui/rotationtabpage.ui:66
+#: cui/uiconfig/ui/rotationtabpage.ui:70
#, fuzzy
msgctxt "rotationtabpage|FT_POS_Y"
msgid "Position _Y:"
msgstr "थासारि"
-#: cui/uiconfig/ui/rotationtabpage.ui:116
+#: cui/uiconfig/ui/rotationtabpage.ui:123
msgctxt "rotationtabpage|FT_POSPRESETS"
msgid "_Default settings:"
msgstr ""
-#: cui/uiconfig/ui/rotationtabpage.ui:130
+#: cui/uiconfig/ui/rotationtabpage.ui:151
msgctxt "rotationtabpage|CTL_RECT|tooltip_text"
msgid "Rotation point"
msgstr ""
-#: cui/uiconfig/ui/rotationtabpage.ui:155
+#: cui/uiconfig/ui/rotationtabpage.ui:178
msgctxt "rotationtabpage|label1"
msgid "Pivot Point"
msgstr ""
-#: cui/uiconfig/ui/rotationtabpage.ui:197
+#: cui/uiconfig/ui/rotationtabpage.ui:220
msgctxt "rotationtabpage|FT_ANGLE"
msgid "_Angle:"
msgstr ""
-#: cui/uiconfig/ui/rotationtabpage.ui:238
+#: cui/uiconfig/ui/rotationtabpage.ui:263
msgctxt "rotationtabpage|FT_ANGLEPRESETS"
msgid "Default _settings:"
msgstr ""
-#: cui/uiconfig/ui/rotationtabpage.ui:252
+#: cui/uiconfig/ui/rotationtabpage.ui:287
#, fuzzy
msgctxt "rotationtabpage|CTL_ANGLE|tooltip_text"
msgid "Rotation Angle"
msgstr "गिदिंनाय ख'ना"
-#: cui/uiconfig/ui/rotationtabpage.ui:277
+#: cui/uiconfig/ui/rotationtabpage.ui:314
#, fuzzy
msgctxt "rotationtabpage|label2"
msgid "Rotation Angle"
@@ -11144,55 +11144,55 @@ msgctxt "similaritysearchdialog|relaxbox"
msgid "_Combine"
msgstr "ज खालाम"
-#: cui/uiconfig/ui/slantcornertabpage.ui:50
+#: cui/uiconfig/ui/slantcornertabpage.ui:70
msgctxt "slantcornertabpage|label5"
msgid "_X:"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:88
+#: cui/uiconfig/ui/slantcornertabpage.ui:110
msgctxt "slantcornertabpage|label6"
msgid "_Y:"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:125
+#: cui/uiconfig/ui/slantcornertabpage.ui:149
msgctxt "slantcornertabpage|label3"
msgid "Control Point 1"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:159
+#: cui/uiconfig/ui/slantcornertabpage.ui:183
#, fuzzy
msgctxt "slantcornertabpage|FT_RADIUS"
msgid "_Radius:"
msgstr "रेडियाच"
-#: cui/uiconfig/ui/slantcornertabpage.ui:189
+#: cui/uiconfig/ui/slantcornertabpage.ui:214
#, fuzzy
msgctxt "slantcornertabpage|label1"
msgid "Corner Radius"
msgstr "खनानि रेडियाच"
-#: cui/uiconfig/ui/slantcornertabpage.ui:223
+#: cui/uiconfig/ui/slantcornertabpage.ui:248
msgctxt "slantcornertabpage|FT_ANGLE"
msgid "_Angle:"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:253
+#: cui/uiconfig/ui/slantcornertabpage.ui:279
#, fuzzy
msgctxt "slantcornertabpage|label2"
msgid "Slant"
msgstr "खेंस्ला"
-#: cui/uiconfig/ui/slantcornertabpage.ui:294
+#: cui/uiconfig/ui/slantcornertabpage.ui:320
msgctxt "slantcornertabpage|label4"
msgid "_X:"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:332
+#: cui/uiconfig/ui/slantcornertabpage.ui:360
msgctxt "slantcornertabpage|label7"
msgid "_Y:"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:369
+#: cui/uiconfig/ui/slantcornertabpage.ui:399
msgctxt "slantcornertabpage|label8"
msgid "Control Point 2"
msgstr ""
@@ -11490,124 +11490,124 @@ msgctxt "storedwebconnectiondialog|change"
msgid "_Change Password..."
msgstr "पासवर्डखौ~ सोलाय..."
-#: cui/uiconfig/ui/swpossizepage.ui:74
+#: cui/uiconfig/ui/swpossizepage.ui:85
#, fuzzy
msgctxt "swpossizepage|widthft"
msgid "_Width:"
msgstr "गुवारथि"
-#: cui/uiconfig/ui/swpossizepage.ui:111
+#: cui/uiconfig/ui/swpossizepage.ui:123
#, fuzzy
msgctxt "swpossizepage|heightft"
msgid "H_eight:"
msgstr "गोजौथि"
-#: cui/uiconfig/ui/swpossizepage.ui:128
+#: cui/uiconfig/ui/swpossizepage.ui:141
msgctxt "swpossizepage|ratio"
msgid "_Keep ratio"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:149
+#: cui/uiconfig/ui/swpossizepage.ui:162
msgctxt "swpossizepage|label2"
msgid "Size"
msgstr "महर"
-#: cui/uiconfig/ui/swpossizepage.ui:205
+#: cui/uiconfig/ui/swpossizepage.ui:218
#, fuzzy
msgctxt "swpossizepage|topage"
msgid "To _page"
msgstr "बिखं सिम"
-#: cui/uiconfig/ui/swpossizepage.ui:222
+#: cui/uiconfig/ui/swpossizepage.ui:234
#, fuzzy
msgctxt "swpossizepage|topara"
msgid "To paragrap_h"
msgstr "आन्थोर"
-#: cui/uiconfig/ui/swpossizepage.ui:238
+#: cui/uiconfig/ui/swpossizepage.ui:250
#, fuzzy
msgctxt "swpossizepage|tochar"
msgid "To cha_racter"
msgstr "हांखोआव"
-#: cui/uiconfig/ui/swpossizepage.ui:254
+#: cui/uiconfig/ui/swpossizepage.ui:266
#, fuzzy
msgctxt "swpossizepage|aschar"
msgid "_As character"
msgstr "हांखो बादि"
-#: cui/uiconfig/ui/swpossizepage.ui:270
+#: cui/uiconfig/ui/swpossizepage.ui:282
#, fuzzy
msgctxt "swpossizepage|toframe"
msgid "To _frame"
msgstr "फ्रेम"
-#: cui/uiconfig/ui/swpossizepage.ui:292
+#: cui/uiconfig/ui/swpossizepage.ui:304
msgctxt "swpossizepage|label1"
msgid "Anchor"
msgstr "एंखर"
-#: cui/uiconfig/ui/swpossizepage.ui:333
+#: cui/uiconfig/ui/swpossizepage.ui:344
#, fuzzy
msgctxt "swpossizepage|horiposft"
msgid "Hori_zontal:"
msgstr "समानथि"
-#: cui/uiconfig/ui/swpossizepage.ui:347
+#: cui/uiconfig/ui/swpossizepage.ui:358
msgctxt "swpossizepage|horibyft"
msgid "b_y:"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:361
+#: cui/uiconfig/ui/swpossizepage.ui:372
msgctxt "swpossizepage|vertbyft"
msgid "_by:"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:375
+#: cui/uiconfig/ui/swpossizepage.ui:386
msgctxt "swpossizepage|horitoft"
msgid "_to:"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:421
+#: cui/uiconfig/ui/swpossizepage.ui:433
#, fuzzy
msgctxt "swpossizepage|vertposft"
msgid "_Vertical:"
msgstr "थोंगोर"
-#: cui/uiconfig/ui/swpossizepage.ui:457
+#: cui/uiconfig/ui/swpossizepage.ui:470
msgctxt "swpossizepage|verttoft"
msgid "t_o:"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:478
+#: cui/uiconfig/ui/swpossizepage.ui:492
msgctxt "swpossizepage|mirror"
msgid "_Mirror on even pages"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:495
+#: cui/uiconfig/ui/swpossizepage.ui:509
msgctxt "swpossizepage|followtextflow"
msgid "Follow te_xt flow"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:518
+#: cui/uiconfig/ui/swpossizepage.ui:532
#, fuzzy
msgctxt "swpossizepage|label11"
msgid "Position"
msgstr "थासारि"
-#: cui/uiconfig/ui/swpossizepage.ui:549
+#: cui/uiconfig/ui/swpossizepage.ui:563
#, fuzzy
msgctxt "swpossizepage|pos"
msgid "Positio_n"
msgstr "थासारि"
-#: cui/uiconfig/ui/swpossizepage.ui:565
+#: cui/uiconfig/ui/swpossizepage.ui:579
#, fuzzy
msgctxt "swpossizepage|size"
msgid "_Size"
msgstr "महर"
-#: cui/uiconfig/ui/swpossizepage.ui:587
+#: cui/uiconfig/ui/swpossizepage.ui:601
#, fuzzy
msgctxt "swpossizepage|label3"
msgid "Protect"
@@ -11810,13 +11810,13 @@ msgctxt "textattrtabpage|label2"
msgid "Spacing to Borders"
msgstr ""
-#: cui/uiconfig/ui/textattrtabpage.ui:425
+#: cui/uiconfig/ui/textattrtabpage.ui:423
#, fuzzy
msgctxt "textattrtabpage|TSB_FULL_WIDTH"
msgid "Full _width"
msgstr "आबुं-गुवारथि"
-#: cui/uiconfig/ui/textattrtabpage.ui:448
+#: cui/uiconfig/ui/textattrtabpage.ui:446
msgctxt "textattrtabpage|label3"
msgid "Text Anchor"
msgstr ""
diff --git a/source/brx/filter/source/config/fragments/filters.po b/source/brx/filter/source/config/fragments/filters.po
index b9f5af9946a..8adccccdc5f 100644
--- a/source/brx/filter/source/config/fragments/filters.po
+++ b/source/brx/filter/source/config/fragments/filters.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-16 16:54+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2016-12-01 12:27+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -465,8 +465,8 @@ msgctxt ""
"MS Word 2003 XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Word 2003 XML"
-msgstr "मायक्र'सफ्ट अवार्ड 2003 XML"
+msgid "Word 2003 XML"
+msgstr ""
#: MS_Word_2007_XML.xcu
msgctxt ""
@@ -1290,7 +1290,7 @@ msgctxt ""
"Calc MS Excel 2007 VBA XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Excel 2007-2016 XML (macro enabled)"
+msgid "Excel 2007–2019 (macro-enabled)"
msgstr ""
#: calc_MS_Excel_2007_XML.xcu
diff --git a/source/brx/filter/source/config/fragments/types.po b/source/brx/filter/source/config/fragments/types.po
index 50620d928d2..370af6ceea9 100644
--- a/source/brx/filter/source/config/fragments/types.po
+++ b/source/brx/filter/source/config/fragments/types.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-08 15:11+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2015-11-11 20:24+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -295,8 +295,8 @@ msgctxt ""
"writer_MS_Word_2003_XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Word 2003 XML"
-msgstr "मायक्र'सफ्ट अवार्ड 2003 XML"
+msgid "Word 2003 XML"
+msgstr ""
#: writer_MS_Word_2007_XML.xcu
msgctxt ""
diff --git a/source/brx/fpicker/messages.po b/source/brx/fpicker/messages.po
index f205fbc5954..19fcaa20636 100644
--- a/source/brx/fpicker/messages.po
+++ b/source/brx/fpicker/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+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"
@@ -276,14 +276,13 @@ msgstr ""
#: fpicker/uiconfig/ui/foldernamedialog.ui:8
msgctxt "foldernamedialog|FolderNameDialog"
-msgid "Folder Name ?"
+msgid "Folder Name"
msgstr ""
#: fpicker/uiconfig/ui/foldernamedialog.ui:91
-#, fuzzy
msgctxt "foldernamedialog|label2"
-msgid "Na_me"
-msgstr "मुं"
+msgid "Na_me:"
+msgstr ""
#: fpicker/uiconfig/ui/foldernamedialog.ui:122
#, fuzzy
diff --git a/source/brx/officecfg/registry/data/org/openoffice/Office/UI.po b/source/brx/officecfg/registry/data/org/openoffice/Office/UI.po
index 8ee3300a1b7..5263f3a2387 100644
--- a/source/brx/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/brx/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-22 13:17+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2016-12-01 12:32+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -26987,8 +26987,8 @@ msgctxt ""
"..WriterCommands.UserInterface.Commands..uno:TextAttributes\n"
"Label\n"
"value.text"
-msgid "Text Attributes"
-msgstr "फराय बिजाब गुणफोर"
+msgid "Text Attributes..."
+msgstr ""
#: WriterCommands.xcu
msgctxt ""
diff --git a/source/brx/readlicense_oo/docs.po b/source/brx/readlicense_oo/docs.po
index e422588b625..1cf741dacb2 100644
--- a/source/brx/readlicense_oo/docs.po
+++ b/source/brx/readlicense_oo/docs.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-04-17 15:54+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2016-03-10 13:57+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -116,7 +116,7 @@ msgctxt ""
"readme.xrm\n"
"macxiOSX\n"
"readmeitem.text"
-msgid "MacOSX 10.8 (Mountain Lion) or higher"
+msgid "MacOSX 10.9 (Mavericks) or higher"
msgstr ""
#: readme.xrm
diff --git a/source/brx/sc/messages.po b/source/brx/sc/messages.po
index 0cdf0b82065..7ce4df22ec0 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-12 14:40+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"
@@ -1884,16 +1884,21 @@ msgid "Nested arrays are not supported."
msgstr ""
#: sc/inc/globstr.hrc:390
+msgctxt "STR_ERR_LONG_BAD_ARRAY_CONTENT"
+msgid "Unsupported inline array content."
+msgstr ""
+
+#: sc/inc/globstr.hrc:391
msgctxt "STR_UNDO_TEXTTOCOLUMNS"
msgid "Text to Columns"
msgstr ""
-#: sc/inc/globstr.hrc:391
+#: sc/inc/globstr.hrc:392
msgctxt "STR_DOC_UPDATED"
msgid "Your spreadsheet has been updated with changes saved by other users."
msgstr ""
-#: sc/inc/globstr.hrc:392
+#: sc/inc/globstr.hrc:393
msgctxt "STR_DOC_WILLBESAVED"
msgid ""
"The spreadsheet must be saved now to activate sharing mode.\n"
@@ -1901,7 +1906,7 @@ msgid ""
"Do you want to continue?"
msgstr ""
-#: sc/inc/globstr.hrc:393
+#: sc/inc/globstr.hrc:394
msgctxt "STR_DOC_WILLNOTBESAVED"
msgid ""
"Already resolved merge conflicts will be lost and your changes to the shared spreadsheet will not be saved.\n"
@@ -1909,7 +1914,7 @@ msgid ""
"Do you want to continue?"
msgstr ""
-#: sc/inc/globstr.hrc:394
+#: sc/inc/globstr.hrc:395
msgctxt "STR_DOC_DISABLESHARED"
msgid ""
"Disabling shared mode of a spreadsheet hinders all other users of the shared spreadsheet to merge back their work.\n"
@@ -1917,7 +1922,7 @@ msgid ""
"Do you want to continue?"
msgstr ""
-#: sc/inc/globstr.hrc:395
+#: sc/inc/globstr.hrc:396
msgctxt "STR_DOC_NOLONGERSHARED"
msgid ""
"This spreadsheet is no longer in shared mode.\n"
@@ -1925,7 +1930,7 @@ msgid ""
"Save your spreadsheet to a separate file and merge your changes to the shared spreadsheet manually."
msgstr ""
-#: sc/inc/globstr.hrc:396
+#: sc/inc/globstr.hrc:397
msgctxt "STR_FILE_LOCKED_TRY_LATER"
msgid ""
"The shared spreadsheet file is locked due to a merge in progress by user: '%1'\n"
@@ -1933,7 +1938,7 @@ msgid ""
"Sharing mode of a locked file cannot be disabled. Try again later."
msgstr ""
-#: sc/inc/globstr.hrc:397
+#: sc/inc/globstr.hrc:398
msgctxt "STR_FILE_LOCKED_SAVE_LATER"
msgid ""
"The shared spreadsheet file is locked due to a merge in progress by user: '%1'\n"
@@ -1941,156 +1946,156 @@ msgid ""
"Try again later to save your changes."
msgstr ""
-#: sc/inc/globstr.hrc:398
+#: sc/inc/globstr.hrc:399
msgctxt "STR_UNKNOWN_USER"
msgid "Unknown User"
msgstr ""
-#: sc/inc/globstr.hrc:399
+#: sc/inc/globstr.hrc:400
msgctxt "STR_SHAPE_AUTOSHAPE"
msgid "AutoShape"
msgstr ""
-#: sc/inc/globstr.hrc:400
+#: sc/inc/globstr.hrc:401
msgctxt "STR_SHAPE_RECTANGLE"
msgid "Rectangle"
msgstr "आयत"
-#: sc/inc/globstr.hrc:401
+#: sc/inc/globstr.hrc:402
msgctxt "STR_SHAPE_LINE"
msgid "Line"
msgstr "सारि"
-#: sc/inc/globstr.hrc:402
+#: sc/inc/globstr.hrc:403
msgctxt "STR_SHAPE_OVAL"
msgid "Oval"
msgstr "अभेल"
-#: sc/inc/globstr.hrc:403
+#: sc/inc/globstr.hrc:404
msgctxt "STR_FORM_BUTTON"
msgid "Button"
msgstr "बुथाम"
-#: sc/inc/globstr.hrc:404
+#: sc/inc/globstr.hrc:405
#, fuzzy
msgctxt "STR_FORM_CHECKBOX"
msgid "Check Box"
msgstr "आनजाद बाक्सु"
-#: sc/inc/globstr.hrc:405
+#: sc/inc/globstr.hrc:406
msgctxt "STR_FORM_OPTIONBUTTON"
msgid "Option Button"
msgstr "उफ्रा बुथाम"
-#: sc/inc/globstr.hrc:406
+#: sc/inc/globstr.hrc:407
msgctxt "STR_FORM_LABEL"
msgid "Label"
msgstr "लेबेल"
-#: sc/inc/globstr.hrc:407
+#: sc/inc/globstr.hrc:408
#, fuzzy
msgctxt "STR_FORM_LISTBOX"
msgid "List Box"
msgstr "फरिलाइ बाक्सु"
-#: sc/inc/globstr.hrc:408
+#: sc/inc/globstr.hrc:409
#, fuzzy
msgctxt "STR_FORM_GROUPBOX"
msgid "Group Box"
msgstr "हानजा बाक्सु"
-#: sc/inc/globstr.hrc:409
+#: sc/inc/globstr.hrc:410
#, fuzzy
msgctxt "STR_FORM_DROPDOWN"
msgid "Drop Down"
msgstr "गाहायाव गार"
-#: sc/inc/globstr.hrc:410
+#: sc/inc/globstr.hrc:411
msgctxt "STR_FORM_SPINNER"
msgid "Spinner"
msgstr ""
-#: sc/inc/globstr.hrc:411
+#: sc/inc/globstr.hrc:412
#, fuzzy
msgctxt "STR_FORM_SCROLLBAR"
msgid "Scroll Bar"
msgstr "स्क्रलबार"
-#: sc/inc/globstr.hrc:412
+#: sc/inc/globstr.hrc:413
msgctxt "STR_STYLE_FAMILY_CELL"
msgid "Cell Styles"
msgstr "खथासा आदबफोर"
-#: sc/inc/globstr.hrc:413
+#: sc/inc/globstr.hrc:414
#, fuzzy
msgctxt "STR_STYLE_FAMILY_PAGE"
msgid "Page Styles"
msgstr "बिखं आदब"
-#: sc/inc/globstr.hrc:414
+#: sc/inc/globstr.hrc:415
#, fuzzy
msgctxt "STR_ERR_DATAPILOTSOURCE"
msgid "Pivot table source data is invalid."
msgstr "होनाय निजोराया बाहाय जाथाव नङा।"
-#: sc/inc/globstr.hrc:415
+#: sc/inc/globstr.hrc:416
msgctxt "STR_OPTIONS_WARN_SEPARATORS"
msgid "Because the current formula separator settings conflict with the locale, the formula separators have been reset to their default values."
msgstr ""
-#: sc/inc/globstr.hrc:416
+#: sc/inc/globstr.hrc:417
msgctxt "STR_UNDO_INSERT_CURRENT_DATE"
msgid "Insert Current Date"
msgstr ""
-#: sc/inc/globstr.hrc:417
+#: sc/inc/globstr.hrc:418
msgctxt "STR_UNDO_INSERT_CURRENT_TIME"
msgid "Insert Current Time"
msgstr ""
-#: sc/inc/globstr.hrc:418
+#: sc/inc/globstr.hrc:419
#, fuzzy
msgctxt "STR_MANAGE_NAMES"
msgid "Manage Names..."
msgstr "सारिनि मुंफोर"
-#: sc/inc/globstr.hrc:419
+#: sc/inc/globstr.hrc:420
msgctxt "STR_HEADER_NAME"
msgid "Name"
msgstr "मुं"
-#: sc/inc/globstr.hrc:420
+#: sc/inc/globstr.hrc:421
msgctxt "STR_HEADER_RANGE_OR_EXPR"
msgid "Range or formula expression"
msgstr ""
-#: sc/inc/globstr.hrc:421
+#: sc/inc/globstr.hrc:422
msgctxt "STR_HEADER_SCOPE"
msgid "Scope"
msgstr ""
-#: sc/inc/globstr.hrc:422
+#: sc/inc/globstr.hrc:423
msgctxt "STR_MULTI_SELECT"
msgid "(multiple)"
msgstr ""
-#: sc/inc/globstr.hrc:423
+#: sc/inc/globstr.hrc:424
#, fuzzy
msgctxt "STR_GLOBAL_SCOPE"
msgid "Document (Global)"
msgstr "फोरमान बिलाइ म'ड"
-#: sc/inc/globstr.hrc:424
+#: sc/inc/globstr.hrc:425
msgctxt "STR_ERR_NAME_EXISTS"
msgid "Invalid name. Already in use for the selected scope."
msgstr ""
-#: sc/inc/globstr.hrc:425
+#: sc/inc/globstr.hrc:426
msgctxt "STR_ERR_NAME_INVALID"
msgid "Invalid name. Only use letters, numbers and underscore."
msgstr ""
-#: sc/inc/globstr.hrc:426
+#: sc/inc/globstr.hrc:427
msgctxt "STR_UNSAVED_EXT_REF"
msgid ""
"This Document contains external references to unsaved documents.\n"
@@ -2098,226 +2103,226 @@ msgid ""
"Do you want to continue?"
msgstr ""
-#: sc/inc/globstr.hrc:427
+#: sc/inc/globstr.hrc:428
msgctxt "STR_CLOSE_WITH_UNSAVED_REFS"
msgid "This Document is referenced by another document and not yet saved. Closing it without saving will result in data loss."
msgstr ""
-#: sc/inc/globstr.hrc:428
+#: sc/inc/globstr.hrc:429
msgctxt "STR_HEADER_RANGE"
msgid "Range"
msgstr "सारि"
-#: sc/inc/globstr.hrc:429
+#: sc/inc/globstr.hrc:430
msgctxt "STR_HEADER_COND"
msgid "First Condition"
msgstr ""
-#: sc/inc/globstr.hrc:430
+#: sc/inc/globstr.hrc:431
#, fuzzy
msgctxt "STR_COND_CONDITION"
msgid "Cell value is"
msgstr "खथासा बेसेना"
-#: sc/inc/globstr.hrc:431
+#: sc/inc/globstr.hrc:432
msgctxt "STR_COND_COLORSCALE"
msgid "ColorScale"
msgstr ""
-#: sc/inc/globstr.hrc:432
+#: sc/inc/globstr.hrc:433
msgctxt "STR_COND_DATABAR"
msgid "DataBar"
msgstr ""
-#: sc/inc/globstr.hrc:433
+#: sc/inc/globstr.hrc:434
msgctxt "STR_COND_ICONSET"
msgid "IconSet"
msgstr ""
-#: sc/inc/globstr.hrc:434
+#: sc/inc/globstr.hrc:435
#, fuzzy
msgctxt "STR_COND_BETWEEN"
msgid "between"
msgstr "मोननैनि गेजेराव"
-#: sc/inc/globstr.hrc:435
+#: sc/inc/globstr.hrc:436
#, fuzzy
msgctxt "STR_COND_NOTBETWEEN"
msgid "not between"
msgstr "मोननैनि गेजेराव नङा"
-#: sc/inc/globstr.hrc:436
+#: sc/inc/globstr.hrc:437
msgctxt "STR_COND_UNIQUE"
msgid "unique"
msgstr ""
-#: sc/inc/globstr.hrc:437
+#: sc/inc/globstr.hrc:438
#, fuzzy
msgctxt "STR_COND_DUPLICATE"
msgid "duplicate"
msgstr "रोखोमसे मोननै"
-#: sc/inc/globstr.hrc:438
+#: sc/inc/globstr.hrc:439
#, fuzzy
msgctxt "STR_COND_FORMULA"
msgid "Formula is"
msgstr "फरमुलाया"
-#: sc/inc/globstr.hrc:439
+#: sc/inc/globstr.hrc:440
msgctxt "STR_COND_TOP10"
msgid "Top Elements"
msgstr ""
-#: sc/inc/globstr.hrc:440
+#: sc/inc/globstr.hrc:441
msgctxt "STR_COND_BOTTOM10"
msgid "Bottom Elements"
msgstr ""
-#: sc/inc/globstr.hrc:441
+#: sc/inc/globstr.hrc:442
msgctxt "STR_COND_TOP_PERCENT"
msgid "Top Percent"
msgstr ""
-#: sc/inc/globstr.hrc:442
+#: sc/inc/globstr.hrc:443
msgctxt "STR_COND_DATE"
msgid "Date is"
msgstr ""
-#: sc/inc/globstr.hrc:443
+#: sc/inc/globstr.hrc:444
msgctxt "STR_COND_BOTTOM_PERCENT"
msgid "Bottom Percent"
msgstr ""
-#: sc/inc/globstr.hrc:444
+#: sc/inc/globstr.hrc:445
msgctxt "STR_COND_ABOVE_AVERAGE"
msgid "Above Average"
msgstr ""
-#: sc/inc/globstr.hrc:445
+#: sc/inc/globstr.hrc:446
msgctxt "STR_COND_BELOW_AVERAGE"
msgid "Below Average"
msgstr ""
-#: sc/inc/globstr.hrc:446
+#: sc/inc/globstr.hrc:447
msgctxt "STR_COND_ABOVE_EQUAL_AVERAGE"
msgid "Above or equal Average"
msgstr ""
-#: sc/inc/globstr.hrc:447
+#: sc/inc/globstr.hrc:448
msgctxt "STR_COND_BELOW_EQUAL_AVERAGE"
msgid "Below or equal Average"
msgstr ""
-#: sc/inc/globstr.hrc:448
+#: sc/inc/globstr.hrc:449
#, fuzzy
msgctxt "STR_COND_ERROR"
msgid "an Error code"
msgstr "गोरोनथि क'ड"
-#: sc/inc/globstr.hrc:449
+#: sc/inc/globstr.hrc:450
#, fuzzy
msgctxt "STR_COND_NOERROR"
msgid "not an Error code"
msgstr "गोरोनथि क'ड"
-#: sc/inc/globstr.hrc:450
+#: sc/inc/globstr.hrc:451
msgctxt "STR_COND_BEGINS_WITH"
msgid "Begins with"
msgstr ""
-#: sc/inc/globstr.hrc:451
+#: sc/inc/globstr.hrc:452
msgctxt "STR_COND_ENDS_WITH"
msgid "Ends with"
msgstr ""
-#: sc/inc/globstr.hrc:452
+#: sc/inc/globstr.hrc:453
#, fuzzy
msgctxt "STR_COND_CONTAINS"
msgid "Contains"
msgstr "थाजाबनाय"
-#: sc/inc/globstr.hrc:453
+#: sc/inc/globstr.hrc:454
msgctxt "STR_COND_NOT_CONTAINS"
msgid "Not Contains"
msgstr ""
-#: sc/inc/globstr.hrc:454
+#: sc/inc/globstr.hrc:455
#, fuzzy
msgctxt "STR_COND_TODAY"
msgid "today"
msgstr "दिनै"
-#: sc/inc/globstr.hrc:455
+#: sc/inc/globstr.hrc:456
msgctxt "STR_COND_YESTERDAY"
msgid "yesterday"
msgstr ""
-#: sc/inc/globstr.hrc:456
+#: sc/inc/globstr.hrc:457
msgctxt "STR_COND_TOMORROW"
msgid "tomorrow"
msgstr ""
-#: sc/inc/globstr.hrc:457
+#: sc/inc/globstr.hrc:458
msgctxt "STR_COND_LAST7DAYS"
msgid "in the last 7 days"
msgstr ""
-#: sc/inc/globstr.hrc:458
+#: sc/inc/globstr.hrc:459
msgctxt "STR_COND_THISWEEK"
msgid "this week"
msgstr ""
-#: sc/inc/globstr.hrc:459
+#: sc/inc/globstr.hrc:460
msgctxt "STR_COND_LASTWEEK"
msgid "last week"
msgstr ""
-#: sc/inc/globstr.hrc:460
+#: sc/inc/globstr.hrc:461
msgctxt "STR_COND_NEXTWEEK"
msgid "next week"
msgstr ""
-#: sc/inc/globstr.hrc:461
+#: sc/inc/globstr.hrc:462
msgctxt "STR_COND_THISMONTH"
msgid "this month"
msgstr ""
-#: sc/inc/globstr.hrc:462
+#: sc/inc/globstr.hrc:463
msgctxt "STR_COND_LASTMONTH"
msgid "last month"
msgstr ""
-#: sc/inc/globstr.hrc:463
+#: sc/inc/globstr.hrc:464
msgctxt "STR_COND_NEXTMONTH"
msgid "next month"
msgstr ""
-#: sc/inc/globstr.hrc:464
+#: sc/inc/globstr.hrc:465
msgctxt "STR_COND_THISYEAR"
msgid "this year"
msgstr ""
-#: sc/inc/globstr.hrc:465
+#: sc/inc/globstr.hrc:466
msgctxt "STR_COND_LASTYEAR"
msgid "last year"
msgstr ""
-#: sc/inc/globstr.hrc:466
+#: sc/inc/globstr.hrc:467
msgctxt "STR_COND_NEXTYEAR"
msgid "next year"
msgstr ""
-#: sc/inc/globstr.hrc:467
+#: sc/inc/globstr.hrc:468
msgctxt "STR_COND_AND"
msgid "and"
msgstr "आरो"
-#: sc/inc/globstr.hrc:468
+#: sc/inc/globstr.hrc:469
msgctxt "STR_ERR_CONDFORMAT_PROTECTED"
msgid "Conditional Formats can not be created, deleted or changed in protected sheets."
msgstr ""
-#: sc/inc/globstr.hrc:469
+#: sc/inc/globstr.hrc:470
msgctxt "STR_EDIT_EXISTING_COND_FORMATS"
msgid ""
"The selected cell already contains conditional formatting. You can either edit the existing conditional format or you define a new overlapping conditional format.\n"
@@ -2325,7 +2330,7 @@ msgid ""
" Do you want to edit the existing conditional format?"
msgstr ""
-#: sc/inc/globstr.hrc:470
+#: sc/inc/globstr.hrc:471
msgctxt "STR_QUERY_FORMULA_RECALC_ONLOAD_ODS"
msgid ""
"This document was last saved by an application other than %PRODUCTNAME. Some formula cells may produce different results when recalculated.\n"
@@ -2333,7 +2338,7 @@ msgid ""
"Do you want to recalculate all formula cells in this document now?"
msgstr ""
-#: sc/inc/globstr.hrc:471
+#: sc/inc/globstr.hrc:472
msgctxt "STR_QUERY_FORMULA_RECALC_ONLOAD_XLS"
msgid ""
"This document was last saved by Excel. Some formula cells may produce different results when recalculated.\n"
@@ -2341,82 +2346,82 @@ msgid ""
"Do you want to recalculate all formula cells now?"
msgstr ""
-#: sc/inc/globstr.hrc:472
+#: sc/inc/globstr.hrc:473
msgctxt "STR_NO_INSERT_DELETE_OVER_PIVOT_TABLE"
msgid "You cannot insert or delete cells when the affected range intersects with pivot table."
msgstr ""
-#: sc/inc/globstr.hrc:473
+#: sc/inc/globstr.hrc:474
msgctxt "STR_DPFIELD_GROUP_BY_SECONDS"
msgid "Seconds"
msgstr "सेकेण्डफोर"
-#: sc/inc/globstr.hrc:474
+#: sc/inc/globstr.hrc:475
msgctxt "STR_DPFIELD_GROUP_BY_MINUTES"
msgid "Minutes"
msgstr "मिनिटफोर"
-#: sc/inc/globstr.hrc:475
+#: sc/inc/globstr.hrc:476
msgctxt "STR_DPFIELD_GROUP_BY_HOURS"
msgid "Hours"
msgstr "घन्टाफोर"
-#: sc/inc/globstr.hrc:476
+#: sc/inc/globstr.hrc:477
msgctxt "STR_DPFIELD_GROUP_BY_DAYS"
msgid "Days"
msgstr "सानफोर"
-#: sc/inc/globstr.hrc:477
+#: sc/inc/globstr.hrc:478
msgctxt "STR_DPFIELD_GROUP_BY_MONTHS"
msgid "Months"
msgstr "दानफोर"
-#: sc/inc/globstr.hrc:478
+#: sc/inc/globstr.hrc:479
msgctxt "STR_DPFIELD_GROUP_BY_QUARTERS"
msgid "Quarters"
msgstr ""
-#: sc/inc/globstr.hrc:479
+#: sc/inc/globstr.hrc:480
#, fuzzy
msgctxt "STR_DPFIELD_GROUP_BY_YEARS"
msgid "Years"
msgstr "बोसोर"
-#: sc/inc/globstr.hrc:480
+#: sc/inc/globstr.hrc:481
#, fuzzy
msgctxt "STR_INVALIDVAL"
msgid "Invalid target value."
msgstr "बाहाय जाथावै थांखिनाय बेसेन।"
-#: sc/inc/globstr.hrc:481
+#: sc/inc/globstr.hrc:482
#, fuzzy
msgctxt "STR_INVALIDVAR"
msgid "Undefined name for variable cell."
msgstr "सोलायलु खथासानि थाखाय थार नङै मुं।"
-#: sc/inc/globstr.hrc:482
+#: sc/inc/globstr.hrc:483
#, fuzzy
msgctxt "STR_INVALIDFORM"
msgid "Undefined name as formula cell."
msgstr "फरमुला खथासा बादि थार नङै मुं।"
-#: sc/inc/globstr.hrc:483
+#: sc/inc/globstr.hrc:484
msgctxt "STR_NOFORMULA"
msgid "Formula cell must contain a formula."
msgstr ""
-#: sc/inc/globstr.hrc:484
+#: sc/inc/globstr.hrc:485
#, fuzzy
msgctxt "STR_INVALIDINPUT"
msgid "Invalid input."
msgstr "बाहाय जाथाव नङै नायखां बिलाइ।"
-#: sc/inc/globstr.hrc:485
+#: sc/inc/globstr.hrc:486
msgctxt "STR_INVALIDCONDITION"
msgid "Invalid condition."
msgstr ""
-#: sc/inc/globstr.hrc:486
+#: sc/inc/globstr.hrc:487
msgctxt "STR_QUERYREMOVE"
msgid ""
"Should the entry\n"
@@ -2424,137 +2429,137 @@ msgid ""
"be deleted?"
msgstr ""
-#: sc/inc/globstr.hrc:487
+#: sc/inc/globstr.hrc:488
msgctxt "STR_COPYLIST"
msgid "Copy List"
msgstr ""
-#: sc/inc/globstr.hrc:488
+#: sc/inc/globstr.hrc:489
msgctxt "STR_COPYFROM"
msgid "List from"
msgstr ""
-#: sc/inc/globstr.hrc:489
+#: sc/inc/globstr.hrc:490
msgctxt "STR_COPYERR"
msgid "Cells without text have been ignored."
msgstr ""
-#: sc/inc/globstr.hrc:490
+#: sc/inc/globstr.hrc:491
#, c-format
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%s-click to follow hyperlink:"
msgstr ""
-#: sc/inc/globstr.hrc:491
+#: sc/inc/globstr.hrc:492
msgctxt "STR_CLICKHYPERLINK"
msgid "click to open hyperlink:"
msgstr ""
-#: sc/inc/globstr.hrc:492
+#: sc/inc/globstr.hrc:493
msgctxt "STR_PRINT_PREVIEW_NODATA"
msgid "No Data"
msgstr ""
-#: sc/inc/globstr.hrc:493
+#: sc/inc/globstr.hrc:494
msgctxt "STR_PRINT_PREVIEW_EMPTY_RANGE"
msgid "Print Range Empty"
msgstr ""
-#: sc/inc/globstr.hrc:494
+#: sc/inc/globstr.hrc:495
#, fuzzy
msgctxt "STR_UNDO_CONDFORMAT"
msgid "Conditional Format"
msgstr "जाहोनारि दाथाय दानाय"
-#: sc/inc/globstr.hrc:495
+#: sc/inc/globstr.hrc:496
#, fuzzy
msgctxt "STR_UNDO_CONDFORMAT_LIST"
msgid "Conditional Formats"
msgstr "जाहोनारि दाथाय दानाय"
-#: sc/inc/globstr.hrc:496
+#: sc/inc/globstr.hrc:497
msgctxt "STR_UNDO_FORMULA_TO_VALUE"
msgid "Convert Formula To Value"
msgstr ""
-#: sc/inc/globstr.hrc:497
+#: sc/inc/globstr.hrc:498
msgctxt "STR_UNQUOTED_STRING"
msgid "Strings without quotes are interpreted as column/row labels."
msgstr ""
-#: sc/inc/globstr.hrc:498
+#: sc/inc/globstr.hrc:499
msgctxt "STR_ENTER_VALUE"
msgid "Enter a value!"
msgstr ""
-#: sc/inc/globstr.hrc:499
+#: sc/inc/globstr.hrc:500
msgctxt "STR_TABLE_COUNT"
msgid "Sheet %1 of %2"
msgstr ""
-#: sc/inc/globstr.hrc:500
+#: sc/inc/globstr.hrc:501
msgctxt "STR_FUNCTIONS_FOUND"
msgid "%1 and %2 more"
msgstr ""
-#: sc/inc/globstr.hrc:501
+#: sc/inc/globstr.hrc:502
msgctxt "STR_GENERAL"
msgid "General"
msgstr "सरासनस्रा"
-#: sc/inc/globstr.hrc:502
+#: sc/inc/globstr.hrc:503
msgctxt "STR_NUMBER"
msgid "Number"
msgstr "अनजिमा"
-#: sc/inc/globstr.hrc:503
+#: sc/inc/globstr.hrc:504
#, fuzzy
msgctxt "STR_PERCENT"
msgid "Percent"
msgstr "जौखोन्दो"
-#: sc/inc/globstr.hrc:504
+#: sc/inc/globstr.hrc:505
msgctxt "STR_CURRENCY"
msgid "Currency"
msgstr "रां"
-#: sc/inc/globstr.hrc:505
+#: sc/inc/globstr.hrc:506
msgctxt "STR_DATE"
msgid "Date"
msgstr "अक्ट'"
-#: sc/inc/globstr.hrc:506
+#: sc/inc/globstr.hrc:507
msgctxt "STR_TIME"
msgid "Time"
msgstr "सम"
-#: sc/inc/globstr.hrc:507
+#: sc/inc/globstr.hrc:508
msgctxt "STR_SCIENTIFIC"
msgid "Scientific"
msgstr ""
-#: sc/inc/globstr.hrc:508
+#: sc/inc/globstr.hrc:509
#, fuzzy
msgctxt "STR_FRACTION"
msgid "Fraction"
msgstr "हाबा फारि"
-#: sc/inc/globstr.hrc:509
+#: sc/inc/globstr.hrc:510
msgctxt "STR_BOOLEAN_VALUE"
msgid "Boolean Value"
msgstr ""
-#: sc/inc/globstr.hrc:510
+#: sc/inc/globstr.hrc:511
msgctxt "STR_TEXT"
msgid "Text"
msgstr "फराय बिजाब"
-#: sc/inc/globstr.hrc:511
+#: sc/inc/globstr.hrc:512
msgctxt "STR_QUERY_PIVOTTABLE_DELTAB"
msgid "The selected sheet(s) contain source data of related pivot tables that will be lost. Are you sure you want to delete the selected sheet(s)?"
msgstr ""
-#: sc/inc/globstr.hrc:512
+#: sc/inc/globstr.hrc:513
msgctxt "STR_ERR_NAME_INVALID_CELL_REF"
msgid "Invalid name. Reference to a cell, or a range of cells not allowed."
msgstr ""
@@ -10766,8 +10771,8 @@ msgstr "रोखोम"
#: sc/inc/scfuncs.hrc:3010
msgctxt "SC_OPCODE_T_TEST"
-msgid "Mode specifies the number of distribution tails to return. 1= one-tailed, 2 = two-tailed distribution"
-msgstr "रोखोम दैथाय हरफिननो राननाय टाइलसनि अनजिमाखौ थि खालामो।1=मोनसे-टाइलड, 2 = मोननै-टाइलड राननाय।"
+msgid "Mode specifies the number of distribution tails to return. 1 = one-tailed, 2 = two-tailed distribution"
+msgstr ""
#: sc/inc/scfuncs.hrc:3011
msgctxt "SC_OPCODE_T_TEST"
@@ -10813,8 +10818,8 @@ msgstr "रोखोम"
#: sc/inc/scfuncs.hrc:3024
msgctxt "SC_OPCODE_T_TEST_MS"
-msgid "Mode specifies the number of distribution tails to return. 1= one-tailed, 2 = two-tailed distribution"
-msgstr "रोखोम दैथाय हरफिननो राननाय टाइलसनि अनजिमाखौ थि खालामो।1=मोनसे-टाइलड, 2 = मोननै-टाइलड राननाय।"
+msgid "Mode specifies the number of distribution tails to return. 1 = one-tailed, 2 = two-tailed distribution"
+msgstr ""
#: sc/inc/scfuncs.hrc:3025
msgctxt "SC_OPCODE_T_TEST_MS"
@@ -18629,23 +18634,23 @@ msgctxt "mergecellsdialog|MergeCellsDialog"
msgid "Merge Cells"
msgstr "खथासाफोरखौ खौसे खालाम"
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:81
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:84
msgctxt "mergecellsdialog|label"
msgid "Some cells are not empty."
msgstr ""
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:96
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:99
#, fuzzy
msgctxt "mergecellsdialog|move-cells-radio"
msgid "Move the contents of the hidden cells into the first cell"
msgstr " एरसोखोमानाय खथासाफोरनि थानाय आयदाफोरखौ गिबि खथासायाव लोरिहोनो नामा?"
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:112
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:115
msgctxt "mergecellsdialog|empty-cells-radio"
msgid "Empty the contents of the hidden cells"
msgstr ""
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:128
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:131
msgctxt "mergecellsdialog|keep-content-radio"
msgid "Keep the contents of the hidden cells"
msgstr ""
diff --git a/source/brx/sd/messages.po b/source/brx/sd/messages.po
index 9a814faf98d..55d93d485be 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+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"
@@ -13,175 +13,175 @@ msgstr ""
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-#: sd/inc/DocumentRenderer.hrc:29
+#: sd/inc/DocumentRenderer.hrc:27
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Slides"
msgstr "स्लाइडस"
-#: sd/inc/DocumentRenderer.hrc:30
+#: sd/inc/DocumentRenderer.hrc:28
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Handouts"
msgstr "हेण्डआउटस"
-#: sd/inc/DocumentRenderer.hrc:31
+#: sd/inc/DocumentRenderer.hrc:29
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Notes"
msgstr "सुंद' लिनायफोर"
-#: sd/inc/DocumentRenderer.hrc:32
+#: sd/inc/DocumentRenderer.hrc:30
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Outline"
msgstr "बायजोनि सारि"
-#: sd/inc/DocumentRenderer.hrc:37
+#: sd/inc/DocumentRenderer.hrc:35
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "According to layout"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:38
+#: sd/inc/DocumentRenderer.hrc:36
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "1"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:39
+#: sd/inc/DocumentRenderer.hrc:37
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "2"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:40
+#: sd/inc/DocumentRenderer.hrc:38
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "3"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:41
+#: sd/inc/DocumentRenderer.hrc:39
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "4"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:42
+#: sd/inc/DocumentRenderer.hrc:40
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "6"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:43
+#: sd/inc/DocumentRenderer.hrc:41
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "9"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:48
+#: sd/inc/DocumentRenderer.hrc:46
msgctxt "STR_IMPRESS_PRINT_UI_ORDER_CHOICES"
msgid "Left to right, then down"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:49
+#: sd/inc/DocumentRenderer.hrc:47
msgctxt "STR_IMPRESS_PRINT_UI_ORDER_CHOICES"
msgid "Top to bottom, then right"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:54
+#: sd/inc/DocumentRenderer.hrc:52
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Original colors"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:55
+#: sd/inc/DocumentRenderer.hrc:53
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Grayscale"
msgstr "ग्रेस्केल"
-#: sd/inc/DocumentRenderer.hrc:56
+#: sd/inc/DocumentRenderer.hrc:54
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Black & white"
msgstr "गोसोम आरो~गुफुर"
-#: sd/inc/DocumentRenderer.hrc:61
+#: sd/inc/DocumentRenderer.hrc:59
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Original size"
msgstr "गुबै महर"
-#: sd/inc/DocumentRenderer.hrc:62
+#: sd/inc/DocumentRenderer.hrc:60
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Fit to printable page"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:63
+#: sd/inc/DocumentRenderer.hrc:61
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Distribute on multiple sheets of paper"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:64
+#: sd/inc/DocumentRenderer.hrc:62
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Tile sheet of paper with repeated slides"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:69
+#: sd/inc/DocumentRenderer.hrc:67
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Original size"
msgstr "गुबै महर"
-#: sd/inc/DocumentRenderer.hrc:70
+#: sd/inc/DocumentRenderer.hrc:68
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Fit to printable page"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:71
+#: sd/inc/DocumentRenderer.hrc:69
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Distribute on multiple sheets of paper"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:72
+#: sd/inc/DocumentRenderer.hrc:70
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Tile sheet of paper with repeated pages"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:77
+#: sd/inc/DocumentRenderer.hrc:75
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "All pages"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:78
+#: sd/inc/DocumentRenderer.hrc:76
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "Front sides / right pages"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:79
+#: sd/inc/DocumentRenderer.hrc:77
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "Back sides / left pages"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:84
+#: sd/inc/DocumentRenderer.hrc:82
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~All slides"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:85
+#: sd/inc/DocumentRenderer.hrc:83
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~Slides"
msgstr "स्लाइडस"
-#: sd/inc/DocumentRenderer.hrc:86
+#: sd/inc/DocumentRenderer.hrc:84
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Se~lection"
msgstr "सायखनाय"
-#: sd/inc/DocumentRenderer.hrc:91
+#: sd/inc/DocumentRenderer.hrc:89
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~All pages"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:92
+#: sd/inc/DocumentRenderer.hrc:90
#, fuzzy
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Pa~ges"
msgstr "बिखं फोर"
-#: sd/inc/DocumentRenderer.hrc:93
+#: sd/inc/DocumentRenderer.hrc:91
#, fuzzy
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Se~lection"
diff --git a/source/brx/svx/messages.po b/source/brx/svx/messages.po
index c3f73f24169..3be2e79cad9 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: 2018-05-16 16:53+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+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"
@@ -5512,7 +5512,7 @@ msgstr ""
#: svx/uiconfig/ui/safemodedialog.ui:432
msgctxt "safemodedialog|btn_create_zip"
-msgid "Create Zip Archive from User Profile"
+msgid "Archive User Profile"
msgstr ""
#: svx/uiconfig/ui/safemodedialog.ui:445
@@ -9193,9 +9193,9 @@ msgid "Red"
msgstr "गोजा"
#: include/svx/strings.hrc:565
-msgctxt "RID_SVXSTR_COLOR_VIOLET"
-msgid "Violet"
-msgstr "फानथाव गाब"
+msgctxt "RID_SVXSTR_COLOR_MAGENTA"
+msgid "Magenta"
+msgstr "गोजा-फानथाव गाब"
#: include/svx/strings.hrc:566
msgctxt "RID_SVXSTR_COLOR_PURPLE"
@@ -9260,8 +9260,8 @@ msgid "Light Red"
msgstr ""
#: include/svx/strings.hrc:579
-msgctxt "RID_SVXSTR_COLOR_LIGHTVIOLET"
-msgid "Light Violet"
+msgctxt "RID_SVXSTR_COLOR_LIGHTMAGENTA"
+msgid "Light Magenta"
msgstr ""
#: include/svx/strings.hrc:580
@@ -9328,8 +9328,8 @@ msgid "Dark Red"
msgstr "मोस्लेर गोजा"
#: include/svx/strings.hrc:593
-msgctxt "RID_SVXSTR_COLOR_DARKVIOLET1"
-msgid "Dark Violet"
+msgctxt "RID_SVXSTR_COLOR_DARKMAGENTA"
+msgid "Dark Magenta"
msgstr ""
#: include/svx/strings.hrc:594
@@ -9364,55 +9364,55 @@ msgstr ""
#. Elements of the Tonal color palette
#: include/svx/strings.hrc:601
+msgctxt "RID_SVXSTR_COLOR_VIOLET"
+msgid "Violet"
+msgstr "फानथाव गाब"
+
+#: include/svx/strings.hrc:602
msgctxt "RID_SVXSTR_COLOR_VIOLET_OUG"
msgid "Violet (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:602
+#: include/svx/strings.hrc:603
msgctxt "RID_SVXSTR_COLOR_BLUE_OUG"
msgid "Blue (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:603
+#: include/svx/strings.hrc:604
msgctxt "RID_SVXSTR_COLOR_AZURE_OUG"
msgid "Azure (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:604
+#: include/svx/strings.hrc:605
msgctxt "RID_SVXSTR_COLOR_SPRINGGREEN_OUG"
msgid "Spring Green (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:605
+#: include/svx/strings.hrc:606
msgctxt "RID_SVXSTR_COLOR_GREEN_OUG"
msgid "Green (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:606
+#: include/svx/strings.hrc:607
msgctxt "RID_SVXSTR_COLOR_CHARTREUSEGREEN_OUG"
msgid "Chartreuse Green (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:607
+#: include/svx/strings.hrc:608
msgctxt "RID_SVXSTR_COLOR_ORANGE_OUG"
msgid "Orange (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:608
+#: include/svx/strings.hrc:609
msgctxt "RID_SVXSTR_COLOR_RED_OUG"
msgid "Red (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:609
+#: include/svx/strings.hrc:610
msgctxt "RID_SVXSTR_COLOR_ROSE_OUG"
msgid "Rose (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:610
-msgctxt "RID_SVXSTR_COLOR_MAGENTA"
-msgid "Magenta"
-msgstr "गोजा-फानथाव गाब"
-
#: include/svx/strings.hrc:611
msgctxt "RID_SVXSTR_COLOR_AZURE"
msgid "Azure"
@@ -12612,12 +12612,12 @@ msgstr ""
#: include/svx/strings.hrc:1273
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_6"
-msgid "Check mark bullets"
+msgid "Cross mark bullets"
msgstr ""
#: include/svx/strings.hrc:1274
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_7"
-msgid "Tick mark bullets"
+msgid "Check mark bullets"
msgstr ""
#: include/svx/strings.hrc:1275
diff --git a/source/brx/sw/messages.po b/source/brx/sw/messages.po
index c98ca926857..b698bd685b7 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: 2018-05-22 13:17+0200\n"
+"POT-Creation-Date: 2018-06-12 14:41+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"
@@ -1232,13 +1232,13 @@ msgstr "मुख'नाय राव"
#: sw/inc/strings.hrc:172
msgctxt "STR_POOLCOLL_TOX_ILLUSH"
-msgid "Illustration Index Heading"
-msgstr "बेखेवनाय नायखां बिलाइ लिरबिदांनि बिमुं"
+msgid "Figure Index Heading"
+msgstr ""
#: sw/inc/strings.hrc:173
msgctxt "STR_POOLCOLL_TOX_ILLUS1"
-msgid "Illustration Index 1"
-msgstr "बेखेवनाय नायखां बिलाइ 1"
+msgid "Figure Index 1"
+msgstr ""
#: sw/inc/strings.hrc:174
#, fuzzy
@@ -3724,10 +3724,9 @@ msgid "Table of Objects"
msgstr ""
#: sw/inc/strings.hrc:672
-#, fuzzy
msgctxt "STR_TOX_ILL"
-msgid "Illustration Index"
-msgstr "बेखेवनाय नायखां बिलाइ 1"
+msgid "Table of Figures"
+msgstr ""
#: sw/inc/strings.hrc:673
#, c-format
@@ -9733,80 +9732,80 @@ msgctxt "footnotepage|label5"
msgid "Continuation Notice"
msgstr "सोलियबाय थानाय मोन्थिसार बिलाइ"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:49
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:55
#, fuzzy
msgctxt "footnotesendnotestabpage|ftnntnum"
msgid "_Restart numbering"
msgstr "अनजिमा होनायखौ फिन जागाय"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:91
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:93
#, fuzzy
msgctxt "footnotesendnotestabpage|ftnoffset_label"
msgid "_Start at:"
msgstr "..आव जागाय"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:112
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:111
msgctxt "footnotesendnotestabpage|ftnntnumfmt"
msgid "Custom _format"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:155
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:150
#, fuzzy
msgctxt "footnotesendnotestabpage|ftnsuffix_label"
msgid "Aft_er:"
msgstr "उनाव"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:199
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:188
#, fuzzy
msgctxt "footnotesendnotestabpage|ftnprefix_label"
msgid "Be_fore:"
msgstr "सिगां"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:228
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:212
msgctxt "footnotesendnotestabpage|ftnntattextend"
msgid "Collec_t at end of text"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:252
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:234
msgctxt "footnotesendnotestabpage|label1"
msgid "Footnotes"
msgstr "आफांनि सिन"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:289
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:271
msgctxt "footnotesendnotestabpage|endntattextend"
msgid "C_ollect at end of section"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:315
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:295
#, fuzzy
msgctxt "footnotesendnotestabpage|endntnum"
msgid "_Restart numbering"
msgstr "अनजिमा होनायखौ फिन जागाय"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:357
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:333
#, fuzzy
msgctxt "footnotesendnotestabpage|endoffset_label"
msgid "_Start at:"
msgstr "..आव जागाय"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:378
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:351
msgctxt "footnotesendnotestabpage|endntnumfmt"
msgid "_Custom format"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:421
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:390
#, fuzzy
msgctxt "footnotesendnotestabpage|endsuffix_label"
msgid "Aft_er:"
msgstr "उनाव"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:465
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:428
#, fuzzy
msgctxt "footnotesendnotestabpage|endprefix_label"
msgid "Be_fore:"
msgstr "सिगां"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:500
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:458
#, fuzzy
msgctxt "footnotesendnotestabpage|label2"
msgid "Endnotes"
@@ -9838,29 +9837,29 @@ msgctxt "formatsectiondialog|notes"
msgid "Footnotes/Endnotes"
msgstr "फुटन'ट~..."
-#: sw/uiconfig/swriter/ui/formattablepage.ui:63
+#: sw/uiconfig/swriter/ui/formattablepage.ui:77
#, fuzzy
msgctxt "formattablepage|nameft"
msgid "_Name"
msgstr "मुं"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:79
+#: sw/uiconfig/swriter/ui/formattablepage.ui:91
#, fuzzy
msgctxt "formattablepage|widthft"
msgid "W_idth"
msgstr "गुवारथि"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:110
+#: sw/uiconfig/swriter/ui/formattablepage.ui:120
msgctxt "formattablepage|relwidth"
msgid "Relati_ve"
msgstr ""
-#: sw/uiconfig/swriter/ui/formattablepage.ui:155
+#: sw/uiconfig/swriter/ui/formattablepage.ui:160
msgctxt "formattablepage|label45"
msgid "Properties"
msgstr "आखुथायफोर"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:194
+#: sw/uiconfig/swriter/ui/formattablepage.ui:195
#, fuzzy
msgctxt "formattablepage|leftft"
msgid "Lef_t"
@@ -9872,70 +9871,70 @@ msgctxt "formattablepage|rightft"
msgid "Ri_ght"
msgstr "आगदा"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:228
+#: sw/uiconfig/swriter/ui/formattablepage.ui:226
#, fuzzy
msgctxt "formattablepage|aboveft"
msgid "_Above"
msgstr "गोजौआव"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:245
+#: sw/uiconfig/swriter/ui/formattablepage.ui:241
#, fuzzy
msgctxt "formattablepage|belowft"
msgid "_Below"
msgstr "गाहायाव"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:320
+#: sw/uiconfig/swriter/ui/formattablepage.ui:311
msgctxt "formattablepage|label46"
msgid "Spacing"
msgstr "लांदां जायगा होनाय"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:362
+#: sw/uiconfig/swriter/ui/formattablepage.ui:349
#, fuzzy
msgctxt "formattablepage|full"
msgid "A_utomatic"
msgstr "गावनो गाव"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:380
+#: sw/uiconfig/swriter/ui/formattablepage.ui:365
#, fuzzy
msgctxt "formattablepage|left"
msgid "_Left"
msgstr "आगसि"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:398
+#: sw/uiconfig/swriter/ui/formattablepage.ui:381
#, fuzzy
msgctxt "formattablepage|fromleft"
msgid "_From left"
msgstr "आगसि निफ्राय"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:416
+#: sw/uiconfig/swriter/ui/formattablepage.ui:397
#, fuzzy
msgctxt "formattablepage|right"
msgid "R_ight"
msgstr "आगदा"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:435
+#: sw/uiconfig/swriter/ui/formattablepage.ui:413
#, fuzzy
msgctxt "formattablepage|center"
msgid "_Center"
msgstr "मिरु"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:453
+#: sw/uiconfig/swriter/ui/formattablepage.ui:429
msgctxt "formattablepage|free"
msgid "_Manual"
msgstr ""
-#: sw/uiconfig/swriter/ui/formattablepage.ui:478
+#: sw/uiconfig/swriter/ui/formattablepage.ui:452
msgctxt "formattablepage|label43"
msgid "Alignment"
msgstr "सारि सारि साजायनाय"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:522
+#: sw/uiconfig/swriter/ui/formattablepage.ui:491
#, fuzzy
msgctxt "formattablepage|label53"
msgid "Text _direction"
msgstr "आनजाद फोनांजाब"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:553
+#: sw/uiconfig/swriter/ui/formattablepage.ui:519
#, fuzzy
msgctxt "formattablepage|label44"
msgid "Properties "
@@ -10324,22 +10323,27 @@ msgctxt "headerfootermenu|insert_pagenumber"
msgid "Insert Page Number"
msgstr ""
-#: sw/uiconfig/swriter/ui/indentpage.ui:52
+#: sw/uiconfig/swriter/ui/headerfootermenu.ui:42
+msgctxt "headerfootermenu|insert_pagecount"
+msgid "Insert Page Count"
+msgstr ""
+
+#: sw/uiconfig/swriter/ui/indentpage.ui:57
msgctxt "indentpage|label1"
msgid "_Before section"
msgstr ""
-#: sw/uiconfig/swriter/ui/indentpage.ui:67
+#: sw/uiconfig/swriter/ui/indentpage.ui:71
msgctxt "indentpage|label3"
msgid "_After section"
msgstr ""
-#: sw/uiconfig/swriter/ui/indentpage.ui:113
+#: sw/uiconfig/swriter/ui/indentpage.ui:115
msgctxt "indentpage|label2"
msgid "Indent"
msgstr "इनडेन्ट"
-#: sw/uiconfig/swriter/ui/indentpage.ui:142
+#: sw/uiconfig/swriter/ui/indentpage.ui:155
msgctxt "indentpage|preview-atkobject"
msgid "Example"
msgstr "बिदिन्थि"
@@ -14141,7 +14145,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:68
msgctxt "optcompatpage|format"
-msgid "MS Word-compatible trailing blanks"
+msgid "Word-compatible trailing blanks"
msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:69
@@ -14151,7 +14155,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:70
msgctxt "optcompatpage|format"
-msgid "A database field (e.g., MailMerge) with empty value hides its paragraph"
+msgid "Hide paragraphs of database fields (e.g., mail merge) with an empty value"
msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:71
@@ -17069,137 +17073,137 @@ msgctxt "tableproperties|background"
msgid "Background"
msgstr "सावगारिनि उनथिं थानाय महर"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:25
-msgctxt "tabletextflowpage|liststore1"
-msgid "Horizontal"
-msgstr "समानथि"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:29
-msgctxt "tabletextflowpage|liststore1"
-msgid "Vertical"
-msgstr "थोंगोर"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:33
-msgctxt "tabletextflowpage|liststore1"
-msgid "Use superordinate object settings"
-msgstr "सुपारअर्डिनेट बेसाद फज'नाय बाहाय"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:47
-#, fuzzy
-msgctxt "tabletextflowpage|liststore2"
-msgid "Top"
-msgstr "गोजौ"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:51
-#, fuzzy
-msgctxt "tabletextflowpage|liststore2"
-msgid "Centered"
-msgstr "मिरु"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:55
-#, fuzzy
-msgctxt "tabletextflowpage|liststore2"
-msgid "Bottom"
-msgstr "गाहाय"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:97
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:53
#, fuzzy
msgctxt "tabletextflowpage|break"
msgid "_Break"
msgstr "~सिफायनाय"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:112
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:68
#, fuzzy
msgctxt "tabletextflowpage|page"
msgid "_Page"
msgstr "बिखं"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:132
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:87
#, fuzzy
msgctxt "tabletextflowpage|column"
msgid "Col_umn"
msgstr "खाम्फा"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:151
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:106
#, fuzzy
msgctxt "tabletextflowpage|before"
msgid "Be_fore"
msgstr "सिगां"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:171
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:125
#, fuzzy
msgctxt "tabletextflowpage|after"
msgid "_After"
msgstr "उनाव"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:203
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:158
#, fuzzy
msgctxt "tabletextflowpage|pagestyle"
msgid "With Page St_yle"
msgstr "बिखं आदब सुजु"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:224
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:177
#, fuzzy
msgctxt "tabletextflowpage|pagenoft"
msgid "Page _number"
msgstr "बिखं अनजिमा"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:257
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:213
#, fuzzy
msgctxt "tabletextflowpage|pagestylelb-atkobject"
msgid "With Page Style"
msgstr "बिखं आदब सुजु"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:274
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:230
msgctxt "tabletextflowpage|split"
msgid "Allow _table to split across pages and columns"
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:289
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:245
#, fuzzy
msgctxt "tabletextflowpage|splitrow"
msgid "Allow row to break a_cross pages and columns"
msgstr "बिखंफोर आरो खाम्फाफोर सारि सिफायनो गनायथि हो"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:306
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:262
#, fuzzy
msgctxt "tabletextflowpage|keep"
msgid "_Keep with next paragraph"
msgstr "उननि आनथोरजों लाखि"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:328
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:284
msgctxt "tabletextflowpage|label40"
msgid "Text _orientation"
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:361
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:298
+msgctxt "tabletextflowpage|liststore1"
+msgid "Horizontal"
+msgstr "समानथि"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:299
+msgctxt "tabletextflowpage|liststore1"
+msgid "Vertical"
+msgstr "थोंगोर"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:300
+msgctxt "tabletextflowpage|liststore1"
+msgid "Use superordinate object settings"
+msgstr "सुपारअर्डिनेट बेसाद फज'नाय बाहाय"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:321
#, fuzzy
msgctxt "tabletextflowpage|headline"
msgid "R_epeat heading"
msgstr "लिरबिदांनि बिमुंखौ फिन बाहाय"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:383
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:343
msgctxt "tabletextflowpage|label38"
msgid "The first "
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:396
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:356
#, fuzzy
msgctxt "tabletextflowpage|label39"
msgid "rows"
msgstr "सारि"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:434
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:395
msgctxt "tabletextflowpage|label35"
msgid "Text Flow"
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:467
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:428
msgctxt "tabletextflowpage|label41"
msgid "_Vertical alignment"
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:495
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:442
+#, fuzzy
+msgctxt "tabletextflowpage|liststore2"
+msgid "Top"
+msgstr "गोजौ"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:443
+#, fuzzy
+msgctxt "tabletextflowpage|liststore2"
+msgid "Centered"
+msgstr "मिरु"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:444
+#, fuzzy
+msgctxt "tabletextflowpage|liststore2"
+msgid "Bottom"
+msgstr "गाहाय"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:460
msgctxt "tabletextflowpage|label36"
msgid "Alignment"
msgstr "सारि सारि साजायनाय"
@@ -18028,10 +18032,9 @@ msgid "Alphabetical Index"
msgstr ""
#: sw/uiconfig/swriter/ui/tocindexpage.ui:58
-#, fuzzy
msgctxt "tocindexpage|liststore1"
-msgid "Illustration Index"
-msgstr "बेखेवनाय नायखां बिलाइ 1"
+msgid "Table of Figures"
+msgstr ""
#: sw/uiconfig/swriter/ui/tocindexpage.ui:62
msgctxt "tocindexpage|liststore1"
diff --git a/source/brx/writerperfect/messages.po b/source/brx/writerperfect/messages.po
index 34e53c0ba4d..b9c605ec2f8 100644
--- a/source/brx/writerperfect/messages.po
+++ b/source/brx/writerperfect/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-16 16:54+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+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"
@@ -65,100 +65,100 @@ msgctxt "exportepub|generalft"
msgid "General"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:122
+#: writerperfect/uiconfig/ui/exportepub.ui:121
#, fuzzy
msgctxt "exportepub|versionft"
msgid "Version:"
msgstr "~भारसन:"
-#: writerperfect/uiconfig/ui/exportepub.ui:139
+#: writerperfect/uiconfig/ui/exportepub.ui:138
msgctxt "exportepub|epub3"
msgid "EPUB 3.0"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:140
+#: writerperfect/uiconfig/ui/exportepub.ui:139
msgctxt "exportepub|epub2"
msgid "EPUB 2.0"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:175
+#: writerperfect/uiconfig/ui/exportepub.ui:174
msgctxt "exportepub|splitft"
msgid "Split method:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:192
+#: writerperfect/uiconfig/ui/exportepub.ui:191
#, fuzzy
msgctxt "exportepub|splitpage"
msgid "Page break"
msgstr "बिखं सिफाय"
-#: writerperfect/uiconfig/ui/exportepub.ui:193
+#: writerperfect/uiconfig/ui/exportepub.ui:192
#, fuzzy
msgctxt "exportepub|splitheading"
msgid "Heading"
msgstr "हेडिं"
-#: writerperfect/uiconfig/ui/exportepub.ui:228
+#: writerperfect/uiconfig/ui/exportepub.ui:227
msgctxt "exportepub|layoutft"
msgid "Layout method:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:245
+#: writerperfect/uiconfig/ui/exportepub.ui:244
msgctxt "exportepub|layoutreflowable"
msgid "Reflowable"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:246
+#: writerperfect/uiconfig/ui/exportepub.ui:245
msgctxt "exportepub|layoutfixed"
msgid "Fixed"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:281
+#: writerperfect/uiconfig/ui/exportepub.ui:280
msgctxt "exportepub|coverimageft"
msgid "Custom cover image:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:311
+#: writerperfect/uiconfig/ui/exportepub.ui:310
msgctxt "exportepub|coverbutton"
msgid "Browse..."
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:355
+#: writerperfect/uiconfig/ui/exportepub.ui:354
msgctxt "exportepub|mediadirft"
msgid "Custom media directory:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:385
+#: writerperfect/uiconfig/ui/exportepub.ui:384
msgctxt "exportepub|mediabutton"
msgid "Browse..."
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:429
+#: writerperfect/uiconfig/ui/exportepub.ui:428
msgctxt "exportepub|metadataft"
msgid "Metadata"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:470
+#: writerperfect/uiconfig/ui/exportepub.ui:468
msgctxt "exportepub|identifierft"
msgid "Identifier:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:485
+#: writerperfect/uiconfig/ui/exportepub.ui:483
msgctxt "exportepub|titleft"
msgid "Title:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:511
+#: writerperfect/uiconfig/ui/exportepub.ui:509
msgctxt "exportepub|authorft"
msgid "Author:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:537
+#: writerperfect/uiconfig/ui/exportepub.ui:535
msgctxt "exportepub|languageft"
msgid "Language:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:563
+#: writerperfect/uiconfig/ui/exportepub.ui:561
msgctxt "exportepub|dateft"
msgid "Date:"
msgstr ""
diff --git a/source/bs/cui/messages.po b/source/bs/cui/messages.po
index 18ce4943e13..77743671999 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+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"
@@ -10381,97 +10381,97 @@ msgctxt "positionsizedialog|PositionAndSizeDialog"
msgid "Position and Size"
msgstr "Položaj i veličina"
-#: cui/uiconfig/ui/positionsizedialog.ui:107
+#: cui/uiconfig/ui/positionsizedialog.ui:136
msgctxt "positionsizedialog|RID_SVXPAGE_POSITION_SIZE"
msgid "Position and Size"
msgstr "Položaj i veličina"
-#: cui/uiconfig/ui/positionsizedialog.ui:129
+#: cui/uiconfig/ui/positionsizedialog.ui:182
msgctxt "positionsizedialog|RID_SVXPAGE_SWPOSSIZE"
msgid "Position and Size"
msgstr "Položaj i veličina"
-#: cui/uiconfig/ui/positionsizedialog.ui:152
+#: cui/uiconfig/ui/positionsizedialog.ui:229
msgctxt "positionsizedialog|RID_SVXPAGE_ANGLE"
msgid "Rotation"
msgstr "Rotacija"
-#: cui/uiconfig/ui/positionsizedialog.ui:175
+#: cui/uiconfig/ui/positionsizedialog.ui:276
msgctxt "positionsizedialog|RID_SVXPAGE_SLANT"
msgid "Slant & Corner Radius"
msgstr "Prečnik kosine i ugla"
-#: cui/uiconfig/ui/possizetabpage.ui:40
+#: cui/uiconfig/ui/possizetabpage.ui:61
msgctxt "possizetabpage|FT_POS_X"
msgid "Position _X:"
msgstr "Položaj _X:"
-#: cui/uiconfig/ui/possizetabpage.ui:56
+#: cui/uiconfig/ui/possizetabpage.ui:75
msgctxt "possizetabpage|FT_POS_Y"
msgid "Position _Y:"
msgstr "Položaj _Y:"
-#: cui/uiconfig/ui/possizetabpage.ui:110
+#: cui/uiconfig/ui/possizetabpage.ui:128
msgctxt "possizetabpage|FT_POSREFERENCE"
msgid "_Base point:"
msgstr "_Osnovna tačka:"
-#: cui/uiconfig/ui/possizetabpage.ui:148
+#: cui/uiconfig/ui/possizetabpage.ui:182
msgctxt "possizetabpage|label1"
msgid "Position"
msgstr "Pozicija"
-#: cui/uiconfig/ui/possizetabpage.ui:190
+#: cui/uiconfig/ui/possizetabpage.ui:224
msgctxt "possizetabpage|FT_WIDTH"
msgid "Wi_dth:"
msgstr "Ši_rina:"
-#: cui/uiconfig/ui/possizetabpage.ui:206
+#: cui/uiconfig/ui/possizetabpage.ui:238
msgctxt "possizetabpage|FT_HEIGHT"
msgid "H_eight:"
msgstr "V_isina:"
-#: cui/uiconfig/ui/possizetabpage.ui:247
+#: cui/uiconfig/ui/possizetabpage.ui:276
msgctxt "possizetabpage|CBX_SCALE"
msgid "_Keep ratio"
msgstr "_Zadrži odnos"
-#: cui/uiconfig/ui/possizetabpage.ui:279
+#: cui/uiconfig/ui/possizetabpage.ui:307
msgctxt "possizetabpage|FT_SIZEREFERENCE"
msgid "Base _point:"
msgstr "Osnovna _tačka:"
-#: cui/uiconfig/ui/possizetabpage.ui:317
+#: cui/uiconfig/ui/possizetabpage.ui:361
msgctxt "possizetabpage|label2"
msgid "Size"
msgstr "Veličina"
-#: cui/uiconfig/ui/possizetabpage.ui:356
+#: cui/uiconfig/ui/possizetabpage.ui:401
msgctxt "possizetabpage|TSB_POSPROTECT"
msgid "Positio_n"
msgstr "Položa_j"
-#: cui/uiconfig/ui/possizetabpage.ui:373
+#: cui/uiconfig/ui/possizetabpage.ui:418
msgctxt "possizetabpage|TSB_SIZEPROTECT"
msgid "_Size"
msgstr "_Veličina"
-#: cui/uiconfig/ui/possizetabpage.ui:397
+#: cui/uiconfig/ui/possizetabpage.ui:441
msgctxt "possizetabpage|label3"
msgid "Protect"
msgstr "Zaštita"
-#: cui/uiconfig/ui/possizetabpage.ui:430
+#: cui/uiconfig/ui/possizetabpage.ui:475
msgctxt "possizetabpage|TSB_AUTOGROW_WIDTH"
msgid "_Fit width to text"
msgstr "_Namjesti širinu tekstom"
-#: cui/uiconfig/ui/possizetabpage.ui:447
+#: cui/uiconfig/ui/possizetabpage.ui:492
msgctxt "possizetabpage|TSB_AUTOGROW_HEIGHT"
msgid "Fit _height to text"
msgstr "Namjesti _visinu tekstom"
-#: cui/uiconfig/ui/possizetabpage.ui:471
+#: cui/uiconfig/ui/possizetabpage.ui:515
msgctxt "possizetabpage|label4"
msgid "Adapt"
msgstr "Prilagodi"
@@ -10683,51 +10683,51 @@ msgctxt "recordnumberdialog|label2"
msgid "go to record"
msgstr ""
-#: cui/uiconfig/ui/rotationtabpage.ui:52
+#: cui/uiconfig/ui/rotationtabpage.ui:56
msgctxt "rotationtabpage|FT_POS_X"
msgid "Position _X:"
msgstr "Položaj _X:"
-#: cui/uiconfig/ui/rotationtabpage.ui:66
+#: cui/uiconfig/ui/rotationtabpage.ui:70
msgctxt "rotationtabpage|FT_POS_Y"
msgid "Position _Y:"
msgstr "Položaj _Y:"
-#: cui/uiconfig/ui/rotationtabpage.ui:116
+#: cui/uiconfig/ui/rotationtabpage.ui:123
#, fuzzy
msgctxt "rotationtabpage|FT_POSPRESETS"
msgid "_Default settings:"
msgstr "_Zadate postavke"
-#: cui/uiconfig/ui/rotationtabpage.ui:130
+#: cui/uiconfig/ui/rotationtabpage.ui:151
msgctxt "rotationtabpage|CTL_RECT|tooltip_text"
msgid "Rotation point"
msgstr "Tačka rotacije"
-#: cui/uiconfig/ui/rotationtabpage.ui:155
+#: cui/uiconfig/ui/rotationtabpage.ui:178
#, fuzzy
msgctxt "rotationtabpage|label1"
msgid "Pivot Point"
msgstr "Pivot tačka"
-#: cui/uiconfig/ui/rotationtabpage.ui:197
+#: cui/uiconfig/ui/rotationtabpage.ui:220
#, fuzzy
msgctxt "rotationtabpage|FT_ANGLE"
msgid "_Angle:"
msgstr "_Ugao"
-#: cui/uiconfig/ui/rotationtabpage.ui:238
+#: cui/uiconfig/ui/rotationtabpage.ui:263
#, fuzzy
msgctxt "rotationtabpage|FT_ANGLEPRESETS"
msgid "Default _settings:"
msgstr "Zadate _postavke"
-#: cui/uiconfig/ui/rotationtabpage.ui:252
+#: cui/uiconfig/ui/rotationtabpage.ui:287
msgctxt "rotationtabpage|CTL_ANGLE|tooltip_text"
msgid "Rotation Angle"
msgstr "Ugao rotacije"
-#: cui/uiconfig/ui/rotationtabpage.ui:277
+#: cui/uiconfig/ui/rotationtabpage.ui:314
msgctxt "rotationtabpage|label2"
msgid "Rotation Angle"
msgstr "Ugao rotacije"
@@ -11122,55 +11122,55 @@ msgctxt "similaritysearchdialog|relaxbox"
msgid "_Combine"
msgstr "_Kombinovati"
-#: cui/uiconfig/ui/slantcornertabpage.ui:50
+#: cui/uiconfig/ui/slantcornertabpage.ui:70
msgctxt "slantcornertabpage|label5"
msgid "_X:"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:88
+#: cui/uiconfig/ui/slantcornertabpage.ui:110
msgctxt "slantcornertabpage|label6"
msgid "_Y:"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:125
+#: cui/uiconfig/ui/slantcornertabpage.ui:149
msgctxt "slantcornertabpage|label3"
msgid "Control Point 1"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:159
+#: cui/uiconfig/ui/slantcornertabpage.ui:183
#, fuzzy
msgctxt "slantcornertabpage|FT_RADIUS"
msgid "_Radius:"
msgstr "_Poluprečnik"
-#: cui/uiconfig/ui/slantcornertabpage.ui:189
+#: cui/uiconfig/ui/slantcornertabpage.ui:214
#, fuzzy
msgctxt "slantcornertabpage|label1"
msgid "Corner Radius"
msgstr "Poluprečnik ugla"
-#: cui/uiconfig/ui/slantcornertabpage.ui:223
+#: cui/uiconfig/ui/slantcornertabpage.ui:248
#, fuzzy
msgctxt "slantcornertabpage|FT_ANGLE"
msgid "_Angle:"
msgstr "_Ugao"
-#: cui/uiconfig/ui/slantcornertabpage.ui:253
+#: cui/uiconfig/ui/slantcornertabpage.ui:279
msgctxt "slantcornertabpage|label2"
msgid "Slant"
msgstr "Nagnutost"
-#: cui/uiconfig/ui/slantcornertabpage.ui:294
+#: cui/uiconfig/ui/slantcornertabpage.ui:320
msgctxt "slantcornertabpage|label4"
msgid "_X:"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:332
+#: cui/uiconfig/ui/slantcornertabpage.ui:360
msgctxt "slantcornertabpage|label7"
msgid "_Y:"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:369
+#: cui/uiconfig/ui/slantcornertabpage.ui:399
msgctxt "slantcornertabpage|label8"
msgid "Control Point 2"
msgstr ""
@@ -11464,118 +11464,118 @@ msgctxt "storedwebconnectiondialog|change"
msgid "_Change Password..."
msgstr "_Promijeni lozinku..."
-#: cui/uiconfig/ui/swpossizepage.ui:74
+#: cui/uiconfig/ui/swpossizepage.ui:85
msgctxt "swpossizepage|widthft"
msgid "_Width:"
msgstr "Š_irina:"
-#: cui/uiconfig/ui/swpossizepage.ui:111
+#: cui/uiconfig/ui/swpossizepage.ui:123
msgctxt "swpossizepage|heightft"
msgid "H_eight:"
msgstr "V_isina:"
-#: cui/uiconfig/ui/swpossizepage.ui:128
+#: cui/uiconfig/ui/swpossizepage.ui:141
msgctxt "swpossizepage|ratio"
msgid "_Keep ratio"
msgstr "_Zadrži odnos"
-#: cui/uiconfig/ui/swpossizepage.ui:149
+#: cui/uiconfig/ui/swpossizepage.ui:162
msgctxt "swpossizepage|label2"
msgid "Size"
msgstr "Veličina"
-#: cui/uiconfig/ui/swpossizepage.ui:205
+#: cui/uiconfig/ui/swpossizepage.ui:218
msgctxt "swpossizepage|topage"
msgid "To _page"
msgstr "Na _stranicu"
-#: cui/uiconfig/ui/swpossizepage.ui:222
+#: cui/uiconfig/ui/swpossizepage.ui:234
msgctxt "swpossizepage|topara"
msgid "To paragrap_h"
msgstr "Na _pasus"
-#: cui/uiconfig/ui/swpossizepage.ui:238
+#: cui/uiconfig/ui/swpossizepage.ui:250
msgctxt "swpossizepage|tochar"
msgid "To cha_racter"
msgstr "Na zn_ak"
-#: cui/uiconfig/ui/swpossizepage.ui:254
+#: cui/uiconfig/ui/swpossizepage.ui:266
msgctxt "swpossizepage|aschar"
msgid "_As character"
msgstr "_Kao znak"
-#: cui/uiconfig/ui/swpossizepage.ui:270
+#: cui/uiconfig/ui/swpossizepage.ui:282
msgctxt "swpossizepage|toframe"
msgid "To _frame"
msgstr "Na _okvir"
-#: cui/uiconfig/ui/swpossizepage.ui:292
+#: cui/uiconfig/ui/swpossizepage.ui:304
msgctxt "swpossizepage|label1"
msgid "Anchor"
msgstr "Sidro"
-#: cui/uiconfig/ui/swpossizepage.ui:333
+#: cui/uiconfig/ui/swpossizepage.ui:344
#, fuzzy
msgctxt "swpossizepage|horiposft"
msgid "Hori_zontal:"
msgstr "Vodo_ravno"
-#: cui/uiconfig/ui/swpossizepage.ui:347
+#: cui/uiconfig/ui/swpossizepage.ui:358
#, fuzzy
msgctxt "swpossizepage|horibyft"
msgid "b_y:"
msgstr "s_a"
-#: cui/uiconfig/ui/swpossizepage.ui:361
+#: cui/uiconfig/ui/swpossizepage.ui:372
#, fuzzy
msgctxt "swpossizepage|vertbyft"
msgid "_by:"
msgstr "_sa"
-#: cui/uiconfig/ui/swpossizepage.ui:375
+#: cui/uiconfig/ui/swpossizepage.ui:386
#, fuzzy
msgctxt "swpossizepage|horitoft"
msgid "_to:"
msgstr "_do"
-#: cui/uiconfig/ui/swpossizepage.ui:421
+#: cui/uiconfig/ui/swpossizepage.ui:433
#, fuzzy
msgctxt "swpossizepage|vertposft"
msgid "_Vertical:"
msgstr "_Uspravno"
-#: cui/uiconfig/ui/swpossizepage.ui:457
+#: cui/uiconfig/ui/swpossizepage.ui:470
#, fuzzy
msgctxt "swpossizepage|verttoft"
msgid "t_o:"
msgstr "d_o"
-#: cui/uiconfig/ui/swpossizepage.ui:478
+#: cui/uiconfig/ui/swpossizepage.ui:492
msgctxt "swpossizepage|mirror"
msgid "_Mirror on even pages"
msgstr "_Ogledati na parnim stranicama"
-#: cui/uiconfig/ui/swpossizepage.ui:495
+#: cui/uiconfig/ui/swpossizepage.ui:509
msgctxt "swpossizepage|followtextflow"
msgid "Follow te_xt flow"
msgstr "Prati _tok teksta"
-#: cui/uiconfig/ui/swpossizepage.ui:518
+#: cui/uiconfig/ui/swpossizepage.ui:532
msgctxt "swpossizepage|label11"
msgid "Position"
msgstr "Pozicija"
-#: cui/uiconfig/ui/swpossizepage.ui:549
+#: cui/uiconfig/ui/swpossizepage.ui:563
msgctxt "swpossizepage|pos"
msgid "Positio_n"
msgstr "Položa_j"
-#: cui/uiconfig/ui/swpossizepage.ui:565
+#: cui/uiconfig/ui/swpossizepage.ui:579
msgctxt "swpossizepage|size"
msgid "_Size"
msgstr "_Veličina"
-#: cui/uiconfig/ui/swpossizepage.ui:587
+#: cui/uiconfig/ui/swpossizepage.ui:601
msgctxt "swpossizepage|label3"
msgid "Protect"
msgstr "Zaštititi"
@@ -11771,12 +11771,12 @@ msgctxt "textattrtabpage|label2"
msgid "Spacing to Borders"
msgstr "Razdvajanje do granica"
-#: cui/uiconfig/ui/textattrtabpage.ui:425
+#: cui/uiconfig/ui/textattrtabpage.ui:423
msgctxt "textattrtabpage|TSB_FULL_WIDTH"
msgid "Full _width"
msgstr "Puna š_irina"
-#: cui/uiconfig/ui/textattrtabpage.ui:448
+#: cui/uiconfig/ui/textattrtabpage.ui:446
#, fuzzy
msgctxt "textattrtabpage|label3"
msgid "Text Anchor"
diff --git a/source/bs/filter/source/config/fragments/filters.po b/source/bs/filter/source/config/fragments/filters.po
index 6d8ba5f8e0c..91bf96d48f7 100644
--- a/source/bs/filter/source/config/fragments/filters.po
+++ b/source/bs/filter/source/config/fragments/filters.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-16 16:54+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2016-12-01 12:36+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -466,8 +466,8 @@ msgctxt ""
"MS Word 2003 XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Word 2003 XML"
-msgstr "Microsoft Word 2003 XML"
+msgid "Word 2003 XML"
+msgstr ""
#: MS_Word_2007_XML.xcu
msgctxt ""
@@ -1291,7 +1291,7 @@ msgctxt ""
"Calc MS Excel 2007 VBA XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Excel 2007-2016 XML (macro enabled)"
+msgid "Excel 2007–2019 (macro-enabled)"
msgstr ""
#: calc_MS_Excel_2007_XML.xcu
diff --git a/source/bs/filter/source/config/fragments/types.po b/source/bs/filter/source/config/fragments/types.po
index 7cce704597d..18ae195219d 100644
--- a/source/bs/filter/source/config/fragments/types.po
+++ b/source/bs/filter/source/config/fragments/types.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-08 15:11+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2015-11-11 01:13+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -293,8 +293,8 @@ msgctxt ""
"writer_MS_Word_2003_XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Word 2003 XML"
-msgstr "Microsoft Word 2003 XML"
+msgid "Word 2003 XML"
+msgstr ""
#: writer_MS_Word_2007_XML.xcu
msgctxt ""
diff --git a/source/bs/fpicker/messages.po b/source/bs/fpicker/messages.po
index ad4393ef295..b7f84c56036 100644
--- a/source/bs/fpicker/messages.po
+++ b/source/bs/fpicker/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+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"
@@ -280,14 +280,13 @@ msgstr ""
#: fpicker/uiconfig/ui/foldernamedialog.ui:8
msgctxt "foldernamedialog|FolderNameDialog"
-msgid "Folder Name ?"
+msgid "Folder Name"
msgstr ""
#: fpicker/uiconfig/ui/foldernamedialog.ui:91
-#, fuzzy
msgctxt "foldernamedialog|label2"
-msgid "Na_me"
-msgstr "_Naziv"
+msgid "Na_me:"
+msgstr ""
#: fpicker/uiconfig/ui/foldernamedialog.ui:122
#, fuzzy
diff --git a/source/bs/helpcontent2/source/text/shared/00.po b/source/bs/helpcontent2/source/text/shared/00.po
index 8a90cd74441..d3f672fa4fa 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2016-05-24 02:21+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -397,15 +397,15 @@ msgctxt ""
"00000001.xhp\n"
"hd_id3149670\n"
"help.text"
-msgid "Back"
-msgstr "Nazad"
+msgid "Reset"
+msgstr ""
#: 00000001.xhp
msgctxt ""
"00000001.xhp\n"
"par_id3145068\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optionsdialog/revert\">Resets modified values back to the $[officename] default values.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optionsdialog/revert\">Resets changes made to the current tab to those applicable when this dialog was opened.</ahelp>"
msgstr ""
#: 00000001.xhp
@@ -552,6 +552,54 @@ msgctxt ""
msgid "<variable id=\"ShiftF1\">Press Shift+F1 and point to a control to learn more about that control.</variable>"
msgstr ""
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"hd_id631527692833772\n"
+"help.text"
+msgid "Options dialog buttons"
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"hd_id831527692839432\n"
+"help.text"
+msgid "OK"
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"par_id471527692844934\n"
+"help.text"
+msgid "Save the changes in the page and close the Options dialog."
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"hd_id261527692850720\n"
+"help.text"
+msgid "Cancel"
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"par_id571527692855533\n"
+"help.text"
+msgid "Close the Options dialog and discard all changes done."
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"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 Options dialog."
+msgstr ""
+
#: 00000002.xhp
msgctxt ""
"00000002.xhp\n"
@@ -11125,7 +11173,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3151293\n"
"help.text"
-msgid "<variable id=\"linienstile\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Line Styles</emph> tab </variable>"
+msgid "<variable id=\"linienstile\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Line Styles</emph> tab</variable>"
msgstr ""
#: 00040502.xhp
@@ -11133,7 +11181,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3149317\n"
"help.text"
-msgid "<variable id=\"linienenden\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Arrow Styles</emph> tab </variable>"
+msgid "<variable id=\"linienenden\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Arrow Styles</emph> tab</variable>"
msgstr ""
#: 00040502.xhp
@@ -11173,7 +11221,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3154948\n"
"help.text"
-msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Area</emph> tab"
+msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Area</emph> tab."
msgstr ""
#: 00040502.xhp
@@ -11181,7 +11229,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3145607\n"
"help.text"
-msgid "Choose <emph>View - Styles</emph> - open context menu and choose <emph>Modify/New - Area</emph> tab (presentation documents)"
+msgid "Choose <emph>View - Styles</emph> - open context menu and choose <emph>Modify/New - Area</emph> tab (presentation documents)."
msgstr ""
#: 00040502.xhp
@@ -11189,47 +11237,47 @@ msgctxt ""
"00040502.xhp\n"
"par_id3152922\n"
"help.text"
-msgid "Choose <emph>Format - Title - Area</emph> tab (chart documents)"
-msgstr "izaberi <emph>Oblik - Naslov - Znak</emph> dupli razmak (Grafikonski documenti)"
+msgid "Choose <emph>Format - Title - Area</emph> tab (chart documents)."
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3157894\n"
"help.text"
-msgid "Choose <emph>Format - Legend - Area</emph> tab (chart documents)"
-msgstr "izaberi <emph>Oblik - Legend - Znak</emph> dupli razmak (Grafikonski documenti)"
+msgid "Choose <emph>Format - Legend - Area</emph> tab (chart documents)."
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3144444\n"
"help.text"
-msgid "Choose <emph>Format - Chart Wall - Area</emph> tab (chart documents)"
-msgstr "izaberi <emph>Oblik - Axis - Znak</emph> dupli razmak (Grafikonski documenti)"
+msgid "Choose <emph>Format - Chart Wall - Area</emph> tab (chart documents)."
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3156543\n"
"help.text"
-msgid "Choose <emph>Format - Chart Floor - Area</emph> tab (chart documents)"
-msgstr "izaberi <emph>Oblik - Axis - Znak</emph> dupli razmak (Grafikonski documenti)"
+msgid "Choose <emph>Format - Chart Floor - Area</emph> tab (chart documents)."
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3150685\n"
"help.text"
-msgid "Choose <emph>Format - Chart Area - Area</emph> tab (chart documents)"
-msgstr "izaberi <emph>Oblik - Axis - Znak</emph> dupli razmak (Grafikonski documenti)"
+msgid "Choose <emph>Format - Chart Area - Area</emph> tab (chart documents)."
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3149664\n"
"help.text"
-msgid "Choose <emph>Slide - Properties - Background</emph> tab (in $[officename] Impress)"
+msgid "Choose <emph>Slide - Properties - Background</emph> tab (in $[officename] Impress)."
msgstr ""
#: 00040502.xhp
@@ -11237,7 +11285,15 @@ msgctxt ""
"00040502.xhp\n"
"par_id9149694\n"
"help.text"
-msgid "Choose <emph>Page - Properties - Background</emph> tab (in $[officename] Draw)"
+msgid "Choose <emph>Page - Properties - Background</emph> tab (in $[officename] Draw)."
+msgstr ""
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id841527083135387\n"
+"help.text"
+msgid "Choose <emph>Table - Properties - Background</emph> tab."
msgstr ""
#: 00040502.xhp
@@ -11349,7 +11405,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3150011\n"
"help.text"
-msgid "<variable id=\"schatte\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Shadow</emph> tab </variable>"
+msgid "<variable id=\"schatte\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Shadow</emph> tab</variable>"
msgstr ""
#: 00040502.xhp
@@ -11357,7 +11413,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3147441\n"
"help.text"
-msgid "<variable id=\"verlauf\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Gradients</emph> tab </variable>"
+msgid "<variable id=\"verlauf\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Gradients</emph> tab</variable>"
msgstr ""
#: 00040502.xhp
@@ -11365,7 +11421,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3155308\n"
"help.text"
-msgid "<variable id=\"schraffur\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Hatching</emph> tab </variable>"
+msgid "<variable id=\"schraffur\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Hatching</emph> tab</variable>"
msgstr ""
#: 00040502.xhp
@@ -11373,7 +11429,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3145800\n"
"help.text"
-msgid "<variable id=\"bitmap\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Bitmaps</emph> tab </variable>"
+msgid "<variable id=\"bitmap\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Bitmaps</emph> tab</variable>"
msgstr ""
#: 00040502.xhp
@@ -11413,7 +11469,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3156286\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F4 key </caseinline><caseinline select=\"IMPRESS\">F4 key </caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F4 key</caseinline><caseinline select=\"IMPRESS\">F4 key</caseinline></switchinline>"
msgstr ""
#: 00040502.xhp
@@ -11453,7 +11509,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3153099\n"
"help.text"
-msgid "<variable id=\"position2\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Position and Size</emph> tab </variable>"
+msgid "<variable id=\"position2\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Position and Size</emph> tab</variable>"
msgstr ""
#: 00040502.xhp
@@ -11485,7 +11541,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3145666\n"
"help.text"
-msgid "<variable id=\"ecke\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Slant & Corner Radius</emph> tab </variable>"
+msgid "<variable id=\"ecke\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Slant & Corner Radius</emph> tab</variable>"
msgstr ""
#: 00040502.xhp
@@ -11493,7 +11549,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3146081\n"
"help.text"
-msgid "<variable id=\"legende\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Callout</emph> tab (only for textbox callouts, not for custom shapes callouts) </variable>"
+msgid "<variable id=\"legende\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Callout</emph> tab (only for textbox callouts, not for custom shapes callouts)</variable>"
msgstr ""
#: 00040502.xhp
@@ -11517,7 +11573,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3149019\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F8 key </caseinline><caseinline select=\"IMPRESS\">F8 key </caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F8 key</caseinline><caseinline select=\"IMPRESS\">F8 key</caseinline></switchinline>"
msgstr ""
#: 00040502.xhp
@@ -11805,8 +11861,8 @@ msgctxt ""
"00040502.xhp\n"
"par_id3153076\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Align Center Horizontally </caseinline><defaultinline>Centered</defaultinline></switchinline>"
-msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Naredba</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+P"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Align Center Horizontally</caseinline><defaultinline>Centered</defaultinline></switchinline>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
@@ -11845,7 +11901,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3150527\n"
"help.text"
-msgid "<variable id=\"font\">Click <emph>Fontwork</emph> icon on <emph>Drawing</emph> bar </variable>"
+msgid "<variable id=\"font\">Click <emph>Fontwork</emph> icon on <emph>Drawing</emph> bar</variable>"
msgstr ""
#: 00040502.xhp
diff --git a/source/bs/helpcontent2/source/text/shared/01.po b/source/bs/helpcontent2/source/text/shared/01.po
index 441443090c3..e8cb77080f7 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: 2018-05-23 23:19+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2016-07-05 16:37+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -23587,6 +23587,22 @@ msgstr ""
#: 05210100.xhp
msgctxt ""
"05210100.xhp\n"
+"hd_id471527077476052\n"
+"help.text"
+msgid "Cell, Row or Table background selector"
+msgstr ""
+
+#: 05210100.xhp
+msgctxt ""
+"05210100.xhp\n"
+"par_id661527077493366\n"
+"help.text"
+msgid "Select the table object which background area is to be filled."
+msgstr ""
+
+#: 05210100.xhp
+msgctxt ""
+"05210100.xhp\n"
"hd_id3147373\n"
"help.text"
msgid "None"
@@ -31205,15 +31221,15 @@ msgctxt ""
"06040100.xhp\n"
"hd_id3145072\n"
"help.text"
-msgid "Automatic *bold* and _underline_"
-msgstr "Automatski *masno* i _kurziv_"
+msgid "Automatic *bold*, /italic/, -strikeout- and _underline_"
+msgstr ""
#: 06040100.xhp
msgctxt ""
"06040100.xhp\n"
"par_id3153577\n"
"help.text"
-msgid "Automatically applies bold formatting to text enclosed by asterisks (*), and underline to text enclosed by underscores ( _ ), for example, *bold*. The asterisks and underscores are not displayed after the formatting is applied."
+msgid "Automatically applies bold, italic, strikethrough or underline formatting to text enclosed by asterisks (*), slashes (/), hyphens (-), and underscores (_), respectively. These characters disappear after the formatting is applied."
msgstr ""
#: 06040100.xhp
@@ -31221,7 +31237,7 @@ msgctxt ""
"06040100.xhp\n"
"par_id3153127\n"
"help.text"
-msgid "This feature does not work if the formatting characters * or _ are entered with an <link href=\"text/shared/00/00000005.xhp#IME\" name=\"Input Method Editor\">Input Method Editor</link>."
+msgid "This feature does not work if the formatting characters <item type=\"literal\">* / - _</item> are entered with an <link href=\"text/shared/00/00000005.xhp#IME\" name=\"Input Method Editor\">Input Method Editor</link>."
msgstr ""
#: 06040100.xhp
diff --git a/source/bs/helpcontent2/source/text/shared/optionen.po b/source/bs/helpcontent2/source/text/shared/optionen.po
index dea8c5773a9..390a984cbc4 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: 2018-05-08 15:10+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2016-07-05 16:53+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -83,6 +83,22 @@ msgstr ""
#: 01000000.xhp
msgctxt ""
"01000000.xhp\n"
+"hd_id551527692881035\n"
+"help.text"
+msgid "Help"
+msgstr ""
+
+#: 01000000.xhp
+msgctxt ""
+"01000000.xhp\n"
+"par_id831527692885723\n"
+"help.text"
+msgid "Opens the help contents for the Options page displayed."
+msgstr ""
+
+#: 01000000.xhp
+msgctxt ""
+"01000000.xhp\n"
"hd_id3159149\n"
"help.text"
msgid "<link href=\"text/shared/optionen/01010000.xhp\" name=\"$[officename]\">%PRODUCTNAME</link>"
@@ -4565,8 +4581,8 @@ msgctxt ""
"01030300.xhp\n"
"par_idN10640\n"
"help.text"
-msgid "Options"
-msgstr "Opcije"
+msgid "Security Options and Warnings"
+msgstr ""
#: 01030300.xhp
msgctxt ""
@@ -4597,8 +4613,8 @@ msgctxt ""
"01030300.xhp\n"
"hd_id3168736\n"
"help.text"
-msgid "Persistently save passwords protected by a master password"
-msgstr "Uporno spašavanje lozinki zasticenim glavnom lozinkom"
+msgid "Persistently save passwords for web connections"
+msgstr ""
#: 01030300.xhp
msgctxt ""
@@ -4613,8 +4629,24 @@ msgctxt ""
"01030300.xhp\n"
"hd_id3901791\n"
"help.text"
+msgid "Protected by a master password (recommended)"
+msgstr ""
+
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"par_id31527711486980\n"
+"help.text"
+msgid "Check to enable all connections' passwords to be protected by a master password."
+msgstr ""
+
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"hd_id141527711343312\n"
+"help.text"
msgid "Master Password"
-msgstr "Glavna lozinka"
+msgstr ""
#: 01030300.xhp
msgctxt ""
@@ -13733,7 +13765,7 @@ msgctxt ""
"java.xhp\n"
"hd_id3148618\n"
"help.text"
-msgid "Optional (unstable) options"
+msgid "Optional Features"
msgstr ""
#: java.xhp
@@ -13749,7 +13781,7 @@ msgctxt ""
"java.xhp\n"
"par_id3156344\n"
"help.text"
-msgid "It enables features that are not yet complete or contain known bugs. The list of these features is different version by version, or even it can be empty."
+msgid "Enables features that are not yet complete or may contain known bugs. The list of these features is different version by version, or even it can be empty."
msgstr ""
#: java.xhp
@@ -13765,7 +13797,7 @@ msgctxt ""
"java.xhp\n"
"par_id3156345\n"
"help.text"
-msgid "It enables macro recording, so the <link href=\"text/shared/guide/macro_recording.xhp\" name=\"Tools - Macros - Record Macro\"><item type=\"menuitem\">Tools - Macros - Record Macro</item></link> menu item will be available."
+msgid "Enables macro recording. The <link href=\"text/shared/guide/macro_recording.xhp\" name=\"Tools - Macros - Record Macro\"><item type=\"menuitem\">Tools - Macros - Record Macro</item></link> menu item is available."
msgstr ""
#: java.xhp
diff --git a/source/bs/officecfg/registry/data/org/openoffice/Office/UI.po b/source/bs/officecfg/registry/data/org/openoffice/Office/UI.po
index 535a6439552..d5b0f9e7321 100644
--- a/source/bs/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/bs/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-22 13:17+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2016-12-01 12:44+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -26941,8 +26941,8 @@ msgctxt ""
"..WriterCommands.UserInterface.Commands..uno:TextAttributes\n"
"Label\n"
"value.text"
-msgid "Text Attributes"
-msgstr "Atributi teksta"
+msgid "Text Attributes..."
+msgstr ""
#: WriterCommands.xcu
msgctxt ""
diff --git a/source/bs/readlicense_oo/docs.po b/source/bs/readlicense_oo/docs.po
index bb97dd6fae1..21218d7fc3f 100644
--- a/source/bs/readlicense_oo/docs.po
+++ b/source/bs/readlicense_oo/docs.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-04-17 15:54+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2016-05-01 19:57+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -117,7 +117,7 @@ msgctxt ""
"readme.xrm\n"
"macxiOSX\n"
"readmeitem.text"
-msgid "MacOSX 10.8 (Mountain Lion) or higher"
+msgid "MacOSX 10.9 (Mavericks) or higher"
msgstr ""
#: readme.xrm
diff --git a/source/bs/sc/messages.po b/source/bs/sc/messages.po
index fd103acf61c..c855804411c 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-12 14:40+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"
@@ -1874,16 +1874,21 @@ msgid "Nested arrays are not supported."
msgstr "Ugnježđeni nizovi nisu podržani."
#: sc/inc/globstr.hrc:390
+msgctxt "STR_ERR_LONG_BAD_ARRAY_CONTENT"
+msgid "Unsupported inline array content."
+msgstr ""
+
+#: sc/inc/globstr.hrc:391
msgctxt "STR_UNDO_TEXTTOCOLUMNS"
msgid "Text to Columns"
msgstr "Raščlani tekst"
-#: sc/inc/globstr.hrc:391
+#: sc/inc/globstr.hrc:392
msgctxt "STR_DOC_UPDATED"
msgid "Your spreadsheet has been updated with changes saved by other users."
msgstr "Vaša tabela nije ažurirana sa promjenama sačuvanim od ostalih korisnika."
-#: sc/inc/globstr.hrc:392
+#: sc/inc/globstr.hrc:393
msgctxt "STR_DOC_WILLBESAVED"
msgid ""
"The spreadsheet must be saved now to activate sharing mode.\n"
@@ -1894,7 +1899,7 @@ msgstr ""
"\n"
"Da li želite nastaviti?"
-#: sc/inc/globstr.hrc:393
+#: sc/inc/globstr.hrc:394
msgctxt "STR_DOC_WILLNOTBESAVED"
msgid ""
"Already resolved merge conflicts will be lost and your changes to the shared spreadsheet will not be saved.\n"
@@ -1905,7 +1910,7 @@ msgstr ""
"\n"
"Da li želite nastaviti?"
-#: sc/inc/globstr.hrc:394
+#: sc/inc/globstr.hrc:395
msgctxt "STR_DOC_DISABLESHARED"
msgid ""
"Disabling shared mode of a spreadsheet hinders all other users of the shared spreadsheet to merge back their work.\n"
@@ -1916,7 +1921,7 @@ msgstr ""
"\n"
"Da li želite nastaviti?"
-#: sc/inc/globstr.hrc:395
+#: sc/inc/globstr.hrc:396
msgctxt "STR_DOC_NOLONGERSHARED"
msgid ""
"This spreadsheet is no longer in shared mode.\n"
@@ -1927,7 +1932,7 @@ msgstr ""
"\n"
"Sačuvajte Vašu tabelu u odvojeni dokument i spojite vaše promjene na zajedničku tabelu ručno."
-#: sc/inc/globstr.hrc:396
+#: sc/inc/globstr.hrc:397
msgctxt "STR_FILE_LOCKED_TRY_LATER"
msgid ""
"The shared spreadsheet file is locked due to a merge in progress by user: '%1'\n"
@@ -1938,7 +1943,7 @@ msgstr ""
"\n"
"Zajednički režim zaključane datoteke se ne može ukinuti. Pokušajte ponovo kasnije."
-#: sc/inc/globstr.hrc:397
+#: sc/inc/globstr.hrc:398
msgctxt "STR_FILE_LOCKED_SAVE_LATER"
msgid ""
"The shared spreadsheet file is locked due to a merge in progress by user: '%1'\n"
@@ -1949,148 +1954,148 @@ msgstr ""
"\n"
"Pokušajte ponovo spasiti vaše promjene."
-#: sc/inc/globstr.hrc:398
+#: sc/inc/globstr.hrc:399
msgctxt "STR_UNKNOWN_USER"
msgid "Unknown User"
msgstr "Nepoznat korisnik"
-#: sc/inc/globstr.hrc:399
+#: sc/inc/globstr.hrc:400
msgctxt "STR_SHAPE_AUTOSHAPE"
msgid "AutoShape"
msgstr "Automatski oblik"
-#: sc/inc/globstr.hrc:400
+#: sc/inc/globstr.hrc:401
msgctxt "STR_SHAPE_RECTANGLE"
msgid "Rectangle"
msgstr "Pravougaonik"
-#: sc/inc/globstr.hrc:401
+#: sc/inc/globstr.hrc:402
msgctxt "STR_SHAPE_LINE"
msgid "Line"
msgstr "Linija"
-#: sc/inc/globstr.hrc:402
+#: sc/inc/globstr.hrc:403
msgctxt "STR_SHAPE_OVAL"
msgid "Oval"
msgstr "Ovalno"
-#: sc/inc/globstr.hrc:403
+#: sc/inc/globstr.hrc:404
msgctxt "STR_FORM_BUTTON"
msgid "Button"
msgstr "Dugme"
-#: sc/inc/globstr.hrc:404
+#: sc/inc/globstr.hrc:405
msgctxt "STR_FORM_CHECKBOX"
msgid "Check Box"
msgstr "Opciono polje"
-#: sc/inc/globstr.hrc:405
+#: sc/inc/globstr.hrc:406
msgctxt "STR_FORM_OPTIONBUTTON"
msgid "Option Button"
msgstr "Radio dugme"
-#: sc/inc/globstr.hrc:406
+#: sc/inc/globstr.hrc:407
msgctxt "STR_FORM_LABEL"
msgid "Label"
msgstr "Oznaka"
-#: sc/inc/globstr.hrc:407
+#: sc/inc/globstr.hrc:408
msgctxt "STR_FORM_LISTBOX"
msgid "List Box"
msgstr "Padajuća lista"
-#: sc/inc/globstr.hrc:408
+#: sc/inc/globstr.hrc:409
msgctxt "STR_FORM_GROUPBOX"
msgid "Group Box"
msgstr "Grupa"
-#: sc/inc/globstr.hrc:409
+#: sc/inc/globstr.hrc:410
msgctxt "STR_FORM_DROPDOWN"
msgid "Drop Down"
msgstr "Spusti"
-#: sc/inc/globstr.hrc:410
+#: sc/inc/globstr.hrc:411
msgctxt "STR_FORM_SPINNER"
msgid "Spinner"
msgstr "Rotacijsko dugme"
-#: sc/inc/globstr.hrc:411
+#: sc/inc/globstr.hrc:412
msgctxt "STR_FORM_SCROLLBAR"
msgid "Scroll Bar"
msgstr "Klizač"
-#: sc/inc/globstr.hrc:412
+#: sc/inc/globstr.hrc:413
msgctxt "STR_STYLE_FAMILY_CELL"
msgid "Cell Styles"
msgstr "Stilovi ćelija"
-#: sc/inc/globstr.hrc:413
+#: sc/inc/globstr.hrc:414
msgctxt "STR_STYLE_FAMILY_PAGE"
msgid "Page Styles"
msgstr "Stilovi stranica"
-#: sc/inc/globstr.hrc:414
+#: sc/inc/globstr.hrc:415
msgctxt "STR_ERR_DATAPILOTSOURCE"
msgid "Pivot table source data is invalid."
msgstr "Izvor podataka pivot tablice je nevažeči."
-#: sc/inc/globstr.hrc:415
+#: sc/inc/globstr.hrc:416
msgctxt "STR_OPTIONS_WARN_SEPARATORS"
msgid "Because the current formula separator settings conflict with the locale, the formula separators have been reset to their default values."
msgstr "Pošto je trenutni izbor separatora formula u konfliktu sa lokalnim postavkama, separator formula je vraćen na uobičajenu vrijednost."
-#: sc/inc/globstr.hrc:416
+#: sc/inc/globstr.hrc:417
msgctxt "STR_UNDO_INSERT_CURRENT_DATE"
msgid "Insert Current Date"
msgstr "Ubaci trenutni datum"
-#: sc/inc/globstr.hrc:417
+#: sc/inc/globstr.hrc:418
msgctxt "STR_UNDO_INSERT_CURRENT_TIME"
msgid "Insert Current Time"
msgstr "Ubaci trenutno vrijeme"
-#: sc/inc/globstr.hrc:418
+#: sc/inc/globstr.hrc:419
msgctxt "STR_MANAGE_NAMES"
msgid "Manage Names..."
msgstr "Upravljanje nazivima..."
-#: sc/inc/globstr.hrc:419
+#: sc/inc/globstr.hrc:420
#, fuzzy
msgctxt "STR_HEADER_NAME"
msgid "Name"
msgstr "Ime"
-#: sc/inc/globstr.hrc:420
+#: sc/inc/globstr.hrc:421
msgctxt "STR_HEADER_RANGE_OR_EXPR"
msgid "Range or formula expression"
msgstr ""
-#: sc/inc/globstr.hrc:421
+#: sc/inc/globstr.hrc:422
msgctxt "STR_HEADER_SCOPE"
msgid "Scope"
msgstr "Opseg"
-#: sc/inc/globstr.hrc:422
+#: sc/inc/globstr.hrc:423
msgctxt "STR_MULTI_SELECT"
msgid "(multiple)"
msgstr "(višestruki)"
-#: sc/inc/globstr.hrc:423
+#: sc/inc/globstr.hrc:424
msgctxt "STR_GLOBAL_SCOPE"
msgid "Document (Global)"
msgstr "Dokument (globalni)"
-#: sc/inc/globstr.hrc:424
+#: sc/inc/globstr.hrc:425
msgctxt "STR_ERR_NAME_EXISTS"
msgid "Invalid name. Already in use for the selected scope."
msgstr "Nevažeće ime. Već se koristi za odabrano polje."
-#: sc/inc/globstr.hrc:425
+#: sc/inc/globstr.hrc:426
msgctxt "STR_ERR_NAME_INVALID"
msgid "Invalid name. Only use letters, numbers and underscore."
msgstr "Nevažeće ime. Koristite samo slova, brojeve i donje crte."
-#: sc/inc/globstr.hrc:426
+#: sc/inc/globstr.hrc:427
msgctxt "STR_UNSAVED_EXT_REF"
msgid ""
"This Document contains external references to unsaved documents.\n"
@@ -2101,217 +2106,217 @@ msgstr ""
"\n"
"Želite li nastaviti?"
-#: sc/inc/globstr.hrc:427
+#: sc/inc/globstr.hrc:428
msgctxt "STR_CLOSE_WITH_UNSAVED_REFS"
msgid "This Document is referenced by another document and not yet saved. Closing it without saving will result in data loss."
msgstr "Ovaj dokument je korišten od strane drugog dokumenta i nije još sačuvan. Zatvaranje bez da ga sačuvate rezultirat će gubitkom podataka."
-#: sc/inc/globstr.hrc:428
+#: sc/inc/globstr.hrc:429
msgctxt "STR_HEADER_RANGE"
msgid "Range"
msgstr "Raspon"
-#: sc/inc/globstr.hrc:429
+#: sc/inc/globstr.hrc:430
msgctxt "STR_HEADER_COND"
msgid "First Condition"
msgstr "Prvi uvjet"
-#: sc/inc/globstr.hrc:430
+#: sc/inc/globstr.hrc:431
msgctxt "STR_COND_CONDITION"
msgid "Cell value is"
msgstr "Vrijednost ćelije je"
-#: sc/inc/globstr.hrc:431
+#: sc/inc/globstr.hrc:432
msgctxt "STR_COND_COLORSCALE"
msgid "ColorScale"
msgstr "Ljestvica boja"
-#: sc/inc/globstr.hrc:432
+#: sc/inc/globstr.hrc:433
msgctxt "STR_COND_DATABAR"
msgid "DataBar"
msgstr "Traka podataka"
-#: sc/inc/globstr.hrc:433
+#: sc/inc/globstr.hrc:434
msgctxt "STR_COND_ICONSET"
msgid "IconSet"
msgstr "Set ikona"
-#: sc/inc/globstr.hrc:434
+#: sc/inc/globstr.hrc:435
msgctxt "STR_COND_BETWEEN"
msgid "between"
msgstr "između"
-#: sc/inc/globstr.hrc:435
+#: sc/inc/globstr.hrc:436
msgctxt "STR_COND_NOTBETWEEN"
msgid "not between"
msgstr "nije između"
-#: sc/inc/globstr.hrc:436
+#: sc/inc/globstr.hrc:437
msgctxt "STR_COND_UNIQUE"
msgid "unique"
msgstr "jedinstven"
-#: sc/inc/globstr.hrc:437
+#: sc/inc/globstr.hrc:438
msgctxt "STR_COND_DUPLICATE"
msgid "duplicate"
msgstr "duplikat"
-#: sc/inc/globstr.hrc:438
+#: sc/inc/globstr.hrc:439
msgctxt "STR_COND_FORMULA"
msgid "Formula is"
msgstr "Formula je"
-#: sc/inc/globstr.hrc:439
+#: sc/inc/globstr.hrc:440
msgctxt "STR_COND_TOP10"
msgid "Top Elements"
msgstr "Gornji elementi"
-#: sc/inc/globstr.hrc:440
+#: sc/inc/globstr.hrc:441
msgctxt "STR_COND_BOTTOM10"
msgid "Bottom Elements"
msgstr "Donji elementi"
-#: sc/inc/globstr.hrc:441
+#: sc/inc/globstr.hrc:442
msgctxt "STR_COND_TOP_PERCENT"
msgid "Top Percent"
msgstr "Gornji procenti"
-#: sc/inc/globstr.hrc:442
+#: sc/inc/globstr.hrc:443
msgctxt "STR_COND_DATE"
msgid "Date is"
msgstr "Datum je"
-#: sc/inc/globstr.hrc:443
+#: sc/inc/globstr.hrc:444
msgctxt "STR_COND_BOTTOM_PERCENT"
msgid "Bottom Percent"
msgstr "Donji procenat"
-#: sc/inc/globstr.hrc:444
+#: sc/inc/globstr.hrc:445
msgctxt "STR_COND_ABOVE_AVERAGE"
msgid "Above Average"
msgstr "Iznad prosjeka"
-#: sc/inc/globstr.hrc:445
+#: sc/inc/globstr.hrc:446
msgctxt "STR_COND_BELOW_AVERAGE"
msgid "Below Average"
msgstr "Ispod prosjeka"
-#: sc/inc/globstr.hrc:446
+#: sc/inc/globstr.hrc:447
msgctxt "STR_COND_ABOVE_EQUAL_AVERAGE"
msgid "Above or equal Average"
msgstr "Iznad ili jednak prosjek"
-#: sc/inc/globstr.hrc:447
+#: sc/inc/globstr.hrc:448
msgctxt "STR_COND_BELOW_EQUAL_AVERAGE"
msgid "Below or equal Average"
msgstr "Ispod ili jednak prosjek"
-#: sc/inc/globstr.hrc:448
+#: sc/inc/globstr.hrc:449
msgctxt "STR_COND_ERROR"
msgid "an Error code"
msgstr "kod greške"
-#: sc/inc/globstr.hrc:449
+#: sc/inc/globstr.hrc:450
msgctxt "STR_COND_NOERROR"
msgid "not an Error code"
msgstr "bez greške"
-#: sc/inc/globstr.hrc:450
+#: sc/inc/globstr.hrc:451
msgctxt "STR_COND_BEGINS_WITH"
msgid "Begins with"
msgstr "Počinje sa"
-#: sc/inc/globstr.hrc:451
+#: sc/inc/globstr.hrc:452
msgctxt "STR_COND_ENDS_WITH"
msgid "Ends with"
msgstr "Završava sa"
-#: sc/inc/globstr.hrc:452
+#: sc/inc/globstr.hrc:453
msgctxt "STR_COND_CONTAINS"
msgid "Contains"
msgstr "Sadrži"
-#: sc/inc/globstr.hrc:453
+#: sc/inc/globstr.hrc:454
msgctxt "STR_COND_NOT_CONTAINS"
msgid "Not Contains"
msgstr "Ne sadrži"
-#: sc/inc/globstr.hrc:454
+#: sc/inc/globstr.hrc:455
msgctxt "STR_COND_TODAY"
msgid "today"
msgstr "danas"
-#: sc/inc/globstr.hrc:455
+#: sc/inc/globstr.hrc:456
msgctxt "STR_COND_YESTERDAY"
msgid "yesterday"
msgstr "jučer"
-#: sc/inc/globstr.hrc:456
+#: sc/inc/globstr.hrc:457
msgctxt "STR_COND_TOMORROW"
msgid "tomorrow"
msgstr "sutra"
-#: sc/inc/globstr.hrc:457
+#: sc/inc/globstr.hrc:458
msgctxt "STR_COND_LAST7DAYS"
msgid "in the last 7 days"
msgstr "u posljednjih sedam dana"
-#: sc/inc/globstr.hrc:458
+#: sc/inc/globstr.hrc:459
msgctxt "STR_COND_THISWEEK"
msgid "this week"
msgstr "ove sedmice"
-#: sc/inc/globstr.hrc:459
+#: sc/inc/globstr.hrc:460
msgctxt "STR_COND_LASTWEEK"
msgid "last week"
msgstr "prošle sedmice"
-#: sc/inc/globstr.hrc:460
+#: sc/inc/globstr.hrc:461
msgctxt "STR_COND_NEXTWEEK"
msgid "next week"
msgstr "sljedeće sedmice"
-#: sc/inc/globstr.hrc:461
+#: sc/inc/globstr.hrc:462
msgctxt "STR_COND_THISMONTH"
msgid "this month"
msgstr "ovog mjeseca"
-#: sc/inc/globstr.hrc:462
+#: sc/inc/globstr.hrc:463
msgctxt "STR_COND_LASTMONTH"
msgid "last month"
msgstr "prošlog mjeseca"
-#: sc/inc/globstr.hrc:463
+#: sc/inc/globstr.hrc:464
msgctxt "STR_COND_NEXTMONTH"
msgid "next month"
msgstr "idućeg mjeseca"
-#: sc/inc/globstr.hrc:464
+#: sc/inc/globstr.hrc:465
msgctxt "STR_COND_THISYEAR"
msgid "this year"
msgstr "ove godine"
-#: sc/inc/globstr.hrc:465
+#: sc/inc/globstr.hrc:466
msgctxt "STR_COND_LASTYEAR"
msgid "last year"
msgstr "prošle godine"
-#: sc/inc/globstr.hrc:466
+#: sc/inc/globstr.hrc:467
msgctxt "STR_COND_NEXTYEAR"
msgid "next year"
msgstr "sljedeće godine"
-#: sc/inc/globstr.hrc:467
+#: sc/inc/globstr.hrc:468
msgctxt "STR_COND_AND"
msgid "and"
msgstr "i"
-#: sc/inc/globstr.hrc:468
+#: sc/inc/globstr.hrc:469
msgctxt "STR_ERR_CONDFORMAT_PROTECTED"
msgid "Conditional Formats can not be created, deleted or changed in protected sheets."
msgstr ""
-#: sc/inc/globstr.hrc:469
+#: sc/inc/globstr.hrc:470
msgctxt "STR_EDIT_EXISTING_COND_FORMATS"
msgid ""
"The selected cell already contains conditional formatting. You can either edit the existing conditional format or you define a new overlapping conditional format.\n"
@@ -2322,7 +2327,7 @@ msgstr ""
"\n"
"Želite li urediti postojeći uslovni format?"
-#: sc/inc/globstr.hrc:470
+#: sc/inc/globstr.hrc:471
msgctxt "STR_QUERY_FORMULA_RECALC_ONLOAD_ODS"
msgid ""
"This document was last saved by an application other than %PRODUCTNAME. Some formula cells may produce different results when recalculated.\n"
@@ -2333,7 +2338,7 @@ msgstr ""
"\n"
"Da li želite ponovo izračunati sve formule u ćelijama ovoga dokumenta?"
-#: sc/inc/globstr.hrc:471
+#: sc/inc/globstr.hrc:472
msgctxt "STR_QUERY_FORMULA_RECALC_ONLOAD_XLS"
msgid ""
"This document was last saved by Excel. Some formula cells may produce different results when recalculated.\n"
@@ -2344,77 +2349,77 @@ msgstr ""
"\n"
"Da li želite ponovo izraćunati formule u ćelijama?"
-#: sc/inc/globstr.hrc:472
+#: sc/inc/globstr.hrc:473
msgctxt "STR_NO_INSERT_DELETE_OVER_PIVOT_TABLE"
msgid "You cannot insert or delete cells when the affected range intersects with pivot table."
msgstr "Ne možete umetati ili brisati ćelije kada pogođeni raspon presijeca pivot tabelu."
-#: sc/inc/globstr.hrc:473
+#: sc/inc/globstr.hrc:474
msgctxt "STR_DPFIELD_GROUP_BY_SECONDS"
msgid "Seconds"
msgstr "Sekunde"
-#: sc/inc/globstr.hrc:474
+#: sc/inc/globstr.hrc:475
msgctxt "STR_DPFIELD_GROUP_BY_MINUTES"
msgid "Minutes"
msgstr "Minute"
-#: sc/inc/globstr.hrc:475
+#: sc/inc/globstr.hrc:476
msgctxt "STR_DPFIELD_GROUP_BY_HOURS"
msgid "Hours"
msgstr "Sati"
-#: sc/inc/globstr.hrc:476
+#: sc/inc/globstr.hrc:477
msgctxt "STR_DPFIELD_GROUP_BY_DAYS"
msgid "Days"
msgstr "Dani"
-#: sc/inc/globstr.hrc:477
+#: sc/inc/globstr.hrc:478
msgctxt "STR_DPFIELD_GROUP_BY_MONTHS"
msgid "Months"
msgstr "Mjeseci"
-#: sc/inc/globstr.hrc:478
+#: sc/inc/globstr.hrc:479
msgctxt "STR_DPFIELD_GROUP_BY_QUARTERS"
msgid "Quarters"
msgstr "Četvrtine"
-#: sc/inc/globstr.hrc:479
+#: sc/inc/globstr.hrc:480
msgctxt "STR_DPFIELD_GROUP_BY_YEARS"
msgid "Years"
msgstr "Godine"
-#: sc/inc/globstr.hrc:480
+#: sc/inc/globstr.hrc:481
msgctxt "STR_INVALIDVAL"
msgid "Invalid target value."
msgstr "Nevažeća ciljana vrijednost."
-#: sc/inc/globstr.hrc:481
+#: sc/inc/globstr.hrc:482
msgctxt "STR_INVALIDVAR"
msgid "Undefined name for variable cell."
msgstr "Nedefinisano ime za varijabilnu ćeliju."
-#: sc/inc/globstr.hrc:482
+#: sc/inc/globstr.hrc:483
msgctxt "STR_INVALIDFORM"
msgid "Undefined name as formula cell."
msgstr "Nedefinisano ime kao formula ćelije."
-#: sc/inc/globstr.hrc:483
+#: sc/inc/globstr.hrc:484
msgctxt "STR_NOFORMULA"
msgid "Formula cell must contain a formula."
msgstr ""
-#: sc/inc/globstr.hrc:484
+#: sc/inc/globstr.hrc:485
msgctxt "STR_INVALIDINPUT"
msgid "Invalid input."
msgstr "Nevažeći unos."
-#: sc/inc/globstr.hrc:485
+#: sc/inc/globstr.hrc:486
msgctxt "STR_INVALIDCONDITION"
msgid "Invalid condition."
msgstr "Nevažeći uslov."
-#: sc/inc/globstr.hrc:486
+#: sc/inc/globstr.hrc:487
msgctxt "STR_QUERYREMOVE"
msgid ""
"Should the entry\n"
@@ -2425,135 +2430,135 @@ msgstr ""
"#\n"
"biti izbrisan?"
-#: sc/inc/globstr.hrc:487
+#: sc/inc/globstr.hrc:488
msgctxt "STR_COPYLIST"
msgid "Copy List"
msgstr "Kopiraj listu"
-#: sc/inc/globstr.hrc:488
+#: sc/inc/globstr.hrc:489
msgctxt "STR_COPYFROM"
msgid "List from"
msgstr "Lista iz"
-#: sc/inc/globstr.hrc:489
+#: sc/inc/globstr.hrc:490
msgctxt "STR_COPYERR"
msgid "Cells without text have been ignored."
msgstr "Ćelije bez teksta su bile ignorisane."
-#: sc/inc/globstr.hrc:490
+#: sc/inc/globstr.hrc:491
#, c-format
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%s-click to follow hyperlink:"
msgstr ""
-#: sc/inc/globstr.hrc:491
+#: sc/inc/globstr.hrc:492
msgctxt "STR_CLICKHYPERLINK"
msgid "click to open hyperlink:"
msgstr "klikni za otvaranje hiperveze:"
-#: sc/inc/globstr.hrc:492
+#: sc/inc/globstr.hrc:493
msgctxt "STR_PRINT_PREVIEW_NODATA"
msgid "No Data"
msgstr ""
-#: sc/inc/globstr.hrc:493
+#: sc/inc/globstr.hrc:494
msgctxt "STR_PRINT_PREVIEW_EMPTY_RANGE"
msgid "Print Range Empty"
msgstr ""
-#: sc/inc/globstr.hrc:494
+#: sc/inc/globstr.hrc:495
#, fuzzy
msgctxt "STR_UNDO_CONDFORMAT"
msgid "Conditional Format"
msgstr "Uslovno formatiranje"
-#: sc/inc/globstr.hrc:495
+#: sc/inc/globstr.hrc:496
#, fuzzy
msgctxt "STR_UNDO_CONDFORMAT_LIST"
msgid "Conditional Formats"
msgstr "Uslovno formatiranje"
-#: sc/inc/globstr.hrc:496
+#: sc/inc/globstr.hrc:497
msgctxt "STR_UNDO_FORMULA_TO_VALUE"
msgid "Convert Formula To Value"
msgstr ""
-#: sc/inc/globstr.hrc:497
+#: sc/inc/globstr.hrc:498
msgctxt "STR_UNQUOTED_STRING"
msgid "Strings without quotes are interpreted as column/row labels."
msgstr ""
-#: sc/inc/globstr.hrc:498
+#: sc/inc/globstr.hrc:499
msgctxt "STR_ENTER_VALUE"
msgid "Enter a value!"
msgstr ""
-#: sc/inc/globstr.hrc:499
+#: sc/inc/globstr.hrc:500
msgctxt "STR_TABLE_COUNT"
msgid "Sheet %1 of %2"
msgstr ""
-#: sc/inc/globstr.hrc:500
+#: sc/inc/globstr.hrc:501
msgctxt "STR_FUNCTIONS_FOUND"
msgid "%1 and %2 more"
msgstr ""
-#: sc/inc/globstr.hrc:501
+#: sc/inc/globstr.hrc:502
msgctxt "STR_GENERAL"
msgid "General"
msgstr "Općenito"
-#: sc/inc/globstr.hrc:502
+#: sc/inc/globstr.hrc:503
msgctxt "STR_NUMBER"
msgid "Number"
msgstr "Broj"
-#: sc/inc/globstr.hrc:503
+#: sc/inc/globstr.hrc:504
msgctxt "STR_PERCENT"
msgid "Percent"
msgstr "Procenat"
-#: sc/inc/globstr.hrc:504
+#: sc/inc/globstr.hrc:505
msgctxt "STR_CURRENCY"
msgid "Currency"
msgstr "Valuta"
-#: sc/inc/globstr.hrc:505
+#: sc/inc/globstr.hrc:506
msgctxt "STR_DATE"
msgid "Date"
msgstr "Datum"
-#: sc/inc/globstr.hrc:506
+#: sc/inc/globstr.hrc:507
msgctxt "STR_TIME"
msgid "Time"
msgstr "Vrijeme"
-#: sc/inc/globstr.hrc:507
+#: sc/inc/globstr.hrc:508
msgctxt "STR_SCIENTIFIC"
msgid "Scientific"
msgstr "Naučno"
-#: sc/inc/globstr.hrc:508
+#: sc/inc/globstr.hrc:509
msgctxt "STR_FRACTION"
msgid "Fraction"
msgstr "Razlomak"
-#: sc/inc/globstr.hrc:509
+#: sc/inc/globstr.hrc:510
msgctxt "STR_BOOLEAN_VALUE"
msgid "Boolean Value"
msgstr "Logička vrijednost"
-#: sc/inc/globstr.hrc:510
+#: sc/inc/globstr.hrc:511
msgctxt "STR_TEXT"
msgid "Text"
msgstr "Tekst"
-#: sc/inc/globstr.hrc:511
+#: sc/inc/globstr.hrc:512
msgctxt "STR_QUERY_PIVOTTABLE_DELTAB"
msgid "The selected sheet(s) contain source data of related pivot tables that will be lost. Are you sure you want to delete the selected sheet(s)?"
msgstr ""
-#: sc/inc/globstr.hrc:512
+#: sc/inc/globstr.hrc:513
msgctxt "STR_ERR_NAME_INVALID_CELL_REF"
msgid "Invalid name. Reference to a cell, or a range of cells not allowed."
msgstr ""
@@ -10689,8 +10694,8 @@ msgstr "Režim"
#: sc/inc/scfuncs.hrc:3010
msgctxt "SC_OPCODE_T_TEST"
-msgid "Mode specifies the number of distribution tails to return. 1= one-tailed, 2 = two-tailed distribution"
-msgstr "Ovaj režim određuje broj repova distribucije za povrat. 1= jednorepa, 2= dvorepa distribucija"
+msgid "Mode specifies the number of distribution tails to return. 1 = one-tailed, 2 = two-tailed distribution"
+msgstr ""
#: sc/inc/scfuncs.hrc:3011
msgctxt "SC_OPCODE_T_TEST"
@@ -10736,8 +10741,8 @@ msgstr "Režim"
#: sc/inc/scfuncs.hrc:3024
msgctxt "SC_OPCODE_T_TEST_MS"
-msgid "Mode specifies the number of distribution tails to return. 1= one-tailed, 2 = two-tailed distribution"
-msgstr "Ovaj režim određuje broj repova distribucije za povrat. 1= jednorepa, 2= dvorepa distribucija"
+msgid "Mode specifies the number of distribution tails to return. 1 = one-tailed, 2 = two-tailed distribution"
+msgstr ""
#: sc/inc/scfuncs.hrc:3025
msgctxt "SC_OPCODE_T_TEST_MS"
@@ -18524,22 +18529,22 @@ msgctxt "mergecellsdialog|MergeCellsDialog"
msgid "Merge Cells"
msgstr "Spoji ćelije"
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:81
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:84
msgctxt "mergecellsdialog|label"
msgid "Some cells are not empty."
msgstr ""
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:96
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:99
msgctxt "mergecellsdialog|move-cells-radio"
msgid "Move the contents of the hidden cells into the first cell"
msgstr ""
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:112
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:115
msgctxt "mergecellsdialog|empty-cells-radio"
msgid "Empty the contents of the hidden cells"
msgstr ""
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:128
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:131
msgctxt "mergecellsdialog|keep-content-radio"
msgid "Keep the contents of the hidden cells"
msgstr ""
diff --git a/source/bs/sd/messages.po b/source/bs/sd/messages.po
index 97175fc2104..3c795af071c 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+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"
@@ -13,178 +13,178 @@ msgstr ""
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-#: sd/inc/DocumentRenderer.hrc:29
+#: sd/inc/DocumentRenderer.hrc:27
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Slides"
msgstr "Slajdovi"
-#: sd/inc/DocumentRenderer.hrc:30
+#: sd/inc/DocumentRenderer.hrc:28
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Handouts"
msgstr "Leci"
-#: sd/inc/DocumentRenderer.hrc:31
+#: sd/inc/DocumentRenderer.hrc:29
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Notes"
msgstr "Bilješke"
-#: sd/inc/DocumentRenderer.hrc:32
+#: sd/inc/DocumentRenderer.hrc:30
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Outline"
msgstr "Samo tekst"
-#: sd/inc/DocumentRenderer.hrc:37
+#: sd/inc/DocumentRenderer.hrc:35
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "According to layout"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:38
+#: sd/inc/DocumentRenderer.hrc:36
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "1"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:39
+#: sd/inc/DocumentRenderer.hrc:37
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "2"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:40
+#: sd/inc/DocumentRenderer.hrc:38
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "3"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:41
+#: sd/inc/DocumentRenderer.hrc:39
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "4"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:42
+#: sd/inc/DocumentRenderer.hrc:40
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "6"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:43
+#: sd/inc/DocumentRenderer.hrc:41
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "9"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:48
+#: sd/inc/DocumentRenderer.hrc:46
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_ORDER_CHOICES"
msgid "Left to right, then down"
msgstr "Od lijeva na desno, zatim, dolje"
-#: sd/inc/DocumentRenderer.hrc:49
+#: sd/inc/DocumentRenderer.hrc:47
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_ORDER_CHOICES"
msgid "Top to bottom, then right"
msgstr "Od vrha na dolje, zatim desno"
-#: sd/inc/DocumentRenderer.hrc:54
+#: sd/inc/DocumentRenderer.hrc:52
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Original colors"
msgstr "Izvorne boje"
-#: sd/inc/DocumentRenderer.hrc:55
+#: sd/inc/DocumentRenderer.hrc:53
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Grayscale"
msgstr "Sive nijanse"
-#: sd/inc/DocumentRenderer.hrc:56
+#: sd/inc/DocumentRenderer.hrc:54
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Black & white"
msgstr "Crno-bijelo"
-#: sd/inc/DocumentRenderer.hrc:61
+#: sd/inc/DocumentRenderer.hrc:59
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Original size"
msgstr "Originalna veličina"
-#: sd/inc/DocumentRenderer.hrc:62
+#: sd/inc/DocumentRenderer.hrc:60
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Fit to printable page"
msgstr "Prilagodi veličinu stranici papira"
-#: sd/inc/DocumentRenderer.hrc:63
+#: sd/inc/DocumentRenderer.hrc:61
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Distribute on multiple sheets of paper"
msgstr "Rasporedi na više listova papira"
-#: sd/inc/DocumentRenderer.hrc:64
+#: sd/inc/DocumentRenderer.hrc:62
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Tile sheet of paper with repeated slides"
msgstr "Popločaj papir ponovljenim slajdom"
-#: sd/inc/DocumentRenderer.hrc:69
+#: sd/inc/DocumentRenderer.hrc:67
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Original size"
msgstr "Originalna veličina"
-#: sd/inc/DocumentRenderer.hrc:70
+#: sd/inc/DocumentRenderer.hrc:68
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Fit to printable page"
msgstr "Prilagodi veličinu stranici papira"
-#: sd/inc/DocumentRenderer.hrc:71
+#: sd/inc/DocumentRenderer.hrc:69
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Distribute on multiple sheets of paper"
msgstr "Rasporedi na više listova papira"
-#: sd/inc/DocumentRenderer.hrc:72
+#: sd/inc/DocumentRenderer.hrc:70
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Tile sheet of paper with repeated pages"
msgstr "Poredaj list papira s ponovljenim stranama"
-#: sd/inc/DocumentRenderer.hrc:77
+#: sd/inc/DocumentRenderer.hrc:75
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "All pages"
msgstr "Sve"
-#: sd/inc/DocumentRenderer.hrc:78
+#: sd/inc/DocumentRenderer.hrc:76
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "Front sides / right pages"
msgstr "Prednja strana / desne stranice"
-#: sd/inc/DocumentRenderer.hrc:79
+#: sd/inc/DocumentRenderer.hrc:77
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "Back sides / left pages"
msgstr "Stražnja strana / lijeve stranice"
-#: sd/inc/DocumentRenderer.hrc:84
+#: sd/inc/DocumentRenderer.hrc:82
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~All slides"
msgstr "Svi _slajdovi"
-#: sd/inc/DocumentRenderer.hrc:85
+#: sd/inc/DocumentRenderer.hrc:83
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~Slides"
msgstr "Slajdovi"
-#: sd/inc/DocumentRenderer.hrc:86
+#: sd/inc/DocumentRenderer.hrc:84
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Se~lection"
msgstr "~Izbor"
-#: sd/inc/DocumentRenderer.hrc:91
+#: sd/inc/DocumentRenderer.hrc:89
#, fuzzy
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~All pages"
msgstr "~Sve stranice"
-#: sd/inc/DocumentRenderer.hrc:92
+#: sd/inc/DocumentRenderer.hrc:90
#, fuzzy
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Pa~ges"
msgstr "Stranice"
-#: sd/inc/DocumentRenderer.hrc:93
+#: sd/inc/DocumentRenderer.hrc:91
#, fuzzy
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Se~lection"
diff --git a/source/bs/svx/messages.po b/source/bs/svx/messages.po
index 483be14c66f..88a95252ece 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: 2018-05-16 16:53+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+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"
@@ -5533,7 +5533,7 @@ msgstr ""
#: svx/uiconfig/ui/safemodedialog.ui:432
msgctxt "safemodedialog|btn_create_zip"
-msgid "Create Zip Archive from User Profile"
+msgid "Archive User Profile"
msgstr ""
#: svx/uiconfig/ui/safemodedialog.ui:445
@@ -9197,9 +9197,9 @@ msgid "Red"
msgstr "Crvena"
#: include/svx/strings.hrc:565
-msgctxt "RID_SVXSTR_COLOR_VIOLET"
-msgid "Violet"
-msgstr "Ljubičasta"
+msgctxt "RID_SVXSTR_COLOR_MAGENTA"
+msgid "Magenta"
+msgstr "Purpurna"
#: include/svx/strings.hrc:566
msgctxt "RID_SVXSTR_COLOR_PURPLE"
@@ -9266,8 +9266,8 @@ msgid "Light Red"
msgstr "Svijetlo crvena"
#: include/svx/strings.hrc:579
-msgctxt "RID_SVXSTR_COLOR_LIGHTVIOLET"
-msgid "Light Violet"
+msgctxt "RID_SVXSTR_COLOR_LIGHTMAGENTA"
+msgid "Light Magenta"
msgstr ""
#: include/svx/strings.hrc:580
@@ -9333,10 +9333,9 @@ msgid "Dark Red"
msgstr "Tamno crvena"
#: include/svx/strings.hrc:593
-#, fuzzy
-msgctxt "RID_SVXSTR_COLOR_DARKVIOLET1"
-msgid "Dark Violet"
-msgstr "Tamno ljubičasta"
+msgctxt "RID_SVXSTR_COLOR_DARKMAGENTA"
+msgid "Dark Magenta"
+msgstr ""
#: include/svx/strings.hrc:594
msgctxt "RID_SVXSTR_COLOR_DARKPURPLE"
@@ -9370,55 +9369,55 @@ msgstr ""
#. Elements of the Tonal color palette
#: include/svx/strings.hrc:601
+msgctxt "RID_SVXSTR_COLOR_VIOLET"
+msgid "Violet"
+msgstr "Ljubičasta"
+
+#: include/svx/strings.hrc:602
msgctxt "RID_SVXSTR_COLOR_VIOLET_OUG"
msgid "Violet (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:602
+#: include/svx/strings.hrc:603
msgctxt "RID_SVXSTR_COLOR_BLUE_OUG"
msgid "Blue (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:603
+#: include/svx/strings.hrc:604
msgctxt "RID_SVXSTR_COLOR_AZURE_OUG"
msgid "Azure (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:604
+#: include/svx/strings.hrc:605
msgctxt "RID_SVXSTR_COLOR_SPRINGGREEN_OUG"
msgid "Spring Green (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:605
+#: include/svx/strings.hrc:606
msgctxt "RID_SVXSTR_COLOR_GREEN_OUG"
msgid "Green (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:606
+#: include/svx/strings.hrc:607
msgctxt "RID_SVXSTR_COLOR_CHARTREUSEGREEN_OUG"
msgid "Chartreuse Green (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:607
+#: include/svx/strings.hrc:608
msgctxt "RID_SVXSTR_COLOR_ORANGE_OUG"
msgid "Orange (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:608
+#: include/svx/strings.hrc:609
msgctxt "RID_SVXSTR_COLOR_RED_OUG"
msgid "Red (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:609
+#: include/svx/strings.hrc:610
msgctxt "RID_SVXSTR_COLOR_ROSE_OUG"
msgid "Rose (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:610
-msgctxt "RID_SVXSTR_COLOR_MAGENTA"
-msgid "Magenta"
-msgstr "Purpurna"
-
#: include/svx/strings.hrc:611
msgctxt "RID_SVXSTR_COLOR_AZURE"
msgid "Azure"
@@ -12573,13 +12572,13 @@ msgstr "Strelica koja pokazuje desno"
#: include/svx/strings.hrc:1273
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_6"
-msgid "Check mark bullets"
-msgstr "Tačke sa znakom potvrde"
+msgid "Cross mark bullets"
+msgstr ""
#: include/svx/strings.hrc:1274
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_7"
-msgid "Tick mark bullets"
-msgstr "Tačke sa znakom kockice"
+msgid "Check mark bullets"
+msgstr ""
#: include/svx/strings.hrc:1275
#, fuzzy
diff --git a/source/bs/sw/messages.po b/source/bs/sw/messages.po
index 37c451eb142..a7fe1d15cbe 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: 2018-05-22 13:17+0200\n"
+"POT-Creation-Date: 2018-06-12 14:41+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"
@@ -1216,13 +1216,13 @@ msgstr "Citat"
#: sw/inc/strings.hrc:172
msgctxt "STR_POOLCOLL_TOX_ILLUSH"
-msgid "Illustration Index Heading"
-msgstr "Naslov indeksa ilustracija"
+msgid "Figure Index Heading"
+msgstr ""
#: sw/inc/strings.hrc:173
msgctxt "STR_POOLCOLL_TOX_ILLUS1"
-msgid "Illustration Index 1"
-msgstr "Indeks ilustracija 1"
+msgid "Figure Index 1"
+msgstr ""
#: sw/inc/strings.hrc:174
msgctxt "STR_POOLCOLL_TOX_OBJECTH"
@@ -3714,8 +3714,8 @@ msgstr "Tabela predmeta"
#: sw/inc/strings.hrc:672
msgctxt "STR_TOX_ILL"
-msgid "Illustration Index"
-msgstr "Indeks ilustracija"
+msgid "Table of Figures"
+msgstr ""
#: sw/inc/strings.hrc:673
#, c-format
@@ -9588,72 +9588,72 @@ msgctxt "footnotepage|label5"
msgid "Continuation Notice"
msgstr "Obavještenje o nastavku"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:49
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:55
msgctxt "footnotesendnotestabpage|ftnntnum"
msgid "_Restart numbering"
msgstr "_Restartuj numeraciju"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:91
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:93
msgctxt "footnotesendnotestabpage|ftnoffset_label"
msgid "_Start at:"
msgstr "_Počni na:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:112
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:111
msgctxt "footnotesendnotestabpage|ftnntnumfmt"
msgid "Custom _format"
msgstr "_Prilagodi format"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:155
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:150
msgctxt "footnotesendnotestabpage|ftnsuffix_label"
msgid "Aft_er:"
msgstr "_Poslije:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:199
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:188
msgctxt "footnotesendnotestabpage|ftnprefix_label"
msgid "Be_fore:"
msgstr "_Prije:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:228
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:212
msgctxt "footnotesendnotestabpage|ftnntattextend"
msgid "Collec_t at end of text"
msgstr "_Prikupiti na kraju teksta"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:252
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:234
msgctxt "footnotesendnotestabpage|label1"
msgid "Footnotes"
msgstr "Fusnote"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:289
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:271
msgctxt "footnotesendnotestabpage|endntattextend"
msgid "C_ollect at end of section"
msgstr "Prikupiti na kraju sekcije"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:315
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:295
msgctxt "footnotesendnotestabpage|endntnum"
msgid "_Restart numbering"
msgstr "_Restartuj brojanje"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:357
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:333
msgctxt "footnotesendnotestabpage|endoffset_label"
msgid "_Start at:"
msgstr "_Počni na:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:378
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:351
msgctxt "footnotesendnotestabpage|endntnumfmt"
msgid "_Custom format"
msgstr "_Prilagodi format"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:421
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:390
msgctxt "footnotesendnotestabpage|endsuffix_label"
msgid "Aft_er:"
msgstr "_Poslije:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:465
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:428
msgctxt "footnotesendnotestabpage|endprefix_label"
msgid "Be_fore:"
msgstr "P_rije:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:500
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:458
msgctxt "footnotesendnotestabpage|label2"
msgid "Endnotes"
msgstr "Endnote"
@@ -9683,27 +9683,27 @@ msgctxt "formatsectiondialog|notes"
msgid "Footnotes/Endnotes"
msgstr "Fusnote/Endnote"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:63
+#: sw/uiconfig/swriter/ui/formattablepage.ui:77
msgctxt "formattablepage|nameft"
msgid "_Name"
msgstr "_Naziv"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:79
+#: sw/uiconfig/swriter/ui/formattablepage.ui:91
msgctxt "formattablepage|widthft"
msgid "W_idth"
msgstr "_Širina"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:110
+#: sw/uiconfig/swriter/ui/formattablepage.ui:120
msgctxt "formattablepage|relwidth"
msgid "Relati_ve"
msgstr "_Relativan"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:155
+#: sw/uiconfig/swriter/ui/formattablepage.ui:160
msgctxt "formattablepage|label45"
msgid "Properties"
msgstr "Svojstva"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:194
+#: sw/uiconfig/swriter/ui/formattablepage.ui:195
msgctxt "formattablepage|leftft"
msgid "Lef_t"
msgstr "_Lijevo"
@@ -9713,62 +9713,62 @@ msgctxt "formattablepage|rightft"
msgid "Ri_ght"
msgstr "_Desno"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:228
+#: sw/uiconfig/swriter/ui/formattablepage.ui:226
msgctxt "formattablepage|aboveft"
msgid "_Above"
msgstr "_Iznad"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:245
+#: sw/uiconfig/swriter/ui/formattablepage.ui:241
msgctxt "formattablepage|belowft"
msgid "_Below"
msgstr "_Ispod"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:320
+#: sw/uiconfig/swriter/ui/formattablepage.ui:311
msgctxt "formattablepage|label46"
msgid "Spacing"
msgstr "Prored"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:362
+#: sw/uiconfig/swriter/ui/formattablepage.ui:349
msgctxt "formattablepage|full"
msgid "A_utomatic"
msgstr "Au_tomatsko"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:380
+#: sw/uiconfig/swriter/ui/formattablepage.ui:365
msgctxt "formattablepage|left"
msgid "_Left"
msgstr "_Lijevo"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:398
+#: sw/uiconfig/swriter/ui/formattablepage.ui:381
msgctxt "formattablepage|fromleft"
msgid "_From left"
msgstr "_S lijeva"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:416
+#: sw/uiconfig/swriter/ui/formattablepage.ui:397
msgctxt "formattablepage|right"
msgid "R_ight"
msgstr "D_esno"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:435
+#: sw/uiconfig/swriter/ui/formattablepage.ui:413
msgctxt "formattablepage|center"
msgid "_Center"
msgstr "_Centrirano"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:453
+#: sw/uiconfig/swriter/ui/formattablepage.ui:429
msgctxt "formattablepage|free"
msgid "_Manual"
msgstr "_Ručno"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:478
+#: sw/uiconfig/swriter/ui/formattablepage.ui:452
msgctxt "formattablepage|label43"
msgid "Alignment"
msgstr "Poravnanje"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:522
+#: sw/uiconfig/swriter/ui/formattablepage.ui:491
msgctxt "formattablepage|label53"
msgid "Text _direction"
msgstr "Smijer_teksta"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:553
+#: sw/uiconfig/swriter/ui/formattablepage.ui:519
msgctxt "formattablepage|label44"
msgid "Properties "
msgstr "Svojstva "
@@ -10131,22 +10131,27 @@ msgctxt "headerfootermenu|insert_pagenumber"
msgid "Insert Page Number"
msgstr ""
-#: sw/uiconfig/swriter/ui/indentpage.ui:52
+#: sw/uiconfig/swriter/ui/headerfootermenu.ui:42
+msgctxt "headerfootermenu|insert_pagecount"
+msgid "Insert Page Count"
+msgstr ""
+
+#: sw/uiconfig/swriter/ui/indentpage.ui:57
msgctxt "indentpage|label1"
msgid "_Before section"
msgstr "_Prije sekcije"
-#: sw/uiconfig/swriter/ui/indentpage.ui:67
+#: sw/uiconfig/swriter/ui/indentpage.ui:71
msgctxt "indentpage|label3"
msgid "_After section"
msgstr "_Nakon sekcije"
-#: sw/uiconfig/swriter/ui/indentpage.ui:113
+#: sw/uiconfig/swriter/ui/indentpage.ui:115
msgctxt "indentpage|label2"
msgid "Indent"
msgstr "Uvlačenje"
-#: sw/uiconfig/swriter/ui/indentpage.ui:142
+#: sw/uiconfig/swriter/ui/indentpage.ui:155
msgctxt "indentpage|preview-atkobject"
msgid "Example"
msgstr "Primjer"
@@ -13900,7 +13905,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:68
msgctxt "optcompatpage|format"
-msgid "MS Word-compatible trailing blanks"
+msgid "Word-compatible trailing blanks"
msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:69
@@ -13910,7 +13915,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:70
msgctxt "optcompatpage|format"
-msgid "A database field (e.g., MailMerge) with empty value hides its paragraph"
+msgid "Hide paragraphs of database fields (e.g., mail merge) with an empty value"
msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:71
@@ -16731,123 +16736,123 @@ msgctxt "tableproperties|background"
msgid "Background"
msgstr "Pozadina"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:25
-msgctxt "tabletextflowpage|liststore1"
-msgid "Horizontal"
-msgstr "Horizontalno"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:29
-msgctxt "tabletextflowpage|liststore1"
-msgid "Vertical"
-msgstr "Vertikalno"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:33
-msgctxt "tabletextflowpage|liststore1"
-msgid "Use superordinate object settings"
-msgstr "Koristi pretpostavljene postavke objekta"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:47
-msgctxt "tabletextflowpage|liststore2"
-msgid "Top"
-msgstr "Vrh"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:51
-msgctxt "tabletextflowpage|liststore2"
-msgid "Centered"
-msgstr "Centrirano"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:55
-msgctxt "tabletextflowpage|liststore2"
-msgid "Bottom"
-msgstr "Dno"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:97
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:53
msgctxt "tabletextflowpage|break"
msgid "_Break"
msgstr "_Prekid"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:112
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:68
msgctxt "tabletextflowpage|page"
msgid "_Page"
msgstr "_Strana"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:132
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:87
msgctxt "tabletextflowpage|column"
msgid "Col_umn"
msgstr "_Kolona"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:151
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:106
msgctxt "tabletextflowpage|before"
msgid "Be_fore"
msgstr "_Prije"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:171
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:125
msgctxt "tabletextflowpage|after"
msgid "_After"
msgstr "_Nakon"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:203
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:158
msgctxt "tabletextflowpage|pagestyle"
msgid "With Page St_yle"
msgstr "_Sa stilom stranice"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:224
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:177
msgctxt "tabletextflowpage|pagenoft"
msgid "Page _number"
msgstr "_Broj stranice"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:257
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:213
#, fuzzy
msgctxt "tabletextflowpage|pagestylelb-atkobject"
msgid "With Page Style"
msgstr "_Sa stilom stranice"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:274
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:230
msgctxt "tabletextflowpage|split"
msgid "Allow _table to split across pages and columns"
msgstr "_Dozvoli dijeljenje tabele kroz stranice i kolone"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:289
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:245
msgctxt "tabletextflowpage|splitrow"
msgid "Allow row to break a_cross pages and columns"
msgstr "Dozvoli dijeljenje redova _kroz stranice i kolone"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:306
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:262
msgctxt "tabletextflowpage|keep"
msgid "_Keep with next paragraph"
msgstr "_Zadrži sa slijedećim odlomkom"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:328
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:284
msgctxt "tabletextflowpage|label40"
msgid "Text _orientation"
msgstr "_Orijentacija teksta"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:361
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:298
+msgctxt "tabletextflowpage|liststore1"
+msgid "Horizontal"
+msgstr "Horizontalno"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:299
+msgctxt "tabletextflowpage|liststore1"
+msgid "Vertical"
+msgstr "Vertikalno"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:300
+msgctxt "tabletextflowpage|liststore1"
+msgid "Use superordinate object settings"
+msgstr "Koristi pretpostavljene postavke objekta"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:321
msgctxt "tabletextflowpage|headline"
msgid "R_epeat heading"
msgstr "_Ponovi naslov"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:383
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:343
msgctxt "tabletextflowpage|label38"
msgid "The first "
msgstr "Prvi "
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:396
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:356
msgctxt "tabletextflowpage|label39"
msgid "rows"
msgstr "redovi"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:434
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:395
msgctxt "tabletextflowpage|label35"
msgid "Text Flow"
msgstr "Protok teksta"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:467
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:428
msgctxt "tabletextflowpage|label41"
msgid "_Vertical alignment"
msgstr "_Vertikalno poravnanje"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:495
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:442
+msgctxt "tabletextflowpage|liststore2"
+msgid "Top"
+msgstr "Vrh"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:443
+msgctxt "tabletextflowpage|liststore2"
+msgid "Centered"
+msgstr "Centrirano"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:444
+msgctxt "tabletextflowpage|liststore2"
+msgid "Bottom"
+msgstr "Dno"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:460
msgctxt "tabletextflowpage|label36"
msgid "Alignment"
msgstr "Poravnavanje"
@@ -17655,8 +17660,8 @@ msgstr "Abecedni indeks"
#: sw/uiconfig/swriter/ui/tocindexpage.ui:58
msgctxt "tocindexpage|liststore1"
-msgid "Illustration Index"
-msgstr "Indeks ilustracija"
+msgid "Table of Figures"
+msgstr ""
#: sw/uiconfig/swriter/ui/tocindexpage.ui:62
msgctxt "tocindexpage|liststore1"
diff --git a/source/bs/writerperfect/messages.po b/source/bs/writerperfect/messages.po
index 1bfd6f4e047..31a36744d15 100644
--- a/source/bs/writerperfect/messages.po
+++ b/source/bs/writerperfect/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-16 16:54+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+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"
@@ -65,99 +65,99 @@ msgctxt "exportepub|generalft"
msgid "General"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:122
+#: writerperfect/uiconfig/ui/exportepub.ui:121
#, fuzzy
msgctxt "exportepub|versionft"
msgid "Version:"
msgstr "~Verzija:"
-#: writerperfect/uiconfig/ui/exportepub.ui:139
+#: writerperfect/uiconfig/ui/exportepub.ui:138
msgctxt "exportepub|epub3"
msgid "EPUB 3.0"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:140
+#: writerperfect/uiconfig/ui/exportepub.ui:139
msgctxt "exportepub|epub2"
msgid "EPUB 2.0"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:175
+#: writerperfect/uiconfig/ui/exportepub.ui:174
msgctxt "exportepub|splitft"
msgid "Split method:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:192
+#: writerperfect/uiconfig/ui/exportepub.ui:191
msgctxt "exportepub|splitpage"
msgid "Page break"
msgstr "Prijelom stranice"
-#: writerperfect/uiconfig/ui/exportepub.ui:193
+#: writerperfect/uiconfig/ui/exportepub.ui:192
#, fuzzy
msgctxt "exportepub|splitheading"
msgid "Heading"
msgstr "Zaglavlje"
-#: writerperfect/uiconfig/ui/exportepub.ui:228
+#: writerperfect/uiconfig/ui/exportepub.ui:227
msgctxt "exportepub|layoutft"
msgid "Layout method:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:245
+#: writerperfect/uiconfig/ui/exportepub.ui:244
msgctxt "exportepub|layoutreflowable"
msgid "Reflowable"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:246
+#: writerperfect/uiconfig/ui/exportepub.ui:245
msgctxt "exportepub|layoutfixed"
msgid "Fixed"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:281
+#: writerperfect/uiconfig/ui/exportepub.ui:280
msgctxt "exportepub|coverimageft"
msgid "Custom cover image:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:311
+#: writerperfect/uiconfig/ui/exportepub.ui:310
msgctxt "exportepub|coverbutton"
msgid "Browse..."
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:355
+#: writerperfect/uiconfig/ui/exportepub.ui:354
msgctxt "exportepub|mediadirft"
msgid "Custom media directory:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:385
+#: writerperfect/uiconfig/ui/exportepub.ui:384
msgctxt "exportepub|mediabutton"
msgid "Browse..."
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:429
+#: writerperfect/uiconfig/ui/exportepub.ui:428
msgctxt "exportepub|metadataft"
msgid "Metadata"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:470
+#: writerperfect/uiconfig/ui/exportepub.ui:468
msgctxt "exportepub|identifierft"
msgid "Identifier:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:485
+#: writerperfect/uiconfig/ui/exportepub.ui:483
msgctxt "exportepub|titleft"
msgid "Title:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:511
+#: writerperfect/uiconfig/ui/exportepub.ui:509
msgctxt "exportepub|authorft"
msgid "Author:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:537
+#: writerperfect/uiconfig/ui/exportepub.ui:535
msgctxt "exportepub|languageft"
msgid "Language:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:563
+#: writerperfect/uiconfig/ui/exportepub.ui:561
msgctxt "exportepub|dateft"
msgid "Date:"
msgstr ""
diff --git a/source/ca-valencia/cui/messages.po b/source/ca-valencia/cui/messages.po
index 1f6cec4b290..b077407bd9d 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2018-01-29 07:52+0000\n"
"Last-Translator: joamuran <joamuran@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -9872,97 +9872,97 @@ msgctxt "positionsizedialog|PositionAndSizeDialog"
msgid "Position and Size"
msgstr "Posició i mida"
-#: cui/uiconfig/ui/positionsizedialog.ui:107
+#: cui/uiconfig/ui/positionsizedialog.ui:136
msgctxt "positionsizedialog|RID_SVXPAGE_POSITION_SIZE"
msgid "Position and Size"
msgstr "Posició i mida"
-#: cui/uiconfig/ui/positionsizedialog.ui:129
+#: cui/uiconfig/ui/positionsizedialog.ui:182
msgctxt "positionsizedialog|RID_SVXPAGE_SWPOSSIZE"
msgid "Position and Size"
msgstr "Posició i mida"
-#: cui/uiconfig/ui/positionsizedialog.ui:152
+#: cui/uiconfig/ui/positionsizedialog.ui:229
msgctxt "positionsizedialog|RID_SVXPAGE_ANGLE"
msgid "Rotation"
msgstr "Gir"
-#: cui/uiconfig/ui/positionsizedialog.ui:175
+#: cui/uiconfig/ui/positionsizedialog.ui:276
msgctxt "positionsizedialog|RID_SVXPAGE_SLANT"
msgid "Slant & Corner Radius"
msgstr "Inclinació i radi de la cantonada"
-#: cui/uiconfig/ui/possizetabpage.ui:40
+#: cui/uiconfig/ui/possizetabpage.ui:61
msgctxt "possizetabpage|FT_POS_X"
msgid "Position _X:"
msgstr "Posició _X:"
-#: cui/uiconfig/ui/possizetabpage.ui:56
+#: cui/uiconfig/ui/possizetabpage.ui:75
msgctxt "possizetabpage|FT_POS_Y"
msgid "Position _Y:"
msgstr "Posició _Y:"
-#: cui/uiconfig/ui/possizetabpage.ui:110
+#: cui/uiconfig/ui/possizetabpage.ui:128
msgctxt "possizetabpage|FT_POSREFERENCE"
msgid "_Base point:"
msgstr "Punt _base:"
-#: cui/uiconfig/ui/possizetabpage.ui:148
+#: cui/uiconfig/ui/possizetabpage.ui:182
msgctxt "possizetabpage|label1"
msgid "Position"
msgstr "Posició"
-#: cui/uiconfig/ui/possizetabpage.ui:190
+#: cui/uiconfig/ui/possizetabpage.ui:224
msgctxt "possizetabpage|FT_WIDTH"
msgid "Wi_dth:"
msgstr "_Amplària:"
-#: cui/uiconfig/ui/possizetabpage.ui:206
+#: cui/uiconfig/ui/possizetabpage.ui:238
msgctxt "possizetabpage|FT_HEIGHT"
msgid "H_eight:"
msgstr "A_lçària:"
-#: cui/uiconfig/ui/possizetabpage.ui:247
+#: cui/uiconfig/ui/possizetabpage.ui:276
msgctxt "possizetabpage|CBX_SCALE"
msgid "_Keep ratio"
msgstr "_Conserva la relació"
-#: cui/uiconfig/ui/possizetabpage.ui:279
+#: cui/uiconfig/ui/possizetabpage.ui:307
msgctxt "possizetabpage|FT_SIZEREFERENCE"
msgid "Base _point:"
msgstr "_Punt base:"
-#: cui/uiconfig/ui/possizetabpage.ui:317
+#: cui/uiconfig/ui/possizetabpage.ui:361
msgctxt "possizetabpage|label2"
msgid "Size"
msgstr "Mida"
-#: cui/uiconfig/ui/possizetabpage.ui:356
+#: cui/uiconfig/ui/possizetabpage.ui:401
msgctxt "possizetabpage|TSB_POSPROTECT"
msgid "Positio_n"
msgstr "_Posició"
-#: cui/uiconfig/ui/possizetabpage.ui:373
+#: cui/uiconfig/ui/possizetabpage.ui:418
msgctxt "possizetabpage|TSB_SIZEPROTECT"
msgid "_Size"
msgstr "_Mida"
-#: cui/uiconfig/ui/possizetabpage.ui:397
+#: cui/uiconfig/ui/possizetabpage.ui:441
msgctxt "possizetabpage|label3"
msgid "Protect"
msgstr "Protegeix"
-#: cui/uiconfig/ui/possizetabpage.ui:430
+#: cui/uiconfig/ui/possizetabpage.ui:475
msgctxt "possizetabpage|TSB_AUTOGROW_WIDTH"
msgid "_Fit width to text"
msgstr "_Ajusta l'amplària al text"
-#: cui/uiconfig/ui/possizetabpage.ui:447
+#: cui/uiconfig/ui/possizetabpage.ui:492
msgctxt "possizetabpage|TSB_AUTOGROW_HEIGHT"
msgid "Fit _height to text"
msgstr "Aj_usta l'alçària al text"
-#: cui/uiconfig/ui/possizetabpage.ui:471
+#: cui/uiconfig/ui/possizetabpage.ui:515
msgctxt "possizetabpage|label4"
msgid "Adapt"
msgstr "Adapta"
@@ -10162,47 +10162,47 @@ msgctxt "recordnumberdialog|label2"
msgid "go to record"
msgstr "vés al registre"
-#: cui/uiconfig/ui/rotationtabpage.ui:52
+#: cui/uiconfig/ui/rotationtabpage.ui:56
msgctxt "rotationtabpage|FT_POS_X"
msgid "Position _X:"
msgstr "Posició _X:"
-#: cui/uiconfig/ui/rotationtabpage.ui:66
+#: cui/uiconfig/ui/rotationtabpage.ui:70
msgctxt "rotationtabpage|FT_POS_Y"
msgid "Position _Y:"
msgstr "Posició _Y:"
-#: cui/uiconfig/ui/rotationtabpage.ui:116
+#: cui/uiconfig/ui/rotationtabpage.ui:123
msgctxt "rotationtabpage|FT_POSPRESETS"
msgid "_Default settings:"
msgstr "Paràmetres per _defecte:"
-#: cui/uiconfig/ui/rotationtabpage.ui:130
+#: cui/uiconfig/ui/rotationtabpage.ui:151
msgctxt "rotationtabpage|CTL_RECT|tooltip_text"
msgid "Rotation point"
msgstr "Punt de rotació"
-#: cui/uiconfig/ui/rotationtabpage.ui:155
+#: cui/uiconfig/ui/rotationtabpage.ui:178
msgctxt "rotationtabpage|label1"
msgid "Pivot Point"
msgstr "Punt de gir"
-#: cui/uiconfig/ui/rotationtabpage.ui:197
+#: cui/uiconfig/ui/rotationtabpage.ui:220
msgctxt "rotationtabpage|FT_ANGLE"
msgid "_Angle:"
msgstr "_Angle:"
-#: cui/uiconfig/ui/rotationtabpage.ui:238
+#: cui/uiconfig/ui/rotationtabpage.ui:263
msgctxt "rotationtabpage|FT_ANGLEPRESETS"
msgid "Default _settings:"
msgstr "Paràmetre_s per defecte:"
-#: cui/uiconfig/ui/rotationtabpage.ui:252
+#: cui/uiconfig/ui/rotationtabpage.ui:287
msgctxt "rotationtabpage|CTL_ANGLE|tooltip_text"
msgid "Rotation Angle"
msgstr "Angle de rotació"
-#: cui/uiconfig/ui/rotationtabpage.ui:277
+#: cui/uiconfig/ui/rotationtabpage.ui:314
msgctxt "rotationtabpage|label2"
msgid "Rotation Angle"
msgstr "Angle de rotació"
@@ -10582,52 +10582,52 @@ msgctxt "similaritysearchdialog|relaxbox"
msgid "_Combine"
msgstr "_Combina"
-#: cui/uiconfig/ui/slantcornertabpage.ui:50
+#: cui/uiconfig/ui/slantcornertabpage.ui:70
msgctxt "slantcornertabpage|label5"
msgid "_X:"
msgstr "_X:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:88
+#: cui/uiconfig/ui/slantcornertabpage.ui:110
msgctxt "slantcornertabpage|label6"
msgid "_Y:"
msgstr "_Y:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:125
+#: cui/uiconfig/ui/slantcornertabpage.ui:149
msgctxt "slantcornertabpage|label3"
msgid "Control Point 1"
msgstr "Punt de control 1"
-#: cui/uiconfig/ui/slantcornertabpage.ui:159
+#: cui/uiconfig/ui/slantcornertabpage.ui:183
msgctxt "slantcornertabpage|FT_RADIUS"
msgid "_Radius:"
msgstr "_Radi:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:189
+#: cui/uiconfig/ui/slantcornertabpage.ui:214
msgctxt "slantcornertabpage|label1"
msgid "Corner Radius"
msgstr "Radi de la cantonada"
-#: cui/uiconfig/ui/slantcornertabpage.ui:223
+#: cui/uiconfig/ui/slantcornertabpage.ui:248
msgctxt "slantcornertabpage|FT_ANGLE"
msgid "_Angle:"
msgstr "_Angle:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:253
+#: cui/uiconfig/ui/slantcornertabpage.ui:279
msgctxt "slantcornertabpage|label2"
msgid "Slant"
msgstr "Inclinació"
-#: cui/uiconfig/ui/slantcornertabpage.ui:294
+#: cui/uiconfig/ui/slantcornertabpage.ui:320
msgctxt "slantcornertabpage|label4"
msgid "_X:"
msgstr "_X:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:332
+#: cui/uiconfig/ui/slantcornertabpage.ui:360
msgctxt "slantcornertabpage|label7"
msgid "_Y:"
msgstr "_Y:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:369
+#: cui/uiconfig/ui/slantcornertabpage.ui:399
msgctxt "slantcornertabpage|label8"
msgid "Control Point 2"
msgstr "Punt de control 2"
@@ -10907,112 +10907,112 @@ msgctxt "storedwebconnectiondialog|change"
msgid "_Change Password..."
msgstr "_Canvia la contrasenya..."
-#: cui/uiconfig/ui/swpossizepage.ui:74
+#: cui/uiconfig/ui/swpossizepage.ui:85
msgctxt "swpossizepage|widthft"
msgid "_Width:"
msgstr "_Amplària:"
-#: cui/uiconfig/ui/swpossizepage.ui:111
+#: cui/uiconfig/ui/swpossizepage.ui:123
msgctxt "swpossizepage|heightft"
msgid "H_eight:"
msgstr "A_lçària:"
-#: cui/uiconfig/ui/swpossizepage.ui:128
+#: cui/uiconfig/ui/swpossizepage.ui:141
msgctxt "swpossizepage|ratio"
msgid "_Keep ratio"
msgstr "_Conserva la relació"
-#: cui/uiconfig/ui/swpossizepage.ui:149
+#: cui/uiconfig/ui/swpossizepage.ui:162
msgctxt "swpossizepage|label2"
msgid "Size"
msgstr "Mida"
-#: cui/uiconfig/ui/swpossizepage.ui:205
+#: cui/uiconfig/ui/swpossizepage.ui:218
msgctxt "swpossizepage|topage"
msgid "To _page"
msgstr "A la _pàgina"
-#: cui/uiconfig/ui/swpossizepage.ui:222
+#: cui/uiconfig/ui/swpossizepage.ui:234
msgctxt "swpossizepage|topara"
msgid "To paragrap_h"
msgstr "al paràgra_f"
-#: cui/uiconfig/ui/swpossizepage.ui:238
+#: cui/uiconfig/ui/swpossizepage.ui:250
msgctxt "swpossizepage|tochar"
msgid "To cha_racter"
msgstr "Al ca_ràcter"
-#: cui/uiconfig/ui/swpossizepage.ui:254
+#: cui/uiconfig/ui/swpossizepage.ui:266
msgctxt "swpossizepage|aschar"
msgid "_As character"
msgstr "Com _a caràcter"
-#: cui/uiconfig/ui/swpossizepage.ui:270
+#: cui/uiconfig/ui/swpossizepage.ui:282
msgctxt "swpossizepage|toframe"
msgid "To _frame"
msgstr "Al _marc"
-#: cui/uiconfig/ui/swpossizepage.ui:292
+#: cui/uiconfig/ui/swpossizepage.ui:304
msgctxt "swpossizepage|label1"
msgid "Anchor"
msgstr "Àncora"
-#: cui/uiconfig/ui/swpossizepage.ui:333
+#: cui/uiconfig/ui/swpossizepage.ui:344
msgctxt "swpossizepage|horiposft"
msgid "Hori_zontal:"
msgstr "Horit_zontal:"
-#: cui/uiconfig/ui/swpossizepage.ui:347
+#: cui/uiconfig/ui/swpossizepage.ui:358
msgctxt "swpossizepage|horibyft"
msgid "b_y:"
msgstr "_per:"
-#: cui/uiconfig/ui/swpossizepage.ui:361
+#: cui/uiconfig/ui/swpossizepage.ui:372
msgctxt "swpossizepage|vertbyft"
msgid "_by:"
msgstr "pe_r:"
-#: cui/uiconfig/ui/swpossizepage.ui:375
+#: cui/uiconfig/ui/swpossizepage.ui:386
msgctxt "swpossizepage|horitoft"
msgid "_to:"
msgstr "_a:"
-#: cui/uiconfig/ui/swpossizepage.ui:421
+#: cui/uiconfig/ui/swpossizepage.ui:433
msgctxt "swpossizepage|vertposft"
msgid "_Vertical:"
msgstr "_Vertical:"
-#: cui/uiconfig/ui/swpossizepage.ui:457
+#: cui/uiconfig/ui/swpossizepage.ui:470
msgctxt "swpossizepage|verttoft"
msgid "t_o:"
msgstr "_a:"
-#: cui/uiconfig/ui/swpossizepage.ui:478
+#: cui/uiconfig/ui/swpossizepage.ui:492
msgctxt "swpossizepage|mirror"
msgid "_Mirror on even pages"
msgstr "_Rèplica en pàgines parelles"
-#: cui/uiconfig/ui/swpossizepage.ui:495
+#: cui/uiconfig/ui/swpossizepage.ui:509
msgctxt "swpossizepage|followtextflow"
msgid "Follow te_xt flow"
msgstr "Seguei_x el flux del text"
-#: cui/uiconfig/ui/swpossizepage.ui:518
+#: cui/uiconfig/ui/swpossizepage.ui:532
msgctxt "swpossizepage|label11"
msgid "Position"
msgstr "Posició"
-#: cui/uiconfig/ui/swpossizepage.ui:549
+#: cui/uiconfig/ui/swpossizepage.ui:563
msgctxt "swpossizepage|pos"
msgid "Positio_n"
msgstr "_Posició"
-#: cui/uiconfig/ui/swpossizepage.ui:565
+#: cui/uiconfig/ui/swpossizepage.ui:579
msgctxt "swpossizepage|size"
msgid "_Size"
msgstr "_Mida"
-#: cui/uiconfig/ui/swpossizepage.ui:587
+#: cui/uiconfig/ui/swpossizepage.ui:601
msgctxt "swpossizepage|label3"
msgid "Protect"
msgstr "Protegeix"
@@ -11202,12 +11202,12 @@ msgctxt "textattrtabpage|label2"
msgid "Spacing to Borders"
msgstr "Distància a les vores"
-#: cui/uiconfig/ui/textattrtabpage.ui:425
+#: cui/uiconfig/ui/textattrtabpage.ui:423
msgctxt "textattrtabpage|TSB_FULL_WIDTH"
msgid "Full _width"
msgstr "Tota l'a_mplària"
-#: cui/uiconfig/ui/textattrtabpage.ui:448
+#: cui/uiconfig/ui/textattrtabpage.ui:446
msgctxt "textattrtabpage|label3"
msgid "Text Anchor"
msgstr "Àncora de text"
diff --git a/source/ca-valencia/filter/source/config/fragments/filters.po b/source/ca-valencia/filter/source/config/fragments/filters.po
index fc8daba206e..0693b42ccf6 100644
--- a/source/ca-valencia/filter/source/config/fragments/filters.po
+++ b/source/ca-valencia/filter/source/config/fragments/filters.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Libreoffice42\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-16 16:54+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2018-01-29 07:53+0000\n"
"Last-Translator: joamuran <joamuran@gmail.com>\n"
"Language-Team: Softcatalà\n"
@@ -464,8 +464,8 @@ msgctxt ""
"MS Word 2003 XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Word 2003 XML"
-msgstr "XML del Microsoft Word 2003"
+msgid "Word 2003 XML"
+msgstr ""
#: MS_Word_2007_XML.xcu
msgctxt ""
@@ -1283,8 +1283,8 @@ msgctxt ""
"Calc MS Excel 2007 VBA XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Excel 2007-2016 XML (macro enabled)"
-msgstr "XML del Microsoft Excel 2007-2016 (amb les macros habilitades)"
+msgid "Excel 2007–2019 (macro-enabled)"
+msgstr ""
#: calc_MS_Excel_2007_XML.xcu
msgctxt ""
diff --git a/source/ca-valencia/filter/source/config/fragments/types.po b/source/ca-valencia/filter/source/config/fragments/types.po
index 7b70bcbd13c..ad29e4ce77c 100644
--- a/source/ca-valencia/filter/source/config/fragments/types.po
+++ b/source/ca-valencia/filter/source/config/fragments/types.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: 2018-05-08 15:11+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2018-01-15 13:22+0000\n"
"Last-Translator: joamuran <joamuran@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -292,8 +292,8 @@ msgctxt ""
"writer_MS_Word_2003_XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Word 2003 XML"
-msgstr "XML del Microsoft Word 2003"
+msgid "Word 2003 XML"
+msgstr ""
#: writer_MS_Word_2007_XML.xcu
msgctxt ""
diff --git a/source/ca-valencia/fpicker/messages.po b/source/ca-valencia/fpicker/messages.po
index 58e4af89794..9a9eeead950 100644
--- a/source/ca-valencia/fpicker/messages.po
+++ b/source/ca-valencia/fpicker/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2018-01-15 13:22+0000\n"
"Last-Translator: joamuran <joamuran@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -274,13 +274,13 @@ msgstr "Xifra amb clau GPG"
#: fpicker/uiconfig/ui/foldernamedialog.ui:8
msgctxt "foldernamedialog|FolderNameDialog"
-msgid "Folder Name ?"
-msgstr "Nom de la carpeta?"
+msgid "Folder Name"
+msgstr ""
#: fpicker/uiconfig/ui/foldernamedialog.ui:91
msgctxt "foldernamedialog|label2"
-msgid "Na_me"
-msgstr "No_m"
+msgid "Na_me:"
+msgstr ""
#: fpicker/uiconfig/ui/foldernamedialog.ui:122
msgctxt "foldernamedialog|label1"
diff --git a/source/ca-valencia/helpcontent2/source/text/shared/00.po b/source/ca-valencia/helpcontent2/source/text/shared/00.po
index ef7dbb13799..84c64dcc861 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2018-01-15 13:20+0000\n"
"Last-Translator: joamuran <joamuran@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -398,16 +398,16 @@ msgctxt ""
"00000001.xhp\n"
"hd_id3149670\n"
"help.text"
-msgid "Back"
-msgstr "Arrere"
+msgid "Reset"
+msgstr ""
#: 00000001.xhp
msgctxt ""
"00000001.xhp\n"
"par_id3145068\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optionsdialog/revert\">Resets modified values back to the $[officename] default values.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/optionsdialog/revert\">Reinicialitza els valors modificats als valors per defecte del $[officename].</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optionsdialog/revert\">Resets changes made to the current tab to those applicable when this dialog was opened.</ahelp>"
+msgstr ""
#: 00000001.xhp
msgctxt ""
@@ -553,6 +553,54 @@ msgctxt ""
msgid "<variable id=\"ShiftF1\">Press Shift+F1 and point to a control to learn more about that control.</variable>"
msgstr "<variable id=\"ShiftF1\">Premeu Maj+F1 i apunteu a un control per saber-ne més coses. </variable>"
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"hd_id631527692833772\n"
+"help.text"
+msgid "Options dialog buttons"
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"hd_id831527692839432\n"
+"help.text"
+msgid "OK"
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"par_id471527692844934\n"
+"help.text"
+msgid "Save the changes in the page and close the Options dialog."
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"hd_id261527692850720\n"
+"help.text"
+msgid "Cancel"
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"par_id571527692855533\n"
+"help.text"
+msgid "Close the Options dialog and discard all changes done."
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"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 Options dialog."
+msgstr ""
+
#: 00000002.xhp
msgctxt ""
"00000002.xhp\n"
@@ -11126,16 +11174,16 @@ msgctxt ""
"00040502.xhp\n"
"par_id3151293\n"
"help.text"
-msgid "<variable id=\"linienstile\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Line Styles</emph> tab </variable>"
-msgstr "<variable id=\"linienstile\">Trieu la pestanya <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Objecte - </emph></caseinline><caseinline select=\"CALC\"><emph>Gràfic - </emph></caseinline></switchinline><emph>Línia - Estils de línia</emph> </variable>"
+msgid "<variable id=\"linienstile\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Line Styles</emph> tab</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3149317\n"
"help.text"
-msgid "<variable id=\"linienenden\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Arrow Styles</emph> tab </variable>"
-msgstr "<variable id=\"linienenden\">Trieu la pestanya <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Objecte - </emph></caseinline><caseinline select=\"CALC\"><emph>Gràfic - </emph></caseinline></switchinline><emph>Línia - Estils de fletxa</emph> </variable>"
+msgid "<variable id=\"linienenden\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Arrow Styles</emph> tab</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
@@ -11174,15 +11222,15 @@ msgctxt ""
"00040502.xhp\n"
"par_id3154948\n"
"help.text"
-msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Area</emph> tab"
-msgstr "Trieu la pestanya <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Objecte - </emph></caseinline><caseinline select=\"CALC\"><emph>Gràfic - </emph></caseinline></switchinline><emph>Àrea - Àrea</emph>"
+msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Area</emph> tab."
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3145607\n"
"help.text"
-msgid "Choose <emph>View - Styles</emph> - open context menu and choose <emph>Modify/New - Area</emph> tab (presentation documents)"
+msgid "Choose <emph>View - Styles</emph> - open context menu and choose <emph>Modify/New - Area</emph> tab (presentation documents)."
msgstr ""
#: 00040502.xhp
@@ -11190,47 +11238,47 @@ msgctxt ""
"00040502.xhp\n"
"par_id3152922\n"
"help.text"
-msgid "Choose <emph>Format - Title - Area</emph> tab (chart documents)"
-msgstr "Trieu la pestanya <emph>Format - Títol - Àrea</emph> (documents amb diagrames)"
+msgid "Choose <emph>Format - Title - Area</emph> tab (chart documents)."
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3157894\n"
"help.text"
-msgid "Choose <emph>Format - Legend - Area</emph> tab (chart documents)"
-msgstr "Trieu la pestanya <emph>Format - Llegenda - Àrea</emph> (documents amb diagrames)"
+msgid "Choose <emph>Format - Legend - Area</emph> tab (chart documents)."
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3144444\n"
"help.text"
-msgid "Choose <emph>Format - Chart Wall - Area</emph> tab (chart documents)"
-msgstr "Trieu la pestanya <emph>Format - Pla lateral del diagrama - Àrea</emph> (documents amb diagrames)"
+msgid "Choose <emph>Format - Chart Wall - Area</emph> tab (chart documents)."
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3156543\n"
"help.text"
-msgid "Choose <emph>Format - Chart Floor - Area</emph> tab (chart documents)"
-msgstr "Trieu la pestanya <emph>Format - Base del diagrama - Àrea</emph> (documents amb diagrames)"
+msgid "Choose <emph>Format - Chart Floor - Area</emph> tab (chart documents)."
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3150685\n"
"help.text"
-msgid "Choose <emph>Format - Chart Area - Area</emph> tab (chart documents)"
-msgstr "Trieu la pestanya <emph>Format - Àrea del diagrama - Àrea</emph> (documents amb diagrames)"
+msgid "Choose <emph>Format - Chart Area - Area</emph> tab (chart documents)."
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3149664\n"
"help.text"
-msgid "Choose <emph>Slide - Properties - Background</emph> tab (in $[officename] Impress)"
+msgid "Choose <emph>Slide - Properties - Background</emph> tab (in $[officename] Impress)."
msgstr ""
#: 00040502.xhp
@@ -11238,7 +11286,15 @@ msgctxt ""
"00040502.xhp\n"
"par_id9149694\n"
"help.text"
-msgid "Choose <emph>Page - Properties - Background</emph> tab (in $[officename] Draw)"
+msgid "Choose <emph>Page - Properties - Background</emph> tab (in $[officename] Draw)."
+msgstr ""
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id841527083135387\n"
+"help.text"
+msgid "Choose <emph>Table - Properties - Background</emph> tab."
msgstr ""
#: 00040502.xhp
@@ -11350,32 +11406,32 @@ msgctxt ""
"00040502.xhp\n"
"par_id3150011\n"
"help.text"
-msgid "<variable id=\"schatte\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Shadow</emph> tab </variable>"
-msgstr "<variable id=\"schatte\">Trieu la pestanya <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Objecte - </emph></caseinline><caseinline select=\"CALC\"><emph>Gràfic - </emph></caseinline></switchinline><emph>Àrea - Ombra</emph></variable>"
+msgid "<variable id=\"schatte\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Shadow</emph> tab</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3147441\n"
"help.text"
-msgid "<variable id=\"verlauf\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Gradients</emph> tab </variable>"
-msgstr "<variable id=\"verlauf\">Trieu la pestanya <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Objecte - </emph></caseinline><caseinline select=\"CALC\"><emph>Gràfic - </emph></caseinline></switchinline><emph>Àrea - Degradats</emph> </variable>"
+msgid "<variable id=\"verlauf\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Gradients</emph> tab</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3155308\n"
"help.text"
-msgid "<variable id=\"schraffur\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Hatching</emph> tab </variable>"
-msgstr "<variable id=\"schraffur\">Trieu la pestanya <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Objecte - </emph></caseinline><caseinline select=\"CALC\"><emph>Gràfic - </emph></caseinline></switchinline><emph>Àrea - Ombreig</emph> </variable>"
+msgid "<variable id=\"schraffur\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Hatching</emph> tab</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3145800\n"
"help.text"
-msgid "<variable id=\"bitmap\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Bitmaps</emph> tab </variable>"
-msgstr "<variable id=\"bitmap\">Trieu la pestanya <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Objecte - </emph></caseinline><caseinline select=\"CALC\"><emph>Gràfic - </emph></caseinline></switchinline><emph>Àrea - Mapes de bits</emph> </variable>"
+msgid "<variable id=\"bitmap\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Bitmaps</emph> tab</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
@@ -11414,8 +11470,8 @@ msgctxt ""
"00040502.xhp\n"
"par_id3156286\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F4 key </caseinline><caseinline select=\"IMPRESS\">F4 key </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"DRAW\">Tecla F4 </caseinline><caseinline select=\"IMPRESS\">Tecla F4 </caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F4 key</caseinline><caseinline select=\"IMPRESS\">F4 key</caseinline></switchinline>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
@@ -11454,8 +11510,8 @@ msgctxt ""
"00040502.xhp\n"
"par_id3153099\n"
"help.text"
-msgid "<variable id=\"position2\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Position and Size</emph> tab </variable>"
-msgstr "<variable id=\"position2\">Trieu la pestanya <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Objecte - </emph></caseinline><caseinline select=\"CALC\"><emph>Gràfic - </emph></caseinline></switchinline><emph>Posició i mida - Posició i mida</emph> </variable>"
+msgid "<variable id=\"position2\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Position and Size</emph> tab</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
@@ -11486,16 +11542,16 @@ msgctxt ""
"00040502.xhp\n"
"par_id3145666\n"
"help.text"
-msgid "<variable id=\"ecke\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Slant & Corner Radius</emph> tab </variable>"
-msgstr "<variable id=\"ecke\">Trieu la pestanya <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Objecte - </emph></caseinline><caseinline select=\"CALC\"><emph>Gràfic - </emph></caseinline></switchinline><emph>Posició i mida - Inclinació i radi de la cantonada</emph> </variable>"
+msgid "<variable id=\"ecke\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Slant & Corner Radius</emph> tab</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3146081\n"
"help.text"
-msgid "<variable id=\"legende\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Callout</emph> tab (only for textbox callouts, not for custom shapes callouts) </variable>"
-msgstr "<variable id=\"legende\">Trieu la pestanya <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Objecte - </emph></caseinline><caseinline select=\"CALC\"><emph>Gràfic - </emph></caseinline></switchinline><emph>Posició i mida - Llegenda</emph> (només per a llegendes amb quadres de text, no per a llegendes amb formes personalitzades)</variable>"
+msgid "<variable id=\"legende\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Callout</emph> tab (only for textbox callouts, not for custom shapes callouts)</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
@@ -11518,8 +11574,8 @@ msgctxt ""
"00040502.xhp\n"
"par_id3149019\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F8 key </caseinline><caseinline select=\"IMPRESS\">F8 key </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"DRAW\">Tecla F8 </caseinline><caseinline select=\"IMPRESS\">Tecla F8 </caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F8 key</caseinline><caseinline select=\"IMPRESS\">F8 key</caseinline></switchinline>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
@@ -11806,8 +11862,8 @@ msgctxt ""
"00040502.xhp\n"
"par_id3153076\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Align Center Horizontally </caseinline><defaultinline>Centered</defaultinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Alinea al centre horitzontalment </caseinline><defaultinline>Centrat</defaultinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Align Center Horizontally</caseinline><defaultinline>Centered</defaultinline></switchinline>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
@@ -11846,8 +11902,8 @@ msgctxt ""
"00040502.xhp\n"
"par_id3150527\n"
"help.text"
-msgid "<variable id=\"font\">Click <emph>Fontwork</emph> icon on <emph>Drawing</emph> bar </variable>"
-msgstr "<variable id=\"font\">Feu clic a la icona <emph>Fontwork</emph> de la barra <emph>Dibuix</emph></variable>"
+msgid "<variable id=\"font\">Click <emph>Fontwork</emph> icon on <emph>Drawing</emph> bar</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
diff --git a/source/ca-valencia/helpcontent2/source/text/shared/01.po b/source/ca-valencia/helpcontent2/source/text/shared/01.po
index 1a0dc398231..762e52cd144 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: 2018-05-23 23:19+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2018-01-15 13:20+0000\n"
"Last-Translator: joamuran <joamuran@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -23588,6 +23588,22 @@ msgstr ""
#: 05210100.xhp
msgctxt ""
"05210100.xhp\n"
+"hd_id471527077476052\n"
+"help.text"
+msgid "Cell, Row or Table background selector"
+msgstr ""
+
+#: 05210100.xhp
+msgctxt ""
+"05210100.xhp\n"
+"par_id661527077493366\n"
+"help.text"
+msgid "Select the table object which background area is to be filled."
+msgstr ""
+
+#: 05210100.xhp
+msgctxt ""
+"05210100.xhp\n"
"hd_id3147373\n"
"help.text"
msgid "None"
@@ -31206,24 +31222,24 @@ msgctxt ""
"06040100.xhp\n"
"hd_id3145072\n"
"help.text"
-msgid "Automatic *bold* and _underline_"
-msgstr "Converteix en *negreta* i _subratllat_ automàticament"
+msgid "Automatic *bold*, /italic/, -strikeout- and _underline_"
+msgstr ""
#: 06040100.xhp
msgctxt ""
"06040100.xhp\n"
"par_id3153577\n"
"help.text"
-msgid "Automatically applies bold formatting to text enclosed by asterisks (*), and underline to text enclosed by underscores ( _ ), for example, *bold*. The asterisks and underscores are not displayed after the formatting is applied."
-msgstr "Aplica automàticament formatació de negreta al text comprés entre dos asteriscs (*), com per exemple *negreta*, i subratlla el text comprés entre dues ratlles baixes ( _ ). Una vegada aplicades estes formatacions ja no es mostren els asteriscos ni les ratlles baixes."
+msgid "Automatically applies bold, italic, strikethrough or underline formatting to text enclosed by asterisks (*), slashes (/), hyphens (-), and underscores (_), respectively. These characters disappear after the formatting is applied."
+msgstr ""
#: 06040100.xhp
msgctxt ""
"06040100.xhp\n"
"par_id3153127\n"
"help.text"
-msgid "This feature does not work if the formatting characters * or _ are entered with an <link href=\"text/shared/00/00000005.xhp#IME\" name=\"Input Method Editor\">Input Method Editor</link>."
-msgstr "Esta característica no funciona si introduïu els caràcters de formatació * o _ amb un <link href=\"text/shared/00/00000005.xhp#IME\" name=\"editor del mètode d'entrada\">editor del mètode d'entrada</link>."
+msgid "This feature does not work if the formatting characters <item type=\"literal\">* / - _</item> are entered with an <link href=\"text/shared/00/00000005.xhp#IME\" name=\"Input Method Editor\">Input Method Editor</link>."
+msgstr ""
#: 06040100.xhp
msgctxt ""
diff --git a/source/ca-valencia/helpcontent2/source/text/shared/optionen.po b/source/ca-valencia/helpcontent2/source/text/shared/optionen.po
index 7a1ea346c28..5ef33f0552e 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: 2018-05-08 15:10+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2018-01-15 13:20+0000\n"
"Last-Translator: joamuran <joamuran@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -84,6 +84,22 @@ msgstr ""
#: 01000000.xhp
msgctxt ""
"01000000.xhp\n"
+"hd_id551527692881035\n"
+"help.text"
+msgid "Help"
+msgstr ""
+
+#: 01000000.xhp
+msgctxt ""
+"01000000.xhp\n"
+"par_id831527692885723\n"
+"help.text"
+msgid "Opens the help contents for the Options page displayed."
+msgstr ""
+
+#: 01000000.xhp
+msgctxt ""
+"01000000.xhp\n"
"hd_id3159149\n"
"help.text"
msgid "<link href=\"text/shared/optionen/01010000.xhp\" name=\"$[officename]\">%PRODUCTNAME</link>"
@@ -4566,8 +4582,8 @@ msgctxt ""
"01030300.xhp\n"
"par_idN10640\n"
"help.text"
-msgid "Options"
-msgstr "Opcions"
+msgid "Security Options and Warnings"
+msgstr ""
#: 01030300.xhp
msgctxt ""
@@ -4598,8 +4614,8 @@ msgctxt ""
"01030300.xhp\n"
"hd_id3168736\n"
"help.text"
-msgid "Persistently save passwords protected by a master password"
-msgstr "Guarda permanentment les contrasenyes protegides amb una contrasenya mestra"
+msgid "Persistently save passwords for web connections"
+msgstr ""
#: 01030300.xhp
msgctxt ""
@@ -4614,8 +4630,24 @@ msgctxt ""
"01030300.xhp\n"
"hd_id3901791\n"
"help.text"
+msgid "Protected by a master password (recommended)"
+msgstr ""
+
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"par_id31527711486980\n"
+"help.text"
+msgid "Check to enable all connections' passwords to be protected by a master password."
+msgstr ""
+
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"hd_id141527711343312\n"
+"help.text"
msgid "Master Password"
-msgstr "Contrasenya mestra"
+msgstr ""
#: 01030300.xhp
msgctxt ""
@@ -13734,8 +13766,8 @@ msgctxt ""
"java.xhp\n"
"hd_id3148618\n"
"help.text"
-msgid "Optional (unstable) options"
-msgstr "Opcions opcionals (inestables)"
+msgid "Optional Features"
+msgstr ""
#: java.xhp
msgctxt ""
@@ -13750,8 +13782,8 @@ msgctxt ""
"java.xhp\n"
"par_id3156344\n"
"help.text"
-msgid "It enables features that are not yet complete or contain known bugs. The list of these features is different version by version, or even it can be empty."
-msgstr "Habilita característiques que encara no estan completades o que contenen errors. La llista d'estes característiques es diferent segons la versió, o fins i tot pot estar buida."
+msgid "Enables features that are not yet complete or may contain known bugs. The list of these features is different version by version, or even it can be empty."
+msgstr ""
#: java.xhp
msgctxt ""
@@ -13766,8 +13798,8 @@ msgctxt ""
"java.xhp\n"
"par_id3156345\n"
"help.text"
-msgid "It enables macro recording, so the <link href=\"text/shared/guide/macro_recording.xhp\" name=\"Tools - Macros - Record Macro\"><item type=\"menuitem\">Tools - Macros - Record Macro</item></link> menu item will be available."
-msgstr "Habilita l'gravació\t de macros, de manera que l'element del menú <link href=\"text/shared/guide/macro_recording.xhp\" name=\"Eines - Macros - Grava una macro\"><item type=\"menuitem\">Eines - Macros - Grava una macro</item></link> estarà disponible."
+msgid "Enables macro recording. The <link href=\"text/shared/guide/macro_recording.xhp\" name=\"Tools - Macros - Record Macro\"><item type=\"menuitem\">Tools - Macros - Record Macro</item></link> menu item is available."
+msgstr ""
#: java.xhp
msgctxt ""
diff --git a/source/ca-valencia/officecfg/registry/data/org/openoffice/Office/UI.po b/source/ca-valencia/officecfg/registry/data/org/openoffice/Office/UI.po
index f9f2ce3e1a2..c47f4a1fd73 100644
--- a/source/ca-valencia/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/ca-valencia/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-22 13:17+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2018-01-29 07:53+0000\n"
"Last-Translator: joamuran <joamuran@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -26520,8 +26520,8 @@ msgctxt ""
"..WriterCommands.UserInterface.Commands..uno:TextAttributes\n"
"Label\n"
"value.text"
-msgid "Text Attributes"
-msgstr "Atributs del text"
+msgid "Text Attributes..."
+msgstr ""
#: WriterCommands.xcu
msgctxt ""
diff --git a/source/ca-valencia/readlicense_oo/docs.po b/source/ca-valencia/readlicense_oo/docs.po
index 5009c43e5fb..de43f347b43 100644
--- a/source/ca-valencia/readlicense_oo/docs.po
+++ b/source/ca-valencia/readlicense_oo/docs.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-04-17 15:54+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2018-01-29 07:53+0000\n"
"Last-Translator: joamuran <joamuran@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -117,8 +117,8 @@ msgctxt ""
"readme.xrm\n"
"macxiOSX\n"
"readmeitem.text"
-msgid "MacOSX 10.8 (Mountain Lion) or higher"
-msgstr "MacOSX 10.8 (Mountain Lion) o superior"
+msgid "MacOSX 10.9 (Mavericks) or higher"
+msgstr ""
#: readme.xrm
msgctxt ""
diff --git a/source/ca-valencia/sc/messages.po b/source/ca-valencia/sc/messages.po
index cc34862a66e..3bc300ea73d 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-12 14:40+0200\n"
"PO-Revision-Date: 2018-01-29 07:53+0000\n"
"Last-Translator: joamuran <joamuran@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1870,16 +1870,21 @@ msgid "Nested arrays are not supported."
msgstr "No es permet l'ús de vectors imbricats."
#: sc/inc/globstr.hrc:390
+msgctxt "STR_ERR_LONG_BAD_ARRAY_CONTENT"
+msgid "Unsupported inline array content."
+msgstr ""
+
+#: sc/inc/globstr.hrc:391
msgctxt "STR_UNDO_TEXTTOCOLUMNS"
msgid "Text to Columns"
msgstr "Text a columnes"
-#: sc/inc/globstr.hrc:391
+#: sc/inc/globstr.hrc:392
msgctxt "STR_DOC_UPDATED"
msgid "Your spreadsheet has been updated with changes saved by other users."
msgstr "S'ha actualitzat el full de càlcul amb els canvis guardats per altres usuaris."
-#: sc/inc/globstr.hrc:392
+#: sc/inc/globstr.hrc:393
msgctxt "STR_DOC_WILLBESAVED"
msgid ""
"The spreadsheet must be saved now to activate sharing mode.\n"
@@ -1890,7 +1895,7 @@ msgstr ""
"\n"
"Voleu continuar?"
-#: sc/inc/globstr.hrc:393
+#: sc/inc/globstr.hrc:394
msgctxt "STR_DOC_WILLNOTBESAVED"
msgid ""
"Already resolved merge conflicts will be lost and your changes to the shared spreadsheet will not be saved.\n"
@@ -1901,7 +1906,7 @@ msgstr ""
"\n"
"Voleu continuar?"
-#: sc/inc/globstr.hrc:394
+#: sc/inc/globstr.hrc:395
msgctxt "STR_DOC_DISABLESHARED"
msgid ""
"Disabling shared mode of a spreadsheet hinders all other users of the shared spreadsheet to merge back their work.\n"
@@ -1912,7 +1917,7 @@ msgstr ""
"\n"
"Voleu continuar?"
-#: sc/inc/globstr.hrc:395
+#: sc/inc/globstr.hrc:396
msgctxt "STR_DOC_NOLONGERSHARED"
msgid ""
"This spreadsheet is no longer in shared mode.\n"
@@ -1923,7 +1928,7 @@ msgstr ""
"\n"
"Guardeu aquest full de càlcul en un altre fitxer i incorporeu manualment els canvis que heu fet al full de càlcul compartit."
-#: sc/inc/globstr.hrc:396
+#: sc/inc/globstr.hrc:397
msgctxt "STR_FILE_LOCKED_TRY_LATER"
msgid ""
"The shared spreadsheet file is locked due to a merge in progress by user: '%1'\n"
@@ -1934,7 +1939,7 @@ msgstr ""
"\n"
"El mode compartit d'un fitxer blocat no es pot inhabilitar. Proveu-ho més tard."
-#: sc/inc/globstr.hrc:397
+#: sc/inc/globstr.hrc:398
msgctxt "STR_FILE_LOCKED_SAVE_LATER"
msgid ""
"The shared spreadsheet file is locked due to a merge in progress by user: '%1'\n"
@@ -1945,147 +1950,147 @@ msgstr ""
"\n"
"Proveu de guardar els canvis més tard."
-#: sc/inc/globstr.hrc:398
+#: sc/inc/globstr.hrc:399
msgctxt "STR_UNKNOWN_USER"
msgid "Unknown User"
msgstr "Usuari desconegut"
-#: sc/inc/globstr.hrc:399
+#: sc/inc/globstr.hrc:400
msgctxt "STR_SHAPE_AUTOSHAPE"
msgid "AutoShape"
msgstr "Forma automàtica"
-#: sc/inc/globstr.hrc:400
+#: sc/inc/globstr.hrc:401
msgctxt "STR_SHAPE_RECTANGLE"
msgid "Rectangle"
msgstr "Rectangular"
-#: sc/inc/globstr.hrc:401
+#: sc/inc/globstr.hrc:402
msgctxt "STR_SHAPE_LINE"
msgid "Line"
msgstr "Línia"
-#: sc/inc/globstr.hrc:402
+#: sc/inc/globstr.hrc:403
msgctxt "STR_SHAPE_OVAL"
msgid "Oval"
msgstr "Oval"
-#: sc/inc/globstr.hrc:403
+#: sc/inc/globstr.hrc:404
msgctxt "STR_FORM_BUTTON"
msgid "Button"
msgstr "Botó"
-#: sc/inc/globstr.hrc:404
+#: sc/inc/globstr.hrc:405
msgctxt "STR_FORM_CHECKBOX"
msgid "Check Box"
msgstr "Casella de selecció"
-#: sc/inc/globstr.hrc:405
+#: sc/inc/globstr.hrc:406
msgctxt "STR_FORM_OPTIONBUTTON"
msgid "Option Button"
msgstr "Botó d'opció"
-#: sc/inc/globstr.hrc:406
+#: sc/inc/globstr.hrc:407
msgctxt "STR_FORM_LABEL"
msgid "Label"
msgstr "Etiqueta"
-#: sc/inc/globstr.hrc:407
+#: sc/inc/globstr.hrc:408
msgctxt "STR_FORM_LISTBOX"
msgid "List Box"
msgstr "Quadre de llista"
-#: sc/inc/globstr.hrc:408
+#: sc/inc/globstr.hrc:409
msgctxt "STR_FORM_GROUPBOX"
msgid "Group Box"
msgstr "Quadre de grup"
-#: sc/inc/globstr.hrc:409
+#: sc/inc/globstr.hrc:410
msgctxt "STR_FORM_DROPDOWN"
msgid "Drop Down"
msgstr "Llista desplegable"
-#: sc/inc/globstr.hrc:410
+#: sc/inc/globstr.hrc:411
msgctxt "STR_FORM_SPINNER"
msgid "Spinner"
msgstr "Botó de selecció de valor"
-#: sc/inc/globstr.hrc:411
+#: sc/inc/globstr.hrc:412
msgctxt "STR_FORM_SCROLLBAR"
msgid "Scroll Bar"
msgstr "Barra de desplaçament"
-#: sc/inc/globstr.hrc:412
+#: sc/inc/globstr.hrc:413
msgctxt "STR_STYLE_FAMILY_CELL"
msgid "Cell Styles"
msgstr "Estils de cel·la"
-#: sc/inc/globstr.hrc:413
+#: sc/inc/globstr.hrc:414
msgctxt "STR_STYLE_FAMILY_PAGE"
msgid "Page Styles"
msgstr "Estils de pàgina"
-#: sc/inc/globstr.hrc:414
+#: sc/inc/globstr.hrc:415
msgctxt "STR_ERR_DATAPILOTSOURCE"
msgid "Pivot table source data is invalid."
msgstr "Les dades font de la taula dinàmica no són vàlides."
-#: sc/inc/globstr.hrc:415
+#: sc/inc/globstr.hrc:416
msgctxt "STR_OPTIONS_WARN_SEPARATORS"
msgid "Because the current formula separator settings conflict with the locale, the formula separators have been reset to their default values."
msgstr "Els paràmetres del separador de fórmules estan en conflicte amb la configuració local. Els separadors de fórmules es reiniciaran als paràmetres per defecte."
-#: sc/inc/globstr.hrc:416
+#: sc/inc/globstr.hrc:417
msgctxt "STR_UNDO_INSERT_CURRENT_DATE"
msgid "Insert Current Date"
msgstr "Insereix la data actual"
-#: sc/inc/globstr.hrc:417
+#: sc/inc/globstr.hrc:418
msgctxt "STR_UNDO_INSERT_CURRENT_TIME"
msgid "Insert Current Time"
msgstr "Insereix l'hora actual"
-#: sc/inc/globstr.hrc:418
+#: sc/inc/globstr.hrc:419
msgctxt "STR_MANAGE_NAMES"
msgid "Manage Names..."
msgstr "Gestiona els noms..."
-#: sc/inc/globstr.hrc:419
+#: sc/inc/globstr.hrc:420
msgctxt "STR_HEADER_NAME"
msgid "Name"
msgstr "Nom"
-#: sc/inc/globstr.hrc:420
+#: sc/inc/globstr.hrc:421
msgctxt "STR_HEADER_RANGE_OR_EXPR"
msgid "Range or formula expression"
msgstr "Interval o expressió de fórmula"
-#: sc/inc/globstr.hrc:421
+#: sc/inc/globstr.hrc:422
msgctxt "STR_HEADER_SCOPE"
msgid "Scope"
msgstr "Àmbit"
-#: sc/inc/globstr.hrc:422
+#: sc/inc/globstr.hrc:423
msgctxt "STR_MULTI_SELECT"
msgid "(multiple)"
msgstr "(múltiple)"
-#: sc/inc/globstr.hrc:423
+#: sc/inc/globstr.hrc:424
msgctxt "STR_GLOBAL_SCOPE"
msgid "Document (Global)"
msgstr "Document (global)"
-#: sc/inc/globstr.hrc:424
+#: sc/inc/globstr.hrc:425
msgctxt "STR_ERR_NAME_EXISTS"
msgid "Invalid name. Already in use for the selected scope."
msgstr "El nom no és vàlid. El nom ja es troba en ús en el context seleccionat."
-#: sc/inc/globstr.hrc:425
+#: sc/inc/globstr.hrc:426
msgctxt "STR_ERR_NAME_INVALID"
msgid "Invalid name. Only use letters, numbers and underscore."
msgstr "El nom no és vàlid. Utilitzeu només lletres, números i guions baixos."
-#: sc/inc/globstr.hrc:426
+#: sc/inc/globstr.hrc:427
msgctxt "STR_UNSAVED_EXT_REF"
msgid ""
"This Document contains external references to unsaved documents.\n"
@@ -2096,217 +2101,217 @@ msgstr ""
"\n"
"Voleu continuar?"
-#: sc/inc/globstr.hrc:427
+#: sc/inc/globstr.hrc:428
msgctxt "STR_CLOSE_WITH_UNSAVED_REFS"
msgid "This Document is referenced by another document and not yet saved. Closing it without saving will result in data loss."
msgstr "Un altre document fa referència a aquest document i encara no s'ha guardat. Si el tanqueu sense guardar-lo, es perdran dades."
-#: sc/inc/globstr.hrc:428
+#: sc/inc/globstr.hrc:429
msgctxt "STR_HEADER_RANGE"
msgid "Range"
msgstr "Interval"
-#: sc/inc/globstr.hrc:429
+#: sc/inc/globstr.hrc:430
msgctxt "STR_HEADER_COND"
msgid "First Condition"
msgstr "Primera condició"
-#: sc/inc/globstr.hrc:430
+#: sc/inc/globstr.hrc:431
msgctxt "STR_COND_CONDITION"
msgid "Cell value is"
msgstr "El valor de la cel·la és"
-#: sc/inc/globstr.hrc:431
+#: sc/inc/globstr.hrc:432
msgctxt "STR_COND_COLORSCALE"
msgid "ColorScale"
msgstr "Escala de colors"
-#: sc/inc/globstr.hrc:432
+#: sc/inc/globstr.hrc:433
msgctxt "STR_COND_DATABAR"
msgid "DataBar"
msgstr "Barra de dades"
-#: sc/inc/globstr.hrc:433
+#: sc/inc/globstr.hrc:434
msgctxt "STR_COND_ICONSET"
msgid "IconSet"
msgstr "Joc d'icones"
-#: sc/inc/globstr.hrc:434
+#: sc/inc/globstr.hrc:435
msgctxt "STR_COND_BETWEEN"
msgid "between"
msgstr "entre"
-#: sc/inc/globstr.hrc:435
+#: sc/inc/globstr.hrc:436
msgctxt "STR_COND_NOTBETWEEN"
msgid "not between"
msgstr "fora de l'interval entre"
-#: sc/inc/globstr.hrc:436
+#: sc/inc/globstr.hrc:437
msgctxt "STR_COND_UNIQUE"
msgid "unique"
msgstr "únic"
-#: sc/inc/globstr.hrc:437
+#: sc/inc/globstr.hrc:438
msgctxt "STR_COND_DUPLICATE"
msgid "duplicate"
msgstr "duplicat"
-#: sc/inc/globstr.hrc:438
+#: sc/inc/globstr.hrc:439
msgctxt "STR_COND_FORMULA"
msgid "Formula is"
msgstr "La fórmula és"
-#: sc/inc/globstr.hrc:439
+#: sc/inc/globstr.hrc:440
msgctxt "STR_COND_TOP10"
msgid "Top Elements"
msgstr "Elements superiors"
-#: sc/inc/globstr.hrc:440
+#: sc/inc/globstr.hrc:441
msgctxt "STR_COND_BOTTOM10"
msgid "Bottom Elements"
msgstr "Elements inferiors"
-#: sc/inc/globstr.hrc:441
+#: sc/inc/globstr.hrc:442
msgctxt "STR_COND_TOP_PERCENT"
msgid "Top Percent"
msgstr "Percentatge superior"
-#: sc/inc/globstr.hrc:442
+#: sc/inc/globstr.hrc:443
msgctxt "STR_COND_DATE"
msgid "Date is"
msgstr "La data és"
-#: sc/inc/globstr.hrc:443
+#: sc/inc/globstr.hrc:444
msgctxt "STR_COND_BOTTOM_PERCENT"
msgid "Bottom Percent"
msgstr "Percentatge inferior"
-#: sc/inc/globstr.hrc:444
+#: sc/inc/globstr.hrc:445
msgctxt "STR_COND_ABOVE_AVERAGE"
msgid "Above Average"
msgstr "Per damunt de la mitjana"
-#: sc/inc/globstr.hrc:445
+#: sc/inc/globstr.hrc:446
msgctxt "STR_COND_BELOW_AVERAGE"
msgid "Below Average"
msgstr "Per davall de la mitjana"
-#: sc/inc/globstr.hrc:446
+#: sc/inc/globstr.hrc:447
msgctxt "STR_COND_ABOVE_EQUAL_AVERAGE"
msgid "Above or equal Average"
msgstr "Igual o superior a la mitjana"
-#: sc/inc/globstr.hrc:447
+#: sc/inc/globstr.hrc:448
msgctxt "STR_COND_BELOW_EQUAL_AVERAGE"
msgid "Below or equal Average"
msgstr "Igual o inferior a la mitjana"
-#: sc/inc/globstr.hrc:448
+#: sc/inc/globstr.hrc:449
msgctxt "STR_COND_ERROR"
msgid "an Error code"
msgstr "un codi d'error"
-#: sc/inc/globstr.hrc:449
+#: sc/inc/globstr.hrc:450
msgctxt "STR_COND_NOERROR"
msgid "not an Error code"
msgstr "no un codi d'error"
-#: sc/inc/globstr.hrc:450
+#: sc/inc/globstr.hrc:451
msgctxt "STR_COND_BEGINS_WITH"
msgid "Begins with"
msgstr "Comença amb"
-#: sc/inc/globstr.hrc:451
+#: sc/inc/globstr.hrc:452
msgctxt "STR_COND_ENDS_WITH"
msgid "Ends with"
msgstr "Acaba amb"
-#: sc/inc/globstr.hrc:452
+#: sc/inc/globstr.hrc:453
msgctxt "STR_COND_CONTAINS"
msgid "Contains"
msgstr "Conté"
-#: sc/inc/globstr.hrc:453
+#: sc/inc/globstr.hrc:454
msgctxt "STR_COND_NOT_CONTAINS"
msgid "Not Contains"
msgstr "No conté"
-#: sc/inc/globstr.hrc:454
+#: sc/inc/globstr.hrc:455
msgctxt "STR_COND_TODAY"
msgid "today"
msgstr "hui"
-#: sc/inc/globstr.hrc:455
+#: sc/inc/globstr.hrc:456
msgctxt "STR_COND_YESTERDAY"
msgid "yesterday"
msgstr "ahir"
-#: sc/inc/globstr.hrc:456
+#: sc/inc/globstr.hrc:457
msgctxt "STR_COND_TOMORROW"
msgid "tomorrow"
msgstr "demà"
-#: sc/inc/globstr.hrc:457
+#: sc/inc/globstr.hrc:458
msgctxt "STR_COND_LAST7DAYS"
msgid "in the last 7 days"
msgstr "en els darrers 7 dies"
-#: sc/inc/globstr.hrc:458
+#: sc/inc/globstr.hrc:459
msgctxt "STR_COND_THISWEEK"
msgid "this week"
msgstr "aquesta setmana"
-#: sc/inc/globstr.hrc:459
+#: sc/inc/globstr.hrc:460
msgctxt "STR_COND_LASTWEEK"
msgid "last week"
msgstr "la setmana passada"
-#: sc/inc/globstr.hrc:460
+#: sc/inc/globstr.hrc:461
msgctxt "STR_COND_NEXTWEEK"
msgid "next week"
msgstr "la setmana vinent"
-#: sc/inc/globstr.hrc:461
+#: sc/inc/globstr.hrc:462
msgctxt "STR_COND_THISMONTH"
msgid "this month"
msgstr "aquest mes"
-#: sc/inc/globstr.hrc:462
+#: sc/inc/globstr.hrc:463
msgctxt "STR_COND_LASTMONTH"
msgid "last month"
msgstr "el mes passat"
-#: sc/inc/globstr.hrc:463
+#: sc/inc/globstr.hrc:464
msgctxt "STR_COND_NEXTMONTH"
msgid "next month"
msgstr "mes següent"
-#: sc/inc/globstr.hrc:464
+#: sc/inc/globstr.hrc:465
msgctxt "STR_COND_THISYEAR"
msgid "this year"
msgstr "enguany"
-#: sc/inc/globstr.hrc:465
+#: sc/inc/globstr.hrc:466
msgctxt "STR_COND_LASTYEAR"
msgid "last year"
msgstr "l'any passat"
-#: sc/inc/globstr.hrc:466
+#: sc/inc/globstr.hrc:467
msgctxt "STR_COND_NEXTYEAR"
msgid "next year"
msgstr "l'any vinent"
-#: sc/inc/globstr.hrc:467
+#: sc/inc/globstr.hrc:468
msgctxt "STR_COND_AND"
msgid "and"
msgstr "i"
-#: sc/inc/globstr.hrc:468
+#: sc/inc/globstr.hrc:469
msgctxt "STR_ERR_CONDFORMAT_PROTECTED"
msgid "Conditional Formats can not be created, deleted or changed in protected sheets."
msgstr ""
-#: sc/inc/globstr.hrc:469
+#: sc/inc/globstr.hrc:470
msgctxt "STR_EDIT_EXISTING_COND_FORMATS"
msgid ""
"The selected cell already contains conditional formatting. You can either edit the existing conditional format or you define a new overlapping conditional format.\n"
@@ -2317,7 +2322,7 @@ msgstr ""
"\n"
"Voleu editar la formatació condicional consistent?"
-#: sc/inc/globstr.hrc:470
+#: sc/inc/globstr.hrc:471
msgctxt "STR_QUERY_FORMULA_RECALC_ONLOAD_ODS"
msgid ""
"This document was last saved by an application other than %PRODUCTNAME. Some formula cells may produce different results when recalculated.\n"
@@ -2328,7 +2333,7 @@ msgstr ""
"\n"
"Voleu recalcular ara totes les cel·les de fórmula?"
-#: sc/inc/globstr.hrc:471
+#: sc/inc/globstr.hrc:472
msgctxt "STR_QUERY_FORMULA_RECALC_ONLOAD_XLS"
msgid ""
"This document was last saved by Excel. Some formula cells may produce different results when recalculated.\n"
@@ -2339,77 +2344,77 @@ msgstr ""
"\n"
"Voleu recalcular ara totes les cel·les de fórmula?"
-#: sc/inc/globstr.hrc:472
+#: sc/inc/globstr.hrc:473
msgctxt "STR_NO_INSERT_DELETE_OVER_PIVOT_TABLE"
msgid "You cannot insert or delete cells when the affected range intersects with pivot table."
msgstr "No podeu inserir ni suprimir cel·les mentre l'interval afectat interseca amb una taula dinàmica."
-#: sc/inc/globstr.hrc:473
+#: sc/inc/globstr.hrc:474
msgctxt "STR_DPFIELD_GROUP_BY_SECONDS"
msgid "Seconds"
msgstr "Segons"
-#: sc/inc/globstr.hrc:474
+#: sc/inc/globstr.hrc:475
msgctxt "STR_DPFIELD_GROUP_BY_MINUTES"
msgid "Minutes"
msgstr "minuts"
-#: sc/inc/globstr.hrc:475
+#: sc/inc/globstr.hrc:476
msgctxt "STR_DPFIELD_GROUP_BY_HOURS"
msgid "Hours"
msgstr "Hores"
-#: sc/inc/globstr.hrc:476
+#: sc/inc/globstr.hrc:477
msgctxt "STR_DPFIELD_GROUP_BY_DAYS"
msgid "Days"
msgstr "Dies"
-#: sc/inc/globstr.hrc:477
+#: sc/inc/globstr.hrc:478
msgctxt "STR_DPFIELD_GROUP_BY_MONTHS"
msgid "Months"
msgstr "Mesos"
-#: sc/inc/globstr.hrc:478
+#: sc/inc/globstr.hrc:479
msgctxt "STR_DPFIELD_GROUP_BY_QUARTERS"
msgid "Quarters"
msgstr "Trimestres"
-#: sc/inc/globstr.hrc:479
+#: sc/inc/globstr.hrc:480
msgctxt "STR_DPFIELD_GROUP_BY_YEARS"
msgid "Years"
msgstr "Anys"
-#: sc/inc/globstr.hrc:480
+#: sc/inc/globstr.hrc:481
msgctxt "STR_INVALIDVAL"
msgid "Invalid target value."
msgstr "El valor de l'objectiu no és vàlid."
-#: sc/inc/globstr.hrc:481
+#: sc/inc/globstr.hrc:482
msgctxt "STR_INVALIDVAR"
msgid "Undefined name for variable cell."
msgstr "No s'ha definit el nom de la cel·la de la variable."
-#: sc/inc/globstr.hrc:482
+#: sc/inc/globstr.hrc:483
msgctxt "STR_INVALIDFORM"
msgid "Undefined name as formula cell."
msgstr "No s'ha definit el nom de la cel·la de la fórmula."
-#: sc/inc/globstr.hrc:483
+#: sc/inc/globstr.hrc:484
msgctxt "STR_NOFORMULA"
msgid "Formula cell must contain a formula."
msgstr "La cel·la de destinació ha de contindre una fórmula."
-#: sc/inc/globstr.hrc:484
+#: sc/inc/globstr.hrc:485
msgctxt "STR_INVALIDINPUT"
msgid "Invalid input."
msgstr "L'entrada no és vàlida."
-#: sc/inc/globstr.hrc:485
+#: sc/inc/globstr.hrc:486
msgctxt "STR_INVALIDCONDITION"
msgid "Invalid condition."
msgstr "La condició no és vàlida."
-#: sc/inc/globstr.hrc:486
+#: sc/inc/globstr.hrc:487
msgctxt "STR_QUERYREMOVE"
msgid ""
"Should the entry\n"
@@ -2419,133 +2424,133 @@ msgstr ""
"Voleu suprimir l'entrada\n"
"#?"
-#: sc/inc/globstr.hrc:487
+#: sc/inc/globstr.hrc:488
msgctxt "STR_COPYLIST"
msgid "Copy List"
msgstr "Copia la llista"
-#: sc/inc/globstr.hrc:488
+#: sc/inc/globstr.hrc:489
msgctxt "STR_COPYFROM"
msgid "List from"
msgstr "Llista des de"
-#: sc/inc/globstr.hrc:489
+#: sc/inc/globstr.hrc:490
msgctxt "STR_COPYERR"
msgid "Cells without text have been ignored."
msgstr "No s'han tingut en compte cel·les sense text."
-#: sc/inc/globstr.hrc:490
+#: sc/inc/globstr.hrc:491
#, c-format
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%s-click to follow hyperlink:"
msgstr "Feu %s-clic per a seguir l'enllaç:"
-#: sc/inc/globstr.hrc:491
+#: sc/inc/globstr.hrc:492
msgctxt "STR_CLICKHYPERLINK"
msgid "click to open hyperlink:"
msgstr "Feu clic per a obrir l'enllaç:"
-#: sc/inc/globstr.hrc:492
+#: sc/inc/globstr.hrc:493
msgctxt "STR_PRINT_PREVIEW_NODATA"
msgid "No Data"
msgstr "Sense dades"
-#: sc/inc/globstr.hrc:493
+#: sc/inc/globstr.hrc:494
msgctxt "STR_PRINT_PREVIEW_EMPTY_RANGE"
msgid "Print Range Empty"
msgstr "L'interval d'impressió és buit"
-#: sc/inc/globstr.hrc:494
+#: sc/inc/globstr.hrc:495
msgctxt "STR_UNDO_CONDFORMAT"
msgid "Conditional Format"
msgstr "Formatació condicional"
-#: sc/inc/globstr.hrc:495
+#: sc/inc/globstr.hrc:496
msgctxt "STR_UNDO_CONDFORMAT_LIST"
msgid "Conditional Formats"
msgstr "Formats condicionals"
-#: sc/inc/globstr.hrc:496
+#: sc/inc/globstr.hrc:497
msgctxt "STR_UNDO_FORMULA_TO_VALUE"
msgid "Convert Formula To Value"
msgstr "Converteix la fórmula en el valor"
-#: sc/inc/globstr.hrc:497
+#: sc/inc/globstr.hrc:498
msgctxt "STR_UNQUOTED_STRING"
msgid "Strings without quotes are interpreted as column/row labels."
msgstr "Les cadenes sense cometes s'interpreten com a etiquetes de la columna o de la fila."
-#: sc/inc/globstr.hrc:498
+#: sc/inc/globstr.hrc:499
msgctxt "STR_ENTER_VALUE"
msgid "Enter a value!"
msgstr "Introduïu un valor"
-#: sc/inc/globstr.hrc:499
+#: sc/inc/globstr.hrc:500
msgctxt "STR_TABLE_COUNT"
msgid "Sheet %1 of %2"
msgstr "Full %1 de %2"
-#: sc/inc/globstr.hrc:500
+#: sc/inc/globstr.hrc:501
msgctxt "STR_FUNCTIONS_FOUND"
msgid "%1 and %2 more"
msgstr "%1 i %2 més"
-#: sc/inc/globstr.hrc:501
+#: sc/inc/globstr.hrc:502
msgctxt "STR_GENERAL"
msgid "General"
msgstr "General"
-#: sc/inc/globstr.hrc:502
+#: sc/inc/globstr.hrc:503
msgctxt "STR_NUMBER"
msgid "Number"
msgstr "Número"
-#: sc/inc/globstr.hrc:503
+#: sc/inc/globstr.hrc:504
msgctxt "STR_PERCENT"
msgid "Percent"
msgstr "Percentatge"
-#: sc/inc/globstr.hrc:504
+#: sc/inc/globstr.hrc:505
msgctxt "STR_CURRENCY"
msgid "Currency"
msgstr "Moneda"
-#: sc/inc/globstr.hrc:505
+#: sc/inc/globstr.hrc:506
msgctxt "STR_DATE"
msgid "Date"
msgstr "Data"
-#: sc/inc/globstr.hrc:506
+#: sc/inc/globstr.hrc:507
msgctxt "STR_TIME"
msgid "Time"
msgstr "Hora"
-#: sc/inc/globstr.hrc:507
+#: sc/inc/globstr.hrc:508
msgctxt "STR_SCIENTIFIC"
msgid "Scientific"
msgstr "Científic"
-#: sc/inc/globstr.hrc:508
+#: sc/inc/globstr.hrc:509
msgctxt "STR_FRACTION"
msgid "Fraction"
msgstr "Fracció"
-#: sc/inc/globstr.hrc:509
+#: sc/inc/globstr.hrc:510
msgctxt "STR_BOOLEAN_VALUE"
msgid "Boolean Value"
msgstr "Valor booleà"
-#: sc/inc/globstr.hrc:510
+#: sc/inc/globstr.hrc:511
msgctxt "STR_TEXT"
msgid "Text"
msgstr "Text"
-#: sc/inc/globstr.hrc:511
+#: sc/inc/globstr.hrc:512
msgctxt "STR_QUERY_PIVOTTABLE_DELTAB"
msgid "The selected sheet(s) contain source data of related pivot tables that will be lost. Are you sure you want to delete the selected sheet(s)?"
msgstr "Els fulls seleccionats contenen dades que són font per taules dinàmiques i es perdran amb esta acció. Esteu segur que voleu suprimir els fulls seleccionats?"
-#: sc/inc/globstr.hrc:512
+#: sc/inc/globstr.hrc:513
msgctxt "STR_ERR_NAME_INVALID_CELL_REF"
msgid "Invalid name. Reference to a cell, or a range of cells not allowed."
msgstr "El nom no és vàlid. La referència a la cel·la, o l'interval de cel·les, no és permés."
@@ -10487,8 +10492,8 @@ msgstr "Mode"
#: sc/inc/scfuncs.hrc:3010
msgctxt "SC_OPCODE_T_TEST"
-msgid "Mode specifies the number of distribution tails to return. 1= one-tailed, 2 = two-tailed distribution"
-msgstr "El mode indica el nombre de cues de distribució que s'ha de retornar. 1 = d'una cua, 2 = distribució de dues cues."
+msgid "Mode specifies the number of distribution tails to return. 1 = one-tailed, 2 = two-tailed distribution"
+msgstr ""
#: sc/inc/scfuncs.hrc:3011
msgctxt "SC_OPCODE_T_TEST"
@@ -10532,8 +10537,8 @@ msgstr "Mode"
#: sc/inc/scfuncs.hrc:3024
msgctxt "SC_OPCODE_T_TEST_MS"
-msgid "Mode specifies the number of distribution tails to return. 1= one-tailed, 2 = two-tailed distribution"
-msgstr "El mode indica el nombre de cues de distribució que s'ha de retornar. 1 = una cua, 2 = bilateral"
+msgid "Mode specifies the number of distribution tails to return. 1 = one-tailed, 2 = two-tailed distribution"
+msgstr ""
#: sc/inc/scfuncs.hrc:3025
msgctxt "SC_OPCODE_T_TEST_MS"
@@ -18019,22 +18024,22 @@ msgctxt "mergecellsdialog|MergeCellsDialog"
msgid "Merge Cells"
msgstr "Fusiona les cel·les"
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:81
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:84
msgctxt "mergecellsdialog|label"
msgid "Some cells are not empty."
msgstr "Algunes cel·les no són buides."
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:96
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:99
msgctxt "mergecellsdialog|move-cells-radio"
msgid "Move the contents of the hidden cells into the first cell"
msgstr "Mou el contingut de les cel·les ocultes a la primera cel·la"
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:112
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:115
msgctxt "mergecellsdialog|empty-cells-radio"
msgid "Empty the contents of the hidden cells"
msgstr "Buida el contingut de les cel·les ocultes"
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:128
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:131
msgctxt "mergecellsdialog|keep-content-radio"
msgid "Keep the contents of the hidden cells"
msgstr "Conserva el contingut de les cel·les ocultes"
diff --git a/source/ca-valencia/sd/messages.po b/source/ca-valencia/sd/messages.po
index 8e34d84f561..9d200242c1d 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2018-01-29 07:53+0000\n"
"Last-Translator: joamuran <joamuran@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -16,167 +16,167 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1517212409.000000\n"
-#: sd/inc/DocumentRenderer.hrc:29
+#: sd/inc/DocumentRenderer.hrc:27
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Slides"
msgstr "Diapositives"
-#: sd/inc/DocumentRenderer.hrc:30
+#: sd/inc/DocumentRenderer.hrc:28
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Handouts"
msgstr "Prospectes"
-#: sd/inc/DocumentRenderer.hrc:31
+#: sd/inc/DocumentRenderer.hrc:29
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Notes"
msgstr "Notes"
-#: sd/inc/DocumentRenderer.hrc:32
+#: sd/inc/DocumentRenderer.hrc:30
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Outline"
msgstr "Esquema"
-#: sd/inc/DocumentRenderer.hrc:37
+#: sd/inc/DocumentRenderer.hrc:35
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "According to layout"
msgstr "Segons la disposició"
-#: sd/inc/DocumentRenderer.hrc:38
+#: sd/inc/DocumentRenderer.hrc:36
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "1"
msgstr "1"
-#: sd/inc/DocumentRenderer.hrc:39
+#: sd/inc/DocumentRenderer.hrc:37
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "2"
msgstr "2"
-#: sd/inc/DocumentRenderer.hrc:40
+#: sd/inc/DocumentRenderer.hrc:38
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "3"
msgstr "3"
-#: sd/inc/DocumentRenderer.hrc:41
+#: sd/inc/DocumentRenderer.hrc:39
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "4"
msgstr "4"
-#: sd/inc/DocumentRenderer.hrc:42
+#: sd/inc/DocumentRenderer.hrc:40
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "6"
msgstr "6"
-#: sd/inc/DocumentRenderer.hrc:43
+#: sd/inc/DocumentRenderer.hrc:41
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "9"
msgstr "9"
-#: sd/inc/DocumentRenderer.hrc:48
+#: sd/inc/DocumentRenderer.hrc:46
msgctxt "STR_IMPRESS_PRINT_UI_ORDER_CHOICES"
msgid "Left to right, then down"
msgstr "D'esquerra a dreta, i avall"
-#: sd/inc/DocumentRenderer.hrc:49
+#: sd/inc/DocumentRenderer.hrc:47
msgctxt "STR_IMPRESS_PRINT_UI_ORDER_CHOICES"
msgid "Top to bottom, then right"
msgstr "De dalt a baix, i a la dreta"
-#: sd/inc/DocumentRenderer.hrc:54
+#: sd/inc/DocumentRenderer.hrc:52
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Original colors"
msgstr "Colors originals"
-#: sd/inc/DocumentRenderer.hrc:55
+#: sd/inc/DocumentRenderer.hrc:53
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Grayscale"
msgstr "Escala de grisos"
-#: sd/inc/DocumentRenderer.hrc:56
+#: sd/inc/DocumentRenderer.hrc:54
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Black & white"
msgstr "Blanc i negre"
-#: sd/inc/DocumentRenderer.hrc:61
+#: sd/inc/DocumentRenderer.hrc:59
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Original size"
msgstr "Mida original"
-#: sd/inc/DocumentRenderer.hrc:62
+#: sd/inc/DocumentRenderer.hrc:60
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Fit to printable page"
msgstr "Ajusta a la pàgina imprimible"
-#: sd/inc/DocumentRenderer.hrc:63
+#: sd/inc/DocumentRenderer.hrc:61
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Distribute on multiple sheets of paper"
msgstr "Distribueix en diversos fulls de paper"
-#: sd/inc/DocumentRenderer.hrc:64
+#: sd/inc/DocumentRenderer.hrc:62
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Tile sheet of paper with repeated slides"
msgstr "Crea un mosaic al full de paper amb les diapositives repetides"
-#: sd/inc/DocumentRenderer.hrc:69
+#: sd/inc/DocumentRenderer.hrc:67
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Original size"
msgstr "Mida original"
-#: sd/inc/DocumentRenderer.hrc:70
+#: sd/inc/DocumentRenderer.hrc:68
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Fit to printable page"
msgstr "Ajusta a la pàgina imprimible"
-#: sd/inc/DocumentRenderer.hrc:71
+#: sd/inc/DocumentRenderer.hrc:69
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Distribute on multiple sheets of paper"
msgstr "Distribueix en diversos fulls de paper"
-#: sd/inc/DocumentRenderer.hrc:72
+#: sd/inc/DocumentRenderer.hrc:70
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Tile sheet of paper with repeated pages"
msgstr "Crea un mosaic al full de paper amb les pàgines repetides"
-#: sd/inc/DocumentRenderer.hrc:77
+#: sd/inc/DocumentRenderer.hrc:75
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "All pages"
msgstr "Totes les pàgines"
-#: sd/inc/DocumentRenderer.hrc:78
+#: sd/inc/DocumentRenderer.hrc:76
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "Front sides / right pages"
msgstr "Anversos / pàgines de la dreta"
-#: sd/inc/DocumentRenderer.hrc:79
+#: sd/inc/DocumentRenderer.hrc:77
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "Back sides / left pages"
msgstr "Reversos / pàgines de l'esquerra"
-#: sd/inc/DocumentRenderer.hrc:84
+#: sd/inc/DocumentRenderer.hrc:82
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~All slides"
msgstr "~Totes les diapositives"
-#: sd/inc/DocumentRenderer.hrc:85
+#: sd/inc/DocumentRenderer.hrc:83
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~Slides"
msgstr "~Diapositives"
-#: sd/inc/DocumentRenderer.hrc:86
+#: sd/inc/DocumentRenderer.hrc:84
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Se~lection"
msgstr "Se~lecció"
-#: sd/inc/DocumentRenderer.hrc:91
+#: sd/inc/DocumentRenderer.hrc:89
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~All pages"
msgstr "~Totes les pàgines"
-#: sd/inc/DocumentRenderer.hrc:92
+#: sd/inc/DocumentRenderer.hrc:90
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Pa~ges"
msgstr "Pà~gines"
-#: sd/inc/DocumentRenderer.hrc:93
+#: sd/inc/DocumentRenderer.hrc:91
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Se~lection"
msgstr "Se~lecció"
diff --git a/source/ca-valencia/svx/messages.po b/source/ca-valencia/svx/messages.po
index ffa42f212f1..f191fb1170b 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: 2018-05-16 16:53+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2018-01-29 07:53+0000\n"
"Last-Translator: joamuran <joamuran@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5179,8 +5179,8 @@ msgstr "També podeu incloure parts rellevants del vostre perfil d'usuari en l'i
#: svx/uiconfig/ui/safemodedialog.ui:432
msgctxt "safemodedialog|btn_create_zip"
-msgid "Create Zip Archive from User Profile"
-msgstr "Crea un arxiu zip del perfil de l'usuari"
+msgid "Archive User Profile"
+msgstr ""
#: svx/uiconfig/ui/safemodedialog.ui:445
msgctxt "safemodedialog|linkbutton_profile"
@@ -8769,9 +8769,9 @@ msgid "Red"
msgstr "Roig"
#: include/svx/strings.hrc:565
-msgctxt "RID_SVXSTR_COLOR_VIOLET"
-msgid "Violet"
-msgstr "Violeta"
+msgctxt "RID_SVXSTR_COLOR_MAGENTA"
+msgid "Magenta"
+msgstr "Magenta"
#: include/svx/strings.hrc:566
msgctxt "RID_SVXSTR_COLOR_PURPLE"
@@ -8835,9 +8835,9 @@ msgid "Light Red"
msgstr "Roig clar"
#: include/svx/strings.hrc:579
-msgctxt "RID_SVXSTR_COLOR_LIGHTVIOLET"
-msgid "Light Violet"
-msgstr "Violat clar"
+msgctxt "RID_SVXSTR_COLOR_LIGHTMAGENTA"
+msgid "Light Magenta"
+msgstr ""
#: include/svx/strings.hrc:580
msgctxt "RID_SVXSTR_COLOR_LIGHTPURPLE"
@@ -8901,9 +8901,9 @@ msgid "Dark Red"
msgstr "Roig fosc"
#: include/svx/strings.hrc:593
-msgctxt "RID_SVXSTR_COLOR_DARKVIOLET1"
-msgid "Dark Violet"
-msgstr "Violeta fosc"
+msgctxt "RID_SVXSTR_COLOR_DARKMAGENTA"
+msgid "Dark Magenta"
+msgstr ""
#: include/svx/strings.hrc:594
msgctxt "RID_SVXSTR_COLOR_DARKPURPLE"
@@ -8937,55 +8937,55 @@ msgstr "Llima fosc"
#. Elements of the Tonal color palette
#: include/svx/strings.hrc:601
+msgctxt "RID_SVXSTR_COLOR_VIOLET"
+msgid "Violet"
+msgstr "Violeta"
+
+#: include/svx/strings.hrc:602
msgctxt "RID_SVXSTR_COLOR_VIOLET_OUG"
msgid "Violet (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:602
+#: include/svx/strings.hrc:603
msgctxt "RID_SVXSTR_COLOR_BLUE_OUG"
msgid "Blue (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:603
+#: include/svx/strings.hrc:604
msgctxt "RID_SVXSTR_COLOR_AZURE_OUG"
msgid "Azure (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:604
+#: include/svx/strings.hrc:605
msgctxt "RID_SVXSTR_COLOR_SPRINGGREEN_OUG"
msgid "Spring Green (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:605
+#: include/svx/strings.hrc:606
msgctxt "RID_SVXSTR_COLOR_GREEN_OUG"
msgid "Green (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:606
+#: include/svx/strings.hrc:607
msgctxt "RID_SVXSTR_COLOR_CHARTREUSEGREEN_OUG"
msgid "Chartreuse Green (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:607
+#: include/svx/strings.hrc:608
msgctxt "RID_SVXSTR_COLOR_ORANGE_OUG"
msgid "Orange (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:608
+#: include/svx/strings.hrc:609
msgctxt "RID_SVXSTR_COLOR_RED_OUG"
msgid "Red (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:609
+#: include/svx/strings.hrc:610
msgctxt "RID_SVXSTR_COLOR_ROSE_OUG"
msgid "Rose (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:610
-msgctxt "RID_SVXSTR_COLOR_MAGENTA"
-msgid "Magenta"
-msgstr "Magenta"
-
#: include/svx/strings.hrc:611
msgctxt "RID_SVXSTR_COLOR_AZURE"
msgid "Azure"
@@ -12091,13 +12091,13 @@ msgstr "Pics en fletxa cap a la dreta"
#: include/svx/strings.hrc:1273
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_6"
-msgid "Check mark bullets"
-msgstr "Pics en creu de verificació"
+msgid "Cross mark bullets"
+msgstr ""
#: include/svx/strings.hrc:1274
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_7"
-msgid "Tick mark bullets"
-msgstr "Pics en marca de verificació"
+msgid "Check mark bullets"
+msgstr ""
#: include/svx/strings.hrc:1275
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_0"
diff --git a/source/ca-valencia/sw/messages.po b/source/ca-valencia/sw/messages.po
index 7e363b70f5e..fc2d5a0d114 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: 2018-05-22 13:17+0200\n"
+"POT-Creation-Date: 2018-06-12 14:41+0200\n"
"PO-Revision-Date: 2018-01-29 07:53+0000\n"
"Last-Translator: joamuran <joamuran@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1180,13 +1180,13 @@ msgstr "Citació"
#: sw/inc/strings.hrc:172
msgctxt "STR_POOLCOLL_TOX_ILLUSH"
-msgid "Illustration Index Heading"
-msgstr "Encapçalament de l'índex d'il·lustracions"
+msgid "Figure Index Heading"
+msgstr ""
#: sw/inc/strings.hrc:173
msgctxt "STR_POOLCOLL_TOX_ILLUS1"
-msgid "Illustration Index 1"
-msgstr "Índex d'il·lustracions 1"
+msgid "Figure Index 1"
+msgstr ""
#: sw/inc/strings.hrc:174
msgctxt "STR_POOLCOLL_TOX_OBJECTH"
@@ -3590,8 +3590,8 @@ msgstr "Índex d'objectes"
#: sw/inc/strings.hrc:672
msgctxt "STR_TOX_ILL"
-msgid "Illustration Index"
-msgstr "Índex d'il·lustracions"
+msgid "Table of Figures"
+msgstr ""
#: sw/inc/strings.hrc:673
#, c-format
@@ -9244,72 +9244,72 @@ msgctxt "footnotepage|label5"
msgid "Continuation Notice"
msgstr "Avís de continuació"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:49
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:55
msgctxt "footnotesendnotestabpage|ftnntnum"
msgid "_Restart numbering"
msgstr "_Reinicia la numeració"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:91
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:93
msgctxt "footnotesendnotestabpage|ftnoffset_label"
msgid "_Start at:"
msgstr "_Inicia a:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:112
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:111
msgctxt "footnotesendnotestabpage|ftnntnumfmt"
msgid "Custom _format"
msgstr "_Format personalitzat"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:155
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:150
msgctxt "footnotesendnotestabpage|ftnsuffix_label"
msgid "Aft_er:"
msgstr "D_esprés:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:199
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:188
msgctxt "footnotesendnotestabpage|ftnprefix_label"
msgid "Be_fore:"
msgstr "_Abans:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:228
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:212
msgctxt "footnotesendnotestabpage|ftnntattextend"
msgid "Collec_t at end of text"
msgstr "Recull al final del _text"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:252
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:234
msgctxt "footnotesendnotestabpage|label1"
msgid "Footnotes"
msgstr "Notes al peu"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:289
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:271
msgctxt "footnotesendnotestabpage|endntattextend"
msgid "C_ollect at end of section"
msgstr "Recull al final de la _secció"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:315
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:295
msgctxt "footnotesendnotestabpage|endntnum"
msgid "_Restart numbering"
msgstr "_Reinicia la numeració"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:357
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:333
msgctxt "footnotesendnotestabpage|endoffset_label"
msgid "_Start at:"
msgstr "_Inicia a:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:378
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:351
msgctxt "footnotesendnotestabpage|endntnumfmt"
msgid "_Custom format"
msgstr "Format _personalitzat"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:421
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:390
msgctxt "footnotesendnotestabpage|endsuffix_label"
msgid "Aft_er:"
msgstr "D_esprés:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:465
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:428
msgctxt "footnotesendnotestabpage|endprefix_label"
msgid "Be_fore:"
msgstr "_Abans:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:500
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:458
msgctxt "footnotesendnotestabpage|label2"
msgid "Endnotes"
msgstr "Notes al final"
@@ -9339,27 +9339,27 @@ msgctxt "formatsectiondialog|notes"
msgid "Footnotes/Endnotes"
msgstr "Notes al peu/final"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:63
+#: sw/uiconfig/swriter/ui/formattablepage.ui:77
msgctxt "formattablepage|nameft"
msgid "_Name"
msgstr "_Nom"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:79
+#: sw/uiconfig/swriter/ui/formattablepage.ui:91
msgctxt "formattablepage|widthft"
msgid "W_idth"
msgstr "_Amplària"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:110
+#: sw/uiconfig/swriter/ui/formattablepage.ui:120
msgctxt "formattablepage|relwidth"
msgid "Relati_ve"
msgstr "Relati_va"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:155
+#: sw/uiconfig/swriter/ui/formattablepage.ui:160
msgctxt "formattablepage|label45"
msgid "Properties"
msgstr "Propietats"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:194
+#: sw/uiconfig/swriter/ui/formattablepage.ui:195
msgctxt "formattablepage|leftft"
msgid "Lef_t"
msgstr "Esquer_ra"
@@ -9369,62 +9369,62 @@ msgctxt "formattablepage|rightft"
msgid "Ri_ght"
msgstr "Dre_ta"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:228
+#: sw/uiconfig/swriter/ui/formattablepage.ui:226
msgctxt "formattablepage|aboveft"
msgid "_Above"
msgstr "_Damunt"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:245
+#: sw/uiconfig/swriter/ui/formattablepage.ui:241
msgctxt "formattablepage|belowft"
msgid "_Below"
msgstr "D_avall"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:320
+#: sw/uiconfig/swriter/ui/formattablepage.ui:311
msgctxt "formattablepage|label46"
msgid "Spacing"
msgstr "Espaiat"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:362
+#: sw/uiconfig/swriter/ui/formattablepage.ui:349
msgctxt "formattablepage|full"
msgid "A_utomatic"
msgstr "Au_tomàtica"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:380
+#: sw/uiconfig/swriter/ui/formattablepage.ui:365
msgctxt "formattablepage|left"
msgid "_Left"
msgstr "_Esquerra"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:398
+#: sw/uiconfig/swriter/ui/formattablepage.ui:381
msgctxt "formattablepage|fromleft"
msgid "_From left"
msgstr "_Des de l'esquerra"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:416
+#: sw/uiconfig/swriter/ui/formattablepage.ui:397
msgctxt "formattablepage|right"
msgid "R_ight"
msgstr "D_reta"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:435
+#: sw/uiconfig/swriter/ui/formattablepage.ui:413
msgctxt "formattablepage|center"
msgid "_Center"
msgstr "_Centrat"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:453
+#: sw/uiconfig/swriter/ui/formattablepage.ui:429
msgctxt "formattablepage|free"
msgid "_Manual"
msgstr "_Manual"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:478
+#: sw/uiconfig/swriter/ui/formattablepage.ui:452
msgctxt "formattablepage|label43"
msgid "Alignment"
msgstr "Alineació"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:522
+#: sw/uiconfig/swriter/ui/formattablepage.ui:491
msgctxt "formattablepage|label53"
msgid "Text _direction"
msgstr "_Direcció del text"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:553
+#: sw/uiconfig/swriter/ui/formattablepage.ui:519
msgctxt "formattablepage|label44"
msgid "Properties "
msgstr "Propietats "
@@ -9779,22 +9779,27 @@ msgctxt "headerfootermenu|insert_pagenumber"
msgid "Insert Page Number"
msgstr ""
-#: sw/uiconfig/swriter/ui/indentpage.ui:52
+#: sw/uiconfig/swriter/ui/headerfootermenu.ui:42
+msgctxt "headerfootermenu|insert_pagecount"
+msgid "Insert Page Count"
+msgstr ""
+
+#: sw/uiconfig/swriter/ui/indentpage.ui:57
msgctxt "indentpage|label1"
msgid "_Before section"
msgstr "_Abans de la secció"
-#: sw/uiconfig/swriter/ui/indentpage.ui:67
+#: sw/uiconfig/swriter/ui/indentpage.ui:71
msgctxt "indentpage|label3"
msgid "_After section"
msgstr "_Després de la secció"
-#: sw/uiconfig/swriter/ui/indentpage.ui:113
+#: sw/uiconfig/swriter/ui/indentpage.ui:115
msgctxt "indentpage|label2"
msgid "Indent"
msgstr "Sagnat"
-#: sw/uiconfig/swriter/ui/indentpage.ui:142
+#: sw/uiconfig/swriter/ui/indentpage.ui:155
msgctxt "indentpage|preview-atkobject"
msgid "Example"
msgstr "Exemple"
@@ -13285,8 +13290,8 @@ msgstr "Protegeix el formulari"
#: sw/uiconfig/swriter/ui/optcompatpage.ui:68
msgctxt "optcompatpage|format"
-msgid "MS Word-compatible trailing blanks"
-msgstr "Espais en blanc compatibles amb el MS Word"
+msgid "Word-compatible trailing blanks"
+msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:69
msgctxt "optcompatpage|format"
@@ -13295,7 +13300,7 @@ msgstr "Admet línies en blanc el fons de fitxers PDF per compatibilitat amb doc
#: sw/uiconfig/swriter/ui/optcompatpage.ui:70
msgctxt "optcompatpage|format"
-msgid "A database field (e.g., MailMerge) with empty value hides its paragraph"
+msgid "Hide paragraphs of database fields (e.g., mail merge) with an empty value"
msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:71
@@ -15979,122 +15984,122 @@ msgctxt "tableproperties|background"
msgid "Background"
msgstr "Fons"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:25
-msgctxt "tabletextflowpage|liststore1"
-msgid "Horizontal"
-msgstr "Horitzontal"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:29
-msgctxt "tabletextflowpage|liststore1"
-msgid "Vertical"
-msgstr "Vertical"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:33
-msgctxt "tabletextflowpage|liststore1"
-msgid "Use superordinate object settings"
-msgstr "Utilitza els paràmetres de categories superordinades"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:47
-msgctxt "tabletextflowpage|liststore2"
-msgid "Top"
-msgstr "Superior"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:51
-msgctxt "tabletextflowpage|liststore2"
-msgid "Centered"
-msgstr "Centrat"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:55
-msgctxt "tabletextflowpage|liststore2"
-msgid "Bottom"
-msgstr "Inferior"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:97
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:53
msgctxt "tabletextflowpage|break"
msgid "_Break"
msgstr "_Salt"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:112
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:68
msgctxt "tabletextflowpage|page"
msgid "_Page"
msgstr "_Pàgina"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:132
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:87
msgctxt "tabletextflowpage|column"
msgid "Col_umn"
msgstr "_Columna"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:151
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:106
msgctxt "tabletextflowpage|before"
msgid "Be_fore"
msgstr "_Abans"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:171
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:125
msgctxt "tabletextflowpage|after"
msgid "_After"
msgstr "_Després"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:203
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:158
msgctxt "tabletextflowpage|pagestyle"
msgid "With Page St_yle"
msgstr "Amb est_il de pàgina"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:224
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:177
msgctxt "tabletextflowpage|pagenoft"
msgid "Page _number"
msgstr "Nú_mero de pàgina"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:257
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:213
msgctxt "tabletextflowpage|pagestylelb-atkobject"
msgid "With Page Style"
msgstr "Amb l'estil de pàgina"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:274
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:230
msgctxt "tabletextflowpage|split"
msgid "Allow _table to split across pages and columns"
msgstr "Permet que la _taula es dividisca al final de pàgines i columnes"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:289
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:245
msgctxt "tabletextflowpage|splitrow"
msgid "Allow row to break a_cross pages and columns"
msgstr "Permet que la fila es partisca al final de pàgines i _columnes"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:306
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:262
msgctxt "tabletextflowpage|keep"
msgid "_Keep with next paragraph"
msgstr "_Conserva amb el paràgraf següent"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:328
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:284
msgctxt "tabletextflowpage|label40"
msgid "Text _orientation"
msgstr "_Orientació del text"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:361
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:298
+msgctxt "tabletextflowpage|liststore1"
+msgid "Horizontal"
+msgstr "Horitzontal"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:299
+msgctxt "tabletextflowpage|liststore1"
+msgid "Vertical"
+msgstr "Vertical"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:300
+msgctxt "tabletextflowpage|liststore1"
+msgid "Use superordinate object settings"
+msgstr "Utilitza els paràmetres de categories superordinades"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:321
msgctxt "tabletextflowpage|headline"
msgid "R_epeat heading"
msgstr "R_epeteix l'encapçalament"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:383
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:343
msgctxt "tabletextflowpage|label38"
msgid "The first "
msgstr "El primer "
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:396
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:356
msgctxt "tabletextflowpage|label39"
msgid "rows"
msgstr "files"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:434
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:395
msgctxt "tabletextflowpage|label35"
msgid "Text Flow"
msgstr "Flux del text"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:467
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:428
msgctxt "tabletextflowpage|label41"
msgid "_Vertical alignment"
msgstr "Alineació _vertical"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:495
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:442
+msgctxt "tabletextflowpage|liststore2"
+msgid "Top"
+msgstr "Superior"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:443
+msgctxt "tabletextflowpage|liststore2"
+msgid "Centered"
+msgstr "Centrat"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:444
+msgctxt "tabletextflowpage|liststore2"
+msgid "Bottom"
+msgstr "Inferior"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:460
msgctxt "tabletextflowpage|label36"
msgid "Alignment"
msgstr "Alineació"
@@ -16876,8 +16881,8 @@ msgstr "Índex alfabètic"
#: sw/uiconfig/swriter/ui/tocindexpage.ui:58
msgctxt "tocindexpage|liststore1"
-msgid "Illustration Index"
-msgstr "Índex d'il·lustracions"
+msgid "Table of Figures"
+msgstr ""
#: sw/uiconfig/swriter/ui/tocindexpage.ui:62
msgctxt "tocindexpage|liststore1"
diff --git a/source/ca-valencia/writerperfect/messages.po b/source/ca-valencia/writerperfect/messages.po
index 0a64f787652..054eb8e8095 100644
--- a/source/ca-valencia/writerperfect/messages.po
+++ b/source/ca-valencia/writerperfect/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-16 16:54+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2018-01-15 13:24+0000\n"
"Last-Translator: joamuran <joamuran@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -68,97 +68,97 @@ msgctxt "exportepub|generalft"
msgid "General"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:122
+#: writerperfect/uiconfig/ui/exportepub.ui:121
msgctxt "exportepub|versionft"
msgid "Version:"
msgstr "Versió:"
-#: writerperfect/uiconfig/ui/exportepub.ui:139
+#: writerperfect/uiconfig/ui/exportepub.ui:138
msgctxt "exportepub|epub3"
msgid "EPUB 3.0"
msgstr "EPUB 3.0"
-#: writerperfect/uiconfig/ui/exportepub.ui:140
+#: writerperfect/uiconfig/ui/exportepub.ui:139
msgctxt "exportepub|epub2"
msgid "EPUB 2.0"
msgstr "EPUB 2.0"
-#: writerperfect/uiconfig/ui/exportepub.ui:175
+#: writerperfect/uiconfig/ui/exportepub.ui:174
msgctxt "exportepub|splitft"
msgid "Split method:"
msgstr "Mètode de divisió:"
-#: writerperfect/uiconfig/ui/exportepub.ui:192
+#: writerperfect/uiconfig/ui/exportepub.ui:191
msgctxt "exportepub|splitpage"
msgid "Page break"
msgstr "Salt de pàgina"
-#: writerperfect/uiconfig/ui/exportepub.ui:193
+#: writerperfect/uiconfig/ui/exportepub.ui:192
msgctxt "exportepub|splitheading"
msgid "Heading"
msgstr "Encapçalament"
-#: writerperfect/uiconfig/ui/exportepub.ui:228
+#: writerperfect/uiconfig/ui/exportepub.ui:227
msgctxt "exportepub|layoutft"
msgid "Layout method:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:245
+#: writerperfect/uiconfig/ui/exportepub.ui:244
msgctxt "exportepub|layoutreflowable"
msgid "Reflowable"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:246
+#: writerperfect/uiconfig/ui/exportepub.ui:245
msgctxt "exportepub|layoutfixed"
msgid "Fixed"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:281
+#: writerperfect/uiconfig/ui/exportepub.ui:280
msgctxt "exportepub|coverimageft"
msgid "Custom cover image:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:311
+#: writerperfect/uiconfig/ui/exportepub.ui:310
msgctxt "exportepub|coverbutton"
msgid "Browse..."
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:355
+#: writerperfect/uiconfig/ui/exportepub.ui:354
msgctxt "exportepub|mediadirft"
msgid "Custom media directory:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:385
+#: writerperfect/uiconfig/ui/exportepub.ui:384
msgctxt "exportepub|mediabutton"
msgid "Browse..."
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:429
+#: writerperfect/uiconfig/ui/exportepub.ui:428
msgctxt "exportepub|metadataft"
msgid "Metadata"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:470
+#: writerperfect/uiconfig/ui/exportepub.ui:468
msgctxt "exportepub|identifierft"
msgid "Identifier:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:485
+#: writerperfect/uiconfig/ui/exportepub.ui:483
msgctxt "exportepub|titleft"
msgid "Title:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:511
+#: writerperfect/uiconfig/ui/exportepub.ui:509
msgctxt "exportepub|authorft"
msgid "Author:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:537
+#: writerperfect/uiconfig/ui/exportepub.ui:535
msgctxt "exportepub|languageft"
msgid "Language:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:563
+#: writerperfect/uiconfig/ui/exportepub.ui:561
msgctxt "exportepub|dateft"
msgid "Date:"
msgstr ""
diff --git a/source/ca/cui/messages.po b/source/ca/cui/messages.po
index 0dcc838bd04..c5079441187 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2018-05-14 07:49+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -9872,97 +9872,97 @@ msgctxt "positionsizedialog|PositionAndSizeDialog"
msgid "Position and Size"
msgstr "Posició i mida"
-#: cui/uiconfig/ui/positionsizedialog.ui:107
+#: cui/uiconfig/ui/positionsizedialog.ui:136
msgctxt "positionsizedialog|RID_SVXPAGE_POSITION_SIZE"
msgid "Position and Size"
msgstr "Posició i mida"
-#: cui/uiconfig/ui/positionsizedialog.ui:129
+#: cui/uiconfig/ui/positionsizedialog.ui:182
msgctxt "positionsizedialog|RID_SVXPAGE_SWPOSSIZE"
msgid "Position and Size"
msgstr "Posició i mida"
-#: cui/uiconfig/ui/positionsizedialog.ui:152
+#: cui/uiconfig/ui/positionsizedialog.ui:229
msgctxt "positionsizedialog|RID_SVXPAGE_ANGLE"
msgid "Rotation"
msgstr "Gir"
-#: cui/uiconfig/ui/positionsizedialog.ui:175
+#: cui/uiconfig/ui/positionsizedialog.ui:276
msgctxt "positionsizedialog|RID_SVXPAGE_SLANT"
msgid "Slant & Corner Radius"
msgstr "Inclinació i radi de la cantonada"
-#: cui/uiconfig/ui/possizetabpage.ui:40
+#: cui/uiconfig/ui/possizetabpage.ui:61
msgctxt "possizetabpage|FT_POS_X"
msgid "Position _X:"
msgstr "Posició _X:"
-#: cui/uiconfig/ui/possizetabpage.ui:56
+#: cui/uiconfig/ui/possizetabpage.ui:75
msgctxt "possizetabpage|FT_POS_Y"
msgid "Position _Y:"
msgstr "Posició _Y:"
-#: cui/uiconfig/ui/possizetabpage.ui:110
+#: cui/uiconfig/ui/possizetabpage.ui:128
msgctxt "possizetabpage|FT_POSREFERENCE"
msgid "_Base point:"
msgstr "Punt _base:"
-#: cui/uiconfig/ui/possizetabpage.ui:148
+#: cui/uiconfig/ui/possizetabpage.ui:182
msgctxt "possizetabpage|label1"
msgid "Position"
msgstr "Posició"
-#: cui/uiconfig/ui/possizetabpage.ui:190
+#: cui/uiconfig/ui/possizetabpage.ui:224
msgctxt "possizetabpage|FT_WIDTH"
msgid "Wi_dth:"
msgstr "Ampla_da:"
-#: cui/uiconfig/ui/possizetabpage.ui:206
+#: cui/uiconfig/ui/possizetabpage.ui:238
msgctxt "possizetabpage|FT_HEIGHT"
msgid "H_eight:"
msgstr "A_lçada:"
-#: cui/uiconfig/ui/possizetabpage.ui:247
+#: cui/uiconfig/ui/possizetabpage.ui:276
msgctxt "possizetabpage|CBX_SCALE"
msgid "_Keep ratio"
msgstr "_Conserva la relació"
-#: cui/uiconfig/ui/possizetabpage.ui:279
+#: cui/uiconfig/ui/possizetabpage.ui:307
msgctxt "possizetabpage|FT_SIZEREFERENCE"
msgid "Base _point:"
msgstr "_Punt base:"
-#: cui/uiconfig/ui/possizetabpage.ui:317
+#: cui/uiconfig/ui/possizetabpage.ui:361
msgctxt "possizetabpage|label2"
msgid "Size"
msgstr "Mida"
-#: cui/uiconfig/ui/possizetabpage.ui:356
+#: cui/uiconfig/ui/possizetabpage.ui:401
msgctxt "possizetabpage|TSB_POSPROTECT"
msgid "Positio_n"
msgstr "_Posició"
-#: cui/uiconfig/ui/possizetabpage.ui:373
+#: cui/uiconfig/ui/possizetabpage.ui:418
msgctxt "possizetabpage|TSB_SIZEPROTECT"
msgid "_Size"
msgstr "_Mida"
-#: cui/uiconfig/ui/possizetabpage.ui:397
+#: cui/uiconfig/ui/possizetabpage.ui:441
msgctxt "possizetabpage|label3"
msgid "Protect"
msgstr "Protegeix"
-#: cui/uiconfig/ui/possizetabpage.ui:430
+#: cui/uiconfig/ui/possizetabpage.ui:475
msgctxt "possizetabpage|TSB_AUTOGROW_WIDTH"
msgid "_Fit width to text"
msgstr "_Ajusta l'amplada al text"
-#: cui/uiconfig/ui/possizetabpage.ui:447
+#: cui/uiconfig/ui/possizetabpage.ui:492
msgctxt "possizetabpage|TSB_AUTOGROW_HEIGHT"
msgid "Fit _height to text"
msgstr "Aj_usta l'alçada al text"
-#: cui/uiconfig/ui/possizetabpage.ui:471
+#: cui/uiconfig/ui/possizetabpage.ui:515
msgctxt "possizetabpage|label4"
msgid "Adapt"
msgstr "Adapta"
@@ -10162,47 +10162,47 @@ msgctxt "recordnumberdialog|label2"
msgid "go to record"
msgstr "vés al registre"
-#: cui/uiconfig/ui/rotationtabpage.ui:52
+#: cui/uiconfig/ui/rotationtabpage.ui:56
msgctxt "rotationtabpage|FT_POS_X"
msgid "Position _X:"
msgstr "Posició _X:"
-#: cui/uiconfig/ui/rotationtabpage.ui:66
+#: cui/uiconfig/ui/rotationtabpage.ui:70
msgctxt "rotationtabpage|FT_POS_Y"
msgid "Position _Y:"
msgstr "Posició _Y:"
-#: cui/uiconfig/ui/rotationtabpage.ui:116
+#: cui/uiconfig/ui/rotationtabpage.ui:123
msgctxt "rotationtabpage|FT_POSPRESETS"
msgid "_Default settings:"
msgstr "Paràmetres per _defecte:"
-#: cui/uiconfig/ui/rotationtabpage.ui:130
+#: cui/uiconfig/ui/rotationtabpage.ui:151
msgctxt "rotationtabpage|CTL_RECT|tooltip_text"
msgid "Rotation point"
msgstr "Punt de rotació"
-#: cui/uiconfig/ui/rotationtabpage.ui:155
+#: cui/uiconfig/ui/rotationtabpage.ui:178
msgctxt "rotationtabpage|label1"
msgid "Pivot Point"
msgstr "Punt de gir"
-#: cui/uiconfig/ui/rotationtabpage.ui:197
+#: cui/uiconfig/ui/rotationtabpage.ui:220
msgctxt "rotationtabpage|FT_ANGLE"
msgid "_Angle:"
msgstr "_Angle:"
-#: cui/uiconfig/ui/rotationtabpage.ui:238
+#: cui/uiconfig/ui/rotationtabpage.ui:263
msgctxt "rotationtabpage|FT_ANGLEPRESETS"
msgid "Default _settings:"
msgstr "Paràmetre_s per defecte:"
-#: cui/uiconfig/ui/rotationtabpage.ui:252
+#: cui/uiconfig/ui/rotationtabpage.ui:287
msgctxt "rotationtabpage|CTL_ANGLE|tooltip_text"
msgid "Rotation Angle"
msgstr "Angle de rotació"
-#: cui/uiconfig/ui/rotationtabpage.ui:277
+#: cui/uiconfig/ui/rotationtabpage.ui:314
msgctxt "rotationtabpage|label2"
msgid "Rotation Angle"
msgstr "Angle de rotació"
@@ -10582,52 +10582,52 @@ msgctxt "similaritysearchdialog|relaxbox"
msgid "_Combine"
msgstr "_Combina"
-#: cui/uiconfig/ui/slantcornertabpage.ui:50
+#: cui/uiconfig/ui/slantcornertabpage.ui:70
msgctxt "slantcornertabpage|label5"
msgid "_X:"
msgstr "_X:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:88
+#: cui/uiconfig/ui/slantcornertabpage.ui:110
msgctxt "slantcornertabpage|label6"
msgid "_Y:"
msgstr "_Y:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:125
+#: cui/uiconfig/ui/slantcornertabpage.ui:149
msgctxt "slantcornertabpage|label3"
msgid "Control Point 1"
msgstr "Punt de control 1"
-#: cui/uiconfig/ui/slantcornertabpage.ui:159
+#: cui/uiconfig/ui/slantcornertabpage.ui:183
msgctxt "slantcornertabpage|FT_RADIUS"
msgid "_Radius:"
msgstr "_Radi:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:189
+#: cui/uiconfig/ui/slantcornertabpage.ui:214
msgctxt "slantcornertabpage|label1"
msgid "Corner Radius"
msgstr "Radi de la cantonada"
-#: cui/uiconfig/ui/slantcornertabpage.ui:223
+#: cui/uiconfig/ui/slantcornertabpage.ui:248
msgctxt "slantcornertabpage|FT_ANGLE"
msgid "_Angle:"
msgstr "_Angle:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:253
+#: cui/uiconfig/ui/slantcornertabpage.ui:279
msgctxt "slantcornertabpage|label2"
msgid "Slant"
msgstr "Inclinació"
-#: cui/uiconfig/ui/slantcornertabpage.ui:294
+#: cui/uiconfig/ui/slantcornertabpage.ui:320
msgctxt "slantcornertabpage|label4"
msgid "_X:"
msgstr "_X:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:332
+#: cui/uiconfig/ui/slantcornertabpage.ui:360
msgctxt "slantcornertabpage|label7"
msgid "_Y:"
msgstr "_Y:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:369
+#: cui/uiconfig/ui/slantcornertabpage.ui:399
msgctxt "slantcornertabpage|label8"
msgid "Control Point 2"
msgstr "Punt de control 2"
@@ -10907,112 +10907,112 @@ msgctxt "storedwebconnectiondialog|change"
msgid "_Change Password..."
msgstr "_Canvia la contrasenya..."
-#: cui/uiconfig/ui/swpossizepage.ui:74
+#: cui/uiconfig/ui/swpossizepage.ui:85
msgctxt "swpossizepage|widthft"
msgid "_Width:"
msgstr "_Amplada:"
-#: cui/uiconfig/ui/swpossizepage.ui:111
+#: cui/uiconfig/ui/swpossizepage.ui:123
msgctxt "swpossizepage|heightft"
msgid "H_eight:"
msgstr "A_lçada:"
-#: cui/uiconfig/ui/swpossizepage.ui:128
+#: cui/uiconfig/ui/swpossizepage.ui:141
msgctxt "swpossizepage|ratio"
msgid "_Keep ratio"
msgstr "_Conserva la relació"
-#: cui/uiconfig/ui/swpossizepage.ui:149
+#: cui/uiconfig/ui/swpossizepage.ui:162
msgctxt "swpossizepage|label2"
msgid "Size"
msgstr "Mida"
-#: cui/uiconfig/ui/swpossizepage.ui:205
+#: cui/uiconfig/ui/swpossizepage.ui:218
msgctxt "swpossizepage|topage"
msgid "To _page"
msgstr "A la _pàgina"
-#: cui/uiconfig/ui/swpossizepage.ui:222
+#: cui/uiconfig/ui/swpossizepage.ui:234
msgctxt "swpossizepage|topara"
msgid "To paragrap_h"
msgstr "al paràgra_f"
-#: cui/uiconfig/ui/swpossizepage.ui:238
+#: cui/uiconfig/ui/swpossizepage.ui:250
msgctxt "swpossizepage|tochar"
msgid "To cha_racter"
msgstr "Al ca_ràcter"
-#: cui/uiconfig/ui/swpossizepage.ui:254
+#: cui/uiconfig/ui/swpossizepage.ui:266
msgctxt "swpossizepage|aschar"
msgid "_As character"
msgstr "Com _a caràcter"
-#: cui/uiconfig/ui/swpossizepage.ui:270
+#: cui/uiconfig/ui/swpossizepage.ui:282
msgctxt "swpossizepage|toframe"
msgid "To _frame"
msgstr "Al _marc"
-#: cui/uiconfig/ui/swpossizepage.ui:292
+#: cui/uiconfig/ui/swpossizepage.ui:304
msgctxt "swpossizepage|label1"
msgid "Anchor"
msgstr "Àncora"
-#: cui/uiconfig/ui/swpossizepage.ui:333
+#: cui/uiconfig/ui/swpossizepage.ui:344
msgctxt "swpossizepage|horiposft"
msgid "Hori_zontal:"
msgstr "Horit_zontal:"
-#: cui/uiconfig/ui/swpossizepage.ui:347
+#: cui/uiconfig/ui/swpossizepage.ui:358
msgctxt "swpossizepage|horibyft"
msgid "b_y:"
msgstr "_per:"
-#: cui/uiconfig/ui/swpossizepage.ui:361
+#: cui/uiconfig/ui/swpossizepage.ui:372
msgctxt "swpossizepage|vertbyft"
msgid "_by:"
msgstr "pe_r:"
-#: cui/uiconfig/ui/swpossizepage.ui:375
+#: cui/uiconfig/ui/swpossizepage.ui:386
msgctxt "swpossizepage|horitoft"
msgid "_to:"
msgstr "_a:"
-#: cui/uiconfig/ui/swpossizepage.ui:421
+#: cui/uiconfig/ui/swpossizepage.ui:433
msgctxt "swpossizepage|vertposft"
msgid "_Vertical:"
msgstr "_Vertical:"
-#: cui/uiconfig/ui/swpossizepage.ui:457
+#: cui/uiconfig/ui/swpossizepage.ui:470
msgctxt "swpossizepage|verttoft"
msgid "t_o:"
msgstr "_a:"
-#: cui/uiconfig/ui/swpossizepage.ui:478
+#: cui/uiconfig/ui/swpossizepage.ui:492
msgctxt "swpossizepage|mirror"
msgid "_Mirror on even pages"
msgstr "_Rèplica en pàgines parelles"
-#: cui/uiconfig/ui/swpossizepage.ui:495
+#: cui/uiconfig/ui/swpossizepage.ui:509
msgctxt "swpossizepage|followtextflow"
msgid "Follow te_xt flow"
msgstr "Seguei_x el flux del text"
-#: cui/uiconfig/ui/swpossizepage.ui:518
+#: cui/uiconfig/ui/swpossizepage.ui:532
msgctxt "swpossizepage|label11"
msgid "Position"
msgstr "Posició"
-#: cui/uiconfig/ui/swpossizepage.ui:549
+#: cui/uiconfig/ui/swpossizepage.ui:563
msgctxt "swpossizepage|pos"
msgid "Positio_n"
msgstr "_Posició"
-#: cui/uiconfig/ui/swpossizepage.ui:565
+#: cui/uiconfig/ui/swpossizepage.ui:579
msgctxt "swpossizepage|size"
msgid "_Size"
msgstr "_Mida"
-#: cui/uiconfig/ui/swpossizepage.ui:587
+#: cui/uiconfig/ui/swpossizepage.ui:601
msgctxt "swpossizepage|label3"
msgid "Protect"
msgstr "Protegeix"
@@ -11202,12 +11202,12 @@ msgctxt "textattrtabpage|label2"
msgid "Spacing to Borders"
msgstr "Distància a les vores"
-#: cui/uiconfig/ui/textattrtabpage.ui:425
+#: cui/uiconfig/ui/textattrtabpage.ui:423
msgctxt "textattrtabpage|TSB_FULL_WIDTH"
msgid "Full _width"
msgstr "Tota l'a_mplada"
-#: cui/uiconfig/ui/textattrtabpage.ui:448
+#: cui/uiconfig/ui/textattrtabpage.ui:446
msgctxt "textattrtabpage|label3"
msgid "Text Anchor"
msgstr "Àncora de text"
diff --git a/source/ca/filter/source/config/fragments/filters.po b/source/ca/filter/source/config/fragments/filters.po
index 54c57fcc880..ebc0834d77a 100644
--- a/source/ca/filter/source/config/fragments/filters.po
+++ b/source/ca/filter/source/config/fragments/filters.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Libreoffice42\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-16 16:54+0200\n"
-"PO-Revision-Date: 2018-05-18 08:52+0000\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
+"PO-Revision-Date: 2018-06-05 07:44+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: Softcatalà\n"
"Language: ca\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1526633527.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1528184648.000000\n"
#: ADO_rowset_XML.xcu
msgctxt ""
@@ -463,8 +463,8 @@ msgctxt ""
"MS Word 2003 XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Word 2003 XML"
-msgstr "XML del Microsoft Word 2003"
+msgid "Word 2003 XML"
+msgstr "XML del Word 2003"
#: MS_Word_2007_XML.xcu
msgctxt ""
@@ -1282,8 +1282,8 @@ msgctxt ""
"Calc MS Excel 2007 VBA XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Excel 2007-2016 XML (macro enabled)"
-msgstr "XML del Microsoft Excel 2007-2016 (amb les macros habilitades)"
+msgid "Excel 2007–2019 (macro-enabled)"
+msgstr "Excel 2007–2019 (macros activades)"
#: calc_MS_Excel_2007_XML.xcu
msgctxt ""
diff --git a/source/ca/filter/source/config/fragments/types.po b/source/ca/filter/source/config/fragments/types.po
index b0736297254..00d1e39223c 100644
--- a/source/ca/filter/source/config/fragments/types.po
+++ b/source/ca/filter/source/config/fragments/types.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-08 15:11+0200\n"
-"PO-Revision-Date: 2018-05-14 07:54+0000\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
+"PO-Revision-Date: 2018-06-05 07:44+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ca\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1526284446.000000\n"
+"X-POOTLE-MTIME: 1528184656.000000\n"
#: MS_Excel_2007_Binary.xcu
msgctxt ""
@@ -292,8 +292,8 @@ msgctxt ""
"writer_MS_Word_2003_XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Word 2003 XML"
-msgstr "XML del Microsoft Word 2003"
+msgid "Word 2003 XML"
+msgstr "XML de Word 2003"
#: writer_MS_Word_2007_XML.xcu
msgctxt ""
diff --git a/source/ca/fpicker/messages.po b/source/ca/fpicker/messages.po
index a227246e6be..cf2f0baacd2 100644
--- a/source/ca/fpicker/messages.po
+++ b/source/ca/fpicker/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-22 13:16+0200\n"
-"PO-Revision-Date: 2018-03-06 08:00+0000\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
+"PO-Revision-Date: 2018-06-05 07:44+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ca\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1520323219.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1528184674.000000\n"
#: include/fpicker/strings.hrc:14
msgctxt "STR_SVT_FILEPICKER_AUTO_EXTENSION"
@@ -272,13 +272,13 @@ msgstr "Xifra amb clau GPG"
#: fpicker/uiconfig/ui/foldernamedialog.ui:8
msgctxt "foldernamedialog|FolderNameDialog"
-msgid "Folder Name ?"
-msgstr "Nom de la carpeta?"
+msgid "Folder Name"
+msgstr "Nom de la carpeta"
#: fpicker/uiconfig/ui/foldernamedialog.ui:91
msgctxt "foldernamedialog|label2"
-msgid "Na_me"
-msgstr "No_m"
+msgid "Na_me:"
+msgstr "No_m:"
#: fpicker/uiconfig/ui/foldernamedialog.ui:122
msgctxt "foldernamedialog|label1"
diff --git a/source/ca/helpcontent2/source/text/sbasic/guide.po b/source/ca/helpcontent2/source/text/sbasic/guide.po
index 30f086a7ef3..b0780004d49 100644
--- a/source/ca/helpcontent2/source/text/sbasic/guide.po
+++ b/source/ca/helpcontent2/source/text/sbasic/guide.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2018-04-25 13:24+0200\n"
-"PO-Revision-Date: 2018-05-23 10:09+0000\n"
-"Last-Translator: Joan Montané <joan@montane.cat>\n"
+"PO-Revision-Date: 2018-06-12 08:09+0000\n"
+"Last-Translator: AssumptaAn <assumptaanglada@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ca\n"
"MIME-Version: 1.0\n"
@@ -15,7 +15,7 @@ msgstr ""
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
"X-Language: ca\n"
-"X-POOTLE-MTIME: 1527070169.000000\n"
+"X-POOTLE-MTIME: 1528790947.000000\n"
#: access2base.xhp
msgctxt ""
@@ -135,7 +135,7 @@ msgctxt ""
"par_idA2B014\n"
"help.text"
msgid "in addition"
-msgstr ""
+msgstr "a més"
#: access2base.xhp
msgctxt ""
@@ -143,7 +143,7 @@ msgctxt ""
"par_idA2B015\n"
"help.text"
msgid "a consistent errors and exceptions handler,"
-msgstr ""
+msgstr "un gestor d'errors i excepcions compatible,"
#: access2base.xhp
msgctxt ""
@@ -151,7 +151,7 @@ msgctxt ""
"par_idA2B016\n"
"help.text"
msgid "facilities for programming form, dialog and control <emph>events</emph> and"
-msgstr ""
+msgstr "facilitats per programar <emph>esdeveniments</emph> per a formularis, diàlegs i controls"
#: access2base.xhp
msgctxt ""
@@ -159,7 +159,7 @@ msgctxt ""
"par_idA2B017\n"
"help.text"
msgid "the support of both embedded forms and standalone (Writer) forms."
-msgstr ""
+msgstr "la compatibilitat amb formularis incrustats i independents (Writer)."
#: access2base.xhp
msgctxt ""
diff --git a/source/ca/helpcontent2/source/text/sbasic/shared/01.po b/source/ca/helpcontent2/source/text/sbasic/shared/01.po
index 646cdff1367..75f41a7e50c 100644
--- a/source/ca/helpcontent2/source/text/sbasic/shared/01.po
+++ b/source/ca/helpcontent2/source/text/sbasic/shared/01.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2018-05-16 16:54+0200\n"
-"PO-Revision-Date: 2018-05-23 10:09+0000\n"
+"PO-Revision-Date: 2018-05-28 12:32+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ca\n"
@@ -15,7 +15,7 @@ msgstr ""
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
"X-Language: ca\n"
-"X-POOTLE-MTIME: 1527070158.000000\n"
+"X-POOTLE-MTIME: 1527510757.000000\n"
#: 06130000.xhp
msgctxt ""
@@ -63,7 +63,7 @@ msgctxt ""
"par_id3151116\n"
"help.text"
msgid "<ahelp hid=\"modules/BasicIDE/ui/basicmacrodialog/macronameedit\">Displays the name of the selected macro. To create or to change the name of a macro, enter a name here.</ahelp>"
-msgstr "<ahelp hid=\"modules/BasicIDE/ui/basicmacrodialog/macronameedit\">Mostra el nom de la macro seleccionada. Per crear o per canviar el nom d'una macro, introduïu un nom aquí.</ahelp>"
+msgstr "<ahelp hid=\"modules/BasicIDE/ui/basicmacrodialog/macronameedit\">Mostra el nom de la macro seleccionada. Per a crear o canviar el nom d'una macro, introduïu un nom aquí.</ahelp>"
#: 06130000.xhp
msgctxt ""
@@ -151,7 +151,7 @@ msgctxt ""
"par_id3149124\n"
"help.text"
msgid "To create a new macro, select the \"Standard\" module in the <emph>Macro from</emph> list, and then click <emph>New</emph>."
-msgstr "Per crear una macro nova, seleccioneu el mòdul \"Estàndard\" de la llista <emph>Macro de</emph> i feu clic a <emph>Nou</emph>."
+msgstr "Per a crear una macro nova, seleccioneu el mòdul «Estàndard» de la llista <emph>Macro de</emph> i feu clic a <emph>Nou</emph>."
#: 06130000.xhp
msgctxt ""
diff --git a/source/ca/helpcontent2/source/text/scalc/01.po b/source/ca/helpcontent2/source/text/scalc/01.po
index 70d92b00e5f..7a414663194 100644
--- a/source/ca/helpcontent2/source/text/scalc/01.po
+++ b/source/ca/helpcontent2/source/text/scalc/01.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2018-05-08 15:11+0200\n"
-"PO-Revision-Date: 2018-04-09 11:19+0000\n"
+"PO-Revision-Date: 2018-06-12 08:08+0000\n"
"Last-Translator: AssumptaAn <assumptaanglada@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ca\n"
@@ -13,9 +13,9 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Pootle 2.8\n"
"X-Language: ca\n"
-"X-POOTLE-MTIME: 1523272797.000000\n"
+"X-POOTLE-MTIME: 1528790894.000000\n"
#: 01120000.xhp
msgctxt ""
@@ -3535,7 +3535,7 @@ msgctxt ""
"par_id3152993\n"
"help.text"
msgid "The maximum size of an array range is 128 by 128 cells."
-msgstr "La mida màxima d'un interval de matriu és de 128 per 128 cel·les."
+msgstr "La mida màxima d'un interval matricial és de 128 per 128 cel·les."
#: 04060000.xhp
msgctxt ""
@@ -16183,7 +16183,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Array Functions"
-msgstr "Funcions de matriu"
+msgstr "Funcions matricials"
#: 04060107.xhp
msgctxt ""
@@ -16199,7 +16199,7 @@ msgctxt ""
"hd_id3147273\n"
"help.text"
msgid "Array Functions"
-msgstr "Funcions de matriu"
+msgstr "Funcions matricials"
#: 04060107.xhp
msgctxt ""
@@ -16207,7 +16207,7 @@ msgctxt ""
"par_id3154744\n"
"help.text"
msgid "<variable id=\"matrixtext\">This category contains the array functions.</variable>"
-msgstr "<variable id=\"matrixtext\">Aquesta categoria conté les funcions de matriu. </variable>"
+msgstr "<variable id=\"matrixtext\">Aquesta categoria conté les funcions matricials. </variable>"
#: 04060107.xhp
msgctxt ""
@@ -16727,7 +16727,7 @@ msgctxt ""
"par_id3150974\n"
"help.text"
msgid "When you adjust the array range, the array formula will not automatically be adjusted. You are only changing the range in which the result will appear."
-msgstr "Quan ajusteu l'interval de matriu, la fórmula matricial no s'ajusta automàticament. Només canvieu l'interval on apareixerà el resultat."
+msgstr "Si ajusteu l'interval de matriu, la fórmula matricial no s'ajusta automàticament. Només canvieu l'interval on apareixerà el resultat."
#: 04060107.xhp
msgctxt ""
@@ -52815,7 +52815,7 @@ msgctxt ""
"par_id3148797\n"
"help.text"
msgid "To insert subtotal values into a table:"
-msgstr "Per inserir valors subtotals en una taula:"
+msgstr "Per a inserir valors subtotals en una taula:"
#: 12050100.xhp
msgctxt ""
diff --git a/source/ca/helpcontent2/source/text/scalc/04.po b/source/ca/helpcontent2/source/text/scalc/04.po
index 825f220a590..bd1bcf6d5be 100644
--- a/source/ca/helpcontent2/source/text/scalc/04.po
+++ b/source/ca/helpcontent2/source/text/scalc/04.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-10-04 11:48+0200\n"
-"PO-Revision-Date: 2018-05-18 09:10+0000\n"
+"PO-Revision-Date: 2018-05-28 12:32+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ca\n"
@@ -15,7 +15,7 @@ msgstr ""
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
"X-Language: ca\n"
-"X-POOTLE-MTIME: 1526634608.000000\n"
+"X-POOTLE-MTIME: 1527510765.000000\n"
#: 01020000.xhp
msgctxt ""
@@ -55,7 +55,7 @@ msgctxt ""
"par_id3153967\n"
"help.text"
msgid "To create a matrix in which all the cells contain the same information as what you entered on the <emph>Input line</emph>, press Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Enter. You cannot edit the components of the matrix."
-msgstr "Per crear una matriu en la qual totes les cel·les continguin la mateixa informació que heu introduït a la <emph>línia d'entrada</emph>, premeu Maj+<switchinline select=\"sys\"><caseinline select=\"MAC\">Ordre</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Retorn. No podeu editar els components de la matriu."
+msgstr "Per a crear una matriu en la qual totes les cel·les continguin la mateixa informació que heu introduït a la <emph>línia d'entrada</emph>, premeu Maj+<switchinline select=\"sys\"><caseinline select=\"MAC\">Ordre</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Retorn. No podeu editar els components de la matriu."
#: 01020000.xhp
msgctxt ""
@@ -79,7 +79,7 @@ msgctxt ""
"par_id3166432\n"
"help.text"
msgid "To insert a manual line break in a cell, click in the cell, and then press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Enter."
-msgstr "Per inserir un salt de línia manual en una cel·la, feu clic a la cel·la i després premeu <switchinline select=\"sys\"><caseinline select=\"MAC\">Ordre</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Retorn."
+msgstr "Per a inserir un salt de línia manual en una cel·la, feu clic a la cel·la i després premeu <switchinline select=\"sys\"><caseinline select=\"MAC\">Ordre</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Retorn."
#: 01020000.xhp
msgctxt ""
diff --git a/source/ca/helpcontent2/source/text/scalc/guide.po b/source/ca/helpcontent2/source/text/scalc/guide.po
index abb0d8b45e7..b23886ddce1 100644
--- a/source/ca/helpcontent2/source/text/scalc/guide.po
+++ b/source/ca/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: 2018-05-22 13:16+0200\n"
-"PO-Revision-Date: 2018-02-19 14:17+0000\n"
+"PO-Revision-Date: 2018-05-28 12:33+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ca\n"
@@ -13,9 +13,9 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Pootle 2.8\n"
"X-Language: ca\n"
-"X-POOTLE-MTIME: 1519049878.000000\n"
+"X-POOTLE-MTIME: 1527510786.000000\n"
#: address_auto.xhp
msgctxt ""
@@ -9831,7 +9831,7 @@ msgctxt ""
"par_id3154704\n"
"help.text"
msgid "To create a scenario, select all the cells that provide the data for the scenario."
-msgstr "Per crear un escenari, seleccioneu totes les cel·les que proporcionen les dades per a l'escenari."
+msgstr "Per a crear un escenari, seleccioneu totes les cel·les que proporcionen les dades per a l'escenari."
#: scenario.xhp
msgctxt ""
diff --git a/source/ca/helpcontent2/source/text/schart.po b/source/ca/helpcontent2/source/text/schart.po
index d9592e4058c..acac096e233 100644
--- a/source/ca/helpcontent2/source/text/schart.po
+++ b/source/ca/helpcontent2/source/text/schart.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: 2018-05-08 15:10+0200\n"
-"PO-Revision-Date: 2018-05-18 09:00+0000\n"
+"PO-Revision-Date: 2018-05-28 12:18+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ca\n"
@@ -15,7 +15,7 @@ msgstr ""
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
"X-Language: ca\n"
-"X-POOTLE-MTIME: 1526634015.000000\n"
+"X-POOTLE-MTIME: 1527509883.000000\n"
#: main0000.xhp
msgctxt ""
@@ -103,7 +103,7 @@ msgctxt ""
"hd_id5345011\n"
"help.text"
msgid "To insert a chart"
-msgstr "Per inserir un diagrama"
+msgstr "Per a inserir un diagrama"
#: main0000.xhp
msgctxt ""
diff --git a/source/ca/helpcontent2/source/text/schart/01.po b/source/ca/helpcontent2/source/text/schart/01.po
index f33722cfea3..4b3ac306104 100644
--- a/source/ca/helpcontent2/source/text/schart/01.po
+++ b/source/ca/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: 2018-02-27 13:56+0100\n"
-"PO-Revision-Date: 2018-05-23 07:33+0000\n"
+"PO-Revision-Date: 2018-05-28 12:18+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ca\n"
@@ -15,7 +15,7 @@ msgstr ""
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
"X-Language: ca\n"
-"X-POOTLE-MTIME: 1527060804.000000\n"
+"X-POOTLE-MTIME: 1527509914.000000\n"
#: 03010000.xhp
msgctxt ""
@@ -3167,7 +3167,7 @@ msgctxt ""
"par_id3149401\n"
"help.text"
msgid "<ahelp hid=\".uno:DiagramAxisA\">Opens a dialog where you can edit the properties of the secondary X axis. To insert a secondary X axis, choose <emph>Insert - Axes</emph> and select <emph>X axis</emph>.</ahelp>"
-msgstr "<ahelp hid=\".uno:DiagramAxisA\">Obre un diàleg que us permet editar les propietats de l'eix X secundari. Per inserir un eix X secundari, trieu <emph>Insereix - Eixos</emph> i seleccioneu <emph>Eix X</emph>.</ahelp>"
+msgstr "<ahelp hid=\".uno:DiagramAxisA\">Obre un diàleg que us permet editar les propietats de l'eix X secundari. Per a inserir un eix X secundari, trieu <emph>Insereix ▸ Eixos</emph> i seleccioneu <emph>Eix X</emph>.</ahelp>"
#: 05040000.xhp
msgctxt ""
@@ -3183,7 +3183,7 @@ msgctxt ""
"par_id3159264\n"
"help.text"
msgid "<ahelp hid=\".uno:DiagramAxisB\">Opens a dialog where you can edit the properties of the secondary Y axis. To insert a secondary Y axis, choose <emph>Insert - Axes</emph> and select <emph>Y axis</emph>.</ahelp>"
-msgstr "<ahelp hid=\".uno:DiagramAxisB\">Obre un diàleg que us permet editar les propietats de l'eix Y secundari. Per inserir un eix Y secundari, trieu <emph>Insereix - Eixos</emph> i seleccioneu <emph>Eix Y</emph>.</ahelp>"
+msgstr "<ahelp hid=\".uno:DiagramAxisB\">Obre un diàleg que us permet editar les propietats de l'eix Y secundari. Per a inserir un eix Y secundari, trieu <emph>Insereix ▸ Eixos</emph> i seleccioneu <emph>Eix Y</emph>.</ahelp>"
#: 05040000.xhp
msgctxt ""
diff --git a/source/ca/helpcontent2/source/text/sdraw/guide.po b/source/ca/helpcontent2/source/text/sdraw/guide.po
index fc7406d8c0d..31644d77c38 100644
--- a/source/ca/helpcontent2/source/text/sdraw/guide.po
+++ b/source/ca/helpcontent2/source/text/sdraw/guide.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2018-04-17 15:54+0200\n"
-"PO-Revision-Date: 2018-05-18 09:08+0000\n"
+"PO-Revision-Date: 2018-06-12 08:06+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ca\n"
@@ -15,7 +15,7 @@ msgstr ""
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
"X-Language: ca\n"
-"X-POOTLE-MTIME: 1526634535.000000\n"
+"X-POOTLE-MTIME: 1528790809.000000\n"
#: align_arrange.xhp
msgctxt ""
@@ -327,7 +327,7 @@ msgctxt ""
"par_id4979705\n"
"help.text"
msgid "%PRODUCTNAME uses only the RGB color model for printing in color. The RGB values of the selected color are displayed below the preview boxes."
-msgstr ""
+msgstr "El %PRODUCTNAME utilitza únicament el model de colors RGB per a la impressió en color. Els valors RGB del color seleccionat apareixen sota els quadres de previsualització."
#: color_define.xhp
msgctxt ""
@@ -807,7 +807,7 @@ msgctxt ""
"par_id3148868\n"
"help.text"
msgid "To create a circle by dragging from the center, press <switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline> while dragging."
-msgstr "Per crear un cercle arrossegant des del centre, premeu <switchinline select=\"sys\"><caseinline select=\"MAC\">Opció</caseinline><defaultinline>Alt</defaultinline></switchinline> mentre arrossegueu."
+msgstr "Per a crear un cercle arrossegant des del centre, premeu <switchinline select=\"sys\"><caseinline select=\"MAC\">Opció</caseinline><defaultinline>Alt</defaultinline></switchinline> mentre arrossegueu."
#: draw_sector.xhp
msgctxt ""
@@ -1183,7 +1183,7 @@ msgctxt ""
"hd_id3145384\n"
"help.text"
msgid "To create a custom gradient:"
-msgstr "Per crear un degradat personalitzat:"
+msgstr "Per a crear un degradat personalitzat:"
#: gradient.xhp
msgctxt ""
@@ -1543,7 +1543,7 @@ msgctxt ""
"par_id3149257\n"
"help.text"
msgid "To create a closed object, right-click a line and choose <emph>Close Object</emph>."
-msgstr "Per crear un objecte tancat, feu doble clic amb el botó dret del ratolí a la línia i trieu <emph>Tanca l'objecte</emph>."
+msgstr "Per a crear un objecte tancat, feu doble clic amb el botó dret del ratolí a la línia i trieu <emph>Tanca l'objecte</emph>."
#: join_objects.xhp
msgctxt ""
diff --git a/source/ca/helpcontent2/source/text/shared/00.po b/source/ca/helpcontent2/source/text/shared/00.po
index 304c1445df9..0a8729de4eb 100644
--- a/source/ca/helpcontent2/source/text/shared/00.po
+++ b/source/ca/helpcontent2/source/text/shared/00.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: 2018-05-22 13:16+0200\n"
-"PO-Revision-Date: 2018-05-22 13:05+0000\n"
-"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
+"PO-Revision-Date: 2018-05-29 06:48+0000\n"
+"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ca\n"
"MIME-Version: 1.0\n"
@@ -15,7 +15,7 @@ msgstr ""
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
"X-Language: ca\n"
-"X-POOTLE-MTIME: 1526994328.000000\n"
+"X-POOTLE-MTIME: 1527576483.000000\n"
#: 00000001.xhp
msgctxt ""
@@ -398,16 +398,16 @@ msgctxt ""
"00000001.xhp\n"
"hd_id3149670\n"
"help.text"
-msgid "Back"
-msgstr "Enrere"
+msgid "Reset"
+msgstr ""
#: 00000001.xhp
msgctxt ""
"00000001.xhp\n"
"par_id3145068\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optionsdialog/revert\">Resets modified values back to the $[officename] default values.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/optionsdialog/revert\">Reinicialitza els valors modificats als valors per defecte del $[officename].</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optionsdialog/revert\">Resets changes made to the current tab to those applicable when this dialog was opened.</ahelp>"
+msgstr ""
#: 00000001.xhp
msgctxt ""
@@ -553,6 +553,54 @@ msgctxt ""
msgid "<variable id=\"ShiftF1\">Press Shift+F1 and point to a control to learn more about that control.</variable>"
msgstr "<variable id=\"ShiftF1\">Premeu Maj+F1 i apunteu a un control per saber-ne més coses. </variable>"
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"hd_id631527692833772\n"
+"help.text"
+msgid "Options dialog buttons"
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"hd_id831527692839432\n"
+"help.text"
+msgid "OK"
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"par_id471527692844934\n"
+"help.text"
+msgid "Save the changes in the page and close the Options dialog."
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"hd_id261527692850720\n"
+"help.text"
+msgid "Cancel"
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"par_id571527692855533\n"
+"help.text"
+msgid "Close the Options dialog and discard all changes done."
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"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 Options dialog."
+msgstr ""
+
#: 00000002.xhp
msgctxt ""
"00000002.xhp\n"
@@ -607,7 +655,7 @@ msgctxt ""
"hd_id151525000078771\n"
"help.text"
msgid "EPUB"
-msgstr ""
+msgstr "EPUB"
#: 00000002.xhp
msgctxt ""
@@ -895,7 +943,7 @@ msgctxt ""
"par_id3151290\n"
"help.text"
msgid "The area of the picture or frame where the reader can click is indicated by the appearance of the linked <link href=\"text/shared/00/00000002.xhp#url\" name=\"URL\">URL</link> when the mouse passes over the area. The ImageMap is stored in a layer below the picture and contains information about the referenced regions. The only disadvantage of Client Side ImageMaps is that older Web browsers cannot read them; a disadvantage that will, however, resolve itself in time."
-msgstr ""
+msgstr "L'àrea de la imatge o del marc sobre la qual el lector pot fer clic s'indica amb l'aparició de l'<link href=\"text/shared/00/00000002.xhp#url\" name=\"URL\">URL</link> enllaçat quan el ratolí passa per sobre d'aquesta àrea. El mapa d'imatge es desa en una capa per sota de la imatge, i conté informació sobre les regions referenciades. L'únic desavantatge dels mapes d'imatge de client és que els navegadors web més antics no els poden llegir; un desavantatge que, tot i així, es resoldrà tot sol amb el temps."
#: 00000002.xhp
msgctxt ""
@@ -903,7 +951,7 @@ msgctxt ""
"par_id3149664\n"
"help.text"
msgid "When saving the ImageMap, select the file type <emph>SIP - StarView ImageMap</emph>. This saves the ImageMap directly in a format which can be applied to every active picture or frame in your document. However, if you just want to use the ImageMap on the current picture or text frame, you do not have to save it in any special format. After defining the regions, simply click <emph>Apply</emph>. Nothing more is necessary. Client Side ImageMaps saved in <link href=\"text/shared/00/00000002.xhp#html\" name=\"HTML\">HTML</link> format are inserted directly into the page in HTML code."
-msgstr ""
+msgstr "En desar el mapa d'imatge, seleccioneu el tipus de fitxer <emph>SIP - StarView ImageMap</emph>. Aquesta acció desa el mapa d'imatge directament en un format que es pot aplicar a qualsevol imatge o marc del document. Tot i això, si només voleu utilitzar el mapa d'imatge en la imatge o el marc de text actual, no heu de desar-lo en cap format especial. Després de definir les regions, feu clic a <emph>Aplica</emph>. No cal fer res més. Els mapes d'imatge de client es desen en format <link href=\"text/shared/00/00000002.xhp#html\" name=\"HTML\">HTML</link> i s'insereixen directament en el codi HTML de la pàgina."
#: 00000002.xhp
msgctxt ""
@@ -1151,7 +1199,7 @@ msgctxt ""
"par_idN106E1\n"
"help.text"
msgid "in or ″"
-msgstr ""
+msgstr "in o ″"
#: 00000003.xhp
msgctxt ""
@@ -1271,7 +1319,7 @@ msgctxt ""
"hd_id161521663319917\n"
"help.text"
msgid "<variable id=\"samplefile\">Open file with example:</variable>"
-msgstr ""
+msgstr "<variable id=\"samplefile\">Obre un fitxer amb un exemple:</variable>"
#: 00000004.xhp
msgctxt ""
@@ -1871,7 +1919,7 @@ msgctxt ""
"par_id3159254\n"
"help.text"
msgid "If you format a document without Styles, it is referred to as \"direct\" formatting. This means modifying text or other objects, such as frames or tables, by applying various attributes directly. The format applies only to the selected area and all changes must be made separately. Styles, on the other hand, are not applied to the text directly, but rather are defined in the Styles window and then applied. One advantage is that when you change a Style, all parts of the document to which that Style is assigned are modified at the same time."
-msgstr ""
+msgstr "La formatació sense estils d'un document s'anomena formatació «directa». Això vol dir que modifiqueu text o altres objectes, com marcs o taules, aplicant diferents atributs directament. El format s'aplica només a l'àrea seleccionada i tots els canvis s'han de fer separadament. D'altra banda, els estils no s'apliquen directament al text, sinó que es defineixen a la finestra Estils i després s'apliquen. Un dels avantatges és que quan canvieu un estil, totes les parts del document que tenen aquest estil assignat es modifiquen alhora."
#: 00000005.xhp
msgctxt ""
@@ -1903,7 +1951,7 @@ msgctxt ""
"par_id3154638\n"
"help.text"
msgid "<variable id=\"andock1\">Some windows in $[officename], for example the Styles window and the Navigator, are \"dockable\" windows. You can move these windows, re-size them or dock them to an edge. On each edge you can dock several windows on top of, or alongside each other; then, by moving the border lines, you can change the relative proportions of the windows.</variable>"
-msgstr ""
+msgstr "<variable id=\"andock1\">Algunes finestres del $[officename], per exemple la finestra Estils i el Navegador, són finestres que es poden acoblar. Podeu moure estes finestres, redimensionar-les o acoblar-les a una vora. A cada vora podeu acoblar diverses finestres a la part superior o al costat; llavors, movent les línies de les vores, podeu canviar les proporcions relatives de les finestres.</variable>"
#: 00000005.xhp
msgctxt ""
@@ -1911,7 +1959,7 @@ msgctxt ""
"par_id3147233\n"
"help.text"
msgid "<variable id=\"andock2\">To undock and re-dock, holding down the <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> key, double-click a vacant area in the window. In the Styles window, you can also double-click a gray part of the window next to the icons, while you hold down the <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> key.</variable>"
-msgstr ""
+msgstr "<variable id=\"andock2\">Per a desacoblar i tornar a acoblar, manteniu premuda la tecla <switchinline select=\"sys\"><caseinline select=\"MAC\">Ordre</caseinline><defaultinline>Ctrl</defaultinline></switchinline> i feu doble clic en una àrea lliure de la finestra. A la finestra Estils, també podeu fer doble clic a la part grisa de la finestra que apareix al costat de les icones mentre manteniu premuda la tecla <switchinline select=\"sys\"><caseinline select=\"MAC\">Ordre</caseinline><defaultinline>Ctrl</defaultinline></switchinline>.</variable>"
#: 00000005.xhp
msgctxt ""
@@ -2639,7 +2687,7 @@ msgctxt ""
"par_id3154317\n"
"help.text"
msgid "<ahelp visibility=\"visible\" hid=\"SID_EXPLORERCONTENT_DESTROY\">Deletes the current selection. If multiple objects are selected, all will be deleted. In most cases, a confirmation question appears before objects are deleted.</ahelp>"
-msgstr ""
+msgstr "<ahelp visibility=\"visible\" hid=\"SID_EXPLORERCONTENT_DESTROY\">Suprimeix la selecció actual. Si se seleccionen múltiples objectes, se suprimiran tots. En la majoria de casos, apareix una pregunta de seguretat abans de suprimir els objectes.</ahelp>"
#: 00000010.xhp
msgctxt ""
@@ -2863,7 +2911,7 @@ msgctxt ""
"par_id3145669\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\"></caseinline><caseinline select=\"DRAW\"></caseinline><caseinline select=\"IMPRESS\"></caseinline><defaultinline>$[officename] Writer can read various versions of the Microsoft Word text format. You also can save your own texts in Word format. However, not everything available with $[officename] Writer can be transferred to Word, and not everything can be imported.</defaultinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\"></caseinline><caseinline select=\"DRAW\"></caseinline><caseinline select=\"IMPRESS\"></caseinline><defaultinline>El $[officename] Writer pot llegir diverses versions del format de text del Microsoft Word. També podeu desar els vostres textos en format Word. Tot i així, no tot el que hi ha disponible al $[officename] Writer es pot transferir al Word, i no es pot importar tot.</defaultinline></switchinline>"
#: 00000020.xhp
msgctxt ""
@@ -4727,7 +4775,7 @@ msgctxt ""
"hd_id3155341\n"
"help.text"
msgid "String delimiter"
-msgstr ""
+msgstr "Delimitador de cadena de caràcters"
#: 00000208.xhp
msgctxt ""
@@ -4807,7 +4855,7 @@ msgctxt ""
"hd_id171220172142361711\n"
"help.text"
msgid "Skip empty cells"
-msgstr ""
+msgstr "Omet les cel·les buides"
#: 00000208.xhp
msgctxt ""
@@ -6191,7 +6239,7 @@ msgctxt ""
"par_id421525017874627\n"
"help.text"
msgid "Export Directly as EPUB"
-msgstr ""
+msgstr "Exporta directament com a EPUB"
#: 00000401.xhp
msgctxt ""
@@ -7799,7 +7847,7 @@ msgctxt ""
"par_id3149456\n"
"help.text"
msgid "Choose <emph>Tools - Macros - Record Macro</emph>."
-msgstr ""
+msgstr "Trieu <emph>Eines ▸ Macros ▸ Enregistra una macro</emph>."
#: 00000406.xhp
msgctxt ""
@@ -7807,7 +7855,7 @@ msgctxt ""
"par_id3150398\n"
"help.text"
msgid "<variable id=\"passwort\">Choose <emph>Tools - Macros - Organize Macros - %PRODUCTNAME Basic</emph>, click the <emph>Organizer</emph> button, click the <emph>Libraries</emph> tab, and then click the <emph>Password</emph> button.</variable>"
-msgstr ""
+msgstr "<variable id=\"passwort\">Trieu <emph>Eines ▸ Macros ▸ Organitza les macros ▸ %PRODUCTNAME Basic</emph>, feu clic al botó <emph>Organitzador</emph>, feu clic a la pestanya <emph>Biblioteques</emph> i després feu clic al botó <emph>Contrasenya</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -7815,7 +7863,7 @@ msgctxt ""
"par_idN10843\n"
"help.text"
msgid "<variable id=\"packagemanager\">Choose <emph>Tools - Extension Manager</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"packagemanager\">Trieu <emph>Eines ▸ Gestor d'extensions</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -7823,7 +7871,7 @@ msgctxt ""
"par_id9988402\n"
"help.text"
msgid "<variable id=\"packagemanager_eu\">Choose <emph>Tools - Extension Manager</emph>, click <emph>Updates</emph> button.</variable>"
-msgstr ""
+msgstr "<variable id=\"packagemanager_eu\">Trieu <emph>Eines ▸ Gestor d'extensions</emph>, feu clic al botó <emph>Actualitzacions</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -7831,7 +7879,7 @@ msgctxt ""
"par_id3151106\n"
"help.text"
msgid "<variable id=\"xmlfilter\">Choose <emph>Tools - XML Filter Settings</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"xmlfilter\">Trieu <emph>Eines ▸ Paràmetres del filtre XML</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -7839,7 +7887,7 @@ msgctxt ""
"par_id3153778\n"
"help.text"
msgid "<variable id=\"xmlfilteredit\">Choose <emph>Tools - XML Filter Settings</emph>, then click <emph>New</emph> or <emph>Edit</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"xmlfilteredit\">Trieu <emph>Eines ▸ Paràmetres del filtre XML</emph>, llavors feu clic a <emph>Nou</emph> o a <emph>Edita</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -7847,7 +7895,7 @@ msgctxt ""
"par_id3148979\n"
"help.text"
msgid "<variable id=\"xmlfiltertest\">Choose <emph>Tools - XML Filter Settings</emph>, then click <emph>Test XSLTs</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"xmlfiltertest\">Trieu <emph>Eines ▸ Paràmetres del filtre XML</emph>, llavors feu clic a <emph>Verifica els XSLT</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -7855,7 +7903,7 @@ msgctxt ""
"par_id3148672\n"
"help.text"
msgid "<variable id=\"anpassen\">Choose <emph>Tools - Customize</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"anpassen\">Trieu <emph>Eines ▸ Personalitza</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -7863,7 +7911,7 @@ msgctxt ""
"par_id3147230\n"
"help.text"
msgid "<variable id=\"menue\">Choose <emph>Tools - Customize - Menus</emph> tab.</variable>"
-msgstr ""
+msgstr "<variable id=\"menue\">Trieu la pestanya <emph>Eines ▸ Personalitza - Menús</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -7871,7 +7919,7 @@ msgctxt ""
"par_idN108E9\n"
"help.text"
msgid "<variable id=\"menuenew\">Choose <emph>Tools - Customize - Menus</emph> tab, click <emph>New</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"menuenew\">Trieu la pestanya <emph>Eines ▸ Personalitza ▸ Menús</emph>, feu clic a <emph>Nou</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -7879,7 +7927,7 @@ msgctxt ""
"par_idN10919\n"
"help.text"
msgid "<variable id=\"menuemove\">Choose <emph>Tools - Customize - Menus</emph> tab, click <emph>Menu - Move</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"menuemove\">Trieu la pestanya <emph>Eines ▸ Personalitza ▸ Menús</emph>, feu clic a <emph>Menú ▸ Mou</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -7887,7 +7935,7 @@ msgctxt ""
"par_id3145171\n"
"help.text"
msgid "<variable id=\"tastatur\">Choose <emph>Tools - Customize - Keyboard</emph> tab. A document must be opened.</variable>"
-msgstr ""
+msgstr "<variable id=\"tastatur\">Trieu la pestanya <emph>Eines ▸ Personalitza ▸ Teclat</emph>. Cal que hi hagi un document obert.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -7895,7 +7943,7 @@ msgctxt ""
"par_id3153968\n"
"help.text"
msgid "<variable id=\"symbole\">Choose <emph>Tools - Customize - Toolbars</emph> tab.</variable>"
-msgstr ""
+msgstr "<variable id=\"symbole\">Trieu la pestanya <emph>Eines ▸ Personalitza ▸ Barres d'eines</emph></variable>"
#: 00000406.xhp
msgctxt ""
@@ -7903,7 +7951,7 @@ msgctxt ""
"par_id3144432\n"
"help.text"
msgid "<variable id=\"events\">Choose <emph>Tools - Customize - Events</emph> tab.</variable>"
-msgstr ""
+msgstr "<variable id=\"events\">Trieu la pestanya <emph>Eines ▸ Personalitza ▸ Esdeveniments</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -7951,7 +7999,7 @@ msgctxt ""
"par_id3153094\n"
"help.text"
msgid "<variable id=\"autokotyafz\">Choose <emph>Tools - AutoCorrect - AutoCorrect Options - Localized Options</emph> tab.</variable>"
-msgstr ""
+msgstr "<variable id=\"autokotyafz\">Trieu la pestanya <emph>Eines ▸ Correcció automàtica ▸ Opcions de correcció automàtica ▸ Opcions de llengua</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -7959,7 +8007,7 @@ msgctxt ""
"par_id3153945\n"
"help.text"
msgid "<variable id=\"autokoworterg\">Choose <emph>Tools - AutoCorrect - AutoCorrect Options - Word Completion</emph> tab.</variable>"
-msgstr ""
+msgstr "<variable id=\"autokoworterg\">Trieu la pestanya <emph>Eines ▸ Correcció automàtica ▸ Opcions de correcció automàtica ▸ Compleció de paraules</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8071,7 +8119,7 @@ msgctxt ""
"par_id3150036\n"
"help.text"
msgid "Choose <emph>Tools - AutoText - Path</emph>."
-msgstr ""
+msgstr "Trieu <emph>Edita ▸ Text automàtic ▸ Camí</emph>."
#: 00000406.xhp
msgctxt ""
@@ -8079,7 +8127,7 @@ msgctxt ""
"par_id3149581\n"
"help.text"
msgid "Choose <emph>Format - Area - Colors</emph> tab."
-msgstr ""
+msgstr "Trieu la pestanya <emph>Format ▸ Àrea ▸ Colors</emph>."
#: 00000406.xhp
msgctxt ""
@@ -11126,16 +11174,16 @@ msgctxt ""
"00040502.xhp\n"
"par_id3151293\n"
"help.text"
-msgid "<variable id=\"linienstile\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Line Styles</emph> tab </variable>"
-msgstr "<variable id=\"linienstile\">Trieu la pestanya <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Objecte - </emph></caseinline><caseinline select=\"CALC\"><emph>Gràfic - </emph></caseinline></switchinline><emph>Línia - Estils de línia</emph> </variable>"
+msgid "<variable id=\"linienstile\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Line Styles</emph> tab</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3149317\n"
"help.text"
-msgid "<variable id=\"linienenden\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Arrow Styles</emph> tab </variable>"
-msgstr "<variable id=\"linienenden\">Trieu la pestanya <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Objecte - </emph></caseinline><caseinline select=\"CALC\"><emph>Gràfic - </emph></caseinline></switchinline><emph>Línia - Estils de fletxa</emph> </variable>"
+msgid "<variable id=\"linienenden\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Arrow Styles</emph> tab</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
@@ -11174,15 +11222,15 @@ msgctxt ""
"00040502.xhp\n"
"par_id3154948\n"
"help.text"
-msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Area</emph> tab"
-msgstr "Trieu la pestanya <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Objecte - </emph></caseinline><caseinline select=\"CALC\"><emph>Gràfic - </emph></caseinline></switchinline><emph>Àrea - Àrea</emph>"
+msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Area</emph> tab."
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3145607\n"
"help.text"
-msgid "Choose <emph>View - Styles</emph> - open context menu and choose <emph>Modify/New - Area</emph> tab (presentation documents)"
+msgid "Choose <emph>View - Styles</emph> - open context menu and choose <emph>Modify/New - Area</emph> tab (presentation documents)."
msgstr ""
#: 00040502.xhp
@@ -11190,47 +11238,47 @@ msgctxt ""
"00040502.xhp\n"
"par_id3152922\n"
"help.text"
-msgid "Choose <emph>Format - Title - Area</emph> tab (chart documents)"
-msgstr "Trieu la pestanya <emph>Format - Títol - Àrea</emph> (documents amb diagrames)"
+msgid "Choose <emph>Format - Title - Area</emph> tab (chart documents)."
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3157894\n"
"help.text"
-msgid "Choose <emph>Format - Legend - Area</emph> tab (chart documents)"
-msgstr "Trieu la pestanya <emph>Format - Llegenda - Àrea</emph> (documents amb diagrames)"
+msgid "Choose <emph>Format - Legend - Area</emph> tab (chart documents)."
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3144444\n"
"help.text"
-msgid "Choose <emph>Format - Chart Wall - Area</emph> tab (chart documents)"
-msgstr "Trieu la pestanya <emph>Format - Pla lateral del diagrama - Àrea</emph> (documents amb diagrames)"
+msgid "Choose <emph>Format - Chart Wall - Area</emph> tab (chart documents)."
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3156543\n"
"help.text"
-msgid "Choose <emph>Format - Chart Floor - Area</emph> tab (chart documents)"
-msgstr "Trieu la pestanya <emph>Format - Base del diagrama - Àrea</emph> (documents amb diagrames)"
+msgid "Choose <emph>Format - Chart Floor - Area</emph> tab (chart documents)."
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3150685\n"
"help.text"
-msgid "Choose <emph>Format - Chart Area - Area</emph> tab (chart documents)"
-msgstr "Trieu la pestanya <emph>Format - Àrea del diagrama - Àrea</emph> (documents amb diagrames)"
+msgid "Choose <emph>Format - Chart Area - Area</emph> tab (chart documents)."
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3149664\n"
"help.text"
-msgid "Choose <emph>Slide - Properties - Background</emph> tab (in $[officename] Impress)"
+msgid "Choose <emph>Slide - Properties - Background</emph> tab (in $[officename] Impress)."
msgstr ""
#: 00040502.xhp
@@ -11238,7 +11286,15 @@ msgctxt ""
"00040502.xhp\n"
"par_id9149694\n"
"help.text"
-msgid "Choose <emph>Page - Properties - Background</emph> tab (in $[officename] Draw)"
+msgid "Choose <emph>Page - Properties - Background</emph> tab (in $[officename] Draw)."
+msgstr ""
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id841527083135387\n"
+"help.text"
+msgid "Choose <emph>Table - Properties - Background</emph> tab."
msgstr ""
#: 00040502.xhp
@@ -11350,32 +11406,32 @@ msgctxt ""
"00040502.xhp\n"
"par_id3150011\n"
"help.text"
-msgid "<variable id=\"schatte\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Shadow</emph> tab </variable>"
-msgstr "<variable id=\"schatte\">Trieu la pestanya <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Objecte - </emph></caseinline><caseinline select=\"CALC\"><emph>Gràfic - </emph></caseinline></switchinline><emph>Àrea - Ombra</emph></variable>"
+msgid "<variable id=\"schatte\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Shadow</emph> tab</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3147441\n"
"help.text"
-msgid "<variable id=\"verlauf\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Gradients</emph> tab </variable>"
-msgstr "<variable id=\"verlauf\">Trieu la pestanya <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Objecte - </emph></caseinline><caseinline select=\"CALC\"><emph>Gràfic - </emph></caseinline></switchinline><emph>Àrea - Degradats</emph> </variable>"
+msgid "<variable id=\"verlauf\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Gradients</emph> tab</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3155308\n"
"help.text"
-msgid "<variable id=\"schraffur\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Hatching</emph> tab </variable>"
-msgstr "<variable id=\"schraffur\">Trieu la pestanya <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Objecte - </emph></caseinline><caseinline select=\"CALC\"><emph>Gràfic - </emph></caseinline></switchinline><emph>Àrea - Ombreig</emph> </variable>"
+msgid "<variable id=\"schraffur\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Hatching</emph> tab</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3145800\n"
"help.text"
-msgid "<variable id=\"bitmap\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Bitmaps</emph> tab </variable>"
-msgstr "<variable id=\"bitmap\">Trieu la pestanya <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Objecte - </emph></caseinline><caseinline select=\"CALC\"><emph>Gràfic - </emph></caseinline></switchinline><emph>Àrea - Mapes de bits</emph> </variable>"
+msgid "<variable id=\"bitmap\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Bitmaps</emph> tab</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
@@ -11414,8 +11470,8 @@ msgctxt ""
"00040502.xhp\n"
"par_id3156286\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F4 key </caseinline><caseinline select=\"IMPRESS\">F4 key </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"DRAW\">Tecla F4 </caseinline><caseinline select=\"IMPRESS\">Tecla F4 </caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F4 key</caseinline><caseinline select=\"IMPRESS\">F4 key</caseinline></switchinline>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
@@ -11454,8 +11510,8 @@ msgctxt ""
"00040502.xhp\n"
"par_id3153099\n"
"help.text"
-msgid "<variable id=\"position2\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Position and Size</emph> tab </variable>"
-msgstr "<variable id=\"position2\">Trieu la pestanya <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Objecte - </emph></caseinline><caseinline select=\"CALC\"><emph>Gràfic - </emph></caseinline></switchinline><emph>Posició i mida - Posició i mida</emph> </variable>"
+msgid "<variable id=\"position2\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Position and Size</emph> tab</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
@@ -11486,16 +11542,16 @@ msgctxt ""
"00040502.xhp\n"
"par_id3145666\n"
"help.text"
-msgid "<variable id=\"ecke\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Slant & Corner Radius</emph> tab </variable>"
-msgstr "<variable id=\"ecke\">Trieu la pestanya <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Objecte - </emph></caseinline><caseinline select=\"CALC\"><emph>Gràfic - </emph></caseinline></switchinline><emph>Posició i mida - Inclinació i radi de la cantonada</emph> </variable>"
+msgid "<variable id=\"ecke\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Slant & Corner Radius</emph> tab</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3146081\n"
"help.text"
-msgid "<variable id=\"legende\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Callout</emph> tab (only for textbox callouts, not for custom shapes callouts) </variable>"
-msgstr "<variable id=\"legende\">Trieu la pestanya <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Objecte - </emph></caseinline><caseinline select=\"CALC\"><emph>Gràfic - </emph></caseinline></switchinline><emph>Posició i mida - Llegenda</emph> (només per a llegendes amb quadres de text, no per a llegendes amb formes personalitzades)</variable>"
+msgid "<variable id=\"legende\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Callout</emph> tab (only for textbox callouts, not for custom shapes callouts)</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
@@ -11518,8 +11574,8 @@ msgctxt ""
"00040502.xhp\n"
"par_id3149019\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F8 key </caseinline><caseinline select=\"IMPRESS\">F8 key </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"DRAW\">Tecla F8 </caseinline><caseinline select=\"IMPRESS\">Tecla F8 </caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F8 key</caseinline><caseinline select=\"IMPRESS\">F8 key</caseinline></switchinline>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
@@ -11806,8 +11862,8 @@ msgctxt ""
"00040502.xhp\n"
"par_id3153076\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Align Center Horizontally </caseinline><defaultinline>Centered</defaultinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Alinea al centre horitzontalment </caseinline><defaultinline>Centrat</defaultinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Align Center Horizontally</caseinline><defaultinline>Centered</defaultinline></switchinline>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
@@ -11846,8 +11902,8 @@ msgctxt ""
"00040502.xhp\n"
"par_id3150527\n"
"help.text"
-msgid "<variable id=\"font\">Click <emph>Fontwork</emph> icon on <emph>Drawing</emph> bar </variable>"
-msgstr "<variable id=\"font\">Feu clic a la icona <emph>Fontwork</emph> de la barra <emph>Dibuix</emph></variable>"
+msgid "<variable id=\"font\">Click <emph>Fontwork</emph> icon on <emph>Drawing</emph> bar</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
diff --git a/source/ca/helpcontent2/source/text/shared/01.po b/source/ca/helpcontent2/source/text/shared/01.po
index bb18ae12721..8374cdce278 100644
--- a/source/ca/helpcontent2/source/text/shared/01.po
+++ b/source/ca/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: 2018-05-23 23:19+0200\n"
-"PO-Revision-Date: 2018-05-22 13:23+0000\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
+"PO-Revision-Date: 2018-06-12 13:01+0000\n"
"Last-Translator: AssumptaAn <assumptaanglada@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ca\n"
@@ -13,9 +13,9 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Pootle 2.8\n"
"X-Language: ca\n"
-"X-POOTLE-MTIME: 1526995393.000000\n"
+"X-POOTLE-MTIME: 1528808505.000000\n"
#: 01010000.xhp
msgctxt ""
@@ -703,7 +703,7 @@ msgctxt ""
"par_id3152780\n"
"help.text"
msgid "The name of the database field is bounded by brackets in the <emph>Label text</emph> box. If you want, you can separate database fields with spaces. Press Enter to insert a database field on a new line."
-msgstr "El nom del camp de base de dades es troba entre claudàtors en el quadre <emph>Text de l'etiqueta</emph>. Si voleu, podeu separar els camps de base de dades amb espais. Per inserir un camp en una línia nova, premeu Retorn."
+msgstr "El nom del camp de base de dades es troba entre claudàtors en el quadre <emph>Text de l'etiqueta</emph>. Si voleu, podeu separar els camps de base de dades amb espais. Per a inserir un camp en una línia nova, premeu Retorn."
#: 01010201.xhp
msgctxt ""
@@ -1759,7 +1759,7 @@ msgctxt ""
"hd_id3145211\n"
"help.text"
msgid "Create New Folder"
-msgstr ""
+msgstr "Crea una carpeta nova"
#: 01020000.xhp
msgctxt ""
@@ -1767,7 +1767,7 @@ msgctxt ""
"par_id3153681\n"
"help.text"
msgid "<ahelp hid=\"fpicker/ui/explorerfiledialog/new_folder\">Creates a new folder.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"fpicker/ui/explorerfiledialog/new_folder\">Crea una carpeta nova.</ahelp>"
#: 01020000.xhp
msgctxt ""
@@ -1799,7 +1799,7 @@ msgctxt ""
"par_id3154514\n"
"help.text"
msgid "Click a column header to sort the files. Click again to reverse the sort order."
-msgstr ""
+msgstr "Feu clic a la capçalera d'una columna per a ordenar els fitxers. Torneu-hi a fer clic per a invertir l'ordenació."
#: 01020000.xhp
msgctxt ""
@@ -1807,7 +1807,7 @@ msgctxt ""
"par_id3149514\n"
"help.text"
msgid "<ahelp hid=\"HID_FILEVIEW_MENU_DELETE\">To delete a file, right-click the file, and then choose <emph>Delete</emph>.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"HID_FILEVIEW_MENU_DELETE\">Per a suprimir un fitxer, feu-hi clic amb el botó dret del ratolí i trieu <emph>Suprimeix</emph>.</ahelp>"
#: 01020000.xhp
msgctxt ""
@@ -1815,7 +1815,7 @@ msgctxt ""
"par_id3147618\n"
"help.text"
msgid "<ahelp hid=\"HID_FILEVIEW_MENU_RENAME\">To rename a file, right-click the file, and then choose <emph>Rename</emph>.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"HID_FILEVIEW_MENU_RENAME\">Per a canviar el nom d'un fitxer, feu-hi clic amb el botó dret del ratolí i, tot seguit, trieu <emph>Canvia el nom</emph>.</ahelp>"
#: 01020000.xhp
msgctxt ""
@@ -2135,7 +2135,7 @@ msgctxt ""
"par_id431513629862558\n"
"help.text"
msgid "Long click on the <emph>Open</emph> icon and select <emph>Open Remote Files...</emph>"
-msgstr ""
+msgstr "Manteniu clicada la icona <emph>Obre</emph> i seleccioneu <emph>Obre fitxers remots...</emph>"
#: 01020001.xhp
msgctxt ""
@@ -2503,7 +2503,7 @@ msgctxt ""
"par_id881513473450156\n"
"help.text"
msgid "Creates another file with same contents of the current file. The current file is kept open for editing."
-msgstr ""
+msgstr "Crea un altre fitxer amb el mateix contingut que el del fitxer actual. El fitxer actual es manté obert per a editar-lo."
#: 01060002.xhp
msgctxt ""
@@ -2927,7 +2927,7 @@ msgctxt ""
"par_id961513635511473\n"
"help.text"
msgid "Export the entire document using your default PDF settings."
-msgstr ""
+msgstr "Exporta el document sencer amb els paràmetres de PDF per defecte."
#: 01070002.xhp
msgctxt ""
@@ -2943,7 +2943,7 @@ msgctxt ""
"par_id811513635541682\n"
"help.text"
msgid "Export the entire document using your default EPUB settings."
-msgstr ""
+msgstr "Exporta el document sencer amb els paràmetres d'EPUB per defecte."
#: 01100000.xhp
msgctxt ""
@@ -3207,7 +3207,7 @@ msgctxt ""
"hd_id3149576\n"
"help.text"
msgid "Template:"
-msgstr ""
+msgstr "Plantilla:"
#: 01100200.xhp
msgctxt ""
@@ -3415,7 +3415,7 @@ msgctxt ""
"par_id3156045\n"
"help.text"
msgid "<ahelp hid=\".\">Displays statistics for the current file.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Mostra les estadístiques del document actual.</ahelp>"
#: 01100400.xhp
msgctxt ""
@@ -3463,7 +3463,7 @@ msgctxt ""
"hd_id3153311\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Cells:</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Cel·les:</caseinline></switchinline>"
#: 01100400.xhp
msgctxt ""
@@ -3727,7 +3727,7 @@ msgctxt ""
"par_01110001\n"
"help.text"
msgid "Select <emph>File - Templates</emph>"
-msgstr ""
+msgstr "Trieu <emph>Fitxer ▸ Plantilles</emph>"
#: 01110101.xhp
msgctxt ""
@@ -3887,7 +3887,7 @@ msgctxt ""
"par_id01110301\n"
"help.text"
msgid "Select <emph>File - Templates - Save as Template</emph>"
-msgstr ""
+msgstr "Trieu <emph>Fitxer ▸ Plantilles ▸ Desa com a plantilla</emph>"
#: 01110300.xhp
msgctxt ""
@@ -3895,7 +3895,7 @@ msgctxt ""
"hd_id3147226\n"
"help.text"
msgid "Template Name"
-msgstr ""
+msgstr "Nom de la plantilla"
#: 01110300.xhp
msgctxt ""
@@ -3903,7 +3903,7 @@ msgctxt ""
"par_id3147043\n"
"help.text"
msgid "<ahelp hid=\".\">Enter a name for the template.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Introduïu el nom de la plantilla.</ahelp>"
#: 01110300.xhp
msgctxt ""
@@ -3911,7 +3911,7 @@ msgctxt ""
"hd_id3147571\n"
"help.text"
msgid "Template Category"
-msgstr ""
+msgstr "Categoria de la plantilla"
#: 01110300.xhp
msgctxt ""
@@ -3919,7 +3919,7 @@ msgctxt ""
"par_id3150774\n"
"help.text"
msgid "<ahelp hid=\".\">Select a category in which to save the new template.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Seleccioneu la categoria on s'ha de desar la plantilla nova.</ahelp>"
#: 01110300.xhp
msgctxt ""
@@ -3935,7 +3935,7 @@ msgctxt ""
"par_id3149398\n"
"help.text"
msgid "<ahelp hid=\".\">The new template will be used as the default template.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">La plantilla nova s'utilitzarà com a plantilla per defecte.</ahelp>"
#: 01110400.xhp
msgctxt ""
@@ -4759,7 +4759,7 @@ msgctxt ""
"par_id3156326\n"
"help.text"
msgid "Displays the type of printer that you selected."
-msgstr ""
+msgstr "Mostra el tipus d'impressora que heu seleccionat."
#: 01140000.xhp
msgctxt ""
@@ -4767,7 +4767,7 @@ msgctxt ""
"hd_id3149416\n"
"help.text"
msgid "Location"
-msgstr ""
+msgstr "Ubicació"
#: 01140000.xhp
msgctxt ""
@@ -4775,7 +4775,7 @@ msgctxt ""
"par_id3149955\n"
"help.text"
msgid "Displays the port for the selected printer."
-msgstr ""
+msgstr "Mostra el port de la impressora seleccionada."
#: 01140000.xhp
msgctxt ""
@@ -4783,7 +4783,7 @@ msgctxt ""
"hd_id3145316\n"
"help.text"
msgid "Comments"
-msgstr ""
+msgstr "Comentaris"
#: 01140000.xhp
msgctxt ""
@@ -4791,7 +4791,7 @@ msgctxt ""
"par_id3155923\n"
"help.text"
msgid "Displays additional information for the printer."
-msgstr ""
+msgstr "Mostra informació addicional de la impressora."
#: 01140000.xhp
msgctxt ""
@@ -4799,7 +4799,7 @@ msgctxt ""
"hd_id3149669\n"
"help.text"
msgid "Properties"
-msgstr ""
+msgstr "Propietats"
#: 01140000.xhp
msgctxt ""
@@ -4807,7 +4807,7 @@ msgctxt ""
"par_id3149045\n"
"help.text"
msgid "<ahelp hid=\"svt/ui/printersetupdialog/properties\">Changes the printer settings of your operating system for the current document.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"svt/ui/printersetupdialog/properties\">Modifica els paràmetres d'impressió del sistema operatiu per al document actual.</ahelp>"
#: 01140000.xhp
msgctxt ""
@@ -4903,7 +4903,7 @@ msgctxt ""
"par_id5917844\n"
"help.text"
msgid "Opens a new window in your default e-mail program with the current document as an attachment. The OpenDocument file format is used."
-msgstr ""
+msgstr "Obre una finestra nova del programa de correu electrònic per defecte amb el document actual com a adjunció. S'utilitza el format de fitxer OpenDocument."
#: 01160000.xhp
msgctxt ""
@@ -4919,7 +4919,7 @@ msgctxt ""
"par_id5759453\n"
"help.text"
msgid "Opens a new window in your default e-mail program with the current document as an attachment. The Microsoft Excel file format is used."
-msgstr ""
+msgstr "Obre una finestra nova del programa de correu electrònic per defecte amb el document actual com a adjunció. S'utilitza el format de fitxer Microsoft Excel."
#: 01160000.xhp
msgctxt ""
@@ -4935,7 +4935,7 @@ msgctxt ""
"par_id7829218\n"
"help.text"
msgid "Opens a new window in your default e-mail program with the current document as an attachment. The OpenDocument file format is used."
-msgstr ""
+msgstr "Obre una finestra nova del programa de correu electrònic per defecte amb el document actual com a adjunció. S'utilitza el format de fitxer OpenDocument."
#: 01160000.xhp
msgctxt ""
@@ -4951,7 +4951,7 @@ msgctxt ""
"par_id8319650\n"
"help.text"
msgid "Opens a new window in your default e-mail program with the current document as an attachment. The Microsoft PowerPoint file format is used."
-msgstr ""
+msgstr "Obre una finestra nova del programa de correu electrònic per defecte amb el document actual com a adjunció. S'utilitza el format de fitxer Microsoft PowerPoint."
#: 01160000.xhp
msgctxt ""
@@ -4967,7 +4967,7 @@ msgctxt ""
"par_id9085055\n"
"help.text"
msgid "Opens a new window in your default e-mail program with the current document as an attachment. The OpenDocument file format is used."
-msgstr ""
+msgstr "Obre una finestra nova del programa de correu electrònic per defecte amb el document actual com a adjunció. S'utilitza el format de fitxer OpenDocument."
#: 01160000.xhp
msgctxt ""
@@ -4983,7 +4983,7 @@ msgctxt ""
"par_id5421918\n"
"help.text"
msgid "Opens a new window in your default e-mail program with the current document as an attachment. The Microsoft Word file format is used."
-msgstr ""
+msgstr "Obre una finestra nova del programa de correu electrònic per defecte amb el document actual com a adjunció. S'utilitza el format de fitxer Microsoft Word."
#: 01160000.xhp
msgctxt ""
@@ -5063,7 +5063,7 @@ msgctxt ""
"par_id3148668\n"
"help.text"
msgid "<variable id=\"globtext\"><ahelp hid=\".\">Creates a master document from the current Writer document. A new sub-document is created at each occurrence of a chosen paragraph style or outline level in the source document.</ahelp></variable>"
-msgstr ""
+msgstr "<variable id=\"globtext\"><ahelp hid=\".\">Crea un document mestre a partir del document Writer actual. Es crea un subdocument nou a cada repetició de l'estil de paràgraf o nivell d'esquema que aparegui al document font.</ahelp></variable>"
#: 01160300.xhp
msgctxt ""
@@ -5727,7 +5727,7 @@ msgctxt ""
"par_id271521057645962\n"
"help.text"
msgid "When copying a cell or a range in %PRODUCTNAME Calc the selection is marked with blinking dashes around the range (the \"marching ants\") to indicate what was being selected during the clipboard operation."
-msgstr ""
+msgstr "En copiar una cel·la o un interval al %PRODUCTNAME Calc, la selecció es marca amb una línia intermitent (les «formigues marxants») al voltant. Això assenyala el que s'havia seleccionat durant l'operació del porta-retalls."
#: 02060000.xhp
msgctxt ""
@@ -9023,7 +9023,7 @@ msgctxt ""
"par_id3149456\n"
"help.text"
msgid "The <emph>Automatic</emph> option is only available for DDE links. You can insert a DDE link by copying the contents from one file and pasting by choosing <emph>Edit - Paste Special</emph>, and then selecting the <emph>Link</emph> box. As DDE is a text based linking system, only the displayed decimals are copied into the target sheet."
-msgstr "L'opció <emph>Automàtic</emph> només està disponible per als enllaços DDE. Per inserir un enllaç DDE, copieu el contingut d'un fitxer i enganxeu-lo des del menú <emph>Edita ▸ Enganxament especial</emph>, casella <emph>Enllaça</emph>. Atès que DDE és un sistema d'enllaçament basat en text, només es copien al full de destinació els decimals que es mostren."
+msgstr "L'opció <emph>Automàtic</emph> només està disponible per als enllaços DDE. Per a inserir un enllaç DDE, copieu el contingut d'un fitxer i enganxeu-lo des del menú <emph>Edita ▸ Enganxament especial</emph>, casella <emph>Enllaça</emph>. Atès que DDE és un sistema d'enllaçament basat en text, només es copien al full de destinació els decimals que es mostren."
#: 02180000.xhp
msgctxt ""
@@ -11527,7 +11527,7 @@ msgctxt ""
"par_id3149168\n"
"help.text"
msgid "<ahelp hid=\"HID_GRID_TRAVEL_NEW\" visibility=\"hidden\">Inserts a new record into the current table.</ahelp> To create a record, click the asterisk (*) button at the bottom of the table view. An empty row is added at the end of the table."
-msgstr "<ahelp hid=\"HID_GRID_TRAVEL_NEW\" visibility=\"hidden\">Insereix un registre nou a la taula actual.</ahelp> Per crear un registre, feu clic al botó asterisc (*) situat a la part inferior de la vista de la taula. S'afegeix una línia buida al final de la taula."
+msgstr "<ahelp hid=\"HID_GRID_TRAVEL_NEW\" visibility=\"hidden\">Insereix un registre nou a la taula actual.</ahelp> Per a crear un registre, feu clic al botó asterisc (*) situat a la part inferior de la vista de la taula. S'afegeix una línia buida al final de la taula."
#: 02250000.xhp
msgctxt ""
@@ -18239,7 +18239,7 @@ msgctxt ""
"par_id3150651\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/paraindentspacing/spinED_FLINEINDENT\">Indents the first line of a paragraph by the amount that you enter. To create a hanging indent enter a positive value for \"Before text\" and a negative value for \"First line\". To indent the first line of a paragraph that uses numbering or bullets, choose \"<link href=\"text/shared/01/06050600.xhp\">Format - Bullets and Numbering - Position</link>\".</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/paraindentspacing/spinED_FLINEINDENT\">Aplica el sagnat (amb el valor que indiqueu) a la primera línia d'un paràgraf. Per crear un sagnat negatiu, introduïu un valor positiu a \"Des de l'esquerra\" i un valor negatiu a \"Primera línia\". Per aplicar el sagnat a la primera línia d'un paràgraf que utilitza una numeració o pics, trieu \"<link href=\"text/shared/01/06050600.xhp\">Format - Pics i numeració - Posició</link>\".</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/paraindentspacing/spinED_FLINEINDENT\">Aplica el sagnat (amb el valor que indiqueu) a la primera línia d'un paràgraf. Per a crear un sagnat negatiu, introduïu un valor positiu a «Des de l'esquerra» i un valor negatiu a «Primera línia». Per a aplicar el sagnat a la primera línia d'un paràgraf que utilitza una numeració o pics, trieu «<link href=\"text/shared/01/06050600.xhp\">Format ▸ Pics i numeració ▸ Posició</link>».</ahelp>"
#: 05030100.xhp
msgctxt ""
@@ -20871,7 +20871,7 @@ msgctxt ""
"par_id3155339\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">To insert a footer into the current document, select <emph>Footer on</emph>, and then click <emph>OK</emph>. </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Per inserir un peu de pàgina al document actual, seleccioneu <emph>Activa el peu de pàgina</emph> i, tot seguit, feu clic a <emph>D'acord</emph>. </caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Per a inserir un peu de pàgina al document actual, seleccioneu <emph>Activa el peu de pàgina</emph> i, tot seguit, feu clic a <emph>D'acord</emph>. </caseinline></switchinline>"
#: 05040400.xhp
msgctxt ""
@@ -23588,6 +23588,22 @@ msgstr ""
#: 05210100.xhp
msgctxt ""
"05210100.xhp\n"
+"hd_id471527077476052\n"
+"help.text"
+msgid "Cell, Row or Table background selector"
+msgstr ""
+
+#: 05210100.xhp
+msgctxt ""
+"05210100.xhp\n"
+"par_id661527077493366\n"
+"help.text"
+msgid "Select the table object which background area is to be filled."
+msgstr ""
+
+#: 05210100.xhp
+msgctxt ""
+"05210100.xhp\n"
"hd_id3147373\n"
"help.text"
msgid "None"
@@ -28207,7 +28223,7 @@ msgctxt ""
"par_id3146913\n"
"help.text"
msgid "<ahelp hid=\".\">Inserts a new record into the current table.</ahelp> To create a record, click the asterisk (*) button at the bottom of the table view. An empty row is added at the end of the table."
-msgstr "<ahelp hid=\".\">Insereix un registre nou a la taula actual.</ahelp> Per crear un registre, feu clic al botó de l'asterisc (*) que hi ha a la part inferior de la vista de la taula. S'afegirà una fila buida al final de la taula."
+msgstr "<ahelp hid=\".\">Insereix un registre nou a la taula actual.</ahelp> Per a crear un registre, feu clic al botó de l'asterisc (*) que hi ha a la part inferior de la vista de la taula. S'afegirà una fila buida al final de la taula."
#: 05340400.xhp
msgctxt ""
@@ -31206,24 +31222,24 @@ msgctxt ""
"06040100.xhp\n"
"hd_id3145072\n"
"help.text"
-msgid "Automatic *bold* and _underline_"
-msgstr "Converteix en *negreta* i _subratllat_ automàticament"
+msgid "Automatic *bold*, /italic/, -strikeout- and _underline_"
+msgstr ""
#: 06040100.xhp
msgctxt ""
"06040100.xhp\n"
"par_id3153577\n"
"help.text"
-msgid "Automatically applies bold formatting to text enclosed by asterisks (*), and underline to text enclosed by underscores ( _ ), for example, *bold*. The asterisks and underscores are not displayed after the formatting is applied."
-msgstr "Aplica automàticament formatació de negreta al text comprès entre dos asteriscs (*), com per exemple *negreta*, i subratlla el text comprès entre dues ratlles baixes ( _ ). Una vegada aplicades aquestes formatacions ja no es mostren els asteriscos ni les ratlles baixes."
+msgid "Automatically applies bold, italic, strikethrough or underline formatting to text enclosed by asterisks (*), slashes (/), hyphens (-), and underscores (_), respectively. These characters disappear after the formatting is applied."
+msgstr ""
#: 06040100.xhp
msgctxt ""
"06040100.xhp\n"
"par_id3153127\n"
"help.text"
-msgid "This feature does not work if the formatting characters * or _ are entered with an <link href=\"text/shared/00/00000005.xhp#IME\" name=\"Input Method Editor\">Input Method Editor</link>."
-msgstr "Aquesta característica no funciona si introduïu els caràcters de formatació * o _ amb un <link href=\"text/shared/00/00000005.xhp#IME\" name=\"editor del mètode d'entrada\">editor del mètode d'entrada</link>."
+msgid "This feature does not work if the formatting characters <item type=\"literal\">* / - _</item> are entered with an <link href=\"text/shared/00/00000005.xhp#IME\" name=\"Input Method Editor\">Input Method Editor</link>."
+msgstr ""
#: 06040100.xhp
msgctxt ""
@@ -31479,7 +31495,7 @@ msgctxt ""
"par_id3144445\n"
"help.text"
msgid "Automatically applies a border at the base of the preceding paragraph when you type three or more specific characters, and then press Enter. To create a single line, type three or more hyphens (-), or underscores ( _ ), and then press Enter. To create a double line, type three or more equal signs (=), asterisks (*), tildes (~), or hash marks (#), and then press Enter."
-msgstr "Aplica automàticament una vora a la base del paràgraf precedent quan introduïu tres o més caràcters determinats i, a continuació, premeu Retorn. Per crear una línia simple, introduïu tres o més guionets (-) o ratlles baixes ( _ ) i premeu Retorn. Per crear una línia doble, introduïu tres o més símbols d'igual (=), asteriscs (*), titlles (~) o coixinets (#) i premeu Retorn."
+msgstr "Aplica automàticament una vora a la base del paràgraf precedent quan introduïu tres o més caràcters determinats i, a continuació, premeu Retorn. Per a crear una línia simple, introduïu tres o més guionets (-) o ratlles baixes ( _ ) i premeu Retorn. Per crear una línia doble, introduïu tres o més símbols d'igual (=), asteriscs (*), titlles (~) o coixinets (#) i premeu Retorn."
#: 06040100.xhp
msgctxt ""
@@ -33679,7 +33695,7 @@ msgctxt ""
"par_id3150040\n"
"help.text"
msgid "<ahelp hid=\"modules/BasicIDE/ui/basicmacrodialog/macronameedit\">Displays the name of the selected macro. To create or to change the name of a macro, enter a name here.</ahelp>"
-msgstr "<ahelp hid=\"modules/BasicIDE/ui/basicmacrodialog/macronameedit\">Mostra el nom de la macro seleccionada. Per crear o per canviar el nom d'una macro, introduïu un nom aquí.</ahelp>"
+msgstr "<ahelp hid=\"modules/BasicIDE/ui/basicmacrodialog/macronameedit\">Mostra el nom de la macro seleccionada. Per a crear o per canviar el nom d'una macro, introduïu un nom aquí.</ahelp>"
#: 06130000.xhp
msgctxt ""
@@ -34855,7 +34871,7 @@ msgctxt ""
"par_id301514305066046\n"
"help.text"
msgid "You can drag and drop the selected command to move it to the position you want."
-msgstr ""
+msgstr "Podeu arrossegar i deixar anar l'ordre seleccionada per desplaçar-la fins a la posició que vulgueu."
#: 06140100.xhp
msgctxt ""
@@ -34863,7 +34879,7 @@ msgctxt ""
"hd_id321514310951605\n"
"help.text"
msgid "Insert"
-msgstr ""
+msgstr "Insereix"
#: 06140100.xhp
msgctxt ""
@@ -34871,7 +34887,7 @@ msgctxt ""
"par_id981514310786648\n"
"help.text"
msgid "<emph>Insert Separator</emph>: Add a separator mark to improve menu readability and to group commands by subject."
-msgstr ""
+msgstr "<emph>Insereix separador</emph>: afegeix una marca separadora per millorar la llegibilitat del menú i per agrupar les ordres per assumpte."
#: 06140100.xhp
msgctxt ""
@@ -34879,7 +34895,7 @@ msgctxt ""
"par_id831514310878540\n"
"help.text"
msgid "<emph>Insert Submenu</emph>: Insert a submenu entry. Enter a name for the new submenu in the dialog box that follows. The new submenu is automatically available in the menu list for edition."
-msgstr ""
+msgstr "<emph>Insereix submenú</emph>: insereix una entrada de submenú. Introduïu un nom per al nou submenú al quadre de diàleg que hi ha a continuació. El nou submenú es pot editar automàticament des de la llista del menú."
#: 06140100.xhp
msgctxt ""
@@ -34887,7 +34903,7 @@ msgctxt ""
"hd_id341514311059169\n"
"help.text"
msgid "Modify"
-msgstr ""
+msgstr "Modifica"
#: 06140100.xhp
msgctxt ""
@@ -34895,7 +34911,7 @@ msgctxt ""
"par_id111514311020590\n"
"help.text"
msgid "<emph>Rename</emph>: Rename the entry."
-msgstr ""
+msgstr "<emph>Canvia el nom</emph>: Canvia el nom de l'entrada."
#: 06140100.xhp
msgctxt ""
@@ -34903,7 +34919,7 @@ msgctxt ""
"hd_id641514311180774\n"
"help.text"
msgid "Defaults"
-msgstr ""
+msgstr "Valors predeterminats"
#: 06140100.xhp
msgctxt ""
@@ -34911,7 +34927,7 @@ msgctxt ""
"par_id851514311086417\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/menuassignpage/defaultsbtn\">Deletes all changes previously made to this menu.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/menuassignpage/defaultsbtn\">Suprimeix tots els canvis que s'hagin fet prèviament en aquest menú.</ahelp>"
#: 06140100.xhp
msgctxt ""
@@ -34919,7 +34935,7 @@ msgctxt ""
"par_id481514299760750\n"
"help.text"
msgid "<link href=\"text/shared/01/06140300.xhp\" name=\"linkname\">Customizing %PRODUCTNAME context menus</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/06140300.xhp\" name=\"linkname\">Personalització dels menús contextuals del %PRODUCTNAME</link>"
#: 06140101.xhp
msgctxt ""
@@ -35239,7 +35255,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Context Menus"
-msgstr ""
+msgstr "Menús contextuals"
#: 06140300.xhp
msgctxt ""
@@ -35247,7 +35263,7 @@ msgctxt ""
"bm_id721514298976736\n"
"help.text"
msgid "<bookmark_value>context menus;customizing</bookmark_value> <bookmark_value>customizing;context menus</bookmark_value> <bookmark_value>editing;context menus</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>menús contextuals;personalització</bookmark_value> <bookmark_value>personalització;menús contextuals</bookmark_value> <bookmark_value>edició;menús contextuals</bookmark_value>"
#: 06140300.xhp
msgctxt ""
@@ -35263,7 +35279,7 @@ msgctxt ""
"par_id991514298399076\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/menuassignpage/MenuAssignPage\">Lets you customize %PRODUCTNAME context menus for all modules.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/menuassignpage/MenuAssignPage\">Permet personalitzar els menús contextuals del %PRODUCTNAME per a tots els mòduls.</ahelp>"
#: 06140300.xhp
msgctxt ""
@@ -35271,7 +35287,7 @@ msgctxt ""
"par_id3146873\n"
"help.text"
msgid "You can add new commands, modify existing commands, or rearrange the context menu items. You can also add commands executed by macros and apply all kind of styles directly from the context menu."
-msgstr ""
+msgstr "Podeu afegir ordres noves, modificar ordres existents o reordenar els elements del menú contextual. També podeu afegir ordres executades per macros i aplicar tota mena d'estils directament des del menú contextual."
#: 06140300.xhp
msgctxt ""
@@ -35279,7 +35295,7 @@ msgctxt ""
"par_id621514299131013\n"
"help.text"
msgid "Choose <item type=\"menuitem\">Tools - Customize - Context Menus</item> tab."
-msgstr ""
+msgstr "Tria la pestanya <item type=\"menuitem\">Eines ▸ Personalitza ▸ Menús contextuals</item>."
#: 06140300.xhp
msgctxt ""
@@ -35287,7 +35303,7 @@ msgctxt ""
"hd_id611514302475667\n"
"help.text"
msgid "Search"
-msgstr ""
+msgstr "Cerca"
#: 06140300.xhp
msgctxt ""
@@ -35295,7 +35311,7 @@ msgctxt ""
"par_id771514302498290\n"
"help.text"
msgid "Enter a string in the text box to narrow the search of commands."
-msgstr ""
+msgstr "Introdueix una cadena al quadre de text per reduir la cerca d'ordres."
#: 06140300.xhp
msgctxt ""
@@ -35303,7 +35319,7 @@ msgctxt ""
"hd_id441514302482125\n"
"help.text"
msgid "Category"
-msgstr ""
+msgstr "Categoria"
#: 06140300.xhp
msgctxt ""
@@ -35311,7 +35327,7 @@ msgctxt ""
"par_id811514302506979\n"
"help.text"
msgid "Select the menu command category in the drop-down list to restrict the search of commands or scroll the list below. Macros and styles commands are in the bottom of the list."
-msgstr ""
+msgstr "Seleccioneu la categoria d'ordre de menú a la llista desplegable per reduir la cerca d'ordres o desplaceu-vos per la llista de sota. Les ordres de macros i estils són al final de la llista."
#: 06140300.xhp
msgctxt ""
@@ -35319,7 +35335,7 @@ msgctxt ""
"hd_id551514302487751\n"
"help.text"
msgid "Function"
-msgstr ""
+msgstr "Funció"
#: 06140300.xhp
msgctxt ""
@@ -35327,7 +35343,7 @@ msgctxt ""
"par_id831514302518564\n"
"help.text"
msgid "Displays the results of the combination of the search string and category of the desired function."
-msgstr ""
+msgstr "Mostra els resultats de la combinació de la cadena de cerca i la categoria de la funció desitjada."
#: 06140300.xhp
msgctxt ""
@@ -35335,7 +35351,7 @@ msgctxt ""
"hd_id221514304363862\n"
"help.text"
msgid "Description"
-msgstr ""
+msgstr "Descripció"
#: 06140300.xhp
msgctxt ""
@@ -35343,7 +35359,7 @@ msgctxt ""
"par_id841514304376338\n"
"help.text"
msgid "The text box contains a short description of the selected command."
-msgstr ""
+msgstr "El quadre de text conté una descripció curta de l'ordre seleccionada."
#: 06140300.xhp
msgctxt ""
@@ -35351,7 +35367,7 @@ msgctxt ""
"hd_id541514303919911\n"
"help.text"
msgid "Location"
-msgstr ""
+msgstr "Ubicació"
#: 06140300.xhp
msgctxt ""
@@ -35359,7 +35375,7 @@ msgctxt ""
"hd_id231514303933476\n"
"help.text"
msgid "Select the location where the context menu is to be attached. If attached to a %PRODUCTNAME module, the context menu is available for all files opened in that module. If attached to the file, the context menu will be available only when that file is opened and active."
-msgstr ""
+msgstr "Seleccioneu la ubicació on s'ha d'adjuntar el menú contextual. Si s'ajunta a un mòdul del %PRODUCTNAME, el menú contextual estarà disponible per a tots els fitxers que s'obrin en aquell mòdul. Si s'adjunta al fitxer, el menú contextual només estarà disponible quan aquest fitxer estigui obert i actiu."
#: 06140300.xhp
msgctxt ""
@@ -35367,7 +35383,7 @@ msgctxt ""
"hd_id581514303962835\n"
"help.text"
msgid "Menu"
-msgstr ""
+msgstr "Menú"
#: 06140300.xhp
msgctxt ""
@@ -35375,7 +35391,7 @@ msgctxt ""
"par_id921514303969718\n"
"help.text"
msgid "Select the Context Menu where the customization is to be applied. The current set of functions is displayed in the box below."
-msgstr ""
+msgstr "Seleccioneu el Menú contextual en què s'ha d'aplicar la personalització. El conjunt de funcions actual es mostra a la caixa de sota."
#: 06140300.xhp
msgctxt ""
@@ -35383,7 +35399,7 @@ msgctxt ""
"hd_id351514304283480\n"
"help.text"
msgid "Add"
-msgstr ""
+msgstr "Afegeix"
#: 06140300.xhp
msgctxt ""
@@ -35399,7 +35415,7 @@ msgctxt ""
"hd_id651514304289436\n"
"help.text"
msgid "Remove"
-msgstr ""
+msgstr "Suprimeix"
#: 06140300.xhp
msgctxt ""
@@ -35407,7 +35423,7 @@ msgctxt ""
"par_id61514304306614\n"
"help.text"
msgid "Click on the remove button to delete the context menu."
-msgstr ""
+msgstr "Feu clic al botó Suprimeix per esborrar el menú contextual."
#: 06140300.xhp
msgctxt ""
@@ -35415,7 +35431,7 @@ msgctxt ""
"par_idN10910\n"
"help.text"
msgid "You can only delete custom context menus and custom context menu entries."
-msgstr ""
+msgstr "Només podeu suprimir menús contextuals personalitzats i entrades de menú contextual personalitzades."
#: 06140300.xhp
msgctxt ""
@@ -35423,7 +35439,7 @@ msgctxt ""
"hd_id961514303975994\n"
"help.text"
msgid "Right Arrow button"
-msgstr ""
+msgstr "Botó de la fletxa dreta"
#: 06140300.xhp
msgctxt ""
@@ -35431,7 +35447,7 @@ msgctxt ""
"par_id941514303982378\n"
"help.text"
msgid "Click on the right arrow button to select a function on the left display box and copy to the right display box. This will add the function to the selected context menu."
-msgstr ""
+msgstr "Feu clic al botó de la fletxa dreta per seleccionar una funció de la caixa de visualització i copieu-la a la caixa de visualització de la dreta. La funció s'afegirà al menú contextual seleccionat."
#: 06140300.xhp
msgctxt ""
@@ -35439,7 +35455,7 @@ msgctxt ""
"hd_id161514303992615\n"
"help.text"
msgid "Left Arrow button"
-msgstr ""
+msgstr "Boto de la fletxa esquerra"
#: 06140300.xhp
msgctxt ""
@@ -35447,7 +35463,7 @@ msgctxt ""
"par_id361514304000470\n"
"help.text"
msgid "Click on the left arrow button to remove the selected command from the current contex menu."
-msgstr ""
+msgstr "Feu clic al botó de la fletxa esquerra per suprimir l'ordre seleccionada del menú contextual actual."
#: 06140300.xhp
msgctxt ""
@@ -35455,7 +35471,7 @@ msgctxt ""
"hd_id761514304005994\n"
"help.text"
msgid "Up and Down arrow buttons"
-msgstr ""
+msgstr "Botons de la fletxa amunt i avall"
#: 06140300.xhp
msgctxt ""
@@ -38959,7 +38975,7 @@ msgctxt ""
"par_idN10683\n"
"help.text"
msgid "To insert a movie or sound file into your document"
-msgstr "Per inserir un fitxer de pel·lícula o de so en un document"
+msgstr "Per a inserir un fitxer de pel·lícula o de so en un document"
#: moviesound.xhp
msgctxt ""
@@ -40439,7 +40455,7 @@ msgctxt ""
"par_id281120160949348679\n"
"help.text"
msgid "Be aware that the uploaded profile might contain sensitive information, such as your personal dictionary, settings and installed extensions."
-msgstr ""
+msgstr "Tingueu en compte que el perfil penjat pot contenir informació confidencial, com ara el vostre diccionari personalitzat, els paràmetres i les extensions instal·lades."
#: prop_font_embed.xhp
msgctxt ""
diff --git a/source/ca/helpcontent2/source/text/shared/02.po b/source/ca/helpcontent2/source/text/shared/02.po
index 70b5c9253a2..42d81c0616b 100644
--- a/source/ca/helpcontent2/source/text/shared/02.po
+++ b/source/ca/helpcontent2/source/text/shared/02.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: 2018-05-08 15:10+0200\n"
-"PO-Revision-Date: 2018-05-22 13:18+0000\n"
-"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
+"PO-Revision-Date: 2018-05-28 12:19+0000\n"
+"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ca\n"
"MIME-Version: 1.0\n"
@@ -15,7 +15,7 @@ msgstr ""
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
"X-Language: ca\n"
-"X-POOTLE-MTIME: 1526995129.000000\n"
+"X-POOTLE-MTIME: 1527509980.000000\n"
#: 01110000.xhp
msgctxt ""
@@ -2095,7 +2095,7 @@ msgctxt ""
"par_id3155616\n"
"help.text"
msgid "To insert columns into the table control, click in the column heads and bring up the context menu. The following commands are available:"
-msgstr "Per inserir columnes al control de taula, feu clic a l'encapçalament de la columna i obriu el menú contextual. Hi ha disponibles les ordres següents:"
+msgstr "Per a inserir columnes al control de taula, feu clic a l'encapçalament de la columna i obriu el menú contextual. Hi ha disponibles les ordres següents:"
#: 01170004.xhp
msgctxt ""
@@ -12815,7 +12815,7 @@ msgctxt ""
"par_id3154138\n"
"help.text"
msgid "To insert the data into the document in the form of a table, the correct <emph>Table</emph> option must be active. You can then select a database field from the <emph>Table column(s)</emph> list box to define the formatting of the database field. The changes to the number formats will be applied to the last selection. It does not matter whether the database field was selected from the <emph>Database columns</emph> list box or from the <emph>Table column(s)</emph> list box."
-msgstr "Per inserir les dades al document en forma de taula, l'opció correcta de <emph>Taula</emph> ha d'estar activa. Podeu seleccionar un camp d'una base de dades del quadre de llista <emph>Columnes de la taula</emph> per definir la formatació del camp de la base de dades. Els canvis als formats numèrics s'aplicaran a l'última selecció. És igual si el camp de la base de dades s'ha seleccionat del quadre de llista <emph>Columnes de la base de dades</emph> o <emph>Columnes de la taula</emph>."
+msgstr "Per a inserir les dades al document en forma de taula, l'opció correcta de <emph>Taula</emph> ha d'estar activa. Podeu seleccionar un camp d'una base de dades del quadre de llista <emph>Columnes de la taula</emph> per definir la formatació del camp de la base de dades. Els canvis als formats numèrics s'aplicaran a l'última selecció. És igual si el camp de la base de dades s'ha seleccionat del quadre de llista <emph>Columnes de la base de dades</emph> o <emph>Columnes de la taula</emph>."
#: 12070100.xhp
msgctxt ""
@@ -15127,7 +15127,7 @@ msgctxt ""
"par_id3156042\n"
"help.text"
msgid "<ahelp hid=\"dbaccess/ui/tablesjoindialog/tablelist\">Lists the available tables.</ahelp> To insert a table, select one from the list and click <emph>Add</emph>. You can also double-click the table name, and a window will be displayed containing the table fields at the top of the query design or the relational window."
-msgstr "<ahelp hid=\"dbaccess/ui/tablesjoindialog/tablelist\">Llista les taules disponibles.</ahelp> Per inserir una taula, seleccioneu-ne una de la llista i feu clic a <emph>Afegeix</emph>. També podeu fer doble clic al nom de la taula i es mostrarà una finestra que conté els camps de la taula a la part superior de la finestra de disseny de consulta o de la finestra relacional."
+msgstr "<ahelp hid=\"dbaccess/ui/tablesjoindialog/tablelist\">Llista les taules disponibles.</ahelp> Per a inserir una taula, seleccioneu-ne una de la llista i feu clic a <emph>Afegeix</emph>. També podeu fer doble clic al nom de la taula i es mostrarà una finestra que conté els camps de la taula a la part superior de la finestra de disseny de consulta o de la finestra relacional."
#: 14020100.xhp
msgctxt ""
diff --git a/source/ca/helpcontent2/source/text/shared/07.po b/source/ca/helpcontent2/source/text/shared/07.po
index 5b6d33a5629..d8285c2fd9a 100644
--- a/source/ca/helpcontent2/source/text/shared/07.po
+++ b/source/ca/helpcontent2/source/text/shared/07.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: 2017-05-09 16:45+0200\n"
-"PO-Revision-Date: 2016-11-15 21:33+0000\n"
+"PO-Revision-Date: 2018-05-28 12:29+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ca\n"
@@ -13,9 +13,9 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Pootle 2.8\n"
"X-Language: ca\n"
-"X-POOTLE-MTIME: 1479245587.000000\n"
+"X-POOTLE-MTIME: 1527510564.000000\n"
#: 09000000.xhp
msgctxt ""
@@ -47,7 +47,7 @@ msgctxt ""
"par_id3143284\n"
"help.text"
msgid "A tool for creating new web pages is the Web Layout mode, which you enable with <emph>View - Web</emph>."
-msgstr "El mode Format web és una eina per crear noves pàgines web, que podeu habilitar des del menú <emph>Visualitza - Web</emph>."
+msgstr "El mode Format web és una eina per crear noves pàgines web, que podeu habilitar des del menú <emph>Visualitza ▸ Web</emph>."
#: 09000000.xhp
msgctxt ""
@@ -63,7 +63,7 @@ msgctxt ""
"par_id3150808\n"
"help.text"
msgid "Switch to the web layout mode by choosing <emph>View - Web</emph> or by opening a new HTML document."
-msgstr "Canvieu al mode de format web des del menú <emph>Visualitza - Web</emph> o obrint un document HTML nou."
+msgstr "Canvieu al mode de format web des del menú <emph>Visualitza ▸ Web</emph> o obrint un document HTML nou."
#: 09000000.xhp
msgctxt ""
diff --git a/source/ca/helpcontent2/source/text/shared/autopi.po b/source/ca/helpcontent2/source/text/shared/autopi.po
index db6bdcddb8e..028c6772971 100644
--- a/source/ca/helpcontent2/source/text/shared/autopi.po
+++ b/source/ca/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: 2018-04-24 12:21+0200\n"
-"PO-Revision-Date: 2018-02-14 09:06+0000\n"
+"PO-Revision-Date: 2018-05-28 11:43+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ca\n"
@@ -13,9 +13,9 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Pootle 2.8\n"
"X-Language: ca\n"
-"X-POOTLE-MTIME: 1518599164.000000\n"
+"X-POOTLE-MTIME: 1527507786.000000\n"
#: 01000000.xhp
msgctxt ""
@@ -223,7 +223,7 @@ msgctxt ""
"par_id3147226\n"
"help.text"
msgid "<ahelp hid=\".\">Specifies whether you want to create a personal or a business letter.</ahelp> The available options on the following pages vary depending on your choice."
-msgstr ""
+msgstr "<ahelp hid=\".\">Indica si voleu crear una carta personal o una carta de negocis.</ahelp> Les opcions disponibles a les pàgines següents variaran en funció de la tria."
#: 01010100.xhp
msgctxt ""
@@ -239,7 +239,7 @@ msgctxt ""
"par_id3145346\n"
"help.text"
msgid "Specify whether you want to create a business or personal letter template."
-msgstr ""
+msgstr "Indiqueu si voleu crear una plantilla per a carta de negocis o per a carta personal."
#: 01010100.xhp
msgctxt ""
@@ -255,7 +255,7 @@ msgctxt ""
"par_id3153681\n"
"help.text"
msgid "<ahelp hid=\".\">Specifies that you want to create a business letter template.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Indica que voleu crear una plantilla de carta de negocis.</ahelp>"
#: 01010100.xhp
msgctxt ""
@@ -271,7 +271,7 @@ msgctxt ""
"par_idN1061D\n"
"help.text"
msgid "<ahelp hid=\".\">Specifies that you want to create a formal personal letter.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Indica que voleu crear una carta personal formal.</ahelp>"
#: 01010100.xhp
msgctxt ""
@@ -287,7 +287,7 @@ msgctxt ""
"par_id3148538\n"
"help.text"
msgid "<ahelp hid=\".\">Specifies that you want to create a personal letter.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Indica que voleu crear una carta personal.</ahelp>"
#: 01010100.xhp
msgctxt ""
@@ -303,7 +303,7 @@ msgctxt ""
"par_id3149415\n"
"help.text"
msgid "<ahelp hid=\".\">Select the design for your letter template.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Seleccioneu el disseny per a la plantilla de carta.</ahelp>"
#: 01010100.xhp
msgctxt ""
@@ -319,7 +319,7 @@ msgctxt ""
"par_idN106AB\n"
"help.text"
msgid "<ahelp hid=\".\">Specifies whether paper is used that already contains an imprinted logo, address, or footer line. The Wizard shows the Letterhead layout page next.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Indica si el paper conté un logotip, una adreça o un peu de pàgina preimpresos. L'auxiliar mostrarà el format amb capçalera a continuació.</ahelp>"
#: 01010100.xhp
msgctxt ""
@@ -351,7 +351,7 @@ msgctxt ""
"par_id3146856\n"
"help.text"
msgid "<ahelp hid=\".\">Allows you to specify the elements that are already imprinted on your letterhead paper.</ahelp> Those elements are not printed, and the space they occupy is left blank by the printer."
-msgstr ""
+msgstr "<ahelp hid=\".\">Permet indicar els elements que ja estan impresos en el paper amb capçalera.</ahelp> Aquests elements no s'imprimiran; la impressora deixarà en blanc l'espai que ocupen."
#: 01010200.xhp
msgctxt ""
@@ -759,7 +759,7 @@ msgctxt ""
"par_idN10620\n"
"help.text"
msgid "<ahelp hid=\".\">Specifies the name of the sender.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Indica el nom del remitent.</ahelp>"
#: 01010400.xhp
msgctxt ""
@@ -775,7 +775,7 @@ msgctxt ""
"par_idN1063A\n"
"help.text"
msgid "<ahelp hid=\".\">Specifies the street address of the sender.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Indica el carrer de l'adreça del remitent.</ahelp>"
#: 01010400.xhp
msgctxt ""
@@ -791,7 +791,7 @@ msgctxt ""
"par_idN10664\n"
"help.text"
msgid "<ahelp hid=\".\">Specifies the address data of the sender.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Indica el carrer de l'adreça del remitent.</ahelp>"
#: 01010400.xhp
msgctxt ""
@@ -823,7 +823,7 @@ msgctxt ""
"par_idN10685\n"
"help.text"
msgid "<ahelp hid=\".\">Specifies that placeholder fields are inserted into the letter template.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Indica que hi ha inserits espais reservats a la plantilla de carta.</ahelp>"
#: 01010400.xhp
msgctxt ""
@@ -1871,7 +1871,7 @@ msgctxt ""
"par_id3166460\n"
"help.text"
msgid "<ahelp hid=\"WIZARDS_HID_AGWIZ_2_TXT_TIME\">Specifies the time of the meeting.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"WIZARDS_HID_AGWIZ_2_TXT_TIME\">Indica l'hora de la reunió.</ahelp>"
#: 01040200.xhp
msgctxt ""
@@ -1903,7 +1903,7 @@ msgctxt ""
"par_id3159400\n"
"help.text"
msgid "<ahelp hid=\"WIZARDS_HID_AGWIZ_2_TXT_LOCATION\">Specifies the location of the meeting.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"WIZARDS_HID_AGWIZ_2_TXT_LOCATION\">Indica el lloc de la reunió.</ahelp>"
#: 01040200.xhp
msgctxt ""
@@ -3287,7 +3287,7 @@ msgctxt ""
"par_idN10561\n"
"help.text"
msgid "Specifies the field border style."
-msgstr ""
+msgstr "Indica l'estil de vora del camp."
#: 01090500.xhp
msgctxt ""
@@ -4095,7 +4095,7 @@ msgctxt ""
"hd_id3146797\n"
"help.text"
msgid "< Back"
-msgstr ""
+msgstr "< Enrere"
#: 01110000.xhp
msgctxt ""
@@ -4111,7 +4111,7 @@ msgctxt ""
"hd_id3147242\n"
"help.text"
msgid "Next >"
-msgstr ""
+msgstr "Endavant >"
#: 01110000.xhp
msgctxt ""
@@ -5783,7 +5783,7 @@ msgctxt ""
"par_id3156346\n"
"help.text"
msgid "<ahelp hid=\"modules/sabpilot/ui/optiondbfieldpage/yesRadiobutton\">Specifies that you want to save the reference values in a database.</ahelp> The values are written in the data field selected in the list box. The list box displays all the field names from the database table that the form is linked to."
-msgstr ""
+msgstr "<ahelp hid=\"modules/sabpilot/ui/optiondbfieldpage/yesRadiobutton\">Indica que voleu desar els valors de referència a una base de dades.</ahelp> Els valors s'escriuen en el camp de dades seleccionat a la llista. La llista mostra tots els noms dels camps de la taula de la base de dades a la qual està enllaçat el formulari."
#: 01120400.xhp
msgctxt ""
@@ -5799,7 +5799,7 @@ msgctxt ""
"par_id3149398\n"
"help.text"
msgid "<ahelp hid=\"modules/sabpilot/ui/optiondbfieldpage/storeInFieldCombobox\" visibility=\"hidden\">Select the data field in which the reference values have to be saved.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/sabpilot/ui/optiondbfieldpage/storeInFieldCombobox\" visibility=\"hidden\">Seleccioneu el camp de dades en què s'han de desar els valors de referència.</ahelp>"
#: 01120400.xhp
msgctxt ""
diff --git a/source/ca/helpcontent2/source/text/shared/explorer/database.po b/source/ca/helpcontent2/source/text/shared/explorer/database.po
index 1c218235035..d099a1bf290 100644
--- a/source/ca/helpcontent2/source/text/shared/explorer/database.po
+++ b/source/ca/helpcontent2/source/text/shared/explorer/database.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: 2018-05-16 16:54+0200\n"
-"PO-Revision-Date: 2018-05-22 13:19+0000\n"
+"PO-Revision-Date: 2018-06-12 12:55+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ca\n"
@@ -13,9 +13,9 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Pootle 2.8\n"
"X-Language: ca\n"
-"X-POOTLE-MTIME: 1526995156.000000\n"
+"X-POOTLE-MTIME: 1528808140.000000\n"
#: 02000000.xhp
msgctxt ""
@@ -127,7 +127,7 @@ msgctxt ""
"par_id3153146\n"
"help.text"
msgid "You can also open the data source view (Ctrl+Shift+F4), select the entire database table in the data source view (click on the top left corner of the table), and then drag the selection to a text document or spreadsheet."
-msgstr ""
+msgstr "També podeu obrir la vista de la font de dades (Ctrl+Maj+F4), seleccionar-hi tota la base de dades (feu clic a l'extrem superior esquerre de la taula) i arrossegar la selecció a un document de text o un full de càlcul."
#: 02000000.xhp
msgctxt ""
@@ -2639,7 +2639,7 @@ msgctxt ""
"par_id191120151939594217\n"
"help.text"
msgid "The user can use the SQL wild-card characters \"%\" (arbitrary string) or \"_\" (arbitrary single character) as part of the value to retrieve records with more complex criteria."
-msgstr ""
+msgstr "És possible fer servir els caràcters comodí «%» (cadena arbitrària) i «_» (caràcter individual arbitrari) com a part del valor per a recuperar els registres amb criteris més complexos."
#: 02010100.xhp
msgctxt ""
@@ -8831,7 +8831,7 @@ msgctxt ""
"par_idN1053E\n"
"help.text"
msgid "Some databases require a user name and password."
-msgstr ""
+msgstr "Algunes bases de dades requereixen un nom d'usuari i una contrasenya."
#: dabawiz03auth.xhp
msgctxt ""
@@ -11207,7 +11207,7 @@ msgctxt ""
"par_id5857112\n"
"help.text"
msgid "To insert an additional <emph>Report Header</emph> and <emph>Report Footer</emph> area choose <item type=\"menuitem\">Edit - Insert Report Header/Footer</item>. These areas contain text that appears at the start and end of the whole report."
-msgstr "Per inserir àrees de <emph>Capçalera de l'informe</emph> i de <emph>Peu de l'informe</emph> addicionals, trieu <item type=\"menuitem\">Edita ▸ Afegeix una capçalera o peu de pàgina d'informe</item>. Aquestes àrees contenen línies de text que apareixen a l'inici i al final de l'informe."
+msgstr "Per a inserir àrees de <emph>Capçalera de l'informe</emph> i de <emph>Peu de l'informe</emph> addicionals, trieu <item type=\"menuitem\">Edita ▸ Afegeix una capçalera o peu de pàgina d'informe</item>. Aquestes àrees contenen línies de text que apareixen a l'inici i al final de l'informe."
#: rep_main.xhp
msgctxt ""
diff --git a/source/ca/helpcontent2/source/text/shared/guide.po b/source/ca/helpcontent2/source/text/shared/guide.po
index 5a6a606b70e..33d8792a73a 100644
--- a/source/ca/helpcontent2/source/text/shared/guide.po
+++ b/source/ca/helpcontent2/source/text/shared/guide.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2018-05-16 16:54+0200\n"
-"PO-Revision-Date: 2018-05-22 13:12+0000\n"
-"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
+"PO-Revision-Date: 2018-05-28 12:20+0000\n"
+"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ca\n"
"MIME-Version: 1.0\n"
@@ -13,9 +13,9 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Pootle 2.8\n"
"X-Language: ca\n"
-"X-POOTLE-MTIME: 1526994730.000000\n"
+"X-POOTLE-MTIME: 1527510011.000000\n"
#: aaa_start.xhp
msgctxt ""
@@ -1175,7 +1175,7 @@ msgctxt ""
"par_idN106E0\n"
"help.text"
msgid "To insert a line break in a spreadsheet cell, press the <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Enter keys."
-msgstr "Per inserir un salt de línia en una cel·la de full de càlcul, premeu <switchinline select=\"sys\"><caseinline select=\"MAC\">Ordre</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Retorn."
+msgstr "Per a inserir un salt de línia en una cel·la de full de càlcul, premeu <switchinline select=\"sys\"><caseinline select=\"MAC\">Ordre</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Retorn."
#: breaking_lines.xhp
msgctxt ""
@@ -1239,7 +1239,7 @@ msgctxt ""
"par_idN10707\n"
"help.text"
msgid "To insert a line break in a text document table cell, press the Enter key."
-msgstr "Per inserir un salt de línia en una cel·la d'una taula d'un document de text, premeu la tecla Retorn."
+msgstr "Per a inserir un salt de línia en una cel·la d'una taula d'un document de text, premeu la tecla Retorn."
#: breaking_lines.xhp
msgctxt ""
@@ -7055,7 +7055,7 @@ msgctxt ""
"par_id3153105\n"
"help.text"
msgid "To insert a complete record, select the corresponding header and drag it into the document. When you release the mouse button, the <link href=\"text/shared/02/12070000.xhp\" name=\"Insert database columns\"><emph>Insert database columns</emph></link> dialog appears, in which you can decide whether to use all database fields, and whether to copy the data into the document as text, a table or fields. All currently selected records will be inserted."
-msgstr "Per inserir un registre complet, seleccioneu la capçalera corresponent i arrossegueu-la al document. Quan deixeu anar el botó del ratolí, apareixerà el diàleg <link href=\"text/shared/02/12070000.xhp\" name=\"Insereix les columnes de la base de dades\"><emph>Insereix les columnes de la base de dades</emph></link>, on podreu decidir si voleu utilitzar tots els camps de la base de dades, i si voleu copiar les dades al document en forma de text, de taula o de camps. S'inseriran tots els registres seleccionats."
+msgstr "Per a inserir un registre complet, seleccioneu la capçalera corresponent i arrossegueu-la al document. Quan deixeu anar el botó del ratolí, apareixerà el diàleg <link href=\"text/shared/02/12070000.xhp\" name=\"Insereix les columnes de la base de dades\"><emph>Insereix les columnes de la base de dades</emph></link>, on podreu decidir si voleu utilitzar tots els camps de la base de dades, i si voleu copiar les dades al document en forma de text, de taula o de camps. S'inseriran tots els registres seleccionats."
#: dragdrop_beamer.xhp
msgctxt ""
diff --git a/source/ca/helpcontent2/source/text/shared/help.po b/source/ca/helpcontent2/source/text/shared/help.po
index 5b45a8196e4..af63b104d95 100644
--- a/source/ca/helpcontent2/source/text/shared/help.po
+++ b/source/ca/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: 2018-05-16 16:54+0200\n"
-"PO-Revision-Date: 2018-05-23 06:48+0000\n"
+"PO-Revision-Date: 2018-05-28 11:59+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ca\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1527058108.000000\n"
+"X-POOTLE-MTIME: 1527508795.000000\n"
#: browserhelp.xhp
msgctxt ""
@@ -22,7 +22,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Help Page Strings"
-msgstr ""
+msgstr "Texts de la pàgina d'ajuda"
#: browserhelp.xhp
msgctxt ""
@@ -30,7 +30,7 @@ msgctxt ""
"par_id491525733955136\n"
"help.text"
msgid "<variable id=\"module\">Module</variable>"
-msgstr ""
+msgstr "<variable id=\"module\">Aplicació</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -86,7 +86,7 @@ msgctxt ""
"par_id31525734624833\n"
"help.text"
msgid "<variable id=\"selectmodule\">Select Module</variable>"
-msgstr ""
+msgstr "<variable id=\"selectmodule\">Trieu una aplicació</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -430,7 +430,7 @@ msgctxt ""
"par_id441525748118091\n"
"help.text"
msgid "<variable id=\"nb\">Norwegian Bokmål</variable>"
-msgstr ""
+msgstr "<variable id=\"nb\">noruec bokmål</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -454,7 +454,7 @@ msgctxt ""
"par_id371525748126784\n"
"help.text"
msgid "<variable id=\"nn\">Norwegian Nynorsk</variable>"
-msgstr ""
+msgstr "<variable id=\"nn\">noruec nynorsk</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -462,7 +462,7 @@ msgctxt ""
"par_id401525748129935\n"
"help.text"
msgid "<variable id=\"om\">Oromo</variable>"
-msgstr ""
+msgstr "<variable id=\"om\">oromo</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -518,7 +518,7 @@ msgctxt ""
"par_id191525748182094\n"
"help.text"
msgid "<variable id=\"sid\">Sidama</variable>"
-msgstr ""
+msgstr "<variable id=\"sid\">sidamo</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -558,7 +558,7 @@ msgctxt ""
"par_id191525748206804\n"
"help.text"
msgid "<variable id=\"ta\">Tamil</variable>"
-msgstr ""
+msgstr "<variable id=\"ta\">tàmil</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -566,7 +566,7 @@ msgctxt ""
"par_id391525748210165\n"
"help.text"
msgid "<variable id=\"tg\">Tajik</variable>"
-msgstr ""
+msgstr "<variable id=\"tg\">tadjik</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -582,7 +582,7 @@ msgctxt ""
"par_id621525748217482\n"
"help.text"
msgid "<variable id=\"ug\">Uyghur</variable>"
-msgstr ""
+msgstr "<variable id=\"ug\">uigur</variable>"
#: browserhelp.xhp
msgctxt ""
diff --git a/source/ca/helpcontent2/source/text/shared/optionen.po b/source/ca/helpcontent2/source/text/shared/optionen.po
index fd2241bfa2b..9875b977446 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: 2018-05-08 15:10+0200\n"
-"PO-Revision-Date: 2018-05-14 07:46+0000\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
+"PO-Revision-Date: 2018-06-12 13:00+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ca\n"
@@ -15,7 +15,7 @@ msgstr ""
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
"X-Language: ca\n"
-"X-POOTLE-MTIME: 1526283972.000000\n"
+"X-POOTLE-MTIME: 1528808448.000000\n"
#: 01000000.xhp
msgctxt ""
@@ -79,6 +79,22 @@ msgctxt ""
"par_id1013200911280529\n"
"help.text"
msgid "Note for macOS users: The Help mentions the menu path Tools - Options at numerous places. Replace this path with %PRODUCTNAME - Preferences on your macOS main menu. Both menu entries open the Options dialog box."
+msgstr "Nota per als usuaris del macOS: L'ajuda moltes vegades fa referència al camí de menú <emph>Eines ▸ Opcions</emph>. Substituïu aquest camí per <emph>%PRODUCTNAME ▸ Preferències</emph> del menú principal del macOS. Ambdues entrades del menú obren el quadre de diàleg Opcions."
+
+#: 01000000.xhp
+msgctxt ""
+"01000000.xhp\n"
+"hd_id551527692881035\n"
+"help.text"
+msgid "Help"
+msgstr ""
+
+#: 01000000.xhp
+msgctxt ""
+"01000000.xhp\n"
+"par_id831527692885723\n"
+"help.text"
+msgid "Opens the help contents for the Options page displayed."
msgstr ""
#: 01000000.xhp
@@ -159,7 +175,7 @@ msgctxt ""
"hd_id3149420\n"
"help.text"
msgid "<link href=\"text/shared/optionen/01160000.xhp\" name=\"Data Sources\">%PRODUCTNAME Base</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/optionen/01160000.xhp\" name=\"Fonts de dades\">%PRODUCTNAME Base</link>"
#: 01000000.xhp
msgctxt ""
@@ -327,7 +343,7 @@ msgctxt ""
"par_id3147264\n"
"help.text"
msgid "<ahelp hid=\".\">Type your initials.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Escriviu les vostres inicials.</ahelp>"
#: 01010100.xhp
msgctxt ""
@@ -343,7 +359,7 @@ msgctxt ""
"par_id3151212\n"
"help.text"
msgid "<ahelp hid=\".\">Type the name of your street in this field.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Escriviu el nom del vostre carrer en aquest camp.</ahelp>"
#: 01010100.xhp
msgctxt ""
@@ -359,7 +375,7 @@ msgctxt ""
"par_id3145607\n"
"help.text"
msgid "<ahelp hid=\".\">Type your ZIP in this field.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Escriviu el vostre codi postal en aquest camp.</ahelp>"
#: 01010100.xhp
msgctxt ""
@@ -375,7 +391,7 @@ msgctxt ""
"par_id3149807\n"
"help.text"
msgid "<ahelp hid=\".\">Type the city where you live.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Escriviu la ciutat on viviu.</ahelp>"
#: 01010100.xhp
msgctxt ""
@@ -391,7 +407,7 @@ msgctxt ""
"par_id3150441\n"
"help.text"
msgid "<ahelp hid=\".\">Type your state.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Escriviu la vostra comarca o província.</ahelp>"
#: 01010100.xhp
msgctxt ""
@@ -407,7 +423,7 @@ msgctxt ""
"par_id3147317\n"
"help.text"
msgid "<ahelp hid=\".\">Type your title in this field.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Escriviu el vostre tractament en aquest camp.</ahelp>"
#: 01010100.xhp
msgctxt ""
@@ -423,7 +439,7 @@ msgctxt ""
"par_id3147428\n"
"help.text"
msgid "<ahelp hid=\".\">Type your position in the company in this field.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Escriviu el càrrec que exerciu en l'empresa en aquest camp.</ahelp>"
#: 01010100.xhp
msgctxt ""
@@ -439,7 +455,7 @@ msgctxt ""
"par_id3154011\n"
"help.text"
msgid "<ahelp hid=\".\">Type your private telephone number in this field.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Escriviu el vostre número de telèfon particular en aquest camp.</ahelp>"
#: 01010100.xhp
msgctxt ""
@@ -455,7 +471,7 @@ msgctxt ""
"par_id3159153\n"
"help.text"
msgid "<ahelp hid=\".\">Type your work number in this field.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Escriviu el vostre número de telèfon de la feina en aquest camp.</ahelp>"
#: 01010100.xhp
msgctxt ""
@@ -471,7 +487,7 @@ msgctxt ""
"par_id3153159\n"
"help.text"
msgid "<ahelp hid=\".\">Type your fax number in this field.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Escriviu el vostre número de fax en aquest camp.</ahelp>"
#: 01010100.xhp
msgctxt ""
@@ -487,7 +503,7 @@ msgctxt ""
"par_id3154942\n"
"help.text"
msgid "<ahelp hid=\".\">Type your e-mail address.</ahelp> For example, my.name@my.provider.com"
-msgstr ""
+msgstr "<ahelp hid=\".\">Escriviu la vostra adreça electrònica.</ahelp> Per exemple, el.meu.nom@el.meu.proveidor.cat"
#: 01010200.xhp
msgctxt ""
@@ -871,7 +887,7 @@ msgctxt ""
"par_id6944181\n"
"help.text"
msgid "OpenOffice.org 3 and StarOffice 9 introduce new features which have to be saved using the <link href=\"https://en.wikipedia.org/wiki/OpenDocument\" name=\"English Wikipedia: OpenDocument\">OpenDocument</link> format (ODF) version 1.2. The prior versions of OpenOffice.org 2 and StarOffice 8 support the file formats ODF 1.0/1.1. Those prior file formats cannot store all new features of the new software."
-msgstr ""
+msgstr "L'OpenOffice.org 3 i l'StarOffice 9 presenten noves funcions que s'han de desar amb el format <link href=\"https://en.wikipedia.org/wiki/OpenDocument\" name=\"Viquipèdia en anglès: OpenDocument\">OpenDocument</link> (ODF) versió 1.2. Les versions anteriors (OpenOffice.org 2 i StarOffice 8) treballen amb els formats de fitxer ODF 1.0/1.1, i aquests formats de fitxer anteriors no poden emmagatzemar totes les noves funcions de les versions més recents."
#: 01010200.xhp
msgctxt ""
@@ -2071,7 +2087,7 @@ msgctxt ""
"hd_id3150767\n"
"help.text"
msgid "Colors"
-msgstr ""
+msgstr "Colors"
#: 01010500.xhp
msgctxt ""
@@ -2079,7 +2095,7 @@ msgctxt ""
"hd_id3150869\n"
"help.text"
msgid "Palette"
-msgstr ""
+msgstr "Paleta"
#: 01010500.xhp
msgctxt ""
@@ -2095,7 +2111,7 @@ msgctxt ""
"hd_id3150447\n"
"help.text"
msgid "Color Set"
-msgstr ""
+msgstr "Joc de colors"
#: 01010500.xhp
msgctxt ""
@@ -2103,7 +2119,7 @@ msgctxt ""
"par_id3149560\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/colorpage/colorset\">Contains a list of available colors. Click on the desired one in the list to select it.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/colorpage/colorset\">Conté una llista dels colors disponibles. Feu clic al color que desitgeu per a seleccionar-lo.</ahelp>"
#: 01010500.xhp
msgctxt ""
@@ -2111,7 +2127,7 @@ msgctxt ""
"hd_id31563321\n"
"help.text"
msgid "Recent Colors"
-msgstr ""
+msgstr "Colors recents"
#: 01010500.xhp
msgctxt ""
@@ -2119,7 +2135,7 @@ msgctxt ""
"par_id31544811\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/colorpage/recentcolorset\">Displays the last twelve colors selected and applied.</ahelp> Upon selecting a new color it is added to the left of the list. If the list is full and a new color is selected then the rightmost color is deleted."
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/colorpage/recentcolorset\">Mostra els darrers dotze colors que s'han seleccionat i aplicat.</ahelp> En seleccionar un color nou, aquest s'afegeix a l'esquerra de la llista. Si la llista ja s'ha emplenat i se selecciona un color nou, el color més a la dreta desapareix."
#: 01010500.xhp
msgctxt ""
@@ -2127,7 +2143,7 @@ msgctxt ""
"hd_id3156332\n"
"help.text"
msgid "Add"
-msgstr ""
+msgstr "Afegeix"
#: 01010500.xhp
msgctxt ""
@@ -2143,7 +2159,7 @@ msgctxt ""
"hd_id31547578\n"
"help.text"
msgid "Delete"
-msgstr ""
+msgstr "Suprimeix"
#: 01010500.xhp
msgctxt ""
@@ -2167,7 +2183,7 @@ msgctxt ""
"hd_id31507671\n"
"help.text"
msgid "New"
-msgstr ""
+msgstr "Nou"
#: 01010500.xhp
msgctxt ""
@@ -2255,7 +2271,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Selecting a new color"
-msgstr ""
+msgstr "Selecció d'un color nou"
#: 01010501.xhp
msgctxt ""
@@ -2263,7 +2279,7 @@ msgctxt ""
"hd_id3153126\n"
"help.text"
msgid "Selecting a new color"
-msgstr ""
+msgstr "Selecció d'un color nou"
#: 01010501.xhp
msgctxt ""
@@ -2375,7 +2391,7 @@ msgctxt ""
"hd_id315200\n"
"help.text"
msgid "RGB"
-msgstr ""
+msgstr "RGB"
#: 01010501.xhp
msgctxt ""
@@ -2527,7 +2543,7 @@ msgctxt ""
"hd_id3156180\n"
"help.text"
msgid "Brightness"
-msgstr ""
+msgstr "Brillantor"
#: 01010501.xhp
msgctxt ""
@@ -2551,7 +2567,7 @@ msgctxt ""
"hd_id315202\n"
"help.text"
msgid "CMYK"
-msgstr ""
+msgstr "CMYK"
#: 01010501.xhp
msgctxt ""
@@ -2775,7 +2791,7 @@ msgctxt ""
"hd_id3163561\n"
"help.text"
msgid "Help Improve LibreOffice"
-msgstr ""
+msgstr "Ajudeu-nos a millorar el LibreOffice"
#: 01010600.xhp
msgctxt ""
@@ -2783,7 +2799,7 @@ msgctxt ""
"hd_id3169299\n"
"help.text"
msgid "Collect usage data and send it to The Document Foundation"
-msgstr ""
+msgstr "Recull dades d'ús i les envia a The Document Foundation"
#: 01010600.xhp
msgctxt ""
@@ -4566,8 +4582,8 @@ msgctxt ""
"01030300.xhp\n"
"par_idN10640\n"
"help.text"
-msgid "Options"
-msgstr "Opcions"
+msgid "Security Options and Warnings"
+msgstr ""
#: 01030300.xhp
msgctxt ""
@@ -4598,8 +4614,8 @@ msgctxt ""
"01030300.xhp\n"
"hd_id3168736\n"
"help.text"
-msgid "Persistently save passwords protected by a master password"
-msgstr "Desa permanentment les contrasenyes protegides amb una contrasenya mestra"
+msgid "Persistently save passwords for web connections"
+msgstr ""
#: 01030300.xhp
msgctxt ""
@@ -4614,8 +4630,24 @@ msgctxt ""
"01030300.xhp\n"
"hd_id3901791\n"
"help.text"
+msgid "Protected by a master password (recommended)"
+msgstr ""
+
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"par_id31527711486980\n"
+"help.text"
+msgid "Check to enable all connections' passwords to be protected by a master password."
+msgstr ""
+
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"hd_id141527711343312\n"
+"help.text"
msgid "Master Password"
-msgstr "Contrasenya mestra"
+msgstr ""
#: 01030300.xhp
msgctxt ""
@@ -13734,8 +13766,8 @@ msgctxt ""
"java.xhp\n"
"hd_id3148618\n"
"help.text"
-msgid "Optional (unstable) options"
-msgstr "Opcions opcionals (inestables)"
+msgid "Optional Features"
+msgstr ""
#: java.xhp
msgctxt ""
@@ -13750,8 +13782,8 @@ msgctxt ""
"java.xhp\n"
"par_id3156344\n"
"help.text"
-msgid "It enables features that are not yet complete or contain known bugs. The list of these features is different version by version, or even it can be empty."
-msgstr "Habilita característiques que encara no estan completades o que contenen errors. La llista d'aquestes característiques es diferent segons la versió, o fins i tot pot estar buida."
+msgid "Enables features that are not yet complete or may contain known bugs. The list of these features is different version by version, or even it can be empty."
+msgstr ""
#: java.xhp
msgctxt ""
@@ -13766,8 +13798,8 @@ msgctxt ""
"java.xhp\n"
"par_id3156345\n"
"help.text"
-msgid "It enables macro recording, so the <link href=\"text/shared/guide/macro_recording.xhp\" name=\"Tools - Macros - Record Macro\"><item type=\"menuitem\">Tools - Macros - Record Macro</item></link> menu item will be available."
-msgstr "Habilita l'enregistrament de macros, de manera que l'element del menú <link href=\"text/shared/guide/macro_recording.xhp\" name=\"Eines - Macros - Enregistra una macro\"><item type=\"menuitem\">Eines - Macros - Enregistra una macro</item></link> estarà disponible."
+msgid "Enables macro recording. The <link href=\"text/shared/guide/macro_recording.xhp\" name=\"Tools - Macros - Record Macro\"><item type=\"menuitem\">Tools - Macros - Record Macro</item></link> menu item is available."
+msgstr ""
#: java.xhp
msgctxt ""
diff --git a/source/ca/helpcontent2/source/text/simpress.po b/source/ca/helpcontent2/source/text/simpress.po
index 4ca9ae5a9f5..67c7db1f197 100644
--- a/source/ca/helpcontent2/source/text/simpress.po
+++ b/source/ca/helpcontent2/source/text/simpress.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: 2017-12-18 12:31+0100\n"
-"PO-Revision-Date: 2017-12-13 07:45+0000\n"
-"Last-Translator: AssumptaAn <assumptaanglada@gmail.com>\n"
+"PO-Revision-Date: 2018-05-28 12:20+0000\n"
+"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ca\n"
"MIME-Version: 1.0\n"
@@ -13,9 +13,9 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Pootle 2.8\n"
"X-Language: ca\n"
-"X-POOTLE-MTIME: 1513151136.000000\n"
+"X-POOTLE-MTIME: 1527510019.000000\n"
#: main0000.xhp
msgctxt ""
@@ -1047,7 +1047,7 @@ msgctxt ""
"par_id3150253\n"
"help.text"
msgid "You can also drag a <link href=\"text/simpress/01/04030000.xhp\" name=\"snap line\">snap line</link> from a ruler to help you align objects on your slide. To insert a snap line using a ruler, drag the edge of a ruler into the slide."
-msgstr "També podeu arrossegar una <link href=\"text/simpress/01/04030000.xhp\" name=\"línia de captura\">línia de captura</link> des d'un regle per ajudar-vos a alinear objectes a la diapositiva. Per inserir una línia de captura mitjançant un regle, arrossegueu l'extrem d'un regle cap a la diapositiva."
+msgstr "També podeu arrossegar una <link href=\"text/simpress/01/04030000.xhp\" name=\"línia de captura\">línia de captura</link> des d'un regle per ajudar-vos a alinear objectes a la diapositiva. Per a inserir una línia de captura mitjançant un regle, arrossegueu l'extrem d'un regle cap a la diapositiva."
#: main0209.xhp
msgctxt ""
diff --git a/source/ca/helpcontent2/source/text/simpress/00.po b/source/ca/helpcontent2/source/text/simpress/00.po
index f1df8cdcdee..510a20ef9a2 100644
--- a/source/ca/helpcontent2/source/text/simpress/00.po
+++ b/source/ca/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: 2018-04-17 15:54+0200\n"
-"PO-Revision-Date: 2018-03-28 12:56+0000\n"
+"PO-Revision-Date: 2018-05-29 13:07+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ca\n"
@@ -13,9 +13,9 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Pootle 2.8\n"
"X-Language: ca\n"
-"X-POOTLE-MTIME: 1522241803.000000\n"
+"X-POOTLE-MTIME: 1527599228.000000\n"
#: 00000004.xhp
msgctxt ""
@@ -391,7 +391,7 @@ msgctxt ""
"par_idN10B07\n"
"help.text"
msgid "<variable id=\"master\">Choose <emph>Slide - Master Elements</emph> </variable>"
-msgstr ""
+msgstr "<variable id=\"master\">Trieu <emph>Diapositiva ▸ Elements mestres</emph> </variable>"
#: 00000403.xhp
msgctxt ""
@@ -431,7 +431,7 @@ msgctxt ""
"par_id3153480\n"
"help.text"
msgid "<variable id=\"master_drawing\">Choose <emph>View - Master Slide</emph> </variable>"
-msgstr ""
+msgstr "<variable id=\"master_drawing\">Trieu <emph>Visualitza ▸ Diapositiva mestra </emph></variable>"
#: 00000403.xhp
msgctxt ""
@@ -743,7 +743,7 @@ msgctxt ""
"par_id3153012\n"
"help.text"
msgid "<variable id=\"seitenvorlage\">Choose <emph>Slide - Master Slide</emph></variable>"
-msgstr ""
+msgstr "<variable id=\"seitenvorlage\">Trieu <emph>Diapositiva ▸ Diapositiva mestra</emph></variable>"
#: 00000406.xhp
msgctxt ""
diff --git a/source/ca/helpcontent2/source/text/simpress/01.po b/source/ca/helpcontent2/source/text/simpress/01.po
index a060e8f38f4..543395674bc 100644
--- a/source/ca/helpcontent2/source/text/simpress/01.po
+++ b/source/ca/helpcontent2/source/text/simpress/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: 2018-05-08 15:10+0200\n"
-"PO-Revision-Date: 2018-02-05 08:02+0000\n"
-"Last-Translator: Joan Montané <joan@montane.cat>\n"
+"PO-Revision-Date: 2018-06-12 08:07+0000\n"
+"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ca\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1517817761.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1528790863.000000\n"
#: 01170000.xhp
msgctxt ""
@@ -1718,7 +1718,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Master Slide"
-msgstr ""
+msgstr "Diapositiva mestra"
#: 03150100.xhp
msgctxt ""
@@ -1782,7 +1782,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Master Notes"
-msgstr ""
+msgstr "Notes mestres"
#: 03150300.xhp
msgctxt ""
@@ -2934,7 +2934,7 @@ msgctxt ""
"par_id3148868\n"
"help.text"
msgid "<ahelp hid=\"modules/sdraw/ui/insertslidesdialog/backgrounds\">Unused master pages are not inserted.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/sdraw/ui/insertslidesdialog/backgrounds\">Les pàgines mestres no utilitzades no s'insereixen.</ahelp>"
#: 04110200.xhp
msgctxt ""
@@ -3430,7 +3430,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Styles"
-msgstr ""
+msgstr "Estils"
#: 05100000.xhp
msgctxt ""
@@ -3446,7 +3446,7 @@ msgctxt ""
"hd_id3156024\n"
"help.text"
msgid "<link href=\"text/simpress/01/05100000.xhp\" name=\"Styles\">Styles</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/05100000.xhp\" name=\"Estils\">Estils</link>"
#: 05100000.xhp
msgctxt ""
@@ -3454,7 +3454,7 @@ msgctxt ""
"par_id3150398\n"
"help.text"
msgid "Opens the Styles deck of the Sidebar, which lists the available graphic and presentation styles for applying and editing."
-msgstr ""
+msgstr "Obre el quadre Estils de la barra lateral, on es mostren els estils gràfics i de presentació disponibles per a aplicar i editar."
#: 05100000.xhp
msgctxt ""
@@ -4846,7 +4846,7 @@ msgctxt ""
"hd_id3159207\n"
"help.text"
msgid "Duration"
-msgstr ""
+msgstr "Durada"
#: 06040000.xhp
msgctxt ""
@@ -5302,7 +5302,7 @@ msgctxt ""
"par_id3149710\n"
"help.text"
msgid "<ahelp hid=\"modules/simpress/ui/dockinganimation/delone\">Deletes current image from the animation sequence.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/simpress/ui/dockinganimation/delone\">Suprimeix la imatge actual de la seqüència d'animació.</ahelp>"
#: 06050000.xhp
msgctxt ""
@@ -5334,7 +5334,7 @@ msgctxt ""
"par_id3150765\n"
"help.text"
msgid "<ahelp hid=\"modules/simpress/ui/dockinganimation/delall\">Deletes all of the images in the animation.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/simpress/ui/dockinganimation/delall\">Suprimeix totes les imatges de la seqüència d'animació.</ahelp>"
#: 06050000.xhp
msgctxt ""
@@ -5446,7 +5446,7 @@ msgctxt ""
"par_id3154294\n"
"help.text"
msgid "<ahelp hid=\"modules/simpress/ui/dockinganimation/create\">Inserts the animation into the current slide.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/simpress/ui/dockinganimation/create\">Insereix l'animació en la diapositiva actual.</ahelp>"
#: 06060000.xhp
msgctxt ""
@@ -5590,7 +5590,7 @@ msgctxt ""
"par_idN107F0\n"
"help.text"
msgid "Category"
-msgstr ""
+msgstr "Categoria"
#: 06060000.xhp
msgctxt ""
@@ -5638,7 +5638,7 @@ msgctxt ""
"par_idN107F1\n"
"help.text"
msgid "Effect"
-msgstr ""
+msgstr "Efecte"
#: 06060000.xhp
msgctxt ""
@@ -5646,7 +5646,7 @@ msgctxt ""
"par_idN107F2\n"
"help.text"
msgid "<ahelp hid=\".\">Select an animation effect.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Seleccioneu un efecte d'animació.</ahelp>"
#: 06060000.xhp
msgctxt ""
@@ -5710,7 +5710,7 @@ msgctxt ""
"par_idN10820\n"
"help.text"
msgid "Duration"
-msgstr ""
+msgstr "Durada"
#: 06060000.xhp
msgctxt ""
@@ -7070,7 +7070,7 @@ msgctxt ""
"hd_id3156020\n"
"help.text"
msgid "Progress"
-msgstr ""
+msgstr "Progrés"
#: 13050200.xhp
msgctxt ""
@@ -7406,7 +7406,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Connect"
-msgstr ""
+msgstr "Connecta"
#: 13160000.xhp
msgctxt ""
diff --git a/source/ca/helpcontent2/source/text/simpress/guide.po b/source/ca/helpcontent2/source/text/simpress/guide.po
index 3dffc5cec38..57339d8dd9d 100644
--- a/source/ca/helpcontent2/source/text/simpress/guide.po
+++ b/source/ca/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: 2018-05-16 16:54+0200\n"
-"PO-Revision-Date: 2018-02-14 09:08+0000\n"
+"PO-Revision-Date: 2018-05-28 12:20+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ca\n"
@@ -13,9 +13,9 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Pootle 2.8\n"
"X-Language: ca\n"
-"X-POOTLE-MTIME: 1518599327.000000\n"
+"X-POOTLE-MTIME: 1527510039.000000\n"
#: 3d_create.xhp
msgctxt ""
@@ -1639,7 +1639,7 @@ msgctxt ""
"hd_id3155443\n"
"help.text"
msgid "To insert text from a file into a slide:"
-msgstr "Per inserir text d'un fitxer a una diapositiva:"
+msgstr "Per a inserir text d'un fitxer a una diapositiva:"
#: html_import.xhp
msgctxt ""
@@ -4191,7 +4191,7 @@ msgctxt ""
"hd_id3153418\n"
"help.text"
msgid "To insert a slide from another presentation:"
-msgstr "Per inserir una diapositiva d'una altra presentació:"
+msgstr "Per a inserir una diapositiva d'una altra presentació:"
#: page_copy.xhp
msgctxt ""
@@ -5623,7 +5623,7 @@ msgctxt ""
"par_id9209875\n"
"help.text"
msgid "Insert a native table - you enter the data into the cells and apply fancy formatting using the Table Design section on the Tasks pane."
-msgstr "Per inserir una taula nativa, introduïu les dades a les cel·les i apliqueu una formatació atractiva utilitzant la secció Disseny de taula de la subfinestra Tasques."
+msgstr "Per a inserir una taula nativa, introduïu les dades a les cel·les i apliqueu una formatació atractiva utilitzant la secció Disseny de taula de la subfinestra Tasques."
#: table_insert.xhp
msgctxt ""
@@ -5631,7 +5631,7 @@ msgctxt ""
"par_id3044526\n"
"help.text"
msgid "Insert a new table as an OLE object or insert an existing file as an OLE object - you can specify the link to a file to be a live link to the latest data saved in a spreadsheet file."
-msgstr "Per inserir una taula nova com a objecte OLE o bé inserir un fitxer que ja existeixi com a objecte OLE, podeu indicar que l'enllaç a un fitxer sigui un enllaç simultani a les últimes dades desades en un fitxer de full de càlcul."
+msgstr "Per a inserir una taula nova com a objecte OLE o bé inserir un fitxer que ja existeixi com a objecte OLE, podeu indicar que l'enllaç a un fitxer sigui un enllaç simultani a les últimes dades desades en un fitxer de full de càlcul."
#: table_insert.xhp
msgctxt ""
diff --git a/source/ca/helpcontent2/source/text/smath/01.po b/source/ca/helpcontent2/source/text/smath/01.po
index 62dcb4138b6..cddd58675db 100644
--- a/source/ca/helpcontent2/source/text/smath/01.po
+++ b/source/ca/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: 2018-05-16 16:54+0200\n"
-"PO-Revision-Date: 2018-05-23 07:36+0000\n"
+"PO-Revision-Date: 2018-05-28 12:21+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ca\n"
@@ -15,7 +15,7 @@ msgstr ""
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
"X-Language: ca\n"
-"X-POOTLE-MTIME: 1527060988.000000\n"
+"X-POOTLE-MTIME: 1527510076.000000\n"
#: 02080000.xhp
msgctxt ""
@@ -3279,7 +3279,7 @@ msgctxt ""
"par_id3149954\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_LRFLOORX\">To insert floor brackets, type <emph>lfloor<?>rfloor</emph> directly in the <emph>Commands</emph> window.</ahelp>"
-msgstr "<ahelp hid=\"HID_SMA_LRFLOORX\">Per inserir claudàtors d'arrodoniment a la baixa, escriviu <emph>lfloor<?>rfloor</emph> directament a la finestra d'<emph>ordres</emph>.</ahelp>"
+msgstr "<ahelp hid=\"HID_SMA_LRFLOORX\">Per a inserir claudàtors d'arrodoniment a la baixa, escriviu <emph>lfloor<?>rfloor</emph> directament a la finestra d'<emph>ordres</emph>.</ahelp>"
#: 03090500.xhp
msgctxt ""
@@ -3287,7 +3287,7 @@ msgctxt ""
"par_id3150592\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_LRCEILX\">To insert ceiling brackets, type <emph>lceil<?>rceil</emph> directly in the <emph>Commands</emph> window.</ahelp>"
-msgstr "<ahelp hid=\"HID_SMA_LRCEILX\">Per inserir claudàtors d'arrodoniment a l'alça, escriviu <emph>lceil<?>rceil</emph> directament a la finestra d'<emph>ordres</emph>.</ahelp>"
+msgstr "<ahelp hid=\"HID_SMA_LRCEILX\">Per a inserir claudàtors d'arrodoniment a l'alça, escriviu <emph>lceil<?>rceil</emph> directament a la finestra d'<emph>ordres</emph>.</ahelp>"
#: 03090500.xhp
msgctxt ""
@@ -3295,7 +3295,7 @@ msgctxt ""
"par_id3149623\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_SLRFLOORX\">To insert scalable floor brackets, type <emph>left lfloor<?>right rfloor</emph> directly in the <emph>Commands</emph> window.</ahelp>"
-msgstr "<ahelp hid=\"HID_SMA_SLRFLOORX\">Per inserir claudàtors d'arrodoniment a la baixa dimensionables, escriviu <emph>left lfloor<?>right rfloor</emph> directament a la finestra d'<emph>ordres</emph>.</ahelp>"
+msgstr "<ahelp hid=\"HID_SMA_SLRFLOORX\">Per a inserir claudàtors d'arrodoniment a la baixa dimensionables, escriviu <emph>left lfloor<?>right rfloor</emph> directament a la finestra d'<emph>ordres</emph>.</ahelp>"
#: 03090500.xhp
msgctxt ""
@@ -3303,7 +3303,7 @@ msgctxt ""
"par_id3145668\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_SLRCEILX\">To insert scalable ceiling brackets, type <emph>left lceil<?>right rceil</emph> directly in the <emph>Commands</emph> window.</ahelp>"
-msgstr "<ahelp hid=\"HID_SMA_SLRCEILX\">Per inserir claudàtors d'arrodoniment a l'alça dimensionables, escriviu <emph>left lceil<?>right rceil</emph> directament a la finestra d'<emph>ordres</emph>.</ahelp>"
+msgstr "<ahelp hid=\"HID_SMA_SLRCEILX\">Per a inserir claudàtors d'arrodoniment a l'alça dimensionables, escriviu <emph>left lceil<?>right rceil</emph> directament a la finestra d'<emph>ordres</emph>.</ahelp>"
#: 03090500.xhp
msgctxt ""
@@ -5511,7 +5511,7 @@ msgctxt ""
"par_id3151243\n"
"help.text"
msgid "<image id=\"img_id3148871\" src=\"media/helpimg/smzb9.png\" width=\"300px\" height=\"90px\"><alt id=\"alt_id3148871\">Integral and Sum Ranges, Font Size</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3148871\" src=\"media/helpimg/smzb9.png\" width=\"300px\" height=\"90px\"><alt id=\"alt_id3148871\">Intervals d'integrals i sumes, mida del tipus de lletra</alt></image>"
#: 03090910.xhp
msgctxt ""
@@ -10687,7 +10687,7 @@ msgctxt ""
"par_id3158042\n"
"help.text"
msgid "To insert a placeholder into your formula, type <emph><?></emph> in the <emph>Commands</emph> window."
-msgstr "Per inserir un espai reservat en una fórmula, escriviu <emph><?></emph> a la finestra d'<emph>ordres</emph>."
+msgstr "Per a inserir un espai reservat en una fórmula, escriviu <emph><?></emph> a la finestra d'<emph>ordres</emph>."
#: 05010000.xhp
msgctxt ""
diff --git a/source/ca/helpcontent2/source/text/smath/06.po b/source/ca/helpcontent2/source/text/smath/06.po
index becbcc52135..763724a1067 100644
--- a/source/ca/helpcontent2/source/text/smath/06.po
+++ b/source/ca/helpcontent2/source/text/smath/06.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: 2018-05-16 16:54+0200\n"
-"PO-Revision-Date: 2018-05-23 07:38+0000\n"
+"PO-Revision-Date: 2018-05-28 10:16+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ca\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1527061087.000000\n"
+"X-POOTLE-MTIME: 1527502581.000000\n"
#: screenshots.xhp
msgctxt ""
@@ -38,7 +38,7 @@ msgctxt ""
"par_id121525570707303\n"
"help.text"
msgid "<image src=\"media/screenshots/modules/smath/ui/catalogdialog/CatalogDialog.png\" id=\"img_id441525570707303\" localize=\"true\"><alt id=\"alt_id921525570707303\">Catalog Dialog</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/screenshots/modules/smath/ui/catalogdialog/CatalogDialog.png\" id=\"img_id441525570707303\" localize=\"true\"><alt id=\"alt_id921525570707303\">Diàleg catàleg</alt></image>"
#: screenshots.xhp
msgctxt ""
diff --git a/source/ca/helpcontent2/source/text/swriter.po b/source/ca/helpcontent2/source/text/swriter.po
index 6d50570c802..1c8c45d3f29 100644
--- a/source/ca/helpcontent2/source/text/swriter.po
+++ b/source/ca/helpcontent2/source/text/swriter.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: 2018-04-05 11:28+0200\n"
-"PO-Revision-Date: 2018-05-22 13:25+0000\n"
-"Last-Translator: Joan Montané <joan@montane.cat>\n"
+"PO-Revision-Date: 2018-06-12 08:08+0000\n"
+"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ca\n"
"MIME-Version: 1.0\n"
@@ -15,7 +15,7 @@ msgstr ""
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
"X-Language: ca\n"
-"X-POOTLE-MTIME: 1526995552.000000\n"
+"X-POOTLE-MTIME: 1528790881.000000\n"
#: classificationbar.xhp
msgctxt ""
@@ -143,7 +143,7 @@ msgctxt ""
"par_idN106C0\n"
"help.text"
msgid "Intellectual property is a generic term for the nature of the contents of the document. Select this category for general purpose document classification."
-msgstr ""
+msgstr "«Propietat intel·lectual» és un terme genèric per al caràcter del contingut del document. Seleccioneu aquesta categoria per a classificar documents d'ús general."
#: classificationbar.xhp
msgctxt ""
@@ -263,7 +263,7 @@ msgctxt ""
"par_id030820161747133280\n"
"help.text"
msgid "%PRODUCTNAME allows customization of the levels of classification for your business. To customize the number and the name of the levels, copy the file <item type=\"literal\">example.xml</item> located in <item type=\"menuitem\">Tools - Options - LibreOffice - Paths - Classification</item> into a local folder and edit the contents."
-msgstr ""
+msgstr "Amb el %PRODUCTNAME és possible personalitzar els nivells de classificació perquè s'adaptin a la vostra empresa. Per a personalitzar el nombre i el nom dels nivells, copieu el fitxer <item type=\"literal\">example.xml</item> que es troba a <item type=\"menuitem\">Eines ▸ Opcions ▸ LibreOffice ▸ Camins ▸ Classificació</item> a una carpeta local i modifiqueu-ne el contingut."
#: classificationbar.xhp
msgctxt ""
@@ -391,7 +391,7 @@ msgctxt ""
"hd_id201703240024554113\n"
"help.text"
msgid "<link href=\"text/swriter/mailmergetoolbar.xhp\">Mail Merge Toolbar</link>"
-msgstr ""
+msgstr "<link href=\"text/swriter/mailmergetoolbar.xhp\">Barra d'eines de combinació de correu</link>"
#: mailmergetoolbar.xhp
msgctxt ""
@@ -407,7 +407,7 @@ msgctxt ""
"par_id030820161754175468\n"
"help.text"
msgid "Go to menu <item type=\"menuitem\">View - Toolbars</item> and select <item type=\"menuitem\">Mail Merge</item>"
-msgstr ""
+msgstr "Aneu al menú <item type=\"menuitem\">Visualitza ▸ Barres d'eines</item> i seleccioneu <item type=\"menuitem\">Combinació de correu</item>"
#: mailmergetoolbar.xhp
msgctxt ""
diff --git a/source/ca/helpcontent2/source/text/swriter/00.po b/source/ca/helpcontent2/source/text/swriter/00.po
index 08f6bc08bd9..043059e3082 100644
--- a/source/ca/helpcontent2/source/text/swriter/00.po
+++ b/source/ca/helpcontent2/source/text/swriter/00.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: 2018-05-22 13:17+0200\n"
-"PO-Revision-Date: 2018-05-14 07:47+0000\n"
-"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
+"PO-Revision-Date: 2018-05-28 12:29+0000\n"
+"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ca\n"
"MIME-Version: 1.0\n"
@@ -13,9 +13,9 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Pootle 2.8\n"
"X-Language: ca\n"
-"X-POOTLE-MTIME: 1526284022.000000\n"
+"X-POOTLE-MTIME: 1527510569.000000\n"
#: 00000004.xhp
msgctxt ""
@@ -447,7 +447,7 @@ msgctxt ""
"par_id3149712\n"
"help.text"
msgid "Choose <emph>View - Web</emph>"
-msgstr "Trieu <emph>Visualitza - Web</emph>"
+msgstr "Trieu <emph>Visualitza ▸ Web</emph>"
#: 00000403.xhp
msgctxt ""
diff --git a/source/ca/helpcontent2/source/text/swriter/01.po b/source/ca/helpcontent2/source/text/swriter/01.po
index b38658739d7..8bdfa225714 100644
--- a/source/ca/helpcontent2/source/text/swriter/01.po
+++ b/source/ca/helpcontent2/source/text/swriter/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: 2018-05-22 13:17+0200\n"
-"PO-Revision-Date: 2018-05-14 07:47+0000\n"
-"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
+"PO-Revision-Date: 2018-05-28 12:22+0000\n"
+"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ca\n"
"MIME-Version: 1.0\n"
@@ -13,9 +13,9 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Pootle 2.8\n"
"X-Language: ca\n"
-"X-POOTLE-MTIME: 1526284042.000000\n"
+"X-POOTLE-MTIME: 1527510179.000000\n"
#: 01120000.xhp
msgctxt ""
@@ -1599,7 +1599,7 @@ msgctxt ""
"par_id3154571\n"
"help.text"
msgid "<variable id=\"autotexttext\"><ahelp hid=\".uno:EditGlossary\">Creates, edits, or inserts AutoText. You can store formatted text, text with graphics, tables, and fields as AutoText. To quickly insert AutoText, type the shortcut for the AutoText in your document, and then press F3.</ahelp></variable>"
-msgstr "<variable id=\"autotexttext\"><ahelp hid=\".uno:EditGlossary\">Crea, edita o insereix text automàtic. Podeu emmagatzemar text formatat, text amb gràfics, taules i camps com a text automàtic. Per inserir-lo ràpidament, escriviu la drecera per al text automàtic en el document i premeu F3.</ahelp></variable>"
+msgstr "<variable id=\"autotexttext\"><ahelp hid=\".uno:EditGlossary\">Crea, edita o insereix text automàtic. Podeu emmagatzemar text formatat, text amb gràfics, taules i camps com a text automàtic. Per a inserir-lo ràpidament, escriviu la drecera per al text automàtic en el document i premeu F3.</ahelp></variable>"
#: 02120000.xhp
msgctxt ""
@@ -1695,7 +1695,7 @@ msgctxt ""
"par_id3145257\n"
"help.text"
msgid "Lists the AutoText categories. To view the AutoText entries in a category, double-click the category, or click the plus sign (+) in front of the category. To insert an AutoText entry into the current document, select the entry in the list, and then click <emph>Insert</emph>."
-msgstr "Llista les categories de text automàtic. Per visualitzar les entrades de text automàtic d'una categoria, feu doble clic a la categoria o feu clic al signe més (+) davant de la categoria. Per inserir una entrada de text automàtic en el document actual, seleccioneu l'entrada de la llista i, a continuació, feu clic a <emph>Insereix</emph>."
+msgstr "Llista les categories de text automàtic. Per a visualitzar les entrades de text automàtic d'una categoria, feu doble clic a la categoria o feu clic al signe més (+) davant de la categoria. Per a inserir una entrada de text automàtic en el document actual, seleccioneu l'entrada de la llista i, a continuació, feu clic a <emph>Insereix</emph>."
#: 02120000.xhp
msgctxt ""
@@ -3175,7 +3175,7 @@ msgctxt ""
"par_id3155902\n"
"help.text"
msgid "<variable id=\"bereichetext\"><ahelp hid=\".uno:EditRegion\">Changes the properties of sections defined in your document.</ahelp> To insert a section, select text or click in your document, and then choose <emph>Insert - Section</emph>.</variable>"
-msgstr "<variable id=\"bereichetext\"><ahelp hid=\".uno:EditRegion\">Canvia les propietats de les seccions definides al vostre document.</ahelp> Per inserir una secció, seleccioneu el text o feu clic al document i trieu <emph>Insereix - Secció</emph>.</variable>"
+msgstr "<variable id=\"bereichetext\"><ahelp hid=\".uno:EditRegion\">Canvia les propietats de les seccions definides al vostre document.</ahelp> Per a inserir una secció, seleccioneu el text o feu clic al document i trieu <emph>Insereix ▸ Secció</emph>.</variable>"
#: 02170000.xhp
msgctxt ""
@@ -5687,7 +5687,7 @@ msgctxt ""
"par_id3150678\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/flddocumentpage/select\">Lists the available fields for the field type selected in the <emph>Type </emph>list. To insert a field, click the field, and then click <emph>Insert</emph>.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/flddocumentpage/select\">Llista els camps disponibles per al tipus de camp seleccionat a la llista <emph>Tipus</emph>. Per inserir un camp, feu clic en el camp i, a continuació, feu clic a <emph>Insereix</emph>.</ahelp>"
+msgstr "<ahelp hid=\"modules/swriter/ui/flddocumentpage/select\">Llista els camps disponibles per al tipus de camp seleccionat a la llista <emph>Tipus</emph>. Per a inserir un camp, feu clic en el camp i, a continuació, feu clic a <emph>Insereix</emph>.</ahelp>"
#: 04090001.xhp
msgctxt ""
@@ -5695,7 +5695,7 @@ msgctxt ""
"par_id3155537\n"
"help.text"
msgid "To quickly insert a field from the list, hold down <switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline> and double-click the field."
-msgstr "Per inserir ràpidament un camp de la llista, manteniu premut <switchinline select=\"sys\"><caseinline select=\"MAC\">Ordre</caseinline><defaultinline>Ctrl</defaultinline></switchinline> i feu doble clic al camp."
+msgstr "Per a inserir ràpidament un camp de la llista, manteniu premut <switchinline select=\"sys\"><caseinline select=\"MAC\">Ordre</caseinline><defaultinline>Ctrl</defaultinline></switchinline> i feu doble clic al camp."
#: 04090001.xhp
msgctxt ""
@@ -6191,7 +6191,7 @@ msgctxt ""
"par_id7729728\n"
"help.text"
msgid "To quickly insert a field from the list, hold down <switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline> and double-click the field."
-msgstr "Per inserir ràpidament un camp de la llista, manteniu premut <switchinline select=\"sys\"><caseinline select=\"MAC\">Ordre</caseinline><defaultinline>Ctrl</defaultinline></switchinline> i feu doble clic al camp."
+msgstr "Per a inserir ràpidament un camp de la llista, manteniu premut <switchinline select=\"sys\"><caseinline select=\"MAC\">Ordre</caseinline><defaultinline>Ctrl</defaultinline></switchinline> i feu doble clic al camp."
#: 04090002.xhp
msgctxt ""
@@ -7255,7 +7255,7 @@ msgctxt ""
"par_id0902200804290272\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Lists the available fields for the field type selected in the <emph>Type </emph>list. To insert a field, click the field, and then click <emph>Insert</emph>.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Llista els camps disponibles per al tipus de camp seleccionat a la llista <emph>Tipus</emph>. Per inserir un camp, feu clic en el camp i, a continuació, feu clic a <emph>Insereix</emph>.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Llista els camps disponibles per al tipus de camp seleccionat a la llista <emph>Tipus</emph>. Per a inserir un camp, feu clic en el camp i, a continuació, feu clic a <emph>Insereix</emph>.</ahelp>"
#: 04090004.xhp
msgctxt ""
@@ -7583,7 +7583,7 @@ msgctxt ""
"par_id3326822\n"
"help.text"
msgid "To quickly insert a field from the list, hold down <switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline> and double-click the field."
-msgstr "Per inserir ràpidament un camp de la llista, manteniu premut <switchinline select=\"sys\"><caseinline select=\"MAC\">Ordre</caseinline><defaultinline>Ctrl</defaultinline></switchinline> i feu doble clic al camp."
+msgstr "Per a inserir ràpidament un camp de la llista, manteniu premut <switchinline select=\"sys\"><caseinline select=\"MAC\">Ordre</caseinline><defaultinline>Ctrl</defaultinline></switchinline> i feu doble clic al camp."
#: 04090005.xhp
msgctxt ""
@@ -12599,7 +12599,7 @@ msgctxt ""
"par_id3153922\n"
"help.text"
msgid "To insert a table from another document, copy the table, and then paste the table into the current document."
-msgstr "Per inserir una taula des d'un altre document, copieu-la i enganxeu-la en el document actual."
+msgstr "Per a inserir una taula des d'un altre document, copieu-la i enganxeu-la en el document actual."
#: 04150000.xhp
msgctxt ""
@@ -18247,7 +18247,7 @@ msgctxt ""
"par_id3147512\n"
"help.text"
msgid "To insert a column, place the cursor in a table cell, hold down <switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline> and press Insert, release, and then press the left or the right arrow."
-msgstr "Per inserir una columna, situeu el cursor a una cel·la de la taula, manteniu premuda <switchinline select=\"sys\"><caseinline select=\"MAC\">Opció</caseinline><defaultinline>Alt</defaultinline></switchinline> i premeu Inser, deixeu anar les tecles i, llavors, premeu la fletxa esquerra o dreta."
+msgstr "Per a inserir una columna, situeu el cursor a una cel·la de la taula, manteniu premuda <switchinline select=\"sys\"><caseinline select=\"MAC\">Opció</caseinline><defaultinline>Alt</defaultinline></switchinline> i premeu Inser, deixeu anar les tecles i, llavors, premeu la fletxa esquerra o dreta."
#: 05090201.xhp
msgctxt ""
@@ -18263,7 +18263,7 @@ msgctxt ""
"par_id3154105\n"
"help.text"
msgid "To insert a row, place the cursor in a table cell, hold down <switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline> and press Insert, release, and then press the up or the down arrow."
-msgstr "Per inserir una fila, situeu el cursor a una cel·la de la taula, manteniu premuda <switchinline select=\"sys\"><caseinline select=\"MAC\">Opció</caseinline><defaultinline>Alt</defaultinline></switchinline> i premeu Inser, deixeu anar i, a continuació, premeu la fletxa amunt o avall."
+msgstr "Per a inserir una fila, situeu el cursor a una cel·la de la taula, manteniu premuda <switchinline select=\"sys\"><caseinline select=\"MAC\">Opció</caseinline><defaultinline>Alt</defaultinline></switchinline> i premeu Inser, deixeu anar i, a continuació, premeu la fletxa amunt o avall."
#: 05090201.xhp
msgctxt ""
diff --git a/source/ca/helpcontent2/source/text/swriter/guide.po b/source/ca/helpcontent2/source/text/swriter/guide.po
index 74835e0efc2..96a6aff35e5 100644
--- a/source/ca/helpcontent2/source/text/swriter/guide.po
+++ b/source/ca/helpcontent2/source/text/swriter/guide.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2018-05-08 15:11+0200\n"
-"PO-Revision-Date: 2018-02-14 10:46+0000\n"
+"PO-Revision-Date: 2018-05-28 12:27+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ca\n"
@@ -13,9 +13,9 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Pootle 2.8\n"
"X-Language: ca\n"
-"X-POOTLE-MTIME: 1518605171.000000\n"
+"X-POOTLE-MTIME: 1527510473.000000\n"
#: anchor_object.xhp
msgctxt ""
@@ -895,7 +895,7 @@ msgctxt ""
"hd_id3147282\n"
"help.text"
msgid "To Insert an AutoText Entry"
-msgstr "Per inserir una entrada de text automàtic"
+msgstr "Per a inserir una entrada de text automàtic"
#: autotext.xhp
msgctxt ""
@@ -935,7 +935,7 @@ msgctxt ""
"par_id3155090\n"
"help.text"
msgid "To quickly enter a %PRODUCTNAME Math formula, type <item type=\"literal\">fn</item>, and then press F3. If you insert more than one formula, the formulae are sequentially numbered. To insert dummy text, type <item type=\"literal\">dt</item>, and then press F3."
-msgstr "Per introduir ràpidament una fórmula del %PRODUCTNAME Math, escriviu <item type=\"literal\">fn</item> i premeu F3. Si inseriu més d'una fórmula, el conjunt de fórmules es numeraran de manera seqüencial. Per inserir text fictici, escriviu <item type=\"literal\">dt</item> i premeu F3."
+msgstr "Per a introduir ràpidament una fórmula del %PRODUCTNAME Math, escriviu <item type=\"literal\">fn</item> i premeu F3. Si inseriu més d'una fórmula, el conjunt de fórmules es numeraran de manera seqüencial. Per a inserir text fictici, escriviu <item type=\"literal\">dt</item> i premeu F3."
#: autotext.xhp
msgctxt ""
@@ -3927,7 +3927,7 @@ msgctxt ""
"par_id3155602\n"
"help.text"
msgid "To insert the date as a field that updates each time you open the document, click ”Date” in the <item type=\"menuitem\">Select</item> list."
-msgstr "Per inserir la data com a camp actualitzable cada vegada que obriu el document, feu clic a \"Data\" a la llista <item type=\"menuitem\">Selecciona</item>."
+msgstr "Per a inserir la data com a camp actualitzable cada vegada que obriu el document, feu clic a «Data» a la llista <item type=\"menuitem\">Selecciona</item>."
#: fields_date.xhp
msgctxt ""
@@ -3935,7 +3935,7 @@ msgctxt ""
"par_id3154241\n"
"help.text"
msgid "To insert the date as a field that does not update, click “Date (fixed)” in the <item type=\"menuitem\">Select</item> list."
-msgstr "Per inserir la data com a camp no actualitzable, feu clic a \"Data (fixa)\" a la llista <item type=\"menuitem\">Selecciona</item>."
+msgstr "Per a inserir la data com a camp no actualitzable, feu clic a «Data (fixa)» a la llista <item type=\"menuitem\">Selecciona</item>."
#: fields_enter.xhp
msgctxt ""
@@ -4911,7 +4911,7 @@ msgctxt ""
"hd_id7867366\n"
"help.text"
msgid "To Insert a Page Number"
-msgstr "Per inserir un número de pàgina"
+msgstr "Per a inserir un número de pàgina"
#: footer_pagenumber.xhp
msgctxt ""
@@ -4999,7 +4999,7 @@ msgctxt ""
"hd_id3155881\n"
"help.text"
msgid "To Insert a Footnote or Endnote"
-msgstr "Per inserir una nota al peu o una nota final"
+msgstr "Per a inserir una nota al peu o una nota final"
#: footnote_usage.xhp
msgctxt ""
@@ -5615,7 +5615,7 @@ msgctxt ""
"par_id3156240\n"
"help.text"
msgid "To insert an existing file as a subdocument, choose <emph>File</emph>, locate the file that you want to include, and then click <emph>OK</emph>."
-msgstr "Per inserir un fitxer existent com a un subdocument, trieu <emph>Fitxer</emph>, cerqueu el fitxer que voleu incloure i feu clic a <emph>D'acord</emph>."
+msgstr "Per a inserir un fitxer existent com a un subdocument, trieu <emph>Fitxer</emph>, cerqueu el fitxer que voleu incloure i feu clic a <emph>D'acord</emph>."
#: globaldoc_howtos.xhp
msgctxt ""
@@ -5631,7 +5631,7 @@ msgctxt ""
"par_id8550981\n"
"help.text"
msgid "To insert some text between subdocuments, choose <emph>Text</emph>. Then type the text. You cannot insert text next to an existing text entry in the Navigator."
-msgstr "Per inserir text entre subdocuments, trieu <emph>Text</emph>. A continuació, escriviu el text. No podeu inserir text al costat d'una entrada de text existent en el Navegador."
+msgstr "Per a inserir text entre subdocuments, trieu <emph>Text</emph>. A continuació, escriviu el text. No podeu inserir text al costat d'una entrada de text existent en el Navegador."
#: globaldoc_howtos.xhp
msgctxt ""
@@ -6175,7 +6175,7 @@ msgctxt ""
"hd_id3150505\n"
"help.text"
msgid "To Insert the Chapter Name and Number in a Header or a Footer"
-msgstr "Per inserir el nom i el número de capítol en una capçalera o en un peu"
+msgstr "Per a inserir el nom i el número de capítol en una capçalera o en un peu"
#: header_with_chapter.xhp
msgctxt ""
@@ -7791,7 +7791,7 @@ msgctxt ""
"hd_id5876949\n"
"help.text"
msgid "To Insert a Table of Contents"
-msgstr "Per inserir una taula de continguts"
+msgstr "Per a inserir una taula de continguts"
#: indices_toc.xhp
msgctxt ""
@@ -7967,7 +7967,7 @@ msgctxt ""
"hd_id3150231\n"
"help.text"
msgid "To Insert a User-Defined Index"
-msgstr "Per inserir un índex definit per l'usuari"
+msgstr "Per a inserir un índex definit per l'usuari"
#: indices_userdef.xhp
msgctxt ""
@@ -8343,7 +8343,7 @@ msgctxt ""
"par_id3149692\n"
"help.text"
msgid "To insert a scanned image, the scanner must be connected to your system and the scanner software drivers must be installed."
-msgstr "Per inserir una imatge escanejada, heu de tenir l'escàner connectat al sistema i els controladors del programari de l'escàner han d'estar instal·lats."
+msgstr "Per a inserir una imatge escanejada, heu de tenir l'escàner connectat al sistema i els controladors del programari de l'escàner han d'estar instal·lats."
#: insert_graphic_scan.xhp
msgctxt ""
@@ -8423,7 +8423,7 @@ msgctxt ""
"par_id3153403\n"
"help.text"
msgid "To insert a tab between the number or bullet and the paragraph text, click at the beginning of the paragraph, and then press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Tab."
-msgstr "Per inserir un tabulador entre el número o el pic i el text del paràgraf, feu clic a l'inici del paràgraf i premeu <switchinline select=\"sys\"><caseinline select=\"MAC\">Ordre</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Tab."
+msgstr "Per a inserir un tabulador entre el número o el pic i el text del paràgraf, feu clic a l'inici del paràgraf i premeu <switchinline select=\"sys\"><caseinline select=\"MAC\">Ordre</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Tab."
#: join_numbered_lists.xhp
msgctxt ""
@@ -8599,7 +8599,7 @@ msgctxt ""
"hd_id3155918\n"
"help.text"
msgid "To Insert Sections"
-msgstr "Per inserir seccions"
+msgstr "Per a inserir seccions"
#: keyboard.xhp
msgctxt ""
@@ -8655,7 +8655,7 @@ msgctxt ""
"hd_id3153367\n"
"help.text"
msgid "To Insert Text Tables"
-msgstr "Per inserir taules de text"
+msgstr "Per a inserir taules de text"
#: keyboard.xhp
msgctxt ""
@@ -9631,7 +9631,7 @@ msgctxt ""
"hd_id3149833\n"
"help.text"
msgid "To Insert a Manual Page Break"
-msgstr "Per inserir un salt de pàgina manual"
+msgstr "Per a inserir un salt de pàgina manual"
#: page_break.xhp
msgctxt ""
@@ -9991,7 +9991,7 @@ msgctxt ""
"hd_id6091494\n"
"help.text"
msgid "To Insert Page Numbers"
-msgstr "Per inserir números de pàgina"
+msgstr "Per a inserir números de pàgina"
#: pagenumbers.xhp
msgctxt ""
@@ -10527,7 +10527,7 @@ msgctxt ""
"par_id2118594\n"
"help.text"
msgid "To insert a manual page break at the cursor position, press <item type=\"keycode\">Ctrl+Enter</item> or choose <item type=\"menuitem\">Insert - Manual Break</item> and just click OK."
-msgstr "Per inserir un salt de pàgina manual a la posició del cursor, premeu <item type=\"keycode\">Ctrl+Retorn</item>, o bé trieu <item type=\"menuitem\">Insereix - Salt manual</item> i feu clic a D'acord."
+msgstr "Per a inserir un salt de pàgina manual a la posició del cursor, premeu <item type=\"keycode\">Ctrl+Retorn</item>, o bé trieu <item type=\"menuitem\">Insereix ▸ Salt manual</item> i feu clic a D'acord."
#: pageorientation.xhp
msgctxt ""
@@ -10567,7 +10567,7 @@ msgctxt ""
"par_id1811578\n"
"help.text"
msgid "To insert a \"page break with style\" at the cursor position, choose <item type=\"menuitem\">Insert - Manual Break</item>, select a <emph>Style</emph> name from the listbox, and click OK."
-msgstr "Per inserir un \"salt de pàgina amb estil\" a la posició del cursor, trieu <item type=\"menuitem\">Insereix - Salt manual</item>, seleccioneu un nom d'<emph>estil</emph> en el quadre de llista i feu clic a D'acord."
+msgstr "Per a inserir un \"salt de pàgina amb estil\" a la posició del cursor, trieu <item type=\"menuitem\">Insereix ▸ Salt manual</item>, seleccioneu un nom d'<emph>estil</emph> en el quadre de llista i feu clic a D'acord."
#: pageorientation.xhp
msgctxt ""
@@ -11567,7 +11567,7 @@ msgctxt ""
"hd_id3156105\n"
"help.text"
msgid "To Insert a Target"
-msgstr "Per inserir una destinació"
+msgstr "Per a inserir una destinació"
#: references.xhp
msgctxt ""
@@ -12495,7 +12495,7 @@ msgctxt ""
"hd_id3155863\n"
"help.text"
msgid "To Insert a New Section"
-msgstr "Per inserir una secció nova"
+msgstr "Per a inserir una secció nova"
#: section_insert.xhp
msgctxt ""
@@ -12543,7 +12543,7 @@ msgctxt ""
"hd_id3149635\n"
"help.text"
msgid "To Insert a Section as a Link"
-msgstr "Per inserir una secció com a enllaç"
+msgstr "Per a inserir una secció com a enllaç"
#: section_insert.xhp
msgctxt ""
@@ -12695,7 +12695,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 "Per inserir seccions de text que utilitzin un format de columna diferent del de l'estil de pàgina actual."
+msgstr "Per a inserir seccions de text que utilitzin un format de columna diferent del de l'estil de pàgina actual."
#: sections.xhp
msgctxt ""
@@ -12719,7 +12719,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 "Per inserir un paràgraf nou immediatament abans o després d'una secció, feu clic davant o darrere de la secció i premeu <switchinline select=\"sys\"><caseinline select=\"MAC\">Opció</caseinline><defaultinline>Alt</defaultinline></switchinline>+Retorn."
+msgstr "Per a inserir un paràgraf nou immediatament abans o després d'una secció, feu clic davant o darrere de la secció i premeu <switchinline select=\"sys\"><caseinline select=\"MAC\">Opció</caseinline><defaultinline>Alt</defaultinline></switchinline>+Retorn."
#: sections.xhp
msgctxt ""
@@ -13703,7 +13703,7 @@ msgctxt ""
"par_id3155906\n"
"help.text"
msgid "To insert a new row in a table, place the cursor in a table cell, press <switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>+Insert, and then press the up or down arrow key. You can also move the cursor to the last cell in the table, and then press Tab."
-msgstr "Per inserir una fila nova en una taula, situeu el cursor en una cel·la de la taula, premeu <switchinline select=\"sys\"><caseinline select=\"MAC\">Opció</caseinline><defaultinline>Alt</defaultinline></switchinline>+Inser i, a continuació, premeu la tecla de fletxa amunt o avall. També podeu moure el cursor fins a la darrera cel·la de la taula i prémer Tab."
+msgstr "Per a inserir una fila nova en una taula, situeu el cursor en una cel·la de la taula, premeu <switchinline select=\"sys\"><caseinline select=\"MAC\">Opció</caseinline><defaultinline>Alt</defaultinline></switchinline>+Inser i, a continuació, premeu la tecla de fletxa amunt o avall. També podeu moure el cursor fins a la darrera cel·la de la taula i prémer Tab."
#: table_cells.xhp
msgctxt ""
@@ -13711,7 +13711,7 @@ msgctxt ""
"par_id3147412\n"
"help.text"
msgid "To insert a new column, place the cursor in a table cell, press <switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>+Insert, and then press the left or right arrow key."
-msgstr "Per inserir una columna nova, situeu el cursor en una cel·la de la taula, premeu <switchinline select=\"sys\"><caseinline select=\"MAC\">Opció </caseinline><defaultinline>Alt</defaultinline></switchinline>+Inser i, a continuació, premeu la tecla de fletxa esquerra o dreta."
+msgstr "Per a inserir una columna nova, situeu el cursor en una cel·la de la taula, premeu <switchinline select=\"sys\"><caseinline select=\"MAC\">Opció </caseinline><defaultinline>Alt</defaultinline></switchinline>+Inser i, a continuació, premeu la tecla de fletxa esquerra o dreta."
#: table_cells.xhp
msgctxt ""
@@ -13831,7 +13831,7 @@ msgctxt ""
"hd_id3155908\n"
"help.text"
msgid "To Insert a Table From a Toolbar"
-msgstr "Per inserir una taula des d'una barra d'eines"
+msgstr "Per a inserir una taula des d'una barra d'eines"
#: table_insert.xhp
msgctxt ""
@@ -13871,7 +13871,7 @@ msgctxt ""
"hd_id3153135\n"
"help.text"
msgid "To Insert a Table With a Menu Command"
-msgstr "Per inserir una taula mitjançant una ordre de menú"
+msgstr "Per a inserir una taula mitjançant una ordre de menú"
#: table_insert.xhp
msgctxt ""
@@ -15831,7 +15831,7 @@ msgctxt ""
"hd_id1812799\n"
"help.text"
msgid "To Insert a Text File"
-msgstr "Per inserir un fitxer de text"
+msgstr "Per a inserir un fitxer de text"
#: textdoc_inframe.xhp
msgctxt ""
@@ -15871,7 +15871,7 @@ msgctxt ""
"hd_id3156105\n"
"help.text"
msgid "To Insert an Entire Text Document as a Link"
-msgstr "Per inserir tot un document de text com a enllaç"
+msgstr "Per a inserir tot un document de text com a enllaç"
#: textdoc_inframe.xhp
msgctxt ""
@@ -16127,7 +16127,7 @@ msgctxt ""
"par_id3153363\n"
"help.text"
msgid "To quickly insert a hyphen, click in the word where you want to add the hyphen, and then press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Hyphen(-)."
-msgstr "Per inserir ràpidament un guionet, feu clic a la paraula on vulgueu afegir el guionet i premeu <switchinline select=\"sys\"><caseinline select=\"MAC\">Ordre</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+guionet (-)."
+msgstr "Per a inserir ràpidament un guionet, feu clic a la paraula on vulgueu afegir el guionet i premeu <switchinline select=\"sys\"><caseinline select=\"MAC\">Ordre</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+guionet (-)."
#: using_hyphen.xhp
msgctxt ""
diff --git a/source/ca/officecfg/registry/data/org/openoffice/Office/UI.po b/source/ca/officecfg/registry/data/org/openoffice/Office/UI.po
index 7c180785ebd..cf149957368 100644
--- a/source/ca/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/ca/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-22 13:17+0200\n"
-"PO-Revision-Date: 2018-05-15 07:45+0000\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
+"PO-Revision-Date: 2018-06-05 07:44+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ca\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1526370319.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1528184696.000000\n"
#: BaseWindowState.xcu
msgctxt ""
@@ -149,7 +149,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Form Horizontal Scroll Bar"
-msgstr ""
+msgstr "Barra de desplaçament horitzontal de formulari"
#: BasicIDECommands.xcu
msgctxt ""
@@ -25342,7 +25342,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Tabbed"
-msgstr ""
+msgstr "Tabulat"
#: ToolbarMode.xcu
msgctxt ""
@@ -25351,7 +25351,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Groupedbar Compact"
-msgstr ""
+msgstr "Barra agrupada compacta"
#: ToolbarMode.xcu
msgctxt ""
@@ -25360,7 +25360,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Groupedbar"
-msgstr ""
+msgstr "Barra agrupada"
#: ToolbarMode.xcu
msgctxt ""
@@ -26520,8 +26520,8 @@ msgctxt ""
"..WriterCommands.UserInterface.Commands..uno:TextAttributes\n"
"Label\n"
"value.text"
-msgid "Text Attributes"
-msgstr "Atributs del text"
+msgid "Text Attributes..."
+msgstr "Atributs de text..."
#: WriterCommands.xcu
msgctxt ""
diff --git a/source/ca/readlicense_oo/docs.po b/source/ca/readlicense_oo/docs.po
index 7400e3c7b4b..3aff4756005 100644
--- a/source/ca/readlicense_oo/docs.po
+++ b/source/ca/readlicense_oo/docs.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: 2018-04-17 15:54+0200\n"
-"PO-Revision-Date: 2018-04-18 09:11+0000\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
+"PO-Revision-Date: 2018-06-05 07:44+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ca\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1524042705.000000\n"
+"X-POOTLE-MTIME: 1528184688.000000\n"
#: readme.xrm
msgctxt ""
@@ -117,8 +117,8 @@ msgctxt ""
"readme.xrm\n"
"macxiOSX\n"
"readmeitem.text"
-msgid "MacOSX 10.8 (Mountain Lion) or higher"
-msgstr "MacOSX 10.8 (Mountain Lion) o superior"
+msgid "MacOSX 10.9 (Mavericks) or higher"
+msgstr "MacOSX 10.9 (Mavericks) o superior"
#: readme.xrm
msgctxt ""
diff --git a/source/ca/sc/messages.po b/source/ca/sc/messages.po
index 6ece25ba772..1105e85ef06 100644
--- a/source/ca/sc/messages.po
+++ b/source/ca/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: 2018-05-22 13:16+0200\n"
-"PO-Revision-Date: 2018-05-18 08:53+0000\n"
+"POT-Creation-Date: 2018-06-12 14:40+0200\n"
+"PO-Revision-Date: 2018-06-13 10:48+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ca\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1526633605.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1528886936.000000\n"
#: sc/inc/compiler.hrc:27
msgctxt "RID_FUNCTION_CATEGORIES"
@@ -410,7 +410,7 @@ msgstr "Insereix un enllaç"
#: sc/inc/globstr.hrc:100
msgctxt "STR_UNDO_ENTERMATRIX"
msgid "Insert Array Formula"
-msgstr "Insereix la fórmula de matriu"
+msgstr "Insereix la fórmula matricial"
#: sc/inc/globstr.hrc:101
msgctxt "STR_UNDO_INSERTNOTE"
@@ -1787,7 +1787,7 @@ msgstr "Adapta l'àrea de la matriu"
#: sc/inc/globstr.hrc:373
msgctxt "STR_TIP_RESIZEMATRIX"
msgid "Array formula %1 R x %2 C"
-msgstr "Fórmula de matriu %1 R x %2 C"
+msgstr "Fórmula matricial %1 R x %2 C"
#: sc/inc/globstr.hrc:374
msgctxt "STR_UNDO_HANGULHANJA"
@@ -1870,16 +1870,21 @@ msgid "Nested arrays are not supported."
msgstr "No es permet l'ús de vectors imbricats."
#: sc/inc/globstr.hrc:390
+msgctxt "STR_ERR_LONG_BAD_ARRAY_CONTENT"
+msgid "Unsupported inline array content."
+msgstr "El contingut de les matrius en línia no és suportat."
+
+#: sc/inc/globstr.hrc:391
msgctxt "STR_UNDO_TEXTTOCOLUMNS"
msgid "Text to Columns"
msgstr "Text a columnes"
-#: sc/inc/globstr.hrc:391
+#: sc/inc/globstr.hrc:392
msgctxt "STR_DOC_UPDATED"
msgid "Your spreadsheet has been updated with changes saved by other users."
msgstr "S'ha actualitzat el full de càlcul amb els canvis desats per altres usuaris."
-#: sc/inc/globstr.hrc:392
+#: sc/inc/globstr.hrc:393
msgctxt "STR_DOC_WILLBESAVED"
msgid ""
"The spreadsheet must be saved now to activate sharing mode.\n"
@@ -1890,7 +1895,7 @@ msgstr ""
"\n"
"Voleu continuar?"
-#: sc/inc/globstr.hrc:393
+#: sc/inc/globstr.hrc:394
msgctxt "STR_DOC_WILLNOTBESAVED"
msgid ""
"Already resolved merge conflicts will be lost and your changes to the shared spreadsheet will not be saved.\n"
@@ -1901,7 +1906,7 @@ msgstr ""
"\n"
"Voleu continuar?"
-#: sc/inc/globstr.hrc:394
+#: sc/inc/globstr.hrc:395
msgctxt "STR_DOC_DISABLESHARED"
msgid ""
"Disabling shared mode of a spreadsheet hinders all other users of the shared spreadsheet to merge back their work.\n"
@@ -1912,7 +1917,7 @@ msgstr ""
"\n"
"Voleu continuar?"
-#: sc/inc/globstr.hrc:395
+#: sc/inc/globstr.hrc:396
msgctxt "STR_DOC_NOLONGERSHARED"
msgid ""
"This spreadsheet is no longer in shared mode.\n"
@@ -1923,7 +1928,7 @@ msgstr ""
"\n"
"Deseu aquest full de càlcul en un altre fitxer i incorporeu manualment els canvis que heu fet al full de càlcul compartit."
-#: sc/inc/globstr.hrc:396
+#: sc/inc/globstr.hrc:397
msgctxt "STR_FILE_LOCKED_TRY_LATER"
msgid ""
"The shared spreadsheet file is locked due to a merge in progress by user: '%1'\n"
@@ -1934,7 +1939,7 @@ msgstr ""
"\n"
"El mode compartit d'un fitxer blocat no es pot inhabilitar. Proveu-ho més tard."
-#: sc/inc/globstr.hrc:397
+#: sc/inc/globstr.hrc:398
msgctxt "STR_FILE_LOCKED_SAVE_LATER"
msgid ""
"The shared spreadsheet file is locked due to a merge in progress by user: '%1'\n"
@@ -1945,147 +1950,147 @@ msgstr ""
"\n"
"Proveu de desar els canvis més tard."
-#: sc/inc/globstr.hrc:398
+#: sc/inc/globstr.hrc:399
msgctxt "STR_UNKNOWN_USER"
msgid "Unknown User"
msgstr "Usuari desconegut"
-#: sc/inc/globstr.hrc:399
+#: sc/inc/globstr.hrc:400
msgctxt "STR_SHAPE_AUTOSHAPE"
msgid "AutoShape"
msgstr "Forma automàtica"
-#: sc/inc/globstr.hrc:400
+#: sc/inc/globstr.hrc:401
msgctxt "STR_SHAPE_RECTANGLE"
msgid "Rectangle"
msgstr "Rectangular"
-#: sc/inc/globstr.hrc:401
+#: sc/inc/globstr.hrc:402
msgctxt "STR_SHAPE_LINE"
msgid "Line"
msgstr "Línia"
-#: sc/inc/globstr.hrc:402
+#: sc/inc/globstr.hrc:403
msgctxt "STR_SHAPE_OVAL"
msgid "Oval"
msgstr "Oval"
-#: sc/inc/globstr.hrc:403
+#: sc/inc/globstr.hrc:404
msgctxt "STR_FORM_BUTTON"
msgid "Button"
msgstr "Botó"
-#: sc/inc/globstr.hrc:404
+#: sc/inc/globstr.hrc:405
msgctxt "STR_FORM_CHECKBOX"
msgid "Check Box"
msgstr "Casella de selecció"
-#: sc/inc/globstr.hrc:405
+#: sc/inc/globstr.hrc:406
msgctxt "STR_FORM_OPTIONBUTTON"
msgid "Option Button"
msgstr "Botó d'opció"
-#: sc/inc/globstr.hrc:406
+#: sc/inc/globstr.hrc:407
msgctxt "STR_FORM_LABEL"
msgid "Label"
msgstr "Etiqueta"
-#: sc/inc/globstr.hrc:407
+#: sc/inc/globstr.hrc:408
msgctxt "STR_FORM_LISTBOX"
msgid "List Box"
msgstr "Quadre de llista"
-#: sc/inc/globstr.hrc:408
+#: sc/inc/globstr.hrc:409
msgctxt "STR_FORM_GROUPBOX"
msgid "Group Box"
msgstr "Quadre de grup"
-#: sc/inc/globstr.hrc:409
+#: sc/inc/globstr.hrc:410
msgctxt "STR_FORM_DROPDOWN"
msgid "Drop Down"
msgstr "Llista desplegable"
-#: sc/inc/globstr.hrc:410
+#: sc/inc/globstr.hrc:411
msgctxt "STR_FORM_SPINNER"
msgid "Spinner"
msgstr "Botó de selecció de valor"
-#: sc/inc/globstr.hrc:411
+#: sc/inc/globstr.hrc:412
msgctxt "STR_FORM_SCROLLBAR"
msgid "Scroll Bar"
msgstr "Barra de desplaçament"
-#: sc/inc/globstr.hrc:412
+#: sc/inc/globstr.hrc:413
msgctxt "STR_STYLE_FAMILY_CELL"
msgid "Cell Styles"
msgstr "Estils de cel·la"
-#: sc/inc/globstr.hrc:413
+#: sc/inc/globstr.hrc:414
msgctxt "STR_STYLE_FAMILY_PAGE"
msgid "Page Styles"
msgstr "Estils de pàgina"
-#: sc/inc/globstr.hrc:414
+#: sc/inc/globstr.hrc:415
msgctxt "STR_ERR_DATAPILOTSOURCE"
msgid "Pivot table source data is invalid."
msgstr "Les dades font de la taula dinàmica no són vàlides."
-#: sc/inc/globstr.hrc:415
+#: sc/inc/globstr.hrc:416
msgctxt "STR_OPTIONS_WARN_SEPARATORS"
msgid "Because the current formula separator settings conflict with the locale, the formula separators have been reset to their default values."
msgstr "Els paràmetres del separador de fórmules estan en conflicte amb la configuració local. Els separadors de fórmules es reiniciaran als paràmetres per defecte."
-#: sc/inc/globstr.hrc:416
+#: sc/inc/globstr.hrc:417
msgctxt "STR_UNDO_INSERT_CURRENT_DATE"
msgid "Insert Current Date"
msgstr "Insereix la data actual"
-#: sc/inc/globstr.hrc:417
+#: sc/inc/globstr.hrc:418
msgctxt "STR_UNDO_INSERT_CURRENT_TIME"
msgid "Insert Current Time"
msgstr "Insereix l'hora actual"
-#: sc/inc/globstr.hrc:418
+#: sc/inc/globstr.hrc:419
msgctxt "STR_MANAGE_NAMES"
msgid "Manage Names..."
msgstr "Gestiona els noms..."
-#: sc/inc/globstr.hrc:419
+#: sc/inc/globstr.hrc:420
msgctxt "STR_HEADER_NAME"
msgid "Name"
msgstr "Nom"
-#: sc/inc/globstr.hrc:420
+#: sc/inc/globstr.hrc:421
msgctxt "STR_HEADER_RANGE_OR_EXPR"
msgid "Range or formula expression"
msgstr "Interval o expressió de fórmula"
-#: sc/inc/globstr.hrc:421
+#: sc/inc/globstr.hrc:422
msgctxt "STR_HEADER_SCOPE"
msgid "Scope"
msgstr "Àmbit"
-#: sc/inc/globstr.hrc:422
+#: sc/inc/globstr.hrc:423
msgctxt "STR_MULTI_SELECT"
msgid "(multiple)"
msgstr "(múltiple)"
-#: sc/inc/globstr.hrc:423
+#: sc/inc/globstr.hrc:424
msgctxt "STR_GLOBAL_SCOPE"
msgid "Document (Global)"
msgstr "Document (global)"
-#: sc/inc/globstr.hrc:424
+#: sc/inc/globstr.hrc:425
msgctxt "STR_ERR_NAME_EXISTS"
msgid "Invalid name. Already in use for the selected scope."
msgstr "El nom no és vàlid. El nom ja es troba en ús en el context seleccionat."
-#: sc/inc/globstr.hrc:425
+#: sc/inc/globstr.hrc:426
msgctxt "STR_ERR_NAME_INVALID"
msgid "Invalid name. Only use letters, numbers and underscore."
msgstr "El nom no és vàlid. Utilitzeu només lletres, números i guions baixos."
-#: sc/inc/globstr.hrc:426
+#: sc/inc/globstr.hrc:427
msgctxt "STR_UNSAVED_EXT_REF"
msgid ""
"This Document contains external references to unsaved documents.\n"
@@ -2096,217 +2101,217 @@ msgstr ""
"\n"
"Voleu continuar?"
-#: sc/inc/globstr.hrc:427
+#: sc/inc/globstr.hrc:428
msgctxt "STR_CLOSE_WITH_UNSAVED_REFS"
msgid "This Document is referenced by another document and not yet saved. Closing it without saving will result in data loss."
msgstr "Un altre document fa referència a aquest document i encara s'ha desat. Si el tanqueu sense desar-lo, es perdran dades."
-#: sc/inc/globstr.hrc:428
+#: sc/inc/globstr.hrc:429
msgctxt "STR_HEADER_RANGE"
msgid "Range"
msgstr "Interval"
-#: sc/inc/globstr.hrc:429
+#: sc/inc/globstr.hrc:430
msgctxt "STR_HEADER_COND"
msgid "First Condition"
msgstr "Primera condició"
-#: sc/inc/globstr.hrc:430
+#: sc/inc/globstr.hrc:431
msgctxt "STR_COND_CONDITION"
msgid "Cell value is"
msgstr "El valor de la cel·la és"
-#: sc/inc/globstr.hrc:431
+#: sc/inc/globstr.hrc:432
msgctxt "STR_COND_COLORSCALE"
msgid "ColorScale"
msgstr "Escala de colors"
-#: sc/inc/globstr.hrc:432
+#: sc/inc/globstr.hrc:433
msgctxt "STR_COND_DATABAR"
msgid "DataBar"
msgstr "Barra de dades"
-#: sc/inc/globstr.hrc:433
+#: sc/inc/globstr.hrc:434
msgctxt "STR_COND_ICONSET"
msgid "IconSet"
msgstr "Joc d'icones"
-#: sc/inc/globstr.hrc:434
+#: sc/inc/globstr.hrc:435
msgctxt "STR_COND_BETWEEN"
msgid "between"
msgstr "entre"
-#: sc/inc/globstr.hrc:435
+#: sc/inc/globstr.hrc:436
msgctxt "STR_COND_NOTBETWEEN"
msgid "not between"
msgstr "fora de l'interval entre"
-#: sc/inc/globstr.hrc:436
+#: sc/inc/globstr.hrc:437
msgctxt "STR_COND_UNIQUE"
msgid "unique"
msgstr "únic"
-#: sc/inc/globstr.hrc:437
+#: sc/inc/globstr.hrc:438
msgctxt "STR_COND_DUPLICATE"
msgid "duplicate"
msgstr "duplicat"
-#: sc/inc/globstr.hrc:438
+#: sc/inc/globstr.hrc:439
msgctxt "STR_COND_FORMULA"
msgid "Formula is"
msgstr "La fórmula és"
-#: sc/inc/globstr.hrc:439
+#: sc/inc/globstr.hrc:440
msgctxt "STR_COND_TOP10"
msgid "Top Elements"
msgstr "Elements superiors"
-#: sc/inc/globstr.hrc:440
+#: sc/inc/globstr.hrc:441
msgctxt "STR_COND_BOTTOM10"
msgid "Bottom Elements"
msgstr "Elements inferiors"
-#: sc/inc/globstr.hrc:441
+#: sc/inc/globstr.hrc:442
msgctxt "STR_COND_TOP_PERCENT"
msgid "Top Percent"
msgstr "Percentatge superior"
-#: sc/inc/globstr.hrc:442
+#: sc/inc/globstr.hrc:443
msgctxt "STR_COND_DATE"
msgid "Date is"
msgstr "La data és"
-#: sc/inc/globstr.hrc:443
+#: sc/inc/globstr.hrc:444
msgctxt "STR_COND_BOTTOM_PERCENT"
msgid "Bottom Percent"
msgstr "Percentatge inferior"
-#: sc/inc/globstr.hrc:444
+#: sc/inc/globstr.hrc:445
msgctxt "STR_COND_ABOVE_AVERAGE"
msgid "Above Average"
msgstr "Per sobre la mitjana"
-#: sc/inc/globstr.hrc:445
+#: sc/inc/globstr.hrc:446
msgctxt "STR_COND_BELOW_AVERAGE"
msgid "Below Average"
msgstr "Per sota la mitjana"
-#: sc/inc/globstr.hrc:446
+#: sc/inc/globstr.hrc:447
msgctxt "STR_COND_ABOVE_EQUAL_AVERAGE"
msgid "Above or equal Average"
msgstr "Igual o superior a la mitjana"
-#: sc/inc/globstr.hrc:447
+#: sc/inc/globstr.hrc:448
msgctxt "STR_COND_BELOW_EQUAL_AVERAGE"
msgid "Below or equal Average"
msgstr "Igual o inferior a la mitjana"
-#: sc/inc/globstr.hrc:448
+#: sc/inc/globstr.hrc:449
msgctxt "STR_COND_ERROR"
msgid "an Error code"
msgstr "un codi d'error"
-#: sc/inc/globstr.hrc:449
+#: sc/inc/globstr.hrc:450
msgctxt "STR_COND_NOERROR"
msgid "not an Error code"
msgstr "no un codi d'error"
-#: sc/inc/globstr.hrc:450
+#: sc/inc/globstr.hrc:451
msgctxt "STR_COND_BEGINS_WITH"
msgid "Begins with"
msgstr "Comença per"
-#: sc/inc/globstr.hrc:451
+#: sc/inc/globstr.hrc:452
msgctxt "STR_COND_ENDS_WITH"
msgid "Ends with"
msgstr "Acaba en"
-#: sc/inc/globstr.hrc:452
+#: sc/inc/globstr.hrc:453
msgctxt "STR_COND_CONTAINS"
msgid "Contains"
msgstr "Conté"
-#: sc/inc/globstr.hrc:453
+#: sc/inc/globstr.hrc:454
msgctxt "STR_COND_NOT_CONTAINS"
msgid "Not Contains"
msgstr "No conté"
-#: sc/inc/globstr.hrc:454
+#: sc/inc/globstr.hrc:455
msgctxt "STR_COND_TODAY"
msgid "today"
msgstr "avui"
-#: sc/inc/globstr.hrc:455
+#: sc/inc/globstr.hrc:456
msgctxt "STR_COND_YESTERDAY"
msgid "yesterday"
msgstr "ahir"
-#: sc/inc/globstr.hrc:456
+#: sc/inc/globstr.hrc:457
msgctxt "STR_COND_TOMORROW"
msgid "tomorrow"
msgstr "demà"
-#: sc/inc/globstr.hrc:457
+#: sc/inc/globstr.hrc:458
msgctxt "STR_COND_LAST7DAYS"
msgid "in the last 7 days"
msgstr "en els darrers 7 dies"
-#: sc/inc/globstr.hrc:458
+#: sc/inc/globstr.hrc:459
msgctxt "STR_COND_THISWEEK"
msgid "this week"
msgstr "aquesta setmana"
-#: sc/inc/globstr.hrc:459
+#: sc/inc/globstr.hrc:460
msgctxt "STR_COND_LASTWEEK"
msgid "last week"
msgstr "la setmana passada"
-#: sc/inc/globstr.hrc:460
+#: sc/inc/globstr.hrc:461
msgctxt "STR_COND_NEXTWEEK"
msgid "next week"
msgstr "la setmana vinent"
-#: sc/inc/globstr.hrc:461
+#: sc/inc/globstr.hrc:462
msgctxt "STR_COND_THISMONTH"
msgid "this month"
msgstr "aquest mes"
-#: sc/inc/globstr.hrc:462
+#: sc/inc/globstr.hrc:463
msgctxt "STR_COND_LASTMONTH"
msgid "last month"
msgstr "el mes passat"
-#: sc/inc/globstr.hrc:463
+#: sc/inc/globstr.hrc:464
msgctxt "STR_COND_NEXTMONTH"
msgid "next month"
msgstr "mes següent"
-#: sc/inc/globstr.hrc:464
+#: sc/inc/globstr.hrc:465
msgctxt "STR_COND_THISYEAR"
msgid "this year"
msgstr "aquest any"
-#: sc/inc/globstr.hrc:465
+#: sc/inc/globstr.hrc:466
msgctxt "STR_COND_LASTYEAR"
msgid "last year"
msgstr "l'any passat"
-#: sc/inc/globstr.hrc:466
+#: sc/inc/globstr.hrc:467
msgctxt "STR_COND_NEXTYEAR"
msgid "next year"
msgstr "l'any vinent"
-#: sc/inc/globstr.hrc:467
+#: sc/inc/globstr.hrc:468
msgctxt "STR_COND_AND"
msgid "and"
msgstr "i"
-#: sc/inc/globstr.hrc:468
+#: sc/inc/globstr.hrc:469
msgctxt "STR_ERR_CONDFORMAT_PROTECTED"
msgid "Conditional Formats can not be created, deleted or changed in protected sheets."
msgstr "Els formats condicionals no es poden crear, suprimir o canviar als fulls protegits."
-#: sc/inc/globstr.hrc:469
+#: sc/inc/globstr.hrc:470
msgctxt "STR_EDIT_EXISTING_COND_FORMATS"
msgid ""
"The selected cell already contains conditional formatting. You can either edit the existing conditional format or you define a new overlapping conditional format.\n"
@@ -2317,7 +2322,7 @@ msgstr ""
"\n"
"Voleu editar la formatació condicional consistent?"
-#: sc/inc/globstr.hrc:470
+#: sc/inc/globstr.hrc:471
msgctxt "STR_QUERY_FORMULA_RECALC_ONLOAD_ODS"
msgid ""
"This document was last saved by an application other than %PRODUCTNAME. Some formula cells may produce different results when recalculated.\n"
@@ -2328,7 +2333,7 @@ msgstr ""
"\n"
"Voleu recalcular ara totes les cel·les de fórmula?"
-#: sc/inc/globstr.hrc:471
+#: sc/inc/globstr.hrc:472
msgctxt "STR_QUERY_FORMULA_RECALC_ONLOAD_XLS"
msgid ""
"This document was last saved by Excel. Some formula cells may produce different results when recalculated.\n"
@@ -2339,77 +2344,77 @@ msgstr ""
"\n"
"Voleu recalcular ara totes les cel·les de fórmula?"
-#: sc/inc/globstr.hrc:472
+#: sc/inc/globstr.hrc:473
msgctxt "STR_NO_INSERT_DELETE_OVER_PIVOT_TABLE"
msgid "You cannot insert or delete cells when the affected range intersects with pivot table."
msgstr "No podeu inserir ni suprimir cel·les mentre l'interval afectat interseca amb una taula dinàmica."
-#: sc/inc/globstr.hrc:473
+#: sc/inc/globstr.hrc:474
msgctxt "STR_DPFIELD_GROUP_BY_SECONDS"
msgid "Seconds"
msgstr "Segons"
-#: sc/inc/globstr.hrc:474
+#: sc/inc/globstr.hrc:475
msgctxt "STR_DPFIELD_GROUP_BY_MINUTES"
msgid "Minutes"
msgstr "minuts"
-#: sc/inc/globstr.hrc:475
+#: sc/inc/globstr.hrc:476
msgctxt "STR_DPFIELD_GROUP_BY_HOURS"
msgid "Hours"
msgstr "Hores"
-#: sc/inc/globstr.hrc:476
+#: sc/inc/globstr.hrc:477
msgctxt "STR_DPFIELD_GROUP_BY_DAYS"
msgid "Days"
msgstr "Dies"
-#: sc/inc/globstr.hrc:477
+#: sc/inc/globstr.hrc:478
msgctxt "STR_DPFIELD_GROUP_BY_MONTHS"
msgid "Months"
msgstr "Mesos"
-#: sc/inc/globstr.hrc:478
+#: sc/inc/globstr.hrc:479
msgctxt "STR_DPFIELD_GROUP_BY_QUARTERS"
msgid "Quarters"
msgstr "Trimestres"
-#: sc/inc/globstr.hrc:479
+#: sc/inc/globstr.hrc:480
msgctxt "STR_DPFIELD_GROUP_BY_YEARS"
msgid "Years"
msgstr "Anys"
-#: sc/inc/globstr.hrc:480
+#: sc/inc/globstr.hrc:481
msgctxt "STR_INVALIDVAL"
msgid "Invalid target value."
msgstr "El valor de l'objectiu no és vàlid."
-#: sc/inc/globstr.hrc:481
+#: sc/inc/globstr.hrc:482
msgctxt "STR_INVALIDVAR"
msgid "Undefined name for variable cell."
msgstr "No s'ha definit el nom de la cel·la de la variable."
-#: sc/inc/globstr.hrc:482
+#: sc/inc/globstr.hrc:483
msgctxt "STR_INVALIDFORM"
msgid "Undefined name as formula cell."
msgstr "No s'ha definit el nom de la cel·la de la fórmula."
-#: sc/inc/globstr.hrc:483
+#: sc/inc/globstr.hrc:484
msgctxt "STR_NOFORMULA"
msgid "Formula cell must contain a formula."
msgstr "La cel·la de destinació ha de contenir una fórmula."
-#: sc/inc/globstr.hrc:484
+#: sc/inc/globstr.hrc:485
msgctxt "STR_INVALIDINPUT"
msgid "Invalid input."
msgstr "L'entrada no és vàlida."
-#: sc/inc/globstr.hrc:485
+#: sc/inc/globstr.hrc:486
msgctxt "STR_INVALIDCONDITION"
msgid "Invalid condition."
msgstr "La condició no és vàlida."
-#: sc/inc/globstr.hrc:486
+#: sc/inc/globstr.hrc:487
msgctxt "STR_QUERYREMOVE"
msgid ""
"Should the entry\n"
@@ -2419,133 +2424,133 @@ msgstr ""
"Voleu suprimir l'entrada\n"
"#?"
-#: sc/inc/globstr.hrc:487
+#: sc/inc/globstr.hrc:488
msgctxt "STR_COPYLIST"
msgid "Copy List"
msgstr "Copia la llista"
-#: sc/inc/globstr.hrc:488
+#: sc/inc/globstr.hrc:489
msgctxt "STR_COPYFROM"
msgid "List from"
msgstr "Llista des de"
-#: sc/inc/globstr.hrc:489
+#: sc/inc/globstr.hrc:490
msgctxt "STR_COPYERR"
msgid "Cells without text have been ignored."
msgstr "No s'han tingut en compte cel·les sense text."
-#: sc/inc/globstr.hrc:490
+#: sc/inc/globstr.hrc:491
#, c-format
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%s-click to follow hyperlink:"
msgstr "Feu %s-clic per a seguir l'enllaç:"
-#: sc/inc/globstr.hrc:491
+#: sc/inc/globstr.hrc:492
msgctxt "STR_CLICKHYPERLINK"
msgid "click to open hyperlink:"
msgstr "Feu clic per obrir l'hiperenllaç:"
-#: sc/inc/globstr.hrc:492
+#: sc/inc/globstr.hrc:493
msgctxt "STR_PRINT_PREVIEW_NODATA"
msgid "No Data"
msgstr "Sense dades"
-#: sc/inc/globstr.hrc:493
+#: sc/inc/globstr.hrc:494
msgctxt "STR_PRINT_PREVIEW_EMPTY_RANGE"
msgid "Print Range Empty"
msgstr "L'interval d'impressió és buit"
-#: sc/inc/globstr.hrc:494
+#: sc/inc/globstr.hrc:495
msgctxt "STR_UNDO_CONDFORMAT"
msgid "Conditional Format"
msgstr "Formatació condicional"
-#: sc/inc/globstr.hrc:495
+#: sc/inc/globstr.hrc:496
msgctxt "STR_UNDO_CONDFORMAT_LIST"
msgid "Conditional Formats"
msgstr "Formats condicionals"
-#: sc/inc/globstr.hrc:496
+#: sc/inc/globstr.hrc:497
msgctxt "STR_UNDO_FORMULA_TO_VALUE"
msgid "Convert Formula To Value"
msgstr "Converteix la fórmula en el valor"
-#: sc/inc/globstr.hrc:497
+#: sc/inc/globstr.hrc:498
msgctxt "STR_UNQUOTED_STRING"
msgid "Strings without quotes are interpreted as column/row labels."
msgstr "Les cadenes sense cometes s'interpreten com a etiquetes de la columna o de la fila."
-#: sc/inc/globstr.hrc:498
+#: sc/inc/globstr.hrc:499
msgctxt "STR_ENTER_VALUE"
msgid "Enter a value!"
msgstr "Introduïu un valor!"
-#: sc/inc/globstr.hrc:499
+#: sc/inc/globstr.hrc:500
msgctxt "STR_TABLE_COUNT"
msgid "Sheet %1 of %2"
msgstr "Full %1 de %2"
-#: sc/inc/globstr.hrc:500
+#: sc/inc/globstr.hrc:501
msgctxt "STR_FUNCTIONS_FOUND"
msgid "%1 and %2 more"
msgstr "%1 i %2 més"
-#: sc/inc/globstr.hrc:501
+#: sc/inc/globstr.hrc:502
msgctxt "STR_GENERAL"
msgid "General"
msgstr "General"
-#: sc/inc/globstr.hrc:502
+#: sc/inc/globstr.hrc:503
msgctxt "STR_NUMBER"
msgid "Number"
msgstr "Número"
-#: sc/inc/globstr.hrc:503
+#: sc/inc/globstr.hrc:504
msgctxt "STR_PERCENT"
msgid "Percent"
msgstr "Percentatge"
-#: sc/inc/globstr.hrc:504
+#: sc/inc/globstr.hrc:505
msgctxt "STR_CURRENCY"
msgid "Currency"
msgstr "Moneda"
-#: sc/inc/globstr.hrc:505
+#: sc/inc/globstr.hrc:506
msgctxt "STR_DATE"
msgid "Date"
msgstr "Data"
-#: sc/inc/globstr.hrc:506
+#: sc/inc/globstr.hrc:507
msgctxt "STR_TIME"
msgid "Time"
msgstr "Hora"
-#: sc/inc/globstr.hrc:507
+#: sc/inc/globstr.hrc:508
msgctxt "STR_SCIENTIFIC"
msgid "Scientific"
msgstr "Científic"
-#: sc/inc/globstr.hrc:508
+#: sc/inc/globstr.hrc:509
msgctxt "STR_FRACTION"
msgid "Fraction"
msgstr "Fracció"
-#: sc/inc/globstr.hrc:509
+#: sc/inc/globstr.hrc:510
msgctxt "STR_BOOLEAN_VALUE"
msgid "Boolean Value"
msgstr "Valor booleà"
-#: sc/inc/globstr.hrc:510
+#: sc/inc/globstr.hrc:511
msgctxt "STR_TEXT"
msgid "Text"
msgstr "Text"
-#: sc/inc/globstr.hrc:511
+#: sc/inc/globstr.hrc:512
msgctxt "STR_QUERY_PIVOTTABLE_DELTAB"
msgid "The selected sheet(s) contain source data of related pivot tables that will be lost. Are you sure you want to delete the selected sheet(s)?"
msgstr "Els fulls seleccionats contenen dades que són font per taules dinàmiques i es perdran amb aquesta acció. Esteu segur que voleu suprimir els fulls seleccionats?"
-#: sc/inc/globstr.hrc:512
+#: sc/inc/globstr.hrc:513
msgctxt "STR_ERR_NAME_INVALID_CELL_REF"
msgid "Invalid name. Reference to a cell, or a range of cells not allowed."
msgstr "El nom no és vàlid. La referència a la cel·la, o l'interval de cel·les, no és permès."
@@ -10487,8 +10492,8 @@ msgstr "Mode"
#: sc/inc/scfuncs.hrc:3010
msgctxt "SC_OPCODE_T_TEST"
-msgid "Mode specifies the number of distribution tails to return. 1= one-tailed, 2 = two-tailed distribution"
-msgstr "El mode indica el nombre de cues de distribució a retornar. 1 = d'una cua, 2 = distribució de dues cues."
+msgid "Mode specifies the number of distribution tails to return. 1 = one-tailed, 2 = two-tailed distribution"
+msgstr "El mode indica el nombre de cues de distribució a retornar. 1 = una cua, 2 = bilateral"
#: sc/inc/scfuncs.hrc:3011
msgctxt "SC_OPCODE_T_TEST"
@@ -10532,7 +10537,7 @@ msgstr "Mode"
#: sc/inc/scfuncs.hrc:3024
msgctxt "SC_OPCODE_T_TEST_MS"
-msgid "Mode specifies the number of distribution tails to return. 1= one-tailed, 2 = two-tailed distribution"
+msgid "Mode specifies the number of distribution tails to return. 1 = one-tailed, 2 = two-tailed distribution"
msgstr "El mode indica el nombre de cues de distribució a retornar. 1 = una cua, 2 = bilateral"
#: sc/inc/scfuncs.hrc:3025
@@ -18019,22 +18024,22 @@ msgctxt "mergecellsdialog|MergeCellsDialog"
msgid "Merge Cells"
msgstr "Fusiona les cel·les"
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:81
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:84
msgctxt "mergecellsdialog|label"
msgid "Some cells are not empty."
msgstr "Algunes cel·les no són buides."
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:96
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:99
msgctxt "mergecellsdialog|move-cells-radio"
msgid "Move the contents of the hidden cells into the first cell"
msgstr "Mou el contingut de les cel·les ocultes a la primera cel·la"
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:112
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:115
msgctxt "mergecellsdialog|empty-cells-radio"
msgid "Empty the contents of the hidden cells"
msgstr "Buida el contingut de les cel·les ocultes"
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:128
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:131
msgctxt "mergecellsdialog|keep-content-radio"
msgid "Keep the contents of the hidden cells"
msgstr "Conserva el contingut de les cel·les ocultes"
@@ -18302,12 +18307,12 @@ msgstr "_Comprova si hi ha actualitzacions..."
#: sc/uiconfig/scalc/ui/notebookbar.ui:1952
msgctxt "notebookbar|FileLabel"
msgid "_File"
-msgstr ""
+msgstr "_Fitxer"
#: sc/uiconfig/scalc/ui/notebookbar.ui:1971
msgctxt "notebookbar|HelpMenuButton"
msgid "_Help"
-msgstr ""
+msgstr "_Ajuda"
#: sc/uiconfig/scalc/ui/notebookbar.ui:2769
msgctxt "notebookbar|FileLabel"
@@ -18333,7 +18338,7 @@ msgstr "Redueix el sagnat"
#: sc/uiconfig/scalc/ui/notebookbar.ui:4436
msgctxt "notebookbar|HomeMenuButton"
msgid "_Home"
-msgstr ""
+msgstr "_Inici"
#: sc/uiconfig/scalc/ui/notebookbar.ui:4544
msgctxt "notebookbar|CalcLabel"
@@ -18343,12 +18348,12 @@ msgstr "Inici"
#: sc/uiconfig/scalc/ui/notebookbar.ui:4991
msgctxt "notebookbar|FieldMenuButton"
msgid "Fiel_d"
-msgstr ""
+msgstr "_Camp"
#: sc/uiconfig/scalc/ui/notebookbar.ui:5496
msgctxt "notebookbar|InsertMenuButton"
msgid "_Insert"
-msgstr ""
+msgstr "_Insereix"
#: sc/uiconfig/scalc/ui/notebookbar.ui:5581
msgctxt "notebookbar|InsertLabel"
@@ -18358,7 +18363,7 @@ msgstr "Insereix"
#: sc/uiconfig/scalc/ui/notebookbar.ui:5610
msgctxt "notebookbar|reviewb"
msgid "Pag_e"
-msgstr ""
+msgstr "_Pàgina"
#: sc/uiconfig/scalc/ui/notebookbar.ui:6335
msgctxt "notebookbar|PageLayoutLabel"
@@ -18373,7 +18378,7 @@ msgstr "Estadí_stiques"
#: sc/uiconfig/scalc/ui/notebookbar.ui:7304
msgctxt "notebookbar|DataMenuButton"
msgid "_Data"
-msgstr ""
+msgstr "_Dades"
#: sc/uiconfig/scalc/ui/notebookbar.ui:7412
msgctxt "notebookbar|DataLabel"
@@ -18383,7 +18388,7 @@ msgstr "Dades"
#: sc/uiconfig/scalc/ui/notebookbar.ui:8035
msgctxt "notebookbar|ReviewMenuButton"
msgid "_Review"
-msgstr ""
+msgstr "_Revisió"
#: sc/uiconfig/scalc/ui/notebookbar.ui:8120
msgctxt "notebookbar|ReviewLabel"
@@ -18393,7 +18398,7 @@ msgstr "Revisió"
#: sc/uiconfig/scalc/ui/notebookbar.ui:8896
msgctxt "notebookbar|ViewMenuButton"
msgid "_View"
-msgstr ""
+msgstr "_Visualitza"
#: sc/uiconfig/scalc/ui/notebookbar.ui:8981
msgctxt "notebookbar|ViewLabel"
@@ -18403,7 +18408,7 @@ msgstr "Visualització"
#: sc/uiconfig/scalc/ui/notebookbar.ui:9008
msgctxt "notebookbar|GraphicMenuButton"
msgid "_Graphic"
-msgstr ""
+msgstr "_Imatge"
#: sc/uiconfig/scalc/ui/notebookbar.ui:9949
msgctxt "notebookbar|ImageLabel"
@@ -18413,12 +18418,12 @@ msgstr "Imatge"
#: sc/uiconfig/scalc/ui/notebookbar.ui:11228
msgctxt "notebookbar|DrawMenuButton"
msgid "D_raw"
-msgstr ""
+msgstr "D_ibuix"
#: sc/uiconfig/scalc/ui/notebookbar.ui:11340
msgctxt "notebookbar|DrawLabel"
msgid "Draw"
-msgstr ""
+msgstr "Dibuix"
#: sc/uiconfig/scalc/ui/notebookbar.ui:11993
msgctxt "notebookbar|frame:MenuDraw"
@@ -18433,12 +18438,12 @@ msgstr "Objecte"
#: sc/uiconfig/scalc/ui/notebookbar.ui:12113
msgctxt "notebookbar|ToolsMenuButton"
msgid "_Tools"
-msgstr ""
+msgstr "_Eines"
#: sc/uiconfig/scalc/ui/notebookbar.ui:13250
msgctxt "notebookbar|DevLabel"
msgid "Tools"
-msgstr ""
+msgstr "Eines"
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:2945
msgctxt "notebookbar_groupedbar_compact|Menu"
diff --git a/source/ca/scp2/source/ooo.po b/source/ca/scp2/source/ooo.po
index e9e45501938..35139fd3f6e 100644
--- a/source/ca/scp2/source/ooo.po
+++ b/source/ca/scp2/source/ooo.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2018-05-23 23:20+0200\n"
-"PO-Revision-Date: 2018-01-15 11:50+0000\n"
+"PO-Revision-Date: 2018-05-28 07:00+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ca\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1516017007.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1527490840.000000\n"
#: folderitem_ooo.ulf
msgctxt ""
@@ -1886,7 +1886,7 @@ msgctxt ""
"STR_NAME_MODULE_LANGPACK_FY\n"
"LngText.text"
msgid "Frisian"
-msgstr ""
+msgstr "frisó"
#: module_langpack.ulf
msgctxt ""
@@ -1894,7 +1894,7 @@ msgctxt ""
"STR_DESC_MODULE_LANGPACK_FY\n"
"LngText.text"
msgid "Installs the Frisian user interface"
-msgstr ""
+msgstr "Instal·la la interfície d'usuari en frisó"
#: module_langpack.ulf
msgctxt ""
diff --git a/source/ca/sd/messages.po b/source/ca/sd/messages.po
index cc687a59eca..d7b329aeeaa 100644
--- a/source/ca/sd/messages.po
+++ b/source/ca/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: 2018-05-22 13:16+0200\n"
-"PO-Revision-Date: 2018-05-18 08:53+0000\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
+"PO-Revision-Date: 2018-05-28 07:11+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ca\n"
@@ -14,169 +14,169 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1526633582.000000\n"
+"X-POOTLE-MTIME: 1527491470.000000\n"
-#: sd/inc/DocumentRenderer.hrc:29
+#: sd/inc/DocumentRenderer.hrc:27
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Slides"
msgstr "Diapositives"
-#: sd/inc/DocumentRenderer.hrc:30
+#: sd/inc/DocumentRenderer.hrc:28
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Handouts"
msgstr "Prospectes"
-#: sd/inc/DocumentRenderer.hrc:31
+#: sd/inc/DocumentRenderer.hrc:29
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Notes"
msgstr "Notes"
-#: sd/inc/DocumentRenderer.hrc:32
+#: sd/inc/DocumentRenderer.hrc:30
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Outline"
msgstr "Esquema"
-#: sd/inc/DocumentRenderer.hrc:37
+#: sd/inc/DocumentRenderer.hrc:35
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "According to layout"
msgstr "Segons la disposició"
-#: sd/inc/DocumentRenderer.hrc:38
+#: sd/inc/DocumentRenderer.hrc:36
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "1"
msgstr "1"
-#: sd/inc/DocumentRenderer.hrc:39
+#: sd/inc/DocumentRenderer.hrc:37
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "2"
msgstr "2"
-#: sd/inc/DocumentRenderer.hrc:40
+#: sd/inc/DocumentRenderer.hrc:38
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "3"
msgstr "3"
-#: sd/inc/DocumentRenderer.hrc:41
+#: sd/inc/DocumentRenderer.hrc:39
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "4"
msgstr "4"
-#: sd/inc/DocumentRenderer.hrc:42
+#: sd/inc/DocumentRenderer.hrc:40
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "6"
msgstr "6"
-#: sd/inc/DocumentRenderer.hrc:43
+#: sd/inc/DocumentRenderer.hrc:41
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "9"
msgstr "9"
-#: sd/inc/DocumentRenderer.hrc:48
+#: sd/inc/DocumentRenderer.hrc:46
msgctxt "STR_IMPRESS_PRINT_UI_ORDER_CHOICES"
msgid "Left to right, then down"
msgstr "D'esquerra a dreta, i avall"
-#: sd/inc/DocumentRenderer.hrc:49
+#: sd/inc/DocumentRenderer.hrc:47
msgctxt "STR_IMPRESS_PRINT_UI_ORDER_CHOICES"
msgid "Top to bottom, then right"
msgstr "De dalt a baix, i a la dreta"
-#: sd/inc/DocumentRenderer.hrc:54
+#: sd/inc/DocumentRenderer.hrc:52
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Original colors"
msgstr "Colors originals"
-#: sd/inc/DocumentRenderer.hrc:55
+#: sd/inc/DocumentRenderer.hrc:53
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Grayscale"
msgstr "Escala de grisos"
-#: sd/inc/DocumentRenderer.hrc:56
+#: sd/inc/DocumentRenderer.hrc:54
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Black & white"
msgstr "Blanc i negre"
-#: sd/inc/DocumentRenderer.hrc:61
+#: sd/inc/DocumentRenderer.hrc:59
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Original size"
msgstr "Mida original"
-#: sd/inc/DocumentRenderer.hrc:62
+#: sd/inc/DocumentRenderer.hrc:60
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Fit to printable page"
msgstr "Ajusta a la pàgina imprimible"
-#: sd/inc/DocumentRenderer.hrc:63
+#: sd/inc/DocumentRenderer.hrc:61
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Distribute on multiple sheets of paper"
msgstr "Distribueix en diversos fulls de paper"
-#: sd/inc/DocumentRenderer.hrc:64
+#: sd/inc/DocumentRenderer.hrc:62
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Tile sheet of paper with repeated slides"
msgstr "Crea un mosaic al full de paper amb les diapositives repetides"
-#: sd/inc/DocumentRenderer.hrc:69
+#: sd/inc/DocumentRenderer.hrc:67
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Original size"
msgstr "Mida original"
-#: sd/inc/DocumentRenderer.hrc:70
+#: sd/inc/DocumentRenderer.hrc:68
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Fit to printable page"
msgstr "Ajusta a la pàgina imprimible"
-#: sd/inc/DocumentRenderer.hrc:71
+#: sd/inc/DocumentRenderer.hrc:69
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Distribute on multiple sheets of paper"
msgstr "Distribueix en diversos fulls de paper"
-#: sd/inc/DocumentRenderer.hrc:72
+#: sd/inc/DocumentRenderer.hrc:70
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Tile sheet of paper with repeated pages"
msgstr "Crea un mosaic al full de paper amb les pàgines repetides"
-#: sd/inc/DocumentRenderer.hrc:77
+#: sd/inc/DocumentRenderer.hrc:75
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "All pages"
msgstr "Totes les pàgines"
-#: sd/inc/DocumentRenderer.hrc:78
+#: sd/inc/DocumentRenderer.hrc:76
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "Front sides / right pages"
msgstr "Anversos / pàgines de la dreta"
-#: sd/inc/DocumentRenderer.hrc:79
+#: sd/inc/DocumentRenderer.hrc:77
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "Back sides / left pages"
msgstr "Reversos / pàgines de l'esquerra"
-#: sd/inc/DocumentRenderer.hrc:84
+#: sd/inc/DocumentRenderer.hrc:82
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~All slides"
msgstr "~Totes les diapositives"
-#: sd/inc/DocumentRenderer.hrc:85
+#: sd/inc/DocumentRenderer.hrc:83
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~Slides"
msgstr "~Diapositives"
-#: sd/inc/DocumentRenderer.hrc:86
+#: sd/inc/DocumentRenderer.hrc:84
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Se~lection"
msgstr "Se~lecció"
-#: sd/inc/DocumentRenderer.hrc:91
+#: sd/inc/DocumentRenderer.hrc:89
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~All pages"
msgstr "~Totes les pàgines"
-#: sd/inc/DocumentRenderer.hrc:92
+#: sd/inc/DocumentRenderer.hrc:90
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Pa~ges"
msgstr "Pà~gines"
-#: sd/inc/DocumentRenderer.hrc:93
+#: sd/inc/DocumentRenderer.hrc:91
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Se~lection"
msgstr "Se~lecció"
@@ -1717,52 +1717,52 @@ msgstr "Objecte sense emplenament ni línia"
#: sd/inc/strings.hrc:323
msgctxt "STR_POOLSHEET_FILLED"
msgid "Filled"
-msgstr ""
+msgstr "Emplenat"
#: sd/inc/strings.hrc:324
msgctxt "STR_POOLSHEET_FILLED_BLUE"
msgid "Filled Blue"
-msgstr ""
+msgstr "Emplenat blau"
#: sd/inc/strings.hrc:325
msgctxt "STR_POOLSHEET_FILLED_GREEN"
msgid "Filled Green"
-msgstr ""
+msgstr "Emplenat verd"
#: sd/inc/strings.hrc:326
msgctxt "STR_POOLSHEET_FILLED_YELLOW"
msgid "Filled Yellow"
-msgstr ""
+msgstr "Emplenat groc"
#: sd/inc/strings.hrc:327
msgctxt "STR_POOLSHEET_FILLED_RED"
msgid "Filled Red"
-msgstr ""
+msgstr "Emplenat vermell"
#: sd/inc/strings.hrc:329
msgctxt "STR_POOLSHEET_OUTLINE"
msgid "Outlined"
-msgstr ""
+msgstr "Contorn"
#: sd/inc/strings.hrc:330
msgctxt "STR_POOLSHEET_OUTLINE_BLUE"
msgid "Outlined Blue"
-msgstr ""
+msgstr "Contorn blau"
#: sd/inc/strings.hrc:331
msgctxt "STR_POOLSHEET_OUTLINE_GREEN"
msgid "Outlined Green"
-msgstr ""
+msgstr "Contorn verd"
#: sd/inc/strings.hrc:332
msgctxt "STR_POOLSHEET_OUTLINE_YELLOW"
msgid "Outlined Yellow"
-msgstr ""
+msgstr "Contorn groc"
#: sd/inc/strings.hrc:333
msgctxt "STR_POOLSHEET_OUTLINE_RED"
msgid "Outlined Red"
-msgstr ""
+msgstr "Contorn vermell"
#: sd/inc/strings.hrc:335
msgctxt "STR_PSEUDOSHEET_TITLE"
@@ -3615,67 +3615,67 @@ msgstr "_Comprova si hi ha actualitzacions..."
#: sd/uiconfig/simpress/ui/notebookbar.ui:2422
msgctxt "notebookbar|FileLabel"
msgid "_File"
-msgstr ""
+msgstr "_Fitxer"
#: sd/uiconfig/simpress/ui/notebookbar.ui:2441
msgctxt "notebookbar|HelpMenuButton"
msgid "_Help"
-msgstr ""
+msgstr "_Ajuda"
#: sd/uiconfig/simpress/ui/notebookbar.ui:3230
msgctxt "notebookbar|FileLabel"
msgid "File"
-msgstr ""
+msgstr "Fitxer"
#: sd/uiconfig/simpress/ui/notebookbar.ui:3389
msgctxt "notebookbar|HomeMenuButton"
msgid "_Home"
-msgstr ""
+msgstr "_Inici"
#: sd/uiconfig/simpress/ui/notebookbar.ui:4846
msgctxt "notebookbar|HomeLabel"
msgid "Home"
-msgstr ""
+msgstr "Inici"
#: sd/uiconfig/simpress/ui/notebookbar.ui:5293
msgctxt "notebookbar|FieldMenuButton"
msgid "Fiel_d"
-msgstr ""
+msgstr "_Camp"
#: sd/uiconfig/simpress/ui/notebookbar.ui:5820
msgctxt "notebookbar|InsertMenuButton"
msgid "_Insert"
-msgstr ""
+msgstr "_Insereix"
#: sd/uiconfig/simpress/ui/notebookbar.ui:5905
msgctxt "notebookbar|InsertLabel"
msgid "Insert"
-msgstr ""
+msgstr "Insereix"
#: sd/uiconfig/simpress/ui/notebookbar.ui:5935
msgctxt "notebookbar|SlideMenuButton"
msgid "S_lide"
-msgstr ""
+msgstr "_Diapositiva"
#: sd/uiconfig/simpress/ui/notebookbar.ui:6688
msgctxt "notebookbar|LayoutLabel"
msgid "Slide"
-msgstr ""
+msgstr "Diapositiva"
#: sd/uiconfig/simpress/ui/notebookbar.ui:6716
msgctxt "notebookbar|SlideShowMenuButton"
msgid "_Slide Show"
-msgstr ""
+msgstr "_Presentació de diapositives"
#: sd/uiconfig/simpress/ui/notebookbar.ui:7194
msgctxt "notebookbar|ReferencesLabel"
msgid "Slide Show"
-msgstr ""
+msgstr "Presentació de diapositives"
#: sd/uiconfig/simpress/ui/notebookbar.ui:7222
msgctxt "notebookbar|ReviewMenuButton"
msgid "_Review"
-msgstr ""
+msgstr "_Revisió"
#: sd/uiconfig/simpress/ui/notebookbar.ui:7651
msgctxt "notebookbar|ReviewLabel"
@@ -3685,7 +3685,7 @@ msgstr "Revisió"
#: sd/uiconfig/simpress/ui/notebookbar.ui:7679
msgctxt "notebookbar|ViewMenuButton"
msgid "_View"
-msgstr ""
+msgstr "_Visualitza"
#: sd/uiconfig/simpress/ui/notebookbar.ui:8580
msgctxt "notebookbar|ViewLabel"
@@ -3695,7 +3695,7 @@ msgstr "Visualitza"
#: sd/uiconfig/simpress/ui/notebookbar.ui:9369
msgctxt "notebookbar|TableMenuButton"
msgid "T_able"
-msgstr ""
+msgstr "T_aula"
#: sd/uiconfig/simpress/ui/notebookbar.ui:9453
msgctxt "notebookbar|TableLabel"
@@ -3706,12 +3706,12 @@ msgstr "Taula"
#: sd/uiconfig/simpress/ui/notebookbar.ui:11131
msgctxt "notebookbar|ConvertMenuButton"
msgid "Convert"
-msgstr ""
+msgstr "Converteix"
#: sd/uiconfig/simpress/ui/notebookbar.ui:10335
msgctxt "notebookbar|GraphicMenuButton"
msgid "_Graphic"
-msgstr ""
+msgstr "_Imatge"
#: sd/uiconfig/simpress/ui/notebookbar.ui:10447
msgctxt "notebookbar|ImageLabel"
@@ -3721,22 +3721,22 @@ msgstr "Imatge"
#: sd/uiconfig/simpress/ui/notebookbar.ui:11658
msgctxt "notebookbar|DrawMenuButton"
msgid "D_raw"
-msgstr ""
+msgstr "D_ibuix"
#: sd/uiconfig/simpress/ui/notebookbar.ui:11772
msgctxt "notebookbar|DrawLabel"
msgid "Draw"
-msgstr ""
+msgstr "Dibuix"
#: sd/uiconfig/simpress/ui/notebookbar.ui:11804
msgctxt "notebookbar|ToolsMenuButton"
msgid "_Tools"
-msgstr ""
+msgstr "_Eines"
#: sd/uiconfig/simpress/ui/notebookbar.ui:12758
msgctxt "notebookbar|DevLabel"
msgid "Tools"
-msgstr ""
+msgstr "Eines"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:1922
msgctxt "notebookbar_groupedbar_compact|Menu"
diff --git a/source/ca/svx/messages.po b/source/ca/svx/messages.po
index 7ae838f7835..aa37675b910 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: 2018-05-16 16:53+0200\n"
-"PO-Revision-Date: 2018-05-22 08:10+0000\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
+"PO-Revision-Date: 2018-06-05 07:47+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ca\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1526976639.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1528184870.000000\n"
#: svx/inc/fieldunit.hrc:30
msgctxt "RID_SVXSTR_FIELDUNIT_TABLE"
@@ -5179,8 +5179,8 @@ msgstr "També podeu incloure parts rellevants del vostre perfil d'usuari en l'i
#: svx/uiconfig/ui/safemodedialog.ui:432
msgctxt "safemodedialog|btn_create_zip"
-msgid "Create Zip Archive from User Profile"
-msgstr "Crea un arxiu zip del perfil de l'usuari"
+msgid "Archive User Profile"
+msgstr "Arxiva el perfil de l'usuari"
#: svx/uiconfig/ui/safemodedialog.ui:445
msgctxt "safemodedialog|linkbutton_profile"
@@ -8769,9 +8769,9 @@ msgid "Red"
msgstr "Vermell"
#: include/svx/strings.hrc:565
-msgctxt "RID_SVXSTR_COLOR_VIOLET"
-msgid "Violet"
-msgstr "Violeta"
+msgctxt "RID_SVXSTR_COLOR_MAGENTA"
+msgid "Magenta"
+msgstr "Magenta"
#: include/svx/strings.hrc:566
msgctxt "RID_SVXSTR_COLOR_PURPLE"
@@ -8835,9 +8835,9 @@ msgid "Light Red"
msgstr "Vermell clar"
#: include/svx/strings.hrc:579
-msgctxt "RID_SVXSTR_COLOR_LIGHTVIOLET"
-msgid "Light Violet"
-msgstr "Violat clar"
+msgctxt "RID_SVXSTR_COLOR_LIGHTMAGENTA"
+msgid "Light Magenta"
+msgstr "Magenta clar"
#: include/svx/strings.hrc:580
msgctxt "RID_SVXSTR_COLOR_LIGHTPURPLE"
@@ -8901,9 +8901,9 @@ msgid "Dark Red"
msgstr "Vermell fosc"
#: include/svx/strings.hrc:593
-msgctxt "RID_SVXSTR_COLOR_DARKVIOLET1"
-msgid "Dark Violet"
-msgstr "Violeta fosc"
+msgctxt "RID_SVXSTR_COLOR_DARKMAGENTA"
+msgid "Dark Magenta"
+msgstr "Magenta fosc"
#: include/svx/strings.hrc:594
msgctxt "RID_SVXSTR_COLOR_DARKPURPLE"
@@ -8937,55 +8937,55 @@ msgstr "Llima fosc"
#. Elements of the Tonal color palette
#: include/svx/strings.hrc:601
+msgctxt "RID_SVXSTR_COLOR_VIOLET"
+msgid "Violet"
+msgstr "Violeta"
+
+#: include/svx/strings.hrc:602
msgctxt "RID_SVXSTR_COLOR_VIOLET_OUG"
msgid "Violet (Out of Gamut)"
msgstr "Violeta (fora de gamma)"
-#: include/svx/strings.hrc:602
+#: include/svx/strings.hrc:603
msgctxt "RID_SVXSTR_COLOR_BLUE_OUG"
msgid "Blue (Out of Gamut)"
msgstr "Blau (fora de gamma)"
-#: include/svx/strings.hrc:603
+#: include/svx/strings.hrc:604
msgctxt "RID_SVXSTR_COLOR_AZURE_OUG"
msgid "Azure (Out of Gamut)"
msgstr "Atzur (fora de gamma)"
-#: include/svx/strings.hrc:604
+#: include/svx/strings.hrc:605
msgctxt "RID_SVXSTR_COLOR_SPRINGGREEN_OUG"
msgid "Spring Green (Out of Gamut)"
msgstr "Verd primavera (fora de gamma)"
-#: include/svx/strings.hrc:605
+#: include/svx/strings.hrc:606
msgctxt "RID_SVXSTR_COLOR_GREEN_OUG"
msgid "Green (Out of Gamut)"
msgstr "Verd (fora de gamma)"
-#: include/svx/strings.hrc:606
+#: include/svx/strings.hrc:607
msgctxt "RID_SVXSTR_COLOR_CHARTREUSEGREEN_OUG"
msgid "Chartreuse Green (Out of Gamut)"
msgstr "Verd chartreuse (fora de gamma)"
-#: include/svx/strings.hrc:607
+#: include/svx/strings.hrc:608
msgctxt "RID_SVXSTR_COLOR_ORANGE_OUG"
msgid "Orange (Out of Gamut)"
msgstr "Taronja (fora de gamma)"
-#: include/svx/strings.hrc:608
+#: include/svx/strings.hrc:609
msgctxt "RID_SVXSTR_COLOR_RED_OUG"
msgid "Red (Out of Gamut)"
msgstr "Vermell (fora de gamma)"
-#: include/svx/strings.hrc:609
+#: include/svx/strings.hrc:610
msgctxt "RID_SVXSTR_COLOR_ROSE_OUG"
msgid "Rose (Out of Gamut)"
msgstr "Rosa (fora de gamma)"
-#: include/svx/strings.hrc:610
-msgctxt "RID_SVXSTR_COLOR_MAGENTA"
-msgid "Magenta"
-msgstr "Magenta"
-
#: include/svx/strings.hrc:611
msgctxt "RID_SVXSTR_COLOR_AZURE"
msgid "Azure"
@@ -12091,13 +12091,13 @@ msgstr "Pics en fletxa cap a la dreta"
#: include/svx/strings.hrc:1273
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_6"
-msgid "Check mark bullets"
-msgstr "Pics en creu de verificació"
+msgid "Cross mark bullets"
+msgstr "Pics en forma creu"
#: include/svx/strings.hrc:1274
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_7"
-msgid "Tick mark bullets"
-msgstr "Pics en marca de verificació"
+msgid "Check mark bullets"
+msgstr "Pics de marca de verificació"
#: include/svx/strings.hrc:1275
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_0"
diff --git a/source/ca/sw/messages.po b/source/ca/sw/messages.po
index 7ecdfb82146..427b9804f94 100644
--- a/source/ca/sw/messages.po
+++ b/source/ca/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: 2018-05-22 13:17+0200\n"
-"PO-Revision-Date: 2018-05-18 08:54+0000\n"
+"POT-Creation-Date: 2018-06-12 14:41+0200\n"
+"PO-Revision-Date: 2018-06-13 10:44+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ca\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1526633697.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1528886665.000000\n"
#: sw/inc/app.hrc:29
msgctxt "RID_PARAGRAPHSTYLEFAMILY"
@@ -1180,13 +1180,13 @@ msgstr "Citació"
#: sw/inc/strings.hrc:172
msgctxt "STR_POOLCOLL_TOX_ILLUSH"
-msgid "Illustration Index Heading"
-msgstr "Encapçalament de l'índex d'il·lustracions"
+msgid "Figure Index Heading"
+msgstr "Encapçalament de l'índex de figures"
#: sw/inc/strings.hrc:173
msgctxt "STR_POOLCOLL_TOX_ILLUS1"
-msgid "Illustration Index 1"
-msgstr "Índex d'il·lustracions 1"
+msgid "Figure Index 1"
+msgstr "Índex de figures 1"
#: sw/inc/strings.hrc:174
msgctxt "STR_POOLCOLL_TOX_OBJECTH"
@@ -3590,8 +3590,8 @@ msgstr "Índex d'objectes"
#: sw/inc/strings.hrc:672
msgctxt "STR_TOX_ILL"
-msgid "Illustration Index"
-msgstr "Índex d'il·lustracions"
+msgid "Table of Figures"
+msgstr "Taula de figures"
#: sw/inc/strings.hrc:673
#, c-format
@@ -9244,72 +9244,72 @@ msgctxt "footnotepage|label5"
msgid "Continuation Notice"
msgstr "Avís de continuació"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:49
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:55
msgctxt "footnotesendnotestabpage|ftnntnum"
msgid "_Restart numbering"
msgstr "_Reinicia la numeració"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:91
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:93
msgctxt "footnotesendnotestabpage|ftnoffset_label"
msgid "_Start at:"
msgstr "_Inicia a:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:112
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:111
msgctxt "footnotesendnotestabpage|ftnntnumfmt"
msgid "Custom _format"
msgstr "_Format personalitzat"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:155
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:150
msgctxt "footnotesendnotestabpage|ftnsuffix_label"
msgid "Aft_er:"
msgstr "D_esprés:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:199
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:188
msgctxt "footnotesendnotestabpage|ftnprefix_label"
msgid "Be_fore:"
msgstr "_Abans:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:228
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:212
msgctxt "footnotesendnotestabpage|ftnntattextend"
msgid "Collec_t at end of text"
msgstr "Recull al final del _text"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:252
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:234
msgctxt "footnotesendnotestabpage|label1"
msgid "Footnotes"
msgstr "Notes al peu"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:289
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:271
msgctxt "footnotesendnotestabpage|endntattextend"
msgid "C_ollect at end of section"
msgstr "Recull al final de la _secció"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:315
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:295
msgctxt "footnotesendnotestabpage|endntnum"
msgid "_Restart numbering"
msgstr "_Reinicia la numeració"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:357
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:333
msgctxt "footnotesendnotestabpage|endoffset_label"
msgid "_Start at:"
msgstr "_Inicia a:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:378
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:351
msgctxt "footnotesendnotestabpage|endntnumfmt"
msgid "_Custom format"
msgstr "Format _personalitzat"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:421
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:390
msgctxt "footnotesendnotestabpage|endsuffix_label"
msgid "Aft_er:"
msgstr "D_esprés:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:465
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:428
msgctxt "footnotesendnotestabpage|endprefix_label"
msgid "Be_fore:"
msgstr "_Abans:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:500
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:458
msgctxt "footnotesendnotestabpage|label2"
msgid "Endnotes"
msgstr "Notes al final"
@@ -9339,27 +9339,27 @@ msgctxt "formatsectiondialog|notes"
msgid "Footnotes/Endnotes"
msgstr "Notes al peu/final"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:63
+#: sw/uiconfig/swriter/ui/formattablepage.ui:77
msgctxt "formattablepage|nameft"
msgid "_Name"
msgstr "_Nom"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:79
+#: sw/uiconfig/swriter/ui/formattablepage.ui:91
msgctxt "formattablepage|widthft"
msgid "W_idth"
msgstr "_Amplada"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:110
+#: sw/uiconfig/swriter/ui/formattablepage.ui:120
msgctxt "formattablepage|relwidth"
msgid "Relati_ve"
msgstr "Relati_va"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:155
+#: sw/uiconfig/swriter/ui/formattablepage.ui:160
msgctxt "formattablepage|label45"
msgid "Properties"
msgstr "Propietats"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:194
+#: sw/uiconfig/swriter/ui/formattablepage.ui:195
msgctxt "formattablepage|leftft"
msgid "Lef_t"
msgstr "Esquer_ra"
@@ -9369,62 +9369,62 @@ msgctxt "formattablepage|rightft"
msgid "Ri_ght"
msgstr "Dre_ta"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:228
+#: sw/uiconfig/swriter/ui/formattablepage.ui:226
msgctxt "formattablepage|aboveft"
msgid "_Above"
msgstr "_A sobre"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:245
+#: sw/uiconfig/swriter/ui/formattablepage.ui:241
msgctxt "formattablepage|belowft"
msgid "_Below"
msgstr "A _sota"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:320
+#: sw/uiconfig/swriter/ui/formattablepage.ui:311
msgctxt "formattablepage|label46"
msgid "Spacing"
msgstr "Espaiat"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:362
+#: sw/uiconfig/swriter/ui/formattablepage.ui:349
msgctxt "formattablepage|full"
msgid "A_utomatic"
msgstr "Au_tomàtica"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:380
+#: sw/uiconfig/swriter/ui/formattablepage.ui:365
msgctxt "formattablepage|left"
msgid "_Left"
msgstr "_Esquerra"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:398
+#: sw/uiconfig/swriter/ui/formattablepage.ui:381
msgctxt "formattablepage|fromleft"
msgid "_From left"
msgstr "_Des de l'esquerra"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:416
+#: sw/uiconfig/swriter/ui/formattablepage.ui:397
msgctxt "formattablepage|right"
msgid "R_ight"
msgstr "D_reta"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:435
+#: sw/uiconfig/swriter/ui/formattablepage.ui:413
msgctxt "formattablepage|center"
msgid "_Center"
msgstr "_Centrat"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:453
+#: sw/uiconfig/swriter/ui/formattablepage.ui:429
msgctxt "formattablepage|free"
msgid "_Manual"
msgstr "_Manual"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:478
+#: sw/uiconfig/swriter/ui/formattablepage.ui:452
msgctxt "formattablepage|label43"
msgid "Alignment"
msgstr "Alineació"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:522
+#: sw/uiconfig/swriter/ui/formattablepage.ui:491
msgctxt "formattablepage|label53"
msgid "Text _direction"
msgstr "_Direcció del text"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:553
+#: sw/uiconfig/swriter/ui/formattablepage.ui:519
msgctxt "formattablepage|label44"
msgid "Properties "
msgstr "Propietats "
@@ -9779,22 +9779,27 @@ msgctxt "headerfootermenu|insert_pagenumber"
msgid "Insert Page Number"
msgstr "Insereix un número de pàgina"
-#: sw/uiconfig/swriter/ui/indentpage.ui:52
+#: sw/uiconfig/swriter/ui/headerfootermenu.ui:42
+msgctxt "headerfootermenu|insert_pagecount"
+msgid "Insert Page Count"
+msgstr "Insereix el nombre de pàgines"
+
+#: sw/uiconfig/swriter/ui/indentpage.ui:57
msgctxt "indentpage|label1"
msgid "_Before section"
msgstr "_Abans de la secció"
-#: sw/uiconfig/swriter/ui/indentpage.ui:67
+#: sw/uiconfig/swriter/ui/indentpage.ui:71
msgctxt "indentpage|label3"
msgid "_After section"
msgstr "_Després de la secció"
-#: sw/uiconfig/swriter/ui/indentpage.ui:113
+#: sw/uiconfig/swriter/ui/indentpage.ui:115
msgctxt "indentpage|label2"
msgid "Indent"
msgstr "Sagnat"
-#: sw/uiconfig/swriter/ui/indentpage.ui:142
+#: sw/uiconfig/swriter/ui/indentpage.ui:155
msgctxt "indentpage|preview-atkobject"
msgid "Example"
msgstr "Exemple"
@@ -11912,7 +11917,7 @@ msgstr "_Comprova si hi ha actualitzacions..."
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:2007
msgctxt "notebookbar_compact|FileMenuButton"
msgid "_File"
-msgstr ""
+msgstr "_Fitxer"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:2721
msgctxt "notebookbar_compact|FileLabel"
@@ -11922,7 +11927,7 @@ msgstr "Fitxer"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:2770
msgctxt "notebookbar_compact|HomeMenuButton"
msgid "_Menu"
-msgstr ""
+msgstr "_Menú"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3829
msgctxt "notebookbar_compact|HomeLabel"
@@ -11932,7 +11937,7 @@ msgstr "Inici"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3882
msgctxt "notebookbar_compact|InsertMenuButton"
msgid "_Insert"
-msgstr ""
+msgstr "_Insereix"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4501
msgctxt "notebookbar_compact|InsertLabel"
@@ -11950,7 +11955,7 @@ msgstr "Ajusta"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5221
msgctxt "notebookbar_compact|PageMenuButton"
msgid "Pag_e"
-msgstr ""
+msgstr "_Pàgina"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5273
msgctxt "notebookbar_compact|LayoutLabel"
@@ -11960,7 +11965,7 @@ msgstr "Format"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5320
msgctxt "notebookbar_compact|ReferencesMenuButton"
msgid "Reference_s"
-msgstr ""
+msgstr "Referèncie_s"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5708
msgctxt "notebookbar_compact|ReferencesLabel"
@@ -11970,7 +11975,7 @@ msgstr "Referències"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6204
msgctxt "notebookbar_compact|ReviewMenuButton"
msgid "_Review"
-msgstr ""
+msgstr "_Revisió"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6237
msgctxt "notebookbar_compact|ReviewLabel"
@@ -11980,7 +11985,7 @@ msgstr "Revisa"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6706
msgctxt "notebookbar_compact|ViewMenuButton"
msgid "_View"
-msgstr ""
+msgstr "_Visualitza"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6758
msgctxt "notebookbar_compact|ViewLabel"
@@ -11990,7 +11995,7 @@ msgstr "Visualització"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6806
msgctxt "notebookbar_compact|TableMenuButton"
msgid "T_able"
-msgstr ""
+msgstr "T_aula"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7540
msgctxt "notebookbar_compact|TableLabel"
@@ -12007,7 +12012,7 @@ msgstr "A_linea"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8291
msgctxt "notebookbar_compact|GraphicMenuButton"
msgid "_Graphic"
-msgstr ""
+msgstr "_Imatge"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8324
msgctxt "notebookbar_compact|ImageLabel"
@@ -12017,7 +12022,7 @@ msgstr "Imatge"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9070
msgctxt "notebookbar_compact|DrawMenuButton"
msgid "D_raw"
-msgstr ""
+msgstr "D_ibuix"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9125
msgctxt "notebookbar_compact|ShapeLabel"
@@ -12027,7 +12032,7 @@ msgstr "Dibuixa"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9651
msgctxt "notebookbar_compact|ObjectMenuButton:MenuDraw"
msgid "Object"
-msgstr ""
+msgstr "Objecte"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9707
msgctxt "notebookbar_compact|FrameLabel"
@@ -12037,7 +12042,7 @@ msgstr "Objecte"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9757
msgctxt "notebookbar_compact|ToolsMenuButton"
msgid "_Tools"
-msgstr ""
+msgstr "_Eines"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10600
msgctxt "notebookbar_compact|DevLabel"
@@ -13285,8 +13290,8 @@ msgstr "Protegeix el formulari"
#: sw/uiconfig/swriter/ui/optcompatpage.ui:68
msgctxt "optcompatpage|format"
-msgid "MS Word-compatible trailing blanks"
-msgstr "Espais en blanc compatibles amb el MS Word"
+msgid "Word-compatible trailing blanks"
+msgstr "Espais en blanc compatibles amb el Word"
#: sw/uiconfig/swriter/ui/optcompatpage.ui:69
msgctxt "optcompatpage|format"
@@ -13295,8 +13300,8 @@ msgstr "Admet línies en blanc el fons de fitxers PDF per compatibilitat amb doc
#: sw/uiconfig/swriter/ui/optcompatpage.ui:70
msgctxt "optcompatpage|format"
-msgid "A database field (e.g., MailMerge) with empty value hides its paragraph"
-msgstr ""
+msgid "Hide paragraphs of database fields (e.g., mail merge) with an empty value"
+msgstr "Amaga els paràgrafs en els camps de base de dades (p. ex. en combinació de correu) amb un valor buit."
#: sw/uiconfig/swriter/ui/optcompatpage.ui:71
msgctxt "optcompatpage|format"
@@ -15981,122 +15986,122 @@ msgctxt "tableproperties|background"
msgid "Background"
msgstr "Fons"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:25
-msgctxt "tabletextflowpage|liststore1"
-msgid "Horizontal"
-msgstr "Horitzontal"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:29
-msgctxt "tabletextflowpage|liststore1"
-msgid "Vertical"
-msgstr "Vertical"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:33
-msgctxt "tabletextflowpage|liststore1"
-msgid "Use superordinate object settings"
-msgstr "Utilitza els paràmetres de categories superordinades"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:47
-msgctxt "tabletextflowpage|liststore2"
-msgid "Top"
-msgstr "Superior"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:51
-msgctxt "tabletextflowpage|liststore2"
-msgid "Centered"
-msgstr "Centrat"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:55
-msgctxt "tabletextflowpage|liststore2"
-msgid "Bottom"
-msgstr "Inferior"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:97
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:53
msgctxt "tabletextflowpage|break"
msgid "_Break"
msgstr "_Salt"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:112
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:68
msgctxt "tabletextflowpage|page"
msgid "_Page"
msgstr "_Pàgina"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:132
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:87
msgctxt "tabletextflowpage|column"
msgid "Col_umn"
msgstr "_Columna"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:151
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:106
msgctxt "tabletextflowpage|before"
msgid "Be_fore"
msgstr "_Abans"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:171
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:125
msgctxt "tabletextflowpage|after"
msgid "_After"
msgstr "_Després"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:203
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:158
msgctxt "tabletextflowpage|pagestyle"
msgid "With Page St_yle"
msgstr "Amb est_il de pàgina"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:224
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:177
msgctxt "tabletextflowpage|pagenoft"
msgid "Page _number"
msgstr "Nú_mero de pàgina"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:257
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:213
msgctxt "tabletextflowpage|pagestylelb-atkobject"
msgid "With Page Style"
msgstr "Amb l'estil de pàgina"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:274
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:230
msgctxt "tabletextflowpage|split"
msgid "Allow _table to split across pages and columns"
msgstr "Permet que la _taula es divideixi al final de pàgines i columnes"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:289
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:245
msgctxt "tabletextflowpage|splitrow"
msgid "Allow row to break a_cross pages and columns"
msgstr "Permet que la fila es parteixi al final de pàgines i _columnes"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:306
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:262
msgctxt "tabletextflowpage|keep"
msgid "_Keep with next paragraph"
msgstr "_Conserva amb el paràgraf següent"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:328
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:284
msgctxt "tabletextflowpage|label40"
msgid "Text _orientation"
msgstr "_Orientació del text"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:361
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:298
+msgctxt "tabletextflowpage|liststore1"
+msgid "Horizontal"
+msgstr "Horitzontal"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:299
+msgctxt "tabletextflowpage|liststore1"
+msgid "Vertical"
+msgstr "Vertical"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:300
+msgctxt "tabletextflowpage|liststore1"
+msgid "Use superordinate object settings"
+msgstr "Utilitza els paràmetres de categories superordinades"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:321
msgctxt "tabletextflowpage|headline"
msgid "R_epeat heading"
msgstr "R_epeteix l'encapçalament"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:383
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:343
msgctxt "tabletextflowpage|label38"
msgid "The first "
msgstr "El primer "
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:396
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:356
msgctxt "tabletextflowpage|label39"
msgid "rows"
msgstr "files"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:434
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:395
msgctxt "tabletextflowpage|label35"
msgid "Text Flow"
msgstr "Flux del text"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:467
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:428
msgctxt "tabletextflowpage|label41"
msgid "_Vertical alignment"
msgstr "Alineació _vertical"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:495
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:442
+msgctxt "tabletextflowpage|liststore2"
+msgid "Top"
+msgstr "Superior"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:443
+msgctxt "tabletextflowpage|liststore2"
+msgid "Centered"
+msgstr "Centrat"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:444
+msgctxt "tabletextflowpage|liststore2"
+msgid "Bottom"
+msgstr "Inferior"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:460
msgctxt "tabletextflowpage|label36"
msgid "Alignment"
msgstr "Alineació"
@@ -16878,8 +16883,8 @@ msgstr "Índex alfabètic"
#: sw/uiconfig/swriter/ui/tocindexpage.ui:58
msgctxt "tocindexpage|liststore1"
-msgid "Illustration Index"
-msgstr "Índex d'il·lustracions"
+msgid "Table of Figures"
+msgstr "Taula de figures"
#: sw/uiconfig/swriter/ui/tocindexpage.ui:62
msgctxt "tocindexpage|liststore1"
diff --git a/source/ca/writerperfect/messages.po b/source/ca/writerperfect/messages.po
index e4f9f5361e6..ec2101521d7 100644
--- a/source/ca/writerperfect/messages.po
+++ b/source/ca/writerperfect/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-16 16:54+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2018-05-14 07:49+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -66,97 +66,97 @@ msgctxt "exportepub|generalft"
msgid "General"
msgstr "General"
-#: writerperfect/uiconfig/ui/exportepub.ui:122
+#: writerperfect/uiconfig/ui/exportepub.ui:121
msgctxt "exportepub|versionft"
msgid "Version:"
msgstr "Versió:"
-#: writerperfect/uiconfig/ui/exportepub.ui:139
+#: writerperfect/uiconfig/ui/exportepub.ui:138
msgctxt "exportepub|epub3"
msgid "EPUB 3.0"
msgstr "EPUB 3.0"
-#: writerperfect/uiconfig/ui/exportepub.ui:140
+#: writerperfect/uiconfig/ui/exportepub.ui:139
msgctxt "exportepub|epub2"
msgid "EPUB 2.0"
msgstr "EPUB 2.0"
-#: writerperfect/uiconfig/ui/exportepub.ui:175
+#: writerperfect/uiconfig/ui/exportepub.ui:174
msgctxt "exportepub|splitft"
msgid "Split method:"
msgstr "Mètode de divisió:"
-#: writerperfect/uiconfig/ui/exportepub.ui:192
+#: writerperfect/uiconfig/ui/exportepub.ui:191
msgctxt "exportepub|splitpage"
msgid "Page break"
msgstr "Salt de pàgina"
-#: writerperfect/uiconfig/ui/exportepub.ui:193
+#: writerperfect/uiconfig/ui/exportepub.ui:192
msgctxt "exportepub|splitheading"
msgid "Heading"
msgstr "Encapçalament"
-#: writerperfect/uiconfig/ui/exportepub.ui:228
+#: writerperfect/uiconfig/ui/exportepub.ui:227
msgctxt "exportepub|layoutft"
msgid "Layout method:"
msgstr "Mode de disposició:"
-#: writerperfect/uiconfig/ui/exportepub.ui:245
+#: writerperfect/uiconfig/ui/exportepub.ui:244
msgctxt "exportepub|layoutreflowable"
msgid "Reflowable"
msgstr "Ajustable"
-#: writerperfect/uiconfig/ui/exportepub.ui:246
+#: writerperfect/uiconfig/ui/exportepub.ui:245
msgctxt "exportepub|layoutfixed"
msgid "Fixed"
msgstr "Fixat"
-#: writerperfect/uiconfig/ui/exportepub.ui:281
+#: writerperfect/uiconfig/ui/exportepub.ui:280
msgctxt "exportepub|coverimageft"
msgid "Custom cover image:"
msgstr "Imatge de coberta personalitzada:"
-#: writerperfect/uiconfig/ui/exportepub.ui:311
+#: writerperfect/uiconfig/ui/exportepub.ui:310
msgctxt "exportepub|coverbutton"
msgid "Browse..."
msgstr "Navega..."
-#: writerperfect/uiconfig/ui/exportepub.ui:355
+#: writerperfect/uiconfig/ui/exportepub.ui:354
msgctxt "exportepub|mediadirft"
msgid "Custom media directory:"
msgstr "Directori multimèdia personalitzat:"
-#: writerperfect/uiconfig/ui/exportepub.ui:385
+#: writerperfect/uiconfig/ui/exportepub.ui:384
msgctxt "exportepub|mediabutton"
msgid "Browse..."
msgstr "Navega..."
-#: writerperfect/uiconfig/ui/exportepub.ui:429
+#: writerperfect/uiconfig/ui/exportepub.ui:428
msgctxt "exportepub|metadataft"
msgid "Metadata"
msgstr "Metadades"
-#: writerperfect/uiconfig/ui/exportepub.ui:470
+#: writerperfect/uiconfig/ui/exportepub.ui:468
msgctxt "exportepub|identifierft"
msgid "Identifier:"
msgstr "Identificador:"
-#: writerperfect/uiconfig/ui/exportepub.ui:485
+#: writerperfect/uiconfig/ui/exportepub.ui:483
msgctxt "exportepub|titleft"
msgid "Title:"
msgstr "Títol:"
-#: writerperfect/uiconfig/ui/exportepub.ui:511
+#: writerperfect/uiconfig/ui/exportepub.ui:509
msgctxt "exportepub|authorft"
msgid "Author:"
msgstr "Autor:"
-#: writerperfect/uiconfig/ui/exportepub.ui:537
+#: writerperfect/uiconfig/ui/exportepub.ui:535
msgctxt "exportepub|languageft"
msgid "Language:"
msgstr "Llengua:"
-#: writerperfect/uiconfig/ui/exportepub.ui:563
+#: writerperfect/uiconfig/ui/exportepub.ui:561
msgctxt "exportepub|dateft"
msgid "Date:"
msgstr "Data:"
diff --git a/source/ca/xmlsecurity/messages.po b/source/ca/xmlsecurity/messages.po
index c1f70c946c4..59d66354755 100644
--- a/source/ca/xmlsecurity/messages.po
+++ b/source/ca/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: 2018-05-22 13:17+0200\n"
-"PO-Revision-Date: 2018-03-05 13:22+0000\n"
+"PO-Revision-Date: 2018-05-28 07:00+0000\n"
"Last-Translator: Joan Montané <joan@montane.cat>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ca\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1520256159.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1527490813.000000\n"
#: xmlsecurity/inc/strings.hrc:25
msgctxt "STR_CERTIFICATE_NOT_VALIDATED"
@@ -460,7 +460,7 @@ msgstr "Signa"
#: xmlsecurity/uiconfig/ui/selectcertificatedialog.ui:194
msgctxt "selectcertificatedialog|str_selectsign"
msgid "Select"
-msgstr ""
+msgstr "Selecciona"
#: xmlsecurity/uiconfig/ui/selectcertificatedialog.ui:199
msgctxt "selectcertificatedialog|str_encrypt"
diff --git a/source/cs/cui/messages.po b/source/cs/cui/messages.po
index 1898eb6404c..7c9a1323b62 100644
--- a/source/cs/cui/messages.po
+++ b/source/cs/cui/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: 2018-05-22 13:16+0200\n"
-"PO-Revision-Date: 2018-05-18 11:47+0000\n"
-"Last-Translator: raal <raal@post.cz>\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
+"PO-Revision-Date: 2018-06-12 15:56+0000\n"
+"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: cs\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ 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-POOTLE-MTIME: 1526644077.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1528818968.000000\n"
#: cui/inc/personalization.hrc:31
msgctxt "RID_SVXSTR_PERSONA_CATEGORIES"
@@ -9872,97 +9872,97 @@ msgctxt "positionsizedialog|PositionAndSizeDialog"
msgid "Position and Size"
msgstr "Umístění a velikost"
-#: cui/uiconfig/ui/positionsizedialog.ui:107
+#: cui/uiconfig/ui/positionsizedialog.ui:136
msgctxt "positionsizedialog|RID_SVXPAGE_POSITION_SIZE"
msgid "Position and Size"
msgstr "Umístění a velikost"
-#: cui/uiconfig/ui/positionsizedialog.ui:129
+#: cui/uiconfig/ui/positionsizedialog.ui:182
msgctxt "positionsizedialog|RID_SVXPAGE_SWPOSSIZE"
msgid "Position and Size"
msgstr "Umístění a velikost"
-#: cui/uiconfig/ui/positionsizedialog.ui:152
+#: cui/uiconfig/ui/positionsizedialog.ui:229
msgctxt "positionsizedialog|RID_SVXPAGE_ANGLE"
msgid "Rotation"
msgstr "Otočení"
-#: cui/uiconfig/ui/positionsizedialog.ui:175
+#: cui/uiconfig/ui/positionsizedialog.ui:276
msgctxt "positionsizedialog|RID_SVXPAGE_SLANT"
msgid "Slant & Corner Radius"
msgstr "Naklonění a poloměr rohu"
-#: cui/uiconfig/ui/possizetabpage.ui:40
+#: cui/uiconfig/ui/possizetabpage.ui:61
msgctxt "possizetabpage|FT_POS_X"
msgid "Position _X:"
msgstr "Pozice _X:"
-#: cui/uiconfig/ui/possizetabpage.ui:56
+#: cui/uiconfig/ui/possizetabpage.ui:75
msgctxt "possizetabpage|FT_POS_Y"
msgid "Position _Y:"
msgstr "Pozice _Y:"
-#: cui/uiconfig/ui/possizetabpage.ui:110
+#: cui/uiconfig/ui/possizetabpage.ui:128
msgctxt "possizetabpage|FT_POSREFERENCE"
msgid "_Base point:"
msgstr "_Základní bod:"
-#: cui/uiconfig/ui/possizetabpage.ui:148
+#: cui/uiconfig/ui/possizetabpage.ui:182
msgctxt "possizetabpage|label1"
msgid "Position"
msgstr "Umístění"
-#: cui/uiconfig/ui/possizetabpage.ui:190
+#: cui/uiconfig/ui/possizetabpage.ui:224
msgctxt "possizetabpage|FT_WIDTH"
msgid "Wi_dth:"
msgstr "Šíř_ka:"
-#: cui/uiconfig/ui/possizetabpage.ui:206
+#: cui/uiconfig/ui/possizetabpage.ui:238
msgctxt "possizetabpage|FT_HEIGHT"
msgid "H_eight:"
msgstr "_Výška:"
-#: cui/uiconfig/ui/possizetabpage.ui:247
+#: cui/uiconfig/ui/possizetabpage.ui:276
msgctxt "possizetabpage|CBX_SCALE"
msgid "_Keep ratio"
msgstr "Zachovat _poměr"
-#: cui/uiconfig/ui/possizetabpage.ui:279
+#: cui/uiconfig/ui/possizetabpage.ui:307
msgctxt "possizetabpage|FT_SIZEREFERENCE"
msgid "Base _point:"
msgstr "Základní _bod:"
-#: cui/uiconfig/ui/possizetabpage.ui:317
+#: cui/uiconfig/ui/possizetabpage.ui:361
msgctxt "possizetabpage|label2"
msgid "Size"
msgstr "Velikost"
-#: cui/uiconfig/ui/possizetabpage.ui:356
+#: cui/uiconfig/ui/possizetabpage.ui:401
msgctxt "possizetabpage|TSB_POSPROTECT"
msgid "Positio_n"
msgstr "_Umístění"
-#: cui/uiconfig/ui/possizetabpage.ui:373
+#: cui/uiconfig/ui/possizetabpage.ui:418
msgctxt "possizetabpage|TSB_SIZEPROTECT"
msgid "_Size"
msgstr "V_elikost"
-#: cui/uiconfig/ui/possizetabpage.ui:397
+#: cui/uiconfig/ui/possizetabpage.ui:441
msgctxt "possizetabpage|label3"
msgid "Protect"
msgstr "Zamknout"
-#: cui/uiconfig/ui/possizetabpage.ui:430
+#: cui/uiconfig/ui/possizetabpage.ui:475
msgctxt "possizetabpage|TSB_AUTOGROW_WIDTH"
msgid "_Fit width to text"
msgstr "Šířka podle _textu"
-#: cui/uiconfig/ui/possizetabpage.ui:447
+#: cui/uiconfig/ui/possizetabpage.ui:492
msgctxt "possizetabpage|TSB_AUTOGROW_HEIGHT"
msgid "Fit _height to text"
msgstr "Výška podle te_xtu"
-#: cui/uiconfig/ui/possizetabpage.ui:471
+#: cui/uiconfig/ui/possizetabpage.ui:515
msgctxt "possizetabpage|label4"
msgid "Adapt"
msgstr "Přizpůsobit"
@@ -10162,47 +10162,47 @@ msgctxt "recordnumberdialog|label2"
msgid "go to record"
msgstr "přejít na záznam"
-#: cui/uiconfig/ui/rotationtabpage.ui:52
+#: cui/uiconfig/ui/rotationtabpage.ui:56
msgctxt "rotationtabpage|FT_POS_X"
msgid "Position _X:"
msgstr "Pozice _X:"
-#: cui/uiconfig/ui/rotationtabpage.ui:66
+#: cui/uiconfig/ui/rotationtabpage.ui:70
msgctxt "rotationtabpage|FT_POS_Y"
msgid "Position _Y:"
msgstr "Pozice _Y:"
-#: cui/uiconfig/ui/rotationtabpage.ui:116
+#: cui/uiconfig/ui/rotationtabpage.ui:123
msgctxt "rotationtabpage|FT_POSPRESETS"
msgid "_Default settings:"
msgstr "_Výchozí nastavení:"
-#: cui/uiconfig/ui/rotationtabpage.ui:130
+#: cui/uiconfig/ui/rotationtabpage.ui:151
msgctxt "rotationtabpage|CTL_RECT|tooltip_text"
msgid "Rotation point"
msgstr "Střed otočení"
-#: cui/uiconfig/ui/rotationtabpage.ui:155
+#: cui/uiconfig/ui/rotationtabpage.ui:178
msgctxt "rotationtabpage|label1"
msgid "Pivot Point"
msgstr "Střed otočení"
-#: cui/uiconfig/ui/rotationtabpage.ui:197
+#: cui/uiconfig/ui/rotationtabpage.ui:220
msgctxt "rotationtabpage|FT_ANGLE"
msgid "_Angle:"
msgstr "Ú_hel:"
-#: cui/uiconfig/ui/rotationtabpage.ui:238
+#: cui/uiconfig/ui/rotationtabpage.ui:263
msgctxt "rotationtabpage|FT_ANGLEPRESETS"
msgid "Default _settings:"
msgstr "Výchozí _nastavení:"
-#: cui/uiconfig/ui/rotationtabpage.ui:252
+#: cui/uiconfig/ui/rotationtabpage.ui:287
msgctxt "rotationtabpage|CTL_ANGLE|tooltip_text"
msgid "Rotation Angle"
msgstr "Úhel otočení"
-#: cui/uiconfig/ui/rotationtabpage.ui:277
+#: cui/uiconfig/ui/rotationtabpage.ui:314
msgctxt "rotationtabpage|label2"
msgid "Rotation Angle"
msgstr "Úhel otočení"
@@ -10582,52 +10582,52 @@ msgctxt "similaritysearchdialog|relaxbox"
msgid "_Combine"
msgstr "Z_kombinovat"
-#: cui/uiconfig/ui/slantcornertabpage.ui:50
+#: cui/uiconfig/ui/slantcornertabpage.ui:70
msgctxt "slantcornertabpage|label5"
msgid "_X:"
msgstr "_X:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:88
+#: cui/uiconfig/ui/slantcornertabpage.ui:110
msgctxt "slantcornertabpage|label6"
msgid "_Y:"
msgstr "_Y:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:125
+#: cui/uiconfig/ui/slantcornertabpage.ui:149
msgctxt "slantcornertabpage|label3"
msgid "Control Point 1"
msgstr "Ovládací bod 1"
-#: cui/uiconfig/ui/slantcornertabpage.ui:159
+#: cui/uiconfig/ui/slantcornertabpage.ui:183
msgctxt "slantcornertabpage|FT_RADIUS"
msgid "_Radius:"
msgstr "_Poloměr:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:189
+#: cui/uiconfig/ui/slantcornertabpage.ui:214
msgctxt "slantcornertabpage|label1"
msgid "Corner Radius"
msgstr "Poloměr rohu"
-#: cui/uiconfig/ui/slantcornertabpage.ui:223
+#: cui/uiconfig/ui/slantcornertabpage.ui:248
msgctxt "slantcornertabpage|FT_ANGLE"
msgid "_Angle:"
msgstr "Ú_hel:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:253
+#: cui/uiconfig/ui/slantcornertabpage.ui:279
msgctxt "slantcornertabpage|label2"
msgid "Slant"
msgstr "Zkosení"
-#: cui/uiconfig/ui/slantcornertabpage.ui:294
+#: cui/uiconfig/ui/slantcornertabpage.ui:320
msgctxt "slantcornertabpage|label4"
msgid "_X:"
msgstr "_X:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:332
+#: cui/uiconfig/ui/slantcornertabpage.ui:360
msgctxt "slantcornertabpage|label7"
msgid "_Y:"
msgstr "_Y:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:369
+#: cui/uiconfig/ui/slantcornertabpage.ui:399
msgctxt "slantcornertabpage|label8"
msgid "Control Point 2"
msgstr "Ovládací bod 2"
@@ -10760,7 +10760,7 @@ msgstr "_Opravit"
#: cui/uiconfig/ui/spellingdialog.ui:152
msgctxt "spellingdialog|changeall"
msgid "Correct A_ll"
-msgstr "O_pravit vše"
+msgstr "Op_ravit vše"
#: cui/uiconfig/ui/spellingdialog.ui:166
msgctxt "spellingdialog|autocorrect"
@@ -10820,7 +10820,7 @@ msgstr "Přidat _do slovníku"
#: cui/uiconfig/ui/spellingdialog.ui:349
msgctxt "spellingdialog|suggestionsft"
msgid "_Suggestions"
-msgstr "_Návrhy"
+msgstr "Návr_hy"
#: cui/uiconfig/ui/spellingdialog.ui:365
msgctxt "spellingdialog|notindictft"
@@ -10907,112 +10907,112 @@ msgctxt "storedwebconnectiondialog|change"
msgid "_Change Password..."
msgstr "Změnit _heslo..."
-#: cui/uiconfig/ui/swpossizepage.ui:74
+#: cui/uiconfig/ui/swpossizepage.ui:85
msgctxt "swpossizepage|widthft"
msgid "_Width:"
msgstr "Šíř_ka:"
-#: cui/uiconfig/ui/swpossizepage.ui:111
+#: cui/uiconfig/ui/swpossizepage.ui:123
msgctxt "swpossizepage|heightft"
msgid "H_eight:"
msgstr "_Výška:"
-#: cui/uiconfig/ui/swpossizepage.ui:128
+#: cui/uiconfig/ui/swpossizepage.ui:141
msgctxt "swpossizepage|ratio"
msgid "_Keep ratio"
msgstr "Zachovat _poměr"
-#: cui/uiconfig/ui/swpossizepage.ui:149
+#: cui/uiconfig/ui/swpossizepage.ui:162
msgctxt "swpossizepage|label2"
msgid "Size"
msgstr "Velikost"
-#: cui/uiconfig/ui/swpossizepage.ui:205
+#: cui/uiconfig/ui/swpossizepage.ui:218
msgctxt "swpossizepage|topage"
msgid "To _page"
msgstr "Ke _stránce"
-#: cui/uiconfig/ui/swpossizepage.ui:222
+#: cui/uiconfig/ui/swpossizepage.ui:234
msgctxt "swpossizepage|topara"
msgid "To paragrap_h"
msgstr "K ods_tavci"
-#: cui/uiconfig/ui/swpossizepage.ui:238
+#: cui/uiconfig/ui/swpossizepage.ui:250
msgctxt "swpossizepage|tochar"
msgid "To cha_racter"
msgstr "Ke _znaku"
-#: cui/uiconfig/ui/swpossizepage.ui:254
+#: cui/uiconfig/ui/swpossizepage.ui:266
msgctxt "swpossizepage|aschar"
msgid "_As character"
msgstr "_Jako znak"
-#: cui/uiconfig/ui/swpossizepage.ui:270
+#: cui/uiconfig/ui/swpossizepage.ui:282
msgctxt "swpossizepage|toframe"
msgid "To _frame"
msgstr "K _rámci"
-#: cui/uiconfig/ui/swpossizepage.ui:292
+#: cui/uiconfig/ui/swpossizepage.ui:304
msgctxt "swpossizepage|label1"
msgid "Anchor"
msgstr "Ukotvení"
-#: cui/uiconfig/ui/swpossizepage.ui:333
+#: cui/uiconfig/ui/swpossizepage.ui:344
msgctxt "swpossizepage|horiposft"
msgid "Hori_zontal:"
msgstr "Vo_dorovně:"
-#: cui/uiconfig/ui/swpossizepage.ui:347
+#: cui/uiconfig/ui/swpossizepage.ui:358
msgctxt "swpossizepage|horibyft"
msgid "b_y:"
msgstr "_o:"
-#: cui/uiconfig/ui/swpossizepage.ui:361
+#: cui/uiconfig/ui/swpossizepage.ui:372
msgctxt "swpossizepage|vertbyft"
msgid "_by:"
msgstr "_o:"
-#: cui/uiconfig/ui/swpossizepage.ui:375
+#: cui/uiconfig/ui/swpossizepage.ui:386
msgctxt "swpossizepage|horitoft"
msgid "_to:"
msgstr "_k:"
-#: cui/uiconfig/ui/swpossizepage.ui:421
+#: cui/uiconfig/ui/swpossizepage.ui:433
msgctxt "swpossizepage|vertposft"
msgid "_Vertical:"
msgstr "Sv_isle:"
-#: cui/uiconfig/ui/swpossizepage.ui:457
+#: cui/uiconfig/ui/swpossizepage.ui:470
msgctxt "swpossizepage|verttoft"
msgid "t_o:"
msgstr "_k:"
-#: cui/uiconfig/ui/swpossizepage.ui:478
+#: cui/uiconfig/ui/swpossizepage.ui:492
msgctxt "swpossizepage|mirror"
msgid "_Mirror on even pages"
msgstr "Zr_cadlit na sudých stránkách"
-#: cui/uiconfig/ui/swpossizepage.ui:495
+#: cui/uiconfig/ui/swpossizepage.ui:509
msgctxt "swpossizepage|followtextflow"
msgid "Follow te_xt flow"
msgstr "U_místit s textem"
-#: cui/uiconfig/ui/swpossizepage.ui:518
+#: cui/uiconfig/ui/swpossizepage.ui:532
msgctxt "swpossizepage|label11"
msgid "Position"
msgstr "Umístění"
-#: cui/uiconfig/ui/swpossizepage.ui:549
+#: cui/uiconfig/ui/swpossizepage.ui:563
msgctxt "swpossizepage|pos"
msgid "Positio_n"
msgstr "_Umístění"
-#: cui/uiconfig/ui/swpossizepage.ui:565
+#: cui/uiconfig/ui/swpossizepage.ui:579
msgctxt "swpossizepage|size"
msgid "_Size"
msgstr "Ve_likost"
-#: cui/uiconfig/ui/swpossizepage.ui:587
+#: cui/uiconfig/ui/swpossizepage.ui:601
msgctxt "swpossizepage|label3"
msgid "Protect"
msgstr "Zamknout"
@@ -11202,12 +11202,12 @@ msgctxt "textattrtabpage|label2"
msgid "Spacing to Borders"
msgstr "Vzdálenost k ohraničení"
-#: cui/uiconfig/ui/textattrtabpage.ui:425
+#: cui/uiconfig/ui/textattrtabpage.ui:423
msgctxt "textattrtabpage|TSB_FULL_WIDTH"
msgid "Full _width"
msgstr "Plná šířk_a"
-#: cui/uiconfig/ui/textattrtabpage.ui:448
+#: cui/uiconfig/ui/textattrtabpage.ui:446
msgctxt "textattrtabpage|label3"
msgid "Text Anchor"
msgstr "Ukotvení textu"
diff --git a/source/cs/filter/source/config/fragments/filters.po b/source/cs/filter/source/config/fragments/filters.po
index ae92604be1d..882bfa02d5d 100644
--- a/source/cs/filter/source/config/fragments/filters.po
+++ b/source/cs/filter/source/config/fragments/filters.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-16 16:54+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2018-05-20 07:05+0000\n"
"Last-Translator: raal <raal@post.cz>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -463,8 +463,8 @@ msgctxt ""
"MS Word 2003 XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Word 2003 XML"
-msgstr "Microsoft Word 2003 XML"
+msgid "Word 2003 XML"
+msgstr ""
#: MS_Word_2007_XML.xcu
msgctxt ""
@@ -1282,8 +1282,8 @@ msgctxt ""
"Calc MS Excel 2007 VBA XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Excel 2007-2016 XML (macro enabled)"
-msgstr "Microsoft Excel 2007-2016 XML (povolená makra)"
+msgid "Excel 2007–2019 (macro-enabled)"
+msgstr ""
#: calc_MS_Excel_2007_XML.xcu
msgctxt ""
diff --git a/source/cs/filter/source/config/fragments/types.po b/source/cs/filter/source/config/fragments/types.po
index 4e79e0da733..fbfeb4200d1 100644
--- a/source/cs/filter/source/config/fragments/types.po
+++ b/source/cs/filter/source/config/fragments/types.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-08 15:11+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2018-05-18 12:11+0000\n"
"Last-Translator: raal <raal@post.cz>\n"
"Language-Team: LANGUAGE <LL@li.org>\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: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1526645512.000000\n"
#: MS_Excel_2007_Binary.xcu
@@ -292,8 +292,8 @@ msgctxt ""
"writer_MS_Word_2003_XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Word 2003 XML"
-msgstr "Microsoft Word 2003 XML"
+msgid "Word 2003 XML"
+msgstr ""
#: writer_MS_Word_2007_XML.xcu
msgctxt ""
diff --git a/source/cs/fpicker/messages.po b/source/cs/fpicker/messages.po
index bd7f7e34f68..8e7c9239529 100644
--- a/source/cs/fpicker/messages.po
+++ b/source/cs/fpicker/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2018-03-24 10:32+0000\n"
"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -272,13 +272,13 @@ msgstr "Zašifrovat klíčem GPG"
#: fpicker/uiconfig/ui/foldernamedialog.ui:8
msgctxt "foldernamedialog|FolderNameDialog"
-msgid "Folder Name ?"
-msgstr "Název složky?"
+msgid "Folder Name"
+msgstr ""
#: fpicker/uiconfig/ui/foldernamedialog.ui:91
msgctxt "foldernamedialog|label2"
-msgid "Na_me"
-msgstr "_Název"
+msgid "Na_me:"
+msgstr ""
#: fpicker/uiconfig/ui/foldernamedialog.ui:122
msgctxt "foldernamedialog|label1"
diff --git a/source/cs/helpcontent2/source/text/shared/00.po b/source/cs/helpcontent2/source/text/shared/00.po
index de92d0bdfee..3c3492cba11 100644
--- a/source/cs/helpcontent2/source/text/shared/00.po
+++ b/source/cs/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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2016-07-17 09:02+0000\n"
"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -397,16 +397,16 @@ msgctxt ""
"00000001.xhp\n"
"hd_id3149670\n"
"help.text"
-msgid "Back"
-msgstr "Zpět"
+msgid "Reset"
+msgstr ""
#: 00000001.xhp
msgctxt ""
"00000001.xhp\n"
"par_id3145068\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optionsdialog/revert\">Resets modified values back to the $[officename] default values.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/optionsdialog/revert\">Obnoví změněné hodnoty zpět na výchozí hodnoty $[officename].</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optionsdialog/revert\">Resets changes made to the current tab to those applicable when this dialog was opened.</ahelp>"
+msgstr ""
#: 00000001.xhp
msgctxt ""
@@ -552,6 +552,54 @@ msgctxt ""
msgid "<variable id=\"ShiftF1\">Press Shift+F1 and point to a control to learn more about that control.</variable>"
msgstr "<variable id=\"ShiftF1\">Pro zjištění více informací o ovládacím prvku stiskněte Shift+F1 a ukažte na daný ovládací prvek.</variable>"
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"hd_id631527692833772\n"
+"help.text"
+msgid "Options dialog buttons"
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"hd_id831527692839432\n"
+"help.text"
+msgid "OK"
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"par_id471527692844934\n"
+"help.text"
+msgid "Save the changes in the page and close the Options dialog."
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"hd_id261527692850720\n"
+"help.text"
+msgid "Cancel"
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"par_id571527692855533\n"
+"help.text"
+msgid "Close the Options dialog and discard all changes done."
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"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 Options dialog."
+msgstr ""
+
#: 00000002.xhp
msgctxt ""
"00000002.xhp\n"
@@ -11125,16 +11173,16 @@ msgctxt ""
"00040502.xhp\n"
"par_id3151293\n"
"help.text"
-msgid "<variable id=\"linienstile\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Line Styles</emph> tab </variable>"
-msgstr "<variable id=\"linienstile\">Zvolte kartu <emph>Formát - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Objekt - </emph></caseinline><caseinline select=\"CALC\"><emph>Obrázek - </emph></caseinline></switchinline><emph>Čára - Styly čar</emph></variable>"
+msgid "<variable id=\"linienstile\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Line Styles</emph> tab</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3149317\n"
"help.text"
-msgid "<variable id=\"linienenden\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Arrow Styles</emph> tab </variable>"
-msgstr "<variable id=\"linienenden\">Zvolte kartu <emph>Formát - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Objekt - </emph></caseinline><caseinline select=\"CALC\"><emph>Obrázek - </emph></caseinline></switchinline><emph>Čára - Styly šipek</emph></variable>"
+msgid "<variable id=\"linienenden\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Arrow Styles</emph> tab</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
@@ -11173,15 +11221,15 @@ msgctxt ""
"00040502.xhp\n"
"par_id3154948\n"
"help.text"
-msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Area</emph> tab"
-msgstr "Zvolte kartu <emph>Formát - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Objekt - </emph></caseinline><caseinline select=\"CALC\"><emph>Obrázek - </emph></caseinline></switchinline><emph>Oblast - Oblast</emph>"
+msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Area</emph> tab."
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3145607\n"
"help.text"
-msgid "Choose <emph>View - Styles</emph> - open context menu and choose <emph>Modify/New - Area</emph> tab (presentation documents)"
+msgid "Choose <emph>View - Styles</emph> - open context menu and choose <emph>Modify/New - Area</emph> tab (presentation documents)."
msgstr ""
#: 00040502.xhp
@@ -11189,47 +11237,47 @@ msgctxt ""
"00040502.xhp\n"
"par_id3152922\n"
"help.text"
-msgid "Choose <emph>Format - Title - Area</emph> tab (chart documents)"
-msgstr "Zvolte kartu <emph>Formát - Popis - Oblast</emph> (grafy)"
+msgid "Choose <emph>Format - Title - Area</emph> tab (chart documents)."
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3157894\n"
"help.text"
-msgid "Choose <emph>Format - Legend - Area</emph> tab (chart documents)"
-msgstr "Zvolte kartu <emph>Formát - Legenda - Oblast</emph> (grafy)"
+msgid "Choose <emph>Format - Legend - Area</emph> tab (chart documents)."
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3144444\n"
"help.text"
-msgid "Choose <emph>Format - Chart Wall - Area</emph> tab (chart documents)"
-msgstr "Zvolte kartu <emph>Formát - Stěna grafu - Oblast</emph> (grafy)"
+msgid "Choose <emph>Format - Chart Wall - Area</emph> tab (chart documents)."
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3156543\n"
"help.text"
-msgid "Choose <emph>Format - Chart Floor - Area</emph> tab (chart documents)"
-msgstr "Zvolte kartu <emph>Formát - Pata grafu - Oblast</emph> (grafy)"
+msgid "Choose <emph>Format - Chart Floor - Area</emph> tab (chart documents)."
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3150685\n"
"help.text"
-msgid "Choose <emph>Format - Chart Area - Area</emph> tab (chart documents)"
-msgstr "Zvolte kartu <emph>Formát - Plocha grafu - Oblast</emph> (grafy)"
+msgid "Choose <emph>Format - Chart Area - Area</emph> tab (chart documents)."
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3149664\n"
"help.text"
-msgid "Choose <emph>Slide - Properties - Background</emph> tab (in $[officename] Impress)"
+msgid "Choose <emph>Slide - Properties - Background</emph> tab (in $[officename] Impress)."
msgstr ""
#: 00040502.xhp
@@ -11237,7 +11285,15 @@ msgctxt ""
"00040502.xhp\n"
"par_id9149694\n"
"help.text"
-msgid "Choose <emph>Page - Properties - Background</emph> tab (in $[officename] Draw)"
+msgid "Choose <emph>Page - Properties - Background</emph> tab (in $[officename] Draw)."
+msgstr ""
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id841527083135387\n"
+"help.text"
+msgid "Choose <emph>Table - Properties - Background</emph> tab."
msgstr ""
#: 00040502.xhp
@@ -11349,32 +11405,32 @@ msgctxt ""
"00040502.xhp\n"
"par_id3150011\n"
"help.text"
-msgid "<variable id=\"schatte\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Shadow</emph> tab </variable>"
-msgstr "<variable id=\"schatte\">Zvolte kartu <emph>Formát - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Objekt - </emph></caseinline><caseinline select=\"CALC\"><emph>Obrázek - </emph></caseinline></switchinline><emph>Oblast - Stín</emph></variable>"
+msgid "<variable id=\"schatte\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Shadow</emph> tab</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3147441\n"
"help.text"
-msgid "<variable id=\"verlauf\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Gradients</emph> tab </variable>"
-msgstr "<variable id=\"verlauf\">Zvolte kartu <emph>Formát - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Objekt - </emph></caseinline><caseinline select=\"CALC\"><emph>Obrázek - </emph></caseinline></switchinline><emph>Oblast - Přechody</emph></variable>"
+msgid "<variable id=\"verlauf\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Gradients</emph> tab</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3155308\n"
"help.text"
-msgid "<variable id=\"schraffur\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Hatching</emph> tab </variable>"
-msgstr "<variable id=\"schraffur\">Zvolte kartu <emph>Formát - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Objekt - </emph></caseinline><caseinline select=\"CALC\"><emph>Obrázek - </emph></caseinline></switchinline><emph>Oblast - Šrafování</emph></variable>"
+msgid "<variable id=\"schraffur\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Hatching</emph> tab</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3145800\n"
"help.text"
-msgid "<variable id=\"bitmap\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Bitmaps</emph> tab </variable>"
-msgstr "<variable id=\"bitmap\">Zvolte kartu <emph>Formát - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Objekt - </emph></caseinline><caseinline select=\"CALC\"><emph>Obrázek - </emph></caseinline></switchinline><emph>Oblast - Rastry</emph></variable>"
+msgid "<variable id=\"bitmap\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Bitmaps</emph> tab</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
@@ -11413,8 +11469,8 @@ msgctxt ""
"00040502.xhp\n"
"par_id3156286\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F4 key </caseinline><caseinline select=\"IMPRESS\">F4 key </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"DRAW\">klávesa F4 </caseinline><caseinline select=\"IMPRESS\">klávesa F4 </caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F4 key</caseinline><caseinline select=\"IMPRESS\">F4 key</caseinline></switchinline>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
@@ -11453,8 +11509,8 @@ msgctxt ""
"00040502.xhp\n"
"par_id3153099\n"
"help.text"
-msgid "<variable id=\"position2\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Position and Size</emph> tab </variable>"
-msgstr "<variable id=\"position2\">Zvolte kartu <emph>Formát - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Objekt - </emph></caseinline><caseinline select=\"CALC\"><emph>Obrázek - </emph></caseinline></switchinline><emph>Umístění a velikost - Umístění a velikost</emph> </variable>"
+msgid "<variable id=\"position2\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Position and Size</emph> tab</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
@@ -11485,16 +11541,16 @@ msgctxt ""
"00040502.xhp\n"
"par_id3145666\n"
"help.text"
-msgid "<variable id=\"ecke\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Slant & Corner Radius</emph> tab </variable>"
-msgstr "<variable id=\"ecke\">Zvolte kartu <emph>Formát - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Objekt - </emph></caseinline><caseinline select=\"CALC\"><emph>Obrázek - </emph></caseinline></switchinline><emph>Umístění a velikost - Naklonění a poloměr rohu</emph></variable>"
+msgid "<variable id=\"ecke\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Slant & Corner Radius</emph> tab</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3146081\n"
"help.text"
-msgid "<variable id=\"legende\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Callout</emph> tab (only for textbox callouts, not for custom shapes callouts) </variable>"
-msgstr "<variable id=\"legende\">Zvolte <emph>Formát - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Objekt - </emph></caseinline><caseinline select=\"CALC\"><emph>Obrázek - </emph></caseinline></switchinline><emph>Umístění a velikost - Bublina</emph> (pouze pro textové bubliny, ne pro bubliny vlastních tvarů) </variable>"
+msgid "<variable id=\"legende\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Callout</emph> tab (only for textbox callouts, not for custom shapes callouts)</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
@@ -11517,8 +11573,8 @@ msgctxt ""
"00040502.xhp\n"
"par_id3149019\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F8 key </caseinline><caseinline select=\"IMPRESS\">F8 key </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"DRAW\">klávesa F8 </caseinline><caseinline select=\"IMPRESS\">klávesa F8 </caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F8 key</caseinline><caseinline select=\"IMPRESS\">F8 key</caseinline></switchinline>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
@@ -11805,8 +11861,8 @@ msgctxt ""
"00040502.xhp\n"
"par_id3153076\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Align Center Horizontally </caseinline><defaultinline>Centered</defaultinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Zarovnat vodorovně na střed </caseinline><defaultinline>Na střed</defaultinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Align Center Horizontally</caseinline><defaultinline>Centered</defaultinline></switchinline>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
@@ -11845,8 +11901,8 @@ msgctxt ""
"00040502.xhp\n"
"par_id3150527\n"
"help.text"
-msgid "<variable id=\"font\">Click <emph>Fontwork</emph> icon on <emph>Drawing</emph> bar </variable>"
-msgstr "<variable id=\"font\">Klepněte na ikonu <emph>Písmomalba</emph> na liště <emph>Kresba</emph></variable>"
+msgid "<variable id=\"font\">Click <emph>Fontwork</emph> icon on <emph>Drawing</emph> bar</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
diff --git a/source/cs/helpcontent2/source/text/shared/01.po b/source/cs/helpcontent2/source/text/shared/01.po
index 69b46626c56..734afb87acc 100644
--- a/source/cs/helpcontent2/source/text/shared/01.po
+++ b/source/cs/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: 2018-05-23 23:19+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2017-08-13 11:48+0000\n"
"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -23587,6 +23587,22 @@ msgstr ""
#: 05210100.xhp
msgctxt ""
"05210100.xhp\n"
+"hd_id471527077476052\n"
+"help.text"
+msgid "Cell, Row or Table background selector"
+msgstr ""
+
+#: 05210100.xhp
+msgctxt ""
+"05210100.xhp\n"
+"par_id661527077493366\n"
+"help.text"
+msgid "Select the table object which background area is to be filled."
+msgstr ""
+
+#: 05210100.xhp
+msgctxt ""
+"05210100.xhp\n"
"hd_id3147373\n"
"help.text"
msgid "None"
@@ -31205,24 +31221,24 @@ msgctxt ""
"06040100.xhp\n"
"hd_id3145072\n"
"help.text"
-msgid "Automatic *bold* and _underline_"
-msgstr "Automatické *tučné* a _podtržené_"
+msgid "Automatic *bold*, /italic/, -strikeout- and _underline_"
+msgstr ""
#: 06040100.xhp
msgctxt ""
"06040100.xhp\n"
"par_id3153577\n"
"help.text"
-msgid "Automatically applies bold formatting to text enclosed by asterisks (*), and underline to text enclosed by underscores ( _ ), for example, *bold*. The asterisks and underscores are not displayed after the formatting is applied."
-msgstr "Automaticky použije tučné formátování na text uzavřený do hvězdiček (*) a podtržení na text uzavřený podtržítky (_), např. *tučně*. Po použití formátování se hvězdičky a podtržítka nezobrazují."
+msgid "Automatically applies bold, italic, strikethrough or underline formatting to text enclosed by asterisks (*), slashes (/), hyphens (-), and underscores (_), respectively. These characters disappear after the formatting is applied."
+msgstr ""
#: 06040100.xhp
msgctxt ""
"06040100.xhp\n"
"par_id3153127\n"
"help.text"
-msgid "This feature does not work if the formatting characters * or _ are entered with an <link href=\"text/shared/00/00000005.xhp#IME\" name=\"Input Method Editor\">Input Method Editor</link>."
-msgstr "Tato vlastnost nefunguje, pokud jsou formátovací znaky * nebo _ zadány <link href=\"text/shared/00/00000005.xhp#IME\" name=\"Editorem vstupu\">Editorem vstupu</link>."
+msgid "This feature does not work if the formatting characters <item type=\"literal\">* / - _</item> are entered with an <link href=\"text/shared/00/00000005.xhp#IME\" name=\"Input Method Editor\">Input Method Editor</link>."
+msgstr ""
#: 06040100.xhp
msgctxt ""
diff --git a/source/cs/helpcontent2/source/text/shared/optionen.po b/source/cs/helpcontent2/source/text/shared/optionen.po
index 4ce7bfe8926..867e077b89c 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: 2018-05-08 15:10+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2016-09-16 17:24+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: NONE\n"
@@ -84,6 +84,22 @@ msgstr ""
#: 01000000.xhp
msgctxt ""
"01000000.xhp\n"
+"hd_id551527692881035\n"
+"help.text"
+msgid "Help"
+msgstr ""
+
+#: 01000000.xhp
+msgctxt ""
+"01000000.xhp\n"
+"par_id831527692885723\n"
+"help.text"
+msgid "Opens the help contents for the Options page displayed."
+msgstr ""
+
+#: 01000000.xhp
+msgctxt ""
+"01000000.xhp\n"
"hd_id3159149\n"
"help.text"
msgid "<link href=\"text/shared/optionen/01010000.xhp\" name=\"$[officename]\">%PRODUCTNAME</link>"
@@ -4566,8 +4582,8 @@ msgctxt ""
"01030300.xhp\n"
"par_idN10640\n"
"help.text"
-msgid "Options"
-msgstr "Možnosti"
+msgid "Security Options and Warnings"
+msgstr ""
#: 01030300.xhp
msgctxt ""
@@ -4598,8 +4614,8 @@ msgctxt ""
"01030300.xhp\n"
"hd_id3168736\n"
"help.text"
-msgid "Persistently save passwords protected by a master password"
-msgstr "Trvale uložená hesla chráněná hlavním heslem"
+msgid "Persistently save passwords for web connections"
+msgstr ""
#: 01030300.xhp
msgctxt ""
@@ -4614,8 +4630,24 @@ msgctxt ""
"01030300.xhp\n"
"hd_id3901791\n"
"help.text"
+msgid "Protected by a master password (recommended)"
+msgstr ""
+
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"par_id31527711486980\n"
+"help.text"
+msgid "Check to enable all connections' passwords to be protected by a master password."
+msgstr ""
+
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"hd_id141527711343312\n"
+"help.text"
msgid "Master Password"
-msgstr "Hlavní heslo"
+msgstr ""
#: 01030300.xhp
msgctxt ""
@@ -13734,8 +13766,8 @@ msgctxt ""
"java.xhp\n"
"hd_id3148618\n"
"help.text"
-msgid "Optional (unstable) options"
-msgstr "Volitelné (nestabilní) možnosti"
+msgid "Optional Features"
+msgstr ""
#: java.xhp
msgctxt ""
@@ -13750,8 +13782,8 @@ msgctxt ""
"java.xhp\n"
"par_id3156344\n"
"help.text"
-msgid "It enables features that are not yet complete or contain known bugs. The list of these features is different version by version, or even it can be empty."
-msgstr "Povoluje vlastnosti, které ještě nejsou hotové nebo o kterých je známo, že obsahují chyby. Seznam těchto vlastností se verzi od verze liší, může být i prázdný."
+msgid "Enables features that are not yet complete or may contain known bugs. The list of these features is different version by version, or even it can be empty."
+msgstr ""
#: java.xhp
msgctxt ""
@@ -13766,8 +13798,8 @@ msgctxt ""
"java.xhp\n"
"par_id3156345\n"
"help.text"
-msgid "It enables macro recording, so the <link href=\"text/shared/guide/macro_recording.xhp\" name=\"Tools - Macros - Record Macro\"><item type=\"menuitem\">Tools - Macros - Record Macro</item></link> menu item will be available."
-msgstr "Povolí záznam maker, v nabídce se objeví položka <link href=\"text/shared/guide/macro_recording.xhp\" name=\"Nástroje - Makra - Zaznamenat makro\"><item type=\"menuitem\">Nástroje - Makra - Zaznamenat makro</item></link>."
+msgid "Enables macro recording. The <link href=\"text/shared/guide/macro_recording.xhp\" name=\"Tools - Macros - Record Macro\"><item type=\"menuitem\">Tools - Macros - Record Macro</item></link> menu item is available."
+msgstr ""
#: java.xhp
msgctxt ""
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 59d4d5d4b03..04c3663cf3e 100644
--- a/source/cs/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/cs/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-22 13:17+0200\n"
-"PO-Revision-Date: 2018-05-18 12:29+0000\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
+"PO-Revision-Date: 2018-05-25 15:52+0000\n"
"Last-Translator: raal <raal@post.cz>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: cs\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1526646544.000000\n"
+"X-POOTLE-MTIME: 1527263527.000000\n"
#: BaseWindowState.xcu
msgctxt ""
@@ -149,7 +149,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Form Horizontal Scroll Bar"
-msgstr ""
+msgstr "Vodorovný posuvník formuláře"
#: BasicIDECommands.xcu
msgctxt ""
@@ -26520,8 +26520,8 @@ msgctxt ""
"..WriterCommands.UserInterface.Commands..uno:TextAttributes\n"
"Label\n"
"value.text"
-msgid "Text Attributes"
-msgstr "Atributy textu"
+msgid "Text Attributes..."
+msgstr ""
#: WriterCommands.xcu
msgctxt ""
diff --git a/source/cs/readlicense_oo/docs.po b/source/cs/readlicense_oo/docs.po
index 86e830a99d7..cf559cedb45 100644
--- a/source/cs/readlicense_oo/docs.po
+++ b/source/cs/readlicense_oo/docs.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-04-17 15:54+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2018-04-19 20:14+0000\n"
"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\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: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1524168881.000000\n"
#: readme.xrm
@@ -117,8 +117,8 @@ msgctxt ""
"readme.xrm\n"
"macxiOSX\n"
"readmeitem.text"
-msgid "MacOSX 10.8 (Mountain Lion) or higher"
-msgstr "MacOSX 10.8 (Mountain Lion) nebo novější"
+msgid "MacOSX 10.9 (Mavericks) or higher"
+msgstr ""
#: readme.xrm
msgctxt ""
diff --git a/source/cs/sc/messages.po b/source/cs/sc/messages.po
index 6f76bacc983..5d37d48e84f 100644
--- a/source/cs/sc/messages.po
+++ b/source/cs/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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-12 14:40+0200\n"
"PO-Revision-Date: 2018-04-22 09:07+0000\n"
"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1870,16 +1870,21 @@ msgid "Nested arrays are not supported."
msgstr "Vnořené matice nejsou podporovány."
#: sc/inc/globstr.hrc:390
+msgctxt "STR_ERR_LONG_BAD_ARRAY_CONTENT"
+msgid "Unsupported inline array content."
+msgstr ""
+
+#: sc/inc/globstr.hrc:391
msgctxt "STR_UNDO_TEXTTOCOLUMNS"
msgid "Text to Columns"
msgstr "Text do sloupců"
-#: sc/inc/globstr.hrc:391
+#: sc/inc/globstr.hrc:392
msgctxt "STR_DOC_UPDATED"
msgid "Your spreadsheet has been updated with changes saved by other users."
msgstr "Sešit byl aktualizován změnami ostatních uživatelů."
-#: sc/inc/globstr.hrc:392
+#: sc/inc/globstr.hrc:393
msgctxt "STR_DOC_WILLBESAVED"
msgid ""
"The spreadsheet must be saved now to activate sharing mode.\n"
@@ -1890,7 +1895,7 @@ msgstr ""
"\n"
"Chcete pokračovat?"
-#: sc/inc/globstr.hrc:393
+#: sc/inc/globstr.hrc:394
msgctxt "STR_DOC_WILLNOTBESAVED"
msgid ""
"Already resolved merge conflicts will be lost and your changes to the shared spreadsheet will not be saved.\n"
@@ -1901,7 +1906,7 @@ msgstr ""
"\n"
"Chcete pokračovat?"
-#: sc/inc/globstr.hrc:394
+#: sc/inc/globstr.hrc:395
msgctxt "STR_DOC_DISABLESHARED"
msgid ""
"Disabling shared mode of a spreadsheet hinders all other users of the shared spreadsheet to merge back their work.\n"
@@ -1912,7 +1917,7 @@ msgstr ""
"\n"
"Chcete pokračovat?"
-#: sc/inc/globstr.hrc:395
+#: sc/inc/globstr.hrc:396
msgctxt "STR_DOC_NOLONGERSHARED"
msgid ""
"This spreadsheet is no longer in shared mode.\n"
@@ -1923,7 +1928,7 @@ msgstr ""
"\n"
"Uložte svůj sešit do jiného souboru a změny spojte ručně."
-#: sc/inc/globstr.hrc:396
+#: sc/inc/globstr.hrc:397
msgctxt "STR_FILE_LOCKED_TRY_LATER"
msgid ""
"The shared spreadsheet file is locked due to a merge in progress by user: '%1'\n"
@@ -1934,7 +1939,7 @@ msgstr ""
"\n"
"U uzamčeného souboru nelze vypnout sdílený režim. Zkuste to později."
-#: sc/inc/globstr.hrc:397
+#: sc/inc/globstr.hrc:398
msgctxt "STR_FILE_LOCKED_SAVE_LATER"
msgid ""
"The shared spreadsheet file is locked due to a merge in progress by user: '%1'\n"
@@ -1945,147 +1950,147 @@ msgstr ""
"\n"
"Zkuste své změny uložit později."
-#: sc/inc/globstr.hrc:398
+#: sc/inc/globstr.hrc:399
msgctxt "STR_UNKNOWN_USER"
msgid "Unknown User"
msgstr "Neznámý uživatel"
-#: sc/inc/globstr.hrc:399
+#: sc/inc/globstr.hrc:400
msgctxt "STR_SHAPE_AUTOSHAPE"
msgid "AutoShape"
msgstr "Automatický tvar"
-#: sc/inc/globstr.hrc:400
+#: sc/inc/globstr.hrc:401
msgctxt "STR_SHAPE_RECTANGLE"
msgid "Rectangle"
msgstr "Obdélník"
-#: sc/inc/globstr.hrc:401
+#: sc/inc/globstr.hrc:402
msgctxt "STR_SHAPE_LINE"
msgid "Line"
msgstr "Čára"
-#: sc/inc/globstr.hrc:402
+#: sc/inc/globstr.hrc:403
msgctxt "STR_SHAPE_OVAL"
msgid "Oval"
msgstr "Elipsa"
-#: sc/inc/globstr.hrc:403
+#: sc/inc/globstr.hrc:404
msgctxt "STR_FORM_BUTTON"
msgid "Button"
msgstr "Tlačítko"
-#: sc/inc/globstr.hrc:404
+#: sc/inc/globstr.hrc:405
msgctxt "STR_FORM_CHECKBOX"
msgid "Check Box"
msgstr "Zaškrtávací pole"
-#: sc/inc/globstr.hrc:405
+#: sc/inc/globstr.hrc:406
msgctxt "STR_FORM_OPTIONBUTTON"
msgid "Option Button"
msgstr "Přepínač"
-#: sc/inc/globstr.hrc:406
+#: sc/inc/globstr.hrc:407
msgctxt "STR_FORM_LABEL"
msgid "Label"
msgstr "Popisek"
-#: sc/inc/globstr.hrc:407
+#: sc/inc/globstr.hrc:408
msgctxt "STR_FORM_LISTBOX"
msgid "List Box"
msgstr "Seznam"
-#: sc/inc/globstr.hrc:408
+#: sc/inc/globstr.hrc:409
msgctxt "STR_FORM_GROUPBOX"
msgid "Group Box"
msgstr "Skupinový rámeček"
-#: sc/inc/globstr.hrc:409
+#: sc/inc/globstr.hrc:410
msgctxt "STR_FORM_DROPDOWN"
msgid "Drop Down"
msgstr "Rozevírací seznam"
-#: sc/inc/globstr.hrc:410
+#: sc/inc/globstr.hrc:411
msgctxt "STR_FORM_SPINNER"
msgid "Spinner"
msgstr "Číselník"
-#: sc/inc/globstr.hrc:411
+#: sc/inc/globstr.hrc:412
msgctxt "STR_FORM_SCROLLBAR"
msgid "Scroll Bar"
msgstr "Posuvník"
-#: sc/inc/globstr.hrc:412
+#: sc/inc/globstr.hrc:413
msgctxt "STR_STYLE_FAMILY_CELL"
msgid "Cell Styles"
msgstr "Styly buněk"
-#: sc/inc/globstr.hrc:413
+#: sc/inc/globstr.hrc:414
msgctxt "STR_STYLE_FAMILY_PAGE"
msgid "Page Styles"
msgstr "Styly stránky"
-#: sc/inc/globstr.hrc:414
+#: sc/inc/globstr.hrc:415
msgctxt "STR_ERR_DATAPILOTSOURCE"
msgid "Pivot table source data is invalid."
msgstr "Zdrojová data kontingenční tabulky jsou neplatná."
-#: sc/inc/globstr.hrc:415
+#: sc/inc/globstr.hrc:416
msgctxt "STR_OPTIONS_WARN_SEPARATORS"
msgid "Because the current formula separator settings conflict with the locale, the formula separators have been reset to their default values."
msgstr "Jelikož současné nastavení oddělovače vzorců koliduje s národním prostředím, oddělovače vzorců byly nastaveny na své výchozí hodnoty."
-#: sc/inc/globstr.hrc:416
+#: sc/inc/globstr.hrc:417
msgctxt "STR_UNDO_INSERT_CURRENT_DATE"
msgid "Insert Current Date"
msgstr "Vložit aktuální datum"
-#: sc/inc/globstr.hrc:417
+#: sc/inc/globstr.hrc:418
msgctxt "STR_UNDO_INSERT_CURRENT_TIME"
msgid "Insert Current Time"
msgstr "Vložit aktuální čas"
-#: sc/inc/globstr.hrc:418
+#: sc/inc/globstr.hrc:419
msgctxt "STR_MANAGE_NAMES"
msgid "Manage Names..."
msgstr "Spravovat názvy..."
-#: sc/inc/globstr.hrc:419
+#: sc/inc/globstr.hrc:420
msgctxt "STR_HEADER_NAME"
msgid "Name"
msgstr "Název"
-#: sc/inc/globstr.hrc:420
+#: sc/inc/globstr.hrc:421
msgctxt "STR_HEADER_RANGE_OR_EXPR"
msgid "Range or formula expression"
msgstr "Oblast nebo vzorec"
-#: sc/inc/globstr.hrc:421
+#: sc/inc/globstr.hrc:422
msgctxt "STR_HEADER_SCOPE"
msgid "Scope"
msgstr "Rozsah"
-#: sc/inc/globstr.hrc:422
+#: sc/inc/globstr.hrc:423
msgctxt "STR_MULTI_SELECT"
msgid "(multiple)"
msgstr "(vícenásobný)"
-#: sc/inc/globstr.hrc:423
+#: sc/inc/globstr.hrc:424
msgctxt "STR_GLOBAL_SCOPE"
msgid "Document (Global)"
msgstr "Dokument (globální)"
-#: sc/inc/globstr.hrc:424
+#: sc/inc/globstr.hrc:425
msgctxt "STR_ERR_NAME_EXISTS"
msgid "Invalid name. Already in use for the selected scope."
msgstr "Neplatný název. Již je pro daný rozsah použit."
-#: sc/inc/globstr.hrc:425
+#: sc/inc/globstr.hrc:426
msgctxt "STR_ERR_NAME_INVALID"
msgid "Invalid name. Only use letters, numbers and underscore."
msgstr "Neplatný název. Používejte pouze písmena, čísla a podtržítka."
-#: sc/inc/globstr.hrc:426
+#: sc/inc/globstr.hrc:427
msgctxt "STR_UNSAVED_EXT_REF"
msgid ""
"This Document contains external references to unsaved documents.\n"
@@ -2096,217 +2101,217 @@ msgstr ""
"\n"
"Chcete přesto pokračovat?"
-#: sc/inc/globstr.hrc:427
+#: sc/inc/globstr.hrc:428
msgctxt "STR_CLOSE_WITH_UNSAVED_REFS"
msgid "This Document is referenced by another document and not yet saved. Closing it without saving will result in data loss."
msgstr "Na tento dokument, který ještě nebyl uložen, je odkazováno z jiného dokumentu. Pokud ho uzavřete bez uložení, dojde ke ztrátě dat."
-#: sc/inc/globstr.hrc:428
+#: sc/inc/globstr.hrc:429
msgctxt "STR_HEADER_RANGE"
msgid "Range"
msgstr "Oblast"
-#: sc/inc/globstr.hrc:429
+#: sc/inc/globstr.hrc:430
msgctxt "STR_HEADER_COND"
msgid "First Condition"
msgstr "První podmínka"
-#: sc/inc/globstr.hrc:430
+#: sc/inc/globstr.hrc:431
msgctxt "STR_COND_CONDITION"
msgid "Cell value is"
msgstr "Hodnota buňky je"
-#: sc/inc/globstr.hrc:431
+#: sc/inc/globstr.hrc:432
msgctxt "STR_COND_COLORSCALE"
msgid "ColorScale"
msgstr "Barevná škála"
-#: sc/inc/globstr.hrc:432
+#: sc/inc/globstr.hrc:433
msgctxt "STR_COND_DATABAR"
msgid "DataBar"
msgstr "Datový pruh"
-#: sc/inc/globstr.hrc:433
+#: sc/inc/globstr.hrc:434
msgctxt "STR_COND_ICONSET"
msgid "IconSet"
msgstr "Sada ikon"
-#: sc/inc/globstr.hrc:434
+#: sc/inc/globstr.hrc:435
msgctxt "STR_COND_BETWEEN"
msgid "between"
msgstr "leží mezi"
-#: sc/inc/globstr.hrc:435
+#: sc/inc/globstr.hrc:436
msgctxt "STR_COND_NOTBETWEEN"
msgid "not between"
msgstr "není mezi"
-#: sc/inc/globstr.hrc:436
+#: sc/inc/globstr.hrc:437
msgctxt "STR_COND_UNIQUE"
msgid "unique"
msgstr "jedinečný"
-#: sc/inc/globstr.hrc:437
+#: sc/inc/globstr.hrc:438
msgctxt "STR_COND_DUPLICATE"
msgid "duplicate"
msgstr "duplikát"
-#: sc/inc/globstr.hrc:438
+#: sc/inc/globstr.hrc:439
msgctxt "STR_COND_FORMULA"
msgid "Formula is"
msgstr "Vzorec je"
-#: sc/inc/globstr.hrc:439
+#: sc/inc/globstr.hrc:440
msgctxt "STR_COND_TOP10"
msgid "Top Elements"
msgstr "Horní prvky"
-#: sc/inc/globstr.hrc:440
+#: sc/inc/globstr.hrc:441
msgctxt "STR_COND_BOTTOM10"
msgid "Bottom Elements"
msgstr "Dolní prvky"
-#: sc/inc/globstr.hrc:441
+#: sc/inc/globstr.hrc:442
msgctxt "STR_COND_TOP_PERCENT"
msgid "Top Percent"
msgstr "Horní procento"
-#: sc/inc/globstr.hrc:442
+#: sc/inc/globstr.hrc:443
msgctxt "STR_COND_DATE"
msgid "Date is"
msgstr "Datum je"
-#: sc/inc/globstr.hrc:443
+#: sc/inc/globstr.hrc:444
msgctxt "STR_COND_BOTTOM_PERCENT"
msgid "Bottom Percent"
msgstr "Dolní procento"
-#: sc/inc/globstr.hrc:444
+#: sc/inc/globstr.hrc:445
msgctxt "STR_COND_ABOVE_AVERAGE"
msgid "Above Average"
msgstr "Nadprůměrná"
-#: sc/inc/globstr.hrc:445
+#: sc/inc/globstr.hrc:446
msgctxt "STR_COND_BELOW_AVERAGE"
msgid "Below Average"
msgstr "Podprůměrná"
-#: sc/inc/globstr.hrc:446
+#: sc/inc/globstr.hrc:447
msgctxt "STR_COND_ABOVE_EQUAL_AVERAGE"
msgid "Above or equal Average"
msgstr "Nadprůměrná nebo rovna průměru"
-#: sc/inc/globstr.hrc:447
+#: sc/inc/globstr.hrc:448
msgctxt "STR_COND_BELOW_EQUAL_AVERAGE"
msgid "Below or equal Average"
msgstr "Podprůměrná nebo rovna průměru"
-#: sc/inc/globstr.hrc:448
+#: sc/inc/globstr.hrc:449
msgctxt "STR_COND_ERROR"
msgid "an Error code"
msgstr "kód chyby"
-#: sc/inc/globstr.hrc:449
+#: sc/inc/globstr.hrc:450
msgctxt "STR_COND_NOERROR"
msgid "not an Error code"
msgstr "není kód chyby"
-#: sc/inc/globstr.hrc:450
+#: sc/inc/globstr.hrc:451
msgctxt "STR_COND_BEGINS_WITH"
msgid "Begins with"
msgstr "začíná na"
-#: sc/inc/globstr.hrc:451
+#: sc/inc/globstr.hrc:452
msgctxt "STR_COND_ENDS_WITH"
msgid "Ends with"
msgstr "končí na"
-#: sc/inc/globstr.hrc:452
+#: sc/inc/globstr.hrc:453
msgctxt "STR_COND_CONTAINS"
msgid "Contains"
msgstr "Obsahuje"
-#: sc/inc/globstr.hrc:453
+#: sc/inc/globstr.hrc:454
msgctxt "STR_COND_NOT_CONTAINS"
msgid "Not Contains"
msgstr "Neobsahuje"
-#: sc/inc/globstr.hrc:454
+#: sc/inc/globstr.hrc:455
msgctxt "STR_COND_TODAY"
msgid "today"
msgstr "dnes"
-#: sc/inc/globstr.hrc:455
+#: sc/inc/globstr.hrc:456
msgctxt "STR_COND_YESTERDAY"
msgid "yesterday"
msgstr "včera"
-#: sc/inc/globstr.hrc:456
+#: sc/inc/globstr.hrc:457
msgctxt "STR_COND_TOMORROW"
msgid "tomorrow"
msgstr "zítra"
-#: sc/inc/globstr.hrc:457
+#: sc/inc/globstr.hrc:458
msgctxt "STR_COND_LAST7DAYS"
msgid "in the last 7 days"
msgstr "v posledních 7 dnech"
-#: sc/inc/globstr.hrc:458
+#: sc/inc/globstr.hrc:459
msgctxt "STR_COND_THISWEEK"
msgid "this week"
msgstr "tento týden"
-#: sc/inc/globstr.hrc:459
+#: sc/inc/globstr.hrc:460
msgctxt "STR_COND_LASTWEEK"
msgid "last week"
msgstr "poslední týden"
-#: sc/inc/globstr.hrc:460
+#: sc/inc/globstr.hrc:461
msgctxt "STR_COND_NEXTWEEK"
msgid "next week"
msgstr "příští týden"
-#: sc/inc/globstr.hrc:461
+#: sc/inc/globstr.hrc:462
msgctxt "STR_COND_THISMONTH"
msgid "this month"
msgstr "tento měsíc"
-#: sc/inc/globstr.hrc:462
+#: sc/inc/globstr.hrc:463
msgctxt "STR_COND_LASTMONTH"
msgid "last month"
msgstr "minulý měsíc"
-#: sc/inc/globstr.hrc:463
+#: sc/inc/globstr.hrc:464
msgctxt "STR_COND_NEXTMONTH"
msgid "next month"
msgstr "příští měsíc"
-#: sc/inc/globstr.hrc:464
+#: sc/inc/globstr.hrc:465
msgctxt "STR_COND_THISYEAR"
msgid "this year"
msgstr "tento rok"
-#: sc/inc/globstr.hrc:465
+#: sc/inc/globstr.hrc:466
msgctxt "STR_COND_LASTYEAR"
msgid "last year"
msgstr "minulý rok"
-#: sc/inc/globstr.hrc:466
+#: sc/inc/globstr.hrc:467
msgctxt "STR_COND_NEXTYEAR"
msgid "next year"
msgstr "příští rok"
-#: sc/inc/globstr.hrc:467
+#: sc/inc/globstr.hrc:468
msgctxt "STR_COND_AND"
msgid "and"
msgstr "a"
-#: sc/inc/globstr.hrc:468
+#: sc/inc/globstr.hrc:469
msgctxt "STR_ERR_CONDFORMAT_PROTECTED"
msgid "Conditional Formats can not be created, deleted or changed in protected sheets."
msgstr "Vytváření, úpravy a mazání podmíněného formátování nelze provádět v uzamčených listech."
-#: sc/inc/globstr.hrc:469
+#: sc/inc/globstr.hrc:470
msgctxt "STR_EDIT_EXISTING_COND_FORMATS"
msgid ""
"The selected cell already contains conditional formatting. You can either edit the existing conditional format or you define a new overlapping conditional format.\n"
@@ -2317,7 +2322,7 @@ msgstr ""
"\n"
" Chcete upravit stávající podmíněné formátování?"
-#: sc/inc/globstr.hrc:470
+#: sc/inc/globstr.hrc:471
msgctxt "STR_QUERY_FORMULA_RECALC_ONLOAD_ODS"
msgid ""
"This document was last saved by an application other than %PRODUCTNAME. Some formula cells may produce different results when recalculated.\n"
@@ -2328,7 +2333,7 @@ msgstr ""
"\n"
"Přejete si v dokumentu přepočítat všechny buňky obsahující vzorce?"
-#: sc/inc/globstr.hrc:471
+#: sc/inc/globstr.hrc:472
msgctxt "STR_QUERY_FORMULA_RECALC_ONLOAD_XLS"
msgid ""
"This document was last saved by Excel. Some formula cells may produce different results when recalculated.\n"
@@ -2339,77 +2344,77 @@ msgstr ""
"\n"
"Přejete si přepočítat všechny buňky obsahující vzorce?"
-#: sc/inc/globstr.hrc:472
+#: sc/inc/globstr.hrc:473
msgctxt "STR_NO_INSERT_DELETE_OVER_PIVOT_TABLE"
msgid "You cannot insert or delete cells when the affected range intersects with pivot table."
msgstr "Buňky nelze vložit nebo odstranit, když dotčená oblast zasahuje do kontingenční tabulky."
-#: sc/inc/globstr.hrc:473
+#: sc/inc/globstr.hrc:474
msgctxt "STR_DPFIELD_GROUP_BY_SECONDS"
msgid "Seconds"
msgstr "Sekundy"
-#: sc/inc/globstr.hrc:474
+#: sc/inc/globstr.hrc:475
msgctxt "STR_DPFIELD_GROUP_BY_MINUTES"
msgid "Minutes"
msgstr "min"
-#: sc/inc/globstr.hrc:475
+#: sc/inc/globstr.hrc:476
msgctxt "STR_DPFIELD_GROUP_BY_HOURS"
msgid "Hours"
msgstr "Hodiny"
-#: sc/inc/globstr.hrc:476
+#: sc/inc/globstr.hrc:477
msgctxt "STR_DPFIELD_GROUP_BY_DAYS"
msgid "Days"
msgstr "Dny"
-#: sc/inc/globstr.hrc:477
+#: sc/inc/globstr.hrc:478
msgctxt "STR_DPFIELD_GROUP_BY_MONTHS"
msgid "Months"
msgstr "Měsíce"
-#: sc/inc/globstr.hrc:478
+#: sc/inc/globstr.hrc:479
msgctxt "STR_DPFIELD_GROUP_BY_QUARTERS"
msgid "Quarters"
msgstr "Čtvrtletí"
-#: sc/inc/globstr.hrc:479
+#: sc/inc/globstr.hrc:480
msgctxt "STR_DPFIELD_GROUP_BY_YEARS"
msgid "Years"
msgstr "Roky"
-#: sc/inc/globstr.hrc:480
+#: sc/inc/globstr.hrc:481
msgctxt "STR_INVALIDVAL"
msgid "Invalid target value."
msgstr "Neplatná cílová hodnota."
-#: sc/inc/globstr.hrc:481
+#: sc/inc/globstr.hrc:482
msgctxt "STR_INVALIDVAR"
msgid "Undefined name for variable cell."
msgstr "Nedefinovaný název buňky s proměnnou."
-#: sc/inc/globstr.hrc:482
+#: sc/inc/globstr.hrc:483
msgctxt "STR_INVALIDFORM"
msgid "Undefined name as formula cell."
msgstr "Nedefinované jméno buňky se vzorcem."
-#: sc/inc/globstr.hrc:483
+#: sc/inc/globstr.hrc:484
msgctxt "STR_NOFORMULA"
msgid "Formula cell must contain a formula."
msgstr "Buňka se vzorcem musí obsahovat vzorec."
-#: sc/inc/globstr.hrc:484
+#: sc/inc/globstr.hrc:485
msgctxt "STR_INVALIDINPUT"
msgid "Invalid input."
msgstr "Neplatný vstup."
-#: sc/inc/globstr.hrc:485
+#: sc/inc/globstr.hrc:486
msgctxt "STR_INVALIDCONDITION"
msgid "Invalid condition."
msgstr "Neplatná podmínka."
-#: sc/inc/globstr.hrc:486
+#: sc/inc/globstr.hrc:487
msgctxt "STR_QUERYREMOVE"
msgid ""
"Should the entry\n"
@@ -2420,133 +2425,133 @@ msgstr ""
"#\n"
"smazána?"
-#: sc/inc/globstr.hrc:487
+#: sc/inc/globstr.hrc:488
msgctxt "STR_COPYLIST"
msgid "Copy List"
msgstr "Kopírovat seznam"
-#: sc/inc/globstr.hrc:488
+#: sc/inc/globstr.hrc:489
msgctxt "STR_COPYFROM"
msgid "List from"
msgstr "Seznam z"
-#: sc/inc/globstr.hrc:489
+#: sc/inc/globstr.hrc:490
msgctxt "STR_COPYERR"
msgid "Cells without text have been ignored."
msgstr "Buňky neobsahující text byly ignorovány."
-#: sc/inc/globstr.hrc:490
+#: sc/inc/globstr.hrc:491
#, c-format
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%s-click to follow hyperlink:"
msgstr "%s+kliknutí otevře hypertextový odkaz:"
-#: sc/inc/globstr.hrc:491
+#: sc/inc/globstr.hrc:492
msgctxt "STR_CLICKHYPERLINK"
msgid "click to open hyperlink:"
msgstr "kliknutí otevře hypertextový odkaz:"
-#: sc/inc/globstr.hrc:492
+#: sc/inc/globstr.hrc:493
msgctxt "STR_PRINT_PREVIEW_NODATA"
msgid "No Data"
msgstr "Žádná data"
-#: sc/inc/globstr.hrc:493
+#: sc/inc/globstr.hrc:494
msgctxt "STR_PRINT_PREVIEW_EMPTY_RANGE"
msgid "Print Range Empty"
msgstr "Prázdná oblast tisku"
-#: sc/inc/globstr.hrc:494
+#: sc/inc/globstr.hrc:495
msgctxt "STR_UNDO_CONDFORMAT"
msgid "Conditional Format"
msgstr "Podmíněné formátování"
-#: sc/inc/globstr.hrc:495
+#: sc/inc/globstr.hrc:496
msgctxt "STR_UNDO_CONDFORMAT_LIST"
msgid "Conditional Formats"
msgstr "Podmíněné formátování"
-#: sc/inc/globstr.hrc:496
+#: sc/inc/globstr.hrc:497
msgctxt "STR_UNDO_FORMULA_TO_VALUE"
msgid "Convert Formula To Value"
msgstr "Převést vzorec na hodnotu"
-#: sc/inc/globstr.hrc:497
+#: sc/inc/globstr.hrc:498
msgctxt "STR_UNQUOTED_STRING"
msgid "Strings without quotes are interpreted as column/row labels."
msgstr "Řetězce bez uvozovek jsou považovány za popisky sloupců nebo řádků."
-#: sc/inc/globstr.hrc:498
+#: sc/inc/globstr.hrc:499
msgctxt "STR_ENTER_VALUE"
msgid "Enter a value!"
msgstr "Zadejte hodnotu!"
-#: sc/inc/globstr.hrc:499
+#: sc/inc/globstr.hrc:500
msgctxt "STR_TABLE_COUNT"
msgid "Sheet %1 of %2"
msgstr "List %1 z %2"
-#: sc/inc/globstr.hrc:500
+#: sc/inc/globstr.hrc:501
msgctxt "STR_FUNCTIONS_FOUND"
msgid "%1 and %2 more"
msgstr "%1 a %2 dalších"
-#: sc/inc/globstr.hrc:501
+#: sc/inc/globstr.hrc:502
msgctxt "STR_GENERAL"
msgid "General"
msgstr "Obecný"
-#: sc/inc/globstr.hrc:502
+#: sc/inc/globstr.hrc:503
msgctxt "STR_NUMBER"
msgid "Number"
msgstr "Číslo"
-#: sc/inc/globstr.hrc:503
+#: sc/inc/globstr.hrc:504
msgctxt "STR_PERCENT"
msgid "Percent"
msgstr "Procento"
-#: sc/inc/globstr.hrc:504
+#: sc/inc/globstr.hrc:505
msgctxt "STR_CURRENCY"
msgid "Currency"
msgstr "Měna"
-#: sc/inc/globstr.hrc:505
+#: sc/inc/globstr.hrc:506
msgctxt "STR_DATE"
msgid "Date"
msgstr "Datum"
-#: sc/inc/globstr.hrc:506
+#: sc/inc/globstr.hrc:507
msgctxt "STR_TIME"
msgid "Time"
msgstr "Čas"
-#: sc/inc/globstr.hrc:507
+#: sc/inc/globstr.hrc:508
msgctxt "STR_SCIENTIFIC"
msgid "Scientific"
msgstr "Vědecký"
-#: sc/inc/globstr.hrc:508
+#: sc/inc/globstr.hrc:509
msgctxt "STR_FRACTION"
msgid "Fraction"
msgstr "Zlomek"
-#: sc/inc/globstr.hrc:509
+#: sc/inc/globstr.hrc:510
msgctxt "STR_BOOLEAN_VALUE"
msgid "Boolean Value"
msgstr "Booleovská hodnota"
-#: sc/inc/globstr.hrc:510
+#: sc/inc/globstr.hrc:511
msgctxt "STR_TEXT"
msgid "Text"
msgstr "Text"
-#: sc/inc/globstr.hrc:511
+#: sc/inc/globstr.hrc:512
msgctxt "STR_QUERY_PIVOTTABLE_DELTAB"
msgid "The selected sheet(s) contain source data of related pivot tables that will be lost. Are you sure you want to delete the selected sheet(s)?"
msgstr "Vybrané listy obsahují zdrojová data pro kontingenční tabulky, které budou ztraceny. Opravdu si přejete vybrané listy smazat?"
-#: sc/inc/globstr.hrc:512
+#: sc/inc/globstr.hrc:513
msgctxt "STR_ERR_NAME_INVALID_CELL_REF"
msgid "Invalid name. Reference to a cell, or a range of cells not allowed."
msgstr "Neplatný název. Odkaz na buňku nebo oblast buněk není povolen."
@@ -10488,8 +10493,8 @@ msgstr "Režim"
#: sc/inc/scfuncs.hrc:3010
msgctxt "SC_OPCODE_T_TEST"
-msgid "Mode specifies the number of distribution tails to return. 1= one-tailed, 2 = two-tailed distribution"
-msgstr "Režim = 1 určuje jednostranné rozdělení, Režim = 2 dvoustranné rozdělení"
+msgid "Mode specifies the number of distribution tails to return. 1 = one-tailed, 2 = two-tailed distribution"
+msgstr ""
#: sc/inc/scfuncs.hrc:3011
msgctxt "SC_OPCODE_T_TEST"
@@ -10533,8 +10538,8 @@ msgstr "Režim"
#: sc/inc/scfuncs.hrc:3024
msgctxt "SC_OPCODE_T_TEST_MS"
-msgid "Mode specifies the number of distribution tails to return. 1= one-tailed, 2 = two-tailed distribution"
-msgstr "Režim = 1 určuje jednostranné rozdělení, Režim = 2 dvoustranné rozdělení"
+msgid "Mode specifies the number of distribution tails to return. 1 = one-tailed, 2 = two-tailed distribution"
+msgstr ""
#: sc/inc/scfuncs.hrc:3025
msgctxt "SC_OPCODE_T_TEST_MS"
@@ -18020,22 +18025,22 @@ msgctxt "mergecellsdialog|MergeCellsDialog"
msgid "Merge Cells"
msgstr "Sloučit buňky"
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:81
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:84
msgctxt "mergecellsdialog|label"
msgid "Some cells are not empty."
msgstr "Některé buňky nejsou prázdné."
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:96
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:99
msgctxt "mergecellsdialog|move-cells-radio"
msgid "Move the contents of the hidden cells into the first cell"
msgstr "Přesunout obsah skrytých buněk do první buňky"
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:112
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:115
msgctxt "mergecellsdialog|empty-cells-radio"
msgid "Empty the contents of the hidden cells"
msgstr "Odstranit obsah skrytých buněk"
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:128
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:131
msgctxt "mergecellsdialog|keep-content-radio"
msgid "Keep the contents of the hidden cells"
msgstr "Zachovat obsah skrytých buněk"
diff --git a/source/cs/sd/messages.po b/source/cs/sd/messages.po
index 3f26d57f56e..34fb21157df 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2018-05-18 12:41+0000\n"
"Last-Translator: raal <raal@post.cz>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -16,167 +16,167 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1526647307.000000\n"
-#: sd/inc/DocumentRenderer.hrc:29
+#: sd/inc/DocumentRenderer.hrc:27
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Slides"
msgstr "Snímky"
-#: sd/inc/DocumentRenderer.hrc:30
+#: sd/inc/DocumentRenderer.hrc:28
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Handouts"
msgstr "Podklady"
-#: sd/inc/DocumentRenderer.hrc:31
+#: sd/inc/DocumentRenderer.hrc:29
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Notes"
msgstr "Poznámky"
-#: sd/inc/DocumentRenderer.hrc:32
+#: sd/inc/DocumentRenderer.hrc:30
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Outline"
msgstr "Osnova"
-#: sd/inc/DocumentRenderer.hrc:37
+#: sd/inc/DocumentRenderer.hrc:35
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "According to layout"
msgstr "Podle rozvržení"
-#: sd/inc/DocumentRenderer.hrc:38
+#: sd/inc/DocumentRenderer.hrc:36
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "1"
msgstr "1"
-#: sd/inc/DocumentRenderer.hrc:39
+#: sd/inc/DocumentRenderer.hrc:37
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "2"
msgstr "2"
-#: sd/inc/DocumentRenderer.hrc:40
+#: sd/inc/DocumentRenderer.hrc:38
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "3"
msgstr "3"
-#: sd/inc/DocumentRenderer.hrc:41
+#: sd/inc/DocumentRenderer.hrc:39
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "4"
msgstr "4"
-#: sd/inc/DocumentRenderer.hrc:42
+#: sd/inc/DocumentRenderer.hrc:40
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "6"
msgstr "6"
-#: sd/inc/DocumentRenderer.hrc:43
+#: sd/inc/DocumentRenderer.hrc:41
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "9"
msgstr "9"
-#: sd/inc/DocumentRenderer.hrc:48
+#: sd/inc/DocumentRenderer.hrc:46
msgctxt "STR_IMPRESS_PRINT_UI_ORDER_CHOICES"
msgid "Left to right, then down"
msgstr "Zleva doprava, potom dolů"
-#: sd/inc/DocumentRenderer.hrc:49
+#: sd/inc/DocumentRenderer.hrc:47
msgctxt "STR_IMPRESS_PRINT_UI_ORDER_CHOICES"
msgid "Top to bottom, then right"
msgstr "Shora dolů, potom vpravo"
-#: sd/inc/DocumentRenderer.hrc:54
+#: sd/inc/DocumentRenderer.hrc:52
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Original colors"
msgstr "Původní barvy"
-#: sd/inc/DocumentRenderer.hrc:55
+#: sd/inc/DocumentRenderer.hrc:53
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Grayscale"
msgstr "Stupně šedi"
-#: sd/inc/DocumentRenderer.hrc:56
+#: sd/inc/DocumentRenderer.hrc:54
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Black & white"
msgstr "Černá a bílá"
-#: sd/inc/DocumentRenderer.hrc:61
+#: sd/inc/DocumentRenderer.hrc:59
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Original size"
msgstr "Původní velikost"
-#: sd/inc/DocumentRenderer.hrc:62
+#: sd/inc/DocumentRenderer.hrc:60
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Fit to printable page"
msgstr "Přizpůsobit stránku rozsahu tisku"
-#: sd/inc/DocumentRenderer.hrc:63
+#: sd/inc/DocumentRenderer.hrc:61
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Distribute on multiple sheets of paper"
msgstr "Rozdělit na více listů papíru"
-#: sd/inc/DocumentRenderer.hrc:64
+#: sd/inc/DocumentRenderer.hrc:62
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Tile sheet of paper with repeated slides"
msgstr "Naskládat opakované snímky na papír"
-#: sd/inc/DocumentRenderer.hrc:69
+#: sd/inc/DocumentRenderer.hrc:67
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Original size"
msgstr "Původní velikost"
-#: sd/inc/DocumentRenderer.hrc:70
+#: sd/inc/DocumentRenderer.hrc:68
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Fit to printable page"
msgstr "Přizpůsobit stránku rozsahu tisku"
-#: sd/inc/DocumentRenderer.hrc:71
+#: sd/inc/DocumentRenderer.hrc:69
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Distribute on multiple sheets of paper"
msgstr "Rozdělit na více listů papíru"
-#: sd/inc/DocumentRenderer.hrc:72
+#: sd/inc/DocumentRenderer.hrc:70
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Tile sheet of paper with repeated pages"
msgstr "Naskládat opakované stránky na papír"
-#: sd/inc/DocumentRenderer.hrc:77
+#: sd/inc/DocumentRenderer.hrc:75
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "All pages"
msgstr "Všechny stránky"
-#: sd/inc/DocumentRenderer.hrc:78
+#: sd/inc/DocumentRenderer.hrc:76
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "Front sides / right pages"
msgstr "Přední strany / pravé stránky"
-#: sd/inc/DocumentRenderer.hrc:79
+#: sd/inc/DocumentRenderer.hrc:77
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "Back sides / left pages"
msgstr "Zadní strany / levé stránky"
-#: sd/inc/DocumentRenderer.hrc:84
+#: sd/inc/DocumentRenderer.hrc:82
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~All slides"
msgstr "Vše~chny snímky"
-#: sd/inc/DocumentRenderer.hrc:85
+#: sd/inc/DocumentRenderer.hrc:83
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~Slides"
msgstr "~Snímky"
-#: sd/inc/DocumentRenderer.hrc:86
+#: sd/inc/DocumentRenderer.hrc:84
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Se~lection"
msgstr "Vý~běr"
-#: sd/inc/DocumentRenderer.hrc:91
+#: sd/inc/DocumentRenderer.hrc:89
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~All pages"
msgstr "Vše~chny stránky"
-#: sd/inc/DocumentRenderer.hrc:92
+#: sd/inc/DocumentRenderer.hrc:90
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Pa~ges"
msgstr "~Stránky"
-#: sd/inc/DocumentRenderer.hrc:93
+#: sd/inc/DocumentRenderer.hrc:91
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Se~lection"
msgstr "Vý~běr"
diff --git a/source/cs/svx/messages.po b/source/cs/svx/messages.po
index c467cf465f2..7461cf79c7a 100644
--- a/source/cs/svx/messages.po
+++ b/source/cs/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: 2018-05-16 16:53+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2018-05-23 18:05+0000\n"
"Last-Translator: raal <raal@post.cz>\n"
"Language-Team: LANGUAGE <LL@li.org>\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: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1527098737.000000\n"
#: svx/inc/fieldunit.hrc:30
@@ -5179,8 +5179,8 @@ msgstr "K hlášení o chybě můžete přiložit související části uživate
#: svx/uiconfig/ui/safemodedialog.ui:432
msgctxt "safemodedialog|btn_create_zip"
-msgid "Create Zip Archive from User Profile"
-msgstr "Vytvořit z uživatelského profilu archiv ZIP"
+msgid "Archive User Profile"
+msgstr ""
#: svx/uiconfig/ui/safemodedialog.ui:445
msgctxt "safemodedialog|linkbutton_profile"
@@ -8769,9 +8769,9 @@ msgid "Red"
msgstr "Červená"
#: include/svx/strings.hrc:565
-msgctxt "RID_SVXSTR_COLOR_VIOLET"
-msgid "Violet"
-msgstr "Fialová"
+msgctxt "RID_SVXSTR_COLOR_MAGENTA"
+msgid "Magenta"
+msgstr "Purpurová"
#: include/svx/strings.hrc:566
msgctxt "RID_SVXSTR_COLOR_PURPLE"
@@ -8835,9 +8835,9 @@ msgid "Light Red"
msgstr "Světle červená"
#: include/svx/strings.hrc:579
-msgctxt "RID_SVXSTR_COLOR_LIGHTVIOLET"
-msgid "Light Violet"
-msgstr "Světle fialová"
+msgctxt "RID_SVXSTR_COLOR_LIGHTMAGENTA"
+msgid "Light Magenta"
+msgstr ""
#: include/svx/strings.hrc:580
msgctxt "RID_SVXSTR_COLOR_LIGHTPURPLE"
@@ -8901,9 +8901,9 @@ msgid "Dark Red"
msgstr "Tmavě červená"
#: include/svx/strings.hrc:593
-msgctxt "RID_SVXSTR_COLOR_DARKVIOLET1"
-msgid "Dark Violet"
-msgstr "Tmavě fialová"
+msgctxt "RID_SVXSTR_COLOR_DARKMAGENTA"
+msgid "Dark Magenta"
+msgstr ""
#: include/svx/strings.hrc:594
msgctxt "RID_SVXSTR_COLOR_DARKPURPLE"
@@ -8937,55 +8937,55 @@ msgstr "Tmavě žlutozelená"
#. Elements of the Tonal color palette
#: include/svx/strings.hrc:601
+msgctxt "RID_SVXSTR_COLOR_VIOLET"
+msgid "Violet"
+msgstr "Fialová"
+
+#: include/svx/strings.hrc:602
msgctxt "RID_SVXSTR_COLOR_VIOLET_OUG"
msgid "Violet (Out of Gamut)"
msgstr "Fialová (mimo gamut)"
-#: include/svx/strings.hrc:602
+#: include/svx/strings.hrc:603
msgctxt "RID_SVXSTR_COLOR_BLUE_OUG"
msgid "Blue (Out of Gamut)"
msgstr "Modrá (mimo gamut)"
-#: include/svx/strings.hrc:603
+#: include/svx/strings.hrc:604
msgctxt "RID_SVXSTR_COLOR_AZURE_OUG"
msgid "Azure (Out of Gamut)"
msgstr "Blankytná (mimo gamut)"
-#: include/svx/strings.hrc:604
+#: include/svx/strings.hrc:605
msgctxt "RID_SVXSTR_COLOR_SPRINGGREEN_OUG"
msgid "Spring Green (Out of Gamut)"
msgstr "Svěží zelená (mimo gamut)"
-#: include/svx/strings.hrc:605
+#: include/svx/strings.hrc:606
msgctxt "RID_SVXSTR_COLOR_GREEN_OUG"
msgid "Green (Out of Gamut)"
msgstr "Zelená (mimo gamut)"
-#: include/svx/strings.hrc:606
+#: include/svx/strings.hrc:607
msgctxt "RID_SVXSTR_COLOR_CHARTREUSEGREEN_OUG"
msgid "Chartreuse Green (Out of Gamut)"
msgstr "Žlutozelená (mimo gamut)"
-#: include/svx/strings.hrc:607
+#: include/svx/strings.hrc:608
msgctxt "RID_SVXSTR_COLOR_ORANGE_OUG"
msgid "Orange (Out of Gamut)"
msgstr "Oranžová (mimo gamut)"
-#: include/svx/strings.hrc:608
+#: include/svx/strings.hrc:609
msgctxt "RID_SVXSTR_COLOR_RED_OUG"
msgid "Red (Out of Gamut)"
msgstr "Červená (mimo gamut)"
-#: include/svx/strings.hrc:609
+#: include/svx/strings.hrc:610
msgctxt "RID_SVXSTR_COLOR_ROSE_OUG"
msgid "Rose (Out of Gamut)"
msgstr "Růžová (mimo gamut)"
-#: include/svx/strings.hrc:610
-msgctxt "RID_SVXSTR_COLOR_MAGENTA"
-msgid "Magenta"
-msgstr "Purpurová"
-
#: include/svx/strings.hrc:611
msgctxt "RID_SVXSTR_COLOR_AZURE"
msgid "Azure"
@@ -12091,13 +12091,13 @@ msgstr "Odrážky, šipka vpravo"
#: include/svx/strings.hrc:1273
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_6"
-msgid "Check mark bullets"
-msgstr "Odrážky, křížek"
+msgid "Cross mark bullets"
+msgstr ""
#: include/svx/strings.hrc:1274
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_7"
-msgid "Tick mark bullets"
-msgstr "Odrážky, zaškrtnutí"
+msgid "Check mark bullets"
+msgstr ""
#: include/svx/strings.hrc:1275
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_0"
diff --git a/source/cs/sw/messages.po b/source/cs/sw/messages.po
index d5ce9ef7cb3..57696a6c457 100644
--- a/source/cs/sw/messages.po
+++ b/source/cs/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: 2018-05-22 13:17+0200\n"
+"POT-Creation-Date: 2018-06-12 14:41+0200\n"
"PO-Revision-Date: 2018-05-01 19:06+0000\n"
"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1180,13 +1180,13 @@ msgstr "Citace"
#: sw/inc/strings.hrc:172
msgctxt "STR_POOLCOLL_TOX_ILLUSH"
-msgid "Illustration Index Heading"
-msgstr "Nadpis rejstříku ilustrací"
+msgid "Figure Index Heading"
+msgstr ""
#: sw/inc/strings.hrc:173
msgctxt "STR_POOLCOLL_TOX_ILLUS1"
-msgid "Illustration Index 1"
-msgstr "Rejstřík ilustrací 1"
+msgid "Figure Index 1"
+msgstr ""
#: sw/inc/strings.hrc:174
msgctxt "STR_POOLCOLL_TOX_OBJECTH"
@@ -3590,8 +3590,8 @@ msgstr "Tabulka objektů"
#: sw/inc/strings.hrc:672
msgctxt "STR_TOX_ILL"
-msgid "Illustration Index"
-msgstr "Seznam ilustrací"
+msgid "Table of Figures"
+msgstr ""
#: sw/inc/strings.hrc:673
#, c-format
@@ -9244,72 +9244,72 @@ msgctxt "footnotepage|label5"
msgid "Continuation Notice"
msgstr "Pokračující komentář"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:49
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:55
msgctxt "footnotesendnotestabpage|ftnntnum"
msgid "_Restart numbering"
msgstr "_Restartovat číslování"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:91
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:93
msgctxt "footnotesendnotestabpage|ftnoffset_label"
msgid "_Start at:"
msgstr "Začít _od:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:112
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:111
msgctxt "footnotesendnotestabpage|ftnntnumfmt"
msgid "Custom _format"
msgstr "Vlastní _formát"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:155
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:150
msgctxt "footnotesendnotestabpage|ftnsuffix_label"
msgid "Aft_er:"
msgstr "_Za:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:199
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:188
msgctxt "footnotesendnotestabpage|ftnprefix_label"
msgid "Be_fore:"
msgstr "_Před:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:228
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:212
msgctxt "footnotesendnotestabpage|ftnntattextend"
msgid "Collec_t at end of text"
msgstr "Shromáždit na konci _textu"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:252
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:234
msgctxt "footnotesendnotestabpage|label1"
msgid "Footnotes"
msgstr "Poznámky pod čarou"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:289
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:271
msgctxt "footnotesendnotestabpage|endntattextend"
msgid "C_ollect at end of section"
msgstr "Shromáždit na konci _sekce"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:315
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:295
msgctxt "footnotesendnotestabpage|endntnum"
msgid "_Restart numbering"
msgstr "Restartovat čís_lování"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:357
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:333
msgctxt "footnotesendnotestabpage|endoffset_label"
msgid "_Start at:"
msgstr "Začít o_d:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:378
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:351
msgctxt "footnotesendnotestabpage|endntnumfmt"
msgid "_Custom format"
msgstr "Vlastní for_mát"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:421
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:390
msgctxt "footnotesendnotestabpage|endsuffix_label"
msgid "Aft_er:"
msgstr "Z_a:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:465
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:428
msgctxt "footnotesendnotestabpage|endprefix_label"
msgid "Be_fore:"
msgstr "Př_ed:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:500
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:458
msgctxt "footnotesendnotestabpage|label2"
msgid "Endnotes"
msgstr "Vysvětlivky"
@@ -9339,27 +9339,27 @@ msgctxt "formatsectiondialog|notes"
msgid "Footnotes/Endnotes"
msgstr "Poznámky pod čarou/vysvětlivky"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:63
+#: sw/uiconfig/swriter/ui/formattablepage.ui:77
msgctxt "formattablepage|nameft"
msgid "_Name"
msgstr "_Název"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:79
+#: sw/uiconfig/swriter/ui/formattablepage.ui:91
msgctxt "formattablepage|widthft"
msgid "W_idth"
msgstr "Šíř_ka"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:110
+#: sw/uiconfig/swriter/ui/formattablepage.ui:120
msgctxt "formattablepage|relwidth"
msgid "Relati_ve"
msgstr "_Relativní"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:155
+#: sw/uiconfig/swriter/ui/formattablepage.ui:160
msgctxt "formattablepage|label45"
msgid "Properties"
msgstr "Vlastnosti"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:194
+#: sw/uiconfig/swriter/ui/formattablepage.ui:195
msgctxt "formattablepage|leftft"
msgid "Lef_t"
msgstr "Vl_evo"
@@ -9369,62 +9369,62 @@ msgctxt "formattablepage|rightft"
msgid "Ri_ght"
msgstr "_Vpravo"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:228
+#: sw/uiconfig/swriter/ui/formattablepage.ui:226
msgctxt "formattablepage|aboveft"
msgid "_Above"
msgstr "N_ad"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:245
+#: sw/uiconfig/swriter/ui/formattablepage.ui:241
msgctxt "formattablepage|belowft"
msgid "_Below"
msgstr "P_od"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:320
+#: sw/uiconfig/swriter/ui/formattablepage.ui:311
msgctxt "formattablepage|label46"
msgid "Spacing"
msgstr "Rozestupy"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:362
+#: sw/uiconfig/swriter/ui/formattablepage.ui:349
msgctxt "formattablepage|full"
msgid "A_utomatic"
msgstr "Auto_maticky"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:380
+#: sw/uiconfig/swriter/ui/formattablepage.ui:365
msgctxt "formattablepage|left"
msgid "_Left"
msgstr "V_levo"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:398
+#: sw/uiconfig/swriter/ui/formattablepage.ui:381
msgctxt "formattablepage|fromleft"
msgid "_From left"
msgstr "_Zleva"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:416
+#: sw/uiconfig/swriter/ui/formattablepage.ui:397
msgctxt "formattablepage|right"
msgid "R_ight"
msgstr "V_pravo"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:435
+#: sw/uiconfig/swriter/ui/formattablepage.ui:413
msgctxt "formattablepage|center"
msgid "_Center"
msgstr "Na _střed"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:453
+#: sw/uiconfig/swriter/ui/formattablepage.ui:429
msgctxt "formattablepage|free"
msgid "_Manual"
msgstr "R_uční"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:478
+#: sw/uiconfig/swriter/ui/formattablepage.ui:452
msgctxt "formattablepage|label43"
msgid "Alignment"
msgstr "Zarovnání"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:522
+#: sw/uiconfig/swriter/ui/formattablepage.ui:491
msgctxt "formattablepage|label53"
msgid "Text _direction"
msgstr "Směr _textu"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:553
+#: sw/uiconfig/swriter/ui/formattablepage.ui:519
msgctxt "formattablepage|label44"
msgid "Properties "
msgstr "Vlastnosti "
@@ -9779,22 +9779,27 @@ msgctxt "headerfootermenu|insert_pagenumber"
msgid "Insert Page Number"
msgstr "Vložit číslo stránky"
-#: sw/uiconfig/swriter/ui/indentpage.ui:52
+#: sw/uiconfig/swriter/ui/headerfootermenu.ui:42
+msgctxt "headerfootermenu|insert_pagecount"
+msgid "Insert Page Count"
+msgstr ""
+
+#: sw/uiconfig/swriter/ui/indentpage.ui:57
msgctxt "indentpage|label1"
msgid "_Before section"
msgstr "Pře_d sekcí"
-#: sw/uiconfig/swriter/ui/indentpage.ui:67
+#: sw/uiconfig/swriter/ui/indentpage.ui:71
msgctxt "indentpage|label3"
msgid "_After section"
msgstr "_Po sekci"
-#: sw/uiconfig/swriter/ui/indentpage.ui:113
+#: sw/uiconfig/swriter/ui/indentpage.ui:115
msgctxt "indentpage|label2"
msgid "Indent"
msgstr "Odsazení"
-#: sw/uiconfig/swriter/ui/indentpage.ui:142
+#: sw/uiconfig/swriter/ui/indentpage.ui:155
msgctxt "indentpage|preview-atkobject"
msgid "Example"
msgstr "Příklad"
@@ -13285,8 +13290,8 @@ msgstr "Zamknout formulář"
#: sw/uiconfig/swriter/ui/optcompatpage.ui:68
msgctxt "optcompatpage|format"
-msgid "MS Word-compatible trailing blanks"
-msgstr "Prázdné znaky na konci řádku kompatibilní s programem MS Word"
+msgid "Word-compatible trailing blanks"
+msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:69
msgctxt "optcompatpage|format"
@@ -13295,7 +13300,7 @@ msgstr "Tolerovat prázdné řádky na pozadí stránek PDF kvůli kompatibilit
#: sw/uiconfig/swriter/ui/optcompatpage.ui:70
msgctxt "optcompatpage|format"
-msgid "A database field (e.g., MailMerge) with empty value hides its paragraph"
+msgid "Hide paragraphs of database fields (e.g., mail merge) with an empty value"
msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:71
@@ -15981,122 +15986,122 @@ msgctxt "tableproperties|background"
msgid "Background"
msgstr "Pozadí"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:25
-msgctxt "tabletextflowpage|liststore1"
-msgid "Horizontal"
-msgstr "Vodorovně"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:29
-msgctxt "tabletextflowpage|liststore1"
-msgid "Vertical"
-msgstr "Svisle"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:33
-msgctxt "tabletextflowpage|liststore1"
-msgid "Use superordinate object settings"
-msgstr "Použít nastavení nadřazeného objektu"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:47
-msgctxt "tabletextflowpage|liststore2"
-msgid "Top"
-msgstr "Nahoru"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:51
-msgctxt "tabletextflowpage|liststore2"
-msgid "Centered"
-msgstr "Uprostřed"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:55
-msgctxt "tabletextflowpage|liststore2"
-msgid "Bottom"
-msgstr "Dolů"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:97
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:53
msgctxt "tabletextflowpage|break"
msgid "_Break"
msgstr "_Rozpojit"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:112
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:68
msgctxt "tabletextflowpage|page"
msgid "_Page"
msgstr "S_tránka"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:132
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:87
msgctxt "tabletextflowpage|column"
msgid "Col_umn"
msgstr "S_loupec"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:151
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:106
msgctxt "tabletextflowpage|before"
msgid "Be_fore"
msgstr "_Před"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:171
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:125
msgctxt "tabletextflowpage|after"
msgid "_After"
msgstr "_Za"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:203
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:158
msgctxt "tabletextflowpage|pagestyle"
msgid "With Page St_yle"
msgstr "_Se stylem stránky"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:224
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:177
msgctxt "tabletextflowpage|pagenoft"
msgid "Page _number"
msgstr "Číslo strán_ky"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:257
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:213
msgctxt "tabletextflowpage|pagestylelb-atkobject"
msgid "With Page Style"
msgstr "Se stylem stránky"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:274
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:230
msgctxt "tabletextflowpage|split"
msgid "Allow _table to split across pages and columns"
msgstr "_Povolit rozdělení tabulky přes stránky a sloupce"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:289
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:245
msgctxt "tabletextflowpage|splitrow"
msgid "Allow row to break a_cross pages and columns"
msgstr "Povolit zalo_mení řádku přes stránky a sloupce"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:306
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:262
msgctxt "tabletextflowpage|keep"
msgid "_Keep with next paragraph"
msgstr "Svázat s _následujícím odstavcem"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:328
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:284
msgctxt "tabletextflowpage|label40"
msgid "Text _orientation"
msgstr "_Orientace textu"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:361
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:298
+msgctxt "tabletextflowpage|liststore1"
+msgid "Horizontal"
+msgstr "Vodorovně"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:299
+msgctxt "tabletextflowpage|liststore1"
+msgid "Vertical"
+msgstr "Svisle"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:300
+msgctxt "tabletextflowpage|liststore1"
+msgid "Use superordinate object settings"
+msgstr "Použít nastavení nadřazeného objektu"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:321
msgctxt "tabletextflowpage|headline"
msgid "R_epeat heading"
msgstr "Opakovat zá_hlaví"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:383
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:343
msgctxt "tabletextflowpage|label38"
msgid "The first "
msgstr "Prvních "
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:396
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:356
msgctxt "tabletextflowpage|label39"
msgid "rows"
msgstr "řádků"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:434
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:395
msgctxt "tabletextflowpage|label35"
msgid "Text Flow"
msgstr "Tok textu"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:467
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:428
msgctxt "tabletextflowpage|label41"
msgid "_Vertical alignment"
msgstr "S_vislé zarovnání"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:495
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:442
+msgctxt "tabletextflowpage|liststore2"
+msgid "Top"
+msgstr "Nahoru"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:443
+msgctxt "tabletextflowpage|liststore2"
+msgid "Centered"
+msgstr "Uprostřed"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:444
+msgctxt "tabletextflowpage|liststore2"
+msgid "Bottom"
+msgstr "Dolů"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:460
msgctxt "tabletextflowpage|label36"
msgid "Alignment"
msgstr "Zarovnání"
@@ -16878,8 +16883,8 @@ msgstr "Abecední rejstřík"
#: sw/uiconfig/swriter/ui/tocindexpage.ui:58
msgctxt "tocindexpage|liststore1"
-msgid "Illustration Index"
-msgstr "Seznam ilustrací"
+msgid "Table of Figures"
+msgstr ""
#: sw/uiconfig/swriter/ui/tocindexpage.ui:62
msgctxt "tocindexpage|liststore1"
diff --git a/source/cs/vcl/messages.po b/source/cs/vcl/messages.po
index 4d5bce37189..afcc16608ef 100644
--- a/source/cs/vcl/messages.po
+++ b/source/cs/vcl/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: 2018-05-08 15:10+0200\n"
-"PO-Revision-Date: 2018-05-23 18:03+0000\n"
-"Last-Translator: raal <raal@post.cz>\n"
+"PO-Revision-Date: 2018-06-12 15:50+0000\n"
+"Last-Translator: Stanislav Horáček <stanislav.horacek@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: cs\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1527098600.000000\n"
+"X-POOTLE-MTIME: 1528818619.000000\n"
#. To translators: This is the first entry of a sequence of paper size names
#: vcl/inc/print.hrc:28
@@ -425,7 +425,7 @@ msgstr "~Uložit"
#: vcl/inc/strings.hrc:70
msgctxt "SV_BUTTONTEXT_UNDO"
msgid "~Undo"
-msgstr "~Zpět"
+msgstr "Z~pět"
#: vcl/inc/strings.hrc:71
msgctxt "SV_BUTTONTEXT_PASTE"
diff --git a/source/cs/writerperfect/messages.po b/source/cs/writerperfect/messages.po
index 8e782d775e1..2da4ca3d909 100644
--- a/source/cs/writerperfect/messages.po
+++ b/source/cs/writerperfect/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-16 16:54+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2018-05-18 11:50+0000\n"
"Last-Translator: raal <raal@post.cz>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -66,97 +66,97 @@ msgctxt "exportepub|generalft"
msgid "General"
msgstr "Obecné"
-#: writerperfect/uiconfig/ui/exportepub.ui:122
+#: writerperfect/uiconfig/ui/exportepub.ui:121
msgctxt "exportepub|versionft"
msgid "Version:"
msgstr "Verze:"
-#: writerperfect/uiconfig/ui/exportepub.ui:139
+#: writerperfect/uiconfig/ui/exportepub.ui:138
msgctxt "exportepub|epub3"
msgid "EPUB 3.0"
msgstr "EPUB 3.0"
-#: writerperfect/uiconfig/ui/exportepub.ui:140
+#: writerperfect/uiconfig/ui/exportepub.ui:139
msgctxt "exportepub|epub2"
msgid "EPUB 2.0"
msgstr "EPUB 2.0"
-#: writerperfect/uiconfig/ui/exportepub.ui:175
+#: writerperfect/uiconfig/ui/exportepub.ui:174
msgctxt "exportepub|splitft"
msgid "Split method:"
msgstr "Způsob členění:"
-#: writerperfect/uiconfig/ui/exportepub.ui:192
+#: writerperfect/uiconfig/ui/exportepub.ui:191
msgctxt "exportepub|splitpage"
msgid "Page break"
msgstr "Zalomení stránky"
-#: writerperfect/uiconfig/ui/exportepub.ui:193
+#: writerperfect/uiconfig/ui/exportepub.ui:192
msgctxt "exportepub|splitheading"
msgid "Heading"
msgstr "Nadpis"
-#: writerperfect/uiconfig/ui/exportepub.ui:228
+#: writerperfect/uiconfig/ui/exportepub.ui:227
msgctxt "exportepub|layoutft"
msgid "Layout method:"
msgstr "Způsob rozvržení:"
-#: writerperfect/uiconfig/ui/exportepub.ui:245
+#: writerperfect/uiconfig/ui/exportepub.ui:244
msgctxt "exportepub|layoutreflowable"
msgid "Reflowable"
msgstr "Přizpůsobující se"
-#: writerperfect/uiconfig/ui/exportepub.ui:246
+#: writerperfect/uiconfig/ui/exportepub.ui:245
msgctxt "exportepub|layoutfixed"
msgid "Fixed"
msgstr "Neměnné"
-#: writerperfect/uiconfig/ui/exportepub.ui:281
+#: writerperfect/uiconfig/ui/exportepub.ui:280
msgctxt "exportepub|coverimageft"
msgid "Custom cover image:"
msgstr "Vlastní obrázek na obálce:"
-#: writerperfect/uiconfig/ui/exportepub.ui:311
+#: writerperfect/uiconfig/ui/exportepub.ui:310
msgctxt "exportepub|coverbutton"
msgid "Browse..."
msgstr "Procházet..."
-#: writerperfect/uiconfig/ui/exportepub.ui:355
+#: writerperfect/uiconfig/ui/exportepub.ui:354
msgctxt "exportepub|mediadirft"
msgid "Custom media directory:"
msgstr "Vlastní adresář s multimédii:"
-#: writerperfect/uiconfig/ui/exportepub.ui:385
+#: writerperfect/uiconfig/ui/exportepub.ui:384
msgctxt "exportepub|mediabutton"
msgid "Browse..."
msgstr "Procházet..."
-#: writerperfect/uiconfig/ui/exportepub.ui:429
+#: writerperfect/uiconfig/ui/exportepub.ui:428
msgctxt "exportepub|metadataft"
msgid "Metadata"
msgstr "Metadata"
-#: writerperfect/uiconfig/ui/exportepub.ui:470
+#: writerperfect/uiconfig/ui/exportepub.ui:468
msgctxt "exportepub|identifierft"
msgid "Identifier:"
msgstr "Identifikátor:"
-#: writerperfect/uiconfig/ui/exportepub.ui:485
+#: writerperfect/uiconfig/ui/exportepub.ui:483
msgctxt "exportepub|titleft"
msgid "Title:"
msgstr "Název:"
-#: writerperfect/uiconfig/ui/exportepub.ui:511
+#: writerperfect/uiconfig/ui/exportepub.ui:509
msgctxt "exportepub|authorft"
msgid "Author:"
msgstr "Autor:"
-#: writerperfect/uiconfig/ui/exportepub.ui:537
+#: writerperfect/uiconfig/ui/exportepub.ui:535
msgctxt "exportepub|languageft"
msgid "Language:"
msgstr "Jazyk:"
-#: writerperfect/uiconfig/ui/exportepub.ui:563
+#: writerperfect/uiconfig/ui/exportepub.ui:561
msgctxt "exportepub|dateft"
msgid "Date:"
msgstr "Datum:"
diff --git a/source/cy/cui/messages.po b/source/cy/cui/messages.po
index 60e7925a303..b99c0390aad 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2018-05-12 14:30+0000\n"
"Last-Translator: Rhoslyn Prys <rprys@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -9872,97 +9872,97 @@ msgctxt "positionsizedialog|PositionAndSizeDialog"
msgid "Position and Size"
msgstr "Safle a maint"
-#: cui/uiconfig/ui/positionsizedialog.ui:107
+#: cui/uiconfig/ui/positionsizedialog.ui:136
msgctxt "positionsizedialog|RID_SVXPAGE_POSITION_SIZE"
msgid "Position and Size"
msgstr "Safle a maint"
-#: cui/uiconfig/ui/positionsizedialog.ui:129
+#: cui/uiconfig/ui/positionsizedialog.ui:182
msgctxt "positionsizedialog|RID_SVXPAGE_SWPOSSIZE"
msgid "Position and Size"
msgstr "Safle a Maint"
-#: cui/uiconfig/ui/positionsizedialog.ui:152
+#: cui/uiconfig/ui/positionsizedialog.ui:229
msgctxt "positionsizedialog|RID_SVXPAGE_ANGLE"
msgid "Rotation"
msgstr "Cylchdro"
-#: cui/uiconfig/ui/positionsizedialog.ui:175
+#: cui/uiconfig/ui/positionsizedialog.ui:276
msgctxt "positionsizedialog|RID_SVXPAGE_SLANT"
msgid "Slant & Corner Radius"
msgstr "Radiws Goleddf a Chornel"
-#: cui/uiconfig/ui/possizetabpage.ui:40
+#: cui/uiconfig/ui/possizetabpage.ui:61
msgctxt "possizetabpage|FT_POS_X"
msgid "Position _X:"
msgstr "Safle _X:"
-#: cui/uiconfig/ui/possizetabpage.ui:56
+#: cui/uiconfig/ui/possizetabpage.ui:75
msgctxt "possizetabpage|FT_POS_Y"
msgid "Position _Y:"
msgstr "Safle _Y:"
-#: cui/uiconfig/ui/possizetabpage.ui:110
+#: cui/uiconfig/ui/possizetabpage.ui:128
msgctxt "possizetabpage|FT_POSREFERENCE"
msgid "_Base point:"
msgstr "Pwynt _sail:"
-#: cui/uiconfig/ui/possizetabpage.ui:148
+#: cui/uiconfig/ui/possizetabpage.ui:182
msgctxt "possizetabpage|label1"
msgid "Position"
msgstr "Safle"
-#: cui/uiconfig/ui/possizetabpage.ui:190
+#: cui/uiconfig/ui/possizetabpage.ui:224
msgctxt "possizetabpage|FT_WIDTH"
msgid "Wi_dth:"
msgstr "_Lled:"
-#: cui/uiconfig/ui/possizetabpage.ui:206
+#: cui/uiconfig/ui/possizetabpage.ui:238
msgctxt "possizetabpage|FT_HEIGHT"
msgid "H_eight:"
msgstr "_Uchder:"
-#: cui/uiconfig/ui/possizetabpage.ui:247
+#: cui/uiconfig/ui/possizetabpage.ui:276
msgctxt "possizetabpage|CBX_SCALE"
msgid "_Keep ratio"
msgstr "_Cadw graddfa"
-#: cui/uiconfig/ui/possizetabpage.ui:279
+#: cui/uiconfig/ui/possizetabpage.ui:307
msgctxt "possizetabpage|FT_SIZEREFERENCE"
msgid "Base _point:"
msgstr "Pwynt _sail:"
-#: cui/uiconfig/ui/possizetabpage.ui:317
+#: cui/uiconfig/ui/possizetabpage.ui:361
msgctxt "possizetabpage|label2"
msgid "Size"
msgstr "Maint"
-#: cui/uiconfig/ui/possizetabpage.ui:356
+#: cui/uiconfig/ui/possizetabpage.ui:401
msgctxt "possizetabpage|TSB_POSPROTECT"
msgid "Positio_n"
msgstr "S_afle"
-#: cui/uiconfig/ui/possizetabpage.ui:373
+#: cui/uiconfig/ui/possizetabpage.ui:418
msgctxt "possizetabpage|TSB_SIZEPROTECT"
msgid "_Size"
msgstr "_Maint"
-#: cui/uiconfig/ui/possizetabpage.ui:397
+#: cui/uiconfig/ui/possizetabpage.ui:441
msgctxt "possizetabpage|label3"
msgid "Protect"
msgstr "Digelu"
-#: cui/uiconfig/ui/possizetabpage.ui:430
+#: cui/uiconfig/ui/possizetabpage.ui:475
msgctxt "possizetabpage|TSB_AUTOGROW_WIDTH"
msgid "_Fit width to text"
msgstr "Ffitio'r _led i'r testun"
-#: cui/uiconfig/ui/possizetabpage.ui:447
+#: cui/uiconfig/ui/possizetabpage.ui:492
msgctxt "possizetabpage|TSB_AUTOGROW_HEIGHT"
msgid "Fit _height to text"
msgstr "Ffitio'r _uchder i'r testun"
-#: cui/uiconfig/ui/possizetabpage.ui:471
+#: cui/uiconfig/ui/possizetabpage.ui:515
msgctxt "possizetabpage|label4"
msgid "Adapt"
msgstr "Addasu"
@@ -10162,47 +10162,47 @@ msgctxt "recordnumberdialog|label2"
msgid "go to record"
msgstr "mynd i gofnod"
-#: cui/uiconfig/ui/rotationtabpage.ui:52
+#: cui/uiconfig/ui/rotationtabpage.ui:56
msgctxt "rotationtabpage|FT_POS_X"
msgid "Position _X:"
msgstr "Safle _X:"
-#: cui/uiconfig/ui/rotationtabpage.ui:66
+#: cui/uiconfig/ui/rotationtabpage.ui:70
msgctxt "rotationtabpage|FT_POS_Y"
msgid "Position _Y:"
msgstr "Safle _Y:"
-#: cui/uiconfig/ui/rotationtabpage.ui:116
+#: cui/uiconfig/ui/rotationtabpage.ui:123
msgctxt "rotationtabpage|FT_POSPRESETS"
msgid "_Default settings:"
msgstr "_Gosodiadau Rhagosodedig:"
-#: cui/uiconfig/ui/rotationtabpage.ui:130
+#: cui/uiconfig/ui/rotationtabpage.ui:151
msgctxt "rotationtabpage|CTL_RECT|tooltip_text"
msgid "Rotation point"
msgstr "Pwynt cylchdro"
-#: cui/uiconfig/ui/rotationtabpage.ui:155
+#: cui/uiconfig/ui/rotationtabpage.ui:178
msgctxt "rotationtabpage|label1"
msgid "Pivot Point"
msgstr "Pwynt Troi"
-#: cui/uiconfig/ui/rotationtabpage.ui:197
+#: cui/uiconfig/ui/rotationtabpage.ui:220
msgctxt "rotationtabpage|FT_ANGLE"
msgid "_Angle:"
msgstr "_Ongl:"
-#: cui/uiconfig/ui/rotationtabpage.ui:238
+#: cui/uiconfig/ui/rotationtabpage.ui:263
msgctxt "rotationtabpage|FT_ANGLEPRESETS"
msgid "Default _settings:"
msgstr "Gosodiadau _rhagosodedig:"
-#: cui/uiconfig/ui/rotationtabpage.ui:252
+#: cui/uiconfig/ui/rotationtabpage.ui:287
msgctxt "rotationtabpage|CTL_ANGLE|tooltip_text"
msgid "Rotation Angle"
msgstr "Ongl Cylchdro"
-#: cui/uiconfig/ui/rotationtabpage.ui:277
+#: cui/uiconfig/ui/rotationtabpage.ui:314
msgctxt "rotationtabpage|label2"
msgid "Rotation Angle"
msgstr "Ongl Cylchdro"
@@ -10582,52 +10582,52 @@ msgctxt "similaritysearchdialog|relaxbox"
msgid "_Combine"
msgstr "_Cyfuno"
-#: cui/uiconfig/ui/slantcornertabpage.ui:50
+#: cui/uiconfig/ui/slantcornertabpage.ui:70
msgctxt "slantcornertabpage|label5"
msgid "_X:"
msgstr "_X:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:88
+#: cui/uiconfig/ui/slantcornertabpage.ui:110
msgctxt "slantcornertabpage|label6"
msgid "_Y:"
msgstr "_Y:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:125
+#: cui/uiconfig/ui/slantcornertabpage.ui:149
msgctxt "slantcornertabpage|label3"
msgid "Control Point 1"
msgstr "Pwynt Rheoli 1"
-#: cui/uiconfig/ui/slantcornertabpage.ui:159
+#: cui/uiconfig/ui/slantcornertabpage.ui:183
msgctxt "slantcornertabpage|FT_RADIUS"
msgid "_Radius:"
msgstr "_Radiws:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:189
+#: cui/uiconfig/ui/slantcornertabpage.ui:214
msgctxt "slantcornertabpage|label1"
msgid "Corner Radius"
msgstr "Radiws Cornel"
-#: cui/uiconfig/ui/slantcornertabpage.ui:223
+#: cui/uiconfig/ui/slantcornertabpage.ui:248
msgctxt "slantcornertabpage|FT_ANGLE"
msgid "_Angle:"
msgstr "_Ongl:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:253
+#: cui/uiconfig/ui/slantcornertabpage.ui:279
msgctxt "slantcornertabpage|label2"
msgid "Slant"
msgstr "Goleddf"
-#: cui/uiconfig/ui/slantcornertabpage.ui:294
+#: cui/uiconfig/ui/slantcornertabpage.ui:320
msgctxt "slantcornertabpage|label4"
msgid "_X:"
msgstr "_X:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:332
+#: cui/uiconfig/ui/slantcornertabpage.ui:360
msgctxt "slantcornertabpage|label7"
msgid "_Y:"
msgstr "_Y:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:369
+#: cui/uiconfig/ui/slantcornertabpage.ui:399
msgctxt "slantcornertabpage|label8"
msgid "Control Point 2"
msgstr "Pwynt Rheoli 2"
@@ -10907,112 +10907,112 @@ msgctxt "storedwebconnectiondialog|change"
msgid "_Change Password..."
msgstr "_Newid Cyfrinair..."
-#: cui/uiconfig/ui/swpossizepage.ui:74
+#: cui/uiconfig/ui/swpossizepage.ui:85
msgctxt "swpossizepage|widthft"
msgid "_Width:"
msgstr "_Lled:"
-#: cui/uiconfig/ui/swpossizepage.ui:111
+#: cui/uiconfig/ui/swpossizepage.ui:123
msgctxt "swpossizepage|heightft"
msgid "H_eight:"
msgstr "_Uchder:"
-#: cui/uiconfig/ui/swpossizepage.ui:128
+#: cui/uiconfig/ui/swpossizepage.ui:141
msgctxt "swpossizepage|ratio"
msgid "_Keep ratio"
msgstr "­_Cadw graddfa"
-#: cui/uiconfig/ui/swpossizepage.ui:149
+#: cui/uiconfig/ui/swpossizepage.ui:162
msgctxt "swpossizepage|label2"
msgid "Size"
msgstr "Maint"
-#: cui/uiconfig/ui/swpossizepage.ui:205
+#: cui/uiconfig/ui/swpossizepage.ui:218
msgctxt "swpossizepage|topage"
msgid "To _page"
msgstr "I _dudalen"
-#: cui/uiconfig/ui/swpossizepage.ui:222
+#: cui/uiconfig/ui/swpossizepage.ui:234
msgctxt "swpossizepage|topara"
msgid "To paragrap_h"
msgstr "I _baragraff"
-#: cui/uiconfig/ui/swpossizepage.ui:238
+#: cui/uiconfig/ui/swpossizepage.ui:250
msgctxt "swpossizepage|tochar"
msgid "To cha_racter"
msgstr "I _nod"
-#: cui/uiconfig/ui/swpossizepage.ui:254
+#: cui/uiconfig/ui/swpossizepage.ui:266
msgctxt "swpossizepage|aschar"
msgid "_As character"
msgstr "_Fel nod"
-#: cui/uiconfig/ui/swpossizepage.ui:270
+#: cui/uiconfig/ui/swpossizepage.ui:282
msgctxt "swpossizepage|toframe"
msgid "To _frame"
msgstr "I _fframio"
-#: cui/uiconfig/ui/swpossizepage.ui:292
+#: cui/uiconfig/ui/swpossizepage.ui:304
msgctxt "swpossizepage|label1"
msgid "Anchor"
msgstr "Angor"
-#: cui/uiconfig/ui/swpossizepage.ui:333
+#: cui/uiconfig/ui/swpossizepage.ui:344
msgctxt "swpossizepage|horiposft"
msgid "Hori_zontal:"
msgstr "Llo_rweddol:"
-#: cui/uiconfig/ui/swpossizepage.ui:347
+#: cui/uiconfig/ui/swpossizepage.ui:358
msgctxt "swpossizepage|horibyft"
msgid "b_y:"
msgstr "_gan:"
-#: cui/uiconfig/ui/swpossizepage.ui:361
+#: cui/uiconfig/ui/swpossizepage.ui:372
msgctxt "swpossizepage|vertbyft"
msgid "_by:"
msgstr "g_an:"
-#: cui/uiconfig/ui/swpossizepage.ui:375
+#: cui/uiconfig/ui/swpossizepage.ui:386
msgctxt "swpossizepage|horitoft"
msgid "_to:"
msgstr "_i:"
-#: cui/uiconfig/ui/swpossizepage.ui:421
+#: cui/uiconfig/ui/swpossizepage.ui:433
msgctxt "swpossizepage|vertposft"
msgid "_Vertical:"
msgstr "_Fertigol:"
-#: cui/uiconfig/ui/swpossizepage.ui:457
+#: cui/uiconfig/ui/swpossizepage.ui:470
msgctxt "swpossizepage|verttoft"
msgid "t_o:"
msgstr "_at:"
-#: cui/uiconfig/ui/swpossizepage.ui:478
+#: cui/uiconfig/ui/swpossizepage.ui:492
msgctxt "swpossizepage|mirror"
msgid "_Mirror on even pages"
msgstr "_Adlewyrchu ar dudalennau eilrif"
-#: cui/uiconfig/ui/swpossizepage.ui:495
+#: cui/uiconfig/ui/swpossizepage.ui:509
msgctxt "swpossizepage|followtextflow"
msgid "Follow te_xt flow"
msgstr "Dilyn _llif testun"
-#: cui/uiconfig/ui/swpossizepage.ui:518
+#: cui/uiconfig/ui/swpossizepage.ui:532
msgctxt "swpossizepage|label11"
msgid "Position"
msgstr "Safle"
-#: cui/uiconfig/ui/swpossizepage.ui:549
+#: cui/uiconfig/ui/swpossizepage.ui:563
msgctxt "swpossizepage|pos"
msgid "Positio_n"
msgstr "S_afle"
-#: cui/uiconfig/ui/swpossizepage.ui:565
+#: cui/uiconfig/ui/swpossizepage.ui:579
msgctxt "swpossizepage|size"
msgid "_Size"
msgstr "_Maint"
-#: cui/uiconfig/ui/swpossizepage.ui:587
+#: cui/uiconfig/ui/swpossizepage.ui:601
msgctxt "swpossizepage|label3"
msgid "Protect"
msgstr "Diogelu"
@@ -11202,12 +11202,12 @@ msgctxt "textattrtabpage|label2"
msgid "Spacing to Borders"
msgstr "Bylchu i'r Borderi"
-#: cui/uiconfig/ui/textattrtabpage.ui:425
+#: cui/uiconfig/ui/textattrtabpage.ui:423
msgctxt "textattrtabpage|TSB_FULL_WIDTH"
msgid "Full _width"
msgstr "Lled _llawn"
-#: cui/uiconfig/ui/textattrtabpage.ui:448
+#: cui/uiconfig/ui/textattrtabpage.ui:446
msgctxt "textattrtabpage|label3"
msgid "Text Anchor"
msgstr "Angor Testun"
diff --git a/source/cy/filter/source/config/fragments/filters.po b/source/cy/filter/source/config/fragments/filters.po
index ce33a0c345d..6ab0c97a484 100644
--- a/source/cy/filter/source/config/fragments/filters.po
+++ b/source/cy/filter/source/config/fragments/filters.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-16 16:54+0200\n"
-"PO-Revision-Date: 2018-05-12 14:39+0000\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
+"PO-Revision-Date: 2018-06-05 09:51+0000\n"
"Last-Translator: Rhoslyn Prys <rprys@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: cy\n"
@@ -13,8 +13,8 @@ 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-POOTLE-MTIME: 1526135949.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1528192274.000000\n"
#: ADO_rowset_XML.xcu
msgctxt ""
@@ -392,7 +392,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Excel 97–2003"
-msgstr ""
+msgstr "Excel 97–2003"
#: MS_Excel_97_Vorlage_Template.xcu
msgctxt ""
@@ -401,7 +401,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Excel 97–2003 Template"
-msgstr ""
+msgstr "Templed Excel 97–2003"
#: MS_Multiplan.xcu
msgctxt ""
@@ -419,7 +419,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "PowerPoint 97–2003"
-msgstr ""
+msgstr "PowerPoint 97–2003"
#: MS_PowerPoint_97_AutoPlay.xcu
msgctxt ""
@@ -428,7 +428,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "PowerPoint 97–2003 AutoPlay"
-msgstr ""
+msgstr "Awto chwarae PowerPoint 97–2003"
#: MS_PowerPoint_97_Vorlage.xcu
msgctxt ""
@@ -437,7 +437,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "PowerPoint 97–2003 Template"
-msgstr ""
+msgstr "Templed PowerPoint 97-2003"
#: MS_WinWord_5.xcu
msgctxt ""
@@ -463,8 +463,8 @@ msgctxt ""
"MS Word 2003 XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Word 2003 XML"
-msgstr "Microsoft Word 2003 XML"
+msgid "Word 2003 XML"
+msgstr "Word 2003 XML"
#: MS_Word_2007_XML.xcu
msgctxt ""
@@ -518,7 +518,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Word 97–2003"
-msgstr ""
+msgstr "Word 97–2003"
#: MS_Word_97_Vorlage.xcu
msgctxt ""
@@ -527,7 +527,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Word 97–2003 Template"
-msgstr ""
+msgstr "Templed Word 97–2003"
#: MS_Works.xcu
msgctxt ""
@@ -1282,8 +1282,8 @@ msgctxt ""
"Calc MS Excel 2007 VBA XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Excel 2007-2016 XML (macro enabled)"
-msgstr "Microsoft Excel 2007-2016 XML (macro wedi ei alluogi)"
+msgid "Excel 2007–2019 (macro-enabled)"
+msgstr "Excel 2007–2019 (galluogwyd y macros)"
#: calc_MS_Excel_2007_XML.xcu
msgctxt ""
diff --git a/source/cy/filter/source/config/fragments/types.po b/source/cy/filter/source/config/fragments/types.po
index ff0d5f1e940..81f22b46e2f 100644
--- a/source/cy/filter/source/config/fragments/types.po
+++ b/source/cy/filter/source/config/fragments/types.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-08 15:11+0200\n"
-"PO-Revision-Date: 2018-05-12 14:39+0000\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
+"PO-Revision-Date: 2018-06-05 09:51+0000\n"
"Last-Translator: Rhoslyn Prys <rprys@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: cy\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n==2) ? 1 : 0;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1526135952.000000\n"
+"X-POOTLE-MTIME: 1528192280.000000\n"
#: MS_Excel_2007_Binary.xcu
msgctxt ""
@@ -292,8 +292,8 @@ msgctxt ""
"writer_MS_Word_2003_XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Word 2003 XML"
-msgstr "Microsoft Word 2003 XML"
+msgid "Word 2003 XML"
+msgstr "Word 2003 XML"
#: writer_MS_Word_2007_XML.xcu
msgctxt ""
diff --git a/source/cy/fpicker/messages.po b/source/cy/fpicker/messages.po
index 9e4ab5c2304..1f966661379 100644
--- a/source/cy/fpicker/messages.po
+++ b/source/cy/fpicker/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-22 13:16+0200\n"
-"PO-Revision-Date: 2018-03-01 09:08+0000\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
+"PO-Revision-Date: 2018-06-05 09:51+0000\n"
"Last-Translator: Rhoslyn Prys <rprys@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: cy\n"
@@ -13,8 +13,8 @@ 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-POOTLE-MTIME: 1519895323.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1528192295.000000\n"
#: include/fpicker/strings.hrc:14
msgctxt "STR_SVT_FILEPICKER_AUTO_EXTENSION"
@@ -272,13 +272,13 @@ msgstr "Amgryptio gydag allwedd GPG"
#: fpicker/uiconfig/ui/foldernamedialog.ui:8
msgctxt "foldernamedialog|FolderNameDialog"
-msgid "Folder Name ?"
-msgstr "Enw Ffolder ?"
+msgid "Folder Name"
+msgstr "Enw Ffolder"
#: fpicker/uiconfig/ui/foldernamedialog.ui:91
msgctxt "foldernamedialog|label2"
-msgid "Na_me"
-msgstr "E_nw"
+msgid "Na_me:"
+msgstr "E_nw:"
#: fpicker/uiconfig/ui/foldernamedialog.ui:122
msgctxt "foldernamedialog|label1"
diff --git a/source/cy/officecfg/registry/data/org/openoffice/Office/UI.po b/source/cy/officecfg/registry/data/org/openoffice/Office/UI.po
index dfc1bc683fc..cba4b3a3fc8 100644
--- a/source/cy/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/cy/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-22 13:17+0200\n"
-"PO-Revision-Date: 2018-05-12 14:34+0000\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
+"PO-Revision-Date: 2018-06-05 09:51+0000\n"
"Last-Translator: Rhoslyn Prys <rprys@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: cy\n"
@@ -13,8 +13,8 @@ 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-POOTLE-MTIME: 1526135664.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1528192308.000000\n"
#: BaseWindowState.xcu
msgctxt ""
@@ -149,7 +149,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Form Horizontal Scroll Bar"
-msgstr ""
+msgstr "Bar Sgrolio Llorweddol Ffurflen"
#: BasicIDECommands.xcu
msgctxt ""
@@ -25342,7 +25342,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Tabbed"
-msgstr ""
+msgstr "Tabiwyd"
#: ToolbarMode.xcu
msgctxt ""
@@ -25351,7 +25351,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Groupedbar Compact"
-msgstr ""
+msgstr "Bar Grwpio Cryno"
#: ToolbarMode.xcu
msgctxt ""
@@ -25360,7 +25360,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Groupedbar"
-msgstr ""
+msgstr "Bar Grwpio"
#: ToolbarMode.xcu
msgctxt ""
@@ -26520,8 +26520,8 @@ msgctxt ""
"..WriterCommands.UserInterface.Commands..uno:TextAttributes\n"
"Label\n"
"value.text"
-msgid "Text Attributes"
-msgstr "Priodoleddau Testun"
+msgid "Text Attributes..."
+msgstr "Priodoleddau Testun..."
#: WriterCommands.xcu
msgctxt ""
diff --git a/source/cy/readlicense_oo/docs.po b/source/cy/readlicense_oo/docs.po
index 8d41c0a6724..f071461d857 100644
--- a/source/cy/readlicense_oo/docs.po
+++ b/source/cy/readlicense_oo/docs.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-04-17 15:54+0200\n"
-"PO-Revision-Date: 2018-04-18 08:37+0000\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
+"PO-Revision-Date: 2018-06-05 09:52+0000\n"
"Last-Translator: Rhoslyn Prys <rprys@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: cy\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n==2) ? 1 : 0;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1524040634.000000\n"
+"X-POOTLE-MTIME: 1528192329.000000\n"
#: readme.xrm
msgctxt ""
@@ -117,8 +117,8 @@ msgctxt ""
"readme.xrm\n"
"macxiOSX\n"
"readmeitem.text"
-msgid "MacOSX 10.8 (Mountain Lion) or higher"
-msgstr "MacOSX 10.8 (Mountain Lion) neu well"
+msgid "MacOSX 10.9 (Mavericks) or higher"
+msgstr "MacOSX 10.9 (Mavericks) neu uwch"
#: readme.xrm
msgctxt ""
diff --git a/source/cy/sc/messages.po b/source/cy/sc/messages.po
index b15ef54b4e7..071925f8dd7 100644
--- a/source/cy/sc/messages.po
+++ b/source/cy/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: 2018-05-22 13:16+0200\n"
-"PO-Revision-Date: 2018-04-18 08:39+0000\n"
+"POT-Creation-Date: 2018-06-12 14:40+0200\n"
+"PO-Revision-Date: 2018-06-05 09:52+0000\n"
"Last-Translator: Rhoslyn Prys <rprys@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: cy\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n==2) ? 1 : 0;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1524040748.000000\n"
+"X-POOTLE-MTIME: 1528192350.000000\n"
#: sc/inc/compiler.hrc:27
msgctxt "RID_FUNCTION_CATEGORIES"
@@ -1870,16 +1870,21 @@ msgid "Nested arrays are not supported."
msgstr "Nid yw arae nythog yn cael eu cynnal bob tro."
#: sc/inc/globstr.hrc:390
+msgctxt "STR_ERR_LONG_BAD_ARRAY_CONTENT"
+msgid "Unsupported inline array content."
+msgstr ""
+
+#: sc/inc/globstr.hrc:391
msgctxt "STR_UNDO_TEXTTOCOLUMNS"
msgid "Text to Columns"
msgstr "Testun i Golofnau"
-#: sc/inc/globstr.hrc:391
+#: sc/inc/globstr.hrc:392
msgctxt "STR_DOC_UPDATED"
msgid "Your spreadsheet has been updated with changes saved by other users."
msgstr "Mae eich taenlen wedi ei diweddaru gyda newidiadau gadwyd gan ddefnyddwyr eraill."
-#: sc/inc/globstr.hrc:392
+#: sc/inc/globstr.hrc:393
msgctxt "STR_DOC_WILLBESAVED"
msgid ""
"The spreadsheet must be saved now to activate sharing mode.\n"
@@ -1890,7 +1895,7 @@ msgstr ""
"\n"
"Hoffech chi barhau?"
-#: sc/inc/globstr.hrc:393
+#: sc/inc/globstr.hrc:394
msgctxt "STR_DOC_WILLNOTBESAVED"
msgid ""
"Already resolved merge conflicts will be lost and your changes to the shared spreadsheet will not be saved.\n"
@@ -1901,7 +1906,7 @@ msgstr ""
"\n"
"Hoffech chi barhau?"
-#: sc/inc/globstr.hrc:394
+#: sc/inc/globstr.hrc:395
msgctxt "STR_DOC_DISABLESHARED"
msgid ""
"Disabling shared mode of a spreadsheet hinders all other users of the shared spreadsheet to merge back their work.\n"
@@ -1912,7 +1917,7 @@ msgstr ""
"\n"
"Hoffech chi barhau?"
-#: sc/inc/globstr.hrc:395
+#: sc/inc/globstr.hrc:396
msgctxt "STR_DOC_NOLONGERSHARED"
msgid ""
"This spreadsheet is no longer in shared mode.\n"
@@ -1923,7 +1928,7 @@ msgstr ""
"\n"
"Cadwch eich taenlen i ffeil wahanol a chyfuno eich newidiadau i'r daenlen ranedig gyda llaw."
-#: sc/inc/globstr.hrc:396
+#: sc/inc/globstr.hrc:397
msgctxt "STR_FILE_LOCKED_TRY_LATER"
msgid ""
"The shared spreadsheet file is locked due to a merge in progress by user: '%1'\n"
@@ -1934,7 +1939,7 @@ msgstr ""
"\n"
"Nid oes modd analluogi'r modd rhannu mewn ffeil wedi ei chloi. Ceisiwch eto."
-#: sc/inc/globstr.hrc:397
+#: sc/inc/globstr.hrc:398
msgctxt "STR_FILE_LOCKED_SAVE_LATER"
msgid ""
"The shared spreadsheet file is locked due to a merge in progress by user: '%1'\n"
@@ -1945,147 +1950,147 @@ msgstr ""
"\n"
"Ceisiwch eto i gadw eich newidiadau."
-#: sc/inc/globstr.hrc:398
+#: sc/inc/globstr.hrc:399
msgctxt "STR_UNKNOWN_USER"
msgid "Unknown User"
msgstr "Defnyddiwr Anhysbys"
-#: sc/inc/globstr.hrc:399
+#: sc/inc/globstr.hrc:400
msgctxt "STR_SHAPE_AUTOSHAPE"
msgid "AutoShape"
msgstr "AwtoSiap"
-#: sc/inc/globstr.hrc:400
+#: sc/inc/globstr.hrc:401
msgctxt "STR_SHAPE_RECTANGLE"
msgid "Rectangle"
msgstr "Petryal"
-#: sc/inc/globstr.hrc:401
+#: sc/inc/globstr.hrc:402
msgctxt "STR_SHAPE_LINE"
msgid "Line"
msgstr "Llinell"
-#: sc/inc/globstr.hrc:402
+#: sc/inc/globstr.hrc:403
msgctxt "STR_SHAPE_OVAL"
msgid "Oval"
msgstr "Hirgrwn"
-#: sc/inc/globstr.hrc:403
+#: sc/inc/globstr.hrc:404
msgctxt "STR_FORM_BUTTON"
msgid "Button"
msgstr "Botwm"
-#: sc/inc/globstr.hrc:404
+#: sc/inc/globstr.hrc:405
msgctxt "STR_FORM_CHECKBOX"
msgid "Check Box"
msgstr "Blwch Ticio"
-#: sc/inc/globstr.hrc:405
+#: sc/inc/globstr.hrc:406
msgctxt "STR_FORM_OPTIONBUTTON"
msgid "Option Button"
msgstr "Botwm Dewis"
-#: sc/inc/globstr.hrc:406
+#: sc/inc/globstr.hrc:407
msgctxt "STR_FORM_LABEL"
msgid "Label"
msgstr "Label"
-#: sc/inc/globstr.hrc:407
+#: sc/inc/globstr.hrc:408
msgctxt "STR_FORM_LISTBOX"
msgid "List Box"
msgstr "Blwch Rhestr"
-#: sc/inc/globstr.hrc:408
+#: sc/inc/globstr.hrc:409
msgctxt "STR_FORM_GROUPBOX"
msgid "Group Box"
msgstr "Blwch Grŵp"
-#: sc/inc/globstr.hrc:409
+#: sc/inc/globstr.hrc:410
msgctxt "STR_FORM_DROPDOWN"
msgid "Drop Down"
msgstr "Cwymplen"
-#: sc/inc/globstr.hrc:410
+#: sc/inc/globstr.hrc:411
msgctxt "STR_FORM_SPINNER"
msgid "Spinner"
msgstr "Troellwr"
-#: sc/inc/globstr.hrc:411
+#: sc/inc/globstr.hrc:412
msgctxt "STR_FORM_SCROLLBAR"
msgid "Scroll Bar"
msgstr "Bar Sgrolio"
-#: sc/inc/globstr.hrc:412
+#: sc/inc/globstr.hrc:413
msgctxt "STR_STYLE_FAMILY_CELL"
msgid "Cell Styles"
msgstr "Arddull Cell"
-#: sc/inc/globstr.hrc:413
+#: sc/inc/globstr.hrc:414
msgctxt "STR_STYLE_FAMILY_PAGE"
msgid "Page Styles"
msgstr "Arddull Tudalen"
-#: sc/inc/globstr.hrc:414
+#: sc/inc/globstr.hrc:415
msgctxt "STR_ERR_DATAPILOTSOURCE"
msgid "Pivot table source data is invalid."
msgstr "Mae ffynhonnell y tabl colynnu yn annilys."
-#: sc/inc/globstr.hrc:415
+#: sc/inc/globstr.hrc:416
msgctxt "STR_OPTIONS_WARN_SEPARATORS"
msgid "Because the current formula separator settings conflict with the locale, the formula separators have been reset to their default values."
msgstr "Oherwydd bod gwrthdaro rhwng y gosodiadau'r gwahanydd fformiwla cyfredol a'r locale, mae'r gwahanyddion fformiwla wedi cael eu hailosod i'w gwerthoedd rhagosodedig."
-#: sc/inc/globstr.hrc:416
+#: sc/inc/globstr.hrc:417
msgctxt "STR_UNDO_INSERT_CURRENT_DATE"
msgid "Insert Current Date"
msgstr "Mewnosod y Dyddiad Cyfredol"
-#: sc/inc/globstr.hrc:417
+#: sc/inc/globstr.hrc:418
msgctxt "STR_UNDO_INSERT_CURRENT_TIME"
msgid "Insert Current Time"
msgstr "Mewnosod yr Amser Cyfredol"
-#: sc/inc/globstr.hrc:418
+#: sc/inc/globstr.hrc:419
msgctxt "STR_MANAGE_NAMES"
msgid "Manage Names..."
msgstr "Rheoli Enwau..."
-#: sc/inc/globstr.hrc:419
+#: sc/inc/globstr.hrc:420
msgctxt "STR_HEADER_NAME"
msgid "Name"
msgstr "Enw"
-#: sc/inc/globstr.hrc:420
+#: sc/inc/globstr.hrc:421
msgctxt "STR_HEADER_RANGE_OR_EXPR"
msgid "Range or formula expression"
msgstr "Mynegiad ystod neu fformiwla"
-#: sc/inc/globstr.hrc:421
+#: sc/inc/globstr.hrc:422
msgctxt "STR_HEADER_SCOPE"
msgid "Scope"
msgstr "Cwmpas"
-#: sc/inc/globstr.hrc:422
+#: sc/inc/globstr.hrc:423
msgctxt "STR_MULTI_SELECT"
msgid "(multiple)"
msgstr "(lluosog)"
-#: sc/inc/globstr.hrc:423
+#: sc/inc/globstr.hrc:424
msgctxt "STR_GLOBAL_SCOPE"
msgid "Document (Global)"
msgstr "Dogfen (Eang)"
-#: sc/inc/globstr.hrc:424
+#: sc/inc/globstr.hrc:425
msgctxt "STR_ERR_NAME_EXISTS"
msgid "Invalid name. Already in use for the selected scope."
msgstr "Enw annilys. Mae eisoes yn cael ei ddefnyddio ar gyfer y cwmpas a ddewiswyd."
-#: sc/inc/globstr.hrc:425
+#: sc/inc/globstr.hrc:426
msgctxt "STR_ERR_NAME_INVALID"
msgid "Invalid name. Only use letters, numbers and underscore."
msgstr "Enw annilys. Defnyddiwch lythrennau, rhifau a tanlinellu yn unig."
-#: sc/inc/globstr.hrc:426
+#: sc/inc/globstr.hrc:427
msgctxt "STR_UNSAVED_EXT_REF"
msgid ""
"This Document contains external references to unsaved documents.\n"
@@ -2096,217 +2101,217 @@ msgstr ""
"\n"
"Hoffech chi barhau?"
-#: sc/inc/globstr.hrc:427
+#: sc/inc/globstr.hrc:428
msgctxt "STR_CLOSE_WITH_UNSAVED_REFS"
msgid "This Document is referenced by another document and not yet saved. Closing it without saving will result in data loss."
msgstr "Mae'r Ddogfen wedi ei chyfeirio at ddogfen arall sydd heb ei chadw. Bydd cau'r ddogfen heb ei chadw'n arwain at golli data."
-#: sc/inc/globstr.hrc:428
+#: sc/inc/globstr.hrc:429
msgctxt "STR_HEADER_RANGE"
msgid "Range"
msgstr "Ystod"
-#: sc/inc/globstr.hrc:429
+#: sc/inc/globstr.hrc:430
msgctxt "STR_HEADER_COND"
msgid "First Condition"
msgstr "Cyflwr Cyntaf"
-#: sc/inc/globstr.hrc:430
+#: sc/inc/globstr.hrc:431
msgctxt "STR_COND_CONDITION"
msgid "Cell value is"
msgstr "Gwerth cell yw"
-#: sc/inc/globstr.hrc:431
+#: sc/inc/globstr.hrc:432
msgctxt "STR_COND_COLORSCALE"
msgid "ColorScale"
msgstr "ColorScale"
-#: sc/inc/globstr.hrc:432
+#: sc/inc/globstr.hrc:433
msgctxt "STR_COND_DATABAR"
msgid "DataBar"
msgstr "DataBar"
-#: sc/inc/globstr.hrc:433
+#: sc/inc/globstr.hrc:434
msgctxt "STR_COND_ICONSET"
msgid "IconSet"
msgstr "SetEicon"
-#: sc/inc/globstr.hrc:434
+#: sc/inc/globstr.hrc:435
msgctxt "STR_COND_BETWEEN"
msgid "between"
msgstr "rhwng"
-#: sc/inc/globstr.hrc:435
+#: sc/inc/globstr.hrc:436
msgctxt "STR_COND_NOTBETWEEN"
msgid "not between"
msgstr "nid rhwng"
-#: sc/inc/globstr.hrc:436
+#: sc/inc/globstr.hrc:437
msgctxt "STR_COND_UNIQUE"
msgid "unique"
msgstr "unigryw"
-#: sc/inc/globstr.hrc:437
+#: sc/inc/globstr.hrc:438
msgctxt "STR_COND_DUPLICATE"
msgid "duplicate"
msgstr "dyblyg"
-#: sc/inc/globstr.hrc:438
+#: sc/inc/globstr.hrc:439
msgctxt "STR_COND_FORMULA"
msgid "Formula is"
msgstr "Y fformiwla yw"
-#: sc/inc/globstr.hrc:439
+#: sc/inc/globstr.hrc:440
msgctxt "STR_COND_TOP10"
msgid "Top Elements"
msgstr "Elfennau Brig"
-#: sc/inc/globstr.hrc:440
+#: sc/inc/globstr.hrc:441
msgctxt "STR_COND_BOTTOM10"
msgid "Bottom Elements"
msgstr "Elfennau Gwaelod"
-#: sc/inc/globstr.hrc:441
+#: sc/inc/globstr.hrc:442
msgctxt "STR_COND_TOP_PERCENT"
msgid "Top Percent"
msgstr "Canradd Brig"
-#: sc/inc/globstr.hrc:442
+#: sc/inc/globstr.hrc:443
msgctxt "STR_COND_DATE"
msgid "Date is"
msgstr "Y dyddiad yw"
-#: sc/inc/globstr.hrc:443
+#: sc/inc/globstr.hrc:444
msgctxt "STR_COND_BOTTOM_PERCENT"
msgid "Bottom Percent"
msgstr "Canran Gwaelod"
-#: sc/inc/globstr.hrc:444
+#: sc/inc/globstr.hrc:445
msgctxt "STR_COND_ABOVE_AVERAGE"
msgid "Above Average"
msgstr "Uwchlaw'r Cyfartaledd"
-#: sc/inc/globstr.hrc:445
+#: sc/inc/globstr.hrc:446
msgctxt "STR_COND_BELOW_AVERAGE"
msgid "Below Average"
msgstr "Islaw'r Cyfartaledd"
-#: sc/inc/globstr.hrc:446
+#: sc/inc/globstr.hrc:447
msgctxt "STR_COND_ABOVE_EQUAL_AVERAGE"
msgid "Above or equal Average"
msgstr "Uwch neu gydradd â'r Cyfartaledd"
-#: sc/inc/globstr.hrc:447
+#: sc/inc/globstr.hrc:448
msgctxt "STR_COND_BELOW_EQUAL_AVERAGE"
msgid "Below or equal Average"
msgstr "Is neu gydradd a'r cyfartaledd"
-#: sc/inc/globstr.hrc:448
+#: sc/inc/globstr.hrc:449
msgctxt "STR_COND_ERROR"
msgid "an Error code"
msgstr "Cod gwall"
-#: sc/inc/globstr.hrc:449
+#: sc/inc/globstr.hrc:450
msgctxt "STR_COND_NOERROR"
msgid "not an Error code"
msgstr "nid cod Gwall"
-#: sc/inc/globstr.hrc:450
+#: sc/inc/globstr.hrc:451
msgctxt "STR_COND_BEGINS_WITH"
msgid "Begins with"
msgstr "Cychwyn gyda"
-#: sc/inc/globstr.hrc:451
+#: sc/inc/globstr.hrc:452
msgctxt "STR_COND_ENDS_WITH"
msgid "Ends with"
msgstr "Gorffen gyda"
-#: sc/inc/globstr.hrc:452
+#: sc/inc/globstr.hrc:453
msgctxt "STR_COND_CONTAINS"
msgid "Contains"
msgstr "Yn cynnwys"
-#: sc/inc/globstr.hrc:453
+#: sc/inc/globstr.hrc:454
msgctxt "STR_COND_NOT_CONTAINS"
msgid "Not Contains"
msgstr "Ddim yn Cynnwys"
-#: sc/inc/globstr.hrc:454
+#: sc/inc/globstr.hrc:455
msgctxt "STR_COND_TODAY"
msgid "today"
msgstr "heddiw"
-#: sc/inc/globstr.hrc:455
+#: sc/inc/globstr.hrc:456
msgctxt "STR_COND_YESTERDAY"
msgid "yesterday"
msgstr "ddoe"
-#: sc/inc/globstr.hrc:456
+#: sc/inc/globstr.hrc:457
msgctxt "STR_COND_TOMORROW"
msgid "tomorrow"
msgstr "yfory"
-#: sc/inc/globstr.hrc:457
+#: sc/inc/globstr.hrc:458
msgctxt "STR_COND_LAST7DAYS"
msgid "in the last 7 days"
msgstr "yn y 7 diwrnod diwethaf"
-#: sc/inc/globstr.hrc:458
+#: sc/inc/globstr.hrc:459
msgctxt "STR_COND_THISWEEK"
msgid "this week"
msgstr "yr wythnos hon"
-#: sc/inc/globstr.hrc:459
+#: sc/inc/globstr.hrc:460
msgctxt "STR_COND_LASTWEEK"
msgid "last week"
msgstr "yr wythnos ddiwethaf"
-#: sc/inc/globstr.hrc:460
+#: sc/inc/globstr.hrc:461
msgctxt "STR_COND_NEXTWEEK"
msgid "next week"
msgstr "wythnos nesaf"
-#: sc/inc/globstr.hrc:461
+#: sc/inc/globstr.hrc:462
msgctxt "STR_COND_THISMONTH"
msgid "this month"
msgstr "mis yma"
-#: sc/inc/globstr.hrc:462
+#: sc/inc/globstr.hrc:463
msgctxt "STR_COND_LASTMONTH"
msgid "last month"
msgstr "mis diwethaf"
-#: sc/inc/globstr.hrc:463
+#: sc/inc/globstr.hrc:464
msgctxt "STR_COND_NEXTMONTH"
msgid "next month"
msgstr "mis nesaf"
-#: sc/inc/globstr.hrc:464
+#: sc/inc/globstr.hrc:465
msgctxt "STR_COND_THISYEAR"
msgid "this year"
msgstr "eleni"
-#: sc/inc/globstr.hrc:465
+#: sc/inc/globstr.hrc:466
msgctxt "STR_COND_LASTYEAR"
msgid "last year"
msgstr "llynedd"
-#: sc/inc/globstr.hrc:466
+#: sc/inc/globstr.hrc:467
msgctxt "STR_COND_NEXTYEAR"
msgid "next year"
msgstr "blwyddyn nesaf"
-#: sc/inc/globstr.hrc:467
+#: sc/inc/globstr.hrc:468
msgctxt "STR_COND_AND"
msgid "and"
msgstr "a"
-#: sc/inc/globstr.hrc:468
+#: sc/inc/globstr.hrc:469
msgctxt "STR_ERR_CONDFORMAT_PROTECTED"
msgid "Conditional Formats can not be created, deleted or changed in protected sheets."
msgstr "Nid oes modd creu, dileu na newid Fformatau Amodol mewn dalennau diogelwyd!"
-#: sc/inc/globstr.hrc:469
+#: sc/inc/globstr.hrc:470
msgctxt "STR_EDIT_EXISTING_COND_FORMATS"
msgid ""
"The selected cell already contains conditional formatting. You can either edit the existing conditional format or you define a new overlapping conditional format.\n"
@@ -2317,7 +2322,7 @@ msgstr ""
"\n"
" Hoffech chi olygu'r fformat amodol presennol?"
-#: sc/inc/globstr.hrc:470
+#: sc/inc/globstr.hrc:471
msgctxt "STR_QUERY_FORMULA_RECALC_ONLOAD_ODS"
msgid ""
"This document was last saved by an application other than %PRODUCTNAME. Some formula cells may produce different results when recalculated.\n"
@@ -2328,7 +2333,7 @@ msgstr ""
"\n"
"Hoffech chi ail-gyfrifo pob cell fformiwla yn y ddogfen hon nawr?"
-#: sc/inc/globstr.hrc:471
+#: sc/inc/globstr.hrc:472
msgctxt "STR_QUERY_FORMULA_RECALC_ONLOAD_XLS"
msgid ""
"This document was last saved by Excel. Some formula cells may produce different results when recalculated.\n"
@@ -2339,77 +2344,77 @@ msgstr ""
"\n"
"Hoffech chi ail-gyfrifo'r holl gelloedd fformiwla nawr?"
-#: sc/inc/globstr.hrc:472
+#: sc/inc/globstr.hrc:473
msgctxt "STR_NO_INSERT_DELETE_OVER_PIVOT_TABLE"
msgid "You cannot insert or delete cells when the affected range intersects with pivot table."
msgstr "Nid oes modd mewnosod na dileu celloedd pan fod yr ystod sy'n cael eu heffeithio'n croestorri gyda thabl troi."
-#: sc/inc/globstr.hrc:473
+#: sc/inc/globstr.hrc:474
msgctxt "STR_DPFIELD_GROUP_BY_SECONDS"
msgid "Seconds"
msgstr "Eiladau"
-#: sc/inc/globstr.hrc:474
+#: sc/inc/globstr.hrc:475
msgctxt "STR_DPFIELD_GROUP_BY_MINUTES"
msgid "Minutes"
msgstr "Munudau"
-#: sc/inc/globstr.hrc:475
+#: sc/inc/globstr.hrc:476
msgctxt "STR_DPFIELD_GROUP_BY_HOURS"
msgid "Hours"
msgstr "Oriau"
-#: sc/inc/globstr.hrc:476
+#: sc/inc/globstr.hrc:477
msgctxt "STR_DPFIELD_GROUP_BY_DAYS"
msgid "Days"
msgstr "Dyddiau"
-#: sc/inc/globstr.hrc:477
+#: sc/inc/globstr.hrc:478
msgctxt "STR_DPFIELD_GROUP_BY_MONTHS"
msgid "Months"
msgstr "Misoedd"
-#: sc/inc/globstr.hrc:478
+#: sc/inc/globstr.hrc:479
msgctxt "STR_DPFIELD_GROUP_BY_QUARTERS"
msgid "Quarters"
msgstr "Chwarteri"
-#: sc/inc/globstr.hrc:479
+#: sc/inc/globstr.hrc:480
msgctxt "STR_DPFIELD_GROUP_BY_YEARS"
msgid "Years"
msgstr "Blynyddoedd"
-#: sc/inc/globstr.hrc:480
+#: sc/inc/globstr.hrc:481
msgctxt "STR_INVALIDVAL"
msgid "Invalid target value."
msgstr "Gwerth targed annilys."
-#: sc/inc/globstr.hrc:481
+#: sc/inc/globstr.hrc:482
msgctxt "STR_INVALIDVAR"
msgid "Undefined name for variable cell."
msgstr "Enw heb ei ddiffinio ar gyfer cell newidiol."
-#: sc/inc/globstr.hrc:482
+#: sc/inc/globstr.hrc:483
msgctxt "STR_INVALIDFORM"
msgid "Undefined name as formula cell."
msgstr "Enw anniffiniedig fel cell fformiwla."
-#: sc/inc/globstr.hrc:483
+#: sc/inc/globstr.hrc:484
msgctxt "STR_NOFORMULA"
msgid "Formula cell must contain a formula."
msgstr "Rhaid i gell fformiwla gynnwys fformiwla."
-#: sc/inc/globstr.hrc:484
+#: sc/inc/globstr.hrc:485
msgctxt "STR_INVALIDINPUT"
msgid "Invalid input."
msgstr "Mewnbwn annilys."
-#: sc/inc/globstr.hrc:485
+#: sc/inc/globstr.hrc:486
msgctxt "STR_INVALIDCONDITION"
msgid "Invalid condition."
msgstr "Cyflwr annilys."
-#: sc/inc/globstr.hrc:486
+#: sc/inc/globstr.hrc:487
msgctxt "STR_QUERYREMOVE"
msgid ""
"Should the entry\n"
@@ -2420,133 +2425,133 @@ msgstr ""
"#\n"
"gael ei dileu?"
-#: sc/inc/globstr.hrc:487
+#: sc/inc/globstr.hrc:488
msgctxt "STR_COPYLIST"
msgid "Copy List"
msgstr "Rhestr Copïo"
-#: sc/inc/globstr.hrc:488
+#: sc/inc/globstr.hrc:489
msgctxt "STR_COPYFROM"
msgid "List from"
msgstr "Rhestr o"
-#: sc/inc/globstr.hrc:489
+#: sc/inc/globstr.hrc:490
msgctxt "STR_COPYERR"
msgid "Cells without text have been ignored."
msgstr "Celloedd heb destun wedi eu hanwybyddu."
-#: sc/inc/globstr.hrc:490
+#: sc/inc/globstr.hrc:491
#, c-format
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%s-click to follow hyperlink:"
msgstr "Cliciwch %s i ddilyn y ddolen:"
-#: sc/inc/globstr.hrc:491
+#: sc/inc/globstr.hrc:492
msgctxt "STR_CLICKHYPERLINK"
msgid "click to open hyperlink:"
msgstr "clic i agor dolen:"
-#: sc/inc/globstr.hrc:492
+#: sc/inc/globstr.hrc:493
msgctxt "STR_PRINT_PREVIEW_NODATA"
msgid "No Data"
msgstr "Dim Data"
-#: sc/inc/globstr.hrc:493
+#: sc/inc/globstr.hrc:494
msgctxt "STR_PRINT_PREVIEW_EMPTY_RANGE"
msgid "Print Range Empty"
msgstr "Ystod Argraffu yn Wag"
-#: sc/inc/globstr.hrc:494
+#: sc/inc/globstr.hrc:495
msgctxt "STR_UNDO_CONDFORMAT"
msgid "Conditional Format"
msgstr "Fformatio Amodol"
-#: sc/inc/globstr.hrc:495
+#: sc/inc/globstr.hrc:496
msgctxt "STR_UNDO_CONDFORMAT_LIST"
msgid "Conditional Formats"
msgstr "Fformatiau Amodol"
-#: sc/inc/globstr.hrc:496
+#: sc/inc/globstr.hrc:497
msgctxt "STR_UNDO_FORMULA_TO_VALUE"
msgid "Convert Formula To Value"
msgstr "Trosi'r Fformiwla i Werth"
-#: sc/inc/globstr.hrc:497
+#: sc/inc/globstr.hrc:498
msgctxt "STR_UNQUOTED_STRING"
msgid "Strings without quotes are interpreted as column/row labels."
msgstr "Mae llinynnau heb ddyfynodau'n cael eu dehongli fel labeli colofn/rhes."
-#: sc/inc/globstr.hrc:498
+#: sc/inc/globstr.hrc:499
msgctxt "STR_ENTER_VALUE"
msgid "Enter a value!"
msgstr "Rhowch werth!"
-#: sc/inc/globstr.hrc:499
+#: sc/inc/globstr.hrc:500
msgctxt "STR_TABLE_COUNT"
msgid "Sheet %1 of %2"
msgstr "Dalen %1 o %2"
-#: sc/inc/globstr.hrc:500
+#: sc/inc/globstr.hrc:501
msgctxt "STR_FUNCTIONS_FOUND"
msgid "%1 and %2 more"
msgstr "%1 a %2 yn rhagor"
-#: sc/inc/globstr.hrc:501
+#: sc/inc/globstr.hrc:502
msgctxt "STR_GENERAL"
msgid "General"
msgstr "Cyffredinol"
-#: sc/inc/globstr.hrc:502
+#: sc/inc/globstr.hrc:503
msgctxt "STR_NUMBER"
msgid "Number"
msgstr "Rhif"
-#: sc/inc/globstr.hrc:503
+#: sc/inc/globstr.hrc:504
msgctxt "STR_PERCENT"
msgid "Percent"
msgstr "Canran"
-#: sc/inc/globstr.hrc:504
+#: sc/inc/globstr.hrc:505
msgctxt "STR_CURRENCY"
msgid "Currency"
msgstr "Arian"
-#: sc/inc/globstr.hrc:505
+#: sc/inc/globstr.hrc:506
msgctxt "STR_DATE"
msgid "Date"
msgstr "Dyddiad"
-#: sc/inc/globstr.hrc:506
+#: sc/inc/globstr.hrc:507
msgctxt "STR_TIME"
msgid "Time"
msgstr "Amser"
-#: sc/inc/globstr.hrc:507
+#: sc/inc/globstr.hrc:508
msgctxt "STR_SCIENTIFIC"
msgid "Scientific"
msgstr "Gwyddonol"
-#: sc/inc/globstr.hrc:508
+#: sc/inc/globstr.hrc:509
msgctxt "STR_FRACTION"
msgid "Fraction"
msgstr "Ffracsiwn"
-#: sc/inc/globstr.hrc:509
+#: sc/inc/globstr.hrc:510
msgctxt "STR_BOOLEAN_VALUE"
msgid "Boolean Value"
msgstr "Gwerth Boole"
-#: sc/inc/globstr.hrc:510
+#: sc/inc/globstr.hrc:511
msgctxt "STR_TEXT"
msgid "Text"
msgstr "Testun"
-#: sc/inc/globstr.hrc:511
+#: sc/inc/globstr.hrc:512
msgctxt "STR_QUERY_PIVOTTABLE_DELTAB"
msgid "The selected sheet(s) contain source data of related pivot tables that will be lost. Are you sure you want to delete the selected sheet(s)?"
msgstr "Mae'r ddalen yn cynnwys data ffynhonnell tablau perthynol troi fydd yn cael eu colli. Ydych chi'n siŵr eich bod am ddileu'r ddalen?"
-#: sc/inc/globstr.hrc:512
+#: sc/inc/globstr.hrc:513
msgctxt "STR_ERR_NAME_INVALID_CELL_REF"
msgid "Invalid name. Reference to a cell, or a range of cells not allowed."
msgstr "Enw annilys. Nid oes caniatâd i gyfeirio at gell, neu ystod o gellau."
@@ -10488,7 +10493,7 @@ msgstr "Modd"
#: sc/inc/scfuncs.hrc:3010
msgctxt "SC_OPCODE_T_TEST"
-msgid "Mode specifies the number of distribution tails to return. 1= one-tailed, 2 = two-tailed distribution"
+msgid "Mode specifies the number of distribution tails to return. 1 = one-tailed, 2 = two-tailed distribution"
msgstr "Modd yn pennu'r nifer o gynffonnau dosbarthiad i'w dychwelyd. 1= un gynffon, 2 = dosbarthiad dwy gynffon"
#: sc/inc/scfuncs.hrc:3011
@@ -10533,7 +10538,7 @@ msgstr "Modd"
#: sc/inc/scfuncs.hrc:3024
msgctxt "SC_OPCODE_T_TEST_MS"
-msgid "Mode specifies the number of distribution tails to return. 1= one-tailed, 2 = two-tailed distribution"
+msgid "Mode specifies the number of distribution tails to return. 1 = one-tailed, 2 = two-tailed distribution"
msgstr "Modd yn pennu'r nifer o gynffonnau dosbarthiad i'w dychwelyd. 1= un gynffon, 2 = dosbarthiad dwy gynffon"
#: sc/inc/scfuncs.hrc:3025
@@ -18020,22 +18025,22 @@ msgctxt "mergecellsdialog|MergeCellsDialog"
msgid "Merge Cells"
msgstr "Cyfuno Celloedd"
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:81
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:84
msgctxt "mergecellsdialog|label"
msgid "Some cells are not empty."
msgstr "Nid yw rhai celloedd yn wag."
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:96
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:99
msgctxt "mergecellsdialog|move-cells-radio"
msgid "Move the contents of the hidden cells into the first cell"
msgstr "Symud cynnwys y celloedd cudd i’r gell gyntaf"
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:112
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:115
msgctxt "mergecellsdialog|empty-cells-radio"
msgid "Empty the contents of the hidden cells"
msgstr "Gwagio cynnwys y celloedd cudd"
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:128
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:131
msgctxt "mergecellsdialog|keep-content-radio"
msgid "Keep the contents of the hidden cells"
msgstr "Cadw cynnwys y celloedd cudd"
@@ -18293,22 +18298,22 @@ msgstr "Heb ganfod ateb."
#: sc/uiconfig/scalc/ui/notebookbar.ui:857
msgctxt "notebookbar|Help"
msgid "_Check for Updates..."
-msgstr ""
+msgstr "_Gwirio am Ddiweddariadau..."
#: sc/uiconfig/scalc/ui/notebookbar.ui:1678
msgctxt "notebookbar|Tools"
msgid "_Check for Updates..."
-msgstr ""
+msgstr "_Gwirio am Ddiweddariadau..."
#: sc/uiconfig/scalc/ui/notebookbar.ui:1952
msgctxt "notebookbar|FileLabel"
msgid "_File"
-msgstr ""
+msgstr "_Ffeil"
#: sc/uiconfig/scalc/ui/notebookbar.ui:1971
msgctxt "notebookbar|HelpMenuButton"
msgid "_Help"
-msgstr ""
+msgstr "_Cymorth"
#: sc/uiconfig/scalc/ui/notebookbar.ui:2769
msgctxt "notebookbar|FileLabel"
@@ -18334,7 +18339,7 @@ msgstr "Lleihau'r Mewnoliad"
#: sc/uiconfig/scalc/ui/notebookbar.ui:4436
msgctxt "notebookbar|HomeMenuButton"
msgid "_Home"
-msgstr ""
+msgstr "_Cartref"
#: sc/uiconfig/scalc/ui/notebookbar.ui:4544
msgctxt "notebookbar|CalcLabel"
@@ -18344,12 +18349,12 @@ msgstr "Cartref"
#: sc/uiconfig/scalc/ui/notebookbar.ui:4991
msgctxt "notebookbar|FieldMenuButton"
msgid "Fiel_d"
-msgstr ""
+msgstr "_Maes"
#: sc/uiconfig/scalc/ui/notebookbar.ui:5496
msgctxt "notebookbar|InsertMenuButton"
msgid "_Insert"
-msgstr ""
+msgstr "_Mewnosod"
#: sc/uiconfig/scalc/ui/notebookbar.ui:5581
msgctxt "notebookbar|InsertLabel"
@@ -18359,7 +18364,7 @@ msgstr "Mewnosod"
#: sc/uiconfig/scalc/ui/notebookbar.ui:5610
msgctxt "notebookbar|reviewb"
msgid "Pag_e"
-msgstr ""
+msgstr "_Tudalen"
#: sc/uiconfig/scalc/ui/notebookbar.ui:6335
msgctxt "notebookbar|PageLayoutLabel"
@@ -18374,7 +18379,7 @@ msgstr "_Ystadegau"
#: sc/uiconfig/scalc/ui/notebookbar.ui:7304
msgctxt "notebookbar|DataMenuButton"
msgid "_Data"
-msgstr ""
+msgstr "_Data"
#: sc/uiconfig/scalc/ui/notebookbar.ui:7412
msgctxt "notebookbar|DataLabel"
@@ -18384,7 +18389,7 @@ msgstr "Data"
#: sc/uiconfig/scalc/ui/notebookbar.ui:8035
msgctxt "notebookbar|ReviewMenuButton"
msgid "_Review"
-msgstr ""
+msgstr "_Adolygu"
#: sc/uiconfig/scalc/ui/notebookbar.ui:8120
msgctxt "notebookbar|ReviewLabel"
@@ -18394,7 +18399,7 @@ msgstr "Adolygu"
#: sc/uiconfig/scalc/ui/notebookbar.ui:8896
msgctxt "notebookbar|ViewMenuButton"
msgid "_View"
-msgstr ""
+msgstr "_Golwg"
#: sc/uiconfig/scalc/ui/notebookbar.ui:8981
msgctxt "notebookbar|ViewLabel"
@@ -18404,7 +18409,7 @@ msgstr "Golwg"
#: sc/uiconfig/scalc/ui/notebookbar.ui:9008
msgctxt "notebookbar|GraphicMenuButton"
msgid "_Graphic"
-msgstr ""
+msgstr "_Graffig"
#: sc/uiconfig/scalc/ui/notebookbar.ui:9949
msgctxt "notebookbar|ImageLabel"
@@ -18414,12 +18419,12 @@ msgstr "Delwedd"
#: sc/uiconfig/scalc/ui/notebookbar.ui:11228
msgctxt "notebookbar|DrawMenuButton"
msgid "D_raw"
-msgstr ""
+msgstr "_Lluniadu"
#: sc/uiconfig/scalc/ui/notebookbar.ui:11340
msgctxt "notebookbar|DrawLabel"
msgid "Draw"
-msgstr ""
+msgstr "Lluniadu"
#: sc/uiconfig/scalc/ui/notebookbar.ui:11993
msgctxt "notebookbar|frame:MenuDraw"
@@ -18434,17 +18439,17 @@ msgstr "Gwrthrych"
#: sc/uiconfig/scalc/ui/notebookbar.ui:12113
msgctxt "notebookbar|ToolsMenuButton"
msgid "_Tools"
-msgstr ""
+msgstr "_Offer"
#: sc/uiconfig/scalc/ui/notebookbar.ui:13250
msgctxt "notebookbar|DevLabel"
msgid "Tools"
-msgstr ""
+msgstr "Offer"
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:2945
msgctxt "notebookbar_groupedbar_compact|Menu"
msgid "_Check for Updates..."
-msgstr ""
+msgstr "_Gwirio am Ddiweddariadau..."
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:2977
msgctxt "notebookbar_groupedbar_compact|defaultD"
@@ -18514,7 +18519,7 @@ msgstr "Nodyn"
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:3336
msgctxt "notebookbar_groupedbar_compact|Tools"
msgid "_Check for Updates..."
-msgstr ""
+msgstr "_Gwirio am Ddiweddariadau..."
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:3630
msgctxt "notebookbar_groupedbar_compact|menub"
@@ -18704,12 +18709,12 @@ msgstr "_Golwg"
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:1950
msgctxt "notebookbar_groupedbar_full|Help"
msgid "_Check for Updates..."
-msgstr ""
+msgstr "_Gwirio am Ddiweddariadau..."
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2945
msgctxt "notebookbar_groupedbar_full|Menu"
msgid "_Check for Updates..."
-msgstr ""
+msgstr "_Gwirio am Ddiweddariadau..."
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2977
msgctxt "notebookbar_groupedbar_full|defaultD"
@@ -18779,7 +18784,7 @@ msgstr "Nodyn"
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:3336
msgctxt "notebookbar_groupedbar_full|Tools"
msgid "_Check for Updates..."
-msgstr ""
+msgstr "_Gwirio am Ddiweddariadau..."
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:3635
msgctxt "notebookbar_groupedbar_full|menub"
diff --git a/source/cy/scp2/source/ooo.po b/source/cy/scp2/source/ooo.po
index c467aa18b0b..fc1674ea38c 100644
--- a/source/cy/scp2/source/ooo.po
+++ b/source/cy/scp2/source/ooo.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2018-05-23 23:20+0200\n"
-"PO-Revision-Date: 2017-12-22 17:25+0000\n"
+"PO-Revision-Date: 2018-05-24 10:20+0000\n"
"Last-Translator: Rhoslyn Prys <rprys@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: cy\n"
@@ -13,8 +13,8 @@ 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-POOTLE-MTIME: 1513963541.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1527157240.000000\n"
#: folderitem_ooo.ulf
msgctxt ""
@@ -1886,7 +1886,7 @@ msgctxt ""
"STR_NAME_MODULE_LANGPACK_FY\n"
"LngText.text"
msgid "Frisian"
-msgstr ""
+msgstr "Ffrisieg"
#: module_langpack.ulf
msgctxt ""
@@ -1894,7 +1894,7 @@ msgctxt ""
"STR_DESC_MODULE_LANGPACK_FY\n"
"LngText.text"
msgid "Installs the Frisian user interface"
-msgstr ""
+msgstr "Gosod rhyngwyneb defnyddiwr Ffrisieg"
#: module_langpack.ulf
msgctxt ""
diff --git a/source/cy/sd/messages.po b/source/cy/sd/messages.po
index dd7c2ed0b72..ec3d212dfea 100644
--- a/source/cy/sd/messages.po
+++ b/source/cy/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: 2018-05-22 13:16+0200\n"
-"PO-Revision-Date: 2018-05-12 14:34+0000\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
+"PO-Revision-Date: 2018-05-24 10:38+0000\n"
"Last-Translator: Rhoslyn Prys <rprys@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: cy\n"
@@ -14,169 +14,169 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n==2) ? 1 : 0;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1526135676.000000\n"
+"X-POOTLE-MTIME: 1527158299.000000\n"
-#: sd/inc/DocumentRenderer.hrc:29
+#: sd/inc/DocumentRenderer.hrc:27
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Slides"
msgstr "Sleidiau"
-#: sd/inc/DocumentRenderer.hrc:30
+#: sd/inc/DocumentRenderer.hrc:28
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Handouts"
msgstr "Taflenni"
-#: sd/inc/DocumentRenderer.hrc:31
+#: sd/inc/DocumentRenderer.hrc:29
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Notes"
msgstr "Nodiadau"
-#: sd/inc/DocumentRenderer.hrc:32
+#: sd/inc/DocumentRenderer.hrc:30
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Outline"
msgstr "Amlinell"
-#: sd/inc/DocumentRenderer.hrc:37
+#: sd/inc/DocumentRenderer.hrc:35
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "According to layout"
msgstr "Yn ôl y cynllun"
-#: sd/inc/DocumentRenderer.hrc:38
+#: sd/inc/DocumentRenderer.hrc:36
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "1"
msgstr "1"
-#: sd/inc/DocumentRenderer.hrc:39
+#: sd/inc/DocumentRenderer.hrc:37
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "2"
msgstr "2"
-#: sd/inc/DocumentRenderer.hrc:40
+#: sd/inc/DocumentRenderer.hrc:38
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "3"
msgstr "3"
-#: sd/inc/DocumentRenderer.hrc:41
+#: sd/inc/DocumentRenderer.hrc:39
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "4"
msgstr "4"
-#: sd/inc/DocumentRenderer.hrc:42
+#: sd/inc/DocumentRenderer.hrc:40
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "6"
msgstr "6"
-#: sd/inc/DocumentRenderer.hrc:43
+#: sd/inc/DocumentRenderer.hrc:41
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "9"
msgstr "9"
-#: sd/inc/DocumentRenderer.hrc:48
+#: sd/inc/DocumentRenderer.hrc:46
msgctxt "STR_IMPRESS_PRINT_UI_ORDER_CHOICES"
msgid "Left to right, then down"
msgstr "Chwith i'r dde, ac yna i lawr"
-#: sd/inc/DocumentRenderer.hrc:49
+#: sd/inc/DocumentRenderer.hrc:47
msgctxt "STR_IMPRESS_PRINT_UI_ORDER_CHOICES"
msgid "Top to bottom, then right"
msgstr "Brig i'r gwaelod, ac yna i'r dde"
-#: sd/inc/DocumentRenderer.hrc:54
+#: sd/inc/DocumentRenderer.hrc:52
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Original colors"
msgstr "Lliwiau gwreiddiol"
-#: sd/inc/DocumentRenderer.hrc:55
+#: sd/inc/DocumentRenderer.hrc:53
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Grayscale"
msgstr "Graddlwyd"
-#: sd/inc/DocumentRenderer.hrc:56
+#: sd/inc/DocumentRenderer.hrc:54
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Black & white"
msgstr "Du a gwyn"
-#: sd/inc/DocumentRenderer.hrc:61
+#: sd/inc/DocumentRenderer.hrc:59
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Original size"
msgstr "Maint gwreiddiol"
-#: sd/inc/DocumentRenderer.hrc:62
+#: sd/inc/DocumentRenderer.hrc:60
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Fit to printable page"
msgstr "Ffitio i'r dudalen argraffadwy"
-#: sd/inc/DocumentRenderer.hrc:63
+#: sd/inc/DocumentRenderer.hrc:61
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Distribute on multiple sheets of paper"
msgstr "Dosbarthu ar ddalennau lluosog o bapur"
-#: sd/inc/DocumentRenderer.hrc:64
+#: sd/inc/DocumentRenderer.hrc:62
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Tile sheet of paper with repeated slides"
msgstr "Teilo dalennau o bapur gyda sleidiau'n ailadrodd"
-#: sd/inc/DocumentRenderer.hrc:69
+#: sd/inc/DocumentRenderer.hrc:67
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Original size"
msgstr "Maint gwreiddiol"
-#: sd/inc/DocumentRenderer.hrc:70
+#: sd/inc/DocumentRenderer.hrc:68
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Fit to printable page"
msgstr "Ffitio i'r dudalen argraffadwy"
-#: sd/inc/DocumentRenderer.hrc:71
+#: sd/inc/DocumentRenderer.hrc:69
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Distribute on multiple sheets of paper"
msgstr "Dosbarthu ar ddalennau lluosog o bapur"
-#: sd/inc/DocumentRenderer.hrc:72
+#: sd/inc/DocumentRenderer.hrc:70
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Tile sheet of paper with repeated pages"
msgstr "Teilsio dalen o bapur ar dudalennau sy'n ailadrodd"
-#: sd/inc/DocumentRenderer.hrc:77
+#: sd/inc/DocumentRenderer.hrc:75
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "All pages"
msgstr "Pob tudalen"
-#: sd/inc/DocumentRenderer.hrc:78
+#: sd/inc/DocumentRenderer.hrc:76
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "Front sides / right pages"
msgstr "Ochrau blaen / tudalennau de"
-#: sd/inc/DocumentRenderer.hrc:79
+#: sd/inc/DocumentRenderer.hrc:77
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "Back sides / left pages"
msgstr "Ochrau cefn / tudalennau chwith"
-#: sd/inc/DocumentRenderer.hrc:84
+#: sd/inc/DocumentRenderer.hrc:82
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~All slides"
msgstr "~Pob sleid"
-#: sd/inc/DocumentRenderer.hrc:85
+#: sd/inc/DocumentRenderer.hrc:83
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~Slides"
msgstr "~Sleidiau"
-#: sd/inc/DocumentRenderer.hrc:86
+#: sd/inc/DocumentRenderer.hrc:84
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Se~lection"
msgstr "~Dewis"
-#: sd/inc/DocumentRenderer.hrc:91
+#: sd/inc/DocumentRenderer.hrc:89
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~All pages"
msgstr "~Pob tudalen"
-#: sd/inc/DocumentRenderer.hrc:92
+#: sd/inc/DocumentRenderer.hrc:90
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Pa~ges"
msgstr "~Tudalennau"
-#: sd/inc/DocumentRenderer.hrc:93
+#: sd/inc/DocumentRenderer.hrc:91
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Se~lection"
msgstr "~Dewis"
@@ -1717,52 +1717,52 @@ msgstr "Gwrthrych heb lanw na llinell"
#: sd/inc/strings.hrc:323
msgctxt "STR_POOLSHEET_FILLED"
msgid "Filled"
-msgstr ""
+msgstr "Llanwyd"
#: sd/inc/strings.hrc:324
msgctxt "STR_POOLSHEET_FILLED_BLUE"
msgid "Filled Blue"
-msgstr ""
+msgstr "Llanw Glas"
#: sd/inc/strings.hrc:325
msgctxt "STR_POOLSHEET_FILLED_GREEN"
msgid "Filled Green"
-msgstr ""
+msgstr "Llanw Gwyrdd"
#: sd/inc/strings.hrc:326
msgctxt "STR_POOLSHEET_FILLED_YELLOW"
msgid "Filled Yellow"
-msgstr ""
+msgstr "Llanw Melyn"
#: sd/inc/strings.hrc:327
msgctxt "STR_POOLSHEET_FILLED_RED"
msgid "Filled Red"
-msgstr ""
+msgstr "Llanw Coch"
#: sd/inc/strings.hrc:329
msgctxt "STR_POOLSHEET_OUTLINE"
msgid "Outlined"
-msgstr ""
+msgstr "Amlinellwyd"
#: sd/inc/strings.hrc:330
msgctxt "STR_POOLSHEET_OUTLINE_BLUE"
msgid "Outlined Blue"
-msgstr ""
+msgstr "Amlinell Glas"
#: sd/inc/strings.hrc:331
msgctxt "STR_POOLSHEET_OUTLINE_GREEN"
msgid "Outlined Green"
-msgstr ""
+msgstr "Amlinell Gwyrdd"
#: sd/inc/strings.hrc:332
msgctxt "STR_POOLSHEET_OUTLINE_YELLOW"
msgid "Outlined Yellow"
-msgstr ""
+msgstr "Amlinell Melyn"
#: sd/inc/strings.hrc:333
msgctxt "STR_POOLSHEET_OUTLINE_RED"
msgid "Outlined Red"
-msgstr ""
+msgstr "Amlinell Coch"
#: sd/inc/strings.hrc:335
msgctxt "STR_PSEUDOSHEET_TITLE"
@@ -3605,77 +3605,77 @@ msgstr "Dangos Siapiau"
#: sd/uiconfig/simpress/ui/notebookbar.ui:967
msgctxt "notebookbar|Help"
msgid "_Check for Updates..."
-msgstr ""
+msgstr "_Gwirio am Ddiweddariadau..."
#: sd/uiconfig/simpress/ui/notebookbar.ui:2096
msgctxt "notebookbar|Tools"
msgid "_Check for Updates..."
-msgstr ""
+msgstr "_Gwirio am Ddiweddariadau..."
#: sd/uiconfig/simpress/ui/notebookbar.ui:2422
msgctxt "notebookbar|FileLabel"
msgid "_File"
-msgstr ""
+msgstr "_Ffeil"
#: sd/uiconfig/simpress/ui/notebookbar.ui:2441
msgctxt "notebookbar|HelpMenuButton"
msgid "_Help"
-msgstr ""
+msgstr "_Cymorth"
#: sd/uiconfig/simpress/ui/notebookbar.ui:3230
msgctxt "notebookbar|FileLabel"
msgid "File"
-msgstr ""
+msgstr "Ffeil"
#: sd/uiconfig/simpress/ui/notebookbar.ui:3389
msgctxt "notebookbar|HomeMenuButton"
msgid "_Home"
-msgstr ""
+msgstr "_Cartref"
#: sd/uiconfig/simpress/ui/notebookbar.ui:4846
msgctxt "notebookbar|HomeLabel"
msgid "Home"
-msgstr ""
+msgstr "Cartref"
#: sd/uiconfig/simpress/ui/notebookbar.ui:5293
msgctxt "notebookbar|FieldMenuButton"
msgid "Fiel_d"
-msgstr ""
+msgstr "_Maes"
#: sd/uiconfig/simpress/ui/notebookbar.ui:5820
msgctxt "notebookbar|InsertMenuButton"
msgid "_Insert"
-msgstr ""
+msgstr "_Mewnosod"
#: sd/uiconfig/simpress/ui/notebookbar.ui:5905
msgctxt "notebookbar|InsertLabel"
msgid "Insert"
-msgstr ""
+msgstr "Mewnoliad"
#: sd/uiconfig/simpress/ui/notebookbar.ui:5935
msgctxt "notebookbar|SlideMenuButton"
msgid "S_lide"
-msgstr ""
+msgstr "_Sleid"
#: sd/uiconfig/simpress/ui/notebookbar.ui:6688
msgctxt "notebookbar|LayoutLabel"
msgid "Slide"
-msgstr ""
+msgstr "Sleid"
#: sd/uiconfig/simpress/ui/notebookbar.ui:6716
msgctxt "notebookbar|SlideShowMenuButton"
msgid "_Slide Show"
-msgstr ""
+msgstr "_Sioe Sleidiau"
#: sd/uiconfig/simpress/ui/notebookbar.ui:7194
msgctxt "notebookbar|ReferencesLabel"
msgid "Slide Show"
-msgstr ""
+msgstr "Sioe Sleidiau"
#: sd/uiconfig/simpress/ui/notebookbar.ui:7222
msgctxt "notebookbar|ReviewMenuButton"
msgid "_Review"
-msgstr ""
+msgstr "_Adolygu"
#: sd/uiconfig/simpress/ui/notebookbar.ui:7651
msgctxt "notebookbar|ReviewLabel"
@@ -3685,7 +3685,7 @@ msgstr "Adolygu"
#: sd/uiconfig/simpress/ui/notebookbar.ui:7679
msgctxt "notebookbar|ViewMenuButton"
msgid "_View"
-msgstr ""
+msgstr "_Golwg"
#: sd/uiconfig/simpress/ui/notebookbar.ui:8580
msgctxt "notebookbar|ViewLabel"
@@ -3695,7 +3695,7 @@ msgstr "Golwg"
#: sd/uiconfig/simpress/ui/notebookbar.ui:9369
msgctxt "notebookbar|TableMenuButton"
msgid "T_able"
-msgstr ""
+msgstr "_Tabl"
#: sd/uiconfig/simpress/ui/notebookbar.ui:9453
msgctxt "notebookbar|TableLabel"
@@ -3706,12 +3706,12 @@ msgstr "Tabl"
#: sd/uiconfig/simpress/ui/notebookbar.ui:11131
msgctxt "notebookbar|ConvertMenuButton"
msgid "Convert"
-msgstr ""
+msgstr "Trosi"
#: sd/uiconfig/simpress/ui/notebookbar.ui:10335
msgctxt "notebookbar|GraphicMenuButton"
msgid "_Graphic"
-msgstr ""
+msgstr "_Graffig"
#: sd/uiconfig/simpress/ui/notebookbar.ui:10447
msgctxt "notebookbar|ImageLabel"
@@ -3721,32 +3721,32 @@ msgstr "Delwedd"
#: sd/uiconfig/simpress/ui/notebookbar.ui:11658
msgctxt "notebookbar|DrawMenuButton"
msgid "D_raw"
-msgstr ""
+msgstr "_Lluniadu"
#: sd/uiconfig/simpress/ui/notebookbar.ui:11772
msgctxt "notebookbar|DrawLabel"
msgid "Draw"
-msgstr ""
+msgstr "Lluniadu"
#: sd/uiconfig/simpress/ui/notebookbar.ui:11804
msgctxt "notebookbar|ToolsMenuButton"
msgid "_Tools"
-msgstr ""
+msgstr "_Offer"
#: sd/uiconfig/simpress/ui/notebookbar.ui:12758
msgctxt "notebookbar|DevLabel"
msgid "Tools"
-msgstr ""
+msgstr "Offer"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:1922
msgctxt "notebookbar_groupedbar_compact|Menu"
msgid "_Check for Updates..."
-msgstr ""
+msgstr "_Gwirio am Ddiweddariadau..."
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:2328
msgctxt "notebookbar_groupedbar_compact|Tools"
msgid "_Check for Updates..."
-msgstr ""
+msgstr "_Gwirio am Ddiweddariadau..."
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:2589
msgctxt "notebookbar_groupedbar_compact|menub"
@@ -3920,17 +3920,17 @@ msgstr "_Golwg"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:1421
msgctxt "notebookbar_groupedbar_full|Help"
msgid "_Check for Updates..."
-msgstr ""
+msgstr "_Gwirio am Ddiweddariadau..."
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:2115
msgctxt "notebookbar_groupedbar_full|Menu"
msgid "_Check for Updates..."
-msgstr ""
+msgstr "_Gwirio am Ddiweddariadau..."
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:2599
msgctxt "notebookbar_groupedbar_full|Tools"
msgid "_Check for Updates..."
-msgstr ""
+msgstr "_Gwirio am Ddiweddariadau..."
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:2865
msgctxt "notebookbar_groupedbar_full|menub"
diff --git a/source/cy/svtools/messages.po b/source/cy/svtools/messages.po
index 13c0c13cb7c..6783bc40ead 100644
--- a/source/cy/svtools/messages.po
+++ b/source/cy/svtools/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2018-05-16 16:53+0200\n"
-"PO-Revision-Date: 2018-05-12 14:35+0000\n"
+"PO-Revision-Date: 2018-05-24 10:38+0000\n"
"Last-Translator: Rhoslyn Prys <rprys@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: cy\n"
@@ -13,8 +13,8 @@ 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-POOTLE-MTIME: 1526135709.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1527158319.000000\n"
#: svtools/inc/errtxt.hrc:30
msgctxt "RID_ERRCTX"
@@ -2496,17 +2496,17 @@ msgstr "Arabeg Malay (Brunei Darusalam)"
#: svtools/inc/langtab.hrc:416
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Juǀ’hoan"
-msgstr ""
+msgstr "Juǀ’hoan"
#: svtools/inc/langtab.hrc:417
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Naro"
-msgstr ""
+msgstr "Naro"
#: svtools/inc/langtab.hrc:418
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Iloko"
-msgstr ""
+msgstr "Iloko"
#: svtools/inc/templwin.hrc:42
msgctxt "STRARY_SVT_DOCINFO"
diff --git a/source/cy/svx/messages.po b/source/cy/svx/messages.po
index 09b37c4b0ff..9e26edbd301 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: 2018-05-16 16:53+0200\n"
-"PO-Revision-Date: 2018-05-12 14:36+0000\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
+"PO-Revision-Date: 2018-06-05 09:53+0000\n"
"Last-Translator: Rhoslyn Prys <rprys@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: cy\n"
@@ -13,8 +13,8 @@ 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-POOTLE-MTIME: 1526135772.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1528192406.000000\n"
#: svx/inc/fieldunit.hrc:30
msgctxt "RID_SVXSTR_FIELDUNIT_TABLE"
@@ -5179,8 +5179,8 @@ msgstr "Gallwch hefyd gynnwys ddarnau perthnasol o'ch profi defnyddiwr yn yr adr
#: svx/uiconfig/ui/safemodedialog.ui:432
msgctxt "safemodedialog|btn_create_zip"
-msgid "Create Zip Archive from User Profile"
-msgstr "Creu Archif Zip o'r Proffil Defnyddiwr"
+msgid "Archive User Profile"
+msgstr "Archifo Proffil y Defnyddiwr"
#: svx/uiconfig/ui/safemodedialog.ui:445
msgctxt "safemodedialog|linkbutton_profile"
@@ -8769,9 +8769,9 @@ msgid "Red"
msgstr "Coch"
#: include/svx/strings.hrc:565
-msgctxt "RID_SVXSTR_COLOR_VIOLET"
-msgid "Violet"
-msgstr "Fioled"
+msgctxt "RID_SVXSTR_COLOR_MAGENTA"
+msgid "Magenta"
+msgstr "Magenta"
#: include/svx/strings.hrc:566
msgctxt "RID_SVXSTR_COLOR_PURPLE"
@@ -8835,9 +8835,9 @@ msgid "Light Red"
msgstr "Coch Golau"
#: include/svx/strings.hrc:579
-msgctxt "RID_SVXSTR_COLOR_LIGHTVIOLET"
-msgid "Light Violet"
-msgstr "Fioled Golau"
+msgctxt "RID_SVXSTR_COLOR_LIGHTMAGENTA"
+msgid "Light Magenta"
+msgstr "Magenta Golau"
#: include/svx/strings.hrc:580
msgctxt "RID_SVXSTR_COLOR_LIGHTPURPLE"
@@ -8901,9 +8901,9 @@ msgid "Dark Red"
msgstr "Coch Tywyll"
#: include/svx/strings.hrc:593
-msgctxt "RID_SVXSTR_COLOR_DARKVIOLET1"
-msgid "Dark Violet"
-msgstr "Fioled Tywyll"
+msgctxt "RID_SVXSTR_COLOR_DARKMAGENTA"
+msgid "Dark Magenta"
+msgstr "Magenta Tywyll"
#: include/svx/strings.hrc:594
msgctxt "RID_SVXSTR_COLOR_DARKPURPLE"
@@ -8937,55 +8937,55 @@ msgstr "Leim Tywyll"
#. Elements of the Tonal color palette
#: include/svx/strings.hrc:601
+msgctxt "RID_SVXSTR_COLOR_VIOLET"
+msgid "Violet"
+msgstr "Fioled"
+
+#: include/svx/strings.hrc:602
msgctxt "RID_SVXSTR_COLOR_VIOLET_OUG"
msgid "Violet (Out of Gamut)"
msgstr "Fioled (Allan o'r Gamut)"
-#: include/svx/strings.hrc:602
+#: include/svx/strings.hrc:603
msgctxt "RID_SVXSTR_COLOR_BLUE_OUG"
msgid "Blue (Out of Gamut)"
msgstr "Glas (Allan o'r Gamut)"
-#: include/svx/strings.hrc:603
+#: include/svx/strings.hrc:604
msgctxt "RID_SVXSTR_COLOR_AZURE_OUG"
msgid "Azure (Out of Gamut)"
msgstr "Glas y Môr (Allan o'r Gamut)"
-#: include/svx/strings.hrc:604
+#: include/svx/strings.hrc:605
msgctxt "RID_SVXSTR_COLOR_SPRINGGREEN_OUG"
msgid "Spring Green (Out of Gamut)"
msgstr "Gwyrdd y Gwanwyn (Allan o'r Gamut)"
-#: include/svx/strings.hrc:605
+#: include/svx/strings.hrc:606
msgctxt "RID_SVXSTR_COLOR_GREEN_OUG"
msgid "Green (Out of Gamut)"
msgstr "Gwyrdd (Allan o'r Gamut)"
-#: include/svx/strings.hrc:606
+#: include/svx/strings.hrc:607
msgctxt "RID_SVXSTR_COLOR_CHARTREUSEGREEN_OUG"
msgid "Chartreuse Green (Out of Gamut)"
msgstr "Gwyrdd Chartreuse Allan o'r Gamut)"
-#: include/svx/strings.hrc:607
+#: include/svx/strings.hrc:608
msgctxt "RID_SVXSTR_COLOR_ORANGE_OUG"
msgid "Orange (Out of Gamut)"
msgstr "Oren (Allan o'r Gamut)"
-#: include/svx/strings.hrc:608
+#: include/svx/strings.hrc:609
msgctxt "RID_SVXSTR_COLOR_RED_OUG"
msgid "Red (Out of Gamut)"
msgstr "Coch (Allan o'r Gamut)"
-#: include/svx/strings.hrc:609
+#: include/svx/strings.hrc:610
msgctxt "RID_SVXSTR_COLOR_ROSE_OUG"
msgid "Rose (Out of Gamut)"
msgstr "Rhosgoch (Allan o'r Gamut)"
-#: include/svx/strings.hrc:610
-msgctxt "RID_SVXSTR_COLOR_MAGENTA"
-msgid "Magenta"
-msgstr "Magenta"
-
#: include/svx/strings.hrc:611
msgctxt "RID_SVXSTR_COLOR_AZURE"
msgid "Azure"
@@ -9608,77 +9608,77 @@ msgstr "Graddiant Gwyrdd"
#: include/svx/strings.hrc:746
msgctxt "RID_SVXSTR_GRDT70"
msgid "Pastel Bouquet"
-msgstr ""
+msgstr "Tusw Pastel"
#: include/svx/strings.hrc:747
msgctxt "RID_SVXSTR_GRDT71"
msgid "Pastel Dream"
-msgstr ""
+msgstr "Breuddwyd Pastel"
#: include/svx/strings.hrc:748
msgctxt "RID_SVXSTR_GRDT72"
msgid "Blue Touch"
-msgstr ""
+msgstr "Cyffyrddiad Glas"
#: include/svx/strings.hrc:749
msgctxt "RID_SVXSTR_GRDT73"
msgid "Blank with Gray"
-msgstr ""
+msgstr "Gwag gyda Llwyd"
#: include/svx/strings.hrc:750
msgctxt "RID_SVXSTR_GRDT74"
msgid "Spotted Gray"
-msgstr ""
+msgstr "Llwyd Smotiog"
#: include/svx/strings.hrc:751
msgctxt "RID_SVXSTR_GRDT75"
msgid "London Mist"
-msgstr ""
+msgstr "Nudden Llundain"
#: include/svx/strings.hrc:752
msgctxt "RID_SVXSTR_GRDT76"
msgid "Teal to Blue"
-msgstr ""
+msgstr "Gwyrddlas i Las"
#: include/svx/strings.hrc:753
msgctxt "RID_SVXSTR_GRDT77"
msgid "Midnight"
-msgstr ""
+msgstr "Hanner Nos"
#: include/svx/strings.hrc:754
msgctxt "RID_SVXSTR_GRDT78"
msgid "Deep Ocean"
-msgstr ""
+msgstr "Cefnfor Dwfn"
#: include/svx/strings.hrc:755
msgctxt "RID_SVXSTR_GRDT79"
msgid "Submarine"
-msgstr ""
+msgstr "O Dan y Môr"
#: include/svx/strings.hrc:756
msgctxt "RID_SVXSTR_GRDT80"
msgid "Green Grass"
-msgstr ""
+msgstr "Glaswellt"
#: include/svx/strings.hrc:757
msgctxt "RID_SVXSTR_GRDT81"
msgid "Neon Light"
-msgstr ""
+msgstr "Golau Neon"
#: include/svx/strings.hrc:758
msgctxt "RID_SVXSTR_GRDT82"
msgid "Sunshine"
-msgstr ""
+msgstr "Heulwen"
#: include/svx/strings.hrc:759
msgctxt "RID_SVXSTR_GRDT83"
msgid "Present"
-msgstr ""
+msgstr "Presennol"
#: include/svx/strings.hrc:760
msgctxt "RID_SVXSTR_GRDT84"
msgid "Mahagoni"
-msgstr ""
+msgstr "Mahagoni"
#. /gradients
#: include/svx/strings.hrc:762
@@ -12091,13 +12091,13 @@ msgstr "Bwledi saeth pwyntio i'r dde"
#: include/svx/strings.hrc:1273
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_6"
-msgid "Check mark bullets"
-msgstr "Bwledi marc siec"
+msgid "Cross mark bullets"
+msgstr "Bwledi marc croes"
#: include/svx/strings.hrc:1274
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_7"
-msgid "Tick mark bullets"
-msgstr "Bwledi marc tic"
+msgid "Check mark bullets"
+msgstr "Bwledi marc siec"
#: include/svx/strings.hrc:1275
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_0"
diff --git a/source/cy/sw/messages.po b/source/cy/sw/messages.po
index d21200bac9a..ec436635c52 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: 2018-05-22 13:17+0200\n"
-"PO-Revision-Date: 2018-05-12 14:37+0000\n"
+"POT-Creation-Date: 2018-06-12 14:41+0200\n"
+"PO-Revision-Date: 2018-06-05 09:54+0000\n"
"Last-Translator: Rhoslyn Prys <rprys@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: cy\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n==2) ? 1 : 0;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1526135872.000000\n"
+"X-POOTLE-MTIME: 1528192471.000000\n"
#: sw/inc/app.hrc:29
msgctxt "RID_PARAGRAPHSTYLEFAMILY"
@@ -1180,13 +1180,13 @@ msgstr "Dyfyniad"
#: sw/inc/strings.hrc:172
msgctxt "STR_POOLCOLL_TOX_ILLUSH"
-msgid "Illustration Index Heading"
-msgstr "Pennawd Mynegai Darluniau"
+msgid "Figure Index Heading"
+msgstr ""
#: sw/inc/strings.hrc:173
msgctxt "STR_POOLCOLL_TOX_ILLUS1"
-msgid "Illustration Index 1"
-msgstr "Mynegai Darluniau 1"
+msgid "Figure Index 1"
+msgstr ""
#: sw/inc/strings.hrc:174
msgctxt "STR_POOLCOLL_TOX_OBJECTH"
@@ -3590,8 +3590,8 @@ msgstr "Tabl Gwrthrychau"
#: sw/inc/strings.hrc:672
msgctxt "STR_TOX_ILL"
-msgid "Illustration Index"
-msgstr "Mynegai Darluniau"
+msgid "Table of Figures"
+msgstr ""
#: sw/inc/strings.hrc:673
#, c-format
@@ -9244,72 +9244,72 @@ msgctxt "footnotepage|label5"
msgid "Continuation Notice"
msgstr "Rhybudd Parhad"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:49
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:55
msgctxt "footnotesendnotestabpage|ftnntnum"
msgid "_Restart numbering"
msgstr "_Ail gychwyn rhifo"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:91
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:93
msgctxt "footnotesendnotestabpage|ftnoffset_label"
msgid "_Start at:"
msgstr "_Cychwyn yn:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:112
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:111
msgctxt "footnotesendnotestabpage|ftnntnumfmt"
msgid "Custom _format"
msgstr "_Fformat cyfaddas"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:155
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:150
msgctxt "footnotesendnotestabpage|ftnsuffix_label"
msgid "Aft_er:"
msgstr "We_di:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:199
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:188
msgctxt "footnotesendnotestabpage|ftnprefix_label"
msgid "Be_fore:"
msgstr "Cy_n:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:228
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:212
msgctxt "footnotesendnotestabpage|ftnntattextend"
msgid "Collec_t at end of text"
msgstr "Cas_glu ar ddiwedd y testun"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:252
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:234
msgctxt "footnotesendnotestabpage|label1"
msgid "Footnotes"
msgstr "Troednodau"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:289
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:271
msgctxt "footnotesendnotestabpage|endntattextend"
msgid "C_ollect at end of section"
msgstr "Cas_glu ar ddiwedd yr adran"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:315
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:295
msgctxt "footnotesendnotestabpage|endntnum"
msgid "_Restart numbering"
msgstr "_Ail gychwyn rhifo"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:357
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:333
msgctxt "footnotesendnotestabpage|endoffset_label"
msgid "_Start at:"
msgstr "_Cychwyn:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:378
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:351
msgctxt "footnotesendnotestabpage|endntnumfmt"
msgid "_Custom format"
msgstr "Ffo_rmat cyfaddas"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:421
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:390
msgctxt "footnotesendnotestabpage|endsuffix_label"
msgid "Aft_er:"
msgstr "We_di:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:465
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:428
msgctxt "footnotesendnotestabpage|endprefix_label"
msgid "Be_fore:"
msgstr "Cy_n:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:500
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:458
msgctxt "footnotesendnotestabpage|label2"
msgid "Endnotes"
msgstr "Diweddnodau"
@@ -9339,27 +9339,27 @@ msgctxt "formatsectiondialog|notes"
msgid "Footnotes/Endnotes"
msgstr "Troednodau/Diweddnodau"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:63
+#: sw/uiconfig/swriter/ui/formattablepage.ui:77
msgctxt "formattablepage|nameft"
msgid "_Name"
msgstr "_Enw"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:79
+#: sw/uiconfig/swriter/ui/formattablepage.ui:91
msgctxt "formattablepage|widthft"
msgid "W_idth"
msgstr "_Lled"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:110
+#: sw/uiconfig/swriter/ui/formattablepage.ui:120
msgctxt "formattablepage|relwidth"
msgid "Relati_ve"
msgstr "_Perthynol"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:155
+#: sw/uiconfig/swriter/ui/formattablepage.ui:160
msgctxt "formattablepage|label45"
msgid "Properties"
msgstr "Priodweddau"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:194
+#: sw/uiconfig/swriter/ui/formattablepage.ui:195
msgctxt "formattablepage|leftft"
msgid "Lef_t"
msgstr "_Chwith"
@@ -9369,62 +9369,62 @@ msgctxt "formattablepage|rightft"
msgid "Ri_ght"
msgstr "_De"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:228
+#: sw/uiconfig/swriter/ui/formattablepage.ui:226
msgctxt "formattablepage|aboveft"
msgid "_Above"
msgstr "_Uwchlaw"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:245
+#: sw/uiconfig/swriter/ui/formattablepage.ui:241
msgctxt "formattablepage|belowft"
msgid "_Below"
msgstr "_Islaw"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:320
+#: sw/uiconfig/swriter/ui/formattablepage.ui:311
msgctxt "formattablepage|label46"
msgid "Spacing"
msgstr "Bylchu"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:362
+#: sw/uiconfig/swriter/ui/formattablepage.ui:349
msgctxt "formattablepage|full"
msgid "A_utomatic"
msgstr "_Awtomatig"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:380
+#: sw/uiconfig/swriter/ui/formattablepage.ui:365
msgctxt "formattablepage|left"
msgid "_Left"
msgstr "_Chwith"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:398
+#: sw/uiconfig/swriter/ui/formattablepage.ui:381
msgctxt "formattablepage|fromleft"
msgid "_From left"
msgstr "_O'r chwith"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:416
+#: sw/uiconfig/swriter/ui/formattablepage.ui:397
msgctxt "formattablepage|right"
msgid "R_ight"
msgstr "_De"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:435
+#: sw/uiconfig/swriter/ui/formattablepage.ui:413
msgctxt "formattablepage|center"
msgid "_Center"
msgstr "_Canol"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:453
+#: sw/uiconfig/swriter/ui/formattablepage.ui:429
msgctxt "formattablepage|free"
msgid "_Manual"
msgstr "_Llaw"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:478
+#: sw/uiconfig/swriter/ui/formattablepage.ui:452
msgctxt "formattablepage|label43"
msgid "Alignment"
msgstr "Aliniad"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:522
+#: sw/uiconfig/swriter/ui/formattablepage.ui:491
msgctxt "formattablepage|label53"
msgid "Text _direction"
msgstr "_Cyfeiriad testun"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:553
+#: sw/uiconfig/swriter/ui/formattablepage.ui:519
msgctxt "formattablepage|label44"
msgid "Properties "
msgstr "Priodweddau "
@@ -9779,22 +9779,27 @@ msgctxt "headerfootermenu|insert_pagenumber"
msgid "Insert Page Number"
msgstr "Mewnosod Rhif Tudalen"
-#: sw/uiconfig/swriter/ui/indentpage.ui:52
+#: sw/uiconfig/swriter/ui/headerfootermenu.ui:42
+msgctxt "headerfootermenu|insert_pagecount"
+msgid "Insert Page Count"
+msgstr "Mewnosod Cyfrif Tudalennau"
+
+#: sw/uiconfig/swriter/ui/indentpage.ui:57
msgctxt "indentpage|label1"
msgid "_Before section"
msgstr "C_yn yr Adran"
-#: sw/uiconfig/swriter/ui/indentpage.ui:67
+#: sw/uiconfig/swriter/ui/indentpage.ui:71
msgctxt "indentpage|label3"
msgid "_After section"
msgstr "_Wedi'r Adran"
-#: sw/uiconfig/swriter/ui/indentpage.ui:113
+#: sw/uiconfig/swriter/ui/indentpage.ui:115
msgctxt "indentpage|label2"
msgid "Indent"
msgstr "Mewnoli"
-#: sw/uiconfig/swriter/ui/indentpage.ui:142
+#: sw/uiconfig/swriter/ui/indentpage.ui:155
msgctxt "indentpage|preview-atkobject"
msgid "Example"
msgstr "Enghraifft"
@@ -11772,22 +11777,22 @@ msgstr "Mynegai Defnyddiwr Newydd"
#: sw/uiconfig/swriter/ui/notebookbar.ui:537
msgctxt "notebookbar|Help"
msgid "_Check for Updates..."
-msgstr ""
+msgstr "_Gwirio am Ddiweddariadau..."
#: sw/uiconfig/swriter/ui/notebookbar.ui:1581
msgctxt "notebookbar|Tools"
msgid "_Check for Updates..."
-msgstr ""
+msgstr "_Gwirio am Ddiweddariadau..."
#: sw/uiconfig/swriter/ui/notebookbar.ui:1851
msgctxt "notebookbar|FileMenuButton"
msgid "_File"
-msgstr ""
+msgstr "_Ffeil"
#: sw/uiconfig/swriter/ui/notebookbar.ui:1870
msgctxt "notebookbar|HelpMenuButton"
msgid "_Help"
-msgstr ""
+msgstr "_Cymorth"
#: sw/uiconfig/swriter/ui/notebookbar.ui:2658
msgctxt "notebookbar|FileLabel"
@@ -11797,7 +11802,7 @@ msgstr "Ffeil"
#: sw/uiconfig/swriter/ui/notebookbar.ui:2817
msgctxt "notebookbar|HomeMenuButton"
msgid "_Home"
-msgstr ""
+msgstr "_Cartref"
#: sw/uiconfig/swriter/ui/notebookbar.ui:4203
msgctxt "notebookbar|HomeLabel"
@@ -11807,7 +11812,7 @@ msgstr "Cartref"
#: sw/uiconfig/swriter/ui/notebookbar.ui:5273
msgctxt "notebookbar|InsertMenuButton"
msgid "_Insert"
-msgstr ""
+msgstr "_Mewnosod"
#: sw/uiconfig/swriter/ui/notebookbar.ui:5358
msgctxt "notebookbar|InsertLabel"
@@ -11817,7 +11822,7 @@ msgstr "Mewnosod"
#: sw/uiconfig/swriter/ui/notebookbar.ui:5388
msgctxt "notebookbar|PageMenuButton"
msgid "Pag_e"
-msgstr ""
+msgstr "_Tudalen"
#: sw/uiconfig/swriter/ui/notebookbar.ui:6307
msgctxt "notebookbar|LayoutLabel"
@@ -11827,7 +11832,7 @@ msgstr "Cynllun"
#: sw/uiconfig/swriter/ui/notebookbar.ui:6335
msgctxt "notebookbar|ReferencesMenuButton"
msgid "Reference_s"
-msgstr ""
+msgstr "C_yfeirnodau"
#: sw/uiconfig/swriter/ui/notebookbar.ui:6914
msgctxt "notebookbar|ReferencesLabel"
@@ -11837,7 +11842,7 @@ msgstr "Cyfeiriadau"
#: sw/uiconfig/swriter/ui/notebookbar.ui:7586
msgctxt "notebookbar|ReviewMenuButton"
msgid "_Review"
-msgstr ""
+msgstr "_Adolygu"
#: sw/uiconfig/swriter/ui/notebookbar.ui:7671
msgctxt "notebookbar|ReviewLabel"
@@ -11847,7 +11852,7 @@ msgstr "Adolygu"
#: sw/uiconfig/swriter/ui/notebookbar.ui:8285
msgctxt "notebookbar|ViewMenuButton"
msgid "_View"
-msgstr ""
+msgstr "_Golwg"
#: sw/uiconfig/swriter/ui/notebookbar.ui:8370
msgctxt "notebookbar|ViewLabel"
@@ -11857,7 +11862,7 @@ msgstr "Golwg"
#: sw/uiconfig/swriter/ui/notebookbar.ui:9451
msgctxt "notebookbar|TableMenuButton"
msgid "T_able"
-msgstr ""
+msgstr "_Tabl"
#: sw/uiconfig/swriter/ui/notebookbar.ui:9535
msgctxt "notebookbar|TableLabel"
@@ -11867,7 +11872,7 @@ msgstr "Tabl"
#: sw/uiconfig/swriter/ui/notebookbar.ui:10586
msgctxt "notebookbar|GraphicMenuButton"
msgid "_Graphic"
-msgstr ""
+msgstr "_Graffig"
#: sw/uiconfig/swriter/ui/notebookbar.ui:10685
msgctxt "notebookbar|ImageLabel"
@@ -11877,7 +11882,7 @@ msgstr "Delwedd"
#: sw/uiconfig/swriter/ui/notebookbar.ui:12035
msgctxt "notebookbar|DrawMenuButton"
msgid "D_raw"
-msgstr ""
+msgstr "_Lluniadu"
#: sw/uiconfig/swriter/ui/notebookbar.ui:12147
msgctxt "notebookbar|ShapeLabel"
@@ -11887,17 +11892,17 @@ msgstr "Lluniadu"
#: sw/uiconfig/swriter/ui/notebookbar.ui:13000
msgctxt "notebookbar|ObjectMenuButton:MenuDraw"
msgid "Object"
-msgstr ""
+msgstr "Gwrthrych"
#: sw/uiconfig/swriter/ui/notebookbar.ui:13089
msgctxt "notebookbar|ObjectLabel"
msgid "Object"
-msgstr ""
+msgstr "Gwrthrych"
#: sw/uiconfig/swriter/ui/notebookbar.ui:13120
msgctxt "notebookbar|ToolsMenuButton"
msgid "_Tools"
-msgstr ""
+msgstr "_Offer"
#: sw/uiconfig/swriter/ui/notebookbar.ui:14074
msgctxt "notebookbar|DevLabel"
@@ -11907,12 +11912,12 @@ msgstr "Offer"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:1697
msgctxt "notebookbar_compact|Update"
msgid "_Check for Updates..."
-msgstr ""
+msgstr "_Gwirio am Ddiweddariadau..."
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:2007
msgctxt "notebookbar_compact|FileMenuButton"
msgid "_File"
-msgstr ""
+msgstr "_Ffeil"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:2721
msgctxt "notebookbar_compact|FileLabel"
@@ -11922,7 +11927,7 @@ msgstr "Ffeil"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:2770
msgctxt "notebookbar_compact|HomeMenuButton"
msgid "_Menu"
-msgstr ""
+msgstr "­_Dewislen"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3829
msgctxt "notebookbar_compact|HomeLabel"
@@ -11932,7 +11937,7 @@ msgstr "Cartref"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3882
msgctxt "notebookbar_compact|InsertMenuButton"
msgid "_Insert"
-msgstr ""
+msgstr "_Mewnosod"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4501
msgctxt "notebookbar_compact|InsertLabel"
@@ -11950,7 +11955,7 @@ msgstr "Amlapio"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5221
msgctxt "notebookbar_compact|PageMenuButton"
msgid "Pag_e"
-msgstr ""
+msgstr "_Tudalen"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5273
msgctxt "notebookbar_compact|LayoutLabel"
@@ -11960,7 +11965,7 @@ msgstr "Cynllun"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5320
msgctxt "notebookbar_compact|ReferencesMenuButton"
msgid "Reference_s"
-msgstr ""
+msgstr "C_yfeirnodau"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5708
msgctxt "notebookbar_compact|ReferencesLabel"
@@ -11970,7 +11975,7 @@ msgstr "Cyfeirnodau"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6204
msgctxt "notebookbar_compact|ReviewMenuButton"
msgid "_Review"
-msgstr ""
+msgstr "_Adolygu"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6237
msgctxt "notebookbar_compact|ReviewLabel"
@@ -11980,7 +11985,7 @@ msgstr "Adolygu"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6706
msgctxt "notebookbar_compact|ViewMenuButton"
msgid "_View"
-msgstr ""
+msgstr "_Golwg"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6758
msgctxt "notebookbar_compact|ViewLabel"
@@ -11990,7 +11995,7 @@ msgstr "Golwg"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6806
msgctxt "notebookbar_compact|TableMenuButton"
msgid "T_able"
-msgstr ""
+msgstr "_Tabl"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7540
msgctxt "notebookbar_compact|TableLabel"
@@ -12007,7 +12012,7 @@ msgstr "A_linio"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8291
msgctxt "notebookbar_compact|GraphicMenuButton"
msgid "_Graphic"
-msgstr ""
+msgstr "_Graffig"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8324
msgctxt "notebookbar_compact|ImageLabel"
@@ -12017,7 +12022,7 @@ msgstr "Delwedd"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9070
msgctxt "notebookbar_compact|DrawMenuButton"
msgid "D_raw"
-msgstr ""
+msgstr "_Lluniadu"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9125
msgctxt "notebookbar_compact|ShapeLabel"
@@ -12027,7 +12032,7 @@ msgstr "_Lluniadu"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9651
msgctxt "notebookbar_compact|ObjectMenuButton:MenuDraw"
msgid "Object"
-msgstr ""
+msgstr "Gwrthrych"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9707
msgctxt "notebookbar_compact|FrameLabel"
@@ -12037,7 +12042,7 @@ msgstr "Gwrthrych"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9757
msgctxt "notebookbar_compact|ToolsMenuButton"
msgid "_Tools"
-msgstr ""
+msgstr "_Offer"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10600
msgctxt "notebookbar_compact|DevLabel"
@@ -12052,7 +12057,7 @@ msgstr "Bar Dewis"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:2516
msgctxt "notebookbar_groupedbar_compact|Menu"
msgid "_Check for Updates..."
-msgstr ""
+msgstr "_Gwirio am Ddiweddariadau..."
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:2651
msgctxt "notebookbar_groupedbar_compact|Quotation2"
@@ -12062,7 +12067,7 @@ msgstr "Dyfyniad"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:2945
msgctxt "notebookbar_groupedbar_compact|Tools"
msgid "_Check for Updates..."
-msgstr ""
+msgstr "_Gwirio am Ddiweddariadau..."
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:3246
msgctxt "notebookbar_groupedbar_compact|menub"
@@ -12277,12 +12282,12 @@ msgstr "_Golwg"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:1486
msgctxt "notebookbar_groupedbar_full|Help"
msgid "_Check for Updates..."
-msgstr ""
+msgstr "_Gwirio am Ddiweddariadau..."
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:2555
msgctxt "notebookbar_groupedbar_full|Menu"
msgid "_Check for Updates..."
-msgstr ""
+msgstr "_Gwirio am Ddiweddariadau..."
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:2690
msgctxt "notebookbar_groupedbar_full|Quotation2"
@@ -12292,7 +12297,7 @@ msgstr "Dyfyniad"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:2984
msgctxt "notebookbar_groupedbar_full|Tools"
msgid "_Check for Updates..."
-msgstr ""
+msgstr "_Gwirio am Ddiweddariadau..."
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:3289
msgctxt "notebookbar_groupedbar_full|menub"
@@ -13285,7 +13290,7 @@ msgstr "Diogelwyd rhag"
#: sw/uiconfig/swriter/ui/optcompatpage.ui:68
msgctxt "optcompatpage|format"
-msgid "MS Word-compatible trailing blanks"
+msgid "Word-compatible trailing blanks"
msgstr "Bylchau cydweddus MS Word"
#: sw/uiconfig/swriter/ui/optcompatpage.ui:69
@@ -13295,8 +13300,8 @@ msgstr "Goddef llinellau cefndir tudalen gwyn PDF ar gyfer cydnawsedd gyda hen d
#: sw/uiconfig/swriter/ui/optcompatpage.ui:70
msgctxt "optcompatpage|format"
-msgid "A database field (e.g., MailMerge) with empty value hides its paragraph"
-msgstr ""
+msgid "Hide paragraphs of database fields (e.g., mail merge) with an empty value"
+msgstr "Cuddio paragraffau meysydd cronfeydd data (e.e., cyfuno post) gyda gwerth gwag"
#: sw/uiconfig/swriter/ui/optcompatpage.ui:71
msgctxt "optcompatpage|format"
@@ -15249,7 +15254,7 @@ msgstr "Dewisiadau"
#: sw/uiconfig/swriter/ui/savemonitordialog.ui:8
msgctxt "printmonitordialog|PrintMonitorDialog"
msgid "Save monitor"
-msgstr ""
+msgstr "Cadw'r monitor"
#: sw/uiconfig/swriter/ui/savemonitordialog.ui:71
msgctxt "printmonitordialog|saving"
@@ -15981,122 +15986,122 @@ msgctxt "tableproperties|background"
msgid "Background"
msgstr "Cefndir"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:25
-msgctxt "tabletextflowpage|liststore1"
-msgid "Horizontal"
-msgstr "Llorweddol"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:29
-msgctxt "tabletextflowpage|liststore1"
-msgid "Vertical"
-msgstr "Fertigol"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:33
-msgctxt "tabletextflowpage|liststore1"
-msgid "Use superordinate object settings"
-msgstr "Defnyddio gosodiadau gwrthrych uwcholyn"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:47
-msgctxt "tabletextflowpage|liststore2"
-msgid "Top"
-msgstr "Brig"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:51
-msgctxt "tabletextflowpage|liststore2"
-msgid "Centered"
-msgstr "Canoli"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:55
-msgctxt "tabletextflowpage|liststore2"
-msgid "Bottom"
-msgstr "Gwaelod"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:97
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:53
msgctxt "tabletextflowpage|break"
msgid "_Break"
msgstr "_Toriad"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:112
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:68
msgctxt "tabletextflowpage|page"
msgid "_Page"
msgstr "T_udalen"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:132
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:87
msgctxt "tabletextflowpage|column"
msgid "Col_umn"
msgstr "_Colofn"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:151
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:106
msgctxt "tabletextflowpage|before"
msgid "Be_fore"
msgstr "Cy_nt"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:171
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:125
msgctxt "tabletextflowpage|after"
msgid "_After"
msgstr "_Wedi"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:203
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:158
msgctxt "tabletextflowpage|pagestyle"
msgid "With Page St_yle"
msgstr "Gydag Arddull _Tudalen"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:224
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:177
msgctxt "tabletextflowpage|pagenoft"
msgid "Page _number"
msgstr "Rhif _tudalen"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:257
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:213
msgctxt "tabletextflowpage|pagestylelb-atkobject"
msgid "With Page Style"
msgstr "Gydag Arddull Tudalen"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:274
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:230
msgctxt "tabletextflowpage|split"
msgid "Allow _table to split across pages and columns"
msgstr "Caniatáu i _dabl hollti ar draws tudalennau a cholofnau"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:289
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:245
msgctxt "tabletextflowpage|splitrow"
msgid "Allow row to break a_cross pages and columns"
msgstr "Caniatáu i _res dorri ar draws tudalennau a cholofnau"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:306
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:262
msgctxt "tabletextflowpage|keep"
msgid "_Keep with next paragraph"
msgstr "C_adw gyda'r paragraff nesaf"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:328
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:284
msgctxt "tabletextflowpage|label40"
msgid "Text _orientation"
msgstr "Cyfeiriad _testun"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:361
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:298
+msgctxt "tabletextflowpage|liststore1"
+msgid "Horizontal"
+msgstr "Llorweddol"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:299
+msgctxt "tabletextflowpage|liststore1"
+msgid "Vertical"
+msgstr "Fertigol"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:300
+msgctxt "tabletextflowpage|liststore1"
+msgid "Use superordinate object settings"
+msgstr "Defnyddio gosodiadau gwrthrych uwcholyn"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:321
msgctxt "tabletextflowpage|headline"
msgid "R_epeat heading"
msgstr "_Ailadrodd pennawd"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:383
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:343
msgctxt "tabletextflowpage|label38"
msgid "The first "
msgstr "Y cyntaf "
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:396
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:356
msgctxt "tabletextflowpage|label39"
msgid "rows"
msgstr "rhesi"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:434
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:395
msgctxt "tabletextflowpage|label35"
msgid "Text Flow"
msgstr "Llif Testun"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:467
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:428
msgctxt "tabletextflowpage|label41"
msgid "_Vertical alignment"
msgstr "_Aliniad fertigol"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:495
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:442
+msgctxt "tabletextflowpage|liststore2"
+msgid "Top"
+msgstr "Brig"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:443
+msgctxt "tabletextflowpage|liststore2"
+msgid "Centered"
+msgstr "Canoli"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:444
+msgctxt "tabletextflowpage|liststore2"
+msgid "Bottom"
+msgstr "Gwaelod"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:460
msgctxt "tabletextflowpage|label36"
msgid "Alignment"
msgstr "Aliniad"
@@ -16878,8 +16883,8 @@ msgstr "Mynegai yn ôl yr Wyddor"
#: sw/uiconfig/swriter/ui/tocindexpage.ui:58
msgctxt "tocindexpage|liststore1"
-msgid "Illustration Index"
-msgstr "Mynegai Darluniau"
+msgid "Table of Figures"
+msgstr ""
#: sw/uiconfig/swriter/ui/tocindexpage.ui:62
msgctxt "tocindexpage|liststore1"
diff --git a/source/cy/writerperfect/messages.po b/source/cy/writerperfect/messages.po
index 13476679a57..a48e4e35404 100644
--- a/source/cy/writerperfect/messages.po
+++ b/source/cy/writerperfect/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-16 16:54+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2018-05-12 14:38+0000\n"
"Last-Translator: Rhoslyn Prys <rprys@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -66,97 +66,97 @@ msgctxt "exportepub|generalft"
msgid "General"
msgstr "Cyffredinol"
-#: writerperfect/uiconfig/ui/exportepub.ui:122
+#: writerperfect/uiconfig/ui/exportepub.ui:121
msgctxt "exportepub|versionft"
msgid "Version:"
msgstr "Fersiwn:"
-#: writerperfect/uiconfig/ui/exportepub.ui:139
+#: writerperfect/uiconfig/ui/exportepub.ui:138
msgctxt "exportepub|epub3"
msgid "EPUB 3.0"
msgstr "EPUB 3.0"
-#: writerperfect/uiconfig/ui/exportepub.ui:140
+#: writerperfect/uiconfig/ui/exportepub.ui:139
msgctxt "exportepub|epub2"
msgid "EPUB 2.0"
msgstr "EPUB 2.0"
-#: writerperfect/uiconfig/ui/exportepub.ui:175
+#: writerperfect/uiconfig/ui/exportepub.ui:174
msgctxt "exportepub|splitft"
msgid "Split method:"
msgstr "Dull hollt:"
-#: writerperfect/uiconfig/ui/exportepub.ui:192
+#: writerperfect/uiconfig/ui/exportepub.ui:191
msgctxt "exportepub|splitpage"
msgid "Page break"
msgstr "Toriad tudalen"
-#: writerperfect/uiconfig/ui/exportepub.ui:193
+#: writerperfect/uiconfig/ui/exportepub.ui:192
msgctxt "exportepub|splitheading"
msgid "Heading"
msgstr "Pennawd"
-#: writerperfect/uiconfig/ui/exportepub.ui:228
+#: writerperfect/uiconfig/ui/exportepub.ui:227
msgctxt "exportepub|layoutft"
msgid "Layout method:"
msgstr "Dull cynllun:"
-#: writerperfect/uiconfig/ui/exportepub.ui:245
+#: writerperfect/uiconfig/ui/exportepub.ui:244
msgctxt "exportepub|layoutreflowable"
msgid "Reflowable"
msgstr "Ail lifadwy"
-#: writerperfect/uiconfig/ui/exportepub.ui:246
+#: writerperfect/uiconfig/ui/exportepub.ui:245
msgctxt "exportepub|layoutfixed"
msgid "Fixed"
msgstr "Gosodedig"
-#: writerperfect/uiconfig/ui/exportepub.ui:281
+#: writerperfect/uiconfig/ui/exportepub.ui:280
msgctxt "exportepub|coverimageft"
msgid "Custom cover image:"
msgstr "Delwedd clawr cyfaddas:"
-#: writerperfect/uiconfig/ui/exportepub.ui:311
+#: writerperfect/uiconfig/ui/exportepub.ui:310
msgctxt "exportepub|coverbutton"
msgid "Browse..."
msgstr "Pori..."
-#: writerperfect/uiconfig/ui/exportepub.ui:355
+#: writerperfect/uiconfig/ui/exportepub.ui:354
msgctxt "exportepub|mediadirft"
msgid "Custom media directory:"
msgstr "Cyfeiriadur cyfrwng cyfaddas:"
-#: writerperfect/uiconfig/ui/exportepub.ui:385
+#: writerperfect/uiconfig/ui/exportepub.ui:384
msgctxt "exportepub|mediabutton"
msgid "Browse..."
msgstr "Pori..."
-#: writerperfect/uiconfig/ui/exportepub.ui:429
+#: writerperfect/uiconfig/ui/exportepub.ui:428
msgctxt "exportepub|metadataft"
msgid "Metadata"
msgstr "Metadata"
-#: writerperfect/uiconfig/ui/exportepub.ui:470
+#: writerperfect/uiconfig/ui/exportepub.ui:468
msgctxt "exportepub|identifierft"
msgid "Identifier:"
msgstr "Dynodydd:"
-#: writerperfect/uiconfig/ui/exportepub.ui:485
+#: writerperfect/uiconfig/ui/exportepub.ui:483
msgctxt "exportepub|titleft"
msgid "Title:"
msgstr "Teitl:"
-#: writerperfect/uiconfig/ui/exportepub.ui:511
+#: writerperfect/uiconfig/ui/exportepub.ui:509
msgctxt "exportepub|authorft"
msgid "Author:"
msgstr "Awdur:"
-#: writerperfect/uiconfig/ui/exportepub.ui:537
+#: writerperfect/uiconfig/ui/exportepub.ui:535
msgctxt "exportepub|languageft"
msgid "Language:"
msgstr "Iaith:"
-#: writerperfect/uiconfig/ui/exportepub.ui:563
+#: writerperfect/uiconfig/ui/exportepub.ui:561
msgctxt "exportepub|dateft"
msgid "Date:"
msgstr "Dyddiad:"
diff --git a/source/cy/xmlsecurity/messages.po b/source/cy/xmlsecurity/messages.po
index eae725cd8a4..8c00c7ee4cf 100644
--- a/source/cy/xmlsecurity/messages.po
+++ b/source/cy/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: 2018-05-22 13:17+0200\n"
-"PO-Revision-Date: 2018-03-01 11:36+0000\n"
+"PO-Revision-Date: 2018-05-24 10:50+0000\n"
"Last-Translator: Rhoslyn Prys <rprys@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: cy\n"
@@ -13,8 +13,8 @@ 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-POOTLE-MTIME: 1519904166.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1527159048.000000\n"
#: xmlsecurity/inc/strings.hrc:25
msgctxt "STR_CERTIFICATE_NOT_VALIDATED"
@@ -460,7 +460,7 @@ msgstr "Arwydd"
#: xmlsecurity/uiconfig/ui/selectcertificatedialog.ui:194
msgctxt "selectcertificatedialog|str_selectsign"
msgid "Select"
-msgstr ""
+msgstr "Dewis"
#: xmlsecurity/uiconfig/ui/selectcertificatedialog.ui:199
msgctxt "selectcertificatedialog|str_encrypt"
diff --git a/source/da/cui/messages.po b/source/da/cui/messages.po
index 73ce70efe1e..715086382ef 100644
--- a/source/da/cui/messages.po
+++ b/source/da/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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2018-05-08 20:09+0000\n"
"Last-Translator: SteenRønnow <steen.roennow@mail.dk>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -9872,97 +9872,97 @@ msgctxt "positionsizedialog|PositionAndSizeDialog"
msgid "Position and Size"
msgstr "Placering og størrelse"
-#: cui/uiconfig/ui/positionsizedialog.ui:107
+#: cui/uiconfig/ui/positionsizedialog.ui:136
msgctxt "positionsizedialog|RID_SVXPAGE_POSITION_SIZE"
msgid "Position and Size"
msgstr "Position og størrelse"
-#: cui/uiconfig/ui/positionsizedialog.ui:129
+#: cui/uiconfig/ui/positionsizedialog.ui:182
msgctxt "positionsizedialog|RID_SVXPAGE_SWPOSSIZE"
msgid "Position and Size"
msgstr "Position og størrelse"
-#: cui/uiconfig/ui/positionsizedialog.ui:152
+#: cui/uiconfig/ui/positionsizedialog.ui:229
msgctxt "positionsizedialog|RID_SVXPAGE_ANGLE"
msgid "Rotation"
msgstr "Rotation"
-#: cui/uiconfig/ui/positionsizedialog.ui:175
+#: cui/uiconfig/ui/positionsizedialog.ui:276
msgctxt "positionsizedialog|RID_SVXPAGE_SLANT"
msgid "Slant & Corner Radius"
msgstr "Hældning og hjørneradius"
-#: cui/uiconfig/ui/possizetabpage.ui:40
+#: cui/uiconfig/ui/possizetabpage.ui:61
msgctxt "possizetabpage|FT_POS_X"
msgid "Position _X:"
msgstr "X position:"
-#: cui/uiconfig/ui/possizetabpage.ui:56
+#: cui/uiconfig/ui/possizetabpage.ui:75
msgctxt "possizetabpage|FT_POS_Y"
msgid "Position _Y:"
msgstr "Y position:"
-#: cui/uiconfig/ui/possizetabpage.ui:110
+#: cui/uiconfig/ui/possizetabpage.ui:128
msgctxt "possizetabpage|FT_POSREFERENCE"
msgid "_Base point:"
msgstr "Forankringspunkt:"
-#: cui/uiconfig/ui/possizetabpage.ui:148
+#: cui/uiconfig/ui/possizetabpage.ui:182
msgctxt "possizetabpage|label1"
msgid "Position"
msgstr "Placering"
-#: cui/uiconfig/ui/possizetabpage.ui:190
+#: cui/uiconfig/ui/possizetabpage.ui:224
msgctxt "possizetabpage|FT_WIDTH"
msgid "Wi_dth:"
msgstr "Bredde:"
-#: cui/uiconfig/ui/possizetabpage.ui:206
+#: cui/uiconfig/ui/possizetabpage.ui:238
msgctxt "possizetabpage|FT_HEIGHT"
msgid "H_eight:"
msgstr "Højde:"
-#: cui/uiconfig/ui/possizetabpage.ui:247
+#: cui/uiconfig/ui/possizetabpage.ui:276
msgctxt "possizetabpage|CBX_SCALE"
msgid "_Keep ratio"
msgstr "Bevar størrelsesforhold"
-#: cui/uiconfig/ui/possizetabpage.ui:279
+#: cui/uiconfig/ui/possizetabpage.ui:307
msgctxt "possizetabpage|FT_SIZEREFERENCE"
msgid "Base _point:"
msgstr "Forankringspunkt:"
-#: cui/uiconfig/ui/possizetabpage.ui:317
+#: cui/uiconfig/ui/possizetabpage.ui:361
msgctxt "possizetabpage|label2"
msgid "Size"
msgstr "Størrelse"
-#: cui/uiconfig/ui/possizetabpage.ui:356
+#: cui/uiconfig/ui/possizetabpage.ui:401
msgctxt "possizetabpage|TSB_POSPROTECT"
msgid "Positio_n"
msgstr "Placering"
-#: cui/uiconfig/ui/possizetabpage.ui:373
+#: cui/uiconfig/ui/possizetabpage.ui:418
msgctxt "possizetabpage|TSB_SIZEPROTECT"
msgid "_Size"
msgstr "_Størrelse"
-#: cui/uiconfig/ui/possizetabpage.ui:397
+#: cui/uiconfig/ui/possizetabpage.ui:441
msgctxt "possizetabpage|label3"
msgid "Protect"
msgstr "Beskyt"
-#: cui/uiconfig/ui/possizetabpage.ui:430
+#: cui/uiconfig/ui/possizetabpage.ui:475
msgctxt "possizetabpage|TSB_AUTOGROW_WIDTH"
msgid "_Fit width to text"
msgstr "Tilpas bredde til tekst"
-#: cui/uiconfig/ui/possizetabpage.ui:447
+#: cui/uiconfig/ui/possizetabpage.ui:492
msgctxt "possizetabpage|TSB_AUTOGROW_HEIGHT"
msgid "Fit _height to text"
msgstr "Tilpas højde til tekst"
-#: cui/uiconfig/ui/possizetabpage.ui:471
+#: cui/uiconfig/ui/possizetabpage.ui:515
msgctxt "possizetabpage|label4"
msgid "Adapt"
msgstr "Tilpas"
@@ -10162,47 +10162,47 @@ msgctxt "recordnumberdialog|label2"
msgid "go to record"
msgstr "gå til post"
-#: cui/uiconfig/ui/rotationtabpage.ui:52
+#: cui/uiconfig/ui/rotationtabpage.ui:56
msgctxt "rotationtabpage|FT_POS_X"
msgid "Position _X:"
msgstr "X position:"
-#: cui/uiconfig/ui/rotationtabpage.ui:66
+#: cui/uiconfig/ui/rotationtabpage.ui:70
msgctxt "rotationtabpage|FT_POS_Y"
msgid "Position _Y:"
msgstr "Y position:"
-#: cui/uiconfig/ui/rotationtabpage.ui:116
+#: cui/uiconfig/ui/rotationtabpage.ui:123
msgctxt "rotationtabpage|FT_POSPRESETS"
msgid "_Default settings:"
msgstr "Standardindstillinger:"
-#: cui/uiconfig/ui/rotationtabpage.ui:130
+#: cui/uiconfig/ui/rotationtabpage.ui:151
msgctxt "rotationtabpage|CTL_RECT|tooltip_text"
msgid "Rotation point"
msgstr "Omdrejningspunkt"
-#: cui/uiconfig/ui/rotationtabpage.ui:155
+#: cui/uiconfig/ui/rotationtabpage.ui:178
msgctxt "rotationtabpage|label1"
msgid "Pivot Point"
msgstr "Pivotpunkt"
-#: cui/uiconfig/ui/rotationtabpage.ui:197
+#: cui/uiconfig/ui/rotationtabpage.ui:220
msgctxt "rotationtabpage|FT_ANGLE"
msgid "_Angle:"
msgstr "_Vinkel:"
-#: cui/uiconfig/ui/rotationtabpage.ui:238
+#: cui/uiconfig/ui/rotationtabpage.ui:263
msgctxt "rotationtabpage|FT_ANGLEPRESETS"
msgid "Default _settings:"
msgstr "_Standardindstillinger:"
-#: cui/uiconfig/ui/rotationtabpage.ui:252
+#: cui/uiconfig/ui/rotationtabpage.ui:287
msgctxt "rotationtabpage|CTL_ANGLE|tooltip_text"
msgid "Rotation Angle"
msgstr "Rotationsvinkel"
-#: cui/uiconfig/ui/rotationtabpage.ui:277
+#: cui/uiconfig/ui/rotationtabpage.ui:314
msgctxt "rotationtabpage|label2"
msgid "Rotation Angle"
msgstr "Rotationsvinkel"
@@ -10582,52 +10582,52 @@ msgctxt "similaritysearchdialog|relaxbox"
msgid "_Combine"
msgstr "Kombiner"
-#: cui/uiconfig/ui/slantcornertabpage.ui:50
+#: cui/uiconfig/ui/slantcornertabpage.ui:70
msgctxt "slantcornertabpage|label5"
msgid "_X:"
msgstr "_X:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:88
+#: cui/uiconfig/ui/slantcornertabpage.ui:110
msgctxt "slantcornertabpage|label6"
msgid "_Y:"
msgstr "_Y:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:125
+#: cui/uiconfig/ui/slantcornertabpage.ui:149
msgctxt "slantcornertabpage|label3"
msgid "Control Point 1"
msgstr "Kontrolpunkt 1"
-#: cui/uiconfig/ui/slantcornertabpage.ui:159
+#: cui/uiconfig/ui/slantcornertabpage.ui:183
msgctxt "slantcornertabpage|FT_RADIUS"
msgid "_Radius:"
msgstr "_Radius:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:189
+#: cui/uiconfig/ui/slantcornertabpage.ui:214
msgctxt "slantcornertabpage|label1"
msgid "Corner Radius"
msgstr "Hjørneradius"
-#: cui/uiconfig/ui/slantcornertabpage.ui:223
+#: cui/uiconfig/ui/slantcornertabpage.ui:248
msgctxt "slantcornertabpage|FT_ANGLE"
msgid "_Angle:"
msgstr "_Vinkel:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:253
+#: cui/uiconfig/ui/slantcornertabpage.ui:279
msgctxt "slantcornertabpage|label2"
msgid "Slant"
msgstr "Hældning"
-#: cui/uiconfig/ui/slantcornertabpage.ui:294
+#: cui/uiconfig/ui/slantcornertabpage.ui:320
msgctxt "slantcornertabpage|label4"
msgid "_X:"
msgstr "_X:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:332
+#: cui/uiconfig/ui/slantcornertabpage.ui:360
msgctxt "slantcornertabpage|label7"
msgid "_Y:"
msgstr "_Y:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:369
+#: cui/uiconfig/ui/slantcornertabpage.ui:399
msgctxt "slantcornertabpage|label8"
msgid "Control Point 2"
msgstr "Kontrolpunkt 2"
@@ -10907,112 +10907,112 @@ msgctxt "storedwebconnectiondialog|change"
msgid "_Change Password..."
msgstr "Ændr adgangskode..."
-#: cui/uiconfig/ui/swpossizepage.ui:74
+#: cui/uiconfig/ui/swpossizepage.ui:85
msgctxt "swpossizepage|widthft"
msgid "_Width:"
msgstr "_Bredde:"
-#: cui/uiconfig/ui/swpossizepage.ui:111
+#: cui/uiconfig/ui/swpossizepage.ui:123
msgctxt "swpossizepage|heightft"
msgid "H_eight:"
msgstr "Højde:"
-#: cui/uiconfig/ui/swpossizepage.ui:128
+#: cui/uiconfig/ui/swpossizepage.ui:141
msgctxt "swpossizepage|ratio"
msgid "_Keep ratio"
msgstr "Bevar størrelsesforhold"
-#: cui/uiconfig/ui/swpossizepage.ui:149
+#: cui/uiconfig/ui/swpossizepage.ui:162
msgctxt "swpossizepage|label2"
msgid "Size"
msgstr "Størrelse"
-#: cui/uiconfig/ui/swpossizepage.ui:205
+#: cui/uiconfig/ui/swpossizepage.ui:218
msgctxt "swpossizepage|topage"
msgid "To _page"
msgstr "Til side"
-#: cui/uiconfig/ui/swpossizepage.ui:222
+#: cui/uiconfig/ui/swpossizepage.ui:234
msgctxt "swpossizepage|topara"
msgid "To paragrap_h"
msgstr "Til afsnit"
-#: cui/uiconfig/ui/swpossizepage.ui:238
+#: cui/uiconfig/ui/swpossizepage.ui:250
msgctxt "swpossizepage|tochar"
msgid "To cha_racter"
msgstr "Til tegn"
-#: cui/uiconfig/ui/swpossizepage.ui:254
+#: cui/uiconfig/ui/swpossizepage.ui:266
msgctxt "swpossizepage|aschar"
msgid "_As character"
msgstr "Som tegn"
-#: cui/uiconfig/ui/swpossizepage.ui:270
+#: cui/uiconfig/ui/swpossizepage.ui:282
msgctxt "swpossizepage|toframe"
msgid "To _frame"
msgstr "Til ramme"
-#: cui/uiconfig/ui/swpossizepage.ui:292
+#: cui/uiconfig/ui/swpossizepage.ui:304
msgctxt "swpossizepage|label1"
msgid "Anchor"
msgstr "Anker"
-#: cui/uiconfig/ui/swpossizepage.ui:333
+#: cui/uiconfig/ui/swpossizepage.ui:344
msgctxt "swpossizepage|horiposft"
msgid "Hori_zontal:"
msgstr "_Vandret:"
-#: cui/uiconfig/ui/swpossizepage.ui:347
+#: cui/uiconfig/ui/swpossizepage.ui:358
msgctxt "swpossizepage|horibyft"
msgid "b_y:"
msgstr "ved:"
-#: cui/uiconfig/ui/swpossizepage.ui:361
+#: cui/uiconfig/ui/swpossizepage.ui:372
msgctxt "swpossizepage|vertbyft"
msgid "_by:"
msgstr "_med:"
-#: cui/uiconfig/ui/swpossizepage.ui:375
+#: cui/uiconfig/ui/swpossizepage.ui:386
msgctxt "swpossizepage|horitoft"
msgid "_to:"
msgstr "til:"
-#: cui/uiconfig/ui/swpossizepage.ui:421
+#: cui/uiconfig/ui/swpossizepage.ui:433
msgctxt "swpossizepage|vertposft"
msgid "_Vertical:"
msgstr "_Lodret:"
-#: cui/uiconfig/ui/swpossizepage.ui:457
+#: cui/uiconfig/ui/swpossizepage.ui:470
msgctxt "swpossizepage|verttoft"
msgid "t_o:"
msgstr "til:"
-#: cui/uiconfig/ui/swpossizepage.ui:478
+#: cui/uiconfig/ui/swpossizepage.ui:492
msgctxt "swpossizepage|mirror"
msgid "_Mirror on even pages"
msgstr "Spejlvend på lige sider"
-#: cui/uiconfig/ui/swpossizepage.ui:495
+#: cui/uiconfig/ui/swpossizepage.ui:509
msgctxt "swpossizepage|followtextflow"
msgid "Follow te_xt flow"
msgstr "Følg tekstforløbet"
-#: cui/uiconfig/ui/swpossizepage.ui:518
+#: cui/uiconfig/ui/swpossizepage.ui:532
msgctxt "swpossizepage|label11"
msgid "Position"
msgstr "Placering"
-#: cui/uiconfig/ui/swpossizepage.ui:549
+#: cui/uiconfig/ui/swpossizepage.ui:563
msgctxt "swpossizepage|pos"
msgid "Positio_n"
msgstr "Placering"
-#: cui/uiconfig/ui/swpossizepage.ui:565
+#: cui/uiconfig/ui/swpossizepage.ui:579
msgctxt "swpossizepage|size"
msgid "_Size"
msgstr "_Størrelse"
-#: cui/uiconfig/ui/swpossizepage.ui:587
+#: cui/uiconfig/ui/swpossizepage.ui:601
msgctxt "swpossizepage|label3"
msgid "Protect"
msgstr "Beskyt"
@@ -11202,12 +11202,12 @@ msgctxt "textattrtabpage|label2"
msgid "Spacing to Borders"
msgstr "Afstand til kanter"
-#: cui/uiconfig/ui/textattrtabpage.ui:425
+#: cui/uiconfig/ui/textattrtabpage.ui:423
msgctxt "textattrtabpage|TSB_FULL_WIDTH"
msgid "Full _width"
msgstr "Fuld bredde"
-#: cui/uiconfig/ui/textattrtabpage.ui:448
+#: cui/uiconfig/ui/textattrtabpage.ui:446
msgctxt "textattrtabpage|label3"
msgid "Text Anchor"
msgstr "Tekstforankring"
diff --git a/source/da/filter/source/config/fragments/filters.po b/source/da/filter/source/config/fragments/filters.po
index f1eb8d71186..bbf671994bc 100644
--- a/source/da/filter/source/config/fragments/filters.po
+++ b/source/da/filter/source/config/fragments/filters.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: 2018-05-16 16:54+0200\n"
-"PO-Revision-Date: 2018-05-16 18:09+0000\n"
-"Last-Translator: SteenRønnow <steen.roennow@mail.dk>\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
+"PO-Revision-Date: 2018-06-08 22:38+0000\n"
+"Last-Translator: Leif Lodahl <leiflodahl@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: da\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1526494182.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1528497537.000000\n"
#: ADO_rowset_XML.xcu
msgctxt ""
@@ -463,8 +463,8 @@ msgctxt ""
"MS Word 2003 XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Word 2003 XML"
-msgstr "Microsoft Word 2003 XML"
+msgid "Word 2003 XML"
+msgstr "Word 2003 XML"
#: MS_Word_2007_XML.xcu
msgctxt ""
@@ -1282,8 +1282,8 @@ msgctxt ""
"Calc MS Excel 2007 VBA XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Excel 2007-2016 XML (macro enabled)"
-msgstr "Microsoft Excel 2007-2016 XML (makro aktiveret)"
+msgid "Excel 2007–2019 (macro-enabled)"
+msgstr "Excel 2007–2019 (makro aktiveret)"
#: calc_MS_Excel_2007_XML.xcu
msgctxt ""
diff --git a/source/da/filter/source/config/fragments/types.po b/source/da/filter/source/config/fragments/types.po
index 6e657f7660b..0d850b62aa9 100644
--- a/source/da/filter/source/config/fragments/types.po
+++ b/source/da/filter/source/config/fragments/types.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: 2018-05-08 15:11+0200\n"
-"PO-Revision-Date: 2018-05-08 20:10+0000\n"
-"Last-Translator: SteenRønnow <steen.roennow@mail.dk>\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
+"PO-Revision-Date: 2018-06-05 17:14+0000\n"
+"Last-Translator: Leif Lodahl <leiflodahl@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: da\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1525810246.000000\n"
+"X-POOTLE-MTIME: 1528218856.000000\n"
#: MS_Excel_2007_Binary.xcu
msgctxt ""
@@ -292,8 +292,8 @@ msgctxt ""
"writer_MS_Word_2003_XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Word 2003 XML"
-msgstr "Microsoft Word 2003 XML"
+msgid "Word 2003 XML"
+msgstr "Word 2003 XML"
#: writer_MS_Word_2007_XML.xcu
msgctxt ""
diff --git a/source/da/fpicker/messages.po b/source/da/fpicker/messages.po
index e8af8c9ed5c..e0b8a81420e 100644
--- a/source/da/fpicker/messages.po
+++ b/source/da/fpicker/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: 2018-05-22 13:16+0200\n"
-"PO-Revision-Date: 2018-04-15 14:42+0000\n"
-"Last-Translator: David Lamhauge <davidlamhauge@gmail.com>\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
+"PO-Revision-Date: 2018-06-05 17:14+0000\n"
+"Last-Translator: Leif Lodahl <leiflodahl@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: da\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1523803379.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1528218875.000000\n"
#: include/fpicker/strings.hrc:14
msgctxt "STR_SVT_FILEPICKER_AUTO_EXTENSION"
@@ -272,13 +272,13 @@ msgstr "Krypter med GPG-nøgle"
#: fpicker/uiconfig/ui/foldernamedialog.ui:8
msgctxt "foldernamedialog|FolderNameDialog"
-msgid "Folder Name ?"
-msgstr "Mappenavn ?"
+msgid "Folder Name"
+msgstr "Mappenavn"
#: fpicker/uiconfig/ui/foldernamedialog.ui:91
msgctxt "foldernamedialog|label2"
-msgid "Na_me"
-msgstr "Navn"
+msgid "Na_me:"
+msgstr "Na_vn:"
#: fpicker/uiconfig/ui/foldernamedialog.ui:122
msgctxt "foldernamedialog|label1"
diff --git a/source/da/helpcontent2/source/text/sbasic/shared.po b/source/da/helpcontent2/source/text/sbasic/shared.po
index 75a541b260c..d7835b84ab4 100644
--- a/source/da/helpcontent2/source/text/sbasic/shared.po
+++ b/source/da/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: 2018-05-16 16:54+0200\n"
-"PO-Revision-Date: 2018-05-24 06:04+0000\n"
+"PO-Revision-Date: 2018-05-26 17:39+0000\n"
"Last-Translator: SteenRønnow <steen.roennow@mail.dk>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: da\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1527141868.000000\n"
+"X-POOTLE-MTIME: 1527356374.000000\n"
#: 00000002.xhp
msgctxt ""
@@ -5670,7 +5670,7 @@ msgctxt ""
"par_id3155930\n"
"help.text"
msgid "<ahelp hid=\".\">Select \"Yes\" to prevent the user from editing the value of the current control. The control is enabled and can be focused but not modified.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Vælg \"Ja\" for at forhindre brugeren i at redigere værdien af det aktuelle kontrolelement. Kontrolelementet er aktiveret og kan have fokus men kan ikke ændres.</ahelp>"
#: 01170101.xhp
msgctxt ""
@@ -33846,7 +33846,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "PPmt Function [VBA]"
-msgstr ""
+msgstr "PPmt-fuktion [VBA]"
#: 03140008.xhp
msgctxt ""
@@ -33862,7 +33862,7 @@ msgctxt ""
"hd_id3150499\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03140008.xhp\" name=\"PPmt Function [VBA]\">PPmt Function [VBA]</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03140008.xhp\" name=\"PPmt Function [VBA]\">PPmt-funktion [VBA]</link>"
#: 03140008.xhp
msgctxt ""
@@ -33966,7 +33966,7 @@ msgctxt ""
"par_id230720172348086687\n"
"help.text"
msgid "print ppMth4 ' ppMth4 is calculated to be -1044,94463903636."
-msgstr ""
+msgstr "print ppMth4 ' ppMth4 beregnes til -1044,94463903636"
#: 03140008.xhp
msgctxt ""
@@ -33982,7 +33982,7 @@ msgctxt ""
"par_id230720172348086456\n"
"help.text"
msgid "print ppMth5' ppMth5 is calculated to be -1053,65251102833."
-msgstr ""
+msgstr "print ppMth5' ppMth5 beregnes til -1053,65251102833"
#: 03140008.xhp
msgctxt ""
@@ -33998,7 +33998,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "PV Function [VBA]"
-msgstr ""
+msgstr "PV-funktion [VBA]"
#: 03140009.xhp
msgctxt ""
@@ -34014,7 +34014,7 @@ msgctxt ""
"hd_id3150499\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03140009.xhp\" name=\"PV Function [VBA]\">PV Function [VBA]</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03140009.xhp\" name=\"PV Function [VBA]\">PV-funktion [VBA]</link>"
#: 03140009.xhp
msgctxt ""
@@ -34118,7 +34118,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Rate Function [VBA]"
-msgstr ""
+msgstr "Rate-funktion [VBA]"
#: 03140010.xhp
msgctxt ""
@@ -34134,7 +34134,7 @@ msgctxt ""
"hd_id3150499\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03140010.xhp\" name=\"Rate Function [VBA]\">Rate Function [VBA]</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03140010.xhp\" name=\"Rate Function [VBA]\">Rate-funktion [VBA]</link>"
#: 03140010.xhp
msgctxt ""
@@ -34246,7 +34246,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "SLN Function [VBA]"
-msgstr ""
+msgstr "SLN-funktion [VBA]"
#: 03140011.xhp
msgctxt ""
@@ -34262,7 +34262,7 @@ msgctxt ""
"hd_id3150499\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03140011.xhp\" name=\"SLN Function [VBA]\">SLN Function [VBA]</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03140011.xhp\" name=\"SLN Function [VBA]\">SLN-funktion [VBA]</link>"
#: 03140011.xhp
msgctxt ""
@@ -34334,7 +34334,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "SYD Function [VBA]"
-msgstr ""
+msgstr "SYD-funktion [VBA]"
#: 03140012.xhp
msgctxt ""
@@ -34350,7 +34350,7 @@ msgctxt ""
"hd_id3150499\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03140012.xhp\" name=\"SYD Function [VBA]\">SYD Function [VBA]</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03140012.xhp\" name=\"SYD Function [VBA]\">SYD-funktion [VBA]</link>"
#: 03140012.xhp
msgctxt ""
@@ -34414,7 +34414,7 @@ msgctxt ""
"par_id240720170144223139\n"
"help.text"
msgid "REM Calculate the depreciation during year 1."
-msgstr ""
+msgstr "REM Beregn afskrivningen i år 1"
#: 03140012.xhp
msgctxt ""
@@ -34438,7 +34438,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "FormatDateTime Function [VBA]"
-msgstr ""
+msgstr "FormatDateTime-funktion [VBA]"
#: 03150000.xhp
msgctxt ""
@@ -34454,7 +34454,7 @@ msgctxt ""
"hd_id3150499\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03150000.xhp\" name=\"FormatDateTime Function [VBA]\">FormatDateTime Function [VBA]</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03150000.xhp\" name=\"FormatDateTime Function [VBA]\">FormatDateTime-funktion [VBA]</link>"
#: 03150000.xhp
msgctxt ""
@@ -34478,7 +34478,7 @@ msgctxt ""
"par_id24072017011739895\n"
"help.text"
msgid "<emph>NamedFormat</emph>: An optional <emph>vbDateTimeFormat</emph> enumeration specifying the format that is to be applied to the date and time expression. If omitted, the value <emph>vbGeneralDate</emph> is used."
-msgstr ""
+msgstr "<emph>NamedFormat</emph>: en valgfri <emph>vbDateTimeFormat</emph> opregning, der specificerer det format, der skal bruges på dato- og tidsudtryk. Hvis det udelades, bruges værdien <emph>vbGeneralDate</emph>."
#: 03150000.xhp
msgctxt ""
@@ -34598,7 +34598,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "WeekdayName Function [VBA]"
-msgstr ""
+msgstr "WeekdayName-funktion [VBA]"
#: 03150001.xhp
msgctxt ""
@@ -34614,7 +34614,7 @@ msgctxt ""
"hd_id3150499\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03150001.xhp\" name=\"WeekdayName Function [VBA]\">WeekdayName Function [VBA]</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03150001.xhp\" name=\"WeekdayName Function [VBA]\">WeekdayName-funktion [VBA]</link>"
#: 03150001.xhp
msgctxt ""
@@ -34630,7 +34630,7 @@ msgctxt ""
"par_id240720170117391741\n"
"help.text"
msgid "<emph>Weekday</emph>: Value from 1 to 7, Mon­day to Sun­day, whose Week Day Name need to be calculated."
-msgstr ""
+msgstr "<emph>Weekday</emph>: Værdi fra 1 til 7, Man­dag til Søn­dag, hvis navn på ugedagen skal beregnes."
#: 03150001.xhp
msgctxt ""
@@ -34758,7 +34758,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "MonthName Function [VBA]"
-msgstr ""
+msgstr "MonthName-funktion [VBA]"
#: 03150002.xhp
msgctxt ""
@@ -34774,7 +34774,7 @@ msgctxt ""
"hd_id3150499\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03150002.xhp\" name=\"MonthName Function [VBA]\">MonthName Function [VBA]</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03150002.xhp\" name=\"MonthName Function [VBA]\">MonthName-funktion [VBA]</link>"
#: 03150002.xhp
msgctxt ""
@@ -34806,7 +34806,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Input Function [VBA]"
-msgstr ""
+msgstr "Input-funktion [VBA]"
#: 03160000.xhp
msgctxt ""
@@ -34822,7 +34822,7 @@ msgctxt ""
"hd_id3150499\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03160000.xhp\" name=\"Input Function [VBA]\">Input Function [VBA]</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03160000.xhp\" name=\"Input Function [VBA]\">Input-funktion [VBA]</link>"
#: 03160000.xhp
msgctxt ""
@@ -34870,7 +34870,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Round Function [VBA]"
-msgstr ""
+msgstr "Round-funktion [VBA]"
#: 03170000.xhp
msgctxt ""
@@ -34886,7 +34886,7 @@ msgctxt ""
"hd_id3150499\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03170000.xhp\" name=\"Round Function [VBA]\">Round Function [VBA]</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03170000.xhp\" name=\"Round Function [VBA]\">Round-funktion [VBA]</link>"
#: 03170000.xhp
msgctxt ""
@@ -35414,7 +35414,7 @@ msgctxt ""
"par_id3159254\n"
"help.text"
msgid "Run code starting from the first line, or from the current breakpoint, if the program stopped there before."
-msgstr ""
+msgstr "Kør kode startende fra den første linje, eller fra det aktuelle pausepunkt, hvis programmet stoppede der før"
#: keys.xhp
msgctxt ""
@@ -35446,7 +35446,7 @@ msgctxt ""
"par_id3151073\n"
"help.text"
msgid "Add <link href=\"text/sbasic/shared/01050100.xhp\" name=\"watch\">watch</link> for the variable at the cursor."
-msgstr ""
+msgstr "Tilføj <link href=\"text/sbasic/shared/01050100.xhp\" name=\"watch\">Observatør</link> for variablen ved markøren"
#: keys.xhp
msgctxt ""
@@ -35478,7 +35478,7 @@ msgctxt ""
"par_id3156275\n"
"help.text"
msgid "Single step as with F8, but a function call is considered to be only <emph>one</emph> statement."
-msgstr ""
+msgstr "Kør trinvis som med F8, men et funktionskald bliver anset for at være kun <emph>én</emph> sætning."
#: keys.xhp
msgctxt ""
@@ -35494,7 +35494,7 @@ msgctxt ""
"par_id3150323\n"
"help.text"
msgid "Set or remove a <link href=\"text/sbasic/shared/01030300.xhp\" name=\"breakpoint\">breakpoint</link> at the current line or all breakpoints in the current selection."
-msgstr ""
+msgstr "Definer eller slet et <link href=\"text/sbasic/shared/01030300.xhp\" name=\"breakpoint\">pausepunkt</link> ved den aktuelle linje eller alle pausepunkter i den aktuelle markering"
#: keys.xhp
msgctxt ""
@@ -35510,7 +35510,7 @@ msgctxt ""
"par_id3153963\n"
"help.text"
msgid "Enable/disable the breakpoint at the current line or all breakpoints in the current selection."
-msgstr ""
+msgstr "Aktiver/deaktiver pausepunktet ved den aktuelle linje eller alle pausepunkter i den aktuelle markering"
#: keys.xhp
msgctxt ""
@@ -35582,7 +35582,7 @@ msgctxt ""
"par_id3153894\n"
"help.text"
msgid "%PRODUCTNAME provides an Application Programming Interface (API) that allows controlling the $[officename] components with different programming languages by using the $[officename] Software Development Kit (SDK). For more information about the $[officename] API and the Software Development Kit, visit <link href=\"https://api.libreoffice.org/\" name=\"api.libreoffice.org\">https://api.libreoffice.org</link>"
-msgstr ""
+msgstr "%PRODUCTNAME omfatter et Application Programming Interface (API), som tillader styring af $[officename] komponenter via forskellige programmeringssprog og ved at bruge $[officename] Software Development Kit (SDK). Mere information om $[officename] API og SDK kan findes på <link href=\"https://api.libreoffice.org/\" name=\"api.libreoffice.org\">https://api.libreoffice.org</link>"
#: main0601.xhp
msgctxt ""
@@ -35590,7 +35590,7 @@ msgctxt ""
"par_id3147226\n"
"help.text"
msgid "This help section explains the most common functions of %PRODUCTNAME Basic. For more in-depth information please refer to the <link href=\"https://wiki.documentfoundation.org/Documentation/BASIC_Guide\" name=\"wiki.documentfoundation.org BASIC Guide\">OpenOffice.org BASIC Programming Guide</link> on the Wiki."
-msgstr ""
+msgstr "Dette afsnit af Hjælp forklarer de mest almindelige funktioner i %PRODUCTNAME Basic. Find venligst mere dybtgående information i<link href=\"https://wiki.documentfoundation.org/Documentation/BASIC_Guide\" name=\"wiki.documentfoundation.org BASIC Guide\">OpenOffice.org BASIC Programming Guide</link> på wiki-en."
#: main0601.xhp
msgctxt ""
diff --git a/source/da/helpcontent2/source/text/sbasic/shared/01.po b/source/da/helpcontent2/source/text/sbasic/shared/01.po
index 0fb08e9cc29..e9944ec0531 100644
--- a/source/da/helpcontent2/source/text/sbasic/shared/01.po
+++ b/source/da/helpcontent2/source/text/sbasic/shared/01.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2018-05-16 16:54+0200\n"
-"PO-Revision-Date: 2015-06-24 12:30+0000\n"
+"PO-Revision-Date: 2018-05-26 17:40+0000\n"
"Last-Translator: Leif Lodahl <leiflodahl@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: da\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1435149019.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1527356444.000000\n"
#: 06130000.xhp
msgctxt ""
@@ -46,7 +46,7 @@ msgctxt ""
"par_id3152886\n"
"help.text"
msgid "<variable id=\"makro\"><ahelp hid=\".uno:ChooseMacro\">Opens the <emph>Macro</emph> dialog, where you can create, edit, organize, and run $[officename] Basic macros.</ahelp></variable>"
-msgstr ""
+msgstr "<variable id=\"makro\"><ahelp hid=\".uno:ChooseMacro\">Åbner dialogen <emph>Makro</emph>, hvor du kan oprette, redigere, administrere og udføre $[officename] Basic-makroer.</ahelp></variable>"
#: 06130000.xhp
msgctxt ""
@@ -374,7 +374,7 @@ msgctxt ""
"par_id3155126\n"
"help.text"
msgid "<ahelp hid=\"modules/BasicIDE/ui/libpage/import\">Locate that $[officename] Basic library that you want to add to the current list, and then click <emph>Open</emph>.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/BasicIDE/ui/libpage/import\">Find det $[officename] Basic bibliotek, som du vil føje til den aktuelle liste, og klik så på <emph>Åbn</emph>.</ahelp>"
#: 06130100.xhp
msgctxt ""
@@ -494,7 +494,7 @@ msgctxt ""
"par_id3154840\n"
"help.text"
msgid "Locate that <item type=\"productname\">%PRODUCTNAME</item> Basic library that you want to add to the current list, and then click <emph>Open</emph>."
-msgstr ""
+msgstr "Find det <item type=\"productname\">%PRODUCTNAME</item> Basic-bibliotek, som du vil føje til den aktuelle liste, og klik <emph>Åbn</emph>."
#: 06130500.xhp
msgctxt ""
diff --git a/source/da/helpcontent2/source/text/scalc/01.po b/source/da/helpcontent2/source/text/scalc/01.po
index 119b63e2797..35ad1ab3c67 100644
--- a/source/da/helpcontent2/source/text/scalc/01.po
+++ b/source/da/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: 2018-05-08 15:11+0200\n"
-"PO-Revision-Date: 2018-05-17 17:29+0000\n"
-"Last-Translator: SteenRønnow <steen.roennow@mail.dk>\n"
+"PO-Revision-Date: 2018-05-27 19:35+0000\n"
+"Last-Translator: Leif Lodahl <leiflodahl@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: da\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1526578196.000000\n"
+"X-POOTLE-MTIME: 1527449739.000000\n"
#: 01120000.xhp
msgctxt ""
@@ -1190,7 +1190,7 @@ msgctxt ""
"par_id3148797\n"
"help.text"
msgid "<variable id=\"reihenfuellentext\"><ahelp hid=\".uno:FillSeries\">Automatically generate series with the options in this dialog. Determine direction, increment, time unit and series type.</ahelp> </variable>"
-msgstr ""
+msgstr "<variable id=\"reihenfuellentext\"><ahelp hid=\".uno:FillSeries\">Genererer automatisk serier med valgmulighederne i denne dialog. Angiv retning, tilvækst, en tidsenhed og en serietype. </ahelp></variable>"
#: 02140600.xhp
msgctxt ""
@@ -1406,7 +1406,7 @@ msgctxt ""
"par_id3148605\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/filldlg/day\">Use the <emph>Date</emph> series type and this option to create a series using all seven days of the week. Unit of <emph>Increment</emph> is day.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/scalc/ui/filldlg/day\">Brug <emph>Date</emph>-serietypen og denne valgmulighed til oprette en serie med alle ugens syv dage. Enheden for <emph>tilvækst</emph>er dag.</ahelp>"
#: 02140600.xhp
msgctxt ""
@@ -1422,7 +1422,7 @@ msgctxt ""
"par_id3150108\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/filldlg/week\">Use the <emph>Date</emph> series type and this option to create a series only using the five weekdays. Unit of <emph>Increment</emph> is day.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/scalc/ui/filldlg/week\"> Brug <emph>Date</emph>-serietypen og denne valgmulighed til at oprette en serie med kun de fem hverdage. <emph>tilvækst</emph>-enheden er dag.</ahelp>"
#: 02140600.xhp
msgctxt ""
@@ -1438,7 +1438,7 @@ msgctxt ""
"par_id3149126\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/filldlg/month\">Use the <emph>Date</emph> series type and this option to form a series which unit of <emph>Increment</emph> is month.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/scalc/ui/filldlg/month\">Brug serietypen <emph>Date</emph> og denne valgmulighed til at oprette en serie, hvor <emph>tilvæksten</emph> er måned.</ahelp>"
#: 02140600.xhp
msgctxt ""
@@ -1454,7 +1454,7 @@ msgctxt ""
"par_id3151300\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/filldlg/year\">Use the <emph>Date</emph> series type and this option to create a series which unit of <emph>Increment</emph> is year.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/scalc/ui/filldlg/year\">Brug serietypen <emph>Date</emph> og denne valgmulighed for at oprette en serie, hvor <emph>tilvækst</emph>-enheden er år.</ahelp>"
#: 02140600.xhp
msgctxt ""
@@ -2550,7 +2550,7 @@ msgctxt ""
"par_id3153969\n"
"help.text"
msgid "<ahelp hid=\"SC_HID_SELECTTABLES\">Lists the sheets in the current document. To select a sheet, press the up or down arrow keys to move to a sheet in the list. To add a sheet to the selection, hold down <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> while pressing the arrow keys and then press Spacebar. To select a range of sheets, hold down Shift and press the arrow keys. </ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"SC_HID_SELECTTABLES\">Lister arkene i det aktuelle dokument. For at vælge et ark skal du trykke på Pil op eller Pil ned for at flytte til et ark på listen. For at føje et ark til markeringen skal du holde <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>, mens du trykker på piletasterne, og så trykke på mellemrumstasten. For at vælge en række ark skal du holde Skift nede og trykke piletasterne. </ahelp>"
#: 03070000.xhp
msgctxt ""
@@ -2646,7 +2646,7 @@ msgctxt ""
"par_id3145784\n"
"help.text"
msgid "By default:"
-msgstr ""
+msgstr "Som standard:"
#: 03080000.xhp
msgctxt ""
@@ -2662,7 +2662,7 @@ msgctxt ""
"par_id3145786\n"
"help.text"
msgid "These colors can be customized 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 - Application Colors</item>."
-msgstr ""
+msgstr "Disse farver kan tilpasses under <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 - Programfarver</item>."
#: 03080000.xhp
msgctxt ""
@@ -4230,7 +4230,7 @@ msgctxt ""
"par_id3882869\n"
"help.text"
msgid "See also the Wiki page about <link href=\"https://wiki.documentfoundation.org/Documentation/How_Tos/Conditional_Counting_and_Summation\" name=\"wiki.documentfoundation.org Documentation/HowTo/Calc/Conditional Counting and Summation\">Conditional Counting and Summation</link>."
-msgstr ""
+msgstr "Se også wiki-siden om <link href=\"https://wiki.documentfoundation.org/Documentation/How_Tos/Conditional_Counting_and_Summation\" name=\"wiki.documentfoundation.org Documentation/HowTo/Calc/Conditional Counting and Summation\">Betinget Tælling og Opregning</link>."
#: 04060101.xhp
msgctxt ""
@@ -9950,7 +9950,7 @@ msgctxt ""
"par_id3149312\n"
"help.text"
msgid "<variable id=\"logischtext\">This category contains the <emph>Logical</emph> functions.</variable>"
-msgstr ""
+msgstr "<variable id=\"logischtext\">Denne kategori indeholder de <emph>logiske</emph> funktioner.</variable>"
#: 04060105.xhp
msgctxt ""
@@ -9958,7 +9958,7 @@ msgctxt ""
"hd_id631520887352751\n"
"help.text"
msgid "Handling non-logical arguments in logical functions"
-msgstr ""
+msgstr "Håndtering af ikke-logiske argumenter i logiske funktioner"
#: 04060105.xhp
msgctxt ""
@@ -9966,7 +9966,7 @@ msgctxt ""
"par_id431520887384579\n"
"help.text"
msgid "Zero (0) is equivalent to FALSE and all other numbers are equivalent to TRUE."
-msgstr ""
+msgstr "Nul (0) svarer til FALSK og alle andre tal svarer til SAND."
#: 04060105.xhp
msgctxt ""
@@ -9974,7 +9974,7 @@ msgctxt ""
"par_id881520887475288\n"
"help.text"
msgid "Empty cells and text in cells are ignored."
-msgstr ""
+msgstr "Tomme celler og tekst i celler ignoreres."
#: 04060105.xhp
msgctxt ""
@@ -9982,7 +9982,7 @@ msgctxt ""
"par_id461520887504085\n"
"help.text"
msgid "A #VALUE error is raised if all arguments are ignored."
-msgstr ""
+msgstr "Hvis alle argumenter ignoreres, udløses en #VÆRDI-fejl."
#: 04060105.xhp
msgctxt ""
@@ -9990,7 +9990,7 @@ msgctxt ""
"par_id591520888006686\n"
"help.text"
msgid "A #VALUE error is raised if one argument is direct text (not text in a cell)."
-msgstr ""
+msgstr "Der udløses en #VÆRDI-fejl, hvis et argument er direkte (ikke tekst i en celle)."
#: 04060105.xhp
msgctxt ""
@@ -9998,7 +9998,7 @@ msgctxt ""
"par_id321520889630477\n"
"help.text"
msgid "Errors as argument lead to an error."
-msgstr ""
+msgstr "Fejl i argumenter fører til en fejl."
#: 04060105.xhp
msgctxt ""
@@ -10054,7 +10054,7 @@ msgctxt ""
"par_id3150038\n"
"help.text"
msgid "<emph>LogicalValue1; LogicalValue2 ...LogicalValue30</emph> are conditions to be checked. All conditions can be either TRUE or FALSE. If a range is entered as a parameter, the function uses all values of the range. The result is TRUE if the logical value in all cells within the cell range is TRUE."
-msgstr ""
+msgstr "<emph>LogiskVærdi1; LogiskVærdi2 ... LogiskVærdi30</emph> er betingelser, der skal checkes. Alle betingelser kan være enten SANDE eller FALSKE. Hvis et område indtastes som parameter, bruger funktionen alle værdier i området. Resultatet er SANDT, hvis den logiske værdi i alle celler inden for celleområdet er SANDE."
#: 04060105.xhp
msgctxt ""
@@ -10350,7 +10350,7 @@ msgctxt ""
"par_id3155819\n"
"help.text"
msgid "<emph>LogicalValue1; LogicalValue2 ...LogicalValue30</emph> are conditions to be checked. All conditions can be either TRUE or FALSE. If a range is entered as a parameter, the function uses all values of the range."
-msgstr ""
+msgstr "<emph>LogiskVærdi1; LogiskVærdi2 ... LogiskVærdi38</emph> er betingelser, der skal checkes. alle betingelser kan være enten SANDE eller FALSKE. Hvis et område indtastes som parameter, bruger funktionen alle værdier i området."
#: 04060105.xhp
msgctxt ""
@@ -13166,7 +13166,7 @@ msgctxt ""
"par_id841516997669932\n"
"help.text"
msgid "CEILING.MATH(Number; Significance; Mode)"
-msgstr ""
+msgstr "LOFT.MATEMATIK(Tal; Trin; Tilstand)"
#: 04060106.xhp
msgctxt ""
@@ -13182,7 +13182,7 @@ msgctxt ""
"par_id491516997725772\n"
"help.text"
msgid "<emph>Significance</emph> is the number to whose multiple the value is to be rounded up."
-msgstr ""
+msgstr "<emph>Trin</emph> er det tal, som resultatet skal rundes op til være et multiplum af."
#: 04060106.xhp
msgctxt ""
@@ -13198,7 +13198,7 @@ msgctxt ""
"par_id291516998575663\n"
"help.text"
msgid "This function exists for interoperability with Microsoft Excel 2013 or newer."
-msgstr ""
+msgstr "Denne funktion findes af hensyn til interoperabilitet med Microsoft Excel 2013 eller nyere."
#: 04060106.xhp
msgctxt ""
@@ -13214,7 +13214,7 @@ msgctxt ""
"par_id111516997803684\n"
"help.text"
msgid "<item type=\"input\">=CEILING.MATH(-10;-3)</item> returns -9"
-msgstr ""
+msgstr "<item type=\"input\">=LOFT.MATEMATIK(-10;-3)</item> returnerer -9"
#: 04060106.xhp
msgctxt ""
@@ -13222,7 +13222,7 @@ msgctxt ""
"par_id1001516997821483\n"
"help.text"
msgid "<item type=\"input\">=CEILING.MATH(-10;-3;0)</item> returns -9"
-msgstr ""
+msgstr "<item type=\"input\">=LOFT.MATEMATIK(-10;-3;0)</item> returnerer -9"
#: 04060106.xhp
msgctxt ""
@@ -13230,7 +13230,7 @@ msgctxt ""
"par_id641516997837754\n"
"help.text"
msgid "<item type=\"item_type\">=CEILING.MATH(-10;-3;1)</item> returns -12"
-msgstr ""
+msgstr "<item type=\"item_type\">=LOFT.MATEMATIK(-10;-3;1)</item> returnerer -12"
#: 04060106.xhp
msgctxt ""
@@ -13254,7 +13254,7 @@ msgctxt ""
"par_id811516998845826\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_CEIL_MS\">Rounds a number away from zero to the nearest multiple of Significance.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"HID_FUNC_CEIL_MS\">Afrunder et tal væk fra nul til det nærmeste multiplum af Trin.</ahelp>"
#: 04060106.xhp
msgctxt ""
@@ -13294,7 +13294,7 @@ msgctxt ""
"par_id341516998889754\n"
"help.text"
msgid "This function exists for interoperability with Microsoft Excel 2007 or older versions."
-msgstr ""
+msgstr "Denne funktion findes af hensyn til interoperabilitet med Microsoft Excel 2007 eller ældre versioner."
#: 04060106.xhp
msgctxt ""
@@ -13310,7 +13310,7 @@ msgctxt ""
"par_id91516998917254\n"
"help.text"
msgid "<item type=\"input\">=CEILING.XCL(1;3)</item> returns 3"
-msgstr ""
+msgstr "<item type=\"input\">=LOFT.XCL(1;3)</item> returnerer 3"
#: 04060106.xhp
msgctxt ""
@@ -13318,7 +13318,7 @@ msgctxt ""
"par_id761516998929693\n"
"help.text"
msgid "<item type=\"input\">=CEILING.XCL(7;4)</item> returns 8"
-msgstr ""
+msgstr "<item type=\"input\">=LOFT.XCL(7;4)</item> returnerer 8"
#: 04060106.xhp
msgctxt ""
@@ -13326,7 +13326,7 @@ msgctxt ""
"par_id671516998958873\n"
"help.text"
msgid "<item type=\"item_type\">=CEILING.XCL(-10;-3)</item> returns -12"
-msgstr ""
+msgstr "<item type=\"item_type\">=LOFT.XCL(-10;-3)</item> returnerer -12"
#: 04060106.xhp
msgctxt ""
@@ -13958,7 +13958,7 @@ msgctxt ""
"par_id7985168\n"
"help.text"
msgid "QUOTIENT is equivalent to <item type=\"literal\">INT(numerator/denominator)</item> for same-sign numerator and denominator, except that it may report errors with different error codes. More generally, it is equivalent to <item type=\"literal\">INT(numerator/denominator/SIGN(numerator/denominator))*SIGN(numerator/denominator)</item>."
-msgstr ""
+msgstr "KVOTIENT svarer til <item type=\"literal\">HELTAL(tæller/nævner)</item> for tæller og nævner med samme fortegn, bortset fra, at det kan returnere fejl med forskellige fejlkoder. Mere generelt svarer det til <item type=\"literal\">HELTAL(tæller/nævner/FORTEGN(tæller/nævner))*FORTEGN(tæller/nævner)</item>."
#: 04060106.xhp
msgctxt ""
@@ -16510,7 +16510,7 @@ msgctxt ""
"par_id936615\n"
"help.text"
msgid "You can view and change the row and column separator in <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - Calc - Formula - Separators</emph>."
-msgstr ""
+msgstr "Du kan se og ændre række- og kolonne-seperatorerne i <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Indstillinger</emph></caseinline><defaultinline><emph>Funkttioner - Indstillinger</emph></defaultinline></switchinline><emph> - Calc - Formler - Seperatorer</emph>."
#: 04060107.xhp
msgctxt ""
@@ -21070,7 +21070,7 @@ msgctxt ""
"par_id3150826\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_VORLAGE\">Applies a style to the cell containing the formula.</ahelp> After a set amount of time, another style can be applied. This function always returns the value 0, allowing you to add it to another function without changing the value. Together with the CURRENT function you can apply a color to a cell depending on the value. For example: =...+STYLE(IF(CURRENT()>3;\"red\";\"green\")) applies the style \"red\" to the cell if the value is greater than 3, otherwise the style \"green\" is applied. Both cell formats, \"red\" and \"green\" have to be defined beforehand."
-msgstr ""
+msgstr "<ahelp hid=\"HID_FUNC_VORLAGE\">Tildeler en typografi til cellen, som indeholder formlen.</ahelp> Efter et angivet tidsrum kan en anden typografi tildeles. Da denne funktion altid returnerer værdien 0, giver den dig mulighed for at føje den til en anden funktion uden at ændre værdien. Sammen med funktionen AKTUEL kan du tildele en farve til en celle uanset værdien. For eksempel: =...+TYPOGRAFI(\"grøn\"; HVIS(AKTUEL()>3; \"rød\")) tildeler typografien \"rød\" til cellen, hvis værdien er større end 3, ellers tildelses typografien \"grøn\". Begge celleformater skal være defineret på forhånd."
#: 04060109.xhp
msgctxt ""
@@ -21134,7 +21134,7 @@ msgctxt ""
"par_id8056886\n"
"help.text"
msgid "Since STYLE() has a numeric return value of zero, this return value gets appended to a string. This can be avoided using T() as in the following example:"
-msgstr ""
+msgstr "Da TYPOGRAFI() har en numerisk returværdi på nul, bliver denne returværdi føjet til en streng. Dette kan undgås ved at bruge T() som i det følgende eksempel"
#: 04060109.xhp
msgctxt ""
@@ -21206,7 +21206,7 @@ msgctxt ""
"par_id3149939\n"
"help.text"
msgid "<emph>Value1, Value2, ..., Value30</emph> is the list of values entered as a reference to a cell or as individual values."
-msgstr ""
+msgstr "<emph>Værdi_1...Værdi_30</emph> er listen af værdier indtastet som en reference til en celle eller som individuelle værdier."
#: 04060109.xhp
msgctxt ""
@@ -21598,7 +21598,7 @@ msgctxt ""
"par_id2958769\n"
"help.text"
msgid "<item type=\"input\">=HYPERLINK(\"file:///C:/writer.odt#Specification\";\"Go to Writer bookmark\")</item> displays the text \"Go to Writer bookmark\", loads the specified text document and jumps to bookmark \"Specification\"."
-msgstr ""
+msgstr "<item type=\"input\">=HYPERLINK(\"file:///C:/writer.odt#Specifikation\";\"Gå til Writer-bogmærke\")</item> viser teksten Gå til Writer-bogmærke, indlæser det angivne tekstdokument og hopper til bogmærket \"Specifikation\"."
#: 04060109.xhp
msgctxt ""
@@ -21910,7 +21910,7 @@ msgctxt ""
"par_id9912411\n"
"help.text"
msgid "See <link href=\"https://wiki.documentfoundation.org/Calc/Features/JIS_and_ASC_functions\" name=\"wiki.documentfoundation.org Calc/Features/JIS and ASC functions\">https://wiki.documentfoundation.org/Calc/Features/JIS_and_ASC_functions</link> for a conversion table."
-msgstr ""
+msgstr "Find en konverteringstabel på <link href=\"https://wiki.documentfoundation.org/Calc/Features/JIS_and_ASC_functions\" name=\"wiki.documentfoundation.org Calc/Features/JIS and ASC functions\">https://wiki.documentfoundation.org/Calc/Features/JIS_and_ASC_functions</link>."
#: 04060110.xhp
msgctxt ""
@@ -22838,7 +22838,7 @@ msgctxt ""
"par_id1551561\n"
"help.text"
msgid "See <link href=\"https://wiki.documentfoundation.org/Calc/Features/JIS_and_ASC_functions\" name=\"wiki.documentfoundation.org Calc/Features/JIS and ASC functions\">https://wiki.documentfoundation.org/Calc/Features/JIS_and_ASC_functions</link> for a conversion table."
-msgstr ""
+msgstr "Find en konverteringstabel på <link href=\"https://wiki.documentfoundation.org/Calc/Features/JIS_and_ASC_functions\" name=\"wiki.documentfoundation.org Calc/Features/JIS and ASC functions\">https://wiki.documentfoundation.org/Calc/Features/JIS_and_ASC_functions</link>."
#: 04060110.xhp
msgctxt ""
@@ -24726,7 +24726,7 @@ msgctxt ""
"par_id3147427\n"
"help.text"
msgid "<variable id=\"addintext\">The following describes and lists some of the available add-in functions.</variable>"
-msgstr ""
+msgstr "<variable id=\"addintext\">Det følgende beskriver og oplister nogle af de tilgængelige tilføjelsesfunktioner.</variable>"
#: 04060111.xhp
msgctxt ""
@@ -25302,7 +25302,7 @@ msgctxt ""
"par_id3149351\n"
"help.text"
msgid "Add-ins can also be implemented through the %PRODUCTNAME <link href=\"https://api.libreoffice.org/\" name=\"api.libreoffice.org\">API</link>."
-msgstr ""
+msgstr "Tilføjelsesfunktioner kan også implementeres via %PRODUCTNAME <link href=\"https://api.libreoffice.org/\" name=\"api.libreoffice.org\">API</link>."
#: 04060112.xhp
msgctxt ""
@@ -33926,7 +33926,7 @@ msgctxt ""
"par_id3153321\n"
"help.text"
msgid "NPV(Rate; Value1; Value2; ...; Value30)"
-msgstr ""
+msgstr "NUTIDSVÆRDI(Rente; Værdi1; Værdi2; ...)"
#: 04060119.xhp
msgctxt ""
@@ -33942,7 +33942,7 @@ msgctxt ""
"par_id3150427\n"
"help.text"
msgid "<emph>Value1, Value2, ..., Value30</emph> are up to 30 values, which represent deposits or withdrawals."
-msgstr ""
+msgstr "<emph>Værdi1;...</emph> er op til 30 værdier, som repræsenterer indskud eller hævninger."
#: 04060119.xhp
msgctxt ""
@@ -33958,7 +33958,7 @@ msgctxt ""
"par_id3154800\n"
"help.text"
msgid "What is the net present value of periodic payments of 10, 20 and 30 currency units with a discount rate of 8.75%. At time zero the costs were paid as -40 currency units."
-msgstr ""
+msgstr "Hvad er netto-nutidsværdien af periodiske betalinger på 10, 20 og 30 valutaenheder med et procentuelt kurstab på 8,75%. Ved nulpunktet i tid blev omkostningerne betalt som -40 valutaenheder."
#: 04060119.xhp
msgctxt ""
@@ -35574,7 +35574,7 @@ msgctxt ""
"par_id3148585\n"
"help.text"
msgid "COUNT(Value1; Value2; ...; Value30)"
-msgstr ""
+msgstr "TÆL(Værdi1; Værdi2; ...; Værdi30)"
#: 04060181.xhp
msgctxt ""
@@ -35582,7 +35582,7 @@ msgctxt ""
"par_id3155827\n"
"help.text"
msgid "<emph>Value1; Value2, ..., Value30</emph> are 1 to 30 values or ranges representing the values to be counted."
-msgstr ""
+msgstr "<emph>Værdi1; Værdi2, ...</emph> er 1 til 30 værdier eller områder som repræsenter værdierne som skal tælles."
#: 04060181.xhp
msgctxt ""
@@ -35646,7 +35646,7 @@ msgctxt ""
"par_id3153111\n"
"help.text"
msgid "COUNTA(Value1; Value2; ...; Value30)"
-msgstr ""
+msgstr "TÆLV(Værdi1; Værdi2; ...; Værdi30)"
#: 04060181.xhp
msgctxt ""
@@ -35654,7 +35654,7 @@ msgctxt ""
"par_id3150001\n"
"help.text"
msgid "<emph>Value1; Value2, ..., Value30</emph> are 1 to 30 arguments representing the values to be counted."
-msgstr ""
+msgstr "<emph>Værdi1; Værdi2, ...</emph> er 1 til 30 værdier eller områder som repræsenter værdierne som skal tælles."
#: 04060181.xhp
msgctxt ""
@@ -35822,7 +35822,7 @@ msgctxt ""
"par_id3581652\n"
"help.text"
msgid "<item type=\"input\">=COUNTIF(A1:A10;2006)</item> - this returns 1."
-msgstr ""
+msgstr "<item type=\"input\">=TÆL.HVIS(A1:A10;2006)</item> - dette returnerer 1"
#: 04060181.xhp
msgctxt ""
@@ -35830,7 +35830,7 @@ msgctxt ""
"par_id708639\n"
"help.text"
msgid "<item type=\"input\">=COUNTIF(A1:A10;B1)</item> - this returns 1."
-msgstr ""
+msgstr "<item type=\"input\">=TÆL.HVIS(A1:A10;B1)</item> - dette returnerer 1"
#: 04060181.xhp
msgctxt ""
@@ -35838,7 +35838,7 @@ msgctxt ""
"par_id5169225\n"
"help.text"
msgid "<item type=\"input\">=COUNTIF(A1:A10;\">=2006\")</item> - this returns 4."
-msgstr ""
+msgstr "<item type=\"input\">=TÆL.HVIS(A1:A10;\">=2006\")</item> - dette returnerer 4"
#: 04060181.xhp
msgctxt ""
@@ -35846,7 +35846,7 @@ msgctxt ""
"par_id2118594\n"
"help.text"
msgid "<item type=\"input\">=COUNTIF(A1:A10;\"<\"&B1)</item> - when B1 contains <item type=\"input\">2006</item>, this returns 6."
-msgstr ""
+msgstr "<item type=\"input\">=TÆL.HVIS(A1:A10;\"<\"&B1)</item> - når B1 indeholder <item type=\"input\">2006</item>, returneres 6"
#: 04060181.xhp
msgctxt ""
@@ -35854,7 +35854,7 @@ msgctxt ""
"par_id166020\n"
"help.text"
msgid "<item type=\"input\">=COUNTIF(A1:A10;C2)</item> where cell C2 contains the text <item type=\"input\">>2006</item> counts the number of cells in the range A1:A10 which are >2006."
-msgstr ""
+msgstr "<item type=\"input\">=TÆL.HVIS(A1:A10;C2)</item>, hvor celle C2 indeholder teksten <item type=\"input\">>2006</item> - tæller antallet af celler i området A1:A10 som er >2006."
#: 04060181.xhp
msgctxt ""
@@ -36326,7 +36326,7 @@ msgctxt ""
"par_id3156118\n"
"help.text"
msgid "<item type=\"input\">=BETADIST(0.75;3;4)</item> returns the value 0.96."
-msgstr ""
+msgstr "<item type=\"input\">=BETAFORDELING(0,75; 3; 4)</item> returnerer værdien 0,96."
#: 04060181.xhp
msgctxt ""
@@ -37710,7 +37710,7 @@ msgctxt ""
"par_id2745774\n"
"help.text"
msgid "<item type=\"input\">=CHISQ.DIST(3; 2; 1) </item>equals 0.7768698399, the cumulative chi-square distribution with 2 degrees of freedom, at the value x = 3."
-msgstr ""
+msgstr "<item type=\"input\">=CHI2.FORD(3; 2; 1) </item> giver 0.7768698399, den kumulative chi-kvadrat-fordeling med 2 frihedsgrader, for x = 3."
#: 04060181.xhp
msgctxt ""
@@ -39214,7 +39214,7 @@ msgctxt ""
"par_id3151015\n"
"help.text"
msgid "<emph>Beta</emph> is the parameter Beta of the Gamma distribution."
-msgstr ""
+msgstr "<emph>Beta</emph> er parameteren Beta for gammafordelingen."
#: 04060182.xhp
msgctxt ""
@@ -39318,7 +39318,7 @@ msgctxt ""
"par_id2406201422390458\n"
"help.text"
msgid "<emph>Beta</emph> is the parameter Beta of the Gamma distribution."
-msgstr ""
+msgstr "<emph>Beta</emph> er parameteren Beta for gammafordelingen."
#: 04060182.xhp
msgctxt ""
@@ -39462,7 +39462,7 @@ msgctxt ""
"par_id3153720\n"
"help.text"
msgid "GEOMEAN(Number1; Number2; ...; Number30)"
-msgstr ""
+msgstr "GEOMIDDELVÆRDI(Tal1; Tal2; ...; Tal30)"
#: 04060182.xhp
msgctxt ""
@@ -39470,7 +39470,7 @@ msgctxt ""
"par_id3152585\n"
"help.text"
msgid "<emph>Number1, Number2, ..., Number30</emph> are numeric arguments or ranges that represent a random sample."
-msgstr ""
+msgstr "<emph>Tal1,Tal2,...Tal30</emph> er numeriske argumenter eller områder, som repræsenter en stikprøve."
#: 04060182.xhp
msgctxt ""
@@ -39630,7 +39630,7 @@ msgctxt ""
"par_id0305200911372999\n"
"help.text"
msgid "See also the <link href=\"https://wiki.documentfoundation.org/Documentation/How_Tos/Calc:_ZTEST_function\" name=\"wiki.documentfoundation.org Documentation/HowTo/Calc/ZTEST function\">Wiki page</link>."
-msgstr ""
+msgstr "Se også<link href=\"https://wiki.documentfoundation.org/Documentation/How_Tos/Calc:_ZTEST_function\" name=\"wiki.documentfoundation.org Documentation/HowTo/Calc/ZTEST function\">wik-siden</link>."
#: 04060182.xhp
msgctxt ""
@@ -41710,7 +41710,7 @@ msgctxt ""
"par_id3149734\n"
"help.text"
msgid "AVERAGEA(Value1; Value2; ...; Value30)"
-msgstr ""
+msgstr "MIDDELV(Værdi1; Værdi2; ... Værdi30)"
#: 04060184.xhp
msgctxt ""
@@ -44350,7 +44350,7 @@ msgctxt ""
"par_id2854392\n"
"help.text"
msgid "STDEV.S(Number1; Number2; ...; Number30)"
-msgstr ""
+msgstr "STDAFV.P(Tal1; Tal2; ...Tal30)"
#: 04060185.xhp
msgctxt ""
@@ -44358,7 +44358,7 @@ msgctxt ""
"par_id2855261\n"
"help.text"
msgid "<emph>Number1, Number2, ..., Number30</emph> are numerical values or ranges representing a sample of the population."
-msgstr ""
+msgstr "<emph>Tal1, Tal2, ...Tal30</emph> er numeriske værdier eller intervaller der repræsenter en stikprøve af populationen."
#: 04060185.xhp
msgctxt ""
@@ -44414,7 +44414,7 @@ msgctxt ""
"par_id3146851\n"
"help.text"
msgid "STDEVPA(Value1; Value2; ...; Value30)"
-msgstr ""
+msgstr "STDAFVV(Værdi1; Værdi2; ...Værdi30)"
#: 04060185.xhp
msgctxt ""
@@ -44422,7 +44422,7 @@ msgctxt ""
"par_id3153109\n"
"help.text"
msgid "<emph>Value1, Value2, ..., Value30</emph> are values or ranges representing an entire population. Text has the value 0."
-msgstr ""
+msgstr "<emph>Værdi1, Værdi2, ...Værdi30</emph> er værdier eller områder, som repræsenterer en hel population. Tekst har værdien 0."
#: 04060185.xhp
msgctxt ""
@@ -44982,7 +44982,7 @@ msgctxt ""
"par_id3146790\n"
"help.text"
msgid "DEVSQ(Number1; Number2; ...; Number30)"
-msgstr ""
+msgstr "SAK(Tal1; Tal2; ...; Tal30)"
#: 04060185.xhp
msgctxt ""
@@ -44990,7 +44990,7 @@ msgctxt ""
"par_id3155995\n"
"help.text"
msgid "<emph>Number1, Number2, ..., Number30</emph> are numerical values or ranges representing a sample."
-msgstr ""
+msgstr "<emph>Tal1; Tal2;...Tal30</emph> er numeriske værdier eller områder."
#: 04060185.xhp
msgctxt ""
@@ -45742,7 +45742,7 @@ msgctxt ""
"par_id3153054\n"
"help.text"
msgid "VAR(Number1 ; Number2; ...; Number30)"
-msgstr ""
+msgstr "VARIANS(Tal1; Tal2; ...Tal30)"
#: 04060185.xhp
msgctxt ""
@@ -45806,7 +45806,7 @@ msgctxt ""
"par_id2953054\n"
"help.text"
msgid "VAR.S(Number1; Number2; ...; Number30)"
-msgstr ""
+msgstr "VARIANS.S(Tal1; Tal2; ...Tal30)"
#: 04060185.xhp
msgctxt ""
@@ -45870,7 +45870,7 @@ msgctxt ""
"par_id3149999\n"
"help.text"
msgid "VARA(Value1; Value2; ...; Value30)"
-msgstr ""
+msgstr "VARIANSV(Værdi1; Værdi2; ...; Værdi30)"
#: 04060185.xhp
msgctxt ""
@@ -45878,7 +45878,7 @@ msgctxt ""
"par_id3158421\n"
"help.text"
msgid "<emph>Value1, Value2, ..., Value30</emph> are values or ranges representing a sample derived from an entire population. Text has the value 0."
-msgstr ""
+msgstr "<emph>Værdi1, Værdi2, ...Værdi30</emph> er værdier eller områder, som repræsenterer en stikprøve afledt fra en hel population. Tekst har værdien 0."
#: 04060185.xhp
msgctxt ""
@@ -45934,7 +45934,7 @@ msgctxt ""
"par_id3147282\n"
"help.text"
msgid "VARP(Number1; Number2; ...; Number30)"
-msgstr ""
+msgstr "VARIANS.P(Tal1; Tal2; ...Tal30)"
#: 04060185.xhp
msgctxt ""
@@ -45998,7 +45998,7 @@ msgctxt ""
"par_id2947282\n"
"help.text"
msgid "VAR.P(Number1; Number2; ...; Number30)"
-msgstr ""
+msgstr "VARIANS.P(Tal1; Tal2; ...Tal30)"
#: 04060185.xhp
msgctxt ""
@@ -46062,7 +46062,7 @@ msgctxt ""
"par_id3149967\n"
"help.text"
msgid "VARPA(Value1; Value2; ...; Value30)"
-msgstr ""
+msgstr "VARIANSPV(Værdi1; Værdi2; ...; Værdi30)"
#: 04060185.xhp
msgctxt ""
@@ -46070,7 +46070,7 @@ msgctxt ""
"par_id3149920\n"
"help.text"
msgid "<emph>Value1, Value2, ..., Value30</emph> are values or ranges representing an entire population."
-msgstr ""
+msgstr "<emph>Værdi1, Værdi2, ...Værdi30</emph> er værdier eller områder som repræsenterer en hel population."
#: 04060185.xhp
msgctxt ""
@@ -46318,7 +46318,7 @@ msgctxt ""
"par_id3153694\n"
"help.text"
msgid "<emph>End</emph> (optional) is the end value of the interval whose probabilities are to be summed. If this parameter is missing, the probability for the <emph>Start</emph> value is calculated."
-msgstr ""
+msgstr "<emph>Øvre_grænse</emph> (valgfri) er slutværdien på intervallet, hvis sandsynligheder skal sammenlægges. Hvis denne parameter mangler, vil denne funktion beregne sandsynligheden for <emph>Nedre_grænse</emph>."
#: 04060185.xhp
msgctxt ""
@@ -46574,7 +46574,7 @@ msgctxt ""
"par_id2905200911372899\n"
"help.text"
msgid "See also the <link href=\"https://wiki.documentfoundation.org/Documentation/How_Tos/Calc:_WEIBULL_function\" name=\"wiki.documentfoundation.org Documentation/HowTo/Calc/WEIBULL function\">Wiki page</link>."
-msgstr ""
+msgstr "Se også <link href=\"https://wiki.documentfoundation.org/Documentation/How_Tos/Calc:_WEIBULL_function\" name=\"wiki.documentfoundation.org Documentation/HowTo/Calc/WEIBULL function\">wiki-siden</link>."
#: 04060199.xhp
msgctxt ""
@@ -47934,7 +47934,7 @@ msgctxt ""
"par_id3149262\n"
"help.text"
msgid "<ahelp hid=\".uno:InsertExternalDataSourc\">Inserts data from an HTML, Calc, CSV or Excel file into the current sheet as a link. The data must be located within a named range.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".uno:InsertExternalDataSourc\">Indsætter data fra en HTML-, Calc-, Csv- eller Excel-fil ind i det aktuelle ark som en kæde. Data skal være at finde i et navngivet område.</ahelp>"
#: 04090000.xhp
msgctxt ""
@@ -47950,7 +47950,7 @@ msgctxt ""
"par_id3145366\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/externaldata/url\">Enter the URL or the file name that contains the data that you want to insert, and then press Enter.</ahelp> Only then the URL will be requested from the network or file system."
-msgstr ""
+msgstr "<ahelp hid=\"modules/scalc/ui/externaldata/url\">Indsæt den URL eller det filnavn, som indeholder de data, som du vil insætte, og tryk så på Enter.</ahelp> Først da bliver URL'en kaldt fra netværket eller filsystemet."
#: 04090000.xhp
msgctxt ""
@@ -47958,7 +47958,7 @@ msgctxt ""
"par_id621519313666202\n"
"help.text"
msgid "<link href=\"text/shared/00/00000208.xhp\" name=\"linkname\">A dialog for CSV data import</link> appears when linking to external CSV file."
-msgstr ""
+msgstr "<link href=\"text/shared/00/00000208.xhp\" name=\"linkname\">En dialogboks til CSV dataimport</link> kommer frem, når du lænker til en ekstern CSV-fil."
#: 04090000.xhp
msgctxt ""
@@ -48294,7 +48294,7 @@ msgctxt ""
"par_id3156281\n"
"help.text"
msgid "<ahelp hid=\".\">Hides selected rows, columns or individual sheets.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Skjuler valgte rækker, kolonner eller enkelte ark.</ahelp>"
#: 05030300.xhp
msgctxt ""
@@ -48374,7 +48374,7 @@ msgctxt ""
"par_id3150447\n"
"help.text"
msgid "<ahelp hid=\".\">Choose this command to show previously hidden rows or columns.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Brug denne kommando for at vise tidligere skjulte rækker eller kolonner.</ahelp>"
#: 05030400.xhp
msgctxt ""
@@ -48686,7 +48686,7 @@ msgctxt ""
"par_id3145273\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/showsheetdialog/ShowSheetDialog\" visibility=\"visible\">Displays a list of all hidden sheets in your spreadsheet document.</ahelp> To show a certain sheet, click the corresponding entry on the list and confirm with OK."
-msgstr ""
+msgstr "<ahelp hid=\"modules/scalc/ui/showsheetdialog/ShowSheetDialog\" visibility=\"visible\">Viser en liste over alle skjulte ark i dit regnearksdokument.</ahelp> For at vise et bestemt ark skal du klikke på det tilsvarende element i listen og bekræfte med OK."
#: 05060000.xhp
msgctxt ""
@@ -48742,7 +48742,7 @@ msgctxt ""
"par_id1001240\n"
"help.text"
msgid "Three options are available:"
-msgstr ""
+msgstr "Der er adgang til tre valgmuligheder:"
#: 05060000.xhp
msgctxt ""
@@ -48750,7 +48750,7 @@ msgctxt ""
"par_id3155879\n"
"help.text"
msgid "<emph>Move the contents of the hidden cells into the first cell</emph>: <ahelp hid=\".\">The actual contents of the hidden cells are concatenated to the first cell, and hidden cells are emptied; the results of formulas referring to the hidden cells or the first cell will be updated.</ahelp>"
-msgstr ""
+msgstr "<emph>Flyt indholdet af de skjulte celler ind i den første celle</emph>: <ahelp hid=\".\"> Det aktuelle indhold i de skjulte celler tilføjes i den første celle og de skjulte celler tømmes; resultater af formler, der henviser til de skjulte celler eller den første celle vil blive opdateret.</ahelp>"
#: 05060000.xhp
msgctxt ""
@@ -48758,7 +48758,7 @@ msgctxt ""
"par_id3155878\n"
"help.text"
msgid "<emph>Keep the contents of the hidden cells</emph>: <ahelp hid=\".\">The contents of the hidden cells are kept; the results of formulas referring to the hidden cells will not change.</ahelp>"
-msgstr ""
+msgstr "<emph>Behold indholdet af de skjulte celler</emph>: <ahelp hid=\".\">indholdet af de skjulte celler bevares. Resultater af formler, som henviser til skjulte celler vil ikke blive opdateret.</ahelp>"
#: 05060000.xhp
msgctxt ""
@@ -48766,7 +48766,7 @@ msgctxt ""
"par_id3155877\n"
"help.text"
msgid "<emph>Empty the contents of the hidden cells</emph>: <ahelp hid=\".\">The contents of the hidden cells are removed; the results of formulas referring to the hidden cells will be updated.</ahelp>"
-msgstr ""
+msgstr "<emph>Tøm indholdet af de skjulte celler</emph>: <ahelp hid=\".\">indholdet af de skjulte celler fjernes. Resultater af formler, som henviser til de skjulte celler, vil blive opdateret.</ahelp>"
#: 05060000.xhp
msgctxt ""
@@ -49854,7 +49854,7 @@ msgctxt ""
"par_id3154017\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/autoformattable/add\">Allows you to add the current formatting of a range of at least 4 x 4 cells to the list of predefined AutoFormats.</ahelp> The <emph>Add AutoFormat</emph> dialog then appears."
-msgstr ""
+msgstr "<ahelp hid=\"modules/scalc/ui/autoformattable/add\">Lader dig tilføje den aktuelle formatering af et område på mindst 4 x 4 celler til listen og prædefinerede AutoFormater.</ahelp> Dialogboksen <emph>Tilføj AutoFormat</emph> kommer frem."
#: 05110000.xhp
msgctxt ""
@@ -49862,7 +49862,7 @@ msgctxt ""
"par_id3153708\n"
"help.text"
msgid "<ahelp hid=\".\">Enter a name and click <emph>OK</emph>. </ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Indtast et navn og klik på <emph>OK</emph>.</ahelp>"
#: 05110000.xhp
msgctxt ""
@@ -49878,7 +49878,7 @@ msgctxt ""
"par_id3153064\n"
"help.text"
msgid "<ahelp hid=\".\">Opens a dialog where you can change the name of the selected AutoFormat.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Åbner en dialog, hvor du kan ændre navnet på det valgte script.</ahelp>"
#: 05110000.xhp
msgctxt ""
@@ -49886,7 +49886,7 @@ msgctxt ""
"par_id3153912\n"
"help.text"
msgid "The <emph>Rename AutoFormat</emph> dialog opens.<ahelp hid=\".\"> Enter the new name of the AutoFormat here.</ahelp>"
-msgstr ""
+msgstr "Dialogen <emph>Omdøb Autoformat</emph> åbnes.<ahelp hid=\".\">Indtast det nye navn på Autoformatet her.</ahelp>"
#: 05110000.xhp
msgctxt ""
@@ -50022,7 +50022,7 @@ msgctxt ""
"par_id3163710\n"
"help.text"
msgid "<variable id=\"bedingtetext\"><ahelp hid=\".\">Choose <emph>Conditional Formatting</emph> to define format styles depending on certain conditions.</ahelp></variable> If a style was already assigned to a cell, it remains unchanged. The style entered here is then evaluated. There are several types of conditional formatting that can be used."
-msgstr ""
+msgstr "<variable id=\"bedingtetext\"><ahelp hid=\".\">Vælg <emph>Betinget formatering</emph> for at definere formattypografier, som afhænger af forskellige betingelser.</ahelp></variable> Hvis en typografi på forhånd var tilknyttet cellen, vil den ikke blive ændret. Typografien, som du tilknytter her, evalueres efterfølgende. Der findes forskellige slags betinget formatering, som du kan bruge."
#: 05120000.xhp
msgctxt ""
@@ -50054,7 +50054,7 @@ msgctxt ""
"par_id3149413\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">List of the conditions defined for the cell range in order of evaluation.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Liste over de betingelser, der er defineret for et celleområde i evaluerings-rækkefølge.</ahelp>"
#: 05120000.xhp
msgctxt ""
@@ -50062,7 +50062,7 @@ msgctxt ""
"par_id3149414\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Increase priority of the selected condition.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Giv den valgte betingelse højere prioritet.</ahelp>"
#: 05120000.xhp
msgctxt ""
@@ -50070,7 +50070,7 @@ msgctxt ""
"par_id3149415\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Decrease priority of the selected condition.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Giv den valgte betingelse lavere prioritet.</ahelp>"
#: 05120000.xhp
msgctxt ""
@@ -50134,7 +50134,7 @@ msgctxt ""
"par_id31494137\n"
"help.text"
msgid "<ahelp hid=\".\">Click the <emph>Add</emph> button to add another condition, click the <emph>Remove</emph> button to remove a condition.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Klik på <emph>Tilføj</emph>-knappen for at tilføje en betingelse, klik på <emph>Fjern</emph>-knappen for at fjerne en betingelse.</ahelp>"
#: 05120000.xhp
msgctxt ""
@@ -50142,7 +50142,7 @@ msgctxt ""
"par_id31494138\n"
"help.text"
msgid "<ahelp hid=\".\">In the <emph>Range</emph> field, define the range of cells concerned by the conditional formatting.</ahelp> Click on the <emph>Shrink</emph> button to minimize the dialog box. Click again on the button to come back to the dialog box once the range is selected."
-msgstr ""
+msgstr "<ahelp hid=\".\">I <emph>Område</emph>-feltet definerer du det celleområde, der er omfattet af den betingede formatering. </ahelp>Klik på <emph>Minimer</emph>-knappen for at minimere dialogboksen. Klik på knappen igen for at vende tilbage til dialogboksen, når du har markeret området."
#: 05120000.xhp
msgctxt ""
@@ -50198,7 +50198,7 @@ msgctxt ""
"par_id3155605\n"
"help.text"
msgid "For a detailed explanation and examples, please visit <link href=\"https://wiki.documentfoundation.org/Faq/Calc/142\">How to apply a Color Scale Conditional Formatting page</link> in TDF Wiki."
-msgstr ""
+msgstr "Detaljeret forklaring og eksempler kan findes på siden <link href=\"https://wiki.documentfoundation.org/Faq/Calc/142\">Hvordan anvender jeg en Farveskala i Betinget formatering?</link> på The Document Foundation-wikien."
#: 05120000.xhp
msgctxt ""
@@ -50294,7 +50294,7 @@ msgctxt ""
"par_id3155606\n"
"help.text"
msgid "For a detailed explanation and examples, please visit <link href=\"https://wiki.documentfoundation.org/Faq/Calc/141\">How to use Icon Set Conditional Formatting page</link> in TDF Wiki."
-msgstr ""
+msgstr "Detaljeret forklaring og eksempler kan findes på siden <link href=\"https://wiki.documentfoundation.org/Faq/Calc/141\">Hvordan bruger jeg Ikonsæt og Betinget formatering?</link> på The Document Foundation-wikien."
#: 05120000.xhp
msgctxt ""
@@ -50350,7 +50350,7 @@ msgctxt ""
"par_id3155906\n"
"help.text"
msgid "<ahelp hid=\".\">This dialog allows you to see all the conditional formatting defined in the spreadsheet.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Denne dialog giver dig mulighed for at se alle de betingede formateringer, der er defineret i regnearket.</ahelp>"
#: 05120000.xhp
msgctxt ""
@@ -50366,7 +50366,7 @@ msgctxt ""
"par_id3155907\n"
"help.text"
msgid "The <emph>Manage Conditional Formatting</emph> dialog box opens. <ahelp hid=\".\">Here you can add, edit or remove one or several conditional formattings.</ahelp>"
-msgstr ""
+msgstr "Boksen <emph>Administrer betinget formatering</emph> åbnes. <ahelp hid=\".\">Her kan du tilføje, redigere eller fjerne en eller flere betingede formateringer.</ahelp>"
#: 05120000.xhp
msgctxt ""
@@ -50374,7 +50374,7 @@ msgctxt ""
"par_id3155909\n"
"help.text"
msgid "<ahelp hid=\".\">The <emph>Conditional Formats</emph> list displays the active conditional formatting rules set in the current spreadsheet.</ahelp> Only the first rule for each cell range is listed, even if there are multiple rules defined for a given range."
-msgstr ""
+msgstr "<ahelp hid=\".\">Listen <emph>Betingede formater</emph> viser de aktive regler for betingede formater i det aktuelle regneark.</ahelp> Kun den første regel for hvert celleområde vises, også selv om der er defineret flere regler for et givet område."
#: 05120000.xhp
msgctxt ""
@@ -51038,7 +51038,7 @@ msgctxt ""
"par_id3150541\n"
"help.text"
msgid "<variable id=\"szenariotext\"><ahelp hid=\".\">Defines a scenario for the selected sheet area.</ahelp></variable>"
-msgstr ""
+msgstr "<variable id=\"szenariotext\"><ahelp hid=\".\">Angiver et scenarie for det valgte regnearksområde.</ahelp></variable>"
#: 06050000.xhp
msgctxt ""
@@ -51054,7 +51054,7 @@ msgctxt ""
"par_id3151041\n"
"help.text"
msgid "<ahelp hid=\".\">Defines the name for the scenario. Use a clear and unique name so you can easily identify the scenario.</ahelp> You can also modify a scenario name in the Navigator through the <emph>Properties </emph>context menu command."
-msgstr ""
+msgstr "<ahelp hid=\".\">Angiver navnet på scenariet. Brug et klart og unikt navn, så du nemt kan identificere scenariet.</ahelp> Du kan også ændre et scenarienavn i Navigatoren gennem kommandoen <emph>Egenskaber</emph> i genvejsmenuen ."
#: 06050000.xhp
msgctxt ""
@@ -51070,7 +51070,7 @@ msgctxt ""
"par_id3155411\n"
"help.text"
msgid "<ahelp hid=\".\">Specifies additional information about the scenario. This information will be displayed in the <link href=\"text/scalc/01/02110000.xhp\" name=\"Navigator\">Navigator</link> when you click the <emph>Scenarios</emph> icon and select the desired scenario.</ahelp> You can also modify this information in the Navigator through the <emph>Properties </emph>context menu command."
-msgstr ""
+msgstr "<ahelp hid=\".\">Angiver yderligere information om scenariet. Denne information vil blive vist i <link href=\"text/scalc/01/02110000.xhp\" name=\"Navigator\">Navigator</link>, når du klikker på ikonet <emph>Scenarier</emph> og markerer det ønskede scenarie.</ahelp> Du kan også ændre denne information i Navigatoren gennem kommandoen <emph>Egenskaber</emph> i kontekstmenuen."
#: 06050000.xhp
msgctxt ""
@@ -51102,7 +51102,7 @@ msgctxt ""
"par_id3151073\n"
"help.text"
msgid "<ahelp hid=\".\">Highlights the scenario in your table with a border. The color for the border is specified in the field to the right of this option.</ahelp> The border will have a title bar displaying the name of the last scenario. The button on the right of the scenario border offers you an overview of all the scenarios in this area, if several have been defined. You can choose any of the scenarios from this list without restrictions."
-msgstr ""
+msgstr "<ahelp hid=\".\">Fremhæver scenariet i din tabel med en kant. Farven på kanten er angivet i feltet til højre for denne indstilling.</ahelp> Kanten har en titellinje der viser navnet på det seneste scenarie. Knappen til højre for scenariets kant giver dig et overblik over alle scenarierne i dette område, hvis der er blevet defineret flere. Du kan vælge ethvert af scenarierne fra denne liste uden begrænsninger."
#: 06050000.xhp
msgctxt ""
@@ -52942,7 +52942,7 @@ msgctxt ""
"par_id3154124\n"
"help.text"
msgid "<ahelp hid=\".\">Specify the settings for calculating and presenting subtotals.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Angiv indstillingerne for beregning og præsentation af subtotaler.</ahelp>"
#: 12050200.xhp
msgctxt ""
@@ -53030,7 +53030,7 @@ msgctxt ""
"par_id3149400\n"
"help.text"
msgid "<ahelp hid=\".\">Uses a custom sorting order that you defined in the Options dialog box at <emph>%PRODUCTNAME Calc - Sort Lists</emph>.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Bruger en brugerdefineret sorteringsrækkefølge, som du angav i dialogfeltet Indstillinger under <emph>%PRODUCTNAME Calc - Sorteringslister</emph>.</ahelp>"
#: 12050200.xhp
msgctxt ""
@@ -55742,7 +55742,7 @@ msgctxt ""
"par_id3153088\n"
"help.text"
msgid "<variable id=\"aktualisieren\"><ahelp hid=\".\">Updates a data range that was inserted from an external database. The data in the sheet is updated to match the data in the external database.</ahelp></variable>"
-msgstr ""
+msgstr "<variable id=\"aktualisieren\"><ahelp hid=\".\">Opdaterer et dataområde, som er indsat fra en ekstern database. Data i arket opdateres til at svare til data i den eksterne database.</ahelp></variable>"
#: 12120000.xhp
msgctxt ""
@@ -56566,7 +56566,7 @@ msgctxt ""
"hd_id240920171003006302\n"
"help.text"
msgid "<link href=\"text/scalc/01/data_form.xhp\">Data Entry Forms for Spreadsheets</link>"
-msgstr ""
+msgstr "<link href=\"text/scalc/01/data_form.xhp\">Dataindtastningsformular for regneark</link>"
#: data_form.xhp
msgctxt ""
@@ -56638,7 +56638,7 @@ msgctxt ""
"par_id361512503457039\n"
"help.text"
msgid "Enter the data in the text fields. Press Enter or click <item type=\"literal\">New</item> to add it to the table."
-msgstr ""
+msgstr "Indtast data i tekstfelterne. Tryk på Enter eller klik på <item type=\"literal\">Ny</item> for at tilføje den til tabellen."
#: data_form.xhp
msgctxt ""
@@ -56926,7 +56926,7 @@ msgctxt ""
"par_id0403201618694537\n"
"help.text"
msgid "See the <link href=\"https://en.wikipedia.org/wiki/Exponential_smoothing\" name=\"English Wikipedia: Exponential smoothing\">Wikipedia on Exponential smoothing algorithms</link> for more information."
-msgstr ""
+msgstr "Find mere information i <link href=\"https://en.wikipedia.org/wiki/Exponential_smoothing\" name=\"English Wikipedia: Exponential smoothing\">engelsk Wikipedia om Exponential smoothing algorithms</link>."
#: exponsmooth_embd.xhp
msgctxt ""
@@ -58486,7 +58486,7 @@ msgctxt ""
"par_id1102201617001888\n"
"help.text"
msgid "<item type=\"input\">COLOR(255;255;255;1)</item> returns 33554431"
-msgstr ""
+msgstr "<item type=\"input\">FARVE(255;255;255;1)</item> returnerer 33554431"
#: func_color.xhp
msgctxt ""
@@ -58494,7 +58494,7 @@ msgctxt ""
"par_id1102201618185378\n"
"help.text"
msgid "<item type=\"input\">COLOR(0;0;255;0)</item> returns 255"
-msgstr ""
+msgstr "<item type=\"input\">FARVE(0;0;255;0)</item> returnerer 255"
#: func_color.xhp
msgctxt ""
@@ -58502,7 +58502,7 @@ msgctxt ""
"par_id1102201618185326\n"
"help.text"
msgid "<item type=\"input\">COLOR(0;0;255;255)</item> returns 4278190335"
-msgstr ""
+msgstr "<item type=\"input\">FARVE(0;0;255;255)</item> returnerer 4278190335"
#: func_color.xhp
msgctxt ""
@@ -58510,7 +58510,7 @@ msgctxt ""
"par_id1102201618188326\n"
"help.text"
msgid "<item type=\"input\">COLOR(0;0;400;0)</item> returns Err:502 (Invalid argument) because the blue value is greater than 255."
-msgstr ""
+msgstr "<item type=\"input\">FARVE(0;0;400;0)</item> returnerer Err:502 (Ugyldigt argument) fordi den blå værdi er højere end 255."
#: func_countifs.xhp
msgctxt ""
@@ -62262,7 +62262,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "ROUNDSIG Function"
-msgstr ""
+msgstr "ROUNDSIG-funktion"
#: func_roundsig.xhp
msgctxt ""
@@ -62270,7 +62270,7 @@ msgctxt ""
"bm_id151519154954070\n"
"help.text"
msgid "<bookmark_value>ROUNDSIG Function</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>ROUNDSIG-funktion</bookmark_value>"
#: func_roundsig.xhp
msgctxt ""
@@ -62278,7 +62278,7 @@ msgctxt ""
"hd_id351519154702177\n"
"help.text"
msgid "<link href=\"text/scalc/01/func_roundsig.xhp\" name=\"command name\">ROUNDSIG</link>"
-msgstr ""
+msgstr "<link href=\"text/scalc/01/func_roundsig.xhp\" name=\"command name\">ROUNDSIG</link>"
#: func_roundsig.xhp
msgctxt ""
@@ -62286,7 +62286,7 @@ msgctxt ""
"par_id921519154702177\n"
"help.text"
msgid "<variable id=\"roundsig\"><ahelp hid=\"HID_FUNC_ROUNDSIG\">Returns a number rounded to a specified number of significant decimal digits of its normalized floating point notation.</ahelp></variable>"
-msgstr ""
+msgstr "<variable id=\"roundsig\"><ahelp hid=\"HID_FUNC_ROUNDSIG\">Returnerer et tal afrundet til et angivet antal betydende decimale cifre af det normaliserede notation med flydende komma.</ahelp></variable>"
#: func_roundsig.xhp
msgctxt ""
@@ -62294,7 +62294,7 @@ msgctxt ""
"par_id291519155534115\n"
"help.text"
msgid "ROUNDSIG( Value; Digits )"
-msgstr ""
+msgstr "ROUNDSIG( Værdi; Cifre )"
#: func_roundsig.xhp
msgctxt ""
@@ -62302,7 +62302,7 @@ msgctxt ""
"par_id51519155217204\n"
"help.text"
msgid "<emph>Value</emph>: the number to be rounded."
-msgstr ""
+msgstr "<emph>Værdi</emph>: tallet, der skal afrundes."
#: func_roundsig.xhp
msgctxt ""
@@ -62310,7 +62310,7 @@ msgctxt ""
"par_id321519155209912\n"
"help.text"
msgid "<emph>Digits</emph>: the number of decimal places to round."
-msgstr ""
+msgstr "<emph>Cifre</emph>: antal af decimalpladser, der skal afrundes til."
#: func_roundsig.xhp
msgctxt ""
@@ -62318,7 +62318,7 @@ msgctxt ""
"par_id371519155264297\n"
"help.text"
msgid "<emph>Digits</emph> must be an integer greater than 0."
-msgstr ""
+msgstr "<emph>Cifre</emph> skal være et heltal større end 0."
#: func_roundsig.xhp
msgctxt ""
@@ -62326,7 +62326,7 @@ msgctxt ""
"par_id691519155470333\n"
"help.text"
msgid "<item type=\"input\">=ROUNDSIG(123.456789; 5)</item> returns 123.46."
-msgstr ""
+msgstr "<item type=\"input\">=ROUNDSIG(123.456789; 5)</item> returnerer 123.46."
#: func_roundsig.xhp
msgctxt ""
@@ -62334,7 +62334,7 @@ msgctxt ""
"par_id821519155475673\n"
"help.text"
msgid "<item type=\"input\">=ROUNDSIG(0.000123456789; 5)</item> returns 0.00012346"
-msgstr ""
+msgstr "<item type=\"input\">=ROUNDSIG(0.000123456789; 5)</item> returnerer 0.00012346"
#: func_roundsig.xhp
msgctxt ""
@@ -62342,7 +62342,7 @@ msgctxt ""
"par_id381519155481234\n"
"help.text"
msgid "<item type=\"input\">=ROUNDSIG(123456789012345; 2)</item> returns 1.2E14"
-msgstr ""
+msgstr "<item type=\"input\">=ROUNDSIG(123456789012345; 2)</item> returnerer 1.2E14"
#: func_roundsig.xhp
msgctxt ""
@@ -62350,7 +62350,7 @@ msgctxt ""
"par_id231519155486155\n"
"help.text"
msgid "<item type=\"input\">=ROUNDSIG(123456789; 4)</item> returns 123500000 or 123.5E6"
-msgstr ""
+msgstr "<item type=\"input\">=ROUNDSIG(123456789; 4)</item> returnerer 123500000 or 123.5E6"
#: func_roundsig.xhp
msgctxt ""
@@ -62358,7 +62358,7 @@ msgctxt ""
"par_id51519156941987\n"
"help.text"
msgid "See also <link href=\"text/scalc/01/04060106.xhp#Section21\" name=\"ROUND function\">ROUND</link>, <link href=\"text/scalc/01/04060106.xhp#Section7\" name=\"MROUND function\">MROUND</link>, <link href=\"text/scalc/01/04060106.xhp#Section19\" name=\"ROUNDUP function\">ROUNDUP</link>, <link href=\"text/scalc/01/04060106.xhp#Section20\" name=\"ROUNDDOWN function\">ROUNDDOWN</link>."
-msgstr ""
+msgstr "See also <link href=\"text/scalc/01/04060106.xhp#Section21\" name=\"ROUND function\">AFRUND</link>, <link href=\"text/scalc/01/04060106.xhp#Section7\" name=\"MROUND function\">MAFRUND</link>, <link href=\"text/scalc/01/04060106.xhp#Section19\" name=\"ROUNDUP function\">RUND.OP</link>, <link href=\"text/scalc/01/04060106.xhp#Section20\" name=\"ROUNDDOWN function\">RUND.NED</link>."
#: func_second.xhp
msgctxt ""
@@ -62478,7 +62478,7 @@ msgctxt ""
"par_id27421466710275\n"
"help.text"
msgid "SKEWP(Number1; Number2; ...; Number30)"
-msgstr ""
+msgstr "SKÆVHED.P(Tal1; Tal2; ...Tal30)"
#: func_skewp.xhp
msgctxt ""
@@ -62518,7 +62518,7 @@ msgctxt ""
"par_id1102201618185326\n"
"help.text"
msgid "<item type=\"literal\">SKEWP(Number1; Number2)</item> always returns zero, if Number1 and Number2 results in two numbers."
-msgstr ""
+msgstr "<item type=\"literal\">SKÆVHED.P(Tal1;Tal2)</item> returnerer altid nul, hvis Tal1 og Tal2 resulterer i to tal."
#: func_skewp.xhp
msgctxt ""
@@ -63046,7 +63046,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "URI Functions"
-msgstr ""
+msgstr "URI-funktioner"
#: func_webservice.xhp
msgctxt ""
@@ -63110,7 +63110,7 @@ msgctxt ""
"par_id3146142\n"
"help.text"
msgid "<item type=\"input\">=WEBSERVICE(\"wiki.documentfoundation.org/api.php?hidebots=1&days=7&limit=50&action=feedrecentchanges&feedformat=rss\")</item>"
-msgstr ""
+msgstr "<item type=\"input\">=WEBSERVICE(\"wiki.documentfoundation.org/api.php?hidebots=1&days=7&limit=50&action=feedrecentchanges&feedformat=rss\")</item>"
#: func_webservice.xhp
msgctxt ""
@@ -63118,7 +63118,7 @@ msgctxt ""
"par_id3146143\n"
"help.text"
msgid "Returns the web page content of \"https://wiki.documentfoundation.org/api.php?hidebots=1&days=7&limit=50&action=feedrecentchanges&feedformat=rss\"."
-msgstr ""
+msgstr "Returnerer indholdet af \"https://wiki.documentfoundation.org/api.php?hidebots=1&days=7&limit=50&action=feedrecentchanges&feedformat=rss\"."
#: func_webservice.xhp
msgctxt ""
@@ -63190,7 +63190,7 @@ msgctxt ""
"par_id2946142\n"
"help.text"
msgid "<item type=\"input\">=FILTERXML(WEBSERVICE(\"wiki.documentfoundation.org/api.php?hidebots=1&days=7&limit=50&action=feedrecentchanges&feedformat=rss\");\"//lastBuildDate\")</item>"
-msgstr ""
+msgstr "<item type=\"input\">=FILTERXML(WEBSERVICE(\"wiki.documentfoundation.org/api.php?hidebots=1&days=7&limit=50&action=feedrecentchanges&feedformat=rss\");\"//lastBuildDate\")</item>"
#: func_webservice.xhp
msgctxt ""
@@ -63198,7 +63198,7 @@ msgctxt ""
"par_id2946143\n"
"help.text"
msgid "Returns information on the last build date of the wiki."
-msgstr ""
+msgstr "Returnerer information om wiki'ens seneste build-dato."
#: func_webservice.xhp
msgctxt ""
@@ -63206,7 +63206,7 @@ msgctxt ""
"bm_id811517136840444\n"
"help.text"
msgid "<bookmark_value>ENCODEURL function</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>ENCODEURL-funktion</bookmark_value>"
#: func_webservice.xhp
msgctxt ""
@@ -63214,7 +63214,7 @@ msgctxt ""
"hd_id671517132649769\n"
"help.text"
msgid "ENCODEURL function"
-msgstr ""
+msgstr "ENCODEURL-funktion"
#: func_webservice.xhp
msgctxt ""
@@ -63222,7 +63222,7 @@ msgctxt ""
"par_id51517132649769\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_ENCODEURL\">Returns a URL-encoded string.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"HID_FUNC_ENCODEURL\">Returnerer en URL-kodet streng.</ahelp>"
#: func_webservice.xhp
msgctxt ""
@@ -63230,7 +63230,7 @@ msgctxt ""
"par_id721517134647880\n"
"help.text"
msgid "Use this function to transform text with symbols of national alphabets (for example accented characters, non-ASCII alphabets or Asian words) to a string of URL-standard symbols."
-msgstr ""
+msgstr "Brug denne funktion til at ændre tekst med tegn i nationale alfabeter (fx tegn med accenter, ikke-ASCII-alfabeter eller asiatiske ord) til en streng med tegn i URL-standard."
#: func_webservice.xhp
msgctxt ""
@@ -63246,7 +63246,7 @@ msgctxt ""
"par_id351517132879400\n"
"help.text"
msgid "ENCODEURL(Text)"
-msgstr ""
+msgstr "INDKODURL(Tekst)"
#: func_webservice.xhp
msgctxt ""
@@ -63254,7 +63254,7 @@ msgctxt ""
"par_id921517132924079\n"
"help.text"
msgid "<emph>Text</emph>: String to encode to a sequence of URL-standard symbols."
-msgstr ""
+msgstr "<emph>Tekst</emph>: Streng, der skal omkodes til en sekvens af tegn i URL-standard."
#: func_webservice.xhp
msgctxt ""
@@ -63262,7 +63262,7 @@ msgctxt ""
"hd_id901517132933934\n"
"help.text"
msgid "Example"
-msgstr ""
+msgstr "Eksempel"
#: func_webservice.xhp
msgctxt ""
@@ -63270,7 +63270,7 @@ msgctxt ""
"par_id651517132994921\n"
"help.text"
msgid "If cell A1 contains the Cyrillic text \"автомобиль\", <item type=\"input\">=ENCODEURL(A1)</item> returns %D0%B0%D0%B2%D1%82%D0%BE%D0%BC%D0%BE%D0%B1%D0%B8%D0%BB%D1%8C (the word \"автомобиль\" means car in Russian)."
-msgstr ""
+msgstr "Hviscele A1 indeholder den kyrilliske tekst \"автомобиль\", returnerer <item type=\"input\">=ENCODEURL(A1)</item> %D0%B0%D0%B2%D1%82%D0%BE%D0%BC%D0%BE%D0%B1%D0%B8%D0%BB%D1%8C (ordet \"автомобиль\" betyder vil på russisk)."
#: func_webservice.xhp
msgctxt ""
@@ -63278,7 +63278,7 @@ msgctxt ""
"par_id991517133057478\n"
"help.text"
msgid "If cell B1 contains the text \"車\", <item type=\"input\">=ENCODEURL(B1)</item> returns %E8%BB%8A (\"車\" means car in Japanese)."
-msgstr ""
+msgstr "Hvis celle B1 indeholder teksten \"車\", returnerer<item type=\"input\">=ENCODEURL(B1)</item> %E8%BB%8A (\"車\" betyder bil på japansk)."
#: func_weekday.xhp
msgctxt ""
@@ -65190,7 +65190,7 @@ msgctxt ""
"par_id1000670\n"
"help.text"
msgid "For more information on descriptive statistics, refer to the <link href=\"https://en.wikipedia.org/wiki/Descriptive_statistics\" name=\"English Wikipedia: Descriptive statistics\">corresponding Wikipedia article</link>."
-msgstr ""
+msgstr "Find mere information om beskrivende statistik i <link href=\"https://en.wikipedia.org/wiki/Descriptive_statistics\" name=\"English Wikipedia: Descriptive statistics\">den engelske wikipedia-artikel</link>."
#: statistics.xhp
msgctxt ""
@@ -65374,7 +65374,7 @@ msgctxt ""
"par_id1001270\n"
"help.text"
msgid "For more information on ANOVA, refer to the <link href=\"https://en.wikipedia.org/wiki/ANOVA\" name=\"English Wikipedia: ANOVA\">corresponding Wikipedia article</link>."
-msgstr ""
+msgstr "Læs mere om ANOVA i <link href=\"https://en.wikipedia.org/wiki/ANOVA\" name=\"English Wikipedia: ANOVA\">den engelske Wikipedia-artikel</link>."
#: statistics.xhp
msgctxt ""
@@ -65638,7 +65638,7 @@ msgctxt ""
"par_id1001790\n"
"help.text"
msgid "For more information on statistical correlation, refer to the <link href=\"https://en.wikipedia.org/wiki/Correlation\" name=\"English Wikipedia: Correlation\">corresponding Wikipedia article</link>."
-msgstr ""
+msgstr "Se mere om statistisk korrelation i <link href=\"https://en.wikipedia.org/wiki/Correlation\" name=\"English Wikipedia: Correlation\">den engelske wikipedia-artikel</link>."
#: statistics.xhp
msgctxt ""
@@ -65750,7 +65750,7 @@ msgctxt ""
"par_id1001970\n"
"help.text"
msgid "For more information on statistical covariance, refer to the <link href=\"https://en.wikipedia.org/wiki/Covariance\" name=\"English Wikipedia: Covariance\">corresponding Wikipedia article</link>."
-msgstr ""
+msgstr "Se mere om statistisk covarians i <link href=\"https://en.wikipedia.org/wiki/Covariance\" name=\"English Wikipedia: Covariance\">den engelske wikipedia-artikel</link>"
#: statistics.xhp
msgctxt ""
@@ -65862,7 +65862,7 @@ msgctxt ""
"par_id1002150\n"
"help.text"
msgid "For more information on exponential smoothing, refer to the <link href=\"https://en.wikipedia.org/wiki/Exponential_smoothing\" name=\"English Wikipedia: Exponential smoothing\">corresponding Wikipedia article</link>."
-msgstr ""
+msgstr "Læs mere om eksponentiel udglatning i <link href=\"https://en.wikipedia.org/wiki/Exponential_smoothing\" name=\"English Wikipedia: Exponential smoothing\">den engelske wikipedia-artikel</link>."
#: statistics.xhp
msgctxt ""
@@ -65950,7 +65950,7 @@ msgctxt ""
"par_id1002520\n"
"help.text"
msgid "For more information on the moving average, refer to the <link href=\"https://en.wikipedia.org/wiki/Moving_average\" name=\"English Wikipedia: Moving average\">corresponding Wikipedia article</link>."
-msgstr ""
+msgstr "Læs mere om glidende gennemsnit i <link href=\"https://en.wikipedia.org/wiki/Moving_average\" name=\"English Wikipedia: Moving average\">den engelske wikipedia-artikel</link>."
#: statistics.xhp
msgctxt ""
@@ -66070,7 +66070,7 @@ msgctxt ""
"par_id1002850\n"
"help.text"
msgid "For more information on paired t-tests, refer to the <link href=\"https://en.wikipedia.org/wiki/T-test\" name=\"English Wikipedia: T-test\">corresponding Wikipedia article</link>."
-msgstr ""
+msgstr "Læs mere om parrede t.tests i <link href=\"https://en.wikipedia.org/wiki/T-test\" name=\"English Wikipedia: T-test\">den engelske wikipedia-artikel</link>."
#: statistics.xhp
msgctxt ""
@@ -66302,7 +66302,7 @@ msgctxt ""
"par_id1003270\n"
"help.text"
msgid "For more information on F-tests, refer to the <link href=\"https://en.wikipedia.org/wiki/F-test\" name=\"English Wikipedia: F-test\">corresponding Wikipedia article</link>."
-msgstr ""
+msgstr "Læs mere om F-tests i <link href=\"https://en.wikipedia.org/wiki/F-test\" name=\"English Wikipedia: F-test\">den engelske wikipedia-artikel</link>."
#: statistics.xhp
msgctxt ""
@@ -66510,7 +66510,7 @@ msgctxt ""
"par_id1003660\n"
"help.text"
msgid "For more information on Z-tests, refer to the <link href=\"https://en.wikipedia.org/wiki/Z-test\" name=\"English Wikipedia: Z-test\">corresponding Wikipedia article</link>."
-msgstr ""
+msgstr "Læs mere om Z-tests i<link href=\"https://en.wikipedia.org/wiki/Z-test\" name=\"English Wikipedia: Z-test\">den engelske wikipedia-artikel</link>."
#: statistics.xhp
msgctxt ""
@@ -66734,7 +66734,7 @@ msgctxt ""
"par_id1004000\n"
"help.text"
msgid "For more information on chi-square tests, refer to the <link href=\"https://en.wikipedia.org/wiki/Chi-square_test\" name=\"English Wikipedia: Chi-square_test\">corresponding Wikipedia article</link>."
-msgstr ""
+msgstr "Læs mere om chi-kvadrat-tests i den danske <link href=\"https://da.wikipedia.org/wiki/Chi_i_anden_test\" name=\"Dansk Wikipedia: Chi_i_anden_test\">Wikipedia-artikel</link>."
#: statistics.xhp
msgctxt ""
@@ -66870,7 +66870,7 @@ msgctxt ""
"par_id1001270\n"
"help.text"
msgid "For more information on regression analysis, refer to the <link href=\"https://en.wikipedia.org/wiki/Regression_analysis\" name=\"English Wikipedia: Regression analysis\">corresponding Wikipedia article</link>."
-msgstr ""
+msgstr "Læs mere om regressionsanalyse i <link href=\"https://da.wikipedia.org/wiki/Regressionsanalyse\" name=\"Danish Wikipedia: Regressionsanalyse\">den danske wikipedia-artikel</link>."
#: statistics_regression.xhp
msgctxt ""
@@ -67118,7 +67118,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "XML Data"
-msgstr ""
+msgstr "XML-data"
#: xml_source.xhp
msgctxt ""
@@ -67142,7 +67142,7 @@ msgctxt ""
"par_id240920171003293400\n"
"help.text"
msgid "<ahelp hid=\".\">Import XML data in a spreadsheet.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Importer XML-data til et regneark.</ahelp>"
#: xml_source.xhp
msgctxt ""
@@ -67150,7 +67150,7 @@ msgctxt ""
"par_id861521496523519\n"
"help.text"
msgid "The XML Source feature allows to import data from arbitrarily structured XML content into cells in an existing spreadsheet document. It allows XML content to be imported either partially or in full, depending on the structure of the XML content and the map definitions that the user defines. The user can specify multiple non-overlapping sub-structures to be mapped to different cell positions within the same document. The user can import either element contents, attribute values or both."
-msgstr ""
+msgstr "Funktionen XML-kilde tillader import af vilkårligt struktureret XML-indhold til celler i et eksisterende regneark. Den lader XML-indhold blive importeret delvist eller helt, afhængigt af strukturen af XML-indholdet og brugerdefinerede opmærkninger. Brugeren kan definere, at flere ikke-overlappende sub-strukturer skal importeres til forskellige cellepositioner inden for det samme dokument. Brugeren kan importere enten element-indhold, attributter eller begge dele."
#: xml_source.xhp
msgctxt ""
@@ -67166,7 +67166,7 @@ msgctxt ""
"hd_id801521494731764\n"
"help.text"
msgid "XML Source Dialog"
-msgstr ""
+msgstr "Dialogen XML-kilde"
#: xml_source.xhp
msgctxt ""
@@ -67174,7 +67174,7 @@ msgctxt ""
"par_id2521\n"
"help.text"
msgid "<image id=\"img_id35279\" src=\"media/screenshots/modules/scalc/ui/xmlsourcedialog/XMLSourceDialog.png\" width=\"16cm\" height=\"13cm\"><alt id=\"alt_id55711\">XML Source Dialog</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id35279\" src=\"media/screenshots/modules/scalc/ui/xmlsourcedialog/XMLSourceDialog.png\" width=\"16cm\" height=\"13cm\"><alt id=\"alt_id55711\">Dialogboksen XML-kilde</alt></image>"
#: xml_source.xhp
msgctxt ""
@@ -67182,7 +67182,7 @@ msgctxt ""
"par_id291521494762812\n"
"help.text"
msgid "The dialog consists of four parts."
-msgstr ""
+msgstr "Dialogen består af fire dele."
#: xml_source.xhp
msgctxt ""
@@ -67198,7 +67198,7 @@ msgctxt ""
"par_id161521494769832\n"
"help.text"
msgid "This lets you specify the path to the XML file that you wish to import into your document."
-msgstr ""
+msgstr "Denne del lader dig angive stien til den XML-fil, som du vil importere til dit dokument."
#: xml_source.xhp
msgctxt ""
@@ -67206,7 +67206,7 @@ msgctxt ""
"hd_id491521494788029\n"
"help.text"
msgid "Map to Document"
-msgstr ""
+msgstr "Opmærk til dokument"
#: xml_source.xhp
msgctxt ""
@@ -67214,7 +67214,7 @@ msgctxt ""
"par_id211521494776007\n"
"help.text"
msgid "This pane shows the structure of the source XML content as a tree. This is initially empty, and gets populated when you specify the source file."
-msgstr ""
+msgstr "Dette panel viser strukturen i XML-kilden som et træ. Den er tom i starten og fyldes, når du angiver kilde-filen."
#: xml_source.xhp
msgctxt ""
@@ -67222,7 +67222,7 @@ msgctxt ""
"par_id161521494796604\n"
"help.text"
msgid "Each element in the tree can be one of three types:"
-msgstr ""
+msgstr "Hvert element i træet kan være en af tre typer:"
#: xml_source.xhp
msgctxt ""
@@ -67230,7 +67230,7 @@ msgctxt ""
"par_id931521494810426\n"
"help.text"
msgid "attribute, represented by the symbol <emph>@</emph>"
-msgstr ""
+msgstr "attribut, repræsenteret af tegnet <emph>@</emph>"
#: xml_source.xhp
msgctxt ""
@@ -67238,7 +67238,7 @@ msgctxt ""
"par_id521521494825665\n"
"help.text"
msgid "single non-recurring element, represented by the symbol <emph></></emph>, and"
-msgstr ""
+msgstr "enkelt ikke-gentaget element, repræsenteret af tegnet <emph></></emph> og"
#: xml_source.xhp
msgctxt ""
@@ -67246,7 +67246,7 @@ msgctxt ""
"par_id691521494844848\n"
"help.text"
msgid "recurring element, represented by the symbol <emph><//></emph>."
-msgstr ""
+msgstr "gentaget element, repræsenteret af tegnet <emph><//></emph>"
#: xml_source.xhp
msgctxt ""
@@ -67254,7 +67254,7 @@ msgctxt ""
"par_id451521494864514\n"
"help.text"
msgid "A non-recurring element is an element that can only occur once under the same parent. It is mapped to a single cell in the document."
-msgstr ""
+msgstr "Et ikke-gentaget element er et element, som kun forekommer en gang under det samme forældre-element. Det opmærkes til en enkelt celle i dokumentet."
#: xml_source.xhp
msgctxt ""
@@ -67262,7 +67262,7 @@ msgctxt ""
"par_id361521494872103\n"
"help.text"
msgid "A recurring element is an element that can appear multiple times under the same parent. It serves as an enclosing parent of a single record entry of multiple record entries. These entries are imported into a range those height equals the number of entries plus one additional header row."
-msgstr ""
+msgstr "Et gentaget element er et element, der forekommer flere gange under det samme forældre-dokument. Det tjener som omsluttende forældre-element for en enkelt post eller flere poster. Disse elementer importeres til et område svarer til antallet af poster plus en overskriftsrække."
#: xml_source.xhp
msgctxt ""
@@ -67278,7 +67278,7 @@ msgctxt ""
"par_id661521494897796\n"
"help.text"
msgid "This field specifies the position of a cell in the document that an element or an attribute is linked to. If it is a non-recurring element or an attribute, it simply points to the cell where the value of the linked element/attribute will get imported. If it is a recurring element, it points to the top-left cell of the range where the whole record entries plus header will get imported."
-msgstr ""
+msgstr "Dette felt angiver positionen på den celle i dokumentet, som et element eller en attribut er linket til. Hvis det er et ikke-gentaget element eller attribut, peger det blot på cellen, som værdien af det linkede element/attribut vil blive importeret til. Er det det gentaget element, peger det på øverste, venstre celle i det område, som alle postens felter plus overskrift vil blive importeret til."
#: xml_source.xhp
msgctxt ""
@@ -67286,7 +67286,7 @@ msgctxt ""
"hd_id151521553082338\n"
"help.text"
msgid "Import"
-msgstr ""
+msgstr "Import"
#: xml_source.xhp
msgctxt ""
@@ -67294,7 +67294,7 @@ msgctxt ""
"par_id131521553077261\n"
"help.text"
msgid "Pressing the Import button starts the import process based on the link definitions that the user has provided. Once the import finishes, the dialog will close."
-msgstr ""
+msgstr "Et tryk på Import-knappen starter import-processen efter de indstillinger, som brugeren har angivet. Når importen er afsluttet, lukkes dialogen."
#: xml_source.xhp
msgctxt ""
@@ -67302,4 +67302,4 @@ msgctxt ""
"par_id240920171007419799\n"
"help.text"
msgid "<link href=\"https://wiki.documentfoundation.org/Development/Calc/XMLSource\" target=\"_blank\" name=\"Wiki page on XML Source\">Wiki page on XML Source</link>"
-msgstr ""
+msgstr "<link href=\"https://wiki.documentfoundation.org/Development/Calc/XMLSource\" target=\"_blank\" name=\"Wiki page on XML Source\">Wiki-siden om XML-kilder</link>"
diff --git a/source/da/helpcontent2/source/text/scalc/06.po b/source/da/helpcontent2/source/text/scalc/06.po
index 95ad1c29dad..e5ffe7e6df9 100644
--- a/source/da/helpcontent2/source/text/scalc/06.po
+++ b/source/da/helpcontent2/source/text/scalc/06.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: 2018-05-08 15:11+0200\n"
-"PO-Revision-Date: 2018-05-24 06:03+0000\n"
+"PO-Revision-Date: 2018-05-26 18:01+0000\n"
"Last-Translator: SteenRønnow <steen.roennow@mail.dk>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: da\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1527141794.000000\n"
+"X-POOTLE-MTIME: 1527357690.000000\n"
#: calcsamplefiles.xhp
msgctxt ""
@@ -22,7 +22,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Calc Sample Files"
-msgstr ""
+msgstr "Calc Eksempelfiler"
#: calcsamplefiles.xhp
msgctxt ""
diff --git a/source/da/helpcontent2/source/text/scalc/guide.po b/source/da/helpcontent2/source/text/scalc/guide.po
index eab3053dfd3..862b5df91d3 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: 2018-05-22 13:16+0200\n"
-"PO-Revision-Date: 2018-05-17 21:26+0000\n"
+"PO-Revision-Date: 2018-05-27 18:16+0000\n"
"Last-Translator: SteenRønnow <steen.roennow@mail.dk>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: da\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1526592366.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1527444983.000000\n"
#: address_auto.xhp
msgctxt ""
@@ -78,7 +78,7 @@ msgctxt ""
"par_id3149210\n"
"help.text"
msgid "If you want a name to be automatically recognized by Calc, the name must start with a letter and be composed of alphanumeric characters. If you enter the name in the formula yourself, enclose the name in single quotation marks ('). If a single quotation mark appears in a name, you must enter a backslash in front of the quotation mark, for example, <item type=\"literal\">'Harry\\'s Bar'</item>."
-msgstr ""
+msgstr "Hvis du ønsker, at Calc automatisk skal genkende et navn, skal det begynde med et bogstav og være sammensat af alfanumeriske tegn. Hvis du selv indtaster navnet i formlen, skal det sættes i enkelte anførselstegn ('). Hvis et enkelt anførselstegn forekommer i et navn, skal du indtaste en omvendt skråstreg foran anførselstegnet, for eksempel, <item type=\"literal\">'Jens\\' Værtshus'.</item>"
#: auto_off.xhp
msgctxt ""
@@ -3830,7 +3830,7 @@ msgctxt ""
"par_id4525284\n"
"help.text"
msgid "<link href=\"https://wiki.documentfoundation.org/Documentation/How_Tos/Defining_a_Data_Range\" name=\"wiki.documentfoundation.org Defining a Data Range\">Wiki page about defining a data range</link>"
-msgstr ""
+msgstr "<link href=\"https://wiki.documentfoundation.org/Documentation/How_Tos/Defining_a_Data_Range\" name=\"wiki.documentfoundation.org Defining a Data Range\">Wikiside om at definere et dataområde</link>"
#: database_sort.xhp
msgctxt ""
@@ -3910,7 +3910,7 @@ msgctxt ""
"par_id1846980\n"
"help.text"
msgid "<link href=\"https://wiki.documentfoundation.org/Documentation/How_Tos/Defining_a_Data_Range\" name=\"wiki.documentfoundation.org: Defining a Data Range\">Wiki page about defining a data range</link>"
-msgstr ""
+msgstr "<link href=\"https://wiki.documentfoundation.org/Documentation/How_Tos/Defining_a_Data_Range\" name=\"wiki.documentfoundation.org: Defining a Data Range\">Engelsk wiki-side om af definere et data-område</link>"
#: datapilot.xhp
msgctxt ""
@@ -4102,7 +4102,7 @@ msgctxt ""
"par_id141525148751543\n"
"help.text"
msgid "If you delete a pivot table linked to a pivot chart, the pivot chart is also deleted. A dialog box opens to confirm the pivot chart deletion."
-msgstr ""
+msgstr "Hvis du sletter en pivot-tabel, der er linket til et pivot-diagram, slettes pivot-diagrammet også. Der åbnes en dialogboks for at bekræfte sletningen af pivot-diagrammet."
#: datapilot_edittable.xhp
msgctxt ""
@@ -8134,7 +8134,7 @@ msgctxt ""
"bm_id541525139738752\n"
"help.text"
msgid "<bookmark_value>chart;pivot chart</bookmark_value> <bookmark_value>pivot table;pivot chart</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>diagram;pivotdiagram</bookmark_value> <bookmark_value>pivotabel;pivotdiagram</bookmark_value>"
#: pivotchart.xhp
msgctxt ""
@@ -8142,7 +8142,7 @@ msgctxt ""
"hd_id141525139671420\n"
"help.text"
msgid "<variable id=\"pivotchart\"><link href=\"text/scalc/guide/pivotchart.xhp\" name=\"Pivot Chart\">Pivot Chart</link></variable>"
-msgstr ""
+msgstr "<variable id=\"pivotchart\"><link href=\"text/scalc/guide/pivotchart.xhp\" name=\"Pivot Chart\">Pivotdiagram</link></variable>"
#: pivotchart.xhp
msgctxt ""
@@ -8150,7 +8150,7 @@ msgctxt ""
"par_id291525139878423\n"
"help.text"
msgid "A pivot chart is a chart with data range and data series of a <link href=\"text/scalc/guide/datapilot.xhp\" name=\"Pivot Table\">pivot table</link>."
-msgstr ""
+msgstr "Et pivotdiagram er et diagram med et dataområde og en dataserie fra en <link href=\"text/scalc/guide/datapilot.xhp\" name=\"Pivot Table\">pivottabel</link>."
#: pivotchart.xhp
msgctxt ""
@@ -8158,7 +8158,7 @@ msgctxt ""
"par_id911525139890364\n"
"help.text"
msgid "Different from static sized tables, where the number of rows and columns are constant, pivot tables can have varying dimensions, depending on the pivot table settings and its data source contents."
-msgstr ""
+msgstr "I modsætning til tabeller med statisk størrelse, hvor antallet af rækker og kolonner er konstante, kan pivottabeller have varierende størrelse, afhængigt af pivottabellens indstillinger og indholdet af dens datakilde."
#: pivotchart.xhp
msgctxt ""
@@ -8166,7 +8166,7 @@ msgctxt ""
"par_id201525141351484\n"
"help.text"
msgid "Pivot charts track the changes in the data issued from a pivot table and adjust the data series and data range accordingly."
-msgstr ""
+msgstr "Pivotdiagram sporer ændringer i de data, der stammer fra en pivottabel og tilpasser dataserien og dataområdet tilsvarende."
#: pivotchart.xhp
msgctxt ""
@@ -8174,7 +8174,7 @@ msgctxt ""
"par_id191525177790601\n"
"help.text"
msgid "<link href=\"https://tomazvajngerl.blogspot.com/2017/03/pivot-charts-in-libreoffice-part-1.html\" name=\"Tomaž Vajngerl blog\">Technical details on %PRODUCTNAME pivot chart implementation</link>."
-msgstr ""
+msgstr "<link href=\"https://tomazvajngerl.blogspot.com/2017/03/pivot-charts-in-libreoffice-part-1.html\" name=\"Tomaž Vajngerl blog\">Tekniske detaljer om implementering af %PRODUCTNAME pivatdiagram</link>."
#: pivotchart_create.xhp
msgctxt ""
@@ -8182,7 +8182,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Creating Pivot Charts"
-msgstr ""
+msgstr "Oprettelse af pivotdiagrammer"
#: pivotchart_create.xhp
msgctxt ""
@@ -8190,7 +8190,7 @@ msgctxt ""
"bm_id531525141739769\n"
"help.text"
msgid "<bookmark_value>pivot chart;creating</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>pivatdiagram;oprette</bookmark_value>"
#: pivotchart_create.xhp
msgctxt ""
@@ -8198,7 +8198,7 @@ msgctxt ""
"hd_id441525141699185\n"
"help.text"
msgid "<variable id=\"pivotchartcreate\"><link href=\"text/scalc/guide/pivotchart_create.xhp\" name=\"pivot chart create\">Creating Pivot Charts</link></variable>"
-msgstr ""
+msgstr "<variable id=\"pivotchartcreate\"><link href=\"text/scalc/guide/pivotchart_create.xhp\" name=\"pivot chart create\">Oprettelse af pivotdiagrammer</link></variable>"
#: pivotchart_create.xhp
msgctxt ""
@@ -8206,7 +8206,7 @@ msgctxt ""
"par_id481525142550652\n"
"help.text"
msgid "To create a pivot chart proceed as below:"
-msgstr ""
+msgstr "Opret et pivotdiagram ved at gøre dette:"
#: pivotchart_create.xhp
msgctxt ""
@@ -8214,7 +8214,7 @@ msgctxt ""
"par_id761525140219212\n"
"help.text"
msgid "Click inside the pivot table that you want to present in your chart."
-msgstr ""
+msgstr "Klik inde i det celleområde, som du vil præsentere i dit diagram."
#: pivotchart_create.xhp
msgctxt ""
@@ -8222,7 +8222,7 @@ msgctxt ""
"par_id351525140237521\n"
"help.text"
msgid "Choose <emph>Insert – Chart</emph> or click in the <image id=\"img_id3157322\" src=\"cmd/sc_insertobjectchart.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3159322\">Insert Chart Icon</alt></image> <emph>Insert Chart</emph> icon in the main toolbar."
-msgstr ""
+msgstr "Vælg <emph>Indsæt – Diagram</emph> eller klik på ikonet <image id=\"img_id3157322\" src=\"cmd/sc_insertobjectchart.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3159322\">Indsæt diagram-ikon</alt></image> <emph>Indsæt diagram</emph> på hovedværktøjslinjen."
#: pivotchart_create.xhp
msgctxt ""
@@ -8230,7 +8230,7 @@ msgctxt ""
"par_id151525140367370\n"
"help.text"
msgid "%PRODUCTNAME Calc automatically detects the pivot table and opens the pivot chart wizard."
-msgstr ""
+msgstr "%PRODUCTNAME Calc sporer automatisk pivottabellen og åbner guiden Pivotdiagram."
#: pivotchart_create.xhp
msgctxt ""
@@ -8238,7 +8238,7 @@ msgctxt ""
"par_id861525140391601\n"
"help.text"
msgid "Select the <link href=\"text/schart/01/wiz_chart_type.xhp\" name=\"Chart type\">Chart type</link> for the data in the chart wizard."
-msgstr ""
+msgstr "Marker <link href=\"text/schart/01/wiz_chart_type.xhp\" name=\"Chart type\">Diagramtype</link> til data i guiden Diagram."
#: pivotchart_create.xhp
msgctxt ""
@@ -8246,7 +8246,7 @@ msgctxt ""
"par_id41525141917275\n"
"help.text"
msgid "The data range and the data series pages of the chart wizard are not enabled. They are controlled by the pivot table."
-msgstr ""
+msgstr "Siderne Dataområde og Dataserie i guiden Diagram er ikke aktiveret. De styres af pivottabellen."
#: pivotchart_create.xhp
msgctxt ""
@@ -8254,7 +8254,7 @@ msgctxt ""
"par_id511525140411625\n"
"help.text"
msgid "Select the <link href=\"text/schart/01/wiz_chart_elements.xhp\" name=\"Chart elements\">Chart Elements</link> of the pivot chart in the wizard."
-msgstr ""
+msgstr "Markér pivotdiagrammets <link href=\"text/schart/01/wiz_chart_elements.xhp\" name=\"Chart elements\">Diagramelementer</link> i guiden."
#: pivotchart_create.xhp
msgctxt ""
@@ -8262,7 +8262,7 @@ msgctxt ""
"par_id1001525165156188\n"
"help.text"
msgid "Click <emph>OK</emph> to close the wizard and create the pivot chart."
-msgstr ""
+msgstr "Klik på <emph>OK</emph> for at lukke guiden og oprette pivotdiagrammet."
#: pivotchart_delete.xhp
msgctxt ""
@@ -8270,7 +8270,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Deleting Pivot Charts"
-msgstr ""
+msgstr "Sletning af pivottdiagrammer"
#: pivotchart_delete.xhp
msgctxt ""
@@ -8278,7 +8278,7 @@ msgctxt ""
"hd_id231525147891984\n"
"help.text"
msgid "<variable id=\"pivotchartdelete\"><link href=\"text/scalc/guide/pivotchart_delete.xhp\" name=\"Deleting a Pivot Chart\">Deleting a Pivot Chart</link></variable>"
-msgstr ""
+msgstr "<variable id=\"pivotchartdelete\"><link href=\"text/scalc/guide/pivotchart_delete.xhp\" name=\"Deleting a Pivot Chart\">Sletning af et pivotdiagram</link></variable>"
#: pivotchart_delete.xhp
msgctxt ""
@@ -8286,7 +8286,7 @@ msgctxt ""
"bm_id231525149357908\n"
"help.text"
msgid "<bookmark_value>pivot chart;deleting</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>pivotdiagram;slet</bookmark_value>"
#: pivotchart_delete.xhp
msgctxt ""
@@ -8294,7 +8294,7 @@ msgctxt ""
"par_id141525147903623\n"
"help.text"
msgid "To delete a pivot chart, select the chart and press <emph>Del</emph>."
-msgstr ""
+msgstr "For at slette et pivotdiagram markerer du diagrammet og trykker på <emph>Del</emph>."
#: pivotchart_delete.xhp
msgctxt ""
@@ -8302,7 +8302,7 @@ msgctxt ""
"par_id431525148462157\n"
"help.text"
msgid "When deleting a pivot chart, the linked pivot table is not affected."
-msgstr ""
+msgstr "Når du sletter et pivotdiagram, påvirkes pivottabellen ikke."
#: pivotchart_delete.xhp
msgctxt ""
@@ -8310,7 +8310,7 @@ msgctxt ""
"par_id141525148751543\n"
"help.text"
msgid "If you delete a pivot table linked to a pivot chart, the pivot chart is also deleted. A dialog box opens to confirm the pivot chart deletion."
-msgstr ""
+msgstr "Hvis du sletter en pivottabel, der er linket til et pivotdiagram, slettes pivotdiagrammet også. Der åbnes en dialogboks for at bekræfte sletningen."
#: pivotchart_edit.xhp
msgctxt ""
@@ -8318,7 +8318,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Editing Pivot Charts"
-msgstr ""
+msgstr "Redigering af pivotdiagrammer"
#: pivotchart_edit.xhp
msgctxt ""
@@ -8326,7 +8326,7 @@ msgctxt ""
"bm_id661525144028976\n"
"help.text"
msgid "<bookmark_value>pivot chart;editing</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>pivotdiagram,redigering</bookmark_value>"
#: pivotchart_edit.xhp
msgctxt ""
@@ -8334,7 +8334,7 @@ msgctxt ""
"hd_id271525144002806\n"
"help.text"
msgid "<variable id=\"pivotchartedit\"><link href=\"text/scalc/guide/pivotchart_edit.xhp\" name=\"Pivot Chart Editing\">Editing Pivot Charts</link></variable>"
-msgstr ""
+msgstr "<variable id=\"pivotchartedit\"><link href=\"text/scalc/guide/pivotchart_edit.xhp\" name=\"Pivot Chart Editing\">Redigering af pivotdiagrammer</link></variable>"
#: pivotchart_edit.xhp
msgctxt ""
@@ -8342,7 +8342,7 @@ msgctxt ""
"par_id971525144066574\n"
"help.text"
msgid "Edit a pivot chart in the same way as normal charts."
-msgstr ""
+msgstr "Rediger et pivotdiagram på samme måde som normale diagrammer."
#: pivotchart_edit.xhp
msgctxt ""
@@ -8350,7 +8350,7 @@ msgctxt ""
"hd_id5631580\n"
"help.text"
msgid "To edit a pivot chart"
-msgstr ""
+msgstr "Redigere et pivotdiagram"
#: pivotchart_filter.xhp
msgctxt ""
@@ -8358,7 +8358,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Filtering Pivot Charts"
-msgstr ""
+msgstr "Filtrering af pivotfiagrammer"
#: pivotchart_filter.xhp
msgctxt ""
@@ -8366,7 +8366,7 @@ msgctxt ""
"hd_id401525165755583\n"
"help.text"
msgid "<variable id=\"pivotchartfilter\"><link href=\"text/scalc/guide/pivotchart_filter.xhp\" name=\"Filtering Pivot Charts\">Filtering Pivot Charts</link></variable>"
-msgstr ""
+msgstr "<variable id=\"pivotchartfilter\"><link href=\"text/scalc/guide/pivotchart_filter.xhp\" name=\"Filtering Pivot Charts\">Filtrering af pivotdiagrammer</link></variable>"
#: pivotchart_filter.xhp
msgctxt ""
@@ -8374,7 +8374,7 @@ msgctxt ""
"par_id781525166702239\n"
"help.text"
msgid "Filters are used to remove unwanted data from the pivot chart. You can use filters in the pivot chart or in the corresponding <link href=\"text/scalc/guide/datapilot_filtertable.xhp\" name=\"Pivot table filtering\">pivot table</link>, since the resulting chart is exactly the same."
-msgstr ""
+msgstr "Filtre bruges til at fjerne uønskede data fra pivotdiagrammet. Du kan bruge filtre i pivotdiagrammet eller i den tilsvarende <link href=\"text/scalc/guide/datapilot_filtertable.xhp\" name=\"Pivot table filtering\">pivottabel</link>, eftersom det deraf følgende diagram er nøjagtig det samme."
#: pivotchart_filter.xhp
msgctxt ""
@@ -8382,7 +8382,7 @@ msgctxt ""
"hd_id201525166689277\n"
"help.text"
msgid "Pivot chart field buttons"
-msgstr ""
+msgstr "Pivotdiagrammets feltknapper"
#: pivotchart_filter.xhp
msgctxt ""
@@ -8390,7 +8390,7 @@ msgctxt ""
"par_id751525167435160\n"
"help.text"
msgid "Pivot chart buttons are unique to pivot charts, normal charts don't have them. The buttons shows the layout of the pivot table, which are the pivot table fields. If present, page fields are displayed in the top. Row fields are displayed on the bottom of the chart next to each other and the legend shows the buttons from column fields stacked."
-msgstr ""
+msgstr "Pivotdiagrammets knapper er unikke for pivotdiagrammer, almindelige diagrammer har dem ikke. Knapperne viser pivottabellens layout, som er felterne i pivottabellen. Hvis de findes, vises sidefelterne øverst. Rækkefelterne vises nederst i diagrammet ved siden af hinden og signaturforklaringen viser knapperne fra kolonnefelterne stablet."
#: pivotchart_filter.xhp
msgctxt ""
@@ -8398,7 +8398,7 @@ msgctxt ""
"par_id681525167692377\n"
"help.text"
msgid "<image src=\"media/helpimg/sc_PivotChartButtons.png\" id=\"img_id801525167692378\" width=\"604px\" height=\"340px\"><alt id=\"alt_id881525167692378\">Pivot chart buttons</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/helpimg/sc_PivotChartButtons.png\" id=\"img_id801525167692378\" width=\"604px\" height=\"340px\"><alt id=\"alt_id881525167692378\">Pivotdiagram-knapper</alt></image>"
#: pivotchart_filter.xhp
msgctxt ""
@@ -8406,7 +8406,7 @@ msgctxt ""
"par_id851525167448337\n"
"help.text"
msgid "The buttons have a pop-up action attached to them. If there is some filtering applied, then the arrow turns blue (similar to the pivot table), so it is easier to see when a field has any filter applied."
-msgstr ""
+msgstr "Knapperne har en pop-up-funktion tilknyttet. Hvis der er anvendt noget filtrering, bliver pilene blå (ligesom i pivottabellen), så det er lettere at se, når der er anvendt et eller andet filter på et felt."
#: pivotchart_filter.xhp
msgctxt ""
@@ -8414,7 +8414,7 @@ msgctxt ""
"par_id401525167457977\n"
"help.text"
msgid "Existing page fields shows what is filtered: when nothing is filtered \"- all -\" is shown, when some data is filtered, then \"- multiple -\" is shown and when only one value is not filtered, the value is shown."
-msgstr ""
+msgstr "Eksisterende sidefelter viser, hvad der er filtreret: når der ikke er filtreret noget, vises \"- alle -\"; når nogle data er filreret vises \"- flere -\" og når kun en værdi er ufiltreret, vises værdien."
#: pivotchart_update.xhp
msgctxt ""
@@ -8422,7 +8422,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Pivot Chart Update"
-msgstr ""
+msgstr "Opdatering af pivotdiagrammer"
#: pivotchart_update.xhp
msgctxt ""
@@ -8430,7 +8430,7 @@ msgctxt ""
"bm_id801525146393791\n"
"help.text"
msgid "<bookmark_value>pivot chart;update</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>pivotdiagram;opdatere</bookmark_value>"
#: pivotchart_update.xhp
msgctxt ""
@@ -8438,7 +8438,7 @@ msgctxt ""
"hd_id281525146417678\n"
"help.text"
msgid "<variable id=\"pivotchartupdate\"><link href=\"text/scalc/guide/pivotchart_update.xhp\" name=\"Pivot Chart Update\">Updating Pivot Charts</link></variable>"
-msgstr ""
+msgstr "<variable id=\"pivotchartupdate\"><link href=\"text/scalc/guide/pivotchart_update.xhp\" name=\"Pivot Chart Update\">Opdatering af pivotdiagrammer</link></variable>"
#: pivotchart_update.xhp
msgctxt ""
@@ -8446,7 +8446,7 @@ msgctxt ""
"par_id831525146706944\n"
"help.text"
msgid "If the data of the source sheet has been changed, you must refresh the pivot table and the pivot chart is updated accordingly. To refresh the pivot table (and thus the pivot chart):"
-msgstr ""
+msgstr "Hvis data i kildearket er ændret, er du nødt til at opdatere pivottabellen og pivotdiagrammet opdateres tilsvarende. For at opdatere pivottabellen (og dermed pivotdiagrammet):"
#: pivotchart_update.xhp
msgctxt ""
@@ -8454,7 +8454,7 @@ msgctxt ""
"par_id451525146722974\n"
"help.text"
msgid "Choose <emph>Data - Pivot Table - Refresh</emph>."
-msgstr ""
+msgstr "Vælg <emph>Data - Pivottabel - Opdater</emph>."
#: pivotchart_update.xhp
msgctxt ""
@@ -8462,7 +8462,7 @@ msgctxt ""
"par_id331525146738273\n"
"help.text"
msgid "Choose <emph>Refresh...</emph> in the context menu of any cell in the pivot table."
-msgstr ""
+msgstr "Vælg <emph>Opdater...</emph> på kontekstmenuen på en vilkårlig celle i pivottabellen."
#: print_details.xhp
msgctxt ""
@@ -9350,7 +9350,7 @@ msgctxt ""
"par_id701519308848244\n"
"help.text"
msgid "Setting sheet names is an important feature to produce readable and understandable spreadsheets documents. To rename a sheet in your document:"
-msgstr ""
+msgstr "Navngivning af ark er en vigtig funktion til produktion af læselige og forståelige regneark. For at omdøbe et ark i dit dokument:"
#: rename_table.xhp
msgctxt ""
@@ -9358,7 +9358,7 @@ msgctxt ""
"par_id3155131\n"
"help.text"
msgid "Click on the sheet tab to select it."
-msgstr ""
+msgstr "Klik på arkets faneblad for at vælge det."
#: rename_table.xhp
msgctxt ""
@@ -9366,7 +9366,7 @@ msgctxt ""
"par_id3146976\n"
"help.text"
msgid "Open the context menu of the sheet tab and choose the <emph>Rename Sheet</emph> command. A dialog box appears where you can enter a new name."
-msgstr ""
+msgstr "Åbn kontekstmenuen på arkets faneblad og vælg kommandoen <emph>Omdøb ark</emph>. Der åbnes en dialogboks, hvor du kan indtaste et nyt navn."
#: rename_table.xhp
msgctxt ""
@@ -9390,7 +9390,7 @@ msgctxt ""
"par_id0909200810502833\n"
"help.text"
msgid "Sheet names can contain almost any character. Some naming restrictions apply, the following characters are not allowed in sheet names:"
-msgstr ""
+msgstr "Ark-navne kan indeholde næsten alle tegn. Der der dog nogle begræninger: disse tegn tillades ikke i ark-navne:"
#: rename_table.xhp
msgctxt ""
@@ -9462,7 +9462,7 @@ msgctxt ""
"par_id090920081050307\n"
"help.text"
msgid "In cell references, a sheet name must be enclosed in single quotes ' when the name contains other characters than alphanumeric or underscore. A single quote contained within a name has to be escaped by doubling it (two single quotes)."
-msgstr ""
+msgstr "I cellehenvisninger skal et ark-navn omsluttes af enkle citationstegn ', når navnet indeholder andre tegn end de alfanumeriske og understregning. Et enkelt citationstegn inde i et navn skal omgås ved at gentage det (to enkelte citationstegn)."
#: rename_table.xhp
msgctxt ""
@@ -9470,7 +9470,7 @@ msgctxt ""
"par_id321519307869857\n"
"help.text"
msgid "For example, you want to reference the cell A1 on a sheet with the following name:"
-msgstr ""
+msgstr "Hvis du for eksempel vil henvise til celle A1 på et ark med navnet:"
#: rename_table.xhp
msgctxt ""
@@ -9502,7 +9502,7 @@ msgctxt ""
"par_id3155444\n"
"help.text"
msgid "The name of a sheet is independent of the name of the spreadsheet. You enter the spreadsheet name when you save it for the first time as a file."
-msgstr ""
+msgstr "Arknavnet er uafhængigt af navnet på regnearket. Du navngiver regnearket, når du første gang gemmer det som fil."
#: rename_table.xhp
msgctxt ""
@@ -9510,7 +9510,7 @@ msgctxt ""
"par_id471519308256437\n"
"help.text"
msgid "The document can contain up to 10,000 individual sheets, which must have different names."
-msgstr ""
+msgstr "Dokumentet kan indeholde op til 10.000 enkelte ark, som skal have forskellige navne."
#: rename_table.xhp
msgctxt ""
@@ -9518,7 +9518,7 @@ msgctxt ""
"par_id81519309108908\n"
"help.text"
msgid "You can set a prefix for the names of new sheets you create. See <link href=\"text/shared/optionen/01061000.xhp\" name=\"prefix names\">this page of Calc options.</link>"
-msgstr ""
+msgstr "Du kan give navne dine nye ark et \"fornavn\". See <link href=\"text/shared/optionen/01061000.xhp\" name=\"prefix names\"> denne side med Calc-indstillinger.</link>"
#: rename_table.xhp
msgctxt ""
@@ -9526,7 +9526,7 @@ msgctxt ""
"par_id81519379108908\n"
"help.text"
msgid "<link href=\"text/shared/optionen/01061000.xhp\" name=\"prefix names\">New sheet names prefixing.</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/optionen/01061000.xhp\" name=\"prefix names\">\"Fornavne\" på nye ark.</link>"
#: rounding_numbers.xhp
msgctxt ""
@@ -9574,7 +9574,7 @@ msgctxt ""
"par_id3154321\n"
"help.text"
msgid "Mark all the cells you want to modify."
-msgstr "Marker alle de celler, som du vil modificere."
+msgstr "Marker alle de celler, som du vil ændre."
#: rounding_numbers.xhp
msgctxt ""
diff --git a/source/da/helpcontent2/source/text/schart.po b/source/da/helpcontent2/source/text/schart.po
index 75b554469ab..268b25e2795 100644
--- a/source/da/helpcontent2/source/text/schart.po
+++ b/source/da/helpcontent2/source/text/schart.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: 2018-05-08 15:10+0200\n"
-"PO-Revision-Date: 2018-03-06 19:18+0000\n"
-"Last-Translator: scootergrisen <scootergrisen@gmail.com>\n"
+"PO-Revision-Date: 2018-05-26 18:06+0000\n"
+"Last-Translator: SteenRønnow <steen.roennow@mail.dk>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: da\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1520363911.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1527357995.000000\n"
#: main0000.xhp
msgctxt ""
@@ -46,7 +46,7 @@ msgctxt ""
"par_id3154685\n"
"help.text"
msgid "<variable id=\"chart\">$[officename] lets you present data graphically in a chart, so that you can visually compare data series and view trends in the data. You can insert charts into spreadsheets, text documents, drawings, and presentations.</variable>"
-msgstr ""
+msgstr "<variable id=\"chart\">$[officename] lader dig præsentere data grafisk i et diagram, så du visuelt kan sammenligne dataserier og vise tendenser i data. Du kan indsætte diagrammer i regneark, tekstdokumenter, tegninger og præsentationer.</variable>"
#: main0000.xhp
msgctxt ""
@@ -622,7 +622,7 @@ msgctxt ""
"par_id0810200902300539\n"
"help.text"
msgid "Opens the properties dialog for the selected element."
-msgstr ""
+msgstr "Åbner dialogen Egenskaber for det valgte element."
#: main0202.xhp
msgctxt ""
@@ -638,7 +638,7 @@ msgctxt ""
"par_id0810200902300594\n"
"help.text"
msgid "Opens the Chart Type dialog."
-msgstr ""
+msgstr "Åbner dialogen Diagramtype."
#: main0202.xhp
msgctxt ""
@@ -654,7 +654,7 @@ msgctxt ""
"par_id0810200902300699\n"
"help.text"
msgid "Opens the Data Table dialog where you can edit the chart data."
-msgstr ""
+msgstr "Åbner dialogen Datatabel, hvor du kan redigere diagramdataene."
#: main0202.xhp
msgctxt ""
@@ -670,7 +670,7 @@ msgctxt ""
"par_id0810200902300630\n"
"help.text"
msgid "The Horizontal Grids icon on the Formatting bar toggles the visibility of the grid display for the Y axis."
-msgstr ""
+msgstr "Ikonet Vandret gitter på værktøjslinjen Formatering slår gitterets synlighed på Y-aksen til/fra."
#: main0202.xhp
msgctxt ""
@@ -686,7 +686,7 @@ msgctxt ""
"par_id081020090230076\n"
"help.text"
msgid "To show or hide a legend, click Legend On/Off on the Formatting bar."
-msgstr ""
+msgstr "For at vise eller skjule en forklaring, klik på Forklaring til/fra på værktøjslinjen Formatering."
#: main0202.xhp
msgctxt ""
@@ -702,7 +702,7 @@ msgctxt ""
"par_id0810200902300784\n"
"help.text"
msgid "Rescales the text in the chart when you change the size of the chart."
-msgstr ""
+msgstr "Genskalerer teksten i diagrammet, når du ændrer diagrammets størrelse."
#: main0202.xhp
msgctxt ""
@@ -718,7 +718,7 @@ msgctxt ""
"par_id0810200902300834\n"
"help.text"
msgid "Moves all chart elements to their default positions inside the current chart. This function does not alter the chart type or any other attributes other than the position of elements."
-msgstr ""
+msgstr "Flytter alle diagramobjekter til deres standardplaceringer inden for det aktuelle diagram. Denne funktion ændrer ikke diagramtypen eller andre attributter end objekternes placering."
#: main0503.xhp
msgctxt ""
diff --git a/source/da/helpcontent2/source/text/schart/00.po b/source/da/helpcontent2/source/text/schart/00.po
index 9d0b40b0995..90e530ef0c9 100644
--- a/source/da/helpcontent2/source/text/schart/00.po
+++ b/source/da/helpcontent2/source/text/schart/00.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: 2018-05-08 15:10+0200\n"
-"PO-Revision-Date: 2017-07-06 20:00+0000\n"
-"Last-Translator: David Lamhauge <davidlamhauge@gmail.com>\n"
+"PO-Revision-Date: 2018-05-26 18:07+0000\n"
+"Last-Translator: Leif Lodahl <leiflodahl@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: da\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1499371213.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1527358021.000000\n"
#: 00000004.xhp
msgctxt ""
@@ -70,7 +70,7 @@ msgctxt ""
"par_id3153160\n"
"help.text"
msgid "<variable id=\"efgttl\">Choose <emph>Insert - Titles</emph> (Charts)</variable>"
-msgstr ""
+msgstr "<variable id=\"efgttl\">Vælg <emph>Indsæt - Titel </emph>(diagrammer)</variable>"
#: 00000004.xhp
msgctxt ""
@@ -454,7 +454,7 @@ msgctxt ""
"par_id161525135741575\n"
"help.text"
msgid "<emph>Insert Chart</emph>"
-msgstr ""
+msgstr "Vælg <emph>Indsæt Diagram</emph>."
#: 00000004.xhp
msgctxt ""
@@ -462,7 +462,7 @@ msgctxt ""
"par_id9631641\n"
"help.text"
msgid "Choose <emph>Insert - Chart...</emph>"
-msgstr ""
+msgstr "Vælg <emph>Indsæt - Diagram...</emph>."
#: 00000004.xhp
msgctxt ""
@@ -470,7 +470,7 @@ msgctxt ""
"par_id2985320\n"
"help.text"
msgid "Choose <emph>Insert - Chart...</emph>"
-msgstr ""
+msgstr "Vælg <emph>Indsæt - Diagram...</emph>."
#: 00000004.xhp
msgctxt ""
@@ -478,7 +478,7 @@ msgctxt ""
"par_id1096530\n"
"help.text"
msgid "Double-click a chart, then choose <emph>Format - Data Ranges</emph>"
-msgstr ""
+msgstr "Dobbeltklik på et diagram og vælg derefter <emph>Formater - Dataområder</emph>"
#: 00000004.xhp
msgctxt ""
diff --git a/source/da/helpcontent2/source/text/schart/01.po b/source/da/helpcontent2/source/text/schart/01.po
index 30aadce5f37..5d112ff3e0f 100644
--- a/source/da/helpcontent2/source/text/schart/01.po
+++ b/source/da/helpcontent2/source/text/schart/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: 2018-02-27 13:56+0100\n"
-"PO-Revision-Date: 2017-11-25 15:59+0000\n"
-"Last-Translator: David Lamhauge <davidlamhauge@gmail.com>\n"
+"PO-Revision-Date: 2018-05-26 18:07+0000\n"
+"Last-Translator: Leif Lodahl <leiflodahl@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: da\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1511625557.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1527358040.000000\n"
#: 03010000.xhp
msgctxt ""
@@ -1142,7 +1142,7 @@ msgctxt ""
"par_id0428200810573991\n"
"help.text"
msgid "<ahelp hid=\".\">Enable to use the positive error values also as negative error values. You can only change the value of the \"Positive (+)\" box. That value gets copied to the \"Negative (-)\" box automatically.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Aktiver for at bruge såvel de positive fejlværdier som de negative fejlværdier. Du kan kun ændre værdien af den \"Positve (+)\" boks. Denne værdi bliver automatisk kopieret til den \"Negative (-)\" boks.</ahelp>"
#: 04050000.xhp
msgctxt ""
@@ -3230,7 +3230,7 @@ msgctxt ""
"par_id3154319\n"
"help.text"
msgid "<variable id=\"achsen\"><ahelp hid=\".\">Opens a dialog, where you can edit the properties of the selected axis.</ahelp></variable> The name of the dialog depends on the selected axis."
-msgstr ""
+msgstr "<variable id=\"achsen\"><ahelp hid=\".\">Åbner en dialog, hvor du kan redigere egenskaberne for den valgte akse.</ahelp></variable> Dialogens navn afhænger af den valgte akse."
#: 05040100.xhp
msgctxt ""
diff --git a/source/da/helpcontent2/source/text/sdraw/guide.po b/source/da/helpcontent2/source/text/sdraw/guide.po
index 8320ed615d0..92836c7f140 100644
--- a/source/da/helpcontent2/source/text/sdraw/guide.po
+++ b/source/da/helpcontent2/source/text/sdraw/guide.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2018-04-17 15:54+0200\n"
-"PO-Revision-Date: 2016-05-21 19:11+0000\n"
-"Last-Translator: Leif Lodahl <leiflodahl@gmail.com>\n"
+"PO-Revision-Date: 2018-05-26 18:08+0000\n"
+"Last-Translator: SteenRønnow <steen.roennow@mail.dk>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: da\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1463857893.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1527358087.000000\n"
#: align_arrange.xhp
msgctxt ""
@@ -262,7 +262,7 @@ msgctxt ""
"bm_id3149263\n"
"help.text"
msgid "<bookmark_value>colors; defining</bookmark_value> <bookmark_value>user-defined colors</bookmark_value> <bookmark_value>custom colors</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>farver; definere og gemme </bookmark_value> <bookmark_value>brugerdefinerede farver</bookmark_value><bookmark_value>tilpassede farver</bookmark_value>"
#: color_define.xhp
msgctxt ""
@@ -278,7 +278,7 @@ msgctxt ""
"par_id3154511\n"
"help.text"
msgid "Define custom colors and add them to the <emph>Custom</emph> color palette."
-msgstr ""
+msgstr "Definér brugertilpassede farver og tilføj dem til farvepaletten <emph>brugertilpasset</emph>."
#: color_define.xhp
msgctxt ""
@@ -294,7 +294,7 @@ msgctxt ""
"par_id3150327\n"
"help.text"
msgid "Choose <emph>Format - Area</emph>, click the <emph>Area</emph> tab and press the <emph>Color</emph> button. A table of the predefined palette colors is displayed."
-msgstr ""
+msgstr "Vælg <emph>Formater - Område</emph>, klik på fanebladet <emph>Område</emph> og tryk på knappen <emph>Farve</emph>. Der vises en tabel med de prædefinerede farvepaletter."
#: color_define.xhp
msgctxt ""
@@ -302,7 +302,7 @@ msgctxt ""
"par_id3154657\n"
"help.text"
msgid "Custom colors are saved in the <emph>Custom</emph> color palette."
-msgstr ""
+msgstr "Brugertilpassede farver gemmes i farvepaletten <emph>Brugertilpasset</emph>."
#: color_define.xhp
msgctxt ""
@@ -310,7 +310,7 @@ msgctxt ""
"par_id3166425\n"
"help.text"
msgid "Click a color in the table that is similar to the one you want to define. You can select the similar color from any of the available color palettes in the <emph>Colors</emph> area on the left or the <emph>Recent colors</emph> in the list below the color table. The color appears in the <emph>New</emph> preview box to the right of the dialog."
-msgstr ""
+msgstr "I tabellen klikker du på en farve, som ligner den, du vil definere. Du kan vælge den på enhver af de tilgængelige farvepaletter i området <emph>Farver</emph> til venstre eller fra <emph>Seneste farver</emph> på listen under farvetabellen. Farven vises i forhåndsboksen <emph>Ny</emph> i dialogens højre side. "
#: color_define.xhp
msgctxt ""
@@ -318,7 +318,7 @@ msgctxt ""
"par_id41522705652544\n"
"help.text"
msgid "Click the <emph>Pick</emph> button to open the <link href=\"text/shared/optionen/01010501.xhp\" name=\"linkname\">Pick a Color</link> dialog."
-msgstr ""
+msgstr "Klik på <emph>Vælg</emph>-knappen for at åbne dialogen<link href=\"text/shared/optionen/01010501.xhp\" name=\"linkname\">Vælg en farve</link>."
#: color_define.xhp
msgctxt ""
@@ -326,7 +326,7 @@ msgctxt ""
"par_id4979705\n"
"help.text"
msgid "%PRODUCTNAME uses only the RGB color model for printing in color. The RGB values of the selected color are displayed below the preview boxes."
-msgstr ""
+msgstr "%PRODUCTNAME bruger udelukkende RGB-farvemodellen til at udskrive i farver. Den valgte farves RGB-værdier vises under forhåndsboksen."
#: color_define.xhp
msgctxt ""
@@ -334,7 +334,7 @@ msgctxt ""
"par_id691522706451849\n"
"help.text"
msgid "Press the <emph>Add</emph> button to add the custom color to the <emph>Custom</emph> color palette. A dialog box asking to enter a color name appears. Enter a unique name for the new color within all color names existing in the <emph>Custom</emph> color palette."
-msgstr ""
+msgstr "Tryk på <emph>Tilføj</emph>-knappen for at tilføje den tilpassede fave til farvepaletten <emph>Brugertilpasset</emph>. En dialogboks Indtast et unikt navn til den nye farve mellem alle de farvenavne, der findes i farvepaletten <emph>Brugertilpasset</emph>."
#: color_define.xhp
msgctxt ""
@@ -342,7 +342,7 @@ msgctxt ""
"par_id701522707038880\n"
"help.text"
msgid "To remove a color from the <emph>Custom</emph> color palette, select the <emph>Custom</emph> color palette in the <emph>Colors</emph> area, select the color to be deleted and click <emph>Delete</emph>."
-msgstr ""
+msgstr "For at fjerne en farve fra favepeletten <emph>Brugertilpasset</emph>passet vælger du farvepaletten <emph>Brugertilpasset</emph> i området <emph>Farver</emph> og vælger farven, der skal slettes og klikker på <emph>Slet</emph>."
#: color_define.xhp
msgctxt ""
@@ -350,7 +350,7 @@ msgctxt ""
"par_id661522713547390\n"
"help.text"
msgid "<link href=\"text/shared/optionen/01010500.xhp\" name=\"Color\">Color dialog</link>."
-msgstr ""
+msgstr "<link href=\"text/shared/optionen/01010500.xhp\" name=\"Color\">dialogen Farve</link>"
#: color_define.xhp
msgctxt ""
diff --git a/source/da/helpcontent2/source/text/shared/00.po b/source/da/helpcontent2/source/text/shared/00.po
index 03528dbaba6..ec343d3115e 100644
--- a/source/da/helpcontent2/source/text/shared/00.po
+++ b/source/da/helpcontent2/source/text/shared/00.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: 2018-05-22 13:16+0200\n"
-"PO-Revision-Date: 2018-05-18 14:45+0000\n"
-"Last-Translator: SteenRønnow <steen.roennow@mail.dk>\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
+"PO-Revision-Date: 2018-06-13 14:15+0000\n"
+"Last-Translator: Leif Lodahl <leiflodahl@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: da\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1526654700.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1528899350.000000\n"
#: 00000001.xhp
msgctxt ""
@@ -397,16 +397,16 @@ msgctxt ""
"00000001.xhp\n"
"hd_id3149670\n"
"help.text"
-msgid "Back"
-msgstr "Tilbage"
+msgid "Reset"
+msgstr "Nulstil"
#: 00000001.xhp
msgctxt ""
"00000001.xhp\n"
"par_id3145068\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optionsdialog/revert\">Resets modified values back to the $[officename] default values.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/optionsdialog/revert\">Nulstiller ændrede værdier tilbage til standardværdierne for $[officename].</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optionsdialog/revert\">Resets changes made to the current tab to those applicable when this dialog was opened.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/optionsdialog/revert\">Nulstil ændringer udført på den aktuelle fane til dem, der var gældende, da denne dialog blev åbnet.</ahelp>"
#: 00000001.xhp
msgctxt ""
@@ -552,6 +552,54 @@ msgctxt ""
msgid "<variable id=\"ShiftF1\">Press Shift+F1 and point to a control to learn more about that control.</variable>"
msgstr "<variable id=\"ShiftF1\">Tryk Skift+F1 og peg på et kontrolelement for at lære mere om det pågældende kontrolelement.</variable>"
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"hd_id631527692833772\n"
+"help.text"
+msgid "Options dialog buttons"
+msgstr "Dialogen Indstillingsknapper"
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"hd_id831527692839432\n"
+"help.text"
+msgid "OK"
+msgstr "Ok"
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"par_id471527692844934\n"
+"help.text"
+msgid "Save the changes in the page and close the Options dialog."
+msgstr "Gem ændringerne på siden og luk dialogen Indstillinger."
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"hd_id261527692850720\n"
+"help.text"
+msgid "Cancel"
+msgstr "Annuller"
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"par_id571527692855533\n"
+"help.text"
+msgid "Close the Options dialog and discard all changes done."
+msgstr "Luk dialogen Indstillinger og kassér alle ændringer."
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"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 Options dialog."
+msgstr "Nogle indstillinger kan ikke nulstilles, når de en gang er redigeret. Nulstil enten ændringerne manuelt eller klik på <emph>Annuller</emph> og åbn dialogen Indstillinger igen."
+
#: 00000002.xhp
msgctxt ""
"00000002.xhp\n"
@@ -614,7 +662,7 @@ msgctxt ""
"par_id11525000863861\n"
"help.text"
msgid "<variable id=\"epubv\">EPUB is standard for electronic book files with the extension <emph>.epub</emph> that can be downloaded and read on devices like smartphones, tablets, computers, or e-readers.</variable>"
-msgstr ""
+msgstr "<variable id=\"epubv\">EPUB er standardem for elektroniske bogfiler, med filtypenavnet <emph>epub</emph>, som kan downloades og læses på enheder som smartphones, tablets, computere eller e-læsere.</variable>"
#: 00000002.xhp
msgctxt ""
@@ -622,7 +670,7 @@ msgctxt ""
"par_id981525003378764\n"
"help.text"
msgid "EPUB is a technical standard published now by the <link href=\"https://www.w3.org/publishing/\" name=\"IDPF\">Publishing group of W3C</link>. EPUB is a popular format because it is open and is based on HTML."
-msgstr ""
+msgstr "EPUB er en teknisk standard, der nu er offentliggjort af <link href=\"https://www.w3.org/publishing/\" name=\"IDPF\">W3Cs publiceringsgruppe</link>. EPUB er et populært format, fordi det er åbent og er baseret på HTML."
#: 00000002.xhp
msgctxt ""
@@ -630,7 +678,7 @@ msgctxt ""
"par_id291525000873676\n"
"help.text"
msgid "An EPUB publication is delivered as a single file and is an unencrypted zipped archive containing a website. It includes HTML files, images, CSS style sheets, and other assets such as metadata, multimedia and interactivity."
-msgstr ""
+msgstr "En EPUB-publikation leveres som en enkelt fil og er en ukrypteret, zipped arkivfil, der indeholder et websted. Den indeholder HTML-filer, billeder, CSS typografiark og andre aktiver såsom metadata, multidata og interaktivitet."
#: 00000002.xhp
msgctxt ""
@@ -1270,7 +1318,7 @@ msgctxt ""
"hd_id161521663319917\n"
"help.text"
msgid "<variable id=\"samplefile\">Open file with example:</variable>"
-msgstr ""
+msgstr "<variable id=\"samplefile\">Åbn en fil med et eksempel.</variable>"
#: 00000004.xhp
msgctxt ""
@@ -2862,7 +2910,7 @@ msgctxt ""
"par_id3145669\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\"></caseinline><caseinline select=\"DRAW\"></caseinline><caseinline select=\"IMPRESS\"></caseinline><defaultinline>$[officename] Writer can read various versions of the Microsoft Word text format. You also can save your own texts in Word format. However, not everything available with $[officename] Writer can be transferred to Word, and not everything can be imported.</defaultinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\"></caseinline><caseinline select=\"DRAW\"></caseinline><caseinline select=\"IMPRESS\"></caseinline><defaultinline>$[officename] Writer kan læse forskellige versioner af tekstformatet Microsoft Word. Du kan også gemme dine egne tekster i Word-format. Dog kan alt fra $[officename] Writer ikke overføres til MS Word og ikke alt kan importeres.</defaultinline></switchinline>"
#: 00000020.xhp
msgctxt ""
@@ -3310,7 +3358,7 @@ msgctxt ""
"par_idN10725\n"
"help.text"
msgid "The OpenDocument file format (ODF) is a standardized file format used by many software applications. You can find more information at the Wikipedia site: <link href=\"https://en.wikipedia.org/wiki/OpenDocument\" name=\"English Wikipedia: OpenDocument\">wikipedia.org/wiki/OpenDocument</link>."
-msgstr ""
+msgstr "OpenDocument-filformatet (ODF) er et standardiseret filformat, der bruges af mange programmer. Du kan finde mere information på Wikipedia-stedet: <link href=\"https://da.wikipedia.org/wiki/OpenDocument\" name=\"Dansk Wikipedia: OpenDocument\">da.wikipedia.org/wiki/OpenDocument</link>."
#: 00000021.xhp
msgctxt ""
@@ -4686,7 +4734,7 @@ msgctxt ""
"par_id3156329\n"
"help.text"
msgid "<ahelp hid=\".\">Separates data into columns using the custom separator that you specify. Note: The custom separator must also be contained in your data.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Adskilte dato til kolonner med en kolonneseperator, du angiver. OBS: Den bryúgertilpassede seperator skal også indgå i dine data.</ahelp>"
#: 00000208.xhp
msgctxt ""
@@ -4710,7 +4758,7 @@ msgctxt ""
"hd_id3150979\n"
"help.text"
msgid "Trim spaces"
-msgstr ""
+msgstr "Beskær mellemrum"
#: 00000208.xhp
msgctxt ""
@@ -4718,7 +4766,7 @@ msgctxt ""
"par_id3153828\n"
"help.text"
msgid "<ahelp hid=\".\">Removes starting and trailing spaces from data fields.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Fjerner mellemrun i begyndelsen og skutningen af data felter.</ahelp>"
#: 00000208.xhp
msgctxt ""
@@ -4726,7 +4774,7 @@ msgctxt ""
"hd_id3155341\n"
"help.text"
msgid "String delimiter"
-msgstr ""
+msgstr "Strengafgrænser"
#: 00000208.xhp
msgctxt ""
@@ -4758,7 +4806,7 @@ msgctxt ""
"hd_id314847411\n"
"help.text"
msgid "Format quoted field as text"
-msgstr ""
+msgstr "Formater anførte felt som tekst"
#: 00000208.xhp
msgctxt ""
@@ -4814,7 +4862,7 @@ msgctxt ""
"par_id171220172144419125\n"
"help.text"
msgid "<ahelp hid=\".\">When this option is enabled, Calc preserves previous content of cells when pasting empty ones. Otherwise, Calc deletes content of previous cells.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Når denne valgmulighed er aktivetet, gemmer Calc det tidligere indhold af cellerne, når der kopieres tomme ind. Ellers sletter Calc indholdet af de foregående celler.</ahelp>"
#: 00000208.xhp
msgctxt ""
@@ -4822,7 +4870,7 @@ msgctxt ""
"par_id171220172156279613\n"
"help.text"
msgid "In <emph>Text to Columns</emph> conversion, if cell content begins with a separator and this option is disabled, then first column will be emptied."
-msgstr ""
+msgstr "I konverteringen <emph>Tekst til kolonner</emph>, vil den første kolonne blive tømt, hvis celleindholdet begynder med en separator og denne valgmulighed er deaktiveret,"
#: 00000208.xhp
msgctxt ""
@@ -5078,7 +5126,7 @@ msgctxt ""
"par_id3147377\n"
"help.text"
msgid "<ahelp hid=\".\">Shows how the imported text will look after it is separated into columns. To apply a format to a column when it is imported, click a column and select a <emph>Column type</emph>. When you select a <emph>Column type</emph>, the column heading displays the applied format.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Viser hvordan den importerede tekst vil se ud, efter den er opdelt i kolonner. For at anvende et format på en kolonne, når den er importeret, klikker du på en kolonne og vælger <emph>Kolonnetype</emph>. Når du vælger en <emph>Kolonnetype</emph>, viser kolonneoverskriften det anvendte format.</ahelp>"
#: 00000208.xhp
msgctxt ""
@@ -6006,7 +6054,7 @@ msgctxt ""
"par_id181526424294565\n"
"help.text"
msgid "Choose <emph>File - Digital Signatures - Sign Existing PDF</emph>."
-msgstr ""
+msgstr "Vælg <emph>Filer - Digitale Signaturer - Underskriv eksisterende PDF</emph>."
#: 00000401.xhp
msgctxt ""
@@ -6174,7 +6222,7 @@ msgctxt ""
"par_id621525017637963\n"
"help.text"
msgid "Choose <emph>File - Export as EPUB</emph>."
-msgstr ""
+msgstr "Vælg <emph>Filer - Eksporter som EPUB</emph>."
#: 00000401.xhp
msgctxt ""
@@ -6182,7 +6230,7 @@ msgctxt ""
"par_id121525017890767\n"
"help.text"
msgid "<image src=\"cmd/sc_exportdirecttoepub.png\" id=\"img_id291525017890767\" width=\"0.566cm\" height=\"0.566cm\"> <alt id=\"alt_id51525017890767\">Export as EPUB</alt> </image>"
-msgstr ""
+msgstr "<image src=\"cmd/sc_exportdirecttoepub.png\" id=\"img_id291525017890767\" width=\"0.566cm\" height=\"0.566cm\"> <alt id=\"alt_id51525017890767\">Eksporter som EPUB</alt> </image>"
#: 00000401.xhp
msgctxt ""
@@ -6198,7 +6246,7 @@ msgctxt ""
"par_id3163421\n"
"help.text"
msgid "Choose <emph>File - Export As - Export as PDF</emph>, Digital Signatures tab"
-msgstr ""
+msgstr "Vælg fanen <emph>Filer - Eksporter som - Eksporter som PDF</emph>, Digitale signaturer"
#: 00000401.xhp
msgctxt ""
@@ -6206,7 +6254,7 @@ msgctxt ""
"par_id3166421\n"
"help.text"
msgid "Choose <emph>File - Export As - Export as PDF</emph>"
-msgstr ""
+msgstr "Vælg <emph>Filer - Eksporter som - Eksporter som PDF</emph>"
#: 00000401.xhp
msgctxt ""
@@ -6670,7 +6718,7 @@ msgctxt ""
"par_id3150396\n"
"help.text"
msgid "Choose <emph>Tools - AutoCorrect - Apply and Edit Changes</emph>. The AutoCorrect dialog appears. Click the <emph>Edit Changes</emph> button and navigate to the <emph>List</emph> tab."
-msgstr ""
+msgstr "Vælg <emph>Formater - Autokorrektur - Anvend og rediger ændringer.</emph> Dialogen Autokorrektur vises, klik knappen <emph>Rediger ændringer</emph>, se fanebladet <emph>Liste</emph>"
#: 00000402.xhp
msgctxt ""
@@ -6950,7 +6998,7 @@ msgctxt ""
"par_id3149962\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">Zoom also with (+) (-) (×) and (÷) on the number keypad</caseinline><caseinline select=\"IMPRESS\">Zoom also with (+) (-) (×) and (÷) on the number keypad</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"DRAW\">Zoom også med (+) (-) (×) og (÷) på det numeriske tastatur</caseinline><caseinline select=\"IMPRESS\">Zoom også med (+) (-) (×) og (÷) på det numeriske tastatur</caseinline></switchinline>"
#: 00000403.xhp
msgctxt ""
@@ -7102,7 +7150,7 @@ msgctxt ""
"par_id3149046\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> + Shift + F4 keys"
-msgstr ""
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Kommando</caseinline><defaultinline>Ctrl</defaultinline></switchinline> + Skift +F4"
#: 00000403.xhp
msgctxt ""
@@ -7158,7 +7206,7 @@ msgctxt ""
"par_idN1091B\n"
"help.text"
msgid "<variable id=\"grid\">Choose <emph>View - Grid</emph> (Impress or Draw)</variable>"
-msgstr ""
+msgstr "<variable id=\"grid\">Vælg <emph>Vis - Gitter</emph> (Impress eller Draw)</variable>"
#: 00000403.xhp
msgctxt ""
@@ -7166,7 +7214,7 @@ msgctxt ""
"par_idN1092E\n"
"help.text"
msgid "<variable id=\"guides\">Choose <emph>View - Snap Lines</emph> (Impress or Draw)</variable>"
-msgstr ""
+msgstr "<variable id=\"guides\">Vælg <emph>Vis - Fanglinjer</emph> (Impress eller Draw)</variable>"
#: 00000404.xhp
msgctxt ""
@@ -7670,7 +7718,7 @@ msgctxt ""
"par_id3146957\n"
"help.text"
msgid "<variable id=\"galleryregisterdateien\">Choose <emph>Tools - Gallery</emph> or click the <emph>Gallery </emph>icon on the <emph>Standard</emph> Bar - <emph>New Theme</emph> button - <emph>Files</emph> tab.</variable>"
-msgstr ""
+msgstr "<variable id=\"galleryregisterdateien\">Vælg <emph>Funktioner - Galleri</emph> eller klik på ikonet <emph>Galleri</emph> på <emph>Standard</emph>-linjen - knappen <emph>Nyt tema</emph> på fanebladet <emph>Filer</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -7718,7 +7766,7 @@ msgctxt ""
"par_id3156326\n"
"help.text"
msgid "<variable id=\"hangul\">Choose <emph>Tools - Language - Hangul/Hanja Conversion</emph>. Asian language support must be enabled.</variable>"
-msgstr ""
+msgstr "<variable id=\"hangul\">Vælg <emph>Funktioner - Sprog - Hangul/Hanja-konvertering</emph> (Understøttelse af asiatiske sprog skal være aktiveret)</variable>"
#: 00000406.xhp
msgctxt ""
@@ -7726,7 +7774,7 @@ msgctxt ""
"par_idN10705\n"
"help.text"
msgid "<variable id=\"chinese\">Choose <emph>Tools - Language - Chinese Conversion</emph>. Asian language support must be enabled.</variable>"
-msgstr ""
+msgstr "<variable id=\"chinese\">Vælg <emph>Funktioner - Sprog - Kinesisk konvertering</emph>. Understøttelse af asiatiske sprog skal være aktiveret.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -7734,7 +7782,7 @@ msgctxt ""
"par_idN1071E\n"
"help.text"
msgid "<variable id=\"chineseedit\">Choose <emph>Tools - Language - Chinese Conversion</emph> - <emph>Edit terms</emph> button. Asian language support must be enabled.</variable>"
-msgstr ""
+msgstr "<variable id=\"chineseedit\">Vælg <emph>Funktioner - Sprog - Kinesisk konvertering</emph> - knappen <emph>Rediger begreber</emph>. Understøttelse af asiatiske sprog skal være aktiveret.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -7742,7 +7790,7 @@ msgctxt ""
"par_id3155419\n"
"help.text"
msgid "<variable id=\"rechtschreibungmenue\">Choose <emph>Tools - Spelling</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"rechtschreibungmenue\">Vælg <emph>Funktioner - Stavekontrol</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -7750,7 +7798,7 @@ msgctxt ""
"par_id3150771\n"
"help.text"
msgid "<variable id=\"zoptionen\">Choose <emph>Tools - Spelling</emph>, then click <emph>Options</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"zoptionen\">Vælg <emph>Funktioner - Stavekontrol</emph> og klik derefter på <emph>Indstillinger</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -7774,7 +7822,7 @@ msgctxt ""
"par_id3153320\n"
"help.text"
msgid "Choose <emph>Tools - Color Replacer</emph> ($[officename] Draw and $[officename] Impress)."
-msgstr ""
+msgstr "Vælg <emph>Funktioner - Pipette</emph> ($[officename] Draw og $[officename] Impress)"
#: 00000406.xhp
msgctxt ""
@@ -7782,7 +7830,7 @@ msgctxt ""
"par_idN107E9\n"
"help.text"
msgid "<variable id=\"mediaplayer\">Choose <emph>Tools - Media Player</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"mediaplayer\">Vælg <emph>Funktioner - Medieafspiller</emph></variable>"
#: 00000406.xhp
msgctxt ""
@@ -7790,7 +7838,7 @@ msgctxt ""
"par_id3151385\n"
"help.text"
msgid "<variable id=\"makro\">Choose <emph>Tools - Macros - Organize Macros - %PRODUCTNAME Basic</emph>, or press <switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>+F11 (if not assigned by your system).</variable>"
-msgstr ""
+msgstr "<variable id=\"makro\">Vælg <emph>Funktioner - Makroer - Administrer makroer - %PRODUCTNAME Basic</emph>, eller tryk på <switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>+F11 (hvis den ikke er tildelt på dit system)</variable> "
#: 00000406.xhp
msgctxt ""
@@ -7806,7 +7854,7 @@ msgctxt ""
"par_id3150398\n"
"help.text"
msgid "<variable id=\"passwort\">Choose <emph>Tools - Macros - Organize Macros - %PRODUCTNAME Basic</emph>, click the <emph>Organizer</emph> button, click the <emph>Libraries</emph> tab, and then click the <emph>Password</emph> button.</variable>"
-msgstr ""
+msgstr "<variable id=\"passwort\">Vælg <emph>Funktioner - Makroer - Administrer makroer - %PRODUCTNAME Basic</emph>, klik på knappen <emph>Administration</emph>, klik på fanebladet <emph>Biblioteker</emph> og klik så på knappen <emph>Adgangskode</emph></variable>"
#: 00000406.xhp
msgctxt ""
@@ -7814,7 +7862,7 @@ msgctxt ""
"par_idN10843\n"
"help.text"
msgid "<variable id=\"packagemanager\">Choose <emph>Tools - Extension Manager</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"packagemanager\">Vælg <emph>Funktioner - Udvidelsesadministration</emph></variable>"
#: 00000406.xhp
msgctxt ""
@@ -7822,7 +7870,7 @@ msgctxt ""
"par_id9988402\n"
"help.text"
msgid "<variable id=\"packagemanager_eu\">Choose <emph>Tools - Extension Manager</emph>, click <emph>Updates</emph> button.</variable>"
-msgstr ""
+msgstr "<variable id=\"packagemanager_eu\">Vælg <emph>Funktioner - Udvidelsesadministration</emph>, klik på knappen <emph>Opdateringer</emph> </variable>"
#: 00000406.xhp
msgctxt ""
@@ -7830,7 +7878,7 @@ msgctxt ""
"par_id3151106\n"
"help.text"
msgid "<variable id=\"xmlfilter\">Choose <emph>Tools - XML Filter Settings</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"xmlfilter\">Vælg <emph>Funktioner - Indstillinger for XML-filter</emph></variable>"
#: 00000406.xhp
msgctxt ""
@@ -7838,7 +7886,7 @@ msgctxt ""
"par_id3153778\n"
"help.text"
msgid "<variable id=\"xmlfilteredit\">Choose <emph>Tools - XML Filter Settings</emph>, then click <emph>New</emph> or <emph>Edit</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"xmlfilteredit\">Vælg <emph>Funktioner - Indstillinger for XML-filter</emph>, klik på <emph>Nyt</emph> eller <emph>Rediger</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -7846,7 +7894,7 @@ msgctxt ""
"par_id3148979\n"
"help.text"
msgid "<variable id=\"xmlfiltertest\">Choose <emph>Tools - XML Filter Settings</emph>, then click <emph>Test XSLTs</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"xmlfiltertest\">Vælg <emph>Funktioner - Indstillinger for XML-filter</emph>, klik på <emph>Test XSLT'er</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -7854,7 +7902,7 @@ msgctxt ""
"par_id3148672\n"
"help.text"
msgid "<variable id=\"anpassen\">Choose <emph>Tools - Customize</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"anpassen\">Vælg <emph>Funktioner - Tilpas</emph></variable>"
#: 00000406.xhp
msgctxt ""
@@ -7862,7 +7910,7 @@ msgctxt ""
"par_id3147230\n"
"help.text"
msgid "<variable id=\"menue\">Choose <emph>Tools - Customize - Menus</emph> tab.</variable>"
-msgstr ""
+msgstr "<variable id=\"menue\">Vælg fanebladet <emph>Funktioner - Tilpas - Menuer</emph></variable>"
#: 00000406.xhp
msgctxt ""
@@ -7870,7 +7918,7 @@ msgctxt ""
"par_idN108E9\n"
"help.text"
msgid "<variable id=\"menuenew\">Choose <emph>Tools - Customize - Menus</emph> tab, click <emph>New</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"menuenew\">Vælg fanebladet <emph>Funktioner - Tilpas - Menuer</emph> og klik på <emph>Ny</emph></variable>"
#: 00000406.xhp
msgctxt ""
@@ -7878,7 +7926,7 @@ msgctxt ""
"par_idN10919\n"
"help.text"
msgid "<variable id=\"menuemove\">Choose <emph>Tools - Customize - Menus</emph> tab, click <emph>Menu - Move</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"menuemove\">Vælg fanebladet <emph>Funktioner - Tilpas - Menu</emph>, klik på <emph>Menu - Flyt</emph></variable>"
#: 00000406.xhp
msgctxt ""
@@ -7886,7 +7934,7 @@ msgctxt ""
"par_id3145171\n"
"help.text"
msgid "<variable id=\"tastatur\">Choose <emph>Tools - Customize - Keyboard</emph> tab. A document must be opened.</variable>"
-msgstr ""
+msgstr "<variable id=\"tastatur\">Vælg fanebladet<emph>Funktioner - Tilpas - Tastatur</emph> (der skal være et åbent dokument).</variable>"
#: 00000406.xhp
msgctxt ""
@@ -7894,7 +7942,7 @@ msgctxt ""
"par_id3153968\n"
"help.text"
msgid "<variable id=\"symbole\">Choose <emph>Tools - Customize - Toolbars</emph> tab.</variable>"
-msgstr ""
+msgstr "<variable id=\"symbole\">Vælg fanebladet <emph>Funktioner - Tilpas - Værktøjslinjer</emph> </variable>"
#: 00000406.xhp
msgctxt ""
@@ -7902,7 +7950,7 @@ msgctxt ""
"par_id3144432\n"
"help.text"
msgid "<variable id=\"events\">Choose <emph>Tools - Customize - Events</emph> tab.</variable>"
-msgstr ""
+msgstr "<variable id=\"events\">Vælg fanebladet <emph>Funktioner - Tilpas - Hændelser</emph></variable>"
#: 00000406.xhp
msgctxt ""
@@ -7910,7 +7958,7 @@ msgctxt ""
"par_id3157895\n"
"help.text"
msgid "<variable id=\"autokorr\">Choose <emph>Tools - AutoCorrect - AutoCorrect Options</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"autokorr\">Vælg <emph>Funktioner - Autokorrekturindstillinger</emph></variable>"
#: 00000406.xhp
msgctxt ""
@@ -7918,7 +7966,7 @@ msgctxt ""
"par_id3153768\n"
"help.text"
msgid "<variable id=\"autokooptionen\">Choose <emph>Tools - AutoCorrect - AutoCorrect Options - Options</emph> tab.</variable>"
-msgstr ""
+msgstr "<variable id=\"autokooptionen\">Vælg fanen <emph>Funktioner - Autokorrektur - Autokorrekturindstillinger... - Indstillinger</emph></variable>"
#: 00000406.xhp
msgctxt ""
@@ -7926,7 +7974,7 @@ msgctxt ""
"par_id1978514\n"
"help.text"
msgid "<variable id=\"autokosmarttags\">Choose <emph>Tools - AutoCorrect - AutoCorrect Options - Smart Tags</emph> tab.</variable>"
-msgstr ""
+msgstr "<variable id=\"autokosmarttags\">Vælg fanebladet <emph>Funktioner - Autokorrektur - Autokorrekturindstillinger - Smartmærker</emph></variable>"
#: 00000406.xhp
msgctxt ""
@@ -7934,7 +7982,7 @@ msgctxt ""
"par_id3155368\n"
"help.text"
msgid "<variable id=\"autokoersetzung\">Choose <emph>Tools - AutoCorrect - AutoCorrect Options - Replace</emph> tab.</variable>"
-msgstr ""
+msgstr "<variable id=\"autokoersetzung\">Vælg fanebladet <emph>Funktioner - Autokorrektur - Autokorrekturindstillinger - Erstat</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -7942,7 +7990,7 @@ msgctxt ""
"par_id3155860\n"
"help.text"
msgid "<variable id=\"autokoausnahmen\">Choose <emph>Tools - AutoCorrect - AutoCorrect Options - Exceptions</emph> tab.</variable>"
-msgstr ""
+msgstr "<variable id=\"autokoausnahmen\">Vælg fanebladet <emph>Funktioner - Autokorrektur - Autokorrekturindstillinger - Udvidelser</emph></variable>"
#: 00000406.xhp
msgctxt ""
@@ -7950,7 +7998,7 @@ msgctxt ""
"par_id3153094\n"
"help.text"
msgid "<variable id=\"autokotyafz\">Choose <emph>Tools - AutoCorrect - AutoCorrect Options - Localized Options</emph> tab.</variable>"
-msgstr ""
+msgstr "<variable id=\"autokotyafz\">Vælg fanebladet <emph>Funktioner - Autokorrektur - Autokorrekturindstillinger - Lokale muligheder</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -7958,7 +8006,7 @@ msgctxt ""
"par_id3153945\n"
"help.text"
msgid "<variable id=\"autokoworterg\">Choose <emph>Tools - AutoCorrect - AutoCorrect Options - Word Completion</emph> tab.</variable>"
-msgstr ""
+msgstr "<variable id=\"autokoworterg\">Vælg fanebladet <emph>Funktioner - Autokorrektur - Autokorrekturindstillinger - Ordfuldførelse</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -7966,7 +8014,7 @@ msgctxt ""
"par_id3151352\n"
"help.text"
msgid "<variable id=\"exopas\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Calc - View</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"exopas\">Vælg <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Indstillinger</emph></caseinline><defaultinline><emph>Funktioner - Indstillinger</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Calc - Vis</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -7974,7 +8022,7 @@ msgctxt ""
"par_id3154127\n"
"help.text"
msgid "<variable id=\"etoplayout\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Impress/%PRODUCTNAME Draw - View</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"etoplayout\">Vælg <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Indstillinger</emph></caseinline><defaultinline><emph>Funktioner - Indstillinger</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Impress/%PRODUCTNAME Draw - Vis</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -7982,7 +8030,7 @@ msgctxt ""
"par_id3149664\n"
"help.text"
msgid "<variable id=\"etotm\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Draw - General</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"etotm\">Vælg ><switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Indstillinger</emph></caseinline><defaultinline><emph>Funktioner - Indstillinger</emph></defaultinline></switchinline> <emph>- %PRODUCTNAME Draw - Generelt</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8006,7 +8054,7 @@ msgctxt ""
"par_id3147295\n"
"help.text"
msgid "<variable id=\"optionen\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline>.</variable>"
-msgstr ""
+msgstr "<variable id=\"optionen\">Vælg <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Indstillinger</emph></caseinline><defaultinline><emph>Funktioner - Indstillinger</emph></defaultinline></switchinline>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8014,7 +8062,7 @@ msgctxt ""
"par_id3156006\n"
"help.text"
msgid "<variable id=\"optionenallgemein\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename]</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"optionenallgemein\">Vælg <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Indstillinger</emph></caseinline><defaultinline><emph>Funktioner - Indstillinger</emph></defaultinline></switchinline><emph> - $[officename] - Programfarver</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8022,7 +8070,7 @@ msgctxt ""
"par_id3155308\n"
"help.text"
msgid "<variable id=\"benutzerdaten\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - User Data</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"benutzerdaten\">Vælg <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Indstillinger</emph></caseinline><defaultinline><emph>Funktioner - Indstillinger</emph></defaultinline></switchinline><emph> - $[officename] - Programfarver</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8030,7 +8078,7 @@ msgctxt ""
"par_id3155312\n"
"help.text"
msgid "<variable id=\"allg\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - General</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"allg\">Vælg<switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Indstillinger</emph></caseinline><defaultinline><emph>Funktioner - Indstillinger</emph></defaultinline></switchinline><emph> - $[officename] - Generelt</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8038,7 +8086,7 @@ msgctxt ""
"par_id3150032\n"
"help.text"
msgid "<variable id=\"arbeit\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - Memory</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"arbeit\">Vælg <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Indstillinger</emph></caseinline><defaultinline><emph>Funktioner - Indstillinger</emph></defaultinline></switchinline><emph> - $[officename] - Programfarver</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8046,7 +8094,7 @@ msgctxt ""
"par_id3159153\n"
"help.text"
msgid "<variable id=\"ansicht\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - View</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"ansicht\">Vælg <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Indstillinger</emph></caseinline><defaultinline><emph>Funktioner - Indstillinger</emph></defaultinline></switchinline><emph> - $[officename] - Vis</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8054,7 +8102,7 @@ msgctxt ""
"par_id3166413\n"
"help.text"
msgid "<variable id=\"drucken\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - Print</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"drucken\">Vælg <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Indstillinger</emph></caseinline> <defaultinline><emph>funktioner - Indstillinger</emph></defaultinline></switchinline> <emph>- $[officename] - Print</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8062,7 +8110,7 @@ msgctxt ""
"par_id3147330\n"
"help.text"
msgid "Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - Paths</emph>."
-msgstr ""
+msgstr "Vælg <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Indstillinger</emph></caseinline><defaultinline> <emph>Funktioner - Indstillinger</emph></defaultinline></switchinline</switchinline><emph>- $[officename] - Stier</emph>."
#: 00000406.xhp
msgctxt ""
@@ -8070,7 +8118,7 @@ msgctxt ""
"par_id3150036\n"
"help.text"
msgid "Choose <emph>Tools - AutoText - Path</emph>."
-msgstr ""
+msgstr "Vælg <emph>Funktioner - Autotekst - Sti</emph>"
#: 00000406.xhp
msgctxt ""
@@ -8078,7 +8126,7 @@ msgctxt ""
"par_id3149581\n"
"help.text"
msgid "Choose <emph>Format - Area - Colors</emph> tab."
-msgstr ""
+msgstr "Vælg fanebladet <emph>Formater - Område - Farver</emph>"
#: 00000406.xhp
msgctxt ""
@@ -8086,7 +8134,7 @@ msgctxt ""
"par_id3145729\n"
"help.text"
msgid "Choose <emph>Format - Area - Area</emph>, press the <emph>Color</emph> button and click the <emph>Pick</emph> button."
-msgstr ""
+msgstr "Vælg <emph>Format - Område -Område</emph>, tryk på <emph>Farve</emph>-knappen og klik på <emph>Vælg</emph>-knappen."
#: 00000406.xhp
msgctxt ""
@@ -8102,7 +8150,7 @@ msgctxt ""
"par_id3151037\n"
"help.text"
msgid "Press the <emph>Color Dialog</emph> button in the <emph>Illumination</emph> tab of the <emph>3D Effects</emph> dialog."
-msgstr ""
+msgstr "Tryk på knappen <emph>Farvedialog</emph> på fanebladet <emph>Belysning</emph> på dialogen <emph>3D-effekter</emph>."
#: 00000406.xhp
msgctxt ""
@@ -8110,7 +8158,7 @@ msgctxt ""
"par_id3149403\n"
"help.text"
msgid "<variable id=\"schriers\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - Fonts</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"schriers\">Vælg <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Indstillinger</emph></caseinline> <defaultinline><emph>Funktioner - Indstillinger</emph></defaultinline></switchinline> <emph>- $[officename] - Skrifttyper</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8118,7 +8166,7 @@ msgctxt ""
"par_id3150717\n"
"help.text"
msgid "<variable id=\"scripting\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - Security</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"scripting\">Vælg <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Indstillinger</emph></caseinline><defaultinline> <emph>Funktioner - Indstillinger</emph></defaultinline></switchinline><emph> - $[officename] - Sikkerhed</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8126,7 +8174,7 @@ msgctxt ""
"par_idN11C3D\n"
"help.text"
msgid "<variable id=\"advanced\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - Advanced</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"advanced\">Vælg <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Indstillinger</emph></caseinline> <defaultinline><emph>Funktioner - Indstillinger</emph></defaultinline></switchinline><emph> - $[officename] - Avanceret</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8134,7 +8182,7 @@ msgctxt ""
"par_idN11C3E\n"
"help.text"
msgid "<variable id=\"personalization\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - Personalization</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"personalization\">Vælg <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Indstillinger</emph></caseinline><defaultinline> <emph>Funktioner - Indstillinger</emph></defaultinline></switchinline> <emph>- $[officename] - Personalisering</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8142,7 +8190,7 @@ msgctxt ""
"par_idN11C3F\n"
"help.text"
msgid "<variable id=\"opencl\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - Open CL</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"opencl\">Vælg <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Indstillinger</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph>- Open CL</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8150,7 +8198,7 @@ msgctxt ""
"par_idN11C3G\n"
"help.text"
msgid "<variable id=\"basicide\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - Basic IDE</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"basicide\">Vælg <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Indstillinger</emph></caseinline><defaultinline> <emph>Funktioner - Indstillinger</emph></defaultinline></switchinline> <emph>- $[officename] - Basic IDE</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8158,7 +8206,7 @@ msgctxt ""
"par_id5485702\n"
"help.text"
msgid "<variable id=\"online_update\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - Online Update</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"online_update\">Vælg <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Indstillinger</emph></caseinline> <defaultinline><emph>Funktioner - Indstillinger</emph></defaultinline></switchinline> <emph>- $[officename] - Onlineopdatering</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8166,7 +8214,7 @@ msgctxt ""
"par_id3146989\n"
"help.text"
msgid "<variable id=\"accessibility\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - Accessibility</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"accessibility\">Vælg <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Indstillinger</emph></caseinline> <defaultinline><emph>Funktioner - Indstillinger</emph></defaultinline></switchinline> <emph>- $[officename] - Tilgængelighed</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8174,7 +8222,7 @@ msgctxt ""
"par_id3144746\n"
"help.text"
msgid "<variable id=\"appearance\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - Application Colors</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"appearance\">Vælg <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph> %PRODUCTNAME - Indstillinger</emph></caseinline> <defaultinline><emph>Funktioner - Indstillinger</emph></defaultinline></switchinline> <emph>- $[officename] - Programfarver</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8182,7 +8230,7 @@ msgctxt ""
"par_id3156355\n"
"help.text"
msgid "<variable id=\"landen\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - Load/Save</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"landen\">Vælg <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Indstillinger</emph></caseinline> <defaultinline><emph>Funktioner - Indstillinger</emph></defaultinline></switchinline> <emph>- Hent/Gem</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8190,7 +8238,7 @@ msgctxt ""
"par_id3147223\n"
"help.text"
msgid "<variable id=\"rsave\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - Load/Save - General</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"rsave\">Vælg <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Indstillinger</emph></caseinline> <defaultinline><emph>-Funktioner - Indstillinger</emph></defaultinline></switchinline> <emph>- Hent/Gem - Generelt</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8198,7 +8246,7 @@ msgctxt ""
"par_id3153958\n"
"help.text"
msgid "<variable id=\"etsofi\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - Load/Save</emph> - <emph>VBA Properties</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"etsofi\">Vælg <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Indstillinger</emph></caseinline><defaultinline><emph>Funktioner - Indstillinger</emph></defaultinline></switchinline><emph> - Hent/gem</emph> - <emph>VBA-egenskaber</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8206,7 +8254,7 @@ msgctxt ""
"par_id3153707\n"
"help.text"
msgid "<variable id=\"etsofi2\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - Load/Save</emph> - <emph>Microsoft Office</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"etsofi2\">Vælg <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Indstillinger</emph></caseinline><defaultinline><emph>Funktioner - Indstillinger</emph></defaultinline></switchinline><emph> - Hent/gem</emph> - <emph>Microsoft Office</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8214,7 +8262,7 @@ msgctxt ""
"par_id3145667\n"
"help.text"
msgid "<variable id=\"html\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - Load/Save</emph> - <emph>HTML Compatibility</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"html\">Vælg <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Indstillinger</emph></caseinline><defaultinline><emph>Funktioner - Indstillinger</emph></defaultinline></switchinline><emph> - Hent/gem</emph> - <emph>HTML-kompatibilitet</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8222,7 +8270,7 @@ msgctxt ""
"par_id3146792\n"
"help.text"
msgid "<variable id=\"asiatypo\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - Language Settings</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"asiatypo\">Vælg <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Indstillinger</emph></caseinline> <defaultinline><emph>Funktioner - Indstillinger</emph></defaultinline></switchinline> <emph>- Sprogindstillinger</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8230,7 +8278,7 @@ msgctxt ""
"par_id3157965\n"
"help.text"
msgid "<variable id=\"sprachen\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - Language Settings - Languages</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"sprachen\">Vælg <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Indstillinger</emph></caseinline> <defaultinline><emph>Funktioner - Indstillinger</emph></defaultinline></switchinline> <emph>- Sprogindstillinger - Sprog</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8238,7 +8286,7 @@ msgctxt ""
"par_id3155446\n"
"help.text"
msgid "<variable id=\"sprachenctl\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - Language Settings - Languages - Complex Text Layout</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"sprachenctl\">Vælg <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Indstillinger</emph></caseinline><defaultinline><emph>Funktioner - Indstillinger</emph></defaultinline></switchinline><emph> - Sprogindstillinger - Sprog - Komplekst tekstlayout (CTL)</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8246,7 +8294,7 @@ msgctxt ""
"par_id3150745\n"
"help.text"
msgid "Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - Language Settings - Languages</emph>."
-msgstr ""
+msgstr "Vælg <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Indstillinger</emph></caseinline> <defaultinline><emph>Funktioner - Indstillinger</emph></defaultinline></switchinline> <emph>- Sprogindstillinger - Sprog</emph>."
#: 00000406.xhp
msgctxt ""
@@ -8254,7 +8302,7 @@ msgctxt ""
"par_id3148407\n"
"help.text"
msgid "Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - Language Settings - Writing Aids</emph>, in the <emph>Available language modules</emph> list, select one of the language modules and then click <emph>Edit</emph>."
-msgstr ""
+msgstr "Vælg <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Indstillinger</emph></caseinline> <defaultinline><emph>Funktioner - Indstillinger</emph></defaultinline></switchinline> <emph>- Sprogindstillinger - Skrivehjælp</emph>, i listen <emph>Tilgængelige sprogmoduler</emph>, vælger du et af sprogmodulerne, og klikker så på <emph>Rediger</emph>."
#: 00000406.xhp
msgctxt ""
@@ -8270,7 +8318,7 @@ msgctxt ""
"par_id3145620\n"
"help.text"
msgid "<variable id=\"suchja\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - Language Settings - Searching in Japanese</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"suchja\">Vælg <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Indstillinger</emph></caseinline> <defaultinline><emph>Funktioner - Indstillinger</emph></defaultinline></switchinline> <emph>- Sprogindstillinger - Søgning på japansk</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8278,7 +8326,7 @@ msgctxt ""
"par_id3147341\n"
"help.text"
msgid "<variable id=\"asialayout\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - Language Settings - Asian Layout</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"asialayout\">Vælg <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Indstillinger</emph></caseinline><defaultinline><emph>Funktioner - Indstillinger</emph></defaultinline></switchinline> <emph>- Sprogindstillinger - Asiatisk layout</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8286,7 +8334,7 @@ msgctxt ""
"par_id3147359\n"
"help.text"
msgid "<variable id=\"internet\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - Internet</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"internet\">Vælg <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Indstillinger</emph></caseinline> <defaultinline><emph>Funktioner - Indstillinger </emph></defaultinline></switchinline> <emph>- Internet</emph></variable>"
#: 00000406.xhp
msgctxt ""
@@ -8294,7 +8342,7 @@ msgctxt ""
"par_id3156374\n"
"help.text"
msgid "<variable id=\"internet1\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - Internet - Proxy</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"internet1\">Vælg <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Indstillinger </emph></caseinline><defaultinline><emph>Funktioner - Indstillinger</emph></defaultinline></switchinline> <emph>- Internet - Proxy</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8302,7 +8350,7 @@ msgctxt ""
"par_id3149280\n"
"help.text"
msgid "<variable id=\"optionentextdokument\">Open a text document, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"optionentextdokument\">Åbn et tekstdokument, vælg <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Indstillinger</emph></caseinline><defaultinline><emph>Funktioner - Indstillinger</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8310,7 +8358,7 @@ msgctxt ""
"par_idN10E4F\n"
"help.text"
msgid "<variable id=\"compatibility\">Open a text document, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer - Compatibility</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"compatibility\">Åbn et tekstdokument, vælg <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Indstillinger</emph></caseinline> <defaultinline><emph>Funktioner - Indstillinger</emph></defaultinline></switchinline> <emph>- %PRODUCTNAME Writer - Kompatibilitet</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8318,7 +8366,7 @@ msgctxt ""
"par_id3148929\n"
"help.text"
msgid "<variable id=\"laden\">Open a text document, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer - General</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"laden\">Åbn et tekstdokument, vælg <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Indstillinger</emph></caseinline> <defaultinline><emph>Funktioner - Indstillinger</emph></defaultinline></switchinline> <emph>- %PRODUCTNAME Writer - Generelt</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8326,7 +8374,7 @@ msgctxt ""
"par_idN10F2F\n"
"help.text"
msgid "<variable id=\"mailmergeemail\">Open a text document, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer - Mail Merge E-mail</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"mailmergeemail\">Åbn et tekstdokument, vælg <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Indstillinger </emph></caseinline><defaultinline> <emph>Funktioner - Indstillinger </emph></defaultinline></switchinline> <emph>- %PRODUCTNAME Writer - Brevfletning e-mail</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8334,7 +8382,7 @@ msgctxt ""
"par_id3149825\n"
"help.text"
msgid "<variable id=\"einfuegenbeschriftung\">Open a text document, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer - AutoCaption</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"einfuegenbeschriftung\">Åbn et tekstdokument, vælg <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Indstillinger</emph></caseinline> <defaultinline><emph>Funktioner - Indstillinger</emph></defaultinline></switchinline> <emph>- %PRODUCTNAME Writer - Autobilledtekst</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8342,7 +8390,7 @@ msgctxt ""
"par_id3155333\n"
"help.text"
msgid "<variable id=\"layout\">Open a text document, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer/%PRODUCTNAME Writer/Web</emph> - <emph>View</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"layout\">Åbn et tekstdokument, vælg <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Indstillinger </emph></caseinline> <defaultinline><emph>Funktioner - Indstillinger</emph></defaultinline></switchinline> <emph>- %PRODUCTNAME Writer/%PRODUCTNAME Writer/Web</emph> - <emph>Vis</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8350,7 +8398,7 @@ msgctxt ""
"par_id3146316\n"
"help.text"
msgid "<variable id=\"registerschattencursor\">Open a text document, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer/%PRODUCTNAME Writer/Web</emph> - <emph>Formatting Aids</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"registerschattencursor\">Åbn et tekstdokument, vælg <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Indstillinger</emph></caseinline> <defaultinline><emph>Funktioner - Indstillinger</emph></defaultinline></switchinline> <emph>- %PRODUCTNAME Writer/%PRODUCTNAME Writer/Web</emph> - <emph>Formateringshjælp</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8358,7 +8406,7 @@ msgctxt ""
"par_id3153534\n"
"help.text"
msgid "<variable id=\"raster\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer/%PRODUCTNAME Calc/%PRODUCTNAME Writer/Web - Grid</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"raster\">Vælg <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Indstillinger</emph></caseinline><defaultinline><emph>Funktioner - Indstillinger</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer/%PRODUCTNAME Calc/%PRODUCTNAME Writer/Web - Gitter</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8366,7 +8414,7 @@ msgctxt ""
"par_id3155961\n"
"help.text"
msgid "Open a text document, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer - Basic Fonts (Western)</emph>."
-msgstr ""
+msgstr "Åbn et tekstdokument, vælg <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Indstillinger</emph></caseinline> <defaultinline><emph>Funktioner - Indstillinger</emph></defaultinline></switchinline> <emph>- %PRODUCTNAME Writer - Grundlæggende skrifttyper (vestlige)</emph>."
#: 00000406.xhp
msgctxt ""
@@ -8374,7 +8422,7 @@ msgctxt ""
"par_id3159313\n"
"help.text"
msgid "Open a text document, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer - Basic Fonts (Asian)</emph>. Asian language support must be enabled."
-msgstr ""
+msgstr "Åbn et tekstdokument, vælg <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Indstillinger</emph></caseinline> <defaultinline> <emph>Funktioner - Indstillinger </emph></defaultinline></switchinline> <emph>- %PRODUCTNAME Writer - Grundlæggende skrifttyper (asiatiske)</emph>. Asiatisk sprog skal være aktiveret."
#: 00000406.xhp
msgctxt ""
@@ -8382,7 +8430,7 @@ msgctxt ""
"par_id3155607\n"
"help.text"
msgid "<variable id=\"drucken1\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer/ %PRODUCTNAME Writer/Web</emph> - <emph>Print</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"drucken1\">Vælg <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Indstillinger</emph></caseinline> <defaultinline><emph>Funktioner - Indstillinger</emph></defaultinline></switchinline> <emph>- %PRODUCTNAME Writer/ %PRODUCTNAME Writer/Web</emph> - <emph>Udskriv</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8390,7 +8438,7 @@ msgctxt ""
"par_id3988769\n"
"help.text"
msgid "<variable id=\"drucken2\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Calc - Print</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"drucken2\">Vælg <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Indstillinger</emph></caseinline> <defaultinline><emph>Funktioner - Indstillinger</emph></defaultinline></switchinline> <emph>- %PRODUCTNAME Calc - Udskriv</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8398,7 +8446,7 @@ msgctxt ""
"par_id3145769\n"
"help.text"
msgid "<variable id=\"registertabelle\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer/%PRODUCTNAME Writer/Web - Table</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"registertabelle\">Vælg <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Indstillinger</emph></caseinline> <defaultinline><emph>Funktioner - Indstillinger</emph></defaultinline></switchinline> <emph>- %PRODUCTNAME Writer/%PRODUCTNAME Writer/Web - Tabel</emph></variable>"
#: 00000406.xhp
msgctxt ""
@@ -8406,7 +8454,7 @@ msgctxt ""
"par_id3147005\n"
"help.text"
msgid "<variable id=\"registeraenderungen\">Open a text document, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer - Changes</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"registeraenderungen\">Åbn et tekstdokument, vælg <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Indstillinger</emph></caseinline> <defaultinline><emph>Funktioner - Indstillinge</emph>r</defaultinline></switchinline> <emph>- %PRODUCTNAME Writer - Ændringer</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8414,7 +8462,7 @@ msgctxt ""
"par_id3159333\n"
"help.text"
msgid "<variable id=\"webbrowser1\">Open an HTML document, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer/Web</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"webbrowser1\">Åbn et HTML-dokument, vælg <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Indstillinger</emph></caseinline> <defaultinline><emph>Funktioner - Indstillinger</emph></defaultinline></switchinline> <emph>- %PRODUCTNAME Writer/Web</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8422,7 +8470,7 @@ msgctxt ""
"par_id3149448\n"
"help.text"
msgid "<variable id=\"hinter\">Open an HTML document, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer/Web - Background</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"hinter\">Åbn et HTML-dokument, vælg <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Indstillinger</emph></caseinline> <defaultinline><emph>Funktioner - Indstillinger</emph></defaultinline></switchinline> <emph>- %PRODUCTNAME Writer/Web - Baggrund</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8430,7 +8478,7 @@ msgctxt ""
"par_id3149336\n"
"help.text"
msgid "<variable id=\"tabellendokument\">Open a spreadsheet document, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Calc</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"tabellendokument\">Åbn et regneark, vælg<switchinline select=\"sys\"> <caseinline select=\"MAC\"><emph>%PRODUCTNAME - Indstillinger</emph></caseinline> <defaultinline><emph>Funktioner - Indstillinger</emph></defaultinline></switchinline> <emph>- %PRODUCTNAME Calc</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8438,7 +8486,7 @@ msgctxt ""
"par_id3152966\n"
"help.text"
msgid "<variable id=\"tabelleeingabe\">Open a spreadsheet document, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Calc - General</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"tabelleeingabe\">Åbn et regneark, vælg<switchinline select=\"sys\"><caseinline select=\"MAC\"><emph> %PRODUCTNAME - Indstillinger</emph></caseinline> <defaultinline><emph>Funktioner - Indstillinger</emph></defaultinline></switchinline> <emph>- %PRODUCTNAME Calc - Generelt</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8446,7 +8494,7 @@ msgctxt ""
"par_id3149814\n"
"help.text"
msgid "<variable id=\"tabelleinhalte\">Open a spreadsheet document, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Calc - View</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"tabelleinhalte\">Åbn et regneark, vælg <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Indstillinger</emph></caseinline> <defaultinline><emph>Funktioner - Indstillinger</emph></defaultinline></switchinline> <emph>- %PRODUCTNAME Calc - Vis</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8454,7 +8502,7 @@ msgctxt ""
"par_id3154656\n"
"help.text"
msgid "<variable id=\"exopbe\">Open a spreadsheet document, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Calc - Calculate</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"exopbe\">Åbn et regneark, vælg <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Indstillinger</emph></caseinline> <defaultinline><emph>Funktioner - Indstillinger</emph></defaultinline></switchinline> <emph>- %PRODUCTNAME Calc - Beregn</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8462,7 +8510,7 @@ msgctxt ""
"par_id3154657\n"
"help.text"
msgid "<variable id=\"exopco\">Open a spreadsheet document, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Calc - Compatibility</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"exopco\">Åbn et regnearksdokument, og vælg <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Indstillinger</emph></caseinline> <defaultinline><emph>Funktioner - Indstillinger</emph></defaultinline></switchinline> <emph>- %PRODUCTNAME Calc - Kompatibilitet</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8470,7 +8518,7 @@ msgctxt ""
"par_id3152494\n"
"help.text"
msgid "<variable id=\"exopso\">Open a spreadsheet document, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Calc - Sort Lists</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"exopso\">Åbn et regneark, vælg <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Indstillinger</emph></caseinline> <defaultinline><emph>Funktioner - Indstillinger</emph></defaultinline></switchinline> <emph>- %PRODUCTNAME Calc - Sorteringslister</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8478,7 +8526,7 @@ msgctxt ""
"par_id3152495\n"
"help.text"
msgid "<variable id=\"exopfo\">Open a spreadsheet document, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Calc - Formula</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"exopfo\">Åbn et regnearksdokument og vælg <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Indstillinger</emph></caseinline> <defaultinline><emph>Funktioner - Indstillinger</emph></defaultinline></switchinline> <emph>- %PRODUCTNAME Calc - Formler</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8486,7 +8534,7 @@ msgctxt ""
"par_id3152496\n"
"help.text"
msgid "<variable id=\"exopde\">Open a spreadsheet document, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Calc - Defaults</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"exopde\">Åbn et regnearksdokument og vælg <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Indstillinger</emph></caseinline> <defaultinline><emph>Funktioner - Indstillinger</emph></defaultinline></switchinline> <emph>- %PRODUCTNAME Calc - Standarder</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8494,7 +8542,7 @@ msgctxt ""
"par_id3149527\n"
"help.text"
msgid "<variable id=\"listekopieren\">Open a spreadsheet document, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Calc - Sort Lists - Copy</emph> button.</variable>"
-msgstr ""
+msgstr "<variable id=\"listekopieren\">Åbn et regneark, vælg <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Indstillinger</emph></caseinline> <defaultinline><emph>Funktioner - Indstillinger</emph></defaultinline></switchinline> <emph>- %PRODUCTNAME Calc - Sorteringslister - Kopier</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8502,7 +8550,7 @@ msgctxt ""
"par_id3154903\n"
"help.text"
msgid "<variable id=\"exopaen\">Open a spreadsheet document, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Calc - Changes</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"exopaen\">Åbn et regneark, vælg <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Indstillinger</emph></caseinline> <defaultinline><emph>Funktioner - Indstillinger</emph></defaultinline></switchinline> <emph>- %PRODUCTNAME Calc - Ændringer</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8510,7 +8558,7 @@ msgctxt ""
"par_id3152582\n"
"help.text"
msgid "<variable id=\"etotall\">Open a presentation document, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Impress</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"etotall\">Åbn en præsentation, vælg <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Indstillinger</emph></caseinline> <defaultinline><emph>Funktioner - Indstillinge</emph></defaultinline></switchinline> <emph>- %PRODUCTNAME Impress</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8518,7 +8566,7 @@ msgctxt ""
"par_id3148418\n"
"help.text"
msgid "<variable id=\"etopsonstiges\">Open a presentation document, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Impress/%PRODUCTNAME Draw - General</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"etopsonstiges\">Åbn en præsentation, vælg <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Indstillinger</emph></caseinline> <defaultinline><emph>Funktioner - Indstillinger</emph></defaultinline></switchinline> <emph>- %PRODUCTNAME Impress/%PRODUCTNAME Draw - Generelt</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8526,7 +8574,7 @@ msgctxt ""
"par_id3150380\n"
"help.text"
msgid "<variable id=\"etopas\">Open a presentation document, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Impress/%PRODUCTNAME Draw - View</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"etopas\">Åbn en præsentation, vælg <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Indstillinger</emph></caseinline> <defaultinline><emph>Funktioner - Indstillinger</emph></defaultinline></switchinline> <emph>- %PRODUCTNAME Impress/%PRODUCTNAME Draw - Vis</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8534,7 +8582,7 @@ msgctxt ""
"par_id3166423\n"
"help.text"
msgid "<variable id=\"etopfe\">Open a presentation document, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Impress/%PRODUCTNAME Draw - Grid</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"etopfe\">Åbn en præsentation, vælg <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Indstillinger</emph></caseinline> <defaultinline><emph>Funktioner - Indstillinger</emph></defaultinline></switchinline> <emph>- %PRODUCTNAME Impress/%PRODUCTNAME Draw - Gitter</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8542,7 +8590,7 @@ msgctxt ""
"par_id3148873\n"
"help.text"
msgid "<variable id=\"etopdk\">Open a presentation document, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Impress/%PRODUCTNAME Draw - Print</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"etopdk\">Åbn en præsentation, vælg <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Indstillinger</emph></caseinline> <defaultinline><emph>Funktioner - Indstillinger</emph></defaultinline></switchinline> <emph>- %PRODUCTNAME Impress/%PRODUCTNAME Draw - Udskriv</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8550,7 +8598,7 @@ msgctxt ""
"par_id3145220\n"
"help.text"
msgid "<variable id=\"etotallz\">Open a drawing document, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Draw</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"etotallz\">Åbn en tegning, vælg <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Indstillinger</emph></caseinline> <defaultinline><emph>Funktioner - Indstillinger</emph></defaultinline></switchinline> <emph>- %PRODUCTNAME Draw</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8558,7 +8606,7 @@ msgctxt ""
"par_id3149573\n"
"help.text"
msgid "<variable id=\"etsodr\">Open a Math document, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Math</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"etsodr\">Åbn et Math-dokument, vælg <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Indstillinger</emph></caseinline> <defaultinline><emph>Funktioner - Indstillinger</emph></defaultinline></switchinline> <emph>- %PRODUCTNAME Math</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8566,7 +8614,7 @@ msgctxt ""
"par_id3145613\n"
"help.text"
msgid "<variable id=\"formeinst\">Open a Math document, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Math - Settings</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"formeinst\">Åbn et Math-dokument, vælg <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Indstillinger</emph></caseinline> <defaultinline><emph>Funktioner - Indstillinger</emph></defaultinline></switchinline> <emph>- %PRODUCTNAME Math - Indstillinger</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8574,7 +8622,7 @@ msgctxt ""
"par_id3155137\n"
"help.text"
msgid "<variable id=\"diagrfarbe\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - Charts</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"diagrfarbe\">Vælg <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Indstillinger</emph></caseinline> <defaultinline><emph>Funktioner - Indstillinger</emph></defaultinline></switchinline> <emph>- Diagrammer</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8582,7 +8630,7 @@ msgctxt ""
"par_id3149211\n"
"help.text"
msgid "<variable id=\"diagrgfarbe\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - Charts - Default Colors</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"diagrgfarbe\">Vælg <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Indstillinger</emph></caseinline> <defaultinline><emph>Funktioner - Indstillinger</emph></defaultinline></switchinline> <emph>- Diagrammer - Standardfarver</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8590,7 +8638,7 @@ msgctxt ""
"par_id3150862\n"
"help.text"
msgid "<variable id=\"datenqu\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Base</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"datenqu\">Vælg <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Indstillinger</emph></caseinline> <defaultinline><emph>Funktioner - Indstillinger</emph></defaultinline></switchinline> <emph>- %PRODUCTNAME Base</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8598,7 +8646,7 @@ msgctxt ""
"par_id3147368\n"
"help.text"
msgid "<variable id=\"verbindungen\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Base - Connections</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"verbindungen\">Vælg <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Indstillinger</emph></caseinline> <defaultinline><emph>Funktioner - Indstillinger</emph></defaultinline></switchinline> <emph>- %PRODUCTNAME Base - Forbindelser</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8606,7 +8654,7 @@ msgctxt ""
"par_idN1120D\n"
"help.text"
msgid "<variable id=\"registered\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Base - Databases</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"registered\">Vælg <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Indstillinger</emph></caseinline> <defaultinline><emph>Funktioner - Indstillinger</emph></defaultinline></switchinline> <emph>- %PRODUCTNAME Base - Databaser</emph>.</variable>"
#: 00000407.xhp
msgctxt ""
@@ -9566,7 +9614,7 @@ msgctxt ""
"par_id3149323\n"
"help.text"
msgid "Choose <emph>Slide - Properties - Page</emph> tab (in $[officename] Impress)"
-msgstr ""
+msgstr "Vælg fanebladet <emph>Dias - Egenskaber - Side</emph>(i $[officename] Impress)"
#: 00040500.xhp
msgctxt ""
@@ -9574,7 +9622,7 @@ msgctxt ""
"par_id3154972\n"
"help.text"
msgid "Choose <emph>Page - Properties - Page</emph> tab (in $[officename] Draw)"
-msgstr ""
+msgstr "Vælg fanebladet <emph>Side -Egenskaber - Side</emph> (i $[officename] Draw)"
#: 00040500.xhp
msgctxt ""
@@ -11125,16 +11173,16 @@ msgctxt ""
"00040502.xhp\n"
"par_id3151293\n"
"help.text"
-msgid "<variable id=\"linienstile\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Line Styles</emph> tab </variable>"
-msgstr "<variable id=\"linienstile\">Vælg fanebladet <emph>Formater - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Objekt - </emph></caseinline><caseinline select=\"CALC\"><emph>Grafik - </emph></caseinline></switchinline><emph>Linje - Linjetypografier</emph></variable>"
+msgid "<variable id=\"linienstile\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Line Styles</emph> tab</variable>"
+msgstr "<variable id=\"linienstile\">Vælg <emph>Formater -</emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Objekt -</emph></caseinline> <caseinline select=\"CALC\"><emph>Grafik - </emph></caseinline></switchinline><emph>Streg - Stregtypografier</emph>fanebladet </variable>"
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3149317\n"
"help.text"
-msgid "<variable id=\"linienenden\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Arrow Styles</emph> tab </variable>"
-msgstr "<variable id=\"linienenden\">Vælg fanebladet <emph>Formater - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Objekt - </emph></caseinline><caseinline select=\"CALC\"><emph>Grafik - </emph></caseinline></switchinline><emph>Linje - Piletyper</emph></variable>"
+msgid "<variable id=\"linienenden\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Arrow Styles</emph> tab</variable>"
+msgstr "<variable id=\"linienenden\">Vælg <emph>Formater - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Objekt - </emph></caseinline> <caseinline select=\"CALC\"><emph>Grafik - </emph></caseinline></switchinline> <emph>Linje - Piletypografier</emph> fanebladet</variable>"
#: 00040502.xhp
msgctxt ""
@@ -11173,7 +11221,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3154948\n"
"help.text"
-msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Area</emph> tab"
+msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Area</emph> tab."
msgstr "Vælg fanebladet <emph>Formater - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Objekt - </emph></caseinline><caseinline select=\"CALC\"><emph>Grafik - </emph></caseinline></switchinline><emph>Flade - Flade</emph>"
#: 00040502.xhp
@@ -11181,7 +11229,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3145607\n"
"help.text"
-msgid "Choose <emph>View - Styles</emph> - open context menu and choose <emph>Modify/New - Area</emph> tab (presentation documents)"
+msgid "Choose <emph>View - Styles</emph> - open context menu and choose <emph>Modify/New - Area</emph> tab (presentation documents)."
msgstr "Vælg <emph>Vis - Typografier og formatering</emph> - åbn kontekstmenu og vælg <emph>Modificer/Ny - Flade</emph> (præsentationsdokumenter)"
#: 00040502.xhp
@@ -11189,7 +11237,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3152922\n"
"help.text"
-msgid "Choose <emph>Format - Title - Area</emph> tab (chart documents)"
+msgid "Choose <emph>Format - Title - Area</emph> tab (chart documents)."
msgstr "Vælg <emph>Formater - Titel - Område</emph>-fanebladet (diagramdokumenter)"
#: 00040502.xhp
@@ -11197,7 +11245,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3157894\n"
"help.text"
-msgid "Choose <emph>Format - Legend - Area</emph> tab (chart documents)"
+msgid "Choose <emph>Format - Legend - Area</emph> tab (chart documents)."
msgstr "Vælg <emph>Formater - Forklaring - Område</emph>-fanebladet (diagramdokumenter)"
#: 00040502.xhp
@@ -11205,7 +11253,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3144444\n"
"help.text"
-msgid "Choose <emph>Format - Chart Wall - Area</emph> tab (chart documents)"
+msgid "Choose <emph>Format - Chart Wall - Area</emph> tab (chart documents)."
msgstr "Vælg <emph>Formater - Diagramvæg - Område</emph>-fanebladet (diagramdokumenter)"
#: 00040502.xhp
@@ -11213,7 +11261,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3156543\n"
"help.text"
-msgid "Choose <emph>Format - Chart Floor - Area</emph> tab (chart documents)"
+msgid "Choose <emph>Format - Chart Floor - Area</emph> tab (chart documents)."
msgstr "Vælg <emph>Formater - Diagramgulv - Område</emph> fanebladet (diagramdokumenter)"
#: 00040502.xhp
@@ -11221,7 +11269,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3150685\n"
"help.text"
-msgid "Choose <emph>Format - Chart Area - Area</emph> tab (chart documents)"
+msgid "Choose <emph>Format - Chart Area - Area</emph> tab (chart documents)."
msgstr "Vælg <emph>Formater - Diagramområde - Område</emph>-fanebladet (diagramdokumenter)"
#: 00040502.xhp
@@ -11229,16 +11277,24 @@ msgctxt ""
"00040502.xhp\n"
"par_id3149664\n"
"help.text"
-msgid "Choose <emph>Slide - Properties - Background</emph> tab (in $[officename] Impress)"
-msgstr ""
+msgid "Choose <emph>Slide - Properties - Background</emph> tab (in $[officename] Impress)."
+msgstr "Vælg fanebladet <emph>Dias - Egenskaber - Baggrund</emph> (i $[officename] Impress)"
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id9149694\n"
"help.text"
-msgid "Choose <emph>Page - Properties - Background</emph> tab (in $[officename] Draw)"
-msgstr ""
+msgid "Choose <emph>Page - Properties - Background</emph> tab (in $[officename] Draw)."
+msgstr "Vælg fanebladet <emph>Side - Egenskaber - Baggrund</emph> (i $[officename] Draw)"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id841527083135387\n"
+"help.text"
+msgid "Choose <emph>Table - Properties - Background</emph> tab."
+msgstr "Vælg <emph>Formater - Billede - Baggrund</emph>"
#: 00040502.xhp
msgctxt ""
@@ -11349,7 +11405,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3150011\n"
"help.text"
-msgid "<variable id=\"schatte\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Shadow</emph> tab </variable>"
+msgid "<variable id=\"schatte\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Shadow</emph> tab</variable>"
msgstr "<variable id=\"schatte\">Vælg fanebladet <emph>Formater - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Objekt - </emph></caseinline><caseinline select=\"CALC\"><emph>Grafik - </emph></caseinline></switchinline><emph>Flade - Skygge</emph></variable>"
#: 00040502.xhp
@@ -11357,7 +11413,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3147441\n"
"help.text"
-msgid "<variable id=\"verlauf\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Gradients</emph> tab </variable>"
+msgid "<variable id=\"verlauf\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Gradients</emph> tab</variable>"
msgstr "<variable id=\"verlauf\">Vælg fanebladet <emph>Formater - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Objekt - </emph></caseinline><caseinline select=\"CALC\"><emph>Grafik - </emph></caseinline></switchinline><emph>Flade - Farveovergange</emph></variable>"
#: 00040502.xhp
@@ -11365,16 +11421,16 @@ msgctxt ""
"00040502.xhp\n"
"par_id3155308\n"
"help.text"
-msgid "<variable id=\"schraffur\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Hatching</emph> tab </variable>"
-msgstr "<variable id=\"schraffur\">Vælg fanebladet <emph>Formater - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Objekt - </emph></caseinline><caseinline select=\"CALC\"><emph>Grafik - </emph></caseinline></switchinline><emph>Flade - Skravering</emph></variable>"
+msgid "<variable id=\"schraffur\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Hatching</emph> tab</variable>"
+msgstr "<variable id=\"schraffur\">Vælg fanebladet <emph>Formater - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Objekt - </emph></caseinline><caseinline select=\"CALC\"><emph>Grafik - </emph></caseinline></switchinline><emph>Flade - Skraveringer</emph></variable>"
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3145800\n"
"help.text"
-msgid "<variable id=\"bitmap\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Bitmaps</emph> tab </variable>"
-msgstr "<variable id=\"bitmap\">Vælg fanebladet <emph>Formater - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Objekt - </emph></caseinline><caseinline select=\"CALC\"><emph>Grafik - </emph></caseinline></switchinline><emph>Flade - Bitmaps</emph></variable>"
+msgid "<variable id=\"bitmap\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Bitmaps</emph> tab</variable>"
+msgstr "<variable id=\"bitmap\">Vælg fanebladet <emph>Formater - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Objekt - </emph></caseinline><caseinline select=\"CALC\"><emph>Grafik - </emph></caseinline></switchinline><emph>Flade - Bitmap</emph></variable>"
#: 00040502.xhp
msgctxt ""
@@ -11413,7 +11469,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3156286\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F4 key </caseinline><caseinline select=\"IMPRESS\">F4 key </caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F4 key</caseinline><caseinline select=\"IMPRESS\">F4 key</caseinline></switchinline>"
msgstr "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F4-tast</caseinline><caseinline select=\"IMPRESS\">F4-tast</caseinline></switchinline>"
#: 00040502.xhp
@@ -11453,7 +11509,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3153099\n"
"help.text"
-msgid "<variable id=\"position2\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Position and Size</emph> tab </variable>"
+msgid "<variable id=\"position2\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Position and Size</emph> tab</variable>"
msgstr "<variable id=\"position2\">Vælg fanebladet <emph>Formater - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Objekt - </emph></caseinline><caseinline select=\"CALC\"><emph>Grafik - </emph></caseinline></switchinline><emph>Position og størrelse - Position og størrelse</emph></variable>"
#: 00040502.xhp
@@ -11485,7 +11541,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3145666\n"
"help.text"
-msgid "<variable id=\"ecke\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Slant & Corner Radius</emph> tab </variable>"
+msgid "<variable id=\"ecke\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Slant & Corner Radius</emph> tab</variable>"
msgstr "<variable id=\"ecke\">Vælg fanebladet <emph>Formater - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Objekt - </emph></caseinline><caseinline select=\"CALC\"><emph>Grafik - </emph></caseinline></switchinline><emph>Position og størrelse - Hældning og hjørneradius</emph></variable>"
#: 00040502.xhp
@@ -11493,7 +11549,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3146081\n"
"help.text"
-msgid "<variable id=\"legende\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Callout</emph> tab (only for textbox callouts, not for custom shapes callouts) </variable>"
+msgid "<variable id=\"legende\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Callout</emph> tab (only for textbox callouts, not for custom shapes callouts)</variable>"
msgstr "<variable id=\"legende\">Vælg fanebladet <emph>Formater - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Objekt - </emph></caseinline><caseinline select=\"CALC\"><emph>Grafik - </emph></caseinline></switchinline><emph>Placering og størrelse - Forklaring</emph> (kun for tekstfeltforklaringer, ikke for forklaringer til brugerdefinerede figurer)</variable>"
#: 00040502.xhp
@@ -11517,8 +11573,8 @@ msgctxt ""
"00040502.xhp\n"
"par_id3149019\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F8 key </caseinline><caseinline select=\"IMPRESS\">F8 key </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F8 tast</caseinline><caseinline select=\"IMPRESS\">F8 tast</caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F8 key</caseinline><caseinline select=\"IMPRESS\">F8 key</caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F8-tast</caseinline><caseinline select=\"IMPRESS\">F8-tast</caseinline></switchinline>"
#: 00040502.xhp
msgctxt ""
@@ -11805,7 +11861,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3153076\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Align Center Horizontally </caseinline><defaultinline>Centered</defaultinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Align Center Horizontally</caseinline><defaultinline>Centered</defaultinline></switchinline>"
msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Juster vandret centreret</caseinline><defaultinline>Centreret</defaultinline></switchinline>"
#: 00040502.xhp
@@ -11845,7 +11901,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3150527\n"
"help.text"
-msgid "<variable id=\"font\">Click <emph>Fontwork</emph> icon on <emph>Drawing</emph> bar </variable>"
+msgid "<variable id=\"font\">Click <emph>Fontwork</emph> icon on <emph>Drawing</emph> bar</variable>"
msgstr "<variable id=\"font\">Klik på ikonet <emph>Fontwork</emph> på værktøjslinjen <emph>Tegning</emph></variable>"
#: 00040502.xhp
diff --git a/source/da/helpcontent2/source/text/shared/01.po b/source/da/helpcontent2/source/text/shared/01.po
index 67af4f26c6b..83b1836cdef 100644
--- a/source/da/helpcontent2/source/text/shared/01.po
+++ b/source/da/helpcontent2/source/text/shared/01.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: 2018-05-23 23:19+0200\n"
-"PO-Revision-Date: 2018-05-08 19:56+0000\n"
-"Last-Translator: SteenRønnow <steen.roennow@mail.dk>\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
+"PO-Revision-Date: 2018-06-13 14:16+0000\n"
+"Last-Translator: Leif Lodahl <leiflodahl@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: da\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1525809397.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1528899361.000000\n"
#: 01010000.xhp
msgctxt ""
@@ -694,7 +694,7 @@ msgctxt ""
"par_id3149750\n"
"help.text"
msgid "<ahelp hid=\".\">Select the database field that you want, and then click the arrow to the left of this box to insert the field into the <emph>Label text</emph> box.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Vælg det ønskede databasefelt, og klik så på pilen til venstre for dette felt for at indsætte feltet i feltet <emph>Etikettekst</emph>.</ahelp>"
#: 01010201.xhp
msgctxt ""
@@ -718,7 +718,7 @@ msgctxt ""
"par_id3149762\n"
"help.text"
msgid "You can select a pre-defined size format for your label or a size format that you specify on the <emph>Format </emph>tab."
-msgstr ""
+msgstr "Du kan vælge et foruddefineret størrelsesformat til din etiket eller et størrelsesformat, som du angiver under fanebladet <emph>Formater</emph>."
#: 01010201.xhp
msgctxt ""
@@ -1246,7 +1246,7 @@ msgctxt ""
"par_id3150279\n"
"help.text"
msgid "<ahelp hid=\".\">Prints business cards on continuous paper.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Udskriver visitkort på papir i endeløse baner.</ahelp>"
#: 01010301.xhp
msgctxt ""
@@ -1262,7 +1262,7 @@ msgctxt ""
"par_id3148731\n"
"help.text"
msgid "<ahelp hid=\".\">Prints business cards on individual sheets.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Udskriver visitkort på individuelle ark.</ahelp>"
#: 01010301.xhp
msgctxt ""
@@ -1278,7 +1278,7 @@ msgctxt ""
"par_id3155351\n"
"help.text"
msgid "<ahelp hid=\".\">Select the brand of paper that you want to use.</ahelp> Each brand has its own size formats."
-msgstr ""
+msgstr "<ahelp hid=\".\">Vælg mærket på det papir, som du vil bruge.</ahelp> Hvert mærke har sine egne størrelsesformater."
#: 01010301.xhp
msgctxt ""
@@ -1294,7 +1294,7 @@ msgctxt ""
"par_id3159201\n"
"help.text"
msgid "<ahelp hid=\".\">Select the size format that you want to use. The available formats depend on what you selected in the <emph>Brand</emph> list. If you want to use a custom size format, select <emph>[User]</emph>, and then click the <link href=\"text/shared/01/01010202.xhp\" name=\"Format\"><emph>Format</emph></link> tab to define the format.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Vælg det størrelsesformat, som du vil bruge. De tilgængelige formater afhænger af det, som du valgte i listen <emph>Mærke</emph>. Hvis du vil anvende et brugerdefineret størrelsesformat, skal du vælge <emph>[Bruger]</emph>, og så klikke på fanebladet <link href=\"text/shared/01/01010202.xhp\" name=\"Format\"><emph>Format</emph></link> for at definere formatet.</ahelp>"
#: 01010301.xhp
msgctxt ""
@@ -1310,7 +1310,7 @@ msgctxt ""
"par_id3153394\n"
"help.text"
msgid "<ahelp hid=\".\">The paper type and the dimensions of the business card are displayed at the bottom of the <emph>Format</emph> area.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Papirtypen og målene på visitkortet vises nederst i området <emph>Format</emph>.</ahelp>"
#: 01010302.xhp
msgctxt ""
@@ -2014,7 +2014,7 @@ msgctxt ""
"par_id7375713\n"
"help.text"
msgid "When you use <item type=\"menuitem\">File - Templates - Save as Template</item> to save a template, the template will be stored in your user template folder. When you open a document that is based on such a template, the document will be checked for a changed template as described below. The template is associated with the document, it may be called a \"sticky template\"."
-msgstr ""
+msgstr "Når du bruger <item type=\"menuitem\">Filer - Skabeloner - Gem som skabelon...</item> for at gemme en skabelon, vil skabelonen blive gemt i dit brugerskabelonbibliotek. Når du åbner et dokument, som er baseret på en sådan skabelon, vil dokumentet blive kontrolleret for om skabelonen er ændret som beskrevet nedenfor. Skabelonen bliver knyttet til dokumentet og kan kaldes en \"dynamisk skabelon\"."
#: 01020000.xhp
msgctxt ""
@@ -2142,7 +2142,7 @@ msgctxt ""
"par_id531513630220632\n"
"help.text"
msgid "A remote file server is web service that stores documents with or without checkin, checkout, version controls and backups."
-msgstr ""
+msgstr "En ekstern filserver er en webtjeneste, der gemmer dokumenter med eller uden check-in, check-ud, versionskontrol og backup."
#: 01020001.xhp
msgctxt ""
@@ -2446,7 +2446,7 @@ msgctxt ""
"par_id531513630220632\n"
"help.text"
msgid "A remote file server is a web service that stores documents with or without checkin, checkout, version controls and backups."
-msgstr ""
+msgstr "En ekstern filserver er en webtjeneste, der gemmer dokumenter med eller uden check-in, check-ud, versionskontrol og backup."
#: 01060001.xhp
msgctxt ""
@@ -2566,7 +2566,7 @@ msgctxt ""
"par_id3155934\n"
"help.text"
msgid "The following sections describe the <item type=\"productname\">%PRODUCTNAME</item> <emph>Save as</emph> dialog. To activate the <emph><item type=\"productname\">%PRODUCTNAME</item> Open</emph> and <emph>Save</emph> dialog boxes, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - </emph><link href=\"text/shared/optionen/01010600.xhp\" name=\"%PRODUCTNAME - General\"><emph>%PRODUCTNAME- General</emph></link>, and then select the <emph>Use %PRODUCTNAME dialogs</emph> in the <emph>Open/Save dialogs</emph> area."
-msgstr ""
+msgstr "De følgende afsnit beskriver dialogen <item type=\"productname\">%PRODUCTNAME</item><emph>Gem som</emph>. For at aktivere dialogboksene <emph><item type=\"productname\">%PRODUCTNAME</item> Åbn</emph> og <emph>Save</emph>, vælger du <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Indstillinger</emph></caseinline> <defaultinline><emph>Funktioner - Indstillinger</emph></defaultinline></switchinline><emph> - </emph><link href=\"text/shared/optionen/01010600.xhp\" name=\"%PRODUCTNAME - General\"><emph>%PRODUCTNAME- Generelt</emph></link>, og vælger herefter <emph>Brug %PRODUCTNAME dialoger</emph> i området <emph>Åbn/Gem dialoger</emph>."
#: 01070000.xhp
msgctxt ""
@@ -2654,7 +2654,7 @@ msgctxt ""
"par_id3149902\n"
"help.text"
msgid "<ahelp hid=\".\">Displays the files and folders in the folder that you are in.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Viser filerne og mapperne i den mappe, du er i.</ahelp>"
#: 01070000.xhp
msgctxt ""
@@ -2670,7 +2670,7 @@ msgctxt ""
"par_id3153626\n"
"help.text"
msgid "<ahelp hid=\".\">Enter a file name or a path for the file. You can also enter a <link href=\"text/shared/00/00000002.xhp#url\" name=\"URL\">URL</link></ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Indtast et filnavn eller en sti til filen. Du kan også indtaste en <link href=\"text/shared/00/00000002.xhp#url\" name=\"URL\">URL</link></ahelp>"
#: 01070000.xhp
msgctxt ""
@@ -2686,7 +2686,7 @@ msgctxt ""
"par_id3156343\n"
"help.text"
msgid "<ahelp hid=\".\">Select the file format for the document that you are saving.</ahelp> In the display area, only the documents with this file type are displayed. File types are described in <link href=\"text/shared/00/00000020.xhp\" name=\"Information on Import and Export Filters\">Information on Import and Export Filters</link>."
-msgstr ""
+msgstr "<ahelp hid=\".\">Vælg filformatet for dokumentet, som du gemmer.</ahelp> I visningsområdet vises kun dokumenterne med denne filtype. Filtyper er beskrevet i <link href=\"text/shared/00/00000020.xhp\" name=\"Information on Import and Export Filters\">Information om filtre til import og eksport</link>."
#: 01070000.xhp
msgctxt ""
@@ -2710,7 +2710,7 @@ msgctxt ""
"par_id3154068\n"
"help.text"
msgid "<ahelp hid=\".\">Saves the file.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Gemmer filen.</ahelp>"
#: 01070000.xhp
msgctxt ""
@@ -3422,7 +3422,7 @@ msgctxt ""
"par_id3156324\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Some statistic values can be used as <link href=\"text/swriter/02/14020000.xhp\" name=\"variables in formulas\">variables in formulas</link>.</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Nogle statistiske værdier kan bruges som <link href=\"text/swriter/02/14020000.xhp\" name=\"variables in formulas\">variable i formler</link>.</caseinline></switchinline>"
#: 01100400.xhp
msgctxt ""
@@ -3454,7 +3454,7 @@ msgctxt ""
"par_id3153527\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Number of tables in the file.</caseinline><caseinline select=\"CALC\">Number of sheets in the file.</caseinline></switchinline> This statistic does not include tables that were inserted as <link href=\"text/shared/00/00000005.xhp#ole\" name=\"OLE\">OLE</link> objects."
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Antal tabeller i filen.</caseinline><caseinline select=\"CALC\">Antal ark i filen.</caseinline></switchinline>Denne statistisk inkluderer ikke tabeller, der blev indsat som <link href=\"text/shared/00/00000005.xhp#ole\" name=\"OLE\">OLE</link>-objekter."
#: 01100400.xhp
msgctxt ""
@@ -3470,7 +3470,7 @@ msgctxt ""
"par_id3156114\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Number of cells with content in the file.</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Antal celler med indhold i filen.</caseinline></switchinline>"
#: 01100400.xhp
msgctxt ""
@@ -3478,7 +3478,7 @@ msgctxt ""
"hd_id641526904710590\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Formula groups:</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Formelgrupper:</caseinline></switchinline>"
#: 01100400.xhp
msgctxt ""
@@ -3486,7 +3486,7 @@ msgctxt ""
"par_id541526903668055\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Number of contiguous ranges in a column with same formula.</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Antal sammenhængende områder i en kolonne med samme formel.</caseinline></switchinline>"
#: 01100400.xhp
msgctxt ""
@@ -3494,7 +3494,7 @@ msgctxt ""
"hd_id3147210\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Images:</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Billeder:</caseinline></switchinline>"
#: 01100400.xhp
msgctxt ""
@@ -3502,7 +3502,7 @@ msgctxt ""
"par_id3166411\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Number of images in the file. This statistic does not include images that were inserted as <link href=\"text/shared/00/00000005.xhp#ole\" name=\"OLE\">OLE</link> objects.</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Antal billeder i filen. Denne statistik omfatter ikke billeder, der blev indsat som <link href=\"text/shared/00/00000005.xhp#ole\" name=\"OLE\">OLE</link>-objekter.</caseinline></switchinline>"
#: 01100400.xhp
msgctxt ""
@@ -3510,7 +3510,7 @@ msgctxt ""
"hd_id3147618\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">OLE Objects:</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">OLE-objekter: </caseinline></switchinline>"
#: 01100400.xhp
msgctxt ""
@@ -3518,7 +3518,7 @@ msgctxt ""
"par_id3149820\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Number of <link href=\"text/shared/00/00000005.xhp#ole\" name=\"OLE\">OLE</link> objects in the file, including tables and graphics that were inserted as OLE objects.</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Antal <link href=\"text/shared/00/00000005.xhp#ole\" name=\"OLE\">OLE-objekter</link> i filen, medregnet tabeller og grafik, der er indsat som Ole-objekter.</caseinline></switchinline>"
#: 01100400.xhp
msgctxt ""
@@ -3526,7 +3526,7 @@ msgctxt ""
"hd_id3153665\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Paragraphs:</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Afsnit:</caseinline></switchinline>"
#: 01100400.xhp
msgctxt ""
@@ -3534,7 +3534,7 @@ msgctxt ""
"par_id3156156\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Number of paragraphs (including blank paragraphs) in the file.</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Antal afsnit (medregnet tomme afsnit) i filen.</caseinline></switchinline>"
#: 01100400.xhp
msgctxt ""
@@ -3542,7 +3542,7 @@ msgctxt ""
"hd_id3155261\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Words:</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Ord:</caseinline></switchinline>"
#: 01100400.xhp
msgctxt ""
@@ -3550,7 +3550,7 @@ msgctxt ""
"par_id3147402\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Number of words (including words consisting of a single character) in the file.</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Antal ord (inklusiv ord, der består af et enkelt tegn) i filen.</caseinline></switchinline>"
#: 01100400.xhp
msgctxt ""
@@ -3558,7 +3558,7 @@ msgctxt ""
"hd_id3150466\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Characters:</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Karakterer:</caseinline></switchinline>"
#: 01100400.xhp
msgctxt ""
@@ -3566,7 +3566,7 @@ msgctxt ""
"par_id3149294\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Number of characters (including spaces) in the file. Non-printable characters are not included.</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Antal tegn (medregnet mellemrum) i filen. Tegn, der ikke kan udskrives, er ikke medregnet.</caseinline></switchinline>"
#: 01100400.xhp
msgctxt ""
@@ -3574,7 +3574,7 @@ msgctxt ""
"hd_id3148947\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Lines:</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Linjer:</caseinline></switchinline>"
#: 01100400.xhp
msgctxt ""
@@ -3582,7 +3582,7 @@ msgctxt ""
"par_id3149650\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Number of lines in the file.</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Antal linjer i filen.</caseinline></switchinline>"
#: 01100400.xhp
msgctxt ""
@@ -3590,7 +3590,7 @@ msgctxt ""
"hd_id3153525\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Update</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Opdater</caseinline></switchinline>"
#: 01100400.xhp
msgctxt ""
@@ -4814,7 +4814,7 @@ msgctxt ""
"par_id3157322\n"
"help.text"
msgid "Ensure that the Landscape or Portrait layout option set in the printer properties dialog matches the page format that you set by choosing <switchinline select=\"appl\"><caseinline select=\"IMPRESS\"><emph>Slide - Properties</emph></caseinline><caseinline select=\"DRAW\"><emph>Page - Properties</emph></caseinline><defaultinline><emph>Format - Page</emph></defaultinline></switchinline>."
-msgstr ""
+msgstr "Kontrollér, at valgmuligheden Liggende eller Stående i dialogen Printeregenskaber matcher det sideformat, du indstiller ved at vælge <switchinline select=\"appl\"><caseinline select=\"IMPRESS\"><emph>Dias - Egenskaber</emph></caseinline><caseinline select=\"DRAW\"><emph>Side - Egenskaber</emph></caseinline><defaultinline><emph>Formater - Side</emph></defaultinline></switchinline>."
#: 01140000.xhp
msgctxt ""
@@ -4902,7 +4902,7 @@ msgctxt ""
"par_id5917844\n"
"help.text"
msgid "Opens a new window in your default e-mail program with the current document as an attachment. The OpenDocument file format is used."
-msgstr ""
+msgstr "Åbner et nyt vindue i dit standard e-mail program med det aktuelle dokument som en vedhæftning. Filformatet OpenDocument bruges."
#: 01160000.xhp
msgctxt ""
@@ -4918,7 +4918,7 @@ msgctxt ""
"par_id5759453\n"
"help.text"
msgid "Opens a new window in your default e-mail program with the current document as an attachment. The Microsoft Excel file format is used."
-msgstr ""
+msgstr "Åbner et nyt vindue i dit standardprogram til e-mail med det aktuelle dokument som en vedhæftning/bilag. Microsoft Excel filformatet bliver brugt."
#: 01160000.xhp
msgctxt ""
@@ -4934,7 +4934,7 @@ msgctxt ""
"par_id7829218\n"
"help.text"
msgid "Opens a new window in your default e-mail program with the current document as an attachment. The OpenDocument file format is used."
-msgstr ""
+msgstr "Åbner et nyt vindue i dit standardprogram til e-mail med det aktuelle dokument som en vedhæftet fil. Filformatet OpenDocument bliver brugt."
#: 01160000.xhp
msgctxt ""
@@ -4950,7 +4950,7 @@ msgctxt ""
"par_id8319650\n"
"help.text"
msgid "Opens a new window in your default e-mail program with the current document as an attachment. The Microsoft PowerPoint file format is used."
-msgstr ""
+msgstr "Åbner et nyt vindue i dit standardprogram til e-mail med det aktuelle dokument som en vedhæftning/bilag. Microsoft Excel filformatet bliver brugt."
#: 01160000.xhp
msgctxt ""
@@ -4966,7 +4966,7 @@ msgctxt ""
"par_id9085055\n"
"help.text"
msgid "Opens a new window in your default e-mail program with the current document as an attachment. The OpenDocument file format is used."
-msgstr ""
+msgstr "Åbner et nyt vindue i dit standardprogram for e-mail med det aktuelle dokument som en vedhæftet fil. Filformatet OpenDocument bliver brugt."
#: 01160000.xhp
msgctxt ""
@@ -4982,7 +4982,7 @@ msgctxt ""
"par_id5421918\n"
"help.text"
msgid "Opens a new window in your default e-mail program with the current document as an attachment. The Microsoft Word file format is used."
-msgstr ""
+msgstr "Åbner et nyt vindue i dit standardprogram til e-mail med det aktuelle dokument som en vedhæftning/bilag. Microsoft Word filformatet bliver brugt."
#: 01160000.xhp
msgctxt ""
@@ -5062,7 +5062,7 @@ msgctxt ""
"par_id3148668\n"
"help.text"
msgid "<variable id=\"globtext\"><ahelp hid=\".\">Creates a master document from the current Writer document. A new sub-document is created at each occurrence of a chosen paragraph style or outline level in the source document.</ahelp></variable>"
-msgstr ""
+msgstr "<variable id=\"globtext\"><ahelp hid=\".\">Opretter et hoveddokument ud fra det aktuelle Writer-dokument. Der bliver oprettet et nyt underdokument for hver forekomst af en valgt afsnitstypografi eller disposition i kildedokumentet.</ahelp></variable>"
#: 01160300.xhp
msgctxt ""
@@ -5102,7 +5102,7 @@ msgctxt ""
"par_id3156426\n"
"help.text"
msgid "<ahelp hid=\".\">Select the paragraph style or outline level that you want to use to separate the source document into sub-documents.</ahelp> By default a new document is created for every chapter level 1."
-msgstr ""
+msgstr "<ahelp hid=\".\" >Vælg afsnitstypografien eller dispositionsniveau, som du vil bruge til at opdele kildedokumentet i underdokumenter.</ahelp> Standard er oprettelse af et nyt dokument for hvert \"dispositionsniveau 1\"."
#: 01160300.xhp
msgctxt ""
@@ -5678,7 +5678,7 @@ msgctxt ""
"bm_id3149031\n"
"help.text"
msgid "<bookmark_value>pasting;cell ranges</bookmark_value><bookmark_value>clipboard; pasting</bookmark_value><bookmark_value>cells;pasting</bookmark_value><bookmark_value>pasting;Enter key</bookmark_value><bookmark_value>pasting;Ctrl + V shortcut</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>indsætte;celleområder</bookmark_value><bookmark_value>clipboard; indsætte</bookmark_value><bookmark_value>celler; indsætte</bookmark_value><bookmark_value>indsætte, Enter-tast</bookmark_value><bookmark_value>indsætte;genvejen Ctrl + V</bookmark_value>"
#: 02060000.xhp
msgctxt ""
@@ -5702,7 +5702,7 @@ msgctxt ""
"par_id551521061448109\n"
"help.text"
msgid "Press the <emph>Enter key</emph>."
-msgstr ""
+msgstr "Tryk på <emph>Enter-tasten</emph>."
#: 02060000.xhp
msgctxt ""
@@ -5710,7 +5710,7 @@ msgctxt ""
"par_id3147834\n"
"help.text"
msgid "In a spreadsheet, when you paste a range of cells from the clipboard, the result depends on the current selection: If only one cell is selected, the cell range will be pasted started from that cell. If you mark a cell range wider than the cell range in the clipboard, the cell range will be pasted repeatedly to fill the selected cell range."
-msgstr ""
+msgstr "Når du indsætter et celleområde fra udklipsholderen i et regneark, afhænger resultatet af den aktuelle markering: Hvis kun én celle er valgt, bliver celleområdet indsat startende i den valgte celle. Hvis du markerer et celleområde bredere end celleområdet i udklipsholderen, bliver celleområdet indsat gentaget for at fylde det valgte celleområde."
#: 02060000.xhp
msgctxt ""
@@ -5718,7 +5718,7 @@ msgctxt ""
"hd_id221521057740108\n"
"help.text"
msgid "Pasting contents in %PRODUCTNAME Calc"
-msgstr ""
+msgstr "Indsætter indhold i %PRODUCTNAME Calc"
#: 02060000.xhp
msgctxt ""
@@ -5726,7 +5726,7 @@ msgctxt ""
"par_id271521057645962\n"
"help.text"
msgid "When copying a cell or a range in %PRODUCTNAME Calc the selection is marked with blinking dashes around the range (the \"marching ants\") to indicate what was being selected during the clipboard operation."
-msgstr ""
+msgstr "Når du kopierer en celle eller et celleområde i %PRODUCTNAME Calc vises markeringen med blinkende streger omkring området (de \"marcherende myrer\") for at vise, hvad der blev markeret i udklipsholder-handlingen."
#: 02060000.xhp
msgctxt ""
@@ -5734,7 +5734,7 @@ msgctxt ""
"par_id481521058175847\n"
"help.text"
msgid "<image src=\"media/helpimg/sw_paste_range.png\" id=\"img_id541521058175847\" width=\"153\" height=\"60\"><alt id=\"alt_id221521058175847\">Marching ants mark for Calc clipboard</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/helpimg/sw_paste_range.png\" id=\"img_id541521058175847\" width=\"153\" height=\"60\"><alt id=\"alt_id221521058175847\">Myremarch til Calc-udklipsholder</alt></image>"
#: 02060000.xhp
msgctxt ""
@@ -5742,7 +5742,7 @@ msgctxt ""
"par_id861521058166011\n"
"help.text"
msgid "There are two ways to paste the clipboard contents in a spreadsheet document:"
-msgstr ""
+msgstr "Der er to måder at sætte indholdet af udklipsholderen ind i et regnearks-dokument:"
#: 02060000.xhp
msgctxt ""
@@ -5750,7 +5750,7 @@ msgctxt ""
"par_id561521057687471\n"
"help.text"
msgid "Using <emph>Ctrl+V shortcut</emph>, the <emph>Paste icon</emph> in the toolbar or choose <item type=\"menuitem\">Edit - Paste</item> : The contents of the clipboard is pasted in the target location and the clipboard keeps the contents for more paste operations. The copied selection mark stays active."
-msgstr ""
+msgstr "Med <emph>Ctrl+V-genvejen</emph>, <emph>Indsæt-ikonet</emph> på værktøjslinien eller ved at vælge <item type=\"menuitem\">Rediger - Indsæt</item>: Indsættes indholdet af udklipsholderen på målplaceringen og udklipsholderen beholder indholdet til flere indsættelses-handlinger. Den kopierede markering forbliver aktiv."
#: 02060000.xhp
msgctxt ""
@@ -5758,7 +5758,7 @@ msgctxt ""
"par_id811521057699468\n"
"help.text"
msgid "Using <emph>Enter</emph> key: the clipboard contents is pasted once and cleared. No further paste is possible with the clipboard contents. The copied selection mark is disabled."
-msgstr ""
+msgstr "Med <emph>Enter</emph>-tasten: indeholdet i udklipsholderen indsættes én gang og slettes. Udklipsholderens indhold kan ikke indsættes igen. Markeringsmærket deaktiveres."
#: 02060000.xhp
msgctxt ""
@@ -5766,7 +5766,7 @@ msgctxt ""
"par_id531521057600924\n"
"help.text"
msgid "To deactivate the copied selection mark press the <emph>Esc</emph> key. The clipboard contents is not cleared."
-msgstr ""
+msgstr "For at deaktivere den kopierede markering trykker du på <emph>Esc</emph>-tasten. Udklipsholderens indhold slettes ikke."
#: 02070000.xhp
msgctxt ""
@@ -5830,7 +5830,7 @@ msgctxt ""
"par_id3147653\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">When you paste HTML data into a text document, you can choose \"HTML format\" or \"HTML format without comments\". The second choice is the default; it pastes all HTML data, but no comments.</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Når du indsætter HTML-data i et tekstdokument, kan du vælge \"HTML-format\" eller \"HTML-format uden kommentarer\". Valg nr. 2 er standard; det indsætter alle HTML-data, men ingen kommentarer.</caseinline></switchinline>"
#: 02070000.xhp
msgctxt ""
@@ -5838,7 +5838,7 @@ msgctxt ""
"hd_id3155420\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Paste Special</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Indsæt speciel</caseinline></switchinline>"
#: 02070000.xhp
msgctxt ""
@@ -5846,7 +5846,7 @@ msgctxt ""
"par_id3150976\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">This dialog appears in Calc if the clipboard contains spreadsheet cells.</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Denne dialog vises i Calc, hvis udklipsholderen indeholder regnearksceller. </caseinline></switchinline>"
#: 02070000.xhp
msgctxt ""
@@ -5854,7 +5854,7 @@ msgctxt ""
"hd_id3155341\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Selection</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Markering</caseinline></switchinline>"
#: 02070000.xhp
msgctxt ""
@@ -5862,7 +5862,7 @@ msgctxt ""
"par_id3152909\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Select a format for the clipboard contents that you want to paste.</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Vælg i hvilket format du vil indsætte indholdet af udklipsholderen.</caseinline></switchinline>"
#: 02070000.xhp
msgctxt ""
@@ -5870,7 +5870,7 @@ msgctxt ""
"hd_id3145120\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Paste all</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Indsæt alt</caseinline></switchinline>"
#: 02070000.xhp
msgctxt ""
@@ -5886,7 +5886,7 @@ msgctxt ""
"hd_id3155449\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Text</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Tekst</caseinline></switchinline>"
#: 02070000.xhp
msgctxt ""
@@ -5894,7 +5894,7 @@ msgctxt ""
"par_id3149244\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/pastespecial/text\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Inserts cells containing text.</caseinline></switchinline></ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/scalc/ui/pastespecial/text\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Indsætter celler med tekst.</caseinline></switchinline></ahelp>"
#: 02070000.xhp
msgctxt ""
@@ -5902,7 +5902,7 @@ msgctxt ""
"hd_id3148947\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Numbers</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Tal</caseinline></switchinline>"
#: 02070000.xhp
msgctxt ""
@@ -5910,7 +5910,7 @@ msgctxt ""
"par_id3152360\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/pastespecial/numbers\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Inserts cells containing numbers.</caseinline></switchinline></ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/scalc/ui/pastespecial/numbers\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Indsætter celler med tal.</caseinline></switchinline></ahelp>"
#: 02070000.xhp
msgctxt ""
@@ -5918,7 +5918,7 @@ msgctxt ""
"hd_id3151054\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Date & Time</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Dato og Tid</caseinline></switchinline>"
#: 02070000.xhp
msgctxt ""
@@ -5926,7 +5926,7 @@ msgctxt ""
"par_id3154226\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/pastespecial/datetime\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Inserts cells containing date and time values.</caseinline></switchinline></ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/scalc/ui/pastespecial/datetime\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Indsætter celler med dato og klokkeslæt.</caseinline></switchinline></ahelp>"
#: 02070000.xhp
msgctxt ""
@@ -5958,7 +5958,7 @@ msgctxt ""
"par_id3156422\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/pastespecial/comments\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Inserts comments that are attached to cells. If you want to add the comments to the existing cell content, select the \"Add\" operation.</caseinline></switchinline></ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/scalc/ui/pastespecial/comments\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Indsætter kommentarer som bliver hæftet til celler. Hvis du vil føje kommentarerne til det eksisterende celleindhold, skal du vælge handlingen \"Tilføj\".</caseinline></switchinline></ahelp>"
#: 02070000.xhp
msgctxt ""
@@ -5966,7 +5966,7 @@ msgctxt ""
"hd_id3152935\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Formats</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Formler</caseinline></switchinline>"
#: 02070000.xhp
msgctxt ""
@@ -5974,7 +5974,7 @@ msgctxt ""
"par_id3125863\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/pastespecial/formats\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Inserts cell format attributes.</caseinline></switchinline></ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/scalc/ui/pastespecial/formats\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Indsætter celleformat-attributter.</caseinline></switchinline></ahelp>"
#: 02070000.xhp
msgctxt ""
@@ -5982,7 +5982,7 @@ msgctxt ""
"hd_id3156282\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Objects</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Objekter</caseinline></switchinline>"
#: 02070000.xhp
msgctxt ""
@@ -5990,7 +5990,7 @@ msgctxt ""
"par_id3149810\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/pastespecial/objects\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Inserts objects contained within the selected cell range. These can be OLE objects, chart objects, or drawing objects.</caseinline></switchinline></ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/scalc/ui/pastespecial/objects\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Indsætter objekter fra det valgte celleområde. Det kan være OLE-objekter, diagram objekter, eller tegneobjekter.</caseinline></switchinline></ahelp>"
#: 02070000.xhp
msgctxt ""
@@ -5998,7 +5998,7 @@ msgctxt ""
"hd_id3150440\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Operations</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Handlinger</caseinline></switchinline>"
#: 02070000.xhp
msgctxt ""
@@ -6006,7 +6006,7 @@ msgctxt ""
"par_id3151351\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Select the operation to apply when you paste cells into your sheet.</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Marker den handling, der skal udføres, når du indsætter celler i dit ark.</caseinline></switchinline>"
#: 02070000.xhp
msgctxt ""
@@ -6014,7 +6014,7 @@ msgctxt ""
"hd_id3153952\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">None</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Ingen</caseinline></switchinline>"
#: 02070000.xhp
msgctxt ""
@@ -6022,7 +6022,7 @@ msgctxt ""
"par_id3147348\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/pastespecial/none\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Does not apply an operation when you insert the cell range from the clipboard. The contents of the clipboard will replace existing cell contents.</caseinline></switchinline></ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/scalc/ui/pastespecial/none\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Udfører ingen handling, når du indsætter celler´området fra udklipsholderen. Indholdet på udklipsholderen erstatter celleindholdet.</caseinline></switchinline></ahelp>"
#: 02070000.xhp
msgctxt ""
@@ -6030,7 +6030,7 @@ msgctxt ""
"hd_id3154988\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Add</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Addér</caseinline></switchinline>"
#: 02070000.xhp
msgctxt ""
@@ -6038,7 +6038,7 @@ msgctxt ""
"par_id3159196\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/pastespecial/add\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Adds the values in the clipboard cells to the values in the target cells. Also, if the clipboard only contains comments, adds the comments to the target cells.</caseinline></switchinline></ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/scalc/ui/pastespecial/add\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Lægger værdierne fra udklipsholderen til værdierne i målcellerne. Derudover tilføjes kommentarerne til målcellernem hvis udklipsholderen kun indeholder kommentarer.</caseinline></switchinline></ahelp>"
#: 02070000.xhp
msgctxt ""
@@ -6046,7 +6046,7 @@ msgctxt ""
"hd_id3145263\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Subtract</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Subtrahér</caseinline></switchinline>"
#: 02070000.xhp
msgctxt ""
@@ -6054,7 +6054,7 @@ msgctxt ""
"par_id3154149\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/pastespecial/subtract\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Subtracts the values in the clipboard cells from the values in the target cells.</caseinline></switchinline></ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/scalc/ui/pastespecial/subtract\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Fratrækker værdierne i udklipsholderens celler fra værdierne i målcellerne. </caseinline></switchinline></ahelp>"
#: 02070000.xhp
msgctxt ""
@@ -6062,7 +6062,7 @@ msgctxt ""
"hd_id3155312\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Multiply</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Multiplicér</caseinline></switchinline>"
#: 02070000.xhp
msgctxt ""
@@ -6070,7 +6070,7 @@ msgctxt ""
"par_id3155307\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/pastespecial/multiply\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Multiplies the values in the clipboard cells with the values in the target cells.</caseinline></switchinline></ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/scalc/ui/pastespecial/multiply\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Ganger værdierne i udklipsholderens celler med værdierne i målcellerne. </caseinline></switchinline></ahelp>"
#: 02070000.xhp
msgctxt ""
@@ -6078,7 +6078,7 @@ msgctxt ""
"hd_id3154320\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Divide</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Dividér</caseinline></switchinline>"
#: 02070000.xhp
msgctxt ""
@@ -6086,7 +6086,7 @@ msgctxt ""
"par_id3155417\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/pastespecial/divide\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Divides the values in the target cells by the values in the clipboard cells.</caseinline></switchinline></ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/scalc/ui/pastespecial/divide\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Dividerer værdierne i målcellerne med værdier i udklipsholderens celler..</caseinline></switchinline></ahelp>"
#: 02070000.xhp
msgctxt ""
@@ -6094,7 +6094,7 @@ msgctxt ""
"hd_id3147048\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Options</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Valgmuligheder</caseinline></switchinline>"
#: 02070000.xhp
msgctxt ""
@@ -6102,7 +6102,7 @@ msgctxt ""
"par_id3156283\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Sets the paste options for the clipboard contents.</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Skift indstillinger for hvordan indholdet af udklipsholderen skal indsættes.</caseinline></switchinline>"
#: 02070000.xhp
msgctxt ""
@@ -6110,7 +6110,7 @@ msgctxt ""
"hd_id3151052\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Skip empty cells</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Spring tomme celler over</caseinline></switchinline>"
#: 02070000.xhp
msgctxt ""
@@ -6134,7 +6134,7 @@ msgctxt ""
"hd_id3147173\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Transpose</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Formler</caseinline></switchinline>"
#: 02070000.xhp
msgctxt ""
@@ -6150,7 +6150,7 @@ msgctxt ""
"hd_id3152971\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Link</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Link</caseinline></switchinline>"
#: 02070000.xhp
msgctxt ""
@@ -6166,7 +6166,7 @@ msgctxt ""
"par_id3145667\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">You can also link sheets within the same spreadsheet. When you link to other files, a <link href=\"text/shared/00/00000005.xhp#dde\" name=\"DDE link\">DDE link</link> is automatically created. A DDE link is inserted as a matrix formula and can only be modified as a whole.</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Du kan også oprette links inden for det samme regneark. Når du linker til andre filer, oprettes automatisk et <link href=\"text/shared/00/00000005.xhp#dde\" name=\"DDE-link\">DDE-link</link>. Et DDE-link indsættes som en matrixformel og kan kun ændres under ét.</caseinline></switchinline>"
#: 02070000.xhp
msgctxt ""
@@ -6174,7 +6174,7 @@ msgctxt ""
"hd_id3146914\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Shift Cells</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Ryk celler</caseinline></switchinline>"
#: 02070000.xhp
msgctxt ""
@@ -6182,7 +6182,7 @@ msgctxt ""
"par_id3145169\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Set the shift options for the target cells when the clipboard content is inserted.</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Definer hvordan målceller skal flyttes, når udklipsholderens indhold bliver indsat.</caseinline></switchinline>"
#: 02070000.xhp
msgctxt ""
@@ -6190,7 +6190,7 @@ msgctxt ""
"hd_id3155518\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Don't shift</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Ryk ikke</caseinline></switchinline>"
#: 02070000.xhp
msgctxt ""
@@ -6198,7 +6198,7 @@ msgctxt ""
"par_id3154158\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/pastespecial/no_shift\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Inserted cells replace the target cells.</caseinline></switchinline></ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/scalc/ui/pastespecial/no_shift\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Indsatte celler erstatter målcellerne.</caseinline></switchinline></ahelp>"
#: 02070000.xhp
msgctxt ""
@@ -6206,7 +6206,7 @@ msgctxt ""
"hd_id3148483\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Down</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Nedad</caseinline></switchinline>"
#: 02070000.xhp
msgctxt ""
@@ -6214,7 +6214,7 @@ msgctxt ""
"par_id3152962\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/pastespecial/move_down\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Target cells are shifted downward when you insert cells from the clipboard.</caseinline></switchinline></ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/scalc/ui/pastespecial/move_down\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Målceller flyttes nedad, når du indsætter celler fra udklipsholderen.</caseinline></switchinline></ahelp>"
#: 02070000.xhp
msgctxt ""
@@ -6222,7 +6222,7 @@ msgctxt ""
"hd_id3145621\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Right</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Højre</caseinline></switchinline>"
#: 02070000.xhp
msgctxt ""
@@ -6230,7 +6230,7 @@ msgctxt ""
"par_id3159264\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/pastespecial/move_right\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Target cells are shifted to the right when you insert cells from the clipboard.</caseinline></switchinline></ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/scalc/ui/pastespecial/move_right\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Målceller flyttes til højre, når du indsætter celler fra udklipsholderen.</caseinline></switchinline></ahelp>"
#: 02090000.xhp
msgctxt ""
@@ -6254,7 +6254,7 @@ msgctxt ""
"par_id3149999\n"
"help.text"
msgid "<variable id=\"allestext\"><ahelp hid=\".\">Selects the entire content of the current file, frame, or text object.</ahelp></variable>"
-msgstr ""
+msgstr "<variable id=\"allestext\"><ahelp hid=\".\">Markerer hele indholdet af den aktuelle fil, ramme eller tekstobjekt.</ahelp></variable>"
#: 02090000.xhp
msgctxt ""
@@ -7678,7 +7678,7 @@ msgctxt ""
"par_id1751457\n"
"help.text"
msgid "<link href=\"https://wiki.documentfoundation.org/Documentation/How_Tos/Regular_Expressions_in_Writer\" name=\"wiki.documentfoundation.org Documentation/HowTo/Writer/Regular Expressions\">Wiki page about regular expressions in Writer</link>"
-msgstr ""
+msgstr "<link href=\"https://wiki.documentfoundation.org/Documentation/How_Tos/Regular_Expressions_in_Writer\" name=\"wiki.documentfoundation.org Documentation/HowTo/Writer/Regular Expressions\">Wiki-side om regulære udtryk i Writer</link>"
#: 02100001.xhp
msgctxt ""
@@ -7686,7 +7686,7 @@ msgctxt ""
"par_id5483870\n"
"help.text"
msgid "<link href=\"https://wiki.documentfoundation.org/Documentation/How_Tos/Regular_Expressions_in_Calc\" name=\"wiki.documentfoundation.org Documentation/HowTo/Calc/Regular Expressions\">Wiki page about regular expressions in Calc</link>"
-msgstr ""
+msgstr "<link href=\"https://wiki.documentfoundation.org/Documentation/How_Tos/Regular_Expressions_in_Calc\" name=\"wiki.documentfoundation.org Documentation/HowTo/Calc/Regular Expressions\">Wiki-side om regulære udtryk i Calc</link>"
#: 02100100.xhp
msgctxt ""
@@ -8902,7 +8902,7 @@ msgctxt ""
"par_id3150774\n"
"help.text"
msgid "<variable id=\"links_text\"><variable id=\"verknuepfungentext\"><ahelp hid=\".\">Lets you edit the properties of each link in the current document, including the path to the source file. This command is not available if the current document does not contain links to other files.</ahelp> </variable></variable>"
-msgstr ""
+msgstr "<variable id=\"links_text\"><variable id=\"verknuepfungentext\"><ahelp hid=\".\">Lader dig redigere egenskaberne for hvert link i det aktuelle dokument, herunder stien til kildefilen. Denne kommando er ikke tilgængelig, hvis det aktuelle dokument ikke indeholder referencer til andre filer.</ahelp></variable></variable>"
#: 02180000.xhp
msgctxt ""
@@ -10958,7 +10958,7 @@ msgctxt ""
"par_id3150868\n"
"help.text"
msgid "<ahelp hid=\"svx/ui/acceptrejectchangesdialog/calcdesc\">Lists the comments that are attached to the change.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"svx/ui/acceptrejectchangesdialog/calcdesc\">Oplister de kommentarer, der er tilknyttet ændringerne.</ahelp>"
#: 02230401.xhp
msgctxt ""
@@ -11046,7 +11046,7 @@ msgctxt ""
"par_id3151116\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">If you made changes by choosing <emph>Tools - AutoCorrect - Apply and Edit Changes</emph>, the <emph>Undo</emph> button appears in the dialog.<ahelp hid=\"svx/ui/acceptrejectchangesdialog/undo\"> Reverse the last Accept or Reject command.</ahelp></caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Hvis du lavet ændringer ved at vælge <emph>Formater - Autokorrektur - Anvend og rediger ændringer</emph>, vises knappen <emph>Fortryd</emph> i dialogen.<ahelp hid=\"svx/ui/acceptrejectchangesdialog/undo\">Omgør den sidste accepter- eller afvis-kommando.</ahelp></caseinline></switchinline>"
#: 02230401.xhp
msgctxt ""
@@ -11782,7 +11782,7 @@ msgctxt ""
"par_id3144760\n"
"help.text"
msgid "<ahelp hid=\".\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Resizes the display to fit the width of the selected cell area at the moment the command is started.</caseinline><defaultinline>Resizes the display to fit the width of the text in the document at the moment the command is started.</defaultinline></switchinline></ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Tilpasser størrelsen på visningen, så den passer til bredden af det valgte celleområde på det tidspunkt, kommandoen påbegyndes.</caseinline><defaultinline>Tilpasser størrelsen på visningen, så den passer til bredden af teksten i dokumentet..</defaultinline></switchinline></ahelp>"
#: 03010000.xhp
msgctxt ""
@@ -11798,7 +11798,7 @@ msgctxt ""
"par_id3150543\n"
"help.text"
msgid "<ahelp hid=\".\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Resizes the display to fit the width and height of the selected cell area at the moment the command is started.</caseinline><defaultinline>Displays the entire page on your screen.</defaultinline></switchinline></ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Tilpasser størrelsen på visningen, så den passer til bredden og højden af det valgte celleområde på det tidspunkt, kommandoen påbegyndes.</caseinline><defaultinline>Viser hele siden på din skærm.</defaultinline></switchinline></ahelp>"
#: 03010000.xhp
msgctxt ""
@@ -11814,7 +11814,7 @@ msgctxt ""
"par_id3143231\n"
"help.text"
msgid "<ahelp hid=\".\">Displays the complete width of the document page. The top and bottom edges of the page may not be visible.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Viser den fulde bredde af dokumentsiden. De øverste og nederste kanter på siden er ikke nødvendigvis synlige.</ahelp>"
#: 03010000.xhp
msgctxt ""
@@ -11846,7 +11846,7 @@ msgctxt ""
"par_id3159125\n"
"help.text"
msgid "<ahelp hid=\".\">Enter the zoom factor at which you want to display the document. Enter a percentage in the box.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Indtast den zoomfaktor, som du ønsker at vise dokumentet med. Indtast en procentsats i boksen.</ahelp>"
#: 03010000.xhp
msgctxt ""
@@ -12350,7 +12350,7 @@ msgctxt ""
"par_id1857051\n"
"help.text"
msgid "Choose a command to delete the current comment, or all comments from the same author as the current comment, or all comments in the document."
-msgstr ""
+msgstr "Vælg en kommando for at slette den aktuelle kommentar, alle kommentarer fra samme forfatter som denne kommentar eller alle kommentarer i dokumentet."
#: 04050000.xhp
msgctxt ""
@@ -12366,7 +12366,7 @@ msgctxt ""
"par_id0804200803435883\n"
"help.text"
msgid "<ahelp hid=\".\">Use <item type=\"menuitem\">View - Comments</item> to show or hide all comments.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Brug <item type=\"menuitem\">Vis - Kommentarer</item> for at vise eller skjule alle kommentarer. </ahelp>"
#: 04050000.xhp
msgctxt ""
@@ -12526,7 +12526,7 @@ msgctxt ""
"par_id3153124\n"
"help.text"
msgid "To insert a scanned image, the driver for your scanner must be installed. <switchinline select=\"sys\"><caseinline select=\"UNIX\">Under UNIX systems, install the SANE package found at <link href=\"http://www.sane-project.org\" name=\"Sane Project\">http://www.sane-project.org</link>. The SANE package must use the same libc as $[officename].</caseinline></switchinline>"
-msgstr ""
+msgstr "For at indsætte et indskannet billede, skal driveren til din skanner være installeret.<switchinline select=\"sys\"><caseinline select=\"UNIX\">Under UNIX systemer, installerer du SANE-pakken, som findes på <link href=\"http://www.sane-project.org\" name=\"Sane Project\">http://www.sane-project.org</link>. SANE-pakken skal bruge samme libc som $[officename].</caseinline></switchinline>"
#: 04060000.xhp
msgctxt ""
@@ -13022,7 +13022,7 @@ msgctxt ""
"par_id3149495\n"
"help.text"
msgid "<variable id=\"starmath\"><ahelp hid=\".\">Inserts a formula into the current document.</ahelp><switchinline select=\"appl\"><caseinline select=\"MATH\"></caseinline><defaultinline> For more information open the $[officename] Math Help.</defaultinline></switchinline></variable>"
-msgstr ""
+msgstr "<variable id=\"starmath\"><ahelp hid=\".\">Indsætter en formel ind i det aktuelle dokument.</ahelp><switchinline select=\"appl\"><caseinline select=\"MATH\"></caseinline><defaultinline>Se mere information ved at åbne $[officename] Math Hjælp.</defaultinline></switchinline></variable>"
#: 04160300.xhp
msgctxt ""
@@ -13774,7 +13774,7 @@ msgctxt ""
"par_id3150496\n"
"help.text"
msgid "If you save your document in Microsoft Word format, all of the strikethrough styles are converted to the single line style."
-msgstr ""
+msgstr "Hvis du gemmer dit dokument i MS Word-format, vil alle gennemstregstypografierne blive konverteret til enkelt-stregstypen."
#: 05020200.xhp
msgctxt ""
@@ -18078,7 +18078,7 @@ msgctxt ""
"par_id3147275\n"
"help.text"
msgid "<emph>Apply spacing between Asian and non-Asian text</emph>"
-msgstr ""
+msgstr "<emph>Brug afstand mellem asiatisk og ikke-asiatisk tekst</emph>"
#: 05020700.xhp
msgctxt ""
@@ -18086,7 +18086,7 @@ msgctxt ""
"par_id3148539\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/asiantypography/checkApplySpacing\">Inserts a space between ideographic and alphabetic text.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/asiantypography/checkApplySpacing\">Indsætter et mellemrum mellem ideogrammer og alphabetisk tekst.</ahelp>"
#: 05020700.xhp
msgctxt ""
@@ -18990,7 +18990,7 @@ msgctxt ""
"par_id3154299\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/borderpage/sync\">Applies the same <emph>padding</emph> setting to all four borders when you enter a new distance.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/borderpage/sync\">Anvender den samme indstilling for <emph>afstand til indhold</emph> på alle fire kanter, når du indtaster en ny afstand.</ahelp>"
#: 05030500.xhp
msgctxt ""
@@ -21318,7 +21318,7 @@ msgctxt ""
"par_id3083278\n"
"help.text"
msgid "<ahelp hid=\".uno:RubyDialog\">Allows you to add comments next to Asian characters to serve as a pronunciation guide.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".uno:RubyDialog\">Giver dig mulighed for at tilføje kommentarer ved siden af asiatiske tegn som en vejledning i udtale.</ahelp>"
#: 05060000.xhp
msgctxt ""
@@ -21510,7 +21510,7 @@ msgctxt ""
"par_id3160463\n"
"help.text"
msgid "<ahelp hid=\".\">Aligns the left edges of the selected objects. If only one object is selected in Draw or Impress, the left edge of the object is aligned to the left page margin.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Venstrejusterer kanterne på de valgte objekter. Hvis der kun er valgt et objekt i Draw eller Impress, bliver objektets venstre kant justeret til venstre sidemargen.</ahelp>"
#: 05070100.xhp
msgctxt ""
@@ -21550,7 +21550,7 @@ msgctxt ""
"par_id3145138\n"
"help.text"
msgid "<ahelp hid=\".\">Horizontally centers the selected objects. If only one object is selected in Draw or Impress, the center of the object is aligned to the horizontal center of the page.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Centrerer de valgte objekter vandret. Hvis der kun er markeret et objekt i Draw eller Impress, vil midten af objektet blive justeret til det vandrette midtpunkt på siden.</ahelp>"
#: 05070200.xhp
msgctxt ""
@@ -21582,7 +21582,7 @@ msgctxt ""
"par_id3151264\n"
"help.text"
msgid "<ahelp hid=\".\">Aligns the right edges of the selected objects. If only one object is selected in Impress or Draw, the right edge of the object is aligned to the right page margin.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Højrejusterer kanterne af de valgte objekter. Hvis der kun er markeret et objekt i Impress eller Draw, bliver objektets højre kant justeret til sidens højremargen.</ahelp>"
#: 05070300.xhp
msgctxt ""
@@ -21614,7 +21614,7 @@ msgctxt ""
"par_id3154613\n"
"help.text"
msgid "<ahelp hid=\".\">Vertically aligns the top edges of the selected objects. If only one object is selected in Draw or Impress, the top edge of the object is aligned to the upper page margin.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Justerer den øverste kant af de valgte objekter vandret. Hvis der kun er markeret et objekt i Draw eller Impress, bliver den øverste kant justeret til øverste sidemargen.</ahelp>"
#: 05070400.xhp
msgctxt ""
@@ -21646,7 +21646,7 @@ msgctxt ""
"par_id3160463\n"
"help.text"
msgid "<ahelp hid=\".\">Vertically centers the selected objects. If only one object is selected in Draw or Impress, the center of the object is aligned to the vertical center of the page.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Centrerer de valgte objekter lodret. Hvis der kun er markeret et objekt er valgt i Draw eller Impress, bliver midten af objektet justeret til sidens lodrette midtpunkt.</ahelp>"
#: 05070600.xhp
msgctxt ""
@@ -23587,6 +23587,22 @@ msgstr "Du kan tilføje tilpassede farver, farveovergange, tofarvede mønstre og
#: 05210100.xhp
msgctxt ""
"05210100.xhp\n"
+"hd_id471527077476052\n"
+"help.text"
+msgid "Cell, Row or Table background selector"
+msgstr "Celle-, række-, eller tabelbaggrundsvælger"
+
+#: 05210100.xhp
+msgctxt ""
+"05210100.xhp\n"
+"par_id661527077493366\n"
+"help.text"
+msgid "Select the table object which background area is to be filled."
+msgstr ""
+
+#: 05210100.xhp
+msgctxt ""
+"05210100.xhp\n"
"hd_id3147373\n"
"help.text"
msgid "None"
@@ -25366,7 +25382,7 @@ msgctxt ""
"par_id368358\n"
"help.text"
msgid "These callouts are a legacy of the first versions of %PRODUCTNAME. You must customize a toolbar or menu to insert these callouts. The newer custom shape callouts offer more features, for example a Callouts toolbar<image id=\"img_id3154508\" src=\"cmd/sc_calloutshapes.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3154508\">Icon</alt></image> where you can select the shape."
-msgstr ""
+msgstr "Disse talebobler er et levn fra de første versioner af %PRODUCTNAME. Du skal tilpasse en værktøjslinje eller menu for at indsætte disse talebobler. De nye talebobler med brugerdefineret form tilbyder mere funktionalitet, for eksempel værktøjslinjen Talebobler <image id=\"img_id3154508\" src=\"cmd/sc_calloutshapes.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3154508\">Ikon</alt></image>, hvor du kan vælge form."
#: 05230500.xhp
msgctxt ""
@@ -30862,7 +30878,7 @@ msgctxt ""
"par_id3145138\n"
"help.text"
msgid "<ahelp hid=\".\">Opens the Color Replacer dialog, where you can replace colors in bitmap and meta file graphics.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Åbner dialogen Pipette, der lader dig skifte farve i bitmap- und Metafil-grafik.</ahelp>"
#: 06030000.xhp
msgctxt ""
@@ -30958,7 +30974,7 @@ msgctxt ""
"par_id3149819\n"
"help.text"
msgid "<ahelp hid=\".\">Select this checkbox to replace the current <emph>Source color</emph> with the color that you specify in the <emph>Replace with </emph>box.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Marker dette afkrydsningsfelt for at erstatte den aktuelle <emph>Kildefarve</emph> med den farve, som du angiver i feltet <emph>Erstat med</emph>.</ahelp>"
#: 06030000.xhp
msgctxt ""
@@ -30990,7 +31006,7 @@ msgctxt ""
"par_id3144438\n"
"help.text"
msgid "<ahelp hid=\".\">Set the tolerance for replacing a source color in the source image. To replace colors that are similar to the color that you selected, enter a low value. To replace a wider range of colors, enter a higher value.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Sæt tolerancen for erstatning af en kildefarve i kildebilledet. For at erstatte farver, der ligner den farve, som du valgte, skal du indtaste en lav værdi. For at erstatte et bredere område af farver skal du indtaste en højere værdi.</ahelp>"
#: 06030000.xhp
msgctxt ""
@@ -31006,7 +31022,7 @@ msgctxt ""
"par_id3154173\n"
"help.text"
msgid "<ahelp hid=\".\">Lists the available replacement colors. To modify the current list of colors, deselect the image, choose <emph>Format - Area</emph>, and then click the <emph>Colors</emph> tab.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Opremser de tilgængelige erstatningsfarver. For at ændre den aktuelle liste med farver, fravælg billedet, vælg <emph>Formater - Område</emph>, og klik så på fanebladet <emph>Farver</emph>.</ahelp>"
#: 06030000.xhp
msgctxt ""
@@ -31086,7 +31102,7 @@ msgctxt ""
"par_id3153394\n"
"help.text"
msgid "To turn on or to turn off the AutoCorrect feature, in $[officename] Calc choose <emph>Tools - AutoInput</emph>, and in $[officename] Writer choose <emph>Tools - AutoCorrect - While Typing</emph>. To apply the AutoCorrect settings to an entire text document, choose <emph>Tools - AutoCorrect - Apply</emph>."
-msgstr ""
+msgstr "For at aktivere eller deaktivere Autokorrektur-funktionen vælger du i $[officename] Calc <emph>Funktioner - Autoindtastning</emph> og i $[officename] Writer vælger du <emph>Funktioner - Autokorrektur - Under skrivning</emph>. For at bruge Autokorrektur-indstillinger vælger du <emph>Funktioner - Autokorrektur - Anvend</emph>."
#: 06040000.xhp
msgctxt ""
@@ -31134,7 +31150,7 @@ msgctxt ""
"par_id3153124\n"
"help.text"
msgid "In text documents, you can choose to apply the AutoCorrect corrections while you type [T], or only when you modify existing text [M] with <emph>Tools - AutoCorrect - Apply</emph>."
-msgstr ""
+msgstr "I tekstdokumenter kan du vælge at bruge Autokorrekturens rettelser under skrivning [U] eller kun, når du ændrer eksisterende tekst [Æ] med <emph>Funktioner - Autokorrektur - Andvend</emph>."
#: 06040100.xhp
msgctxt ""
@@ -31205,24 +31221,24 @@ msgctxt ""
"06040100.xhp\n"
"hd_id3145072\n"
"help.text"
-msgid "Automatic *bold* and _underline_"
-msgstr "Automatisk *fed* og _understreget_"
+msgid "Automatic *bold*, /italic/, -strikeout- and _underline_"
+msgstr ""
#: 06040100.xhp
msgctxt ""
"06040100.xhp\n"
"par_id3153577\n"
"help.text"
-msgid "Automatically applies bold formatting to text enclosed by asterisks (*), and underline to text enclosed by underscores ( _ ), for example, *bold*. The asterisks and underscores are not displayed after the formatting is applied."
-msgstr "Medfører automatisk fed formatering af tekst omgivet af stjerner (*), og understregning tekst omgivet af understreg ( _ ), for eksempel, *fed*. Stjerner og understregningstegn vises ikke efter formateringen er aktiveret."
+msgid "Automatically applies bold, italic, strikethrough or underline formatting to text enclosed by asterisks (*), slashes (/), hyphens (-), and underscores (_), respectively. These characters disappear after the formatting is applied."
+msgstr ""
#: 06040100.xhp
msgctxt ""
"06040100.xhp\n"
"par_id3153127\n"
"help.text"
-msgid "This feature does not work if the formatting characters * or _ are entered with an <link href=\"text/shared/00/00000005.xhp#IME\" name=\"Input Method Editor\">Input Method Editor</link>."
-msgstr "Denne funktionalitet virker ikke, hvis formateringstegnene * eller _ er indtastet med en <link href=\"text/shared/00/00000005.xhp#IME\" name=\"Input Method Editor\">Input Method Editor</link>."
+msgid "This feature does not work if the formatting characters <item type=\"literal\">* / - _</item> are entered with an <link href=\"text/shared/00/00000005.xhp#IME\" name=\"Input Method Editor\">Input Method Editor</link>."
+msgstr ""
#: 06040100.xhp
msgctxt ""
@@ -31646,7 +31662,7 @@ msgctxt ""
"par_id3145728\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Removes empty paragraphs from the current document when you choose <emph>Tools - AutoCorrect - Apply</emph>.</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Fjerner tomme afsnit fra det aktuelle dokument, når du vælger <emph>Formater - Autokorrektur - Anvend</emph>.</caseinline></switchinline>"
#: 06040100.xhp
msgctxt ""
@@ -32118,7 +32134,7 @@ msgctxt ""
"par_id3152425\n"
"help.text"
msgid "<ahelp hid=\".\">Select the <link href=\"text/shared/01/04100000.xhp\" name=\"special character\">special character</link> that will automatically replace the current opening quotation mark in your document when you choose <emph>Tools - AutoCorrect - Apply</emph>.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Vælg det <link href=\"text/shared/01/04100000.xhp\" name=\"special character\">specielle tegn</link> som automatisk vil erstatte det aktuelle start-anførselstegn i dit dokument, når du vælger <emph>Formater - Autokorrektur - Anvend</emph>.</ahelp>"
#: 06040400.xhp
msgctxt ""
@@ -32134,7 +32150,7 @@ msgctxt ""
"par_id3147008\n"
"help.text"
msgid "<ahelp hid=\".\">Select the <link href=\"text/shared/01/04100000.xhp\" name=\"special character\">special character</link> that will automatically replace the current closing quotation mark in your document when you choose <emph>Tools - AutoCorrect - Apply</emph>.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Vælg det <link href=\"text/shared/01/04100000.xhp\" name=\"special character\">specielle tegn</link>, som automatisk vil erstatte det aktuelle slut-anførselstegn i dit dokument, når du vælger <emph>Formater - Autokorrektur - Anvend</emph>.</ahelp>"
#: 06040400.xhp
msgctxt ""
@@ -33478,7 +33494,7 @@ msgctxt ""
"par_id423291\n"
"help.text"
msgid "<ahelp hid=\".\">Select the element that will follow the numbering: a tab stop, a space, a line break, or nothing.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Markér elementet som vil efterfølge nummereringen: et tabulatorstop, et mellemrum eller ingen ting.</ahelp>"
#: 06050600.xhp
msgctxt ""
@@ -34598,7 +34614,7 @@ msgctxt ""
"par_id3155069\n"
"help.text"
msgid "<variable id=\"anpassen\"><ahelp hid=\".uno:LoadToolBox\">Customizes $[officename] menus, context menus, shortcut keys, toolbars, and macro assignments to events.</ahelp></variable>"
-msgstr ""
+msgstr "<variable id=\"anpassen\"><ahelp hid=\".uno:LoadToolBox\">Tilpasser $[officename] menuer, genvejstaster, værktøjslinje, og tildeler makroer hændelser.</ahelp></variable>"
#: 06140000.xhp
msgctxt ""
@@ -34630,7 +34646,7 @@ msgctxt ""
"bm_id721515298976736\n"
"help.text"
msgid "<bookmark_value>menus;customizing</bookmark_value> <bookmark_value>customizing;menus</bookmark_value> <bookmark_value>editing;menus</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>menuer;tilpasse</bookmark_value> <bookmark_value>tilpasse;menuer</bookmark_value> <bookmark_value>redigere;menuer</bookmark_value>"
#: 06140100.xhp
msgctxt ""
@@ -34638,7 +34654,7 @@ msgctxt ""
"hd_id431514298399070\n"
"help.text"
msgid "<link href=\"text/shared/01/06140100.xhp\" name=\"Menus\">Menus</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/06140100.xhp\" name=\"Menu\">Menuer</link>"
#: 06140100.xhp
msgctxt ""
@@ -34646,7 +34662,7 @@ msgctxt ""
"par_id991514298399076\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/menuassignpage/MenuAssignPage\">Lets you customize %PRODUCTNAME menus for all modules.</ahelp>"
-msgstr ""
+msgstr " <ahelp hid=\"cui/ui/menuassignpage/MenuAssignPage\">Lader dig tilpasse %PRODUCTNAME menuer til alle moduler. </ahelp>"
#: 06140100.xhp
msgctxt ""
@@ -34654,7 +34670,7 @@ msgctxt ""
"par_id3146873\n"
"help.text"
msgid "You can add new commands, modify existing commands, or rearrange the menu items. You can also add commands executed by macros and apply all kind of styles directly from the menu."
-msgstr ""
+msgstr "Du kan tilføje nye kommandoer, ændre eksisterende kommandoer eller omarrangere menupunkter, Du kan også tilføje kommandoer, der udføres af makroer og anvende alle mulige typografier direkte fra menuen."
#: 06140100.xhp
msgctxt ""
@@ -34662,7 +34678,7 @@ msgctxt ""
"par_id621514299131013\n"
"help.text"
msgid "Choose <item type=\"menuitem\">Tools - Customize - Menus</item> tab."
-msgstr ""
+msgstr "Vælg <item type=\"menuitem\">Funktioner - Tilpas</item> fanebladet."
#: 06140100.xhp
msgctxt ""
@@ -34678,7 +34694,7 @@ msgctxt ""
"par_id771514302498290\n"
"help.text"
msgid "<ahelp hid=\".\">Enter a string in the text box to narrow the search of commands.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Indtast en streng i tekstfeltet for at begrænse søgningen efter komandoer.</ahelp>"
#: 06140100.xhp
msgctxt ""
@@ -34694,7 +34710,7 @@ msgctxt ""
"par_id811514302506979\n"
"help.text"
msgid "<ahelp hid=\".\">Select the menu command category in the drop-down list to restrict the search of commands or scroll the list below. Macros and styles commands are in the bottom of the list.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Marker kategorien Kommando i rullelisten for at begrænse søgningen på kommandoer eller rul ned gennemlisten. Makroer og typografikommandoer findes nederst på listen.</ahelp>"
#: 06140100.xhp
msgctxt ""
@@ -34702,7 +34718,7 @@ msgctxt ""
"hd_id551514302487751\n"
"help.text"
msgid "Function"
-msgstr ""
+msgstr "Funktion"
#: 06140100.xhp
msgctxt ""
@@ -34710,7 +34726,7 @@ msgctxt ""
"par_id831514302518564\n"
"help.text"
msgid "<ahelp hid=\".\">Displays the results of the combination of the search string and category of the desired function.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Viser resultaterne af kombinationen af søgestrengen og kategorien for den ønskede funktion.</ahelp>"
#: 06140100.xhp
msgctxt ""
@@ -34726,7 +34742,7 @@ msgctxt ""
"par_id841514304376338\n"
"help.text"
msgid "<ahelp hid=\".\">The text box contains a short description of the selected command.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Tekstfeltet indeholder en kort beskrivelse af den markerede kommando.</ahelp>"
#: 06140100.xhp
msgctxt ""
@@ -34742,7 +34758,7 @@ msgctxt ""
"hd_id231514303933476\n"
"help.text"
msgid "<ahelp hid=\".\">Select the location where the menu is to be attached. If attached to a %PRODUCTNAME module, the menu is available for all files opened in that module. If attached to the file, the menu will be available only when that file is opened and active.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Marker det sted, hvor menuen skal indføjes.Hvis den er knyttet til et %PRODUCTNAME-modul, er menuen tilgængelig for alle filer, der er åbnet i dette modul. Hvis den er knyttet til filen, er menuen kun tilgængelig, når filen er åbnet og aktiv.</ahelp>"
#: 06140100.xhp
msgctxt ""
@@ -34758,7 +34774,7 @@ msgctxt ""
"par_id921514303969718\n"
"help.text"
msgid "<ahelp hid=\".\">Select the menu where the customization is to be applied. The current set of functions is displayed in the box below.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Marker menuen, hvor tilpasningen skal ske. Det aktuelle funktionssæt vises i boksen nedenunder.</ahelp>"
#: 06140100.xhp
msgctxt ""
@@ -34774,7 +34790,7 @@ msgctxt ""
"par_id151514304300251\n"
"help.text"
msgid "<ahelp hid=\".\">Click on the Add button to add a new menu.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Klik på Tilføj-knappen for at tilføje en ny menu.</ahelp>"
#: 06140100.xhp
msgctxt ""
@@ -34790,7 +34806,7 @@ msgctxt ""
"par_id61514304306614\n"
"help.text"
msgid "<ahelp hid=\".\">Click on the remove button to delete the menu.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Klik på Fjern-knappen for at slette menuen.</ahelp>"
#: 06140100.xhp
msgctxt ""
@@ -34806,7 +34822,7 @@ msgctxt ""
"hd_id961514303975994\n"
"help.text"
msgid "Right Arrow button"
-msgstr ""
+msgstr "Højrepil-knappen"
#: 06140100.xhp
msgctxt ""
@@ -34814,7 +34830,7 @@ msgctxt ""
"par_id941514303982378\n"
"help.text"
msgid "<ahelp hid=\".\">Click on the right arrow button to select a function on the left display box and copy to the right display box. This will add the function to the selected menu.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Klik på højrepil-knappen for at markere en funktion i den venstre boks og kopiere den til den højre boks. Dette vil tilføje funktionen til den markerede menu.</ahelp>"
#: 06140100.xhp
msgctxt ""
@@ -34822,7 +34838,7 @@ msgctxt ""
"hd_id161514303992615\n"
"help.text"
msgid "Left Arrow button"
-msgstr ""
+msgstr "Venstrepil-knap"
#: 06140100.xhp
msgctxt ""
@@ -34830,7 +34846,7 @@ msgctxt ""
"par_id361514304000470\n"
"help.text"
msgid "<ahelp hid=\".\">Click on the left arrow button to remove the selected command from the current menu.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Klik på venstrepil-knappen for at fjerne den markerede kommando fra den aktuelle menu.</ahelp>"
#: 06140100.xhp
msgctxt ""
@@ -34838,7 +34854,7 @@ msgctxt ""
"hd_id761514304005994\n"
"help.text"
msgid "Up and Down arrow buttons"
-msgstr ""
+msgstr "Pil op- og Pil ned-knapper"
#: 06140100.xhp
msgctxt ""
@@ -34846,7 +34862,7 @@ msgctxt ""
"par_id761514304011466\n"
"help.text"
msgid "<ahelp hid=\".\">Click on the Up or Down arrows on the right to move the selected command upward or downward in the list of displayed menu commands.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Klik på Oppil eller Nedpil til højre for at flytte den markerede kommande opad eller ned på listen over de viste kommandoer.</ahelp>"
#: 06140100.xhp
msgctxt ""
@@ -34854,7 +34870,7 @@ msgctxt ""
"par_id301514305066046\n"
"help.text"
msgid "You can drag and drop the selected command to move it to the position you want."
-msgstr ""
+msgstr "Du kan trække og slippe den markerede kommando for at flytte den til den position, du vil have."
#: 06140100.xhp
msgctxt ""
@@ -34870,7 +34886,7 @@ msgctxt ""
"par_id981514310786648\n"
"help.text"
msgid "<emph>Insert Separator</emph>: Add a separator mark to improve menu readability and to group commands by subject."
-msgstr ""
+msgstr "<emph>Indsæt separator</emph>: Tilføj et separator-tegn for øge læsbarheden og for at gruppere kommandoer efter emne."
#: 06140100.xhp
msgctxt ""
@@ -34878,7 +34894,7 @@ msgctxt ""
"par_id831514310878540\n"
"help.text"
msgid "<emph>Insert Submenu</emph>: Insert a submenu entry. Enter a name for the new submenu in the dialog box that follows. The new submenu is automatically available in the menu list for edition."
-msgstr ""
+msgstr "<emph>Indsæt undermenu</emph>: Indsæt en undermenu-post. Indtast et navn på den nye undermenu i den dialogboks, der kommer. Undermenuen er automatisk tilgængelig for redigering i menulisten."
#: 06140100.xhp
msgctxt ""
@@ -34886,7 +34902,7 @@ msgctxt ""
"hd_id341514311059169\n"
"help.text"
msgid "Modify"
-msgstr ""
+msgstr "Modificér"
#: 06140100.xhp
msgctxt ""
@@ -34894,7 +34910,7 @@ msgctxt ""
"par_id111514311020590\n"
"help.text"
msgid "<emph>Rename</emph>: Rename the entry."
-msgstr ""
+msgstr "<emph>Omdøb</emph>: Omdøb posten."
#: 06140100.xhp
msgctxt ""
@@ -34910,7 +34926,7 @@ msgctxt ""
"par_id851514311086417\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/menuassignpage/defaultsbtn\">Deletes all changes previously made to this menu.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/menuassignpage/defaultsbtn\">Sletter alle tidligere ændringer i denne menu.</ahelp>"
#: 06140100.xhp
msgctxt ""
@@ -34918,7 +34934,7 @@ msgctxt ""
"par_id481514299760750\n"
"help.text"
msgid "<link href=\"text/shared/01/06140300.xhp\" name=\"linkname\">Customizing %PRODUCTNAME context menus</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/06140300.xhp\" name=\"linkname\">Tilpasning af %PRODUCTNAME kontekstmenuer.</link>"
#: 06140101.xhp
msgctxt ""
@@ -35238,7 +35254,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Context Menus"
-msgstr ""
+msgstr "Kontekstmenuer"
#: 06140300.xhp
msgctxt ""
@@ -35246,7 +35262,7 @@ msgctxt ""
"bm_id721514298976736\n"
"help.text"
msgid "<bookmark_value>context menus;customizing</bookmark_value> <bookmark_value>customizing;context menus</bookmark_value> <bookmark_value>editing;context menus</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>kontekstmenuer;tilpasning</bookmark_value> <bookmark_value>tilpasning;kontekstmenuer</bookmark_value> <bookmark_value>redigering;kontekstmenuer</bookmark_value>"
#: 06140300.xhp
msgctxt ""
@@ -35254,7 +35270,7 @@ msgctxt ""
"hd_id431514298399070\n"
"help.text"
msgid "<link href=\"text/shared/01/06140300.xhp\" name=\"Context Menus\">Context Menus</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/06140300.xhp\" name=\"Context Menus\">Kontekstmenuer</link>"
#: 06140300.xhp
msgctxt ""
@@ -35262,7 +35278,7 @@ msgctxt ""
"par_id991514298399076\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/menuassignpage/MenuAssignPage\">Lets you customize %PRODUCTNAME context menus for all modules.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/menuassignpage/MenuAssignPage\">Lader dig tilpasse %PRODUCTNAME kontekstmenuer til alle moduler.</ahelp>"
#: 06140300.xhp
msgctxt ""
@@ -35270,7 +35286,7 @@ msgctxt ""
"par_id3146873\n"
"help.text"
msgid "You can add new commands, modify existing commands, or rearrange the context menu items. You can also add commands executed by macros and apply all kind of styles directly from the context menu."
-msgstr ""
+msgstr "Du kan tilføje nye kommandoer, ændre eksisterende kommandoer eller omarrangere kontekstmenupunkter. Du kan også tilføje kommandoer, der udføres af makroer og anvende alle slags typografier direkte fra kontekstmenuen."
#: 06140300.xhp
msgctxt ""
@@ -35278,7 +35294,7 @@ msgctxt ""
"par_id621514299131013\n"
"help.text"
msgid "Choose <item type=\"menuitem\">Tools - Customize - Context Menus</item> tab."
-msgstr ""
+msgstr "Vælg <item type=\"menuitem\">Funktioner - Tilpas</item> fanebladet."
#: 06140300.xhp
msgctxt ""
@@ -35294,7 +35310,7 @@ msgctxt ""
"par_id771514302498290\n"
"help.text"
msgid "Enter a string in the text box to narrow the search of commands."
-msgstr ""
+msgstr "indtast en streng i tekstboksen for begrænse søgningen af kommandoer."
#: 06140300.xhp
msgctxt ""
@@ -35310,7 +35326,7 @@ msgctxt ""
"par_id811514302506979\n"
"help.text"
msgid "Select the menu command category in the drop-down list to restrict the search of commands or scroll the list below. Macros and styles commands are in the bottom of the list."
-msgstr ""
+msgstr "Markér den kategori af kommandoer i rullemenuen for at begrænse søgningen på kommandoer eller rul gennem listen nedenunder. Makroer og typografi-kommandoer findes nederst på listen."
#: 06140300.xhp
msgctxt ""
@@ -35326,7 +35342,7 @@ msgctxt ""
"par_id831514302518564\n"
"help.text"
msgid "Displays the results of the combination of the search string and category of the desired function."
-msgstr ""
+msgstr "Viser resultaterne af kombination af søgestreng og den ønskede funktions kategori."
#: 06140300.xhp
msgctxt ""
@@ -35342,7 +35358,7 @@ msgctxt ""
"par_id841514304376338\n"
"help.text"
msgid "The text box contains a short description of the selected command."
-msgstr ""
+msgstr "Tekstfeltet indeholder en kort beskrivelse af den markerede kommando."
#: 06140300.xhp
msgctxt ""
@@ -35358,7 +35374,7 @@ msgctxt ""
"hd_id231514303933476\n"
"help.text"
msgid "Select the location where the context menu is to be attached. If attached to a %PRODUCTNAME module, the context menu is available for all files opened in that module. If attached to the file, the context menu will be available only when that file is opened and active."
-msgstr ""
+msgstr "Marker det sted, som kontekstmenuen skal knyttes til. Hvis den er knyttet til et %PRODUCTNAME-modul, er kontekstmenuen tilgængelig for alle filer åbnet i dette modul. Hvis den er knyttet til filen, vil den kun være tilgængelig, når denne fil er åbnet og aktiv."
#: 06140300.xhp
msgctxt ""
@@ -35374,7 +35390,7 @@ msgctxt ""
"par_id921514303969718\n"
"help.text"
msgid "Select the Context Menu where the customization is to be applied. The current set of functions is displayed in the box below."
-msgstr ""
+msgstr "Markér den kontekstmenu, hvor tilpasningen skal foretages. Det aktuelle sæt at funktion vises i boksen nedenunder."
#: 06140300.xhp
msgctxt ""
@@ -35390,7 +35406,7 @@ msgctxt ""
"par_id151514304300251\n"
"help.text"
msgid "Click on the Add button to add a new context menu."
-msgstr ""
+msgstr "Klik på Tilføj-knappen for at tilføje en ny kontekstmenu."
#: 06140300.xhp
msgctxt ""
@@ -35406,7 +35422,7 @@ msgctxt ""
"par_id61514304306614\n"
"help.text"
msgid "Click on the remove button to delete the context menu."
-msgstr ""
+msgstr "Klik på Fjern-knappen tor at slette kontekstmenuen."
#: 06140300.xhp
msgctxt ""
@@ -35414,7 +35430,7 @@ msgctxt ""
"par_idN10910\n"
"help.text"
msgid "You can only delete custom context menus and custom context menu entries."
-msgstr ""
+msgstr "Du kan kun slette tilpassede menuer og tilpassede menuelementer."
#: 06140300.xhp
msgctxt ""
@@ -35422,7 +35438,7 @@ msgctxt ""
"hd_id961514303975994\n"
"help.text"
msgid "Right Arrow button"
-msgstr ""
+msgstr "Højrepil-knap"
#: 06140300.xhp
msgctxt ""
@@ -35430,7 +35446,7 @@ msgctxt ""
"par_id941514303982378\n"
"help.text"
msgid "Click on the right arrow button to select a function on the left display box and copy to the right display box. This will add the function to the selected context menu."
-msgstr ""
+msgstr "Klik på højrepil-knappen for at markere en funktion i venstre boks og kopiere den til den boks. Dette vil tilføje funktionen til dem markerede kontekstmenu."
#: 06140300.xhp
msgctxt ""
@@ -35438,7 +35454,7 @@ msgctxt ""
"hd_id161514303992615\n"
"help.text"
msgid "Left Arrow button"
-msgstr ""
+msgstr "Venstrepil-knap"
#: 06140300.xhp
msgctxt ""
@@ -35446,7 +35462,7 @@ msgctxt ""
"par_id361514304000470\n"
"help.text"
msgid "Click on the left arrow button to remove the selected command from the current contex menu."
-msgstr ""
+msgstr "Klik på venstrepil-knappen for at fjerne den markerede kommando fra den aktuelle kontekstmenu."
#: 06140300.xhp
msgctxt ""
@@ -35454,7 +35470,7 @@ msgctxt ""
"hd_id761514304005994\n"
"help.text"
msgid "Up and Down arrow buttons"
-msgstr ""
+msgstr "Pil op og pil ned-knapperne"
#: 06140300.xhp
msgctxt ""
@@ -35462,7 +35478,7 @@ msgctxt ""
"par_id761514304011466\n"
"help.text"
msgid "Click on the Up or Down arrows on the right to move the selected command upward or downward in the list of displayed context menus commands."
-msgstr ""
+msgstr "Klik på pil op eller pil ned til højre for at flytte den markerede kommando opad eller nedad på listen over viste kontekstmenu-kommandoer."
#: 06140300.xhp
msgctxt ""
@@ -35470,7 +35486,7 @@ msgctxt ""
"par_id301514305066046\n"
"help.text"
msgid "You can drag and drop the selected command to move it to the position you want."
-msgstr ""
+msgstr "Du kan trække og flytte den markerede kommando til den placering, du ønsker."
#: 06140300.xhp
msgctxt ""
@@ -35486,7 +35502,7 @@ msgctxt ""
"par_id981514310786648\n"
"help.text"
msgid "<emph>Insert Separator</emph>: Add a separator mark to improve menu readability and to group commands by subject."
-msgstr ""
+msgstr "<emph>Indsæt separator</emph>: Tilføj en separator for at øge menuens læselighed og for at gruppere kommandoer efter emne."
#: 06140300.xhp
msgctxt ""
@@ -35494,7 +35510,7 @@ msgctxt ""
"par_id831514310878540\n"
"help.text"
msgid "<emph>Insert Submenu</emph>: Insert a submenu entry. Enter a name for the new submenu in the dialog box that follows. The new submenu is automatically available in the menu list for edition."
-msgstr ""
+msgstr "<emph>Indsæt undermenu</emph>: Indsæt en undermenu-post. Indtast et navn til den nye undermenu i den følgende dialogboks. Den nye undermenu er automatisk tilgængelig for redigering i menulisten."
#: 06140300.xhp
msgctxt ""
@@ -35510,7 +35526,7 @@ msgctxt ""
"par_id111514311020590\n"
"help.text"
msgid "<emph>Rename</emph>: Rename the entry."
-msgstr ""
+msgstr "<emph>Omdøb</emph>: Omdøb posten."
#: 06140300.xhp
msgctxt ""
@@ -35526,7 +35542,7 @@ msgctxt ""
"par_id851514311086417\n"
"help.text"
msgid "Deletes all changes previously made to this context menu."
-msgstr ""
+msgstr "Sletter alle tidligere ændringer i denne kontekstmenu."
#: 06140300.xhp
msgctxt ""
@@ -35574,7 +35590,7 @@ msgctxt ""
"par_id771514302498290\n"
"help.text"
msgid "Enter a string in the text box to narrow the search of commands."
-msgstr ""
+msgstr "Indtast en streng i tekstfeltet for begrænse søgningen på kommandoer."
#: 06140400.xhp
msgctxt ""
@@ -35590,7 +35606,7 @@ msgctxt ""
"par_id811514302506979\n"
"help.text"
msgid "Select the command category in the drop-down list to restrict the search of commands or scroll the list below. Macros and styles commands are in the bottom of the list."
-msgstr ""
+msgstr "Markér kommandokategorien i rullemenu-listen for at begrænse søgningen på kommandoer eller rul på listen nedenunder. Makroer og typografikommandoer findes nederst på listen."
#: 06140400.xhp
msgctxt ""
@@ -35606,7 +35622,7 @@ msgctxt ""
"par_id831514302518564\n"
"help.text"
msgid "Displays the results of the combination of the search string and category of the desired function."
-msgstr ""
+msgstr "Viser resultaterne af kombinationen af søgestreng og kategorien for den ønskede funktion."
#: 06140400.xhp
msgctxt ""
@@ -35622,7 +35638,7 @@ msgctxt ""
"par_id841514304376338\n"
"help.text"
msgid "The text box contains a short description of the selected command."
-msgstr ""
+msgstr "Tekstfeltet indeholder en kort beskrivelse af den markerede kommando."
#: 06140400.xhp
msgctxt ""
@@ -35638,7 +35654,7 @@ msgctxt ""
"hd_id231514303933476\n"
"help.text"
msgid "Select the location where the toolbar is to be attached. If attached to a %PRODUCTNAME module, the toolbar is available for all files opened in that module. If attached to the file, the toolbar will be available only when that file is opened and active."
-msgstr ""
+msgstr "Markér den position, hvor værktøjslinjen skal tilknyttes. Når der er valgt et %PRODUCTNAME-modul, er værktøjslinje til rådighed for alle filer, der åbnes i denne modul. Hvis den er knyttet til filen, vil den kun være til rådighed, når denne fil er åben og aktiv."
#: 06140400.xhp
msgctxt ""
@@ -35654,7 +35670,7 @@ msgctxt ""
"par_id921514303969718\n"
"help.text"
msgid "Select the toolbar where the customization is to be applied. The current set of functions is displayed in the box below."
-msgstr ""
+msgstr "Vælg den kontekstmenu, hvor tilpasningen skal foretages. Det aktuelle sæt at funktioner vises i boksen nedenunder."
#: 06140400.xhp
msgctxt ""
@@ -35670,7 +35686,7 @@ msgctxt ""
"par_id151514304300251\n"
"help.text"
msgid "Click on the Add button to add a new toolbar."
-msgstr ""
+msgstr "Klik på Tilføj-knappen for at tilføje den nye værktøjslinje."
#: 06140400.xhp
msgctxt ""
@@ -35702,7 +35718,7 @@ msgctxt ""
"hd_id961514303975994\n"
"help.text"
msgid "Right Arrow button"
-msgstr ""
+msgstr "Højrepil-knap"
#: 06140400.xhp
msgctxt ""
@@ -35710,7 +35726,7 @@ msgctxt ""
"par_id941514303982378\n"
"help.text"
msgid "Click on the right arrow button to select a function on the left display box and copy to the right display box. This will add the function to the selected toolbar."
-msgstr ""
+msgstr "Klik på højrepil-knappen for at markere en funktion i boksen til venstre og kopiere den til boksen til højre. Dette vil tilføje funktionen til den markerede værktøjslinje."
#: 06140400.xhp
msgctxt ""
@@ -35718,7 +35734,7 @@ msgctxt ""
"hd_id161514303992615\n"
"help.text"
msgid "Left Arrow button"
-msgstr ""
+msgstr "Venstrepil-knap"
#: 06140400.xhp
msgctxt ""
@@ -35726,7 +35742,7 @@ msgctxt ""
"par_id361514304000470\n"
"help.text"
msgid "Click on the left arrow button to remove the selected command from the current toolbar."
-msgstr ""
+msgstr "Klik på venstrepil-knappen for at fjerne den markerede kommando fra den aktuelle værktøjslinje."
#: 06140400.xhp
msgctxt ""
@@ -35734,7 +35750,7 @@ msgctxt ""
"hd_id761514304005994\n"
"help.text"
msgid "Up and Down Arrow buttons"
-msgstr ""
+msgstr "Pil op- og Pil ned-knapper"
#: 06140400.xhp
msgctxt ""
@@ -35742,7 +35758,7 @@ msgctxt ""
"par_id761514304011466\n"
"help.text"
msgid "Click on the Up or Down arrows on the right to move the selected command upward or downward in the list of displayed toolbar commands."
-msgstr ""
+msgstr "Klik på Pil op- eller Pil ned-knapperne i højre side for at flytte den markerede kommando opad eller nedad på listen over viste kommandoer."
#: 06140400.xhp
msgctxt ""
@@ -35750,7 +35766,7 @@ msgctxt ""
"par_id301514305066046\n"
"help.text"
msgid "You can drag and drop the selected command to move it to the position you want."
-msgstr ""
+msgstr "Du kan trække og slippe den markerede kommando til det sted, du ønsker."
#: 06140400.xhp
msgctxt ""
@@ -35766,7 +35782,7 @@ msgctxt ""
"par_id981514310786648\n"
"help.text"
msgid "<emph>Insert Separator</emph>: Add a separator mark to improve toolbar readability and to group commands by subject."
-msgstr ""
+msgstr "<emph>Indsæt separator</emph>: Tilføj et separatormærke for øge værktøjslinjens læselighed og for at gruppe kommandoer efter emne."
#: 06140400.xhp
msgctxt ""
@@ -35782,7 +35798,7 @@ msgctxt ""
"par_id111514311020590\n"
"help.text"
msgid "<emph>Rename</emph>: Rename the entry."
-msgstr ""
+msgstr "<emph>Omdøb</emph>: Omdøb posten."
#: 06140400.xhp
msgctxt ""
@@ -35790,7 +35806,7 @@ msgctxt ""
"par_idN106B2\n"
"help.text"
msgid "<emph>Change Icon</emph>: Opens the <link href=\"text/shared/01/06140402.xhp\" name=\"Change Icon\">Change Icon</link> dialog, where you can assign a different icon to the current command."
-msgstr ""
+msgstr "<emph>Skift ikon</emph>: Åbner dialogboksen <link href=\"text/shared/01/06140402.xhp\" name=\"Change Icon\">Skift ikon</link>, hvor du kan tildele den aktuelle kommando en anden ikon."
#: 06140400.xhp
msgctxt ""
@@ -35798,7 +35814,7 @@ msgctxt ""
"par_idN106B8\n"
"help.text"
msgid "<emph>Reset Icon</emph>: Resets the icon to the default icon."
-msgstr ""
+msgstr "<emph>Nulstil ikon</emph>. Nulstiller ikonet til standard-ikonet."
#: 06140400.xhp
msgctxt ""
@@ -35806,7 +35822,7 @@ msgctxt ""
"par_id371514386517453\n"
"help.text"
msgid "<emph>Restore Default Command</emph>: Restores the default command."
-msgstr ""
+msgstr "<emph>Genskab standard-kommando</emph>: Genskaber standard-kommandoen."
#: 06140400.xhp
msgctxt ""
@@ -35822,7 +35838,7 @@ msgctxt ""
"par_id851514311086417\n"
"help.text"
msgid "Deletes all changes previously made to this toolbar."
-msgstr ""
+msgstr "Sletter alle tidligere ændringer på denne værktøjslinje."
#: 06140402.xhp
msgctxt ""
@@ -36494,7 +36510,7 @@ msgctxt ""
"par_id3150506\n"
"help.text"
msgid "<ahelp hid=\".\">Opens a file selection dialog.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Klik for at åbne dialogen Filvalg.</ahelp>"
#: 06150120.xhp
msgctxt ""
@@ -36630,7 +36646,7 @@ msgctxt ""
"par_id3144436\n"
"help.text"
msgid "<ahelp hid=\".\">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.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Find den fil, som du vil anvende XML-eksport filtret på. XML-koden i den transformerede fil åbnes i dit standard XML-redigeringsprogram efter transformeringen.</ahelp>"
#: 06150200.xhp
msgctxt ""
@@ -36646,7 +36662,7 @@ msgctxt ""
"par_id3147250\n"
"help.text"
msgid "<ahelp hid=\".\">The front-most open file that matches the XML filter criteria will be used to test the filter. The current XML export filter transforms the file and the resulting XML code is displayed in the <link href=\"text/shared/01/06150210.xhp\">XML Filter output</link> window.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Den forreste åbne fil som matcher XML-filtrets kriterier vil blive brugt til at teste filtret. Det aktuelle XML-eksportfilter og den resulterende XML-kode vises i vinduet <link href=\"text/shared/01/06150210.xhp\">XML-filter uddata</link></ahelp>."
#: 06150200.xhp
msgctxt ""
@@ -36686,7 +36702,7 @@ msgctxt ""
"par_id3156410\n"
"help.text"
msgid "<ahelp hid=\".\">Displays the file name of the template that you entered on the <emph>Transformation</emph> tab page.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Viser filnavnet på den skabelon, som du indtastede på fanebladet <emph>Transformering</emph>.</ahelp>"
#: 06150200.xhp
msgctxt ""
@@ -36710,7 +36726,7 @@ msgctxt ""
"par_id3150444\n"
"help.text"
msgid "<ahelp hid=\".\">Opens the XML source of the selected document in your default XML editor after importing.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Åbner XML-kilden til det markerede dokument i dit standard XML-redigeringsprogram efter importen.</ahelp>"
#: 06150200.xhp
msgctxt ""
@@ -36726,7 +36742,7 @@ msgctxt ""
"par_id3149885\n"
"help.text"
msgid "<ahelp hid=\".\">Opens a file selection dialog. The selected file is opened using the current XML import filter.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Åbner en filvalgsdialog. Den markerede fil åbnes med det aktuelle XML-importfilter.</ahelp>"
#: 06150200.xhp
msgctxt ""
@@ -36742,7 +36758,7 @@ msgctxt ""
"par_id3146137\n"
"help.text"
msgid "<ahelp hid=\".\">Re-opens the document that was last opened with this dialog.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Genåbner det dokument, som sidst blev åbnet med denne dialog.</ahelp>"
#: 06150210.xhp
msgctxt ""
@@ -36830,7 +36846,7 @@ msgctxt ""
"par_id3146060\n"
"help.text"
msgid "<ahelp hid=\".\">Converts the selected Korean text from Hangul to Hanja or from Hanja to Hangul.</ahelp> The menu command can only be called if you enable Asian language support under <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - Language Settings - Languages</emph>, and if a text formatted in Korean language is selected."
-msgstr ""
+msgstr "<ahelp hid=\".\">Konverterer den valgte koreanske tekst fra hangul til hanja eller fra hanja til hangul.</ahelp> Menukommandoen kan kun aktiveres, hvis du har aktiveret understøttelse af asiatiske sprog under <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Indstillinger</emph></caseinline><defaultinline><emph>Funktioner - Indstillinger</emph></defaultinline></switchinline><emph>- Sprogindstillinger - Sprog</emph>, og hvis der er valgt en tekst formateret på koreansk."
#: 06200000.xhp
msgctxt ""
@@ -36846,7 +36862,7 @@ msgctxt ""
"par_id3148520\n"
"help.text"
msgid "<ahelp hid=\".\">Displays the current selection.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Viser den aktuelle markering.</ahelp>"
#: 06200000.xhp
msgctxt ""
@@ -36862,7 +36878,7 @@ msgctxt ""
"par_id3149205\n"
"help.text"
msgid "<ahelp hid=\".\">Displays the first replacement suggestion from the dictionary.</ahelp> You can edit the suggested word or enter another word. Click the <emph>Find</emph> button to replace your original word with the corresponding replacement word."
-msgstr ""
+msgstr "<ahelp hid=\".\">Viser det første erstatningsforslag fra ordbogen.</ahelp> Du kan redigere det foreslåede ord eller indtaste et andet ord. Klik på knappen <emph>Søg</emph> for at erstatte dit oprindelig ord med det tilsvarende erstatningsord."
#: 06200000.xhp
msgctxt ""
@@ -36878,7 +36894,7 @@ msgctxt ""
"par_id3156560\n"
"help.text"
msgid "<ahelp hid=\".\">Finds your Hangul input in the dictionary and replaces it with the corresponding Hanja.</ahelp> Click <emph>Ignore</emph> to cancel the find function."
-msgstr ""
+msgstr "<ahelp hid=\".\">Finder din Hangul-indtastning i ordbogen og erstatter den med den tilsvarende Hanja.</ahelp> Klik på <emph>Ignorer</emph> for at fortryde søgefunktionen."
#: 06200000.xhp
msgctxt ""
@@ -36894,7 +36910,7 @@ msgctxt ""
"par_id3154823\n"
"help.text"
msgid "<ahelp hid=\".\">Displays all available replacements in the dictionary.</ahelp> If the <emph>Replace by character</emph> box is enabled, you see a grid of characters. If the <emph>Replace by character</emph> box is not checked, you see a list of words."
-msgstr ""
+msgstr "<ahelp hid=\".\">Viser alle tilgængelig erstatninger i ordbogen.</ahelp> Hvis feltet <emph>Erstat med tegn</emph> er aktiveret, ser du et gitter af tegn. Hvis feltet <emph>Erstat med tegn</emph> ikke er markeret, ser du en ordliste."
#: 06200000.xhp
msgctxt ""
@@ -36926,7 +36942,7 @@ msgctxt ""
"par_id3150775\n"
"help.text"
msgid "<ahelp hid=\".\">The original characters are replaced by the suggested characters.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">De oprindelige tegn erstattes med de foreslåede tegn.</ahelp>"
#: 06200000.xhp
msgctxt ""
@@ -36942,7 +36958,7 @@ msgctxt ""
"par_id3153662\n"
"help.text"
msgid "<ahelp hid=\".\">The Hangul part will be displayed in brackets after the Hanja part.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Hangul-delen bliver vist i klammer efter hanja-delen.</ahelp>"
#: 06200000.xhp
msgctxt ""
@@ -36958,7 +36974,7 @@ msgctxt ""
"par_id3149192\n"
"help.text"
msgid "<ahelp hid=\".\">The Hanja part will be displayed in brackets after the Hangul part.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Hanja-delen bliver vist i klammer efter hangul-delen.</ahelp>"
#: 06200000.xhp
msgctxt ""
@@ -36974,7 +36990,7 @@ msgctxt ""
"par_id3154173\n"
"help.text"
msgid "<ahelp hid=\".\">The Hanja part will be displayed as ruby text above the Hangul part.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Hanja-delen bliver vist som rød tekst over hangul-delen.</ahelp>"
#: 06200000.xhp
msgctxt ""
@@ -36990,7 +37006,7 @@ msgctxt ""
"par_id3156155\n"
"help.text"
msgid "<ahelp hid=\".\">The Hanja part will be displayed as ruby text below the Hangul part.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Hanja-delen bliver vist som rød tekst over hangul-delen.</ahelp>"
#: 06200000.xhp
msgctxt ""
@@ -37006,7 +37022,7 @@ msgctxt ""
"par_id3150771\n"
"help.text"
msgid "<ahelp hid=\".\">The Hangul part will be displayed as ruby text above the Hanja part.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Hangul-delen vil blive vist som rød tekst over hanja-delen.</ahelp>"
#: 06200000.xhp
msgctxt ""
@@ -37022,7 +37038,7 @@ msgctxt ""
"par_id3157909\n"
"help.text"
msgid "<ahelp hid=\".\">The Hangul part will be displayed as ruby text below the Hanja part.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Hangul-delen vil blive vist som rød tekst under hanja-delen.</ahelp>"
#: 06200000.xhp
msgctxt ""
@@ -37054,7 +37070,7 @@ msgctxt ""
"par_id3154142\n"
"help.text"
msgid "<ahelp hid=\".\">Check to convert only Hangul. Do not convert Hanja.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Markér for kun at konvertere hangul. Konverter hanja.</ahelp>"
#: 06200000.xhp
msgctxt ""
@@ -37070,7 +37086,7 @@ msgctxt ""
"par_id3156023\n"
"help.text"
msgid "<ahelp hid=\".\">Check to convert only Hanja. Do not convert Hangul.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Markér for kun at konvertere hanja. Konverter ikke hangul.</ahelp>"
#: 06200000.xhp
msgctxt ""
@@ -37086,7 +37102,7 @@ msgctxt ""
"par_id3153896\n"
"help.text"
msgid "<ahelp hid=\".\">No changes will be made to the current selection. The next word or character will be selected for conversion.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Ingen ændring udføres på den aktuelle markering. Det næste ord eller tegn vil blive valgt til konvertering.</ahelp>"
#: 06200000.xhp
msgctxt ""
@@ -37102,7 +37118,7 @@ msgctxt ""
"par_id3154937\n"
"help.text"
msgid "<ahelp hid=\".\">No changes will be made to the current selection, and every time the same selection is detected it will be skipped automatically.</ahelp> The next word or character will be selected for conversion. The list of ignored text is valid for the current $[officename] session."
-msgstr ""
+msgstr "<ahelp hid=\".\">Ingen ændringer vil blive gennemført på den aktuelle markering, og hver gang det samme udvalg er genkendt, bliver det automatisk sprunget over.</ahelp> Det næste ord eller tegn vil blive valgt til konvertering. Listen af ignoreret tekst gælder for den aktuelle $[officename] session."
#: 06200000.xhp
msgctxt ""
@@ -37118,7 +37134,7 @@ msgctxt ""
"par_id3148403\n"
"help.text"
msgid "<ahelp hid=\".\">Replaces the selection with the suggested characters or word according to the format options.</ahelp> The next word or character will be selected for conversion."
-msgstr ""
+msgstr "<ahelp hid=\".\">Erstatter markeringen med det foreslåede tegn eller ord ifølge formatindstillingerne.</ahelp> Det næste ord eller tegn vil blive valgt til konvertering."
#: 06200000.xhp
msgctxt ""
@@ -37134,7 +37150,7 @@ msgctxt ""
"par_id3153338\n"
"help.text"
msgid "<ahelp hid=\".\">Replaces the selection with the suggested characters or word according to the format options. Every time the same selection is detected it will be replaced automatically.</ahelp> The next word or character will be selected for conversion. The list of replacement text is valid for the current $[officename] session."
-msgstr ""
+msgstr "<ahelp hid=\".\">Erstatter markeringen med det foreslåede tegn eller ord ifølge formatindstillingerne. Hver gang det samme udvalg bliver genkendt, bliver det automatisk erstattet.</ahelp> Det næste ord eller tegn bliver valgt til konvertering. Listen af erstatningstekster gælder for den aktuelle $[officename] session."
#: 06200000.xhp
msgctxt ""
@@ -37150,7 +37166,7 @@ msgctxt ""
"par_id3145154\n"
"help.text"
msgid "<ahelp hid=\".\">Check to move character-by-character through the selected text. If not checked, full words are replaced.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Markér for at flytte tegn-for-tegn gennem den markerede tekst. Hvis ikke markeret bliver hele og erstattede.</ahelp>"
#: 06200000.xhp
msgctxt ""
@@ -37166,7 +37182,7 @@ msgctxt ""
"par_idN1096D\n"
"help.text"
msgid "<ahelp hid=\".\">Opens the <link href=\"text/shared/01/06201000.xhp\">Hangul/Hanja Options</link> dialog.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Åbner dialogen <link href=\"text/shared/01/06201000.xhp\">Hangul/Hanja-indstillinger</link>.</ahelp>"
#: 06201000.xhp
msgctxt ""
@@ -37870,7 +37886,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Digital Signature in PDF Export"
-msgstr ""
+msgstr "Digital signatur i PDF-eksport"
#: digitalsignaturespdf.xhp
msgctxt ""
@@ -37878,7 +37894,7 @@ msgctxt ""
"hd_id771526419375353\n"
"help.text"
msgid "Signing Exported PDF"
-msgstr ""
+msgstr "Underskriv eksporteret PDF"
#: digitalsignaturespdf.xhp
msgctxt ""
@@ -37886,7 +37902,7 @@ msgctxt ""
"par_id321526421041596\n"
"help.text"
msgid "<link href=\"text/shared/guide/digital_signatures.xhp\">About Digital Signatures</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/guide/digital_signatures.xhp\">Om digitale signaturer</link>"
#: extensionupdate.xhp
msgctxt ""
@@ -38710,7 +38726,7 @@ msgctxt ""
"par_idN1057E\n"
"help.text"
msgid "<ahelp hid=\".\">Opens a movie file or a sound file that you want to preview.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Åbner en filmfil eller en lydfil, som du vil gennemse.</ahelp>"
#: mediaplayer.xhp
msgctxt ""
@@ -38726,7 +38742,7 @@ msgctxt ""
"par_idN10585\n"
"help.text"
msgid "<ahelp hid=\".\">Inserts the current movie file or sound file as a media object into the current document.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Indsætter den aktuelle filmfil eller lydfil som et medieobjekt i det aktuelle dokument.</ahelp>"
#: mediaplayer.xhp
msgctxt ""
@@ -38742,7 +38758,7 @@ msgctxt ""
"par_idN1058C\n"
"help.text"
msgid "<ahelp hid=\".\">Plays the current file.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Spiller den valgte lydfil.</ahelp>"
#: mediaplayer.xhp
msgctxt ""
@@ -38758,7 +38774,7 @@ msgctxt ""
"par_idN10593\n"
"help.text"
msgid "<ahelp hid=\".\">Pauses or resumes the playback of the current file.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Holder pause eller genoptager afspilnngen af den aktuelle fil.</ahelp>"
#: mediaplayer.xhp
msgctxt ""
@@ -38774,7 +38790,7 @@ msgctxt ""
"par_idN1059A\n"
"help.text"
msgid "<ahelp hid=\".\">Stops the playback of the current file.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Stopper afspilningen af den aktuelle fil.</ahelp>"
#: mediaplayer.xhp
msgctxt ""
@@ -38790,7 +38806,7 @@ msgctxt ""
"par_idN105A1\n"
"help.text"
msgid "<ahelp hid=\".\">Plays the file repeatedly.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Spiller filen gentagne gange.</ahelp>"
#: mediaplayer.xhp
msgctxt ""
@@ -38806,7 +38822,7 @@ msgctxt ""
"par_idN105A8\n"
"help.text"
msgid "<ahelp hid=\".\">Turns sound off and on.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Slår lyd fra og til.</ahelp>"
#: mediaplayer.xhp
msgctxt ""
@@ -38822,7 +38838,7 @@ msgctxt ""
"par_idN105AF\n"
"help.text"
msgid "<ahelp hid=\".\">Adjusts the volume.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Justerer lydstyrken.</ahelp>"
#: mediaplayer.xhp
msgctxt ""
@@ -38838,7 +38854,7 @@ msgctxt ""
"par_idN105B6\n"
"help.text"
msgid "<ahelp hid=\".\">Adjusts the size of the movie playback.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Tilpasser størrelsen på filmgengivelsen.</ahelp>"
#: mediaplayer.xhp
msgctxt ""
@@ -40510,7 +40526,7 @@ msgctxt ""
"bm_id3149532\n"
"help.text"
msgid "<bookmark_value>EPUB;export</bookmark_value> <bookmark_value>electronic publication</bookmark_value> <bookmark_value>exporting;to EPUB</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>EPUB;eksport</bookmark_value> <bookmark_value>electronisk publikation</bookmark_value> <bookmark_value>eksporterer;til EPUB</bookmark_value>"
#: ref_epub_export.xhp
msgctxt ""
@@ -40526,10 +40542,9 @@ msgctxt ""
"par_id3154044\n"
"help.text"
msgid "Export the current file to <link href=\"text/shared/00/00000002.xhp#epub\" name=\"epub\">EPUB</link>."
-msgstr ""
+msgstr "Eksporter den aktuelle fil til <link href=\"text/shared/00/00000002.xhp#epub\" name=\"epub\">EPUB</link>."
#: ref_epub_export.xhp
-#, fuzzy
msgctxt ""
"ref_epub_export.xhp\n"
"par_id701525003241759\n"
@@ -40543,7 +40558,7 @@ msgctxt ""
"par_id19921\n"
"help.text"
msgid "<image id=\"img_id22170\" src=\"media/screenshots/modules/swriter/ui/exportepub/EPubDialog.png\" localize=\"true\" width=\"664px\" height=\"482px\"><alt id=\"alt_id59843\">EPUB dialog box</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id22170\" src=\"media/screenshots/modules/swriter/ui/exportepub/EPubDialog.png\" localize=\"true\" width=\"664px\" height=\"482px\"><alt id=\"alt_id59843\">Dialogboksen EPUB</alt></image>"
#: ref_epub_export.xhp
msgctxt ""
@@ -40583,7 +40598,7 @@ msgctxt ""
"par_id3154231\n"
"help.text"
msgid "Select the type of start of the the next EPUB section."
-msgstr ""
+msgstr "Vælg starttype for det næste EPUB-afsnit."
#: ref_epub_export.xhp
msgctxt ""
@@ -40591,7 +40606,7 @@ msgctxt ""
"par_id751525007405690\n"
"help.text"
msgid "<emph>Heading</emph>: Starts the next section on headings, according to the document outline numbering."
-msgstr ""
+msgstr "<emph>Overskrift</emph>: Starter det næste afsnit med overskrifter ifølge dokumentets disposition."
#: ref_epub_export.xhp
msgctxt ""
@@ -40599,7 +40614,7 @@ msgctxt ""
"par_id971525007425252\n"
"help.text"
msgid "<emph>Page break</emph>: Starts the new section on a page break."
-msgstr ""
+msgstr "<emph>Sideskift</emph>: Starter det nye afsnit med et sideskift."
#: ref_epub_export.xhp
msgctxt ""
@@ -40607,7 +40622,7 @@ msgctxt ""
"hd_id3148522\n"
"help.text"
msgid "Layout method"
-msgstr ""
+msgstr "Layout-metode"
#: ref_epub_export.xhp
msgctxt ""
@@ -40615,7 +40630,7 @@ msgctxt ""
"par_id3154232\n"
"help.text"
msgid "Determines if a reflowable or a fixed layout EPUB will be generated."
-msgstr ""
+msgstr "Bestemmer, om der skal genereres et flydende eller et fast EPUB-layout."
#: ref_epub_export.xhp
msgctxt ""
@@ -40623,7 +40638,7 @@ msgctxt ""
"par_id51525006930128\n"
"help.text"
msgid "<emph>Reflowable</emph>: The content flows, or reflows, to fit the screen and to fit the needs of the user."
-msgstr ""
+msgstr "<emph>Ombrydelig</emph>: Indholdet flyder, eller ombydes, for at passe til skærmen og brugerens behov."
#: ref_epub_export.xhp
msgctxt ""
@@ -40631,7 +40646,7 @@ msgctxt ""
"par_id861525007152589\n"
"help.text"
msgid "<emph>Fixed</emph>: Gives greater control over presentation when a reflowable EPUB is not suitable for the content."
-msgstr ""
+msgstr "<emph>Fast</emph>: giver større kontrol over præsentationen, når en ombrydelig EPUB ikke passer til indholdet."
#: ref_epub_export.xhp
msgctxt ""
@@ -40639,7 +40654,7 @@ msgctxt ""
"hd_id3148523\n"
"help.text"
msgid "Custom cover image"
-msgstr ""
+msgstr "Brugerdefineret omslagsbillede"
#: ref_epub_export.xhp
msgctxt ""
@@ -40647,7 +40662,7 @@ msgctxt ""
"par_id3154233\n"
"help.text"
msgid "Enter the full path of the custom cover image file. If the entry is empty, the exporter takes the cover image in the media directory (see below) when the name is one of the following: <item type=\"literal\">cover.gif</item>, <item type=\"literal\">cover.jpg</item>, <item type=\"literal\">cover.png</item> or <item type=\"literal\">cover.svg</item>."
-msgstr ""
+msgstr "Indtast den fulde sti til filen med den tilpassede forside. Hvis posten er tom, vælger eksportprocessen forsiden i mediemappen (se nedenfor), når navnet af de følgende: <item type=\"literal\">cover.gif</item>, <item type=\"literal\">cover.jpg</item>, <item type=\"literal\">cover.png</item> eller <item type=\"literal\">cover.svg</item>."
#: ref_epub_export.xhp
msgctxt ""
@@ -40655,7 +40670,7 @@ msgctxt ""
"par_id601525022680859\n"
"help.text"
msgid "The custom cover image is embedded in the EPUB file."
-msgstr ""
+msgstr "Den tilpassede forside indlejres i EPUB-filen."
#: ref_epub_export.xhp
msgctxt ""
@@ -40663,7 +40678,7 @@ msgctxt ""
"hd_id3148524\n"
"help.text"
msgid "Custom media directory"
-msgstr ""
+msgstr "Brugerdefineret mediebibliotek"
#: ref_epub_export.xhp
msgctxt ""
@@ -40671,7 +40686,7 @@ msgctxt ""
"par_id3154234\n"
"help.text"
msgid "Enter the custom media directory for the EPUB file. The media directory may contain a cover image as seen above, custom metadata and image links."
-msgstr ""
+msgstr "Indtast EPUB-filens tilpassede mediebibliotek. Mediebiblioteket kan indeholde et forsidebillede som set ovenfor, tilpassede metadata og billede-hyperlinks."
#: ref_epub_export.xhp
msgctxt ""
@@ -40679,7 +40694,7 @@ msgctxt ""
"par_id651525022578455\n"
"help.text"
msgid "By default, the exporter looks for custom media and custom metadata in the current document directory inside a folder with the same name of the document file name. For example, if the document name is <item type=\"literal\">MyText.odt</item>, the default media folder for cover and metadata is <item type=\"literal\">MyText</item> in the current directory."
-msgstr ""
+msgstr "Som standard søger eksportprocessen efter tilpassede medier og tilpassede mediedata i den aktuelle dokumentmappe i en folder med det samme navn som dokumentfilens navn. Hvis dokumentets navn for eksempel er <item type=\"literal\">, MinTekst.odt</item>, er standard-mediemappen til forside og metadata <item type=\"literal\">MinTekst</item> i den aktuelle mappe."
#: ref_epub_export.xhp
msgctxt ""
@@ -40687,7 +40702,7 @@ msgctxt ""
"par_id971525023515891\n"
"help.text"
msgid "For custom metadata, you must provide a file with same name as the original filename and with extension as \".xmp\". The provided metadata will override the the internal document metadata. In the example above, the custom metadata must exist in the MyText directory as <item type=\"literal\">MyText.xmp</item>."
-msgstr ""
+msgstr "Til metadata må du sørge for en fil med samme navn som det originale filnavn og med filtypen \".xmp\". De indtastede metadata vil fortrænge de interne dokument-metadata. I et eksemplet ovenfor skal de tilpassede metadata findes i mappen MinTekst som <item type=\"literal\">MinTekst.xmp</item>."
#: ref_epub_export.xhp
msgctxt ""
@@ -40695,7 +40710,7 @@ msgctxt ""
"par_id901525027635882\n"
"help.text"
msgid "Image links mean that if you create relative links on images or text and they link an image that's available in the media directory, then this media will be available in the EPUB export result as a popup."
-msgstr ""
+msgstr "Hyperlinks til billeder betyder, at dine medier vil være tilgængelige som en popup i EPUB-filen, hvis du opretter relative hyperlinks til billeder og de peger på et billede, som er tilgængeligt i mediebiblioteket."
#: ref_epub_export.xhp
msgctxt ""
@@ -40711,7 +40726,7 @@ msgctxt ""
"par_id3154236\n"
"help.text"
msgid "Enter the custom metadata to override the document default metadata. These text fields can be left empty."
-msgstr ""
+msgstr "Indtast de tilpassede metadata, der skal fortrænge standard-metedata. Disse tekstfelter kan være tomme."
#: ref_epub_export.xhp
msgctxt ""
@@ -40719,7 +40734,7 @@ msgctxt ""
"hd_id3148526\n"
"help.text"
msgid "Identifier"
-msgstr ""
+msgstr "Identifikator"
#: ref_epub_export.xhp
msgctxt ""
@@ -40727,7 +40742,7 @@ msgctxt ""
"par_id3154237\n"
"help.text"
msgid "Enter an unique identifier for the publication."
-msgstr ""
+msgstr "Indsæt en unik identifikator til publikationen."
#: ref_epub_export.xhp
msgctxt ""
@@ -40743,7 +40758,7 @@ msgctxt ""
"par_id3154238\n"
"help.text"
msgid "Enter the title of the publication."
-msgstr ""
+msgstr "Indtast publikationens titel."
#: ref_epub_export.xhp
msgctxt ""
@@ -40759,7 +40774,7 @@ msgctxt ""
"par_id3154239\n"
"help.text"
msgid "Enter the Author of the publication."
-msgstr ""
+msgstr "Indtast publikationens forfatter."
#: ref_epub_export.xhp
msgctxt ""
@@ -40775,7 +40790,7 @@ msgctxt ""
"par_id3154240\n"
"help.text"
msgid "Language of the publication (see RFC4646 and ISO 639 for possible values)."
-msgstr ""
+msgstr "Publikationens sprog (se RFC4646 og ISO 639 for mulige værdier)."
#: ref_epub_export.xhp
msgctxt ""
@@ -40791,7 +40806,7 @@ msgctxt ""
"par_id3154241\n"
"help.text"
msgid "Last modification date for the publication. The value of this property must be an XML Schema dateTime conformant date in the form: CCYY-MM-DDThh:mm:ssZ. Default is the date and time when the export dialog opened."
-msgstr ""
+msgstr "Publikationens seneste ændringsdato. Værdien for denne egenskab skal overholde XML-skemaet datoTid på formen: CCYY-MM-DDThh:mm:ssZ. Standarden er den dato og tid, hvor eksportdialogen blev åbnet."
#: ref_pdf_export.xhp
msgctxt ""
@@ -40823,7 +40838,7 @@ msgctxt ""
"par_id3154044\n"
"help.text"
msgid "<variable id=\"export\"><ahelp hid=\".\">Saves the current file to Portable Document Format (PDF) version 1.4.</ahelp> A PDF file can be viewed and printed on any platform with the original formatting intact, provided that supporting software is installed.</variable>"
-msgstr ""
+msgstr "<variable id=\"export\"><ahelp hid=\".\">Gemmer den aktuelle fil i Portable Document Format (PDF) version 1.4.</ahelp> En PDF-fil kan ses og udskrives på enhver platform med den oprindelige formatering intakt, forudsat at der er installeret understøttende software.</variable>"
#: ref_pdf_export.xhp
msgctxt ""
@@ -41111,7 +41126,7 @@ msgctxt ""
"par_idN207C2\n"
"help.text"
msgid "To export comments of Writer documents as they are shown in %PRODUCTNAME, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer - Print</emph> and select the <emph>In margins</emph> option in the <emph>Comments</emph> area. The exported pages will be scaled down and the comments will be placed into their margins."
-msgstr ""
+msgstr "For at eksportere kommentarer i Writer dokumenter, som de vises i %PRODUCTNAME, vælg <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Indstillinger</emph></caseinline> <defaultinline><emph>Værktøjer - Valgmuligheder</emph></defaultinline></switchinline> <emph>- %PRODUCTNAME Writer - Udskriv</emph> og vælg <emph>I margener</emph> i<emph>Kommentar</emph> området. De eksporterede sider vil blive skaleret ned og kommentarerne placeres i margenerne."
#: ref_pdf_export.xhp
msgctxt ""
@@ -42039,7 +42054,7 @@ msgctxt ""
"par_id22107306\n"
"help.text"
msgid "The key store to be used can be selected under <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME - Security - Certificate Path</emph>."
-msgstr ""
+msgstr "Nøglebanken, som skal bruges, kan du vælge under <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Indstillinger</emph></caseinline> <defaultinline><emph>Funktioner - Indstillinger</emph></defaultinline></switchinline> <emph>- %PRODUCTNAME - Sikkerhed - Sti til certifikat</emph>."
#: ref_pdf_export.xhp
msgctxt ""
@@ -42151,7 +42166,7 @@ msgctxt ""
"par_id11371501\n"
"help.text"
msgid "<ahelp hid=\".\">These three fields allow you to optionally enter additional information about the digital signature that will be applied to the PDF (Where, by whom and why it was made). It will be embedded in the appropriate PDF fields and will be visible to anyone viewing the PDF. Each or all of the three fields may be left blank.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Disse tre felter lader dig valgfrit indtaste tillægsinformation om den digitale underskrift, som bliver anvendt i PDF'en (hvor, af hvem og hvorfor den blev lavet). Den vil blive indlejret i passende PDF-felter og vil være synlig for alle, der ser PDF'en. Hvert af de tre felter kan stå tomt.</ahelp>"
#: ref_pdf_export.xhp
msgctxt ""
@@ -42183,7 +42198,7 @@ msgctxt ""
"par_id39089022\n"
"help.text"
msgid "The list of TSA URLs that can be selected is maintained under <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME - Security - TSAs</emph>."
-msgstr ""
+msgstr "Listen med TSA URL-adresser kan vælges og vedligeholdes under <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Indstillinger</emph></caseinline> <defaultinline><emph>Funktioner - Indstillinger</emph></defaultinline></switchinline> <emph>- %PRODUCTNAME - Sikkerhed - TSA</emph>."
#: ref_pdf_export.xhp
msgctxt ""
@@ -42415,7 +42430,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Signing Existing PDF"
-msgstr ""
+msgstr "Underskrivelse af eksisterende PDF..."
#: signexistingpdf.xhp
msgctxt ""
@@ -42423,7 +42438,7 @@ msgctxt ""
"bm_id581526779778738\n"
"help.text"
msgid "<bookmark_value>digital signature;signing existing PDF</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>digital signatur;underskrivelse eksisterende PDF</bookmark_value>"
#: signexistingpdf.xhp
msgctxt ""
@@ -42431,7 +42446,7 @@ msgctxt ""
"hd_id201526432498222\n"
"help.text"
msgid "<variable id=\"signexisitingpdf\"><link href=\"text/shared/01/signexistingpdf.xhp\" name=\"Sign Existing PDF Files\">Signing Existing PDF files</link></variable>"
-msgstr ""
+msgstr "<variable id=\"signexisitingpdf\"><link href=\"text/shared/01/signexistingpdf.xhp\" name=\"Sign Existing PDF Files\">Underskrivelse af eksisterende PDF-filer</link></variable>"
#: signexistingpdf.xhp
msgctxt ""
@@ -42439,7 +42454,7 @@ msgctxt ""
"par_id41526423955118\n"
"help.text"
msgid "%PRODUCTNAME can digitally sign an existing PDF document."
-msgstr ""
+msgstr "%PRODUCTNAME kan digitalt underskrive et eksisterende PDF-dokument."
#: signexistingpdf.xhp
msgctxt ""
@@ -42447,7 +42462,7 @@ msgctxt ""
"par_id821526581027302\n"
"help.text"
msgid "The file opens in %PRODUCTNAME Draw in read only mode."
-msgstr ""
+msgstr "Filen åbnes i %PRODUCTNAME Draw i skrivebeskyttet tilstand."
#: signexistingpdf.xhp
msgctxt ""
@@ -42455,7 +42470,7 @@ msgctxt ""
"par_id361526580565237\n"
"help.text"
msgid "Sign the PDF document as usual."
-msgstr ""
+msgstr "Underskriv PDF dokumentet som sædvanlig."
#: webhtml.xhp
msgctxt ""
@@ -43575,7 +43590,7 @@ msgctxt ""
"par_id2318796\n"
"help.text"
msgid "<ahelp hid=\".\">Specifies a regular expression pattern. Strings validated against the data type must conform to this pattern to be valid. The XSD data type syntax for regular expressions is different from the regular expression syntax used elsewhere in %PRODUCTNAME, for example in the Find & Replace dialog.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Specificerer et regulært udtryk. Tekststrenge, som valideres mod datatypen, skal overholde dette mønster for at være gyldige. Syntaksen for regulære udtryk i forbindelse med XSD-datatyper er forskellig fra den syntaks, som bruges andre steder i %PRODUCTNAME; f.eks. i dialogen Søg og erstat.</ahelp>"
#: xformsdatatab.xhp
msgctxt ""
diff --git a/source/da/helpcontent2/source/text/shared/02.po b/source/da/helpcontent2/source/text/shared/02.po
index fffa661a516..f58ee79ac79 100644
--- a/source/da/helpcontent2/source/text/shared/02.po
+++ b/source/da/helpcontent2/source/text/shared/02.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: 2018-05-08 15:10+0200\n"
-"PO-Revision-Date: 2017-12-29 08:12+0000\n"
-"Last-Translator: Leif Lodahl <leiflodahl@gmail.com>\n"
+"PO-Revision-Date: 2018-05-27 18:39+0000\n"
+"Last-Translator: SteenRønnow <steen.roennow@mail.dk>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: da\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1514535164.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1527446352.000000\n"
#: 01110000.xhp
msgctxt ""
@@ -8286,7 +8286,7 @@ msgctxt ""
"par_id3150040\n"
"help.text"
msgid "<ahelp hid=\".\">Toggles the Design mode on or off. This function is used to switch quickly between <link href=\"text/shared/explorer/database/04030000.xhp\" name=\"Design\">Design</link> and User mode. Activate to edit the form controls, deactivate to use the form controls.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Slår designtilstand til eller fra. Denne funktion bruges til hurtigt at skifte mellem <link href=\"text/shared/explorer/database/04030000.xhp\" name=\"Design\">Design-</link> og Brugertilstand. Aktiver den for at redigere formularkontrolelementerne og deaktiver den for at bruge formularkontrolelementerne.</ahelp>"
#: 01170500.xhp
msgctxt ""
@@ -9718,7 +9718,7 @@ msgctxt ""
"par_id3153539\n"
"help.text"
msgid "<ahelp hid=\".uno:TextdirectionLeftToRight\">Specifies the horizontal direction of the text.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".uno:TextdirectionLeftToRight\">Angiver den vandrette retning for teksten.</ahelp>"
#: 02040000.xhp
msgctxt ""
@@ -9758,7 +9758,7 @@ msgctxt ""
"par_id3153089\n"
"help.text"
msgid "<ahelp hid=\".uno:TextdirectionTopToBottom\" visibility=\"visible\">Specifies the vertical direction of the text.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".uno:TextdirectionTopToBottom\" visibility=\"visible\">Bestemmer tekstens lodrette retning.</ahelp>"
#: 02050000.xhp
msgctxt ""
@@ -10766,7 +10766,7 @@ msgctxt ""
"par_id3109850\n"
"help.text"
msgid "<ahelp hid=\".\">Positions the selected paragraph before the one above it.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Placerer det markerede afsnit lige før det lige ovenover.</ahelp>"
#: 06100000.xhp
msgctxt ""
@@ -10822,7 +10822,7 @@ msgctxt ""
"par_id3154228\n"
"help.text"
msgid "<ahelp hid=\".\">Positions the selected paragraph after the one below it.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Placerer det markerede afsnit efter det lige nedenunder.</ahelp>"
#: 06110000.xhp
msgctxt ""
@@ -11302,7 +11302,7 @@ msgctxt ""
"par_id3155391\n"
"help.text"
msgid "<ahelp hid=\".\">Select the type of hyperlink to be inserted.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Vælg den type hyperlink, som skal indsættes.</ahelp>"
#: 09070000.xhp
msgctxt ""
@@ -11350,7 +11350,7 @@ msgctxt ""
"par_id3147209\n"
"help.text"
msgid "<ahelp hid=\".\">Applies the data to your document.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Anvender dataene på dit dokument.</ahelp>"
#: 09070000.xhp
msgctxt ""
@@ -11366,7 +11366,7 @@ msgctxt ""
"par_id3149734\n"
"help.text"
msgid "<ahelp hid=\".\">Closes the dialog without saving.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Lukker dialogen uden at gemme</ahelp>"
#: 09070000.xhp
msgctxt ""
@@ -11398,7 +11398,7 @@ msgctxt ""
"par_id3149234\n"
"help.text"
msgid "<ahelp hid=\".\">Resets the entries in the dialog to their original state.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Sætter elementerne i dialogen til deres oprindelige værdi.</ahelp>"
#: 09070100.xhp
msgctxt ""
@@ -11422,7 +11422,7 @@ msgctxt ""
"par_id3154230\n"
"help.text"
msgid "<ahelp hid=\".\">Use the <emph>Internet</emph> page of the <link href=\"text/shared/02/09070000.xhp\" name=\"Hyperlink dialog\">Hyperlink dialog</link> to edit hyperlinks with WWW or FTP addresses.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Brug <emph>Internet</emph>siden i <link href=\"text/shared/02/09070000.xhp\" name=\"Hyperlink dialog\">Hyperlink-dialogen</link> for at redigere hyperlinks med WWW eller FTP-adresser.</ahelp>"
#: 09070100.xhp
msgctxt ""
@@ -11486,7 +11486,7 @@ msgctxt ""
"par_id9887081\n"
"help.text"
msgid "<ahelp hid=\".\">Enter a URL for the file that you want to open when you click the hyperlink. If you do not specify a target frame, the file opens in the current document or frame.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Indtast en URL for den fil, du ønsker at åbne, når du klikker på hyperlinket. Hvis du ikke angiver en målramme, åbnes filen i det nuværende dokument eller ramme.</ahelp>"
#: 09070100.xhp
msgctxt ""
@@ -11670,7 +11670,7 @@ msgctxt ""
"par_id3153049\n"
"help.text"
msgid "<ahelp hid=\".\">On the <emph>Mail</emph> page in the <link href=\"text/shared/02/09070000.xhp\" name=\"Hyperlink dialog\">Hyperlink dialog</link> you can edit hyperlinks for e-mail addresses.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">På siden <emph>E-mail</emph> i <link href=\"text/shared/02/09070000.xhp\" name=\"Hyperlink dialog\">Hyperlink-dialogen</link> kan du redigere hyperlinks til e-mailadresser.</ahelp>"
#: 09070200.xhp
msgctxt ""
@@ -11694,7 +11694,7 @@ msgctxt ""
"par_id3166460\n"
"help.text"
msgid "<ahelp hid=\".\">Assigns the specified e-mail address to the hyperlink.</ahelp> Clicking the new hyperlink in the document will open a new message document, addressed to the receiver specified in the <emph>Recipient</emph> field."
-msgstr ""
+msgstr "<ahelp hid=\".\">Tildeler den angivne e-mailadresse til hyperlinket.</ahelp> Et klik på det nye hyperlink i dokumentet vil åbne en ny besked adresseret til modtageren i feltet <emph>Modtager</emph>."
#: 09070200.xhp
msgctxt ""
@@ -11750,7 +11750,7 @@ msgctxt ""
"par_id3154682\n"
"help.text"
msgid "<ahelp hid=\".\">Hyperlinks to any document or targets in documents can be edited using the <emph>Document</emph> tab from the <link href=\"text/shared/02/09070000.xhp\" name=\"Hyperlink dialog\">Hyperlink dialog</link>.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Hyperlinks til ethvert dokument eller mål i dokumenter kan redigeres ved at bruge fanebladet <emph>Dokument</emph> i <link href=\"text/shared/02/09070000.xhp\" name=\"Hyperlink dialog\">Hyperlink-dialogen</link>.</ahelp>"
#: 09070300.xhp
msgctxt ""
@@ -11790,7 +11790,7 @@ msgctxt ""
"par_id3149095\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/hyperlinkdocpage/fileopen\">Opens the <emph>Open dialog</emph>, where you can select a file.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/hyperlinkdocpage/fileopen\">Åbner <emph>Åbn-dialogen,</emph> hvor du kan vælge en fil.</ahelp>"
#: 09070300.xhp
msgctxt ""
@@ -11870,7 +11870,7 @@ msgctxt ""
"par_id3150445\n"
"help.text"
msgid "<ahelp hid=\".\">Use the <emph>New Document</emph> tab from the <link href=\"text/shared/02/09070000.xhp\" name=\"Hyperlink dialog\">Hyperlink dialog</link> to set up a hyperlink to a new document and create the new document simultaneously.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Brug fanebladet <emph>Nyt dokument</emph> fra <link href=\"text/shared/02/09070000.xhp\" name=\"Hyperlink dialog\">Hyperlink-dialogen</link> for at sætte et hyperlink op til et nyt dokument og oprette det nye dokument samtidigt.</ahelp>"
#: 09070400.xhp
msgctxt ""
@@ -11990,7 +11990,7 @@ msgctxt ""
"par_id3150445\n"
"help.text"
msgid "<ahelp hid=\".\">Moves back to the previous page in the document.</ahelp> This function is only active when you select the <emph>Print Preview</emph> function on the <emph>File</emph> menu."
-msgstr ""
+msgstr "<ahelp hid=\".\">Flytter tilbage til foregående side i dokumentet.</ahelp> Denne funktion er kun aktiv, når du vælger funkionen <emph>Vis udskrift</emph> i menuen <emph>Filer</emph>."
#: 10010000.xhp
msgctxt ""
@@ -12030,7 +12030,7 @@ msgctxt ""
"par_id3159224\n"
"help.text"
msgid "<ahelp hid=\".\">Moves forward to the next page in the document.</ahelp> This function is only active when you select the <emph>Print Preview</emph> function on the <emph>File</emph> menu."
-msgstr ""
+msgstr "<ahelp hid=\".\">Flytter fremad til den næste side i dokumentet.</ahelp> Denne funktion er kun aktiv, når du vælger <emph>Vis udskrift</emph> funktionen i <emph>Filer</emph> Menuen."
#: 10020000.xhp
msgctxt ""
@@ -12070,7 +12070,7 @@ msgctxt ""
"par_id3153539\n"
"help.text"
msgid "<ahelp hid=\".\">Moves to the first page of the document.</ahelp> This function is only active when you select the <emph>Print Preview</emph> function on the <emph>File</emph> menu."
-msgstr ""
+msgstr "<ahelp hid=\".\">Flytter til den første side i dokumentet.</ahelp> Denne funktion er kun aktiv, når du vælger <emph>Vis udskrift</emph> funktionen i <emph>Filer</emph> menuen."
#: 10030000.xhp
msgctxt ""
@@ -12110,7 +12110,7 @@ msgctxt ""
"par_id3149716\n"
"help.text"
msgid "<ahelp hid=\".\">Moves to the last page of the document.</ahelp> This function is only active when you select the <emph>Print Preview</emph> function on the <emph>File</emph> menu."
-msgstr ""
+msgstr "<ahelp hid=\".\">Flytter til den sidste side i dokumentet.</ahelp> Denne funktion er kun aktiv, når du vælger funktionen <emph>Vis udskrift</emph> i menuen <emph>Filer</emph> ."
#: 10040000.xhp
msgctxt ""
@@ -15838,7 +15838,7 @@ msgctxt ""
"par_id3153717\n"
"help.text"
msgid "By using the arrow keys or the <item type=\"keycode\">Home</item> and <item type=\"keycode\">End</item> keys you can extend or crop the current selection. Clicking into the text selects the text between the current cursor position and the click position."
-msgstr ""
+msgstr "Med piletasterne eller <item type=\"keycode\">Home</item> og <item type=\"keycode\">'End</item>-tasterne kan du udvide eller beskære den aktuelle markering. Klik på teksten markerer teksten mellem den aktuelle markørplacering og klikkets position."
#: 20050000.xhp
msgctxt ""
diff --git a/source/da/helpcontent2/source/text/shared/04.po b/source/da/helpcontent2/source/text/shared/04.po
index c7de9aa17ae..55a795e1d84 100644
--- a/source/da/helpcontent2/source/text/shared/04.po
+++ b/source/da/helpcontent2/source/text/shared/04.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: 2018-05-08 15:10+0200\n"
-"PO-Revision-Date: 2018-02-13 07:29+0000\n"
-"Last-Translator: scootergrisen <scootergrisen@gmail.com>\n"
+"PO-Revision-Date: 2018-05-27 18:39+0000\n"
+"Last-Translator: SteenRønnow <steen.roennow@mail.dk>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: da\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1518506970.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1527446359.000000\n"
#: 01010000.xhp
msgctxt ""
@@ -214,7 +214,7 @@ msgctxt ""
"par_id3153968\n"
"help.text"
msgid "$[officename] has an AutoComplete function which activates itself in some text and list boxes. For example, enter <switchinline select=\"sys\"><caseinline select=\"WIN\">c:\\a</caseinline><defaultinline>~/a</defaultinline></switchinline> into the URL field and the AutoComplete function displays the first file or first directory found <switchinline select=\"sys\"><caseinline select=\"WIN\">on the C: drive</caseinline><defaultinline>in your home folder</defaultinline></switchinline> that starts with the letter \"a\"."
-msgstr ""
+msgstr "$[officename] har en Autofuldførelses-funktion, som aktiverer sig selv i nogle tekster og rullelister. Indtast for eksempel <switchinline select=\"sys\"><caseinline select=\"WIN\">c:\\a</caseinline> <defaultinline>~/a</defaultinline></switchinline>i URL-feltet, og fuldførelsesfunktionen viser den første fil eller mappe <switchinline select=\"sys\"><caseinline select=\"WIN\">på C:-drevet</caseinline><defaultinline>i din hjemmemappe</defaultinline></switchinline>, som begynder med bogstavet \"a\"."
#: 01010000.xhp
msgctxt ""
@@ -254,7 +254,7 @@ msgctxt ""
"par_id3145421\n"
"help.text"
msgid "The shortcut keys are shown on the right hand side of the menu lists next to the corresponding menu command. <switchinline select=\"sys\"><caseinline select=\"MAC\">(Not all of the mentioned keys for controlling dialogs are available on the Macintosh.)</caseinline></switchinline>"
-msgstr ""
+msgstr "Genvejstasterne er vist i højre side af menulisterne, lige ved siden af den tilsvarende menukommando. <switchinline select=\"sys\"><caseinline select=\"MAC\">(Ikke alle de omtalte taster til håndtering af dialoger er tilgængelige på Macintosh.)</caseinline></switchinline>"
#: 01010000.xhp
msgctxt ""
@@ -1502,7 +1502,7 @@ msgctxt ""
"hd_id3149722\n"
"help.text"
msgid "Selecting Rows and Columns in a Database Table (opened by <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> + Shift + F4 keys)"
-msgstr ""
+msgstr "Markering af rækker og kolonner i en databasetabel (åbnet med <switchinline select=\"sys\"><caseinline select=\"MAC\">Kommando</caseinline><defaultinline>Ctrl</defaultinline></switchinline> + Skift +F4"
#: 01010000.xhp
msgctxt ""
diff --git a/source/da/helpcontent2/source/text/shared/06.po b/source/da/helpcontent2/source/text/shared/06.po
index 23c72aa9246..30571c7dac7 100644
--- a/source/da/helpcontent2/source/text/shared/06.po
+++ b/source/da/helpcontent2/source/text/shared/06.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: 2018-04-17 15:54+0200\n"
-"PO-Revision-Date: 2018-04-26 23:14+0000\n"
+"PO-Revision-Date: 2018-05-26 20:33+0000\n"
"Last-Translator: SteenRønnow <steen.roennow@mail.dk>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: da\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1524784471.000000\n"
+"X-POOTLE-MTIME: 1527366788.000000\n"
#: youtubevideos.xhp
msgctxt ""
@@ -22,7 +22,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "YouTube Videos"
-msgstr ""
+msgstr "YouTube-videoer"
#: youtubevideos.xhp
msgctxt ""
diff --git a/source/da/helpcontent2/source/text/shared/autopi.po b/source/da/helpcontent2/source/text/shared/autopi.po
index b7430d69aeb..9fcde5e86c0 100644
--- a/source/da/helpcontent2/source/text/shared/autopi.po
+++ b/source/da/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: 2018-04-24 12:21+0200\n"
-"PO-Revision-Date: 2018-04-23 23:33+0000\n"
+"PO-Revision-Date: 2018-05-26 20:37+0000\n"
"Last-Translator: SteenRønnow <steen.roennow@mail.dk>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: da\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1524526391.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1527367038.000000\n"
#: 01000000.xhp
msgctxt ""
@@ -222,7 +222,7 @@ msgctxt ""
"par_id3147226\n"
"help.text"
msgid "<ahelp hid=\".\">Specifies whether you want to create a personal or a business letter.</ahelp> The available options on the following pages vary depending on your choice."
-msgstr ""
+msgstr "<ahelp hid=\".\">Angiver, om du vil oprette et personligt brev eller et forretningsbrev.</ahelp> De tilgængelige indstillinger på de følgende sider varierer afhængigt af dit valg."
#: 01010100.xhp
msgctxt ""
@@ -238,7 +238,7 @@ msgctxt ""
"par_id3145346\n"
"help.text"
msgid "Specify whether you want to create a business or personal letter template."
-msgstr ""
+msgstr "Angiv, om du vil oprette en skabelon til et forretningsbrev eller til et personligt brev."
#: 01010100.xhp
msgctxt ""
@@ -254,7 +254,7 @@ msgctxt ""
"par_id3153681\n"
"help.text"
msgid "<ahelp hid=\".\">Specifies that you want to create a business letter template.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Angiver, at du vil oprette en skabelon til et forretningsbrev.</ahelp>"
#: 01010100.xhp
msgctxt ""
@@ -270,7 +270,7 @@ msgctxt ""
"par_idN1061D\n"
"help.text"
msgid "<ahelp hid=\".\">Specifies that you want to create a formal personal letter.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Angiver, at du vil oprette et personligt, formelt brev.</ahelp>"
#: 01010100.xhp
msgctxt ""
@@ -286,7 +286,7 @@ msgctxt ""
"par_id3148538\n"
"help.text"
msgid "<ahelp hid=\".\">Specifies that you want to create a personal letter.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Angiver, at du vil oprette et personligt brev.</ahelp>"
#: 01010100.xhp
msgctxt ""
@@ -302,7 +302,7 @@ msgctxt ""
"par_id3149415\n"
"help.text"
msgid "<ahelp hid=\".\">Select the design for your letter template.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Vælg design til din brevskabelon.</ahelp>"
#: 01010100.xhp
msgctxt ""
@@ -318,7 +318,7 @@ msgctxt ""
"par_idN106AB\n"
"help.text"
msgid "<ahelp hid=\".\">Specifies whether paper is used that already contains an imprinted logo, address, or footer line. The Wizard shows the Letterhead layout page next.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Angiver, om der bruges papir, som allerede indeholder et trykt logo, adresse, eller sidefod. Det næste punkt i guiden viser layoutet for brevpapiret.</ahelp>"
#: 01010100.xhp
msgctxt ""
@@ -326,7 +326,7 @@ msgctxt ""
"par_id3150254\n"
"help.text"
msgid "<link href=\"text/shared/autopi/01010200.xhp\" name=\"Go to Letter Wizard - Letterhead layout\">Go to Letter Wizard - Letterhead layout</link>"
-msgstr "<link href=\"text/shared/autopi/01010200.xhp\" name=\"Gå til guiden Brev - Layout af brevpapir\">Gå til guiden Brev - Layout af brevpapir</link>"
+msgstr "<link href=\"text/shared/autopi/01010200.xhp\" name=\"Go to Letter Wizard - Letterhead layout\">Gå til guiden Brev - Layout af brevpapir</link>"
#: 01010200.xhp
msgctxt ""
@@ -334,7 +334,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Letter Wizard - Letterhead layout"
-msgstr "Brevguide - Brevhovedlayout"
+msgstr "Guiden Brev - Layout af brevhoved"
#: 01010200.xhp
msgctxt ""
@@ -342,7 +342,7 @@ msgctxt ""
"hd_id3155354\n"
"help.text"
msgid "<link href=\"text/shared/autopi/01010200.xhp\" name=\"Letter Wizard - Letterhead layout\">Letter Wizard - Letterhead layout</link>"
-msgstr "<link href=\"text/shared/autopi/01010200.xhp\" name=\"Brevguide - Layout af brevpapir\">Brevguide - Layout af brevpapir</link>"
+msgstr "<link href=\"text/shared/autopi/01010200.xhp\" name=\"Guiden Brev - Layout af brevhoved\">Guiden Brev - Layout af brevhoved</link>"
#: 01010200.xhp
msgctxt ""
@@ -350,7 +350,7 @@ msgctxt ""
"par_id3146856\n"
"help.text"
msgid "<ahelp hid=\".\">Allows you to specify the elements that are already imprinted on your letterhead paper.</ahelp> Those elements are not printed, and the space they occupy is left blank by the printer."
-msgstr ""
+msgstr "<ahelp hid=\".\">Giver dig mulighed for at angive de elementer, som er fortrykt på dit brevpapir.</ahelp> Disse elementer udskrives ikke, og den plads, de optager, lader printeren stå tom."
#: 01010200.xhp
msgctxt ""
@@ -374,7 +374,7 @@ msgctxt ""
"par_id3154186\n"
"help.text"
msgid "<ahelp hid=\".\">Specifies that a logo is already printed on your letterhead paper. %PRODUCTNAME does not print a logo.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Angiver, at der er fortrykt et logo på dit brevpapir. %PRODUCTNAME udskriver ikke et logo.</ahelp>"
#: 01010200.xhp
msgctxt ""
@@ -422,7 +422,7 @@ msgctxt ""
"par_id3149766\n"
"help.text"
msgid "<ahelp hid=\".\">Sets the object distance from the left page margin.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Sætter objektets afstand fra siden venstre margen.</ahelp>"
#: 01010200.xhp
msgctxt ""
@@ -438,7 +438,7 @@ msgctxt ""
"par_id3156423\n"
"help.text"
msgid "<ahelp hid=\".\">Sets the object distance from the top page margin.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Sætter objektets afstand til sidens topmargen.</ahelp>"
#: 01010200.xhp
msgctxt ""
@@ -454,7 +454,7 @@ msgctxt ""
"par_idN106CF\n"
"help.text"
msgid "<ahelp hid=\".\">Specifies that an address is already printed on your letterhead paper. %PRODUCTNAME does not print an address.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Angiver, at der er fortrykt en adresse på dit brevpapir. %PRODUCTNAME udskriver ikke en adresse.</ahelp>"
#: 01010200.xhp
msgctxt ""
@@ -470,7 +470,7 @@ msgctxt ""
"par_idN106D6\n"
"help.text"
msgid "<ahelp hid=\".\">Specifies that your own address is already imprinted in small size above the area of the recipient's address. %PRODUCTNAME does not print an address in small size.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Angiver, at din egen adresse er fortrykt i lille størrelse over modtageradressen. %PRODUCTNAME udskriver ikke en adresse i lille størrelse.</ahelp>"
#: 01010200.xhp
msgctxt ""
@@ -486,7 +486,7 @@ msgctxt ""
"par_idN106DD\n"
"help.text"
msgid "<ahelp hid=\".\">Specifies that a footer area is already printed on your letterhead paper. %PRODUCTNAME does not print a footer.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Angiver, at der er fortrykt en sidefod på dit brevpapir. %PRODUCTNAME udskriver ikke en sidefod.</ahelp>"
#: 01010200.xhp
msgctxt ""
@@ -502,7 +502,7 @@ msgctxt ""
"par_idN106E4\n"
"help.text"
msgid "<ahelp hid=\".\">Enter the height of the footer area that is already imprinted on your letterhead paper. %PRODUCTNAME does not print in that area.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Indtast højden på området med den fortrykte sidefod på dit brevpapir. %PRODUCTNAME vil ikke udskrive i dette område.</ahelp>"
#: 01010200.xhp
msgctxt ""
@@ -534,7 +534,7 @@ msgctxt ""
"par_id3152594\n"
"help.text"
msgid "<ahelp hid=\".\">Defines the items to be included in the letter template.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Angiver de elementer, som skal tages med i brevskabelonen.</ahelp>"
#: 01010300.xhp
msgctxt ""
@@ -550,7 +550,7 @@ msgctxt ""
"par_idN105FE\n"
"help.text"
msgid "<ahelp hid=\".\">Includes a logo on the letter template.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Medtager et logo i brevskabelonen.</ahelp>"
#: 01010300.xhp
msgctxt ""
@@ -566,7 +566,7 @@ msgctxt ""
"par_idN10619\n"
"help.text"
msgid "<ahelp hid=\".\">Includes a small size return address on the letter template.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Medtager en returadresse i lille størrelse i brevskabelonen.</ahelp>"
#: 01010300.xhp
msgctxt ""
@@ -582,7 +582,7 @@ msgctxt ""
"par_idN10634\n"
"help.text"
msgid "<ahelp hid=\".\">Includes a line with references to a business letter on the letter template.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Medtager en linje med referencer til et forretningsbrev i brevskabelonen.</ahelp>"
#: 01010300.xhp
msgctxt ""
@@ -598,7 +598,7 @@ msgctxt ""
"par_idN1064F\n"
"help.text"
msgid "<ahelp hid=\".\">Includes a subject line on the letter template.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Medtager en emnelinje i brevskabelonen.</ahelp>"
#: 01010300.xhp
msgctxt ""
@@ -614,7 +614,7 @@ msgctxt ""
"par_idN10672\n"
"help.text"
msgid "<ahelp hid=\".\">Includes a salutation on the letter template. Select the salutation from the list box.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Inkluderer en starthilsen i brevskabelonen. Vælg starthilsnen i rullelisten.</ahelp>"
#: 01010300.xhp
msgctxt ""
@@ -630,7 +630,7 @@ msgctxt ""
"par_idN1068D\n"
"help.text"
msgid "<ahelp hid=\".\">Includes fold marks on the letter template.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Medtager foldemærker i brevskabelonen.</ahelp>"
#: 01010300.xhp
msgctxt ""
@@ -646,7 +646,7 @@ msgctxt ""
"par_idN106B0\n"
"help.text"
msgid "<ahelp hid=\".\">Includes a complimentary close on the letter template. Select the text from the list box.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Medtager en sluthilsen i brevskabelonen. Vælg teksten i rullelisten.</ahelp>"
#: 01010300.xhp
msgctxt ""
@@ -662,7 +662,7 @@ msgctxt ""
"par_idN106CB\n"
"help.text"
msgid "<ahelp hid=\".\">Includes a footer on the letter template.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Medtager en sidefod i brevskabelon.</ahelp>"
#: 01010300.xhp
msgctxt ""
@@ -694,7 +694,7 @@ msgctxt ""
"par_id3159233\n"
"help.text"
msgid "<ahelp hid=\".\">Specifies the sender and recipient information.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Angiver information om afsenderen og modtageren.</ahelp>"
#: 01010400.xhp
msgctxt ""
@@ -710,7 +710,7 @@ msgctxt ""
"par_idN105DE\n"
"help.text"
msgid "Specifies your address information."
-msgstr ""
+msgstr "Angiver din adresseinformation."
#: 01010400.xhp
msgctxt ""
@@ -726,7 +726,7 @@ msgctxt ""
"par_idN105EC\n"
"help.text"
msgid "<ahelp hid=\".\">Use the address data from %PRODUCTNAME - User Data in the Options dialog box.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Brug adressen fra %PRODUCTNAME- Brugerdata i dialogfeltet Indstillinger.</ahelp>"
#: 01010400.xhp
msgctxt ""
@@ -742,7 +742,7 @@ msgctxt ""
"par_idN10606\n"
"help.text"
msgid "<ahelp hid=\".\">Use the address data from the following text boxes.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Brug adressen fra de følgende tekstfelter.</ahelp>"
#: 01010400.xhp
msgctxt ""
@@ -758,7 +758,7 @@ msgctxt ""
"par_idN10620\n"
"help.text"
msgid "<ahelp hid=\".\">Specifies the name of the sender.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Angiver navnet på afsenderen.</ahelp>"
#: 01010400.xhp
msgctxt ""
@@ -774,7 +774,7 @@ msgctxt ""
"par_idN1063A\n"
"help.text"
msgid "<ahelp hid=\".\">Specifies the street address of the sender.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Angiver afsenderens gadenavn.</ahelp>"
#: 01010400.xhp
msgctxt ""
@@ -790,7 +790,7 @@ msgctxt ""
"par_idN10664\n"
"help.text"
msgid "<ahelp hid=\".\">Specifies the address data of the sender.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Angiver afsenderens adressedata.</ahelp>"
#: 01010400.xhp
msgctxt ""
@@ -822,7 +822,7 @@ msgctxt ""
"par_idN10685\n"
"help.text"
msgid "<ahelp hid=\".\">Specifies that placeholder fields are inserted into the letter template.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Angiver, at der sættes pladsholderfelter ind i brevskabelonen.</ahelp>"
#: 01010400.xhp
msgctxt ""
@@ -838,7 +838,7 @@ msgctxt ""
"par_idN1069F\n"
"help.text"
msgid "<ahelp hid=\".\">Address database fields are inserted into the letter template.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Adressedatafelter indsættes ind i brevskabelonen.</ahelp>"
#: 01010400.xhp
msgctxt ""
@@ -870,7 +870,7 @@ msgctxt ""
"par_id3147834\n"
"help.text"
msgid "<ahelp hid=\".\">Specifies the information to include in the footer space.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Angiver, hvilken information der skal medtages i sidefoden.</ahelp>"
#: 01010500.xhp
msgctxt ""
@@ -886,7 +886,7 @@ msgctxt ""
"par_idN105E3\n"
"help.text"
msgid "<ahelp hid=\".\">Enter the text for the footer lines.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Indtast teksten til linjerne i sidefoden.</ahelp>"
#: 01010500.xhp
msgctxt ""
@@ -918,7 +918,7 @@ msgctxt ""
"par_id3155414\n"
"help.text"
msgid "<ahelp hid=\".\">Includes page numbers in your letter template.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Medtager sidetal i din brevskabelon.</ahelp>"
#: 01010500.xhp
msgctxt ""
@@ -950,7 +950,7 @@ msgctxt ""
"par_id3152996\n"
"help.text"
msgid "<ahelp hid=\".\">Specifies where and under which name you want to save the document and template.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Angiver hvor og under hvilket navn du vil gemme dokumentet og skabelonen.</ahelp>"
#: 01010600.xhp
msgctxt ""
@@ -966,7 +966,7 @@ msgctxt ""
"par_id3159157\n"
"help.text"
msgid "<ahelp hid=\".\">Specifies the title of the document template.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Angiver navnet på dokumentskabelonen.</ahelp>"
#: 01010600.xhp
msgctxt ""
@@ -982,7 +982,7 @@ msgctxt ""
"par_idN1061A\n"
"help.text"
msgid "<ahelp hid=\".\">Enter the path and file name for the template, or click the <emph>...</emph> button to select the path and file name.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Indtast skabelonens sti og filnavn, eller klik på knappen <emph>...</emph> for at vælge sti og filnavn.</ahelp>"
#: 01010600.xhp
msgctxt ""
@@ -998,7 +998,7 @@ msgctxt ""
"par_idN1063C\n"
"help.text"
msgid "<ahelp hid=\".\">Saves and closes the template, and then opens a new untitled document based on the template.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Gemmer og lukker skabelonen, og åbner så et nyt unavngivet dokument baseret på skabelonen.</ahelp>"
#: 01010600.xhp
msgctxt ""
@@ -1014,7 +1014,7 @@ msgctxt ""
"par_idN10656\n"
"help.text"
msgid "<ahelp hid=\".\">Saves the template and keeps it open for editing.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Gemmer skabelonen og beholder den åben for redigering.</ahelp>"
#: 01010600.xhp
msgctxt ""
@@ -3478,7 +3478,7 @@ msgctxt ""
"par_id3150476\n"
"help.text"
msgid "Specifies the table or query for which you are creating the report, and which fields you wish to include in the report."
-msgstr ""
+msgstr "Angiver den tabel eller forespørgsel, du vil oprette rapporten fra, samt de felter, du vil medtage i rapporten."
#: 01100100.xhp
msgctxt ""
@@ -3494,7 +3494,7 @@ msgctxt ""
"par_id3147043\n"
"help.text"
msgid "<ahelp hid=\".\">Select the table or query for which the report is to be created.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Marker den tabel eller forespørgsel, du vil oprette rapporten fra.</ahelp>"
#: 01100100.xhp
msgctxt ""
@@ -3510,7 +3510,7 @@ msgctxt ""
"par_id3155338\n"
"help.text"
msgid "<ahelp hid=\".\">Displays the names of the data base fields in the selected table or query.</ahelp> Click to select a field or press the Shift or <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> key while clicking to select multiple fields."
-msgstr ""
+msgstr "<ahelp hid=\".\" >Viser navnene på databasefelterne i den valgte tabel eller forespørgsel.</ahelp> Klik for at vælge et felt eller tryk på Skift eller <switchinline select=\"sys\"><caseinline select=\"MAC\">Æble</caseinline> <defaultinline>Ctrl</defaultinline> </switchinline>, mens du klikker for at vælge flere felter."
#: 01100100.xhp
msgctxt ""
@@ -3526,7 +3526,7 @@ msgctxt ""
"par_id3147275\n"
"help.text"
msgid "<ahelp hid=\".\">Displays all fields that are included in the new report.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Viser alle felter, som medtages i den nye rapport.</ahelp>"
#: 01100100.xhp
msgctxt ""
@@ -3542,7 +3542,7 @@ msgctxt ""
"par_id3152350\n"
"help.text"
msgid "<ahelp hid=\".\">Click to move the selected field(s) to the box that the arrow is pointing to.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Klik for at flytte de markerede felter til boksen, som pilen peger på.</ahelp>"
#: 01100100.xhp
msgctxt ""
@@ -3558,7 +3558,7 @@ msgctxt ""
"par_id3149784\n"
"help.text"
msgid "<ahelp hid=\".\">Click to move all fields to the box that the arrow is pointing to.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Klik for at flytte alle felter til boksen, som pilen peger på.</ahelp>"
#: 01100100.xhp
msgctxt ""
@@ -3574,7 +3574,7 @@ msgctxt ""
"par_id3150275\n"
"help.text"
msgid "<ahelp hid=\".\">Click to move the selected field(s) to the box that the arrow is pointing to.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Klik for at flytte de(t) markerede felt(er) til boksen, som pilen peger på.</ahelp>"
#: 01100100.xhp
msgctxt ""
@@ -3590,7 +3590,7 @@ msgctxt ""
"par_id3150084\n"
"help.text"
msgid "<ahelp hid=\".\">Click to move all fields to the box that the arrow is pointing to.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Klik for at flytte alle felter til boksen, som pilen peger på.</ahelp>"
#: 01100100.xhp
msgctxt ""
@@ -3622,7 +3622,7 @@ msgctxt ""
"par_id3147102\n"
"help.text"
msgid "Specifies how you want to label the fields."
-msgstr ""
+msgstr "Angiver, hvordan du vil mærke felterne."
#: 01100150.xhp
msgctxt ""
@@ -3638,7 +3638,7 @@ msgctxt ""
"par_id3150774\n"
"help.text"
msgid "<ahelp hid=\".\">Displays the names of the fields to be included in the report. At the right you can enter a label for each field that will be printed in the report.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Viser navnene på de felter, som skal medtages i rapporten. Til højre kan du indtaste en etiket til hvert felt, som bliver udskrevet i rapporten.</ahelp>"
#: 01100150.xhp
msgctxt ""
@@ -3670,7 +3670,7 @@ msgctxt ""
"par_id3163829\n"
"help.text"
msgid "You can group records in a report based on the values in one or more fields. Select the fields by which the resulting report will be grouped. You can group up to four fields in a report. When you group more than one field, $[officename] nests the groups according to their group level."
-msgstr ""
+msgstr "Du kan gruppere posterne i en rapport efter værdierne i et eller flere felter. Marker de felter, som rapporten skal grupperes efter. Du kan gruppere op til fire felter i en rapport. Når du grupperer mere end ét felt, indrykker $[officename] grupperne svarende til deres grupperingsniveau."
#: 01100200.xhp
msgctxt ""
@@ -3686,7 +3686,7 @@ msgctxt ""
"par_id3155805\n"
"help.text"
msgid "<ahelp hid=\".\">Lists the fields from your selection on the previous page of the Wizard. To group the report by a field, select the field name, then click the <emph>></emph> button. You may select up to four levels of grouping.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Viser de felter, som du valgte på den forrige side i guiden. For at gruppere rapporten efter et felt skal du markere feltnavnet og derefter klikke på knappen <emph>></emph>. Du kan vælge op til fire grupperingsniveauer.</ahelp>"
#: 01100200.xhp
msgctxt ""
@@ -3702,7 +3702,7 @@ msgctxt ""
"par_id3155892\n"
"help.text"
msgid "<ahelp hid=\".\">Lists the fields by which the report will be grouped. To remove one level of grouping, select the field name, then click the <emph><</emph> button. You may select up to four levels of grouping.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Viser de felter, som rapporten bliver grupperet efter. For at fjerne et niveau fra grupperingen skal du markere feltnavnet og derefter klikke på knappen <emph><</emph>. Du kan vælge op til fire grupperingsniveauer.</ahelp>"
#: 01100200.xhp
msgctxt ""
@@ -3718,7 +3718,7 @@ msgctxt ""
"par_id3157958\n"
"help.text"
msgid "<ahelp hid=\".\">Click to move the selected field to the box that the arrow is pointing to.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Klik for at tilføje de valgte felter til feltet, som pilen peger på.</ahelp>"
#: 01100200.xhp
msgctxt ""
@@ -3734,7 +3734,7 @@ msgctxt ""
"par_id3149811\n"
"help.text"
msgid "<ahelp hid=\".\">Click to move the selected field to the box that the arrow is pointing to.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Klik for at tilføje de valgte felter til feltet, som pilen peger på.</ahelp>"
#: 01100200.xhp
msgctxt ""
@@ -3766,7 +3766,7 @@ msgctxt ""
"par_id3148520\n"
"help.text"
msgid "Select the fields by which to sort the report. Fields can be sorted by up to four levels, each either ascending or descending. Grouped fields can only be sorted within each group."
-msgstr ""
+msgstr "Vælg de felter, som rapporten skal sorteres efter. Felter kan sorteres i op til fire niveauer, hvert af dem enten stigende eller faldende. Grupperede felter kan kun sorteres indenfor hver gruppe."
#: 01100300.xhp
msgctxt ""
@@ -3782,7 +3782,7 @@ msgctxt ""
"par_id3155555\n"
"help.text"
msgid "<ahelp hid=\".\">Select the first field by which to sort the report.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Vælg det første felt, som rapporten skal sorteres efter.</ahelp>"
#: 01100300.xhp
msgctxt ""
@@ -3798,7 +3798,7 @@ msgctxt ""
"par_id3149182\n"
"help.text"
msgid "<ahelp hid=\".\">Select an additional field by which to sort the report.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Vælg yderligere et felt, som rapporten skal sorteres efter.</ahelp>"
#: 01100300.xhp
msgctxt ""
@@ -3814,7 +3814,7 @@ msgctxt ""
"par_id3155338\n"
"help.text"
msgid "<ahelp hid=\".\">Sorts the field contents in ascending order.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Sorterer feltindhold i stigende orden.</ahelp>"
#: 01100300.xhp
msgctxt ""
@@ -3830,7 +3830,7 @@ msgctxt ""
"par_id3156113\n"
"help.text"
msgid "<ahelp hid=\".\">Sorts the field contents in descending order.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Sorterer feltindhold i faldende orden.</ahelp>"
#: 01100300.xhp
msgctxt ""
@@ -3862,7 +3862,7 @@ msgctxt ""
"par_id3154894\n"
"help.text"
msgid "Choose the layout from different templates and styles, and choose landscape or portrait page orientation."
-msgstr ""
+msgstr "Vælg layoutet fra forskellige skabeloner og typografier og vælg liggende eller stående sideretning."
#: 01100400.xhp
msgctxt ""
@@ -3878,7 +3878,7 @@ msgctxt ""
"par_id3153681\n"
"help.text"
msgid "<ahelp hid=\".\">Defines a set of styles for the report. The styles assign fonts, indents, table background, and more.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Angiver et sæt typografier til rapporten. Typografierne tildeler skrifttyper, indrykninger, tabelbaggrund med mere.</ahelp>"
#: 01100400.xhp
msgctxt ""
@@ -3894,7 +3894,7 @@ msgctxt ""
"par_id3152551\n"
"help.text"
msgid "<ahelp hid=\".\">Defines a page layout for the report. The page layouts are loaded from template files, which assign a header, footer, and page background.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Angiver et sidelayout for rapporten. Sidelayoutet indlæses fra skabelonfiler, som tildeler et sidehoved, en sidefod og en sidebaggrund.</ahelp>"
#: 01100400.xhp
msgctxt ""
@@ -3926,7 +3926,7 @@ msgctxt ""
"par_id3145382\n"
"help.text"
msgid "<ahelp hid=\".\">Selects a landscape page orientation for the report.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Vælger liggende sideretning til rapporten.</ahelp>"
#: 01100400.xhp
msgctxt ""
@@ -3942,7 +3942,7 @@ msgctxt ""
"par_id3154285\n"
"help.text"
msgid "<ahelp hid=\".\">Selects a portrait page orientation for the report.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Vælger stående sideretning for rapporten.</ahelp>"
#: 01100400.xhp
msgctxt ""
@@ -3974,7 +3974,7 @@ msgctxt ""
"par_id3159224\n"
"help.text"
msgid "You can create the report as a static or dynamic report. When you open a dynamic report, it will display with the current data contents. When you open a static report, it will always display the same data from the time when the static report was created."
-msgstr ""
+msgstr "Du kan oprette rapporten som en statisk eller en dynamisk rapport. Når du åbner en dynamisk rapport, vil den vise det aktuelle dataindhold. Når du åbner en statisk rapport, vil den altid vise de samme data fra det tidspunkt, hvor den statiske rapport blev oprettet."
#: 01100500.xhp
msgctxt ""
@@ -3990,7 +3990,7 @@ msgctxt ""
"par_id3156136\n"
"help.text"
msgid "<ahelp hid=\".\">Specifies the title that is printed at the title line of each page.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Angiver den titel, der bliver udskrevet i titellinjen på hver side.</ahelp>"
#: 01100500.xhp
msgctxt ""
@@ -4006,7 +4006,7 @@ msgctxt ""
"par_id3149580\n"
"help.text"
msgid "<ahelp hid=\".\">Saves the report as a static report. When you open a static report, it will always display the data from the time the report was created.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Gemmer rapporten som en statisk rapport. Når du åbner en statisk rapport, vil den altid vise data fra det tidspunkt, da dokumentet blev oprettet.</ahelp>"
#: 01100500.xhp
msgctxt ""
@@ -4022,7 +4022,7 @@ msgctxt ""
"par_id3155805\n"
"help.text"
msgid "<ahelp hid=\".\">Saves the report as a template. When you open a dynamic report, it will display with the current data contents.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Gemmer rapporten som en skabelon. Når du åbner en dynamisk rapport, viser den det aktuelle dataindhold.</ahelp>"
#: 01100500.xhp
msgctxt ""
@@ -4038,7 +4038,7 @@ msgctxt ""
"par_id3163802\n"
"help.text"
msgid "<ahelp hid=\".\">When you click <emph>Finish</emph>, the report will be saved and opened for edit.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Når du klikker på <emph>Udfør</emph>, vil rapporten blive gemt og åbnet for redigering.</ahelp>"
#: 01100500.xhp
msgctxt ""
@@ -4054,7 +4054,7 @@ msgctxt ""
"par_id3156194\n"
"help.text"
msgid "<ahelp hid=\".\">When you click <emph>Finish</emph>, the report will be saved.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Når du klikker på <emph>Udfør</emph>, bliver rapporten gemt.</ahelp>"
#: 01110000.xhp
msgctxt ""
@@ -4094,7 +4094,7 @@ msgctxt ""
"hd_id3146797\n"
"help.text"
msgid "< Back"
-msgstr ""
+msgstr "< Tilbage"
#: 01110000.xhp
msgctxt ""
@@ -4110,7 +4110,7 @@ msgctxt ""
"hd_id3147242\n"
"help.text"
msgid "Next >"
-msgstr ""
+msgstr "Næste >"
#: 01110000.xhp
msgctxt ""
@@ -6710,7 +6710,7 @@ msgctxt ""
"hd_id3154288\n"
"help.text"
msgid "Firefox"
-msgstr ""
+msgstr "Firefox"
#: 01170000.xhp
msgctxt ""
@@ -6726,7 +6726,7 @@ msgctxt ""
"hd_id3895382\n"
"help.text"
msgid "Thunderbird"
-msgstr ""
+msgstr "Thunderbird"
#: 01170000.xhp
msgctxt ""
@@ -6990,7 +6990,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Data Source Title"
-msgstr ""
+msgstr "Datakildens titel"
#: 01170400.xhp
msgctxt ""
@@ -6998,7 +6998,7 @@ msgctxt ""
"hd_id3147000\n"
"help.text"
msgid "<link href=\"text/shared/autopi/01170400.xhp\" name=\"Data Source Name\">Data Source Title</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/autopi/01170400.xhp\" name=\"Datakildenavn\">Datakildens titel</link>"
#: 01170400.xhp
msgctxt ""
@@ -7054,7 +7054,7 @@ msgctxt ""
"par_idN105C9\n"
"help.text"
msgid "<ahelp hid=\".\">Registers the newly created database file in %PRODUCTNAME. The database will then be listed in the Data sources pane (<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+F4). If this check box is cleared, the database will be available only by opening the database file.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Registrerer den nyoprettede databasefil i %PRODUCTNAME. Databasen vises så på listen i panelet Datakilder (<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+F4). Hvis denne afkrydsningsboks er tom, er databasen kun tilgængelig ved at åbne databasefilen.</ahelp>"
#: 01170400.xhp
msgctxt ""
diff --git a/source/da/helpcontent2/source/text/shared/explorer/database.po b/source/da/helpcontent2/source/text/shared/explorer/database.po
index ca1dd1b77c4..db67e48e5ef 100644
--- a/source/da/helpcontent2/source/text/shared/explorer/database.po
+++ b/source/da/helpcontent2/source/text/shared/explorer/database.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: 2018-05-16 16:54+0200\n"
-"PO-Revision-Date: 2017-12-28 20:39+0000\n"
-"Last-Translator: David Lamhauge <davidlamhauge@gmail.com>\n"
+"PO-Revision-Date: 2018-05-26 20:38+0000\n"
+"Last-Translator: Leif Lodahl <leiflodahl@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: da\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1514493564.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1527367112.000000\n"
#: 02000000.xhp
msgctxt ""
@@ -7494,7 +7494,7 @@ msgctxt ""
"par_id1142772\n"
"help.text"
msgid "See also the English Wiki page <link href=\"https://wiki.documentfoundation.org/MSA-Base_Faq\" name=\"wiki.documentfoundation.org MS Access Base FAQ\">https://wiki.documentfoundation.org/MSA-Base_Faq</link>."
-msgstr ""
+msgstr "Se også den engelske wiki-side <link href=\"https://wiki.documentfoundation.org/MSA-Base_Faq\" name=\"wiki.documentfoundation.org MS Access Base FAQ\">http://wiki.documentfoundation.org/MSA-Base_Faq</link>."
#: dabawiz02access.xhp
msgctxt ""
@@ -9006,7 +9006,7 @@ msgctxt ""
"par_id6474806\n"
"help.text"
msgid "<link href=\"https://wiki.documentfoundation.org/Database\" name=\"wiki.documentfoundation.org Database\">Wiki page about Base</link>"
-msgstr ""
+msgstr "<link href=\"https://wiki.documentfoundation.org/Database\" name=\"wiki.documentfoundation.org Database\">Wiki-side om Base</link>"
#: menubar.xhp
msgctxt ""
@@ -10118,7 +10118,7 @@ msgctxt ""
"par_id0112200902353554\n"
"help.text"
msgid "<link href=\"https://wiki.documentfoundation.org/Macros_in_Database_Documents\" name=\"wiki.documentfoundation.org Macros in Database Documents\">An in depth explanation by the developers (Wiki).</link>"
-msgstr ""
+msgstr "<link href=\"https://wiki.documentfoundation.org/Macros_in_Database_Documents\" name=\"wiki.documentfoundation.org Macros in Database Documents\">En dybtgående forklaring fra udviklerne (Wiki).</link>"
#: password.xhp
msgctxt ""
@@ -11486,7 +11486,7 @@ msgctxt ""
"par_id5941648\n"
"help.text"
msgid "The Writer document is opened read-only. To edit the Writer document, click <emph>Edit Document</emph> on the information bar, or choose <emph>Edit - Edit Mode</emph>."
-msgstr ""
+msgstr "Writer-sokumentet er åbnet skrivebeskyttet. For at redigere Writer-dokumentet klikker du på <emph>Rediger dokument</emph> på informationslinjen eller <emph>Rediger - Redigeringstilstand</emph>."
#: rep_main.xhp
msgctxt ""
@@ -11718,7 +11718,7 @@ msgctxt ""
"par_id9449446\n"
"help.text"
msgid "Functions can be entered using a syntax as specified by the <link href=\"https://en.wikipedia.org/wiki/OpenFormula\" name=\"English Wikipedia: OpenFormula\">OpenFormula</link> proposal."
-msgstr ""
+msgstr "Funktioner kan indtastes med en syntaks, der er angivet i forslaget <link href=\"https://en.wikipedia.org/wiki/OpenFormula\" name=\"English Wikipedia: OpenFormula\">OpenFormula</link> ."
#: rep_navigator.xhp
msgctxt ""
@@ -11726,7 +11726,7 @@ msgctxt ""
"par_id4095583\n"
"help.text"
msgid "See <link href=\"https://wiki.documentfoundation.org/Database\" name=\"wiki.documentfoundation.org Database\">Wiki page about Base</link> for some more help regarding the functions in a report."
-msgstr ""
+msgstr "Se <link href=\"https://wiki.documentfoundation.org/Database\" name=\"wiki.documentfoundation.org Database\">Wikiside om Base</link> for at få mere hjælp med funktionerne i en rapport."
#: rep_navigator.xhp
msgctxt ""
diff --git a/source/da/helpcontent2/source/text/shared/guide.po b/source/da/helpcontent2/source/text/shared/guide.po
index 8e00a9e4d41..0e779c17f78 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: 2018-05-16 16:54+0200\n"
-"PO-Revision-Date: 2018-05-22 07:15+0000\n"
+"PO-Revision-Date: 2018-05-26 20:48+0000\n"
"Last-Translator: SteenRønnow <steen.roennow@mail.dk>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: da\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1526973328.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1527367684.000000\n"
#: aaa_start.xhp
msgctxt ""
@@ -510,7 +510,7 @@ msgctxt ""
"par_id8847010\n"
"help.text"
msgid "A current list of supported assistive tools can be found on the Wiki at <link href=\"https://wiki.documentfoundation.org/Accessibility\" name=\"wiki.documentfoundation.org Accessibility\">https://wiki.documentfoundation.org/Accessibility</link>."
-msgstr ""
+msgstr "En aktuel liste over understøttede hjælpemidler kan findes i Wikien på <link href=\"https://wiki.documentfoundation.org/Accessibility\" name=\"wiki.documentfoundation.org Accessibility\">http://wiki.documentfoundation.org/Accessibility</link>."
#: assistive.xhp
msgctxt ""
@@ -1822,7 +1822,7 @@ msgctxt ""
"par_id2706991\n"
"help.text"
msgid "If no title text exists, choose <emph>Insert - Titles</emph> to enter the text in a dialog."
-msgstr ""
+msgstr "Hvis der ikke findes en titeltekst, vælger du <emph>Indsæt - Titel</emph> og indtaster teksten i en dialogboks."
#: chart_title.xhp
msgctxt ""
@@ -2254,7 +2254,7 @@ msgctxt ""
"par_id150820161816031425\n"
"help.text"
msgid "%PRODUCTNAME can open and save files stored on remote servers. Keeping files on remote servers allows to work with the documents using different computers. For example, you can work on a document in the office during the day and edit it at home for last-minute changes. Storing files on a remote server also protects them from computer loss or hard disk failure. Some servers are also able to check in and check out files, thus controlling their usage and access."
-msgstr ""
+msgstr "%PRODUCTNAME kan åbne og gemme filer, som er lagret på eksterne servere. Når filer ligger på eksterne servere, kan man arbejde på dokumenterne på forskellige computere. For eksempel kan du arbejde på et dokument på kontoret om dagen og redigere ændringer i sidste øjeblik derhjemme. Når man gemmer filer på eksterne servere, har man også en back up af filerne, så de sikres mod fejl på computeren. Nogle servere er også i stand til at tjekke filer ind og ud, så man kan sikre sig mod at to personer arbejder på den samme fil samtidig."
#: cmis-remote-files.xhp
msgctxt ""
@@ -2342,7 +2342,7 @@ msgctxt ""
"bm_id190820161721082861\n"
"help.text"
msgid "<bookmark_value>remote file service;file lock</bookmark_value> <bookmark_value>remote file service;version control</bookmark_value> <bookmark_value>remote file service;working copy</bookmark_value> <bookmark_value>remote file service;checkout</bookmark_value> <bookmark_value>remote file service;checkin</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>ekstern filservice;fil-lås</bookmark_value> <bookmark_value>ekstern filservice;versionskontrol</bookmark_value> <bookmark_value>ekstern filservice;arbejdskopi</bookmark_value> <bookmark_value>ekstern filservice;tjek ud</bookmark_value> <bookmark_value>ekstern filservice;tjek ind</bookmark_value>"
#: cmis-remote-files.xhp
msgctxt ""
@@ -2358,7 +2358,7 @@ msgctxt ""
"par_id170820161605429941\n"
"help.text"
msgid "The Check Out and Check In actions control updates to the document and prevent unwanted overwrites in a CMIS remote service."
-msgstr ""
+msgstr "Handlingerne Tjek ud og tjek ind kontrollerer opdateringer af dokumenter og forhindrer uønskede overskrivninger på en ekstern CMIS-service."
#: cmis-remote-files.xhp
msgctxt ""
@@ -2366,7 +2366,7 @@ msgctxt ""
"par_id17082016160542203\n"
"help.text"
msgid "Checking out a document locks it, preventing other users from writing changes to it. Only one user can have a particular document checked out (locked) at any time. Checking in a document or canceling the checkout unlocks the document."
-msgstr ""
+msgstr "Tjekker du et dokument ud, låser du det, og forhindrer at andre brugere laver ændringer i det. Kun en enkelt bruger kan have et bestemt dokument tjekket ud på et givet tidspunkt. Når du tjekker dokumentet ind igen, eller annullerer tjek ud, frigiver du dokumentet igen."
#: cmis-remote-files.xhp
msgctxt ""
@@ -2374,7 +2374,7 @@ msgctxt ""
"par_id170820161605426690\n"
"help.text"
msgid "There are no checkin/checkout controls for remote files in Windows Shares, WebDAV, FTP and SSH services."
-msgstr ""
+msgstr "Der er ikke nogen tjek-ind/tjek-ud kontrol af eksterne filer i Windows Share, WebDAV, FTP og SSH."
#: cmis-remote-files.xhp
msgctxt ""
@@ -2382,7 +2382,7 @@ msgctxt ""
"par_id170820161605428976\n"
"help.text"
msgid "When a file is open from a CMIS remote file service, %PRODUCTNAME displays a <emph>Check Out</emph> button on the top message area. Click the <emph>Check Out</emph> button to lock the file in the server to prevent edition by another user. Alternatively choose <item type=\"menuitem\">File - Check Out</item>."
-msgstr ""
+msgstr "Når en fil fra en CMIS-service er åben, viser %PRODUCTNAME en <emph>Tjek ud</emph>-knap i beskedområdet i toppen af vinduet. Klik på <emph>Tjek ud</emph>-knappen for at låse filen på serveren for at forhindre redigering fra en anden bruger. Du kan også vælge <item type=\"menuitem\">Filer - Tjek ud</item>."
#: cmis-remote-files.xhp
msgctxt ""
@@ -2390,7 +2390,7 @@ msgctxt ""
"par_id190820161707153804\n"
"help.text"
msgid "%PRODUCTNAME creates a working copy of the file in the server (and inserts the string <item type=\"literal\">(Working Copy)</item> in the file name) when a file is checked out. Every edition and save operation is done in the working copy. You can save your file as many times you want. When you finished your changes, check in the file."
-msgstr ""
+msgstr "%PRODUCTNAME opretter en arbejdskopi af filen på serveren (og indsætter teksten <item type=\"literal\">(Working Copy)</item> i filnavnet), når en fil tjekkes ud. Alle rettelser sker i arbejdskopien, og når du gemmer er det også arbejdskopien du gemmer. Du kan gemme din fil lige så mange gange du vil. Når du er færdig, tjekker du filen ind."
#: cmis-remote-files.xhp
msgctxt ""
@@ -2398,7 +2398,7 @@ msgctxt ""
"par_id190820161707156843\n"
"help.text"
msgid "To check in the file, choose <item type=\"menuitem\">File - Check In</item>. A dialog opens to insert comments about the last edition. These comments are recorded in the CMIS server for version control. The working copy replaces the existing file and its version number is updated."
-msgstr ""
+msgstr "Du tjekker filen ind ved at vælge <item type=\"menuitem\">Filer - Tjek ind</item>. Der åbnes en dialogboks, hvor du kan skrive en kommentar om den seneste ændring. Disse kommentarer gemmes på CMIS-serveren af hensyn til versionskontrol. Arbejdskopien erstatter den eksisterende fil og versionsnummeret opdateres."
#: cmis-remote-files.xhp
msgctxt ""
@@ -2406,7 +2406,7 @@ msgctxt ""
"par_id190820161707155303\n"
"help.text"
msgid "To cancel a checkout, choose <item type=\"menuitem\">File - Cancel Checkout</item>. A warning message will inform that the latest edition will be discarded. If confirmed, no version updates occurs."
-msgstr ""
+msgstr "Du annullerer et Tjek-ud ved at vælge <item type=\"menuitem\">Filer - Annuller tjek ud</item>. En advarsel vil fortælle dig, at den seneste ændring vil blive ignoreret. Hvis du bekræfter, sker der ingen versionsopdatering."
#: cmis-remote-files.xhp
msgctxt ""
@@ -2414,7 +2414,7 @@ msgctxt ""
"par_id19082016170715785\n"
"help.text"
msgid "Remember to check in the file when finishing using it. Not doing so will lock the file and no other user will be allowed to modify it."
-msgstr ""
+msgstr "Husk at tjekke dokumentet ind når du er færdig. Hvis du ikke gør det, vil dokumentet fortsat være låst, og andre får ikke lov til at redigere det."
#: cmis-remote-files.xhp
msgctxt ""
@@ -2454,7 +2454,7 @@ msgctxt ""
"par_id190820161707166344\n"
"help.text"
msgid "If the file is not stored in a CMIS server, choose <item type=\"menuitem\">File - Save to Remote Server</item> or long-click the <emph>Save</emph> icon and select <emph>Save Remote File</emph>."
-msgstr ""
+msgstr "Hvis filen ikke er gemt på en CMIS server, vælg <item type=\"menuitem\">Filer - Gem til ekstern server </item>eller lav et langt klik på <emph>Gem</emph>-ikonet og vælg <emph>Gem ekstern fil</emph>"
#: cmis-remote-files.xhp
msgctxt ""
@@ -2486,7 +2486,7 @@ msgctxt ""
"par_id190820161707163121\n"
"help.text"
msgid "When you finish working with the file, check it in. To do so, choose <item type=\"menuitem\">File - Check In</item>."
-msgstr ""
+msgstr "Hvis du ikke vil arbejde længere med filen, så tjek den ind ved at gå til <item type=\"menuitem\">Filer - Tjek ind</item>."
#: cmis-remote-files.xhp
msgctxt ""
@@ -4142,7 +4142,7 @@ msgctxt ""
"par_id2584002\n"
"help.text"
msgid "On Windows systems, you can also use drag-and-drop instead of Copy and Paste. Also, for registered databases, you can open the datasource browser (press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> + Shift + F4 keys) instead of opening the Base window."
-msgstr ""
+msgstr "På Windows-systemer kan du også trække-og-slippe i stedet for at Kopiere og Indsætte. Ved registrerede databaser kan du også åbne datakilde-læseren (tryk på <switchinline select=\"sys\"><caseinline select=\"MAC\">Kommando</caseinline> <defaultinline>Ctrl</defaultinline></switchinline> + Skift + F4) i stedet for at åbne Base-vinduet."
#: data_new.xhp
msgctxt ""
@@ -4870,7 +4870,7 @@ msgctxt ""
"par_id3159157\n"
"help.text"
msgid "As an example, open an empty text document and press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> + Shift + F4 keys. Open the bibliography database table <emph>biblio</emph> in the data source view. While pressing Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>, drag a few column headers into the document so that the form fields are created."
-msgstr ""
+msgstr "Som et eksempel åbner du et tomt tekstdokument og trykker på <switchinline select=\"sys\"><caseinline select=\"MAC\">Kommando</caseinline><defaultinline>Ctrl</defaultinline></switchinline>Skift + F4. Åbn litteraturdatabasetabellen <emph>biblio</emph> i datakildevisningen. Mens du trykker på Skift + <switchinline select=\"sys\"><caseinline select=\"MAC\">Kommando</caseinline><defaultinline>Ctrl</defaultinline></switchinline>, træk et par kolonneoverskrifter ind i dokumentet, så formularfelterne oprettes."
#: data_search2.xhp
msgctxt ""
@@ -4878,7 +4878,7 @@ msgctxt ""
"par_id3150984\n"
"help.text"
msgid "On the <emph>Form Controls</emph> toolbar, click the <emph>Design Mode On/Off</emph> icon<image id=\"img_id3147618\" src=\"cmd/sc_switchcontroldesignmode.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3147618\">Icon</alt></image> to turn off the design mode."
-msgstr ""
+msgstr "På værktøjslinjen <emph>Formularobjekt</emph> klikker du på ikonet <emph>Designtilstand til/fra</emph> <image id=\"img_id3147618\" src=\"cmd/sc_switchcontroldesignmode.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3147618\">Ikon</alt></image> for at slå designtilstanden fra."
#: data_search2.xhp
msgctxt ""
@@ -4886,7 +4886,7 @@ msgctxt ""
"par_id3148672\n"
"help.text"
msgid "On the <emph>Form Navigation</emph> toolbar, click the <emph>Form-Based Filters</emph> icon<image id=\"img_id3149807\" src=\"cmd/sc_formfilter.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3149807\">Icon</alt></image>. The current document is displayed with its form controls as an empty edit mask. The <emph>Form Filter </emph>toolbar appears."
-msgstr ""
+msgstr "På værktøjslinjen <emph>Formularnavigation</emph> klikker du på ikonet <emph>Formularbaserede filtre</emph> <image id=\"img_id3149807\" src=\"cmd/sc_formfilter.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3149807\">Ikon</alt></image>. Det aktuelle dokument bliver vist med dets indsatte formularfunktioner som en tom redigeringsmaske. Værktøjslinjen <emph>Formularfilter</emph> vises."
#: data_search2.xhp
msgctxt ""
@@ -4926,7 +4926,7 @@ msgctxt ""
"par_id3150114\n"
"help.text"
msgid "Click the <link href=\"text/shared/02/12120000.xhp\" name=\"Apply Filter\"><emph>Apply Filter</emph></link> icon<image id=\"img_id3144764\" src=\"cmd/sc_datafilterstandardfilter.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3144764\">Icon</alt></image> on the <emph>Form Navigation</emph> toolbar to change to the filtered view."
-msgstr ""
+msgstr "Klik på ikonet <link href=\"text/shared/02/12120000.xhp\" name=\"Apply Filter\"><emph>Anvend filter</emph></link> <image id=\"img_id3144764\" src=\"cmd/sc_datafilterstandardfilter.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3144764\">Ikon</alt></image> på værktøjslinjen <emph>Formularnavigation</emph> for at skifte til de filtrerede visninger.."
#: data_search2.xhp
msgctxt ""
@@ -4934,7 +4934,7 @@ msgctxt ""
"par_id3146898\n"
"help.text"
msgid "The filter that has been set can be removed by clicking <link href=\"text/shared/02/12040000.xhp\" name=\"Remove Filter/Sort\"><emph>Reset Filter/Sort</emph></link> icon<image id=\"img_id3151318\" src=\"cmd/sc_removefiltersort.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3151318\">Icon</alt></image>."
-msgstr ""
+msgstr "Filtret, som er blevet sat, kan fjernes ved at klikke på ikonet <link href=\"text/shared/02/12040000.xhp\" name=\"Remove Filter/Sort\"><emph>Fjern filter/sortering</emph></link> <image id=\"img_id3151318\" src=\"cmd/sc_removefiltersort.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3151318\">Ikon</alt></image>."
#: data_tabledefine.xhp
msgctxt ""
@@ -5334,7 +5334,7 @@ msgctxt ""
"par_id3149415\n"
"help.text"
msgid "Choose <emph>View - Data Sources</emph> or press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> + Shift + F4 keys to call the data source view from a text document or spreadsheet."
-msgstr ""
+msgstr "Vælg <emph>Vis - Datakilder</emph> eller tryk på <switchinline select=\"sys\"><caseinline select=\"MAC\">Kommando</caseinline> <defaultinline>Ctrl</defaultinline></switchinline> + Skift + F4 for at kalde visning af datakilde fra et tekstdokument eller regneark."
#: database_main.xhp
msgctxt ""
@@ -5774,7 +5774,7 @@ msgctxt ""
"par_id3204443\n"
"help.text"
msgid "<link href=\"https://wiki.documentfoundation.org/How_to_use_digital_Signatures\" name=\"wiki.documentfoundation.org: How to use digital Signatures\">English Wiki page on digital signatures</link>"
-msgstr ""
+msgstr "<link href=\"https://wiki.documentfoundation.org/How_to_use_digital_Signatures\" name=\"wiki.documentfoundation.org: How to use digital Signatures\">Engelsk Wiki-side om digitale signaturer</link>"
#: digital_signatures.xhp
msgctxt ""
@@ -5814,7 +5814,7 @@ msgctxt ""
"hd_id4989165\n"
"help.text"
msgid "<variable id=\"digitalsign_receive\"><link href=\"text/shared/guide/digitalsign_receive.xhp\">Opening a Document Using WebDAV over HTTPS</link></variable>"
-msgstr ""
+msgstr "<variable id=\"digitalsign_receive\"><link href=\"text/shared/guide/digitalsign_receive.xhp\">Åbner et dokument via WebDAV over HTTPS</link> </variable>"
#: digitalsign_receive.xhp
msgctxt ""
@@ -5966,7 +5966,7 @@ msgctxt ""
"par_id3204443\n"
"help.text"
msgid "<link href=\"https://wiki.documentfoundation.org/How_to_use_digital_Signatures\" name=\"wiki.documentfoundation.org How to use digital Signatures\">English Wiki page on digital signatures</link>"
-msgstr ""
+msgstr "<link href=\"https://wiki.documentfoundation.org/How_to_use_digital_Signatures\" name=\"wiki.documentfoundation.org How to use digital Signatures\">Engelsk wiki-side om digitale signaturer</link>"
#: digitalsign_receive.xhp
msgctxt ""
@@ -6070,7 +6070,7 @@ msgctxt ""
"par_id921519766138177\n"
"help.text"
msgid "On Windows systems, %PRODUCTNAME will access the system certificate storage."
-msgstr ""
+msgstr "På Windows-systemer vil %PRODUCTNAME tilgå system-certifikatlageret."
#: digitalsign_send.xhp
msgctxt ""
@@ -6078,7 +6078,7 @@ msgctxt ""
"par_id461519763996407\n"
"help.text"
msgid "Your private key for the digital signature will usually be generated and securely stored by Windows as part of the signature-issuance process. Once the issuing Certificate Authority is satisfied that your computer produced the private key and you have satisfied any other identification requirements, the corresponding public key is signed by the Certificate Authority. For personal keys obtained over the Internet, the private key is generated by your browser and it is not shared with the Certificate Authority."
-msgstr ""
+msgstr "Dit private nøgle til den digitale signatur bliver normalt genereret og lagret sikker af Windows som en del af processen for signatur-udstedelse. Først når den udstedende certifikationsmyndighed er sikker på, at din computer har fremstillet den private nøgle og at du har opfyldt alle andre identifikationskrav, bliver den tilsvarende offentlige nøgle underskrevet af certifikationsmyndigheden. Til digitale signaturer hentet over internettet bliver den private nøgle genereret af din browser og deles ikke med certifikationsmyndigheden."
#: digitalsign_send.xhp
msgctxt ""
@@ -6086,7 +6086,7 @@ msgctxt ""
"par_id181519764008387\n"
"help.text"
msgid "If a private key is received by other means or you transfer it from another computer, you can install it on your Windows PC by double-clicking on the private key certificate and providing any required password. This private key may be known to others (such as an organizational or governmental security administration) depending on how it was issued to you."
-msgstr ""
+msgstr "Hvis en privat nøgle er modtaget på anden måde eller du overfører den fra en anden computer, kan du installere den på din windows-pc ved at dobbeltklikke på det private nøglecertifikat og give et krævet kodeord. Denne private kan være kendt af andre (så som en organisatorisk eller offentlig sikkerhedsadministration) afhængigt af, hvordan den udstedt til dig."
#: digitalsign_send.xhp
msgctxt ""
@@ -6094,7 +6094,7 @@ msgctxt ""
"par_id21519764016831\n"
"help.text"
msgid "Public keys of other people used to verify document digital signatures, or encrypt documents for their eyes only, are usually stored in your system with digital certificate-management applications. In some cases you will need to manage those public-key certificates yourself."
-msgstr ""
+msgstr "Andre menneskers offentlige nøgler brugt til at verificere digitale signaturer på dokumenter eller til at kryptere dokumenter til dem alene, lagres sædvanligvis i dit system sammen med administrationsprogrammer til digitale signaturer. I nogle tilfælde er du nødt til selv at administrere disse offentlige nøglecertifikater."
#: digitalsign_send.xhp
msgctxt ""
@@ -6102,7 +6102,7 @@ msgctxt ""
"par_id351519764024243\n"
"help.text"
msgid "The general management of public and private keys on your PC will vary depending on the version of Windows you are operating. For more information, use the \"Help and Support\" topic of your Windows version and search for \"digital signature\"."
-msgstr ""
+msgstr "Almen administration af offentlige og private nøgler på din PC vil variere afhængigt af den windows-version, du arbejder med. Yderligere information finder du ved at emnet \"Hjælp og support\" til din windows-version og søge på \"digital signatur\"."
#: digitalsign_send.xhp
msgctxt ""
@@ -6142,7 +6142,7 @@ msgctxt ""
"par_idN106AE\n"
"help.text"
msgid "In the <link href=\"text/shared/01/selectcertificate.xhp\">Select Certificate</link> dialog, select your certificate and click <emph>OK</emph>."
-msgstr ""
+msgstr "I dialogen <link href=\"text/shared/01/selectcertificate.xhp\">Vælg certifikat</link> vælger du certifikat og klikker på <emph>OK</emph>."
#: digitalsign_send.xhp
msgctxt ""
@@ -6150,7 +6150,7 @@ msgctxt ""
"par_idN106C0\n"
"help.text"
msgid "You see again the <emph>Digital Signatures</emph> dialog, where you can add more certificates if you want. Click <emph>OK</emph> to add the public key to the saved file."
-msgstr ""
+msgstr "Du ser igen dialogen <emph>Digitale signaturer</emph>, hvor du kan tilføje flere certifikater, hvis du vil. Klik på <emph>OK</emph> for at føje den offentlige nøgle til den gemte fil."
#: digitalsign_send.xhp
msgctxt ""
@@ -6158,7 +6158,7 @@ msgctxt ""
"par_idN106C3\n"
"help.text"
msgid "A signed document shows an icon <image id=\"img_id262764\" src=\"xmlsecurity/res/certificate_16.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id262764\">Icon</alt></image> in the status bar. You can double-click the icon in the status bar to view the certificate."
-msgstr ""
+msgstr "Et signeret dokument viser et ikon <image id=\"img_id262764\" src=\"xmlsecurity/res/certificate_16.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id262764\">ikon</alt></image> på statuslinjen. Du kan dobbeltklikke på ikonet på statuslinjen for at få vist certifikatet."
#: digitalsign_send.xhp
msgctxt ""
@@ -6166,7 +6166,7 @@ msgctxt ""
"par_id2008200911381426\n"
"help.text"
msgid "The result of the signature validation is displayed in the status bar and within the Digital Signature dialog. Several documents and macro signatures can exist inside an ODF document. If there is a problem with one signature, then the validation result of that one signature is assumed for all signatures. That is, if there are ten valid signatures and one invalid signature, then the status bar and the status field in the dialog will flag the signature as <emph>invalid</emph>."
-msgstr ""
+msgstr "Resultatet af signaturvalideringen vises på statuslinjen og i dialogen Digital signatur. Der kan være flere dokument- og makrosignaturer i et ODF-dokument. Hvis der er et problem med en signatur vil resultatet af valideringen for denne ene signatur gælde for alle signaturer. Det vil sige, hvis der er ti gyldige signaturer og én ugyldig signatur, så vil statuslinjen og statusfeltet i dialogen markere at signaturen er <emph>ugyldig</emph>."
#: digitalsign_send.xhp
msgctxt ""
@@ -6206,7 +6206,7 @@ msgctxt ""
"par_idN106F5\n"
"help.text"
msgid "When you open the Basic IDE that contains signed macros, you see an icon<image id=\"img_id9252296\" src=\"xmlsecurity/res/certificate_16.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id9252296\">Icon</alt></image> in the status bar. You can double-click the icon in the status bar to view the certificate."
-msgstr ""
+msgstr "Når du åbner Basic IDE'et, som indeholder signerede makroer, vil du se et ikon <image id=\"img_id9252296\" src=\"xmlsecurity/res/certificate_16.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id9252296\">ikon</alt></image> i statuslinjen. Du kan dobbeltklikke på ikonet i statuslinjen for at se certifikatet."
#: digitalsign_send.xhp
msgctxt ""
@@ -10998,7 +10998,7 @@ msgctxt ""
"par_id3150515\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> + Shift + F4 opens and closes the data source view."
-msgstr ""
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Kommando</caseinline> <defaultinline>Ctrl</defaultinline></switchinline> + Skift + F4 åbner og lukke visningen af datakilder."
#: keyboard.xhp
msgctxt ""
@@ -12126,7 +12126,7 @@ msgctxt ""
"par_id9852903\n"
"help.text"
msgid "If you use %PRODUCTNAME packages maintained by your Linux distribution, follow the steps below."
-msgstr ""
+msgstr "Hvis du bruger %PRODUCTNAME pakker, der vedligeholdes af din Linux-distribution, skal du følge nedenstående trin."
#: language_select.xhp
msgctxt ""
@@ -13830,7 +13830,7 @@ msgctxt ""
"par_id3150439\n"
"help.text"
msgid "For a detailed overview about converting documents to and from Microsoft Office format, see the <link href=\"https://wiki.documentfoundation.org/Documentation/OOoAuthors_User_Manual/Migration_Guide\" name=\"wiki.dcoumentfoundation.org OOoAuthors User Manual: Migration Guide\">Migration Guide</link>."
-msgstr ""
+msgstr "En detaljeret oversigt om at konvertere dokumenter til og fra Microsoft Office formater finder du i <link href=\"https://wiki.documentfoundation.org/Documentation/OOoAuthors_User_Manual/Migration_Guide\" name=\"wiki.dcoumentfoundation.org OOoAuthors User Manual: Migration Guide\">Migration Guide</link>."
#: ms_import_export_limitations.xhp
msgctxt ""
@@ -14046,7 +14046,7 @@ msgctxt ""
"par_id3153543\n"
"help.text"
msgid "Microsoft Word, *.doc, *.docx"
-msgstr ""
+msgstr "MS Word, *.doc, *.docx"
#: ms_user.xhp
msgctxt ""
@@ -14078,7 +14078,7 @@ msgctxt ""
"par_id3147574\n"
"help.text"
msgid "Microsoft PowerPoint, *.ppt, *.pps, *.pptx"
-msgstr ""
+msgstr "MS PowerPoint, *.ppt, *.pps, *.pptx"
#: ms_user.xhp
msgctxt ""
@@ -16358,7 +16358,7 @@ msgctxt ""
"par_idN1091F\n"
"help.text"
msgid "In addition, developers can use high-level languages, for example Java programming language, to control %PRODUCTNAME externally. The API reference is online at <link href=\"https://api.libreoffice.org/\" name=\"api.libreoffice.org\">api.libreoffice.org</link>."
-msgstr ""
+msgstr "Derudover kan udviklere bruge højniveau-sprog, for eksempel programmeringssproget Java, til at kontrollere %PRODUCTNAME eksternt. API-referencen findes online på <link href=\"https://api.libreoffice.org/\" name=\"api.libreoffice.org\">api.libreoffice.org</link>."
#: scripting.xhp
msgctxt ""
@@ -17246,7 +17246,7 @@ msgctxt ""
"par_id3153360\n"
"help.text"
msgid "Replace <emph>{install}</emph> with the path to your installation of $[officename] software (for example, <emph>C:\\Program Files\\Office</emph> in Windows, or <emph>~/office</emph> in UNIX)"
-msgstr ""
+msgstr "Erstat <emph>{installer}</emph> med stien til din installation af $[officename]-softwaren (for eksempel <emph>c:\\Programmer\\Office</emph> under Windows, eller <emph>~/Office</emph> under UNIX)"
#: start_parameters.xhp
msgctxt ""
@@ -17502,7 +17502,7 @@ msgctxt ""
"par_id3148914\n"
"help.text"
msgid "Neither the start-up logo nor the initial program window will be visible. $[officename] software can be controlled, and documents and dialogs can be controlled and opened via the <link href=\"https://api.libreoffice.org\" name=\"API\">API</link>."
-msgstr ""
+msgstr "Hverken startlogoet eller det oprindelige programvindue vil være synligt. $[officename]-softwaren kan kontrolleres, desuden kan dokumenter og dialoger kontrolleres og åbnes via <link href=\"https://api.libreoffice.org\" name=\"API\">API</link>."
#: start_parameters.xhp
msgctxt ""
@@ -17542,7 +17542,7 @@ msgctxt ""
"par_id3156353\n"
"help.text"
msgid "This special mode can be used when the application is controlled by external clients via the <link href=\"https://api.libreoffice.org\" name=\"API\">API</link>."
-msgstr ""
+msgstr "Denne specielle tilstand kan bruges, når programmet er kontrolleret af eksterne klienter via <link href=\"https://api.libreoffice.org\" name=\"API\">API</link>."
#: start_parameters.xhp
msgctxt ""
@@ -17894,7 +17894,7 @@ msgctxt ""
"bm_id0820200802500562\n"
"help.text"
msgid "<bookmark_value>backing window</bookmark_value> <bookmark_value>start center</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>baggrundsvindue</bookmark_value> <bookmark_value>Startside</bookmark_value>"
#: startcenter.xhp
msgctxt ""
@@ -17918,7 +17918,7 @@ msgctxt ""
"par_id0820200802524413\n"
"help.text"
msgid "You see the Start Center when no document is open in %PRODUCTNAME. It is divided into two panes. <ahelp hid=\".\">Click a button on the left pane to open a new document or a file dialog.</ahelp>"
-msgstr ""
+msgstr "Du vil se startsiden, når der ikke er et dokument åbent i %PRODUCTNAME. Den er opdelt i to rammer. <ahelp hid=\".\">Klik på en knap i venstre ramme for at åbne et nyt dokument eller for at åbne en fildialogboks.</ahelp>"
#: startcenter.xhp
msgctxt ""
@@ -17950,7 +17950,7 @@ msgctxt ""
"par_id0820200802525413\n"
"help.text"
msgid "<ahelp hid=\".\">The <emph>Recent Files</emph> button shows thumbnails of the most recent documents you opened.</ahelp> Hover your mouse over the thumbnail to highlight the document, display a tip about the document location and display an icon on the top right to delete the thumbnail from the pane and from the recent files list. Click on the thumbnail to open the document underneath."
-msgstr ""
+msgstr "<ahelp hid=\".\">Knappen <emph>Seneste dokumenter</emph> viser miniaturer af de seneste dokumenter du har åbnet.</ahelp> Kør musen hen over miniaturen for at fremhæve dokumentet, se et tip om dokumentets placering og vise et ikon øverst til højre for at slette miniaturen fra rammen og fra listen over seneste filer. Klik på miniaturen for at åbne det underliggende dokument."
#: startcenter.xhp
msgctxt ""
@@ -18718,7 +18718,7 @@ msgctxt ""
"par_id041620170723518567\n"
"help.text"
msgid "Press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+N or choose <emph>File - New - Templates</emph> to open the Template Manager"
-msgstr "Tryk på <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Skift+N eller vælg <emph>Filer - Ny(t) - Skabelon</emph> for at åbne dialogen Skabelon."
+msgstr "Tryk på <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Skift+N eller vælg <emph>Filer - Ny(t) - Skabelon</emph> for at åbne dialogen Skabeloner"
#: template_manager.xhp
msgctxt ""
@@ -18774,7 +18774,7 @@ msgctxt ""
"par_id041620170723518639\n"
"help.text"
msgid "Press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+N or choose <emph>File - New - Templates</emph> to open the Template Manager"
-msgstr ""
+msgstr "Tryk på <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Skift+N eller vælg <emph>Filer - Ny(t) - Skabelon</emph> for at åbne dialogen Skabeloner."
#: template_manager.xhp
msgctxt ""
@@ -19254,7 +19254,7 @@ msgctxt ""
"par_id3147008\n"
"help.text"
msgid "<link href=\"http://www.libreoffice.org/about-us/credits/\">See lists of code and Wiki contributors</link> on the LibreOffice website."
-msgstr "<link href=\"http://www.libreoffice.org/about-us/credits/\">Se en liste af kode og Wiki-bidragsydere</link> på LibreOffice-webstedet."
+msgstr "<link href=\"http://www.libreoffice.org/about-us/credits/\">Se en liste over kode- og Wiki-bidragsydere</link> på LibreOffice-webstedet."
#: viewing_file_properties.xhp
msgctxt ""
diff --git a/source/da/helpcontent2/source/text/shared/help.po b/source/da/helpcontent2/source/text/shared/help.po
index 33fd0a5387e..2b7c6fd33d6 100644
--- a/source/da/helpcontent2/source/text/shared/help.po
+++ b/source/da/helpcontent2/source/text/shared/help.po
@@ -4,14 +4,17 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2018-05-16 16:54+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"PO-Revision-Date: 2018-05-26 20:51+0000\n"
+"Last-Translator: SteenRønnow <steen.roennow@mail.dk>\n"
"Language-Team: LANGUAGE <LL@li.org>\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"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1527367899.000000\n"
#: browserhelp.xhp
msgctxt ""
@@ -19,7 +22,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Help Page Strings"
-msgstr ""
+msgstr "Hjælpeside-strenge"
#: browserhelp.xhp
msgctxt ""
@@ -27,7 +30,7 @@ msgctxt ""
"par_id491525733955136\n"
"help.text"
msgid "<variable id=\"module\">Module</variable>"
-msgstr ""
+msgstr "<variable id=\"module\">Modul</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -35,7 +38,7 @@ msgctxt ""
"par_id531525734031068\n"
"help.text"
msgid "<variable id=\"language\">Language</variable>"
-msgstr ""
+msgstr "<variable id=\"language\">Sprog</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -43,7 +46,7 @@ msgctxt ""
"par_id991525734084608\n"
"help.text"
msgid "<variable id=\"contents\">Contents</variable>"
-msgstr ""
+msgstr "<variable id=\"contents\">Indhold</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -51,7 +54,7 @@ msgctxt ""
"par_id601525734140935\n"
"help.text"
msgid "<variable id=\"index\">Index</variable>"
-msgstr ""
+msgstr "<variable id=\"index\">Indholdsfortegnelse</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -59,7 +62,7 @@ msgctxt ""
"par_id191525734190260\n"
"help.text"
msgid "<variable id=\"donate\">If this page has been helpful, you can support us!</variable>"
-msgstr ""
+msgstr "<variable id=\"donate\">Hvis denne side hjalp dig, kan du støtte os!</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -67,7 +70,7 @@ msgctxt ""
"par_id881525734289794\n"
"help.text"
msgid "<variable id=\"LibreOfficeHelp\">%PRODUCTNAME %PRODUCTVERSION Help</variable>"
-msgstr ""
+msgstr "<variable id=\"LibreOfficeHelp\">%PRODUCTNAME %PRODUCTVERSION Hjælp</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -75,7 +78,7 @@ msgctxt ""
"par_id421525736799965\n"
"help.text"
msgid "<variable id=\"copyclip\">Click on text to copy to clipboard</variable>"
-msgstr ""
+msgstr "<variable id=\"copyclip\">Klik på teksten, du vil kopiere til Udklipsholderen</variable>."
#: browserhelp.xhp
msgctxt ""
@@ -83,7 +86,7 @@ msgctxt ""
"par_id31525734624833\n"
"help.text"
msgid "<variable id=\"selectmodule\">Select Module</variable>"
-msgstr ""
+msgstr "<variable id=\"selectmodule\">Vælg modul</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -91,7 +94,7 @@ msgctxt ""
"par_id1001525734619670\n"
"help.text"
msgid "<variable id=\"selectlanguage\">Select Language</variable>"
-msgstr ""
+msgstr "<variable id=\"selectlanguage\">Vælg Sprog</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -99,7 +102,7 @@ msgctxt ""
"par_id91525734616233\n"
"help.text"
msgid "<variable id=\"searchhelpcontents\">Search help contents</variable>"
-msgstr ""
+msgstr "<variable id=\"searchhelpcontents\">Søg i hjælps indholdsfortegnelse</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -107,7 +110,7 @@ msgctxt ""
"par_id811525747677263\n"
"help.text"
msgid "<variable id=\"en-US\">English (USA)</variable>"
-msgstr ""
+msgstr "<variable id=\"en-US\">Engelsk (USA)</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -115,7 +118,7 @@ msgctxt ""
"par_id521525747699241\n"
"help.text"
msgid "<variable id=\"am\">Amharic</variable>"
-msgstr ""
+msgstr "<variable id=\"am\">Amharisk</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -123,7 +126,7 @@ msgctxt ""
"par_id841525747709330\n"
"help.text"
msgid "<variable id=\"ar\">Arabic</variable>"
-msgstr ""
+msgstr "<variable id=\"ar\">Arabisk</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -131,7 +134,7 @@ msgctxt ""
"par_id371525747715258\n"
"help.text"
msgid "<variable id=\"ast\">Asturian</variable>"
-msgstr ""
+msgstr "<variable id=\"ast\">Asturisk</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -139,7 +142,7 @@ msgctxt ""
"par_id91525747756759\n"
"help.text"
msgid "<variable id=\"bg\">Bulgarian</variable>"
-msgstr ""
+msgstr "<variable id=\"bg\">Bulgarsk</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -147,7 +150,7 @@ msgctxt ""
"par_id391525747761934\n"
"help.text"
msgid "<variable id=\"bn\">Bengali</variable>"
-msgstr ""
+msgstr "<variable id=\"bn\">Bengali</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -155,7 +158,7 @@ msgctxt ""
"par_id701525747766711\n"
"help.text"
msgid "<variable id=\"bn-IN\">Bengali (India)</variable>"
-msgstr ""
+msgstr "<variable id=\"bn-IN\">Bengali (Indien)</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -163,7 +166,7 @@ msgctxt ""
"par_id941525747772436\n"
"help.text"
msgid "<variable id=\"bo\">Tibetan</variable>"
-msgstr ""
+msgstr "<variable id=\"bo\">Tibetansk</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -171,7 +174,7 @@ msgctxt ""
"par_id241525747783594\n"
"help.text"
msgid "<variable id=\"bs\">Bosnian</variable>"
-msgstr ""
+msgstr "<variable id=\"bs\">Bosnisk</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -179,7 +182,7 @@ msgctxt ""
"par_id191525747798511\n"
"help.text"
msgid "<variable id=\"ca\">Catalan</variable>"
-msgstr ""
+msgstr "<variable id=\"ca\">Catalansk</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -187,7 +190,7 @@ msgctxt ""
"par_id331525747842279\n"
"help.text"
msgid "<variable id=\"ca-valencia\">Valencian Catalan</variable>"
-msgstr ""
+msgstr "<variable id=\"ca-valencia\">Valenciansk catalansk</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -195,7 +198,7 @@ msgctxt ""
"par_id541525747847143\n"
"help.text"
msgid "<variable id=\"cs\">Czech</variable>"
-msgstr ""
+msgstr "<variable id=\"cs\">Tjekkisk</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -203,7 +206,7 @@ msgctxt ""
"par_id141525747867126\n"
"help.text"
msgid "<variable id=\"da\">Danish</variable>"
-msgstr ""
+msgstr "<variable id=\"da\">Dansk</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -211,7 +214,7 @@ msgctxt ""
"par_id131525747872352\n"
"help.text"
msgid "<variable id=\"de\">German</variable>"
-msgstr ""
+msgstr "<variable id=\"de\">Tysk</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -219,7 +222,7 @@ msgctxt ""
"par_id831525747962487\n"
"help.text"
msgid "<variable id=\"dz\">Dzongkha</variable>"
-msgstr ""
+msgstr "<variable id=\"dz\">Dzongkha</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -227,7 +230,7 @@ msgctxt ""
"par_id631525747969597\n"
"help.text"
msgid "<variable id=\"el\">Greek</variable>"
-msgstr ""
+msgstr "<variable id=\"el\">Græsk</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -235,7 +238,7 @@ msgctxt ""
"par_id371525747976937\n"
"help.text"
msgid "<variable id=\"en-GB\">English (UK)</variable>"
-msgstr ""
+msgstr "<variable id=\"en-GB\">Engelsk (UK)</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -243,7 +246,7 @@ msgctxt ""
"par_id701525747984877\n"
"help.text"
msgid "<variable id=\"en-ZA\">English (SA)</variable>"
-msgstr ""
+msgstr "<variable id=\"en-ZA\">Engelsk (SA)</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -251,7 +254,7 @@ msgctxt ""
"par_id61525747994007\n"
"help.text"
msgid "<variable id=\"eo\">Esperanto</variable>"
-msgstr ""
+msgstr "<variable id=\"eo\">Esperanto</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -259,7 +262,7 @@ msgctxt ""
"par_id811525748006070\n"
"help.text"
msgid "<variable id=\"es\">Spanish</variable>"
-msgstr ""
+msgstr "<variable id=\"es\">Spansk</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -267,7 +270,7 @@ msgctxt ""
"par_id561525748012579\n"
"help.text"
msgid "<variable id=\"et\">Estonian</variable>"
-msgstr ""
+msgstr "<variable id=\"et\">estisk</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -275,7 +278,7 @@ msgctxt ""
"par_id111525748019144\n"
"help.text"
msgid "<variable id=\"eu\">Basque</variable>"
-msgstr ""
+msgstr "<variable id=\"eu\">Baskisk</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -283,7 +286,7 @@ msgctxt ""
"par_id621525748022811\n"
"help.text"
msgid "<variable id=\"fi\">Finnish</variable>"
-msgstr ""
+msgstr "<variable id=\"fi\">Finsk</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -291,7 +294,7 @@ msgctxt ""
"par_id861525748027499\n"
"help.text"
msgid "<variable id=\"fr\">French</variable>"
-msgstr ""
+msgstr "<variable id=\"fr\">Fransk</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -299,7 +302,7 @@ msgctxt ""
"par_id661525748030419\n"
"help.text"
msgid "<variable id=\"gl\">Galician</variable>"
-msgstr ""
+msgstr "<variable id=\"gl\">Galicisk</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -307,7 +310,7 @@ msgctxt ""
"par_id301525748033370\n"
"help.text"
msgid "<variable id=\"gu\">Gujarati</variable>"
-msgstr ""
+msgstr "<variable id=\"gu\">Gujarati</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -315,7 +318,7 @@ msgctxt ""
"par_id141525748036295\n"
"help.text"
msgid "<variable id=\"he\">Hebrew</variable>"
-msgstr ""
+msgstr "<variable id=\"he\">Hebræisk</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -323,7 +326,7 @@ msgctxt ""
"par_id531525748040396\n"
"help.text"
msgid "<variable id=\"hi\">Hindi</variable>"
-msgstr ""
+msgstr "<variable id=\"hi\">Hindi</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -331,7 +334,7 @@ msgctxt ""
"par_id901525748044409\n"
"help.text"
msgid "<variable id=\"hr\">Croatian</variable>"
-msgstr ""
+msgstr "<variable id=\"hr\">Kroatisk</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -339,7 +342,7 @@ msgctxt ""
"par_id331525748049389\n"
"help.text"
msgid "<variable id=\"hu\">Hungarian</variable>"
-msgstr ""
+msgstr "<variable id=\"hu\">Ungarsk</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -347,7 +350,7 @@ msgctxt ""
"par_id21525748084845\n"
"help.text"
msgid "<variable id=\"is\">Icelandic</variable>"
-msgstr ""
+msgstr "<variable id=\"is\">Islandsk</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -355,7 +358,7 @@ msgctxt ""
"par_id761525748087547\n"
"help.text"
msgid "<variable id=\"it\">Italian</variable>"
-msgstr ""
+msgstr "<variable id=\"it\">Italiensk</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -363,7 +366,7 @@ msgctxt ""
"par_id691525748090324\n"
"help.text"
msgid "<variable id=\"ja\">Japanese</variable>"
-msgstr ""
+msgstr "<variable id=\"ja\">Japansk</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -371,7 +374,7 @@ msgctxt ""
"par_id181525748093242\n"
"help.text"
msgid "<variable id=\"ka\">Georgian</variable>"
-msgstr ""
+msgstr "<variable id=\"ka\">Georgisk</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -379,7 +382,7 @@ msgctxt ""
"par_id531525748097320\n"
"help.text"
msgid "<variable id=\"km\">Khmer</variable>"
-msgstr ""
+msgstr "<variable id=\"km\">Khmer</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -387,7 +390,7 @@ msgctxt ""
"par_id641525748100233\n"
"help.text"
msgid "<variable id=\"ko\">Korean</variable>"
-msgstr ""
+msgstr "<variable id=\"ko\">Koreansk</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -395,7 +398,7 @@ msgctxt ""
"par_id521525748103387\n"
"help.text"
msgid "<variable id=\"lo\">Lao</variable>"
-msgstr ""
+msgstr "<variable id=\"lo\">Laotisk</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -403,7 +406,7 @@ msgctxt ""
"par_id51525748108130\n"
"help.text"
msgid "<variable id=\"lt\">Lithuanian</variable>"
-msgstr ""
+msgstr "<variable id=\"lt\">Litauisk</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -411,7 +414,7 @@ msgctxt ""
"par_id111525748111334\n"
"help.text"
msgid "<variable id=\"lv\">Latvian</variable>"
-msgstr ""
+msgstr "<variable id=\"lv\">Lettisk</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -419,7 +422,7 @@ msgctxt ""
"par_id131525748114674\n"
"help.text"
msgid "<variable id=\"mk\">Macedonian</variable>"
-msgstr ""
+msgstr "<variable id=\"mk\">Makedonsk</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -427,7 +430,7 @@ msgctxt ""
"par_id441525748118091\n"
"help.text"
msgid "<variable id=\"nb\">Norwegian Bokmål</variable>"
-msgstr ""
+msgstr "-<variable id=\"nb\">Norsk bokmål</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -435,7 +438,7 @@ msgctxt ""
"par_id221525748121057\n"
"help.text"
msgid "<variable id=\"ne\">Nepali</variable>"
-msgstr ""
+msgstr "<variable id=\"ne\">Nepalesisk</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -443,7 +446,7 @@ msgctxt ""
"par_id441525748123904\n"
"help.text"
msgid "<variable id=\"nl\">Dutch</variable>"
-msgstr ""
+msgstr "<variable id=\"nl\">Hollandsk</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -451,7 +454,7 @@ msgctxt ""
"par_id371525748126784\n"
"help.text"
msgid "<variable id=\"nn\">Norwegian Nynorsk</variable>"
-msgstr ""
+msgstr "<variable id=\"nn\">Norsk nynorsk</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -459,7 +462,7 @@ msgctxt ""
"par_id401525748129935\n"
"help.text"
msgid "<variable id=\"om\">Oromo</variable>"
-msgstr ""
+msgstr "<variable id=\"om\">Oromo</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -467,7 +470,7 @@ msgctxt ""
"par_id91525748133349\n"
"help.text"
msgid "<variable id=\"pl\">Polish</variable>"
-msgstr ""
+msgstr "<variable id=\"pl\">Polsk</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -475,7 +478,7 @@ msgctxt ""
"par_id631525748136712\n"
"help.text"
msgid "<variable id=\"pt\">Portuguese</variable>"
-msgstr ""
+msgstr "<variable id=\"pt\">Portugisisk</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -483,7 +486,7 @@ msgctxt ""
"par_id351525748140239\n"
"help.text"
msgid "<variable id=\"pt-BR\">Brazilian Portuguese</variable>"
-msgstr ""
+msgstr "<variable id=\"pt-BR\">Brasiliansk portugisisk</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -491,7 +494,7 @@ msgctxt ""
"par_id421525748143274\n"
"help.text"
msgid "<variable id=\"ro\">Romanian</variable>"
-msgstr ""
+msgstr "<variable id=\"ro\">Rumænsk</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -499,7 +502,7 @@ msgctxt ""
"par_id291525748146064\n"
"help.text"
msgid "<variable id=\"ru\">Russian</variable>"
-msgstr ""
+msgstr "<variable id=\"ru\">Russisk</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -507,7 +510,7 @@ msgctxt ""
"par_id91525748149042\n"
"help.text"
msgid "<variable id=\"si\">Sinhala</variable>"
-msgstr ""
+msgstr "<variable id=\"si\">Singalesisk</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -515,7 +518,7 @@ msgctxt ""
"par_id191525748182094\n"
"help.text"
msgid "<variable id=\"sid\">Sidama</variable>"
-msgstr ""
+msgstr "<variable id=\"sid\">Sidama</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -523,7 +526,7 @@ msgctxt ""
"par_id461525748185823\n"
"help.text"
msgid "<variable id=\"sk\">Slovak</variable>"
-msgstr ""
+msgstr "<variable id=\"sk\">Slovakisk</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -531,7 +534,7 @@ msgctxt ""
"par_id41525748190004\n"
"help.text"
msgid "<variable id=\"sl\">Slovenian</variable>"
-msgstr ""
+msgstr "<variable id=\"sl\">Slovensk</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -539,7 +542,7 @@ msgctxt ""
"par_id281525748193030\n"
"help.text"
msgid "<variable id=\"sq\">Albanian</variable>"
-msgstr ""
+msgstr "<variable id=\"sq\">Albansk</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -547,7 +550,7 @@ msgctxt ""
"par_id481525748203088\n"
"help.text"
msgid "<variable id=\"sv\">Swedish</variable>"
-msgstr ""
+msgstr "<variable id=\"sv\">Svensk</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -555,7 +558,7 @@ msgctxt ""
"par_id191525748206804\n"
"help.text"
msgid "<variable id=\"ta\">Tamil</variable>"
-msgstr ""
+msgstr "<variable id=\"ta\">Tamilsk</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -563,7 +566,7 @@ msgctxt ""
"par_id391525748210165\n"
"help.text"
msgid "<variable id=\"tg\">Tajik</variable>"
-msgstr ""
+msgstr "<variable id=\"tg\">tadsjikisk</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -571,7 +574,7 @@ msgctxt ""
"par_id561525748213759\n"
"help.text"
msgid "<variable id=\"tr\">Turkish</variable>"
-msgstr ""
+msgstr "<variable id=\"tr\">Tyrkisk</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -579,7 +582,7 @@ msgctxt ""
"par_id621525748217482\n"
"help.text"
msgid "<variable id=\"ug\">Uyghur</variable>"
-msgstr ""
+msgstr "<variable id=\"ug\">Uyghur</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -587,7 +590,7 @@ msgctxt ""
"par_id861525748221057\n"
"help.text"
msgid "<variable id=\"uk\">Ukrainian</variable>"
-msgstr ""
+msgstr "<variable id=\"uk\">Ukrainsk</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -595,7 +598,7 @@ msgctxt ""
"par_id611525748224412\n"
"help.text"
msgid "<variable id=\"vi\">Vietnamese</variable>"
-msgstr ""
+msgstr "<variable id=\"vi\">Vietnamesisk</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -603,7 +606,7 @@ msgctxt ""
"par_id981525748227614\n"
"help.text"
msgid "<variable id=\"zh-CN\">Chinese (Simplified)</variable>"
-msgstr ""
+msgstr "<variable id=\"zh-CN\">Kinesisk (simplificeret)</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -611,4 +614,4 @@ msgctxt ""
"par_id61525748230858\n"
"help.text"
msgid "<variable id=\"zh-TW\">Chinese (Traditional)</variable>"
-msgstr ""
+msgstr "<variable id=\"zh-TW\">Kinesisk (traditionelt)</variable>"
diff --git a/source/da/helpcontent2/source/text/shared/optionen.po b/source/da/helpcontent2/source/text/shared/optionen.po
index e4e298c4aeb..fda0ada5d1d 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: 2018-05-08 15:10+0200\n"
-"PO-Revision-Date: 2018-05-22 09:49+0000\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
+"PO-Revision-Date: 2018-05-27 13:20+0000\n"
"Last-Translator: SteenRønnow <steen.roennow@mail.dk>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: da\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1526982586.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1527427233.000000\n"
#: 01000000.xhp
msgctxt ""
@@ -83,6 +83,22 @@ msgstr "Note til Mac OS X-brugere: Hjælpen nævner menustien Funktioner - Indst
#: 01000000.xhp
msgctxt ""
"01000000.xhp\n"
+"hd_id551527692881035\n"
+"help.text"
+msgid "Help"
+msgstr ""
+
+#: 01000000.xhp
+msgctxt ""
+"01000000.xhp\n"
+"par_id831527692885723\n"
+"help.text"
+msgid "Opens the help contents for the Options page displayed."
+msgstr ""
+
+#: 01000000.xhp
+msgctxt ""
+"01000000.xhp\n"
"hd_id3159149\n"
"help.text"
msgid "<link href=\"text/shared/optionen/01010000.xhp\" name=\"$[officename]\">%PRODUCTNAME</link>"
@@ -230,7 +246,7 @@ msgctxt ""
"par_id3156410\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/optuserpage/OptUserPage\">Use this tab page to enter or edit user data.</ahelp> Some of the data may have already been entered by the user or system administrator when installing $[officename]."
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/optuserpage/OptUserPage\">Brug dette faneblad til at indtaste eller redigere brugerdata.</ahelp> Nogle af dataene kan allerede være indtastet af brugeren under installationen af $[officename]."
#: 01010100.xhp
msgctxt ""
@@ -278,7 +294,7 @@ msgctxt ""
"par_id3143270\n"
"help.text"
msgid "<ahelp hid=\".\">Type the name of your company in this field.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Skriv navnet på dit firma i dette felt.</ahelp>"
#: 01010100.xhp
msgctxt ""
@@ -294,7 +310,7 @@ msgctxt ""
"par_id3153821\n"
"help.text"
msgid "<ahelp hid=\".\">Type your first name.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Skriv dit fornavn.</ahelp>"
#: 01010100.xhp
msgctxt ""
@@ -310,7 +326,7 @@ msgctxt ""
"par_id3145609\n"
"help.text"
msgid "<ahelp hid=\".\">Type your last name.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Skriv dit efternavn.</ahelp>"
#: 01010100.xhp
msgctxt ""
@@ -326,7 +342,7 @@ msgctxt ""
"par_id3147264\n"
"help.text"
msgid "<ahelp hid=\".\">Type your initials.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Skriv dine initialer.</ahelp>"
#: 01010100.xhp
msgctxt ""
@@ -342,7 +358,7 @@ msgctxt ""
"par_id3151212\n"
"help.text"
msgid "<ahelp hid=\".\">Type the name of your street in this field.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Skriv dit gadenavn i dette felt.</ahelp>"
#: 01010100.xhp
msgctxt ""
@@ -358,7 +374,7 @@ msgctxt ""
"par_id3145607\n"
"help.text"
msgid "<ahelp hid=\".\">Type your ZIP in this field.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Skriv dit postnummer i dette felt.</ahelp>"
#: 01010100.xhp
msgctxt ""
@@ -374,7 +390,7 @@ msgctxt ""
"par_id3149807\n"
"help.text"
msgid "<ahelp hid=\".\">Type the city where you live.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Skriv navnet på byen, du bor i.</ahelp>"
#: 01010100.xhp
msgctxt ""
@@ -390,7 +406,7 @@ msgctxt ""
"par_id3150441\n"
"help.text"
msgid "<ahelp hid=\".\">Type your state.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Skriv navnet på dit land.</ahelp>"
#: 01010100.xhp
msgctxt ""
@@ -406,7 +422,7 @@ msgctxt ""
"par_id3147317\n"
"help.text"
msgid "<ahelp hid=\".\">Type your title in this field.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Skriv din titel i dette felt.</ahelp>"
#: 01010100.xhp
msgctxt ""
@@ -422,7 +438,7 @@ msgctxt ""
"par_id3147428\n"
"help.text"
msgid "<ahelp hid=\".\">Type your position in the company in this field.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Skriv din stilling i firmaet i dette felt.</ahelp>"
#: 01010100.xhp
msgctxt ""
@@ -438,7 +454,7 @@ msgctxt ""
"par_id3154011\n"
"help.text"
msgid "<ahelp hid=\".\">Type your private telephone number in this field.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Skriv dit private telefonnummer i dette felt.</ahelp>"
#: 01010100.xhp
msgctxt ""
@@ -454,7 +470,7 @@ msgctxt ""
"par_id3159153\n"
"help.text"
msgid "<ahelp hid=\".\">Type your work number in this field.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Skriv dit telefonnummer på arbejdet i dette felt.</ahelp>"
#: 01010100.xhp
msgctxt ""
@@ -470,7 +486,7 @@ msgctxt ""
"par_id3153159\n"
"help.text"
msgid "<ahelp hid=\".\">Type your fax number in this field.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Skriv dit faxnummer i dette felt.</ahelp>"
#: 01010100.xhp
msgctxt ""
@@ -486,7 +502,7 @@ msgctxt ""
"par_id3154942\n"
"help.text"
msgid "<ahelp hid=\".\">Type your e-mail address.</ahelp> For example, my.name@my.provider.com"
-msgstr ""
+msgstr "<ahelp hid=\".\">Skriv din e-mail-adresse.</ahelp> For eksempel mit.navn@min.udbyder.dk"
#: 01010200.xhp
msgctxt ""
@@ -870,7 +886,7 @@ msgctxt ""
"par_id6944181\n"
"help.text"
msgid "OpenOffice.org 3 and StarOffice 9 introduce new features which have to be saved using the <link href=\"https://en.wikipedia.org/wiki/OpenDocument\" name=\"English Wikipedia: OpenDocument\">OpenDocument</link> format (ODF) version 1.2. The prior versions of OpenOffice.org 2 and StarOffice 8 support the file formats ODF 1.0/1.1. Those prior file formats cannot store all new features of the new software."
-msgstr ""
+msgstr "OpenOffice.org 3 og StarOffice 9 introducerer nye funktioner som skal gemmes ved at bruge <link href=\"https://en.wikipedia.org/wiki/OpenDocument\" name=\"English Wikipedia: OpenDocument\">OpenDocument</link>-formatet (ODF) version 1.2. De tidligere versioner af OpenOffice.org 2 and StarOffice 8 understøtter filformaterne ODF 1.0/1.1. Disse tidligere filformater kan ikke gemme alle de nye funktioner fra den nye software."
#: 01010200.xhp
msgctxt ""
@@ -1414,7 +1430,7 @@ msgctxt ""
"par_id3153663\n"
"help.text"
msgid "A language module can contain one, two or three submodules: Spellcheck, hyphenation and thesaurus. Each sub-module can be available in one or more languages. If you click in front of the name of the module, you activate all the available sub-modules simultaneously. If you remove a set mark, you deactivate all the available sub-modules simultaneously. If you wish to activate or deactivate individual sub-modules, click the <emph>Edit</emph> button to open the <link href=\"text/shared/optionen/01010401.xhp\" name=\"Edit Modules\"><emph>Edit Modules</emph></link> dialog."
-msgstr ""
+msgstr "Et sprogmodul kan indeholde en, to eller tre undermoduler: Stavekontrol, orddeling og synonymordbog. Hvert undermodul kan være tilgængelig i et eller flere sprog. Hvis du klikker foran navnet på modulet, aktiverer du alle de tilgængelige undermoduler samtidigt. Hvis du fjerner en markering, deaktiverer du alle de tilgængelige undermoduler samtidigt. Hvis du ønsker at aktivere eller deaktivere individuelle undermoduler, klikker du på knappen <emph>Rediger</emph> for at åbne dialogen <link href=\"text/shared/optionen/01010401.xhp\" name=\"Edit Modules\"><emph>Rediger moduler</emph></link>."
#: 01010400.xhp
msgctxt ""
@@ -1422,7 +1438,7 @@ msgctxt ""
"par_id3294778\n"
"help.text"
msgid "The configuration allows two different directories: one folder where the user has write permissions, and one without write permissions. The user can only edit and delete the user dictionaries that are located in the writable path. Other dictionaries can be read only."
-msgstr ""
+msgstr "Den indstilling tillader to forskellige biblioteker: et bibliotek, hvor brugeren har skrivetilladelse, og et uden skrivetilladelse. Brugeren kan kun redigere og slette de ordbøger, som findes i det skrivbare bibliotek. Øvrige ordbøger kan kun læses."
#: 01010400.xhp
msgctxt ""
@@ -1454,7 +1470,7 @@ msgctxt ""
"par_id3155419\n"
"help.text"
msgid "<ahelp hid=\".\">Lists the available user dictionaries.</ahelp> Mark the user dictionaries that you want to use for spellcheck and hyphenation."
-msgstr ""
+msgstr "<ahelp hid=\".\">Viser de tilgængelige brugerordbøger.</ahelp> Marker de brugerordbøger, du vil bruge til stavekontrol og orddeling."
#: 01010400.xhp
msgctxt ""
@@ -1486,7 +1502,7 @@ msgctxt ""
"par_id3153360\n"
"help.text"
msgid "<ahelp hid=\".\">In the <emph>Dictionary</emph> section you can name a new user-defined dictionary or dictionary of exceptions and specify the language.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">I sektionen <emph>Ordbog</emph> kan du navngive en ny brugerdefineret ordbog eller ordbog over undtagelser og angive sproget.</ahelp>"
#: 01010400.xhp
msgctxt ""
@@ -1558,7 +1574,7 @@ msgctxt ""
"par_id3147436\n"
"help.text"
msgid "<ahelp hid=\".\">In the <emph>Edit Custom Dictionary</emph> dialog you have the option to enter new terms or edit existing entries.</ahelp> If you edit an exception dictionary, the dialog has the added facility of defining an exception for a word. During the spellcheck this exception is then listed as a suggestion."
-msgstr ""
+msgstr "<ahelp hid=\".\">I sektionen <emph>Rediger brugerordbog</emph> har du mulighed for at indtaste nye udtryk eller redigere eksisterende indtastninger.</ahelp> Hvis du redigerer en ordbog over undtagelser, har dialogen den tilføjede facilitet til angivelse af en undtagelse til et ord. Under stavekontrollen er denne undtagelse så listet som et forslag."
#: 01010400.xhp
msgctxt ""
@@ -1590,7 +1606,7 @@ msgctxt ""
"par_id3154730\n"
"help.text"
msgid "<variable id=\"ignore\">The <emph>IgnoreAllList (All)</emph> includes all words that have been marked with <emph>Ignore</emph> during spellcheck. This list is valid only for the current spellcheck.</variable>"
-msgstr ""
+msgstr "<variable id=\"ignore\"><emph>IgnoreAllList (Alle) </emph> indeholder alle ord, som er blevet markeret med <emph>Ignorer</emph> under stavekontrollen. Denne liste gælder kun den aktuelle stavekontrol.</variable>"
#: 01010400.xhp
msgctxt ""
@@ -1670,7 +1686,7 @@ msgctxt ""
"par_id3163808\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/editdictionarydialog/newreplace\">Adds the word in the <emph>Word</emph> text field to your current custom dictionary. The word in the <emph>Suggestion</emph> field is also added when working with exception dictionaries.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/editdictionarydialog/newreplace\">Tilføjer ordet i tekstfeltet <emph>Ord</emph> til din aktuelle ordbog. Ordet i feltet <emph>Forslag</emph> tilføjes også når du arbejder med undtagelsesordbøger.</ahelp>"
#: 01010400.xhp
msgctxt ""
@@ -1814,7 +1830,7 @@ msgctxt ""
"par_id3150316\n"
"help.text"
msgid "<ahelp hid=\".\">Specifies the minimum number of characters required for automatic hyphenation to be applied.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Angiver det nødvendige mindstetal af karakterer, der er nødvendigt for at der kan bruges automatisk orddeling.</ahelp>"
#: 01010400.xhp
msgctxt ""
@@ -1830,7 +1846,7 @@ msgctxt ""
"par_id3156029\n"
"help.text"
msgid "<ahelp hid=\".\">Sets the minimum number of characters of the word to be hyphenated that must remain at the end of the line.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Angiver mindstetallet af tegn i ordet, der skal deles, der skal blive i slutningen af linjen.</ahelp>"
#: 01010400.xhp
msgctxt ""
@@ -1846,7 +1862,7 @@ msgctxt ""
"par_id3149439\n"
"help.text"
msgid "<ahelp hid=\".\">Specifies the minimum number of characters of a hyphenated word required at the next line.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Angiver mindstetallet af tegn fra det orddelte ord, som kræves i næste linje.</ahelp>"
#: 01010400.xhp
msgctxt ""
@@ -2278,7 +2294,7 @@ msgctxt ""
"par_id3150771\n"
"help.text"
msgid "<variable id=\"farbentext\"><ahelp hid=\".\">%PRODUCTNAME lets you define custom colors using a two-dimensional graphic and numerical gradient chart of the <emph>Pick a Color</emph> dialog.</ahelp></variable>"
-msgstr ""
+msgstr "<variable id=\"farbentext\"><ahelp hid=\".\">%PRODUCTNAME lader dig bestemme brugerdefinerede farver med todimentionel grafik og numerisk gradient-diagram fra dialogboksen <emph>Vælg en farve.</emph></ahelp></variable>"
#: 01010501.xhp
msgctxt ""
@@ -2294,7 +2310,7 @@ msgctxt ""
"par_id61884\n"
"help.text"
msgid "<image id=\"img_id5337\" src=\"media/screenshots/cui/ui/colorpickerdialog/ColorPicker.png\" width=\"19cm\" height=\"16cm\"><caption id=\"alt_id34144\">The Pick a Color window</caption></image>"
-msgstr ""
+msgstr "<image id=\"img_id5337\" src=\"media/screenshots/cui/ui/colorpickerdialog/ColorPicker.png\" width=\"19cm\" height=\"16cm\"><caption id=\"alt_id34144\">Farvevælger-vindue</caption></image>"
#: 01010501.xhp
msgctxt ""
@@ -2326,7 +2342,7 @@ msgctxt ""
"par_id3148947\n"
"help.text"
msgid "<ahelp hid=\".\">With the vertical color component slider you can modify the value of each component of the color.</ahelp> With the large colored square you can select the color component approximately."
-msgstr ""
+msgstr "<ahelp hid=\".\">Med den lodrette farvekomponent-skydeknap kan du ændre værdien af hvert element i farven.</ahelp> Med det store farvede kvadrat kan du vælge en en tilnærmelsesvis værdi til farvekomponenten."
#: 01010501.xhp
msgctxt ""
@@ -4565,8 +4581,8 @@ msgctxt ""
"01030300.xhp\n"
"par_idN10640\n"
"help.text"
-msgid "Options"
-msgstr "Indstillinger"
+msgid "Security Options and Warnings"
+msgstr ""
#: 01030300.xhp
msgctxt ""
@@ -4597,8 +4613,8 @@ msgctxt ""
"01030300.xhp\n"
"hd_id3168736\n"
"help.text"
-msgid "Persistently save passwords protected by a master password"
-msgstr "Gem adgangskoder beskyttet med en hovedadgangskode"
+msgid "Persistently save passwords for web connections"
+msgstr ""
#: 01030300.xhp
msgctxt ""
@@ -4613,8 +4629,24 @@ msgctxt ""
"01030300.xhp\n"
"hd_id3901791\n"
"help.text"
+msgid "Protected by a master password (recommended)"
+msgstr ""
+
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"par_id31527711486980\n"
+"help.text"
+msgid "Check to enable all connections' passwords to be protected by a master password."
+msgstr ""
+
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"hd_id141527711343312\n"
+"help.text"
msgid "Master Password"
-msgstr "Hovedadgangskode"
+msgstr ""
#: 01030300.xhp
msgctxt ""
@@ -5998,7 +6030,7 @@ msgctxt ""
"par_id3149481\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/opttablepage/numformatting\">Specifies that numbers in a text table are recognized and formatted as numbers.</ahelp> Table cells in %PRODUCTNAME Writer can recognize a number when it is represented in one of the number formats available in categories of Numbers, Percent, Currency, Date, Time, Scientific, Fraction and Boolean."
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/opttablepage/numformatting\">Angiver, at tal in en teksttabel genkendes og formatteres som tal.</ahelp> Tabelceller i %PRODUCTNAME Writer kan genkende et tal, når det er i et af de talformater, der er til rådig i kategorierne: tal, procent, valuta, dato, tid, videnskabelig, brøk og Boolsk."
#: 01040500.xhp
msgctxt ""
@@ -6006,7 +6038,7 @@ msgctxt ""
"par_id871520543043646\n"
"help.text"
msgid "The recognized number is displayed with default number format for table cells, and sets the cell format to the recognized category. For example, if a number is recognized as Date, the cell format category is set to Date. You can set a specific number format for the cell, for example, a date entered as <item type=\"input\">8/3/2018</item> displays as Thursday March 8, 2018 when the cell number format is set to \"Friday, December 31, 1999\" in the Number Format dialog."
-msgstr ""
+msgstr "Det genkendte tal vises med tabelcellernes standardformat og sætter celleformatet til den genkendte kategori. Hvis et tal fx genkendes som en dato, indstilles celleformat til dato. Du kan indstille cellen til et bestemt talformat, fx bliver et en dato indtastet som<item type=\"input\">8/3/2018</item> vist som torsdag 8. marts 2018, når celleformatet er sat til \"fredag 31. december 1999 i dialogboksen Talformat."
#: 01040500.xhp
msgctxt ""
@@ -6014,7 +6046,7 @@ msgctxt ""
"par_id451520542990536\n"
"help.text"
msgid "Recognized Date and Time numbers are converted to internal date and time serial values. Percent numbers are converted internally to their numeric values. Boolean values are converted internally to 0 or 1."
-msgstr ""
+msgstr "Genkendte dato og tids-tal konverteres til interne dato- og tids-serieværdier. Procenttal konverteres internt til deres numeriske værdier. Boolske værdier konverteres internt til 0 eller 1."
#: 01040500.xhp
msgctxt ""
@@ -6022,7 +6054,7 @@ msgctxt ""
"par_id331520543028270\n"
"help.text"
msgid "When an input cannot be recognized as a number, the number category changes to <emph>Text</emph> and the input is not changed."
-msgstr ""
+msgstr "Når en indtastning ikke kan genkendes som et tal, ændres talkategoeien til <emph>tekst</emph> og indtastningen ændres ikke."
#: 01040500.xhp
msgctxt ""
@@ -6054,7 +6086,7 @@ msgctxt ""
"par_id391520546159065\n"
"help.text"
msgid "For example, if a cell contains a date value and has its cell format as date, a new input of a percent value in the cell set the cell format to <emph>Text</emph> and the percent input number is not recognized."
-msgstr ""
+msgstr "Hvis en celle fx indeholder en datoværdi og har dato som celleformat, vil en ny indtastning af en procentværdi i cellen sætte celleformatet til <emph>Tekst</emph> og procent-indtastning genkendes ikke."
#: 01040500.xhp
msgctxt ""
@@ -6062,7 +6094,7 @@ msgctxt ""
"par_id961520546165825\n"
"help.text"
msgid "When <emph>Number format recognition</emph> is marked, input numbers sets the cell format to the recognized number category."
-msgstr ""
+msgstr "Når <emph>Talformatgenkendelse</emph> er markeret, sætter indtastede tal celleformatet til den genkendte talkategori."
#: 01040500.xhp
msgctxt ""
@@ -7182,7 +7214,7 @@ msgctxt ""
"par_id3155602\n"
"help.text"
msgid "<ahelp hid=\".\">Specifies that printer metrics are applied for printing and also for formatting the display on the screen. If this box is not checked, a printer independent layout will be used for screen display and printing.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Bestemmer, at printermålene anvendes til udskrivning og også til at formatere skærmvisningen. Hvis dette felt ikke er markeret, bruges et layout, der ikke printerafhængigt, til skærmvisning og udskrivning.</ahelp>"
#: 01041000.xhp
msgctxt ""
@@ -7206,7 +7238,7 @@ msgctxt ""
"par_id3147339\n"
"help.text"
msgid "In $[officename] Writer, paragraph spacing is defined differently than in Microsoft Word documents. If you have defined spacing between two paragraphs or tables, spacing is also added in the corresponding Word documents."
-msgstr ""
+msgstr "I $[officename] Writer er afsnitsafstand defineret anderledes end i MS Word-dokumenter. Hvis du har defineret afstand mellem to afsnit eller tabeller, er afstanden også tilføjet i de tilsvarende MS Word-dokumenter."
#: 01041000.xhp
msgctxt ""
@@ -7214,7 +7246,7 @@ msgctxt ""
"par_id3151250\n"
"help.text"
msgid "Specifies whether to add Microsoft Word-compatible spacing between paragraphs and tables in $[officename] Writer text documents."
-msgstr ""
+msgstr "Angiver, om der skal tilføjes MS Word-kompatibelt mellemrum mellem afsnit og tabeller i $[officename] Writer-tekstdokumenter."
#: 01041000.xhp
msgctxt ""
@@ -7238,7 +7270,7 @@ msgctxt ""
"par_id3145789\n"
"help.text"
msgid "If you import a Word document, the spaces are automatically added during the conversion."
-msgstr ""
+msgstr "Hvis du importerer et MS Word-dokument, tilføjes mellemrummene automatisk under konverteringen."
#: 01041000.xhp
msgctxt ""
@@ -7382,7 +7414,7 @@ msgctxt ""
"par_id4016541\n"
"help.text"
msgid "Microsoft Word and Writer have different approaches on wrapping text around floating screen objects. Floating screen object are Writer frames and drawing objects, and the objects 'text box', 'graphic', 'frame', 'picture' etc. in Microsoft Word."
-msgstr ""
+msgstr "MS Word og Writer har forskellige tilgange til at ombryde tekst omkring flydende skærmobjekter. Flydende skærmobjekter er Writer-rammer og tegneobjekter, og objekterne 'tekstfelt', 'grafik', 'ramme', 'billede' med flere i MS Word."
#: 01041000.xhp
msgctxt ""
@@ -7390,7 +7422,7 @@ msgctxt ""
"par_id7280190\n"
"help.text"
msgid "In Microsoft Word and in current versions of Writer, page header/footer content and footnote/endnote content does not wrap around floating screen objects. Text body content wraps around floating screen objects which are anchored in the page header."
-msgstr ""
+msgstr "I MS Word og i aktuelle versioner af Writer, ombrydes indhold i sidehoved/sidefod og fodnote/slutnote ikke omkring flydende skærmobjekter. Brødtekstindhold ombrydes omkring flydende skærmobjekter, som er forankret i sidehovedet."
#: 01041000.xhp
msgctxt ""
@@ -7462,7 +7494,7 @@ msgctxt ""
"hd_id5241028\n"
"help.text"
msgid "Tolerate white lines of PDF page backgrounds for compatibility with old documents"
-msgstr ""
+msgstr "Tolererer hvide linjer fra PDF sidebaggrunde for kompatibilitet med gamle dokumenter."
#: 01041000.xhp
msgctxt ""
@@ -7502,7 +7534,7 @@ msgctxt ""
"par_idN1097D\n"
"help.text"
msgid "Add spacing between paragraphs and tables"
-msgstr ""
+msgstr "Tilføj afstand mellem afsnit og tabeller"
#: 01041000.xhp
msgctxt ""
@@ -10630,7 +10662,7 @@ msgctxt ""
"par_id3150717\n"
"help.text"
msgid "<ahelp hid=\".\">Specifies that graphic objects can only be rotated within the rotation angle that you selected in the <emph>When rotating</emph> control.</ahelp> If you want to rotate an object outside the defined angle, press the Shift key when rotating. Release the key when the desired rotation angle is reached."
-msgstr ""
+msgstr "<ahelp hid=\".\">Angiver at grafiske objekter kun kan roteres inden for den rotationsvinkel, du har valgt i feltet <emph>Ved rotation</emph>.</ahelp> Hvis du ønsker at rotere et objekt mere end den angivne vinkel, skal du holde Skift-tasten nede, mens du roterer. Løft tasten, når den ønskede rotationsvinkel er nået."
#: 01070300.xhp
msgctxt ""
@@ -11030,7 +11062,7 @@ msgctxt ""
"par_id3149808\n"
"help.text"
msgid "<variable id=\"textbereich\"><ahelp hid=\".\">Specifies whether to select a text frame by clicking the text.</ahelp></variable>"
-msgstr ""
+msgstr "<variable id=\"textbereich\"><ahelp hid=\".\">Angiver om en tekstramme markeres ved at klikke på teksten.</ahelp></variable>"
#: 01070500.xhp
msgctxt ""
@@ -11062,7 +11094,7 @@ msgctxt ""
"hd_id3146986\n"
"help.text"
msgid "Start with Template Selection"
-msgstr ""
+msgstr "Start med skabelonmarkering"
#: 01070500.xhp
msgctxt ""
@@ -11070,7 +11102,7 @@ msgctxt ""
"par_id3148646\n"
"help.text"
msgid "<ahelp hid=\"modules/simpress/ui/optimpressgeneralpage/startwithwizard\">Specifies whether to activate the <link href=\"text/shared/guide/template_manager.xhp\">Select a Template</link> window when opening a presentation with <emph>File - New - Presentation</emph>.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/simpress/ui/optimpressgeneralpage/startwithwizard\">Angiver, om vinduet <link href=\"text/shared/guide/template_manager.xhp\">Marker en skabelon</link> skal aktiveres, når en præsentation åbnes med <emph>Filer - Ny - Præsentation</emph>.</ahelp>"
#: 01070500.xhp
msgctxt ""
@@ -11214,7 +11246,7 @@ msgctxt ""
"par_id3155964\n"
"help.text"
msgid "<ahelp hid=\".\">Specifies that you want to enable the <link href=\"text/simpress/guide/presenter_console.xhp\">Presenter Console</link> during slideshows.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Angiver, at du vil aktivere <link href=\"text/simpress/guide/presenter_console.xhp\">Præsentationskonsolen</link> under præsentationer.</ahelp>"
#: 01070500.xhp
msgctxt ""
@@ -11686,7 +11718,7 @@ msgctxt ""
"par_id3159399\n"
"help.text"
msgid "<variable id=\"codetext\"><ahelp hid=\".\">Loads and saves the Basic code from a Microsoft document as a special $[officename] Basic module with the document. The disabled Microsoft Basic code is visible in the $[officename] Basic IDE between <emph>Sub</emph> and <emph>End Sub</emph>.</ahelp> You can edit the code. When saving the document in $[officename] format, the Basic code is saved as well. When saving in another format, the Basic code from the $[officename] Basic IDE is not saved. </variable>"
-msgstr ""
+msgstr "<variable id=\"codetext\"><ahelp hid=\".\">Indlæser og gemmer Basic-koden fra et Microsoft-dokument som et specielt $[officename] Basic-modul med dokumentet. Den deaktiverede Micosoft Basic-kode er synlig i $[officename] Basic-IDE mellem <emph>Sub</emph> og <emph>End Sub</emph>.</ahelp> Du kan redigere koden. Når du gemmer et dokument i $[officename]-formater, bliver Basic-koden også gemt. Når du gemmer i et andet format, bliver Basic-koden fra $[officename] Basic-IDE ikke gemt. </variable>"
#: 01130100.xhp
msgctxt ""
@@ -11710,7 +11742,7 @@ msgctxt ""
"par_id05172017121531273\n"
"help.text"
msgid "After loading the VBA code, %PRODUCTNAME inserts the statement <item type=\"literal\">Option VBASupport 1</item> in every Basic module to enable a limited support for VBA statements, functions and objects. See <link href=\"text/sbasic/shared/03103350.xhp\">Option VBASupport Statement</link> for more information."
-msgstr ""
+msgstr "Efter indlæsning af VBA-koden indsætter %PRODUCTNAME sætningen <item type=\"literal\"> Option VBASupport 1</item> i hvert Basic-modul for at aktivere begrænset support til VBA-udtryk, funktioner og objekter. Se <link href=\"text/sbasic/shared/03103350.xhp\"> Vælg VBASupport.udtryk</link> for mere information."
#: 01130100.xhp
msgctxt ""
@@ -11726,7 +11758,7 @@ msgctxt ""
"par_id3150084\n"
"help.text"
msgid "<ahelp hid=\".\">Specifies that the original Microsoft Basic code contained in the document is held in a special internal memory for as long as the document remains loaded in $[officename]. When saving the document in Microsoft format the Microsoft Basic is saved again with the code in an unchanged form.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Angiver at den oprindelige Micosoft Basic-kode, der er indeholdt i dokumentet, fastholdes i en speciel intern hukommelse, så længe som dokumentet forbliver indlæst i $[officename]. Når du gemmer et dokument i Microsoft-formater, bliver Microsoft Basic gemt igen i uændret form.</ahelp>"
#: 01130100.xhp
msgctxt ""
@@ -11854,7 +11886,7 @@ msgctxt ""
"par_id3149095\n"
"help.text"
msgid "<ahelp hid=\".\">Specifies the settings for importing and exporting Microsoft Office documents.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Angiver indstillinger for import og eksport af Microsoft Office-dokumenter.</ahelp>"
#: 01130200.xhp
msgctxt ""
@@ -11942,7 +11974,7 @@ msgctxt ""
"par_id3150671\n"
"help.text"
msgid "<ahelp hid=\".\">Microsoft Office has two character attributes similar to $[officename] character background. Select the appropriate attribute (highlighting or shading) which you would like to use during export to Microsoft Office file formats.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Microsoft Office har to tegnegenskaber der ligner $[officename] tegnbaggrund. Vælg den egenskab (fremhævelse eller skygge), som du vil bruge ved eksport til Microsoft Office-filformater.</ahelp>"
#: 01140000.xhp
msgctxt ""
@@ -13733,8 +13765,8 @@ msgctxt ""
"java.xhp\n"
"hd_id3148618\n"
"help.text"
-msgid "Optional (unstable) options"
-msgstr "Valgfrie (ustabile) muligheder"
+msgid "Optional Features"
+msgstr ""
#: java.xhp
msgctxt ""
@@ -13749,8 +13781,8 @@ msgctxt ""
"java.xhp\n"
"par_id3156344\n"
"help.text"
-msgid "It enables features that are not yet complete or contain known bugs. The list of these features is different version by version, or even it can be empty."
-msgstr "Dette valg aktiverer funktioner som ikke er fuldstændig færdigudviklet og som dermed kan have fejl. Hvilke funktioner det konkret drejer sig om, ændrer sig fra version til version."
+msgid "Enables features that are not yet complete or may contain known bugs. The list of these features is different version by version, or even it can be empty."
+msgstr ""
#: java.xhp
msgctxt ""
@@ -13765,8 +13797,8 @@ msgctxt ""
"java.xhp\n"
"par_id3156345\n"
"help.text"
-msgid "It enables macro recording, so the <link href=\"text/shared/guide/macro_recording.xhp\" name=\"Tools - Macros - Record Macro\"><item type=\"menuitem\">Tools - Macros - Record Macro</item></link> menu item will be available."
-msgstr "Her aktivers makrooptageren, så menupunktet <link href=\"text/shared/guide/macro_recording.xhp\" name=\"Tools - Macros - Record Macro\"><item type=\"menuitem\">Funktioner - Makroer - Optag makroer</item></link> bliver tilgængeligt."
+msgid "Enables macro recording. The <link href=\"text/shared/guide/macro_recording.xhp\" name=\"Tools - Macros - Record Macro\"><item type=\"menuitem\">Tools - Macros - Record Macro</item></link> menu item is available."
+msgstr ""
#: java.xhp
msgctxt ""
diff --git a/source/da/helpcontent2/source/text/simpress/00.po b/source/da/helpcontent2/source/text/simpress/00.po
index 7852e66c365..d574e250ddc 100644
--- a/source/da/helpcontent2/source/text/simpress/00.po
+++ b/source/da/helpcontent2/source/text/simpress/00.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: 2018-04-17 15:54+0200\n"
-"PO-Revision-Date: 2017-12-02 07:22+0000\n"
-"Last-Translator: David Lamhauge <davidlamhauge@gmail.com>\n"
+"PO-Revision-Date: 2018-05-26 20:14+0000\n"
+"Last-Translator: SteenRønnow <steen.roennow@mail.dk>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: da\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1512199377.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1527365669.000000\n"
#: 00000004.xhp
msgctxt ""
@@ -742,7 +742,7 @@ msgctxt ""
"par_id3153012\n"
"help.text"
msgid "<variable id=\"seitenvorlage\">Choose <emph>Slide - Master Slide</emph></variable>"
-msgstr ""
+msgstr "<variable id=\"seitenvorlage\">Vælg <emph>Dias - Masterdias</emph></variable>"
#: 00000406.xhp
msgctxt ""
diff --git a/source/da/helpcontent2/source/text/simpress/01.po b/source/da/helpcontent2/source/text/simpress/01.po
index f5bf31d9301..c55fac962cb 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: 2018-05-08 15:10+0200\n"
-"PO-Revision-Date: 2018-04-26 14:50+0000\n"
+"PO-Revision-Date: 2018-05-26 20:15+0000\n"
"Last-Translator: SteenRønnow <steen.roennow@mail.dk>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: da\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1524754259.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1527365733.000000\n"
#: 01170000.xhp
msgctxt ""
@@ -3310,7 +3310,7 @@ msgctxt ""
"par_id3145799\n"
"help.text"
msgid "<ahelp hid=\".\">Inserts the page number into the current slide or page.</ahelp> If you want to add a page number to every slide, choose View - Master<switchinline select=\"appl\"><caseinline select=\"IMPRESS\"> Slide</caseinline></switchinline> and insert the page number field. To change the number format, choose <switchinline select=\"appl\"><caseinline select=\"IMPRESS\"><emph>Slide</emph></caseinline><caseinline select=\"DRAW\"><emph>Page</emph></caseinline></switchinline><emph> - Properties - Page</emph> tab and then select a format from the list in the <emph>Layout Settings</emph> area."
-msgstr ""
+msgstr "<ahelp hid=\".\">Indsætter sidetal på de(t/n) aktuelle dias eller side.</ahelp> Hvis du vil tilføje et sidetal til hvert side, vælger du Vis - Master<switchinline select=\"appl\"><caseinline select=\"IMPRESS\"> Dias</caseinline></switchinline> og indsætter feltet Sidetal. Du ændrer talformatet ved at vælge <switchinline select=\"appl\"><caseinline select=\"IMPRESS\"><emph>Dias</emph></caseinline><caseinline select=\"DRAW\"><emph>Side</emph></caseinline></switchinline><emph> Egenskaber - Side</emph>-fanebladet og markerer et format på listen i området <emph>Layout-indstillinger</emph>."
#: 04990600.xhp
msgctxt ""
@@ -4414,7 +4414,7 @@ msgctxt ""
"par_id3149209\n"
"help.text"
msgid "<variable id=\"verbindertext\"><ahelp hid=\".\">Sets the properties of a connector.</ahelp></variable>"
-msgstr ""
+msgstr "<variable id=\"verbindertext\"><ahelp hid=\".\">Sætter egenskaberne for en forbindelse.</ahelp></variable>"
#: 05170000.xhp
msgctxt ""
@@ -5454,7 +5454,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Animation Pane"
-msgstr ""
+msgstr "Animationspanel"
#: 06060000.xhp
msgctxt ""
@@ -5470,7 +5470,7 @@ msgctxt ""
"hd_id3148837\n"
"help.text"
msgid "<link href=\"text/simpress/01/06060000.xhp\" name=\"Effects\">Animation Pane</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/01/06060000.xhp\" name=\"Effects\">Animationspanel</link>"
#: 06060000.xhp
msgctxt ""
@@ -5478,7 +5478,7 @@ msgctxt ""
"par_id3144773\n"
"help.text"
msgid "<variable id=\"effekttext\"><ahelp hid=\".\">Assigns effects to selected objects.</ahelp></variable>"
-msgstr ""
+msgstr "<variable id=\"effekttext\"><ahelp hid=\".\">Tildeler effekter til markerede objekter.</ahelp></variable>"
#: 06060000.xhp
msgctxt ""
@@ -5518,7 +5518,7 @@ msgctxt ""
"par_idN1079F\n"
"help.text"
msgid "Each list entry consists of the following two rows:"
-msgstr ""
+msgstr "Hvert listeelement består af følgende to rækker:"
#: 06060000.xhp
msgctxt ""
@@ -5526,7 +5526,7 @@ msgctxt ""
"par_idN107B5\n"
"help.text"
msgid "The first row of the entry shows a mouse icon if the animation is started by a mouse click, and a clock if the animation starts after the previous animation ends. The name of the shape for the animation effect or the first characters of the animated text."
-msgstr ""
+msgstr "Den første række af elementet viser et museikon, hvis animationen startes med museklik, og et ur, hvis den starter efter at den foregående animation slutter. Navnet på animationseffektens figur eller de første tegn i den animerede tekst."
#: 06060000.xhp
msgctxt ""
@@ -5534,7 +5534,7 @@ msgctxt ""
"par_idN107B1\n"
"help.text"
msgid "In the second row an icon shows the animation effect, followed by the category and the name of the effect."
-msgstr ""
+msgstr "I den anden række viser et ikon animationseffekten fulgt af effektens kategori og navn."
#: 06060000.xhp
msgctxt ""
@@ -5550,7 +5550,7 @@ msgctxt ""
"par_idN107BC\n"
"help.text"
msgid "<ahelp hid=\".\">Adds another animation effect for the selected object on the slide.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Tilføjer en anden animationseffekt til det markerede objekt på diasset.</ahelp>"
#: 06060000.xhp
msgctxt ""
@@ -5598,7 +5598,7 @@ msgctxt ""
"par_idN107EF\n"
"help.text"
msgid "<ahelp hid=\".\">Select an animation effect category.</ahelp> The following categories are available:"
-msgstr ""
+msgstr "<ahelp hid=\".\">Markér en animationseffekt-kategori.</ahelp> Disse kategorier er til rådighed:"
#: 06060000.xhp
msgctxt ""
@@ -5606,7 +5606,7 @@ msgctxt ""
"par_idN10571\n"
"help.text"
msgid "<emph>Entrance:</emph> Select an entrance effect from the list of effects."
-msgstr ""
+msgstr "<emph>Indgang:</emph> Marker en indgangseffekt fra effetliksten."
#: 06060000.xhp
msgctxt ""
@@ -5614,7 +5614,7 @@ msgctxt ""
"par_idN10578\n"
"help.text"
msgid "<emph>Emphasis:</emph> Select an emphasis effect from the list of effects."
-msgstr ""
+msgstr "<emph>Fremhævelse:</emph> Markér en fremhævelseseffekt fra effektlisten."
#: 06060000.xhp
msgctxt ""
@@ -5622,7 +5622,7 @@ msgctxt ""
"par_idN1057F\n"
"help.text"
msgid "<emph>Exit:</emph> Select an exiting effect from the list of effects."
-msgstr ""
+msgstr "<emph>Udgang:</emph>Markér en udgangseffekt fra effektlisten."
#: 06060000.xhp
msgctxt ""
@@ -5630,7 +5630,7 @@ msgctxt ""
"par_idN10586\n"
"help.text"
msgid "<emph>Motion Paths:</emph> Select a motion path effect from the list of effects."
-msgstr ""
+msgstr "<emph>Bevægelsesstier:</emph> Markér en bevægelsessti på effektlisten."
#: 06060000.xhp
msgctxt ""
@@ -5646,7 +5646,7 @@ msgctxt ""
"par_idN107F2\n"
"help.text"
msgid "<ahelp hid=\".\">Select an animation effect.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Markér en animationseffekt.</ahelp>"
#: 06060000.xhp
msgctxt ""
@@ -5662,7 +5662,7 @@ msgctxt ""
"par_idN107ED\n"
"help.text"
msgid "<ahelp hid=\".\">Displays when the selected animation effect should be started.</ahelp> The following start options are available:"
-msgstr ""
+msgstr "<ahelp hid=\".\">Viser, hvornår den markerede animation skulle startes.</ahelp> Der er disse valgmuligheder for start:"
#: 06060000.xhp
msgctxt ""
@@ -5694,7 +5694,7 @@ msgctxt ""
"par_idN10807\n"
"help.text"
msgid "Properties: Direction, Amount, Color, Fill color, Size, Line color, Font, Font size, Typeface"
-msgstr ""
+msgstr "Egenskaber: retning, kvantitet, farve, udfyldningsfarve, størrelse, linjefarve, skrifttype, skriftstørrelse, skriftart"
#: 06060000.xhp
msgctxt ""
@@ -5718,7 +5718,7 @@ msgctxt ""
"par_idN10824\n"
"help.text"
msgid "<ahelp hid=\".\">Specifies the duration of the selected animation effect.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Angiver varigheden af den valgte animationseffekt.</ahelp>"
#: 06060000.xhp
msgctxt ""
@@ -5726,7 +5726,7 @@ msgctxt ""
"par_idN10835\n"
"help.text"
msgid "Delay"
-msgstr ""
+msgstr "Forsinkelse"
#: 06060000.xhp
msgctxt ""
@@ -5734,7 +5734,7 @@ msgctxt ""
"par_idN10839\n"
"help.text"
msgid "<ahelp hid=\".\">The animation starts delayed by this amount of time.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Animationen starter med denne forsinkelse.</ahelp>"
#: 06060000.xhp
msgctxt ""
diff --git a/source/da/helpcontent2/source/text/simpress/guide.po b/source/da/helpcontent2/source/text/simpress/guide.po
index 017c5b321f8..eb7d04a86e7 100644
--- a/source/da/helpcontent2/source/text/simpress/guide.po
+++ b/source/da/helpcontent2/source/text/simpress/guide.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2018-05-16 16:54+0200\n"
-"PO-Revision-Date: 2017-12-25 17:55+0000\n"
-"Last-Translator: David Lamhauge <davidlamhauge@gmail.com>\n"
+"PO-Revision-Date: 2018-05-26 20:17+0000\n"
+"Last-Translator: Leif Lodahl <leiflodahl@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: da\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1514224505.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1527365852.000000\n"
#: 3d_create.xhp
msgctxt ""
@@ -494,7 +494,7 @@ msgctxt ""
"hd_id3150251\n"
"help.text"
msgid "<variable id=\"animated_objects\"><link href=\"text/simpress/guide/animated_objects.xhp\" name=\"Animating Objects in Slides\">Animating Objects in Presentation Slides</link></variable>"
-msgstr ""
+msgstr "<variable id=\"animated_objects\"><link href=\"text/simpress/guide/animated_objects.xhp\" name=\"Animating Objects in Slides\">Animering af objekter i præsentationsdias</link> </variable>"
#: animated_objects.xhp
msgctxt ""
@@ -526,7 +526,7 @@ msgctxt ""
"par_id3149875\n"
"help.text"
msgid "Choose <emph>Format - Animation</emph>, to open the Custom Animation pane in the Sidebar. Click on <emph>Add (+)</emph> button, and then select an animation effect."
-msgstr ""
+msgstr "Vælg <emph>Formater - Animation</emph> for at åbne det tilpassede animationspanel i Sidepanelet. Klik på <emph>Tilføj (+)</emph>-knappen og markér så en animationseffekt."
#: animated_objects.xhp
msgctxt ""
@@ -734,7 +734,7 @@ msgctxt ""
"par_id3148826\n"
"help.text"
msgid "If you want, you can use the <emph>Zoom</emph> toolbar<image id=\"img_id3151172\" src=\"cmd/sc_zoom.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3151172\">Icon</alt></image> to change the view magnification for the slides."
-msgstr ""
+msgstr "Hvis du vil, kan du bruge værktøjslinjen <emph>Zoom</emph><image id=\"img_id3151172\" src=\"cmd/sc_zoom.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3151172\">Ikon</alt></image> til ændre den forstørrelse, dias vises i."
#: animated_slidechange.xhp
msgctxt ""
@@ -918,7 +918,7 @@ msgctxt ""
"par_id3149942\n"
"help.text"
msgid "Choose <emph>Slide - Properties</emph>, and then click on the <emph>Background</emph> tab."
-msgstr ""
+msgstr "Vælg <emph>Dias - Egenskaber</emph> og klik så på fanebladet <emph>Baggrund</emph>."
#: background.xhp
msgctxt ""
@@ -982,7 +982,7 @@ msgctxt ""
"par_id3156064\n"
"help.text"
msgid "Choose <emph>Slide - Properties</emph>, and then click on the <emph>Background</emph> tab."
-msgstr ""
+msgstr "Vælg <emph>Dias - Egenskaber</emph> og klik så på fanebladet <emph>Baggrund</emph>."
#: background.xhp
msgctxt ""
@@ -1062,7 +1062,7 @@ msgctxt ""
"par_idN1082F\n"
"help.text"
msgid "Choose <emph>Slide - Properties</emph> to change the slide background, or choose other formatting commands. Objects that you add here will be visible on all slides that are based on this master slide."
-msgstr ""
+msgstr "Vælg <emph>Dias - Egenskaber</emph> for at ændre diasbaggrunden eller vælge andre formateringskommandoer. Objekter, som du tilføjer her, vil være synlige på alle dias, som er baseret på denne diasmaster."
#: background.xhp
msgctxt ""
@@ -4638,7 +4638,7 @@ msgctxt ""
"par_id221120161524501012\n"
"help.text"
msgid "Warning: Clicking Undo will not delete a photo album. Right-click the slides on the slide panel and select <item type=\"menuitem\">Delete Slide</item> to delete the slides."
-msgstr ""
+msgstr "Advarsel: At klikke på Fortryd vil ikke slette et fotoalbum. Højreklik dias på diaspanelet og vælg <item type=\"menuitem\">Slet Dias </item>for at slette diassene."
#: photo_album.xhp
msgctxt ""
@@ -4694,7 +4694,7 @@ msgctxt ""
"par_id91512579485395\n"
"help.text"
msgid "The Presenter Console works only on an operating system that supports multiple displays and only when two displays are connected (one may be the laptop built-in display)."
-msgstr ""
+msgstr "Præsentationskonsollen virker kun på operativsystemer der understøtter flere skærme og kun når to visninger er forbundet (den ene kan være din bærbares skærm)."
#: presenter_console.xhp
msgctxt ""
@@ -4718,7 +4718,7 @@ msgctxt ""
"par_id351512577323192\n"
"help.text"
msgid "Choose <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 Impress - General</item>."
-msgstr ""
+msgstr "Vælg <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 - Generelt</item>."
#: presenter_console.xhp
msgctxt ""
@@ -4734,7 +4734,7 @@ msgctxt ""
"par_id261512578116942\n"
"help.text"
msgid "<image id=\"img_impressoptions\" src=\"media/screenshots/cui/ui/optionsdialog/impressoptionsgeneraldialog.png\" width=\"793px\" height=\"538px\"><alt id=\"alt_id821512578116950\">Enable Presenter Console option</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_impressoptions\" src=\"media/screenshots/cui/ui/optionsdialog/impressoptionsgeneraldialog.png\" width=\"793px\" height=\"538px\"><alt id=\"alt_id821512578116950\">Aktiver Præsentationskonsol-funktioner</alt></image>"
#: presenter_console.xhp
msgctxt ""
@@ -4758,7 +4758,7 @@ msgctxt ""
"par_id391512577726275\n"
"help.text"
msgid "Run the slide show. Press F5 or Shift-F5 or choose <item type=\"menuitem\">Slide Show - Start from First Slide</item> or <item type=\"menuitem\">Start from Current Slide</item>."
-msgstr ""
+msgstr "Kør præsentationen. Tryk F5 eller Shift-F5 eller vælg <item type=\"menuitem\">Præsentation - Start fra første dias</item> eller <item type=\"menuitem\">Start ved aktuelle dias</item>."
#: presenter_console.xhp
msgctxt ""
@@ -4774,7 +4774,7 @@ msgctxt ""
"par_id721512827886185\n"
"help.text"
msgid "<image src=\"media/helpimg/sd_PresenterConsole04.png\" id=\"img_id401512827886185\" width=\"640\" height=\"72\"><alt id=\"alt_id71512827886185\">Presenter Console Controls</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/helpimg/sd_PresenterConsole04.png\" id=\"img_id401512827886185\" width=\"640\" height=\"72\"><alt id=\"alt_id71512827886185\">Præsentationskonsolens kontrolelementer</alt></image>"
#: presenter_console.xhp
msgctxt ""
@@ -4782,7 +4782,7 @@ msgctxt ""
"par_id71512828085688\n"
"help.text"
msgid "<emph>Previous</emph>: move to previous slide."
-msgstr ""
+msgstr "<emph>Forrige</emph>: flyt til forrige dias"
#: presenter_console.xhp
msgctxt ""
@@ -4790,7 +4790,7 @@ msgctxt ""
"par_id61512828110394\n"
"help.text"
msgid "<emph>Next</emph>: move to next slide."
-msgstr ""
+msgstr "<emph>Næste</emph>: flyt til næste dias"
#: presenter_console.xhp
msgctxt ""
@@ -4798,7 +4798,7 @@ msgctxt ""
"par_id981512828129990\n"
"help.text"
msgid "<emph>Notes</emph>: display the Presenter Console Notes mode."
-msgstr ""
+msgstr "<emph>Noter</emph>: vis præsentationskonsollens note-tilstand"
#: presenter_console.xhp
msgctxt ""
@@ -4806,7 +4806,7 @@ msgctxt ""
"par_id101512828220096\n"
"help.text"
msgid "<emph>Slide</emph>: display the Presenter Console Slide sorter mode."
-msgstr ""
+msgstr "<emph>Noter</emph>: vis præsentationskonsollens note-tilstand"
#: presenter_console.xhp
msgctxt ""
@@ -4814,7 +4814,7 @@ msgctxt ""
"par_id241512828268769\n"
"help.text"
msgid "<emph>Restart</emph>: restart the slide show’s elapsed time."
-msgstr ""
+msgstr "<emph>Genstart</emph>: genstarter diasshowets stopur."
#: presenter_console.xhp
msgctxt ""
@@ -4870,7 +4870,7 @@ msgctxt ""
"par_id311512825411947\n"
"help.text"
msgid "<image src=\"media/helpimg/sd_PresenterConsole01.png\" id=\"img_id481512825411947\" width=\"640\" height=\"360\"><alt id=\"alt_id151512825411947\">Presenter console normal mode</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/helpimg/sd_PresenterConsole01.png\" id=\"img_id481512825411947\" width=\"640\" height=\"360\"><alt id=\"alt_id151512825411947\">Præsentationskonsollens normaltilstand</alt></image>"
#: presenter_console.xhp
msgctxt ""
@@ -4894,7 +4894,7 @@ msgctxt ""
"par_id961512827293400\n"
"help.text"
msgid "<image src=\"media/helpimg/sd_PresenterConsole03.png\" id=\"img_id651512827293401\" width=\"640\" height=\"360\"><alt id=\"alt_id881512827293401\">Notes mode</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/helpimg/sd_PresenterConsole03.png\" id=\"img_id651512827293401\" width=\"640\" height=\"360\"><alt id=\"alt_id881512827293401\">Notetilstand</alt></image>"
#: presenter_console.xhp
msgctxt ""
@@ -4918,7 +4918,7 @@ msgctxt ""
"par_id721512827434997\n"
"help.text"
msgid "<image src=\"media/helpimg/sd_PresenterConsole02.png\" id=\"img_id831512827434997\" width=\"640\" height=\"360\"><alt id=\"alt_id221512827434997\">Slide sorter mode</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/helpimg/sd_PresenterConsole02.png\" id=\"img_id831512827434997\" width=\"640\" height=\"360\"><alt id=\"alt_id221512827434997\">Diassorterings-tilstand</alt></image>"
#: presenter_console.xhp
msgctxt ""
@@ -4974,7 +4974,7 @@ msgctxt ""
"par_id3145384\n"
"help.text"
msgid "In <emph>Normal View</emph>, choose <emph>Slide - Properties</emph>, and then click the <emph>Page</emph> tab."
-msgstr ""
+msgstr "I <emph>Normalvisning</emph> vælg <emph>Dias - Egenskaber</emph> og klik så på fanebladet <emph>Side</emph>."
#: print_tofit.xhp
msgctxt ""
@@ -6086,7 +6086,7 @@ msgctxt ""
"bm_id3153415\n"
"help.text"
msgid "<bookmark_value>vectorizing bitmaps</bookmark_value><bookmark_value>converting; bitmaps to polygons</bookmark_value><bookmark_value>bitmaps; converting to vector graphics</bookmark_value><bookmark_value>vector graphics; converting bitmaps</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>bitmaps til vektorgrafik</bookmark_value><bookmark_value>konvertere; bitmaps til polygoner</bookmark_value><bookmark_value>bitmaps; konvertere til vektorgrafik</bookmark_value><bookmark_value>vektorgrafik; konvertere bitmaps</bookmark_value>"
#: vectorize.xhp
msgctxt ""
diff --git a/source/da/helpcontent2/source/text/smath/01.po b/source/da/helpcontent2/source/text/smath/01.po
index e69a00e6cae..6c898eb1390 100644
--- a/source/da/helpcontent2/source/text/smath/01.po
+++ b/source/da/helpcontent2/source/text/smath/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: 2018-05-16 16:54+0200\n"
-"PO-Revision-Date: 2017-06-29 17:10+0000\n"
-"Last-Translator: Leif Lodahl <leiflodahl@gmail.com>\n"
+"PO-Revision-Date: 2018-05-26 18:37+0000\n"
+"Last-Translator: SteenRønnow <steen.roennow@mail.dk>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: da\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1498756250.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1527359873.000000\n"
#: 02080000.xhp
msgctxt ""
@@ -2134,7 +2134,7 @@ msgctxt ""
"par_id3155374\n"
"help.text"
msgid "Choose a function in the lower part of the Elements pane. These functions are also listed in the <link href=\"text/shared/00/00000001.xhp#kontextmenue\" name=\"context menu\">context menu</link> of the <emph>Commands</emph> window. Any functions not contained in the Elements pane need to be typed manually in the Commands window."
-msgstr ""
+msgstr "Vælg en funktion i den nederste del af vinduet. Disse funktioner er også oplistet i vinduets <link href=\"text/shared/00/00000001.xhp#kontextmenue\" name=\"context menu\">kontekstmenuen</link> til vinduet <emph>Kommandoer.</emph> Enhver funktion, der ikke findes i panelet Elementer skal tastes manuelt i vinduet Kommandoer."
#: 03090400.xhp
msgctxt ""
@@ -2910,7 +2910,7 @@ msgctxt ""
"par_id3147101\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_LRBRACEX\">Inserts a placeholder within braces (curly brackets).</ahelp> You can also type <emph>lbrace<?>rbrace</emph> directly in the <emph>Commands</emph> window."
-msgstr ""
+msgstr "<ahelp hid=\"HID_SMA_LRBRACEX\">Indsætter en pladsholder mellem klammeparenteser (tuborgklammer, krøllede parenteser).</ahelp> Du kan også skrive <emph>lbrace<?>rbrace</emph> direkte i vinduet <emph>Kommandoer</emph>."
#: 03090500.xhp
msgctxt ""
@@ -4094,7 +4094,7 @@ msgctxt ""
"par_id3147262\n"
"help.text"
msgid "You can choose among various options for formatting a $[officename] Math formula. The format options are displayed in the lower part of the Elements pane. These options are also listed in the <link href=\"text/shared/00/00000001.xhp#kontextmenue\" name=\"context menu\">context menu</link> of the <emph>Commands</emph> window."
-msgstr ""
+msgstr "Du kan vælge mellem flere indstillinger til formatering af en $[officename] Math formel. Formatindstillingerne vises i den nederste halvdel af panelet Element. Disse indstillinger er også oplistet i <link href=\"text/shared/00/00000001.xhp#kontextmenue\" name=\"context menu\">kontekstmenuen</link> i vinduet <emph>Kommandoer</emph>."
#: 03090700.xhp
msgctxt ""
@@ -4638,7 +4638,7 @@ msgctxt ""
"par_id3149290\n"
"help.text"
msgid "After selecting the <emph>Set Operations</emph> item in the Elements pane, relevant icons will be shown in the lower part of this pane. Simply click a symbol to incorporate the operator in the formula being edited in the Commands window."
-msgstr ""
+msgstr "Når du har markeret ikonet <emph>Sæt operationer</emph> i panelet Elementer, bliver relevante ikoner vist i den nederste del af vinduet. Klik bare på et symbol her for at indsætte operatoren i formlen, som redigeres i Kommandovinduet."
#: 03090800.xhp
msgctxt ""
@@ -5246,7 +5246,7 @@ msgctxt ""
"par_id3153818\n"
"help.text"
msgid "<image id=\"img_id3148870\" src=\"media/helpimg/smzb1.png\" width=\"95px\" height=\"80px\"><alt id=\"alt_id3148870\">Symbols with Indices</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3148870\" src=\"media/helpimg/smzb1.png\" width=\"95px\" height=\"80px\"><alt id=\"alt_id3148870\">Ikoner med indekser</alt></image>"
#: 03090902.xhp
msgctxt ""
@@ -5278,7 +5278,7 @@ msgctxt ""
"par_id3153912\n"
"help.text"
msgid "<image id=\"img_id3149126\" src=\"media/helpimg/smzb2.png\" width=\"95px\" height=\"80px\"><alt id=\"alt_id3149126\">Symbols with Indices</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3149126\" src=\"media/helpimg/smzb2.png\" width=\"95px\" height=\"80px\"><alt id=\"alt_id3149126\">Symboler med indekser</alt></image>"
#: 03090903.xhp
msgctxt ""
@@ -5310,7 +5310,7 @@ msgctxt ""
"par_id3148866\n"
"help.text"
msgid "<image id=\"img_id3153246\" src=\"media/helpimg/smzb3.png\" width=\"175px\" height=\"80px\"><alt id=\"alt_id3153246\">Symbols with Indices</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3153246\" src=\"media/helpimg/smzb3.png\" width=\"175px\" height=\"80px\"><alt id=\"alt_id3153246\">Ikoner med indekser</alt></image>"
#: 03090904.xhp
msgctxt ""
@@ -5342,7 +5342,7 @@ msgctxt ""
"par_id3153915\n"
"help.text"
msgid "<image id=\"img_id3150213\" src=\"media/helpimg/smzb5.png\" width=\"550px\" height=\"135px\"><alt id=\"alt_id3150213\">Matrix with varying font sizes</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3150213\" src=\"media/helpimg/smzb5.png\" width=\"550px\" height=\"135px\"><alt id=\"alt_id3150213\">Matrix med varierende skriftstørrelser</alt></image>"
#: 03090905.xhp
msgctxt ""
@@ -5374,7 +5374,7 @@ msgctxt ""
"par_id3153912\n"
"help.text"
msgid "<image id=\"img_id3149126\" src=\"media/helpimg/smzb4.png\" width=\"345px\" height=\"190px\"><alt id=\"alt_id3149126\">Matrix</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3149126\" src=\"media/helpimg/smzb4.png\" width=\"345px\" height=\"190px\"><alt id=\"alt_id3149126\">Matrix</alt></image>"
#: 03090906.xhp
msgctxt ""
@@ -5406,7 +5406,7 @@ msgctxt ""
"par_id3148866\n"
"help.text"
msgid "<image id=\"img_id3150210\" src=\"media/helpimg/smzb6.png\" width=\"300px\" height=\"245px\"><alt id=\"alt_id3150210\">Matrix in bold font</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3150210\" src=\"media/helpimg/smzb6.png\" width=\"300px\" height=\"245px\"><alt id=\"alt_id3150210\">Matrix i halvfed skrift</alt></image>"
#: 03090907.xhp
msgctxt ""
@@ -5438,7 +5438,7 @@ msgctxt ""
"par_id3153912\n"
"help.text"
msgid "<image id=\"img_id3148871\" src=\"media/helpimg/smzb7.png\" width=\"255px\" height=\"60px\"><alt id=\"alt_id3148871\">Functions</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3148871\" src=\"media/helpimg/smzb7.png\" width=\"255px\" height=\"60px\"><alt id=\"alt_id3148871\">Funktioner</alt></image>"
#: 03090908.xhp
msgctxt ""
@@ -5470,7 +5470,7 @@ msgctxt ""
"par_id3148870\n"
"help.text"
msgid "<image id=\"img_id3153917\" src=\"media/helpimg/smzb8.png\" width=\"303px\" height=\"83px\"><alt id=\"alt_id3153917\">Square Root</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3153917\" src=\"media/helpimg/smzb8.png\" width=\"303px\" height=\"83px\"><alt id=\"alt_id3153917\">Kvadratrod</alt></image>"
#: 03090909.xhp
msgctxt ""
@@ -5510,7 +5510,7 @@ msgctxt ""
"par_id3151243\n"
"help.text"
msgid "<image id=\"img_id3148871\" src=\"media/helpimg/smzb9.png\" width=\"300px\" height=\"90px\"><alt id=\"alt_id3148871\">Integral and Sum Ranges, Font Size</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3148871\" src=\"media/helpimg/smzb9.png\" width=\"300px\" height=\"90px\"><alt id=\"alt_id3148871\">Integral- og Sum-områder, Skriftstørrelse</alt></image>"
#: 03090910.xhp
msgctxt ""
@@ -5542,7 +5542,7 @@ msgctxt ""
"par_id3148703\n"
"help.text"
msgid "<image id=\"img_id3151242\" src=\"media/helpimg/smzb10.png\" width=\"295px\" height=\"40px\"><alt id=\"alt_id3151242\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3151242\" src=\"media/helpimg/smzb10.png\" width=\"295px\" height=\"40px\"><alt id=\"alt_id3151242\">Ikon</alt></image>"
#: 03091100.xhp
msgctxt ""
diff --git a/source/da/helpcontent2/source/text/smath/06.po b/source/da/helpcontent2/source/text/smath/06.po
index de986bc191a..8c5f581004c 100644
--- a/source/da/helpcontent2/source/text/smath/06.po
+++ b/source/da/helpcontent2/source/text/smath/06.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: 2018-05-16 16:54+0200\n"
-"PO-Revision-Date: 2018-05-08 19:55+0000\n"
+"PO-Revision-Date: 2018-05-26 18:38+0000\n"
"Last-Translator: SteenRønnow <steen.roennow@mail.dk>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: da\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1525809345.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1527359889.000000\n"
#: screenshots.xhp
msgctxt ""
@@ -22,7 +22,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Math screenshots"
-msgstr ""
+msgstr "Skærmbilleder fra Math"
#: screenshots.xhp
msgctxt ""
@@ -30,7 +30,7 @@ msgctxt ""
"par_id141525570544232\n"
"help.text"
msgid "<image src=\"media/screenshots/modules/smath/ui/alignmentdialog/AlignmentDialog.png\" id=\"img_id331525570544232\" localize=\"true\"><alt id=\"alt_id641525570544232\">Alignment Dialog</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/screenshots/modules/smath/ui/alignmentdialog/AlignmentDialog.png\" id=\"img_id331525570544232\" localize=\"true\">Dialogen <alt id=\"alt_id641525570544232\">Justering</alt></image>"
#: screenshots.xhp
msgctxt ""
@@ -38,7 +38,7 @@ msgctxt ""
"par_id121525570707303\n"
"help.text"
msgid "<image src=\"media/screenshots/modules/smath/ui/catalogdialog/CatalogDialog.png\" id=\"img_id441525570707303\" localize=\"true\"><alt id=\"alt_id921525570707303\">Catalog Dialog</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/screenshots/modules/smath/ui/catalogdialog/CatalogDialog.png\" id=\"img_id441525570707303\" localize=\"true\">Dialogen <alt id=\"alt_id921525570707303\">Katalog</alt></image>"
#: screenshots.xhp
msgctxt ""
@@ -46,7 +46,7 @@ msgctxt ""
"par_id71525570710878\n"
"help.text"
msgid "<image src=\"media/screenshots/modules/smath/ui/fontdialog/FontDialog.png\" id=\"img_id41525570710879\" localize=\"true\"><alt id=\"alt_id931525570710879\">Font Dialog</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/screenshots/modules/smath/ui/fontdialog/FontDialog.png\" id=\"img_id41525570710879\" localize=\"true\">Dialogen <alt id=\"alt_id931525570710879\">Skrifftype</alt></image>"
#: screenshots.xhp
msgctxt ""
@@ -54,7 +54,7 @@ msgctxt ""
"par_id671525570713808\n"
"help.text"
msgid "<image src=\"media/screenshots/modules/smath/ui/fontsizedialog/FontSizeDialog.png\" id=\"img_id131525570713808\" localize=\"true\"><alt id=\"alt_id501525570713809\">Font Size Dialog</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/screenshots/modules/smath/ui/fontsizedialog/FontSizeDialog.png\" id=\"img_id131525570713808\" localize=\"true\"> Dialogen <alt id=\"alt_id501525570713809\">Skriftstørrelse</alt></image>"
#: screenshots.xhp
msgctxt ""
@@ -62,7 +62,7 @@ msgctxt ""
"par_id891525570718035\n"
"help.text"
msgid "<image src=\"media/screenshots/modules/smath/ui/fonttypedialog/FontsDialog.png\" id=\"img_id441525570718035\" localize=\"true\"><alt id=\"alt_id401525570718036\">Font Type Dialog</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/screenshots/modules/smath/ui/fonttypedialog/FontsDialog.png\" id=\"img_id441525570718035\" localize=\"true\">Dialogen <alt id=\"alt_id401525570718036\">Skrifttype</alt></image>"
#: screenshots.xhp
msgctxt ""
@@ -70,7 +70,7 @@ msgctxt ""
"par_id991525570721266\n"
"help.text"
msgid "<image src=\"media/screenshots/modules/smath/ui/savedefaultsdialog/SaveDefaultsDialog.png\" id=\"img_id571525570721266\" localize=\"true\"><alt id=\"alt_id981525570721266\">Save Default Dialog</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/screenshots/modules/smath/ui/savedefaultsdialog/SaveDefaultsDialog.png\" id=\"img_id571525570721266\" localize=\"true\">Dialogen <alt id=\"alt_id981525570721266\">Gem standard</alt></image>"
#: screenshots.xhp
msgctxt ""
@@ -78,7 +78,7 @@ msgctxt ""
"par_id861525570725718\n"
"help.text"
msgid "<image src=\"media/screenshots/modules/smath/ui/spacingdialog/SpacingDialog.png\" id=\"img_id81525570725718\" localize=\"true\"><alt id=\"alt_id981525570725718\">Spacing Dialog</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/screenshots/modules/smath/ui/spacingdialog/SpacingDialog.png\" id=\"img_id81525570725718\" localize=\"true\">Dialogen <alt id=\"alt_id981525570725718\">Skydning</alt></image>"
#: screenshots.xhp
msgctxt ""
@@ -86,4 +86,4 @@ msgctxt ""
"par_id931525570728897\n"
"help.text"
msgid "<image src=\"media/screenshots/modules/smath/ui/symdefinedialog/EditSymbols.png\" id=\"img_id491525570728897\" localize=\"true\"><alt id=\"alt_id31525570728897\">Edit Symbols</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/screenshots/modules/smath/ui/symdefinedialog/EditSymbols.png\" id=\"img_id491525570728897\" localize=\"true\"><alt id=\"alt_id31525570728897\">Rediger Ikoner</alt></image>"
diff --git a/source/da/helpcontent2/source/text/swriter.po b/source/da/helpcontent2/source/text/swriter.po
index 3c8178824ef..94d37ea9051 100644
--- a/source/da/helpcontent2/source/text/swriter.po
+++ b/source/da/helpcontent2/source/text/swriter.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: 2018-04-05 11:28+0200\n"
-"PO-Revision-Date: 2018-03-07 18:39+0000\n"
-"Last-Translator: scootergrisen <scootergrisen@gmail.com>\n"
+"PO-Revision-Date: 2018-05-26 18:36+0000\n"
+"Last-Translator: SteenRønnow <steen.roennow@mail.dk>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: da\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1520447993.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1527359793.000000\n"
#: classificationbar.xhp
msgctxt ""
@@ -342,7 +342,7 @@ msgctxt ""
"par_id030820161754171423\n"
"help.text"
msgid "The Classification toolbar contains listboxes to help in selecting the security of the document, according to the <item type=\"acronym\">BAF</item> category policy and <item type=\"acronym\">BAILS</item> levels. %PRODUCTNAME will add custom fields in the document properties (<item type=\"menuitem\">File - Properties</item>, Custom Properties tab) to store the classification policy as document metadata."
-msgstr ""
+msgstr "Værktøjslinjen Klassifikation består af rullelister, som hjælper dig med at vælge dokumentets sikkerhedsniveau ifølge <item type=\"acronym\">BAF</item>-kategori-politik og <item type=\"acronym\">BAILS</item>-niveauer. %PRODUCTNAME vil tilføje tilpassede felter i dokumentets indstillinger (<item type=\"menuitem\">Filer - Egenskaber</item>, fanen Tilpassede felter) for at gemme klassifikationsvalget som metadata i dokumentet."
#: classificationbar.xhp
msgctxt ""
@@ -1150,7 +1150,7 @@ msgctxt ""
"par_idN105B5\n"
"help.text"
msgid "<link href=\"text/swriter/01/04150000.xhp\">Insert Table</link>"
-msgstr ""
+msgstr "<link href=\"text/swriter/01/04150000.xhp\">Indsæt tabel</link>"
#: main0110.xhp
msgctxt ""
@@ -1534,7 +1534,7 @@ msgctxt ""
"par_idN107AC\n"
"help.text"
msgid "Opens <link href=\"text/shared/optionen/01040500.xhp\">a dialog</link> where you can specify the format of numbers in the table."
-msgstr ""
+msgstr "Åbner <link href=\"text/shared/optionen/01040500.xhp\">en dialog</link>, hvor du kan angive tabellens talformat."
#: main0110.xhp
msgctxt ""
diff --git a/source/da/helpcontent2/source/text/swriter/00.po b/source/da/helpcontent2/source/text/swriter/00.po
index a4c8b1d86a8..4c15a887124 100644
--- a/source/da/helpcontent2/source/text/swriter/00.po
+++ b/source/da/helpcontent2/source/text/swriter/00.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: 2018-05-22 13:17+0200\n"
-"PO-Revision-Date: 2018-03-07 18:39+0000\n"
-"Last-Translator: scootergrisen <scootergrisen@gmail.com>\n"
+"PO-Revision-Date: 2018-05-27 13:21+0000\n"
+"Last-Translator: Leif Lodahl <leiflodahl@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: da\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1520447997.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1527427312.000000\n"
#: 00000004.xhp
msgctxt ""
@@ -598,7 +598,7 @@ msgctxt ""
"par_id3155990\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F2"
-msgstr ""
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Æble</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F2"
#: 00000404.xhp
msgctxt ""
@@ -854,7 +854,7 @@ msgctxt ""
"par_id3150113\n"
"help.text"
msgid "<variable id=\"einfscript\">Choose <emph>Insert - Script</emph> (only HTML documents)</variable>"
-msgstr ""
+msgstr "<variable id=\"einfscript\">Vælg <emph>Indsæt - Script</emph> (kun HTML-dokumenter)</variable>"
#: 00000404.xhp
msgctxt ""
@@ -1094,7 +1094,7 @@ msgctxt ""
"par_id3155087\n"
"help.text"
msgid "<variable id=\"umschlagb\">Choose <emph>Insert - Envelope - Envelope</emph> tab</variable>"
-msgstr ""
+msgstr "<variable id=\"umschlagb\">Vælg fanen <emph>Indsæt - Konvolut - Konvolut</emph></variable>"
#: 00000404.xhp
msgctxt ""
@@ -1102,7 +1102,7 @@ msgctxt ""
"par_id3146955\n"
"help.text"
msgid "<variable id=\"formatbr\">Choose <emph>Insert - Envelope - Format</emph> tab</variable>"
-msgstr ""
+msgstr "<variable id=\"formatbr\">Vælg <emph>Indsæt - Konvolut - Format</emph></variable>"
#: 00000404.xhp
msgctxt ""
@@ -1110,7 +1110,7 @@ msgctxt ""
"par_id3154342\n"
"help.text"
msgid "<variable id=\"druckerbr\">Choose <emph>Insert - Envelope - Printer</emph> tab</variable>"
-msgstr ""
+msgstr "<variable id=\"druckerbr\">Vælg <emph>Indsæt - Konvolut - Printer</emph></variable>"
#: 00000404.xhp
msgctxt ""
@@ -1158,7 +1158,7 @@ msgctxt ""
"par_id3154251\n"
"help.text"
msgid "Choose <emph>Table - Insert Table</emph>"
-msgstr ""
+msgstr "Vælg <emph>Tabel - Indsæt tabel</emph>."
#: 00000404.xhp
msgctxt ""
@@ -1166,7 +1166,7 @@ msgctxt ""
"par_id3153129\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F12"
-msgstr ""
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Æble</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F12"
#: 00000404.xhp
msgctxt ""
@@ -1254,7 +1254,7 @@ msgctxt ""
"par_id81526422144005\n"
"help.text"
msgid "Choose <emph>Insert - Signature Line...</emph>"
-msgstr ""
+msgstr "Vælg <emph>Indsæt - Signaturlinje...</emph>"
#: 00000405.xhp
msgctxt ""
@@ -1478,7 +1478,7 @@ msgctxt ""
"par_id3151370\n"
"help.text"
msgid "<variable id=\"eingabe\">Choose <emph>Tools - AutoCorrect - While Typing</emph></variable>"
-msgstr ""
+msgstr "<variable id=\"eingabe\">Vælg <emph>Formater - Autoformat - Under skrivning</emph></variable>"
#: 00000405.xhp
msgctxt ""
@@ -1486,7 +1486,7 @@ msgctxt ""
"par_id3149538\n"
"help.text"
msgid "<variable id=\"autoformat1\">Choose <emph>Tools - AutoCorrect</emph></variable>"
-msgstr ""
+msgstr "<variable id=\"autoformat1\">Vælg <emph>Formater - Autokorrektur</emph></variable>"
#: 00000405.xhp
msgctxt ""
@@ -1494,7 +1494,7 @@ msgctxt ""
"par_id3150117\n"
"help.text"
msgid "<variable id=\"autoformat2\">Choose <emph>Tools - AutoCorrect - Apply</emph></variable>"
-msgstr ""
+msgstr "<variable id=\"autoformat2\">Vælg <emph>Formater - Autokorrektur - Anvend</emph></variable>"
#: 00000405.xhp
msgctxt ""
@@ -1502,7 +1502,7 @@ msgctxt ""
"par_id3155870\n"
"help.text"
msgid "<variable id=\"autoformat3\">Choose <emph>Tools - AutoCorrect - Apply and Edit Changes</emph></variable>"
-msgstr ""
+msgstr "<variable id=\"autoformat3\">Vælg <emph>Formater - Autoformat - Anvend og rediger ændringer</emph></variable>"
#: 00000405.xhp
msgctxt ""
diff --git a/source/da/helpcontent2/source/text/swriter/01.po b/source/da/helpcontent2/source/text/swriter/01.po
index 57e3adb14aa..0b404c5cc85 100644
--- a/source/da/helpcontent2/source/text/swriter/01.po
+++ b/source/da/helpcontent2/source/text/swriter/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: 2018-05-22 13:17+0200\n"
-"PO-Revision-Date: 2018-05-22 10:49+0000\n"
+"PO-Revision-Date: 2018-06-13 14:17+0000\n"
"Last-Translator: SteenRønnow <steen.roennow@mail.dk>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: da\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1526986193.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1528899423.000000\n"
#: 01120000.xhp
msgctxt ""
@@ -382,7 +382,7 @@ msgctxt ""
"par_id3155186\n"
"help.text"
msgid "<ahelp hid=\".uno:SendOutlineToStarImpress\">Sends the outline of the active document to a new presentation document.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".uno:SendOutlineToStarImpress\">Sender dispositionen fra det aktive dokument til et nyt præsentationsdokument.</ahelp>"
#: 01160200.xhp
msgctxt ""
@@ -486,7 +486,7 @@ msgctxt ""
"par_id3145412\n"
"help.text"
msgid "<ahelp hid=\".uno:SendAbstractToStarImpress\">Opens the current document as a $[officename] Impress presentation. The current document must contain at least one predefined heading paragraph style.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".uno:SendAbstractToStarImpress\">Åbner det aktuelle dokument som en $[officename] Impress-præsentation. Det aktuelle dokument skal indeholde mindst én foruddefineret afsnitstypografi for overskrifter.</ahelp>"
#: 01160400.xhp
msgctxt ""
@@ -542,7 +542,7 @@ msgctxt ""
"par_id3151175\n"
"help.text"
msgid "<variable id=\"htmltext\"><ahelp hid=\".\">Saves the file as an HTML document, so that you can view it in a web browser. You can choose to create a separate page when a heading style that you specify is encountered in the document.</ahelp> If you choose this option, a separate page of links to all of the pages that are generated is also created. </variable>"
-msgstr ""
+msgstr "<variable id=\"htmltext\"><ahelp hid=\".\">Gemmer filen som et HTML-dokument, så du kan vise det i en webbrowser. Du kan vælge at oprette en selvstændig side hver gang en overskriftstypografi, som du angiver, optræder i dokumentet.</ahelp> Hvis du vælger denne indstilling, oprettes også en selvstændig side med hyperlinks til alle siderne.</variable>"
#: 01160500.xhp
msgctxt ""
@@ -582,7 +582,7 @@ msgctxt ""
"par_id3149688\n"
"help.text"
msgid "<ahelp hid=\".\">Select the heading paragraph style that you want to use to indicate a new HTML page.</ahelp> To use this option, apply one of the heading paragraph styles to the paragraphs where you want to start a new page in the document."
-msgstr ""
+msgstr "<ahelp hid=\".\">Vælg overskriftstypografien, som du vil bruge til at indikere en ny HTML-side.</ahelp> For at bruge denne indstilling, skal du føje en af typografierne for afsnitsoverskrifter til de afsnit, hvor du vil begynde en ny side i dokumentet."
#: 01160500.xhp
msgctxt ""
@@ -3614,7 +3614,7 @@ msgctxt ""
"par_id3155182\n"
"help.text"
msgid "Inserts a manual column break (in a multiple column layout), and moves the text found to the right of the cursor to the beginning of the next <link href=\"text/swriter/01/05040500.xhp\" name=\"column\">column</link>. A manual column break is indicated by a nonprinting border at the top of the new column."
-msgstr ""
+msgstr "Indsætter et manuelt spalteskift (i flerspaltelayout), og flytter teksten til højre for markøren til begyndelsen af næste <link href=\"text/swriter/01/05040500.xhp\" name=\"column\">spalte</link>. Et manuelt spalteskift vises med en symbolsk kant øverst på den nye spalte."
#: 04010000.xhp
msgctxt ""
@@ -3686,7 +3686,7 @@ msgctxt ""
"par_id3150700\n"
"help.text"
msgid "Enter the new page number for the page that follows the manual page break."
-msgstr ""
+msgstr "Indtast det nye sidetal til siden, der følger efter det manuelle sideskift."
#: 04010000.xhp
msgctxt ""
@@ -5478,7 +5478,7 @@ msgctxt ""
"par_id3147167\n"
"help.text"
msgid "<ahelp hid=\".\">Fields are used to insert information about the current document, for example, file name, template, statistics, user data, date, and time.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Felter bruges til at indsætte information om det aktuelle dokument, for eksempel filnavn, skabelon, statistik, brugerdata, dato og klokkeslæt.</ahelp>"
#: 04090001.xhp
msgctxt ""
@@ -6182,7 +6182,7 @@ msgctxt ""
"par_id7374187\n"
"help.text"
msgid "<ahelp hid=\".\">Lists the available fields for the field type selected in the <emph>Type </emph>list. To insert a field, click the field, select a format in the \"Insert reference to\" list, and then click <emph>Insert</emph>.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Oplister de tilgængelige felter for felttypen valgt fra listen <emph>Type</emph>. For at indsætte et felt, klik på feltet, vælg et format i listen \"Indsæt reference til\" og klik så på <emph>Indsæt</emph>.</ahelp>"
#: 04090002.xhp
msgctxt ""
@@ -6494,7 +6494,7 @@ msgctxt ""
"par_id3150343\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Sets additional function parameters for fields. The type of parameter depends on the field type that you select.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Definerer flere funktionsparametre for felter. Typen af parameter afhænger af felttypen, som du vælger.</ahelp>"
#: 04090003.xhp
msgctxt ""
@@ -6502,7 +6502,7 @@ msgctxt ""
"par_id3151242\n"
"help.text"
msgid "<ahelp hid=\".\">Depending on the field type that you select, you can assign conditions to certain functions. For example, you can define a field that executes a macro when you click the field in the document, or a condition that, when met, hides a field. You can also define placeholder fields that insert graphics, tables, frames and other objects into your document when needed.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Afhængig af den felttype, du vælger, kan du tildele betingelser til bestemte funktioner. For eksempel kan du definere et felt, som udfører en makro, når du klikker på feltet i dokumentet, eller en betingelse som, når den er opfyldt, skjuler et felt. Du kan også definere pladsholderfelter, som indsætter grafik, tabeller, rammer og andre objekter i dit dokument, når det behøves.</ahelp>"
#: 04090003.xhp
msgctxt ""
@@ -6702,7 +6702,7 @@ msgctxt ""
"par_id3154830\n"
"help.text"
msgid "<ahelp hid=\".\">Enter the text to display when the condition is met in the <emph>Then </emph>box, and the text to display when the condition is not met in the <emph>Else </emph>box.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Angiv den tekst, der skal vises, når betingelsen er opfyldt i feltet <emph>Så</emph>, og den tekst, der skal vises, når betingelsen ikke er opfyldt i feltet <emph>Ellers</emph>.</ahelp>"
#: 04090003.xhp
msgctxt ""
@@ -7054,7 +7054,7 @@ msgctxt ""
"par_id3149692\n"
"help.text"
msgid "<ahelp hid=\".\">DocInformation fields contain information about the properties of a document, such as the date a document was created. To view the properties of a document, choose <emph>File - Properties</emph>.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Dokumentinformations-felter indeholder information om et dokuments egenskaber, så som datoen, dokumentet blev oprettet. For at se dokumentets egenskaber vælger du <emph>Filer - Egenskaber</emph>.</ahelp>"
#: 04090004.xhp
msgctxt ""
@@ -7134,7 +7134,7 @@ msgctxt ""
"par_id3147490\n"
"help.text"
msgid "Inserts the comments as entered in the <emph>Description</emph> tab page of the <link href=\"text/shared/01/01100300.xhp\" name=\"File - Properties\"><emph>File - Properties</emph></link> dialog."
-msgstr ""
+msgstr "Indsætter de kommentarer, som blevet indtastet på fanebladet <emph>Beskrivelse </emph> i dialogen <link href=\"text/shared/01/01100300.xhp\" name=\"File - Properties\"><emph>Filer - Egenskaber</emph></link>."
#: 04090004.xhp
msgctxt ""
@@ -7142,7 +7142,7 @@ msgctxt ""
"par_id3145262\n"
"help.text"
msgid "Revision number"
-msgstr ""
+msgstr "Revisionsnummer"
#: 04090004.xhp
msgctxt ""
@@ -7182,7 +7182,7 @@ msgctxt ""
"par_id3154784\n"
"help.text"
msgid "Inserts the contents of the properties found on the <emph>Custom Properties</emph>tab of the <link href=\"text/shared/01/01100300.xhp\" name=\"File - Properties\"><emph>File - Properties</emph></link> dialog."
-msgstr ""
+msgstr "Indsætter indholdet af de egenskaber, der findes på fanebladet <emph>Brugerdefineret</emph> i dialogen <link href=\"text/shared/01/01100300.xhp\" name=\"File - Properties\"><emph>Filer - Egenskaber</emph></link>."
#: 04090004.xhp
msgctxt ""
@@ -7214,7 +7214,7 @@ msgctxt ""
"par_id3150912\n"
"help.text"
msgid "Inserts the keywords as entered in the <emph>Description </emph>tab of the <link href=\"text/shared/01/01100300.xhp\" name=\"File - Properties\"><emph>File - Properties</emph></link> dialog."
-msgstr ""
+msgstr "Indsætter de nøgleord, der blev indtastet på fanebladet <emph>Beskrivelse</emph> i dialogen <link href=\"text/shared/01/01100300.xhp\" name=\"File - Properties\"><emph>Filer - Egenskaber</emph></link>."
#: 04090004.xhp
msgctxt ""
@@ -7230,7 +7230,7 @@ msgctxt ""
"par_id3146942\n"
"help.text"
msgid "Inserts the subject as entered in the <emph>Description </emph>tab of the <link href=\"text/shared/01/01100300.xhp\" name=\"File - Properties\"><emph>File - Properties</emph></link> dialog."
-msgstr ""
+msgstr "Indsætter emnet, emnet, der som indtastet på fanebladet <emph>Beskrivelse</emph> i dialogen <link href=\"text/shared/01/01100300.xhp\" name=\"File - Properties\"><emph>Filer - Egenskaber.</emph></link>."
#: 04090004.xhp
msgctxt ""
@@ -7246,7 +7246,7 @@ msgctxt ""
"par_id3150033\n"
"help.text"
msgid "Inserts the title as entered in the <emph>Description </emph>tab of the <link href=\"text/shared/01/01100300.xhp\" name=\"File - Properties\"><emph>File - Properties</emph></link> dialog."
-msgstr ""
+msgstr "Indsætter titlen som indtastet på fanebladet <emph>Beskrivelse </emph> i dialogen <link href=\"text/shared/01/01100300.xhp\" name=\"File - Properties\"><emph>Filer - Egenskaber</emph></link>."
#: 04090004.xhp
msgctxt ""
@@ -7326,7 +7326,7 @@ msgctxt ""
"par_id3150764\n"
"help.text"
msgid "<ahelp hid=\".\">Variable fields let you add dynamic content to your document. For example, you can use a variable to reset the page numbering.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Variabelfelter lader dig indsætte dynamisk indhold i dit dokument. For eksempel kan du bruge en variabel til at nulstille sidenummereringen.</ahelp>"
#: 04090005.xhp
msgctxt ""
@@ -7574,7 +7574,7 @@ msgctxt ""
"par_id7453535\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/fldvarpage/select\">Lists the available fields for the field type selected in the <emph>Type </emph>list. To insert a field, click the field, and then click <emph>Insert</emph>.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/fldvarpage/select\">Oplister de tilgængelige felter for felttypen, der blev valgt på listen <emph>Type.</emph> For at indsætte et felt skal du klikke på feltet så klikke på <emph>Indsæt</emph>.</ahelp>"
#: 04090005.xhp
msgctxt ""
@@ -7750,7 +7750,7 @@ msgctxt ""
"par_id3154471\n"
"help.text"
msgid "<ahelp hid=\".\">You can insert fields from any database, for example, address fields, into your document.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Du kan indsætte felter fra hvilken som helst database, for eksempel adressefelter, i dit dokument.</ahelp>"
#: 04090006.xhp
msgctxt ""
@@ -7942,7 +7942,7 @@ msgctxt ""
"par_id3156122\n"
"help.text"
msgid "Select the format of the field that you want to insert. This option is available for numerical, boolean, date and time fields."
-msgstr ""
+msgstr "Markér formatet for det felt, du vil indsætte. Denne indstilling er tilgængelig for numeriske, boolske, dato- og tidsfelter."
#: 04090006.xhp
msgctxt ""
@@ -8006,7 +8006,7 @@ msgctxt ""
"par_id3150093\n"
"help.text"
msgid "<ahelp hid=\".\">Lists the available user-defined formats.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Oplister de tilgængelige brugerdefinerede formater.</ahelp>"
#: 04090006.xhp
msgctxt ""
@@ -9462,7 +9462,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Edit fields"
-msgstr ""
+msgstr "Rediger felter"
#: 04090300.xhp
msgctxt ""
@@ -9470,7 +9470,7 @@ msgctxt ""
"bm_id991519648545589\n"
"help.text"
msgid "<bookmark_value>fields;editing</bookmark_value> <bookmark_value>edit;fields</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>felter;redigere</bookmark_value> <bookmark_value>redigere;felter</bookmark_value>"
#: 04090300.xhp
msgctxt ""
@@ -9478,7 +9478,7 @@ msgctxt ""
"hd_id431519648111292\n"
"help.text"
msgid "<link href=\"text/swriter/01/04090300.xhp\" name=\"Edit Fields\">Edit Fields</link>"
-msgstr ""
+msgstr "<link href=\"text/swriter/01/04090300.xhp\" name=\"Edit Fields\">Rediger felter</link>"
#: 04090300.xhp
msgctxt ""
@@ -9486,7 +9486,7 @@ msgctxt ""
"par_id361519648111293\n"
"help.text"
msgid "<variable id=\"editfields2\"><ahelp hid=\".\">Edit field contents.</ahelp></variable>"
-msgstr ""
+msgstr "<variable id=\"editfields2\"><ahelp hid=\".\">Rediger feltindhold.</ahelp></variable>"
#: 04090300.xhp
msgctxt ""
@@ -9494,7 +9494,7 @@ msgctxt ""
"par_id761519649446210\n"
"help.text"
msgid "Choose <item type=\"menuitem\">Fields</item> of the context menu of the selected field."
-msgstr ""
+msgstr "Vælg <item type=\"menuitem\">Felter</item> fra kontekstmenuen til det markerede felt.."
#: 04090300.xhp
msgctxt ""
@@ -9502,7 +9502,7 @@ msgctxt ""
"hd_id511519649431645\n"
"help.text"
msgid "Type pane"
-msgstr ""
+msgstr "Type-panel"
#: 04090300.xhp
msgctxt ""
@@ -9510,7 +9510,7 @@ msgctxt ""
"par_id761519649446212\n"
"help.text"
msgid "Shows the type of the selected field. The middle and left pane of the dialog contents depends on the field type. For a complete description of the fields see <link href=\"text/swriter/01/04090000.xhp\" name=\"fields\">Fields</link> page."
-msgstr ""
+msgstr "Viser det markerede felts type. Det midterste og venstre panel i dialogboksens indhold afhænger af felttypen. Find en fuldstændig beskrivelse af felterne på siden <link href=\"text/swriter/01/04090000.xhp\" name=\"fields\">Felter</link>."
#: 04090300.xhp
msgctxt ""
@@ -9526,7 +9526,7 @@ msgctxt ""
"par_id241519650657361\n"
"help.text"
msgid "When visible, opens a dialog to edit the contents of the field. The dialog depends on the type of the field."
-msgstr ""
+msgstr "Når det er synligt, åbner det en dialog til redigering af feltindholdet. Dialogen er afhængig af felttypen."
#: 04090300.xhp
msgctxt ""
@@ -9534,7 +9534,7 @@ msgctxt ""
"hd_id941519649436996\n"
"help.text"
msgid "Arrow buttons"
-msgstr ""
+msgstr "Pileknapper"
#: 04090300.xhp
msgctxt ""
@@ -9542,7 +9542,7 @@ msgctxt ""
"par_id951519649454340\n"
"help.text"
msgid "Use the arrow buttons to go to next or previous field of same type in the document."
-msgstr ""
+msgstr "Brug pileknapperne til at gå til den næste eller foregående felt af den samme type i dokumentet."
#: 04120000.xhp
msgctxt ""
@@ -11982,7 +11982,7 @@ msgctxt ""
"par_id3145582\n"
"help.text"
msgid "<ahelp hid=\".\">Displays the short name for the bibliography entry. You can only enter a name here if you are creating a new bibliography entry.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Viser det korte navn for litteraturlisteelementet. Du kan kun indtaste et navn her, hvis du opretter et nyt element i litterturlisten.</ahelp>"
#: 04120229.xhp
msgctxt ""
@@ -11990,7 +11990,7 @@ msgctxt ""
"par_id3153527\n"
"help.text"
msgid "<ahelp hid=\".\">This is where you select the desired entry data for your bibliography.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Det er her, du vælger de ønskede elementdata til din litteraturliste.</ahelp>"
#: 04120229.xhp
msgctxt ""
@@ -12006,7 +12006,7 @@ msgctxt ""
"par_id3143283\n"
"help.text"
msgid "<ahelp hid=\".\">Select the source for the bibliography entry.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Markér kilden til litteraturlisteelementet.</ahelp>"
#: 04120229.xhp
msgctxt ""
@@ -12582,7 +12582,7 @@ msgctxt ""
"hd_id3147402\n"
"help.text"
msgid "<link href=\"text/swriter/01/04150000.xhp\">Insert Table</link>"
-msgstr ""
+msgstr "<link href=\"text/swriter/01/04150000.xhp\">Indsæt tabel</link>"
#: 04150000.xhp
msgctxt ""
@@ -12590,7 +12590,7 @@ msgctxt ""
"par_id3149355\n"
"help.text"
msgid "<variable id=\"table_text\"><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></variable>"
-msgstr ""
+msgstr "<variable id=\"table_text\"><variable id=\"tabelletext\"><ahelp hid=\".\">Indsætter en tabel i dokumentet. Du kan også klikke på pilen, trække for at markere antallet af rækker og kolonner som tabellen skal bestå af, og så klikke i den sidste celle.</ahelp></variable></variable>"
#: 04150000.xhp
msgctxt ""
@@ -12614,7 +12614,7 @@ msgctxt ""
"par_idN10642\n"
"help.text"
msgid "To insert a table into a table, click in a cell in the table and choose <emph>Table - Insert Table</emph>."
-msgstr ""
+msgstr "For at indsætte en tabel i en tabel skal du klikke i en celle i tabellen og vælge <emph>Tabel - Indsæt - Tabel</emph>."
#: 04150000.xhp
msgctxt ""
@@ -12710,7 +12710,7 @@ msgctxt ""
"hd_id3143270\n"
"help.text"
msgid "Repeat heading rows on new pages"
-msgstr ""
+msgstr "Gentag tabeloverskrifter på nye sider"
#: 04150000.xhp
msgctxt ""
@@ -12726,7 +12726,7 @@ msgctxt ""
"par_idN10754\n"
"help.text"
msgid "Heading rows"
-msgstr ""
+msgstr "Overskriftsrækker"
#: 04150000.xhp
msgctxt ""
@@ -12742,7 +12742,7 @@ msgctxt ""
"hd_id3149821\n"
"help.text"
msgid "Don't split the table over pages"
-msgstr ""
+msgstr "Del ikke tabel over flere sider"
#: 04150000.xhp
msgctxt ""
@@ -12758,7 +12758,7 @@ msgctxt ""
"hd_id3147213\n"
"help.text"
msgid "List of AutoFormats"
-msgstr ""
+msgstr "Liste over AutoFormater"
#: 04150000.xhp
msgctxt ""
@@ -12766,7 +12766,7 @@ msgctxt ""
"par_id3149036\n"
"help.text"
msgid "<ahelp hid=\".\">Select a predefined <emph>AutoFormat</emph> for the new table.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Markér et foruddefineret <emph>AutoFormat</emph> til den nye side.</ahelp>"
#: 04150000.xhp
msgctxt ""
@@ -15646,7 +15646,7 @@ msgctxt ""
"par_id3149171\n"
"help.text"
msgid "<ahelp hid=\".\">Wraps text on the left side of the object if there is enough space.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Ombryder tekst på venstre side af objektet, hvis der er plads nok.</ahelp>"
#: 05060200.xhp
msgctxt ""
@@ -15678,7 +15678,7 @@ msgctxt ""
"par_id3150700\n"
"help.text"
msgid "<ahelp hid=\".\">Wraps text on the right side of the object if there is enough space.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Ombryder tekst på højre side af objektet, hvis der er plads nok.</ahelp>"
#: 05060200.xhp
msgctxt ""
@@ -20326,7 +20326,7 @@ msgctxt ""
"par_id3149500\n"
"help.text"
msgid "<variable id=\"autoformattabelle\"><ahelp hid=\".\">Automatically applies formats to the current table, including fonts, shading, and borders.</ahelp></variable>"
-msgstr ""
+msgstr "<variable id=\"autoformattabelle\"><ahelp hid=\".\">Anvender automatisk formater på den aktuelle tabel, inklusiv skrifttyper, skygger og rammer.</ahelp></variable>"
#: 05150101.xhp
msgctxt ""
@@ -20422,7 +20422,7 @@ msgctxt ""
"par_id3151168\n"
"help.text"
msgid "In the <emph>Add AutoFormat</emph> dialog, enter a name, and then click <emph>OK</emph>."
-msgstr ""
+msgstr "I dialogen <emph>AutoFormat</emph> indtaster du et navn og klikker så på <emph></emph>."
#: 05150101.xhp
msgctxt ""
@@ -20430,7 +20430,7 @@ msgctxt ""
"par_id3153391\n"
"help.text"
msgid "<ahelp visibility=\"hidden\" hid=\"modules/swriter/ui/stringinput/edit\">Enter a name for the new AutoFormat, and then click<emph> OK</emph>.</ahelp>"
-msgstr ""
+msgstr "<ahelp visibility=\"hidden\" hid=\"modules/swriter/ui/stringinput/edit\">Indtast et navn på det nye autoformat og klik på <emph> OK</emph>.</ahelp>"
#: 05150101.xhp
msgctxt ""
@@ -20446,7 +20446,7 @@ msgctxt ""
"par_id3150707\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/autoformattable/remove\">Deletes the selected table style. You cannot delete the \"Default Style\" table style.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/autoformattable/remove\">Sletter den markerede tabeltypografi. Du kan ikke slette tabeltypografien \"Standardtypografi\".</ahelp>"
#: 05150101.xhp
msgctxt ""
@@ -20558,7 +20558,7 @@ msgctxt ""
"par_id3149490\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/autoformattable/rename\">Changes the name of the selected table style. You cannot rename the \"Default Style\" table style.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/autoformattable/rename\">Ændrer navnet på den valgte tabeltypografi. Du kan ikke ændre navnet på tabeltypografien \"Standardtypografi\".</ahelp>"
#: 05150104.xhp
msgctxt ""
@@ -20790,7 +20790,7 @@ msgctxt ""
"par_id3149029\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/queryredlinedialog/ok\">Applies all of the formatting changes.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/queryredlinedialog/ok\">Anvendeer alle ænderinger i formateringen.</ahelp>"
#: 05150300.xhp
msgctxt ""
@@ -20806,7 +20806,7 @@ msgctxt ""
"par_id3149711\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/queryredlinedialog/cancel\">Rejects all of the formatting changes.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/queryredlinedialog/cancel\">Afviser alle ændringer i formateringen.</ahelp>"
#: 05150300.xhp
msgctxt ""
@@ -20822,7 +20822,7 @@ msgctxt ""
"par_id3147570\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/queryredlinedialog/edit\">Opens a dialog where you can accept or reject AutoCorrect changes. You can also view the changes made by a specific author or on a specific date.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/queryredlinedialog/edit\">Åbner en dialog, hvor du kan acceptere eller afvise Autokorrekturændringer. Du kan også vise ændringerne fra en bestemt forfatter eller på en bestemt dato.</ahelp>"
#: 05150300.xhp
msgctxt ""
@@ -20854,7 +20854,7 @@ msgctxt ""
"par_id3083446\n"
"help.text"
msgid "<variable id=\"vorlagentext\"><ahelp hid=\".\">Imports formatting styles from another document or template into the current document.</ahelp></variable>"
-msgstr ""
+msgstr "<variable id=\"vorlagentext\"><ahelp hid=\".\">Importerer formattypografier fra et andet dokument eller en anden skabelon ind i det aktuelle dokument.</ahelp></variable>"
#: 05170000.xhp
msgctxt ""
@@ -21134,7 +21134,7 @@ msgctxt ""
"par_id3147401\n"
"help.text"
msgid "<ahelp hid=\".\">Combines two consecutive tables into a single table. The tables must be directly next to each other and not separated by an empty paragraph.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Kombinerer to på hinanden følgende tabeller til en enkelt tabel. Tabellerne skal følge direkte efter hinanden og må ikke være adskilt af et tomt afsnit.</ahelp>"
#: 05200000.xhp
msgctxt ""
@@ -23590,7 +23590,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Adding Signature Line in Text Documents"
-msgstr ""
+msgstr "Tilføjelse af signaturlinje i tekstdokumenter"
#: addsignatureline.xhp
msgctxt ""
@@ -23598,7 +23598,7 @@ msgctxt ""
"bm_id821526779524753\n"
"help.text"
msgid "<bookmark_value>digital signature;add signature line</bookmark_value><bookmark_value>signature line;adding</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>digital signatur;tilføj signaturlinje</bookmark_value><bookmark_value>signaturlinje;tilføje</bookmark_value>"
#: addsignatureline.xhp
msgctxt ""
@@ -23606,7 +23606,7 @@ msgctxt ""
"hd_id501526421873817\n"
"help.text"
msgid "<variable id=\"addsignatureline01\"><link href=\"text/swriter/01/addsignatureline.xhp\" name=\"Adding Signature Line\">Adding a Signature Line in Text Documents</link></variable>"
-msgstr ""
+msgstr "<variable id=\"addsignatureline01\"><link href=\"text/swriter/01/addsignatureline.xhp\" name=\"Adding Signature Line\">Tilføjelse af signaturlinje i tekstdokumenter</link></variable>"
#: addsignatureline.xhp
msgctxt ""
@@ -23614,7 +23614,7 @@ msgctxt ""
"par_id991526423190756\n"
"help.text"
msgid "%PRODUCTNAME Writer can insert a graphic box inside the document representing a signature line of the document."
-msgstr ""
+msgstr "%PRODUCTNAME Writer kan inde i dokumentet indsætte et grafikfelt, der repræsenterer dokumentets signaturlinje."
#: addsignatureline.xhp
msgctxt ""
@@ -23622,7 +23622,7 @@ msgctxt ""
"par_id751526436546030\n"
"help.text"
msgid "<image src=\"media/helpimg/sw_signatureline01.png\" id=\"img_id91526436546031\" width=\"311px\" height=\"179px\"> <alt id=\"alt_id351526436546031\">Signature Line Box</alt> </image>"
-msgstr ""
+msgstr "<image src=\"media/helpimg/sw_signatureline01.png\" id=\"img_id91526436546031\" width=\"311px\" height=\"179px\"> <alt id=\"alt_id351526436546031\">feltet Signaturlinje</alt> </image>"
#: addsignatureline.xhp
msgctxt ""
@@ -23630,7 +23630,7 @@ msgctxt ""
"par_id651526423393786\n"
"help.text"
msgid "The signature line displays an horizontal line, a location mark, the name, title and e-mail of signer."
-msgstr ""
+msgstr "Signaturlinjen viser en vandret linje, en stednavn, underskriverens navn, titel og e-mail."
#: addsignatureline.xhp
msgctxt ""
@@ -23638,7 +23638,7 @@ msgctxt ""
"hd_id631526467960460\n"
"help.text"
msgid "Name"
-msgstr ""
+msgstr "Navn"
#: addsignatureline.xhp
msgctxt ""
@@ -23646,7 +23646,7 @@ msgctxt ""
"par_id351526467968348\n"
"help.text"
msgid "Insert the name of the signer. The name is displayed in the signature line graphic box."
-msgstr ""
+msgstr "Indsæt underskriverens navn. Navnet vises i grafikfeltet signaturlinje."
#: addsignatureline.xhp
msgctxt ""
@@ -23654,7 +23654,7 @@ msgctxt ""
"hd_id171526467974440\n"
"help.text"
msgid "Title"
-msgstr ""
+msgstr "Titel"
#: addsignatureline.xhp
msgctxt ""
@@ -23662,7 +23662,7 @@ msgctxt ""
"par_id701526467979209\n"
"help.text"
msgid "Enter the title of the signer. The title is displayed in the signature line graphic box."
-msgstr ""
+msgstr "Indsæt underskriverens titel. Titlen vises i grafikfeltet Signaturlinje."
#: addsignatureline.xhp
msgctxt ""
@@ -23670,7 +23670,7 @@ msgctxt ""
"hd_id431526467986157\n"
"help.text"
msgid "Email"
-msgstr ""
+msgstr "E-mail"
#: addsignatureline.xhp
msgctxt ""
@@ -23678,7 +23678,7 @@ msgctxt ""
"par_id111526467993387\n"
"help.text"
msgid "Enter the e-mail of the signer. The email is not displayed in the signature line graphic box, and is be used for the digital signature."
-msgstr ""
+msgstr "Indsæt underskriverens e-mail. E-mailen vises ikke i grafikfeltet Signaturlinje, men skal bruges til den digitale signatur."
#: addsignatureline.xhp
msgctxt ""
@@ -23686,7 +23686,7 @@ msgctxt ""
"hd_id451526468019876\n"
"help.text"
msgid "Signer can add comments"
-msgstr ""
+msgstr "Underskriver kan tilføje kommentarer"
#: addsignatureline.xhp
msgctxt ""
@@ -23694,7 +23694,7 @@ msgctxt ""
"par_id531526562791579\n"
"help.text"
msgid "Enable signer to insert comments in the Sign Signature Line dialog at time of signature."
-msgstr ""
+msgstr "Sætter underskriveren i stand til at indsætte kommentarer i dialogen Underskriv signaturlinje på tidspunktet for underskrivelsen."
#: addsignatureline.xhp
msgctxt ""
@@ -23702,7 +23702,7 @@ msgctxt ""
"hd_id31526468046686\n"
"help.text"
msgid "Show sign date in signature line"
-msgstr ""
+msgstr "Vis underskriftsdato i signaturlinjen"
#: addsignatureline.xhp
msgctxt ""
@@ -23710,7 +23710,7 @@ msgctxt ""
"par_id11526468051934\n"
"help.text"
msgid "Mark this checkbox to display the date of the signature, at the time when the document is digitally signed."
-msgstr ""
+msgstr "Markér dette afkrydsningfelt for at vise signaturens dato på det tidspunkt, hvor dokumentet underskrives."
#: addsignatureline.xhp
msgctxt ""
@@ -23718,7 +23718,7 @@ msgctxt ""
"hd_id791526468057743\n"
"help.text"
msgid "Instructions to the signer"
-msgstr ""
+msgstr "Instruktioner til underskriver:"
#: addsignatureline.xhp
msgctxt ""
@@ -23726,7 +23726,7 @@ msgctxt ""
"par_id131526560799876\n"
"help.text"
msgid "Insert instructions for the signer. The instructions appears in the Sign Signature Line dialog box, at the time of signature."
-msgstr ""
+msgstr "Indsæt instruktioner til underskriveren. Instruktionerne vises i dialogboksen Signer signaturlinje på tidspunktet for underskrivelsen."
#: format_object.xhp
msgctxt ""
@@ -26358,7 +26358,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Signing the Signature Line"
-msgstr ""
+msgstr "Underskrivelse af signaturlinjen"
#: signsignatureline.xhp
msgctxt ""
@@ -26366,7 +26366,7 @@ msgctxt ""
"bm_id651526779220785\n"
"help.text"
msgid "<bookmark_value>digital signature;sign signature line</bookmark_value><bookmark_value>signature line;signing</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>digital signatur;signer signaturlinje</bookmark_value><bookmark_value>signaturlinie;signer</bookmark_value>"
#: signsignatureline.xhp
msgctxt ""
@@ -26374,7 +26374,7 @@ msgctxt ""
"hd_id401526575112776\n"
"help.text"
msgid "<variable id=\"signsignatureline01\"><link href=\"text/swriter/01/signsignatureline.xhp\" name=\"Sign Signature Line\">Digitally Signing the Signature Line</link></variable>"
-msgstr ""
+msgstr "<variable id=\"signsignatureline01\"><link href=\"text/swriter/01/signsignatureline.xhp\" name=\"Sign Signature Line\">Signer signaturlinjen digitalt.</link></variable>"
#: signsignatureline.xhp
msgctxt ""
@@ -26382,7 +26382,7 @@ msgctxt ""
"par_id611526575121298\n"
"help.text"
msgid "%PRODUCTNAME Writer lets you sign digitally a signature line."
-msgstr ""
+msgstr "%PRODUCTNAME Writer lader dig signere en signaturlinje digitalt."
#: signsignatureline.xhp
msgctxt ""
@@ -26390,7 +26390,7 @@ msgctxt ""
"par_id511526575127337\n"
"help.text"
msgid "On signing a signature line, %PRODUCTNAME Writer fills the line with the name of signer, adds the digital certificate issuer information and optionally insert the date of signature."
-msgstr ""
+msgstr "Under signering af en signaturlinje udfylder %PRODUCTNAME linjen med underskriverens navn, tilføjer information om udstederen af den digitale signatur og indsætter efter dit valg dato for underskrivelsen."
#: signsignatureline.xhp
msgctxt ""
@@ -26398,7 +26398,7 @@ msgctxt ""
"par_id291526564031387\n"
"help.text"
msgid "Select the signature line graphic object context menu. Choose <emph>Sign Signature Line</emph>."
-msgstr ""
+msgstr "Vælg kontekstmenuen til det grafiske objekt Signaturlinje. Vælg <emph>Signer Signaturlinje</emph>."
#: signsignatureline.xhp
msgctxt ""
@@ -26406,7 +26406,7 @@ msgctxt ""
"hd_id311526563971364\n"
"help.text"
msgid "Your Name"
-msgstr ""
+msgstr "Dit navn"
#: signsignatureline.xhp
msgctxt ""
@@ -26414,7 +26414,7 @@ msgctxt ""
"par_id511526564217965\n"
"help.text"
msgid "Enter your name as signer of the document. Your name will be inserted above the signature horizontal line."
-msgstr ""
+msgstr "Indtast dit navn som underskriver af dokument. Dit navn vil blive indsat under signaturens vandrette linje."
#: signsignatureline.xhp
msgctxt ""
@@ -26422,7 +26422,7 @@ msgctxt ""
"hd_id401526563978041\n"
"help.text"
msgid "Certificate"
-msgstr ""
+msgstr "Certifikat"
#: signsignatureline.xhp
msgctxt ""
@@ -26430,7 +26430,7 @@ msgctxt ""
"par_id31526564223526\n"
"help.text"
msgid "Click on the Select Certificate button to open the Select Certificate dialog box, where your certificates are listed. Select the certificate suitable for signing the document."
-msgstr ""
+msgstr "Klik på Vælg certifikat knappen for at åbne dialogboksen Vælg Certifikat, hvor dine certifikater vises. Vælg det certifikat der er relevant for underskrift af det aktuelle dokument."
#: signsignatureline.xhp
msgctxt ""
@@ -26438,7 +26438,7 @@ msgctxt ""
"par_id251526576138883\n"
"help.text"
msgid "The information of the certificate issuer is inserted in the bottom of the Signature Line object."
-msgstr ""
+msgstr "Informationer om certifikatets udsteder indsættes i bunden af signaturlinjen."
#: signsignatureline.xhp
msgctxt ""
@@ -26446,7 +26446,7 @@ msgctxt ""
"hd_id301526563985718\n"
"help.text"
msgid "Instructions from the document creator"
-msgstr ""
+msgstr "Instruktioner fra dokumentets ophavsmand:"
#: signsignatureline.xhp
msgctxt ""
@@ -26454,7 +26454,7 @@ msgctxt ""
"par_id271526564228571\n"
"help.text"
msgid "This area displays the instructions entered by the document creator when <link href=\"text/swriter/01/addsignatureline.xhp\" name=\"Adding the Signature Line\">adding the signature line</link>."
-msgstr ""
+msgstr "Dette område viser instruktioner indtastet af dokumentets ophavsmand når <link href=\"text/swriter/01/addsignatureline.xhp\" name=\"Adding the Signature Line\">tilføjelse af signaturlinjen</link> udføres."
#: signsignatureline.xhp
msgctxt ""
@@ -26462,7 +26462,7 @@ msgctxt ""
"hd_id161526563992082\n"
"help.text"
msgid "Add comments"
-msgstr ""
+msgstr "Tilføj kommentar"
#: signsignatureline.xhp
msgctxt ""
@@ -26470,7 +26470,7 @@ msgctxt ""
"par_id21526564234712\n"
"help.text"
msgid "Enter comments about the signature. The comments are displayed in the <emph>Description</emph> field of the certificate."
-msgstr ""
+msgstr "Tilføj kommentar om signaturen. Kommentarer vises i feltet <emph>Beskrivelse</emph> for certifikatet."
#: signsignatureline.xhp
msgctxt ""
@@ -26478,7 +26478,7 @@ msgctxt ""
"par_id621526576147414\n"
"help.text"
msgid "If enabled when the signature line was created, the date of signature is inserted on the top right of the signature line object."
-msgstr ""
+msgstr "Hvis aktiveret da signaturlinjen blev oprettet, indsættes datoen for underskriften i øverste højre hjørne af signaturlinjen."
#: signsignatureline.xhp
msgctxt ""
@@ -26486,7 +26486,7 @@ msgctxt ""
"par_id21526579319036\n"
"help.text"
msgid "<image src=\"media/helpimg/sw_signatureline02.png\" id=\"img_id551526579319036\" width=\"280px\" height=\"173px\"><alt id=\"alt_id641526579319036\">Signed Signature Line</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/helpimg/sw_signatureline02.png\" id=\"img_id551526579319036\" width=\"280px\" height=\"173px\"><alt id=\"alt_id641526579319036\">Underskrevet signaturlinje</alt></image>"
#: title_page.xhp
msgctxt ""
@@ -26790,7 +26790,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Page Watermark"
-msgstr ""
+msgstr "Sidens vandmærke"
#: watermark.xhp
msgctxt ""
@@ -26798,7 +26798,7 @@ msgctxt ""
"hd_id781516897374563\n"
"help.text"
msgid "<link href=\"text/swriter/01/watermark.xhp\" name=\"Watermark\">Page Watermark</link>"
-msgstr ""
+msgstr "<link href=\"text/swriter/01/watermark.xhp\" name=\"Watermark\">Sidens vandmærke</link>"
#: watermark.xhp
msgctxt ""
@@ -26806,7 +26806,7 @@ msgctxt ""
"par_id121516897374563\n"
"help.text"
msgid "<variable id=\"waterm01\"><ahelp hid=\".\">Insert a watermark text in the current page style background.</ahelp></variable>"
-msgstr ""
+msgstr "<variable id=\"waterm01\"><ahelp hid=\".\">Indsætter en vandmærketekst i den aktuelle sidetypografis baggrund.</ahelp></variable>"
#: watermark.xhp
msgctxt ""
@@ -26814,7 +26814,7 @@ msgctxt ""
"bm_id171516897713635\n"
"help.text"
msgid "<bookmark_value>watermark;text documents</bookmark_value> <bookmark_value>watermark;page background</bookmark_value> <bookmark_value>page background;watermark</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>vandmærke;tekstdokumenter</bookmark_value> <bookmark_value>vandmærke;sidebaggrund</bookmark_value> <bookmark_value>sidebaggund;vandmærke</bookmark_value>"
#: watermark.xhp
msgctxt ""
@@ -26822,7 +26822,7 @@ msgctxt ""
"par_id761516899094991\n"
"help.text"
msgid "Choose <item type=\"menuitem\">Format - Watermark</item>."
-msgstr ""
+msgstr "Vælg <item type=\"menuitem\">Formater - Vandmærke</item>"
#: watermark.xhp
msgctxt ""
@@ -26830,7 +26830,7 @@ msgctxt ""
"par_id521516905298143\n"
"help.text"
msgid "A watermark is an identifying image or pattern in paper that appears as various shades of brightness when viewed by transmitted light. Watermarks were originally created directly during paper manufacturing to discourage counterfeiting of documents, currency bills, stamps and more."
-msgstr ""
+msgstr "Et vandmærke er identitetgivende billede eller mønster i papir, der ses som varierende grader af klarhed mod gennemtrængende lys. Vandmærker blev oprindelig fremstillet allerede under fremstillingen af papir for at modvirke falskneri af dokumenter, pengesedler, frimærker og så videre."
#: watermark.xhp
msgctxt ""
@@ -26838,7 +26838,7 @@ msgctxt ""
"par_id201516905302881\n"
"help.text"
msgid "Use watermarks in %PRODUCTNAME Writer to simulate a paper watermark on the document pages."
-msgstr ""
+msgstr "Brug vandmærker i %PRODUCTNAME Writer til at efterligne et vandmærke i papiret på siderne i dit dokument."
#: watermark.xhp
msgctxt ""
@@ -26846,7 +26846,7 @@ msgctxt ""
"par_id731516900297974\n"
"help.text"
msgid "Fill the dialog settings below."
-msgstr ""
+msgstr "Udfyld dialog indstillingerne herunder"
#: watermark.xhp
msgctxt ""
@@ -26854,7 +26854,7 @@ msgctxt ""
"par_id501516905708560\n"
"help.text"
msgid "The values entered applies to the actual page style."
-msgstr ""
+msgstr "De indtastede værdier gælder den aktuelle sidetypografi."
#: watermark.xhp
msgctxt ""
@@ -26862,7 +26862,7 @@ msgctxt ""
"par_id47418\n"
"help.text"
msgid "<image id=\"img_id16673\" src=\"media/screenshots/modules/swriter/ui/watermarkdialog/WatermarkDialog.png\" width=\"11cm\" height=\"8cm\"><alt id=\"alt_id47763\">Watermark dialog</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id16673\" src=\"media/screenshots/modules/swriter/ui/watermarkdialog/WatermarkDialog.png\" width=\"11cm\" height=\"8cm\"><alt id=\"alt_id47763\">Dialogboksen Vandmærke</alt></image>"
#: watermark.xhp
msgctxt ""
@@ -26870,7 +26870,7 @@ msgctxt ""
"hd_id341516900303248\n"
"help.text"
msgid "Text"
-msgstr ""
+msgstr "Tekst"
#: watermark.xhp
msgctxt ""
@@ -26878,7 +26878,7 @@ msgctxt ""
"par_id181516900309119\n"
"help.text"
msgid "<ahelp hid=\".\">Enter the watermark text to be displayed as image in the page background.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Indtast den vandmærke tekst, der skal vises som billede i sidens baggrund.</ahelp>"
#: watermark.xhp
msgctxt ""
@@ -26886,7 +26886,7 @@ msgctxt ""
"hd_id171516900315575\n"
"help.text"
msgid "Font"
-msgstr ""
+msgstr "Skrifttype"
#: watermark.xhp
msgctxt ""
@@ -26894,7 +26894,7 @@ msgctxt ""
"par_id781516900322735\n"
"help.text"
msgid "<ahelp hid=\".\">Select the font from the list.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Vælger skrifttype på listen.</ahelp>"
#: watermark.xhp
msgctxt ""
@@ -26902,7 +26902,7 @@ msgctxt ""
"par_id1001516900331585\n"
"help.text"
msgid "You cannot choose font size or font style for the watermark text. The text size will be scaled to fit in one line in the page background."
-msgstr ""
+msgstr "Du kan ikke vælge størrelse eller typografi til skriften i vandmærkets tekst. Tekststørrelsen bliver skaleret til at passe til en linje i sidens baggrund."
#: watermark.xhp
msgctxt ""
@@ -26910,7 +26910,7 @@ msgctxt ""
"hd_id721516900337255\n"
"help.text"
msgid "Angle"
-msgstr ""
+msgstr "Vinkel"
#: watermark.xhp
msgctxt ""
@@ -26918,7 +26918,7 @@ msgctxt ""
"par_id531516900343270\n"
"help.text"
msgid "<ahelp hid=\".\">Select the slant angle for the watermark. A positive angle displays the watermark from bottom to top. A negative value displays the watermark text from top to bottom.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Vælg en hældningvinkel til vandmærket. En positiv vinkel viser vandmærket fra bund til top. En negativ værdi viser vandmærkets tekst fra top til bund.</ahelp>"
#: watermark.xhp
msgctxt ""
@@ -26926,7 +26926,7 @@ msgctxt ""
"hd_id511516900348606\n"
"help.text"
msgid "Transparency"
-msgstr ""
+msgstr "Gennemsigtighed"
#: watermark.xhp
msgctxt ""
@@ -26934,7 +26934,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 ""
+msgstr "<ahelp hid=\".\">Vælg niveau for vandmærkets gennemsigtighed. Værdien 0% medfører et ugennemsigtigt vardmærke og værdien 100% et helt gennemsigtigt (usynligt).</ahelp>"
#: watermark.xhp
msgctxt ""
@@ -26942,7 +26942,7 @@ msgctxt ""
"hd_id321516900368799\n"
"help.text"
msgid "Color"
-msgstr ""
+msgstr "Farve"
#: watermark.xhp
msgctxt ""
@@ -26950,7 +26950,7 @@ msgctxt ""
"par_id521516900373461\n"
"help.text"
msgid "<ahelp hid=\".\">Select a color from the drop-down box.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Vælg en farve fra rullelisten.</ahelp>"
#: watermark.xhp
msgctxt ""
@@ -26958,7 +26958,7 @@ msgctxt ""
"hd_id771516906476223\n"
"help.text"
msgid "To change a watermark contents or setting."
-msgstr ""
+msgstr "Ændring af et vandmærkes indhold eller indstilling."
#: watermark.xhp
msgctxt ""
@@ -26966,7 +26966,7 @@ msgctxt ""
"par_id831516906589936\n"
"help.text"
msgid "If the watermark in use is a text inserted by the <item type=\"menuitem\">Format - Watermark</item> menu command or by the <link href=\"text/swriter/classificationbar.xhp\" name=\"classification bar\">document classification settings</link>, you can edit the contents and settings on opening the watermark dialog."
-msgstr ""
+msgstr "Hvis vandmærket i brug er tekst, der er indsat fra menukommandoen <item type=\"menuitem\">Formater - Vandmærke</item> eller af <link href=\"text/swriter/classificationbar.xhp\" name=\"classification bar\">dokumentklassifikations-indstillingerne</link>, kan du redigere indholdet og indstillingerne ved at åbne dialogen Vandmærke."
#: watermark.xhp
msgctxt ""
@@ -26974,7 +26974,7 @@ msgctxt ""
"par_id611516900724619\n"
"help.text"
msgid "<link href=\"text/swriter/classificationbar.xhp#bm_id030820161856432825\" name=\"classification watermark\">Document classification watermarks</link>"
-msgstr ""
+msgstr "<link href=\"text/swriter/classificationbar.xhp#bm_id030820161856432825\" name=\"classification watermark\">Dokumentklassifikationsvandmærker</link>"
#: watermark.xhp
msgctxt ""
@@ -26982,4 +26982,4 @@ msgctxt ""
"par_id891516901777257\n"
"help.text"
msgid "<link href=\"text/swriter/guide/pagebackground.xhp#bm_id8431653\" name=\"page background\">Page background</link>"
-msgstr ""
+msgstr "<link href=\"text/swriter/guide/pagebackground.xhp#bm_id8431653\" name=\"page background\">Sidebaggrund</link>"
diff --git a/source/da/helpcontent2/source/text/swriter/guide.po b/source/da/helpcontent2/source/text/swriter/guide.po
index 403478581ef..bc4920235c1 100644
--- a/source/da/helpcontent2/source/text/swriter/guide.po
+++ b/source/da/helpcontent2/source/text/swriter/guide.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2018-05-08 15:11+0200\n"
-"PO-Revision-Date: 2018-03-07 18:40+0000\n"
-"Last-Translator: scootergrisen <scootergrisen@gmail.com>\n"
+"PO-Revision-Date: 2018-05-26 19:15+0000\n"
+"Last-Translator: SteenRønnow <steen.roennow@mail.dk>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: da\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1520448056.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1527362118.000000\n"
#: anchor_object.xhp
msgctxt ""
@@ -366,7 +366,7 @@ msgctxt ""
"par_id3152867\n"
"help.text"
msgid "Choose <emph>Tools - AutoCorrect</emph>, and ensure that <emph>While Typing</emph> is selected."
-msgstr ""
+msgstr "Vælg <emph>Formater - Autokorrektur</emph>, og vær sikker på at <emph>Under skrivning</emph> er valgt."
#: auto_numbering.xhp
msgctxt ""
@@ -470,7 +470,7 @@ msgctxt ""
"par_idN10846\n"
"help.text"
msgid "To turn off most AutoCorrect features, remove the check mark from the menu <emph>Tools - AutoCorrect - While Typing</emph>."
-msgstr ""
+msgstr "For at slå de fleste Autokorrektur-funktioner, fjerner du tjekmærket fra menuen <emph>funktioner - Autokorrektur - Under skrivning</emph>."
#: auto_off.xhp
msgctxt ""
@@ -2254,7 +2254,7 @@ msgctxt ""
"par_id3154243\n"
"help.text"
msgid "Choose <emph>Table - Insert Table</emph>, and insert a table with one column and more than one row into a text document."
-msgstr ""
+msgstr "Vælg <emph>Tabel - Indsæt tabel</emph> og indsæt en tavel med en kolonne og mere end en række i tekstdokumentet."
#: calculate_intable.xhp
msgctxt ""
@@ -3790,7 +3790,7 @@ msgctxt ""
"par_id3147812\n"
"help.text"
msgid "Opens a dialog to insert the object corresponding to the placeholder, except for text placeholders. For text placeholders, click on the placeholder and type over it."
-msgstr ""
+msgstr "Åbner en dialog til indsættelse af et objekt svarende til pladsholderen undtagen tekst-pladsholdere. Tekst-pladsholdere klikker du på og overskriver."
#: fields.xhp
msgctxt ""
@@ -3870,7 +3870,7 @@ msgctxt ""
"par_id271519643331154\n"
"help.text"
msgid "Placeholders are not updated."
-msgstr ""
+msgstr "Pladsholdere er ikke opdaterede."
#: fields_date.xhp
msgctxt ""
@@ -9470,7 +9470,7 @@ msgctxt ""
"par_id2212591\n"
"help.text"
msgid "<link href=\"https://wiki.documentfoundation.org/Documentation/How_Tos/Setting_up_a_Style_for_Numbering_Lines_in_Code_Listings\" name=\"wiki.documentfoundation.org Setting up a Style for Numbering Lines in Code Listings\">Wiki page about numbering paragraphs by styles</link>"
-msgstr ""
+msgstr "<link href=\"https://wiki.documentfoundation.org/Documentation/How_Tos/Setting_up_a_Style_for_Numbering_Lines_in_Code_Listings\" name=\"wiki.documentfoundation.org Setting up a Style for Numbering Lines in Code Listings\">Wiki-side om nummerering af afsnit ved hjælp af typografier.</link>"
#: numbering_paras.xhp
msgctxt ""
@@ -9598,7 +9598,7 @@ msgctxt ""
"par_id6943571\n"
"help.text"
msgid "<link href=\"https://wiki.documentfoundation.org/Documentation/How_Tos/Setting_up_a_Style_for_Numbering_Lines_in_Code_Listings\" name=\"wiki.documentfoundation.org Setting up a Style for Numbering Lines in Code Listings\">Wiki page about numbering paragraphs by styles</link>"
-msgstr ""
+msgstr "<link href=\"https://wiki.documentfoundation.org/Documentation/How_Tos/Setting_up_a_Style_for_Numbering_Lines_in_Code_Listings\" name=\"wiki.documentfoundation.org Setting up a Style for Numbering Lines in Code Listings\">Wiki-side om at nummerere afsnit ved hjælp af typografier</link>"
#: page_break.xhp
msgctxt ""
@@ -10238,7 +10238,7 @@ msgctxt ""
"par_id399182\n"
"help.text"
msgid "You can now for example insert a footer for the \"Default\" page style only, or insert footers in both page styles, but with differently formatted page number fields."
-msgstr ""
+msgstr "Du kan nu for eksempel indsætte en sidefod alene i sidetypografien \"Standard\" eller indsætte sidefødder i tosidede typografier, men med forskelligt formaterede sidenumre."
#: pagenumbers.xhp
msgctxt ""
@@ -12038,7 +12038,7 @@ msgctxt ""
"par_id3153388\n"
"help.text"
msgid "Choose <emph>Tools - AutoCorrect - Apply</emph>."
-msgstr ""
+msgstr "Vælg <emph>Funktioner - Autokorrektur - Anvend</emph>."
#: reset_format.xhp
msgctxt ""
@@ -13886,7 +13886,7 @@ msgctxt ""
"par_id3149609\n"
"help.text"
msgid "Choose <emph>Table - Insert Table</emph>."
-msgstr ""
+msgstr "Vælg <emph>Tabel - Indsæt tabel...</emph>."
#: table_insert.xhp
msgctxt ""
@@ -14166,7 +14166,7 @@ msgctxt ""
"par_id3145098\n"
"help.text"
msgid "Choose <emph>Table - Insert Table</emph>."
-msgstr ""
+msgstr "Vælg <emph>Tabel - Indsæt Tabel...</emph>."
#: table_repeat_multiple_headers.xhp
msgctxt ""
@@ -14174,7 +14174,7 @@ msgctxt ""
"par_id3156240\n"
"help.text"
msgid "Select the <item type=\"menuitem\">Heading</item> and the <item type=\"menuitem\">Repeat heading rows on new pages</item> check boxes."
-msgstr ""
+msgstr "Marker afkrydsningsfelterne <item type=\"menuitem\">Overskrift</item> og <item type=\"menuitem\">Gentag tabeloverskrift</item>."
#: table_repeat_multiple_headers.xhp
msgctxt ""
diff --git a/source/da/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po b/source/da/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po
index 863fbf50a42..c9fea06dda9 100644
--- a/source/da/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po
+++ b/source/da/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.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: 2016-11-09 14:10+0100\n"
-"PO-Revision-Date: 2017-04-19 09:45+0000\n"
-"Last-Translator: laugesen <jesper@laugesen.org>\n"
+"PO-Revision-Date: 2018-05-27 18:01+0000\n"
+"Last-Translator: SteenRønnow <steen.roennow@mail.dk>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: da\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1492595123.000000\n"
+"X-POOTLE-MTIME: 1527444074.000000\n"
#: Options.xhp
msgctxt ""
@@ -102,7 +102,7 @@ msgctxt ""
"par_id0503200917103710\n"
"help.text"
msgid "When guessing variable bounds, this threshold specifies, how the initial values are shifted to build the bounds. For an example how these values are calculated, please refer to the Manual in the Wiki."
-msgstr "Når der gættes på variabelgrænser, angiver denne tærskel, hvordan startværdien ombyttes for at bygge grænser. For et eksempel på hvordan disse værdier beregnes, henvises du til manualen på Wiki'en."
+msgstr "Når der gættes på variabelgrænser, angiver denne tærskel, hvordan startværdien ændres for at bygge grænser. For et eksempel på hvordan disse værdier beregnes, henvises du til manualen på Wiki'en."
#: Options.xhp
msgctxt ""
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 93a59a6f333..60ca0e6f904 100644
--- a/source/da/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/da/officecfg/registry/data/org/openoffice/Office/UI.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: 2018-05-22 13:17+0200\n"
-"PO-Revision-Date: 2018-05-24 05:14+0000\n"
-"Last-Translator: SteenRønnow <steen.roennow@mail.dk>\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
+"PO-Revision-Date: 2018-06-08 22:39+0000\n"
+"Last-Translator: Leif Lodahl <leiflodahl@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: da\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1527138864.000000\n"
+"X-POOTLE-MTIME: 1528497544.000000\n"
#: BaseWindowState.xcu
msgctxt ""
@@ -149,7 +149,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Form Horizontal Scroll Bar"
-msgstr ""
+msgstr "Formular vandret rullebjælke"
#: BasicIDECommands.xcu
msgctxt ""
@@ -26520,8 +26520,8 @@ msgctxt ""
"..WriterCommands.UserInterface.Commands..uno:TextAttributes\n"
"Label\n"
"value.text"
-msgid "Text Attributes"
-msgstr "Tekstattributter"
+msgid "Text Attributes..."
+msgstr "Tekstattributter..."
#: WriterCommands.xcu
msgctxt ""
diff --git a/source/da/readlicense_oo/docs.po b/source/da/readlicense_oo/docs.po
index c09b0204b5b..f99b4f7e118 100644
--- a/source/da/readlicense_oo/docs.po
+++ b/source/da/readlicense_oo/docs.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: 2018-04-17 15:54+0200\n"
-"PO-Revision-Date: 2018-04-30 17:16+0000\n"
-"Last-Translator: SteenRønnow <steen.roennow@mail.dk>\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
+"PO-Revision-Date: 2018-06-08 22:39+0000\n"
+"Last-Translator: Leif Lodahl <leiflodahl@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: da\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1525108592.000000\n"
+"X-POOTLE-MTIME: 1528497551.000000\n"
#: readme.xrm
msgctxt ""
@@ -117,8 +117,8 @@ msgctxt ""
"readme.xrm\n"
"macxiOSX\n"
"readmeitem.text"
-msgid "MacOSX 10.8 (Mountain Lion) or higher"
-msgstr "MacOSX 10.8 (Mountain Lion) eller højere"
+msgid "MacOSX 10.9 (Mavericks) or higher"
+msgstr "MacOSX 10.9 (Mavericks) eller nyere"
#: readme.xrm
msgctxt ""
diff --git a/source/da/sc/messages.po b/source/da/sc/messages.po
index cc03826a421..04d0ab55fa6 100644
--- a/source/da/sc/messages.po
+++ b/source/da/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: 2018-05-22 13:16+0200\n"
-"PO-Revision-Date: 2018-05-24 05:18+0000\n"
-"Last-Translator: SteenRønnow <steen.roennow@mail.dk>\n"
+"POT-Creation-Date: 2018-06-12 14:40+0200\n"
+"PO-Revision-Date: 2018-06-13 14:18+0000\n"
+"Last-Translator: Leif Lodahl <leiflodahl@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: da\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1527139135.000000\n"
+"X-POOTLE-MTIME: 1528899482.000000\n"
#: sc/inc/compiler.hrc:27
msgctxt "RID_FUNCTION_CATEGORIES"
@@ -1870,16 +1870,21 @@ msgid "Nested arrays are not supported."
msgstr "Indlejrede matricer er ikke understøttet."
#: sc/inc/globstr.hrc:390
+msgctxt "STR_ERR_LONG_BAD_ARRAY_CONTENT"
+msgid "Unsupported inline array content."
+msgstr "Ikke-understøttet indlejret områdeindhold"
+
+#: sc/inc/globstr.hrc:391
msgctxt "STR_UNDO_TEXTTOCOLUMNS"
msgid "Text to Columns"
msgstr "Tekst til kolonner"
-#: sc/inc/globstr.hrc:391
+#: sc/inc/globstr.hrc:392
msgctxt "STR_DOC_UPDATED"
msgid "Your spreadsheet has been updated with changes saved by other users."
msgstr "Dit regneark er blevet opdateret med ændringer gemt af andre brugere."
-#: sc/inc/globstr.hrc:392
+#: sc/inc/globstr.hrc:393
msgctxt "STR_DOC_WILLBESAVED"
msgid ""
"The spreadsheet must be saved now to activate sharing mode.\n"
@@ -1890,7 +1895,7 @@ msgstr ""
"\n"
"Vil du fortsætte?"
-#: sc/inc/globstr.hrc:393
+#: sc/inc/globstr.hrc:394
msgctxt "STR_DOC_WILLNOTBESAVED"
msgid ""
"Already resolved merge conflicts will be lost and your changes to the shared spreadsheet will not be saved.\n"
@@ -1901,7 +1906,7 @@ msgstr ""
"\n"
"Vil du fortsætte?"
-#: sc/inc/globstr.hrc:394
+#: sc/inc/globstr.hrc:395
msgctxt "STR_DOC_DISABLESHARED"
msgid ""
"Disabling shared mode of a spreadsheet hinders all other users of the shared spreadsheet to merge back their work.\n"
@@ -1912,7 +1917,7 @@ msgstr ""
"\n"
"Vil du fortsætte?"
-#: sc/inc/globstr.hrc:395
+#: sc/inc/globstr.hrc:396
msgctxt "STR_DOC_NOLONGERSHARED"
msgid ""
"This spreadsheet is no longer in shared mode.\n"
@@ -1923,7 +1928,7 @@ msgstr ""
"\n"
"Gem dit regneark til en selvstændig fil og flet dine ændringer til det delte regneark manuelt."
-#: sc/inc/globstr.hrc:396
+#: sc/inc/globstr.hrc:397
msgctxt "STR_FILE_LOCKED_TRY_LATER"
msgid ""
"The shared spreadsheet file is locked due to a merge in progress by user: '%1'\n"
@@ -1934,7 +1939,7 @@ msgstr ""
"\n"
"Delt tilstand af en låst fil kan ikke deaktiveres. Prøv igen senere."
-#: sc/inc/globstr.hrc:397
+#: sc/inc/globstr.hrc:398
msgctxt "STR_FILE_LOCKED_SAVE_LATER"
msgid ""
"The shared spreadsheet file is locked due to a merge in progress by user: '%1'\n"
@@ -1945,147 +1950,147 @@ msgstr ""
"\n"
"Prøv at gemme dine ændringer senere."
-#: sc/inc/globstr.hrc:398
+#: sc/inc/globstr.hrc:399
msgctxt "STR_UNKNOWN_USER"
msgid "Unknown User"
msgstr "Ukendt bruger"
-#: sc/inc/globstr.hrc:399
+#: sc/inc/globstr.hrc:400
msgctxt "STR_SHAPE_AUTOSHAPE"
msgid "AutoShape"
msgstr "Autotilpas"
-#: sc/inc/globstr.hrc:400
+#: sc/inc/globstr.hrc:401
msgctxt "STR_SHAPE_RECTANGLE"
msgid "Rectangle"
msgstr "Rektangel"
-#: sc/inc/globstr.hrc:401
+#: sc/inc/globstr.hrc:402
msgctxt "STR_SHAPE_LINE"
msgid "Line"
msgstr "Linje"
-#: sc/inc/globstr.hrc:402
+#: sc/inc/globstr.hrc:403
msgctxt "STR_SHAPE_OVAL"
msgid "Oval"
msgstr "Oval"
-#: sc/inc/globstr.hrc:403
+#: sc/inc/globstr.hrc:404
msgctxt "STR_FORM_BUTTON"
msgid "Button"
msgstr "Knap"
-#: sc/inc/globstr.hrc:404
+#: sc/inc/globstr.hrc:405
msgctxt "STR_FORM_CHECKBOX"
msgid "Check Box"
msgstr "Afkrydsningsfelt"
-#: sc/inc/globstr.hrc:405
+#: sc/inc/globstr.hrc:406
msgctxt "STR_FORM_OPTIONBUTTON"
msgid "Option Button"
msgstr "Indstillingsknap"
-#: sc/inc/globstr.hrc:406
+#: sc/inc/globstr.hrc:407
msgctxt "STR_FORM_LABEL"
msgid "Label"
msgstr "Etiket"
-#: sc/inc/globstr.hrc:407
+#: sc/inc/globstr.hrc:408
msgctxt "STR_FORM_LISTBOX"
msgid "List Box"
msgstr "Listefelt"
-#: sc/inc/globstr.hrc:408
+#: sc/inc/globstr.hrc:409
msgctxt "STR_FORM_GROUPBOX"
msgid "Group Box"
msgstr "Gruppefelt"
-#: sc/inc/globstr.hrc:409
+#: sc/inc/globstr.hrc:410
msgctxt "STR_FORM_DROPDOWN"
msgid "Drop Down"
msgstr "Rulleliste"
-#: sc/inc/globstr.hrc:410
+#: sc/inc/globstr.hrc:411
msgctxt "STR_FORM_SPINNER"
msgid "Spinner"
msgstr "Spinner"
-#: sc/inc/globstr.hrc:411
+#: sc/inc/globstr.hrc:412
msgctxt "STR_FORM_SCROLLBAR"
msgid "Scroll Bar"
msgstr "Rullebjælke"
-#: sc/inc/globstr.hrc:412
+#: sc/inc/globstr.hrc:413
msgctxt "STR_STYLE_FAMILY_CELL"
msgid "Cell Styles"
msgstr "Celletypografier"
-#: sc/inc/globstr.hrc:413
+#: sc/inc/globstr.hrc:414
msgctxt "STR_STYLE_FAMILY_PAGE"
msgid "Page Styles"
msgstr "Sidetypografier"
-#: sc/inc/globstr.hrc:414
+#: sc/inc/globstr.hrc:415
msgctxt "STR_ERR_DATAPILOTSOURCE"
msgid "Pivot table source data is invalid."
msgstr "Kildedata for pivottabel er ugyldig."
-#: sc/inc/globstr.hrc:415
+#: sc/inc/globstr.hrc:416
msgctxt "STR_OPTIONS_WARN_SEPARATORS"
msgid "Because the current formula separator settings conflict with the locale, the formula separators have been reset to their default values."
msgstr "Da de aktuelle formeladskiller-indstillinger er i konflikt med lokalitetsindstillingerne, er formeladskillerne blevet nulstillet til deres standardværdier."
-#: sc/inc/globstr.hrc:416
+#: sc/inc/globstr.hrc:417
msgctxt "STR_UNDO_INSERT_CURRENT_DATE"
msgid "Insert Current Date"
msgstr "Indsæt aktuel dato"
-#: sc/inc/globstr.hrc:417
+#: sc/inc/globstr.hrc:418
msgctxt "STR_UNDO_INSERT_CURRENT_TIME"
msgid "Insert Current Time"
msgstr "Indsæt aktuel tid"
-#: sc/inc/globstr.hrc:418
+#: sc/inc/globstr.hrc:419
msgctxt "STR_MANAGE_NAMES"
msgid "Manage Names..."
msgstr "Administrer navne..."
-#: sc/inc/globstr.hrc:419
+#: sc/inc/globstr.hrc:420
msgctxt "STR_HEADER_NAME"
msgid "Name"
msgstr "Navn"
-#: sc/inc/globstr.hrc:420
+#: sc/inc/globstr.hrc:421
msgctxt "STR_HEADER_RANGE_OR_EXPR"
msgid "Range or formula expression"
msgstr "Område eller formeludtryk"
-#: sc/inc/globstr.hrc:421
+#: sc/inc/globstr.hrc:422
msgctxt "STR_HEADER_SCOPE"
msgid "Scope"
msgstr "Omfang"
-#: sc/inc/globstr.hrc:422
+#: sc/inc/globstr.hrc:423
msgctxt "STR_MULTI_SELECT"
msgid "(multiple)"
msgstr "(flere)"
-#: sc/inc/globstr.hrc:423
+#: sc/inc/globstr.hrc:424
msgctxt "STR_GLOBAL_SCOPE"
msgid "Document (Global)"
msgstr "Dokument (globalt)"
-#: sc/inc/globstr.hrc:424
+#: sc/inc/globstr.hrc:425
msgctxt "STR_ERR_NAME_EXISTS"
msgid "Invalid name. Already in use for the selected scope."
msgstr "Ugyldigt navn. Allerede i brug for det valgte anvendelsesområde."
-#: sc/inc/globstr.hrc:425
+#: sc/inc/globstr.hrc:426
msgctxt "STR_ERR_NAME_INVALID"
msgid "Invalid name. Only use letters, numbers and underscore."
msgstr "Ugyldigt navn. Brug kun bogstaver, tal og understregninger."
-#: sc/inc/globstr.hrc:426
+#: sc/inc/globstr.hrc:427
msgctxt "STR_UNSAVED_EXT_REF"
msgid ""
"This Document contains external references to unsaved documents.\n"
@@ -2096,217 +2101,217 @@ msgstr ""
"\n"
"Vil du fortsætte?"
-#: sc/inc/globstr.hrc:427
+#: sc/inc/globstr.hrc:428
msgctxt "STR_CLOSE_WITH_UNSAVED_REFS"
msgid "This Document is referenced by another document and not yet saved. Closing it without saving will result in data loss."
msgstr "Der refereres til dette dokument fra et andet dokument, og det er endnu ikke gemt. At lukke det uden at gemme vil resultere i tab af data."
-#: sc/inc/globstr.hrc:428
+#: sc/inc/globstr.hrc:429
msgctxt "STR_HEADER_RANGE"
msgid "Range"
msgstr "Område"
-#: sc/inc/globstr.hrc:429
+#: sc/inc/globstr.hrc:430
msgctxt "STR_HEADER_COND"
msgid "First Condition"
msgstr "Første betingelse"
-#: sc/inc/globstr.hrc:430
+#: sc/inc/globstr.hrc:431
msgctxt "STR_COND_CONDITION"
msgid "Cell value is"
msgstr "Celleværdi er"
-#: sc/inc/globstr.hrc:431
+#: sc/inc/globstr.hrc:432
msgctxt "STR_COND_COLORSCALE"
msgid "ColorScale"
msgstr "Farveskala"
-#: sc/inc/globstr.hrc:432
+#: sc/inc/globstr.hrc:433
msgctxt "STR_COND_DATABAR"
msgid "DataBar"
msgstr "Databjælke"
-#: sc/inc/globstr.hrc:433
+#: sc/inc/globstr.hrc:434
msgctxt "STR_COND_ICONSET"
msgid "IconSet"
msgstr "Ikonsæt"
-#: sc/inc/globstr.hrc:434
+#: sc/inc/globstr.hrc:435
msgctxt "STR_COND_BETWEEN"
msgid "between"
msgstr "mellem"
-#: sc/inc/globstr.hrc:435
+#: sc/inc/globstr.hrc:436
msgctxt "STR_COND_NOTBETWEEN"
msgid "not between"
msgstr "ikke mellem"
-#: sc/inc/globstr.hrc:436
+#: sc/inc/globstr.hrc:437
msgctxt "STR_COND_UNIQUE"
msgid "unique"
msgstr "entydig"
-#: sc/inc/globstr.hrc:437
+#: sc/inc/globstr.hrc:438
msgctxt "STR_COND_DUPLICATE"
msgid "duplicate"
msgstr "dupliker"
-#: sc/inc/globstr.hrc:438
+#: sc/inc/globstr.hrc:439
msgctxt "STR_COND_FORMULA"
msgid "Formula is"
msgstr "Formlen er"
-#: sc/inc/globstr.hrc:439
+#: sc/inc/globstr.hrc:440
msgctxt "STR_COND_TOP10"
msgid "Top Elements"
msgstr "Topelementer"
-#: sc/inc/globstr.hrc:440
+#: sc/inc/globstr.hrc:441
msgctxt "STR_COND_BOTTOM10"
msgid "Bottom Elements"
msgstr "Bundelementer"
-#: sc/inc/globstr.hrc:441
+#: sc/inc/globstr.hrc:442
msgctxt "STR_COND_TOP_PERCENT"
msgid "Top Percent"
msgstr "Topprocent"
-#: sc/inc/globstr.hrc:442
+#: sc/inc/globstr.hrc:443
msgctxt "STR_COND_DATE"
msgid "Date is"
msgstr "Dato er"
-#: sc/inc/globstr.hrc:443
+#: sc/inc/globstr.hrc:444
msgctxt "STR_COND_BOTTOM_PERCENT"
msgid "Bottom Percent"
msgstr "Nederste procent"
-#: sc/inc/globstr.hrc:444
+#: sc/inc/globstr.hrc:445
msgctxt "STR_COND_ABOVE_AVERAGE"
msgid "Above Average"
msgstr "Over gennemsnit"
-#: sc/inc/globstr.hrc:445
+#: sc/inc/globstr.hrc:446
msgctxt "STR_COND_BELOW_AVERAGE"
msgid "Below Average"
msgstr "Under gennemsnit"
-#: sc/inc/globstr.hrc:446
+#: sc/inc/globstr.hrc:447
msgctxt "STR_COND_ABOVE_EQUAL_AVERAGE"
msgid "Above or equal Average"
msgstr "Større end eller lig middel"
-#: sc/inc/globstr.hrc:447
+#: sc/inc/globstr.hrc:448
msgctxt "STR_COND_BELOW_EQUAL_AVERAGE"
msgid "Below or equal Average"
msgstr "Mindre end eller lig middel"
-#: sc/inc/globstr.hrc:448
+#: sc/inc/globstr.hrc:449
msgctxt "STR_COND_ERROR"
msgid "an Error code"
msgstr "en fejlkode"
-#: sc/inc/globstr.hrc:449
+#: sc/inc/globstr.hrc:450
msgctxt "STR_COND_NOERROR"
msgid "not an Error code"
msgstr "ikke en fejlkode"
-#: sc/inc/globstr.hrc:450
+#: sc/inc/globstr.hrc:451
msgctxt "STR_COND_BEGINS_WITH"
msgid "Begins with"
msgstr "Begynder med"
-#: sc/inc/globstr.hrc:451
+#: sc/inc/globstr.hrc:452
msgctxt "STR_COND_ENDS_WITH"
msgid "Ends with"
msgstr "Slutter med"
-#: sc/inc/globstr.hrc:452
+#: sc/inc/globstr.hrc:453
msgctxt "STR_COND_CONTAINS"
msgid "Contains"
msgstr "Indeholder"
-#: sc/inc/globstr.hrc:453
+#: sc/inc/globstr.hrc:454
msgctxt "STR_COND_NOT_CONTAINS"
msgid "Not Contains"
msgstr "Indeholder ikke"
-#: sc/inc/globstr.hrc:454
+#: sc/inc/globstr.hrc:455
msgctxt "STR_COND_TODAY"
msgid "today"
msgstr "i dag"
-#: sc/inc/globstr.hrc:455
+#: sc/inc/globstr.hrc:456
msgctxt "STR_COND_YESTERDAY"
msgid "yesterday"
msgstr "i går"
-#: sc/inc/globstr.hrc:456
+#: sc/inc/globstr.hrc:457
msgctxt "STR_COND_TOMORROW"
msgid "tomorrow"
msgstr "i morgen"
-#: sc/inc/globstr.hrc:457
+#: sc/inc/globstr.hrc:458
msgctxt "STR_COND_LAST7DAYS"
msgid "in the last 7 days"
msgstr "i de seneste 7 dage"
-#: sc/inc/globstr.hrc:458
+#: sc/inc/globstr.hrc:459
msgctxt "STR_COND_THISWEEK"
msgid "this week"
msgstr "denne uge"
-#: sc/inc/globstr.hrc:459
+#: sc/inc/globstr.hrc:460
msgctxt "STR_COND_LASTWEEK"
msgid "last week"
msgstr "sidste uge"
-#: sc/inc/globstr.hrc:460
+#: sc/inc/globstr.hrc:461
msgctxt "STR_COND_NEXTWEEK"
msgid "next week"
msgstr "næste uge"
-#: sc/inc/globstr.hrc:461
+#: sc/inc/globstr.hrc:462
msgctxt "STR_COND_THISMONTH"
msgid "this month"
msgstr "denne måned"
-#: sc/inc/globstr.hrc:462
+#: sc/inc/globstr.hrc:463
msgctxt "STR_COND_LASTMONTH"
msgid "last month"
msgstr "sidste måned"
-#: sc/inc/globstr.hrc:463
+#: sc/inc/globstr.hrc:464
msgctxt "STR_COND_NEXTMONTH"
msgid "next month"
msgstr "næste måned"
-#: sc/inc/globstr.hrc:464
+#: sc/inc/globstr.hrc:465
msgctxt "STR_COND_THISYEAR"
msgid "this year"
msgstr "dette år"
-#: sc/inc/globstr.hrc:465
+#: sc/inc/globstr.hrc:466
msgctxt "STR_COND_LASTYEAR"
msgid "last year"
msgstr "sidste år"
-#: sc/inc/globstr.hrc:466
+#: sc/inc/globstr.hrc:467
msgctxt "STR_COND_NEXTYEAR"
msgid "next year"
msgstr "næste år"
-#: sc/inc/globstr.hrc:467
+#: sc/inc/globstr.hrc:468
msgctxt "STR_COND_AND"
msgid "and"
msgstr "og"
-#: sc/inc/globstr.hrc:468
+#: sc/inc/globstr.hrc:469
msgctxt "STR_ERR_CONDFORMAT_PROTECTED"
msgid "Conditional Formats can not be created, deleted or changed in protected sheets."
msgstr "Betingede formateringer kan ikke oprettes, slettes eller ændres i beskyttede ark! "
-#: sc/inc/globstr.hrc:469
+#: sc/inc/globstr.hrc:470
msgctxt "STR_EDIT_EXISTING_COND_FORMATS"
msgid ""
"The selected cell already contains conditional formatting. You can either edit the existing conditional format or you define a new overlapping conditional format.\n"
@@ -2317,7 +2322,7 @@ msgstr ""
"\n"
"Vil du redigere det eksisterende betingede format?"
-#: sc/inc/globstr.hrc:470
+#: sc/inc/globstr.hrc:471
msgctxt "STR_QUERY_FORMULA_RECALC_ONLOAD_ODS"
msgid ""
"This document was last saved by an application other than %PRODUCTNAME. Some formula cells may produce different results when recalculated.\n"
@@ -2328,7 +2333,7 @@ msgstr ""
"\n"
"Vil du genberegne alle formler i alle celler i dette dokument nu?"
-#: sc/inc/globstr.hrc:471
+#: sc/inc/globstr.hrc:472
msgctxt "STR_QUERY_FORMULA_RECALC_ONLOAD_XLS"
msgid ""
"This document was last saved by Excel. Some formula cells may produce different results when recalculated.\n"
@@ -2339,77 +2344,77 @@ msgstr ""
" \n"
"Ønsker du at genberegne alle formelceller nu?"
-#: sc/inc/globstr.hrc:472
+#: sc/inc/globstr.hrc:473
msgctxt "STR_NO_INSERT_DELETE_OVER_PIVOT_TABLE"
msgid "You cannot insert or delete cells when the affected range intersects with pivot table."
msgstr "Du kan ikke indsætte eller slette celler når det berørte område krydser en pivottabel."
-#: sc/inc/globstr.hrc:473
+#: sc/inc/globstr.hrc:474
msgctxt "STR_DPFIELD_GROUP_BY_SECONDS"
msgid "Seconds"
msgstr "Sekunder"
-#: sc/inc/globstr.hrc:474
+#: sc/inc/globstr.hrc:475
msgctxt "STR_DPFIELD_GROUP_BY_MINUTES"
msgid "Minutes"
msgstr "Minutter"
-#: sc/inc/globstr.hrc:475
+#: sc/inc/globstr.hrc:476
msgctxt "STR_DPFIELD_GROUP_BY_HOURS"
msgid "Hours"
msgstr "Timer"
-#: sc/inc/globstr.hrc:476
+#: sc/inc/globstr.hrc:477
msgctxt "STR_DPFIELD_GROUP_BY_DAYS"
msgid "Days"
msgstr "Dage"
-#: sc/inc/globstr.hrc:477
+#: sc/inc/globstr.hrc:478
msgctxt "STR_DPFIELD_GROUP_BY_MONTHS"
msgid "Months"
msgstr "Måneder"
-#: sc/inc/globstr.hrc:478
+#: sc/inc/globstr.hrc:479
msgctxt "STR_DPFIELD_GROUP_BY_QUARTERS"
msgid "Quarters"
msgstr "Kvartaler"
-#: sc/inc/globstr.hrc:479
+#: sc/inc/globstr.hrc:480
msgctxt "STR_DPFIELD_GROUP_BY_YEARS"
msgid "Years"
msgstr "År"
-#: sc/inc/globstr.hrc:480
+#: sc/inc/globstr.hrc:481
msgctxt "STR_INVALIDVAL"
msgid "Invalid target value."
msgstr "Ugyldig målværdi!"
-#: sc/inc/globstr.hrc:481
+#: sc/inc/globstr.hrc:482
msgctxt "STR_INVALIDVAR"
msgid "Undefined name for variable cell."
msgstr "Udefineret navn på variabelcelle."
-#: sc/inc/globstr.hrc:482
+#: sc/inc/globstr.hrc:483
msgctxt "STR_INVALIDFORM"
msgid "Undefined name as formula cell."
msgstr "Udefineret navn som formelcelle."
-#: sc/inc/globstr.hrc:483
+#: sc/inc/globstr.hrc:484
msgctxt "STR_NOFORMULA"
msgid "Formula cell must contain a formula."
msgstr "Formelcelle skal indeholde en formel"
-#: sc/inc/globstr.hrc:484
+#: sc/inc/globstr.hrc:485
msgctxt "STR_INVALIDINPUT"
msgid "Invalid input."
msgstr "Ugyldig indtastning."
-#: sc/inc/globstr.hrc:485
+#: sc/inc/globstr.hrc:486
msgctxt "STR_INVALIDCONDITION"
msgid "Invalid condition."
msgstr "Ugyldig betingelse."
-#: sc/inc/globstr.hrc:486
+#: sc/inc/globstr.hrc:487
msgctxt "STR_QUERYREMOVE"
msgid ""
"Should the entry\n"
@@ -2420,133 +2425,133 @@ msgstr ""
"#\n"
"?"
-#: sc/inc/globstr.hrc:487
+#: sc/inc/globstr.hrc:488
msgctxt "STR_COPYLIST"
msgid "Copy List"
msgstr "Kopier liste"
-#: sc/inc/globstr.hrc:488
+#: sc/inc/globstr.hrc:489
msgctxt "STR_COPYFROM"
msgid "List from"
msgstr "Liste fra"
-#: sc/inc/globstr.hrc:489
+#: sc/inc/globstr.hrc:490
msgctxt "STR_COPYERR"
msgid "Cells without text have been ignored."
msgstr "Celler uden tekst blev ignoreret."
-#: sc/inc/globstr.hrc:490
+#: sc/inc/globstr.hrc:491
#, c-format
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%s-click to follow hyperlink:"
msgstr "%s-Klik for at følge link:"
-#: sc/inc/globstr.hrc:491
+#: sc/inc/globstr.hrc:492
msgctxt "STR_CLICKHYPERLINK"
msgid "click to open hyperlink:"
msgstr "klik for at åbne hyperlink:"
-#: sc/inc/globstr.hrc:492
+#: sc/inc/globstr.hrc:493
msgctxt "STR_PRINT_PREVIEW_NODATA"
msgid "No Data"
msgstr "Ingen data"
-#: sc/inc/globstr.hrc:493
+#: sc/inc/globstr.hrc:494
msgctxt "STR_PRINT_PREVIEW_EMPTY_RANGE"
msgid "Print Range Empty"
msgstr "Udskriftsområde er tomt"
-#: sc/inc/globstr.hrc:494
+#: sc/inc/globstr.hrc:495
msgctxt "STR_UNDO_CONDFORMAT"
msgid "Conditional Format"
msgstr "Betinget format"
-#: sc/inc/globstr.hrc:495
+#: sc/inc/globstr.hrc:496
msgctxt "STR_UNDO_CONDFORMAT_LIST"
msgid "Conditional Formats"
msgstr "Betingede formater"
-#: sc/inc/globstr.hrc:496
+#: sc/inc/globstr.hrc:497
msgctxt "STR_UNDO_FORMULA_TO_VALUE"
msgid "Convert Formula To Value"
msgstr "Konverter formel til værdi"
-#: sc/inc/globstr.hrc:497
+#: sc/inc/globstr.hrc:498
msgctxt "STR_UNQUOTED_STRING"
msgid "Strings without quotes are interpreted as column/row labels."
msgstr "Strenge uden citationstegn opfattes som række/søjle betegnelse."
-#: sc/inc/globstr.hrc:498
+#: sc/inc/globstr.hrc:499
msgctxt "STR_ENTER_VALUE"
msgid "Enter a value!"
msgstr "Indtast en værdi!"
-#: sc/inc/globstr.hrc:499
+#: sc/inc/globstr.hrc:500
msgctxt "STR_TABLE_COUNT"
msgid "Sheet %1 of %2"
msgstr "Ark %1 af %2"
-#: sc/inc/globstr.hrc:500
+#: sc/inc/globstr.hrc:501
msgctxt "STR_FUNCTIONS_FOUND"
msgid "%1 and %2 more"
msgstr "%1 og yderligere %2"
-#: sc/inc/globstr.hrc:501
+#: sc/inc/globstr.hrc:502
msgctxt "STR_GENERAL"
msgid "General"
msgstr "Generelt"
-#: sc/inc/globstr.hrc:502
+#: sc/inc/globstr.hrc:503
msgctxt "STR_NUMBER"
msgid "Number"
msgstr "Tal"
-#: sc/inc/globstr.hrc:503
+#: sc/inc/globstr.hrc:504
msgctxt "STR_PERCENT"
msgid "Percent"
msgstr "Procent"
-#: sc/inc/globstr.hrc:504
+#: sc/inc/globstr.hrc:505
msgctxt "STR_CURRENCY"
msgid "Currency"
msgstr "Valuta"
-#: sc/inc/globstr.hrc:505
+#: sc/inc/globstr.hrc:506
msgctxt "STR_DATE"
msgid "Date"
msgstr "Dato"
-#: sc/inc/globstr.hrc:506
+#: sc/inc/globstr.hrc:507
msgctxt "STR_TIME"
msgid "Time"
msgstr "Tid"
-#: sc/inc/globstr.hrc:507
+#: sc/inc/globstr.hrc:508
msgctxt "STR_SCIENTIFIC"
msgid "Scientific"
msgstr "Videnskabelig"
-#: sc/inc/globstr.hrc:508
+#: sc/inc/globstr.hrc:509
msgctxt "STR_FRACTION"
msgid "Fraction"
msgstr "Brøkdel"
-#: sc/inc/globstr.hrc:509
+#: sc/inc/globstr.hrc:510
msgctxt "STR_BOOLEAN_VALUE"
msgid "Boolean Value"
msgstr "Logisk værdi"
-#: sc/inc/globstr.hrc:510
+#: sc/inc/globstr.hrc:511
msgctxt "STR_TEXT"
msgid "Text"
msgstr "Tekst"
-#: sc/inc/globstr.hrc:511
+#: sc/inc/globstr.hrc:512
msgctxt "STR_QUERY_PIVOTTABLE_DELTAB"
msgid "The selected sheet(s) contain source data of related pivot tables that will be lost. Are you sure you want to delete the selected sheet(s)?"
msgstr "Det/de valgte ark har kildedata fra relaterede pivottabeller som vil gå tabt. Er du sikker på at du ønsker at slette det/de valgte ark?"
-#: sc/inc/globstr.hrc:512
+#: sc/inc/globstr.hrc:513
msgctxt "STR_ERR_NAME_INVALID_CELL_REF"
msgid "Invalid name. Reference to a cell, or a range of cells not allowed."
msgstr "Ugyldigt navn. Reference til en celle eller et celleområde er ikke tilladt."
@@ -10488,7 +10493,7 @@ msgstr "Tilstand"
#: sc/inc/scfuncs.hrc:3010
msgctxt "SC_OPCODE_T_TEST"
-msgid "Mode specifies the number of distribution tails to return. 1= one-tailed, 2 = two-tailed distribution"
+msgid "Mode specifies the number of distribution tails to return. 1 = one-tailed, 2 = two-tailed distribution"
msgstr "Tilstand angiver antal fordelingssider. Tilstand 1 = beregner en ensidet, tilstand 2 = en tosidet distribution"
#: sc/inc/scfuncs.hrc:3011
@@ -10533,8 +10538,8 @@ msgstr "Tilstand"
#: sc/inc/scfuncs.hrc:3024
msgctxt "SC_OPCODE_T_TEST_MS"
-msgid "Mode specifies the number of distribution tails to return. 1= one-tailed, 2 = two-tailed distribution"
-msgstr "Tilstand angiver antallet af fordelingssider, der skal returneres. 1 = 1-sidet, 2 = 2-sidet fordeling"
+msgid "Mode specifies the number of distribution tails to return. 1 = one-tailed, 2 = two-tailed distribution"
+msgstr "Tilstand angiver antal fordelingssider. Tilstand 1 = beregner en ensidet, tilstand 2 = en tosidet distribution"
#: sc/inc/scfuncs.hrc:3025
msgctxt "SC_OPCODE_T_TEST_MS"
@@ -18020,22 +18025,22 @@ msgctxt "mergecellsdialog|MergeCellsDialog"
msgid "Merge Cells"
msgstr "Flet celler"
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:81
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:84
msgctxt "mergecellsdialog|label"
msgid "Some cells are not empty."
msgstr "Nogle celler er ikke tomme."
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:96
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:99
msgctxt "mergecellsdialog|move-cells-radio"
msgid "Move the contents of the hidden cells into the first cell"
msgstr "Flyt indholdet af de skjulte celler til første celle"
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:112
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:115
msgctxt "mergecellsdialog|empty-cells-radio"
msgid "Empty the contents of the hidden cells"
msgstr "Fjern indholdet af de skjulte celler"
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:128
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:131
msgctxt "mergecellsdialog|keep-content-radio"
msgid "Keep the contents of the hidden cells"
msgstr "Bevar indholdet i de skjulte celler"
@@ -18303,7 +18308,7 @@ msgstr "Søg efter opdateringer..."
#: sc/uiconfig/scalc/ui/notebookbar.ui:1952
msgctxt "notebookbar|FileLabel"
msgid "_File"
-msgstr ""
+msgstr "_Fil"
#: sc/uiconfig/scalc/ui/notebookbar.ui:1971
msgctxt "notebookbar|HelpMenuButton"
@@ -18334,7 +18339,7 @@ msgstr "Formindsk indrykning"
#: sc/uiconfig/scalc/ui/notebookbar.ui:4436
msgctxt "notebookbar|HomeMenuButton"
msgid "_Home"
-msgstr ""
+msgstr "_Home"
#: sc/uiconfig/scalc/ui/notebookbar.ui:4544
msgctxt "notebookbar|CalcLabel"
@@ -18344,7 +18349,7 @@ msgstr "Hjem"
#: sc/uiconfig/scalc/ui/notebookbar.ui:4991
msgctxt "notebookbar|FieldMenuButton"
msgid "Fiel_d"
-msgstr ""
+msgstr "Fel_t"
#: sc/uiconfig/scalc/ui/notebookbar.ui:5496
msgctxt "notebookbar|InsertMenuButton"
@@ -18384,7 +18389,7 @@ msgstr "Data"
#: sc/uiconfig/scalc/ui/notebookbar.ui:8035
msgctxt "notebookbar|ReviewMenuButton"
msgid "_Review"
-msgstr ""
+msgstr "_Korrektur"
#: sc/uiconfig/scalc/ui/notebookbar.ui:8120
msgctxt "notebookbar|ReviewLabel"
@@ -18414,7 +18419,7 @@ msgstr "Billede"
#: sc/uiconfig/scalc/ui/notebookbar.ui:11228
msgctxt "notebookbar|DrawMenuButton"
msgid "D_raw"
-msgstr ""
+msgstr "_Draw"
#: sc/uiconfig/scalc/ui/notebookbar.ui:11340
msgctxt "notebookbar|DrawLabel"
@@ -18434,12 +18439,12 @@ msgstr "Objekt"
#: sc/uiconfig/scalc/ui/notebookbar.ui:12113
msgctxt "notebookbar|ToolsMenuButton"
msgid "_Tools"
-msgstr ""
+msgstr "Funktioner"
#: sc/uiconfig/scalc/ui/notebookbar.ui:13250
msgctxt "notebookbar|DevLabel"
msgid "Tools"
-msgstr ""
+msgstr "Funktioner"
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:2945
msgctxt "notebookbar_groupedbar_compact|Menu"
diff --git a/source/da/sd/messages.po b/source/da/sd/messages.po
index cbca61ee49f..abd7555251e 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: 2018-05-22 13:16+0200\n"
-"PO-Revision-Date: 2018-05-24 05:41+0000\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
+"PO-Revision-Date: 2018-06-08 22:45+0000\n"
"Last-Translator: SteenRønnow <steen.roennow@mail.dk>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: da\n"
@@ -14,169 +14,169 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1527140462.000000\n"
+"X-POOTLE-MTIME: 1528497939.000000\n"
-#: sd/inc/DocumentRenderer.hrc:29
+#: sd/inc/DocumentRenderer.hrc:27
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Slides"
msgstr "Dias"
-#: sd/inc/DocumentRenderer.hrc:30
+#: sd/inc/DocumentRenderer.hrc:28
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Handouts"
msgstr "Uddelingskopier"
-#: sd/inc/DocumentRenderer.hrc:31
+#: sd/inc/DocumentRenderer.hrc:29
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Notes"
msgstr "Noter"
-#: sd/inc/DocumentRenderer.hrc:32
+#: sd/inc/DocumentRenderer.hrc:30
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Outline"
msgstr "Omrids"
-#: sd/inc/DocumentRenderer.hrc:37
+#: sd/inc/DocumentRenderer.hrc:35
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "According to layout"
msgstr "Som følge af layout"
-#: sd/inc/DocumentRenderer.hrc:38
+#: sd/inc/DocumentRenderer.hrc:36
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "1"
msgstr "1"
-#: sd/inc/DocumentRenderer.hrc:39
+#: sd/inc/DocumentRenderer.hrc:37
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "2"
msgstr "2"
-#: sd/inc/DocumentRenderer.hrc:40
+#: sd/inc/DocumentRenderer.hrc:38
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "3"
msgstr "3"
-#: sd/inc/DocumentRenderer.hrc:41
+#: sd/inc/DocumentRenderer.hrc:39
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "4"
msgstr "4"
-#: sd/inc/DocumentRenderer.hrc:42
+#: sd/inc/DocumentRenderer.hrc:40
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "6"
msgstr "6"
-#: sd/inc/DocumentRenderer.hrc:43
+#: sd/inc/DocumentRenderer.hrc:41
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "9"
msgstr "9"
-#: sd/inc/DocumentRenderer.hrc:48
+#: sd/inc/DocumentRenderer.hrc:46
msgctxt "STR_IMPRESS_PRINT_UI_ORDER_CHOICES"
msgid "Left to right, then down"
msgstr "Venstre mod højre, så nedad"
-#: sd/inc/DocumentRenderer.hrc:49
+#: sd/inc/DocumentRenderer.hrc:47
msgctxt "STR_IMPRESS_PRINT_UI_ORDER_CHOICES"
msgid "Top to bottom, then right"
msgstr "Top til bund, så mod højre"
-#: sd/inc/DocumentRenderer.hrc:54
+#: sd/inc/DocumentRenderer.hrc:52
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Original colors"
msgstr "Oprindelige farver"
-#: sd/inc/DocumentRenderer.hrc:55
+#: sd/inc/DocumentRenderer.hrc:53
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Grayscale"
msgstr "Gråtone"
-#: sd/inc/DocumentRenderer.hrc:56
+#: sd/inc/DocumentRenderer.hrc:54
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Black & white"
msgstr "Sort og hvid"
-#: sd/inc/DocumentRenderer.hrc:61
+#: sd/inc/DocumentRenderer.hrc:59
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Original size"
msgstr "Oprindelig størrelse"
-#: sd/inc/DocumentRenderer.hrc:62
+#: sd/inc/DocumentRenderer.hrc:60
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Fit to printable page"
msgstr "Tilpas til udskriftsside"
-#: sd/inc/DocumentRenderer.hrc:63
+#: sd/inc/DocumentRenderer.hrc:61
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Distribute on multiple sheets of paper"
msgstr "Fordel på flere ark papir"
-#: sd/inc/DocumentRenderer.hrc:64
+#: sd/inc/DocumentRenderer.hrc:62
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Tile sheet of paper with repeated slides"
msgstr "Side om side papir ark med gentaget dias"
-#: sd/inc/DocumentRenderer.hrc:69
+#: sd/inc/DocumentRenderer.hrc:67
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Original size"
msgstr "Oprindelig størrelse"
-#: sd/inc/DocumentRenderer.hrc:70
+#: sd/inc/DocumentRenderer.hrc:68
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Fit to printable page"
msgstr "Tilpas til udskriftsside"
-#: sd/inc/DocumentRenderer.hrc:71
+#: sd/inc/DocumentRenderer.hrc:69
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Distribute on multiple sheets of paper"
msgstr "Fordel på flere ark papir"
-#: sd/inc/DocumentRenderer.hrc:72
+#: sd/inc/DocumentRenderer.hrc:70
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Tile sheet of paper with repeated pages"
msgstr "Side om side-ark med gentagne sider"
-#: sd/inc/DocumentRenderer.hrc:77
+#: sd/inc/DocumentRenderer.hrc:75
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "All pages"
msgstr "Alle sider"
-#: sd/inc/DocumentRenderer.hrc:78
+#: sd/inc/DocumentRenderer.hrc:76
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "Front sides / right pages"
msgstr "Forsider / højresider"
-#: sd/inc/DocumentRenderer.hrc:79
+#: sd/inc/DocumentRenderer.hrc:77
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "Back sides / left pages"
msgstr "Bagsider / venstre sider"
-#: sd/inc/DocumentRenderer.hrc:84
+#: sd/inc/DocumentRenderer.hrc:82
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~All slides"
msgstr "~Alle dias"
-#: sd/inc/DocumentRenderer.hrc:85
+#: sd/inc/DocumentRenderer.hrc:83
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~Slides"
msgstr "~Dias"
-#: sd/inc/DocumentRenderer.hrc:86
+#: sd/inc/DocumentRenderer.hrc:84
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Se~lection"
msgstr "~Markering"
-#: sd/inc/DocumentRenderer.hrc:91
+#: sd/inc/DocumentRenderer.hrc:89
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~All pages"
msgstr "~Alle sider"
-#: sd/inc/DocumentRenderer.hrc:92
+#: sd/inc/DocumentRenderer.hrc:90
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Pa~ges"
msgstr "~Sider"
-#: sd/inc/DocumentRenderer.hrc:93
+#: sd/inc/DocumentRenderer.hrc:91
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Se~lection"
msgstr "~Markering"
@@ -1742,12 +1742,12 @@ msgstr "Udfyldt rød"
#: sd/inc/strings.hrc:329
msgctxt "STR_POOLSHEET_OUTLINE"
msgid "Outlined"
-msgstr ""
+msgstr "Kontur"
#: sd/inc/strings.hrc:330
msgctxt "STR_POOLSHEET_OUTLINE_BLUE"
msgid "Outlined Blue"
-msgstr ""
+msgstr "Skitseret blå"
#: sd/inc/strings.hrc:331
msgctxt "STR_POOLSHEET_OUTLINE_GREEN"
@@ -3630,7 +3630,7 @@ msgstr ""
#: sd/uiconfig/simpress/ui/notebookbar.ui:3389
msgctxt "notebookbar|HomeMenuButton"
msgid "_Home"
-msgstr ""
+msgstr "_Home"
#: sd/uiconfig/simpress/ui/notebookbar.ui:4846
msgctxt "notebookbar|HomeLabel"
@@ -3670,7 +3670,7 @@ msgstr "_Præsentation"
#: sd/uiconfig/simpress/ui/notebookbar.ui:7194
msgctxt "notebookbar|ReferencesLabel"
msgid "Slide Show"
-msgstr ""
+msgstr "Præsentation"
#: sd/uiconfig/simpress/ui/notebookbar.ui:7222
msgctxt "notebookbar|ReviewMenuButton"
@@ -3695,7 +3695,7 @@ msgstr "Vis"
#: sd/uiconfig/simpress/ui/notebookbar.ui:9369
msgctxt "notebookbar|TableMenuButton"
msgid "T_able"
-msgstr ""
+msgstr "Tabel"
#: sd/uiconfig/simpress/ui/notebookbar.ui:9453
msgctxt "notebookbar|TableLabel"
@@ -3731,12 +3731,12 @@ msgstr ""
#: sd/uiconfig/simpress/ui/notebookbar.ui:11804
msgctxt "notebookbar|ToolsMenuButton"
msgid "_Tools"
-msgstr ""
+msgstr "Funktioner"
#: sd/uiconfig/simpress/ui/notebookbar.ui:12758
msgctxt "notebookbar|DevLabel"
msgid "Tools"
-msgstr ""
+msgstr "Funktioner"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:1922
msgctxt "notebookbar_groupedbar_compact|Menu"
diff --git a/source/da/svtools/messages.po b/source/da/svtools/messages.po
index e506187de67..5e504bdaf20 100644
--- a/source/da/svtools/messages.po
+++ b/source/da/svtools/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2018-05-16 16:53+0200\n"
-"PO-Revision-Date: 2018-05-08 20:17+0000\n"
+"PO-Revision-Date: 2018-05-26 17:29+0000\n"
"Last-Translator: SteenRønnow <steen.roennow@mail.dk>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: da\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1525810648.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1527355790.000000\n"
#: svtools/inc/errtxt.hrc:30
msgctxt "RID_ERRCTX"
@@ -2496,17 +2496,17 @@ msgstr "Malaj-arabic (Brunei Darussalam)"
#: svtools/inc/langtab.hrc:416
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Juǀ’hoan"
-msgstr ""
+msgstr "Juǀ’hoan"
#: svtools/inc/langtab.hrc:417
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Naro"
-msgstr ""
+msgstr "Naro"
#: svtools/inc/langtab.hrc:418
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Iloko"
-msgstr ""
+msgstr "Iloko"
#: svtools/inc/templwin.hrc:42
msgctxt "STRARY_SVT_DOCINFO"
diff --git a/source/da/svx/messages.po b/source/da/svx/messages.po
index 9e44ff21f94..922dfcf755a 100644
--- a/source/da/svx/messages.po
+++ b/source/da/svx/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: 2018-05-16 16:53+0200\n"
-"PO-Revision-Date: 2018-05-22 11:28+0000\n"
-"Last-Translator: SteenRønnow <steen.roennow@mail.dk>\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
+"PO-Revision-Date: 2018-06-08 22:47+0000\n"
+"Last-Translator: Leif Lodahl <leiflodahl@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: da\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1526988526.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1528498023.000000\n"
#: svx/inc/fieldunit.hrc:30
msgctxt "RID_SVXSTR_FIELDUNIT_TABLE"
@@ -5179,8 +5179,8 @@ msgstr "Du kan også medsende relevante dele af din brugerprofil i fejlrapporten
#: svx/uiconfig/ui/safemodedialog.ui:432
msgctxt "safemodedialog|btn_create_zip"
-msgid "Create Zip Archive from User Profile"
-msgstr "Opret ZIP-arkiv fra brugerprofil"
+msgid "Archive User Profile"
+msgstr "Arkiver brugerprofil"
#: svx/uiconfig/ui/safemodedialog.ui:445
msgctxt "safemodedialog|linkbutton_profile"
@@ -8769,9 +8769,9 @@ msgid "Red"
msgstr "Rød"
#: include/svx/strings.hrc:565
-msgctxt "RID_SVXSTR_COLOR_VIOLET"
-msgid "Violet"
-msgstr "Lilla"
+msgctxt "RID_SVXSTR_COLOR_MAGENTA"
+msgid "Magenta"
+msgstr "Magentarød"
#: include/svx/strings.hrc:566
msgctxt "RID_SVXSTR_COLOR_PURPLE"
@@ -8835,9 +8835,9 @@ msgid "Light Red"
msgstr "Lyserød"
#: include/svx/strings.hrc:579
-msgctxt "RID_SVXSTR_COLOR_LIGHTVIOLET"
-msgid "Light Violet"
-msgstr "Lysviolet"
+msgctxt "RID_SVXSTR_COLOR_LIGHTMAGENTA"
+msgid "Light Magenta"
+msgstr "Lys magenta"
#: include/svx/strings.hrc:580
msgctxt "RID_SVXSTR_COLOR_LIGHTPURPLE"
@@ -8901,9 +8901,9 @@ msgid "Dark Red"
msgstr "Mørkerød"
#: include/svx/strings.hrc:593
-msgctxt "RID_SVXSTR_COLOR_DARKVIOLET1"
-msgid "Dark Violet"
-msgstr "Mørkeviolet"
+msgctxt "RID_SVXSTR_COLOR_DARKMAGENTA"
+msgid "Dark Magenta"
+msgstr "Mørk magenta"
#: include/svx/strings.hrc:594
msgctxt "RID_SVXSTR_COLOR_DARKPURPLE"
@@ -8937,55 +8937,55 @@ msgstr "Mørk limegrøn"
#. Elements of the Tonal color palette
#: include/svx/strings.hrc:601
+msgctxt "RID_SVXSTR_COLOR_VIOLET"
+msgid "Violet"
+msgstr "Lilla"
+
+#: include/svx/strings.hrc:602
msgctxt "RID_SVXSTR_COLOR_VIOLET_OUG"
msgid "Violet (Out of Gamut)"
msgstr "Violet (uden for gamut)"
-#: include/svx/strings.hrc:602
+#: include/svx/strings.hrc:603
msgctxt "RID_SVXSTR_COLOR_BLUE_OUG"
msgid "Blue (Out of Gamut)"
msgstr "Blå (uden for gamut)"
-#: include/svx/strings.hrc:603
+#: include/svx/strings.hrc:604
msgctxt "RID_SVXSTR_COLOR_AZURE_OUG"
msgid "Azure (Out of Gamut)"
msgstr "Azur (uden for gamut)"
-#: include/svx/strings.hrc:604
+#: include/svx/strings.hrc:605
msgctxt "RID_SVXSTR_COLOR_SPRINGGREEN_OUG"
msgid "Spring Green (Out of Gamut)"
msgstr "Forårsgrøn (uden for gamut)"
-#: include/svx/strings.hrc:605
+#: include/svx/strings.hrc:606
msgctxt "RID_SVXSTR_COLOR_GREEN_OUG"
msgid "Green (Out of Gamut)"
msgstr "Grøn (uden for gamut)"
-#: include/svx/strings.hrc:606
+#: include/svx/strings.hrc:607
msgctxt "RID_SVXSTR_COLOR_CHARTREUSEGREEN_OUG"
msgid "Chartreuse Green (Out of Gamut)"
msgstr "Chartreusefarvet grøn (uden for gamut)"
-#: include/svx/strings.hrc:607
+#: include/svx/strings.hrc:608
msgctxt "RID_SVXSTR_COLOR_ORANGE_OUG"
msgid "Orange (Out of Gamut)"
msgstr "Orange (uden for gamut)"
-#: include/svx/strings.hrc:608
+#: include/svx/strings.hrc:609
msgctxt "RID_SVXSTR_COLOR_RED_OUG"
msgid "Red (Out of Gamut)"
msgstr "Rød (uden for gamut)"
-#: include/svx/strings.hrc:609
+#: include/svx/strings.hrc:610
msgctxt "RID_SVXSTR_COLOR_ROSE_OUG"
msgid "Rose (Out of Gamut)"
msgstr "Rosa (uden for gamut)"
-#: include/svx/strings.hrc:610
-msgctxt "RID_SVXSTR_COLOR_MAGENTA"
-msgid "Magenta"
-msgstr "Magentarød"
-
#: include/svx/strings.hrc:611
msgctxt "RID_SVXSTR_COLOR_AZURE"
msgid "Azure"
@@ -9608,42 +9608,42 @@ msgstr "Grøn farveovergang"
#: include/svx/strings.hrc:746
msgctxt "RID_SVXSTR_GRDT70"
msgid "Pastel Bouquet"
-msgstr ""
+msgstr "Pastelbuket"
#: include/svx/strings.hrc:747
msgctxt "RID_SVXSTR_GRDT71"
msgid "Pastel Dream"
-msgstr ""
+msgstr "Pasteldrøm"
#: include/svx/strings.hrc:748
msgctxt "RID_SVXSTR_GRDT72"
msgid "Blue Touch"
-msgstr ""
+msgstr "Blåt stænk"
#: include/svx/strings.hrc:749
msgctxt "RID_SVXSTR_GRDT73"
msgid "Blank with Gray"
-msgstr ""
+msgstr "Blank med gråt"
#: include/svx/strings.hrc:750
msgctxt "RID_SVXSTR_GRDT74"
msgid "Spotted Gray"
-msgstr ""
+msgstr "Plettet grå"
#: include/svx/strings.hrc:751
msgctxt "RID_SVXSTR_GRDT75"
msgid "London Mist"
-msgstr ""
+msgstr "London-tåge"
#: include/svx/strings.hrc:752
msgctxt "RID_SVXSTR_GRDT76"
msgid "Teal to Blue"
-msgstr ""
+msgstr "Blågrøn til blå"
#: include/svx/strings.hrc:753
msgctxt "RID_SVXSTR_GRDT77"
msgid "Midnight"
-msgstr ""
+msgstr "Midnat"
#: include/svx/strings.hrc:754
msgctxt "RID_SVXSTR_GRDT78"
@@ -9653,17 +9653,17 @@ msgstr ""
#: include/svx/strings.hrc:755
msgctxt "RID_SVXSTR_GRDT79"
msgid "Submarine"
-msgstr ""
+msgstr "U-båd"
#: include/svx/strings.hrc:756
msgctxt "RID_SVXSTR_GRDT80"
msgid "Green Grass"
-msgstr ""
+msgstr "Grønt græs"
#: include/svx/strings.hrc:757
msgctxt "RID_SVXSTR_GRDT81"
msgid "Neon Light"
-msgstr ""
+msgstr "Neonlys"
#: include/svx/strings.hrc:758
msgctxt "RID_SVXSTR_GRDT82"
@@ -9678,7 +9678,7 @@ msgstr "Til stede"
#: include/svx/strings.hrc:760
msgctxt "RID_SVXSTR_GRDT84"
msgid "Mahagoni"
-msgstr ""
+msgstr "Mahogni"
#. /gradients
#: include/svx/strings.hrc:762
@@ -12091,13 +12091,13 @@ msgstr "Højrepil punkttegn"
#: include/svx/strings.hrc:1273
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_6"
-msgid "Check mark bullets"
+msgid "Cross mark bullets"
msgstr "Afkrydsningspunkttegn"
#: include/svx/strings.hrc:1274
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_7"
-msgid "Tick mark bullets"
-msgstr "V-formet punkttegn"
+msgid "Check mark bullets"
+msgstr "Afkrydsningspunkttegn"
#: include/svx/strings.hrc:1275
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_0"
diff --git a/source/da/sw/messages.po b/source/da/sw/messages.po
index 87866426daf..606b7535533 100644
--- a/source/da/sw/messages.po
+++ b/source/da/sw/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: 2018-05-22 13:17+0200\n"
-"PO-Revision-Date: 2018-05-24 05:52+0000\n"
-"Last-Translator: SteenRønnow <steen.roennow@mail.dk>\n"
+"POT-Creation-Date: 2018-06-12 14:41+0200\n"
+"PO-Revision-Date: 2018-06-08 22:47+0000\n"
+"Last-Translator: Leif Lodahl <leiflodahl@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: da\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1527141155.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1528498071.000000\n"
#: sw/inc/app.hrc:29
msgctxt "RID_PARAGRAPHSTYLEFAMILY"
@@ -1180,13 +1180,13 @@ msgstr "Citering"
#: sw/inc/strings.hrc:172
msgctxt "STR_POOLCOLL_TOX_ILLUSH"
-msgid "Illustration Index Heading"
-msgstr "Figuroversigt overskrift"
+msgid "Figure Index Heading"
+msgstr ""
#: sw/inc/strings.hrc:173
msgctxt "STR_POOLCOLL_TOX_ILLUS1"
-msgid "Illustration Index 1"
-msgstr "Figuroversigt 1"
+msgid "Figure Index 1"
+msgstr ""
#: sw/inc/strings.hrc:174
msgctxt "STR_POOLCOLL_TOX_OBJECTH"
@@ -3590,8 +3590,8 @@ msgstr "Objektoversigt"
#: sw/inc/strings.hrc:672
msgctxt "STR_TOX_ILL"
-msgid "Illustration Index"
-msgstr "Figuroversigt"
+msgid "Table of Figures"
+msgstr ""
#: sw/inc/strings.hrc:673
#, c-format
@@ -9244,72 +9244,72 @@ msgctxt "footnotepage|label5"
msgid "Continuation Notice"
msgstr "Henvisningstekst for flersidede fodnoter"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:49
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:55
msgctxt "footnotesendnotestabpage|ftnntnum"
msgid "_Restart numbering"
msgstr "Genstart nummerering"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:91
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:93
msgctxt "footnotesendnotestabpage|ftnoffset_label"
msgid "_Start at:"
msgstr "Begynd ved:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:112
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:111
msgctxt "footnotesendnotestabpage|ftnntnumfmt"
msgid "Custom _format"
msgstr "Brugertilpasset format"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:155
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:150
msgctxt "footnotesendnotestabpage|ftnsuffix_label"
msgid "Aft_er:"
msgstr "Efter:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:199
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:188
msgctxt "footnotesendnotestabpage|ftnprefix_label"
msgid "Be_fore:"
msgstr "Før:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:228
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:212
msgctxt "footnotesendnotestabpage|ftnntattextend"
msgid "Collec_t at end of text"
msgstr "Samling ved tekstens slutning"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:252
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:234
msgctxt "footnotesendnotestabpage|label1"
msgid "Footnotes"
msgstr "Fodnoter"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:289
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:271
msgctxt "footnotesendnotestabpage|endntattextend"
msgid "C_ollect at end of section"
msgstr "Samling ved slutning af sektion"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:315
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:295
msgctxt "footnotesendnotestabpage|endntnum"
msgid "_Restart numbering"
msgstr "Genstart nummerering"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:357
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:333
msgctxt "footnotesendnotestabpage|endoffset_label"
msgid "_Start at:"
msgstr "Begynd med:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:378
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:351
msgctxt "footnotesendnotestabpage|endntnumfmt"
msgid "_Custom format"
msgstr "Tilpasset format"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:421
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:390
msgctxt "footnotesendnotestabpage|endsuffix_label"
msgid "Aft_er:"
msgstr "Efter:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:465
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:428
msgctxt "footnotesendnotestabpage|endprefix_label"
msgid "Be_fore:"
msgstr "Før:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:500
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:458
msgctxt "footnotesendnotestabpage|label2"
msgid "Endnotes"
msgstr "Slutnoter"
@@ -9339,27 +9339,27 @@ msgctxt "formatsectiondialog|notes"
msgid "Footnotes/Endnotes"
msgstr "Fodnoter og slutnoter"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:63
+#: sw/uiconfig/swriter/ui/formattablepage.ui:77
msgctxt "formattablepage|nameft"
msgid "_Name"
msgstr "_Navn"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:79
+#: sw/uiconfig/swriter/ui/formattablepage.ui:91
msgctxt "formattablepage|widthft"
msgid "W_idth"
msgstr "_Bredde"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:110
+#: sw/uiconfig/swriter/ui/formattablepage.ui:120
msgctxt "formattablepage|relwidth"
msgid "Relati_ve"
msgstr "_Relativ"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:155
+#: sw/uiconfig/swriter/ui/formattablepage.ui:160
msgctxt "formattablepage|label45"
msgid "Properties"
msgstr "Egenskaber"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:194
+#: sw/uiconfig/swriter/ui/formattablepage.ui:195
msgctxt "formattablepage|leftft"
msgid "Lef_t"
msgstr "_Venstre"
@@ -9369,62 +9369,62 @@ msgctxt "formattablepage|rightft"
msgid "Ri_ght"
msgstr "_Højre"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:228
+#: sw/uiconfig/swriter/ui/formattablepage.ui:226
msgctxt "formattablepage|aboveft"
msgid "_Above"
msgstr "_Over"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:245
+#: sw/uiconfig/swriter/ui/formattablepage.ui:241
msgctxt "formattablepage|belowft"
msgid "_Below"
msgstr "_Under"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:320
+#: sw/uiconfig/swriter/ui/formattablepage.ui:311
msgctxt "formattablepage|label46"
msgid "Spacing"
msgstr "Afstand"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:362
+#: sw/uiconfig/swriter/ui/formattablepage.ui:349
msgctxt "formattablepage|full"
msgid "A_utomatic"
msgstr "_Automatisk"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:380
+#: sw/uiconfig/swriter/ui/formattablepage.ui:365
msgctxt "formattablepage|left"
msgid "_Left"
msgstr "_Venstre"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:398
+#: sw/uiconfig/swriter/ui/formattablepage.ui:381
msgctxt "formattablepage|fromleft"
msgid "_From left"
msgstr "_Fra venstre"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:416
+#: sw/uiconfig/swriter/ui/formattablepage.ui:397
msgctxt "formattablepage|right"
msgid "R_ight"
msgstr "_Højre"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:435
+#: sw/uiconfig/swriter/ui/formattablepage.ui:413
msgctxt "formattablepage|center"
msgid "_Center"
msgstr "_Centreret"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:453
+#: sw/uiconfig/swriter/ui/formattablepage.ui:429
msgctxt "formattablepage|free"
msgid "_Manual"
msgstr "_Manuel"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:478
+#: sw/uiconfig/swriter/ui/formattablepage.ui:452
msgctxt "formattablepage|label43"
msgid "Alignment"
msgstr "Justering"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:522
+#: sw/uiconfig/swriter/ui/formattablepage.ui:491
msgctxt "formattablepage|label53"
msgid "Text _direction"
msgstr "_Tekstretning"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:553
+#: sw/uiconfig/swriter/ui/formattablepage.ui:519
msgctxt "formattablepage|label44"
msgid "Properties "
msgstr "Egenskaber "
@@ -9779,22 +9779,27 @@ msgctxt "headerfootermenu|insert_pagenumber"
msgid "Insert Page Number"
msgstr "Indsæt sidetal"
-#: sw/uiconfig/swriter/ui/indentpage.ui:52
+#: sw/uiconfig/swriter/ui/headerfootermenu.ui:42
+msgctxt "headerfootermenu|insert_pagecount"
+msgid "Insert Page Count"
+msgstr "Indsæt sidetal"
+
+#: sw/uiconfig/swriter/ui/indentpage.ui:57
msgctxt "indentpage|label1"
msgid "_Before section"
msgstr "Før sektion"
-#: sw/uiconfig/swriter/ui/indentpage.ui:67
+#: sw/uiconfig/swriter/ui/indentpage.ui:71
msgctxt "indentpage|label3"
msgid "_After section"
msgstr "Efter sektion"
-#: sw/uiconfig/swriter/ui/indentpage.ui:113
+#: sw/uiconfig/swriter/ui/indentpage.ui:115
msgctxt "indentpage|label2"
msgid "Indent"
msgstr "Indryk"
-#: sw/uiconfig/swriter/ui/indentpage.ui:142
+#: sw/uiconfig/swriter/ui/indentpage.ui:155
msgctxt "indentpage|preview-atkobject"
msgid "Example"
msgstr "Eksempel"
@@ -11772,12 +11777,12 @@ msgstr "Ny brugerdefineret oversigt"
#: sw/uiconfig/swriter/ui/notebookbar.ui:537
msgctxt "notebookbar|Help"
msgid "_Check for Updates..."
-msgstr ""
+msgstr "Søg efter opdateringer..."
#: sw/uiconfig/swriter/ui/notebookbar.ui:1581
msgctxt "notebookbar|Tools"
msgid "_Check for Updates..."
-msgstr ""
+msgstr "Søg efter opdateringer..."
#: sw/uiconfig/swriter/ui/notebookbar.ui:1851
msgctxt "notebookbar|FileMenuButton"
@@ -11857,7 +11862,7 @@ msgstr "Vis"
#: sw/uiconfig/swriter/ui/notebookbar.ui:9451
msgctxt "notebookbar|TableMenuButton"
msgid "T_able"
-msgstr ""
+msgstr "Tabel"
#: sw/uiconfig/swriter/ui/notebookbar.ui:9535
msgctxt "notebookbar|TableLabel"
@@ -11897,7 +11902,7 @@ msgstr "Objekt"
#: sw/uiconfig/swriter/ui/notebookbar.ui:13120
msgctxt "notebookbar|ToolsMenuButton"
msgid "_Tools"
-msgstr ""
+msgstr "_Funktioner"
#: sw/uiconfig/swriter/ui/notebookbar.ui:14074
msgctxt "notebookbar|DevLabel"
@@ -11907,7 +11912,7 @@ msgstr "Værktøjer"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:1697
msgctxt "notebookbar_compact|Update"
msgid "_Check for Updates..."
-msgstr ""
+msgstr "Søg efter opdateringer..."
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:2007
msgctxt "notebookbar_compact|FileMenuButton"
@@ -11990,7 +11995,7 @@ msgstr "Vis"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6806
msgctxt "notebookbar_compact|TableMenuButton"
msgid "T_able"
-msgstr ""
+msgstr "T_abel"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7540
msgctxt "notebookbar_compact|TableLabel"
@@ -12037,7 +12042,7 @@ msgstr "Objekt"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9757
msgctxt "notebookbar_compact|ToolsMenuButton"
msgid "_Tools"
-msgstr ""
+msgstr "Funktioner"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10600
msgctxt "notebookbar_compact|DevLabel"
@@ -12052,7 +12057,7 @@ msgstr "Menulinje"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:2516
msgctxt "notebookbar_groupedbar_compact|Menu"
msgid "_Check for Updates..."
-msgstr ""
+msgstr "Søg efter opdateringer..."
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:2651
msgctxt "notebookbar_groupedbar_compact|Quotation2"
@@ -12062,7 +12067,7 @@ msgstr "Citat"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:2945
msgctxt "notebookbar_groupedbar_compact|Tools"
msgid "_Check for Updates..."
-msgstr ""
+msgstr "Søg efter opdateringer..."
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:3246
msgctxt "notebookbar_groupedbar_compact|menub"
@@ -12277,12 +12282,12 @@ msgstr "_Vis"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:1486
msgctxt "notebookbar_groupedbar_full|Help"
msgid "_Check for Updates..."
-msgstr ""
+msgstr "Søg efter opdateringer..."
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:2555
msgctxt "notebookbar_groupedbar_full|Menu"
msgid "_Check for Updates..."
-msgstr ""
+msgstr "Søg efter opdateringer..."
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:2690
msgctxt "notebookbar_groupedbar_full|Quotation2"
@@ -12292,7 +12297,7 @@ msgstr "Citat"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:2984
msgctxt "notebookbar_groupedbar_full|Tools"
msgid "_Check for Updates..."
-msgstr ""
+msgstr "Søg efter opdateringer..."
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:3289
msgctxt "notebookbar_groupedbar_full|menub"
@@ -13285,7 +13290,7 @@ msgstr "Beskyt formular"
#: sw/uiconfig/swriter/ui/optcompatpage.ui:68
msgctxt "optcompatpage|format"
-msgid "MS Word-compatible trailing blanks"
+msgid "Word-compatible trailing blanks"
msgstr "MS Word kompatible afsluttende blanktegn"
#: sw/uiconfig/swriter/ui/optcompatpage.ui:69
@@ -13295,8 +13300,8 @@ msgstr "Tolerer hvide linjer af PDF sidebaggrunde, for kompatibilitet med gamle
#: sw/uiconfig/swriter/ui/optcompatpage.ui:70
msgctxt "optcompatpage|format"
-msgid "A database field (e.g., MailMerge) with empty value hides its paragraph"
-msgstr ""
+msgid "Hide paragraphs of database fields (e.g., mail merge) with an empty value"
+msgstr "Skjul afsnit af databasefelter (f.eks. brevfletning) med en tom værdi"
#: sw/uiconfig/swriter/ui/optcompatpage.ui:71
msgctxt "optcompatpage|format"
@@ -15249,7 +15254,7 @@ msgstr "Indstillinger"
#: sw/uiconfig/swriter/ui/savemonitordialog.ui:8
msgctxt "printmonitordialog|PrintMonitorDialog"
msgid "Save monitor"
-msgstr ""
+msgstr "Gem skærm"
#: sw/uiconfig/swriter/ui/savemonitordialog.ui:71
msgctxt "printmonitordialog|saving"
@@ -15981,122 +15986,122 @@ msgctxt "tableproperties|background"
msgid "Background"
msgstr "Baggrund"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:25
-msgctxt "tabletextflowpage|liststore1"
-msgid "Horizontal"
-msgstr "Vandret"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:29
-msgctxt "tabletextflowpage|liststore1"
-msgid "Vertical"
-msgstr "Lodret"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:33
-msgctxt "tabletextflowpage|liststore1"
-msgid "Use superordinate object settings"
-msgstr "Brug indstillinger fra det overordnede objekt"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:47
-msgctxt "tabletextflowpage|liststore2"
-msgid "Top"
-msgstr "Top"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:51
-msgctxt "tabletextflowpage|liststore2"
-msgid "Centered"
-msgstr "Centreret"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:55
-msgctxt "tabletextflowpage|liststore2"
-msgid "Bottom"
-msgstr "Bund"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:97
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:53
msgctxt "tabletextflowpage|break"
msgid "_Break"
msgstr "_Bryd"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:112
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:68
msgctxt "tabletextflowpage|page"
msgid "_Page"
msgstr "_Side"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:132
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:87
msgctxt "tabletextflowpage|column"
msgid "Col_umn"
msgstr "_Kolonne"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:151
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:106
msgctxt "tabletextflowpage|before"
msgid "Be_fore"
msgstr "F_ør"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:171
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:125
msgctxt "tabletextflowpage|after"
msgid "_After"
msgstr "_Efter"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:203
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:158
msgctxt "tabletextflowpage|pagestyle"
msgid "With Page St_yle"
msgstr "Med sidet_ypografi"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:224
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:177
msgctxt "tabletextflowpage|pagenoft"
msgid "Page _number"
msgstr "Side_tal"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:257
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:213
msgctxt "tabletextflowpage|pagestylelb-atkobject"
msgid "With Page Style"
msgstr "Med sidetypografi"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:274
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:230
msgctxt "tabletextflowpage|split"
msgid "Allow _table to split across pages and columns"
msgstr "Tillad at _tabellen deles op på tværs af sider og spalter"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:289
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:245
msgctxt "tabletextflowpage|splitrow"
msgid "Allow row to break a_cross pages and columns"
msgstr "Tillad _opdeling af række over sider og spalter"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:306
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:262
msgctxt "tabletextflowpage|keep"
msgid "_Keep with next paragraph"
msgstr "_Hold sammen med næste afsnit"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:328
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:284
msgctxt "tabletextflowpage|label40"
msgid "Text _orientation"
msgstr "Tekstretning"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:361
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:298
+msgctxt "tabletextflowpage|liststore1"
+msgid "Horizontal"
+msgstr "Vandret"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:299
+msgctxt "tabletextflowpage|liststore1"
+msgid "Vertical"
+msgstr "Lodret"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:300
+msgctxt "tabletextflowpage|liststore1"
+msgid "Use superordinate object settings"
+msgstr "Brug indstillinger fra det overordnede objekt"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:321
msgctxt "tabletextflowpage|headline"
msgid "R_epeat heading"
msgstr "_Gentag tabeloverskrift"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:383
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:343
msgctxt "tabletextflowpage|label38"
msgid "The first "
msgstr "Den første "
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:396
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:356
msgctxt "tabletextflowpage|label39"
msgid "rows"
msgstr "rækker"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:434
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:395
msgctxt "tabletextflowpage|label35"
msgid "Text Flow"
msgstr "Tekstforløb"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:467
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:428
msgctxt "tabletextflowpage|label41"
msgid "_Vertical alignment"
msgstr "_Lodret justering"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:495
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:442
+msgctxt "tabletextflowpage|liststore2"
+msgid "Top"
+msgstr "Top"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:443
+msgctxt "tabletextflowpage|liststore2"
+msgid "Centered"
+msgstr "Centreret"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:444
+msgctxt "tabletextflowpage|liststore2"
+msgid "Bottom"
+msgstr "Bund"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:460
msgctxt "tabletextflowpage|label36"
msgid "Alignment"
msgstr "Justering"
@@ -16878,8 +16883,8 @@ msgstr "Stikordsregister"
#: sw/uiconfig/swriter/ui/tocindexpage.ui:58
msgctxt "tocindexpage|liststore1"
-msgid "Illustration Index"
-msgstr "Figuroversigt"
+msgid "Table of Figures"
+msgstr ""
#: sw/uiconfig/swriter/ui/tocindexpage.ui:62
msgctxt "tocindexpage|liststore1"
diff --git a/source/da/swext/mediawiki/help.po b/source/da/swext/mediawiki/help.po
index 15855516fee..7c6743f66d1 100644
--- a/source/da/swext/mediawiki/help.po
+++ b/source/da/swext/mediawiki/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: 2018-03-28 16:46+0200\n"
-"PO-Revision-Date: 2017-10-09 16:22+0000\n"
-"Last-Translator: scootergrisen <scootergrisen@gmail.com>\n"
+"PO-Revision-Date: 2018-05-27 18:02+0000\n"
+"Last-Translator: SteenRønnow <steen.roennow@mail.dk>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: da\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1507566151.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1527444130.000000\n"
#: help.tree
msgctxt ""
@@ -150,7 +150,7 @@ msgctxt ""
"par_id368968\n"
"help.text"
msgid "In the <link href=\"com.sun.wiki-publisher/wikisettings.xhp\">Options</link> dialog, click Add."
-msgstr "klik Tilføj i dialogen <link href=\"com.sun.wiki-publisher/wikisettings.xhp\">Indstillinger</link> ."
+msgstr "Klik på Tilføj i dialogen <link href=\"com.sun.wiki-publisher/wikisettings.xhp\">Indstillinger</link> ."
#: wiki.xhp
msgctxt ""
@@ -182,7 +182,7 @@ msgctxt ""
"par_id5906552\n"
"help.text"
msgid "In the Username box, enter your user ID for your wiki account."
-msgstr "I boksen Brugernavn, indtast dit brugerID for din wiki konto."
+msgstr "I boksen Brugernavn indtaster du dit brugerID til din wiki-konto."
#: wiki.xhp
msgctxt ""
@@ -190,7 +190,7 @@ msgctxt ""
"par_id9297158\n"
"help.text"
msgid "If the wiki allows anonymous write access, you can leave the Username and Password boxes empty."
-msgstr "Hvis wikien tillader anonym skriveadgang, kan du efterlade boksene Brugernavn og Adgangskode tomme."
+msgstr "Hvis wikien tillader anonym skriveadgang, kan du lade boksene Brugernavn og Adgangskode være tomme."
#: wiki.xhp
msgctxt ""
@@ -198,7 +198,7 @@ msgctxt ""
"par_id8869594\n"
"help.text"
msgid "In the Password box, enter the password for your wiki account, then click OK."
-msgstr "I boksen Adgangskode, indtast adgangskoden for din wiki-konto, og klik så OK."
+msgstr "I boksen Adgangskode indtaster du adgangskoden til din wiki-konto og klikker så på OK."
#: wiki.xhp
msgctxt ""
@@ -246,7 +246,7 @@ msgctxt ""
"par_id228278\n"
"help.text"
msgid "In the <link href=\"com.sun.wiki-publisher/wikisend.xhp\">Send to MediaWiki</link> dialog, specify the settings for your entry."
-msgstr "I dialogen <link href=\"com.sun.wiki-publisher/wikisend.xhp\">Send til MediaWiki</link> kan du angive indstillingerne for dit indlæg."
+msgstr "I dialogen <link href=\"com.sun.wiki-publisher/wikisend.xhp\">Send til MediaWiki</link> angiver du indstillingerne for dit indlæg."
#: wiki.xhp
msgctxt ""
@@ -318,7 +318,7 @@ msgctxt ""
"par_id4571672\n"
"help.text"
msgid "Use the MediaWiki dialog to add or edit your MediaWiki account settings."
-msgstr "Brug dialogen MediaWiki til at tilføje eller redigere dine MediaWiki kontoindstillinger."
+msgstr "Brug dialogen MediaWiki til at tilføje eller redigere dine MediaWiki-kontoindstillinger."
#: wikiaccount.xhp
msgctxt ""
@@ -334,7 +334,7 @@ msgctxt ""
"par_id7862483\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter your user name on the MediaWiki server. Leave empty for anonymous access.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Indtast dit brugernavn på MediaWiki Serveren. Efterlad feltet tomt for at få anonym adgang.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Indtast dit brugernavn på MediaWiki Serveren. Lad feltet være tomt for at få anonym adgang.</ahelp>"
#: wikiaccount.xhp
msgctxt ""
@@ -342,7 +342,7 @@ msgctxt ""
"par_id1113010\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter your password on the MediaWiki server. Leave empty for anonymous access.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Indtast din adgangskode på MediaWiki Serveren. Efterlad feltet tomt for at opnå anonym adgang.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Indtast din adgangskode på MediaWiki Serveren. Lad feltet være tomt for at opnå anonym adgang.</ahelp>"
#: wikiaccount.xhp
msgctxt ""
@@ -366,7 +366,7 @@ msgctxt ""
"par_id628070\n"
"help.text"
msgid "If the wiki allows anonymous access, you can leave the account text boxes empty. Else enter your user name and password."
-msgstr "Hvis wikien tillader anonym adgang, kan du efterlade boksen konto tom. Ellers skal du indtastet dit brugernavn og adgangskode."
+msgstr "Hvis wikien tillader anonym adgang, kan du lade boksen Konto være tom. Ellers skal du indtaste dit brugernavn og adgangskode."
#: wikiaccount.xhp
msgctxt ""
@@ -438,7 +438,7 @@ msgctxt ""
"par_id3735465\n"
"help.text"
msgid "Native OpenDocument hyperlinks are transformed into “external” wiki links. Therefore, the built-in linking facility of OpenDocument should only be used to create links that point to other sites outside the wiki web. For creating wiki links that point to other subjects of the same wiki domain, use wiki links."
-msgstr "OpenDocument hyperlinks konverteres til \"eksterne\" wiki-links. Derfor bør den indbyggede link-funktion i OpenDocument kun bruges til at oprette links, som peger på eksterne lokationer udenfor wikien. For at oprette wiki-links, som peger på emner indenfor wikiens domæne, bruges wiki-links."
+msgstr "OpenDocument hyperlinks konverteres til \"eksterne\" wiki-links. Derfor bør den indbyggede link-funktion i OpenDocument kun bruges til at oprette links, som peger på eksterne lokationer udenfor wikien. For at oprette wiki-links, som peger på emner indenfor wikiens domæne, bruges wiki-links."
#: wikiformats.xhp
msgctxt ""
@@ -494,7 +494,7 @@ msgctxt ""
"par_id1459395\n"
"help.text"
msgid "A paragraph style with a fixed-width font is transformed as pre-formatted text. Pre-formatted text is shown on the wiki with a border around the text."
-msgstr "En afsnitstypografi med fastbredde-skrifttype konverteres til præformateret tekst. Præformateret tekst vises på den wiki'en med en ramme omkring teksten."
+msgstr "En afsnitstypografi med fastbredde-skrifttype konverteres til præformateret tekst. Præformateret tekst vises på wiki'en med en ramme omkring teksten."
#: wikiformats.xhp
msgctxt ""
@@ -710,7 +710,7 @@ msgctxt ""
"par_id3386333\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Opens the MediaWiki dialog to edit the selected entry.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Åbner MediaWiki-dialogen til at redigere det valgte element.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Åbner MediaWiki-dialogen for at redigere det valgte element.</ahelp>"
#: wikisettings.xhp
msgctxt ""
@@ -726,4 +726,4 @@ msgctxt ""
"par_id1029084\n"
"help.text"
msgid "When you click Add or Edit, the <link href=\"com.sun.wiki-publisher/wikiaccount.xhp\">MediaWiki</link> dialog opens."
-msgstr "Når du trykker Tilføj eller Rediger, åbnes dialogen <link href=\"com.sun.wiki-publisher/wikiaccount.xhp\">MediaWiki</link>"
+msgstr "Når du trykker på Tilføj eller Rediger, åbnes dialogen <link href=\"com.sun.wiki-publisher/wikiaccount.xhp\">MediaWiki</link>"
diff --git a/source/da/swext/mediawiki/src.po b/source/da/swext/mediawiki/src.po
index 869ca59445c..ee9c8a246b9 100644
--- a/source/da/swext/mediawiki/src.po
+++ b/source/da/swext/mediawiki/src.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: 2015-04-22 23:39+0200\n"
-"PO-Revision-Date: 2017-10-09 16:22+0000\n"
-"Last-Translator: scootergrisen <scootergrisen@gmail.com>\n"
+"PO-Revision-Date: 2018-05-27 18:02+0000\n"
+"Last-Translator: SteenRønnow <steen.roennow@mail.dk>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: da\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1507566160.000000\n"
+"X-POOTLE-MTIME: 1527444133.000000\n"
#: description.xml
msgctxt ""
@@ -30,4 +30,4 @@ msgctxt ""
"extdesc\n"
"description.text"
msgid "The Wiki Publisher enables you to create Wiki articles on MediaWiki servers without having to know the syntax of the MediaWiki markup language. Publish your new and existing documents transparently with the Writer to a wiki page.\n"
-msgstr "Wiki Publisher gør dig i stand til at skabe Wikiartikler på MediaWikiservere uden at have kendskab til den opmærkningssyntaks som bruges af MediaWiki. Publisér nye og redigerede dokumenter fra Writer til en wikiside.\n"
+msgstr "Wiki Publisher gør dig i stand til at oprette wiki-artikler på MediaWikiservere uden at have kendskab til den opmærkningssyntaks som bruges af MediaWiki. Publisér nye og redigerede dokumenter fra Writer til en wikiside.\n"
diff --git a/source/da/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po b/source/da/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po
index 38273aee67f..6c79bf15aee 100644
--- a/source/da/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po
+++ b/source/da/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po
@@ -2,18 +2,19 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2013-05-23 12:05+0200\n"
-"PO-Revision-Date: 2011-04-05 10:53+0200\n"
-"Last-Translator: Leif <leiflodahl@gmail.com>\n"
+"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
+"POT-Creation-Date: 2015-04-22 23:39+0200\n"
+"PO-Revision-Date: 2018-05-27 18:02+0000\n"
+"Last-Translator: SteenRønnow <steen.roennow@mail.dk>\n"
"Language-Team: LANGUAGE <LL@li.org>\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"
-"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1527444145.000000\n"
#: WikiExtension.xcu
msgctxt ""
@@ -22,7 +23,7 @@ msgctxt ""
"GeneralSendError\n"
"value.text"
msgid "The operation 'Send to MediaWiki' could not be completed successfully."
-msgstr "Operation 'Send til MediaWiki' kunne ikke færdiggøres succesfuldt."
+msgstr "Operationen 'Send til MediaWiki' kunne ikke færdiggøres succesfuldt."
#: WikiExtension.xcu
msgctxt ""
@@ -31,7 +32,7 @@ msgctxt ""
"NoWikiFilter\n"
"value.text"
msgid "The MediaWiki export filter cannot be found. Choose 'Tools-XML Filter Settings' to install the filter, or use the setup to install the component."
-msgstr "MediaWiki eksportfilter kan ikke findes. Vælg 'Funktioner-Indstillinger for XML-filter' for at installere filteret, eller brug installationsprogrammet for at installere komponenten."
+msgstr "MediaWiki-eksportfilter kan ikke findes. Vælg 'Funktioner - Indstillinger for XML-filter' for at installere filteret, eller brug installationsprogrammet for at installere komponenten."
#: WikiExtension.xcu
msgctxt ""
@@ -40,7 +41,7 @@ msgctxt ""
"NoConnectionToURL\n"
"value.text"
msgid "A connection to the MediaWiki system at '$ARG1' could not be created."
-msgstr "En forbindelse til MediaWiki Systemet ved '$ARG1' kunne ikke oprettes."
+msgstr "En forbindelse til MediaWiki-systemet ved '$ARG1' kunne ikke oprettes."
#: WikiExtension.xcu
msgctxt ""
@@ -76,7 +77,7 @@ msgctxt ""
"CancelSending\n"
"value.text"
msgid "The transfer has been interrupted. Please check the integrity of the wiki article."
-msgstr "Overførslen er blevet afbrudt. Kontroller venligst integriteten af wiki artiklen."
+msgstr "Overførslen er blevet afbrudt. Kontroller venligst wiki-artiklens integritet."
#: WikiExtension.xcu
msgctxt ""
@@ -121,7 +122,7 @@ msgctxt ""
"Dlg_WikiArticle\n"
"value.text"
msgid "Wiki article"
-msgstr "Wikiartikel"
+msgstr "Wiki-artikel"
#: WikiExtension.xcu
msgctxt ""
@@ -193,7 +194,7 @@ msgctxt ""
"Dlg_NewWikiPage_Label1\n"
"value.text"
msgid "A wiki article with the title '$ARG1' does not exist yet. Do you want to create a new article with that name?"
-msgstr "En wikiartikel med titlen '$ARG1' findes ikke endnu. Vil du oprette en ny artikel med det navn?"
+msgstr "En wiki-artikel med titlen '$ARG1' findes ikke endnu. Vil du oprette en ny artikel med det navn?"
#: WikiExtension.xcu
msgctxt ""
diff --git a/source/da/writerperfect/messages.po b/source/da/writerperfect/messages.po
index c05e4c670ef..d44d17a07e1 100644
--- a/source/da/writerperfect/messages.po
+++ b/source/da/writerperfect/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-16 16:54+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2018-05-08 20:19+0000\n"
"Last-Translator: SteenRønnow <steen.roennow@mail.dk>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -66,97 +66,97 @@ msgctxt "exportepub|generalft"
msgid "General"
msgstr "Generelt"
-#: writerperfect/uiconfig/ui/exportepub.ui:122
+#: writerperfect/uiconfig/ui/exportepub.ui:121
msgctxt "exportepub|versionft"
msgid "Version:"
msgstr "Version:"
-#: writerperfect/uiconfig/ui/exportepub.ui:139
+#: writerperfect/uiconfig/ui/exportepub.ui:138
msgctxt "exportepub|epub3"
msgid "EPUB 3.0"
msgstr "EPUB 3.0"
-#: writerperfect/uiconfig/ui/exportepub.ui:140
+#: writerperfect/uiconfig/ui/exportepub.ui:139
msgctxt "exportepub|epub2"
msgid "EPUB 2.0"
msgstr "EPUB 2.0"
-#: writerperfect/uiconfig/ui/exportepub.ui:175
+#: writerperfect/uiconfig/ui/exportepub.ui:174
msgctxt "exportepub|splitft"
msgid "Split method:"
msgstr "Opdelingsmetode:"
-#: writerperfect/uiconfig/ui/exportepub.ui:192
+#: writerperfect/uiconfig/ui/exportepub.ui:191
msgctxt "exportepub|splitpage"
msgid "Page break"
msgstr "Sideskift"
-#: writerperfect/uiconfig/ui/exportepub.ui:193
+#: writerperfect/uiconfig/ui/exportepub.ui:192
msgctxt "exportepub|splitheading"
msgid "Heading"
msgstr "Overskrift"
-#: writerperfect/uiconfig/ui/exportepub.ui:228
+#: writerperfect/uiconfig/ui/exportepub.ui:227
msgctxt "exportepub|layoutft"
msgid "Layout method:"
msgstr "Layout-metode:"
-#: writerperfect/uiconfig/ui/exportepub.ui:245
+#: writerperfect/uiconfig/ui/exportepub.ui:244
msgctxt "exportepub|layoutreflowable"
msgid "Reflowable"
msgstr "Ombrydelig"
-#: writerperfect/uiconfig/ui/exportepub.ui:246
+#: writerperfect/uiconfig/ui/exportepub.ui:245
msgctxt "exportepub|layoutfixed"
msgid "Fixed"
msgstr "Fast"
-#: writerperfect/uiconfig/ui/exportepub.ui:281
+#: writerperfect/uiconfig/ui/exportepub.ui:280
msgctxt "exportepub|coverimageft"
msgid "Custom cover image:"
msgstr "Brugerdefineret omslagsbillede:"
-#: writerperfect/uiconfig/ui/exportepub.ui:311
+#: writerperfect/uiconfig/ui/exportepub.ui:310
msgctxt "exportepub|coverbutton"
msgid "Browse..."
msgstr "Gennemse..."
-#: writerperfect/uiconfig/ui/exportepub.ui:355
+#: writerperfect/uiconfig/ui/exportepub.ui:354
msgctxt "exportepub|mediadirft"
msgid "Custom media directory:"
msgstr "Brugerdefineret mediebibliotek:"
-#: writerperfect/uiconfig/ui/exportepub.ui:385
+#: writerperfect/uiconfig/ui/exportepub.ui:384
msgctxt "exportepub|mediabutton"
msgid "Browse..."
msgstr "Gennemse..."
-#: writerperfect/uiconfig/ui/exportepub.ui:429
+#: writerperfect/uiconfig/ui/exportepub.ui:428
msgctxt "exportepub|metadataft"
msgid "Metadata"
msgstr "Metadata"
-#: writerperfect/uiconfig/ui/exportepub.ui:470
+#: writerperfect/uiconfig/ui/exportepub.ui:468
msgctxt "exportepub|identifierft"
msgid "Identifier:"
msgstr "Identifikator:"
-#: writerperfect/uiconfig/ui/exportepub.ui:485
+#: writerperfect/uiconfig/ui/exportepub.ui:483
msgctxt "exportepub|titleft"
msgid "Title:"
msgstr "Titel:"
-#: writerperfect/uiconfig/ui/exportepub.ui:511
+#: writerperfect/uiconfig/ui/exportepub.ui:509
msgctxt "exportepub|authorft"
msgid "Author:"
msgstr "Forfatter:"
-#: writerperfect/uiconfig/ui/exportepub.ui:537
+#: writerperfect/uiconfig/ui/exportepub.ui:535
msgctxt "exportepub|languageft"
msgid "Language:"
msgstr "Sprog:"
-#: writerperfect/uiconfig/ui/exportepub.ui:563
+#: writerperfect/uiconfig/ui/exportepub.ui:561
msgctxt "exportepub|dateft"
msgid "Date:"
msgstr "Dato:"
diff --git a/source/de/cui/messages.po b/source/de/cui/messages.po
index 3b4e94c8808..28e1cef0b66 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: 2018-05-22 13:16+0200\n"
-"PO-Revision-Date: 2018-05-17 14:22+0000\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
+"PO-Revision-Date: 2018-05-31 10:03+0000\n"
"Last-Translator: Thomas Hackert <thackert@nexgo.de>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: de\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1526566938.000000\n"
+"X-POOTLE-MTIME: 1527761018.000000\n"
#: cui/inc/personalization.hrc:31
msgctxt "RID_SVXSTR_PERSONA_CATEGORIES"
@@ -9872,97 +9872,97 @@ msgctxt "positionsizedialog|PositionAndSizeDialog"
msgid "Position and Size"
msgstr "Position und Größe"
-#: cui/uiconfig/ui/positionsizedialog.ui:107
+#: cui/uiconfig/ui/positionsizedialog.ui:136
msgctxt "positionsizedialog|RID_SVXPAGE_POSITION_SIZE"
msgid "Position and Size"
msgstr "Position und Größe"
-#: cui/uiconfig/ui/positionsizedialog.ui:129
+#: cui/uiconfig/ui/positionsizedialog.ui:182
msgctxt "positionsizedialog|RID_SVXPAGE_SWPOSSIZE"
msgid "Position and Size"
msgstr "Position und Größe"
-#: cui/uiconfig/ui/positionsizedialog.ui:152
+#: cui/uiconfig/ui/positionsizedialog.ui:229
msgctxt "positionsizedialog|RID_SVXPAGE_ANGLE"
msgid "Rotation"
msgstr "Drehung"
-#: cui/uiconfig/ui/positionsizedialog.ui:175
+#: cui/uiconfig/ui/positionsizedialog.ui:276
msgctxt "positionsizedialog|RID_SVXPAGE_SLANT"
msgid "Slant & Corner Radius"
msgstr "Schräg stellen / Eckenradius"
-#: cui/uiconfig/ui/possizetabpage.ui:40
+#: cui/uiconfig/ui/possizetabpage.ui:61
msgctxt "possizetabpage|FT_POS_X"
msgid "Position _X:"
msgstr "Position _X:"
-#: cui/uiconfig/ui/possizetabpage.ui:56
+#: cui/uiconfig/ui/possizetabpage.ui:75
msgctxt "possizetabpage|FT_POS_Y"
msgid "Position _Y:"
msgstr "Position _Y:"
-#: cui/uiconfig/ui/possizetabpage.ui:110
+#: cui/uiconfig/ui/possizetabpage.ui:128
msgctxt "possizetabpage|FT_POSREFERENCE"
msgid "_Base point:"
msgstr "_Basispunkt:"
-#: cui/uiconfig/ui/possizetabpage.ui:148
+#: cui/uiconfig/ui/possizetabpage.ui:182
msgctxt "possizetabpage|label1"
msgid "Position"
msgstr "Position"
-#: cui/uiconfig/ui/possizetabpage.ui:190
+#: cui/uiconfig/ui/possizetabpage.ui:224
msgctxt "possizetabpage|FT_WIDTH"
msgid "Wi_dth:"
msgstr "B_reite:"
-#: cui/uiconfig/ui/possizetabpage.ui:206
+#: cui/uiconfig/ui/possizetabpage.ui:238
msgctxt "possizetabpage|FT_HEIGHT"
msgid "H_eight:"
msgstr "Höh_e:"
-#: cui/uiconfig/ui/possizetabpage.ui:247
+#: cui/uiconfig/ui/possizetabpage.ui:276
msgctxt "possizetabpage|CBX_SCALE"
msgid "_Keep ratio"
msgstr "Seite_nverhältnis beibehalten"
-#: cui/uiconfig/ui/possizetabpage.ui:279
+#: cui/uiconfig/ui/possizetabpage.ui:307
msgctxt "possizetabpage|FT_SIZEREFERENCE"
msgid "Base _point:"
msgstr "Basispun_kt:"
-#: cui/uiconfig/ui/possizetabpage.ui:317
+#: cui/uiconfig/ui/possizetabpage.ui:361
msgctxt "possizetabpage|label2"
msgid "Size"
msgstr "Größe"
-#: cui/uiconfig/ui/possizetabpage.ui:356
+#: cui/uiconfig/ui/possizetabpage.ui:401
msgctxt "possizetabpage|TSB_POSPROTECT"
msgid "Positio_n"
msgstr "_Position"
-#: cui/uiconfig/ui/possizetabpage.ui:373
+#: cui/uiconfig/ui/possizetabpage.ui:418
msgctxt "possizetabpage|TSB_SIZEPROTECT"
msgid "_Size"
msgstr "_Größe"
-#: cui/uiconfig/ui/possizetabpage.ui:397
+#: cui/uiconfig/ui/possizetabpage.ui:441
msgctxt "possizetabpage|label3"
msgid "Protect"
msgstr "Schützen"
-#: cui/uiconfig/ui/possizetabpage.ui:430
+#: cui/uiconfig/ui/possizetabpage.ui:475
msgctxt "possizetabpage|TSB_AUTOGROW_WIDTH"
msgid "_Fit width to text"
msgstr "Br_eite an Text anpassen"
-#: cui/uiconfig/ui/possizetabpage.ui:447
+#: cui/uiconfig/ui/possizetabpage.ui:492
msgctxt "possizetabpage|TSB_AUTOGROW_HEIGHT"
msgid "Fit _height to text"
msgstr "Höhe a_n Text anpassen"
-#: cui/uiconfig/ui/possizetabpage.ui:471
+#: cui/uiconfig/ui/possizetabpage.ui:515
msgctxt "possizetabpage|label4"
msgid "Adapt"
msgstr "Anpassen"
@@ -10162,47 +10162,47 @@ msgctxt "recordnumberdialog|label2"
msgid "go to record"
msgstr "gehe zu Datensatz"
-#: cui/uiconfig/ui/rotationtabpage.ui:52
+#: cui/uiconfig/ui/rotationtabpage.ui:56
msgctxt "rotationtabpage|FT_POS_X"
msgid "Position _X:"
msgstr "Position _X:"
-#: cui/uiconfig/ui/rotationtabpage.ui:66
+#: cui/uiconfig/ui/rotationtabpage.ui:70
msgctxt "rotationtabpage|FT_POS_Y"
msgid "Position _Y:"
msgstr "Position _Y:"
-#: cui/uiconfig/ui/rotationtabpage.ui:116
+#: cui/uiconfig/ui/rotationtabpage.ui:123
msgctxt "rotationtabpage|FT_POSPRESETS"
msgid "_Default settings:"
msgstr "_Standardeinstellungen:"
-#: cui/uiconfig/ui/rotationtabpage.ui:130
+#: cui/uiconfig/ui/rotationtabpage.ui:151
msgctxt "rotationtabpage|CTL_RECT|tooltip_text"
msgid "Rotation point"
msgstr "Rotationspunkt"
-#: cui/uiconfig/ui/rotationtabpage.ui:155
+#: cui/uiconfig/ui/rotationtabpage.ui:178
msgctxt "rotationtabpage|label1"
msgid "Pivot Point"
msgstr "Drehpunkt"
-#: cui/uiconfig/ui/rotationtabpage.ui:197
+#: cui/uiconfig/ui/rotationtabpage.ui:220
msgctxt "rotationtabpage|FT_ANGLE"
msgid "_Angle:"
msgstr "_Winkel:"
-#: cui/uiconfig/ui/rotationtabpage.ui:238
+#: cui/uiconfig/ui/rotationtabpage.ui:263
msgctxt "rotationtabpage|FT_ANGLEPRESETS"
msgid "Default _settings:"
msgstr "Standard_einstellungen:"
-#: cui/uiconfig/ui/rotationtabpage.ui:252
+#: cui/uiconfig/ui/rotationtabpage.ui:287
msgctxt "rotationtabpage|CTL_ANGLE|tooltip_text"
msgid "Rotation Angle"
msgstr "Drehwinkel"
-#: cui/uiconfig/ui/rotationtabpage.ui:277
+#: cui/uiconfig/ui/rotationtabpage.ui:314
msgctxt "rotationtabpage|label2"
msgid "Rotation Angle"
msgstr "Drehwinkel"
@@ -10450,7 +10450,7 @@ msgstr "Folgende Spalten sind augenblicklich versteckt. Markieren Sie bitte die
#: cui/uiconfig/ui/signatureline.ui:8
msgctxt "signatureline|SignatureLineDialog"
msgid "Signature Line"
-msgstr "Unterschriftszeile"
+msgstr "Unterschriftzeile"
#: cui/uiconfig/ui/signatureline.ui:111
msgctxt "signatureline|edit_name"
@@ -10465,7 +10465,7 @@ msgstr "Regisseur"
#: cui/uiconfig/ui/signatureline.ui:137
msgctxt "signatureline|edit_email"
msgid "john.doe@example.org"
-msgstr "max.mustermann@bespiel.org"
+msgstr "max.mustermann@beispiel.org"
#. Suggested Signer Name
#: cui/uiconfig/ui/signatureline.ui:149
@@ -10498,7 +10498,7 @@ msgstr "Unterzeichner kann Kommentare hinzufügen"
#: cui/uiconfig/ui/signatureline.ui:243
msgctxt "signatureline|checkbox_show_sign_date"
msgid "Show sign date in signature line"
-msgstr "Zeige Unterschriftsdatum in der Unterschriftszeile"
+msgstr "Zeige Unterschriftsdatum in der Unterschriftzeile"
#: cui/uiconfig/ui/signatureline.ui:261
msgctxt "signatureline|label_instructions"
@@ -10582,52 +10582,52 @@ msgctxt "similaritysearchdialog|relaxbox"
msgid "_Combine"
msgstr "_Kombinieren"
-#: cui/uiconfig/ui/slantcornertabpage.ui:50
+#: cui/uiconfig/ui/slantcornertabpage.ui:70
msgctxt "slantcornertabpage|label5"
msgid "_X:"
msgstr "_X:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:88
+#: cui/uiconfig/ui/slantcornertabpage.ui:110
msgctxt "slantcornertabpage|label6"
msgid "_Y:"
msgstr "_Y:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:125
+#: cui/uiconfig/ui/slantcornertabpage.ui:149
msgctxt "slantcornertabpage|label3"
msgid "Control Point 1"
msgstr "Kontrollpunkt 1"
-#: cui/uiconfig/ui/slantcornertabpage.ui:159
+#: cui/uiconfig/ui/slantcornertabpage.ui:183
msgctxt "slantcornertabpage|FT_RADIUS"
msgid "_Radius:"
msgstr "_Radius:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:189
+#: cui/uiconfig/ui/slantcornertabpage.ui:214
msgctxt "slantcornertabpage|label1"
msgid "Corner Radius"
msgstr "Eckenradius"
-#: cui/uiconfig/ui/slantcornertabpage.ui:223
+#: cui/uiconfig/ui/slantcornertabpage.ui:248
msgctxt "slantcornertabpage|FT_ANGLE"
msgid "_Angle:"
msgstr "_Winkel:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:253
+#: cui/uiconfig/ui/slantcornertabpage.ui:279
msgctxt "slantcornertabpage|label2"
msgid "Slant"
msgstr "Schräg stellen"
-#: cui/uiconfig/ui/slantcornertabpage.ui:294
+#: cui/uiconfig/ui/slantcornertabpage.ui:320
msgctxt "slantcornertabpage|label4"
msgid "_X:"
msgstr "_X:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:332
+#: cui/uiconfig/ui/slantcornertabpage.ui:360
msgctxt "slantcornertabpage|label7"
msgid "_Y:"
msgstr "_Y:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:369
+#: cui/uiconfig/ui/slantcornertabpage.ui:399
msgctxt "slantcornertabpage|label8"
msgid "Control Point 2"
msgstr "Kontrollpunkt 2"
@@ -10907,112 +10907,112 @@ msgctxt "storedwebconnectiondialog|change"
msgid "_Change Password..."
msgstr "_Kennwort ändern..."
-#: cui/uiconfig/ui/swpossizepage.ui:74
+#: cui/uiconfig/ui/swpossizepage.ui:85
msgctxt "swpossizepage|widthft"
msgid "_Width:"
msgstr "_Breite:"
-#: cui/uiconfig/ui/swpossizepage.ui:111
+#: cui/uiconfig/ui/swpossizepage.ui:123
msgctxt "swpossizepage|heightft"
msgid "H_eight:"
msgstr "Höh_e:"
-#: cui/uiconfig/ui/swpossizepage.ui:128
+#: cui/uiconfig/ui/swpossizepage.ui:141
msgctxt "swpossizepage|ratio"
msgid "_Keep ratio"
msgstr "Seiten_verhältnis beibehalten"
-#: cui/uiconfig/ui/swpossizepage.ui:149
+#: cui/uiconfig/ui/swpossizepage.ui:162
msgctxt "swpossizepage|label2"
msgid "Size"
msgstr "Größe"
-#: cui/uiconfig/ui/swpossizepage.ui:205
+#: cui/uiconfig/ui/swpossizepage.ui:218
msgctxt "swpossizepage|topage"
msgid "To _page"
msgstr "An der _Seite"
-#: cui/uiconfig/ui/swpossizepage.ui:222
+#: cui/uiconfig/ui/swpossizepage.ui:234
msgctxt "swpossizepage|topara"
msgid "To paragrap_h"
msgstr "Am A_bsatz"
-#: cui/uiconfig/ui/swpossizepage.ui:238
+#: cui/uiconfig/ui/swpossizepage.ui:250
msgctxt "swpossizepage|tochar"
msgid "To cha_racter"
msgstr "Am Zei_chen"
-#: cui/uiconfig/ui/swpossizepage.ui:254
+#: cui/uiconfig/ui/swpossizepage.ui:266
msgctxt "swpossizepage|aschar"
msgid "_As character"
msgstr "A_ls Zeichen"
-#: cui/uiconfig/ui/swpossizepage.ui:270
+#: cui/uiconfig/ui/swpossizepage.ui:282
msgctxt "swpossizepage|toframe"
msgid "To _frame"
msgstr "Am Rahme_n"
-#: cui/uiconfig/ui/swpossizepage.ui:292
+#: cui/uiconfig/ui/swpossizepage.ui:304
msgctxt "swpossizepage|label1"
msgid "Anchor"
msgstr "Verankerung"
-#: cui/uiconfig/ui/swpossizepage.ui:333
+#: cui/uiconfig/ui/swpossizepage.ui:344
msgctxt "swpossizepage|horiposft"
msgid "Hori_zontal:"
msgstr "_Horizontal:"
-#: cui/uiconfig/ui/swpossizepage.ui:347
+#: cui/uiconfig/ui/swpossizepage.ui:358
msgctxt "swpossizepage|horibyft"
msgid "b_y:"
msgstr "u_m:"
-#: cui/uiconfig/ui/swpossizepage.ui:361
+#: cui/uiconfig/ui/swpossizepage.ui:372
msgctxt "swpossizepage|vertbyft"
msgid "_by:"
msgstr "u_m:"
-#: cui/uiconfig/ui/swpossizepage.ui:375
+#: cui/uiconfig/ui/swpossizepage.ui:386
msgctxt "swpossizepage|horitoft"
msgid "_to:"
msgstr "z_u:"
-#: cui/uiconfig/ui/swpossizepage.ui:421
+#: cui/uiconfig/ui/swpossizepage.ui:433
msgctxt "swpossizepage|vertposft"
msgid "_Vertical:"
msgstr "_Vertikal:"
-#: cui/uiconfig/ui/swpossizepage.ui:457
+#: cui/uiconfig/ui/swpossizepage.ui:470
msgctxt "swpossizepage|verttoft"
msgid "t_o:"
msgstr "z_u:"
-#: cui/uiconfig/ui/swpossizepage.ui:478
+#: cui/uiconfig/ui/swpossizepage.ui:492
msgctxt "swpossizepage|mirror"
msgid "_Mirror on even pages"
msgstr "Au_f geraden Seiten spiegeln"
-#: cui/uiconfig/ui/swpossizepage.ui:495
+#: cui/uiconfig/ui/swpossizepage.ui:509
msgctxt "swpossizepage|followtextflow"
msgid "Follow te_xt flow"
msgstr "_Textfluss folgen"
-#: cui/uiconfig/ui/swpossizepage.ui:518
+#: cui/uiconfig/ui/swpossizepage.ui:532
msgctxt "swpossizepage|label11"
msgid "Position"
msgstr "Position"
-#: cui/uiconfig/ui/swpossizepage.ui:549
+#: cui/uiconfig/ui/swpossizepage.ui:563
msgctxt "swpossizepage|pos"
msgid "Positio_n"
msgstr "_Position"
-#: cui/uiconfig/ui/swpossizepage.ui:565
+#: cui/uiconfig/ui/swpossizepage.ui:579
msgctxt "swpossizepage|size"
msgid "_Size"
msgstr "_Größe"
-#: cui/uiconfig/ui/swpossizepage.ui:587
+#: cui/uiconfig/ui/swpossizepage.ui:601
msgctxt "swpossizepage|label3"
msgid "Protect"
msgstr "Schützen"
@@ -11202,12 +11202,12 @@ msgctxt "textattrtabpage|label2"
msgid "Spacing to Borders"
msgstr "Abstand zum Rahmen"
-#: cui/uiconfig/ui/textattrtabpage.ui:425
+#: cui/uiconfig/ui/textattrtabpage.ui:423
msgctxt "textattrtabpage|TSB_FULL_WIDTH"
msgid "Full _width"
msgstr "_Ganze Breite"
-#: cui/uiconfig/ui/textattrtabpage.ui:448
+#: cui/uiconfig/ui/textattrtabpage.ui:446
msgctxt "textattrtabpage|label3"
msgid "Text Anchor"
msgstr "Textverankerung"
diff --git a/source/de/filter/source/config/fragments/filters.po b/source/de/filter/source/config/fragments/filters.po
index f09cde71830..b0efc61b0b1 100644
--- a/source/de/filter/source/config/fragments/filters.po
+++ b/source/de/filter/source/config/fragments/filters.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: 2018-05-16 16:54+0200\n"
-"PO-Revision-Date: 2018-05-24 04:14+0000\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
+"PO-Revision-Date: 2018-06-14 02:08+0000\n"
"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: de\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1527135249.000000\n"
+"X-POOTLE-MTIME: 1528942110.000000\n"
#: ADO_rowset_XML.xcu
msgctxt ""
@@ -463,8 +463,8 @@ msgctxt ""
"MS Word 2003 XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Word 2003 XML"
-msgstr "Microsoft Word 2003 XML"
+msgid "Word 2003 XML"
+msgstr "Word 2003 XML"
#: MS_Word_2007_XML.xcu
msgctxt ""
@@ -1282,8 +1282,8 @@ msgctxt ""
"Calc MS Excel 2007 VBA XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Excel 2007-2016 XML (macro enabled)"
-msgstr "Microsoft Excel 2007-2016 XML (Makro aktiviert)"
+msgid "Excel 2007–2019 (macro-enabled)"
+msgstr "Excel 2007-2019 (aktivierte Makros)"
#: calc_MS_Excel_2007_XML.xcu
msgctxt ""
diff --git a/source/de/filter/source/config/fragments/types.po b/source/de/filter/source/config/fragments/types.po
index 34467f28cce..7ff1b25883d 100644
--- a/source/de/filter/source/config/fragments/types.po
+++ b/source/de/filter/source/config/fragments/types.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: 2018-05-08 15:11+0200\n"
-"PO-Revision-Date: 2018-05-10 14:28+0000\n"
-"Last-Translator: Thomas Hackert <thackert@nexgo.de>\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
+"PO-Revision-Date: 2018-06-12 12:35+0000\n"
+"Last-Translator: Sophia Schröder <sophia.schroeder@outlook.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: de\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1525962509.000000\n"
+"X-POOTLE-MTIME: 1528806943.000000\n"
#: MS_Excel_2007_Binary.xcu
msgctxt ""
@@ -292,8 +292,8 @@ msgctxt ""
"writer_MS_Word_2003_XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Word 2003 XML"
-msgstr "Microsoft Word 2003 XML"
+msgid "Word 2003 XML"
+msgstr "Word 2003 XML"
#: writer_MS_Word_2007_XML.xcu
msgctxt ""
diff --git a/source/de/fpicker/messages.po b/source/de/fpicker/messages.po
index 7d91c1af773..65f24d962b0 100644
--- a/source/de/fpicker/messages.po
+++ b/source/de/fpicker/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: 2018-05-22 13:16+0200\n"
-"PO-Revision-Date: 2018-03-08 16:31+0000\n"
-"Last-Translator: Thomas Hackert <thackert@nexgo.de>\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
+"PO-Revision-Date: 2018-06-14 02:08+0000\n"
+"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: de\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1520526662.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1528942122.000000\n"
#: include/fpicker/strings.hrc:14
msgctxt "STR_SVT_FILEPICKER_AUTO_EXTENSION"
@@ -272,13 +272,13 @@ msgstr "Mit GPG-Schlüssel verschlüsseln"
#: fpicker/uiconfig/ui/foldernamedialog.ui:8
msgctxt "foldernamedialog|FolderNameDialog"
-msgid "Folder Name ?"
-msgstr "Ordnername?"
+msgid "Folder Name"
+msgstr "Ordnername"
#: fpicker/uiconfig/ui/foldernamedialog.ui:91
msgctxt "foldernamedialog|label2"
-msgid "Na_me"
-msgstr "_Name"
+msgid "Na_me:"
+msgstr "_Name:"
#: fpicker/uiconfig/ui/foldernamedialog.ui:122
msgctxt "foldernamedialog|label1"
diff --git a/source/de/helpcontent2/source/auxiliary.po b/source/de/helpcontent2/source/auxiliary.po
index 07814a9c89c..abbe06b263e 100644
--- a/source/de/helpcontent2/source/auxiliary.po
+++ b/source/de/helpcontent2/source/auxiliary.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: 2018-05-16 16:54+0200\n"
-"PO-Revision-Date: 2018-05-20 09:39+0000\n"
-"Last-Translator: Christian Preuß <christian.preusz@yahoo.de>\n"
+"PO-Revision-Date: 2018-06-14 03:08+0000\n"
+"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: de\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1526809143.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1528945687.000000\n"
#: sbasic.tree
msgctxt ""
@@ -166,7 +166,7 @@ msgctxt ""
"08091\n"
"node.text"
msgid "Pivot Chart"
-msgstr ""
+msgstr "Pivot-Diagramm"
#: scalc.tree
msgctxt ""
@@ -366,7 +366,7 @@ msgctxt ""
"1010\n"
"node.text"
msgid "Copy and Paste"
-msgstr "Kopieren und einfügen"
+msgstr "Kopieren-und-Einfügen"
#: shared.tree
msgctxt ""
diff --git a/source/de/helpcontent2/source/text/scalc/01.po b/source/de/helpcontent2/source/text/scalc/01.po
index e1dd3340677..6f0d2af116b 100644
--- a/source/de/helpcontent2/source/text/scalc/01.po
+++ b/source/de/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: 2018-05-08 15:11+0200\n"
-"PO-Revision-Date: 2018-05-20 12:57+0000\n"
-"Last-Translator: Sophia Schröder <sophia.schroeder@outlook.com>\n"
+"PO-Revision-Date: 2018-06-14 03:10+0000\n"
+"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: de\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1526821038.000000\n"
+"X-POOTLE-MTIME: 1528945847.000000\n"
#: 01120000.xhp
msgctxt ""
@@ -2334,7 +2334,7 @@ msgctxt ""
"par_id2282479\n"
"help.text"
msgid "When you copy and paste cells containing <link href=\"text/scalc/01/04060102.xhp\">date values</link> between different spreadsheets, both spreadsheet documents must be set to the same date base. If date bases differ, the displayed date values will change!"
-msgstr "Wenn Sie Zellen, in denen <link href=\"text/scalc/01/04060102.xhp\">Datumswerte</link> enthalten sind, zwischen Tabellendokumenten kopieren und einfügen, müssen die Tabellendokumente auf die gleiche Datenbank gesetzt sein. Sind die Datenbanken ungleich, werden sich die angezeigten Datumswerte ändern!"
+msgstr "Wenn Sie Zellen, in denen <link href=\"text/scalc/01/04060102.xhp\">Datumswerte</link> enthalten sind, zwischen Tabellendokumenten kopieren und einfügen, müssen die Tabellendokumente auf die gleiche Datenbasis gesetzt sein. Sind die Datenbasen verschieden, werden sich die angezeigten Datumswerte ändern!"
#: 02180000.xhp
msgctxt ""
@@ -5246,7 +5246,7 @@ msgctxt ""
"par_id1953489\n"
"help.text"
msgid "When you copy and paste cells containing date values between different spreadsheets, both spreadsheet documents must be set to the same date base. If date bases differ, the displayed date values will change!"
-msgstr "Wenn Sie Zellen, in denen Datumswerte enthalten sind, zwischen Tabellendokumenten kopieren und einfügen, müssen die Tabellendokumente auf die gleiche Datenbank gesetzt sein. Sind die Datenbanken ungleich, werden sich die angezeigten Datumswerte ändern!"
+msgstr "Wenn Sie Zellen, in denen Datumswerte enthalten sind, zwischen Tabellendokumenten kopieren und einfügen, müssen die Tabellendokumente auf die gleiche Datenbasis gesetzt sein. Sind die Datenbasen verschieden, werden sich die angezeigten Datumswerte ändern!"
#: 04060102.xhp
msgctxt ""
diff --git a/source/de/helpcontent2/source/text/scalc/06.po b/source/de/helpcontent2/source/text/scalc/06.po
index ec3651c09a9..5e9ed4c2c66 100644
--- a/source/de/helpcontent2/source/text/scalc/06.po
+++ b/source/de/helpcontent2/source/text/scalc/06.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: 2018-05-08 15:11+0200\n"
-"PO-Revision-Date: 2018-04-26 04:10+0000\n"
+"PO-Revision-Date: 2018-05-26 05:01+0000\n"
"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: de\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1524715812.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1527310865.000000\n"
#: calcsamplefiles.xhp
msgctxt ""
@@ -46,4 +46,4 @@ msgctxt ""
"par_id161521563314918\n"
"help.text"
msgid "<object data=\"media/files/scalc/pivot.ods\" id=\"ods_id61521547603544\" type=\"application/vnd.oasis.opendocument.spreadsheet\"/>"
-msgstr ""
+msgstr "<object data=\"media/files/scalc/pivot.ods\" id=\"ods_id61521547603544\" type=\"application/vnd.oasis.opendocument.spreadsheet\"/>"
diff --git a/source/de/helpcontent2/source/text/scalc/guide.po b/source/de/helpcontent2/source/text/scalc/guide.po
index 8d29e4c3442..7a9ad86d7eb 100644
--- a/source/de/helpcontent2/source/text/scalc/guide.po
+++ b/source/de/helpcontent2/source/text/scalc/guide.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2018-05-22 13:16+0200\n"
-"PO-Revision-Date: 2018-05-08 14:40+0000\n"
-"Last-Translator: Sophia Schröder <sophia.schroeder@outlook.com>\n"
+"PO-Revision-Date: 2018-06-03 05:08+0000\n"
+"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: de\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1525790426.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1528002486.000000\n"
#: address_auto.xhp
msgctxt ""
@@ -4102,7 +4102,7 @@ msgctxt ""
"par_id141525148751543\n"
"help.text"
msgid "If you delete a pivot table linked to a pivot chart, the pivot chart is also deleted. A dialog box opens to confirm the pivot chart deletion."
-msgstr ""
+msgstr "Wenn Sie eine Pivot-Tabelle löschen, die mit einem Pivot-Diagramm verknüpft ist, wird das Pivot-Diagramm ebenso gelöscht. Eine Dialogbox wird geöffnet, in der Sie die Löschung des Pivot-Diagrammes bestätigen können."
#: datapilot_edittable.xhp
msgctxt ""
@@ -8126,7 +8126,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Pivot Chart"
-msgstr ""
+msgstr "Pivot-Diagramm"
#: pivotchart.xhp
msgctxt ""
@@ -8134,7 +8134,7 @@ msgctxt ""
"bm_id541525139738752\n"
"help.text"
msgid "<bookmark_value>chart;pivot chart</bookmark_value> <bookmark_value>pivot table;pivot chart</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Diagramme; Pivot-Diagramme</bookmark_value><bookmark_value>Pivot-Tabelle; Pivot-Diagramme</bookmark_value>"
#: pivotchart.xhp
msgctxt ""
@@ -8142,7 +8142,7 @@ msgctxt ""
"hd_id141525139671420\n"
"help.text"
msgid "<variable id=\"pivotchart\"><link href=\"text/scalc/guide/pivotchart.xhp\" name=\"Pivot Chart\">Pivot Chart</link></variable>"
-msgstr ""
+msgstr "<variable id=\"pivotchart\"><link href=\"text/scalc/guide/pivotchart.xhp\" name=\"Pivot-Diagramm\">Pivot-Diagramm</link></variable>"
#: pivotchart.xhp
msgctxt ""
@@ -8150,7 +8150,7 @@ msgctxt ""
"par_id291525139878423\n"
"help.text"
msgid "A pivot chart is a chart with data range and data series of a <link href=\"text/scalc/guide/datapilot.xhp\" name=\"Pivot Table\">pivot table</link>."
-msgstr ""
+msgstr "Ein Pivot-Diagramm ist ein Diagramm mit dem Datenbereich und Datenreihe einer <link href=\"text/scalc/guide/datapilot.xhp\" name=\"Pivot-Tabelle\">Pivot-Tabelle</link>."
#: pivotchart.xhp
msgctxt ""
@@ -8158,7 +8158,7 @@ msgctxt ""
"par_id911525139890364\n"
"help.text"
msgid "Different from static sized tables, where the number of rows and columns are constant, pivot tables can have varying dimensions, depending on the pivot table settings and its data source contents."
-msgstr ""
+msgstr "Im Unterschied zu statischen Tabellen, in denen die Anzahl der Zeilen und Spalten konstant sind, können Pivot-Tabellen, in Abhängigkeit von ihrer Konfiguration und der Quelldaten, unterschiedlich viele Dimensionen haben."
#: pivotchart.xhp
msgctxt ""
@@ -8166,7 +8166,7 @@ msgctxt ""
"par_id201525141351484\n"
"help.text"
msgid "Pivot charts track the changes in the data issued from a pivot table and adjust the data series and data range accordingly."
-msgstr ""
+msgstr "Pivot-Diagramme verfolgen die Änderungen in den Daten, die von einer Pivot-Tabelle ausgegeben werden, und passen die Datenreihen und den Datenbereich entsprechend an."
#: pivotchart.xhp
msgctxt ""
@@ -8174,7 +8174,7 @@ msgctxt ""
"par_id191525177790601\n"
"help.text"
msgid "<link href=\"https://tomazvajngerl.blogspot.com/2017/03/pivot-charts-in-libreoffice-part-1.html\" name=\"Tomaž Vajngerl blog\">Technical details on %PRODUCTNAME pivot chart implementation</link>."
-msgstr ""
+msgstr "<link href=\"https://tomazvajngerl.blogspot.com/2017/03/pivot-charts-in-libreoffice-part-1.html\" name=\"Tomaž Vajngerl blog\">Technische Details zur %PRODUCTNAME Pivot-Diagramm-Implementatierung</link>."
#: pivotchart_create.xhp
msgctxt ""
@@ -8182,7 +8182,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Creating Pivot Charts"
-msgstr ""
+msgstr "Pivot-Diagramme erstellen"
#: pivotchart_create.xhp
msgctxt ""
@@ -8190,7 +8190,7 @@ msgctxt ""
"bm_id531525141739769\n"
"help.text"
msgid "<bookmark_value>pivot chart;creating</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Pivot-Diagramme; erstellen</bookmark_value>"
#: pivotchart_create.xhp
msgctxt ""
@@ -8198,7 +8198,7 @@ msgctxt ""
"hd_id441525141699185\n"
"help.text"
msgid "<variable id=\"pivotchartcreate\"><link href=\"text/scalc/guide/pivotchart_create.xhp\" name=\"pivot chart create\">Creating Pivot Charts</link></variable>"
-msgstr ""
+msgstr "<variable id=\"pivotchartcreate\"><link href=\"text/scalc/guide/pivotchart_create.xhp\" name=\"Pivot-Diagramme erstellen\">Pivot-Diagramme erstellen</link></variable>"
#: pivotchart_create.xhp
msgctxt ""
@@ -8206,7 +8206,7 @@ msgctxt ""
"par_id481525142550652\n"
"help.text"
msgid "To create a pivot chart proceed as below:"
-msgstr ""
+msgstr "Um ein Pivot-Diagramm zu erstellen, gehen Sie wie folgt vor:"
#: pivotchart_create.xhp
msgctxt ""
@@ -8214,7 +8214,7 @@ msgctxt ""
"par_id761525140219212\n"
"help.text"
msgid "Click inside the pivot table that you want to present in your chart."
-msgstr ""
+msgstr "Klicken Sie in die Pivot-Tabelle, die als Diagramm dargestellt werden soll."
#: pivotchart_create.xhp
msgctxt ""
@@ -8222,7 +8222,7 @@ msgctxt ""
"par_id351525140237521\n"
"help.text"
msgid "Choose <emph>Insert – Chart</emph> or click in the <image id=\"img_id3157322\" src=\"cmd/sc_insertobjectchart.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3159322\">Insert Chart Icon</alt></image> <emph>Insert Chart</emph> icon in the main toolbar."
-msgstr ""
+msgstr "Wählen Sie <emph>Einfügen - Diagramm</emph> oder klicken Sie auf das Symbol <image id=\"img_id3157322\" src=\"cmd/sc_insertobjectchart.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3159322\">Symbol Diagramm einfügen</alt></image> <emph>Diagramm einfügen</emph> in der Symbolleiste Standard."
#: pivotchart_create.xhp
msgctxt ""
@@ -8230,7 +8230,7 @@ msgctxt ""
"par_id151525140367370\n"
"help.text"
msgid "%PRODUCTNAME Calc automatically detects the pivot table and opens the pivot chart wizard."
-msgstr ""
+msgstr "%PRODUCTNAME Calc erkennt automatisch die Pivot-Tabelle und öffnet den Pivot-Diagramm-Assistenten."
#: pivotchart_create.xhp
msgctxt ""
@@ -8238,7 +8238,7 @@ msgctxt ""
"par_id861525140391601\n"
"help.text"
msgid "Select the <link href=\"text/schart/01/wiz_chart_type.xhp\" name=\"Chart type\">Chart type</link> for the data in the chart wizard."
-msgstr ""
+msgstr "Wählen Sie den <link href=\"text/schart/01/wiz_chart_type.xhp\" name=\"Diagrammtyp\">Diagrammtyp</link> für die Daten im Diagramm-Assistenten."
#: pivotchart_create.xhp
msgctxt ""
@@ -8246,7 +8246,7 @@ msgctxt ""
"par_id41525141917275\n"
"help.text"
msgid "The data range and the data series pages of the chart wizard are not enabled. They are controlled by the pivot table."
-msgstr ""
+msgstr "Die Schritte Datenbereich und Datenreihe stehen des Diagramm-Assistenten stehen nicht zu Verfügung. Diese werden von der Pivot-Tabelle kontrolliert."
#: pivotchart_create.xhp
msgctxt ""
@@ -8254,7 +8254,7 @@ msgctxt ""
"par_id511525140411625\n"
"help.text"
msgid "Select the <link href=\"text/schart/01/wiz_chart_elements.xhp\" name=\"Chart elements\">Chart Elements</link> of the pivot chart in the wizard."
-msgstr ""
+msgstr "Wählen Sie die <link href=\"text/schart/01/wiz_chart_elements.xhp\" name=\"Diagrammelemente\">Diagrammelemente</link> für das Pivot-Diagramm im Assistenten."
#: pivotchart_create.xhp
msgctxt ""
@@ -8262,7 +8262,7 @@ msgctxt ""
"par_id1001525165156188\n"
"help.text"
msgid "Click <emph>OK</emph> to close the wizard and create the pivot chart."
-msgstr ""
+msgstr "Klicken Sie auf <emph>OK</emph>, um den Assistenten zu schließen und das Pivot-Diagramm zu erstellen."
#: pivotchart_delete.xhp
msgctxt ""
@@ -8270,7 +8270,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Deleting Pivot Charts"
-msgstr ""
+msgstr "Pivot-Diagramme löschen"
#: pivotchart_delete.xhp
msgctxt ""
@@ -8278,7 +8278,7 @@ msgctxt ""
"hd_id231525147891984\n"
"help.text"
msgid "<variable id=\"pivotchartdelete\"><link href=\"text/scalc/guide/pivotchart_delete.xhp\" name=\"Deleting a Pivot Chart\">Deleting a Pivot Chart</link></variable>"
-msgstr ""
+msgstr "<variable id=\"pivotchartdelete\"><link href=\"text/scalc/guide/pivotchart_delete.xhp\" name=\"Pivot-Diagramm löschen\">Pivot-Diagramm löschen</link></variable>"
#: pivotchart_delete.xhp
msgctxt ""
@@ -8286,7 +8286,7 @@ msgctxt ""
"bm_id231525149357908\n"
"help.text"
msgid "<bookmark_value>pivot chart;deleting</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Pivot-Diagramme; löschen</bookmark_value>"
#: pivotchart_delete.xhp
msgctxt ""
@@ -8294,7 +8294,7 @@ msgctxt ""
"par_id141525147903623\n"
"help.text"
msgid "To delete a pivot chart, select the chart and press <emph>Del</emph>."
-msgstr ""
+msgstr "Um ein Pivot-Diagramm zu löschen, wählen Sie das Diagramm aus und drücken Sie <emph>Entf</emph>."
#: pivotchart_delete.xhp
msgctxt ""
@@ -8302,7 +8302,7 @@ msgctxt ""
"par_id431525148462157\n"
"help.text"
msgid "When deleting a pivot chart, the linked pivot table is not affected."
-msgstr ""
+msgstr "Wenn Sie ein Pivot-Dialog löschen, bleibt die damit verknüpfte Pivot-Tabelle unangetastet."
#: pivotchart_delete.xhp
msgctxt ""
@@ -8310,7 +8310,7 @@ msgctxt ""
"par_id141525148751543\n"
"help.text"
msgid "If you delete a pivot table linked to a pivot chart, the pivot chart is also deleted. A dialog box opens to confirm the pivot chart deletion."
-msgstr ""
+msgstr "Wenn Sie eine Pivot-Tabelle löschen, die mit einem Pivot-Diagramm verknüpft ist, wird das Pivot-Diagramm ebenso gelöscht. Eine Dialogbox wird geöffnet, in der Sie die Löschung des Pivot-Diagrammes bestätigen können."
#: pivotchart_edit.xhp
msgctxt ""
@@ -8318,7 +8318,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Editing Pivot Charts"
-msgstr ""
+msgstr "Pivot-Diagramme bearbeiten"
#: pivotchart_edit.xhp
msgctxt ""
@@ -8326,7 +8326,7 @@ msgctxt ""
"bm_id661525144028976\n"
"help.text"
msgid "<bookmark_value>pivot chart;editing</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Pivot-Diagramme; bearbeiten</bookmark_value>"
#: pivotchart_edit.xhp
msgctxt ""
@@ -8334,7 +8334,7 @@ msgctxt ""
"hd_id271525144002806\n"
"help.text"
msgid "<variable id=\"pivotchartedit\"><link href=\"text/scalc/guide/pivotchart_edit.xhp\" name=\"Pivot Chart Editing\">Editing Pivot Charts</link></variable>"
-msgstr ""
+msgstr "<variable id=\"pivotchartedit\"><link href=\"text/scalc/guide/pivotchart_edit.xhp\" name=\"Pivot-Diagramme bearbeiten\">Pivot-Diagramme bearbeiten</link></variable>"
#: pivotchart_edit.xhp
msgctxt ""
@@ -8342,7 +8342,7 @@ msgctxt ""
"par_id971525144066574\n"
"help.text"
msgid "Edit a pivot chart in the same way as normal charts."
-msgstr ""
+msgstr "Bearbeiten Sie Pivot-Diagramme auf die selbe Art wie normale Diagramme."
#: pivotchart_edit.xhp
msgctxt ""
@@ -8350,7 +8350,7 @@ msgctxt ""
"hd_id5631580\n"
"help.text"
msgid "To edit a pivot chart"
-msgstr ""
+msgstr "So bearbeiten Sie ein Pivot-Diagramm"
#: pivotchart_filter.xhp
msgctxt ""
@@ -8358,7 +8358,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Filtering Pivot Charts"
-msgstr ""
+msgstr "Pivot-Diagramme filtern"
#: pivotchart_filter.xhp
msgctxt ""
@@ -8366,7 +8366,7 @@ msgctxt ""
"hd_id401525165755583\n"
"help.text"
msgid "<variable id=\"pivotchartfilter\"><link href=\"text/scalc/guide/pivotchart_filter.xhp\" name=\"Filtering Pivot Charts\">Filtering Pivot Charts</link></variable>"
-msgstr ""
+msgstr "<variable id=\"pivotchartfilter\"><link href=\"text/scalc/guide/pivotchart_filter.xhp\" name=\"Pivot-Diagramme filtern\">Pivot-Diagramme filtern</link></variable>"
#: pivotchart_filter.xhp
msgctxt ""
@@ -8374,7 +8374,7 @@ msgctxt ""
"par_id781525166702239\n"
"help.text"
msgid "Filters are used to remove unwanted data from the pivot chart. You can use filters in the pivot chart or in the corresponding <link href=\"text/scalc/guide/datapilot_filtertable.xhp\" name=\"Pivot table filtering\">pivot table</link>, since the resulting chart is exactly the same."
-msgstr ""
+msgstr "Filter können verwendet werden, um nicht gewünschte Daten aus Pivot-Diagrammen zu entfernen. Sie können Filter in Pivot-Diagrammen oder in der zugehörigen <link href=\"text/scalc/guide/datapilot_filtertable.xhp\" name=\"Pivot-Tabellen filtern\">Pivot-Tabelle</link> verwenden, um das selbe Diagramm zu erhalten."
#: pivotchart_filter.xhp
msgctxt ""
@@ -8382,7 +8382,7 @@ msgctxt ""
"hd_id201525166689277\n"
"help.text"
msgid "Pivot chart field buttons"
-msgstr ""
+msgstr "Schaltflächen für Pivot-Diargamm-Felder"
#: pivotchart_filter.xhp
msgctxt ""
@@ -8390,7 +8390,7 @@ msgctxt ""
"par_id751525167435160\n"
"help.text"
msgid "Pivot chart buttons are unique to pivot charts, normal charts don't have them. The buttons shows the layout of the pivot table, which are the pivot table fields. If present, page fields are displayed in the top. Row fields are displayed on the bottom of the chart next to each other and the legend shows the buttons from column fields stacked."
-msgstr ""
+msgstr "Schaltflächen für Pivot-Diagramme existieren nur in Pivot-Diagrammen, nicht in normalen Diagrammen. Die Schaltflächen, welche die Felder der Pivot-Tabelle sind, zeigen das Layout der Pivot-Tabelle. Falls vorhanden, werden Seiten-Felder oberhalb angezeigt. Zeilen-Felder werden unterhalb des Diagramms nebeneinander angezeigt und oberhalb der Legende werden Schaltflächen für Spalten-Felder angezeigt."
#: pivotchart_filter.xhp
msgctxt ""
@@ -8398,7 +8398,7 @@ msgctxt ""
"par_id681525167692377\n"
"help.text"
msgid "<image src=\"media/helpimg/sc_PivotChartButtons.png\" id=\"img_id801525167692378\" width=\"604px\" height=\"340px\"><alt id=\"alt_id881525167692378\">Pivot chart buttons</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/helpimg/sc_PivotChartButtons.png\" id=\"img_id801525167692378\" width=\"604px\" height=\"340px\"><alt id=\"alt_id881525167692378\">Schaltflächen Pivot-Diagramme</alt></image>"
#: pivotchart_filter.xhp
msgctxt ""
@@ -8406,7 +8406,7 @@ msgctxt ""
"par_id851525167448337\n"
"help.text"
msgid "The buttons have a pop-up action attached to them. If there is some filtering applied, then the arrow turns blue (similar to the pivot table), so it is easier to see when a field has any filter applied."
-msgstr ""
+msgstr "Die Schaltflächen besitzen eine Aufklappfunktion. Falls eine Filterung angewendet wird, werden die Pfeile blau dargestellt (ähnlich Pivot-Tabellen), sodass einfach ersichtlich ist, wenn Filterregeln angewendet sind."
#: pivotchart_filter.xhp
msgctxt ""
@@ -8414,7 +8414,7 @@ msgctxt ""
"par_id401525167457977\n"
"help.text"
msgid "Existing page fields shows what is filtered: when nothing is filtered \"- all -\" is shown, when some data is filtered, then \"- multiple -\" is shown and when only one value is not filtered, the value is shown."
-msgstr ""
+msgstr "Ein existierendes Seiten-Feld zeigt, was gefiltert wurde: Wenn nichts gefiltert ist, wird \"- alles -\" angezeigt, wenn mehrere Daten gefiltert sind, wird \"- mehrere -\" angezeigt, und wenn nur ein Wert gefiltert ist, wird der Wert angezeigt."
#: pivotchart_update.xhp
msgctxt ""
@@ -8422,7 +8422,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Pivot Chart Update"
-msgstr ""
+msgstr "Pivot-Diagramme aktualisieren"
#: pivotchart_update.xhp
msgctxt ""
@@ -8430,7 +8430,7 @@ msgctxt ""
"bm_id801525146393791\n"
"help.text"
msgid "<bookmark_value>pivot chart;update</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Pivot-Diagramme; aktualisieren</bookmark_value>"
#: pivotchart_update.xhp
msgctxt ""
@@ -8438,7 +8438,7 @@ msgctxt ""
"hd_id281525146417678\n"
"help.text"
msgid "<variable id=\"pivotchartupdate\"><link href=\"text/scalc/guide/pivotchart_update.xhp\" name=\"Pivot Chart Update\">Updating Pivot Charts</link></variable>"
-msgstr ""
+msgstr "<variable id=\"pivotchartupdate\"><link href=\"text/scalc/guide/pivotchart_update.xhp\" name=\"Pivot-Diagramme aktualisieren\">Pivot-Diagramme aktualisieren</link></variable>"
#: pivotchart_update.xhp
msgctxt ""
@@ -8446,7 +8446,7 @@ msgctxt ""
"par_id831525146706944\n"
"help.text"
msgid "If the data of the source sheet has been changed, you must refresh the pivot table and the pivot chart is updated accordingly. To refresh the pivot table (and thus the pivot chart):"
-msgstr ""
+msgstr "Wenn sich Daten der zugrundeliegenden Tabelle ändern, müssen Sie die Pivot-Tabelle aktualisieren, das Pivot-Diagramm wird dann entsprechend aktualisiert. Um die Pivot-Tabelle zu aktualisieren (und damit das Pivot-Diagramm):"
#: pivotchart_update.xhp
msgctxt ""
@@ -8454,7 +8454,7 @@ msgctxt ""
"par_id451525146722974\n"
"help.text"
msgid "Choose <emph>Data - Pivot Table - Refresh</emph>."
-msgstr ""
+msgstr "Wählen Sie <emph>Daten - Pivot-Tabelle - Aktualisieren</emph>."
#: pivotchart_update.xhp
msgctxt ""
@@ -8462,7 +8462,7 @@ msgctxt ""
"par_id331525146738273\n"
"help.text"
msgid "Choose <emph>Refresh...</emph> in the context menu of any cell in the pivot table."
-msgstr ""
+msgstr "Wählen Sie <emph>Aktualisieren...</emph> im Kontextmenü einer Zelle der Pivot-Tabelle."
#: print_details.xhp
msgctxt ""
diff --git a/source/de/helpcontent2/source/text/shared/00.po b/source/de/helpcontent2/source/text/shared/00.po
index b7c695fd65c..62561a9d255 100644
--- a/source/de/helpcontent2/source/text/shared/00.po
+++ b/source/de/helpcontent2/source/text/shared/00.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: 2018-05-22 13:16+0200\n"
-"PO-Revision-Date: 2018-05-19 09:36+0000\n"
-"Last-Translator: Sophia Schröder <sophia.schroeder@outlook.com>\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
+"PO-Revision-Date: 2018-06-14 02:27+0000\n"
+"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: de\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1526722588.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1528943267.000000\n"
#: 00000001.xhp
msgctxt ""
@@ -397,16 +397,16 @@ msgctxt ""
"00000001.xhp\n"
"hd_id3149670\n"
"help.text"
-msgid "Back"
-msgstr "Zurück"
+msgid "Reset"
+msgstr "Zurücksetzen"
#: 00000001.xhp
msgctxt ""
"00000001.xhp\n"
"par_id3145068\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optionsdialog/revert\">Resets modified values back to the $[officename] default values.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/optionsdialog/revert\">Setzt geänderte Werte wieder auf die beim Öffnen von $[officename] geltenden Standardwerte zurück.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optionsdialog/revert\">Resets changes made to the current tab to those applicable when this dialog was opened.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/optionsdialog/revert\">Setzt Änderungen des aktuellen Registers auf jene zurück, die beim Öffnen des Dialogs vorlagen.</ahelp>"
#: 00000001.xhp
msgctxt ""
@@ -552,6 +552,54 @@ msgctxt ""
msgid "<variable id=\"ShiftF1\">Press Shift+F1 and point to a control to learn more about that control.</variable>"
msgstr "<variable id=\"ShiftF1\">Drücken Sie Umschalt+F1 und halten Sie den Mauszeiger über einem Steuerelement, um sich Informationen dazu anzeigen zu lassen.</variable>"
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"hd_id631527692833772\n"
+"help.text"
+msgid "Options dialog buttons"
+msgstr "Schaltflächen des Dialogs Optionen"
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"hd_id831527692839432\n"
+"help.text"
+msgid "OK"
+msgstr "OK"
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"par_id471527692844934\n"
+"help.text"
+msgid "Save the changes in the page and close the Options dialog."
+msgstr "Speichert die Änderungen der Seite und schließt den Dialog Optionen."
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"hd_id261527692850720\n"
+"help.text"
+msgid "Cancel"
+msgstr "Abbrechen"
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"par_id571527692855533\n"
+"help.text"
+msgid "Close the Options dialog and discard all changes done."
+msgstr "Schließt den Dialog Optionen und verwirft alle gemachten Änderungen."
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"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 Options dialog."
+msgstr "Einige Optionen können nicht zurückgesetzt werden, sobald sie verändert wurden. Entweder setzen Sie die Änderung manuell zurück oder Sie klicken auf <emph>Abbrechen</emph> und öffnen den Dialog Optionen erneut."
+
#: 00000002.xhp
msgctxt ""
"00000002.xhp\n"
@@ -6006,7 +6054,7 @@ msgctxt ""
"par_id181526424294565\n"
"help.text"
msgid "Choose <emph>File - Digital Signatures - Sign Existing PDF</emph>."
-msgstr ""
+msgstr "Wählen Sie <emph>Datei - Digitale Signaturen - Bestehendes PDF signieren...</emph>."
#: 00000401.xhp
msgctxt ""
@@ -6190,7 +6238,7 @@ msgctxt ""
"par_id421525017874627\n"
"help.text"
msgid "Export Directly as EPUB"
-msgstr ""
+msgstr "Direkt als EPUB exportieren"
#: 00000401.xhp
msgctxt ""
@@ -6198,7 +6246,7 @@ msgctxt ""
"par_id3163421\n"
"help.text"
msgid "Choose <emph>File - Export As - Export as PDF</emph>, Digital Signatures tab"
-msgstr ""
+msgstr "Wählen Sie <emph>Datei - Exportieren als - Als PDF exportieren...</emph>, Register: Digitale Signaturen"
#: 00000401.xhp
msgctxt ""
@@ -6206,7 +6254,7 @@ msgctxt ""
"par_id3166421\n"
"help.text"
msgid "Choose <emph>File - Export As - Export as PDF</emph>"
-msgstr ""
+msgstr "Wählen Sie <emph>Datei - Exportieren als - Als PDF exportieren...</emph>"
#: 00000401.xhp
msgctxt ""
@@ -7102,7 +7150,7 @@ msgctxt ""
"par_id3149046\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> + Shift + F4 keys"
-msgstr ""
+msgstr "Tastenkombination <switchinline select=\"sys\"><caseinline select=\"MAC\">Befehl</caseinline><defaultinline>Strg</defaultinline></switchinline>+Umschalt+F4"
#: 00000403.xhp
msgctxt ""
@@ -9566,7 +9614,7 @@ msgctxt ""
"par_id3149323\n"
"help.text"
msgid "Choose <emph>Slide - Properties - Page</emph> tab (in $[officename] Impress)"
-msgstr "Wählen Sie das Register <emph>Folie - Eigenschaften - Seite</emph> (in $[officename] Impress)"
+msgstr "Wählen Sie <emph>Folie - Eigenschaften - Register: Seite</emph> (in $[officename] Impress)."
#: 00040500.xhp
msgctxt ""
@@ -9574,7 +9622,7 @@ msgctxt ""
"par_id3154972\n"
"help.text"
msgid "Choose <emph>Page - Properties - Page</emph> tab (in $[officename] Draw)"
-msgstr "Wählen Sie das Register <emph>Seit - Eigenschaften - Seite</emph> (in $[officename] Draw)"
+msgstr "Wählen Sie <emph>Seite - Eigenschaften - Register: Seite</emph> (in $[officename] Draw)."
#: 00040500.xhp
msgctxt ""
@@ -11125,16 +11173,16 @@ msgctxt ""
"00040502.xhp\n"
"par_id3151293\n"
"help.text"
-msgid "<variable id=\"linienstile\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Line Styles</emph> tab </variable>"
-msgstr "<variable id=\"linienstile\">Wählen Sie <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Textfeld und Form</emph></caseinline><caseinline select=\"CALC\"><emph>Objekt</emph></caseinline></switchinline><emph> - Linie... - Register: Linienstile</emph></variable>"
+msgid "<variable id=\"linienstile\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Line Styles</emph> tab</variable>"
+msgstr "<variable id=\"linienstile\">Wählen Sie <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Textfeld und Form</emph></caseinline><caseinline select=\"CALC\"><emph>Objekt</emph></caseinline></switchinline><emph> - Linie... - Register: Linienstile</emph>.</variable>"
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3149317\n"
"help.text"
-msgid "<variable id=\"linienenden\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Arrow Styles</emph> tab </variable>"
-msgstr "<variable id=\"linienenden\">Wählen Sie <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Textfeld und Form</emph></caseinline><caseinline select=\"CALC\"><emph>Objekt</emph></caseinline></switchinline><emph> - Linie... - Register: Linienspitzen</emph></variable>"
+msgid "<variable id=\"linienenden\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Arrow Styles</emph> tab</variable>"
+msgstr "<variable id=\"linienenden\">Wählen Sie <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Textfeld und Form</emph></caseinline><caseinline select=\"CALC\"><emph>Objekt</emph></caseinline></switchinline><emph> - Linie... - Register: Linienspitzen</emph>.</variable>"
#: 00040502.xhp
msgctxt ""
@@ -11173,72 +11221,80 @@ msgctxt ""
"00040502.xhp\n"
"par_id3154948\n"
"help.text"
-msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Area</emph> tab"
-msgstr "Wählen Sie <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Textfeld und Form</emph></caseinline><caseinline select=\"CALC\"><emph>Objekt</emph></caseinline></switchinline><emph> - Fläche... - Register: Fläche</emph>"
+msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Area</emph> tab."
+msgstr "Wählen Sie <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Textfeld und Form</emph></caseinline><caseinline select=\"CALC\"><emph>Objekt</emph></caseinline></switchinline><emph> - Fläche... - Register: Fläche</emph>."
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3145607\n"
"help.text"
-msgid "Choose <emph>View - Styles</emph> - open context menu and choose <emph>Modify/New - Area</emph> tab (presentation documents)"
-msgstr "Wählen Sie <emph>Format - Formatvorlagen</emph> - öffnen Sie das Kontextmenü eines Eintrages und wählen Sie <emph>Ändern.../Neu... - Register: Fläche</emph> (Präsentationsdokumente)"
+msgid "Choose <emph>View - Styles</emph> - open context menu and choose <emph>Modify/New - Area</emph> tab (presentation documents)."
+msgstr "Wählen Sie <emph>Format - Formatvorlagen</emph> - öffnen Sie das Kontextmenü eines Eintrages und wählen Sie <emph>Ändern.../Neu... - Register: Fläche</emph> (Präsentationsdokumente)."
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3152922\n"
"help.text"
-msgid "Choose <emph>Format - Title - Area</emph> tab (chart documents)"
-msgstr "Wählen Sie <emph>Format - Titel - (einen Menüeintrag) - Register: Fläche</emph> (Diagrammdokumente)"
+msgid "Choose <emph>Format - Title - Area</emph> tab (chart documents)."
+msgstr "Wählen Sie <emph>Format - Titel - (einen Menüeintrag) - Register: Fläche</emph> (Diagramme)."
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3157894\n"
"help.text"
-msgid "Choose <emph>Format - Legend - Area</emph> tab (chart documents)"
-msgstr "Wählen Sie <emph>Format - Legende... - Register: Fläche</emph> (Diagrammdokumente)"
+msgid "Choose <emph>Format - Legend - Area</emph> tab (chart documents)."
+msgstr "Wählen Sie <emph>Format - Legende... - Register: Fläche</emph> (Diagramme)."
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3144444\n"
"help.text"
-msgid "Choose <emph>Format - Chart Wall - Area</emph> tab (chart documents)"
-msgstr "Wählen Sie <emph>Format - Diagrammwand... - Register: Fläche</emph> (Diagrammdokumente)"
+msgid "Choose <emph>Format - Chart Wall - Area</emph> tab (chart documents)."
+msgstr "Wählen Sie <emph>Format - Diagrammwand... - Register: Fläche</emph> (Diagramme)."
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3156543\n"
"help.text"
-msgid "Choose <emph>Format - Chart Floor - Area</emph> tab (chart documents)"
-msgstr "Wählen Sie <emph>Format - Diagrammboden... - Register: Fläche</emph> (Diagrammdokumente)"
+msgid "Choose <emph>Format - Chart Floor - Area</emph> tab (chart documents)."
+msgstr "Wählen Sie <emph>Format - Diagrammboden... - Register: Fläche</emph> (Diagramme)."
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3150685\n"
"help.text"
-msgid "Choose <emph>Format - Chart Area - Area</emph> tab (chart documents)"
-msgstr "Wählen Sie <emph>Format - Diagrammfläche... - Register: Fläche</emph> (Diagrammdokumente)"
+msgid "Choose <emph>Format - Chart Area - Area</emph> tab (chart documents)."
+msgstr "Wählen Sie <emph>Format - Diagrammfläche... - Register: Fläche</emph> (Diagramme)."
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3149664\n"
"help.text"
-msgid "Choose <emph>Slide - Properties - Background</emph> tab (in $[officename] Impress)"
-msgstr "Wählen Sie das Register <emph>Folie - Eigenschaften - Hintergrund...</emph> (in $[officename] Impress)"
+msgid "Choose <emph>Slide - Properties - Background</emph> tab (in $[officename] Impress)."
+msgstr "Wählen Sie <emph>Folie - Eigenschaften - Register: Hintergrund...</emph> (in $[officename] Impress)."
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id9149694\n"
"help.text"
-msgid "Choose <emph>Page - Properties - Background</emph> tab (in $[officename] Draw)"
-msgstr "Wählen Sie das Register <emph>Seite - Eigenschaften - Hintergrund...</emph> (in $[officename] Draw)"
+msgid "Choose <emph>Page - Properties - Background</emph> tab (in $[officename] Draw)."
+msgstr "Wählen Sie <emph>Seite - Eigenschaften - Register: Hintergrund...</emph> (in $[officename] Draw)."
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id841527083135387\n"
+"help.text"
+msgid "Choose <emph>Table - Properties - Background</emph> tab."
+msgstr "Wählen Sie <emph>Format - Bild... - Register: Hintergrund</emph>."
#: 00040502.xhp
msgctxt ""
@@ -11349,32 +11405,32 @@ msgctxt ""
"00040502.xhp\n"
"par_id3150011\n"
"help.text"
-msgid "<variable id=\"schatte\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Shadow</emph> tab </variable>"
-msgstr "<variable id=\"schatte\">Wählen Sie <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Textfeld und Form</emph></caseinline><caseinline select=\"CALC\"><emph>Objekt</emph></caseinline></switchinline><emph> - Fläche... - Register: Schatten</emph></variable>"
+msgid "<variable id=\"schatte\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Shadow</emph> tab</variable>"
+msgstr "<variable id=\"schatte\">Wählen Sie <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Objekt - </emph></caseinline><caseinline select=\"CALC\"><emph>Grafik - </emph></caseinline></switchinline><emph>Fläche... - Register: Schatten</emph>.</variable>"
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3147441\n"
"help.text"
-msgid "<variable id=\"verlauf\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Gradients</emph> tab </variable>"
-msgstr "<variable id=\"verlauf\">Wählen Sie <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Textfeld und Form</emph></caseinline><caseinline select=\"CALC\"><emph>Objekt</emph></caseinline></switchinline><emph> - Fläche... - Register: Fläche - Schaltfläche: Farbverlauf</emph></variable>"
+msgid "<variable id=\"verlauf\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Gradients</emph> tab</variable>"
+msgstr "<variable id=\"verlauf\">Wählen Sie <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Objekt - </emph></caseinline><caseinline select=\"CALC\"><emph>Grafik - </emph></caseinline></switchinline><emph>Fläche... - Register: Farbverläufe</emph>.</variable>"
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3155308\n"
"help.text"
-msgid "<variable id=\"schraffur\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Hatching</emph> tab </variable>"
-msgstr "<variable id=\"schraffur\">Wählen Sie <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Textfeld und Form</emph></caseinline><caseinline select=\"CALC\"><emph>Objekt</emph></caseinline></switchinline><emph> - Fläche... - Register: Fläche - Schaltfläche: Schraffur</emph></variable>"
+msgid "<variable id=\"schraffur\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Hatching</emph> tab</variable>"
+msgstr "<variable id=\"schraffur\">Wählen Sie <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Objekt - </emph></caseinline><caseinline select=\"CALC\"><emph>Grafik - </emph></caseinline></switchinline><emph>Fläche... - Register: Schraffuren</emph>.</variable>"
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3145800\n"
"help.text"
-msgid "<variable id=\"bitmap\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Bitmaps</emph> tab </variable>"
-msgstr "<variable id=\"bitmap\">Wählen Sie <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Textfeld und Form</emph></caseinline><caseinline select=\"CALC\"><emph>Objekt</emph></caseinline></switchinline><emph> - Fläche... - Register: Fläche - Schaltfläche: Bild</emph></variable>"
+msgid "<variable id=\"bitmap\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Bitmaps</emph> tab</variable>"
+msgstr "<variable id=\"bitmap\">Wählen Sie <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Objekt - </emph></caseinline><caseinline select=\"CALC\"><emph>Grafik - </emph></caseinline></switchinline><emph>Fläche... - Register: Bitmapmuster</emph>.</variable>"
#: 00040502.xhp
msgctxt ""
@@ -11413,8 +11469,8 @@ msgctxt ""
"00040502.xhp\n"
"par_id3156286\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F4 key </caseinline><caseinline select=\"IMPRESS\">F4 key </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"DRAW\">Taste (F4)</caseinline><caseinline select=\"IMPRESS\">Taste (F4)</caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F4 key</caseinline><caseinline select=\"IMPRESS\">F4 key</caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"DRAW\">Taste F4</caseinline><caseinline select=\"IMPRESS\">Taste F4</caseinline></switchinline>"
#: 00040502.xhp
msgctxt ""
@@ -11453,8 +11509,8 @@ msgctxt ""
"00040502.xhp\n"
"par_id3153099\n"
"help.text"
-msgid "<variable id=\"position2\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Position and Size</emph> tab </variable>"
-msgstr "<variable id=\"position2\">Wählen Sie <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Objekt - </emph></caseinline><caseinline select=\"CALC\"><emph>Grafik - </emph></caseinline></switchinline><emph>Position und Größe... - Register: Position und Größe</emph></variable>"
+msgid "<variable id=\"position2\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Position and Size</emph> tab</variable>"
+msgstr "<variable id=\"position2\">Wählen Sie <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Objekt - </emph></caseinline><caseinline select=\"CALC\"><emph>Grafik - </emph></caseinline></switchinline><emph>Position und Größe... - Register: Position und Größe</emph>.</variable>"
#: 00040502.xhp
msgctxt ""
@@ -11485,16 +11541,16 @@ msgctxt ""
"00040502.xhp\n"
"par_id3145666\n"
"help.text"
-msgid "<variable id=\"ecke\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Slant & Corner Radius</emph> tab </variable>"
-msgstr "<variable id=\"ecke\">Wählen Sie <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Textfeld und Form</emph></caseinline><caseinline select=\"CALC\"><emph>Objekt</emph></caseinline></switchinline><emph> - Position und Größe... - Register: Schräg stellen / Eckenradius</emph></variable>"
+msgid "<variable id=\"ecke\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Slant & Corner Radius</emph> tab</variable>"
+msgstr "<variable id=\"ecke\">Wählen Sie <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Textfeld und Form</emph></caseinline><caseinline select=\"CALC\"><emph>Objekt</emph></caseinline></switchinline><emph> - Position und Größe... - Register: Schräg stellen / Eckenradius</emph>.</variable>"
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3146081\n"
"help.text"
-msgid "<variable id=\"legende\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Callout</emph> tab (only for textbox callouts, not for custom shapes callouts) </variable>"
-msgstr "<variable id=\"legende\">Wählen Sie <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Textfeld und Form</emph></caseinline><caseinline select=\"CALC\"><emph>Objekt</emph></caseinline></switchinline><emph> - Position und Größe... - Register: Legende</emph> (nur für Textfeld-Legenden, nicht für Legenden-Formen)</variable>"
+msgid "<variable id=\"legende\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Callout</emph> tab (only for textbox callouts, not for custom shapes callouts)</variable>"
+msgstr "<variable id=\"legende\">Wählen Sie <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Objekt - </emph></caseinline><caseinline select=\"CALC\"><emph>Grafik - </emph></caseinline></switchinline><emph>Position und Größe... - Register: Legende</emph>. (nur für Textfeld-Legenden, nicht für benutzerdefinierte Legenden)</variable>"
#: 00040502.xhp
msgctxt ""
@@ -11517,8 +11573,8 @@ msgctxt ""
"00040502.xhp\n"
"par_id3149019\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F8 key </caseinline><caseinline select=\"IMPRESS\">F8 key </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"DRAW\">Taste (F8)</caseinline><caseinline select=\"IMPRESS\">Taste (F8)</caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F8 key</caseinline><caseinline select=\"IMPRESS\">F8 key</caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"DRAW\">Taste F8</caseinline><caseinline select=\"IMPRESS\">Taste F8</caseinline></switchinline>"
#: 00040502.xhp
msgctxt ""
@@ -11805,7 +11861,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3153076\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Align Center Horizontally </caseinline><defaultinline>Centered</defaultinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Align Center Horizontally</caseinline><defaultinline>Centered</defaultinline></switchinline>"
msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Horizontal zentriert ausrichten</caseinline><defaultinline>Zentriert</defaultinline></switchinline>"
#: 00040502.xhp
@@ -11845,8 +11901,8 @@ msgctxt ""
"00040502.xhp\n"
"par_id3150527\n"
"help.text"
-msgid "<variable id=\"font\">Click <emph>Fontwork</emph> icon on <emph>Drawing</emph> bar </variable>"
-msgstr "<variable id=\"font\">Klicken Sie in der Symbolleiste <emph>Zeichnung</emph> auf das Symbol <emph>Fontwork</emph></variable>"
+msgid "<variable id=\"font\">Click <emph>Fontwork</emph> icon on <emph>Drawing</emph> bar</variable>"
+msgstr "<variable id=\"font\">Klicken Sie in der Symbolleiste <emph>Zeichnung</emph> auf das Symbol <emph>Fontwork</emph>.</variable>"
#: 00040502.xhp
msgctxt ""
diff --git a/source/de/helpcontent2/source/text/shared/01.po b/source/de/helpcontent2/source/text/shared/01.po
index 039e4c685f8..420526c5f07 100644
--- a/source/de/helpcontent2/source/text/shared/01.po
+++ b/source/de/helpcontent2/source/text/shared/01.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: 2018-05-23 23:19+0200\n"
-"PO-Revision-Date: 2018-05-24 08:03+0000\n"
-"Last-Translator: Thomas Hackert <thackert@nexgo.de>\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
+"PO-Revision-Date: 2018-06-14 02:54+0000\n"
+"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: de\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1527149032.000000\n"
+"X-POOTLE-MTIME: 1528944869.000000\n"
#: 01010000.xhp
msgctxt ""
@@ -2566,7 +2566,7 @@ msgctxt ""
"par_id3155934\n"
"help.text"
msgid "The following sections describe the <item type=\"productname\">%PRODUCTNAME</item> <emph>Save as</emph> dialog. To activate the <emph><item type=\"productname\">%PRODUCTNAME</item> Open</emph> and <emph>Save</emph> dialog boxes, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - </emph><link href=\"text/shared/optionen/01010600.xhp\" name=\"%PRODUCTNAME - General\"><emph>%PRODUCTNAME- General</emph></link>, and then select the <emph>Use %PRODUCTNAME dialogs</emph> in the <emph>Open/Save dialogs</emph> area."
-msgstr ""
+msgstr "Die folgenden Abschnitte beschreiben den <item type=\"productname\">%PRODUCTNAME</item>-Dialog <emph>Speichern unter...</emph>. Um die <emph><item type=\"productname\">%PRODUCTNAME</item>-Dialoge Öffnen</emph> und <emph>Speichern</emph> zu aktivieren, wählen Sie <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Einstellungen</emph></caseinline><defaultinline><emph>Extras - Optionen...</emph></defaultinline></switchinline><emph> - </emph><link href=\"text/shared/optionen/01010600.xhp\" name=\"%PRODUCTNAME - Allgemein\"><emph>%PRODUCTNAME - Allgemein</emph></link> und dann die Option <emph>%PRODUCTNAME-Dialoge verwenden</emph> im Bereich <emph>Dialoge zum Öffnen/Speichern</emph>."
#: 01070000.xhp
msgctxt ""
@@ -3478,7 +3478,7 @@ msgctxt ""
"hd_id641526904710590\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Formula groups:</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Formelgruppen:</caseinline></switchinline>"
#: 01100400.xhp
msgctxt ""
@@ -3486,7 +3486,7 @@ msgctxt ""
"par_id541526903668055\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Number of contiguous ranges in a column with same formula.</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Zusammenhängender Bereichen in einer Spalte mit der selben Formel.</caseinline></switchinline>"
#: 01100400.xhp
msgctxt ""
@@ -3494,7 +3494,7 @@ msgctxt ""
"hd_id3147210\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Images:</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Bilder:</caseinline></switchinline>"
#: 01100400.xhp
msgctxt ""
@@ -3558,7 +3558,7 @@ msgctxt ""
"hd_id3150466\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Characters:</caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Buchstaben:</caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Zeichen:</caseinline></switchinline>"
#: 01100400.xhp
msgctxt ""
@@ -23587,6 +23587,22 @@ msgstr "Sie können benutzerdefinierte Farben, Farbverläufe, Schraffuren, Muste
#: 05210100.xhp
msgctxt ""
"05210100.xhp\n"
+"hd_id471527077476052\n"
+"help.text"
+msgid "Cell, Row or Table background selector"
+msgstr "Auswahl für Zellen-, Zeilen- oder Tabellenhintergrund"
+
+#: 05210100.xhp
+msgctxt ""
+"05210100.xhp\n"
+"par_id661527077493366\n"
+"help.text"
+msgid "Select the table object which background area is to be filled."
+msgstr "Wählen Sie das Tabellenobjekt, dessen Hintergrund sie ausfüllen möchten."
+
+#: 05210100.xhp
+msgctxt ""
+"05210100.xhp\n"
"hd_id3147373\n"
"help.text"
msgid "None"
@@ -31205,24 +31221,24 @@ msgctxt ""
"06040100.xhp\n"
"hd_id3145072\n"
"help.text"
-msgid "Automatic *bold* and _underline_"
-msgstr "Automatisch *fett* und _unterstrichen_"
+msgid "Automatic *bold*, /italic/, -strikeout- and _underline_"
+msgstr "Automatisch *fett*, /kursiv/, -durchstreichen- und _unterstreichen_"
#: 06040100.xhp
msgctxt ""
"06040100.xhp\n"
"par_id3153577\n"
"help.text"
-msgid "Automatically applies bold formatting to text enclosed by asterisks (*), and underline to text enclosed by underscores ( _ ), for example, *bold*. The asterisks and underscores are not displayed after the formatting is applied."
-msgstr "Von Sternchen (*) umschlossener Text wird automatisch fett und von Unterstrichen (_) umschlossener Text automatisch unterstrichen angezeigt, beispielsweise *fett*. Nach Anwendung der Formatierung sind die Sternchen und Unterstriche nicht mehr sichtbar."
+msgid "Automatically applies bold, italic, strikethrough or underline formatting to text enclosed by asterisks (*), slashes (/), hyphens (-), and underscores (_), respectively. These characters disappear after the formatting is applied."
+msgstr "Automatisch werden die Formatierungen Fett, Kursiv, Durchgestrichen und Unterstrichen für Text angewendet, die von Sternchen (*), Schrägstrichen (/), Bindestrichen (-) und Unterstrichen (_) eingeschlossen sind. Diese Zeichen werden entfernt, sobald die Formatierung ersetzt wird."
#: 06040100.xhp
msgctxt ""
"06040100.xhp\n"
"par_id3153127\n"
"help.text"
-msgid "This feature does not work if the formatting characters * or _ are entered with an <link href=\"text/shared/00/00000005.xhp#IME\" name=\"Input Method Editor\">Input Method Editor</link>."
-msgstr "Dies funktioniert jedoch nicht, wenn Sie die Formatierungszeichen * oder _ mit einem <link href=\"text/shared/00/00000005.xhp#IME\" name=\"Eingabemethoden-Editor\">Eingabemethoden-Editor</link> eingeben."
+msgid "This feature does not work if the formatting characters <item type=\"literal\">* / - _</item> are entered with an <link href=\"text/shared/00/00000005.xhp#IME\" name=\"Input Method Editor\">Input Method Editor</link>."
+msgstr "Dies funktioniert jedoch nicht, wenn Sie die Formatierungszeichen <item type=\"literal\">* / - oder _</item> mit einem <link href=\"text/shared/00/00000005.xhp#IME\" name=\"Eingabemethoden-Editor\">Eingabemethoden-Editor</link> eingeben."
#: 06040100.xhp
msgctxt ""
@@ -37150,7 +37166,7 @@ msgctxt ""
"par_id3145154\n"
"help.text"
msgid "<ahelp hid=\".\">Check to move character-by-character through the selected text. If not checked, full words are replaced.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Markieren, um Zeichen für Zeichen durch den ausgewählten Text zu verschieben. Falls nicht markiert, werden vollständige Wörter ersetzt.</ahelp>"
#: 06200000.xhp
msgctxt ""
@@ -37870,7 +37886,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Digital Signature in PDF Export"
-msgstr ""
+msgstr "Digitale Signatur im PDF-Export"
#: digitalsignaturespdf.xhp
msgctxt ""
@@ -37878,7 +37894,7 @@ msgctxt ""
"hd_id771526419375353\n"
"help.text"
msgid "Signing Exported PDF"
-msgstr ""
+msgstr "Exportiertes PDF signieren"
#: digitalsignaturespdf.xhp
msgctxt ""
@@ -37886,7 +37902,7 @@ msgctxt ""
"par_id321526421041596\n"
"help.text"
msgid "<link href=\"text/shared/guide/digital_signatures.xhp\">About Digital Signatures</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/guide/digital_signatures.xhp\">Über digitale Signaturen</link>"
#: extensionupdate.xhp
msgctxt ""
@@ -38758,7 +38774,7 @@ msgctxt ""
"par_idN10593\n"
"help.text"
msgid "<ahelp hid=\".\">Pauses or resumes the playback of the current file.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Pausiert oder setzt die Wiedergabe der gegenwärtigen Datei fort.</ahelp>"
#: mediaplayer.xhp
msgctxt ""
@@ -38774,7 +38790,7 @@ msgctxt ""
"par_idN1059A\n"
"help.text"
msgid "<ahelp hid=\".\">Stops the playback of the current file.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Stoppt die Wiedergabe der gegenwärtigen Datei.</ahelp>"
#: mediaplayer.xhp
msgctxt ""
@@ -40526,7 +40542,7 @@ msgctxt ""
"par_id3154044\n"
"help.text"
msgid "Export the current file to <link href=\"text/shared/00/00000002.xhp#epub\" name=\"epub\">EPUB</link>."
-msgstr ""
+msgstr "Aktuelle Datei als <link href=\"text/shared/00/00000002.xhp#epub\" name=\"epub\">EPUB</link> exportieren."
#: ref_epub_export.xhp
msgctxt ""
@@ -40534,7 +40550,7 @@ msgctxt ""
"par_id701525003241759\n"
"help.text"
msgid "<embedvar href=\"text/shared/00/00000002.xhp#epubv\" markup=\"keep\"/>"
-msgstr ""
+msgstr "<embedvar href=\"text/shared/00/00000002.xhp#epubv\" markup=\"keep\"/>"
#: ref_epub_export.xhp
msgctxt ""
@@ -40542,7 +40558,7 @@ msgctxt ""
"par_id19921\n"
"help.text"
msgid "<image id=\"img_id22170\" src=\"media/screenshots/modules/swriter/ui/exportepub/EPubDialog.png\" localize=\"true\" width=\"664px\" height=\"482px\"><alt id=\"alt_id59843\">EPUB dialog box</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id22170\" src=\"media/screenshots/modules/swriter/ui/exportepub/EPubDialog.png\" localize=\"true\" width=\"664px\" height=\"482px\"><alt id=\"alt_id59843\">Dialog EPUB</alt></image>"
#: ref_epub_export.xhp
msgctxt ""
@@ -40582,7 +40598,7 @@ msgctxt ""
"par_id3154231\n"
"help.text"
msgid "Select the type of start of the the next EPUB section."
-msgstr ""
+msgstr "Wählen Sie die Art für den Beginn des nächsten EPUB-Abschnitts."
#: ref_epub_export.xhp
msgctxt ""
@@ -40590,7 +40606,7 @@ msgctxt ""
"par_id751525007405690\n"
"help.text"
msgid "<emph>Heading</emph>: Starts the next section on headings, according to the document outline numbering."
-msgstr ""
+msgstr "<emph>Überschrift</emph>: Beginnt den nächsten Abschnitt mit einer Überschrift entsprechend der Dokumentnummerierung."
#: ref_epub_export.xhp
msgctxt ""
@@ -40598,7 +40614,7 @@ msgctxt ""
"par_id971525007425252\n"
"help.text"
msgid "<emph>Page break</emph>: Starts the new section on a page break."
-msgstr ""
+msgstr "<emph>Seitenumbruch</emph>: Beginnt den neuen Abschnitt mit einem Seitenumbruch."
#: ref_epub_export.xhp
msgctxt ""
@@ -40622,7 +40638,7 @@ msgctxt ""
"par_id51525006930128\n"
"help.text"
msgid "<emph>Reflowable</emph>: The content flows, or reflows, to fit the screen and to fit the needs of the user."
-msgstr ""
+msgstr "<emph>Auffließbar</emph>: Der Inhalt fließt oder fließt zurück, um sich dem Bildschirm und den Bedürfnissen des Benutzers anzupassen."
#: ref_epub_export.xhp
msgctxt ""
@@ -40630,7 +40646,7 @@ msgctxt ""
"par_id861525007152589\n"
"help.text"
msgid "<emph>Fixed</emph>: Gives greater control over presentation when a reflowable EPUB is not suitable for the content."
-msgstr ""
+msgstr "<emph>Fest</emph>: Bietet eine größere Kontrolle der Präsentation, wenn ein auffließbares EPUB nicht für den Inhalt geeignet ist."
#: ref_epub_export.xhp
msgctxt ""
@@ -40646,7 +40662,7 @@ msgctxt ""
"par_id3154233\n"
"help.text"
msgid "Enter the full path of the custom cover image file. If the entry is empty, the exporter takes the cover image in the media directory (see below) when the name is one of the following: <item type=\"literal\">cover.gif</item>, <item type=\"literal\">cover.jpg</item>, <item type=\"literal\">cover.png</item> or <item type=\"literal\">cover.svg</item>."
-msgstr ""
+msgstr "Geben Sie den vollständigen Pfad zur benutzerdefinierten Cover-Bilddatei ein. Falls der Eintrag leer ist, wird die Cover-Bilddatei vom Medienverzeichnis (siehe unterhalb) genommen, sofern der Name einer der folgendes ist: <item type=\"literal\">cover.gif</item>, <item type=\"literal\">cover.jpg</item>, <item type=\"literal\">cover.png</item> oder <item type=\"literal\">cover.svg</item>."
#: ref_epub_export.xhp
msgctxt ""
@@ -40654,7 +40670,7 @@ msgctxt ""
"par_id601525022680859\n"
"help.text"
msgid "The custom cover image is embedded in the EPUB file."
-msgstr ""
+msgstr "Die benutzerdefinierte Cover-Bilddatei wird in die EPUB-Datei eingebettet."
#: ref_epub_export.xhp
msgctxt ""
@@ -40670,7 +40686,7 @@ msgctxt ""
"par_id3154234\n"
"help.text"
msgid "Enter the custom media directory for the EPUB file. The media directory may contain a cover image as seen above, custom metadata and image links."
-msgstr ""
+msgstr "Geben Sie das Verzeichnis für benutzerdefinierte Medien der EPUB-Datei ein. Das Medienverzeichnis kann ein benutzerdefiniertes Coverbild, benutzerdefinierte Metadaten oder Bildverknüpfungen enthalten."
#: ref_epub_export.xhp
msgctxt ""
@@ -40678,7 +40694,7 @@ msgctxt ""
"par_id651525022578455\n"
"help.text"
msgid "By default, the exporter looks for custom media and custom metadata in the current document directory inside a folder with the same name of the document file name. For example, if the document name is <item type=\"literal\">MyText.odt</item>, the default media folder for cover and metadata is <item type=\"literal\">MyText</item> in the current directory."
-msgstr ""
+msgstr "Standardmäßig sucht der Exporter nach benutzerdefinierten Medien und benutzerdefinierten Metadaten im aktuellen Dokumentverzeichnis in einem Ordner mit demselben Namen wie dem Dokumentnamen. Ist beispielsweise der Dokumentname <item type=\"literal\">MeinText.odt</item>, so ist der standardmäßige Medienordner für Cover und Metadaten <item type=\"literal\">MeinText</item> innerhalb des aktuellen Verzeichnisses."
#: ref_epub_export.xhp
msgctxt ""
@@ -40686,7 +40702,7 @@ msgctxt ""
"par_id971525023515891\n"
"help.text"
msgid "For custom metadata, you must provide a file with same name as the original filename and with extension as \".xmp\". The provided metadata will override the the internal document metadata. In the example above, the custom metadata must exist in the MyText directory as <item type=\"literal\">MyText.xmp</item>."
-msgstr ""
+msgstr "Für benutzerdefinierte Metatdaten müssen Sie eine Datei mit demselben Namen wie dem Original-Dateinamen und der Dateiendung \".xmp\" anlegen. Die bereitgestellten Metadaten überschreiben die internen Dokument-Metadaten. In dem Beispiel oben muss für die benutzerdefinierten Metadaten im Verzeichnis MeinText eine Datei <item type=\"literal\">MeinText.xmp</item> existieren."
#: ref_epub_export.xhp
msgctxt ""
@@ -40694,7 +40710,7 @@ msgctxt ""
"par_id901525027635882\n"
"help.text"
msgid "Image links mean that if you create relative links on images or text and they link an image that's available in the media directory, then this media will be available in the EPUB export result as a popup."
-msgstr ""
+msgstr "Bildverknüpfungen bedeutet, falls Sie relative Verknüpfungen zu Bildern oder Text erstellen und diese zu einem Bild verlinken, das im Medienverzeichnis verfügbar ist, dass diese Medien dann beim EPUB-Export im Ergebnis als Popup verfügbar sind."
#: ref_epub_export.xhp
msgctxt ""
@@ -40710,7 +40726,7 @@ msgctxt ""
"par_id3154236\n"
"help.text"
msgid "Enter the custom metadata to override the document default metadata. These text fields can be left empty."
-msgstr ""
+msgstr "Geben Sie die benutzerdefinierten Metadaten ein, um die standardmäßigen Dokument-Metadaten zu überschreiben. Diese Textfelder können leer bleiben."
#: ref_epub_export.xhp
msgctxt ""
@@ -40726,7 +40742,7 @@ msgctxt ""
"par_id3154237\n"
"help.text"
msgid "Enter an unique identifier for the publication."
-msgstr ""
+msgstr "Geben Sie einen eindeutigen Bezeichner für die Veröffentlichung ein."
#: ref_epub_export.xhp
msgctxt ""
@@ -40742,7 +40758,7 @@ msgctxt ""
"par_id3154238\n"
"help.text"
msgid "Enter the title of the publication."
-msgstr ""
+msgstr "Geben Sie den Titel der Veröffentlichung ein."
#: ref_epub_export.xhp
msgctxt ""
@@ -40758,7 +40774,7 @@ msgctxt ""
"par_id3154239\n"
"help.text"
msgid "Enter the Author of the publication."
-msgstr ""
+msgstr "Geben Sie den Autor der Veröffentlichung ein."
#: ref_epub_export.xhp
msgctxt ""
@@ -40790,7 +40806,7 @@ msgctxt ""
"par_id3154241\n"
"help.text"
msgid "Last modification date for the publication. The value of this property must be an XML Schema dateTime conformant date in the form: CCYY-MM-DDThh:mm:ssZ. Default is the date and time when the export dialog opened."
-msgstr ""
+msgstr "Letztes Änderungsdatum der Veröffentlichung. Der Wert dieser Eigenschaft muss ein dem XML-Schema von dateTime übereinstimmendes Datum folgender Form sein: CCYY-MM-DDThh:mm:ssZ. Die Standardeinstellung ist das Datum und der Zeitpunkt, an dem der Export-Dialog geöffnet wird."
#: ref_pdf_export.xhp
msgctxt ""
@@ -41110,7 +41126,7 @@ msgctxt ""
"par_idN207C2\n"
"help.text"
msgid "To export comments of Writer documents as they are shown in %PRODUCTNAME, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer - Print</emph> and select the <emph>In margins</emph> option in the <emph>Comments</emph> area. The exported pages will be scaled down and the comments will be placed into their margins."
-msgstr ""
+msgstr "Um Kommentare von Writer-Dokumenten so zu exportieren, wie sie in %PRODUCTNAME angezeigt werden, wählen Sie <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Einstellungen</emph></caseinline><defaultinline><emph>Extras - Optionen...</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer - Drucken</emph> und wählen im Bereich <emph>Kommentare</emph> die Option <emph>In Rändern</emph>. Die exportierten Seiten werden maßstäblich verkleinert und die Kommentare werden in ihre Ränder platziert."
#: ref_pdf_export.xhp
msgctxt ""
@@ -42038,7 +42054,7 @@ msgctxt ""
"par_id22107306\n"
"help.text"
msgid "The key store to be used can be selected under <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME - Security - Certificate Path</emph>."
-msgstr ""
+msgstr "Der Speicherort des zu verwendenden Schlüssels kann unter <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Einstellungen</emph></caseinline><defaultinline><emph>Extras - Optionen...</emph></defaultinline></switchinline><emph> - %PRODUCTNAME - Sicherheit - Bereich: Zertifizierungspfad</emph> ausgewählt werden."
#: ref_pdf_export.xhp
msgctxt ""
@@ -42182,7 +42198,7 @@ msgctxt ""
"par_id39089022\n"
"help.text"
msgid "The list of TSA URLs that can be selected is maintained under <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME - Security - TSAs</emph>."
-msgstr ""
+msgstr "Die Liste mit auswählbaren TSA-URLs kann unter <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Einstellungen</emph></caseinline><defaultinline><emph>Extras - Optionen...</emph></defaultinline></switchinline><emph> - %PRODUCTNAME - Sicherheit - Bereich: TSAs</emph> bearbeitet werden."
#: ref_pdf_export.xhp
msgctxt ""
@@ -42414,7 +42430,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Signing Existing PDF"
-msgstr ""
+msgstr "Bestehendes PDF signieren..."
#: signexistingpdf.xhp
msgctxt ""
@@ -42422,7 +42438,7 @@ msgctxt ""
"bm_id581526779778738\n"
"help.text"
msgid "<bookmark_value>digital signature;signing existing PDF</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Digitale Signatur; bestehende PDF signieren</bookmark_value>"
#: signexistingpdf.xhp
msgctxt ""
@@ -42430,7 +42446,7 @@ msgctxt ""
"hd_id201526432498222\n"
"help.text"
msgid "<variable id=\"signexisitingpdf\"><link href=\"text/shared/01/signexistingpdf.xhp\" name=\"Sign Existing PDF Files\">Signing Existing PDF files</link></variable>"
-msgstr ""
+msgstr "<variable id=\"signexisitingpdf\"><link href=\"text/shared/01/signexistingpdf.xhp\" name=\"Sign Existing PDF Files\">Bestehende PDF-Dateien signieren</link></variable>"
#: signexistingpdf.xhp
msgctxt ""
@@ -42438,7 +42454,7 @@ msgctxt ""
"par_id41526423955118\n"
"help.text"
msgid "%PRODUCTNAME can digitally sign an existing PDF document."
-msgstr ""
+msgstr "%PRODUCTNAME kann ein bestehendes PDF-Dokument signieren."
#: signexistingpdf.xhp
msgctxt ""
@@ -42446,7 +42462,7 @@ msgctxt ""
"par_id821526581027302\n"
"help.text"
msgid "The file opens in %PRODUCTNAME Draw in read only mode."
-msgstr ""
+msgstr "Die Datei wird in %PRODUCTNAME Draw im Nur-Lese-Modus geöffnet."
#: signexistingpdf.xhp
msgctxt ""
@@ -42454,7 +42470,7 @@ msgctxt ""
"par_id361526580565237\n"
"help.text"
msgid "Sign the PDF document as usual."
-msgstr ""
+msgstr "Signieren Sie das PDF-Dokument wie gewohnt."
#: webhtml.xhp
msgctxt ""
diff --git a/source/de/helpcontent2/source/text/shared/02.po b/source/de/helpcontent2/source/text/shared/02.po
index 445cff0a0c8..8c7086c8cbd 100644
--- a/source/de/helpcontent2/source/text/shared/02.po
+++ b/source/de/helpcontent2/source/text/shared/02.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: 2018-05-08 15:10+0200\n"
-"PO-Revision-Date: 2018-05-09 12:57+0000\n"
-"Last-Translator: Sophia Schröder <sophia.schroeder@outlook.com>\n"
+"PO-Revision-Date: 2018-06-14 03:13+0000\n"
+"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: de\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1525870651.000000\n"
+"X-POOTLE-MTIME: 1528945983.000000\n"
#: 01110000.xhp
msgctxt ""
@@ -726,7 +726,7 @@ msgctxt ""
"par_id3152792\n"
"help.text"
msgid "You can drag and drop controls from one document to another document. You can also copy and paste controls between documents. When you insert a control from another document, $[officename] analyzes the data source, content type, and content properties of the control so that the control fits the logical structure in the target document. For example, a control that displays contents from an address book continues to display the same contents after you copy the control to a different document. You can view these properties on the <emph>Data</emph> tab page of the <emph>Form properties</emph> dialog."
-msgstr "Es besteht die Möglichkeit, Steuerelemente mittels Ziehen-und-Ablegen oder durch Kopieren und Einfügen über die Zwischenablage aus einem Dokument in ein anderes zu kopieren. Dabei wertet $[officename] die drei Steuerelement-Eigenschaften \"Datenquelle\", \"Art des Inhalts\" und \"Inhalt\" aus, damit die Felder der richtigen Stelle in der logischen Formularstruktur des Zieldokuments zugeordnet werden können. So zeigt beispielsweise ein Steuerelement aus dem Adressbuch auch nach dem Kopieren in das Zieldokument noch denselben Inhalt an. Diese Eigenschaften finden Sie im Register <emph>Daten</emph> im Dialog <emph>Formulareigenschaften</emph>."
+msgstr "Es besteht die Möglichkeit, Steuerelemente mittels Ziehen-und-Ablegen oder Kopieren-und-Einfügen über die Zwischenablage aus einem Dokument in ein anderes zu kopieren. Dabei wertet $[officename] die drei Steuerelement-Eigenschaften \"Datenquelle\", \"Art des Inhalts\" und \"Inhalt\" aus, damit die Felder der richtigen Stelle in der logischen Formularstruktur des Zieldokuments zugeordnet werden können. So zeigt beispielsweise ein Steuerelement aus dem Adressbuch auch nach dem Kopieren in das Zieldokument noch denselben Inhalt an. Diese Eigenschaften finden Sie im Register <emph>Daten</emph> im Dialog <emph>Formulareigenschaften</emph>."
#: 01170000.xhp
msgctxt ""
diff --git a/source/de/helpcontent2/source/text/shared/04.po b/source/de/helpcontent2/source/text/shared/04.po
index 56f5f56e407..1e26f2b24bb 100644
--- a/source/de/helpcontent2/source/text/shared/04.po
+++ b/source/de/helpcontent2/source/text/shared/04.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: 2018-05-08 15:10+0200\n"
-"PO-Revision-Date: 2018-05-09 12:59+0000\n"
-"Last-Translator: Sophia Schröder <sophia.schroeder@outlook.com>\n"
+"PO-Revision-Date: 2018-06-02 04:34+0000\n"
+"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: de\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1525870754.000000\n"
+"X-POOTLE-MTIME: 1527914093.000000\n"
#: 01010000.xhp
msgctxt ""
@@ -1502,7 +1502,7 @@ msgctxt ""
"hd_id3149722\n"
"help.text"
msgid "Selecting Rows and Columns in a Database Table (opened by <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> + Shift + F4 keys)"
-msgstr ""
+msgstr "Zeilen und Spalten in einer Datentabelle auswählen (öffnen mit <switchinline select=\"sys\"><caseinline select=\"MAC\">Befehl</caseinline><defaultinline>Strg</defaultinline></switchinline>+Umschalt+F4)"
#: 01010000.xhp
msgctxt ""
diff --git a/source/de/helpcontent2/source/text/shared/explorer/database.po b/source/de/helpcontent2/source/text/shared/explorer/database.po
index 0fcf4b0b25c..c84200819a8 100644
--- a/source/de/helpcontent2/source/text/shared/explorer/database.po
+++ b/source/de/helpcontent2/source/text/shared/explorer/database.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: 2018-05-16 16:54+0200\n"
-"PO-Revision-Date: 2018-05-08 14:43+0000\n"
-"Last-Translator: Sophia Schröder <sophia.schroeder@outlook.com>\n"
+"PO-Revision-Date: 2018-06-14 02:56+0000\n"
+"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: de\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1525790591.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1528944985.000000\n"
#: 02000000.xhp
msgctxt ""
@@ -11486,7 +11486,7 @@ msgctxt ""
"par_id5941648\n"
"help.text"
msgid "The Writer document is opened read-only. To edit the Writer document, click <emph>Edit Document</emph> on the information bar, or choose <emph>Edit - Edit Mode</emph>."
-msgstr ""
+msgstr "Das Writer-Dokument wurde schreibgeschützt geöffnet. Um das Writer-Dokument zu bearbeiten, klicken Sie auf <emph>Dokument bearbeiten</emph> in der Informationsleiste oder wählen Sie <emph>Bearbeiten - Bearbeitungsmodus</emph>."
#: rep_main.xhp
msgctxt ""
diff --git a/source/de/helpcontent2/source/text/shared/guide.po b/source/de/helpcontent2/source/text/shared/guide.po
index e415f6b097d..4ea4b3e0164 100644
--- a/source/de/helpcontent2/source/text/shared/guide.po
+++ b/source/de/helpcontent2/source/text/shared/guide.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2018-05-16 16:54+0200\n"
-"PO-Revision-Date: 2018-05-24 08:06+0000\n"
-"Last-Translator: Sophia Schröder <sophia.schroeder@outlook.com>\n"
+"PO-Revision-Date: 2018-06-14 03:13+0000\n"
+"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: de\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1527149190.000000\n"
+"X-POOTLE-MTIME: 1528946021.000000\n"
#: aaa_start.xhp
msgctxt ""
@@ -3238,7 +3238,7 @@ msgctxt ""
"par_id3147576\n"
"help.text"
msgid "If you copy text to the clipboard, you can paste it with or without text attributes. Use the shortcut keys <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+C to copy and <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+V to paste."
-msgstr "Wenn Sie den Text über die Zwischenablage übertragen, können Sie ihn mit oder ohne Textattributen am Zielort einfügen. Verwenden Sie die Tastenkombinationen <switchinline select=\"sys\"><caseinline select=\"MAC\">Befehl</caseinline> <defaultinline>Strg</defaultinline> </switchinline>+C zum Kopieren und <switchinline select=\"sys\"> <caseinline select=\"MAC\">Befehl</caseinline> <defaultinline>Strg</defaultinline> </switchinline>+V zum Einfügen."
+msgstr "Wenn Sie den Text über die Zwischenablage übertragen, können Sie ihn mit oder ohne Textattributen am Zielort einfügen. Verwenden Sie die Tastenkombinationen <switchinline select=\"sys\"><caseinline select=\"MAC\">Befehl</caseinline><defaultinline>Strg</defaultinline></switchinline>+C zum Kopieren und <switchinline select=\"sys\"><caseinline select=\"MAC\">Befehl</caseinline><defaultinline>Strg</defaultinline></switchinline>+V zum Einfügen."
#: copytext2application.xhp
msgctxt ""
@@ -4142,7 +4142,7 @@ msgctxt ""
"par_id2584002\n"
"help.text"
msgid "On Windows systems, you can also use drag-and-drop instead of Copy and Paste. Also, for registered databases, you can open the datasource browser (press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> + Shift + F4 keys) instead of opening the Base window."
-msgstr ""
+msgstr "Auf Windows-Systemen können Sie auch Ziehen-und-Ablegen anstatt Kopieren-und-Einfügen verwenden. Für registrierte Datenbanken können Sie auch den Datenquellen-Browser (Tastenkombination <switchinline select=\"sys\"><caseinline select=\"MAC\">Befehl</caseinline><defaultinline>Strg</defaultinline></switchinline>+Umschalt+F4) anstelle des Base-Fenster öffnen."
#: data_new.xhp
msgctxt ""
@@ -4870,7 +4870,7 @@ msgctxt ""
"par_id3159157\n"
"help.text"
msgid "As an example, open an empty text document and press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> + Shift + F4 keys. Open the bibliography database table <emph>biblio</emph> in the data source view. While pressing Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>, drag a few column headers into the document so that the form fields are created."
-msgstr ""
+msgstr "Als Beispiel: Öffnen Sie ein leeres Textdokument, drücken Sie <switchinline select=\"sys\"><caseinline select=\"MAC\">Befehl</caseinline><defaultinline>Strg</defaultinline></switchinline>+Umschalt+F4-Taste, öffnen Sie in der Datenquellenansicht die Literaturdatenbanktabelle <emph>biblio</emph>. Halten Sie Umschalt+<switchinline select=\"sys\"><caseinline select=\"MAC\">Befehl</caseinline><defaultinline>Strg</defaultinline></switchinline> gedrückt und ziehen einige Spaltenköpfe in das Dokument, so dass dort Formularfelder entstehen."
#: data_search2.xhp
msgctxt ""
@@ -5334,7 +5334,7 @@ msgctxt ""
"par_id3149415\n"
"help.text"
msgid "Choose <emph>View - Data Sources</emph> or press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> + Shift + F4 keys to call the data source view from a text document or spreadsheet."
-msgstr ""
+msgstr "Wählen Sie <emph>Ansicht - Datenquellen</emph> oder drücken Sie <switchinline select=\"sys\"><caseinline select=\"MAC\">Befehl</caseinline><defaultinline>Strg</defaultinline></switchinline>+Umschalt+F4, um die Datenquellenansicht in einem Text- oder Tabellendokument zu öffnen."
#: database_main.xhp
msgctxt ""
@@ -6014,7 +6014,7 @@ msgctxt ""
"par_idN10640\n"
"help.text"
msgid "You can get a certificate from a certification authority. No matter if you choose a governmental institution or a private company it is common to be charged for this service, for example when they certify your identity. Few other authorities issue certificates free of costs, like the Open Source Project <link href=\"https://www.CAcert.org/\">CAcert</link> which is based on the well-known and reliable Web of Trust model and is of growing popularity."
-msgstr "Sie können ein Zertifikat von einer Zertifizierungsstelle erhalten. Ganz egal, ob Sie eine staatliche Behörde oder eine private Gesellschaft wählen, ist es üblich für diesen Service zu bezahlen, zum Beispiel, wenn sie Ihre Identität zertifizieren. Nur wenige Autoritäten erteilen das Zertifikat kostenlos - wie beispielsweise das Open-Source Projekt <link href=\"https://www.CAcert.org/\">CAcert</link>, welches auf dem bekannten und zuverlässigen Web-of-Trust-Modell (Netz des Vertrauens) basiert und sich wachsender Beliebtheit erfreut."
+msgstr "Sie können ein Zertifikat von einer Zertifizierungsstelle erhalten. Ganz egal, ob Sie eine staatliche Behörde oder eine private Gesellschaft wählen, ist es üblich für diesen Service zu bezahlen, zum Beispiel, wenn Sie Ihre Identität zertifizieren. Nur wenige Autoritäten erteilen das Zertifikat kostenlos, wie beispielsweise das Open-Source Projekt <link href=\"https://www.CAcert.org/\">CAcert</link>, welches auf dem bekannten und zuverlässigen Web-of-Trust-Modell (Netz des Vertrauens) basiert und sich wachsender Beliebtheit erfreut."
#: digitalsign_send.xhp
msgctxt ""
@@ -10998,7 +10998,7 @@ msgctxt ""
"par_id3150515\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> + Shift + F4 opens and closes the data source view."
-msgstr ""
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Befehl</caseinline><defaultinline>Strg</defaultinline></switchinline>+Umschalt+F4 öffnet und schließt die Datenquellenansicht."
#: keyboard.xhp
msgctxt ""
diff --git a/source/de/helpcontent2/source/text/shared/help.po b/source/de/helpcontent2/source/text/shared/help.po
index 89023a28326..3e3ed15c9a8 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: 2018-05-16 16:54+0200\n"
-"PO-Revision-Date: 2018-05-23 06:54+0000\n"
-"Last-Translator: Sophia Schröder <sophia.schroeder@outlook.com>\n"
+"PO-Revision-Date: 2018-06-02 04:52+0000\n"
+"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: de\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1527058454.000000\n"
+"X-POOTLE-MTIME: 1527915152.000000\n"
#: browserhelp.xhp
msgctxt ""
@@ -22,7 +22,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Help Page Strings"
-msgstr ""
+msgstr "Zeichenketten für Hilfeseiten"
#: browserhelp.xhp
msgctxt ""
@@ -30,7 +30,7 @@ msgctxt ""
"par_id491525733955136\n"
"help.text"
msgid "<variable id=\"module\">Module</variable>"
-msgstr ""
+msgstr "<variable id=\"module\">Module</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -38,7 +38,7 @@ msgctxt ""
"par_id531525734031068\n"
"help.text"
msgid "<variable id=\"language\">Language</variable>"
-msgstr ""
+msgstr "<variable id=\"language\">Sprache</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -46,7 +46,7 @@ msgctxt ""
"par_id991525734084608\n"
"help.text"
msgid "<variable id=\"contents\">Contents</variable>"
-msgstr ""
+msgstr "<variable id=\"contents\">Inhalte</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -54,7 +54,7 @@ msgctxt ""
"par_id601525734140935\n"
"help.text"
msgid "<variable id=\"index\">Index</variable>"
-msgstr ""
+msgstr "<variable id=\"index\">Index</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -62,7 +62,7 @@ msgctxt ""
"par_id191525734190260\n"
"help.text"
msgid "<variable id=\"donate\">If this page has been helpful, you can support us!</variable>"
-msgstr ""
+msgstr "<variable id=\"donate\">Wenn diese Seite hilfreich war, können Sie uns unterstützen!</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -70,7 +70,7 @@ msgctxt ""
"par_id881525734289794\n"
"help.text"
msgid "<variable id=\"LibreOfficeHelp\">%PRODUCTNAME %PRODUCTVERSION Help</variable>"
-msgstr ""
+msgstr "<variable id=\"LibreOfficeHelp\">Hilfe für %PRODUCTNAME %PRODUCTVERSION</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -78,7 +78,7 @@ msgctxt ""
"par_id421525736799965\n"
"help.text"
msgid "<variable id=\"copyclip\">Click on text to copy to clipboard</variable>"
-msgstr ""
+msgstr "<variable id=\"copyclip\">Klicken Sie auf Text, um ihn in die Zwischenablage zu kopieren</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -86,7 +86,7 @@ msgctxt ""
"par_id31525734624833\n"
"help.text"
msgid "<variable id=\"selectmodule\">Select Module</variable>"
-msgstr ""
+msgstr "<variable id=\"selectmodule\">Modul wählen</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -94,7 +94,7 @@ msgctxt ""
"par_id1001525734619670\n"
"help.text"
msgid "<variable id=\"selectlanguage\">Select Language</variable>"
-msgstr ""
+msgstr "<variable id=\"selectlanguage\">Sprache wählen</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -102,7 +102,7 @@ msgctxt ""
"par_id91525734616233\n"
"help.text"
msgid "<variable id=\"searchhelpcontents\">Search help contents</variable>"
-msgstr ""
+msgstr "<variable id=\"searchhelpcontents\">Hilfe durchsuchen</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -190,7 +190,7 @@ msgctxt ""
"par_id331525747842279\n"
"help.text"
msgid "<variable id=\"ca-valencia\">Valencian Catalan</variable>"
-msgstr ""
+msgstr "<variable id=\"ca-valencia\">Valencianisches Katalanisch</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -222,7 +222,7 @@ msgctxt ""
"par_id831525747962487\n"
"help.text"
msgid "<variable id=\"dz\">Dzongkha</variable>"
-msgstr ""
+msgstr "<variable id=\"dz\">Dzongkha</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -246,7 +246,7 @@ msgctxt ""
"par_id701525747984877\n"
"help.text"
msgid "<variable id=\"en-ZA\">English (SA)</variable>"
-msgstr ""
+msgstr "<variable id=\"en-ZA\">Englisch (SA)</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -462,7 +462,7 @@ msgctxt ""
"par_id401525748129935\n"
"help.text"
msgid "<variable id=\"om\">Oromo</variable>"
-msgstr ""
+msgstr "<variable id=\"om\">Oromo</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -518,7 +518,7 @@ msgctxt ""
"par_id191525748182094\n"
"help.text"
msgid "<variable id=\"sid\">Sidama</variable>"
-msgstr ""
+msgstr "<variable id=\"sid\">Sidama</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -582,7 +582,7 @@ msgctxt ""
"par_id621525748217482\n"
"help.text"
msgid "<variable id=\"ug\">Uyghur</variable>"
-msgstr ""
+msgstr "<variable id=\"ug\">Uigurisch</variable>"
#: browserhelp.xhp
msgctxt ""
diff --git a/source/de/helpcontent2/source/text/shared/optionen.po b/source/de/helpcontent2/source/text/shared/optionen.po
index bee1209b4f6..f3bf35179d0 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: 2018-05-08 15:10+0200\n"
-"PO-Revision-Date: 2018-05-09 10:21+0000\n"
-"Last-Translator: Sophia Schröder <sophia.schroeder@outlook.com>\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
+"PO-Revision-Date: 2018-06-14 03:04+0000\n"
+"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: de\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1525861303.000000\n"
+"X-POOTLE-MTIME: 1528945486.000000\n"
#: 01000000.xhp
msgctxt ""
@@ -83,6 +83,22 @@ msgstr "Bemerkungen für Anwender von macOS: Die Hilfe erwähnt an mehreren Stel
#: 01000000.xhp
msgctxt ""
"01000000.xhp\n"
+"hd_id551527692881035\n"
+"help.text"
+msgid "Help"
+msgstr "Hilfe"
+
+#: 01000000.xhp
+msgctxt ""
+"01000000.xhp\n"
+"par_id831527692885723\n"
+"help.text"
+msgid "Opens the help contents for the Options page displayed."
+msgstr "Öffnet den Hilfeinhalt der angezeigten Seite in den Optionen."
+
+#: 01000000.xhp
+msgctxt ""
+"01000000.xhp\n"
"hd_id3159149\n"
"help.text"
msgid "<link href=\"text/shared/optionen/01010000.xhp\" name=\"$[officename]\">%PRODUCTNAME</link>"
@@ -4565,8 +4581,8 @@ msgctxt ""
"01030300.xhp\n"
"par_idN10640\n"
"help.text"
-msgid "Options"
-msgstr "Optionen"
+msgid "Security Options and Warnings"
+msgstr "Sicherheitsoptionen und -warnungen"
#: 01030300.xhp
msgctxt ""
@@ -4597,8 +4613,8 @@ msgctxt ""
"01030300.xhp\n"
"hd_id3168736\n"
"help.text"
-msgid "Persistently save passwords protected by a master password"
-msgstr "Kennwörter speichern und mit Master-Kennwort schützen"
+msgid "Persistently save passwords for web connections"
+msgstr "Kennwörter für Web-Verbindungen dauerhaft speichern"
#: 01030300.xhp
msgctxt ""
@@ -4613,6 +4629,22 @@ msgctxt ""
"01030300.xhp\n"
"hd_id3901791\n"
"help.text"
+msgid "Protected by a master password (recommended)"
+msgstr "Mit Master-Kennwort schützen (empfohlen)"
+
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"par_id31527711486980\n"
+"help.text"
+msgid "Check to enable all connections' passwords to be protected by a master password."
+msgstr "Markieren, um alle Verbindungs-Kennwörter mit einem Master-Kennwort zu schützen."
+
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"hd_id141527711343312\n"
+"help.text"
msgid "Master Password"
msgstr "Master-Kennwort"
@@ -13733,8 +13765,8 @@ msgctxt ""
"java.xhp\n"
"hd_id3148618\n"
"help.text"
-msgid "Optional (unstable) options"
-msgstr "Optionale (instabile) Einstellungen"
+msgid "Optional Features"
+msgstr "Optionale Funktionen"
#: java.xhp
msgctxt ""
@@ -13749,7 +13781,7 @@ msgctxt ""
"java.xhp\n"
"par_id3156344\n"
"help.text"
-msgid "It enables features that are not yet complete or contain known bugs. The list of these features is different version by version, or even it can be empty."
+msgid "Enables features that are not yet complete or may contain known bugs. The list of these features is different version by version, or even it can be empty."
msgstr "Ermöglicht die Verwendung von Funktionen, die noch nicht abgeschlossen sind oder bekannte Fehlern enthalten können. Die Liste dieser Funktionen ist unterschiedlich von Version zu Version oder kann sogar leer sein."
#: java.xhp
@@ -13765,8 +13797,8 @@ msgctxt ""
"java.xhp\n"
"par_id3156345\n"
"help.text"
-msgid "It enables macro recording, so the <link href=\"text/shared/guide/macro_recording.xhp\" name=\"Tools - Macros - Record Macro\"><item type=\"menuitem\">Tools - Macros - Record Macro</item></link> menu item will be available."
-msgstr "Es ermöglicht Aufzeichnung von Makros, sodass der Menüeintrag <link href=\"text/shared/guide/macro_recording.xhp\" name=\"Extras - Makros - Makro aufzeichnen\"><item type=\"menuitem\"> Extras - Makros - Makro aufzeichnen</item></link> verfügbar sein wird."
+msgid "Enables macro recording. The <link href=\"text/shared/guide/macro_recording.xhp\" name=\"Tools - Macros - Record Macro\"><item type=\"menuitem\">Tools - Macros - Record Macro</item></link> menu item is available."
+msgstr "Ermöglicht die Aufzeichnung von Makros. Der Menüeintrag <link href=\"text/shared/guide/macro_recording.xhp\" name=\"Extras - Makros - Makro aufzeichnen\"><item type=\"menuitem\"> Extras - Makros - Makro aufzeichnen</item></link> ist somit verfügbar."
#: java.xhp
msgctxt ""
diff --git a/source/de/helpcontent2/source/text/simpress/01.po b/source/de/helpcontent2/source/text/simpress/01.po
index 46a228a95aa..4462e0efd26 100644
--- a/source/de/helpcontent2/source/text/simpress/01.po
+++ b/source/de/helpcontent2/source/text/simpress/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: 2018-05-08 15:10+0200\n"
-"PO-Revision-Date: 2018-05-19 12:23+0000\n"
-"Last-Translator: Sophia Schröder <sophia.schroeder@outlook.com>\n"
+"PO-Revision-Date: 2018-06-14 03:15+0000\n"
+"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: de\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1526732627.000000\n"
+"X-POOTLE-MTIME: 1528946121.000000\n"
#: 01170000.xhp
msgctxt ""
@@ -5014,7 +5014,7 @@ msgctxt ""
"par_id3155444\n"
"help.text"
msgid "You can copy and paste animations into <item type=\"productname\">%PRODUCTNAME</item> Writer."
-msgstr "Animationen können kopiert und in <item type=\"productname\">%PRODUCTNAME</item> Writer eingefügt werden."
+msgstr "Sie können Animationen mittels Kopieren-und-Einfügen in <item type=\"productname\">%PRODUCTNAME</item> Writer übertragen."
#: 06050000.xhp
msgctxt ""
diff --git a/source/de/helpcontent2/source/text/simpress/guide.po b/source/de/helpcontent2/source/text/simpress/guide.po
index 1c7261e5b80..1bed16b712c 100644
--- a/source/de/helpcontent2/source/text/simpress/guide.po
+++ b/source/de/helpcontent2/source/text/simpress/guide.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2018-05-16 16:54+0200\n"
-"PO-Revision-Date: 2018-05-23 06:54+0000\n"
-"Last-Translator: Thomas Hackert <thackert@nexgo.de>\n"
+"PO-Revision-Date: 2018-06-14 03:17+0000\n"
+"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: de\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1527058464.000000\n"
+"X-POOTLE-MTIME: 1528946259.000000\n"
#: 3d_create.xhp
msgctxt ""
@@ -4182,7 +4182,7 @@ msgctxt ""
"par_id3149378\n"
"help.text"
msgid "You can insert slides from another presentation into the current presentation. You can also copy and paste slides between presentations."
-msgstr "Es ist möglich, Folien aus anderen Präsentationen in die aktuelle Präsentation einzufügen. Außerdem können Folien aus Präsentationen kopiert und in andere eingefügt werden."
+msgstr "Es ist möglich, Folien aus anderen Präsentationen in die aktuelle Präsentation einzufügen. Außerdem können Folien zwischen Präsentationen mittels Kopieren-und-Einfügen übertragen."
#: page_copy.xhp
msgctxt ""
@@ -4238,7 +4238,7 @@ msgctxt ""
"hd_id3154651\n"
"help.text"
msgid "To copy and paste slides between presentations:"
-msgstr "So kopieren Sie Folien in einer Präsentation und fügen Sie in eine andere ein:"
+msgstr "Um Folien mittels Kopieren-und-Einfügen zwischen Präsentationen zu übertragen:"
#: page_copy.xhp
msgctxt ""
diff --git a/source/de/helpcontent2/source/text/smath/00.po b/source/de/helpcontent2/source/text/smath/00.po
index 263cf47351d..30ec4ebc31a 100644
--- a/source/de/helpcontent2/source/text/smath/00.po
+++ b/source/de/helpcontent2/source/text/smath/00.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: 2017-05-09 16:45+0200\n"
-"PO-Revision-Date: 2017-11-16 17:13+0000\n"
-"Last-Translator: Sophia Schröder <sophia.schroeder@outlook.com>\n"
+"PO-Revision-Date: 2018-06-02 04:14+0000\n"
+"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: de\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1510852424.000000\n"
+"X-POOTLE-MTIME: 1527912877.000000\n"
#: 00000004.xhp
msgctxt ""
@@ -454,7 +454,7 @@ msgctxt ""
"par_id3145131\n"
"help.text"
msgid "Choose <emph>Tools - Symbols</emph>"
-msgstr "Wählen Sie <emph>Extras - Katalog...</emph>"
+msgstr "Wählen Sie <emph>Extras - Symbole...</emph>"
#: 00000004.xhp
msgctxt ""
@@ -478,7 +478,7 @@ msgctxt ""
"par_id3148448\n"
"help.text"
msgid "Symbols"
-msgstr "Katalog"
+msgstr "Symbole"
#: 00000004.xhp
msgctxt ""
@@ -486,7 +486,7 @@ msgctxt ""
"par_id3145318\n"
"help.text"
msgid "<variable id=\"etssba\">Choose <emph>Tools - Symbols - Edit</emph></variable>"
-msgstr "<variable id=\"etssba\">Wählen Sie <emph>Extras - Katalog... - Bearbeiten...</emph></variable>"
+msgstr "<variable id=\"etssba\">Wählen Sie <emph>Extras - Symbole... - Schaltfläche: Bearbeiten...</emph></variable>"
#: 00000004.xhp
msgctxt ""
diff --git a/source/de/helpcontent2/source/text/smath/01.po b/source/de/helpcontent2/source/text/smath/01.po
index c9c1ee5528f..cf6c017a2c5 100644
--- a/source/de/helpcontent2/source/text/smath/01.po
+++ b/source/de/helpcontent2/source/text/smath/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: 2018-05-16 16:54+0200\n"
-"PO-Revision-Date: 2018-05-17 19:56+0000\n"
-"Last-Translator: Thomas Hackert <thackert@nexgo.de>\n"
+"PO-Revision-Date: 2018-06-14 03:19+0000\n"
+"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: de\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1526586995.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1528946359.000000\n"
#: 02080000.xhp
msgctxt ""
@@ -822,7 +822,7 @@ msgctxt ""
"par_id3150464\n"
"help.text"
msgid "You can also insert user-defined unary operators by typing <emph>uoper</emph> in the <emph>Commands</emph> window, followed by the syntax for the character. This function is useful for incorporating special characters into a formula. For example, the command <emph>uoper %theta x</emph> produces a small Greek letter theta (a component of the <emph>$[officename] Math</emph> character set). You can also insert characters not in the $[officename] character set by choosing <emph>Tools - Symbols - Edit</emph>."
-msgstr "Mit <emph>uoper</emph> können Sie selbstdefinierte unäre Operatoren im Fenster <emph>Kommandos</emph> einfügen, gefolgt von der Syntax eines Zeichens. Dies ist unter anderem nützlich, um Sonderzeichen in eine Formel einzubauen. Beispielsweise erzeugt <emph>uoper %theta x</emph> ein kleines griechisches Theta (das Bestandteil des Zeichensatzes von <emph>$[officename] Math</emph> ist). Sie können auch Zeichen einzufügen, die nicht Bestandteil des Zeichensatzes von $[officename] Math sind, indem Sie das gewünschte Zeichen zunächst über <emph>Extras - Symbole - Katalog...</emph> definieren."
+msgstr "Mit <emph>uoper</emph> können Sie selbstdefinierte unäre Operatoren im Fenster <emph>Kommandos</emph> einfügen, gefolgt von der Syntax eines Zeichens. Dies ist unter anderem nützlich, um Sonderzeichen in eine Formel einzubauen. Beispielsweise erzeugt <emph>uoper %theta x</emph> ein kleines griechisches Theta (das Bestandteil des Zeichensatzes von <emph>$[officename] Math</emph> ist). Sie können auch Zeichen einzufügen, die nicht Bestandteil des Zeichensatzes von $[officename] Math sind, indem Sie das gewünschte Zeichen zunächst über <emph>Extras - Symbole... - Schaltfläche: Bearbeiten...</emph> definieren."
#: 03090100.xhp
msgctxt ""
@@ -830,7 +830,7 @@ msgctxt ""
"par_id3154725\n"
"help.text"
msgid "You can also insert user-defined binary commands by typing <emph>boper</emph> into the <emph>Commands</emph> window. For example, the command <emph>y boper %theta x</emph> produces the small Greek letter theta preceded by a <emph>y</emph> and followed by an <emph>x</emph>. You can also insert characters not in the $[officename] character set by choosing <emph>Tools - Symbols - Edit</emph>."
-msgstr "Mit <emph>boper</emph> können sie selbstdefinierte binäre Operatoren im Fenster <emph>Kommandos</emph> einfügen. Beispielsweise erzeugt <emph>x boper %theta y</emph> ein kleines griechisches Theta mit einem vorangestellten <emph>x</emph> und gefolgt von einem <emph>y</emph>. Sie können auch Zeichen einfügen, die nicht Bestandteil des Zeichensatzes von $[officename] Math sind, indem Sie das gewünschte Zeichen zunächst über <emph>Extras - Symbole - Katalog...</emph> definieren."
+msgstr "Mit <emph>boper</emph> können sie selbstdefinierte binäre Operatoren im Fenster <emph>Kommandos</emph> einfügen. Beispielsweise erzeugt <emph>x boper %theta y</emph> ein kleines griechisches Theta mit einem vorangestellten <emph>x</emph> und gefolgt von einem <emph>y</emph>. Sie können auch Zeichen einfügen, die nicht Bestandteil des Zeichensatzes von $[officename] Math sind, indem Sie das gewünschte Zeichen zunächst über <emph>Extras - Symbole... - Schaltfläche: Bearbeiten...</emph> definieren."
#: 03090100.xhp
msgctxt ""
@@ -894,7 +894,7 @@ msgctxt ""
"par_id3155383\n"
"help.text"
msgid "If you want to use a colon ':' as division sign, choose <emph>Tools - Symbols</emph> or click the <emph>Symbols</emph> icon on the Tools bar. Click the <emph>Edit</emph> button in the dialog that appears, then select the <emph>Special</emph> symbol set. Enter a meaningful name next to <emph>Symbol</emph>, for example, \"divide\" and then click the colon in the set of symbols. Click <emph>Add</emph> and then <emph>OK</emph>. Click <emph>OK</emph> to close the <emph>Symbols</emph> dialog,too. Now you can use the new symbol, in this case the colon, by entering its name in the Commands window, for example, <emph>a %divide b = c</emph>."
-msgstr "Um lieber den Doppelpunkt ':' als Divisionszeichen zu verwenden, wählen Sie <emph>Extras - Katalog...</emph> oder klicken auf das Symbol <emph>Katalog</emph> in der Symbolleiste Extras. Ein Klick auf die Schaltfläche <emph>Bearbeiten...</emph> öffnet den Dialog Symbole bearbeiten, wo Sie den Symbolsatz <emph>Spezial</emph> auswählen. Geben Sie im Kombinationsfeld <emph>Symbol</emph> einen möglichst einprägsamen Namen beispielsweise \"geteilt\" ein und klicken Sie auf das gewünschte Zeichen im Anzeigefeld des Symbolsatzes. Bestätigen Sie Ihre Änderungen mit Klicks nacheinander auf die Schaltflächen <emph>Hinzufügen</emph> und anschließend <emph>OK</emph>. Schließen Sie ebenfalls den <emph>Katalog</emph> mit einem Klick auf <emph>OK</emph>. Jetzt können Sie das neue Symbol, in diesem Fall den Divisions-Doppelpunkt, nach dem Muster <emph>a %geteilt b = c</emph> verwenden."
+msgstr "Wenn Sie lieber den Doppelpunkt ':' als Divisionszeichen verwenden möchten, wählen Sie <emph>Extras - Symbole...</emph> oder klicken auf das Symbol <emph>Symbole</emph> in der Symbolleiste Extras. Ein Klick auf die Schaltfläche <emph>Bearbeiten...</emph> öffnet den Dialog Symbole bearbeiten, wo Sie den Symbolsatz <emph>Spezial</emph> auswählen. Geben Sie im Kombinationsfeld <emph>Symbol</emph> einen möglichst einprägsamen Namen ein, beispielsweise \"geteilt\", und klicken Sie auf das gewünschte Zeichen im Anzeigefeld des Symbolsatzes. Bestätigen Sie Ihre Änderungen mit Klicks nacheinander auf die Schaltflächen <emph>Hinzufügen</emph> und anschließend <emph>OK</emph>. Schließen Sie ebenfalls den Dialog <emph>Symbole</emph> mit einem Klick auf <emph>OK</emph>. Jetzt können Sie das neue Symbol, in diesem Fall den Divisions-Doppelpunkt, nach dem Muster <emph>a %geteilt b = c</emph> verwenden."
#: 03090100.xhp
msgctxt ""
@@ -2086,7 +2086,7 @@ msgctxt ""
"par_id3146956\n"
"help.text"
msgid "By typing <emph>oper</emph> in the Commands window, you can insert <emph>user-defined operators</emph> in $[officename] Math, a feature useful for incorporating special characters into a formula. An example is <emph>oper %theta x</emph>. Using the <emph>oper</emph> command, you can also insert characters not in the default $[officename] character set. <emph>oper</emph> can also be used in connection with limits; for example, <emph>oper %union from {i=1} to n x_{i}</emph>. In this example, the union symbol is indicated by the name <emph>union</emph>. However, this is not one of the predefined symbols. To define it, choose <emph>Tools - Symbols</emph>. select <emph>Special</emph> as the symbol set in the dialog that appears, then click the <emph>Edit</emph> button. In the next dialog, select <emph>Special</emph> as the symbol set again. Enter a meaningful name in the <emph>Symbol</emph> text box, for example, \"union\" and then click the union symbol in the set of symbols. Click <emph>Add</emph> and then <emph>OK</emph>. Click <emph>Close</emph> to close the <emph>Symbols</emph> dialog. You are now finished and can type the union symbol in the Commands window, by entering <emph>oper %union</emph>."
-msgstr "$[officename] Math lässt die Verwendung <emph>benutzerdefinierter Operatoren</emph> zu. Sie müssen hierfür nur <emph>oper</emph> in das Fenster Kommandos eingeben. Dank dieser Funktion lassen sich problemlos Sonderzeichen in Formeln einsetzen. Ein Beispiel hierfür ist <emph>oper %theta x</emph>. Mit dem Befehl <emph>oper</emph> können Sie auch Zeichen einfügen, die nicht im Standardzeichensatz von $[officename] enthalten sind. Darüber hinaus lässt sich <emph>oper</emph> in Verbindung mit Grenzwerten einsetzen, wie zum Beispiel in <emph>oper %Vereinigung from {i=1} to n x_{i}</emph>. In diesem Beispiel ist das Symbol für Vereinigung durch den Namen <emph>Vereinigung</emph> dargestellt. Dies ist jedoch kein vordefiniertes Symbol. Um es zu definieren, wählen Sie <emph>Extras - Katalog...</emph>, dann das Symbolset <emph>Spezial</emph> und klicken anschließend auf die Schaltfläche <emph>Bearbeiten</emph>. Im nächsten Dialog wählen Sie erneut das Symbolset <emph>Spezial</emph>. Geben Sie in das Textfeld <emph>Symbol</emph> einen aussagekräftigen Namen ein, beispielsweise \"Vereinigung\", und klicken Sie dann auf das und-Symbol im Symbolset. Klicken Sie auf <emph>Hinzufügen</emph> und dann auf <emph>OK</emph>. Klicken Sie auf <emph>Schließen</emph>, um den Dialog <emph>Symbole</emph> zu schließen. Sie sind nun fertig und können das Vereinigungssymbol mit <emph>oper %Vereinigung</emph> in das Fenster Kommandos eingeben."
+msgstr "$[officename] Math lässt die Verwendung <emph>benutzerdefinierter Operatoren</emph> zu. Sie müssen hierfür nur <emph>oper</emph> in das Fenster Kommandos eingeben. Dank dieser Funktion lassen sich problemlos Sonderzeichen in Formeln einsetzen. Ein Beispiel hierfür ist <emph>oper %theta x</emph>. Mit dem Befehl <emph>oper</emph> können Sie auch Zeichen einfügen, die nicht im Standardzeichensatz von $[officename] enthalten sind. Darüber hinaus lässt sich <emph>oper</emph> in Verbindung mit Grenzwerten einsetzen, wie zum Beispiel in <emph>oper %Vereinigung from {i=1} to n x_{i}</emph>. In diesem Beispiel ist das Vereinigungssymbol durch den Namen <emph>Vereinigung</emph> dargestellt. Dies ist jedoch kein vordefiniertes Symbol. Um es zu definieren, wählen Sie <emph>Extras - Symbole...</emph>, dann den Symbolsatz <emph>Spezial</emph> und klicken anschließend auf die Schaltfläche <emph>Bearbeiten...</emph>. Im nächsten Dialog wählen Sie erneut den Symbolsatz <emph>Spezial</emph>. Geben Sie in das Textfeld <emph>Symbol</emph> einen aussagekräftigen Namen ein, beispielsweise \"Vereinigung\", und klicken Sie dann auf das Symbol Vereinigung in der Symboltabelle. Klicken Sie auf <emph>Hinzufügen</emph> und dann auf <emph>OK</emph>. Klicken Sie auf <emph>Schließen</emph>, um den Dialog <emph>Symbole</emph> zu schließen. Sie sind nun fertig und können das Symbol Vereinigungs mit <emph>oper %Vereinigung</emph> in das Fenster Kommandos eingeben."
#: 03090300.xhp
msgctxt ""
@@ -5342,7 +5342,7 @@ msgctxt ""
"par_id3153915\n"
"help.text"
msgid "<image id=\"img_id3150213\" src=\"media/helpimg/smzb5.png\" width=\"550px\" height=\"135px\"><alt id=\"alt_id3150213\">Matrix with varying font sizes</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3150213\" src=\"media/helpimg/smzb5.png\" width=\"550px\" height=\"135px\"><alt id=\"alt_id3150213\">Matrix mit verschiedenen Schriftgrößen</alt></image>"
#: 03090905.xhp
msgctxt ""
@@ -5374,7 +5374,7 @@ msgctxt ""
"par_id3153912\n"
"help.text"
msgid "<image id=\"img_id3149126\" src=\"media/helpimg/smzb4.png\" width=\"345px\" height=\"190px\"><alt id=\"alt_id3149126\">Matrix</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3149126\" src=\"media/helpimg/smzb4.png\" width=\"345px\" height=\"190px\"><alt id=\"alt_id3149126\">Matrix</alt></image>"
#: 03090906.xhp
msgctxt ""
@@ -5406,7 +5406,7 @@ msgctxt ""
"par_id3148866\n"
"help.text"
msgid "<image id=\"img_id3150210\" src=\"media/helpimg/smzb6.png\" width=\"300px\" height=\"245px\"><alt id=\"alt_id3150210\">Matrix in bold font</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3150210\" src=\"media/helpimg/smzb6.png\" width=\"300px\" height=\"245px\"><alt id=\"alt_id3150210\">Matrix in Fettschrift</alt></image>"
#: 03090907.xhp
msgctxt ""
@@ -5894,7 +5894,7 @@ msgctxt ""
"par_id3154906\n"
"help.text"
msgid "To change the size of a formula, use \"size +\" or -,*,/. Do not use \"size n\". These can easily be used in any context. This enables you to copy to other areas by using Copy and Paste, and the result remains the same. Furthermore, such expressions survive a change of base size in the menu better than when using \"size n\". If you use only \"size *\" and \"size /\" (for example, \"size *1.24 a or size /0.86 a\") the proportions remain intact."
-msgstr "Zur Größenänderung verwenden Sie \"size +\", oder die Versionen mit -,*,/ statt \"size n\". Diese lassen sich gut in beliebigem Kontext verwenden. So können Sie sie mit Kopieren und Einfügen an andere Stellen kopieren und das Ergebnis ist immer noch ähnlich. Auch überstehen solche Ausdrücke besser eine Änderung der Basisgröße im Menü als bei Verwendung von \"size n\". Benutzen Sie nur \"size *\" und \"size /\" (beispielsweise \"size *1.24 a oder size /0.86 a\"), bleiben die Proportionen erhalten."
+msgstr "Zur Größenänderung verwenden Sie \"size +\", oder die Versionen mit -,*,/ statt \"size n\". Diese lassen sich gut in beliebigem Kontext verwenden. So können Sie diese mittels Kopieren-und-Einfügen an andere Stellen kopieren und das Ergebnis ist immer noch ähnlich. Auch überstehen solche Ausdrücke besser eine Änderung der Basisgröße im Menü als bei Verwendung von \"size n\". Benutzen Sie nur \"size *\" und \"size /\" (beispielsweise \"size *1.24 a oder size /0.86 a\"), bleiben die Proportionen erhalten."
#: 03091100.xhp
msgctxt ""
@@ -11982,7 +11982,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Symbols"
-msgstr "Katalog"
+msgstr "Symbole"
#: 06010000.xhp
msgctxt ""
@@ -11998,7 +11998,7 @@ msgctxt ""
"hd_id3153715\n"
"help.text"
msgid "<link href=\"text/smath/01/06010000.xhp\" name=\"Symbols\">Symbols</link>"
-msgstr "<link href=\"text/smath/01/06010000.xhp\" name=\"Katalog\">Katalog</link>"
+msgstr "<link href=\"text/smath/01/06010000.xhp\" name=\"Symbole\">Symbole</link>"
#: 06010000.xhp
msgctxt ""
@@ -12006,7 +12006,7 @@ msgctxt ""
"par_id3146313\n"
"help.text"
msgid "<variable id=\"symboletext\"><ahelp hid=\"modules/smath/ui/catalogdialog/CatalogDialog\">Opens the <emph>Symbols</emph> dialog, in which you can select a symbol to insert in the formula.</ahelp> </variable>"
-msgstr "<variable id=\"symboletext\"><ahelp hid=\"modules/smath/ui/catalogdialog/CatalogDialog\">Öffnet den Dialog <emph>Katalog</emph> zur Auswahl eines Symbols, das in die Formel eingesetzt werden soll.</ahelp></variable>"
+msgstr "<variable id=\"symboletext\"><ahelp hid=\"modules/smath/ui/catalogdialog/CatalogDialog\">Öffnet den Dialog <emph>Symbole</emph> zur Auswahl eines Symbols, das in die Formel eingesetzt werden soll.</ahelp></variable>"
#: 06010000.xhp
msgctxt ""
diff --git a/source/de/helpcontent2/source/text/smath/06.po b/source/de/helpcontent2/source/text/smath/06.po
index 72d77027c6b..57376caa318 100644
--- a/source/de/helpcontent2/source/text/smath/06.po
+++ b/source/de/helpcontent2/source/text/smath/06.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: 2018-05-16 16:54+0200\n"
-"PO-Revision-Date: 2018-05-10 11:06+0000\n"
-"Last-Translator: Sophia Schröder <sophia.schroeder@outlook.com>\n"
+"PO-Revision-Date: 2018-06-02 04:28+0000\n"
+"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: de\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1525950383.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1527913680.000000\n"
#: screenshots.xhp
msgctxt ""
@@ -22,7 +22,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Math screenshots"
-msgstr ""
+msgstr "Bildschirmfotos von Math"
#: screenshots.xhp
msgctxt ""
@@ -30,7 +30,7 @@ msgctxt ""
"par_id141525570544232\n"
"help.text"
msgid "<image src=\"media/screenshots/modules/smath/ui/alignmentdialog/AlignmentDialog.png\" id=\"img_id331525570544232\" localize=\"true\"><alt id=\"alt_id641525570544232\">Alignment Dialog</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/screenshots/modules/smath/ui/alignmentdialog/AlignmentDialog.png\" id=\"img_id331525570544232\" localize=\"true\"><alt id=\"alt_id641525570544232\">Dialog Ausrichtung</alt></image>"
#: screenshots.xhp
msgctxt ""
@@ -38,7 +38,7 @@ msgctxt ""
"par_id121525570707303\n"
"help.text"
msgid "<image src=\"media/screenshots/modules/smath/ui/catalogdialog/CatalogDialog.png\" id=\"img_id441525570707303\" localize=\"true\"><alt id=\"alt_id921525570707303\">Catalog Dialog</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/screenshots/modules/smath/ui/catalogdialog/CatalogDialog.png\" id=\"img_id441525570707303\" localize=\"true\"><alt id=\"alt_id921525570707303\">Dialog Symbole</alt></image>"
#: screenshots.xhp
msgctxt ""
@@ -46,7 +46,7 @@ msgctxt ""
"par_id71525570710878\n"
"help.text"
msgid "<image src=\"media/screenshots/modules/smath/ui/fontdialog/FontDialog.png\" id=\"img_id41525570710879\" localize=\"true\"><alt id=\"alt_id931525570710879\">Font Dialog</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/screenshots/modules/smath/ui/fontdialog/FontDialog.png\" id=\"img_id41525570710879\" localize=\"true\"><alt id=\"alt_id931525570710879\">Dialog Schriftart ändern</alt></image>"
#: screenshots.xhp
msgctxt ""
@@ -54,7 +54,7 @@ msgctxt ""
"par_id671525570713808\n"
"help.text"
msgid "<image src=\"media/screenshots/modules/smath/ui/fontsizedialog/FontSizeDialog.png\" id=\"img_id131525570713808\" localize=\"true\"><alt id=\"alt_id501525570713809\">Font Size Dialog</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/screenshots/modules/smath/ui/fontsizedialog/FontSizeDialog.png\" id=\"img_id131525570713808\" localize=\"true\"><alt id=\"alt_id501525570713809\">Dialog Schriftgröße</alt></image>"
#: screenshots.xhp
msgctxt ""
@@ -62,7 +62,7 @@ msgctxt ""
"par_id891525570718035\n"
"help.text"
msgid "<image src=\"media/screenshots/modules/smath/ui/fonttypedialog/FontsDialog.png\" id=\"img_id441525570718035\" localize=\"true\"><alt id=\"alt_id401525570718036\">Font Type Dialog</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/screenshots/modules/smath/ui/fonttypedialog/FontsDialog.png\" id=\"img_id441525570718035\" localize=\"true\"><alt id=\"alt_id401525570718036\">Dialog Schriftart ändern</alt></image>"
#: screenshots.xhp
msgctxt ""
@@ -70,7 +70,7 @@ msgctxt ""
"par_id991525570721266\n"
"help.text"
msgid "<image src=\"media/screenshots/modules/smath/ui/savedefaultsdialog/SaveDefaultsDialog.png\" id=\"img_id571525570721266\" localize=\"true\"><alt id=\"alt_id981525570721266\">Save Default Dialog</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/screenshots/modules/smath/ui/savedefaultsdialog/SaveDefaultsDialog.png\" id=\"img_id571525570721266\" localize=\"true\"><alt id=\"alt_id981525570721266\">Dialog Standardwerte speichern</alt></image>"
#: screenshots.xhp
msgctxt ""
@@ -78,7 +78,7 @@ msgctxt ""
"par_id861525570725718\n"
"help.text"
msgid "<image src=\"media/screenshots/modules/smath/ui/spacingdialog/SpacingDialog.png\" id=\"img_id81525570725718\" localize=\"true\"><alt id=\"alt_id981525570725718\">Spacing Dialog</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/screenshots/modules/smath/ui/spacingdialog/SpacingDialog.png\" id=\"img_id81525570725718\" localize=\"true\"><alt id=\"alt_id981525570725718\">Dialog Abstände</alt></image>"
#: screenshots.xhp
msgctxt ""
@@ -86,4 +86,4 @@ msgctxt ""
"par_id931525570728897\n"
"help.text"
msgid "<image src=\"media/screenshots/modules/smath/ui/symdefinedialog/EditSymbols.png\" id=\"img_id491525570728897\" localize=\"true\"><alt id=\"alt_id31525570728897\">Edit Symbols</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/screenshots/modules/smath/ui/symdefinedialog/EditSymbols.png\" id=\"img_id491525570728897\" localize=\"true\"><alt id=\"alt_id31525570728897\">Symbole bearbeiten</alt></image>"
diff --git a/source/de/helpcontent2/source/text/swriter/00.po b/source/de/helpcontent2/source/text/swriter/00.po
index 20389f525ef..9492503bc95 100644
--- a/source/de/helpcontent2/source/text/swriter/00.po
+++ b/source/de/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: 2018-05-22 13:17+0200\n"
-"PO-Revision-Date: 2018-05-17 14:27+0000\n"
+"PO-Revision-Date: 2018-05-31 10:04+0000\n"
"Last-Translator: Thomas Hackert <thackert@nexgo.de>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: de\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1526567244.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1527761083.000000\n"
#: 00000004.xhp
msgctxt ""
@@ -598,7 +598,7 @@ msgctxt ""
"par_id3155990\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F2"
-msgstr ""
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Befehl</caseinline><defaultinline>Strg</defaultinline></switchinline>+F2"
#: 00000404.xhp
msgctxt ""
@@ -854,7 +854,7 @@ msgctxt ""
"par_id3150113\n"
"help.text"
msgid "<variable id=\"einfscript\">Choose <emph>Insert - Script</emph> (only HTML documents)</variable>"
-msgstr ""
+msgstr "<variable id=\"einfscript\">Wählen Sie <emph>Einfügen - Skript</emph> (nur bei HTML-Dokumenten).</variable>"
#: 00000404.xhp
msgctxt ""
@@ -1094,7 +1094,7 @@ msgctxt ""
"par_id3155087\n"
"help.text"
msgid "<variable id=\"umschlagb\">Choose <emph>Insert - Envelope - Envelope</emph> tab</variable>"
-msgstr ""
+msgstr "<variable id=\"umschlagb\">Wählen Sie <emph>Einfügen - Briefumschlag... - Register: Umschlag</emph>.</variable>"
#: 00000404.xhp
msgctxt ""
@@ -1102,7 +1102,7 @@ msgctxt ""
"par_id3146955\n"
"help.text"
msgid "<variable id=\"formatbr\">Choose <emph>Insert - Envelope - Format</emph> tab</variable>"
-msgstr ""
+msgstr "<variable id=\"formatbr\">Wählen Sie <emph>Einfügen - Briefumschlag... - Register: Format</emph>.</variable>"
#: 00000404.xhp
msgctxt ""
@@ -1110,7 +1110,7 @@ msgctxt ""
"par_id3154342\n"
"help.text"
msgid "<variable id=\"druckerbr\">Choose <emph>Insert - Envelope - Printer</emph> tab</variable>"
-msgstr ""
+msgstr "<variable id=\"druckerbr\">Wählen Sie <emph>Einfügen - Briefumschlag... - Register: Drucker</emph>.</variable>"
#: 00000404.xhp
msgctxt ""
@@ -1166,7 +1166,7 @@ msgctxt ""
"par_id3153129\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F12"
-msgstr ""
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Befehl</caseinline><defaultinline>Strg</defaultinline></switchinline>+F12"
#: 00000404.xhp
msgctxt ""
@@ -1254,7 +1254,7 @@ msgctxt ""
"par_id81526422144005\n"
"help.text"
msgid "Choose <emph>Insert - Signature Line...</emph>"
-msgstr ""
+msgstr "Wählen Sie <emph>Einfügen - Unterschriftzeile...</emph>."
#: 00000405.xhp
msgctxt ""
diff --git a/source/de/helpcontent2/source/text/swriter/01.po b/source/de/helpcontent2/source/text/swriter/01.po
index cb1ea34a665..ecce9605186 100644
--- a/source/de/helpcontent2/source/text/swriter/01.po
+++ b/source/de/helpcontent2/source/text/swriter/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: 2018-05-22 13:17+0200\n"
-"PO-Revision-Date: 2018-05-19 09:38+0000\n"
-"Last-Translator: Sophia Schröder <sophia.schroeder@outlook.com>\n"
+"PO-Revision-Date: 2018-06-04 03:43+0000\n"
+"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: de\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1526722699.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1528083784.000000\n"
#: 01120000.xhp
msgctxt ""
@@ -23590,7 +23590,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Adding Signature Line in Text Documents"
-msgstr ""
+msgstr "Eine Unterschriftzeile in Textdokumente einfügen"
#: addsignatureline.xhp
msgctxt ""
@@ -23598,7 +23598,7 @@ msgctxt ""
"bm_id821526779524753\n"
"help.text"
msgid "<bookmark_value>digital signature;add signature line</bookmark_value><bookmark_value>signature line;adding</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Digitale Signatur; Unterschriftzeile hinzufügen</bookmark_value><bookmark_value>Unterschriftzeile; hinzufügen</bookmark_value>"
#: addsignatureline.xhp
msgctxt ""
@@ -23606,7 +23606,7 @@ msgctxt ""
"hd_id501526421873817\n"
"help.text"
msgid "<variable id=\"addsignatureline01\"><link href=\"text/swriter/01/addsignatureline.xhp\" name=\"Adding Signature Line\">Adding a Signature Line in Text Documents</link></variable>"
-msgstr ""
+msgstr "<variable id=\"addsignatureline01\"><link href=\"text/swriter/01/addsignatureline.xhp\" name=\"Eine Unterschriftzeile einfügen\">Eine Unterschriftzeile in Textdokumente einfügen</link></variable>"
#: addsignatureline.xhp
msgctxt ""
@@ -23614,7 +23614,7 @@ msgctxt ""
"par_id991526423190756\n"
"help.text"
msgid "%PRODUCTNAME Writer can insert a graphic box inside the document representing a signature line of the document."
-msgstr ""
+msgstr "%PRODUCTNAME Writer kann ein Grafikfeld innerhalb des Dokuments einfügen, dass eine Unterschriftszeile des Dokumentes repräsentiert."
#: addsignatureline.xhp
msgctxt ""
@@ -23622,7 +23622,7 @@ msgctxt ""
"par_id751526436546030\n"
"help.text"
msgid "<image src=\"media/helpimg/sw_signatureline01.png\" id=\"img_id91526436546031\" width=\"311px\" height=\"179px\"> <alt id=\"alt_id351526436546031\">Signature Line Box</alt> </image>"
-msgstr ""
+msgstr "<image src=\"media/helpimg/sw_signatureline01.png\" id=\"img_id91526436546031\" width=\"311px\" height=\"179px\"><alt id=\"alt_id351526436546031\">Feld Unterschriftzeile</alt></image>"
#: addsignatureline.xhp
msgctxt ""
@@ -23630,7 +23630,7 @@ msgctxt ""
"par_id651526423393786\n"
"help.text"
msgid "The signature line displays an horizontal line, a location mark, the name, title and e-mail of signer."
-msgstr ""
+msgstr "Die Unterschriftszeile zeigt eine horizontale Linie, eine Positionsmarkierung, den Namen, Titel und e-Mail-Adresse des Unterzeichners an."
#: addsignatureline.xhp
msgctxt ""
@@ -23638,7 +23638,7 @@ msgctxt ""
"hd_id631526467960460\n"
"help.text"
msgid "Name"
-msgstr ""
+msgstr "Name"
#: addsignatureline.xhp
msgctxt ""
@@ -23646,7 +23646,7 @@ msgctxt ""
"par_id351526467968348\n"
"help.text"
msgid "Insert the name of the signer. The name is displayed in the signature line graphic box."
-msgstr ""
+msgstr "Fügen Sie den Namen des Unterzeichners ein. Der Name wird im Grafikfeld der Unterschriftszeile angezeigt."
#: addsignatureline.xhp
msgctxt ""
@@ -23654,7 +23654,7 @@ msgctxt ""
"hd_id171526467974440\n"
"help.text"
msgid "Title"
-msgstr ""
+msgstr "Titel"
#: addsignatureline.xhp
msgctxt ""
@@ -23662,7 +23662,7 @@ msgctxt ""
"par_id701526467979209\n"
"help.text"
msgid "Enter the title of the signer. The title is displayed in the signature line graphic box."
-msgstr ""
+msgstr "Geben Sie den Titel des Unterzeichners ein. Der Titel wird im Grafikfeld der Unterschriftszeile angezeigt."
#: addsignatureline.xhp
msgctxt ""
@@ -23670,7 +23670,7 @@ msgctxt ""
"hd_id431526467986157\n"
"help.text"
msgid "Email"
-msgstr ""
+msgstr "E-Mail"
#: addsignatureline.xhp
msgctxt ""
@@ -23678,7 +23678,7 @@ msgctxt ""
"par_id111526467993387\n"
"help.text"
msgid "Enter the e-mail of the signer. The email is not displayed in the signature line graphic box, and is be used for the digital signature."
-msgstr ""
+msgstr "Geben Sie die e-Mail-Adresse des Unterzeichners ein. Die e-Mail-Adresse wird nicht im Grafikfeld der Unterschriftszeile angezeigt und wird für die digitale Signatur benutzt."
#: addsignatureline.xhp
msgctxt ""
@@ -23686,7 +23686,7 @@ msgctxt ""
"hd_id451526468019876\n"
"help.text"
msgid "Signer can add comments"
-msgstr ""
+msgstr "Unterzeichner kann Kommentare hinzufügen"
#: addsignatureline.xhp
msgctxt ""
@@ -23694,7 +23694,7 @@ msgctxt ""
"par_id531526562791579\n"
"help.text"
msgid "Enable signer to insert comments in the Sign Signature Line dialog at time of signature."
-msgstr ""
+msgstr "Ermöglicht dem Unterzeichner Kommentare im Dialog der Unterschriftszeile zur Zeit der Unterzeichnung einzufügen."
#: addsignatureline.xhp
msgctxt ""
@@ -23702,7 +23702,7 @@ msgctxt ""
"hd_id31526468046686\n"
"help.text"
msgid "Show sign date in signature line"
-msgstr ""
+msgstr "Zeige Unterschriftsdatum in der Unterschriftzeile"
#: addsignatureline.xhp
msgctxt ""
@@ -23710,7 +23710,7 @@ msgctxt ""
"par_id11526468051934\n"
"help.text"
msgid "Mark this checkbox to display the date of the signature, at the time when the document is digitally signed."
-msgstr ""
+msgstr "Markieren Sie dieses Markierfeld, um das Datum der Unterschrift anzuzeigen, an dem das Dokument digital signiert wurde."
#: addsignatureline.xhp
msgctxt ""
@@ -23718,7 +23718,7 @@ msgctxt ""
"hd_id791526468057743\n"
"help.text"
msgid "Instructions to the signer"
-msgstr ""
+msgstr "Anweisungen für den Unterzeichner"
#: addsignatureline.xhp
msgctxt ""
@@ -23726,7 +23726,7 @@ msgctxt ""
"par_id131526560799876\n"
"help.text"
msgid "Insert instructions for the signer. The instructions appears in the Sign Signature Line dialog box, at the time of signature."
-msgstr ""
+msgstr "Fügen Sie Anweisungen für den Unterzeichner ein. Die Anweisungen erscheinen im Dialog <emph>Signaturzeile unterschreiben...</emph> zur Zeit der Unterzeichnung."
#: format_object.xhp
msgctxt ""
@@ -26358,7 +26358,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Signing the Signature Line"
-msgstr ""
+msgstr "Unterschriftzeile signieren"
#: signsignatureline.xhp
msgctxt ""
@@ -26366,7 +26366,7 @@ msgctxt ""
"bm_id651526779220785\n"
"help.text"
msgid "<bookmark_value>digital signature;sign signature line</bookmark_value><bookmark_value>signature line;signing</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Digitale Signatur;Unterschriftzeile signieren</bookmark_value><bookmark_value>Unterschriftzeile;signieren</bookmark_value>"
#: signsignatureline.xhp
msgctxt ""
@@ -26374,7 +26374,7 @@ msgctxt ""
"hd_id401526575112776\n"
"help.text"
msgid "<variable id=\"signsignatureline01\"><link href=\"text/swriter/01/signsignatureline.xhp\" name=\"Sign Signature Line\">Digitally Signing the Signature Line</link></variable>"
-msgstr ""
+msgstr "<variable id=\"signsignatureline01\"><link href=\"text/swriter/01/signsignatureline.xhp\" name=\"Unterschriftzeile signieren\">Unterschriftzeile digital signieren</link></variable>"
#: signsignatureline.xhp
msgctxt ""
@@ -26382,7 +26382,7 @@ msgctxt ""
"par_id611526575121298\n"
"help.text"
msgid "%PRODUCTNAME Writer lets you sign digitally a signature line."
-msgstr ""
+msgstr "In %PRODUCTNAME Writer können Sie eine Unterschriftzeile digital signieren."
#: signsignatureline.xhp
msgctxt ""
@@ -26390,7 +26390,7 @@ msgctxt ""
"par_id511526575127337\n"
"help.text"
msgid "On signing a signature line, %PRODUCTNAME Writer fills the line with the name of signer, adds the digital certificate issuer information and optionally insert the date of signature."
-msgstr ""
+msgstr "Beim Signieren einer Unterschriftzeile füllt %PRODUCTNAME Writer die Zeile mit dem Namen des Signierenden, fügt die Informationen zum Aussteller des digitalen Zertifikats an und fügt optional das Datum der Signatur hinzu."
#: signsignatureline.xhp
msgctxt ""
@@ -26398,7 +26398,7 @@ msgctxt ""
"par_id291526564031387\n"
"help.text"
msgid "Select the signature line graphic object context menu. Choose <emph>Sign Signature Line</emph>."
-msgstr ""
+msgstr "Öffnen Sie das Kontextmenü des Unterschriftzeilen-Grafikobjekts. Wählen Sie <emph>Unterschriftzeile signieren</emph>."
#: signsignatureline.xhp
msgctxt ""
@@ -26406,7 +26406,7 @@ msgctxt ""
"hd_id311526563971364\n"
"help.text"
msgid "Your Name"
-msgstr ""
+msgstr "Ihr Name"
#: signsignatureline.xhp
msgctxt ""
@@ -26414,7 +26414,7 @@ msgctxt ""
"par_id511526564217965\n"
"help.text"
msgid "Enter your name as signer of the document. Your name will be inserted above the signature horizontal line."
-msgstr ""
+msgstr "Geben Sie Ihren Namen als Signierender des Dokuments ein. Ihr Name erscheint oberhalb der horizontalen Unterschriftzeile."
#: signsignatureline.xhp
msgctxt ""
@@ -26422,7 +26422,7 @@ msgctxt ""
"hd_id401526563978041\n"
"help.text"
msgid "Certificate"
-msgstr ""
+msgstr "Zertifikat"
#: signsignatureline.xhp
msgctxt ""
@@ -26430,7 +26430,7 @@ msgctxt ""
"par_id31526564223526\n"
"help.text"
msgid "Click on the Select Certificate button to open the Select Certificate dialog box, where your certificates are listed. Select the certificate suitable for signing the document."
-msgstr ""
+msgstr "Klicken Sie auf die Schaltfläche Zertifikat auswählen, um den Dialog Zertifikat auswählen zu öffnen, in dem Ihre Zertifikate ausgelistet sind. Wählen Sie das geeignete Zertifikat zum Signieren des Dokuments."
#: signsignatureline.xhp
msgctxt ""
@@ -26438,7 +26438,7 @@ msgctxt ""
"par_id251526576138883\n"
"help.text"
msgid "The information of the certificate issuer is inserted in the bottom of the Signature Line object."
-msgstr ""
+msgstr "Die Information des Zertifikat-Besitzers wird im unteren Bereich des Unterschriftzeilen-Objekts eingefügt."
#: signsignatureline.xhp
msgctxt ""
@@ -26446,7 +26446,7 @@ msgctxt ""
"hd_id301526563985718\n"
"help.text"
msgid "Instructions from the document creator"
-msgstr ""
+msgstr "Anweisungen vom Dokumentenersteller"
#: signsignatureline.xhp
msgctxt ""
@@ -26454,7 +26454,7 @@ msgctxt ""
"par_id271526564228571\n"
"help.text"
msgid "This area displays the instructions entered by the document creator when <link href=\"text/swriter/01/addsignatureline.xhp\" name=\"Adding the Signature Line\">adding the signature line</link>."
-msgstr ""
+msgstr "Dieser Bereich zeigt die Anweisungen, die vom Dokument-Ersteller beim <link href=\"text/swriter/01/addsignatureline.xhp\" name=\"Hinzufügend er Unterschriftzeile\">Hinzufügen der Unterschriftzeile</link> eingegeben wurden."
#: signsignatureline.xhp
msgctxt ""
@@ -26462,7 +26462,7 @@ msgctxt ""
"hd_id161526563992082\n"
"help.text"
msgid "Add comments"
-msgstr ""
+msgstr "Kommentare hinzufügen"
#: signsignatureline.xhp
msgctxt ""
@@ -26470,7 +26470,7 @@ msgctxt ""
"par_id21526564234712\n"
"help.text"
msgid "Enter comments about the signature. The comments are displayed in the <emph>Description</emph> field of the certificate."
-msgstr ""
+msgstr "Geben Sie Kommentare zur Signatur ein. Die Kommentare werden im Feld <emph>Beschreibung</emph> des Zertifikats angezeigt."
#: signsignatureline.xhp
msgctxt ""
@@ -26478,7 +26478,7 @@ msgctxt ""
"par_id621526576147414\n"
"help.text"
msgid "If enabled when the signature line was created, the date of signature is inserted on the top right of the signature line object."
-msgstr ""
+msgstr "Falls beim Erstellen der Unterschriftzeile aktiviert, wird das Datum der Signatur in der oberen rechten Ecke des Unterschriftzeilen-Objekts angezeigt."
#: signsignatureline.xhp
msgctxt ""
@@ -26486,7 +26486,7 @@ msgctxt ""
"par_id21526579319036\n"
"help.text"
msgid "<image src=\"media/helpimg/sw_signatureline02.png\" id=\"img_id551526579319036\" width=\"280px\" height=\"173px\"><alt id=\"alt_id641526579319036\">Signed Signature Line</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/helpimg/sw_signatureline02.png\" id=\"img_id551526579319036\" width=\"280px\" height=\"173px\"><alt id=\"alt_id641526579319036\">Signierte Unterschriftzeile</alt></image>"
#: title_page.xhp
msgctxt ""
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 66cfba80f68..86e9ff62695 100644
--- a/source/de/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/de/officecfg/registry/data/org/openoffice/Office/UI.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: 2018-05-22 13:17+0200\n"
-"PO-Revision-Date: 2018-05-24 04:17+0000\n"
-"Last-Translator: Thomas Hackert <thackert@nexgo.de>\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
+"PO-Revision-Date: 2018-06-04 16:50+0000\n"
+"Last-Translator: Sophia Schröder <sophia.schroeder@outlook.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: de\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1527135440.000000\n"
+"X-POOTLE-MTIME: 1528131025.000000\n"
#: BaseWindowState.xcu
msgctxt ""
@@ -20590,7 +20590,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Export As"
-msgstr "Ex~portieren als..."
+msgstr "Ex~portieren als"
#: GenericCommands.xcu
msgctxt ""
@@ -23047,7 +23047,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Signatu~re Line..."
-msgstr "Unterschriftszeile..."
+msgstr "Unterschriftzeile..."
#: GenericCommands.xcu
msgctxt ""
@@ -23056,7 +23056,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Edit Signature ~Line..."
-msgstr "Unterschriftszeile bearbeiten..."
+msgstr "Unterschriftzeile bearbeiten..."
#: GenericCommands.xcu
msgctxt ""
@@ -26520,8 +26520,8 @@ msgctxt ""
"..WriterCommands.UserInterface.Commands..uno:TextAttributes\n"
"Label\n"
"value.text"
-msgid "Text Attributes"
-msgstr "Te~xt..."
+msgid "Text Attributes..."
+msgstr "Textattribute..."
#: WriterCommands.xcu
msgctxt ""
diff --git a/source/de/readlicense_oo/docs.po b/source/de/readlicense_oo/docs.po
index 6bb38629638..fd1dec424c8 100644
--- a/source/de/readlicense_oo/docs.po
+++ b/source/de/readlicense_oo/docs.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: 2018-04-17 15:54+0200\n"
-"PO-Revision-Date: 2018-04-21 04:16+0000\n"
-"Last-Translator: Sophia Schröder <sophia.schroeder@outlook.com>\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
+"PO-Revision-Date: 2018-06-14 03:06+0000\n"
+"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: de\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1524284217.000000\n"
+"X-POOTLE-MTIME: 1528945601.000000\n"
#: readme.xrm
msgctxt ""
@@ -117,8 +117,8 @@ msgctxt ""
"readme.xrm\n"
"macxiOSX\n"
"readmeitem.text"
-msgid "MacOSX 10.8 (Mountain Lion) or higher"
-msgstr "MacOSX 10.8 (Mountain Lion) oder höher"
+msgid "MacOSX 10.9 (Mavericks) or higher"
+msgstr "MacOSX 10.9 (Mavericks) oder höher"
#: readme.xrm
msgctxt ""
@@ -286,7 +286,7 @@ msgctxt ""
"debianinstall5\n"
"readmeitem.text"
msgid "The following commands will install LibreOffice and the desktop integration packages (you may just copy and paste them into the terminal screen rather than trying to type them):"
-msgstr "Die folgenden Befehle installieren LibreOffice inklusive Desktop-Integration (Sie können sie einfach kopieren und in einen Terminal einfügen, anstatt sie abzutippen):"
+msgstr "Die folgenden Befehle installieren LibreOffice inklusive Desktop-Integration (Sie können sie einfach per Kopieren-und-Einfügen in einen Terminal übertragen, anstatt sie abzutippen):"
#: readme.xrm
msgctxt ""
diff --git a/source/de/sc/messages.po b/source/de/sc/messages.po
index fa5c9a48393..ff013245c1c 100644
--- a/source/de/sc/messages.po
+++ b/source/de/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: 2018-05-22 13:16+0200\n"
-"PO-Revision-Date: 2018-05-24 04:19+0000\n"
+"POT-Creation-Date: 2018-06-12 14:40+0200\n"
+"PO-Revision-Date: 2018-06-14 02:10+0000\n"
"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: de\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1527135557.000000\n"
+"X-POOTLE-MTIME: 1528942223.000000\n"
#: sc/inc/compiler.hrc:27
msgctxt "RID_FUNCTION_CATEGORIES"
@@ -1870,16 +1870,21 @@ msgid "Nested arrays are not supported."
msgstr "Verschachtelte Matrizen werden nicht unterstützt."
#: sc/inc/globstr.hrc:390
+msgctxt "STR_ERR_LONG_BAD_ARRAY_CONTENT"
+msgid "Unsupported inline array content."
+msgstr "Nicht unterstützter Inline-Matrixinhalt."
+
+#: sc/inc/globstr.hrc:391
msgctxt "STR_UNDO_TEXTTOCOLUMNS"
msgid "Text to Columns"
msgstr "Text in Spalten"
-#: sc/inc/globstr.hrc:391
+#: sc/inc/globstr.hrc:392
msgctxt "STR_DOC_UPDATED"
msgid "Your spreadsheet has been updated with changes saved by other users."
msgstr "Ihr Tabellendokument wurde mit Änderungen anderer Benutzer aktualisiert."
-#: sc/inc/globstr.hrc:392
+#: sc/inc/globstr.hrc:393
msgctxt "STR_DOC_WILLBESAVED"
msgid ""
"The spreadsheet must be saved now to activate sharing mode.\n"
@@ -1890,7 +1895,7 @@ msgstr ""
"\n"
"Möchten Sie fortfahren?"
-#: sc/inc/globstr.hrc:393
+#: sc/inc/globstr.hrc:394
msgctxt "STR_DOC_WILLNOTBESAVED"
msgid ""
"Already resolved merge conflicts will be lost and your changes to the shared spreadsheet will not be saved.\n"
@@ -1901,7 +1906,7 @@ msgstr ""
"\n"
"Möchten Sie fortfahren?"
-#: sc/inc/globstr.hrc:394
+#: sc/inc/globstr.hrc:395
msgctxt "STR_DOC_DISABLESHARED"
msgid ""
"Disabling shared mode of a spreadsheet hinders all other users of the shared spreadsheet to merge back their work.\n"
@@ -1912,7 +1917,7 @@ msgstr ""
"\n"
"Möchten Sie fortfahren?"
-#: sc/inc/globstr.hrc:395
+#: sc/inc/globstr.hrc:396
msgctxt "STR_DOC_NOLONGERSHARED"
msgid ""
"This spreadsheet is no longer in shared mode.\n"
@@ -1923,7 +1928,7 @@ msgstr ""
"\n"
"Speichern Sie Ihr Tabellendokument unter anderem Namen ab und übernehmen Sie die Änderungen in das Tabellendokument manuell."
-#: sc/inc/globstr.hrc:396
+#: sc/inc/globstr.hrc:397
msgctxt "STR_FILE_LOCKED_TRY_LATER"
msgid ""
"The shared spreadsheet file is locked due to a merge in progress by user: '%1'\n"
@@ -1934,7 +1939,7 @@ msgstr ""
"\n"
"Die Freigabe kann nicht aufgehoben werden, solange das Tabellendokument gesperrt ist. Wiederholen Sie den Vorgang später."
-#: sc/inc/globstr.hrc:397
+#: sc/inc/globstr.hrc:398
msgctxt "STR_FILE_LOCKED_SAVE_LATER"
msgid ""
"The shared spreadsheet file is locked due to a merge in progress by user: '%1'\n"
@@ -1945,147 +1950,147 @@ msgstr ""
"\n"
"Wiederholen Sie den Vorgang später, um Ihre Änderungen zu speichern."
-#: sc/inc/globstr.hrc:398
+#: sc/inc/globstr.hrc:399
msgctxt "STR_UNKNOWN_USER"
msgid "Unknown User"
msgstr "Unbekannter Benutzer"
-#: sc/inc/globstr.hrc:399
+#: sc/inc/globstr.hrc:400
msgctxt "STR_SHAPE_AUTOSHAPE"
msgid "AutoShape"
msgstr "AutoForm"
-#: sc/inc/globstr.hrc:400
+#: sc/inc/globstr.hrc:401
msgctxt "STR_SHAPE_RECTANGLE"
msgid "Rectangle"
msgstr "Rechteck"
-#: sc/inc/globstr.hrc:401
+#: sc/inc/globstr.hrc:402
msgctxt "STR_SHAPE_LINE"
msgid "Line"
msgstr "Linie"
-#: sc/inc/globstr.hrc:402
+#: sc/inc/globstr.hrc:403
msgctxt "STR_SHAPE_OVAL"
msgid "Oval"
msgstr "Ellipse"
-#: sc/inc/globstr.hrc:403
+#: sc/inc/globstr.hrc:404
msgctxt "STR_FORM_BUTTON"
msgid "Button"
msgstr "Schaltfläche"
-#: sc/inc/globstr.hrc:404
+#: sc/inc/globstr.hrc:405
msgctxt "STR_FORM_CHECKBOX"
msgid "Check Box"
msgstr "Markierfeld"
-#: sc/inc/globstr.hrc:405
+#: sc/inc/globstr.hrc:406
msgctxt "STR_FORM_OPTIONBUTTON"
msgid "Option Button"
msgstr "Optionsfeld"
-#: sc/inc/globstr.hrc:406
+#: sc/inc/globstr.hrc:407
msgctxt "STR_FORM_LABEL"
msgid "Label"
msgstr "Bezeichnung"
-#: sc/inc/globstr.hrc:407
+#: sc/inc/globstr.hrc:408
msgctxt "STR_FORM_LISTBOX"
msgid "List Box"
msgstr "Listenfeld"
-#: sc/inc/globstr.hrc:408
+#: sc/inc/globstr.hrc:409
msgctxt "STR_FORM_GROUPBOX"
msgid "Group Box"
msgstr "Gruppenfeld"
-#: sc/inc/globstr.hrc:409
+#: sc/inc/globstr.hrc:410
msgctxt "STR_FORM_DROPDOWN"
msgid "Drop Down"
msgstr "Ausklappen"
-#: sc/inc/globstr.hrc:410
+#: sc/inc/globstr.hrc:411
msgctxt "STR_FORM_SPINNER"
msgid "Spinner"
msgstr "Drehfeld"
-#: sc/inc/globstr.hrc:411
+#: sc/inc/globstr.hrc:412
msgctxt "STR_FORM_SCROLLBAR"
msgid "Scroll Bar"
msgstr "Bildlaufleiste"
-#: sc/inc/globstr.hrc:412
+#: sc/inc/globstr.hrc:413
msgctxt "STR_STYLE_FAMILY_CELL"
msgid "Cell Styles"
msgstr "Zellvorlagen"
-#: sc/inc/globstr.hrc:413
+#: sc/inc/globstr.hrc:414
msgctxt "STR_STYLE_FAMILY_PAGE"
msgid "Page Styles"
msgstr "Seitenvorlagen"
-#: sc/inc/globstr.hrc:414
+#: sc/inc/globstr.hrc:415
msgctxt "STR_ERR_DATAPILOTSOURCE"
msgid "Pivot table source data is invalid."
msgstr "Quelldaten der Pivot-Tabelle sind ungültig."
-#: sc/inc/globstr.hrc:415
+#: sc/inc/globstr.hrc:416
msgctxt "STR_OPTIONS_WARN_SEPARATORS"
msgid "Because the current formula separator settings conflict with the locale, the formula separators have been reset to their default values."
msgstr "Da die aktuellen Formeltrenneinstellungen mit dem Gebietsschema in Konflikt stehen, wurden die Einstellungen auf ihre Standardwerte zurückgesetzt."
-#: sc/inc/globstr.hrc:416
+#: sc/inc/globstr.hrc:417
msgctxt "STR_UNDO_INSERT_CURRENT_DATE"
msgid "Insert Current Date"
msgstr "Aktuelles Datum einfügen"
-#: sc/inc/globstr.hrc:417
+#: sc/inc/globstr.hrc:418
msgctxt "STR_UNDO_INSERT_CURRENT_TIME"
msgid "Insert Current Time"
msgstr "Aktuelle Zeit einfügen"
-#: sc/inc/globstr.hrc:418
+#: sc/inc/globstr.hrc:419
msgctxt "STR_MANAGE_NAMES"
msgid "Manage Names..."
msgstr "Namen verwalten..."
-#: sc/inc/globstr.hrc:419
+#: sc/inc/globstr.hrc:420
msgctxt "STR_HEADER_NAME"
msgid "Name"
msgstr "Name"
-#: sc/inc/globstr.hrc:420
+#: sc/inc/globstr.hrc:421
msgctxt "STR_HEADER_RANGE_OR_EXPR"
msgid "Range or formula expression"
msgstr "Bereich oder Formelausdruck"
-#: sc/inc/globstr.hrc:421
+#: sc/inc/globstr.hrc:422
msgctxt "STR_HEADER_SCOPE"
msgid "Scope"
msgstr "Inhalt"
-#: sc/inc/globstr.hrc:422
+#: sc/inc/globstr.hrc:423
msgctxt "STR_MULTI_SELECT"
msgid "(multiple)"
msgstr "(mehrere)"
-#: sc/inc/globstr.hrc:423
+#: sc/inc/globstr.hrc:424
msgctxt "STR_GLOBAL_SCOPE"
msgid "Document (Global)"
msgstr "Dokument (global)"
-#: sc/inc/globstr.hrc:424
+#: sc/inc/globstr.hrc:425
msgctxt "STR_ERR_NAME_EXISTS"
msgid "Invalid name. Already in use for the selected scope."
msgstr "Ungültiger Name. Er wird im ausgewählten Bereich bereits verwendet."
-#: sc/inc/globstr.hrc:425
+#: sc/inc/globstr.hrc:426
msgctxt "STR_ERR_NAME_INVALID"
msgid "Invalid name. Only use letters, numbers and underscore."
msgstr "Ungültiger Name. Verwenden Sie nur Buchstaben, Zahlen und Unterstriche."
-#: sc/inc/globstr.hrc:426
+#: sc/inc/globstr.hrc:427
msgctxt "STR_UNSAVED_EXT_REF"
msgid ""
"This Document contains external references to unsaved documents.\n"
@@ -2096,217 +2101,217 @@ msgstr ""
"\n"
"Möchten Sie fortfahren?"
-#: sc/inc/globstr.hrc:427
+#: sc/inc/globstr.hrc:428
msgctxt "STR_CLOSE_WITH_UNSAVED_REFS"
msgid "This Document is referenced by another document and not yet saved. Closing it without saving will result in data loss."
msgstr "Auf dieses Dokument wird von einem anderen noch nicht gespeicherten Dokument verwiesen. Schließen ohne Speichern wird zu Datenverlust führen."
-#: sc/inc/globstr.hrc:428
+#: sc/inc/globstr.hrc:429
msgctxt "STR_HEADER_RANGE"
msgid "Range"
msgstr "Bereich"
-#: sc/inc/globstr.hrc:429
+#: sc/inc/globstr.hrc:430
msgctxt "STR_HEADER_COND"
msgid "First Condition"
msgstr "Erste Bedingung"
-#: sc/inc/globstr.hrc:430
+#: sc/inc/globstr.hrc:431
msgctxt "STR_COND_CONDITION"
msgid "Cell value is"
msgstr "Zellwert ist"
-#: sc/inc/globstr.hrc:431
+#: sc/inc/globstr.hrc:432
msgctxt "STR_COND_COLORSCALE"
msgid "ColorScale"
msgstr "Farbskala"
-#: sc/inc/globstr.hrc:432
+#: sc/inc/globstr.hrc:433
msgctxt "STR_COND_DATABAR"
msgid "DataBar"
msgstr "Datenbalken"
-#: sc/inc/globstr.hrc:433
+#: sc/inc/globstr.hrc:434
msgctxt "STR_COND_ICONSET"
msgid "IconSet"
msgstr "Symbolstil"
-#: sc/inc/globstr.hrc:434
+#: sc/inc/globstr.hrc:435
msgctxt "STR_COND_BETWEEN"
msgid "between"
msgstr "zwischen"
-#: sc/inc/globstr.hrc:435
+#: sc/inc/globstr.hrc:436
msgctxt "STR_COND_NOTBETWEEN"
msgid "not between"
msgstr "nicht zwischen"
-#: sc/inc/globstr.hrc:436
+#: sc/inc/globstr.hrc:437
msgctxt "STR_COND_UNIQUE"
msgid "unique"
msgstr "einmalig"
-#: sc/inc/globstr.hrc:437
+#: sc/inc/globstr.hrc:438
msgctxt "STR_COND_DUPLICATE"
msgid "duplicate"
msgstr "Duplikat"
-#: sc/inc/globstr.hrc:438
+#: sc/inc/globstr.hrc:439
msgctxt "STR_COND_FORMULA"
msgid "Formula is"
msgstr "Formel ist"
-#: sc/inc/globstr.hrc:439
+#: sc/inc/globstr.hrc:440
msgctxt "STR_COND_TOP10"
msgid "Top Elements"
msgstr "Höchste Elemente"
-#: sc/inc/globstr.hrc:440
+#: sc/inc/globstr.hrc:441
msgctxt "STR_COND_BOTTOM10"
msgid "Bottom Elements"
msgstr "Niedrigste Elemente"
-#: sc/inc/globstr.hrc:441
+#: sc/inc/globstr.hrc:442
msgctxt "STR_COND_TOP_PERCENT"
msgid "Top Percent"
msgstr "Höchster Prozentsatz"
-#: sc/inc/globstr.hrc:442
+#: sc/inc/globstr.hrc:443
msgctxt "STR_COND_DATE"
msgid "Date is"
msgstr "Datum ist"
-#: sc/inc/globstr.hrc:443
+#: sc/inc/globstr.hrc:444
msgctxt "STR_COND_BOTTOM_PERCENT"
msgid "Bottom Percent"
msgstr "Niedrigster Prozentsatz"
-#: sc/inc/globstr.hrc:444
+#: sc/inc/globstr.hrc:445
msgctxt "STR_COND_ABOVE_AVERAGE"
msgid "Above Average"
msgstr "Überdurchschnittlich"
-#: sc/inc/globstr.hrc:445
+#: sc/inc/globstr.hrc:446
msgctxt "STR_COND_BELOW_AVERAGE"
msgid "Below Average"
msgstr "Unterdurchschnittlich"
-#: sc/inc/globstr.hrc:446
+#: sc/inc/globstr.hrc:447
msgctxt "STR_COND_ABOVE_EQUAL_AVERAGE"
msgid "Above or equal Average"
msgstr "Mehr als oder gleich wie der Durchschnitt"
-#: sc/inc/globstr.hrc:447
+#: sc/inc/globstr.hrc:448
msgctxt "STR_COND_BELOW_EQUAL_AVERAGE"
msgid "Below or equal Average"
msgstr "Weniger als oder gleich wie der Durchschnitt"
-#: sc/inc/globstr.hrc:448
+#: sc/inc/globstr.hrc:449
msgctxt "STR_COND_ERROR"
msgid "an Error code"
msgstr "Ein Fehlercode"
-#: sc/inc/globstr.hrc:449
+#: sc/inc/globstr.hrc:450
msgctxt "STR_COND_NOERROR"
msgid "not an Error code"
msgstr "Kein Fehlercode"
-#: sc/inc/globstr.hrc:450
+#: sc/inc/globstr.hrc:451
msgctxt "STR_COND_BEGINS_WITH"
msgid "Begins with"
msgstr "Beginnt mit"
-#: sc/inc/globstr.hrc:451
+#: sc/inc/globstr.hrc:452
msgctxt "STR_COND_ENDS_WITH"
msgid "Ends with"
msgstr "Endet mit"
-#: sc/inc/globstr.hrc:452
+#: sc/inc/globstr.hrc:453
msgctxt "STR_COND_CONTAINS"
msgid "Contains"
msgstr "Enthält"
-#: sc/inc/globstr.hrc:453
+#: sc/inc/globstr.hrc:454
msgctxt "STR_COND_NOT_CONTAINS"
msgid "Not Contains"
msgstr "Enthält nicht"
-#: sc/inc/globstr.hrc:454
+#: sc/inc/globstr.hrc:455
msgctxt "STR_COND_TODAY"
msgid "today"
msgstr "heute"
-#: sc/inc/globstr.hrc:455
+#: sc/inc/globstr.hrc:456
msgctxt "STR_COND_YESTERDAY"
msgid "yesterday"
msgstr "gestern"
-#: sc/inc/globstr.hrc:456
+#: sc/inc/globstr.hrc:457
msgctxt "STR_COND_TOMORROW"
msgid "tomorrow"
msgstr "morgen"
-#: sc/inc/globstr.hrc:457
+#: sc/inc/globstr.hrc:458
msgctxt "STR_COND_LAST7DAYS"
msgid "in the last 7 days"
msgstr "in den letzten 7 Tagen"
-#: sc/inc/globstr.hrc:458
+#: sc/inc/globstr.hrc:459
msgctxt "STR_COND_THISWEEK"
msgid "this week"
msgstr "Diese Woche"
-#: sc/inc/globstr.hrc:459
+#: sc/inc/globstr.hrc:460
msgctxt "STR_COND_LASTWEEK"
msgid "last week"
msgstr "letzte Woche"
-#: sc/inc/globstr.hrc:460
+#: sc/inc/globstr.hrc:461
msgctxt "STR_COND_NEXTWEEK"
msgid "next week"
msgstr "nächste Woche"
-#: sc/inc/globstr.hrc:461
+#: sc/inc/globstr.hrc:462
msgctxt "STR_COND_THISMONTH"
msgid "this month"
msgstr "diesen Monat"
-#: sc/inc/globstr.hrc:462
+#: sc/inc/globstr.hrc:463
msgctxt "STR_COND_LASTMONTH"
msgid "last month"
msgstr "letzten Monat"
-#: sc/inc/globstr.hrc:463
+#: sc/inc/globstr.hrc:464
msgctxt "STR_COND_NEXTMONTH"
msgid "next month"
msgstr "nächsten Monat"
-#: sc/inc/globstr.hrc:464
+#: sc/inc/globstr.hrc:465
msgctxt "STR_COND_THISYEAR"
msgid "this year"
msgstr "dieses Jahr"
-#: sc/inc/globstr.hrc:465
+#: sc/inc/globstr.hrc:466
msgctxt "STR_COND_LASTYEAR"
msgid "last year"
msgstr "letztes Jahr"
-#: sc/inc/globstr.hrc:466
+#: sc/inc/globstr.hrc:467
msgctxt "STR_COND_NEXTYEAR"
msgid "next year"
msgstr "nächstes Jahr"
-#: sc/inc/globstr.hrc:467
+#: sc/inc/globstr.hrc:468
msgctxt "STR_COND_AND"
msgid "and"
msgstr "und"
-#: sc/inc/globstr.hrc:468
+#: sc/inc/globstr.hrc:469
msgctxt "STR_ERR_CONDFORMAT_PROTECTED"
msgid "Conditional Formats can not be created, deleted or changed in protected sheets."
msgstr "Bedingte Formatierungen können in geschützten Tabellen nicht erstellt, gelöscht oder verändert werden."
-#: sc/inc/globstr.hrc:469
+#: sc/inc/globstr.hrc:470
msgctxt "STR_EDIT_EXISTING_COND_FORMATS"
msgid ""
"The selected cell already contains conditional formatting. You can either edit the existing conditional format or you define a new overlapping conditional format.\n"
@@ -2317,7 +2322,7 @@ msgstr ""
"\n"
"Möchten Sie das existierende bedingte Format bearbeiten?"
-#: sc/inc/globstr.hrc:470
+#: sc/inc/globstr.hrc:471
msgctxt "STR_QUERY_FORMULA_RECALC_ONLOAD_ODS"
msgid ""
"This document was last saved by an application other than %PRODUCTNAME. Some formula cells may produce different results when recalculated.\n"
@@ -2328,7 +2333,7 @@ msgstr ""
"\n"
"Möchten Sie alle Formelzellen in diesem Dokument jetzt neu berechnen?"
-#: sc/inc/globstr.hrc:471
+#: sc/inc/globstr.hrc:472
msgctxt "STR_QUERY_FORMULA_RECALC_ONLOAD_XLS"
msgid ""
"This document was last saved by Excel. Some formula cells may produce different results when recalculated.\n"
@@ -2339,77 +2344,77 @@ msgstr ""
"\n"
"Möchten Sie alle Formelzellen in diesem Dokument jetzt neu berechnen?"
-#: sc/inc/globstr.hrc:472
+#: sc/inc/globstr.hrc:473
msgctxt "STR_NO_INSERT_DELETE_OVER_PIVOT_TABLE"
msgid "You cannot insert or delete cells when the affected range intersects with pivot table."
msgstr "Sie können keine Zellen einfügen oder löschen, wenn der betroffene Bereich Zellen einer Pivot-Tabelle enthält."
-#: sc/inc/globstr.hrc:473
+#: sc/inc/globstr.hrc:474
msgctxt "STR_DPFIELD_GROUP_BY_SECONDS"
msgid "Seconds"
msgstr "Sekunden"
-#: sc/inc/globstr.hrc:474
+#: sc/inc/globstr.hrc:475
msgctxt "STR_DPFIELD_GROUP_BY_MINUTES"
msgid "Minutes"
msgstr "Minuten"
-#: sc/inc/globstr.hrc:475
+#: sc/inc/globstr.hrc:476
msgctxt "STR_DPFIELD_GROUP_BY_HOURS"
msgid "Hours"
msgstr "Stunden"
-#: sc/inc/globstr.hrc:476
+#: sc/inc/globstr.hrc:477
msgctxt "STR_DPFIELD_GROUP_BY_DAYS"
msgid "Days"
msgstr "Tage"
-#: sc/inc/globstr.hrc:477
+#: sc/inc/globstr.hrc:478
msgctxt "STR_DPFIELD_GROUP_BY_MONTHS"
msgid "Months"
msgstr "Monate"
-#: sc/inc/globstr.hrc:478
+#: sc/inc/globstr.hrc:479
msgctxt "STR_DPFIELD_GROUP_BY_QUARTERS"
msgid "Quarters"
msgstr "Quartale"
-#: sc/inc/globstr.hrc:479
+#: sc/inc/globstr.hrc:480
msgctxt "STR_DPFIELD_GROUP_BY_YEARS"
msgid "Years"
msgstr "Jahre"
-#: sc/inc/globstr.hrc:480
+#: sc/inc/globstr.hrc:481
msgctxt "STR_INVALIDVAL"
msgid "Invalid target value."
msgstr "Unzulässiger Zielwert."
-#: sc/inc/globstr.hrc:481
+#: sc/inc/globstr.hrc:482
msgctxt "STR_INVALIDVAR"
msgid "Undefined name for variable cell."
msgstr "Undefinierter Name als variable Zelle."
-#: sc/inc/globstr.hrc:482
+#: sc/inc/globstr.hrc:483
msgctxt "STR_INVALIDFORM"
msgid "Undefined name as formula cell."
msgstr "Undefinierter Name als Formelzelle."
-#: sc/inc/globstr.hrc:483
+#: sc/inc/globstr.hrc:484
msgctxt "STR_NOFORMULA"
msgid "Formula cell must contain a formula."
msgstr "Formelzelle muss eine Formel enthalten."
-#: sc/inc/globstr.hrc:484
+#: sc/inc/globstr.hrc:485
msgctxt "STR_INVALIDINPUT"
msgid "Invalid input."
msgstr "Ungültige Eingabe."
-#: sc/inc/globstr.hrc:485
+#: sc/inc/globstr.hrc:486
msgctxt "STR_INVALIDCONDITION"
msgid "Invalid condition."
msgstr "Ungültige Bedingung."
-#: sc/inc/globstr.hrc:486
+#: sc/inc/globstr.hrc:487
msgctxt "STR_QUERYREMOVE"
msgid ""
"Should the entry\n"
@@ -2420,133 +2425,133 @@ msgstr ""
"#\n"
"gelöscht werden?"
-#: sc/inc/globstr.hrc:487
+#: sc/inc/globstr.hrc:488
msgctxt "STR_COPYLIST"
msgid "Copy List"
msgstr "Liste kopieren"
-#: sc/inc/globstr.hrc:488
+#: sc/inc/globstr.hrc:489
msgctxt "STR_COPYFROM"
msgid "List from"
msgstr "Liste aus"
-#: sc/inc/globstr.hrc:489
+#: sc/inc/globstr.hrc:490
msgctxt "STR_COPYERR"
msgid "Cells without text have been ignored."
msgstr "Zellen ohne Text wurden ignoriert."
-#: sc/inc/globstr.hrc:490
+#: sc/inc/globstr.hrc:491
#, c-format
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%s-click to follow hyperlink:"
msgstr "%s+Klick, um dem Hyperlink zu folgen:"
-#: sc/inc/globstr.hrc:491
+#: sc/inc/globstr.hrc:492
msgctxt "STR_CLICKHYPERLINK"
msgid "click to open hyperlink:"
msgstr "Klick, um Hyperlink zu öffnen:"
-#: sc/inc/globstr.hrc:492
+#: sc/inc/globstr.hrc:493
msgctxt "STR_PRINT_PREVIEW_NODATA"
msgid "No Data"
msgstr "Keine Daten"
-#: sc/inc/globstr.hrc:493
+#: sc/inc/globstr.hrc:494
msgctxt "STR_PRINT_PREVIEW_EMPTY_RANGE"
msgid "Print Range Empty"
msgstr "Leerer Druckbereich"
-#: sc/inc/globstr.hrc:494
+#: sc/inc/globstr.hrc:495
msgctxt "STR_UNDO_CONDFORMAT"
msgid "Conditional Format"
msgstr "Bedingte Formatierung"
-#: sc/inc/globstr.hrc:495
+#: sc/inc/globstr.hrc:496
msgctxt "STR_UNDO_CONDFORMAT_LIST"
msgid "Conditional Formats"
msgstr "Bedingte Formatierung"
-#: sc/inc/globstr.hrc:496
+#: sc/inc/globstr.hrc:497
msgctxt "STR_UNDO_FORMULA_TO_VALUE"
msgid "Convert Formula To Value"
msgstr "Formel in Wert umwandeln"
-#: sc/inc/globstr.hrc:497
+#: sc/inc/globstr.hrc:498
msgctxt "STR_UNQUOTED_STRING"
msgid "Strings without quotes are interpreted as column/row labels."
msgstr "Zeichenketten ohne Anführungszeichen werden als Spalten-/Zeilenbeschriftungen interpretiert."
-#: sc/inc/globstr.hrc:498
+#: sc/inc/globstr.hrc:499
msgctxt "STR_ENTER_VALUE"
msgid "Enter a value!"
msgstr "Geben Sie einen Wert ein!"
-#: sc/inc/globstr.hrc:499
+#: sc/inc/globstr.hrc:500
msgctxt "STR_TABLE_COUNT"
msgid "Sheet %1 of %2"
msgstr "Tabelle %1 von %2"
-#: sc/inc/globstr.hrc:500
+#: sc/inc/globstr.hrc:501
msgctxt "STR_FUNCTIONS_FOUND"
msgid "%1 and %2 more"
msgstr "%1 und %2 mehr"
-#: sc/inc/globstr.hrc:501
+#: sc/inc/globstr.hrc:502
msgctxt "STR_GENERAL"
msgid "General"
msgstr "Allgemein"
-#: sc/inc/globstr.hrc:502
+#: sc/inc/globstr.hrc:503
msgctxt "STR_NUMBER"
msgid "Number"
msgstr "Dezimalzahl"
-#: sc/inc/globstr.hrc:503
+#: sc/inc/globstr.hrc:504
msgctxt "STR_PERCENT"
msgid "Percent"
msgstr "Prozent"
-#: sc/inc/globstr.hrc:504
+#: sc/inc/globstr.hrc:505
msgctxt "STR_CURRENCY"
msgid "Currency"
msgstr "Währung"
-#: sc/inc/globstr.hrc:505
+#: sc/inc/globstr.hrc:506
msgctxt "STR_DATE"
msgid "Date"
msgstr "Datum"
-#: sc/inc/globstr.hrc:506
+#: sc/inc/globstr.hrc:507
msgctxt "STR_TIME"
msgid "Time"
msgstr "Uhrzeit"
-#: sc/inc/globstr.hrc:507
+#: sc/inc/globstr.hrc:508
msgctxt "STR_SCIENTIFIC"
msgid "Scientific"
msgstr "Wissenschaftlich"
-#: sc/inc/globstr.hrc:508
+#: sc/inc/globstr.hrc:509
msgctxt "STR_FRACTION"
msgid "Fraction"
msgstr "Bruch"
-#: sc/inc/globstr.hrc:509
+#: sc/inc/globstr.hrc:510
msgctxt "STR_BOOLEAN_VALUE"
msgid "Boolean Value"
msgstr "Wahrheitswert"
-#: sc/inc/globstr.hrc:510
+#: sc/inc/globstr.hrc:511
msgctxt "STR_TEXT"
msgid "Text"
msgstr "Text"
-#: sc/inc/globstr.hrc:511
+#: sc/inc/globstr.hrc:512
msgctxt "STR_QUERY_PIVOTTABLE_DELTAB"
msgid "The selected sheet(s) contain source data of related pivot tables that will be lost. Are you sure you want to delete the selected sheet(s)?"
msgstr "Die ausgewählte(n) Tabelle(n) enthält/enthalten Quelldaten der zugehörigen Pivot-Tabellen, welche verloren gehen. Sind Sie sicher, dass Sie die ausgewählte(n) Tabelle(n) löschen möchten?"
-#: sc/inc/globstr.hrc:512
+#: sc/inc/globstr.hrc:513
msgctxt "STR_ERR_NAME_INVALID_CELL_REF"
msgid "Invalid name. Reference to a cell, or a range of cells not allowed."
msgstr "Ungültiger Name. Bezüge zu einer Zelle oder einem Zellbereich sind nicht erlaubt."
@@ -10488,8 +10493,8 @@ msgstr "Modus"
#: sc/inc/scfuncs.hrc:3010
msgctxt "SC_OPCODE_T_TEST"
-msgid "Mode specifies the number of distribution tails to return. 1= one-tailed, 2 = two-tailed distribution"
-msgstr "Modus legt die Anzahl der zu berechnenden Verteilungsseiten fest. Modus = 1 berechnet die einseitige, Modus = 2 die zweiseitige Verteilung"
+msgid "Mode specifies the number of distribution tails to return. 1 = one-tailed, 2 = two-tailed distribution"
+msgstr "Modus legt die Anzahl der zu berechnenden Verteilungsseiten fest. Modus = 1 berechnet die einseitige, Modus = 2 die zweiseitige Verteilung."
#: sc/inc/scfuncs.hrc:3011
msgctxt "SC_OPCODE_T_TEST"
@@ -10533,8 +10538,8 @@ msgstr "Modus"
#: sc/inc/scfuncs.hrc:3024
msgctxt "SC_OPCODE_T_TEST_MS"
-msgid "Mode specifies the number of distribution tails to return. 1= one-tailed, 2 = two-tailed distribution"
-msgstr "Modus legt die Anzahl der zu berechnenden Verteilungsseiten fest. Modus = 1 berechnet die einseitige, Modus = 2 die zweiseitige Verteilung"
+msgid "Mode specifies the number of distribution tails to return. 1 = one-tailed, 2 = two-tailed distribution"
+msgstr "Modus legt die Anzahl der zu berechnenden Verteilungsseiten fest. Modus = 1 berechnet die einseitige, Modus = 2 die zweiseitige Verteilung."
#: sc/inc/scfuncs.hrc:3025
msgctxt "SC_OPCODE_T_TEST_MS"
@@ -18020,22 +18025,22 @@ msgctxt "mergecellsdialog|MergeCellsDialog"
msgid "Merge Cells"
msgstr "Zellen verbinden"
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:81
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:84
msgctxt "mergecellsdialog|label"
msgid "Some cells are not empty."
msgstr "Einige Zellen sind nicht leer."
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:96
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:99
msgctxt "mergecellsdialog|move-cells-radio"
msgid "Move the contents of the hidden cells into the first cell"
msgstr "Inhalte der versteckten Zellen in die erste Zelle verschieben"
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:112
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:115
msgctxt "mergecellsdialog|empty-cells-radio"
msgid "Empty the contents of the hidden cells"
msgstr "Inhalte der versteckten Zellen löschen"
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:128
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:131
msgctxt "mergecellsdialog|keep-content-radio"
msgid "Keep the contents of the hidden cells"
msgstr "Inhalte der versteckten Zellen erhalten"
diff --git a/source/de/sd/messages.po b/source/de/sd/messages.po
index 4bb24bc2c51..dd788c2cba4 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2018-05-24 04:23+0000\n"
"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,170 +13,170 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1527135789.000000\n"
-#: sd/inc/DocumentRenderer.hrc:29
+#: sd/inc/DocumentRenderer.hrc:27
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Slides"
msgstr "Folien"
-#: sd/inc/DocumentRenderer.hrc:30
+#: sd/inc/DocumentRenderer.hrc:28
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Handouts"
msgstr "Handzettel"
-#: sd/inc/DocumentRenderer.hrc:31
+#: sd/inc/DocumentRenderer.hrc:29
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Notes"
msgstr "Notizen"
-#: sd/inc/DocumentRenderer.hrc:32
+#: sd/inc/DocumentRenderer.hrc:30
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Outline"
msgstr "Gliederung"
-#: sd/inc/DocumentRenderer.hrc:37
+#: sd/inc/DocumentRenderer.hrc:35
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "According to layout"
msgstr "Je nach Anordnung"
-#: sd/inc/DocumentRenderer.hrc:38
+#: sd/inc/DocumentRenderer.hrc:36
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "1"
msgstr "1"
-#: sd/inc/DocumentRenderer.hrc:39
+#: sd/inc/DocumentRenderer.hrc:37
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "2"
msgstr "2"
-#: sd/inc/DocumentRenderer.hrc:40
+#: sd/inc/DocumentRenderer.hrc:38
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "3"
msgstr "3"
-#: sd/inc/DocumentRenderer.hrc:41
+#: sd/inc/DocumentRenderer.hrc:39
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "4"
msgstr "4"
-#: sd/inc/DocumentRenderer.hrc:42
+#: sd/inc/DocumentRenderer.hrc:40
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "6"
msgstr "6"
-#: sd/inc/DocumentRenderer.hrc:43
+#: sd/inc/DocumentRenderer.hrc:41
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "9"
msgstr "9"
-#: sd/inc/DocumentRenderer.hrc:48
+#: sd/inc/DocumentRenderer.hrc:46
msgctxt "STR_IMPRESS_PRINT_UI_ORDER_CHOICES"
msgid "Left to right, then down"
msgstr "Von links nach rechts, dann nach unten"
-#: sd/inc/DocumentRenderer.hrc:49
+#: sd/inc/DocumentRenderer.hrc:47
msgctxt "STR_IMPRESS_PRINT_UI_ORDER_CHOICES"
msgid "Top to bottom, then right"
msgstr "Von oben nach unten, dann nach rechts"
-#: sd/inc/DocumentRenderer.hrc:54
+#: sd/inc/DocumentRenderer.hrc:52
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Original colors"
msgstr "Originalfarben"
-#: sd/inc/DocumentRenderer.hrc:55
+#: sd/inc/DocumentRenderer.hrc:53
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Grayscale"
msgstr "Graustufen"
-#: sd/inc/DocumentRenderer.hrc:56
+#: sd/inc/DocumentRenderer.hrc:54
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Black & white"
msgstr "Schwarzweiß"
-#: sd/inc/DocumentRenderer.hrc:61
+#: sd/inc/DocumentRenderer.hrc:59
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Original size"
msgstr "Originalgröße"
-#: sd/inc/DocumentRenderer.hrc:62
+#: sd/inc/DocumentRenderer.hrc:60
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Fit to printable page"
msgstr "In druckbaren Bereich einpassen"
-#: sd/inc/DocumentRenderer.hrc:63
+#: sd/inc/DocumentRenderer.hrc:61
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Distribute on multiple sheets of paper"
msgstr "Auf mehrere Druckseiten verteilen"
-#: sd/inc/DocumentRenderer.hrc:64
+#: sd/inc/DocumentRenderer.hrc:62
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Tile sheet of paper with repeated slides"
msgstr "Druckseite mit wiederholten Folien füllen"
-#: sd/inc/DocumentRenderer.hrc:69
+#: sd/inc/DocumentRenderer.hrc:67
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Original size"
msgstr "Originalgröße"
-#: sd/inc/DocumentRenderer.hrc:70
+#: sd/inc/DocumentRenderer.hrc:68
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Fit to printable page"
msgstr "In druckbaren Bereich einpassen"
-#: sd/inc/DocumentRenderer.hrc:71
+#: sd/inc/DocumentRenderer.hrc:69
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Distribute on multiple sheets of paper"
msgstr "Auf mehrere Druckseiten verteilen"
-#: sd/inc/DocumentRenderer.hrc:72
+#: sd/inc/DocumentRenderer.hrc:70
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Tile sheet of paper with repeated pages"
msgstr "Druckseite mit wiederholten Seiten füllen"
-#: sd/inc/DocumentRenderer.hrc:77
+#: sd/inc/DocumentRenderer.hrc:75
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "All pages"
msgstr "Alle Seiten"
-#: sd/inc/DocumentRenderer.hrc:78
+#: sd/inc/DocumentRenderer.hrc:76
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "Front sides / right pages"
msgstr "Vorderseiten / rechte Seiten"
-#: sd/inc/DocumentRenderer.hrc:79
+#: sd/inc/DocumentRenderer.hrc:77
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "Back sides / left pages"
msgstr "Rückseiten / linke Seiten"
-#: sd/inc/DocumentRenderer.hrc:84
+#: sd/inc/DocumentRenderer.hrc:82
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~All slides"
msgstr "~Alle Folien"
-#: sd/inc/DocumentRenderer.hrc:85
+#: sd/inc/DocumentRenderer.hrc:83
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~Slides"
msgstr "~Folien"
-#: sd/inc/DocumentRenderer.hrc:86
+#: sd/inc/DocumentRenderer.hrc:84
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Se~lection"
msgstr "Aus~wahl"
-#: sd/inc/DocumentRenderer.hrc:91
+#: sd/inc/DocumentRenderer.hrc:89
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~All pages"
msgstr "A~lle Folien"
-#: sd/inc/DocumentRenderer.hrc:92
+#: sd/inc/DocumentRenderer.hrc:90
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Pa~ges"
msgstr "~Seiten"
-#: sd/inc/DocumentRenderer.hrc:93
+#: sd/inc/DocumentRenderer.hrc:91
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Se~lection"
msgstr "Aus~wahl"
diff --git a/source/de/starmath/messages.po b/source/de/starmath/messages.po
index 744a09c405a..2c70f066ca7 100644
--- a/source/de/starmath/messages.po
+++ b/source/de/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: 2018-05-08 15:10+0200\n"
-"PO-Revision-Date: 2017-12-11 09:33+0000\n"
+"PO-Revision-Date: 2018-06-02 04:07+0000\n"
"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: de\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1512984795.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1527912444.000000\n"
#: starmath/inc/smmod.hrc:16
msgctxt "RID_UI_SYMBOLSET_NAMES"
@@ -1944,7 +1944,7 @@ msgstr "Horizontal"
#: starmath/uiconfig/smath/ui/catalogdialog.ui:8
msgctxt "catalogdialog|CatalogDialog"
msgid "Symbols"
-msgstr "Katalog"
+msgstr "Symbole"
#: starmath/uiconfig/smath/ui/catalogdialog.ui:24
msgctxt "catalogdialog|edit"
diff --git a/source/de/svx/messages.po b/source/de/svx/messages.po
index 0d93737de14..6460117b10b 100644
--- a/source/de/svx/messages.po
+++ b/source/de/svx/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: 2018-05-16 16:53+0200\n"
-"PO-Revision-Date: 2018-05-24 04:29+0000\n"
-"Last-Translator: Sophia Schröder <sophia.schroeder@outlook.com>\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
+"PO-Revision-Date: 2018-06-14 02:11+0000\n"
+"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: de\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1527136199.000000\n"
+"X-POOTLE-MTIME: 1528942296.000000\n"
#: svx/inc/fieldunit.hrc:30
msgctxt "RID_SVXSTR_FIELDUNIT_TABLE"
@@ -5179,8 +5179,8 @@ msgstr "Sie können auch relevante Teile Ihres Benutzerprofils dem Fehlerbericht
#: svx/uiconfig/ui/safemodedialog.ui:432
msgctxt "safemodedialog|btn_create_zip"
-msgid "Create Zip Archive from User Profile"
-msgstr "Zip-Archiv aus Benutzerprofil erstellen"
+msgid "Archive User Profile"
+msgstr "Benutzerprofil archivieren"
#: svx/uiconfig/ui/safemodedialog.ui:445
msgctxt "safemodedialog|linkbutton_profile"
@@ -8769,9 +8769,9 @@ msgid "Red"
msgstr "Rot"
#: include/svx/strings.hrc:565
-msgctxt "RID_SVXSTR_COLOR_VIOLET"
-msgid "Violet"
-msgstr "Lila"
+msgctxt "RID_SVXSTR_COLOR_MAGENTA"
+msgid "Magenta"
+msgstr "Magenta"
#: include/svx/strings.hrc:566
msgctxt "RID_SVXSTR_COLOR_PURPLE"
@@ -8835,9 +8835,9 @@ msgid "Light Red"
msgstr "Hellrot"
#: include/svx/strings.hrc:579
-msgctxt "RID_SVXSTR_COLOR_LIGHTVIOLET"
-msgid "Light Violet"
-msgstr "Hellviolett"
+msgctxt "RID_SVXSTR_COLOR_LIGHTMAGENTA"
+msgid "Light Magenta"
+msgstr "Hellmagenta"
#: include/svx/strings.hrc:580
msgctxt "RID_SVXSTR_COLOR_LIGHTPURPLE"
@@ -8901,9 +8901,9 @@ msgid "Dark Red"
msgstr "Dunkelrot"
#: include/svx/strings.hrc:593
-msgctxt "RID_SVXSTR_COLOR_DARKVIOLET1"
-msgid "Dark Violet"
-msgstr "Dunkellila"
+msgctxt "RID_SVXSTR_COLOR_DARKMAGENTA"
+msgid "Dark Magenta"
+msgstr "Dunkelmagenta"
#: include/svx/strings.hrc:594
msgctxt "RID_SVXSTR_COLOR_DARKPURPLE"
@@ -8937,55 +8937,55 @@ msgstr "Dunkellimette"
#. Elements of the Tonal color palette
#: include/svx/strings.hrc:601
+msgctxt "RID_SVXSTR_COLOR_VIOLET"
+msgid "Violet"
+msgstr "Lila"
+
+#: include/svx/strings.hrc:602
msgctxt "RID_SVXSTR_COLOR_VIOLET_OUG"
msgid "Violet (Out of Gamut)"
msgstr "Violett (außerhalb des Gamuts)"
-#: include/svx/strings.hrc:602
+#: include/svx/strings.hrc:603
msgctxt "RID_SVXSTR_COLOR_BLUE_OUG"
msgid "Blue (Out of Gamut)"
msgstr "Blau (außerhalb des Gamuts)"
-#: include/svx/strings.hrc:603
+#: include/svx/strings.hrc:604
msgctxt "RID_SVXSTR_COLOR_AZURE_OUG"
msgid "Azure (Out of Gamut)"
msgstr "Azurblau (außerhalb des Gamuts)"
-#: include/svx/strings.hrc:604
+#: include/svx/strings.hrc:605
msgctxt "RID_SVXSTR_COLOR_SPRINGGREEN_OUG"
msgid "Spring Green (Out of Gamut)"
msgstr "Frühlingsgrün (außerhalb des Gamuts)"
-#: include/svx/strings.hrc:605
+#: include/svx/strings.hrc:606
msgctxt "RID_SVXSTR_COLOR_GREEN_OUG"
msgid "Green (Out of Gamut)"
msgstr "Grün (außerhalb des Gamuts)"
-#: include/svx/strings.hrc:606
+#: include/svx/strings.hrc:607
msgctxt "RID_SVXSTR_COLOR_CHARTREUSEGREEN_OUG"
msgid "Chartreuse Green (Out of Gamut)"
msgstr "Chartreusegrün (außerhalb des Gamuts)"
-#: include/svx/strings.hrc:607
+#: include/svx/strings.hrc:608
msgctxt "RID_SVXSTR_COLOR_ORANGE_OUG"
msgid "Orange (Out of Gamut)"
msgstr "Orange (außerhalb des Gamuts)"
-#: include/svx/strings.hrc:608
+#: include/svx/strings.hrc:609
msgctxt "RID_SVXSTR_COLOR_RED_OUG"
msgid "Red (Out of Gamut)"
msgstr "Rot (außerhalb des Gamuts)"
-#: include/svx/strings.hrc:609
+#: include/svx/strings.hrc:610
msgctxt "RID_SVXSTR_COLOR_ROSE_OUG"
msgid "Rose (Out of Gamut)"
msgstr "Rosa (außerhalb des Gamuts)"
-#: include/svx/strings.hrc:610
-msgctxt "RID_SVXSTR_COLOR_MAGENTA"
-msgid "Magenta"
-msgstr "Magenta"
-
#: include/svx/strings.hrc:611
msgctxt "RID_SVXSTR_COLOR_AZURE"
msgid "Azure"
@@ -9608,37 +9608,37 @@ msgstr "Grüner Farbverlauf"
#: include/svx/strings.hrc:746
msgctxt "RID_SVXSTR_GRDT70"
msgid "Pastel Bouquet"
-msgstr ""
+msgstr "Pastellbouquet"
#: include/svx/strings.hrc:747
msgctxt "RID_SVXSTR_GRDT71"
msgid "Pastel Dream"
-msgstr ""
+msgstr "Pastelltraum"
#: include/svx/strings.hrc:748
msgctxt "RID_SVXSTR_GRDT72"
msgid "Blue Touch"
-msgstr ""
+msgstr "Hauch von Blau"
#: include/svx/strings.hrc:749
msgctxt "RID_SVXSTR_GRDT73"
msgid "Blank with Gray"
-msgstr ""
+msgstr "Leer mit Grau"
#: include/svx/strings.hrc:750
msgctxt "RID_SVXSTR_GRDT74"
msgid "Spotted Gray"
-msgstr ""
+msgstr "Grau gefleckt"
#: include/svx/strings.hrc:751
msgctxt "RID_SVXSTR_GRDT75"
msgid "London Mist"
-msgstr ""
+msgstr "Londoner Nebel"
#: include/svx/strings.hrc:752
msgctxt "RID_SVXSTR_GRDT76"
msgid "Teal to Blue"
-msgstr ""
+msgstr "Türkis nach Blau"
#: include/svx/strings.hrc:753
msgctxt "RID_SVXSTR_GRDT77"
@@ -9648,22 +9648,22 @@ msgstr "Mitternacht"
#: include/svx/strings.hrc:754
msgctxt "RID_SVXSTR_GRDT78"
msgid "Deep Ocean"
-msgstr ""
+msgstr "Tiefsee"
#: include/svx/strings.hrc:755
msgctxt "RID_SVXSTR_GRDT79"
msgid "Submarine"
-msgstr ""
+msgstr "Unterwasser"
#: include/svx/strings.hrc:756
msgctxt "RID_SVXSTR_GRDT80"
msgid "Green Grass"
-msgstr ""
+msgstr "Grünes Gras"
#: include/svx/strings.hrc:757
msgctxt "RID_SVXSTR_GRDT81"
msgid "Neon Light"
-msgstr ""
+msgstr "Neonröhre"
#: include/svx/strings.hrc:758
msgctxt "RID_SVXSTR_GRDT82"
@@ -9673,7 +9673,7 @@ msgstr "Sonnenschein"
#: include/svx/strings.hrc:759
msgctxt "RID_SVXSTR_GRDT83"
msgid "Present"
-msgstr ""
+msgstr "Geschenk"
#: include/svx/strings.hrc:760
msgctxt "RID_SVXSTR_GRDT84"
@@ -12091,13 +12091,13 @@ msgstr "Nach rechts zeigende Pfeile als Aufzählungszeichen"
#: include/svx/strings.hrc:1273
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_6"
-msgid "Check mark bullets"
+msgid "Cross mark bullets"
msgstr "Kreuzmarken als Aufzählungszeichen"
#: include/svx/strings.hrc:1274
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_7"
-msgid "Tick mark bullets"
-msgstr "Haken als Aufzählungszeichen"
+msgid "Check mark bullets"
+msgstr "Kreuzmarken als Aufzählungszeichen"
#: include/svx/strings.hrc:1275
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_0"
diff --git a/source/de/sw/messages.po b/source/de/sw/messages.po
index 3e4127af858..9610391aa63 100644
--- a/source/de/sw/messages.po
+++ b/source/de/sw/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: 2018-05-22 13:17+0200\n"
-"PO-Revision-Date: 2018-05-13 08:33+0000\n"
-"Last-Translator: Thomas Hackert <thackert@nexgo.de>\n"
+"POT-Creation-Date: 2018-06-12 14:41+0200\n"
+"PO-Revision-Date: 2018-06-14 02:17+0000\n"
+"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: de\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1526200423.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1528942667.000000\n"
#: sw/inc/app.hrc:29
msgctxt "RID_PARAGRAPHSTYLEFAMILY"
@@ -1180,13 +1180,13 @@ msgstr "Literaturangabe"
#: sw/inc/strings.hrc:172
msgctxt "STR_POOLCOLL_TOX_ILLUSH"
-msgid "Illustration Index Heading"
-msgstr "Abbildungsverzeichnis Überschrift"
+msgid "Figure Index Heading"
+msgstr "Abbildungsindex als Überschriften"
#: sw/inc/strings.hrc:173
msgctxt "STR_POOLCOLL_TOX_ILLUS1"
-msgid "Illustration Index 1"
-msgstr "Abbildungsverzeichnis 1"
+msgid "Figure Index 1"
+msgstr "Abbildungsindex 1"
#: sw/inc/strings.hrc:174
msgctxt "STR_POOLCOLL_TOX_OBJECTH"
@@ -3590,7 +3590,7 @@ msgstr "Objektverzeichnis"
#: sw/inc/strings.hrc:672
msgctxt "STR_TOX_ILL"
-msgid "Illustration Index"
+msgid "Table of Figures"
msgstr "Abbildungsverzeichnis"
#: sw/inc/strings.hrc:673
@@ -8383,22 +8383,22 @@ msgstr "Drucker"
#: sw/uiconfig/swriter/ui/envformatpage.ui:44
msgctxt "envformatpage|character1"
msgid "C_haracter..."
-msgstr ""
+msgstr "_Zeichen..."
#: sw/uiconfig/swriter/ui/envformatpage.ui:52
msgctxt "envformatpage|paragraph1"
msgid "P_aragraph..."
-msgstr ""
+msgstr "A_bsatz..."
#: sw/uiconfig/swriter/ui/envformatpage.ui:64
msgctxt "envformatpage|character2"
msgid "C_haracter..."
-msgstr ""
+msgstr "_Zeichen..."
#: sw/uiconfig/swriter/ui/envformatpage.ui:72
msgctxt "envformatpage|paragraph2"
msgid "P_aragraph..."
-msgstr ""
+msgstr "A_bsatz..."
#: sw/uiconfig/swriter/ui/envformatpage.ui:156
msgctxt "envformatpage|label5"
@@ -8513,7 +8513,7 @@ msgstr "Horizontal links"
#: sw/uiconfig/swriter/ui/envprinterpage.ui:214
msgctxt "envprinterpage|horicenterl|tooltip_text"
msgid "Horizontal Center"
-msgstr ""
+msgstr "Horizontal Mitte"
#: sw/uiconfig/swriter/ui/envprinterpage.ui:230
msgctxt "envprinterpage|horirightl|tooltip_text"
@@ -8528,7 +8528,7 @@ msgstr "Vertikal links"
#: sw/uiconfig/swriter/ui/envprinterpage.ui:262
msgctxt "envprinterpage|vertcenterl|tooltip_text"
msgid "Vertical Center"
-msgstr ""
+msgstr "Vertikal zentriert"
#: sw/uiconfig/swriter/ui/envprinterpage.ui:278
msgctxt "envprinterpage|vertrightl|tooltip_text"
@@ -8543,7 +8543,7 @@ msgstr "Horizontal links"
#: sw/uiconfig/swriter/ui/envprinterpage.ui:322
msgctxt "envprinterpage|horicenteru|tooltip_text"
msgid "Horizontal Center"
-msgstr ""
+msgstr "Horizontal Mitte"
#: sw/uiconfig/swriter/ui/envprinterpage.ui:338
msgctxt "envprinterpage|horirightu|tooltip_text"
@@ -8558,7 +8558,7 @@ msgstr "Vertikal links"
#: sw/uiconfig/swriter/ui/envprinterpage.ui:370
msgctxt "envprinterpage|vertcenteru|tooltip_text"
msgid "Vertical Center"
-msgstr ""
+msgstr "Vertikal zentriert"
#: sw/uiconfig/swriter/ui/envprinterpage.ui:386
msgctxt "envprinterpage|vertrightu|tooltip_text"
@@ -9244,72 +9244,72 @@ msgctxt "footnotepage|label5"
msgid "Continuation Notice"
msgstr "Hinweistext mehrseitige Fußnoten"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:49
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:55
msgctxt "footnotesendnotestabpage|ftnntnum"
msgid "_Restart numbering"
msgstr "_Nummerierung neu starten"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:91
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:93
msgctxt "footnotesendnotestabpage|ftnoffset_label"
msgid "_Start at:"
msgstr "Beginnen _mit:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:112
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:111
msgctxt "footnotesendnotestabpage|ftnntnumfmt"
msgid "Custom _format"
msgstr "B_enutzerdefiniertes Format"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:155
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:150
msgctxt "footnotesendnotestabpage|ftnsuffix_label"
msgid "Aft_er:"
msgstr "Dana_ch:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:199
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:188
msgctxt "footnotesendnotestabpage|ftnprefix_label"
msgid "Be_fore:"
msgstr "_Davor:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:228
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:212
msgctxt "footnotesendnotestabpage|ftnntattextend"
msgid "Collec_t at end of text"
msgstr "am _Textende sammeln"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:252
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:234
msgctxt "footnotesendnotestabpage|label1"
msgid "Footnotes"
msgstr "Fußnoten"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:289
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:271
msgctxt "footnotesendnotestabpage|endntattextend"
msgid "C_ollect at end of section"
msgstr "Am _Bereichsende sammeln"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:315
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:295
msgctxt "footnotesendnotestabpage|endntnum"
msgid "_Restart numbering"
msgstr "_Nummerierung neu starten"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:357
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:333
msgctxt "footnotesendnotestabpage|endoffset_label"
msgid "_Start at:"
msgstr "Be_ginnen mit:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:378
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:351
msgctxt "footnotesendnotestabpage|endntnumfmt"
msgid "_Custom format"
msgstr "Benutzer_definiertes Format"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:421
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:390
msgctxt "footnotesendnotestabpage|endsuffix_label"
msgid "Aft_er:"
msgstr "Dana_ch:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:465
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:428
msgctxt "footnotesendnotestabpage|endprefix_label"
msgid "Be_fore:"
msgstr "_Davor:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:500
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:458
msgctxt "footnotesendnotestabpage|label2"
msgid "Endnotes"
msgstr "Endnoten"
@@ -9339,27 +9339,27 @@ msgctxt "formatsectiondialog|notes"
msgid "Footnotes/Endnotes"
msgstr "Fuß-/Endnoten"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:63
+#: sw/uiconfig/swriter/ui/formattablepage.ui:77
msgctxt "formattablepage|nameft"
msgid "_Name"
msgstr "_Name"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:79
+#: sw/uiconfig/swriter/ui/formattablepage.ui:91
msgctxt "formattablepage|widthft"
msgid "W_idth"
msgstr "Br_eite"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:110
+#: sw/uiconfig/swriter/ui/formattablepage.ui:120
msgctxt "formattablepage|relwidth"
msgid "Relati_ve"
msgstr "Relati_v"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:155
+#: sw/uiconfig/swriter/ui/formattablepage.ui:160
msgctxt "formattablepage|label45"
msgid "Properties"
msgstr "Eigenschaften"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:194
+#: sw/uiconfig/swriter/ui/formattablepage.ui:195
msgctxt "formattablepage|leftft"
msgid "Lef_t"
msgstr "Nach lin_ks"
@@ -9369,62 +9369,62 @@ msgctxt "formattablepage|rightft"
msgid "Ri_ght"
msgstr "Nach recht_s"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:228
+#: sw/uiconfig/swriter/ui/formattablepage.ui:226
msgctxt "formattablepage|aboveft"
msgid "_Above"
msgstr "Nach _oben"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:245
+#: sw/uiconfig/swriter/ui/formattablepage.ui:241
msgctxt "formattablepage|belowft"
msgid "_Below"
msgstr "Nach _unten"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:320
+#: sw/uiconfig/swriter/ui/formattablepage.ui:311
msgctxt "formattablepage|label46"
msgid "Spacing"
msgstr "Abstand"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:362
+#: sw/uiconfig/swriter/ui/formattablepage.ui:349
msgctxt "formattablepage|full"
msgid "A_utomatic"
msgstr "_Automatisch"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:380
+#: sw/uiconfig/swriter/ui/formattablepage.ui:365
msgctxt "formattablepage|left"
msgid "_Left"
msgstr "_Links"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:398
+#: sw/uiconfig/swriter/ui/formattablepage.ui:381
msgctxt "formattablepage|fromleft"
msgid "_From left"
msgstr "Von l_inks"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:416
+#: sw/uiconfig/swriter/ui/formattablepage.ui:397
msgctxt "formattablepage|right"
msgid "R_ight"
msgstr "_Rechts"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:435
+#: sw/uiconfig/swriter/ui/formattablepage.ui:413
msgctxt "formattablepage|center"
msgid "_Center"
msgstr "M_itte"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:453
+#: sw/uiconfig/swriter/ui/formattablepage.ui:429
msgctxt "formattablepage|free"
msgid "_Manual"
msgstr "_Manuell"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:478
+#: sw/uiconfig/swriter/ui/formattablepage.ui:452
msgctxt "formattablepage|label43"
msgid "Alignment"
msgstr "Ausrichtung"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:522
+#: sw/uiconfig/swriter/ui/formattablepage.ui:491
msgctxt "formattablepage|label53"
msgid "Text _direction"
msgstr "_Textfluss"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:553
+#: sw/uiconfig/swriter/ui/formattablepage.ui:519
msgctxt "formattablepage|label44"
msgid "Properties "
msgstr "Eigenschaften "
@@ -9779,22 +9779,27 @@ msgctxt "headerfootermenu|insert_pagenumber"
msgid "Insert Page Number"
msgstr "Seitenzahl einfügen"
-#: sw/uiconfig/swriter/ui/indentpage.ui:52
+#: sw/uiconfig/swriter/ui/headerfootermenu.ui:42
+msgctxt "headerfootermenu|insert_pagecount"
+msgid "Insert Page Count"
+msgstr "Seitennummerierung einfügen"
+
+#: sw/uiconfig/swriter/ui/indentpage.ui:57
msgctxt "indentpage|label1"
msgid "_Before section"
msgstr "_Vor Bereich"
-#: sw/uiconfig/swriter/ui/indentpage.ui:67
+#: sw/uiconfig/swriter/ui/indentpage.ui:71
msgctxt "indentpage|label3"
msgid "_After section"
msgstr "_Nach Bereich"
-#: sw/uiconfig/swriter/ui/indentpage.ui:113
+#: sw/uiconfig/swriter/ui/indentpage.ui:115
msgctxt "indentpage|label2"
msgid "Indent"
msgstr "Einzug"
-#: sw/uiconfig/swriter/ui/indentpage.ui:142
+#: sw/uiconfig/swriter/ui/indentpage.ui:155
msgctxt "indentpage|preview-atkobject"
msgid "Example"
msgstr "Beispiel"
@@ -11772,22 +11777,22 @@ msgstr "Neues Benutzerverzeichnis"
#: sw/uiconfig/swriter/ui/notebookbar.ui:537
msgctxt "notebookbar|Help"
msgid "_Check for Updates..."
-msgstr ""
+msgstr "Auf _Updates prüfen..."
#: sw/uiconfig/swriter/ui/notebookbar.ui:1581
msgctxt "notebookbar|Tools"
msgid "_Check for Updates..."
-msgstr ""
+msgstr "Auf _Updates prüfen..."
#: sw/uiconfig/swriter/ui/notebookbar.ui:1851
msgctxt "notebookbar|FileMenuButton"
msgid "_File"
-msgstr ""
+msgstr "_Datei"
#: sw/uiconfig/swriter/ui/notebookbar.ui:1870
msgctxt "notebookbar|HelpMenuButton"
msgid "_Help"
-msgstr ""
+msgstr "_Hilfe"
#: sw/uiconfig/swriter/ui/notebookbar.ui:2658
msgctxt "notebookbar|FileLabel"
@@ -11797,7 +11802,7 @@ msgstr "Datei"
#: sw/uiconfig/swriter/ui/notebookbar.ui:2817
msgctxt "notebookbar|HomeMenuButton"
msgid "_Home"
-msgstr ""
+msgstr "_Start"
#: sw/uiconfig/swriter/ui/notebookbar.ui:4203
msgctxt "notebookbar|HomeLabel"
@@ -11807,7 +11812,7 @@ msgstr "Start"
#: sw/uiconfig/swriter/ui/notebookbar.ui:5273
msgctxt "notebookbar|InsertMenuButton"
msgid "_Insert"
-msgstr ""
+msgstr "_Einfügen"
#: sw/uiconfig/swriter/ui/notebookbar.ui:5358
msgctxt "notebookbar|InsertLabel"
@@ -11817,7 +11822,7 @@ msgstr "Einfügen"
#: sw/uiconfig/swriter/ui/notebookbar.ui:5388
msgctxt "notebookbar|PageMenuButton"
msgid "Pag_e"
-msgstr ""
+msgstr "_Seite"
#: sw/uiconfig/swriter/ui/notebookbar.ui:6307
msgctxt "notebookbar|LayoutLabel"
@@ -11827,7 +11832,7 @@ msgstr "Layout"
#: sw/uiconfig/swriter/ui/notebookbar.ui:6335
msgctxt "notebookbar|ReferencesMenuButton"
msgid "Reference_s"
-msgstr ""
+msgstr "_Querverweise"
#: sw/uiconfig/swriter/ui/notebookbar.ui:6914
msgctxt "notebookbar|ReferencesLabel"
@@ -11837,7 +11842,7 @@ msgstr "Querverweis"
#: sw/uiconfig/swriter/ui/notebookbar.ui:7586
msgctxt "notebookbar|ReviewMenuButton"
msgid "_Review"
-msgstr ""
+msgstr "_Überprüfen"
#: sw/uiconfig/swriter/ui/notebookbar.ui:7671
msgctxt "notebookbar|ReviewLabel"
@@ -11847,7 +11852,7 @@ msgstr "Überprüfen"
#: sw/uiconfig/swriter/ui/notebookbar.ui:8285
msgctxt "notebookbar|ViewMenuButton"
msgid "_View"
-msgstr ""
+msgstr "_Ansicht"
#: sw/uiconfig/swriter/ui/notebookbar.ui:8370
msgctxt "notebookbar|ViewLabel"
@@ -11857,7 +11862,7 @@ msgstr "Ansicht"
#: sw/uiconfig/swriter/ui/notebookbar.ui:9451
msgctxt "notebookbar|TableMenuButton"
msgid "T_able"
-msgstr ""
+msgstr "_Tabelle"
#: sw/uiconfig/swriter/ui/notebookbar.ui:9535
msgctxt "notebookbar|TableLabel"
@@ -11867,7 +11872,7 @@ msgstr "Tabelle"
#: sw/uiconfig/swriter/ui/notebookbar.ui:10586
msgctxt "notebookbar|GraphicMenuButton"
msgid "_Graphic"
-msgstr ""
+msgstr "_Grafik"
#: sw/uiconfig/swriter/ui/notebookbar.ui:10685
msgctxt "notebookbar|ImageLabel"
@@ -11877,7 +11882,7 @@ msgstr "Bild"
#: sw/uiconfig/swriter/ui/notebookbar.ui:12035
msgctxt "notebookbar|DrawMenuButton"
msgid "D_raw"
-msgstr ""
+msgstr "_Zeichnen"
#: sw/uiconfig/swriter/ui/notebookbar.ui:12147
msgctxt "notebookbar|ShapeLabel"
@@ -11887,17 +11892,17 @@ msgstr "Zeichnen"
#: sw/uiconfig/swriter/ui/notebookbar.ui:13000
msgctxt "notebookbar|ObjectMenuButton:MenuDraw"
msgid "Object"
-msgstr ""
+msgstr "Objekt"
#: sw/uiconfig/swriter/ui/notebookbar.ui:13089
msgctxt "notebookbar|ObjectLabel"
msgid "Object"
-msgstr ""
+msgstr "Objekt"
#: sw/uiconfig/swriter/ui/notebookbar.ui:13120
msgctxt "notebookbar|ToolsMenuButton"
msgid "_Tools"
-msgstr ""
+msgstr "_Extras"
#: sw/uiconfig/swriter/ui/notebookbar.ui:14074
msgctxt "notebookbar|DevLabel"
@@ -11907,12 +11912,12 @@ msgstr "Extras"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:1697
msgctxt "notebookbar_compact|Update"
msgid "_Check for Updates..."
-msgstr ""
+msgstr "Auf _Updates prüfen..."
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:2007
msgctxt "notebookbar_compact|FileMenuButton"
msgid "_File"
-msgstr ""
+msgstr "_Datei"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:2721
msgctxt "notebookbar_compact|FileLabel"
@@ -11922,7 +11927,7 @@ msgstr "Datei"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:2770
msgctxt "notebookbar_compact|HomeMenuButton"
msgid "_Menu"
-msgstr ""
+msgstr "_Menü"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3829
msgctxt "notebookbar_compact|HomeLabel"
@@ -11932,7 +11937,7 @@ msgstr "Start"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3882
msgctxt "notebookbar_compact|InsertMenuButton"
msgid "_Insert"
-msgstr ""
+msgstr "_Einfügen"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4501
msgctxt "notebookbar_compact|InsertLabel"
@@ -11950,7 +11955,7 @@ msgstr "Umlauf"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5221
msgctxt "notebookbar_compact|PageMenuButton"
msgid "Pag_e"
-msgstr ""
+msgstr "_Seite"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5273
msgctxt "notebookbar_compact|LayoutLabel"
@@ -11960,7 +11965,7 @@ msgstr "Layout"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5320
msgctxt "notebookbar_compact|ReferencesMenuButton"
msgid "Reference_s"
-msgstr ""
+msgstr "_Querverweise"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5708
msgctxt "notebookbar_compact|ReferencesLabel"
@@ -11970,7 +11975,7 @@ msgstr "Querverweise"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6204
msgctxt "notebookbar_compact|ReviewMenuButton"
msgid "_Review"
-msgstr ""
+msgstr "_Überprüfen"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6237
msgctxt "notebookbar_compact|ReviewLabel"
@@ -11980,7 +11985,7 @@ msgstr "Änderungen"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6706
msgctxt "notebookbar_compact|ViewMenuButton"
msgid "_View"
-msgstr ""
+msgstr "_Ansicht"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6758
msgctxt "notebookbar_compact|ViewLabel"
@@ -11990,7 +11995,7 @@ msgstr "Ansicht"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6806
msgctxt "notebookbar_compact|TableMenuButton"
msgid "T_able"
-msgstr ""
+msgstr "_Tabelle"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7540
msgctxt "notebookbar_compact|TableLabel"
@@ -12007,7 +12012,7 @@ msgstr "_Ausrichten"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8291
msgctxt "notebookbar_compact|GraphicMenuButton"
msgid "_Graphic"
-msgstr ""
+msgstr "_Grafik"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8324
msgctxt "notebookbar_compact|ImageLabel"
@@ -12017,7 +12022,7 @@ msgstr "Bild"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9070
msgctxt "notebookbar_compact|DrawMenuButton"
msgid "D_raw"
-msgstr ""
+msgstr "_Zeichnen"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9125
msgctxt "notebookbar_compact|ShapeLabel"
@@ -12027,7 +12032,7 @@ msgstr "Zeichnen"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9651
msgctxt "notebookbar_compact|ObjectMenuButton:MenuDraw"
msgid "Object"
-msgstr ""
+msgstr "Objekt"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9707
msgctxt "notebookbar_compact|FrameLabel"
@@ -12037,7 +12042,7 @@ msgstr "Objekt"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9757
msgctxt "notebookbar_compact|ToolsMenuButton"
msgid "_Tools"
-msgstr ""
+msgstr "_Extras"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10600
msgctxt "notebookbar_compact|DevLabel"
@@ -12052,7 +12057,7 @@ msgstr "Menüleiste"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:2516
msgctxt "notebookbar_groupedbar_compact|Menu"
msgid "_Check for Updates..."
-msgstr ""
+msgstr "Auf _Updates prüfen..."
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:2651
msgctxt "notebookbar_groupedbar_compact|Quotation2"
@@ -12062,7 +12067,7 @@ msgstr "Zitat"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:2945
msgctxt "notebookbar_groupedbar_compact|Tools"
msgid "_Check for Updates..."
-msgstr ""
+msgstr "Auf _Updates prüfen..."
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:3246
msgctxt "notebookbar_groupedbar_compact|menub"
@@ -12277,12 +12282,12 @@ msgstr "_Ansicht"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:1486
msgctxt "notebookbar_groupedbar_full|Help"
msgid "_Check for Updates..."
-msgstr ""
+msgstr "Auf _Updates prüfen..."
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:2555
msgctxt "notebookbar_groupedbar_full|Menu"
msgid "_Check for Updates..."
-msgstr ""
+msgstr "Auf _Updates prüfen..."
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:2690
msgctxt "notebookbar_groupedbar_full|Quotation2"
@@ -12292,7 +12297,7 @@ msgstr "Zitat"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:2984
msgctxt "notebookbar_groupedbar_full|Tools"
msgid "_Check for Updates..."
-msgstr ""
+msgstr "Auf _Updates prüfen..."
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:3289
msgctxt "notebookbar_groupedbar_full|menub"
@@ -13285,8 +13290,8 @@ msgstr "Formular schützen"
#: sw/uiconfig/swriter/ui/optcompatpage.ui:68
msgctxt "optcompatpage|format"
-msgid "MS Word-compatible trailing blanks"
-msgstr "MS Word-kompatible nachgesetzte Leerzeichen"
+msgid "Word-compatible trailing blanks"
+msgstr "Word-kompatible nachgesetzte Leerzeichen"
#: sw/uiconfig/swriter/ui/optcompatpage.ui:69
msgctxt "optcompatpage|format"
@@ -13295,8 +13300,8 @@ msgstr "Weiße Linien in PDF-Seitenhintergründen für die Kompatibilität mit a
#: sw/uiconfig/swriter/ui/optcompatpage.ui:70
msgctxt "optcompatpage|format"
-msgid "A database field (e.g., MailMerge) with empty value hides its paragraph"
-msgstr ""
+msgid "Hide paragraphs of database fields (e.g., mail merge) with an empty value"
+msgstr "Absätze mit Datenbankfeldern (beispielsweise Serienbriefe) mit einem leeren Wert ausblenden"
#: sw/uiconfig/swriter/ui/optcompatpage.ui:71
msgctxt "optcompatpage|format"
@@ -15249,7 +15254,7 @@ msgstr "Optionen"
#: sw/uiconfig/swriter/ui/savemonitordialog.ui:8
msgctxt "printmonitordialog|PrintMonitorDialog"
msgid "Save monitor"
-msgstr ""
+msgstr "Monitor speichern"
#: sw/uiconfig/swriter/ui/savemonitordialog.ui:71
msgctxt "printmonitordialog|saving"
@@ -15981,122 +15986,122 @@ msgctxt "tableproperties|background"
msgid "Background"
msgstr "Fläche"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:25
-msgctxt "tabletextflowpage|liststore1"
-msgid "Horizontal"
-msgstr "Horizontal"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:29
-msgctxt "tabletextflowpage|liststore1"
-msgid "Vertical"
-msgstr "Vertikal"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:33
-msgctxt "tabletextflowpage|liststore1"
-msgid "Use superordinate object settings"
-msgstr "Einstellungen des Objektes verwenden"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:47
-msgctxt "tabletextflowpage|liststore2"
-msgid "Top"
-msgstr "Oben"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:51
-msgctxt "tabletextflowpage|liststore2"
-msgid "Centered"
-msgstr "Zentriert"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:55
-msgctxt "tabletextflowpage|liststore2"
-msgid "Bottom"
-msgstr "Unten"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:97
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:53
msgctxt "tabletextflowpage|break"
msgid "_Break"
msgstr "Au_fbrechen"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:112
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:68
msgctxt "tabletextflowpage|page"
msgid "_Page"
msgstr "_Seite"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:132
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:87
msgctxt "tabletextflowpage|column"
msgid "Col_umn"
msgstr "S_palte"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:151
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:106
msgctxt "tabletextflowpage|before"
msgid "Be_fore"
msgstr "_Davor"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:171
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:125
msgctxt "tabletextflowpage|after"
msgid "_After"
msgstr "da_nach"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:203
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:158
msgctxt "tabletextflowpage|pagestyle"
msgid "With Page St_yle"
msgstr "mit Seitenvor_lage"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:224
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:177
msgctxt "tabletextflowpage|pagenoft"
msgid "Page _number"
msgstr "Se_itennummer"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:257
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:213
msgctxt "tabletextflowpage|pagestylelb-atkobject"
msgid "With Page Style"
msgstr "Mit Seitenvorlage"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:274
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:230
msgctxt "tabletextflowpage|split"
msgid "Allow _table to split across pages and columns"
msgstr "Trennung der Ta_belle an Seiten- und Spaltenenden zulassen"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:289
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:245
msgctxt "tabletextflowpage|splitrow"
msgid "Allow row to break a_cross pages and columns"
msgstr "Zeilenumb_ruch an Seiten- und Spaltenenden zulassen"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:306
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:262
msgctxt "tabletextflowpage|keep"
msgid "_Keep with next paragraph"
msgstr "Mit folgendem Absatz _zusammenhalten"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:328
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:284
msgctxt "tabletextflowpage|label40"
msgid "Text _orientation"
msgstr "_Textausrichtung"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:361
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:298
+msgctxt "tabletextflowpage|liststore1"
+msgid "Horizontal"
+msgstr "Horizontal"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:299
+msgctxt "tabletextflowpage|liststore1"
+msgid "Vertical"
+msgstr "Vertikal"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:300
+msgctxt "tabletextflowpage|liststore1"
+msgid "Use superordinate object settings"
+msgstr "Einstellungen des Objektes verwenden"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:321
msgctxt "tabletextflowpage|headline"
msgid "R_epeat heading"
msgstr "Überschrift _wiederholen"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:383
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:343
msgctxt "tabletextflowpage|label38"
msgid "The first "
msgstr "Die ersten "
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:396
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:356
msgctxt "tabletextflowpage|label39"
msgid "rows"
msgstr "Zeilen"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:434
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:395
msgctxt "tabletextflowpage|label35"
msgid "Text Flow"
msgstr "Textfluss"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:467
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:428
msgctxt "tabletextflowpage|label41"
msgid "_Vertical alignment"
msgstr "_Vertikale Ausrichtung"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:495
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:442
+msgctxt "tabletextflowpage|liststore2"
+msgid "Top"
+msgstr "Oben"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:443
+msgctxt "tabletextflowpage|liststore2"
+msgid "Centered"
+msgstr "Zentriert"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:444
+msgctxt "tabletextflowpage|liststore2"
+msgid "Bottom"
+msgstr "Unten"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:460
msgctxt "tabletextflowpage|label36"
msgid "Alignment"
msgstr "Ausrichtung"
@@ -16878,7 +16883,7 @@ msgstr "Stichwortverzeichnis"
#: sw/uiconfig/swriter/ui/tocindexpage.ui:58
msgctxt "tocindexpage|liststore1"
-msgid "Illustration Index"
+msgid "Table of Figures"
msgstr "Abbildungsverzeichnis"
#: sw/uiconfig/swriter/ui/tocindexpage.ui:62
diff --git a/source/de/swext/mediawiki/help.po b/source/de/swext/mediawiki/help.po
index 198997b6334..6cb1ff425a8 100644
--- a/source/de/swext/mediawiki/help.po
+++ b/source/de/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: 2018-03-28 16:46+0200\n"
-"PO-Revision-Date: 2017-12-17 07:14+0000\n"
+"PO-Revision-Date: 2018-06-14 03:07+0000\n"
"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: de\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1513494848.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1528945648.000000\n"
#: help.tree
msgctxt ""
@@ -174,7 +174,7 @@ msgctxt ""
"par_id389416\n"
"help.text"
msgid "You can copy the URL from a web browser and paste it into the textbox."
-msgstr "Sie können die URL aus Ihrem Browser kopieren und in das Textfeld einfügen."
+msgstr "Sie können die URL aus Ihrem Browser per Kopieren-und-Einfügen in das Textfeld übertragen."
#: wiki.xhp
msgctxt ""
@@ -598,7 +598,7 @@ msgctxt ""
"par_id8216193\n"
"help.text"
msgid "The character set of the transformation result is fixed to UTF-8. Depending on your system, this might not be the default character set. This might cause “special characters” to look broken when viewed with default settings. However, you can switch your editor to UTF-8 encoding to fix this. If your editor does not support switching the encoding, you can display the result of the transformation in the Firefox browser and switch the encoding to UTF-8 there. Now, you can copy and paste the transformation result to your program of choice."
-msgstr "Der Zeichensatz des Konvertierungsergebnisses ist auf UTF-8 festgelegt. In Abhängigkeit von Ihrem System ist das eventuell nicht der Standardzeichensatz. Das kann dazu führen, dass „Sonderzeichen“ falsch dargestellt werden, wenn sie mit Standardeinstellungen angezeigt werden. Sie können aber Ihren Editor auf UTF-8 umstellen, um das Problem zu beheben. Falls Ihr Editor keine Zeichensatzumschaltung unterstützt, können Sie das Ergebnis der Konvertierung in Firefox anzeigen und dort den Zeichensatz auf UTF-8 stellen. Jetzt können Sie das Konvertierungsergebnis kopieren und in die Anwendung Ihrer Wahl einfügen."
+msgstr "Der Zeichensatz des Konvertierungsergebnisses ist auf UTF-8 festgelegt. In Abhängigkeit von Ihrem System ist das eventuell nicht der Standardzeichensatz. Das kann dazu führen, dass „Sonderzeichen“ falsch dargestellt werden, wenn sie mit Standardeinstellungen angezeigt werden. Sie können aber Ihren Editor auf UTF-8 umstellen, um das Problem zu beheben. Falls Ihr Editor keine Zeichensatzumschaltung unterstützt, können Sie das Ergebnis der Konvertierung in Firefox anzeigen und dort den Zeichensatz auf UTF-8 stellen. Jetzt können Sie das Konvertierungsergebnis per Kopieren-und-Einfügen in die Anwendung Ihrer Wahl übertragen."
#: wikisend.xhp
msgctxt ""
diff --git a/source/de/writerperfect/messages.po b/source/de/writerperfect/messages.po
index bda35bc93d6..d42e72bf422 100644
--- a/source/de/writerperfect/messages.po
+++ b/source/de/writerperfect/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: 2018-05-16 16:54+0200\n"
-"PO-Revision-Date: 2018-03-15 05:43+0000\n"
-"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
+"PO-Revision-Date: 2018-05-26 04:57+0000\n"
+"Last-Translator: Thomas Hackert <thackert@nexgo.de>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: de\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1521092601.000000\n"
+"X-POOTLE-MTIME: 1527310676.000000\n"
#: writerperfect/inc/strings.hrc:15
msgctxt "STR_ENCODING_DIALOG_TITLE"
@@ -24,7 +24,7 @@ msgstr "Datei importieren"
#: writerperfect/inc/strings.hrc:16
msgctxt "STR_ENCODING_DIALOG_TITLE_MSMULTIPLAN"
msgid "Import MS Multiplan for DOS file"
-msgstr ""
+msgstr "MS Multiplan-Datei für DOS importieren"
#: writerperfect/inc/strings.hrc:17
msgctxt "STR_ENCODING_DIALOG_TITLE_MSWORKS"
@@ -66,97 +66,97 @@ msgctxt "exportepub|generalft"
msgid "General"
msgstr "Allgemein"
-#: writerperfect/uiconfig/ui/exportepub.ui:122
+#: writerperfect/uiconfig/ui/exportepub.ui:121
msgctxt "exportepub|versionft"
msgid "Version:"
msgstr "Version:"
-#: writerperfect/uiconfig/ui/exportepub.ui:139
+#: writerperfect/uiconfig/ui/exportepub.ui:138
msgctxt "exportepub|epub3"
msgid "EPUB 3.0"
msgstr "EPUB 3.0"
-#: writerperfect/uiconfig/ui/exportepub.ui:140
+#: writerperfect/uiconfig/ui/exportepub.ui:139
msgctxt "exportepub|epub2"
msgid "EPUB 2.0"
msgstr "EPUB 2.0"
-#: writerperfect/uiconfig/ui/exportepub.ui:175
+#: writerperfect/uiconfig/ui/exportepub.ui:174
msgctxt "exportepub|splitft"
msgid "Split method:"
msgstr "Trennmethode:"
-#: writerperfect/uiconfig/ui/exportepub.ui:192
+#: writerperfect/uiconfig/ui/exportepub.ui:191
msgctxt "exportepub|splitpage"
msgid "Page break"
msgstr "Seitenumbruch"
-#: writerperfect/uiconfig/ui/exportepub.ui:193
+#: writerperfect/uiconfig/ui/exportepub.ui:192
msgctxt "exportepub|splitheading"
msgid "Heading"
msgstr "Überschrift"
-#: writerperfect/uiconfig/ui/exportepub.ui:228
+#: writerperfect/uiconfig/ui/exportepub.ui:227
msgctxt "exportepub|layoutft"
msgid "Layout method:"
msgstr "Layout-Methode:"
-#: writerperfect/uiconfig/ui/exportepub.ui:245
+#: writerperfect/uiconfig/ui/exportepub.ui:244
msgctxt "exportepub|layoutreflowable"
msgid "Reflowable"
msgstr "Mitfließend"
-#: writerperfect/uiconfig/ui/exportepub.ui:246
+#: writerperfect/uiconfig/ui/exportepub.ui:245
msgctxt "exportepub|layoutfixed"
msgid "Fixed"
msgstr "Fest"
-#: writerperfect/uiconfig/ui/exportepub.ui:281
+#: writerperfect/uiconfig/ui/exportepub.ui:280
msgctxt "exportepub|coverimageft"
msgid "Custom cover image:"
msgstr "Benutzerdefiniertes Coverbild:"
-#: writerperfect/uiconfig/ui/exportepub.ui:311
+#: writerperfect/uiconfig/ui/exportepub.ui:310
msgctxt "exportepub|coverbutton"
msgid "Browse..."
msgstr "Durchsuchen..."
-#: writerperfect/uiconfig/ui/exportepub.ui:355
+#: writerperfect/uiconfig/ui/exportepub.ui:354
msgctxt "exportepub|mediadirft"
msgid "Custom media directory:"
msgstr "Benutzerdefiniertes Medienverzeichnis:"
-#: writerperfect/uiconfig/ui/exportepub.ui:385
+#: writerperfect/uiconfig/ui/exportepub.ui:384
msgctxt "exportepub|mediabutton"
msgid "Browse..."
msgstr "Durchsuchen..."
-#: writerperfect/uiconfig/ui/exportepub.ui:429
+#: writerperfect/uiconfig/ui/exportepub.ui:428
msgctxt "exportepub|metadataft"
msgid "Metadata"
msgstr "Metadaten"
-#: writerperfect/uiconfig/ui/exportepub.ui:470
+#: writerperfect/uiconfig/ui/exportepub.ui:468
msgctxt "exportepub|identifierft"
msgid "Identifier:"
msgstr "Bezeichner:"
-#: writerperfect/uiconfig/ui/exportepub.ui:485
+#: writerperfect/uiconfig/ui/exportepub.ui:483
msgctxt "exportepub|titleft"
msgid "Title:"
msgstr "Titel:"
-#: writerperfect/uiconfig/ui/exportepub.ui:511
+#: writerperfect/uiconfig/ui/exportepub.ui:509
msgctxt "exportepub|authorft"
msgid "Author:"
msgstr "Autor:"
-#: writerperfect/uiconfig/ui/exportepub.ui:537
+#: writerperfect/uiconfig/ui/exportepub.ui:535
msgctxt "exportepub|languageft"
msgid "Language:"
msgstr "Sprache:"
-#: writerperfect/uiconfig/ui/exportepub.ui:563
+#: writerperfect/uiconfig/ui/exportepub.ui:561
msgctxt "exportepub|dateft"
msgid "Date:"
msgstr "Datum:"
diff --git a/source/de/xmlsecurity/messages.po b/source/de/xmlsecurity/messages.po
index 1edd864f094..98b2e910aba 100644
--- a/source/de/xmlsecurity/messages.po
+++ b/source/de/xmlsecurity/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: 2018-05-22 13:17+0200\n"
-"PO-Revision-Date: 2018-03-08 08:55+0000\n"
-"Last-Translator: Thomas Hackert <thackert@nexgo.de>\n"
+"PO-Revision-Date: 2018-05-26 05:00+0000\n"
+"Last-Translator: Christian Kühl <kuehl.christian@googlemail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: de\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1520499304.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1527310845.000000\n"
#: xmlsecurity/inc/strings.hrc:25
msgctxt "STR_CERTIFICATE_NOT_VALIDATED"
@@ -460,7 +460,7 @@ msgstr "Signieren"
#: xmlsecurity/uiconfig/ui/selectcertificatedialog.ui:194
msgctxt "selectcertificatedialog|str_selectsign"
msgid "Select"
-msgstr ""
+msgstr "Auswählen"
#: xmlsecurity/uiconfig/ui/selectcertificatedialog.ui:199
msgctxt "selectcertificatedialog|str_encrypt"
diff --git a/source/dgo/cui/messages.po b/source/dgo/cui/messages.po
index 78f167362a8..fc9ac672683 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+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"
@@ -10527,105 +10527,105 @@ msgctxt "positionsizedialog|PositionAndSizeDialog"
msgid "Position and Size"
msgstr "स्थिति ते नाप"
-#: cui/uiconfig/ui/positionsizedialog.ui:107
+#: cui/uiconfig/ui/positionsizedialog.ui:136
msgctxt "positionsizedialog|RID_SVXPAGE_POSITION_SIZE"
msgid "Position and Size"
msgstr "स्थिति ते नाप"
-#: cui/uiconfig/ui/positionsizedialog.ui:129
+#: cui/uiconfig/ui/positionsizedialog.ui:182
msgctxt "positionsizedialog|RID_SVXPAGE_SWPOSSIZE"
msgid "Position and Size"
msgstr "स्थिति ते नाप"
-#: cui/uiconfig/ui/positionsizedialog.ui:152
+#: cui/uiconfig/ui/positionsizedialog.ui:229
msgctxt "positionsizedialog|RID_SVXPAGE_ANGLE"
msgid "Rotation"
msgstr "फरकाऽ"
-#: cui/uiconfig/ui/positionsizedialog.ui:175
+#: cui/uiconfig/ui/positionsizedialog.ui:276
msgctxt "positionsizedialog|RID_SVXPAGE_SLANT"
msgid "Slant & Corner Radius"
msgstr "ढालमां ते नुक्कर रेडियस"
-#: cui/uiconfig/ui/possizetabpage.ui:40
+#: cui/uiconfig/ui/possizetabpage.ui:61
#, fuzzy
msgctxt "possizetabpage|FT_POS_X"
msgid "Position _X:"
msgstr "स्थिति "
-#: cui/uiconfig/ui/possizetabpage.ui:56
+#: cui/uiconfig/ui/possizetabpage.ui:75
#, fuzzy
msgctxt "possizetabpage|FT_POS_Y"
msgid "Position _Y:"
msgstr "स्थिति "
-#: cui/uiconfig/ui/possizetabpage.ui:110
+#: cui/uiconfig/ui/possizetabpage.ui:128
msgctxt "possizetabpage|FT_POSREFERENCE"
msgid "_Base point:"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:148
+#: cui/uiconfig/ui/possizetabpage.ui:182
#, fuzzy
msgctxt "possizetabpage|label1"
msgid "Position"
msgstr "स्थिति "
-#: cui/uiconfig/ui/possizetabpage.ui:190
+#: cui/uiconfig/ui/possizetabpage.ui:224
#, fuzzy
msgctxt "possizetabpage|FT_WIDTH"
msgid "Wi_dth:"
msgstr "चौड़ाई "
-#: cui/uiconfig/ui/possizetabpage.ui:206
+#: cui/uiconfig/ui/possizetabpage.ui:238
#, fuzzy
msgctxt "possizetabpage|FT_HEIGHT"
msgid "H_eight:"
msgstr "उंचाई"
-#: cui/uiconfig/ui/possizetabpage.ui:247
+#: cui/uiconfig/ui/possizetabpage.ui:276
#, fuzzy
msgctxt "possizetabpage|CBX_SCALE"
msgid "_Keep ratio"
msgstr "अनुपात रक्खो"
-#: cui/uiconfig/ui/possizetabpage.ui:279
+#: cui/uiconfig/ui/possizetabpage.ui:307
msgctxt "possizetabpage|FT_SIZEREFERENCE"
msgid "Base _point:"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:317
+#: cui/uiconfig/ui/possizetabpage.ui:361
msgctxt "possizetabpage|label2"
msgid "Size"
msgstr "नाप "
-#: cui/uiconfig/ui/possizetabpage.ui:356
+#: cui/uiconfig/ui/possizetabpage.ui:401
#, fuzzy
msgctxt "possizetabpage|TSB_POSPROTECT"
msgid "Positio_n"
msgstr "स्थिति "
-#: cui/uiconfig/ui/possizetabpage.ui:373
+#: cui/uiconfig/ui/possizetabpage.ui:418
#, fuzzy
msgctxt "possizetabpage|TSB_SIZEPROTECT"
msgid "_Size"
msgstr "नाप "
-#: cui/uiconfig/ui/possizetabpage.ui:397
+#: cui/uiconfig/ui/possizetabpage.ui:441
msgctxt "possizetabpage|label3"
msgid "Protect"
msgstr "संरक्षत करो"
-#: cui/uiconfig/ui/possizetabpage.ui:430
+#: cui/uiconfig/ui/possizetabpage.ui:475
msgctxt "possizetabpage|TSB_AUTOGROW_WIDTH"
msgid "_Fit width to text"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:447
+#: cui/uiconfig/ui/possizetabpage.ui:492
msgctxt "possizetabpage|TSB_AUTOGROW_HEIGHT"
msgid "Fit _height to text"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:471
+#: cui/uiconfig/ui/possizetabpage.ui:515
msgctxt "possizetabpage|label4"
msgid "Adapt"
msgstr "अनुरूप बनाओ"
@@ -10830,50 +10830,50 @@ msgctxt "recordnumberdialog|label2"
msgid "go to record"
msgstr ""
-#: cui/uiconfig/ui/rotationtabpage.ui:52
+#: cui/uiconfig/ui/rotationtabpage.ui:56
#, fuzzy
msgctxt "rotationtabpage|FT_POS_X"
msgid "Position _X:"
msgstr "स्थिति "
-#: cui/uiconfig/ui/rotationtabpage.ui:66
+#: cui/uiconfig/ui/rotationtabpage.ui:70
#, fuzzy
msgctxt "rotationtabpage|FT_POS_Y"
msgid "Position _Y:"
msgstr "स्थिति "
-#: cui/uiconfig/ui/rotationtabpage.ui:116
+#: cui/uiconfig/ui/rotationtabpage.ui:123
msgctxt "rotationtabpage|FT_POSPRESETS"
msgid "_Default settings:"
msgstr ""
-#: cui/uiconfig/ui/rotationtabpage.ui:130
+#: cui/uiconfig/ui/rotationtabpage.ui:151
msgctxt "rotationtabpage|CTL_RECT|tooltip_text"
msgid "Rotation point"
msgstr "घुमा पोआइंट ऽ"
-#: cui/uiconfig/ui/rotationtabpage.ui:155
+#: cui/uiconfig/ui/rotationtabpage.ui:178
#, fuzzy
msgctxt "rotationtabpage|label1"
msgid "Pivot Point"
msgstr "धुरी पोआइंट"
-#: cui/uiconfig/ui/rotationtabpage.ui:197
+#: cui/uiconfig/ui/rotationtabpage.ui:220
msgctxt "rotationtabpage|FT_ANGLE"
msgid "_Angle:"
msgstr ""
-#: cui/uiconfig/ui/rotationtabpage.ui:238
+#: cui/uiconfig/ui/rotationtabpage.ui:263
msgctxt "rotationtabpage|FT_ANGLEPRESETS"
msgid "Default _settings:"
msgstr ""
-#: cui/uiconfig/ui/rotationtabpage.ui:252
+#: cui/uiconfig/ui/rotationtabpage.ui:287
msgctxt "rotationtabpage|CTL_ANGLE|tooltip_text"
msgid "Rotation Angle"
msgstr "रोटेशन कोण"
-#: cui/uiconfig/ui/rotationtabpage.ui:277
+#: cui/uiconfig/ui/rotationtabpage.ui:314
msgctxt "rotationtabpage|label2"
msgid "Rotation Angle"
msgstr "रोटेशन कोण"
@@ -11264,54 +11264,54 @@ msgctxt "similaritysearchdialog|relaxbox"
msgid "_Combine"
msgstr "रलाओ"
-#: cui/uiconfig/ui/slantcornertabpage.ui:50
+#: cui/uiconfig/ui/slantcornertabpage.ui:70
msgctxt "slantcornertabpage|label5"
msgid "_X:"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:88
+#: cui/uiconfig/ui/slantcornertabpage.ui:110
msgctxt "slantcornertabpage|label6"
msgid "_Y:"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:125
+#: cui/uiconfig/ui/slantcornertabpage.ui:149
msgctxt "slantcornertabpage|label3"
msgid "Control Point 1"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:159
+#: cui/uiconfig/ui/slantcornertabpage.ui:183
#, fuzzy
msgctxt "slantcornertabpage|FT_RADIUS"
msgid "_Radius:"
msgstr "रेडियस "
-#: cui/uiconfig/ui/slantcornertabpage.ui:189
+#: cui/uiconfig/ui/slantcornertabpage.ui:214
#, fuzzy
msgctxt "slantcornertabpage|label1"
msgid "Corner Radius"
msgstr "नुक्कर रेडियस"
-#: cui/uiconfig/ui/slantcornertabpage.ui:223
+#: cui/uiconfig/ui/slantcornertabpage.ui:248
msgctxt "slantcornertabpage|FT_ANGLE"
msgid "_Angle:"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:253
+#: cui/uiconfig/ui/slantcornertabpage.ui:279
msgctxt "slantcornertabpage|label2"
msgid "Slant"
msgstr "त्रेह्‌ड"
-#: cui/uiconfig/ui/slantcornertabpage.ui:294
+#: cui/uiconfig/ui/slantcornertabpage.ui:320
msgctxt "slantcornertabpage|label4"
msgid "_X:"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:332
+#: cui/uiconfig/ui/slantcornertabpage.ui:360
msgctxt "slantcornertabpage|label7"
msgid "_Y:"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:369
+#: cui/uiconfig/ui/slantcornertabpage.ui:399
msgctxt "slantcornertabpage|label8"
msgid "Control Point 2"
msgstr ""
@@ -11609,127 +11609,127 @@ msgctxt "storedwebconnectiondialog|change"
msgid "_Change Password..."
msgstr "बदलो~ पासवर्ड... "
-#: cui/uiconfig/ui/swpossizepage.ui:74
+#: cui/uiconfig/ui/swpossizepage.ui:85
#, fuzzy
msgctxt "swpossizepage|widthft"
msgid "_Width:"
msgstr "चौड़ाई "
-#: cui/uiconfig/ui/swpossizepage.ui:111
+#: cui/uiconfig/ui/swpossizepage.ui:123
#, fuzzy
msgctxt "swpossizepage|heightft"
msgid "H_eight:"
msgstr "उंचाई"
-#: cui/uiconfig/ui/swpossizepage.ui:128
+#: cui/uiconfig/ui/swpossizepage.ui:141
#, fuzzy
msgctxt "swpossizepage|ratio"
msgid "_Keep ratio"
msgstr "अनुपात रक्खो"
-#: cui/uiconfig/ui/swpossizepage.ui:149
+#: cui/uiconfig/ui/swpossizepage.ui:162
msgctxt "swpossizepage|label2"
msgid "Size"
msgstr "नाप "
-#: cui/uiconfig/ui/swpossizepage.ui:205
+#: cui/uiconfig/ui/swpossizepage.ui:218
#, fuzzy
msgctxt "swpossizepage|topage"
msgid "To _page"
msgstr "सफे च"
-#: cui/uiconfig/ui/swpossizepage.ui:222
+#: cui/uiconfig/ui/swpossizepage.ui:234
#, fuzzy
msgctxt "swpossizepage|topara"
msgid "To paragrap_h"
msgstr "पैह्‌रा "
-#: cui/uiconfig/ui/swpossizepage.ui:238
+#: cui/uiconfig/ui/swpossizepage.ui:250
#, fuzzy
msgctxt "swpossizepage|tochar"
msgid "To cha_racter"
msgstr "वर्ण च "
-#: cui/uiconfig/ui/swpossizepage.ui:254
+#: cui/uiconfig/ui/swpossizepage.ui:266
#, fuzzy
msgctxt "swpossizepage|aschar"
msgid "_As character"
msgstr "जि'यां वर्ण"
-#: cui/uiconfig/ui/swpossizepage.ui:270
+#: cui/uiconfig/ui/swpossizepage.ui:282
#, fuzzy
msgctxt "swpossizepage|toframe"
msgid "To _frame"
msgstr "चगाठ "
-#: cui/uiconfig/ui/swpossizepage.ui:292
+#: cui/uiconfig/ui/swpossizepage.ui:304
msgctxt "swpossizepage|label1"
msgid "Anchor"
msgstr "ऐंकर"
-#: cui/uiconfig/ui/swpossizepage.ui:333
+#: cui/uiconfig/ui/swpossizepage.ui:344
#, fuzzy
msgctxt "swpossizepage|horiposft"
msgid "Hori_zontal:"
msgstr "आडा"
-#: cui/uiconfig/ui/swpossizepage.ui:347
+#: cui/uiconfig/ui/swpossizepage.ui:358
msgctxt "swpossizepage|horibyft"
msgid "b_y:"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:361
+#: cui/uiconfig/ui/swpossizepage.ui:372
msgctxt "swpossizepage|vertbyft"
msgid "_by:"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:375
+#: cui/uiconfig/ui/swpossizepage.ui:386
#, fuzzy
msgctxt "swpossizepage|horitoft"
msgid "_to:"
msgstr "धुर उप्पर:"
-#: cui/uiconfig/ui/swpossizepage.ui:421
+#: cui/uiconfig/ui/swpossizepage.ui:433
#, fuzzy
msgctxt "swpossizepage|vertposft"
msgid "_Vertical:"
msgstr "खड़ोतमां"
-#: cui/uiconfig/ui/swpossizepage.ui:457
+#: cui/uiconfig/ui/swpossizepage.ui:470
msgctxt "swpossizepage|verttoft"
msgid "t_o:"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:478
+#: cui/uiconfig/ui/swpossizepage.ui:492
msgctxt "swpossizepage|mirror"
msgid "_Mirror on even pages"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:495
+#: cui/uiconfig/ui/swpossizepage.ui:509
#, fuzzy
msgctxt "swpossizepage|followtextflow"
msgid "Follow te_xt flow"
msgstr "इबारत प्रवाह् दा पालन करो"
-#: cui/uiconfig/ui/swpossizepage.ui:518
+#: cui/uiconfig/ui/swpossizepage.ui:532
#, fuzzy
msgctxt "swpossizepage|label11"
msgid "Position"
msgstr "स्थिति "
-#: cui/uiconfig/ui/swpossizepage.ui:549
+#: cui/uiconfig/ui/swpossizepage.ui:563
#, fuzzy
msgctxt "swpossizepage|pos"
msgid "Positio_n"
msgstr "स्थिति "
-#: cui/uiconfig/ui/swpossizepage.ui:565
+#: cui/uiconfig/ui/swpossizepage.ui:579
#, fuzzy
msgctxt "swpossizepage|size"
msgid "_Size"
msgstr "नाप "
-#: cui/uiconfig/ui/swpossizepage.ui:587
+#: cui/uiconfig/ui/swpossizepage.ui:601
msgctxt "swpossizepage|label3"
msgid "Protect"
msgstr "संरक्षत करो"
@@ -11933,13 +11933,13 @@ msgctxt "textattrtabpage|label2"
msgid "Spacing to Borders"
msgstr "बाडरें बक्खी अंतरण"
-#: cui/uiconfig/ui/textattrtabpage.ui:425
+#: cui/uiconfig/ui/textattrtabpage.ui:423
#, fuzzy
msgctxt "textattrtabpage|TSB_FULL_WIDTH"
msgid "Full _width"
msgstr "पूरी-चौड़ाई "
-#: cui/uiconfig/ui/textattrtabpage.ui:448
+#: cui/uiconfig/ui/textattrtabpage.ui:446
#, fuzzy
msgctxt "textattrtabpage|label3"
msgid "Text Anchor"
diff --git a/source/dgo/filter/source/config/fragments/filters.po b/source/dgo/filter/source/config/fragments/filters.po
index b2efd5488cb..9e71cd0a6cb 100644
--- a/source/dgo/filter/source/config/fragments/filters.po
+++ b/source/dgo/filter/source/config/fragments/filters.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-16 16:54+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2016-12-01 13:48+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -465,8 +465,8 @@ msgctxt ""
"MS Word 2003 XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Word 2003 XML"
-msgstr "माइक्रोसाफ्ट वर्ड 2003 XML "
+msgid "Word 2003 XML"
+msgstr ""
#: MS_Word_2007_XML.xcu
msgctxt ""
@@ -1290,7 +1290,7 @@ msgctxt ""
"Calc MS Excel 2007 VBA XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Excel 2007-2016 XML (macro enabled)"
+msgid "Excel 2007–2019 (macro-enabled)"
msgstr ""
#: calc_MS_Excel_2007_XML.xcu
diff --git a/source/dgo/filter/source/config/fragments/types.po b/source/dgo/filter/source/config/fragments/types.po
index 271e467c75f..a2bdfc9b0b7 100644
--- a/source/dgo/filter/source/config/fragments/types.po
+++ b/source/dgo/filter/source/config/fragments/types.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-08 15:11+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2015-11-11 20:36+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -295,8 +295,8 @@ msgctxt ""
"writer_MS_Word_2003_XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Word 2003 XML"
-msgstr "माइक्रोसाफ्ट वर्ड 2003 XML "
+msgid "Word 2003 XML"
+msgstr ""
#: writer_MS_Word_2007_XML.xcu
msgctxt ""
diff --git a/source/dgo/fpicker/messages.po b/source/dgo/fpicker/messages.po
index 0b89f4b5932..96242d0879c 100644
--- a/source/dgo/fpicker/messages.po
+++ b/source/dgo/fpicker/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+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"
@@ -276,14 +276,13 @@ msgstr ""
#: fpicker/uiconfig/ui/foldernamedialog.ui:8
msgctxt "foldernamedialog|FolderNameDialog"
-msgid "Folder Name ?"
+msgid "Folder Name"
msgstr ""
#: fpicker/uiconfig/ui/foldernamedialog.ui:91
-#, fuzzy
msgctxt "foldernamedialog|label2"
-msgid "Na_me"
-msgstr "नांऽ "
+msgid "Na_me:"
+msgstr ""
#: fpicker/uiconfig/ui/foldernamedialog.ui:122
#, fuzzy
diff --git a/source/dgo/officecfg/registry/data/org/openoffice/Office/UI.po b/source/dgo/officecfg/registry/data/org/openoffice/Office/UI.po
index 3046a30dbaa..aafc3694d5d 100644
--- a/source/dgo/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/dgo/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-22 13:17+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2016-12-01 13:58+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -27038,8 +27038,8 @@ msgctxt ""
"..WriterCommands.UserInterface.Commands..uno:TextAttributes\n"
"Label\n"
"value.text"
-msgid "Text Attributes"
-msgstr "इबारत खासियतां "
+msgid "Text Attributes..."
+msgstr ""
#: WriterCommands.xcu
msgctxt ""
diff --git a/source/dgo/readlicense_oo/docs.po b/source/dgo/readlicense_oo/docs.po
index a6866aad69e..53cf22c850c 100644
--- a/source/dgo/readlicense_oo/docs.po
+++ b/source/dgo/readlicense_oo/docs.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-04-17 15:54+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2016-03-11 00:38+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -116,7 +116,7 @@ msgctxt ""
"readme.xrm\n"
"macxiOSX\n"
"readmeitem.text"
-msgid "MacOSX 10.8 (Mountain Lion) or higher"
+msgid "MacOSX 10.9 (Mavericks) or higher"
msgstr ""
#: readme.xrm
diff --git a/source/dgo/sc/messages.po b/source/dgo/sc/messages.po
index 455b4df4dfd..1e5d19198a0 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-12 14:40+0200\n"
"PO-Revision-Date: 2018-01-15 17:42+0000\n"
"Last-Translator: Christian Lohmaier <lohmaier+pootle@googlemail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1896,17 +1896,22 @@ msgid "Nested arrays are not supported."
msgstr "नेस्टेड तरतीबी-जमातां समर्थत नेईं."
#: sc/inc/globstr.hrc:390
+msgctxt "STR_ERR_LONG_BAD_ARRAY_CONTENT"
+msgid "Unsupported inline array content."
+msgstr ""
+
+#: sc/inc/globstr.hrc:391
#, fuzzy
msgctxt "STR_UNDO_TEXTTOCOLUMNS"
msgid "Text to Columns"
msgstr "स्तंभें च इबारत... (~x)"
-#: sc/inc/globstr.hrc:391
+#: sc/inc/globstr.hrc:392
msgctxt "STR_DOC_UPDATED"
msgid "Your spreadsheet has been updated with changes saved by other users."
msgstr "थुआढ़े स्प्रेडशीट को दूसरे बरतूनियें शा द्वारा बचाइयै रक्खी गेई परिवर्तनों के लेई अपडेट करी ओड़ेआ ऐ."
-#: sc/inc/globstr.hrc:392
+#: sc/inc/globstr.hrc:393
msgctxt "STR_DOC_WILLBESAVED"
msgid ""
"The spreadsheet must be saved now to activate sharing mode.\n"
@@ -1914,7 +1919,7 @@ msgid ""
"Do you want to continue?"
msgstr ""
-#: sc/inc/globstr.hrc:393
+#: sc/inc/globstr.hrc:394
msgctxt "STR_DOC_WILLNOTBESAVED"
msgid ""
"Already resolved merge conflicts will be lost and your changes to the shared spreadsheet will not be saved.\n"
@@ -1922,7 +1927,7 @@ msgid ""
"Do you want to continue?"
msgstr ""
-#: sc/inc/globstr.hrc:394
+#: sc/inc/globstr.hrc:395
msgctxt "STR_DOC_DISABLESHARED"
msgid ""
"Disabling shared mode of a spreadsheet hinders all other users of the shared spreadsheet to merge back their work.\n"
@@ -1930,7 +1935,7 @@ msgid ""
"Do you want to continue?"
msgstr ""
-#: sc/inc/globstr.hrc:395
+#: sc/inc/globstr.hrc:396
msgctxt "STR_DOC_NOLONGERSHARED"
msgid ""
"This spreadsheet is no longer in shared mode.\n"
@@ -1938,7 +1943,7 @@ msgid ""
"Save your spreadsheet to a separate file and merge your changes to the shared spreadsheet manually."
msgstr ""
-#: sc/inc/globstr.hrc:396
+#: sc/inc/globstr.hrc:397
msgctxt "STR_FILE_LOCKED_TRY_LATER"
msgid ""
"The shared spreadsheet file is locked due to a merge in progress by user: '%1'\n"
@@ -1946,7 +1951,7 @@ msgid ""
"Sharing mode of a locked file cannot be disabled. Try again later."
msgstr ""
-#: sc/inc/globstr.hrc:397
+#: sc/inc/globstr.hrc:398
msgctxt "STR_FILE_LOCKED_SAVE_LATER"
msgid ""
"The shared spreadsheet file is locked due to a merge in progress by user: '%1'\n"
@@ -1954,158 +1959,158 @@ msgid ""
"Try again later to save your changes."
msgstr ""
-#: sc/inc/globstr.hrc:398
+#: sc/inc/globstr.hrc:399
msgctxt "STR_UNKNOWN_USER"
msgid "Unknown User"
msgstr "अनजांता बरतूनी"
-#: sc/inc/globstr.hrc:399
+#: sc/inc/globstr.hrc:400
msgctxt "STR_SHAPE_AUTOSHAPE"
msgid "AutoShape"
msgstr "स्वतः आकार"
-#: sc/inc/globstr.hrc:400
+#: sc/inc/globstr.hrc:401
msgctxt "STR_SHAPE_RECTANGLE"
msgid "Rectangle"
msgstr "चकुंडा"
-#: sc/inc/globstr.hrc:401
+#: sc/inc/globstr.hrc:402
#, fuzzy
msgctxt "STR_SHAPE_LINE"
msgid "Line"
msgstr "जीवन "
-#: sc/inc/globstr.hrc:402
+#: sc/inc/globstr.hrc:403
msgctxt "STR_SHAPE_OVAL"
msgid "Oval"
msgstr "अंडकार\t"
-#: sc/inc/globstr.hrc:403
+#: sc/inc/globstr.hrc:404
msgctxt "STR_FORM_BUTTON"
msgid "Button"
msgstr "बटन "
-#: sc/inc/globstr.hrc:404
+#: sc/inc/globstr.hrc:405
#, fuzzy
msgctxt "STR_FORM_CHECKBOX"
msgid "Check Box"
msgstr "जाच खान्ना "
-#: sc/inc/globstr.hrc:405
+#: sc/inc/globstr.hrc:406
msgctxt "STR_FORM_OPTIONBUTTON"
msgid "Option Button"
msgstr "विकल्प बटन "
-#: sc/inc/globstr.hrc:406
+#: sc/inc/globstr.hrc:407
#, fuzzy
msgctxt "STR_FORM_LABEL"
msgid "Label"
msgstr "लेबल"
-#: sc/inc/globstr.hrc:407
+#: sc/inc/globstr.hrc:408
#, fuzzy
msgctxt "STR_FORM_LISTBOX"
msgid "List Box"
msgstr "सूची खान्ना "
-#: sc/inc/globstr.hrc:408
+#: sc/inc/globstr.hrc:409
#, fuzzy
msgctxt "STR_FORM_GROUPBOX"
msgid "Group Box"
msgstr "समूह् खान्ना"
-#: sc/inc/globstr.hrc:409
+#: sc/inc/globstr.hrc:410
#, fuzzy
msgctxt "STR_FORM_DROPDOWN"
msgid "Drop Down"
msgstr "ख'ल्लै गी छोड़ो "
-#: sc/inc/globstr.hrc:410
+#: sc/inc/globstr.hrc:411
msgctxt "STR_FORM_SPINNER"
msgid "Spinner"
msgstr "स्पिन्नर"
-#: sc/inc/globstr.hrc:411
+#: sc/inc/globstr.hrc:412
#, fuzzy
msgctxt "STR_FORM_SCROLLBAR"
msgid "Scroll Bar"
msgstr "स्क्रोल पट्टी "
-#: sc/inc/globstr.hrc:412
+#: sc/inc/globstr.hrc:413
msgctxt "STR_STYLE_FAMILY_CELL"
msgid "Cell Styles"
msgstr "सैल्ल शैलियां "
-#: sc/inc/globstr.hrc:413
+#: sc/inc/globstr.hrc:414
msgctxt "STR_STYLE_FAMILY_PAGE"
msgid "Page Styles"
msgstr "सफा शैलियां "
-#: sc/inc/globstr.hrc:414
+#: sc/inc/globstr.hrc:415
#, fuzzy
msgctxt "STR_ERR_DATAPILOTSOURCE"
msgid "Pivot table source data is invalid."
msgstr "दित्ती दी धारा अमान्य ऐ. "
-#: sc/inc/globstr.hrc:415
+#: sc/inc/globstr.hrc:416
msgctxt "STR_OPTIONS_WARN_SEPARATORS"
msgid "Because the current formula separator settings conflict with the locale, the formula separators have been reset to their default values."
msgstr "की जे चालू फार्मूला नखेड़ू स्थानी कन्नै झंजट पैदा करदा ऐ, फार्मूला नखेड़ुएं गी उंʼदे डिफाल्ट मुल्लें कन्नै परतियै सैट्ट कीता गेआ ऐ."
-#: sc/inc/globstr.hrc:416
+#: sc/inc/globstr.hrc:417
msgctxt "STR_UNDO_INSERT_CURRENT_DATE"
msgid "Insert Current Date"
msgstr "चालू तरीक प्रविश्ट करो (~m)"
-#: sc/inc/globstr.hrc:417
+#: sc/inc/globstr.hrc:418
msgctxt "STR_UNDO_INSERT_CURRENT_TIME"
msgid "Insert Current Time"
msgstr "चालू समां प्रविश्ट करो"
-#: sc/inc/globstr.hrc:418
+#: sc/inc/globstr.hrc:419
#, fuzzy
msgctxt "STR_MANAGE_NAMES"
msgid "Manage Names..."
msgstr "फलाऽ नांऽ "
-#: sc/inc/globstr.hrc:419
+#: sc/inc/globstr.hrc:420
msgctxt "STR_HEADER_NAME"
msgid "Name"
msgstr "नांऽ "
-#: sc/inc/globstr.hrc:420
+#: sc/inc/globstr.hrc:421
msgctxt "STR_HEADER_RANGE_OR_EXPR"
msgid "Range or formula expression"
msgstr ""
-#: sc/inc/globstr.hrc:421
+#: sc/inc/globstr.hrc:422
msgctxt "STR_HEADER_SCOPE"
msgid "Scope"
msgstr "प्रयोजन"
-#: sc/inc/globstr.hrc:422
+#: sc/inc/globstr.hrc:423
#, fuzzy
msgctxt "STR_MULTI_SELECT"
msgid "(multiple)"
msgstr "जर्ब-फल"
-#: sc/inc/globstr.hrc:423
+#: sc/inc/globstr.hrc:424
#, fuzzy
msgctxt "STR_GLOBAL_SCOPE"
msgid "Document (Global)"
msgstr "दस्तावेज अवस्था "
-#: sc/inc/globstr.hrc:424
+#: sc/inc/globstr.hrc:425
msgctxt "STR_ERR_NAME_EXISTS"
msgid "Invalid name. Already in use for the selected scope."
msgstr ""
-#: sc/inc/globstr.hrc:425
+#: sc/inc/globstr.hrc:426
msgctxt "STR_ERR_NAME_INVALID"
msgid "Invalid name. Only use letters, numbers and underscore."
msgstr ""
-#: sc/inc/globstr.hrc:426
+#: sc/inc/globstr.hrc:427
msgctxt "STR_UNSAVED_EXT_REF"
msgid ""
"This Document contains external references to unsaved documents.\n"
@@ -2113,227 +2118,227 @@ msgid ""
"Do you want to continue?"
msgstr ""
-#: sc/inc/globstr.hrc:427
+#: sc/inc/globstr.hrc:428
msgctxt "STR_CLOSE_WITH_UNSAVED_REFS"
msgid "This Document is referenced by another document and not yet saved. Closing it without saving will result in data loss."
msgstr ""
-#: sc/inc/globstr.hrc:428
+#: sc/inc/globstr.hrc:429
msgctxt "STR_HEADER_RANGE"
msgid "Range"
msgstr "फलाऽ"
-#: sc/inc/globstr.hrc:429
+#: sc/inc/globstr.hrc:430
msgctxt "STR_HEADER_COND"
msgid "First Condition"
msgstr ""
-#: sc/inc/globstr.hrc:430
+#: sc/inc/globstr.hrc:431
#, fuzzy
msgctxt "STR_COND_CONDITION"
msgid "Cell value is"
msgstr "सैल्ल मुल्ल ऐ"
-#: sc/inc/globstr.hrc:431
+#: sc/inc/globstr.hrc:432
msgctxt "STR_COND_COLORSCALE"
msgid "ColorScale"
msgstr ""
-#: sc/inc/globstr.hrc:432
+#: sc/inc/globstr.hrc:433
msgctxt "STR_COND_DATABAR"
msgid "DataBar"
msgstr ""
-#: sc/inc/globstr.hrc:433
+#: sc/inc/globstr.hrc:434
msgctxt "STR_COND_ICONSET"
msgid "IconSet"
msgstr ""
-#: sc/inc/globstr.hrc:434
+#: sc/inc/globstr.hrc:435
#, fuzzy
msgctxt "STR_COND_BETWEEN"
msgid "between"
msgstr "बश्कार"
-#: sc/inc/globstr.hrc:435
+#: sc/inc/globstr.hrc:436
#, fuzzy
msgctxt "STR_COND_NOTBETWEEN"
msgid "not between"
msgstr "बश्कार नेईं "
-#: sc/inc/globstr.hrc:436
+#: sc/inc/globstr.hrc:437
msgctxt "STR_COND_UNIQUE"
msgid "unique"
msgstr ""
-#: sc/inc/globstr.hrc:437
+#: sc/inc/globstr.hrc:438
msgctxt "STR_COND_DUPLICATE"
msgid "duplicate"
msgstr "नकल"
-#: sc/inc/globstr.hrc:438
+#: sc/inc/globstr.hrc:439
#, fuzzy
msgctxt "STR_COND_FORMULA"
msgid "Formula is"
msgstr "फार्मूला ऐ"
-#: sc/inc/globstr.hrc:439
+#: sc/inc/globstr.hrc:440
msgctxt "STR_COND_TOP10"
msgid "Top Elements"
msgstr ""
-#: sc/inc/globstr.hrc:440
+#: sc/inc/globstr.hrc:441
msgctxt "STR_COND_BOTTOM10"
msgid "Bottom Elements"
msgstr ""
-#: sc/inc/globstr.hrc:441
+#: sc/inc/globstr.hrc:442
msgctxt "STR_COND_TOP_PERCENT"
msgid "Top Percent"
msgstr ""
-#: sc/inc/globstr.hrc:442
+#: sc/inc/globstr.hrc:443
msgctxt "STR_COND_DATE"
msgid "Date is"
msgstr ""
-#: sc/inc/globstr.hrc:443
+#: sc/inc/globstr.hrc:444
msgctxt "STR_COND_BOTTOM_PERCENT"
msgid "Bottom Percent"
msgstr ""
-#: sc/inc/globstr.hrc:444
+#: sc/inc/globstr.hrc:445
msgctxt "STR_COND_ABOVE_AVERAGE"
msgid "Above Average"
msgstr ""
-#: sc/inc/globstr.hrc:445
+#: sc/inc/globstr.hrc:446
msgctxt "STR_COND_BELOW_AVERAGE"
msgid "Below Average"
msgstr ""
-#: sc/inc/globstr.hrc:446
+#: sc/inc/globstr.hrc:447
msgctxt "STR_COND_ABOVE_EQUAL_AVERAGE"
msgid "Above or equal Average"
msgstr ""
-#: sc/inc/globstr.hrc:447
+#: sc/inc/globstr.hrc:448
msgctxt "STR_COND_BELOW_EQUAL_AVERAGE"
msgid "Below or equal Average"
msgstr ""
-#: sc/inc/globstr.hrc:448
+#: sc/inc/globstr.hrc:449
#, fuzzy
msgctxt "STR_COND_ERROR"
msgid "an Error code"
msgstr "गल्ती कोड "
-#: sc/inc/globstr.hrc:449
+#: sc/inc/globstr.hrc:450
#, fuzzy
msgctxt "STR_COND_NOERROR"
msgid "not an Error code"
msgstr "गल्ती कोड "
-#: sc/inc/globstr.hrc:450
+#: sc/inc/globstr.hrc:451
msgctxt "STR_COND_BEGINS_WITH"
msgid "Begins with"
msgstr "कन्नै शुरू होंदा ऐ"
-#: sc/inc/globstr.hrc:451
+#: sc/inc/globstr.hrc:452
msgctxt "STR_COND_ENDS_WITH"
msgid "Ends with"
msgstr "कन्नै समाप्त होंदा ऐ"
-#: sc/inc/globstr.hrc:452
+#: sc/inc/globstr.hrc:453
#, fuzzy
msgctxt "STR_COND_CONTAINS"
msgid "Contains"
msgstr "च होंदा ऐ "
-#: sc/inc/globstr.hrc:453
+#: sc/inc/globstr.hrc:454
msgctxt "STR_COND_NOT_CONTAINS"
msgid "Not Contains"
msgstr ""
-#: sc/inc/globstr.hrc:454
+#: sc/inc/globstr.hrc:455
#, fuzzy
msgctxt "STR_COND_TODAY"
msgid "today"
msgstr "अज्ज "
-#: sc/inc/globstr.hrc:455
+#: sc/inc/globstr.hrc:456
#, fuzzy
msgctxt "STR_COND_YESTERDAY"
msgid "yesterday"
msgstr "पिछले कल्ल,"
-#: sc/inc/globstr.hrc:456
+#: sc/inc/globstr.hrc:457
msgctxt "STR_COND_TOMORROW"
msgid "tomorrow"
msgstr ""
-#: sc/inc/globstr.hrc:457
+#: sc/inc/globstr.hrc:458
msgctxt "STR_COND_LAST7DAYS"
msgid "in the last 7 days"
msgstr ""
-#: sc/inc/globstr.hrc:458
+#: sc/inc/globstr.hrc:459
msgctxt "STR_COND_THISWEEK"
msgid "this week"
msgstr ""
-#: sc/inc/globstr.hrc:459
+#: sc/inc/globstr.hrc:460
msgctxt "STR_COND_LASTWEEK"
msgid "last week"
msgstr ""
-#: sc/inc/globstr.hrc:460
+#: sc/inc/globstr.hrc:461
msgctxt "STR_COND_NEXTWEEK"
msgid "next week"
msgstr ""
-#: sc/inc/globstr.hrc:461
+#: sc/inc/globstr.hrc:462
msgctxt "STR_COND_THISMONTH"
msgid "this month"
msgstr ""
-#: sc/inc/globstr.hrc:462
+#: sc/inc/globstr.hrc:463
msgctxt "STR_COND_LASTMONTH"
msgid "last month"
msgstr ""
-#: sc/inc/globstr.hrc:463
+#: sc/inc/globstr.hrc:464
msgctxt "STR_COND_NEXTMONTH"
msgid "next month"
msgstr ""
-#: sc/inc/globstr.hrc:464
+#: sc/inc/globstr.hrc:465
msgctxt "STR_COND_THISYEAR"
msgid "this year"
msgstr ""
-#: sc/inc/globstr.hrc:465
+#: sc/inc/globstr.hrc:466
msgctxt "STR_COND_LASTYEAR"
msgid "last year"
msgstr ""
-#: sc/inc/globstr.hrc:466
+#: sc/inc/globstr.hrc:467
msgctxt "STR_COND_NEXTYEAR"
msgid "next year"
msgstr ""
-#: sc/inc/globstr.hrc:467
+#: sc/inc/globstr.hrc:468
#, fuzzy
msgctxt "STR_COND_AND"
msgid "and"
msgstr "ते "
-#: sc/inc/globstr.hrc:468
+#: sc/inc/globstr.hrc:469
msgctxt "STR_ERR_CONDFORMAT_PROTECTED"
msgid "Conditional Formats can not be created, deleted or changed in protected sheets."
msgstr ""
-#: sc/inc/globstr.hrc:469
+#: sc/inc/globstr.hrc:470
msgctxt "STR_EDIT_EXISTING_COND_FORMATS"
msgid ""
"The selected cell already contains conditional formatting. You can either edit the existing conditional format or you define a new overlapping conditional format.\n"
@@ -2341,7 +2346,7 @@ msgid ""
" Do you want to edit the existing conditional format?"
msgstr ""
-#: sc/inc/globstr.hrc:470
+#: sc/inc/globstr.hrc:471
msgctxt "STR_QUERY_FORMULA_RECALC_ONLOAD_ODS"
msgid ""
"This document was last saved by an application other than %PRODUCTNAME. Some formula cells may produce different results when recalculated.\n"
@@ -2349,7 +2354,7 @@ msgid ""
"Do you want to recalculate all formula cells in this document now?"
msgstr ""
-#: sc/inc/globstr.hrc:471
+#: sc/inc/globstr.hrc:472
msgctxt "STR_QUERY_FORMULA_RECALC_ONLOAD_XLS"
msgid ""
"This document was last saved by Excel. Some formula cells may produce different results when recalculated.\n"
@@ -2357,83 +2362,83 @@ msgid ""
"Do you want to recalculate all formula cells now?"
msgstr ""
-#: sc/inc/globstr.hrc:472
+#: sc/inc/globstr.hrc:473
msgctxt "STR_NO_INSERT_DELETE_OVER_PIVOT_TABLE"
msgid "You cannot insert or delete cells when the affected range intersects with pivot table."
msgstr ""
-#: sc/inc/globstr.hrc:473
+#: sc/inc/globstr.hrc:474
msgctxt "STR_DPFIELD_GROUP_BY_SECONDS"
msgid "Seconds"
msgstr "सकिंट (बहु.) "
-#: sc/inc/globstr.hrc:474
+#: sc/inc/globstr.hrc:475
msgctxt "STR_DPFIELD_GROUP_BY_MINUTES"
msgid "Minutes"
msgstr "मिनट (बहु.) "
-#: sc/inc/globstr.hrc:475
+#: sc/inc/globstr.hrc:476
msgctxt "STR_DPFIELD_GROUP_BY_HOURS"
msgid "Hours"
msgstr "घैंटे"
-#: sc/inc/globstr.hrc:476
+#: sc/inc/globstr.hrc:477
#, fuzzy
msgctxt "STR_DPFIELD_GROUP_BY_DAYS"
msgid "Days"
msgstr "दिन (बहु.)"
-#: sc/inc/globstr.hrc:477
+#: sc/inc/globstr.hrc:478
#, fuzzy
msgctxt "STR_DPFIELD_GROUP_BY_MONTHS"
msgid "Months"
msgstr "म्हीने "
-#: sc/inc/globstr.hrc:478
+#: sc/inc/globstr.hrc:479
msgctxt "STR_DPFIELD_GROUP_BY_QUARTERS"
msgid "Quarters"
msgstr ""
-#: sc/inc/globstr.hrc:479
+#: sc/inc/globstr.hrc:480
msgctxt "STR_DPFIELD_GROUP_BY_YEARS"
msgid "Years"
msgstr "बʼरे"
-#: sc/inc/globstr.hrc:480
+#: sc/inc/globstr.hrc:481
#, fuzzy
msgctxt "STR_INVALIDVAL"
msgid "Invalid target value."
msgstr "अमान्य लक्ष्य मुल्ल"
-#: sc/inc/globstr.hrc:481
+#: sc/inc/globstr.hrc:482
#, fuzzy
msgctxt "STR_INVALIDVAR"
msgid "Undefined name for variable cell."
msgstr "बदलनशील सैल्ल लेई अपरिभाशत नांऽ. "
-#: sc/inc/globstr.hrc:482
+#: sc/inc/globstr.hrc:483
#, fuzzy
msgctxt "STR_INVALIDFORM"
msgid "Undefined name as formula cell."
msgstr "फार्मूला सैल्ल दे रूपै च अपरिभाशत नांऽ. "
-#: sc/inc/globstr.hrc:483
+#: sc/inc/globstr.hrc:484
msgctxt "STR_NOFORMULA"
msgid "Formula cell must contain a formula."
msgstr ""
-#: sc/inc/globstr.hrc:484
+#: sc/inc/globstr.hrc:485
#, fuzzy
msgctxt "STR_INVALIDINPUT"
msgid "Invalid input."
msgstr " अमान्य इंडैक्स. "
-#: sc/inc/globstr.hrc:485
+#: sc/inc/globstr.hrc:486
msgctxt "STR_INVALIDCONDITION"
msgid "Invalid condition."
msgstr ""
-#: sc/inc/globstr.hrc:486
+#: sc/inc/globstr.hrc:487
msgctxt "STR_QUERYREMOVE"
msgid ""
"Should the entry\n"
@@ -2441,139 +2446,139 @@ msgid ""
"be deleted?"
msgstr ""
-#: sc/inc/globstr.hrc:487
+#: sc/inc/globstr.hrc:488
msgctxt "STR_COPYLIST"
msgid "Copy List"
msgstr ""
-#: sc/inc/globstr.hrc:488
+#: sc/inc/globstr.hrc:489
msgctxt "STR_COPYFROM"
msgid "List from"
msgstr ""
-#: sc/inc/globstr.hrc:489
+#: sc/inc/globstr.hrc:490
msgctxt "STR_COPYERR"
msgid "Cells without text have been ignored."
msgstr ""
-#: sc/inc/globstr.hrc:490
+#: sc/inc/globstr.hrc:491
#, c-format
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%s-click to follow hyperlink:"
msgstr ""
-#: sc/inc/globstr.hrc:491
+#: sc/inc/globstr.hrc:492
msgctxt "STR_CLICKHYPERLINK"
msgid "click to open hyperlink:"
msgstr ""
-#: sc/inc/globstr.hrc:492
+#: sc/inc/globstr.hrc:493
msgctxt "STR_PRINT_PREVIEW_NODATA"
msgid "No Data"
msgstr ""
-#: sc/inc/globstr.hrc:493
+#: sc/inc/globstr.hrc:494
msgctxt "STR_PRINT_PREVIEW_EMPTY_RANGE"
msgid "Print Range Empty"
msgstr ""
-#: sc/inc/globstr.hrc:494
+#: sc/inc/globstr.hrc:495
#, fuzzy
msgctxt "STR_UNDO_CONDFORMAT"
msgid "Conditional Format"
msgstr "सशर्त रूप-रचनाकरण "
-#: sc/inc/globstr.hrc:495
+#: sc/inc/globstr.hrc:496
#, fuzzy
msgctxt "STR_UNDO_CONDFORMAT_LIST"
msgid "Conditional Formats"
msgstr "सशर्त रूप-रचनाकरण "
-#: sc/inc/globstr.hrc:496
+#: sc/inc/globstr.hrc:497
msgctxt "STR_UNDO_FORMULA_TO_VALUE"
msgid "Convert Formula To Value"
msgstr ""
-#: sc/inc/globstr.hrc:497
+#: sc/inc/globstr.hrc:498
msgctxt "STR_UNQUOTED_STRING"
msgid "Strings without quotes are interpreted as column/row labels."
msgstr ""
-#: sc/inc/globstr.hrc:498
+#: sc/inc/globstr.hrc:499
msgctxt "STR_ENTER_VALUE"
msgid "Enter a value!"
msgstr ""
-#: sc/inc/globstr.hrc:499
+#: sc/inc/globstr.hrc:500
msgctxt "STR_TABLE_COUNT"
msgid "Sheet %1 of %2"
msgstr ""
-#: sc/inc/globstr.hrc:500
+#: sc/inc/globstr.hrc:501
msgctxt "STR_FUNCTIONS_FOUND"
msgid "%1 and %2 more"
msgstr ""
-#: sc/inc/globstr.hrc:501
+#: sc/inc/globstr.hrc:502
#, fuzzy
msgctxt "STR_GENERAL"
msgid "General"
msgstr "सधारण"
-#: sc/inc/globstr.hrc:502
+#: sc/inc/globstr.hrc:503
#, fuzzy
msgctxt "STR_NUMBER"
msgid "Number"
msgstr "संख्या"
-#: sc/inc/globstr.hrc:503
+#: sc/inc/globstr.hrc:504
msgctxt "STR_PERCENT"
msgid "Percent"
msgstr "फीसदी"
-#: sc/inc/globstr.hrc:504
+#: sc/inc/globstr.hrc:505
#, fuzzy
msgctxt "STR_CURRENCY"
msgid "Currency"
msgstr "मुद्रा "
-#: sc/inc/globstr.hrc:505
+#: sc/inc/globstr.hrc:506
msgctxt "STR_DATE"
msgid "Date"
msgstr "तरीक "
-#: sc/inc/globstr.hrc:506
+#: sc/inc/globstr.hrc:507
msgctxt "STR_TIME"
msgid "Time"
msgstr "समां"
-#: sc/inc/globstr.hrc:507
+#: sc/inc/globstr.hrc:508
msgctxt "STR_SCIENTIFIC"
msgid "Scientific"
msgstr ""
-#: sc/inc/globstr.hrc:508
+#: sc/inc/globstr.hrc:509
#, fuzzy
msgctxt "STR_FRACTION"
msgid "Fraction"
msgstr "फंक्शन "
-#: sc/inc/globstr.hrc:509
+#: sc/inc/globstr.hrc:510
msgctxt "STR_BOOLEAN_VALUE"
msgid "Boolean Value"
msgstr ""
-#: sc/inc/globstr.hrc:510
+#: sc/inc/globstr.hrc:511
msgctxt "STR_TEXT"
msgid "Text"
msgstr "इबारत "
-#: sc/inc/globstr.hrc:511
+#: sc/inc/globstr.hrc:512
msgctxt "STR_QUERY_PIVOTTABLE_DELTAB"
msgid "The selected sheet(s) contain source data of related pivot tables that will be lost. Are you sure you want to delete the selected sheet(s)?"
msgstr ""
-#: sc/inc/globstr.hrc:512
+#: sc/inc/globstr.hrc:513
msgctxt "STR_ERR_NAME_INVALID_CELL_REF"
msgid "Invalid name. Reference to a cell, or a range of cells not allowed."
msgstr ""
@@ -10785,8 +10790,8 @@ msgstr "अवस्था "
#: sc/inc/scfuncs.hrc:3010
msgctxt "SC_OPCODE_T_TEST"
-msgid "Mode specifies the number of distribution tails to return. 1= one-tailed, 2 = two-tailed distribution"
-msgstr "एह् अवस्था बंडांदरा दुंबें दी ओह् संख्या निश्चत करदी ऐ,जेह्‌ड़ी परताने लेई ऐ. 1=इक-दुंबी, 2 = दो-दुंबी बंडांदरा"
+msgid "Mode specifies the number of distribution tails to return. 1 = one-tailed, 2 = two-tailed distribution"
+msgstr ""
#: sc/inc/scfuncs.hrc:3011
msgctxt "SC_OPCODE_T_TEST"
@@ -10832,8 +10837,8 @@ msgstr "अवस्था "
#: sc/inc/scfuncs.hrc:3024
msgctxt "SC_OPCODE_T_TEST_MS"
-msgid "Mode specifies the number of distribution tails to return. 1= one-tailed, 2 = two-tailed distribution"
-msgstr "एह् अवस्था बंडांदरा दुंबें दी ओह् संख्या निश्चत करदी ऐ,जेह्‌ड़ी परताने लेई ऐ. 1=इक-दुंबी, 2 = दो-दुंबी बंडांदरा"
+msgid "Mode specifies the number of distribution tails to return. 1 = one-tailed, 2 = two-tailed distribution"
+msgstr ""
#: sc/inc/scfuncs.hrc:3025
msgctxt "SC_OPCODE_T_TEST_MS"
@@ -18718,22 +18723,22 @@ msgctxt "mergecellsdialog|MergeCellsDialog"
msgid "Merge Cells"
msgstr " सैल्लें दा विलय करो\t"
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:81
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:84
msgctxt "mergecellsdialog|label"
msgid "Some cells are not empty."
msgstr ""
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:96
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:99
msgctxt "mergecellsdialog|move-cells-radio"
msgid "Move the contents of the hidden cells into the first cell"
msgstr ""
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:112
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:115
msgctxt "mergecellsdialog|empty-cells-radio"
msgid "Empty the contents of the hidden cells"
msgstr ""
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:128
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:131
msgctxt "mergecellsdialog|keep-content-radio"
msgid "Keep the contents of the hidden cells"
msgstr ""
diff --git a/source/dgo/sd/messages.po b/source/dgo/sd/messages.po
index a67de0a58a9..201a2bf2cb2 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+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"
@@ -13,179 +13,179 @@ msgstr ""
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-#: sd/inc/DocumentRenderer.hrc:29
+#: sd/inc/DocumentRenderer.hrc:27
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Slides"
msgstr "स्लाइडां "
-#: sd/inc/DocumentRenderer.hrc:30
+#: sd/inc/DocumentRenderer.hrc:28
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Handouts"
msgstr "प्रचार पत्तरे "
-#: sd/inc/DocumentRenderer.hrc:31
+#: sd/inc/DocumentRenderer.hrc:29
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Notes"
msgstr "नोट (बहु.) "
-#: sd/inc/DocumentRenderer.hrc:32
+#: sd/inc/DocumentRenderer.hrc:30
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Outline"
msgstr "रूपरेखा "
-#: sd/inc/DocumentRenderer.hrc:37
+#: sd/inc/DocumentRenderer.hrc:35
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "According to layout"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:38
+#: sd/inc/DocumentRenderer.hrc:36
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "1"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:39
+#: sd/inc/DocumentRenderer.hrc:37
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "2"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:40
+#: sd/inc/DocumentRenderer.hrc:38
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "3"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:41
+#: sd/inc/DocumentRenderer.hrc:39
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "4"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:42
+#: sd/inc/DocumentRenderer.hrc:40
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "6"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:43
+#: sd/inc/DocumentRenderer.hrc:41
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "9"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:48
+#: sd/inc/DocumentRenderer.hrc:46
msgctxt "STR_IMPRESS_PRINT_UI_ORDER_CHOICES"
msgid "Left to right, then down"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:49
+#: sd/inc/DocumentRenderer.hrc:47
msgctxt "STR_IMPRESS_PRINT_UI_ORDER_CHOICES"
msgid "Top to bottom, then right"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:54
+#: sd/inc/DocumentRenderer.hrc:52
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Original colors"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:55
+#: sd/inc/DocumentRenderer.hrc:53
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Grayscale"
msgstr "ग्रेनापक(बहु.) "
-#: sd/inc/DocumentRenderer.hrc:56
+#: sd/inc/DocumentRenderer.hrc:54
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Black & white"
msgstr "काला ते ~चिट्टा"
-#: sd/inc/DocumentRenderer.hrc:61
+#: sd/inc/DocumentRenderer.hrc:59
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Original size"
msgstr "मौलिक नाप "
-#: sd/inc/DocumentRenderer.hrc:62
+#: sd/inc/DocumentRenderer.hrc:60
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Fit to printable page"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:63
+#: sd/inc/DocumentRenderer.hrc:61
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Distribute on multiple sheets of paper"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:64
+#: sd/inc/DocumentRenderer.hrc:62
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Tile sheet of paper with repeated slides"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:69
+#: sd/inc/DocumentRenderer.hrc:67
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Original size"
msgstr "मौलिक नाप "
-#: sd/inc/DocumentRenderer.hrc:70
+#: sd/inc/DocumentRenderer.hrc:68
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Fit to printable page"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:71
+#: sd/inc/DocumentRenderer.hrc:69
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Distribute on multiple sheets of paper"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:72
+#: sd/inc/DocumentRenderer.hrc:70
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Tile sheet of paper with repeated pages"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:77
+#: sd/inc/DocumentRenderer.hrc:75
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "All pages"
msgstr "सब सफे"
-#: sd/inc/DocumentRenderer.hrc:78
+#: sd/inc/DocumentRenderer.hrc:76
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "Front sides / right pages"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:79
+#: sd/inc/DocumentRenderer.hrc:77
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "Back sides / left pages"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:84
+#: sd/inc/DocumentRenderer.hrc:82
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~All slides"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:85
+#: sd/inc/DocumentRenderer.hrc:83
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~Slides"
msgstr "स्लाइडां "
-#: sd/inc/DocumentRenderer.hrc:86
+#: sd/inc/DocumentRenderer.hrc:84
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Se~lection"
msgstr "चोन"
-#: sd/inc/DocumentRenderer.hrc:91
+#: sd/inc/DocumentRenderer.hrc:89
#, fuzzy
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~All pages"
msgstr "सब सफे"
-#: sd/inc/DocumentRenderer.hrc:92
+#: sd/inc/DocumentRenderer.hrc:90
#, fuzzy
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Pa~ges"
msgstr "सफेसफा "
-#: sd/inc/DocumentRenderer.hrc:93
+#: sd/inc/DocumentRenderer.hrc:91
#, fuzzy
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Se~lection"
diff --git a/source/dgo/svx/messages.po b/source/dgo/svx/messages.po
index 80f59b5eada..afeed4ad51a 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: 2018-05-16 16:53+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+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"
@@ -5554,7 +5554,7 @@ msgstr ""
#: svx/uiconfig/ui/safemodedialog.ui:432
msgctxt "safemodedialog|btn_create_zip"
-msgid "Create Zip Archive from User Profile"
+msgid "Archive User Profile"
msgstr ""
#: svx/uiconfig/ui/safemodedialog.ui:445
@@ -9258,9 +9258,9 @@ msgid "Red"
msgstr "सूहा "
#: include/svx/strings.hrc:565
-msgctxt "RID_SVXSTR_COLOR_VIOLET"
-msgid "Violet"
-msgstr "काशनी"
+msgctxt "RID_SVXSTR_COLOR_MAGENTA"
+msgid "Magenta"
+msgstr "गुलबासी"
#: include/svx/strings.hrc:566
msgctxt "RID_SVXSTR_COLOR_PURPLE"
@@ -9325,8 +9325,8 @@ msgid "Light Red"
msgstr ""
#: include/svx/strings.hrc:579
-msgctxt "RID_SVXSTR_COLOR_LIGHTVIOLET"
-msgid "Light Violet"
+msgctxt "RID_SVXSTR_COLOR_LIGHTMAGENTA"
+msgid "Light Magenta"
msgstr ""
#: include/svx/strings.hrc:580
@@ -9393,10 +9393,9 @@ msgid "Dark Red"
msgstr "गूढ़ा सूहा "
#: include/svx/strings.hrc:593
-#, fuzzy
-msgctxt "RID_SVXSTR_COLOR_DARKVIOLET1"
-msgid "Dark Violet"
-msgstr "गूढ़ा काशनी"
+msgctxt "RID_SVXSTR_COLOR_DARKMAGENTA"
+msgid "Dark Magenta"
+msgstr ""
#: include/svx/strings.hrc:594
msgctxt "RID_SVXSTR_COLOR_DARKPURPLE"
@@ -9430,55 +9429,55 @@ msgstr ""
#. Elements of the Tonal color palette
#: include/svx/strings.hrc:601
+msgctxt "RID_SVXSTR_COLOR_VIOLET"
+msgid "Violet"
+msgstr "काशनी"
+
+#: include/svx/strings.hrc:602
msgctxt "RID_SVXSTR_COLOR_VIOLET_OUG"
msgid "Violet (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:602
+#: include/svx/strings.hrc:603
msgctxt "RID_SVXSTR_COLOR_BLUE_OUG"
msgid "Blue (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:603
+#: include/svx/strings.hrc:604
msgctxt "RID_SVXSTR_COLOR_AZURE_OUG"
msgid "Azure (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:604
+#: include/svx/strings.hrc:605
msgctxt "RID_SVXSTR_COLOR_SPRINGGREEN_OUG"
msgid "Spring Green (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:605
+#: include/svx/strings.hrc:606
msgctxt "RID_SVXSTR_COLOR_GREEN_OUG"
msgid "Green (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:606
+#: include/svx/strings.hrc:607
msgctxt "RID_SVXSTR_COLOR_CHARTREUSEGREEN_OUG"
msgid "Chartreuse Green (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:607
+#: include/svx/strings.hrc:608
msgctxt "RID_SVXSTR_COLOR_ORANGE_OUG"
msgid "Orange (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:608
+#: include/svx/strings.hrc:609
msgctxt "RID_SVXSTR_COLOR_RED_OUG"
msgid "Red (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:609
+#: include/svx/strings.hrc:610
msgctxt "RID_SVXSTR_COLOR_ROSE_OUG"
msgid "Rose (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:610
-msgctxt "RID_SVXSTR_COLOR_MAGENTA"
-msgid "Magenta"
-msgstr "गुलबासी"
-
#: include/svx/strings.hrc:611
msgctxt "RID_SVXSTR_COLOR_AZURE"
msgid "Azure"
@@ -12692,13 +12691,13 @@ msgstr "सज्जा बिंदु तीर चिॕन्न"
#: include/svx/strings.hrc:1273
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_6"
-msgid "Check mark bullets"
-msgstr "मार्क चिॕन्न जाचो"
+msgid "Cross mark bullets"
+msgstr ""
#: include/svx/strings.hrc:1274
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_7"
-msgid "Tick mark bullets"
-msgstr "उजागरी टिक दे चि'न्न"
+msgid "Check mark bullets"
+msgstr ""
#: include/svx/strings.hrc:1275
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_0"
diff --git a/source/dgo/sw/messages.po b/source/dgo/sw/messages.po
index 285cb729aa4..c654893e6ce 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: 2018-05-22 13:17+0200\n"
+"POT-Creation-Date: 2018-06-12 14:41+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"
@@ -1213,13 +1213,13 @@ msgstr "उद्धरण "
#: sw/inc/strings.hrc:172
msgctxt "STR_POOLCOLL_TOX_ILLUSH"
-msgid "Illustration Index Heading"
-msgstr "द्रिश्टांत इंडैक्स सिरनांऽ "
+msgid "Figure Index Heading"
+msgstr ""
#: sw/inc/strings.hrc:173
msgctxt "STR_POOLCOLL_TOX_ILLUS1"
-msgid "Illustration Index 1"
-msgstr "द्रिश्टांत इंडैक्स1 "
+msgid "Figure Index 1"
+msgstr ""
#: sw/inc/strings.hrc:174
msgctxt "STR_POOLCOLL_TOX_OBJECTH"
@@ -3726,8 +3726,8 @@ msgstr "चीजें दा टेबल"
#: sw/inc/strings.hrc:672
msgctxt "STR_TOX_ILL"
-msgid "Illustration Index"
-msgstr "द्रिश्टांत इंडैक्स"
+msgid "Table of Figures"
+msgstr ""
#: sw/inc/strings.hrc:673
#, c-format
@@ -9750,80 +9750,80 @@ msgctxt "footnotepage|label5"
msgid "Continuation Notice"
msgstr "निरंतरता सूचना "
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:49
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:55
#, fuzzy
msgctxt "footnotesendnotestabpage|ftnntnum"
msgid "_Restart numbering"
msgstr "संख्याकरण परतियै शुरू करो"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:91
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:93
#, fuzzy
msgctxt "footnotesendnotestabpage|ftnoffset_label"
msgid "_Start at:"
msgstr "~पर शुरू करो "
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:112
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:111
msgctxt "footnotesendnotestabpage|ftnntnumfmt"
msgid "Custom _format"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:155
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:150
#, fuzzy
msgctxt "footnotesendnotestabpage|ftnsuffix_label"
msgid "Aft_er:"
msgstr "परैंत"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:199
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:188
#, fuzzy
msgctxt "footnotesendnotestabpage|ftnprefix_label"
msgid "Be_fore:"
msgstr "पैह्‌लें"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:228
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:212
msgctxt "footnotesendnotestabpage|ftnntattextend"
msgid "Collec_t at end of text"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:252
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:234
msgctxt "footnotesendnotestabpage|label1"
msgid "Footnotes"
msgstr "फुटनोट"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:289
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:271
msgctxt "footnotesendnotestabpage|endntattextend"
msgid "C_ollect at end of section"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:315
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:295
#, fuzzy
msgctxt "footnotesendnotestabpage|endntnum"
msgid "_Restart numbering"
msgstr "संख्याकरण परतियै शुरू करो"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:357
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:333
#, fuzzy
msgctxt "footnotesendnotestabpage|endoffset_label"
msgid "_Start at:"
msgstr "~पर शुरू करो "
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:378
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:351
msgctxt "footnotesendnotestabpage|endntnumfmt"
msgid "_Custom format"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:421
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:390
#, fuzzy
msgctxt "footnotesendnotestabpage|endsuffix_label"
msgid "Aft_er:"
msgstr "परैंत"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:465
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:428
#, fuzzy
msgctxt "footnotesendnotestabpage|endprefix_label"
msgid "Be_fore:"
msgstr "पैह्‌लें"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:500
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:458
msgctxt "footnotesendnotestabpage|label2"
msgid "Endnotes"
msgstr "खीरीनोट"
@@ -9855,29 +9855,29 @@ msgctxt "formatsectiondialog|notes"
msgid "Footnotes/Endnotes"
msgstr "फुटनोट/खीरीनोट"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:63
+#: sw/uiconfig/swriter/ui/formattablepage.ui:77
#, fuzzy
msgctxt "formattablepage|nameft"
msgid "_Name"
msgstr "नांऽ "
-#: sw/uiconfig/swriter/ui/formattablepage.ui:79
+#: sw/uiconfig/swriter/ui/formattablepage.ui:91
#, fuzzy
msgctxt "formattablepage|widthft"
msgid "W_idth"
msgstr "चौड़ाई "
-#: sw/uiconfig/swriter/ui/formattablepage.ui:110
+#: sw/uiconfig/swriter/ui/formattablepage.ui:120
msgctxt "formattablepage|relwidth"
msgid "Relati_ve"
msgstr ""
-#: sw/uiconfig/swriter/ui/formattablepage.ui:155
+#: sw/uiconfig/swriter/ui/formattablepage.ui:160
msgctxt "formattablepage|label45"
msgid "Properties"
msgstr "विशेशतां"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:194
+#: sw/uiconfig/swriter/ui/formattablepage.ui:195
#, fuzzy
msgctxt "formattablepage|leftft"
msgid "Lef_t"
@@ -9889,71 +9889,71 @@ msgctxt "formattablepage|rightft"
msgid "Ri_ght"
msgstr "सज्जा"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:228
+#: sw/uiconfig/swriter/ui/formattablepage.ui:226
#, fuzzy
msgctxt "formattablepage|aboveft"
msgid "_Above"
msgstr "उप्पर"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:245
+#: sw/uiconfig/swriter/ui/formattablepage.ui:241
#, fuzzy
msgctxt "formattablepage|belowft"
msgid "_Below"
msgstr "खॕल्ल"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:320
+#: sw/uiconfig/swriter/ui/formattablepage.ui:311
#, fuzzy
msgctxt "formattablepage|label46"
msgid "Spacing"
msgstr "थाह्‌रबंदी "
-#: sw/uiconfig/swriter/ui/formattablepage.ui:362
+#: sw/uiconfig/swriter/ui/formattablepage.ui:349
#, fuzzy
msgctxt "formattablepage|full"
msgid "A_utomatic"
msgstr "स्वचलत"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:380
+#: sw/uiconfig/swriter/ui/formattablepage.ui:365
#, fuzzy
msgctxt "formattablepage|left"
msgid "_Left"
msgstr "खब्बा"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:398
+#: sw/uiconfig/swriter/ui/formattablepage.ui:381
#, fuzzy
msgctxt "formattablepage|fromleft"
msgid "_From left"
msgstr "खब्बेआ"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:416
+#: sw/uiconfig/swriter/ui/formattablepage.ui:397
#, fuzzy
msgctxt "formattablepage|right"
msgid "R_ight"
msgstr "सज्जा"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:435
+#: sw/uiconfig/swriter/ui/formattablepage.ui:413
msgctxt "formattablepage|center"
msgid "_Center"
msgstr "_Centre"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:453
+#: sw/uiconfig/swriter/ui/formattablepage.ui:429
#, fuzzy
msgctxt "formattablepage|free"
msgid "_Manual"
msgstr " दस्ती"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:478
+#: sw/uiconfig/swriter/ui/formattablepage.ui:452
msgctxt "formattablepage|label43"
msgid "Alignment"
msgstr "सेधीकरण"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:522
+#: sw/uiconfig/swriter/ui/formattablepage.ui:491
#, fuzzy
msgctxt "formattablepage|label53"
msgid "Text _direction"
msgstr "इबारत~ दिशा "
-#: sw/uiconfig/swriter/ui/formattablepage.ui:553
+#: sw/uiconfig/swriter/ui/formattablepage.ui:519
#, fuzzy
msgctxt "formattablepage|label44"
msgid "Properties "
@@ -10340,22 +10340,27 @@ msgctxt "headerfootermenu|insert_pagenumber"
msgid "Insert Page Number"
msgstr ""
-#: sw/uiconfig/swriter/ui/indentpage.ui:52
+#: sw/uiconfig/swriter/ui/headerfootermenu.ui:42
+msgctxt "headerfootermenu|insert_pagecount"
+msgid "Insert Page Count"
+msgstr ""
+
+#: sw/uiconfig/swriter/ui/indentpage.ui:57
msgctxt "indentpage|label1"
msgid "_Before section"
msgstr ""
-#: sw/uiconfig/swriter/ui/indentpage.ui:67
+#: sw/uiconfig/swriter/ui/indentpage.ui:71
msgctxt "indentpage|label3"
msgid "_After section"
msgstr ""
-#: sw/uiconfig/swriter/ui/indentpage.ui:113
+#: sw/uiconfig/swriter/ui/indentpage.ui:115
msgctxt "indentpage|label2"
msgid "Indent"
msgstr "इंडैंट"
-#: sw/uiconfig/swriter/ui/indentpage.ui:142
+#: sw/uiconfig/swriter/ui/indentpage.ui:155
msgctxt "indentpage|preview-atkobject"
msgid "Example"
msgstr "उदाहरण"
@@ -14181,7 +14186,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:68
msgctxt "optcompatpage|format"
-msgid "MS Word-compatible trailing blanks"
+msgid "Word-compatible trailing blanks"
msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:69
@@ -14191,7 +14196,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:70
msgctxt "optcompatpage|format"
-msgid "A database field (e.g., MailMerge) with empty value hides its paragraph"
+msgid "Hide paragraphs of database fields (e.g., mail merge) with an empty value"
msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:71
@@ -17129,134 +17134,134 @@ msgctxt "tableproperties|background"
msgid "Background"
msgstr "पछौकड़"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:25
-msgctxt "tabletextflowpage|liststore1"
-msgid "Horizontal"
-msgstr "आडा"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:29
-msgctxt "tabletextflowpage|liststore1"
-msgid "Vertical"
-msgstr "खड़ोतमां"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:33
-msgctxt "tabletextflowpage|liststore1"
-msgid "Use superordinate object settings"
-msgstr "सुपर आर्डीनेट सैटिङ बरतो"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:47
-msgctxt "tabletextflowpage|liststore2"
-msgid "Top"
-msgstr "धुर-उप्पर"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:51
-msgctxt "tabletextflowpage|liststore2"
-msgid "Centered"
-msgstr "Centred"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:55
-msgctxt "tabletextflowpage|liststore2"
-msgid "Bottom"
-msgstr "थल्ला"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:97
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:53
#, fuzzy
msgctxt "tabletextflowpage|break"
msgid "_Break"
msgstr "~ खंडन करो\t"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:112
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:68
#, fuzzy
msgctxt "tabletextflowpage|page"
msgid "_Page"
msgstr "पेजर "
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:132
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:87
#, fuzzy
msgctxt "tabletextflowpage|column"
msgid "Col_umn"
msgstr "स्तंभ "
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:151
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:106
#, fuzzy
msgctxt "tabletextflowpage|before"
msgid "Be_fore"
msgstr "पैह्‌लें"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:171
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:125
#, fuzzy
msgctxt "tabletextflowpage|after"
msgid "_After"
msgstr "परैंत"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:203
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:158
#, fuzzy
msgctxt "tabletextflowpage|pagestyle"
msgid "With Page St_yle"
msgstr "सफा शैली संपादन करो "
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:224
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:177
#, fuzzy
msgctxt "tabletextflowpage|pagenoft"
msgid "Page _number"
msgstr "सफा नंबर"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:257
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:213
#, fuzzy
msgctxt "tabletextflowpage|pagestylelb-atkobject"
msgid "With Page Style"
msgstr "सफा शैली संपादन करो "
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:274
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:230
msgctxt "tabletextflowpage|split"
msgid "Allow _table to split across pages and columns"
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:289
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:245
#, fuzzy
msgctxt "tabletextflowpage|splitrow"
msgid "Allow row to break a_cross pages and columns"
msgstr "पंगताला गी सफें ते स्तंभें दे आरपार खंडन करन देओ. "
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:306
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:262
#, fuzzy
msgctxt "tabletextflowpage|keep"
msgid "_Keep with next paragraph"
msgstr "अगले सफे कन्नै रक्खो."
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:328
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:284
#, fuzzy
msgctxt "tabletextflowpage|label40"
msgid "Text _orientation"
msgstr "इबारत दिशा-विन्यास"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:361
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:298
+msgctxt "tabletextflowpage|liststore1"
+msgid "Horizontal"
+msgstr "आडा"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:299
+msgctxt "tabletextflowpage|liststore1"
+msgid "Vertical"
+msgstr "खड़ोतमां"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:300
+msgctxt "tabletextflowpage|liststore1"
+msgid "Use superordinate object settings"
+msgstr "सुपर आर्डीनेट सैटिङ बरतो"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:321
#, fuzzy
msgctxt "tabletextflowpage|headline"
msgid "R_epeat heading"
msgstr "सिरनांऽ दर्‌हाओ "
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:383
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:343
msgctxt "tabletextflowpage|label38"
msgid "The first "
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:396
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:356
msgctxt "tabletextflowpage|label39"
msgid "rows"
msgstr "पंगतालां "
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:434
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:395
msgctxt "tabletextflowpage|label35"
msgid "Text Flow"
msgstr "पाठ बहाव"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:467
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:428
msgctxt "tabletextflowpage|label41"
msgid "_Vertical alignment"
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:495
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:442
+msgctxt "tabletextflowpage|liststore2"
+msgid "Top"
+msgstr "धुर-उप्पर"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:443
+msgctxt "tabletextflowpage|liststore2"
+msgid "Centered"
+msgstr "Centred"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:444
+msgctxt "tabletextflowpage|liststore2"
+msgid "Bottom"
+msgstr "थल्ला"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:460
msgctxt "tabletextflowpage|label36"
msgid "Alignment"
msgstr "सेधीकरण"
@@ -18101,8 +18106,8 @@ msgstr "वर्णात्मक इंडैक्स"
#: sw/uiconfig/swriter/ui/tocindexpage.ui:58
msgctxt "tocindexpage|liststore1"
-msgid "Illustration Index"
-msgstr "द्रिश्टांत इंडैक्स"
+msgid "Table of Figures"
+msgstr ""
#: sw/uiconfig/swriter/ui/tocindexpage.ui:62
msgctxt "tocindexpage|liststore1"
diff --git a/source/dgo/writerperfect/messages.po b/source/dgo/writerperfect/messages.po
index d906cff9f56..e341e4c219c 100644
--- a/source/dgo/writerperfect/messages.po
+++ b/source/dgo/writerperfect/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-16 16:54+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+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"
@@ -65,99 +65,99 @@ msgctxt "exportepub|generalft"
msgid "General"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:122
+#: writerperfect/uiconfig/ui/exportepub.ui:121
#, fuzzy
msgctxt "exportepub|versionft"
msgid "Version:"
msgstr "सरूप (~V)"
-#: writerperfect/uiconfig/ui/exportepub.ui:139
+#: writerperfect/uiconfig/ui/exportepub.ui:138
msgctxt "exportepub|epub3"
msgid "EPUB 3.0"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:140
+#: writerperfect/uiconfig/ui/exportepub.ui:139
msgctxt "exportepub|epub2"
msgid "EPUB 2.0"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:175
+#: writerperfect/uiconfig/ui/exportepub.ui:174
msgctxt "exportepub|splitft"
msgid "Split method:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:192
+#: writerperfect/uiconfig/ui/exportepub.ui:191
#, fuzzy
msgctxt "exportepub|splitpage"
msgid "Page break"
msgstr "सफा खंडन"
-#: writerperfect/uiconfig/ui/exportepub.ui:193
+#: writerperfect/uiconfig/ui/exportepub.ui:192
msgctxt "exportepub|splitheading"
msgid "Heading"
msgstr "सिरनांऽ"
-#: writerperfect/uiconfig/ui/exportepub.ui:228
+#: writerperfect/uiconfig/ui/exportepub.ui:227
msgctxt "exportepub|layoutft"
msgid "Layout method:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:245
+#: writerperfect/uiconfig/ui/exportepub.ui:244
msgctxt "exportepub|layoutreflowable"
msgid "Reflowable"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:246
+#: writerperfect/uiconfig/ui/exportepub.ui:245
msgctxt "exportepub|layoutfixed"
msgid "Fixed"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:281
+#: writerperfect/uiconfig/ui/exportepub.ui:280
msgctxt "exportepub|coverimageft"
msgid "Custom cover image:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:311
+#: writerperfect/uiconfig/ui/exportepub.ui:310
msgctxt "exportepub|coverbutton"
msgid "Browse..."
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:355
+#: writerperfect/uiconfig/ui/exportepub.ui:354
msgctxt "exportepub|mediadirft"
msgid "Custom media directory:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:385
+#: writerperfect/uiconfig/ui/exportepub.ui:384
msgctxt "exportepub|mediabutton"
msgid "Browse..."
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:429
+#: writerperfect/uiconfig/ui/exportepub.ui:428
msgctxt "exportepub|metadataft"
msgid "Metadata"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:470
+#: writerperfect/uiconfig/ui/exportepub.ui:468
msgctxt "exportepub|identifierft"
msgid "Identifier:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:485
+#: writerperfect/uiconfig/ui/exportepub.ui:483
msgctxt "exportepub|titleft"
msgid "Title:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:511
+#: writerperfect/uiconfig/ui/exportepub.ui:509
msgctxt "exportepub|authorft"
msgid "Author:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:537
+#: writerperfect/uiconfig/ui/exportepub.ui:535
msgctxt "exportepub|languageft"
msgid "Language:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:563
+#: writerperfect/uiconfig/ui/exportepub.ui:561
msgctxt "exportepub|dateft"
msgid "Date:"
msgstr ""
diff --git a/source/dz/cui/messages.po b/source/dz/cui/messages.po
index 36b6639d811..8be1ef3988b 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+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"
@@ -10458,108 +10458,108 @@ msgctxt "positionsizedialog|PositionAndSizeDialog"
msgid "Position and Size"
msgstr "གནས་ས་དང་ ཚད།(~z)"
-#: cui/uiconfig/ui/positionsizedialog.ui:107
+#: cui/uiconfig/ui/positionsizedialog.ui:136
#, fuzzy
msgctxt "positionsizedialog|RID_SVXPAGE_POSITION_SIZE"
msgid "Position and Size"
msgstr "གནས་ས་དང་ ཚད།(~z)"
-#: cui/uiconfig/ui/positionsizedialog.ui:129
+#: cui/uiconfig/ui/positionsizedialog.ui:182
#, fuzzy
msgctxt "positionsizedialog|RID_SVXPAGE_SWPOSSIZE"
msgid "Position and Size"
msgstr "གནས་ས་དང་ ཚད།(~z)"
-#: cui/uiconfig/ui/positionsizedialog.ui:152
+#: cui/uiconfig/ui/positionsizedialog.ui:229
#, fuzzy
msgctxt "positionsizedialog|RID_SVXPAGE_ANGLE"
msgid "Rotation"
msgstr "འདྲེན་ཚིག"
-#: cui/uiconfig/ui/positionsizedialog.ui:175
+#: cui/uiconfig/ui/positionsizedialog.ui:276
msgctxt "positionsizedialog|RID_SVXPAGE_SLANT"
msgid "Slant & Corner Radius"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:40
+#: cui/uiconfig/ui/possizetabpage.ui:61
#, fuzzy
msgctxt "possizetabpage|FT_POS_X"
msgid "Position _X:"
msgstr "གནས་ས།"
-#: cui/uiconfig/ui/possizetabpage.ui:56
+#: cui/uiconfig/ui/possizetabpage.ui:75
#, fuzzy
msgctxt "possizetabpage|FT_POS_Y"
msgid "Position _Y:"
msgstr "གནས་ས།"
-#: cui/uiconfig/ui/possizetabpage.ui:110
+#: cui/uiconfig/ui/possizetabpage.ui:128
msgctxt "possizetabpage|FT_POSREFERENCE"
msgid "_Base point:"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:148
+#: cui/uiconfig/ui/possizetabpage.ui:182
msgctxt "possizetabpage|label1"
msgid "Position"
msgstr "གནས་ས།"
-#: cui/uiconfig/ui/possizetabpage.ui:190
+#: cui/uiconfig/ui/possizetabpage.ui:224
#, fuzzy
msgctxt "possizetabpage|FT_WIDTH"
msgid "Wi_dth:"
msgstr "རྒྱ་ཚད།"
-#: cui/uiconfig/ui/possizetabpage.ui:206
+#: cui/uiconfig/ui/possizetabpage.ui:238
#, fuzzy
msgctxt "possizetabpage|FT_HEIGHT"
msgid "H_eight:"
msgstr "མཐོ་ཚད།"
-#: cui/uiconfig/ui/possizetabpage.ui:247
+#: cui/uiconfig/ui/possizetabpage.ui:276
#, fuzzy
msgctxt "possizetabpage|CBX_SCALE"
msgid "_Keep ratio"
msgstr "དཔྱ་ཚད་བཞག་"
-#: cui/uiconfig/ui/possizetabpage.ui:279
+#: cui/uiconfig/ui/possizetabpage.ui:307
msgctxt "possizetabpage|FT_SIZEREFERENCE"
msgid "Base _point:"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:317
+#: cui/uiconfig/ui/possizetabpage.ui:361
msgctxt "possizetabpage|label2"
msgid "Size"
msgstr "ཚད།"
-#: cui/uiconfig/ui/possizetabpage.ui:356
+#: cui/uiconfig/ui/possizetabpage.ui:401
#, fuzzy
msgctxt "possizetabpage|TSB_POSPROTECT"
msgid "Positio_n"
msgstr "གནས་ས།"
-#: cui/uiconfig/ui/possizetabpage.ui:373
+#: cui/uiconfig/ui/possizetabpage.ui:418
#, fuzzy
msgctxt "possizetabpage|TSB_SIZEPROTECT"
msgid "_Size"
msgstr "ཚད།"
-#: cui/uiconfig/ui/possizetabpage.ui:397
+#: cui/uiconfig/ui/possizetabpage.ui:441
#, fuzzy
msgctxt "possizetabpage|label3"
msgid "Protect"
msgstr "ཉེན་སྐྱོབ། (~P)"
-#: cui/uiconfig/ui/possizetabpage.ui:430
+#: cui/uiconfig/ui/possizetabpage.ui:475
msgctxt "possizetabpage|TSB_AUTOGROW_WIDTH"
msgid "_Fit width to text"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:447
+#: cui/uiconfig/ui/possizetabpage.ui:492
msgctxt "possizetabpage|TSB_AUTOGROW_HEIGHT"
msgid "Fit _height to text"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:471
+#: cui/uiconfig/ui/possizetabpage.ui:515
msgctxt "possizetabpage|label4"
msgid "Adapt"
msgstr ""
@@ -10771,50 +10771,50 @@ msgctxt "recordnumberdialog|label2"
msgid "go to record"
msgstr ""
-#: cui/uiconfig/ui/rotationtabpage.ui:52
+#: cui/uiconfig/ui/rotationtabpage.ui:56
#, fuzzy
msgctxt "rotationtabpage|FT_POS_X"
msgid "Position _X:"
msgstr "གནས་ས།"
-#: cui/uiconfig/ui/rotationtabpage.ui:66
+#: cui/uiconfig/ui/rotationtabpage.ui:70
#, fuzzy
msgctxt "rotationtabpage|FT_POS_Y"
msgid "Position _Y:"
msgstr "གནས་ས།"
-#: cui/uiconfig/ui/rotationtabpage.ui:116
+#: cui/uiconfig/ui/rotationtabpage.ui:123
msgctxt "rotationtabpage|FT_POSPRESETS"
msgid "_Default settings:"
msgstr ""
-#: cui/uiconfig/ui/rotationtabpage.ui:130
+#: cui/uiconfig/ui/rotationtabpage.ui:151
msgctxt "rotationtabpage|CTL_RECT|tooltip_text"
msgid "Rotation point"
msgstr ""
-#: cui/uiconfig/ui/rotationtabpage.ui:155
+#: cui/uiconfig/ui/rotationtabpage.ui:178
msgctxt "rotationtabpage|label1"
msgid "Pivot Point"
msgstr ""
-#: cui/uiconfig/ui/rotationtabpage.ui:197
+#: cui/uiconfig/ui/rotationtabpage.ui:220
msgctxt "rotationtabpage|FT_ANGLE"
msgid "_Angle:"
msgstr ""
-#: cui/uiconfig/ui/rotationtabpage.ui:238
+#: cui/uiconfig/ui/rotationtabpage.ui:263
msgctxt "rotationtabpage|FT_ANGLEPRESETS"
msgid "Default _settings:"
msgstr ""
-#: cui/uiconfig/ui/rotationtabpage.ui:252
+#: cui/uiconfig/ui/rotationtabpage.ui:287
#, fuzzy
msgctxt "rotationtabpage|CTL_ANGLE|tooltip_text"
msgid "Rotation Angle"
msgstr "བསྒྱིར་བའི་གྲུ་ཟུར།"
-#: cui/uiconfig/ui/rotationtabpage.ui:277
+#: cui/uiconfig/ui/rotationtabpage.ui:314
#, fuzzy
msgctxt "rotationtabpage|label2"
msgid "Rotation Angle"
@@ -11207,55 +11207,55 @@ msgctxt "similaritysearchdialog|relaxbox"
msgid "_Combine"
msgstr "མཉམ་མཐུད་འབད།(~i)"
-#: cui/uiconfig/ui/slantcornertabpage.ui:50
+#: cui/uiconfig/ui/slantcornertabpage.ui:70
msgctxt "slantcornertabpage|label5"
msgid "_X:"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:88
+#: cui/uiconfig/ui/slantcornertabpage.ui:110
msgctxt "slantcornertabpage|label6"
msgid "_Y:"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:125
+#: cui/uiconfig/ui/slantcornertabpage.ui:149
msgctxt "slantcornertabpage|label3"
msgid "Control Point 1"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:159
+#: cui/uiconfig/ui/slantcornertabpage.ui:183
#, fuzzy
msgctxt "slantcornertabpage|FT_RADIUS"
msgid "_Radius:"
msgstr "མཐའ་འཁོར།"
-#: cui/uiconfig/ui/slantcornertabpage.ui:189
+#: cui/uiconfig/ui/slantcornertabpage.ui:214
#, fuzzy
msgctxt "slantcornertabpage|label1"
msgid "Corner Radius"
msgstr "སྒྱིད་ཁུག་མཐའ་འཁོར།"
-#: cui/uiconfig/ui/slantcornertabpage.ui:223
+#: cui/uiconfig/ui/slantcornertabpage.ui:248
msgctxt "slantcornertabpage|FT_ANGLE"
msgid "_Angle:"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:253
+#: cui/uiconfig/ui/slantcornertabpage.ui:279
#, fuzzy
msgctxt "slantcornertabpage|label2"
msgid "Slant"
msgstr "གཡོ་གཡོཝ།"
-#: cui/uiconfig/ui/slantcornertabpage.ui:294
+#: cui/uiconfig/ui/slantcornertabpage.ui:320
msgctxt "slantcornertabpage|label4"
msgid "_X:"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:332
+#: cui/uiconfig/ui/slantcornertabpage.ui:360
msgctxt "slantcornertabpage|label7"
msgid "_Y:"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:369
+#: cui/uiconfig/ui/slantcornertabpage.ui:399
msgctxt "slantcornertabpage|label8"
msgid "Control Point 2"
msgstr ""
@@ -11555,124 +11555,124 @@ msgctxt "storedwebconnectiondialog|change"
msgid "_Change Password..."
msgstr "ཆོག་ཡིག་ བསྒྱུར་བཅོས་འབད་་་་(~P)"
-#: cui/uiconfig/ui/swpossizepage.ui:74
+#: cui/uiconfig/ui/swpossizepage.ui:85
#, fuzzy
msgctxt "swpossizepage|widthft"
msgid "_Width:"
msgstr "རྒྱ་ཚད།"
-#: cui/uiconfig/ui/swpossizepage.ui:111
+#: cui/uiconfig/ui/swpossizepage.ui:123
#, fuzzy
msgctxt "swpossizepage|heightft"
msgid "H_eight:"
msgstr "མཐོ་ཚད།"
-#: cui/uiconfig/ui/swpossizepage.ui:128
+#: cui/uiconfig/ui/swpossizepage.ui:141
#, fuzzy
msgctxt "swpossizepage|ratio"
msgid "_Keep ratio"
msgstr "དཔྱ་ཚད་བཞག་"
-#: cui/uiconfig/ui/swpossizepage.ui:149
+#: cui/uiconfig/ui/swpossizepage.ui:162
msgctxt "swpossizepage|label2"
msgid "Size"
msgstr "ཚད།"
-#: cui/uiconfig/ui/swpossizepage.ui:205
+#: cui/uiconfig/ui/swpossizepage.ui:218
#, fuzzy
msgctxt "swpossizepage|topage"
msgid "To _page"
msgstr "ཤོག་ལེབ་ལུ།"
-#: cui/uiconfig/ui/swpossizepage.ui:222
+#: cui/uiconfig/ui/swpossizepage.ui:234
#, fuzzy
msgctxt "swpossizepage|topara"
msgid "To paragrap_h"
msgstr "དོན་མཚམས།"
-#: cui/uiconfig/ui/swpossizepage.ui:238
+#: cui/uiconfig/ui/swpossizepage.ui:250
#, fuzzy
msgctxt "swpossizepage|tochar"
msgid "To cha_racter"
msgstr "ཡིག་འབྲུ།"
-#: cui/uiconfig/ui/swpossizepage.ui:254
+#: cui/uiconfig/ui/swpossizepage.ui:266
#, fuzzy
msgctxt "swpossizepage|aschar"
msgid "_As character"
msgstr "ཡིག་འབྲུ།"
-#: cui/uiconfig/ui/swpossizepage.ui:270
+#: cui/uiconfig/ui/swpossizepage.ui:282
#, fuzzy
msgctxt "swpossizepage|toframe"
msgid "To _frame"
msgstr "གཞི་ཁྲམ་ལུ།(~F)"
-#: cui/uiconfig/ui/swpossizepage.ui:292
+#: cui/uiconfig/ui/swpossizepage.ui:304
msgctxt "swpossizepage|label1"
msgid "Anchor"
msgstr "ཨེན་ཀོར།"
-#: cui/uiconfig/ui/swpossizepage.ui:333
+#: cui/uiconfig/ui/swpossizepage.ui:344
#, fuzzy
msgctxt "swpossizepage|horiposft"
msgid "Hori_zontal:"
msgstr "ཐད་སྙོམས།"
-#: cui/uiconfig/ui/swpossizepage.ui:347
+#: cui/uiconfig/ui/swpossizepage.ui:358
msgctxt "swpossizepage|horibyft"
msgid "b_y:"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:361
+#: cui/uiconfig/ui/swpossizepage.ui:372
msgctxt "swpossizepage|vertbyft"
msgid "_by:"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:375
+#: cui/uiconfig/ui/swpossizepage.ui:386
msgctxt "swpossizepage|horitoft"
msgid "_to:"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:421
+#: cui/uiconfig/ui/swpossizepage.ui:433
#, fuzzy
msgctxt "swpossizepage|vertposft"
msgid "_Vertical:"
msgstr "ཀེར་ཕྲང་།"
-#: cui/uiconfig/ui/swpossizepage.ui:457
+#: cui/uiconfig/ui/swpossizepage.ui:470
msgctxt "swpossizepage|verttoft"
msgid "t_o:"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:478
+#: cui/uiconfig/ui/swpossizepage.ui:492
msgctxt "swpossizepage|mirror"
msgid "_Mirror on even pages"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:495
+#: cui/uiconfig/ui/swpossizepage.ui:509
msgctxt "swpossizepage|followtextflow"
msgid "Follow te_xt flow"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:518
+#: cui/uiconfig/ui/swpossizepage.ui:532
msgctxt "swpossizepage|label11"
msgid "Position"
msgstr "གནས་ས།"
-#: cui/uiconfig/ui/swpossizepage.ui:549
+#: cui/uiconfig/ui/swpossizepage.ui:563
#, fuzzy
msgctxt "swpossizepage|pos"
msgid "Positio_n"
msgstr "གནས་ས།"
-#: cui/uiconfig/ui/swpossizepage.ui:565
+#: cui/uiconfig/ui/swpossizepage.ui:579
#, fuzzy
msgctxt "swpossizepage|size"
msgid "_Size"
msgstr "ཚད།"
-#: cui/uiconfig/ui/swpossizepage.ui:587
+#: cui/uiconfig/ui/swpossizepage.ui:601
#, fuzzy
msgctxt "swpossizepage|label3"
msgid "Protect"
@@ -11875,13 +11875,13 @@ msgctxt "textattrtabpage|label2"
msgid "Spacing to Borders"
msgstr ""
-#: cui/uiconfig/ui/textattrtabpage.ui:425
+#: cui/uiconfig/ui/textattrtabpage.ui:423
#, fuzzy
msgctxt "textattrtabpage|TSB_FULL_WIDTH"
msgid "Full _width"
msgstr "རྒྱ་ཚད་གང་།"
-#: cui/uiconfig/ui/textattrtabpage.ui:448
+#: cui/uiconfig/ui/textattrtabpage.ui:446
msgctxt "textattrtabpage|label3"
msgid "Text Anchor"
msgstr ""
diff --git a/source/dz/filter/source/config/fragments/filters.po b/source/dz/filter/source/config/fragments/filters.po
index 142621ee239..0b1317d2bd5 100644
--- a/source/dz/filter/source/config/fragments/filters.po
+++ b/source/dz/filter/source/config/fragments/filters.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-16 16:54+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2016-12-01 14:03+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -466,8 +466,8 @@ msgctxt ""
"MS Word 2003 XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Word 2003 XML"
-msgstr "མའི་ཀོརོ་སོཕ་ཊི་མིང་ཚིག་ ༢༠༠༣ ཨེགསི་ཨེམ་ཨེལ།"
+msgid "Word 2003 XML"
+msgstr ""
#: MS_Word_2007_XML.xcu
msgctxt ""
@@ -1291,7 +1291,7 @@ msgctxt ""
"Calc MS Excel 2007 VBA XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Excel 2007-2016 XML (macro enabled)"
+msgid "Excel 2007–2019 (macro-enabled)"
msgstr ""
#: calc_MS_Excel_2007_XML.xcu
diff --git a/source/dz/filter/source/config/fragments/types.po b/source/dz/filter/source/config/fragments/types.po
index f9b29c0d241..25909404ec3 100644
--- a/source/dz/filter/source/config/fragments/types.po
+++ b/source/dz/filter/source/config/fragments/types.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-08 15:11+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2015-11-11 20:36+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -295,8 +295,8 @@ msgctxt ""
"writer_MS_Word_2003_XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Word 2003 XML"
-msgstr "མའི་ཀོརོ་སོཕཊི་ཝཱཌི་ ༢༠༠༣ ཨེགསི་ཨེམ་ཨེལ་"
+msgid "Word 2003 XML"
+msgstr ""
#: writer_MS_Word_2007_XML.xcu
msgctxt ""
diff --git a/source/dz/fpicker/messages.po b/source/dz/fpicker/messages.po
index 47c484ef974..c2407725029 100644
--- a/source/dz/fpicker/messages.po
+++ b/source/dz/fpicker/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+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"
@@ -278,14 +278,13 @@ msgstr ""
#: fpicker/uiconfig/ui/foldernamedialog.ui:8
msgctxt "foldernamedialog|FolderNameDialog"
-msgid "Folder Name ?"
+msgid "Folder Name"
msgstr ""
#: fpicker/uiconfig/ui/foldernamedialog.ui:91
-#, fuzzy
msgctxt "foldernamedialog|label2"
-msgid "Na_me"
-msgstr "མིང་"
+msgid "Na_me:"
+msgstr ""
#: fpicker/uiconfig/ui/foldernamedialog.ui:122
#, fuzzy
diff --git a/source/dz/helpcontent2/source/text/shared/00.po b/source/dz/helpcontent2/source/text/shared/00.po
index 9431ec3c5af..55e7f9aa01e 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2016-05-24 05:25+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -397,16 +397,16 @@ msgctxt ""
"00000001.xhp\n"
"hd_id3149670\n"
"help.text"
-msgid "Back"
-msgstr "རྒྱབ་ལོག"
+msgid "Reset"
+msgstr ""
#: 00000001.xhp
msgctxt ""
"00000001.xhp\n"
"par_id3145068\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optionsdialog/revert\">Resets modified values back to the $[officename] default values.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/optionsdialog/revert\">ལེགས་བཅོས་འབད་ཡོད་པའི་གནས་གོང་ཚུ་ ལོག་འདི་རང་སྔོན་སྒྲིག་གི་གནས་གོང་ལུ་སླར་སྒྲིག་འབདཝ་ཨིན།$[officename] </ahelp>"
+msgid "<ahelp hid=\"cui/ui/optionsdialog/revert\">Resets changes made to the current tab to those applicable when this dialog was opened.</ahelp>"
+msgstr ""
#: 00000001.xhp
msgctxt ""
@@ -552,6 +552,54 @@ msgctxt ""
msgid "<variable id=\"ShiftF1\">Press Shift+F1 and point to a control to learn more about that control.</variable>"
msgstr ""
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"hd_id631527692833772\n"
+"help.text"
+msgid "Options dialog buttons"
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"hd_id831527692839432\n"
+"help.text"
+msgid "OK"
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"par_id471527692844934\n"
+"help.text"
+msgid "Save the changes in the page and close the Options dialog."
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"hd_id261527692850720\n"
+"help.text"
+msgid "Cancel"
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"par_id571527692855533\n"
+"help.text"
+msgid "Close the Options dialog and discard all changes done."
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"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 Options dialog."
+msgstr ""
+
#: 00000002.xhp
msgctxt ""
"00000002.xhp\n"
@@ -11125,16 +11173,16 @@ msgctxt ""
"00040502.xhp\n"
"par_id3151293\n"
"help.text"
-msgid "<variable id=\"linienstile\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Line Styles</emph> tab </variable>"
-msgstr "<variable id=\"linienstile\">རྩ་སྒྲིག- <emph>དང་ </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>དངོས་པོ་ - </emph></caseinline><caseinline select=\"CALC\"><emph>ཚད་རིས་ - </emph></caseinline></switchinline><emph>གྱལ་ - གྱལ་བཟོ་རྣམ་ཚུ་</emph> མཆོང་ལྡེ་གདམ། </variable>"
+msgid "<variable id=\"linienstile\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Line Styles</emph> tab</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3149317\n"
"help.text"
-msgid "<variable id=\"linienenden\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Arrow Styles</emph> tab </variable>"
-msgstr "<variable id=\"linienenden\">རྩ་སྒྲིག་- <emph>དང་ </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>དངོས་པོ་ - </emph></caseinline><caseinline select=\"CALC\"><emph>ཚད་རིས་ - </emph></caseinline></switchinline><emph>གྱལ་ - མདའ་རྟགས་བཟོ་རྣམ་ཚུ་</emph> མཆོང་ལྡེ་གདམ </variable>"
+msgid "<variable id=\"linienenden\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Arrow Styles</emph> tab</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
@@ -11173,15 +11221,15 @@ msgctxt ""
"00040502.xhp\n"
"par_id3154948\n"
"help.text"
-msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Area</emph> tab"
-msgstr "རྩ་སྒྲིག་- <emph>དང་ </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>དངོས་པོ་ - </emph></caseinline><caseinline select=\"CALC\"><emph>ཚད་རིས་ - </emph></caseinline></switchinline><emph>ཙངའ་ཁོངས་ - མངའ་ཁོངས་</emph> མཆོང་ལྡེ་གདམ།"
+msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Area</emph> tab."
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3145607\n"
"help.text"
-msgid "Choose <emph>View - Styles</emph> - open context menu and choose <emph>Modify/New - Area</emph> tab (presentation documents)"
+msgid "Choose <emph>View - Styles</emph> - open context menu and choose <emph>Modify/New - Area</emph> tab (presentation documents)."
msgstr ""
#: 00040502.xhp
@@ -11189,47 +11237,47 @@ msgctxt ""
"00040502.xhp\n"
"par_id3152922\n"
"help.text"
-msgid "Choose <emph>Format - Title - Area</emph> tab (chart documents)"
-msgstr "<emph>རྩ་སྒྲིག་ - མགོ་ཡིག་ - མངའ་ཁོངས་</emph>ཨེབ་ལྡེ་ (དཔེ་རིས་ཡིག་ཆ་ཚུ་)གདམ་ཁ་རྐྱབས།"
+msgid "Choose <emph>Format - Title - Area</emph> tab (chart documents)."
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3157894\n"
"help.text"
-msgid "Choose <emph>Format - Legend - Area</emph> tab (chart documents)"
-msgstr "<emph>རྩ་སྒྲིག་ - གཏམ་རྒྱུད་ - མངའ་ཁོངས་</emph> ཨེབ་ལྡེ་ (chart documents)གདམ་ཁ་རྐྱབས།"
+msgid "Choose <emph>Format - Legend - Area</emph> tab (chart documents)."
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3144444\n"
"help.text"
-msgid "Choose <emph>Format - Chart Wall - Area</emph> tab (chart documents)"
-msgstr "<emph>རྩ་སྒྲིག་ - དཔེ་རིས་གྱང་རྩིག་ - མངའ་ཁོངས་</emph>ཨེབ་ལྡེ་ (chart documents)གདམ་ཁ་རྐྱབས།"
+msgid "Choose <emph>Format - Chart Wall - Area</emph> tab (chart documents)."
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3156543\n"
"help.text"
-msgid "Choose <emph>Format - Chart Floor - Area</emph> tab (chart documents)"
-msgstr "<emph>རྩ་སྒྲིག་ - དཔེ་རིས་མཐིལ་ - མངའ་ཁོངས་</emph> ཨེབ་ལྡེ་ (chart documents)གདམ་ཁ་རྐྱབས།"
+msgid "Choose <emph>Format - Chart Floor - Area</emph> tab (chart documents)."
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3150685\n"
"help.text"
-msgid "Choose <emph>Format - Chart Area - Area</emph> tab (chart documents)"
-msgstr "<emph>རྩ་ སྒྲིག་ - དཔེ་རིས་མངའ་ཁོངས་ - མངའ་ཁོངས་</emph> ཨེབ་ལྡེ་ (དཔེ་རིས་ཡིག་ཆ་ཚུ་)གདམ་ཁ་རྐྱབས།"
+msgid "Choose <emph>Format - Chart Area - Area</emph> tab (chart documents)."
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3149664\n"
"help.text"
-msgid "Choose <emph>Slide - Properties - Background</emph> tab (in $[officename] Impress)"
+msgid "Choose <emph>Slide - Properties - Background</emph> tab (in $[officename] Impress)."
msgstr ""
#: 00040502.xhp
@@ -11237,7 +11285,15 @@ msgctxt ""
"00040502.xhp\n"
"par_id9149694\n"
"help.text"
-msgid "Choose <emph>Page - Properties - Background</emph> tab (in $[officename] Draw)"
+msgid "Choose <emph>Page - Properties - Background</emph> tab (in $[officename] Draw)."
+msgstr ""
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id841527083135387\n"
+"help.text"
+msgid "Choose <emph>Table - Properties - Background</emph> tab."
msgstr ""
#: 00040502.xhp
@@ -11349,32 +11405,32 @@ msgctxt ""
"00040502.xhp\n"
"par_id3150011\n"
"help.text"
-msgid "<variable id=\"schatte\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Shadow</emph> tab </variable>"
-msgstr "<variable id=\"schatte\">རྩ་སྒྲིག་- <emph>དང་ </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>དངོས་པོ་ - </emph></caseinline><caseinline select=\"CALC\"><emph>ཚད་རིས་ - </emph></caseinline></switchinline><emph>མངའ་ཁོངས་ - གྱིབ་མ་</emph> མཆོང་ལྡེ་གདམ། </variable>"
+msgid "<variable id=\"schatte\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Shadow</emph> tab</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3147441\n"
"help.text"
-msgid "<variable id=\"verlauf\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Gradients</emph> tab </variable>"
-msgstr "<variable id=\"verlauf\">རྩ་སྒྲིག་- <emph>དང་ </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>དངོས་པོ་ - </emph></caseinline><caseinline select=\"CALC\"><emph>ཚད་རིས་ - </emph></caseinline></switchinline><emph>མངའ་ཁོངས་ - སྟེགས་རིས་ཚུ་</emph> མཆོང་ལྡེ་གདམ། </variable>"
+msgid "<variable id=\"verlauf\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Gradients</emph> tab</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3155308\n"
"help.text"
-msgid "<variable id=\"schraffur\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Hatching</emph> tab </variable>"
-msgstr "<variable id=\"schraffur\">རྩ་སྒྲིག་- <emph>དང་ </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>དངོས་པོ་ - </emph></caseinline><caseinline select=\"CALC\"><emph>ཚད་རིས་ - </emph></caseinline></switchinline><emph>མངའ་ཁོངས་ - ཐིག་རིས་གྲིབ་མདངས་</emph> མཆོང་ལྡེ་གདམ། </variable>"
+msgid "<variable id=\"schraffur\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Hatching</emph> tab</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3145800\n"
"help.text"
-msgid "<variable id=\"bitmap\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Bitmaps</emph> tab </variable>"
-msgstr "<variable id=\"bitmap\">རྩ་སྒྲིག་- <emph>དང་ </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>དངོས་པོ་ - </emph></caseinline><caseinline select=\"CALC\"><emph>ཚད་རིས་ - </emph></caseinline></switchinline><emph>མངའ་ཁོངས་ - བིཊི་མེཔསི་</emph> མཆོང་ལྡེ་གདམ། </variable>"
+msgid "<variable id=\"bitmap\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Bitmaps</emph> tab</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
@@ -11413,8 +11469,8 @@ msgctxt ""
"00040502.xhp\n"
"par_id3156286\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F4 key </caseinline><caseinline select=\"IMPRESS\">F4 key </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"DRAW\">ཨེཕ་ ༤ ལྡེ་མིག་ </caseinline><caseinline select=\"IMPRESS\">ཨེཕ་ ༤ ལྡེ་མིག་ </caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F4 key</caseinline><caseinline select=\"IMPRESS\">F4 key</caseinline></switchinline>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
@@ -11453,8 +11509,8 @@ msgctxt ""
"00040502.xhp\n"
"par_id3153099\n"
"help.text"
-msgid "<variable id=\"position2\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Position and Size</emph> tab </variable>"
-msgstr "<variable id=\"position2\">རྩ་སྒྲིག་- <emph>དང་ </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>དངོས་པོ་ - </emph></caseinline><caseinline select=\"CALC\"><emph>ཚད་རིས་ - </emph></caseinline></switchinline><emph>གནས་ས་དང་ཚད་ - གནས་ས་དང་ཚད་</emph> མཆོང་ལྡེ་གདམ། </variable>"
+msgid "<variable id=\"position2\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Position and Size</emph> tab</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
@@ -11485,16 +11541,16 @@ msgctxt ""
"00040502.xhp\n"
"par_id3145666\n"
"help.text"
-msgid "<variable id=\"ecke\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Slant & Corner Radius</emph> tab </variable>"
-msgstr "<variable id=\"ecke\">རྩ་སྒྲིག་ <emph>དང་ - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>དངོས་པོ་ - </emph></caseinline><caseinline select=\"CALC\"><emph>ཚད་རིས་ - </emph></caseinline></switchinline><emph>གནས་ས་དང་ཚད་ - སྒྱིད་ཁུག་མཐའ་འཁོར་གཡོ་མི་</emph> མཆོང་ལྡེ་གདམ། </variable>"
+msgid "<variable id=\"ecke\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Slant & Corner Radius</emph> tab</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3146081\n"
"help.text"
-msgid "<variable id=\"legende\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Callout</emph> tab (only for textbox callouts, not for custom shapes callouts) </variable>"
-msgstr "<variable id=\"legende\">རྩ་སྒྲིག-<emph>དངོས་པོ་- </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>ཚད་རིས་- </emph></caseinline><caseinline select=\"CALC\"><emph>གནས་ས་དང་ཚད་-གཏམ་རྒྱུད</emph></caseinline></switchinline><emph> མཆོངས་ལྡེ(ཚིག་ཡིག་སྒྲོམ་འབོ་ནི་ཚུ་གི་དོན་ལུ་རྐྱངམ་ཅིག་ སྲོལ་སྒྲིག་དབྱིབས་འབོ་ནི་ཚུ་གི་གོན་ལུ་མེན་པ་)་</emph> གདམ།</variable>"
+msgid "<variable id=\"legende\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Callout</emph> tab (only for textbox callouts, not for custom shapes callouts)</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
@@ -11517,8 +11573,8 @@ msgctxt ""
"00040502.xhp\n"
"par_id3149019\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F8 key </caseinline><caseinline select=\"IMPRESS\">F8 key </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"DRAW\">ཨེཕ་ ༨ ལྡེ་མིག་ </caseinline><caseinline select=\"IMPRESS\">ཨེཕ་ ༨་ལྡེ་མིག་ </caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F8 key</caseinline><caseinline select=\"IMPRESS\">F8 key</caseinline></switchinline>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
@@ -11805,8 +11861,8 @@ msgctxt ""
"00040502.xhp\n"
"par_id3153076\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Align Center Horizontally </caseinline><defaultinline>Centered</defaultinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">དབུས་འདི་ཐད་སྙོམས་སྦེ་ཕྲང་ </caseinline><defaultinline>དབུས་སྒྲིག་འབད་</defaultinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Align Center Horizontally</caseinline><defaultinline>Centered</defaultinline></switchinline>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
@@ -11845,8 +11901,8 @@ msgctxt ""
"00040502.xhp\n"
"par_id3150527\n"
"help.text"
-msgid "<variable id=\"font\">Click <emph>Fontwork</emph> icon on <emph>Drawing</emph> bar </variable>"
-msgstr "<variable id=\"font\">པར་རིས་ <emph>ཕྲ་རིང་</emph> ངོས་དཔར་གུ་ <emph>ཡིག་འབྲུ་ལཱ་</emph> ཨེབ་གཏང་འབད། </variable>"
+msgid "<variable id=\"font\">Click <emph>Fontwork</emph> icon on <emph>Drawing</emph> bar</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
diff --git a/source/dz/helpcontent2/source/text/shared/01.po b/source/dz/helpcontent2/source/text/shared/01.po
index cf2e62b44a4..3366489b896 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: 2018-05-23 23:19+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2016-12-24 11:23+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -23587,6 +23587,22 @@ msgstr ""
#: 05210100.xhp
msgctxt ""
"05210100.xhp\n"
+"hd_id471527077476052\n"
+"help.text"
+msgid "Cell, Row or Table background selector"
+msgstr ""
+
+#: 05210100.xhp
+msgctxt ""
+"05210100.xhp\n"
+"par_id661527077493366\n"
+"help.text"
+msgid "Select the table object which background area is to be filled."
+msgstr ""
+
+#: 05210100.xhp
+msgctxt ""
+"05210100.xhp\n"
"hd_id3147373\n"
"help.text"
msgid "None"
@@ -31205,24 +31221,24 @@ msgctxt ""
"06040100.xhp\n"
"hd_id3145072\n"
"help.text"
-msgid "Automatic *bold* and _underline_"
-msgstr "རང་བཞིན་གྱིས་ *bold*དང་_འོག་ཐིག་_འཐེན།"
+msgid "Automatic *bold*, /italic/, -strikeout- and _underline_"
+msgstr ""
#: 06040100.xhp
msgctxt ""
"06040100.xhp\n"
"par_id3153577\n"
"help.text"
-msgid "Automatically applies bold formatting to text enclosed by asterisks (*), and underline to text enclosed by underscores ( _ ), for example, *bold*. The asterisks and underscores are not displayed after the formatting is applied."
-msgstr "སྐར་རྟགས་ཚུ་(*)གི་སྦེ་མཉམ་སྦྲགས་འབད་ཡོད་པའི་ཚིག་ཡིག་ལུ་ རྒྱགས་པ་རྩ་སྒྲིག་འབད་ནི་དེ་ རང་བཞིན་གྱིས་འཇུག་སྤྱོད་འབདཝ་ཨིནམ་དང་ གཤམ་ཐིག་གི་སྦེ་( _ )མཉམ་སྦྲགས་འབད་ཡོད་པའི་ ཚིག་ཡིག་ལུ་ འོག་ཐིག་བཀལ་ དཔྱེ་འབད་བ་ཅིན་ *bold*བཟུམ་ཨིན། སྐར་རྟགས་དང་ གཤམ་ཐིག་འདི་ཚུ་ རྩ་སྒྲིག་འབད་ནི་འདི་ འཇུག་སྤྱོད་འབད་ཚར་བའི་ ཤུལ་མ་ བཀྲམ་སྟོན་མི་འབད།"
+msgid "Automatically applies bold, italic, strikethrough or underline formatting to text enclosed by asterisks (*), slashes (/), hyphens (-), and underscores (_), respectively. These characters disappear after the formatting is applied."
+msgstr ""
#: 06040100.xhp
msgctxt ""
"06040100.xhp\n"
"par_id3153127\n"
"help.text"
-msgid "This feature does not work if the formatting characters * or _ are entered with an <link href=\"text/shared/00/00000005.xhp#IME\" name=\"Input Method Editor\">Input Method Editor</link>."
-msgstr "རྩ་སྒྲིག་ཡིག་འབྲུ་ * ཚུ་ཡང་ན་ <link href=\"text/shared/00/00000005.xhp#IME\" name=\"Input Method Editor\">ཨིན་པུཊི་ཐབས་ལམ་ཞུན་དགཔ་</link>དང་བཅས་ ཐོ་བཀོད་འབད་དེ་ཡོད་པ་ཅིན་ ཁྱད་རྣམ་དེ་གིས་ ལཱ་འབད་ནི་མེད།"
+msgid "This feature does not work if the formatting characters <item type=\"literal\">* / - _</item> are entered with an <link href=\"text/shared/00/00000005.xhp#IME\" name=\"Input Method Editor\">Input Method Editor</link>."
+msgstr ""
#: 06040100.xhp
msgctxt ""
diff --git a/source/dz/helpcontent2/source/text/shared/optionen.po b/source/dz/helpcontent2/source/text/shared/optionen.po
index 594d64879a1..a9a276644ef 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: 2018-05-08 15:10+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2016-07-05 21:39+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -83,6 +83,22 @@ msgstr ""
#: 01000000.xhp
msgctxt ""
"01000000.xhp\n"
+"hd_id551527692881035\n"
+"help.text"
+msgid "Help"
+msgstr ""
+
+#: 01000000.xhp
+msgctxt ""
+"01000000.xhp\n"
+"par_id831527692885723\n"
+"help.text"
+msgid "Opens the help contents for the Options page displayed."
+msgstr ""
+
+#: 01000000.xhp
+msgctxt ""
+"01000000.xhp\n"
"hd_id3159149\n"
"help.text"
msgid "<link href=\"text/shared/optionen/01010000.xhp\" name=\"$[officename]\">%PRODUCTNAME</link>"
@@ -4565,8 +4581,8 @@ msgctxt ""
"01030300.xhp\n"
"par_idN10640\n"
"help.text"
-msgid "Options"
-msgstr "གདམ་ཁ་ཚུ།"
+msgid "Security Options and Warnings"
+msgstr ""
#: 01030300.xhp
msgctxt ""
@@ -4597,7 +4613,7 @@ msgctxt ""
"01030300.xhp\n"
"hd_id3168736\n"
"help.text"
-msgid "Persistently save passwords protected by a master password"
+msgid "Persistently save passwords for web connections"
msgstr ""
#: 01030300.xhp
@@ -4613,6 +4629,22 @@ msgctxt ""
"01030300.xhp\n"
"hd_id3901791\n"
"help.text"
+msgid "Protected by a master password (recommended)"
+msgstr ""
+
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"par_id31527711486980\n"
+"help.text"
+msgid "Check to enable all connections' passwords to be protected by a master password."
+msgstr ""
+
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"hd_id141527711343312\n"
+"help.text"
msgid "Master Password"
msgstr ""
@@ -13733,7 +13765,7 @@ msgctxt ""
"java.xhp\n"
"hd_id3148618\n"
"help.text"
-msgid "Optional (unstable) options"
+msgid "Optional Features"
msgstr ""
#: java.xhp
@@ -13749,7 +13781,7 @@ msgctxt ""
"java.xhp\n"
"par_id3156344\n"
"help.text"
-msgid "It enables features that are not yet complete or contain known bugs. The list of these features is different version by version, or even it can be empty."
+msgid "Enables features that are not yet complete or may contain known bugs. The list of these features is different version by version, or even it can be empty."
msgstr ""
#: java.xhp
@@ -13765,7 +13797,7 @@ msgctxt ""
"java.xhp\n"
"par_id3156345\n"
"help.text"
-msgid "It enables macro recording, so the <link href=\"text/shared/guide/macro_recording.xhp\" name=\"Tools - Macros - Record Macro\"><item type=\"menuitem\">Tools - Macros - Record Macro</item></link> menu item will be available."
+msgid "Enables macro recording. The <link href=\"text/shared/guide/macro_recording.xhp\" name=\"Tools - Macros - Record Macro\"><item type=\"menuitem\">Tools - Macros - Record Macro</item></link> menu item is available."
msgstr ""
#: java.xhp
diff --git a/source/dz/officecfg/registry/data/org/openoffice/Office/UI.po b/source/dz/officecfg/registry/data/org/openoffice/Office/UI.po
index 7d3a5f57e36..32b68015390 100644
--- a/source/dz/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/dz/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-22 13:17+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2016-12-01 14:08+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -26983,8 +26983,8 @@ msgctxt ""
"..WriterCommands.UserInterface.Commands..uno:TextAttributes\n"
"Label\n"
"value.text"
-msgid "Text Attributes"
-msgstr "ཚིག་ཡིག་གི་ ཁྱད་ཆོས།"
+msgid "Text Attributes..."
+msgstr ""
#: WriterCommands.xcu
msgctxt ""
diff --git a/source/dz/readlicense_oo/docs.po b/source/dz/readlicense_oo/docs.po
index fa9fe1b9822..91c42ab5fb7 100644
--- a/source/dz/readlicense_oo/docs.po
+++ b/source/dz/readlicense_oo/docs.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-04-17 15:54+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2016-05-01 20:53+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -117,7 +117,7 @@ msgctxt ""
"readme.xrm\n"
"macxiOSX\n"
"readmeitem.text"
-msgid "MacOSX 10.8 (Mountain Lion) or higher"
+msgid "MacOSX 10.9 (Mavericks) or higher"
msgstr ""
#: readme.xrm
diff --git a/source/dz/sc/messages.po b/source/dz/sc/messages.po
index 80f0f6c5d9a..ad89544b12c 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-12 14:40+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"
@@ -1893,17 +1893,22 @@ msgid "Nested arrays are not supported."
msgstr ""
#: sc/inc/globstr.hrc:390
+msgctxt "STR_ERR_LONG_BAD_ARRAY_CONTENT"
+msgid "Unsupported inline array content."
+msgstr ""
+
+#: sc/inc/globstr.hrc:391
#, fuzzy
msgctxt "STR_UNDO_TEXTTOCOLUMNS"
msgid "Text to Columns"
msgstr "ཚིག་ཡིག་ཀེར་ཐིག་ཚུ་ལུ་(~x)"
-#: sc/inc/globstr.hrc:391
+#: sc/inc/globstr.hrc:392
msgctxt "STR_DOC_UPDATED"
msgid "Your spreadsheet has been updated with changes saved by other users."
msgstr ""
-#: sc/inc/globstr.hrc:392
+#: sc/inc/globstr.hrc:393
msgctxt "STR_DOC_WILLBESAVED"
msgid ""
"The spreadsheet must be saved now to activate sharing mode.\n"
@@ -1911,7 +1916,7 @@ msgid ""
"Do you want to continue?"
msgstr ""
-#: sc/inc/globstr.hrc:393
+#: sc/inc/globstr.hrc:394
msgctxt "STR_DOC_WILLNOTBESAVED"
msgid ""
"Already resolved merge conflicts will be lost and your changes to the shared spreadsheet will not be saved.\n"
@@ -1919,7 +1924,7 @@ msgid ""
"Do you want to continue?"
msgstr ""
-#: sc/inc/globstr.hrc:394
+#: sc/inc/globstr.hrc:395
msgctxt "STR_DOC_DISABLESHARED"
msgid ""
"Disabling shared mode of a spreadsheet hinders all other users of the shared spreadsheet to merge back their work.\n"
@@ -1927,7 +1932,7 @@ msgid ""
"Do you want to continue?"
msgstr ""
-#: sc/inc/globstr.hrc:395
+#: sc/inc/globstr.hrc:396
msgctxt "STR_DOC_NOLONGERSHARED"
msgid ""
"This spreadsheet is no longer in shared mode.\n"
@@ -1935,7 +1940,7 @@ msgid ""
"Save your spreadsheet to a separate file and merge your changes to the shared spreadsheet manually."
msgstr ""
-#: sc/inc/globstr.hrc:396
+#: sc/inc/globstr.hrc:397
msgctxt "STR_FILE_LOCKED_TRY_LATER"
msgid ""
"The shared spreadsheet file is locked due to a merge in progress by user: '%1'\n"
@@ -1943,7 +1948,7 @@ msgid ""
"Sharing mode of a locked file cannot be disabled. Try again later."
msgstr ""
-#: sc/inc/globstr.hrc:397
+#: sc/inc/globstr.hrc:398
msgctxt "STR_FILE_LOCKED_SAVE_LATER"
msgid ""
"The shared spreadsheet file is locked due to a merge in progress by user: '%1'\n"
@@ -1951,157 +1956,157 @@ msgid ""
"Try again later to save your changes."
msgstr ""
-#: sc/inc/globstr.hrc:398
+#: sc/inc/globstr.hrc:399
msgctxt "STR_UNKNOWN_USER"
msgid "Unknown User"
msgstr "ལག་ལེན་པ་ངོ་མ་ཤེསཔ་"
-#: sc/inc/globstr.hrc:399
+#: sc/inc/globstr.hrc:400
msgctxt "STR_SHAPE_AUTOSHAPE"
msgid "AutoShape"
msgstr ""
-#: sc/inc/globstr.hrc:400
+#: sc/inc/globstr.hrc:401
#, fuzzy
msgctxt "STR_SHAPE_RECTANGLE"
msgid "Rectangle"
msgstr "གྲུ་བཞི་ནར་མོ།"
-#: sc/inc/globstr.hrc:401
+#: sc/inc/globstr.hrc:402
msgctxt "STR_SHAPE_LINE"
msgid "Line"
msgstr "གྲལ་ཐིག"
-#: sc/inc/globstr.hrc:402
+#: sc/inc/globstr.hrc:403
msgctxt "STR_SHAPE_OVAL"
msgid "Oval"
msgstr "སྒོང་དབྱིབས།"
-#: sc/inc/globstr.hrc:403
+#: sc/inc/globstr.hrc:404
#, fuzzy
msgctxt "STR_FORM_BUTTON"
msgid "Button"
msgstr "ཨེབ་རྟ།"
-#: sc/inc/globstr.hrc:404
+#: sc/inc/globstr.hrc:405
#, fuzzy
msgctxt "STR_FORM_CHECKBOX"
msgid "Check Box"
msgstr "ཞིབ་དཔྱད་སྒྲོམ།"
-#: sc/inc/globstr.hrc:405
+#: sc/inc/globstr.hrc:406
#, fuzzy
msgctxt "STR_FORM_OPTIONBUTTON"
msgid "Option Button"
msgstr "ཨེབ་རྟ་གདམ་ཁ།"
-#: sc/inc/globstr.hrc:406
+#: sc/inc/globstr.hrc:407
msgctxt "STR_FORM_LABEL"
msgid "Label"
msgstr "ཁ་ཡིག"
-#: sc/inc/globstr.hrc:407
+#: sc/inc/globstr.hrc:408
#, fuzzy
msgctxt "STR_FORM_LISTBOX"
msgid "List Box"
msgstr "ཐོ་བཀོད་སྒྲོམ"
-#: sc/inc/globstr.hrc:408
+#: sc/inc/globstr.hrc:409
msgctxt "STR_FORM_GROUPBOX"
msgid "Group Box"
msgstr "སྡེ་ཚན་སྒྲོམ།"
-#: sc/inc/globstr.hrc:409
+#: sc/inc/globstr.hrc:410
#, fuzzy
msgctxt "STR_FORM_DROPDOWN"
msgid "Drop Down"
msgstr "སར་འཇོག"
-#: sc/inc/globstr.hrc:410
+#: sc/inc/globstr.hrc:411
msgctxt "STR_FORM_SPINNER"
msgid "Spinner"
msgstr ""
-#: sc/inc/globstr.hrc:411
+#: sc/inc/globstr.hrc:412
#, fuzzy
msgctxt "STR_FORM_SCROLLBAR"
msgid "Scroll Bar"
msgstr "བཤུད་སྒྲིལ་ཕྲ་རིང་།"
-#: sc/inc/globstr.hrc:412
+#: sc/inc/globstr.hrc:413
msgctxt "STR_STYLE_FAMILY_CELL"
msgid "Cell Styles"
msgstr "ནང་ཐིག་གི་བཟོ་རྣམ།(~C)"
-#: sc/inc/globstr.hrc:413
+#: sc/inc/globstr.hrc:414
msgctxt "STR_STYLE_FAMILY_PAGE"
msgid "Page Styles"
msgstr "ཤོག་ལེབ་ཀྱི་བཟོ་རྣམ།"
-#: sc/inc/globstr.hrc:414
+#: sc/inc/globstr.hrc:415
#, fuzzy
msgctxt "STR_ERR_DATAPILOTSOURCE"
msgid "Pivot table source data is invalid."
msgstr "རྒྱུན་རིམ་བྱིན་ཡོད་མི་དེ་ནུས་མེད་ཨིན་པས།"
-#: sc/inc/globstr.hrc:415
+#: sc/inc/globstr.hrc:416
msgctxt "STR_OPTIONS_WARN_SEPARATORS"
msgid "Because the current formula separator settings conflict with the locale, the formula separators have been reset to their default values."
msgstr ""
-#: sc/inc/globstr.hrc:416
+#: sc/inc/globstr.hrc:417
msgctxt "STR_UNDO_INSERT_CURRENT_DATE"
msgid "Insert Current Date"
msgstr ""
-#: sc/inc/globstr.hrc:417
+#: sc/inc/globstr.hrc:418
msgctxt "STR_UNDO_INSERT_CURRENT_TIME"
msgid "Insert Current Time"
msgstr ""
-#: sc/inc/globstr.hrc:418
+#: sc/inc/globstr.hrc:419
#, fuzzy
msgctxt "STR_MANAGE_NAMES"
msgid "Manage Names..."
msgstr "ཁྱབ་ཚད་ཀྱི་མིང་།"
-#: sc/inc/globstr.hrc:419
+#: sc/inc/globstr.hrc:420
msgctxt "STR_HEADER_NAME"
msgid "Name"
msgstr "མིང་།"
-#: sc/inc/globstr.hrc:420
+#: sc/inc/globstr.hrc:421
msgctxt "STR_HEADER_RANGE_OR_EXPR"
msgid "Range or formula expression"
msgstr ""
-#: sc/inc/globstr.hrc:421
+#: sc/inc/globstr.hrc:422
msgctxt "STR_HEADER_SCOPE"
msgid "Scope"
msgstr ""
-#: sc/inc/globstr.hrc:422
+#: sc/inc/globstr.hrc:423
msgctxt "STR_MULTI_SELECT"
msgid "(multiple)"
msgstr ""
-#: sc/inc/globstr.hrc:423
+#: sc/inc/globstr.hrc:424
#, fuzzy
msgctxt "STR_GLOBAL_SCOPE"
msgid "Document (Global)"
msgstr "ཡིག་ཆ་ཐབས་ལམ།"
-#: sc/inc/globstr.hrc:424
+#: sc/inc/globstr.hrc:425
msgctxt "STR_ERR_NAME_EXISTS"
msgid "Invalid name. Already in use for the selected scope."
msgstr ""
-#: sc/inc/globstr.hrc:425
+#: sc/inc/globstr.hrc:426
msgctxt "STR_ERR_NAME_INVALID"
msgid "Invalid name. Only use letters, numbers and underscore."
msgstr ""
-#: sc/inc/globstr.hrc:426
+#: sc/inc/globstr.hrc:427
msgctxt "STR_UNSAVED_EXT_REF"
msgid ""
"This Document contains external references to unsaved documents.\n"
@@ -2109,226 +2114,226 @@ msgid ""
"Do you want to continue?"
msgstr ""
-#: sc/inc/globstr.hrc:427
+#: sc/inc/globstr.hrc:428
msgctxt "STR_CLOSE_WITH_UNSAVED_REFS"
msgid "This Document is referenced by another document and not yet saved. Closing it without saving will result in data loss."
msgstr ""
-#: sc/inc/globstr.hrc:428
+#: sc/inc/globstr.hrc:429
msgctxt "STR_HEADER_RANGE"
msgid "Range"
msgstr "ཁྱབ་ཚད།"
-#: sc/inc/globstr.hrc:429
+#: sc/inc/globstr.hrc:430
msgctxt "STR_HEADER_COND"
msgid "First Condition"
msgstr ""
-#: sc/inc/globstr.hrc:430
+#: sc/inc/globstr.hrc:431
#, fuzzy
msgctxt "STR_COND_CONDITION"
msgid "Cell value is"
msgstr "ནང་ཐིག་གི་གནས་གོང་དེ།"
-#: sc/inc/globstr.hrc:431
+#: sc/inc/globstr.hrc:432
msgctxt "STR_COND_COLORSCALE"
msgid "ColorScale"
msgstr ""
-#: sc/inc/globstr.hrc:432
+#: sc/inc/globstr.hrc:433
msgctxt "STR_COND_DATABAR"
msgid "DataBar"
msgstr ""
-#: sc/inc/globstr.hrc:433
+#: sc/inc/globstr.hrc:434
msgctxt "STR_COND_ICONSET"
msgid "IconSet"
msgstr ""
-#: sc/inc/globstr.hrc:434
+#: sc/inc/globstr.hrc:435
#, fuzzy
msgctxt "STR_COND_BETWEEN"
msgid "between"
msgstr "བར་ན།"
-#: sc/inc/globstr.hrc:435
+#: sc/inc/globstr.hrc:436
#, fuzzy
msgctxt "STR_COND_NOTBETWEEN"
msgid "not between"
msgstr "བར་ན་མེན།"
-#: sc/inc/globstr.hrc:436
+#: sc/inc/globstr.hrc:437
msgctxt "STR_COND_UNIQUE"
msgid "unique"
msgstr ""
-#: sc/inc/globstr.hrc:437
+#: sc/inc/globstr.hrc:438
#, fuzzy
msgctxt "STR_COND_DUPLICATE"
msgid "duplicate"
msgstr "རྫུན་མ།"
-#: sc/inc/globstr.hrc:438
+#: sc/inc/globstr.hrc:439
#, fuzzy
msgctxt "STR_COND_FORMULA"
msgid "Formula is"
msgstr "མན་ངག་དེ།"
-#: sc/inc/globstr.hrc:439
+#: sc/inc/globstr.hrc:440
msgctxt "STR_COND_TOP10"
msgid "Top Elements"
msgstr ""
-#: sc/inc/globstr.hrc:440
+#: sc/inc/globstr.hrc:441
msgctxt "STR_COND_BOTTOM10"
msgid "Bottom Elements"
msgstr ""
-#: sc/inc/globstr.hrc:441
+#: sc/inc/globstr.hrc:442
msgctxt "STR_COND_TOP_PERCENT"
msgid "Top Percent"
msgstr ""
-#: sc/inc/globstr.hrc:442
+#: sc/inc/globstr.hrc:443
msgctxt "STR_COND_DATE"
msgid "Date is"
msgstr ""
-#: sc/inc/globstr.hrc:443
+#: sc/inc/globstr.hrc:444
msgctxt "STR_COND_BOTTOM_PERCENT"
msgid "Bottom Percent"
msgstr ""
-#: sc/inc/globstr.hrc:444
+#: sc/inc/globstr.hrc:445
msgctxt "STR_COND_ABOVE_AVERAGE"
msgid "Above Average"
msgstr ""
-#: sc/inc/globstr.hrc:445
+#: sc/inc/globstr.hrc:446
msgctxt "STR_COND_BELOW_AVERAGE"
msgid "Below Average"
msgstr ""
-#: sc/inc/globstr.hrc:446
+#: sc/inc/globstr.hrc:447
msgctxt "STR_COND_ABOVE_EQUAL_AVERAGE"
msgid "Above or equal Average"
msgstr ""
-#: sc/inc/globstr.hrc:447
+#: sc/inc/globstr.hrc:448
msgctxt "STR_COND_BELOW_EQUAL_AVERAGE"
msgid "Below or equal Average"
msgstr ""
-#: sc/inc/globstr.hrc:448
+#: sc/inc/globstr.hrc:449
#, fuzzy
msgctxt "STR_COND_ERROR"
msgid "an Error code"
msgstr "འཛོལ་བའི་ཨང་རྟགས།"
-#: sc/inc/globstr.hrc:449
+#: sc/inc/globstr.hrc:450
#, fuzzy
msgctxt "STR_COND_NOERROR"
msgid "not an Error code"
msgstr "འཛོལ་བའི་ཨང་རྟགས།"
-#: sc/inc/globstr.hrc:450
+#: sc/inc/globstr.hrc:451
msgctxt "STR_COND_BEGINS_WITH"
msgid "Begins with"
msgstr ""
-#: sc/inc/globstr.hrc:451
+#: sc/inc/globstr.hrc:452
msgctxt "STR_COND_ENDS_WITH"
msgid "Ends with"
msgstr ""
-#: sc/inc/globstr.hrc:452
+#: sc/inc/globstr.hrc:453
#, fuzzy
msgctxt "STR_COND_CONTAINS"
msgid "Contains"
msgstr "ནང་ན་ཡོད་པ།"
-#: sc/inc/globstr.hrc:453
+#: sc/inc/globstr.hrc:454
msgctxt "STR_COND_NOT_CONTAINS"
msgid "Not Contains"
msgstr ""
-#: sc/inc/globstr.hrc:454
+#: sc/inc/globstr.hrc:455
#, fuzzy
msgctxt "STR_COND_TODAY"
msgid "today"
msgstr "ད་རིས།"
-#: sc/inc/globstr.hrc:455
+#: sc/inc/globstr.hrc:456
msgctxt "STR_COND_YESTERDAY"
msgid "yesterday"
msgstr ""
-#: sc/inc/globstr.hrc:456
+#: sc/inc/globstr.hrc:457
msgctxt "STR_COND_TOMORROW"
msgid "tomorrow"
msgstr ""
-#: sc/inc/globstr.hrc:457
+#: sc/inc/globstr.hrc:458
msgctxt "STR_COND_LAST7DAYS"
msgid "in the last 7 days"
msgstr ""
-#: sc/inc/globstr.hrc:458
+#: sc/inc/globstr.hrc:459
msgctxt "STR_COND_THISWEEK"
msgid "this week"
msgstr ""
-#: sc/inc/globstr.hrc:459
+#: sc/inc/globstr.hrc:460
msgctxt "STR_COND_LASTWEEK"
msgid "last week"
msgstr ""
-#: sc/inc/globstr.hrc:460
+#: sc/inc/globstr.hrc:461
msgctxt "STR_COND_NEXTWEEK"
msgid "next week"
msgstr ""
-#: sc/inc/globstr.hrc:461
+#: sc/inc/globstr.hrc:462
msgctxt "STR_COND_THISMONTH"
msgid "this month"
msgstr ""
-#: sc/inc/globstr.hrc:462
+#: sc/inc/globstr.hrc:463
msgctxt "STR_COND_LASTMONTH"
msgid "last month"
msgstr ""
-#: sc/inc/globstr.hrc:463
+#: sc/inc/globstr.hrc:464
msgctxt "STR_COND_NEXTMONTH"
msgid "next month"
msgstr ""
-#: sc/inc/globstr.hrc:464
+#: sc/inc/globstr.hrc:465
msgctxt "STR_COND_THISYEAR"
msgid "this year"
msgstr ""
-#: sc/inc/globstr.hrc:465
+#: sc/inc/globstr.hrc:466
msgctxt "STR_COND_LASTYEAR"
msgid "last year"
msgstr ""
-#: sc/inc/globstr.hrc:466
+#: sc/inc/globstr.hrc:467
msgctxt "STR_COND_NEXTYEAR"
msgid "next year"
msgstr ""
-#: sc/inc/globstr.hrc:467
+#: sc/inc/globstr.hrc:468
msgctxt "STR_COND_AND"
msgid "and"
msgstr "དང་།"
-#: sc/inc/globstr.hrc:468
+#: sc/inc/globstr.hrc:469
msgctxt "STR_ERR_CONDFORMAT_PROTECTED"
msgid "Conditional Formats can not be created, deleted or changed in protected sheets."
msgstr ""
-#: sc/inc/globstr.hrc:469
+#: sc/inc/globstr.hrc:470
msgctxt "STR_EDIT_EXISTING_COND_FORMATS"
msgid ""
"The selected cell already contains conditional formatting. You can either edit the existing conditional format or you define a new overlapping conditional format.\n"
@@ -2336,7 +2341,7 @@ msgid ""
" Do you want to edit the existing conditional format?"
msgstr ""
-#: sc/inc/globstr.hrc:470
+#: sc/inc/globstr.hrc:471
msgctxt "STR_QUERY_FORMULA_RECALC_ONLOAD_ODS"
msgid ""
"This document was last saved by an application other than %PRODUCTNAME. Some formula cells may produce different results when recalculated.\n"
@@ -2344,7 +2349,7 @@ msgid ""
"Do you want to recalculate all formula cells in this document now?"
msgstr ""
-#: sc/inc/globstr.hrc:471
+#: sc/inc/globstr.hrc:472
msgctxt "STR_QUERY_FORMULA_RECALC_ONLOAD_XLS"
msgid ""
"This document was last saved by Excel. Some formula cells may produce different results when recalculated.\n"
@@ -2352,82 +2357,82 @@ msgid ""
"Do you want to recalculate all formula cells now?"
msgstr ""
-#: sc/inc/globstr.hrc:472
+#: sc/inc/globstr.hrc:473
msgctxt "STR_NO_INSERT_DELETE_OVER_PIVOT_TABLE"
msgid "You cannot insert or delete cells when the affected range intersects with pivot table."
msgstr ""
-#: sc/inc/globstr.hrc:473
+#: sc/inc/globstr.hrc:474
msgctxt "STR_DPFIELD_GROUP_BY_SECONDS"
msgid "Seconds"
msgstr "སྐར་ཆ།"
-#: sc/inc/globstr.hrc:474
+#: sc/inc/globstr.hrc:475
msgctxt "STR_DPFIELD_GROUP_BY_MINUTES"
msgid "Minutes"
msgstr ""
-#: sc/inc/globstr.hrc:475
+#: sc/inc/globstr.hrc:476
msgctxt "STR_DPFIELD_GROUP_BY_HOURS"
msgid "Hours"
msgstr "ཆུ་ཚོད།"
-#: sc/inc/globstr.hrc:476
+#: sc/inc/globstr.hrc:477
msgctxt "STR_DPFIELD_GROUP_BY_DAYS"
msgid "Days"
msgstr "གཟའ་ཚུ།"
-#: sc/inc/globstr.hrc:477
+#: sc/inc/globstr.hrc:478
msgctxt "STR_DPFIELD_GROUP_BY_MONTHS"
msgid "Months"
msgstr "ཟླཝ།"
-#: sc/inc/globstr.hrc:478
+#: sc/inc/globstr.hrc:479
msgctxt "STR_DPFIELD_GROUP_BY_QUARTERS"
msgid "Quarters"
msgstr ""
-#: sc/inc/globstr.hrc:479
+#: sc/inc/globstr.hrc:480
#, fuzzy
msgctxt "STR_DPFIELD_GROUP_BY_YEARS"
msgid "Years"
msgstr "ལོ།"
-#: sc/inc/globstr.hrc:480
+#: sc/inc/globstr.hrc:481
#, fuzzy
msgctxt "STR_INVALIDVAL"
msgid "Invalid target value."
msgstr "ནུས་མེད་དམིགས་གཏད་ཀྱི་གནས་གོང་།"
-#: sc/inc/globstr.hrc:481
+#: sc/inc/globstr.hrc:482
#, fuzzy
msgctxt "STR_INVALIDVAR"
msgid "Undefined name for variable cell."
msgstr "འགྱུར་ཅན་ནང་ཐིག་གི་དོན་ལུ་ ངེས་འཛིན་མ་འབད་བའི་མིང་།"
-#: sc/inc/globstr.hrc:482
+#: sc/inc/globstr.hrc:483
#, fuzzy
msgctxt "STR_INVALIDFORM"
msgid "Undefined name as formula cell."
msgstr "ངེས་འཛིན་མ་འབད་བའི་མིང་དེ་ མན་ངག་ནང་ཐིག་བཟུམ་སྦེ།"
-#: sc/inc/globstr.hrc:483
+#: sc/inc/globstr.hrc:484
msgctxt "STR_NOFORMULA"
msgid "Formula cell must contain a formula."
msgstr ""
-#: sc/inc/globstr.hrc:484
+#: sc/inc/globstr.hrc:485
#, fuzzy
msgctxt "STR_INVALIDINPUT"
msgid "Invalid input."
msgstr "ནུས་མེད་ཟུར་ཐོ།"
-#: sc/inc/globstr.hrc:485
+#: sc/inc/globstr.hrc:486
msgctxt "STR_INVALIDCONDITION"
msgid "Invalid condition."
msgstr ""
-#: sc/inc/globstr.hrc:486
+#: sc/inc/globstr.hrc:487
msgctxt "STR_QUERYREMOVE"
msgid ""
"Should the entry\n"
@@ -2435,139 +2440,139 @@ msgid ""
"be deleted?"
msgstr ""
-#: sc/inc/globstr.hrc:487
+#: sc/inc/globstr.hrc:488
msgctxt "STR_COPYLIST"
msgid "Copy List"
msgstr ""
-#: sc/inc/globstr.hrc:488
+#: sc/inc/globstr.hrc:489
msgctxt "STR_COPYFROM"
msgid "List from"
msgstr ""
-#: sc/inc/globstr.hrc:489
+#: sc/inc/globstr.hrc:490
msgctxt "STR_COPYERR"
msgid "Cells without text have been ignored."
msgstr ""
-#: sc/inc/globstr.hrc:490
+#: sc/inc/globstr.hrc:491
#, c-format
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%s-click to follow hyperlink:"
msgstr ""
-#: sc/inc/globstr.hrc:491
+#: sc/inc/globstr.hrc:492
msgctxt "STR_CLICKHYPERLINK"
msgid "click to open hyperlink:"
msgstr ""
-#: sc/inc/globstr.hrc:492
+#: sc/inc/globstr.hrc:493
msgctxt "STR_PRINT_PREVIEW_NODATA"
msgid "No Data"
msgstr ""
-#: sc/inc/globstr.hrc:493
+#: sc/inc/globstr.hrc:494
msgctxt "STR_PRINT_PREVIEW_EMPTY_RANGE"
msgid "Print Range Empty"
msgstr ""
-#: sc/inc/globstr.hrc:494
+#: sc/inc/globstr.hrc:495
#, fuzzy
msgctxt "STR_UNDO_CONDFORMAT"
msgid "Conditional Format"
msgstr "གནས་སྟངས་ཅན་གྱི་ཐོག་ལས་རྩ་སྒྲིག་འབད་ནི།"
-#: sc/inc/globstr.hrc:495
+#: sc/inc/globstr.hrc:496
#, fuzzy
msgctxt "STR_UNDO_CONDFORMAT_LIST"
msgid "Conditional Formats"
msgstr "གནས་སྟངས་ཅན་གྱི་ཐོག་ལས་རྩ་སྒྲིག་འབད་ནི།"
-#: sc/inc/globstr.hrc:496
+#: sc/inc/globstr.hrc:497
msgctxt "STR_UNDO_FORMULA_TO_VALUE"
msgid "Convert Formula To Value"
msgstr ""
-#: sc/inc/globstr.hrc:497
+#: sc/inc/globstr.hrc:498
msgctxt "STR_UNQUOTED_STRING"
msgid "Strings without quotes are interpreted as column/row labels."
msgstr ""
-#: sc/inc/globstr.hrc:498
+#: sc/inc/globstr.hrc:499
msgctxt "STR_ENTER_VALUE"
msgid "Enter a value!"
msgstr ""
-#: sc/inc/globstr.hrc:499
+#: sc/inc/globstr.hrc:500
msgctxt "STR_TABLE_COUNT"
msgid "Sheet %1 of %2"
msgstr ""
-#: sc/inc/globstr.hrc:500
+#: sc/inc/globstr.hrc:501
msgctxt "STR_FUNCTIONS_FOUND"
msgid "%1 and %2 more"
msgstr ""
-#: sc/inc/globstr.hrc:501
+#: sc/inc/globstr.hrc:502
msgctxt "STR_GENERAL"
msgid "General"
msgstr "ཡོངས་ཁྱབ།"
-#: sc/inc/globstr.hrc:502
+#: sc/inc/globstr.hrc:503
#, fuzzy
msgctxt "STR_NUMBER"
msgid "Number"
msgstr "ཨང་གྲངས།"
-#: sc/inc/globstr.hrc:503
+#: sc/inc/globstr.hrc:504
#, fuzzy
msgctxt "STR_PERCENT"
msgid "Percent"
msgstr "བརྒྱ་ཆ།"
-#: sc/inc/globstr.hrc:504
+#: sc/inc/globstr.hrc:505
msgctxt "STR_CURRENCY"
msgid "Currency"
msgstr "དངུལ།"
-#: sc/inc/globstr.hrc:505
+#: sc/inc/globstr.hrc:506
msgctxt "STR_DATE"
msgid "Date"
msgstr "ཚེས་གྲངས།"
-#: sc/inc/globstr.hrc:506
+#: sc/inc/globstr.hrc:507
msgctxt "STR_TIME"
msgid "Time"
msgstr "ཆུ་ཚོད།"
-#: sc/inc/globstr.hrc:507
+#: sc/inc/globstr.hrc:508
msgctxt "STR_SCIENTIFIC"
msgid "Scientific"
msgstr ""
-#: sc/inc/globstr.hrc:508
+#: sc/inc/globstr.hrc:509
#, fuzzy
msgctxt "STR_FRACTION"
msgid "Fraction"
msgstr "ལས་འགན།"
-#: sc/inc/globstr.hrc:509
+#: sc/inc/globstr.hrc:510
msgctxt "STR_BOOLEAN_VALUE"
msgid "Boolean Value"
msgstr ""
-#: sc/inc/globstr.hrc:510
+#: sc/inc/globstr.hrc:511
#, fuzzy
msgctxt "STR_TEXT"
msgid "Text"
msgstr "ཚིག་ཡིག"
-#: sc/inc/globstr.hrc:511
+#: sc/inc/globstr.hrc:512
msgctxt "STR_QUERY_PIVOTTABLE_DELTAB"
msgid "The selected sheet(s) contain source data of related pivot tables that will be lost. Are you sure you want to delete the selected sheet(s)?"
msgstr ""
-#: sc/inc/globstr.hrc:512
+#: sc/inc/globstr.hrc:513
msgctxt "STR_ERR_NAME_INVALID_CELL_REF"
msgid "Invalid name. Reference to a cell, or a range of cells not allowed."
msgstr ""
@@ -10854,8 +10859,8 @@ msgstr "ཐབས་ལམ།"
#: sc/inc/scfuncs.hrc:3010
msgctxt "SC_OPCODE_T_TEST"
-msgid "Mode specifies the number of distribution tails to return. 1= one-tailed, 2 = two-tailed distribution"
-msgstr "ཐབས་ལམ་དེ་གིས་ གྲངས་མང་གི་བགོ་བཀྲམ་ཊེའིལིསི་དེ་་ སླར་ལོག་གཏང་ནིའི་དོན་ལུ་ གསལ་བཀོད་འབདཝ་ཨིན། ༡=ཝནི་-ཊའིལིཊཌི་ ༢=ཊུ་-ཊེའིལིཌི་ བགོ་བཀྲམ།"
+msgid "Mode specifies the number of distribution tails to return. 1 = one-tailed, 2 = two-tailed distribution"
+msgstr ""
#: sc/inc/scfuncs.hrc:3011
msgctxt "SC_OPCODE_T_TEST"
@@ -10901,8 +10906,8 @@ msgstr "ཐབས་ལམ།"
#: sc/inc/scfuncs.hrc:3024
msgctxt "SC_OPCODE_T_TEST_MS"
-msgid "Mode specifies the number of distribution tails to return. 1= one-tailed, 2 = two-tailed distribution"
-msgstr "ཐབས་ལམ་དེ་གིས་ གྲངས་མང་གི་བགོ་བཀྲམ་ཊེའིལིསི་དེ་་ སླར་ལོག་གཏང་ནིའི་དོན་ལུ་ གསལ་བཀོད་འབདཝ་ཨིན། ༡=ཝནི་-ཊའིལིཊཌི་ ༢=ཊུ་-ཊེའིལིཌི་ བགོ་བཀྲམ།"
+msgid "Mode specifies the number of distribution tails to return. 1 = one-tailed, 2 = two-tailed distribution"
+msgstr ""
#: sc/inc/scfuncs.hrc:3025
msgctxt "SC_OPCODE_T_TEST_MS"
@@ -18783,23 +18788,23 @@ msgctxt "mergecellsdialog|MergeCellsDialog"
msgid "Merge Cells"
msgstr "ནང་ཐིག་ མཉམ་སྡོམས་འབད།"
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:81
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:84
msgctxt "mergecellsdialog|label"
msgid "Some cells are not empty."
msgstr ""
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:96
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:99
#, fuzzy
msgctxt "mergecellsdialog|move-cells-radio"
msgid "Move the contents of the hidden cells into the first cell"
msgstr "སྦ་བཞག་ཡོད་མི་ནང་ཐིག་གི་ནང་དོན་ཚུ་ ནང་ཐིག་དང་པམ་ནང་ལུ་སྤོ་བཤུད་འབད་དགོ་ག?"
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:112
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:115
msgctxt "mergecellsdialog|empty-cells-radio"
msgid "Empty the contents of the hidden cells"
msgstr ""
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:128
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:131
msgctxt "mergecellsdialog|keep-content-radio"
msgid "Keep the contents of the hidden cells"
msgstr ""
diff --git a/source/dz/sd/messages.po b/source/dz/sd/messages.po
index ef7d6b79aa4..b7fdd229dfc 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+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"
@@ -13,175 +13,175 @@ msgstr ""
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-#: sd/inc/DocumentRenderer.hrc:29
+#: sd/inc/DocumentRenderer.hrc:27
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Slides"
msgstr "བཤུད་བརྙན་ཚུ།"
-#: sd/inc/DocumentRenderer.hrc:30
+#: sd/inc/DocumentRenderer.hrc:28
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Handouts"
msgstr "ལག་བཀྲམ་ཚུ།"
-#: sd/inc/DocumentRenderer.hrc:31
+#: sd/inc/DocumentRenderer.hrc:29
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Notes"
msgstr "དྲན་འཛིན་ཚུ།"
-#: sd/inc/DocumentRenderer.hrc:32
+#: sd/inc/DocumentRenderer.hrc:30
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Outline"
msgstr "མཐའ་ཐིག"
-#: sd/inc/DocumentRenderer.hrc:37
+#: sd/inc/DocumentRenderer.hrc:35
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "According to layout"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:38
+#: sd/inc/DocumentRenderer.hrc:36
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "1"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:39
+#: sd/inc/DocumentRenderer.hrc:37
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "2"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:40
+#: sd/inc/DocumentRenderer.hrc:38
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "3"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:41
+#: sd/inc/DocumentRenderer.hrc:39
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "4"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:42
+#: sd/inc/DocumentRenderer.hrc:40
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "6"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:43
+#: sd/inc/DocumentRenderer.hrc:41
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "9"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:48
+#: sd/inc/DocumentRenderer.hrc:46
msgctxt "STR_IMPRESS_PRINT_UI_ORDER_CHOICES"
msgid "Left to right, then down"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:49
+#: sd/inc/DocumentRenderer.hrc:47
msgctxt "STR_IMPRESS_PRINT_UI_ORDER_CHOICES"
msgid "Top to bottom, then right"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:54
+#: sd/inc/DocumentRenderer.hrc:52
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Original colors"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:55
+#: sd/inc/DocumentRenderer.hrc:53
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Grayscale"
msgstr "གེརེ་སིཀེལསི།"
-#: sd/inc/DocumentRenderer.hrc:56
+#: sd/inc/DocumentRenderer.hrc:54
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Black & white"
msgstr "གནགཔོ།& དཀརཔོ།(~w)"
-#: sd/inc/DocumentRenderer.hrc:61
+#: sd/inc/DocumentRenderer.hrc:59
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Original size"
msgstr "ཚད་ངོ་མ།(~r)"
-#: sd/inc/DocumentRenderer.hrc:62
+#: sd/inc/DocumentRenderer.hrc:60
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Fit to printable page"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:63
+#: sd/inc/DocumentRenderer.hrc:61
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Distribute on multiple sheets of paper"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:64
+#: sd/inc/DocumentRenderer.hrc:62
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Tile sheet of paper with repeated slides"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:69
+#: sd/inc/DocumentRenderer.hrc:67
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Original size"
msgstr "ཚད་ངོ་མ།(~r)"
-#: sd/inc/DocumentRenderer.hrc:70
+#: sd/inc/DocumentRenderer.hrc:68
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Fit to printable page"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:71
+#: sd/inc/DocumentRenderer.hrc:69
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Distribute on multiple sheets of paper"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:72
+#: sd/inc/DocumentRenderer.hrc:70
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Tile sheet of paper with repeated pages"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:77
+#: sd/inc/DocumentRenderer.hrc:75
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "All pages"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:78
+#: sd/inc/DocumentRenderer.hrc:76
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "Front sides / right pages"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:79
+#: sd/inc/DocumentRenderer.hrc:77
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "Back sides / left pages"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:84
+#: sd/inc/DocumentRenderer.hrc:82
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~All slides"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:85
+#: sd/inc/DocumentRenderer.hrc:83
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~Slides"
msgstr "བཤུད་བརྙན་ཚུ།"
-#: sd/inc/DocumentRenderer.hrc:86
+#: sd/inc/DocumentRenderer.hrc:84
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Se~lection"
msgstr "སེལ་འཐུ།"
-#: sd/inc/DocumentRenderer.hrc:91
+#: sd/inc/DocumentRenderer.hrc:89
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~All pages"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:92
+#: sd/inc/DocumentRenderer.hrc:90
#, fuzzy
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Pa~ges"
msgstr "ཤོག་ལེབ་ཚུ།"
-#: sd/inc/DocumentRenderer.hrc:93
+#: sd/inc/DocumentRenderer.hrc:91
#, fuzzy
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Se~lection"
diff --git a/source/dz/svx/messages.po b/source/dz/svx/messages.po
index 3c25a139856..b529f58ca81 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: 2018-05-16 16:53+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+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"
@@ -5539,7 +5539,7 @@ msgstr ""
#: svx/uiconfig/ui/safemodedialog.ui:432
msgctxt "safemodedialog|btn_create_zip"
-msgid "Create Zip Archive from User Profile"
+msgid "Archive User Profile"
msgstr ""
#: svx/uiconfig/ui/safemodedialog.ui:445
@@ -9213,9 +9213,9 @@ msgid "Red"
msgstr "དམརཔོ"
#: include/svx/strings.hrc:565
-msgctxt "RID_SVXSTR_COLOR_VIOLET"
-msgid "Violet"
-msgstr "སྔོ་སྨུག"
+msgctxt "RID_SVXSTR_COLOR_MAGENTA"
+msgid "Magenta"
+msgstr "དམར་སྨུག།"
#: include/svx/strings.hrc:566
msgctxt "RID_SVXSTR_COLOR_PURPLE"
@@ -9280,8 +9280,8 @@ msgid "Light Red"
msgstr ""
#: include/svx/strings.hrc:579
-msgctxt "RID_SVXSTR_COLOR_LIGHTVIOLET"
-msgid "Light Violet"
+msgctxt "RID_SVXSTR_COLOR_LIGHTMAGENTA"
+msgid "Light Magenta"
msgstr ""
#: include/svx/strings.hrc:580
@@ -9348,8 +9348,8 @@ msgid "Dark Red"
msgstr "དམར་ནག།"
#: include/svx/strings.hrc:593
-msgctxt "RID_SVXSTR_COLOR_DARKVIOLET1"
-msgid "Dark Violet"
+msgctxt "RID_SVXSTR_COLOR_DARKMAGENTA"
+msgid "Dark Magenta"
msgstr ""
#: include/svx/strings.hrc:594
@@ -9384,55 +9384,55 @@ msgstr ""
#. Elements of the Tonal color palette
#: include/svx/strings.hrc:601
+msgctxt "RID_SVXSTR_COLOR_VIOLET"
+msgid "Violet"
+msgstr "སྔོ་སྨུག"
+
+#: include/svx/strings.hrc:602
msgctxt "RID_SVXSTR_COLOR_VIOLET_OUG"
msgid "Violet (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:602
+#: include/svx/strings.hrc:603
msgctxt "RID_SVXSTR_COLOR_BLUE_OUG"
msgid "Blue (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:603
+#: include/svx/strings.hrc:604
msgctxt "RID_SVXSTR_COLOR_AZURE_OUG"
msgid "Azure (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:604
+#: include/svx/strings.hrc:605
msgctxt "RID_SVXSTR_COLOR_SPRINGGREEN_OUG"
msgid "Spring Green (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:605
+#: include/svx/strings.hrc:606
msgctxt "RID_SVXSTR_COLOR_GREEN_OUG"
msgid "Green (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:606
+#: include/svx/strings.hrc:607
msgctxt "RID_SVXSTR_COLOR_CHARTREUSEGREEN_OUG"
msgid "Chartreuse Green (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:607
+#: include/svx/strings.hrc:608
msgctxt "RID_SVXSTR_COLOR_ORANGE_OUG"
msgid "Orange (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:608
+#: include/svx/strings.hrc:609
msgctxt "RID_SVXSTR_COLOR_RED_OUG"
msgid "Red (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:609
+#: include/svx/strings.hrc:610
msgctxt "RID_SVXSTR_COLOR_ROSE_OUG"
msgid "Rose (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:610
-msgctxt "RID_SVXSTR_COLOR_MAGENTA"
-msgid "Magenta"
-msgstr "དམར་སྨུག།"
-
#: include/svx/strings.hrc:611
msgctxt "RID_SVXSTR_COLOR_AZURE"
msgid "Azure"
@@ -12646,13 +12646,13 @@ msgstr "གཡས་དཔག་ནིའི་བརྡ་རྟགས་འག
#: include/svx/strings.hrc:1273
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_6"
-msgid "Check mark bullets"
-msgstr "རྟགས་བཀལ་ཡོད་པའི་འགོ་ཚགས་ཚུ་ཞིབ་དཔྱད་འབད་"
+msgid "Cross mark bullets"
+msgstr ""
#: include/svx/strings.hrc:1274
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_7"
-msgid "Tick mark bullets"
-msgstr "རྟགས་བཀལ་ཡོད་པའི་འགོ་ཚགས་ཚུ་བདེན་རྟགས་བཀལ་"
+msgid "Check mark bullets"
+msgstr ""
#: include/svx/strings.hrc:1275
#, fuzzy
diff --git a/source/dz/sw/messages.po b/source/dz/sw/messages.po
index afb5249bc7f..92db96d81d8 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: 2018-05-22 13:17+0200\n"
+"POT-Creation-Date: 2018-06-12 14:41+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"
@@ -1233,13 +1233,13 @@ msgstr "འདྲེན་ཚིག"
#: sw/inc/strings.hrc:172
msgctxt "STR_POOLCOLL_TOX_ILLUSH"
-msgid "Illustration Index Heading"
-msgstr "རི་མོ་ཟུར་ཐོའི་མགུ་རྒྱན།"
+msgid "Figure Index Heading"
+msgstr ""
#: sw/inc/strings.hrc:173
msgctxt "STR_POOLCOLL_TOX_ILLUS1"
-msgid "Illustration Index 1"
-msgstr "རི་མོ་ཟུར་ཐོ་ ༡།"
+msgid "Figure Index 1"
+msgstr ""
#: sw/inc/strings.hrc:174
#, fuzzy
@@ -3781,10 +3781,9 @@ msgid "Table of Objects"
msgstr ""
#: sw/inc/strings.hrc:672
-#, fuzzy
msgctxt "STR_TOX_ILL"
-msgid "Illustration Index"
-msgstr "རི་མོ་ཟུར་ཐོ་ ༡།"
+msgid "Table of Figures"
+msgstr ""
#: sw/inc/strings.hrc:673
#, c-format
@@ -9807,81 +9806,81 @@ msgctxt "footnotepage|label5"
msgid "Continuation Notice"
msgstr "འཕྲོ་མཐུད་བརྡ་བསྐུལ།"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:49
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:55
#, fuzzy
msgctxt "footnotesendnotestabpage|ftnntnum"
msgid "_Restart numbering"
msgstr "ཨང་བཏགས་ནི་ལོག་འགོ་བཙུགས།(~R)"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:91
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:93
#, fuzzy
msgctxt "footnotesendnotestabpage|ftnoffset_label"
msgid "_Start at:"
msgstr "ལུ་འགོ་བཙུགས།(~S)"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:112
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:111
msgctxt "footnotesendnotestabpage|ftnntnumfmt"
msgid "Custom _format"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:155
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:150
#, fuzzy
msgctxt "footnotesendnotestabpage|ftnsuffix_label"
msgid "Aft_er:"
msgstr "ཤུལ་ལས།"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:199
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:188
#, fuzzy
msgctxt "footnotesendnotestabpage|ftnprefix_label"
msgid "Be_fore:"
msgstr "ཧེ་མ།"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:228
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:212
msgctxt "footnotesendnotestabpage|ftnntattextend"
msgid "Collec_t at end of text"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:252
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:234
#, fuzzy
msgctxt "footnotesendnotestabpage|label1"
msgid "Footnotes"
msgstr "མཇུག་གི་དྲན་ཐོ།"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:289
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:271
msgctxt "footnotesendnotestabpage|endntattextend"
msgid "C_ollect at end of section"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:315
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:295
#, fuzzy
msgctxt "footnotesendnotestabpage|endntnum"
msgid "_Restart numbering"
msgstr "ཨང་བཏགས་ནི་ལོག་འགོ་བཙུགས།(~R)"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:357
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:333
#, fuzzy
msgctxt "footnotesendnotestabpage|endoffset_label"
msgid "_Start at:"
msgstr "ལུ་འགོ་བཙུགས།(~S)"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:378
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:351
msgctxt "footnotesendnotestabpage|endntnumfmt"
msgid "_Custom format"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:421
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:390
#, fuzzy
msgctxt "footnotesendnotestabpage|endsuffix_label"
msgid "Aft_er:"
msgstr "ཤུལ་ལས།"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:465
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:428
#, fuzzy
msgctxt "footnotesendnotestabpage|endprefix_label"
msgid "Be_fore:"
msgstr "ཧེ་མ།"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:500
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:458
#, fuzzy
msgctxt "footnotesendnotestabpage|label2"
msgid "Endnotes"
@@ -9914,29 +9913,29 @@ msgctxt "formatsectiondialog|notes"
msgid "Footnotes/Endnotes"
msgstr "མཇུག་གི་དྲན་ཐོ/མཐའི་དྲན་འཛིན་(~....)"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:63
+#: sw/uiconfig/swriter/ui/formattablepage.ui:77
#, fuzzy
msgctxt "formattablepage|nameft"
msgid "_Name"
msgstr "མིང་།"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:79
+#: sw/uiconfig/swriter/ui/formattablepage.ui:91
#, fuzzy
msgctxt "formattablepage|widthft"
msgid "W_idth"
msgstr "རྒྱ་ཚད།"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:110
+#: sw/uiconfig/swriter/ui/formattablepage.ui:120
msgctxt "formattablepage|relwidth"
msgid "Relati_ve"
msgstr ""
-#: sw/uiconfig/swriter/ui/formattablepage.ui:155
+#: sw/uiconfig/swriter/ui/formattablepage.ui:160
msgctxt "formattablepage|label45"
msgid "Properties"
msgstr "རྒྱུ་དངོས།"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:194
+#: sw/uiconfig/swriter/ui/formattablepage.ui:195
#, fuzzy
msgctxt "formattablepage|leftft"
msgid "Lef_t"
@@ -9948,70 +9947,70 @@ msgctxt "formattablepage|rightft"
msgid "Ri_ght"
msgstr "གཡས།"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:228
+#: sw/uiconfig/swriter/ui/formattablepage.ui:226
msgctxt "formattablepage|aboveft"
msgid "_Above"
msgstr ""
-#: sw/uiconfig/swriter/ui/formattablepage.ui:245
+#: sw/uiconfig/swriter/ui/formattablepage.ui:241
#, fuzzy
msgctxt "formattablepage|belowft"
msgid "_Below"
msgstr "འོག་ལུ།"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:320
+#: sw/uiconfig/swriter/ui/formattablepage.ui:311
msgctxt "formattablepage|label46"
msgid "Spacing"
msgstr "བར་སྟོང་བཞག་ཐངས།"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:362
+#: sw/uiconfig/swriter/ui/formattablepage.ui:349
#, fuzzy
msgctxt "formattablepage|full"
msgid "A_utomatic"
msgstr "རང་བཞིན་གྱི།"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:380
+#: sw/uiconfig/swriter/ui/formattablepage.ui:365
#, fuzzy
msgctxt "formattablepage|left"
msgid "_Left"
msgstr "གཡོན།"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:398
+#: sw/uiconfig/swriter/ui/formattablepage.ui:381
#, fuzzy
msgctxt "formattablepage|fromleft"
msgid "_From left"
msgstr "གཡོན་ལས།"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:416
+#: sw/uiconfig/swriter/ui/formattablepage.ui:397
#, fuzzy
msgctxt "formattablepage|right"
msgid "R_ight"
msgstr "གཡས།"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:435
+#: sw/uiconfig/swriter/ui/formattablepage.ui:413
#, fuzzy
msgctxt "formattablepage|center"
msgid "_Center"
msgstr "དབུས།"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:453
+#: sw/uiconfig/swriter/ui/formattablepage.ui:429
#, fuzzy
msgctxt "formattablepage|free"
msgid "_Manual"
msgstr "ལག་དེབ་"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:478
+#: sw/uiconfig/swriter/ui/formattablepage.ui:452
msgctxt "formattablepage|label43"
msgid "Alignment"
msgstr "ཕྲང་སྒྲིག"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:522
+#: sw/uiconfig/swriter/ui/formattablepage.ui:491
#, fuzzy
msgctxt "formattablepage|label53"
msgid "Text _direction"
msgstr "ཚིག་ཡིག་ཁ་ཕྱོགས་"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:553
+#: sw/uiconfig/swriter/ui/formattablepage.ui:519
#, fuzzy
msgctxt "formattablepage|label44"
msgid "Properties "
@@ -10404,22 +10403,27 @@ msgctxt "headerfootermenu|insert_pagenumber"
msgid "Insert Page Number"
msgstr ""
-#: sw/uiconfig/swriter/ui/indentpage.ui:52
+#: sw/uiconfig/swriter/ui/headerfootermenu.ui:42
+msgctxt "headerfootermenu|insert_pagecount"
+msgid "Insert Page Count"
+msgstr ""
+
+#: sw/uiconfig/swriter/ui/indentpage.ui:57
msgctxt "indentpage|label1"
msgid "_Before section"
msgstr ""
-#: sw/uiconfig/swriter/ui/indentpage.ui:67
+#: sw/uiconfig/swriter/ui/indentpage.ui:71
msgctxt "indentpage|label3"
msgid "_After section"
msgstr ""
-#: sw/uiconfig/swriter/ui/indentpage.ui:113
+#: sw/uiconfig/swriter/ui/indentpage.ui:115
msgctxt "indentpage|label2"
msgid "Indent"
msgstr "འགོ་མཚམས།"
-#: sw/uiconfig/swriter/ui/indentpage.ui:142
+#: sw/uiconfig/swriter/ui/indentpage.ui:155
msgctxt "indentpage|preview-atkobject"
msgid "Example"
msgstr "དཔེར་བརྗོད།"
@@ -14239,7 +14243,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:68
msgctxt "optcompatpage|format"
-msgid "MS Word-compatible trailing blanks"
+msgid "Word-compatible trailing blanks"
msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:69
@@ -14249,7 +14253,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:70
msgctxt "optcompatpage|format"
-msgid "A database field (e.g., MailMerge) with empty value hides its paragraph"
+msgid "Hide paragraphs of database fields (e.g., mail merge) with an empty value"
msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:71
@@ -17161,139 +17165,139 @@ msgctxt "tableproperties|background"
msgid "Background"
msgstr "རྒྱབ་གཞི།"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:25
-msgctxt "tabletextflowpage|liststore1"
-msgid "Horizontal"
-msgstr "ཐད་སྙོམས།"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:29
-#, fuzzy
-msgctxt "tabletextflowpage|liststore1"
-msgid "Vertical"
-msgstr "ཀེར་ཕྲང་།"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:33
-#, fuzzy
-msgctxt "tabletextflowpage|liststore1"
-msgid "Use superordinate object settings"
-msgstr "དངོས་པོའི་སྒྲིག་སྟངས་མཐོ་ཤོས་ཚུ་་ལག་ལེན་འཐབ"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:47
-#, fuzzy
-msgctxt "tabletextflowpage|liststore2"
-msgid "Top"
-msgstr "མགོ"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:51
-#, fuzzy
-msgctxt "tabletextflowpage|liststore2"
-msgid "Centered"
-msgstr "དབུས་སྒྲིག།"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:55
-#, fuzzy
-msgctxt "tabletextflowpage|liststore2"
-msgid "Bottom"
-msgstr "མཇུག"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:97
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:53
#, fuzzy
msgctxt "tabletextflowpage|break"
msgid "_Break"
msgstr "མཚམས།(~B)"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:112
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:68
#, fuzzy
msgctxt "tabletextflowpage|page"
msgid "_Page"
msgstr "ཤོག་ལེབ།"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:132
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:87
#, fuzzy
msgctxt "tabletextflowpage|column"
msgid "Col_umn"
msgstr "ཀེར་ཐིག"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:151
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:106
#, fuzzy
msgctxt "tabletextflowpage|before"
msgid "Be_fore"
msgstr "ཧེ་མ།"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:171
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:125
#, fuzzy
msgctxt "tabletextflowpage|after"
msgid "_After"
msgstr "ཤུལ་ལས།"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:203
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:158
#, fuzzy
msgctxt "tabletextflowpage|pagestyle"
msgid "With Page St_yle"
msgstr "ཤོག་ལེབ་ཀྱི་བཟོ་རྣམ་ཞུན་དག་འབད།"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:224
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:177
#, fuzzy
msgctxt "tabletextflowpage|pagenoft"
msgid "Page _number"
msgstr "ཤོག་ལེབ་ཨང་གྲངས།"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:257
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:213
#, fuzzy
msgctxt "tabletextflowpage|pagestylelb-atkobject"
msgid "With Page Style"
msgstr "ཤོག་ལེབ་ཀྱི་བཟོ་རྣམ་ཞུན་དག་འབད།"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:274
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:230
msgctxt "tabletextflowpage|split"
msgid "Allow _table to split across pages and columns"
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:289
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:245
#, fuzzy
msgctxt "tabletextflowpage|splitrow"
msgid "Allow row to break a_cross pages and columns"
msgstr "ཤོག་ལེབ་དང་ཀེར་ཐིག་ཆ་མཉམ་ལུ་ གྲལ་ཐིག་གི་མཚམས་བཞག་བཅུག"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:306
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:262
#, fuzzy
msgctxt "tabletextflowpage|keep"
msgid "_Keep with next paragraph"
msgstr "དོན་མཚམས་ཤུལ་མམ་གཅིག་ཁར་བཞག"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:328
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:284
msgctxt "tabletextflowpage|label40"
msgid "Text _orientation"
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:361
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:298
+msgctxt "tabletextflowpage|liststore1"
+msgid "Horizontal"
+msgstr "ཐད་སྙོམས།"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:299
+#, fuzzy
+msgctxt "tabletextflowpage|liststore1"
+msgid "Vertical"
+msgstr "ཀེར་ཕྲང་།"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:300
+#, fuzzy
+msgctxt "tabletextflowpage|liststore1"
+msgid "Use superordinate object settings"
+msgstr "དངོས་པོའི་སྒྲིག་སྟངས་མཐོ་ཤོས་ཚུ་་ལག་ལེན་འཐབ"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:321
#, fuzzy
msgctxt "tabletextflowpage|headline"
msgid "R_epeat heading"
msgstr "མགུ་རྒྱན་ཡང་བསྐྱར།"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:383
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:343
msgctxt "tabletextflowpage|label38"
msgid "The first "
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:396
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:356
#, fuzzy
msgctxt "tabletextflowpage|label39"
msgid "rows"
msgstr "གྲལ་ཐིག་"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:434
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:395
msgctxt "tabletextflowpage|label35"
msgid "Text Flow"
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:467
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:428
msgctxt "tabletextflowpage|label41"
msgid "_Vertical alignment"
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:495
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:442
+#, fuzzy
+msgctxt "tabletextflowpage|liststore2"
+msgid "Top"
+msgstr "མགོ"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:443
+#, fuzzy
+msgctxt "tabletextflowpage|liststore2"
+msgid "Centered"
+msgstr "དབུས་སྒྲིག།"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:444
+#, fuzzy
+msgctxt "tabletextflowpage|liststore2"
+msgid "Bottom"
+msgstr "མཇུག"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:460
msgctxt "tabletextflowpage|label36"
msgid "Alignment"
msgstr "ཕྲང་སྒྲིག"
@@ -18124,10 +18128,9 @@ msgid "Alphabetical Index"
msgstr ""
#: sw/uiconfig/swriter/ui/tocindexpage.ui:58
-#, fuzzy
msgctxt "tocindexpage|liststore1"
-msgid "Illustration Index"
-msgstr "རི་མོ་ཟུར་ཐོ་ ༡།"
+msgid "Table of Figures"
+msgstr ""
#: sw/uiconfig/swriter/ui/tocindexpage.ui:62
msgctxt "tocindexpage|liststore1"
diff --git a/source/dz/writerperfect/messages.po b/source/dz/writerperfect/messages.po
index 00fea8bf3a1..05acf2a3955 100644
--- a/source/dz/writerperfect/messages.po
+++ b/source/dz/writerperfect/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-16 16:54+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+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"
@@ -65,100 +65,100 @@ msgctxt "exportepub|generalft"
msgid "General"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:122
+#: writerperfect/uiconfig/ui/exportepub.ui:121
#, fuzzy
msgctxt "exportepub|versionft"
msgid "Version:"
msgstr "ཐོན་རིམ།:(~V)"
-#: writerperfect/uiconfig/ui/exportepub.ui:139
+#: writerperfect/uiconfig/ui/exportepub.ui:138
msgctxt "exportepub|epub3"
msgid "EPUB 3.0"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:140
+#: writerperfect/uiconfig/ui/exportepub.ui:139
msgctxt "exportepub|epub2"
msgid "EPUB 2.0"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:175
+#: writerperfect/uiconfig/ui/exportepub.ui:174
msgctxt "exportepub|splitft"
msgid "Split method:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:192
+#: writerperfect/uiconfig/ui/exportepub.ui:191
#, fuzzy
msgctxt "exportepub|splitpage"
msgid "Page break"
msgstr "ཤོག་ལེབ་མཚམས།"
-#: writerperfect/uiconfig/ui/exportepub.ui:193
+#: writerperfect/uiconfig/ui/exportepub.ui:192
#, fuzzy
msgctxt "exportepub|splitheading"
msgid "Heading"
msgstr "མགུ་རྒྱན།"
-#: writerperfect/uiconfig/ui/exportepub.ui:228
+#: writerperfect/uiconfig/ui/exportepub.ui:227
msgctxt "exportepub|layoutft"
msgid "Layout method:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:245
+#: writerperfect/uiconfig/ui/exportepub.ui:244
msgctxt "exportepub|layoutreflowable"
msgid "Reflowable"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:246
+#: writerperfect/uiconfig/ui/exportepub.ui:245
msgctxt "exportepub|layoutfixed"
msgid "Fixed"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:281
+#: writerperfect/uiconfig/ui/exportepub.ui:280
msgctxt "exportepub|coverimageft"
msgid "Custom cover image:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:311
+#: writerperfect/uiconfig/ui/exportepub.ui:310
msgctxt "exportepub|coverbutton"
msgid "Browse..."
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:355
+#: writerperfect/uiconfig/ui/exportepub.ui:354
msgctxt "exportepub|mediadirft"
msgid "Custom media directory:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:385
+#: writerperfect/uiconfig/ui/exportepub.ui:384
msgctxt "exportepub|mediabutton"
msgid "Browse..."
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:429
+#: writerperfect/uiconfig/ui/exportepub.ui:428
msgctxt "exportepub|metadataft"
msgid "Metadata"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:470
+#: writerperfect/uiconfig/ui/exportepub.ui:468
msgctxt "exportepub|identifierft"
msgid "Identifier:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:485
+#: writerperfect/uiconfig/ui/exportepub.ui:483
msgctxt "exportepub|titleft"
msgid "Title:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:511
+#: writerperfect/uiconfig/ui/exportepub.ui:509
msgctxt "exportepub|authorft"
msgid "Author:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:537
+#: writerperfect/uiconfig/ui/exportepub.ui:535
msgctxt "exportepub|languageft"
msgid "Language:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:563
+#: writerperfect/uiconfig/ui/exportepub.ui:561
msgctxt "exportepub|dateft"
msgid "Date:"
msgstr ""
diff --git a/source/el/cui/messages.po b/source/el/cui/messages.po
index f94bf2f314d..bd89688968a 100644
--- a/source/el/cui/messages.po
+++ b/source/el/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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2018-05-09 06:23+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -9872,97 +9872,97 @@ msgctxt "positionsizedialog|PositionAndSizeDialog"
msgid "Position and Size"
msgstr "Θέση και μέγεθος"
-#: cui/uiconfig/ui/positionsizedialog.ui:107
+#: cui/uiconfig/ui/positionsizedialog.ui:136
msgctxt "positionsizedialog|RID_SVXPAGE_POSITION_SIZE"
msgid "Position and Size"
msgstr "Θέση και μέγεθος"
-#: cui/uiconfig/ui/positionsizedialog.ui:129
+#: cui/uiconfig/ui/positionsizedialog.ui:182
msgctxt "positionsizedialog|RID_SVXPAGE_SWPOSSIZE"
msgid "Position and Size"
msgstr "Θέση και μέγεθος"
-#: cui/uiconfig/ui/positionsizedialog.ui:152
+#: cui/uiconfig/ui/positionsizedialog.ui:229
msgctxt "positionsizedialog|RID_SVXPAGE_ANGLE"
msgid "Rotation"
msgstr "Περιστροφή"
-#: cui/uiconfig/ui/positionsizedialog.ui:175
+#: cui/uiconfig/ui/positionsizedialog.ui:276
msgctxt "positionsizedialog|RID_SVXPAGE_SLANT"
msgid "Slant & Corner Radius"
msgstr "Κλίση και ακτίνα γωνίας"
-#: cui/uiconfig/ui/possizetabpage.ui:40
+#: cui/uiconfig/ui/possizetabpage.ui:61
msgctxt "possizetabpage|FT_POS_X"
msgid "Position _X:"
msgstr "Θέση _Χ:"
-#: cui/uiconfig/ui/possizetabpage.ui:56
+#: cui/uiconfig/ui/possizetabpage.ui:75
msgctxt "possizetabpage|FT_POS_Y"
msgid "Position _Y:"
msgstr "Θέση _Υ:"
-#: cui/uiconfig/ui/possizetabpage.ui:110
+#: cui/uiconfig/ui/possizetabpage.ui:128
msgctxt "possizetabpage|FT_POSREFERENCE"
msgid "_Base point:"
msgstr "Σημείο _βάσης:"
-#: cui/uiconfig/ui/possizetabpage.ui:148
+#: cui/uiconfig/ui/possizetabpage.ui:182
msgctxt "possizetabpage|label1"
msgid "Position"
msgstr "Θέση"
-#: cui/uiconfig/ui/possizetabpage.ui:190
+#: cui/uiconfig/ui/possizetabpage.ui:224
msgctxt "possizetabpage|FT_WIDTH"
msgid "Wi_dth:"
msgstr "Π_λάτος:"
-#: cui/uiconfig/ui/possizetabpage.ui:206
+#: cui/uiconfig/ui/possizetabpage.ui:238
msgctxt "possizetabpage|FT_HEIGHT"
msgid "H_eight:"
msgstr "Ύ_ψος:"
-#: cui/uiconfig/ui/possizetabpage.ui:247
+#: cui/uiconfig/ui/possizetabpage.ui:276
msgctxt "possizetabpage|CBX_SCALE"
msgid "_Keep ratio"
msgstr "_Διατήρηση αναλογίας"
-#: cui/uiconfig/ui/possizetabpage.ui:279
+#: cui/uiconfig/ui/possizetabpage.ui:307
msgctxt "possizetabpage|FT_SIZEREFERENCE"
msgid "Base _point:"
msgstr "_Σημείο βάσης:"
-#: cui/uiconfig/ui/possizetabpage.ui:317
+#: cui/uiconfig/ui/possizetabpage.ui:361
msgctxt "possizetabpage|label2"
msgid "Size"
msgstr "Μέγεθος"
-#: cui/uiconfig/ui/possizetabpage.ui:356
+#: cui/uiconfig/ui/possizetabpage.ui:401
msgctxt "possizetabpage|TSB_POSPROTECT"
msgid "Positio_n"
msgstr "_Θέση"
-#: cui/uiconfig/ui/possizetabpage.ui:373
+#: cui/uiconfig/ui/possizetabpage.ui:418
msgctxt "possizetabpage|TSB_SIZEPROTECT"
msgid "_Size"
msgstr "Μέγε_θος"
-#: cui/uiconfig/ui/possizetabpage.ui:397
+#: cui/uiconfig/ui/possizetabpage.ui:441
msgctxt "possizetabpage|label3"
msgid "Protect"
msgstr "Προστασία"
-#: cui/uiconfig/ui/possizetabpage.ui:430
+#: cui/uiconfig/ui/possizetabpage.ui:475
msgctxt "possizetabpage|TSB_AUTOGROW_WIDTH"
msgid "_Fit width to text"
msgstr "_Προσαρμογή πλάτους στο κείμενο"
-#: cui/uiconfig/ui/possizetabpage.ui:447
+#: cui/uiconfig/ui/possizetabpage.ui:492
msgctxt "possizetabpage|TSB_AUTOGROW_HEIGHT"
msgid "Fit _height to text"
msgstr "Προσαρμογή ύ_ψους στο κείμενο"
-#: cui/uiconfig/ui/possizetabpage.ui:471
+#: cui/uiconfig/ui/possizetabpage.ui:515
msgctxt "possizetabpage|label4"
msgid "Adapt"
msgstr "Προσαρμογή"
@@ -10162,47 +10162,47 @@ msgctxt "recordnumberdialog|label2"
msgid "go to record"
msgstr "μετάβαση στην εγγραφή"
-#: cui/uiconfig/ui/rotationtabpage.ui:52
+#: cui/uiconfig/ui/rotationtabpage.ui:56
msgctxt "rotationtabpage|FT_POS_X"
msgid "Position _X:"
msgstr "Θέση _Χ:"
-#: cui/uiconfig/ui/rotationtabpage.ui:66
+#: cui/uiconfig/ui/rotationtabpage.ui:70
msgctxt "rotationtabpage|FT_POS_Y"
msgid "Position _Y:"
msgstr "Θέση _Υ:"
-#: cui/uiconfig/ui/rotationtabpage.ui:116
+#: cui/uiconfig/ui/rotationtabpage.ui:123
msgctxt "rotationtabpage|FT_POSPRESETS"
msgid "_Default settings:"
msgstr "_Προεπιλεγμένες ρυθμίσεις:"
-#: cui/uiconfig/ui/rotationtabpage.ui:130
+#: cui/uiconfig/ui/rotationtabpage.ui:151
msgctxt "rotationtabpage|CTL_RECT|tooltip_text"
msgid "Rotation point"
msgstr "Σημείο περιστροφής"
-#: cui/uiconfig/ui/rotationtabpage.ui:155
+#: cui/uiconfig/ui/rotationtabpage.ui:178
msgctxt "rotationtabpage|label1"
msgid "Pivot Point"
msgstr "Σημείο περιστροφής"
-#: cui/uiconfig/ui/rotationtabpage.ui:197
+#: cui/uiconfig/ui/rotationtabpage.ui:220
msgctxt "rotationtabpage|FT_ANGLE"
msgid "_Angle:"
msgstr "_Γωνία:"
-#: cui/uiconfig/ui/rotationtabpage.ui:238
+#: cui/uiconfig/ui/rotationtabpage.ui:263
msgctxt "rotationtabpage|FT_ANGLEPRESETS"
msgid "Default _settings:"
msgstr "Προεπιλεγμένες _ρυθμίσεις:"
-#: cui/uiconfig/ui/rotationtabpage.ui:252
+#: cui/uiconfig/ui/rotationtabpage.ui:287
msgctxt "rotationtabpage|CTL_ANGLE|tooltip_text"
msgid "Rotation Angle"
msgstr "Γωνία περιστροφής"
-#: cui/uiconfig/ui/rotationtabpage.ui:277
+#: cui/uiconfig/ui/rotationtabpage.ui:314
msgctxt "rotationtabpage|label2"
msgid "Rotation Angle"
msgstr "Γωνία περιστροφής"
@@ -10582,52 +10582,52 @@ msgctxt "similaritysearchdialog|relaxbox"
msgid "_Combine"
msgstr "_Συνδυασμός"
-#: cui/uiconfig/ui/slantcornertabpage.ui:50
+#: cui/uiconfig/ui/slantcornertabpage.ui:70
msgctxt "slantcornertabpage|label5"
msgid "_X:"
msgstr "_X:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:88
+#: cui/uiconfig/ui/slantcornertabpage.ui:110
msgctxt "slantcornertabpage|label6"
msgid "_Y:"
msgstr "_Y:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:125
+#: cui/uiconfig/ui/slantcornertabpage.ui:149
msgctxt "slantcornertabpage|label3"
msgid "Control Point 1"
msgstr "Σημείο ελέγχου 1"
-#: cui/uiconfig/ui/slantcornertabpage.ui:159
+#: cui/uiconfig/ui/slantcornertabpage.ui:183
msgctxt "slantcornertabpage|FT_RADIUS"
msgid "_Radius:"
msgstr "_Ακτίνα:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:189
+#: cui/uiconfig/ui/slantcornertabpage.ui:214
msgctxt "slantcornertabpage|label1"
msgid "Corner Radius"
msgstr "Ακτίνα γωνίας"
-#: cui/uiconfig/ui/slantcornertabpage.ui:223
+#: cui/uiconfig/ui/slantcornertabpage.ui:248
msgctxt "slantcornertabpage|FT_ANGLE"
msgid "_Angle:"
msgstr "_Γωνία:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:253
+#: cui/uiconfig/ui/slantcornertabpage.ui:279
msgctxt "slantcornertabpage|label2"
msgid "Slant"
msgstr "Κλίση"
-#: cui/uiconfig/ui/slantcornertabpage.ui:294
+#: cui/uiconfig/ui/slantcornertabpage.ui:320
msgctxt "slantcornertabpage|label4"
msgid "_X:"
msgstr "_X:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:332
+#: cui/uiconfig/ui/slantcornertabpage.ui:360
msgctxt "slantcornertabpage|label7"
msgid "_Y:"
msgstr "_Y:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:369
+#: cui/uiconfig/ui/slantcornertabpage.ui:399
msgctxt "slantcornertabpage|label8"
msgid "Control Point 2"
msgstr "Σημείο ελέγχου 2"
@@ -10907,112 +10907,112 @@ msgctxt "storedwebconnectiondialog|change"
msgid "_Change Password..."
msgstr "Α_λλαγή κωδικού πρόσβασης..."
-#: cui/uiconfig/ui/swpossizepage.ui:74
+#: cui/uiconfig/ui/swpossizepage.ui:85
msgctxt "swpossizepage|widthft"
msgid "_Width:"
msgstr "_Πλάτος:"
-#: cui/uiconfig/ui/swpossizepage.ui:111
+#: cui/uiconfig/ui/swpossizepage.ui:123
msgctxt "swpossizepage|heightft"
msgid "H_eight:"
msgstr "Ύ_ψος:"
-#: cui/uiconfig/ui/swpossizepage.ui:128
+#: cui/uiconfig/ui/swpossizepage.ui:141
msgctxt "swpossizepage|ratio"
msgid "_Keep ratio"
msgstr "_Διατήρηση αναλογίας"
-#: cui/uiconfig/ui/swpossizepage.ui:149
+#: cui/uiconfig/ui/swpossizepage.ui:162
msgctxt "swpossizepage|label2"
msgid "Size"
msgstr "Μέγεθος"
-#: cui/uiconfig/ui/swpossizepage.ui:205
+#: cui/uiconfig/ui/swpossizepage.ui:218
msgctxt "swpossizepage|topage"
msgid "To _page"
msgstr "Στη _σελίδα"
-#: cui/uiconfig/ui/swpossizepage.ui:222
+#: cui/uiconfig/ui/swpossizepage.ui:234
msgctxt "swpossizepage|topara"
msgid "To paragrap_h"
msgstr "Στην παράγρα_φο"
-#: cui/uiconfig/ui/swpossizepage.ui:238
+#: cui/uiconfig/ui/swpossizepage.ui:250
msgctxt "swpossizepage|tochar"
msgid "To cha_racter"
msgstr "Στον _χαρακτήρα"
-#: cui/uiconfig/ui/swpossizepage.ui:254
+#: cui/uiconfig/ui/swpossizepage.ui:266
msgctxt "swpossizepage|aschar"
msgid "_As character"
msgstr "_Ως χαρακτήρας"
-#: cui/uiconfig/ui/swpossizepage.ui:270
+#: cui/uiconfig/ui/swpossizepage.ui:282
msgctxt "swpossizepage|toframe"
msgid "To _frame"
msgstr "Στο _πλαίσιο"
-#: cui/uiconfig/ui/swpossizepage.ui:292
+#: cui/uiconfig/ui/swpossizepage.ui:304
msgctxt "swpossizepage|label1"
msgid "Anchor"
msgstr "Αγκίστρωση"
-#: cui/uiconfig/ui/swpossizepage.ui:333
+#: cui/uiconfig/ui/swpossizepage.ui:344
msgctxt "swpossizepage|horiposft"
msgid "Hori_zontal:"
msgstr "Ορι_ζόντια:"
-#: cui/uiconfig/ui/swpossizepage.ui:347
+#: cui/uiconfig/ui/swpossizepage.ui:358
msgctxt "swpossizepage|horibyft"
msgid "b_y:"
msgstr "α_πό:"
-#: cui/uiconfig/ui/swpossizepage.ui:361
+#: cui/uiconfig/ui/swpossizepage.ui:372
msgctxt "swpossizepage|vertbyft"
msgid "_by:"
msgstr "_από:"
-#: cui/uiconfig/ui/swpossizepage.ui:375
+#: cui/uiconfig/ui/swpossizepage.ui:386
msgctxt "swpossizepage|horitoft"
msgid "_to:"
msgstr "π_ρος:"
-#: cui/uiconfig/ui/swpossizepage.ui:421
+#: cui/uiconfig/ui/swpossizepage.ui:433
msgctxt "swpossizepage|vertposft"
msgid "_Vertical:"
msgstr "Κά_θετα:"
-#: cui/uiconfig/ui/swpossizepage.ui:457
+#: cui/uiconfig/ui/swpossizepage.ui:470
msgctxt "swpossizepage|verttoft"
msgid "t_o:"
msgstr "πρ_ος:"
-#: cui/uiconfig/ui/swpossizepage.ui:478
+#: cui/uiconfig/ui/swpossizepage.ui:492
msgctxt "swpossizepage|mirror"
msgid "_Mirror on even pages"
msgstr "_Κατοπτρισμός στις ζυγές σελίδες"
-#: cui/uiconfig/ui/swpossizepage.ui:495
+#: cui/uiconfig/ui/swpossizepage.ui:509
msgctxt "swpossizepage|followtextflow"
msgid "Follow te_xt flow"
msgstr "Παρακολούθηση της ροής του κει_μένου"
-#: cui/uiconfig/ui/swpossizepage.ui:518
+#: cui/uiconfig/ui/swpossizepage.ui:532
msgctxt "swpossizepage|label11"
msgid "Position"
msgstr "Θέση"
-#: cui/uiconfig/ui/swpossizepage.ui:549
+#: cui/uiconfig/ui/swpossizepage.ui:563
msgctxt "swpossizepage|pos"
msgid "Positio_n"
msgstr "_Θέση"
-#: cui/uiconfig/ui/swpossizepage.ui:565
+#: cui/uiconfig/ui/swpossizepage.ui:579
msgctxt "swpossizepage|size"
msgid "_Size"
msgstr "Μέγε_θος"
-#: cui/uiconfig/ui/swpossizepage.ui:587
+#: cui/uiconfig/ui/swpossizepage.ui:601
msgctxt "swpossizepage|label3"
msgid "Protect"
msgstr "Προστασία"
@@ -11202,12 +11202,12 @@ msgctxt "textattrtabpage|label2"
msgid "Spacing to Borders"
msgstr "Διάκενο στα άκρα"
-#: cui/uiconfig/ui/textattrtabpage.ui:425
+#: cui/uiconfig/ui/textattrtabpage.ui:423
msgctxt "textattrtabpage|TSB_FULL_WIDTH"
msgid "Full _width"
msgstr "Πλήρες _πλάτος"
-#: cui/uiconfig/ui/textattrtabpage.ui:448
+#: cui/uiconfig/ui/textattrtabpage.ui:446
msgctxt "textattrtabpage|label3"
msgid "Text Anchor"
msgstr "Αγκίστρωση κειμένου"
diff --git a/source/el/filter/source/config/fragments/filters.po b/source/el/filter/source/config/fragments/filters.po
index ff12edbb7d5..3e16047964c 100644
--- a/source/el/filter/source/config/fragments/filters.po
+++ b/source/el/filter/source/config/fragments/filters.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: 2018-05-16 16:54+0200\n"
-"PO-Revision-Date: 2018-05-17 04:47+0000\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
+"PO-Revision-Date: 2018-06-05 05:15+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: el\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1526532463.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1528175735.000000\n"
#: ADO_rowset_XML.xcu
msgctxt ""
@@ -463,8 +463,8 @@ msgctxt ""
"MS Word 2003 XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Word 2003 XML"
-msgstr "Microsoft Word 2003 XML"
+msgid "Word 2003 XML"
+msgstr "Word 2003 XML"
#: MS_Word_2007_XML.xcu
msgctxt ""
@@ -1282,8 +1282,8 @@ msgctxt ""
"Calc MS Excel 2007 VBA XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Excel 2007-2016 XML (macro enabled)"
-msgstr "Microsoft Excel 2007-2016 XML (με ενεργές τις μακροεντολές)"
+msgid "Excel 2007–2019 (macro-enabled)"
+msgstr "Excel 2007–2019 (με μακροεντολές)"
#: calc_MS_Excel_2007_XML.xcu
msgctxt ""
diff --git a/source/el/filter/source/config/fragments/types.po b/source/el/filter/source/config/fragments/types.po
index 35c5cdeaacb..c7bac7b1b35 100644
--- a/source/el/filter/source/config/fragments/types.po
+++ b/source/el/filter/source/config/fragments/types.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: 2018-05-08 15:11+0200\n"
-"PO-Revision-Date: 2018-05-09 06:37+0000\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
+"PO-Revision-Date: 2018-06-05 05:15+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: el\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1525847840.000000\n"
+"X-POOTLE-MTIME: 1528175742.000000\n"
#: MS_Excel_2007_Binary.xcu
msgctxt ""
@@ -292,8 +292,8 @@ msgctxt ""
"writer_MS_Word_2003_XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Word 2003 XML"
-msgstr "Microsoft Word 2003 XML"
+msgid "Word 2003 XML"
+msgstr "Word 2003 XML"
#: writer_MS_Word_2007_XML.xcu
msgctxt ""
diff --git a/source/el/fpicker/messages.po b/source/el/fpicker/messages.po
index a2e11a770d7..4aff7f0d7bf 100644
--- a/source/el/fpicker/messages.po
+++ b/source/el/fpicker/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-22 13:16+0200\n"
-"PO-Revision-Date: 2018-03-01 22:13+0000\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
+"PO-Revision-Date: 2018-06-05 05:16+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: el\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1519942435.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1528175764.000000\n"
#: include/fpicker/strings.hrc:14
msgctxt "STR_SVT_FILEPICKER_AUTO_EXTENSION"
@@ -272,13 +272,13 @@ msgstr "Κρυπτογράφηση με κλειδί GPG"
#: fpicker/uiconfig/ui/foldernamedialog.ui:8
msgctxt "foldernamedialog|FolderNameDialog"
-msgid "Folder Name ?"
-msgstr "Όνομα φακέλου;"
+msgid "Folder Name"
+msgstr "Όνομα φακέλου"
#: fpicker/uiconfig/ui/foldernamedialog.ui:91
msgctxt "foldernamedialog|label2"
-msgid "Na_me"
-msgstr "Ό_νομα"
+msgid "Na_me:"
+msgstr "Ό_νομα:"
#: fpicker/uiconfig/ui/foldernamedialog.ui:122
msgctxt "foldernamedialog|label1"
diff --git a/source/el/helpcontent2/source/text/shared/00.po b/source/el/helpcontent2/source/text/shared/00.po
index 5699594fc5b..fb0c390e533 100644
--- a/source/el/helpcontent2/source/text/shared/00.po
+++ b/source/el/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: 2018-05-22 13:16+0200\n"
-"PO-Revision-Date: 2018-05-24 06:06+0000\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
+"PO-Revision-Date: 2018-06-05 05:49+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: www.gnome.gr\n"
"Language: el\n"
@@ -15,7 +15,7 @@ msgstr ""
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
"X-Project-Style: openoffice\n"
-"X-POOTLE-MTIME: 1527141961.000000\n"
+"X-POOTLE-MTIME: 1528177793.000000\n"
#: 00000001.xhp
msgctxt ""
@@ -398,16 +398,16 @@ msgctxt ""
"00000001.xhp\n"
"hd_id3149670\n"
"help.text"
-msgid "Back"
-msgstr "Πίσω"
+msgid "Reset"
+msgstr "Επαναφορά"
#: 00000001.xhp
msgctxt ""
"00000001.xhp\n"
"par_id3145068\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optionsdialog/revert\">Resets modified values back to the $[officename] default values.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/optionsdialog/revert\">Επαναφέρει τις τροποποιημένες τιμές στις προεπιλεγμένες του $[officename].</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optionsdialog/revert\">Resets changes made to the current tab to those applicable when this dialog was opened.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/optionsdialog/revert\">Επαναφέρει τις αλλαγές που έγιναν στην τρέχουσα καρτέλα σε αυτές που εφαρμόστηκαν όταν ανοίχτηκε ο διάλογος.</ahelp>"
#: 00000001.xhp
msgctxt ""
@@ -553,6 +553,54 @@ msgctxt ""
msgid "<variable id=\"ShiftF1\">Press Shift+F1 and point to a control to learn more about that control.</variable>"
msgstr "<variable id=\"ShiftF1\">Πατήστε Shift+F1 και δείξτε σε ένα στοιχείο ελέγχου για να μάθετε περισσότερα για αυτό.</variable>"
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"hd_id631527692833772\n"
+"help.text"
+msgid "Options dialog buttons"
+msgstr "Πλήκτρα διαλόγου επιλογών"
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"hd_id831527692839432\n"
+"help.text"
+msgid "OK"
+msgstr "Εντάξει"
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"par_id471527692844934\n"
+"help.text"
+msgid "Save the changes in the page and close the Options dialog."
+msgstr "Αποθήκευση των αλλαγών στη σελίδα και κλείσιμο του διαλόγου επιλογών."
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"hd_id261527692850720\n"
+"help.text"
+msgid "Cancel"
+msgstr "Ακύρωση"
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"par_id571527692855533\n"
+"help.text"
+msgid "Close the Options dialog and discard all changes done."
+msgstr "Κλείσιμο διαλόγου επιλογών και απόρριψη όλων των αλλαγών που έγιναν."
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"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 Options dialog."
+msgstr "Κάποιες επιλογές δεν μπορούν να επαναφερθούν εάν επεξεργαστούν. Είτε επεξεργαστείτε προς τα πίσω τις αλλαγές χειροκίνητα, ή πατήστε <emph>Άκυρο</emph> και ξανανοίξτε τον διάλογο επιλογών."
+
#: 00000002.xhp
msgctxt ""
"00000002.xhp\n"
@@ -11126,16 +11174,16 @@ msgctxt ""
"00040502.xhp\n"
"par_id3151293\n"
"help.text"
-msgid "<variable id=\"linienstile\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Line Styles</emph> tab </variable>"
-msgstr "<variable id=\"linienstile\">Επιλέξτε την καρτέλα <emph>Μορφή - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Αντικείμενο - </emph></caseinline><caseinline select=\"CALC\"><emph>Γραφικό - </emph></caseinline></switchinline><emph>Γραμμή - Στυλ γραμμών</emph> </variable>"
+msgid "<variable id=\"linienstile\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Line Styles</emph> tab</variable>"
+msgstr "<variable id=\"linienstile\">Επιλέξτε την καρτέλα <emph>Μορφή - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Αντικείμενο - </emph></caseinline><caseinline select=\"CALC\"><emph>Γραφικό - </emph></caseinline></switchinline><emph>Γραμμή - Τεχνοτροπίες γραμμής</emph></variable>"
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3149317\n"
"help.text"
-msgid "<variable id=\"linienenden\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Arrow Styles</emph> tab </variable>"
-msgstr "<variable id=\"linienenden\">Επιλέξτε την καρτέλα <emph>Μορφή - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Αντικείμενο - </emph></caseinline><caseinline select=\"CALC\"><emph>Γραφικό - </emph></caseinline></switchinline><emph>Γραμμή - Στυλ των άκρων γραμμής</emph> </variable>"
+msgid "<variable id=\"linienenden\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Arrow Styles</emph> tab</variable>"
+msgstr "<variable id=\"linienenden\">Επιλέξτε την καρτέλα <emph>Μορφή - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Αντικείμενο - </emph></caseinline><caseinline select=\"CALC\"><emph>Γραφικό - </emph></caseinline></switchinline><emph>Γραμμή - Τεχνοτροπίες βελών</emph></variable>"
#: 00040502.xhp
msgctxt ""
@@ -11174,72 +11222,80 @@ msgctxt ""
"00040502.xhp\n"
"par_id3154948\n"
"help.text"
-msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Area</emph> tab"
-msgstr "Επιλέξτε την καρτέλα <emph>Μορφή - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Αντικείμενο - </emph></caseinline><caseinline select=\"CALC\"><emph>Γραφικό - </emph></caseinline></switchinline><emph>Περιοχή - Περιοχή</emph>"
+msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Area</emph> tab."
+msgstr "Επιλέξτε την καρτέλα <emph>Μορφή - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Αντικείμενο - </emph></caseinline><caseinline select=\"CALC\"><emph>Γραφικό - </emph></caseinline></switchinline><emph>Περιοχή - Περιοχή</emph>."
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3145607\n"
"help.text"
-msgid "Choose <emph>View - Styles</emph> - open context menu and choose <emph>Modify/New - Area</emph> tab (presentation documents)"
-msgstr "Επιλέξτε <emph>Προβολή - Τεχνοτροπίες</emph> - ανοίξτε το μενού περιβάλλοντος και επιλέξτε την καρτέλα <emph>Τροποποίηση/Δημιουργία - Περιοχή</emph> (έγγραφα παρουσιάσεων)"
+msgid "Choose <emph>View - Styles</emph> - open context menu and choose <emph>Modify/New - Area</emph> tab (presentation documents)."
+msgstr "Επιλέξτε <emph>Προβολή - Τεχνοτροπίες</emph> - ανοίξτε το μενού περιβάλλοντος και επιλέξτε την καρτέλα <emph>Τροποποίηση/Δημιουργία - Περιοχή</emph> (έγγραφα παρουσιάσεων)."
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3152922\n"
"help.text"
-msgid "Choose <emph>Format - Title - Area</emph> tab (chart documents)"
-msgstr "Επιλέξτε την καρτέλα <emph>Μορφή - Τίτλος - Περιοχή</emph> (έγγραφα διαγραμμάτων)"
+msgid "Choose <emph>Format - Title - Area</emph> tab (chart documents)."
+msgstr "Επιλέξτε την καρτέλα <emph>Μορφή - Τίτλος - Περιοχή</emph> (έγγραφα διαγραμμάτων)."
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3157894\n"
"help.text"
-msgid "Choose <emph>Format - Legend - Area</emph> tab (chart documents)"
-msgstr "Επιλέξτε την καρτέλα <emph>Μορφή - Υπόμνημα - Περιοχή</emph> (έγγραφα διαγραμμάτων)"
+msgid "Choose <emph>Format - Legend - Area</emph> tab (chart documents)."
+msgstr "Επιλέξτε την καρτέλα <emph>Μορφή - Υπόμνημα - Περιοχή</emph> (έγγραφα διαγραμμάτων)."
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3144444\n"
"help.text"
-msgid "Choose <emph>Format - Chart Wall - Area</emph> tab (chart documents)"
-msgstr "Επιλέξτε την καρτέλα <emph>Μορφή - Τοίχος διαγράμματος - Περιοχή</emph> (έγγραφα διαγραμμάτων)"
+msgid "Choose <emph>Format - Chart Wall - Area</emph> tab (chart documents)."
+msgstr "Επιλέξτε την καρτέλα <emph>Μορφή - Τοίχος διαγράμματος - Περιοχή</emph> (έγγραφα διαγραμμάτων)."
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3156543\n"
"help.text"
-msgid "Choose <emph>Format - Chart Floor - Area</emph> tab (chart documents)"
-msgstr "Επιλέξτε την καρτέλα <emph>Μορφή - Δάπεδο διαγράμματος - Περιοχή</emph> (έγγραφα διαγραμμάτων)"
+msgid "Choose <emph>Format - Chart Floor - Area</emph> tab (chart documents)."
+msgstr "Επιλέξτε την καρτέλα <emph>Μορφή - Δάπεδο διαγράμματος - Περιοχή</emph> (έγγραφα διαγραμμάτων)."
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3150685\n"
"help.text"
-msgid "Choose <emph>Format - Chart Area - Area</emph> tab (chart documents)"
-msgstr "Επιλέξτε την καρτέλα <emph>Μορφή - Επιφάνεια διαγράμματος - Περιοχή</emph> (έγγραφα διαγραμμάτων)"
+msgid "Choose <emph>Format - Chart Area - Area</emph> tab (chart documents)."
+msgstr "Επιλέξτε την καρτέλα <emph>Μορφή - Επιφάνεια διαγράμματος - Περιοχή</emph> (έγγραφα διαγραμμάτων)."
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3149664\n"
"help.text"
-msgid "Choose <emph>Slide - Properties - Background</emph> tab (in $[officename] Impress)"
-msgstr "Επιλέξτε στην καρτέλα <emph>Διαφάνεια - Ιδιότητες - Παρασκήνιο</emph> (στο $[officename] Impress)"
+msgid "Choose <emph>Slide - Properties - Background</emph> tab (in $[officename] Impress)."
+msgstr "Επιλέξτε την καρτέλα <emph>Διαφάνεια - Ιδιότητες - Παρασκήνιο</emph> (στο $[officename] Impress)."
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id9149694\n"
"help.text"
-msgid "Choose <emph>Page - Properties - Background</emph> tab (in $[officename] Draw)"
-msgstr "Επιλέξτε στην καρτέλα <emph>Σελίδα - Ιδιότητες - Παρασκήνιο</emph> (στο $[officename] Draw)"
+msgid "Choose <emph>Page - Properties - Background</emph> tab (in $[officename] Draw)."
+msgstr "Επιλέξτε την καρτέλα <emph>Σελίδα - Ιδιότητες - Παρασκήνιο</emph> (στο $[officename] Draw)."
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id841527083135387\n"
+"help.text"
+msgid "Choose <emph>Table - Properties - Background</emph> tab."
+msgstr "Επιλέξτε την καρτέλα <emph>Πίνακας - Ιδιότητες - Παρασκήνιο</emph>."
#: 00040502.xhp
msgctxt ""
@@ -11350,32 +11406,32 @@ msgctxt ""
"00040502.xhp\n"
"par_id3150011\n"
"help.text"
-msgid "<variable id=\"schatte\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Shadow</emph> tab </variable>"
-msgstr "<variable id=\"schatte\">Επιλέξτε <emph>Μορφή - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Αντικείμενο - </emph></caseinline><caseinline select=\"CALC\"><emph>Γραφικό - </emph></caseinline></switchinline><emph>Περιοχή - Σκιά</emph> στηλοθέτη </variable>"
+msgid "<variable id=\"schatte\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Shadow</emph> tab</variable>"
+msgstr "<variable id=\"schatte\">Επιλέξτε την καρτέλα <emph>Μορφή - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Αντικείμενο - </emph></caseinline><caseinline select=\"CALC\"><emph>Γραφικό - </emph></caseinline></switchinline><emph>Περιοχή - Σκιά</emph></variable>."
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3147441\n"
"help.text"
-msgid "<variable id=\"verlauf\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Gradients</emph> tab </variable>"
-msgstr "<variable id=\"verlauf\">Επιλέξτε <emph>Μορφή - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Αντικείμενο - </emph></caseinline><caseinline select=\"CALC\"><emph>Γραφικό - </emph></caseinline></switchinline><emph>Περιοχή - Διαβαθμίσεις Χρώματος</emph> στηλοθέτη </variable>"
+msgid "<variable id=\"verlauf\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Gradients</emph> tab</variable>"
+msgstr "<variable id=\"verlauf\">Επιλέξτε την καρτέλα <emph>Μορφή - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Αντικείμενο - </emph></caseinline><caseinline select=\"CALC\"><emph>Γραφικό - </emph></caseinline></switchinline><emph>Περιοχή - Διαβαθμίσεις</emph></variable>"
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3155308\n"
"help.text"
-msgid "<variable id=\"schraffur\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Hatching</emph> tab </variable>"
-msgstr "<variable id=\"schraffur\">Επιλέξτε <emph>Μορφή - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Αντικείμενο - </emph></caseinline><caseinline select=\"CALC\"><emph>Γραφικό - </emph></caseinline></switchinline><emph>Περιοχή - Γραμμοσκίαση</emph> στηλοθέτη </variable>"
+msgid "<variable id=\"schraffur\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Hatching</emph> tab</variable>"
+msgstr "<variable id=\"schraffur\">Επιλέξτε την καρτέλα <emph>Μορφή - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Αντικείμενο - </emph></caseinline><caseinline select=\"CALC\"><emph>Γραφικό - </emph></caseinline></switchinline><emph>Περιοχή - Γραμμοσκίαση</emph></variable>"
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3145800\n"
"help.text"
-msgid "<variable id=\"bitmap\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Bitmaps</emph> tab </variable>"
-msgstr "<variable id=\"bitmap\">Επιλέξτε <emph>Μορφή - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Αντικείμενο - </emph></caseinline><caseinline select=\"CALC\"><emph>Γραφικό - </emph></caseinline></switchinline><emph>Περιοχή - Bitmaps</emph> σελίδας </variable>"
+msgid "<variable id=\"bitmap\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Bitmaps</emph> tab</variable>"
+msgstr "<variable id=\"bitmap\">Επιλέξτε την καρτέλα <emph>Μορφή - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Αντικείμενο - </emph></caseinline><caseinline select=\"CALC\"><emph>Γραφικό - </emph></caseinline></switchinline><emph>Περιοχή - Ψηφιογραφίες</emph></variable>."
#: 00040502.xhp
msgctxt ""
@@ -11414,8 +11470,8 @@ msgctxt ""
"00040502.xhp\n"
"par_id3156286\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F4 key </caseinline><caseinline select=\"IMPRESS\">F4 key </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"DRAW\">Πλήκτρο F4 </caseinline><caseinline select=\"IMPRESS\">Πλήκτρο F4 </caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F4 key</caseinline><caseinline select=\"IMPRESS\">F4 key</caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"DRAW\">πλήκτρο F4 </caseinline><caseinline select=\"IMPRESS\">πλήκτρο F4</caseinline></switchinline>"
#: 00040502.xhp
msgctxt ""
@@ -11454,8 +11510,8 @@ msgctxt ""
"00040502.xhp\n"
"par_id3153099\n"
"help.text"
-msgid "<variable id=\"position2\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Position and Size</emph> tab </variable>"
-msgstr "<variable id=\"position2\">Επιλέξτε <emph>Μορφή - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Αντικείμενο - </emph></caseinline><caseinline select=\"CALC\"><emph>Γραφικό - </emph></caseinline></switchinline><emph>Θέση και Μέγεθος - Θέση και Μέγεθος</emph> στηλοθέτη </variable>"
+msgid "<variable id=\"position2\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Position and Size</emph> tab</variable>"
+msgstr "<variable id=\"position2\">Επιλέξτε την καρτέλα <emph>Μορφή - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Αντικείμενο - </emph></caseinline><caseinline select=\"CALC\"><emph>Γραφικό - </emph></caseinline></switchinline><emph>Θέση και Μέγεθος - Θέση και Μέγεθος</emph></variable>."
#: 00040502.xhp
msgctxt ""
@@ -11486,16 +11542,16 @@ msgctxt ""
"00040502.xhp\n"
"par_id3145666\n"
"help.text"
-msgid "<variable id=\"ecke\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Slant & Corner Radius</emph> tab </variable>"
-msgstr "<variable id=\"ecke\">Επιλέξτε <emph>Μορφή - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Αντικείμενο - </emph></caseinline><caseinline select=\"CALC\"><emph>Γραφικό - </emph></caseinline></switchinline><emph>Θέση και Μέγεθος - Λοξά / Ακτίνα Γωνίας</emph> του στηλοθέτη</variable>"
+msgid "<variable id=\"ecke\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Slant & Corner Radius</emph> tab</variable>"
+msgstr "<variable id=\"ecke\">Επιλέξτε την καρτέλα<emph>Μορφή - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Αντικείμενο - </emph></caseinline><caseinline select=\"CALC\"><emph>Γραφικό - </emph></caseinline></switchinline><emph>Θέση και Μέγεθος - Λοξά & ακτίνα γωνίας</emph></variable>."
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3146081\n"
"help.text"
-msgid "<variable id=\"legende\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Callout</emph> tab (only for textbox callouts, not for custom shapes callouts) </variable>"
-msgstr "<variable id=\"legende\">Επιλέξτε την καρτέλα <emph>Μορφή - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Αντικείμενο - </emph></caseinline><caseinline select=\"CALC\"><emph>Γραφικά - </emph></caseinline></switchinline><emph>Θέση και μέγεθος - Επεξήγηση</emph> (μόνο για επεξηγήσεις πλαισίου κειμένου, όχι για προσαρμοσμένες επεξηγήσεις σχημάτων)</variable>"
+msgid "<variable id=\"legende\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Callout</emph> tab (only for textbox callouts, not for custom shapes callouts)</variable>"
+msgstr "<variable id=\"legende\">Επιλέξτε την καρτέλα <emph>Μορφή - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Αντικείμενο - </emph></caseinline><caseinline select=\"CALC\"><emph>Γραφικά - </emph></caseinline></switchinline><emph>Θέση και μέγεθος - Επεξήγηση</emph> (μόνο για επεξηγήσεις πλαισίου κειμένου, όχι για προσαρμοσμένες επεξηγήσεις σχημάτων)</variable>."
#: 00040502.xhp
msgctxt ""
@@ -11518,8 +11574,8 @@ msgctxt ""
"00040502.xhp\n"
"par_id3149019\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F8 key </caseinline><caseinline select=\"IMPRESS\">F8 key </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"DRAW\">Πλήκτρο F8 </caseinline><caseinline select=\"IMPRESS\">Πλήκτρο F8 </caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F8 key</caseinline><caseinline select=\"IMPRESS\">F8 key</caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"DRAW\">πλήκτρο F8 </caseinline><caseinline select=\"IMPRESS\">πλήκτρο F8</caseinline></switchinline>."
#: 00040502.xhp
msgctxt ""
@@ -11806,8 +11862,8 @@ msgctxt ""
"00040502.xhp\n"
"par_id3153076\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Align Center Horizontally </caseinline><defaultinline>Centered</defaultinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Στοίχιση Οριζόντια στο Κέντρο</caseinline><defaultinline>Στο Κέντρο</defaultinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Align Center Horizontally</caseinline><defaultinline>Centered</defaultinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Στοίχιση οριζόντια στο κέντρο</caseinline><defaultinline>Στο κέντρο</defaultinline></switchinline>."
#: 00040502.xhp
msgctxt ""
@@ -11846,8 +11902,8 @@ msgctxt ""
"00040502.xhp\n"
"par_id3150527\n"
"help.text"
-msgid "<variable id=\"font\">Click <emph>Fontwork</emph> icon on <emph>Drawing</emph> bar </variable>"
-msgstr "<variable id=\"font\">Πατήστε στο εικονίδιο<emph>Fontwork</emph> στη γραμμή <emph>Σχέδιο</emph></variable>"
+msgid "<variable id=\"font\">Click <emph>Fontwork</emph> icon on <emph>Drawing</emph> bar</variable>"
+msgstr "<variable id=\"font\">Πατήστε το εικονίδιο<emph>Fontwork</emph> στη γραμμή <emph>Σχέδιο</emph></variable>."
#: 00040502.xhp
msgctxt ""
diff --git a/source/el/helpcontent2/source/text/shared/01.po b/source/el/helpcontent2/source/text/shared/01.po
index 60df6004465..10f4b07a043 100644
--- a/source/el/helpcontent2/source/text/shared/01.po
+++ b/source/el/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: 2018-05-23 23:19+0200\n"
-"PO-Revision-Date: 2018-05-24 06:26+0000\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
+"PO-Revision-Date: 2018-06-05 08:08+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: www.gnome.gr\n"
"Language: el\n"
@@ -15,7 +15,7 @@ msgstr ""
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
"X-Project-Style: openoffice\n"
-"X-POOTLE-MTIME: 1527143183.000000\n"
+"X-POOTLE-MTIME: 1528186092.000000\n"
#: 01010000.xhp
msgctxt ""
@@ -23588,6 +23588,22 @@ msgstr "Μπορείτε να προσθέσετε προσαρμοσμένα χ
#: 05210100.xhp
msgctxt ""
"05210100.xhp\n"
+"hd_id471527077476052\n"
+"help.text"
+msgid "Cell, Row or Table background selector"
+msgstr "Επιλογέας παρασκηνίου κελιού, γραμμής ή πίνακα"
+
+#: 05210100.xhp
+msgctxt ""
+"05210100.xhp\n"
+"par_id661527077493366\n"
+"help.text"
+msgid "Select the table object which background area is to be filled."
+msgstr "Επιλέξτε το αντικείμενο του πίνακα του οποίου πρόκειται να γεμίσει η περιοχή του παρασκηνίου."
+
+#: 05210100.xhp
+msgctxt ""
+"05210100.xhp\n"
"hd_id3147373\n"
"help.text"
msgid "None"
@@ -31206,24 +31222,24 @@ msgctxt ""
"06040100.xhp\n"
"hd_id3145072\n"
"help.text"
-msgid "Automatic *bold* and _underline_"
-msgstr "Αυτομάτως *έντονα* και _υπογράμμιση_"
+msgid "Automatic *bold*, /italic/, -strikeout- and _underline_"
+msgstr "Αυτόματα *έντονα*, /πλάγια/, -διακριτή διαγραφή- και _υπογράμμιση_"
#: 06040100.xhp
msgctxt ""
"06040100.xhp\n"
"par_id3153577\n"
"help.text"
-msgid "Automatically applies bold formatting to text enclosed by asterisks (*), and underline to text enclosed by underscores ( _ ), for example, *bold*. The asterisks and underscores are not displayed after the formatting is applied."
-msgstr "Εφαρμόζει αυτόματα έντονη μορφοποίηση σε κείμενο μέσα σε αστερίσκους (*), και υπογράμμιση σε κείμενο που περικλείεται μέσα σε υπογράμμιση-κάτω παύλα ( _ ), για παράδειγμα, *έντονα*. Οι αστερίσκοι και οι υπογραμμίσεις δεν εμφανίζονται αφότου έχει εφαρμοστεί η μορφοποίηση."
+msgid "Automatically applies bold, italic, strikethrough or underline formatting to text enclosed by asterisks (*), slashes (/), hyphens (-), and underscores (_), respectively. These characters disappear after the formatting is applied."
+msgstr "Εφαρμόζει αυτόματα μορφοποίηση έντονων, πλάγιων, διακριτής γραφής ή υπογράμμισης στο κείμενο που περικλείεται από αστερίσκους (*), πλάγιες καθέτους (/), ενωτικών (-) και υπογραμμίσεων (_), αντίστοιχα. Αυτοί οι χαρακτήρες εξαφανίζονται μετά την εφαρμογή της μορφοποίησης."
#: 06040100.xhp
msgctxt ""
"06040100.xhp\n"
"par_id3153127\n"
"help.text"
-msgid "This feature does not work if the formatting characters * or _ are entered with an <link href=\"text/shared/00/00000005.xhp#IME\" name=\"Input Method Editor\">Input Method Editor</link>."
-msgstr "Αυτή η λειτουργία δε δουλεύει αν οι χαρακτήρες μορφοποίησης * ή _ εισάγονται με έναν <link href=\"text/shared/00/00000005.xhp#IME\" name=\"Επεξεργαστή μεθόδου εισαγωγής\">Επεξεργαστή μεθόδου εισαγωγής</link>."
+msgid "This feature does not work if the formatting characters <item type=\"literal\">* / - _</item> are entered with an <link href=\"text/shared/00/00000005.xhp#IME\" name=\"Input Method Editor\">Input Method Editor</link>."
+msgstr "Αυτή η λειτουργία δε δουλεύει εάν οι χαρακτήρες μορφοποίησης <item type=\"literal\">* / - _</item> εισάγονται με έναν <link href=\"text/shared/00/00000005.xhp#IME\" name=\"Επεξεργαστή μεθόδου εισαγωγής\">Επεξεργαστή μεθόδου εισαγωγής</link>."
#: 06040100.xhp
msgctxt ""
diff --git a/source/el/helpcontent2/source/text/shared/optionen.po b/source/el/helpcontent2/source/text/shared/optionen.po
index a594432890a..bb3c30813a2 100644
--- a/source/el/helpcontent2/source/text/shared/optionen.po
+++ b/source/el/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: 2018-05-08 15:10+0200\n"
-"PO-Revision-Date: 2018-05-23 20:36+0000\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
+"PO-Revision-Date: 2018-06-05 08:12+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: www.gnome.gr\n"
"Language: el\n"
@@ -15,7 +15,7 @@ msgstr ""
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
"X-Project-Style: openoffice\n"
-"X-POOTLE-MTIME: 1527107816.000000\n"
+"X-POOTLE-MTIME: 1528186357.000000\n"
#: 01000000.xhp
msgctxt ""
@@ -84,6 +84,22 @@ msgstr "Σημείωση για χρήστες macOS: Η βοήθεια μνημ
#: 01000000.xhp
msgctxt ""
"01000000.xhp\n"
+"hd_id551527692881035\n"
+"help.text"
+msgid "Help"
+msgstr "Βοήθεια"
+
+#: 01000000.xhp
+msgctxt ""
+"01000000.xhp\n"
+"par_id831527692885723\n"
+"help.text"
+msgid "Opens the help contents for the Options page displayed."
+msgstr "Ανοίγει τα περιεχόμενα βοήθειας για την εμφανιζόμενη σελίδα επιλογών."
+
+#: 01000000.xhp
+msgctxt ""
+"01000000.xhp\n"
"hd_id3159149\n"
"help.text"
msgid "<link href=\"text/shared/optionen/01010000.xhp\" name=\"$[officename]\">%PRODUCTNAME</link>"
@@ -4566,8 +4582,8 @@ msgctxt ""
"01030300.xhp\n"
"par_idN10640\n"
"help.text"
-msgid "Options"
-msgstr "Επιλογές"
+msgid "Security Options and Warnings"
+msgstr "Επιλογές και προειδοποιήσεις ασφαλείας"
#: 01030300.xhp
msgctxt ""
@@ -4598,8 +4614,8 @@ msgctxt ""
"01030300.xhp\n"
"hd_id3168736\n"
"help.text"
-msgid "Persistently save passwords protected by a master password"
-msgstr "Μόνιμη αποθήκευση κωδικών πρόσβασης οι οποίοι είναι προστατευμένοι από έναν κύριο κωδικό πρόσβασης"
+msgid "Persistently save passwords for web connections"
+msgstr "Μόνιμη αποθήκευση κωδικών πρόσβασης για συνδέσεις ιστού"
#: 01030300.xhp
msgctxt ""
@@ -4614,8 +4630,24 @@ msgctxt ""
"01030300.xhp\n"
"hd_id3901791\n"
"help.text"
+msgid "Protected by a master password (recommended)"
+msgstr "Προστασία με έναν κύριο κωδικό πρόσβασης (συνιστάται)"
+
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"par_id31527711486980\n"
+"help.text"
+msgid "Check to enable all connections' passwords to be protected by a master password."
+msgstr "Σημειώστε για να ενεργοποιήσετε την προστασία των κωδικών πρόσβασης από έναν κύριο κωδικό πρόσβασης για όλες τις συνδέσεις."
+
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"hd_id141527711343312\n"
+"help.text"
msgid "Master Password"
-msgstr "Κύριος Κωδικός Πρόσβασης"
+msgstr "Κύριος κωδικός πρόσβασης"
#: 01030300.xhp
msgctxt ""
@@ -13734,8 +13766,8 @@ msgctxt ""
"java.xhp\n"
"hd_id3148618\n"
"help.text"
-msgid "Optional (unstable) options"
-msgstr "Προαιρετικές (ασταθείς) επιλογές"
+msgid "Optional Features"
+msgstr "Προαιρετικά γνωρίσματα"
#: java.xhp
msgctxt ""
@@ -13750,8 +13782,8 @@ msgctxt ""
"java.xhp\n"
"par_id3156344\n"
"help.text"
-msgid "It enables features that are not yet complete or contain known bugs. The list of these features is different version by version, or even it can be empty."
-msgstr "Ενεργοποιεί γνωρίσματα που δεν είναι ακόμα πλήρη ή περιέχουν γνωστά σφάλματα. Η λίστα αυτών των γνωρισμάτων είναι διαφορετική σε κάθε έκδοση, ή ακόμα μπορεί να είναι κενή."
+msgid "Enables features that are not yet complete or may contain known bugs. The list of these features is different version by version, or even it can be empty."
+msgstr "Ενεργοποιεί γνωρίσματα που δεν είναι ακόμα πλήρη ή μπορεί να περιέχουν γνωστά σφάλματα. Ο κατάλογος αυτών των γνωρισμάτων είναι διαφορετικός σε κάθε έκδοση, ή ακόμα μπορεί να είναι κενός."
#: java.xhp
msgctxt ""
@@ -13766,8 +13798,8 @@ msgctxt ""
"java.xhp\n"
"par_id3156345\n"
"help.text"
-msgid "It enables macro recording, so the <link href=\"text/shared/guide/macro_recording.xhp\" name=\"Tools - Macros - Record Macro\"><item type=\"menuitem\">Tools - Macros - Record Macro</item></link> menu item will be available."
-msgstr "Ενεργοποιεί καταγραφή μακροεντολής, έτσι ώστε το στοιχείο μενού <link href=\"text/shared/guide/macro_recording.xhp\" name=\"Tools - Macros - Record Macro\"><item type=\"menuitem\">Εργαλεία - Μακροεντολές - Καταγραφή μακροεντολής</item></link> να είναι διαθέσιμο."
+msgid "Enables macro recording. The <link href=\"text/shared/guide/macro_recording.xhp\" name=\"Tools - Macros - Record Macro\"><item type=\"menuitem\">Tools - Macros - Record Macro</item></link> menu item is available."
+msgstr "Ενεργοποιεί καταγραφή μακροεντολής. Το στοιχείο μενού <link href=\"text/shared/guide/macro_recording.xhp\" name=\"Εργαλεία - Μακροεντολές - Καταγραφή μακροεντολής\"><item type=\"menuitem\">Εργαλεία - Μακροεντολές - Καταγραφή μακροεντολής</item></link> είναι διαθέσιμο."
#: java.xhp
msgctxt ""
diff --git a/source/el/helpcontent2/source/text/simpress/guide.po b/source/el/helpcontent2/source/text/simpress/guide.po
index c85cbf698ca..dbb98f34023 100644
--- a/source/el/helpcontent2/source/text/simpress/guide.po
+++ b/source/el/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: 2018-05-16 16:54+0200\n"
-"PO-Revision-Date: 2018-05-24 06:31+0000\n"
+"PO-Revision-Date: 2018-05-25 05:18+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: team@lists.gnome.gr\n"
"Language: el\n"
@@ -15,7 +15,7 @@ msgstr ""
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
"X-Project-Style: openoffice\n"
-"X-POOTLE-MTIME: 1527143494.000000\n"
+"X-POOTLE-MTIME: 1527225514.000000\n"
#: 3d_create.xhp
msgctxt ""
@@ -4695,7 +4695,7 @@ msgctxt ""
"par_id91512579485395\n"
"help.text"
msgid "The Presenter Console works only on an operating system that supports multiple displays and only when two displays are connected (one may be the laptop built-in display)."
-msgstr ""
+msgstr "Η κονσόλα παρουσιαστή δουλεύει μόνο σε λειτουργικό σύστημα που υποστηρίζει πολλαπλές οθόνες και μόνο όταν δύο οθόνες είναι συνδεμένες (η μία μπορεί να είναι η ενσωματωμένη οθόνη φορητού υπολογιστή)."
#: presenter_console.xhp
msgctxt ""
@@ -4719,7 +4719,7 @@ msgctxt ""
"par_id351512577323192\n"
"help.text"
msgid "Choose <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 Impress - General</item>."
-msgstr ""
+msgstr "Επιλέξτε <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"menuitem\">%PRODUCTNAME - Προτιμήσεις</item></caseinline><defaultinline><item type=\"menuitem\">Εργαλεία - Επιλογές</item></defaultinline></switchinline><item type=\"menuitem\"> - %PRODUCTNAME Impress - Γενικά</item>."
#: presenter_console.xhp
msgctxt ""
@@ -4735,7 +4735,7 @@ msgctxt ""
"par_id261512578116942\n"
"help.text"
msgid "<image id=\"img_impressoptions\" src=\"media/screenshots/cui/ui/optionsdialog/impressoptionsgeneraldialog.png\" width=\"793px\" height=\"538px\"><alt id=\"alt_id821512578116950\">Enable Presenter Console option</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_impressoptions\" src=\"media/screenshots/cui/ui/optionsdialog/impressoptionsgeneraldialog.png\" width=\"793px\" height=\"538px\"><alt id=\"alt_id821512578116950\">Ενεργοποίηση επιλογής κονσόλας παρουσιαστή</alt></image>"
#: presenter_console.xhp
msgctxt ""
@@ -4759,7 +4759,7 @@ msgctxt ""
"par_id391512577726275\n"
"help.text"
msgid "Run the slide show. Press F5 or Shift-F5 or choose <item type=\"menuitem\">Slide Show - Start from First Slide</item> or <item type=\"menuitem\">Start from Current Slide</item>."
-msgstr ""
+msgstr "Εκτελέστε την προβολή διαφανειών. Πατήστε F5 ή Shift-F5 ή επιλέξτε <item type=\"menuitem\">Προβολή διαφανειών - Έναρξη από την πρώτη διαφάνεια</item> ή <item type=\"menuitem\">Έναρξη από την τρέχουσα διαφάνεια</item>."
#: presenter_console.xhp
msgctxt ""
@@ -4775,7 +4775,7 @@ msgctxt ""
"par_id721512827886185\n"
"help.text"
msgid "<image src=\"media/helpimg/sd_PresenterConsole04.png\" id=\"img_id401512827886185\" width=\"640\" height=\"72\"><alt id=\"alt_id71512827886185\">Presenter Console Controls</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/helpimg/sd_PresenterConsole04.png\" id=\"img_id401512827886185\" width=\"640\" height=\"72\"><alt id=\"alt_id71512827886185\">Στοιχεία ελέγχου κονσόλας παρουσιαστή</alt></image>"
#: presenter_console.xhp
msgctxt ""
@@ -4783,7 +4783,7 @@ msgctxt ""
"par_id71512828085688\n"
"help.text"
msgid "<emph>Previous</emph>: move to previous slide."
-msgstr ""
+msgstr "<emph>Προηγούμενη</emph>: μετακίνηση στην προηγούμενη διαφάνεια."
#: presenter_console.xhp
msgctxt ""
@@ -4791,7 +4791,7 @@ msgctxt ""
"par_id61512828110394\n"
"help.text"
msgid "<emph>Next</emph>: move to next slide."
-msgstr ""
+msgstr "<emph>Επόμενη</emph>: μετακίνηση στην επόμενη διαφάνεια."
#: presenter_console.xhp
msgctxt ""
@@ -4799,7 +4799,7 @@ msgctxt ""
"par_id981512828129990\n"
"help.text"
msgid "<emph>Notes</emph>: display the Presenter Console Notes mode."
-msgstr ""
+msgstr "<emph>Σημειώσεις</emph>: εμφανίζει την κατάσταση σημειώσεων της κονσόλας παρουσιαστή."
#: presenter_console.xhp
msgctxt ""
@@ -4807,7 +4807,7 @@ msgctxt ""
"par_id101512828220096\n"
"help.text"
msgid "<emph>Slide</emph>: display the Presenter Console Slide sorter mode."
-msgstr ""
+msgstr "<emph>Διαφάνεια</emph>: εμφανίζει την κατάσταση ταξινόμησης διαφανειών της κονσόλας παρουσιαστή."
#: presenter_console.xhp
msgctxt ""
@@ -4815,7 +4815,7 @@ msgctxt ""
"par_id241512828268769\n"
"help.text"
msgid "<emph>Restart</emph>: restart the slide show’s elapsed time."
-msgstr ""
+msgstr "<emph>Επανεκκίνηση</emph>: επανεκκίνηση του χρόνου που πέρασε της προβολής διαφανειών."
#: presenter_console.xhp
msgctxt ""
@@ -4871,7 +4871,7 @@ msgctxt ""
"par_id311512825411947\n"
"help.text"
msgid "<image src=\"media/helpimg/sd_PresenterConsole01.png\" id=\"img_id481512825411947\" width=\"640\" height=\"360\"><alt id=\"alt_id151512825411947\">Presenter console normal mode</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/helpimg/sd_PresenterConsole01.png\" id=\"img_id481512825411947\" width=\"640\" height=\"360\"><alt id=\"alt_id151512825411947\">Κανονική κατάσταση κονσόλας παρουσιαστή</alt></image>"
#: presenter_console.xhp
msgctxt ""
@@ -4895,7 +4895,7 @@ msgctxt ""
"par_id961512827293400\n"
"help.text"
msgid "<image src=\"media/helpimg/sd_PresenterConsole03.png\" id=\"img_id651512827293401\" width=\"640\" height=\"360\"><alt id=\"alt_id881512827293401\">Notes mode</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/helpimg/sd_PresenterConsole03.png\" id=\"img_id651512827293401\" width=\"640\" height=\"360\"><alt id=\"alt_id881512827293401\">Κατάσταση σημειώσεων</alt></image>"
#: presenter_console.xhp
msgctxt ""
@@ -4919,7 +4919,7 @@ msgctxt ""
"par_id721512827434997\n"
"help.text"
msgid "<image src=\"media/helpimg/sd_PresenterConsole02.png\" id=\"img_id831512827434997\" width=\"640\" height=\"360\"><alt id=\"alt_id221512827434997\">Slide sorter mode</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/helpimg/sd_PresenterConsole02.png\" id=\"img_id831512827434997\" width=\"640\" height=\"360\"><alt id=\"alt_id221512827434997\">Κατάσταση ταξινόμησης διαφανειών</alt></image>"
#: presenter_console.xhp
msgctxt ""
@@ -4975,7 +4975,7 @@ msgctxt ""
"par_id3145384\n"
"help.text"
msgid "In <emph>Normal View</emph>, choose <emph>Slide - Properties</emph>, and then click the <emph>Page</emph> tab."
-msgstr ""
+msgstr "Στην <emph>Κανονική προβολή</emph>, επιλέξτε <emph>Διαφάνεια - Ιδιότητες</emph> και ύστερα πατήστε στην καρτέλα <emph>Σελίδα</emph>."
#: print_tofit.xhp
msgctxt ""
@@ -6087,7 +6087,7 @@ msgctxt ""
"bm_id3153415\n"
"help.text"
msgid "<bookmark_value>vectorizing bitmaps</bookmark_value><bookmark_value>converting; bitmaps to polygons</bookmark_value><bookmark_value>bitmaps; converting to vector graphics</bookmark_value><bookmark_value>vector graphics; converting bitmaps</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>διανυσματοποίηση ψηφιογραφιών (bitmaps)</bookmark_value><bookmark_value>μετατροπή; ψηφιογραφίες (bitmaps) σε πολύγωνα</bookmark_value><bookmark_value>ψηφιογραφίες (bitmaps); μετατροπή σε διανυσματικά γραφικά</bookmark_value><bookmark_value>διανυσματικά γραφικά; μετατροπή ψηφιογραφιών (bitmaps)</bookmark_value>"
#: vectorize.xhp
msgctxt ""
diff --git a/source/el/helpcontent2/source/text/smath/01.po b/source/el/helpcontent2/source/text/smath/01.po
index a717cca8699..9ee833f6440 100644
--- a/source/el/helpcontent2/source/text/smath/01.po
+++ b/source/el/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: 2018-05-16 16:54+0200\n"
-"PO-Revision-Date: 2017-05-17 14:25+0000\n"
+"PO-Revision-Date: 2018-05-25 05:29+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: el\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1495031128.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1527226188.000000\n"
#: 02080000.xhp
msgctxt ""
@@ -2134,7 +2134,7 @@ msgctxt ""
"par_id3155374\n"
"help.text"
msgid "Choose a function in the lower part of the Elements pane. These functions are also listed in the <link href=\"text/shared/00/00000001.xhp#kontextmenue\" name=\"context menu\">context menu</link> of the <emph>Commands</emph> window. Any functions not contained in the Elements pane need to be typed manually in the Commands window."
-msgstr ""
+msgstr "Επιλέξτε μια συνάρτηση στο κάτω μέρος του παραθύρου στοιχείων. Αυτές οι συναρτήσεις βρίσκονται επίσης στο <link href=\"text/shared/00/00000001.xhp#kontextmenue\" name=\"μενού περιβάλλοντος\">μενού περιβάλλοντος</link> του παραθύρου <emph>Εντολές</emph>. Οποιεσδήποτε συναρτήσεις δεν περιέχονται στο παράθυρο στοιχείων πρέπει να πληκτρολογούνται χειροκίνητα στο παράθυρο εντολών."
#: 03090400.xhp
msgctxt ""
@@ -2910,7 +2910,7 @@ msgctxt ""
"par_id3147101\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_LRBRACEX\">Inserts a placeholder within braces (curly brackets).</ahelp> You can also type <emph>lbrace<?>rbrace</emph> directly in the <emph>Commands</emph> window."
-msgstr ""
+msgstr "<ahelp hid=\"HID_SMA_LRBRACEX\">Εισάγει ένα δεσμευτικό θέσης με άγκιστρα.</ahelp> Μπορείτε επίσης να πληκτρολογήσετε <emph>lbrace<?>rbrace</emph> απευθείας στο παράθυρο <emph>εντολών</emph>."
#: 03090500.xhp
msgctxt ""
@@ -4094,7 +4094,7 @@ msgctxt ""
"par_id3147262\n"
"help.text"
msgid "You can choose among various options for formatting a $[officename] Math formula. The format options are displayed in the lower part of the Elements pane. These options are also listed in the <link href=\"text/shared/00/00000001.xhp#kontextmenue\" name=\"context menu\">context menu</link> of the <emph>Commands</emph> window."
-msgstr ""
+msgstr "Μπορείτε να επιλέξετε μεταξύ διάφορων επιλογών για τη μορφοποίηση ενός τύπου για το $[officename] Math. Οι επιλογές μορφοποίησης εμφανίζονται στο κάτω μέρος του παραθύρου στοιχείων. Αυτές οι επιλογές βρίσκονται επίσης στο <link href=\"text/shared/00/00000001.xhp#kontextmenue\" name=\"μενού περιβάλλοντος\">μενού περιβάλλοντος</link> του παραθύρου <emph>Εντολές</emph>."
#: 03090700.xhp
msgctxt ""
@@ -4638,7 +4638,7 @@ msgctxt ""
"par_id3149290\n"
"help.text"
msgid "After selecting the <emph>Set Operations</emph> item in the Elements pane, relevant icons will be shown in the lower part of this pane. Simply click a symbol to incorporate the operator in the formula being edited in the Commands window."
-msgstr ""
+msgstr "Αφού επιλέξετε το στοιχείο <emph>Ορισμός πράξεων</emph> στο παράθυρο στοιχείων θα εμφανιστούν σχετικά εικονίδια στο κάτω μέρος του παραθύρου. Απλά πατήστε ένα σύμβολο για να ενσωματώσετε τον τελεστή στον τύπο που επεξεργάζεστε στο παράθυρο εντολών."
#: 03090800.xhp
msgctxt ""
@@ -5246,7 +5246,7 @@ msgctxt ""
"par_id3153818\n"
"help.text"
msgid "<image id=\"img_id3148870\" src=\"media/helpimg/smzb1.png\" width=\"95px\" height=\"80px\"><alt id=\"alt_id3148870\">Symbols with Indices</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3148870\" src=\"media/helpimg/smzb1.png\" width=\"95px\" height=\"80px\"><alt id=\"alt_id3148870\">Σύμβολα με δείκτες</alt></image>"
#: 03090902.xhp
msgctxt ""
@@ -5278,7 +5278,7 @@ msgctxt ""
"par_id3153912\n"
"help.text"
msgid "<image id=\"img_id3149126\" src=\"media/helpimg/smzb2.png\" width=\"95px\" height=\"80px\"><alt id=\"alt_id3149126\">Symbols with Indices</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3149126\" src=\"media/helpimg/smzb2.png\" width=\"95px\" height=\"80px\"><alt id=\"alt_id3149126\">Σύμβολα με δείκτες</alt></image>"
#: 03090903.xhp
msgctxt ""
@@ -5310,7 +5310,7 @@ msgctxt ""
"par_id3148866\n"
"help.text"
msgid "<image id=\"img_id3153246\" src=\"media/helpimg/smzb3.png\" width=\"175px\" height=\"80px\"><alt id=\"alt_id3153246\">Symbols with Indices</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3153246\" src=\"media/helpimg/smzb3.png\" width=\"175px\" height=\"80px\"><alt id=\"alt_id3153246\">Σύμβολα με δείκτες</alt></image>"
#: 03090904.xhp
msgctxt ""
@@ -5342,7 +5342,7 @@ msgctxt ""
"par_id3153915\n"
"help.text"
msgid "<image id=\"img_id3150213\" src=\"media/helpimg/smzb5.png\" width=\"550px\" height=\"135px\"><alt id=\"alt_id3150213\">Matrix with varying font sizes</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3150213\" src=\"media/helpimg/smzb5.png\" width=\"550px\" height=\"135px\"><alt id=\"alt_id3150213\">Πίνακας με διαφορετικά μεγέθη γραμματοσειράς</alt></image>"
#: 03090905.xhp
msgctxt ""
@@ -5374,7 +5374,7 @@ msgctxt ""
"par_id3153912\n"
"help.text"
msgid "<image id=\"img_id3149126\" src=\"media/helpimg/smzb4.png\" width=\"345px\" height=\"190px\"><alt id=\"alt_id3149126\">Matrix</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3149126\" src=\"media/helpimg/smzb4.png\" width=\"345px\" height=\"190px\"><alt id=\"alt_id3149126\">Πίνακας</alt></image>"
#: 03090906.xhp
msgctxt ""
@@ -5406,7 +5406,7 @@ msgctxt ""
"par_id3148866\n"
"help.text"
msgid "<image id=\"img_id3150210\" src=\"media/helpimg/smzb6.png\" width=\"300px\" height=\"245px\"><alt id=\"alt_id3150210\">Matrix in bold font</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3150210\" src=\"media/helpimg/smzb6.png\" width=\"300px\" height=\"245px\"><alt id=\"alt_id3150210\">Πίνακας με έντονη γραμματοσειρά</alt></image>"
#: 03090907.xhp
msgctxt ""
@@ -5438,7 +5438,7 @@ msgctxt ""
"par_id3153912\n"
"help.text"
msgid "<image id=\"img_id3148871\" src=\"media/helpimg/smzb7.png\" width=\"255px\" height=\"60px\"><alt id=\"alt_id3148871\">Functions</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3148871\" src=\"media/helpimg/smzb7.png\" width=\"255px\" height=\"60px\"><alt id=\"alt_id3148871\">Συναρτήσεις</alt></image>"
#: 03090908.xhp
msgctxt ""
@@ -5470,7 +5470,7 @@ msgctxt ""
"par_id3148870\n"
"help.text"
msgid "<image id=\"img_id3153917\" src=\"media/helpimg/smzb8.png\" width=\"303px\" height=\"83px\"><alt id=\"alt_id3153917\">Square Root</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3153917\" src=\"media/helpimg/smzb8.png\" width=\"303px\" height=\"83px\"><alt id=\"alt_id3153917\">Τετραγωνική ρίζα</alt></image>"
#: 03090909.xhp
msgctxt ""
@@ -5510,7 +5510,7 @@ msgctxt ""
"par_id3151243\n"
"help.text"
msgid "<image id=\"img_id3148871\" src=\"media/helpimg/smzb9.png\" width=\"300px\" height=\"90px\"><alt id=\"alt_id3148871\">Integral and Sum Ranges, Font Size</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3148871\" src=\"media/helpimg/smzb9.png\" width=\"300px\" height=\"90px\"><alt id=\"alt_id3148871\">Ολοκλήρωμα και περιοχές άθροισης, μέγεθος γραμματοσειράς</alt></image>"
#: 03090910.xhp
msgctxt ""
@@ -5542,7 +5542,7 @@ msgctxt ""
"par_id3148703\n"
"help.text"
msgid "<image id=\"img_id3151242\" src=\"media/helpimg/smzb10.png\" width=\"295px\" height=\"40px\"><alt id=\"alt_id3151242\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3151242\" src=\"media/helpimg/smzb10.png\" width=\"295px\" height=\"40px\"><alt id=\"alt_id3151242\">Εικονίδιο</alt></image>"
#: 03091100.xhp
msgctxt ""
diff --git a/source/el/helpcontent2/source/text/smath/06.po b/source/el/helpcontent2/source/text/smath/06.po
index 0ce4253eacf..385352dd29d 100644
--- a/source/el/helpcontent2/source/text/smath/06.po
+++ b/source/el/helpcontent2/source/text/smath/06.po
@@ -4,14 +4,17 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2018-05-16 16:54+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"PO-Revision-Date: 2018-05-25 05:32+0000\n"
+"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: el\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: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1527226370.000000\n"
#: screenshots.xhp
msgctxt ""
@@ -19,7 +22,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Math screenshots"
-msgstr ""
+msgstr "Στιγμιότυπα μαθηματικών"
#: screenshots.xhp
msgctxt ""
@@ -27,7 +30,7 @@ msgctxt ""
"par_id141525570544232\n"
"help.text"
msgid "<image src=\"media/screenshots/modules/smath/ui/alignmentdialog/AlignmentDialog.png\" id=\"img_id331525570544232\" localize=\"true\"><alt id=\"alt_id641525570544232\">Alignment Dialog</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/screenshots/modules/smath/ui/alignmentdialog/AlignmentDialog.png\" id=\"img_id331525570544232\" localize=\"true\"><alt id=\"alt_id641525570544232\">Διάλογος στοίχισης</alt></image>"
#: screenshots.xhp
msgctxt ""
@@ -35,7 +38,7 @@ msgctxt ""
"par_id121525570707303\n"
"help.text"
msgid "<image src=\"media/screenshots/modules/smath/ui/catalogdialog/CatalogDialog.png\" id=\"img_id441525570707303\" localize=\"true\"><alt id=\"alt_id921525570707303\">Catalog Dialog</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/screenshots/modules/smath/ui/catalogdialog/CatalogDialog.png\" id=\"img_id441525570707303\" localize=\"true\"><alt id=\"alt_id921525570707303\">Διάλογος καταλόγου</alt></image>"
#: screenshots.xhp
msgctxt ""
@@ -43,7 +46,7 @@ msgctxt ""
"par_id71525570710878\n"
"help.text"
msgid "<image src=\"media/screenshots/modules/smath/ui/fontdialog/FontDialog.png\" id=\"img_id41525570710879\" localize=\"true\"><alt id=\"alt_id931525570710879\">Font Dialog</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/screenshots/modules/smath/ui/fontdialog/FontDialog.png\" id=\"img_id41525570710879\" localize=\"true\"><alt id=\"alt_id931525570710879\">Διάλογος γραμματοσειράς</alt></image>"
#: screenshots.xhp
msgctxt ""
@@ -51,7 +54,7 @@ msgctxt ""
"par_id671525570713808\n"
"help.text"
msgid "<image src=\"media/screenshots/modules/smath/ui/fontsizedialog/FontSizeDialog.png\" id=\"img_id131525570713808\" localize=\"true\"><alt id=\"alt_id501525570713809\">Font Size Dialog</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/screenshots/modules/smath/ui/fontsizedialog/FontSizeDialog.png\" id=\"img_id131525570713808\" localize=\"true\"><alt id=\"alt_id501525570713809\">Διάλογος μεγέθους γραμματοσειράς</alt></image>"
#: screenshots.xhp
msgctxt ""
@@ -59,7 +62,7 @@ msgctxt ""
"par_id891525570718035\n"
"help.text"
msgid "<image src=\"media/screenshots/modules/smath/ui/fonttypedialog/FontsDialog.png\" id=\"img_id441525570718035\" localize=\"true\"><alt id=\"alt_id401525570718036\">Font Type Dialog</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/screenshots/modules/smath/ui/fonttypedialog/FontsDialog.png\" id=\"img_id441525570718035\" localize=\"true\"><alt id=\"alt_id401525570718036\">Διάλογος τύπου γραμματοσειράς</alt></image>"
#: screenshots.xhp
msgctxt ""
@@ -67,7 +70,7 @@ msgctxt ""
"par_id991525570721266\n"
"help.text"
msgid "<image src=\"media/screenshots/modules/smath/ui/savedefaultsdialog/SaveDefaultsDialog.png\" id=\"img_id571525570721266\" localize=\"true\"><alt id=\"alt_id981525570721266\">Save Default Dialog</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/screenshots/modules/smath/ui/savedefaultsdialog/SaveDefaultsDialog.png\" id=\"img_id571525570721266\" localize=\"true\"><alt id=\"alt_id981525570721266\">Αποθήκευση προεπιλεγμένου διαλόγου</alt></image>"
#: screenshots.xhp
msgctxt ""
@@ -75,7 +78,7 @@ msgctxt ""
"par_id861525570725718\n"
"help.text"
msgid "<image src=\"media/screenshots/modules/smath/ui/spacingdialog/SpacingDialog.png\" id=\"img_id81525570725718\" localize=\"true\"><alt id=\"alt_id981525570725718\">Spacing Dialog</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/screenshots/modules/smath/ui/spacingdialog/SpacingDialog.png\" id=\"img_id81525570725718\" localize=\"true\"><alt id=\"alt_id981525570725718\">Διάλογος αποστάσεων</alt></image>"
#: screenshots.xhp
msgctxt ""
@@ -83,4 +86,4 @@ msgctxt ""
"par_id931525570728897\n"
"help.text"
msgid "<image src=\"media/screenshots/modules/smath/ui/symdefinedialog/EditSymbols.png\" id=\"img_id491525570728897\" localize=\"true\"><alt id=\"alt_id31525570728897\">Edit Symbols</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/screenshots/modules/smath/ui/symdefinedialog/EditSymbols.png\" id=\"img_id491525570728897\" localize=\"true\"><alt id=\"alt_id31525570728897\">Επεξεργασία συμβόλων</alt></image>"
diff --git a/source/el/helpcontent2/source/text/swriter.po b/source/el/helpcontent2/source/text/swriter.po
index 5a936121f4e..780d8af536c 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: 2018-04-05 11:28+0200\n"
-"PO-Revision-Date: 2017-11-01 08:59+0000\n"
+"PO-Revision-Date: 2018-05-25 05:36+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: el\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1509526751.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1527226600.000000\n"
#: classificationbar.xhp
msgctxt ""
@@ -342,7 +342,7 @@ msgctxt ""
"par_id030820161754171423\n"
"help.text"
msgid "The Classification toolbar contains listboxes to help in selecting the security of the document, according to the <item type=\"acronym\">BAF</item> category policy and <item type=\"acronym\">BAILS</item> levels. %PRODUCTNAME will add custom fields in the document properties (<item type=\"menuitem\">File - Properties</item>, Custom Properties tab) to store the classification policy as document metadata."
-msgstr ""
+msgstr "Η γραμμή εργαλείων διαβάθμισης περιέχει πλαίσια καταλόγου για να βοηθήσει την επιλογή ασφαλείας του εγγράφου, σύμφωνα με την πολιτική κατηγορίας <item type=\"acronym\">BAF</item> και τα επίπεδα <item type=\"acronym\">BAILS</item>. Το %PRODUCTNAME θα προσθέσει προσαρμοσμένα πεδία στις ιδιότητες του εγγράφου (<item type=\"menuitem\">Αρχείο- Ιδιότητες</item>, προσαρμοσμένη καρτέλα ιδιοτήτων) για να αποθηκεύσει την πολιτική διαβάθμισης ως μεταδεδομένα εγγράφου."
#: classificationbar.xhp
msgctxt ""
@@ -1150,7 +1150,7 @@ msgctxt ""
"par_idN105B5\n"
"help.text"
msgid "<link href=\"text/swriter/01/04150000.xhp\">Insert Table</link>"
-msgstr ""
+msgstr "<link href=\"text/swriter/01/04150000.xhp\">Εισαγωγή πίνακα</link>"
#: main0110.xhp
msgctxt ""
@@ -1534,7 +1534,7 @@ msgctxt ""
"par_idN107AC\n"
"help.text"
msgid "Opens <link href=\"text/shared/optionen/01040500.xhp\">a dialog</link> where you can specify the format of numbers in the table."
-msgstr ""
+msgstr "Ανοίγει έναν <link href=\"text/shared/optionen/01040500.xhp\"> διάλογο</link> όπου μπορείτε να ορίσετε τη μορφή των αριθμών στον πίνακα."
#: main0110.xhp
msgctxt ""
diff --git a/source/el/helpcontent2/source/text/swriter/00.po b/source/el/helpcontent2/source/text/swriter/00.po
index b25527ec3ef..54046b09535 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: 2018-05-22 13:17+0200\n"
-"PO-Revision-Date: 2017-12-14 10:19+0000\n"
+"PO-Revision-Date: 2018-05-28 08:39+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: el\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1513246772.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1527496745.000000\n"
#: 00000004.xhp
msgctxt ""
@@ -598,7 +598,7 @@ msgctxt ""
"par_id3155990\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F2"
-msgstr ""
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Εντολή</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F2"
#: 00000404.xhp
msgctxt ""
@@ -854,7 +854,7 @@ msgctxt ""
"par_id3150113\n"
"help.text"
msgid "<variable id=\"einfscript\">Choose <emph>Insert - Script</emph> (only HTML documents)</variable>"
-msgstr ""
+msgstr "<variable id=\"einfscript\">Επιλέξτε <emph>Εισαγωγή - Σενάριο</emph> (μόνο για έγγραφα HTML)</variable>"
#: 00000404.xhp
msgctxt ""
@@ -1094,7 +1094,7 @@ msgctxt ""
"par_id3155087\n"
"help.text"
msgid "<variable id=\"umschlagb\">Choose <emph>Insert - Envelope - Envelope</emph> tab</variable>"
-msgstr ""
+msgstr "<variable id=\"umschlagb\">Επιλέξτε την καρτέλα <emph>Εισαγωγή - Φάκελος - Φάκελος</emph></variable>"
#: 00000404.xhp
msgctxt ""
@@ -1102,7 +1102,7 @@ msgctxt ""
"par_id3146955\n"
"help.text"
msgid "<variable id=\"formatbr\">Choose <emph>Insert - Envelope - Format</emph> tab</variable>"
-msgstr ""
+msgstr "<variable id=\"formatbr\">Επιλέξτε την καρτέλα <emph>Εισαγωγή - Φάκελος - Μορφή</emph></variable>"
#: 00000404.xhp
msgctxt ""
@@ -1110,7 +1110,7 @@ msgctxt ""
"par_id3154342\n"
"help.text"
msgid "<variable id=\"druckerbr\">Choose <emph>Insert - Envelope - Printer</emph> tab</variable>"
-msgstr ""
+msgstr "<variable id=\"druckerbr\">Επιλέξτε την καρτέλα <emph>Εισαγωγή - Φάκελος - Εκτυπωτής</emph></variable>"
#: 00000404.xhp
msgctxt ""
@@ -1158,7 +1158,7 @@ msgctxt ""
"par_id3154251\n"
"help.text"
msgid "Choose <emph>Table - Insert Table</emph>"
-msgstr ""
+msgstr "Επιλέξτε <emph>Πίνακας - Εισαγωγή πίνακα</emph>."
#: 00000404.xhp
msgctxt ""
@@ -1166,7 +1166,7 @@ msgctxt ""
"par_id3153129\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F12"
-msgstr ""
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F12"
#: 00000404.xhp
msgctxt ""
@@ -1254,7 +1254,7 @@ msgctxt ""
"par_id81526422144005\n"
"help.text"
msgid "Choose <emph>Insert - Signature Line...</emph>"
-msgstr ""
+msgstr "Επιλέξτε <emph>Εισαγωγή - Γραμμή υπογραφής...</emph>"
#: 00000405.xhp
msgctxt ""
@@ -1478,7 +1478,7 @@ msgctxt ""
"par_id3151370\n"
"help.text"
msgid "<variable id=\"eingabe\">Choose <emph>Tools - AutoCorrect - While Typing</emph></variable>"
-msgstr ""
+msgstr "<variable id=\"eingabe\">Επιλέξτε <emph>Εργαλεία - Αυτόματη διόρθωση - Κατά την πληκτρολόγηση</emph></variable>"
#: 00000405.xhp
msgctxt ""
@@ -1486,7 +1486,7 @@ msgctxt ""
"par_id3149538\n"
"help.text"
msgid "<variable id=\"autoformat1\">Choose <emph>Tools - AutoCorrect</emph></variable>"
-msgstr ""
+msgstr "<variable id=\"autoformat1\">Επιλέξτε <emph>Εργαλεία - Αυτόματη διόρθωση</emph></variable>"
#: 00000405.xhp
msgctxt ""
@@ -1494,7 +1494,7 @@ msgctxt ""
"par_id3150117\n"
"help.text"
msgid "<variable id=\"autoformat2\">Choose <emph>Tools - AutoCorrect - Apply</emph></variable>"
-msgstr ""
+msgstr "<variable id=\"autoformat2\">Επιλέξτε <emph>Εργαλεία - Αυτόματη διόρθωση - Εφαρμογή</emph></variable>"
#: 00000405.xhp
msgctxt ""
@@ -1502,7 +1502,7 @@ msgctxt ""
"par_id3155870\n"
"help.text"
msgid "<variable id=\"autoformat3\">Choose <emph>Tools - AutoCorrect - Apply and Edit Changes</emph></variable>"
-msgstr ""
+msgstr "<variable id=\"autoformat3\">Επιλέξτε <emph>Εργαλεία - Αυτόματη διόρθωση - Εφαρμογή και επεξεργασία αλλαγών</emph></variable>"
#: 00000405.xhp
msgctxt ""
diff --git a/source/el/helpcontent2/source/text/swriter/01.po b/source/el/helpcontent2/source/text/swriter/01.po
index b0f1437a521..d30d63ef9de 100644
--- a/source/el/helpcontent2/source/text/swriter/01.po
+++ b/source/el/helpcontent2/source/text/swriter/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: 2018-05-22 13:17+0200\n"
-"PO-Revision-Date: 2017-12-14 10:31+0000\n"
+"PO-Revision-Date: 2018-05-30 05:50+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: www.gnome.gr\n"
"Language: el\n"
@@ -13,9 +13,9 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Pootle 2.8\n"
"X-Project-Style: openoffice\n"
-"X-POOTLE-MTIME: 1513247491.000000\n"
+"X-POOTLE-MTIME: 1527659401.000000\n"
#: 01120000.xhp
msgctxt ""
@@ -383,7 +383,7 @@ msgctxt ""
"par_id3155186\n"
"help.text"
msgid "<ahelp hid=\".uno:SendOutlineToStarImpress\">Sends the outline of the active document to a new presentation document.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".uno:SendOutlineToStarImpress\">Στέλνει τη διάρθρωση ενός ενεργού εγγράφου σε ένα νέο έγγραφο παρουσίασης.</ahelp>"
#: 01160200.xhp
msgctxt ""
@@ -487,7 +487,7 @@ msgctxt ""
"par_id3145412\n"
"help.text"
msgid "<ahelp hid=\".uno:SendAbstractToStarImpress\">Opens the current document as a $[officename] Impress presentation. The current document must contain at least one predefined heading paragraph style.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".uno:SendAbstractToStarImpress\">Ανοίγει το τρέχον έγγραφο ως παρουσίαση $[officename] του Impress. Το τρέχον έγγραφο πρέπει να περιέχει τουλάχιστον μια προκαθορισμένη τεχνοτροπία παραγράφου επικεφαλίδας.</ahelp>"
#: 01160400.xhp
msgctxt ""
@@ -543,7 +543,7 @@ msgctxt ""
"par_id3151175\n"
"help.text"
msgid "<variable id=\"htmltext\"><ahelp hid=\".\">Saves the file as an HTML document, so that you can view it in a web browser. You can choose to create a separate page when a heading style that you specify is encountered in the document.</ahelp> If you choose this option, a separate page of links to all of the pages that are generated is also created. </variable>"
-msgstr ""
+msgstr "<variable id=\"htmltext\"><ahelp hid=\".\">Αποθηκεύει το αρχείο ως έγγραφο HTML, έτσι ώστε να μπορείτε να το δείτε σε ένα πλοηγητή ιστού. Μπορείτε να επιλέξετε να δημιουργήσετε μια ξεχωριστή σελίδα όταν μια τεχνοτροπία επικεφαλίδας που έχετε καθορίσει εμφανίζεται στο έγγραφο.</ahelp> Εάν κάνετε αυτήν την επιλογή, δημιουργείται επίσης μια ξεχωριστή σελίδα από συνδέσμους σε όλες τις σελίδες που δημιουργήθηκαν.</variable>"
#: 01160500.xhp
msgctxt ""
@@ -575,7 +575,7 @@ msgctxt ""
"hd_id3155892\n"
"help.text"
msgid "separated by"
-msgstr ""
+msgstr "διαχωρίζεται με"
#: 01160500.xhp
msgctxt ""
@@ -583,7 +583,7 @@ msgctxt ""
"par_id3149688\n"
"help.text"
msgid "<ahelp hid=\".\">Select the heading paragraph style that you want to use to indicate a new HTML page.</ahelp> To use this option, apply one of the heading paragraph styles to the paragraphs where you want to start a new page in the document."
-msgstr ""
+msgstr "<ahelp hid=\".\">Επιλέγει την τεχνοτροπία παραγράφου επικεφαλίδας που θέλετε να χρησιμοποιήσετε για να δείξετε μια νέα σελίδα HTML.</ahelp> Για να χρησιμοποιήσετε αυτήν την επιλογή, εφαρμόστε μία από τις τεχνοτροπίες παραγράφου επικεφαλίδας στις παραγράφους που θέλετε να ξεκινούν μια νέα σελίδα στο έγγραφο."
#: 01160500.xhp
msgctxt ""
@@ -3591,7 +3591,7 @@ msgctxt ""
"par_id3149805\n"
"help.text"
msgid "Ends the current line, and moves the text found to the right of the cursor to the next line, without creating a new paragraph."
-msgstr ""
+msgstr "Τερματίζει την τρέχουσα γραμμή και μετακινεί το κείμενο που βρίσκεται στα δεξιά του δρομέα στην επόμενη γραμμή, χωρίς να δημιουργεί νέα παράγραφο."
#: 04010000.xhp
msgctxt ""
@@ -3615,7 +3615,7 @@ msgctxt ""
"par_id3155182\n"
"help.text"
msgid "Inserts a manual column break (in a multiple column layout), and moves the text found to the right of the cursor to the beginning of the next <link href=\"text/swriter/01/05040500.xhp\" name=\"column\">column</link>. A manual column break is indicated by a nonprinting border at the top of the new column."
-msgstr ""
+msgstr "Εισάγει χειροκίνητη αλλαγή στήλης (σε διάταξη πολλαπλών στηλών) και μετακινεί το κείμενο που βρίσκεται στα δεξιά του δρομέα στην αρχή της επόμενης <link href=\"text/swriter/01/05040500.xhp\" name=\"column\">στήλης</link>. Μια χειροκίνητη αλλαγή στήλης υποδεικνύεται από μη εκτυπώσιμο περιθώριο στην κορυφή της νέας στήλης."
#: 04010000.xhp
msgctxt ""
@@ -3631,7 +3631,7 @@ msgctxt ""
"par_id3149102\n"
"help.text"
msgid "Inserts a manual page break, and moves the text found to the right of the cursor to the beginning of the next page. The inserted page break is indicated by a nonprinting border at the top of the new page."
-msgstr ""
+msgstr "Εισάγει μια χειροκίνητη αλλαγή σελίδας και μετακινεί το κείμενο που βρίσκεται στα δεξιά του δρομέα στην αρχή της επόμενης σελίδας. Η εισηγμένη αλλαγή σελίδας υποδεικνύεται από ένα μη εκτυπώσιμο περίγραμμα στην κορυφή της νέας σελίδας."
#: 04010000.xhp
msgctxt ""
@@ -3655,7 +3655,7 @@ msgctxt ""
"par_id3156275\n"
"help.text"
msgid "Select the page style for the page that follows the manual page break."
-msgstr ""
+msgstr "Επιλέξτε την τεχνοτροπία σελίδας για τη σελίδα που ακολουθεί τη χειροκίνητη αλλαγή σελίδας."
#: 04010000.xhp
msgctxt ""
@@ -3671,7 +3671,7 @@ msgctxt ""
"par_id3155917\n"
"help.text"
msgid "Assigns the page number that you specify to the page that follows the manual page break. This option is only available if you assign a different page style to the page that follows manual page break."
-msgstr ""
+msgstr "Αποδίδει τον αριθμό σελίδας που έχετε ορίσει στη σελίδα που ακολουθεί τη χειροκίνητη αλλαγή σελίδας. Αυτή η επιλογή είναι διαθέσιμη μόνο εάν αποδίδετε διαφορετική τεχνοτροπία σελίδας στη σελίδα που ακολουθεί τη χειροκίνητη αλλαγή σελίδας."
#: 04010000.xhp
msgctxt ""
@@ -3687,7 +3687,7 @@ msgctxt ""
"par_id3150700\n"
"help.text"
msgid "Enter the new page number for the page that follows the manual page break."
-msgstr ""
+msgstr "Εισάγετε τον νέο αριθμό σελίδας για τη σελίδα που ακολουθεί τη χειροκίνητη αλλαγή σελίδας."
#: 04010000.xhp
msgctxt ""
@@ -5479,7 +5479,7 @@ msgctxt ""
"par_id3147167\n"
"help.text"
msgid "<ahelp hid=\".\">Fields are used to insert information about the current document, for example, file name, template, statistics, user data, date, and time.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Τα πεδία χρησιμοποιούνται για την εισαγωγή πληροφοριών για το τρέχον έγγραφο, π.χ. όνομα αρχείου, πρότυπο, στατιστικά, δεδομένα χρήστη, ημερομηνία και ώρα.</ahelp>"
#: 04090001.xhp
msgctxt ""
@@ -6183,7 +6183,7 @@ msgctxt ""
"par_id7374187\n"
"help.text"
msgid "<ahelp hid=\".\">Lists the available fields for the field type selected in the <emph>Type </emph>list. To insert a field, click the field, select a format in the \"Insert reference to\" list, and then click <emph>Insert</emph>.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Εμφανίζει τα διαθέσιμα πεδία για τον επιλεγμένο τύπο πεδίου στον κατάλογο <emph>Τύπος </emph>. Για να εισάγετε ένα πεδίο, πατήστε στο πεδίο, επιλέξτε μια μορφοποίηση στον κατάλογο \"Εισαγωγή παραπομπής στο\" και μετά πατήστε στο <emph>Εισαγωγή (Insert)</emph>.</ahelp>"
#: 04090002.xhp
msgctxt ""
@@ -6495,7 +6495,7 @@ msgctxt ""
"par_id3150343\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Sets additional function parameters for fields. The type of parameter depends on the field type that you select.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Ορίζει πρόσθετες παραμέτρους λειτουργίας για τα πεδία. Ο τύπος των παραμέτρων εξαρτάται από τον επιλεγόμενο τύπο πεδίου.</ahelp>"
#: 04090003.xhp
msgctxt ""
@@ -6503,7 +6503,7 @@ msgctxt ""
"par_id3151242\n"
"help.text"
msgid "<ahelp hid=\".\">Depending on the field type that you select, you can assign conditions to certain functions. For example, you can define a field that executes a macro when you click the field in the document, or a condition that, when met, hides a field. You can also define placeholder fields that insert graphics, tables, frames and other objects into your document when needed.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Ανάλογα με τον επιλεγμένο τύπο πεδίου, μπορείτε να αποδώσετε συνθήκες σε συγκεκριμένες λειτουργίες. Παραδείγματος χάρη, μπορείτε να ορίσετε ένα πεδίο που εκτελεί μια μακροεντολή όταν πατάτε το πεδίο στο έγγραφο, ή μια συνθήκη που, όταν ισχύει, κρύβει ένα πεδίο. Μπορείτε επίσης να ορίσετε πεδία δεσμευτικών θέσης που εισάγουν γραφικά, πίνακες, πλαίσια και άλλα αντικείμενα στο έγγραφό σας όταν χρειάζεται.</ahelp>"
#: 04090003.xhp
msgctxt ""
@@ -6703,7 +6703,7 @@ msgctxt ""
"par_id3154830\n"
"help.text"
msgid "<ahelp hid=\".\">Enter the text to display when the condition is met in the <emph>Then </emph>box, and the text to display when the condition is not met in the <emph>Else </emph>box.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Εισάγετε το κείμενο που θα εμφανίζεται όταν η συνθήκη ικανοποιείται, στο πλαίσιο <emph>Τότε (Then)</emph> και το κείμενο που θα εμφανίζεται όταν η συνθήκη δεν ικανοποιείται, στο πλαίσιο <emph>Αλλιώς (Else)</emph>.</ahelp>"
#: 04090003.xhp
msgctxt ""
@@ -7055,7 +7055,7 @@ msgctxt ""
"par_id3149692\n"
"help.text"
msgid "<ahelp hid=\".\">DocInformation fields contain information about the properties of a document, such as the date a document was created. To view the properties of a document, choose <emph>File - Properties</emph>.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Τα πεδία πληροφοριών εγγράφου περιέχουν πληροφορίες για τις ιδιότητες του εγγράφου, όπως ημερομηνία δημιουργίας του εγγράφου. Για να δείτε τις ιδιότητες του εγγράφου, επιλέξτε <emph>Αρχείο - Ιδιότητες</emph>.</ahelp>"
#: 04090004.xhp
msgctxt ""
@@ -7135,7 +7135,7 @@ msgctxt ""
"par_id3147490\n"
"help.text"
msgid "Inserts the comments as entered in the <emph>Description</emph> tab page of the <link href=\"text/shared/01/01100300.xhp\" name=\"File - Properties\"><emph>File - Properties</emph></link> dialog."
-msgstr ""
+msgstr "Εισάγει τα σχόλια όπως μπήκαν στη σελίδα καρτέλας <emph>Περιγραφή</emph> του διαλόγου <link href=\"text/shared/01/01100300.xhp\" name=\"Αρχείο - Ιδιότητες\"><emph>Αρχείο - Ιδιότητες</emph></link>."
#: 04090004.xhp
msgctxt ""
@@ -7143,7 +7143,7 @@ msgctxt ""
"par_id3145262\n"
"help.text"
msgid "Revision number"
-msgstr ""
+msgstr "Αριθμός αναθεώρησης"
#: 04090004.xhp
msgctxt ""
@@ -7175,7 +7175,7 @@ msgctxt ""
"par_id3148856\n"
"help.text"
msgid "Custom"
-msgstr ""
+msgstr "Προσαρμοσμένο"
#: 04090004.xhp
msgctxt ""
@@ -7183,7 +7183,7 @@ msgctxt ""
"par_id3154784\n"
"help.text"
msgid "Inserts the contents of the properties found on the <emph>Custom Properties</emph>tab of the <link href=\"text/shared/01/01100300.xhp\" name=\"File - Properties\"><emph>File - Properties</emph></link> dialog."
-msgstr ""
+msgstr "Εισάγει τα περιεχόμενα των ιδιοτήτων που βρίσκονται στην καρτέλα <emph>Προσαρμοσμένες ιδιότητες</emph> του διαλόγου <link href=\"text/shared/01/01100300.xhp\" name=\"Αρχείο - Ιδιότητες\"><emph>Αρχείο - Ιδιότητες</emph></link>."
#: 04090004.xhp
msgctxt ""
@@ -7215,7 +7215,7 @@ msgctxt ""
"par_id3150912\n"
"help.text"
msgid "Inserts the keywords as entered in the <emph>Description </emph>tab of the <link href=\"text/shared/01/01100300.xhp\" name=\"File - Properties\"><emph>File - Properties</emph></link> dialog."
-msgstr ""
+msgstr "Εισάγει τις λέξεις-κλειδιά όπως μπαίνουν στην καρτέλα <emph>Περιγραφή</emph> του διαλόγου <link href=\"text/shared/01/01100300.xhp\" name=\"Αρχείο - Ιδιότητες\"><emph>Αρχείο - Ιδιότητες</emph></link>."
#: 04090004.xhp
msgctxt ""
@@ -7231,7 +7231,7 @@ msgctxt ""
"par_id3146942\n"
"help.text"
msgid "Inserts the subject as entered in the <emph>Description </emph>tab of the <link href=\"text/shared/01/01100300.xhp\" name=\"File - Properties\"><emph>File - Properties</emph></link> dialog."
-msgstr ""
+msgstr "Εισάγει το θέμα όπως μπαίνει στην καρτέλα <emph>Περιγραφή</emph> του διαλόγου <link href=\"text/shared/01/01100300.xhp\" name=\"Αρχείο - Ιδιότητες\"><emph>Αρχείο - Ιδιότητες</emph></link>."
#: 04090004.xhp
msgctxt ""
@@ -7247,7 +7247,7 @@ msgctxt ""
"par_id3150033\n"
"help.text"
msgid "Inserts the title as entered in the <emph>Description </emph>tab of the <link href=\"text/shared/01/01100300.xhp\" name=\"File - Properties\"><emph>File - Properties</emph></link> dialog."
-msgstr ""
+msgstr "Εισάγει τον τίτλο όπως μπαίνει στην καρτέλα <emph>Περιγραφή</emph> του διαλόγου <link href=\"text/shared/01/01100300.xhp\" name=\"Αρχείο - Ιδιότητες\"><emph>Αρχείο - Ιδιότητες</emph></link>."
#: 04090004.xhp
msgctxt ""
@@ -7327,7 +7327,7 @@ msgctxt ""
"par_id3150764\n"
"help.text"
msgid "<ahelp hid=\".\">Variable fields let you add dynamic content to your document. For example, you can use a variable to reset the page numbering.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Τα πεδία μεταβλητών επιτρέπουν την πρόσθεση δυναμικού περιεχομένου στο έγγραφό σας. Παραδείγματος χάρη, μπορείτε να χρησιμοποιήσετε μια μεταβλητή για να επαναφέρετε την αρίθμηση των σελίδων.</ahelp>"
#: 04090005.xhp
msgctxt ""
@@ -7567,7 +7567,7 @@ msgctxt ""
"hd_id3888363\n"
"help.text"
msgid "Select"
-msgstr ""
+msgstr "Επιλέξτε"
#: 04090005.xhp
msgctxt ""
@@ -7575,7 +7575,7 @@ msgctxt ""
"par_id7453535\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/fldvarpage/select\">Lists the available fields for the field type selected in the <emph>Type </emph>list. To insert a field, click the field, and then click <emph>Insert</emph>.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/fldvarpage/select\">Εμφανίζει όλα τα διαθέσιμα πεδία για τον επιλεγμένο τύπο πεδίου στον κατάλογο <emph>Τύπος </emph>. Για να εισάγετε ένα πεδίο, πατήστε στο πεδίο και μετά πατήστε <emph>Εισαγωγή (Insert)</emph>.</ahelp>"
#: 04090005.xhp
msgctxt ""
@@ -7751,7 +7751,7 @@ msgctxt ""
"par_id3154471\n"
"help.text"
msgid "<ahelp hid=\".\">You can insert fields from any database, for example, address fields, into your document.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Μπορείτε να εισάγετε πεδία από οποιαδήποτε βάση δεδομένων, παραδείγματος χάρη, πεδία διευθύνσεων, στο έγγραφό σας.</ahelp>"
#: 04090006.xhp
msgctxt ""
@@ -7943,7 +7943,7 @@ msgctxt ""
"par_id3156122\n"
"help.text"
msgid "Select the format of the field that you want to insert. This option is available for numerical, boolean, date and time fields."
-msgstr ""
+msgstr "Επιλέξτε τη μορφή του πεδίου που θέλετε να εισάγετε. Αυτή η επιλογή είναι διαθέσιμη για πεδία αριθμητικά, λογικά, ημερομηνίας και χρόνου."
#: 04090006.xhp
msgctxt ""
@@ -8007,7 +8007,7 @@ msgctxt ""
"par_id3150093\n"
"help.text"
msgid "<ahelp hid=\".\">Lists the available user-defined formats.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Παραθέτει τις διαθέσιμες μορφές που ορίστηκαν από τον χρήστη.</ahelp>"
#: 04090006.xhp
msgctxt ""
@@ -9463,7 +9463,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Edit fields"
-msgstr ""
+msgstr "Επεξεργασία πεδίων"
#: 04090300.xhp
msgctxt ""
@@ -9471,7 +9471,7 @@ msgctxt ""
"bm_id991519648545589\n"
"help.text"
msgid "<bookmark_value>fields;editing</bookmark_value> <bookmark_value>edit;fields</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>πεδία;επεξεργασία</bookmark_value> <bookmark_value>επεξεργασία;πεδία</bookmark_value>"
#: 04090300.xhp
msgctxt ""
@@ -9479,7 +9479,7 @@ msgctxt ""
"hd_id431519648111292\n"
"help.text"
msgid "<link href=\"text/swriter/01/04090300.xhp\" name=\"Edit Fields\">Edit Fields</link>"
-msgstr ""
+msgstr "<link href=\"text/swriter/01/04090300.xhp\" name=\"Επεξεργασία πεδίων\">Επεξεργασία πεδίων</link>"
#: 04090300.xhp
msgctxt ""
@@ -9487,7 +9487,7 @@ msgctxt ""
"par_id361519648111293\n"
"help.text"
msgid "<variable id=\"editfields2\"><ahelp hid=\".\">Edit field contents.</ahelp></variable>"
-msgstr ""
+msgstr "<variable id=\"editfields2\"><ahelp hid=\".\">Επεξεργασία περιεχομένων πεδίου.</ahelp></variable>"
#: 04090300.xhp
msgctxt ""
@@ -9495,7 +9495,7 @@ msgctxt ""
"par_id761519649446210\n"
"help.text"
msgid "Choose <item type=\"menuitem\">Fields</item> of the context menu of the selected field."
-msgstr ""
+msgstr "Επιλέξτε <item type=\"menuitem\">Πεδία</item> στο μενού περιβάλλοντος του επιλεγμένου πεδίου."
#: 04090300.xhp
msgctxt ""
@@ -9503,7 +9503,7 @@ msgctxt ""
"hd_id511519649431645\n"
"help.text"
msgid "Type pane"
-msgstr ""
+msgstr "Τύπος παραθύρου"
#: 04090300.xhp
msgctxt ""
@@ -9511,7 +9511,7 @@ msgctxt ""
"par_id761519649446212\n"
"help.text"
msgid "Shows the type of the selected field. The middle and left pane of the dialog contents depends on the field type. For a complete description of the fields see <link href=\"text/swriter/01/04090000.xhp\" name=\"fields\">Fields</link> page."
-msgstr ""
+msgstr "Εμφανίζει τον τύπο του επιλεγμένου πεδίου. Το μεσαίο και αριστερό παράθυρο των περιεχομένων διαλόγου εξαρτάται από τον τύπο του πεδίου. Για μια πλήρη περιγραφή των πεδίων, δείτε τη σελίδα <link href=\"text/swriter/01/04090000.xhp\" name=\"πεδία\">Πεδία</link>."
#: 04090300.xhp
msgctxt ""
@@ -9519,7 +9519,7 @@ msgctxt ""
"hd_id931519650651402\n"
"help.text"
msgid "Edit"
-msgstr ""
+msgstr "Επεξεργασία"
#: 04090300.xhp
msgctxt ""
@@ -9527,7 +9527,7 @@ msgctxt ""
"par_id241519650657361\n"
"help.text"
msgid "When visible, opens a dialog to edit the contents of the field. The dialog depends on the type of the field."
-msgstr ""
+msgstr "Όταν είναι ορατό, ανοίγει έναν διάλογο επεξεργασίας των περιεχομένων του πεδίου. Ο διάλογος εξαρτάται από τον τύπο του πεδίου."
#: 04090300.xhp
msgctxt ""
@@ -9535,7 +9535,7 @@ msgctxt ""
"hd_id941519649436996\n"
"help.text"
msgid "Arrow buttons"
-msgstr ""
+msgstr "Πλήκτρα βελών"
#: 04090300.xhp
msgctxt ""
@@ -9543,7 +9543,7 @@ msgctxt ""
"par_id951519649454340\n"
"help.text"
msgid "Use the arrow buttons to go to next or previous field of same type in the document."
-msgstr ""
+msgstr "Χρησιμοποιήστε τα πλήκτρα βελών για να πάτα στο επόμενο ή προηγούμενο πεδίο του ίδιου τύπου στο έγγραφο."
#: 04120000.xhp
msgctxt ""
@@ -11983,7 +11983,7 @@ msgctxt ""
"par_id3145582\n"
"help.text"
msgid "<ahelp hid=\".\">Displays the short name for the bibliography entry. You can only enter a name here if you are creating a new bibliography entry.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Εμφανίζει το σύντομο όνομα για την καταχώριση της βιβλιογραφίας. Μπορείτε να εισάγετε μόνο ένα όνομα εδώ εάν δημιουργείτε μία νέα καταχώριση βιβλιογραφίας.</ahelp>"
#: 04120229.xhp
msgctxt ""
@@ -11991,7 +11991,7 @@ msgctxt ""
"par_id3153527\n"
"help.text"
msgid "<ahelp hid=\".\">This is where you select the desired entry data for your bibliography.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Εδώ μπορείτε να επιλέξετε τα επιθυμητά δεδομένα της καταχώρισης για τη βιβλιογραφίας σας.</ahelp>"
#: 04120229.xhp
msgctxt ""
@@ -12007,7 +12007,7 @@ msgctxt ""
"par_id3143283\n"
"help.text"
msgid "<ahelp hid=\".\">Select the source for the bibliography entry.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Επιλέξτε την πηγή για την καταχώριση της βιβλιογραφίας.</ahelp>"
#: 04120229.xhp
msgctxt ""
@@ -12575,7 +12575,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Insert Table"
-msgstr ""
+msgstr "Εισαγωγή πίνακα"
#: 04150000.xhp
msgctxt ""
@@ -12583,7 +12583,7 @@ msgctxt ""
"hd_id3147402\n"
"help.text"
msgid "<link href=\"text/swriter/01/04150000.xhp\">Insert Table</link>"
-msgstr ""
+msgstr "<link href=\"text/swriter/01/04150000.xhp\">Εισαγωγή πίνακα</link>"
#: 04150000.xhp
msgctxt ""
@@ -12591,7 +12591,7 @@ msgctxt ""
"par_id3149355\n"
"help.text"
msgid "<variable id=\"table_text\"><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></variable>"
-msgstr ""
+msgstr "<variable id=\"table_text\"><variable id=\"tabelletext\"><ahelp hid=\".\">Εισάγει έναν πίνακα στο έγγραφο. Μπορείτε επίσης να πατήσετε στο βέλος, να σύρετε για να επιλέξετε τον αριθμό των γραμμών και των στηλών που θα συμπεριληφθούν στον πίνακα και μετά να πατήσετε στο τελευταίο κελί.</ahelp></variable></variable>"
#: 04150000.xhp
msgctxt ""
@@ -12615,7 +12615,7 @@ msgctxt ""
"par_idN10642\n"
"help.text"
msgid "To insert a table into a table, click in a cell in the table and choose <emph>Table - Insert Table</emph>."
-msgstr ""
+msgstr "Για να εισάγετε έναν πίνακα σε έναν άλλο πίνακα, πατήστε σε ένα κελί στον πίνακα και επιλέξτε <emph>Πίνακας - Εισαγωγή πίνακα</emph>."
#: 04150000.xhp
msgctxt ""
@@ -12711,7 +12711,7 @@ msgctxt ""
"hd_id3143270\n"
"help.text"
msgid "Repeat heading rows on new pages"
-msgstr ""
+msgstr "Επανάληψη γραμμών επικεφαλίδας σε νέες σελίδες"
#: 04150000.xhp
msgctxt ""
@@ -12727,7 +12727,7 @@ msgctxt ""
"par_idN10754\n"
"help.text"
msgid "Heading rows"
-msgstr ""
+msgstr "Επικεφαλίδες γραμμών"
#: 04150000.xhp
msgctxt ""
@@ -12743,7 +12743,7 @@ msgctxt ""
"hd_id3149821\n"
"help.text"
msgid "Don't split the table over pages"
-msgstr ""
+msgstr "Να μην διαιρείται ο πίνακας ανάμεσα στις σελίδες"
#: 04150000.xhp
msgctxt ""
@@ -12759,7 +12759,7 @@ msgctxt ""
"hd_id3147213\n"
"help.text"
msgid "List of AutoFormats"
-msgstr ""
+msgstr "Κατάλογος αυτόματων μορφών"
#: 04150000.xhp
msgctxt ""
@@ -12767,7 +12767,7 @@ msgctxt ""
"par_id3149036\n"
"help.text"
msgid "<ahelp hid=\".\">Select a predefined <emph>AutoFormat</emph> for the new table.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Επιλέξτε μια προκαθορισμένη <emph>αυτόματη μορφή</emph> για τον νέο πίνακα.</ahelp>"
#: 04150000.xhp
msgctxt ""
@@ -15647,7 +15647,7 @@ msgctxt ""
"par_id3149171\n"
"help.text"
msgid "<ahelp hid=\".\">Wraps text on the left side of the object if there is enough space.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Αναδίπλωση κειμένου στην αριστερή πλευρά του αντικειμένου, εάν υπάρχει αρκετός χώρος.</ahelp>"
#: 05060200.xhp
msgctxt ""
@@ -15679,7 +15679,7 @@ msgctxt ""
"par_id3150700\n"
"help.text"
msgid "<ahelp hid=\".\">Wraps text on the right side of the object if there is enough space.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Αναδίπλωση κειμένου στην αριστερή πλευρά του αντικειμένου, εάν υπάρχει αρκετός χώρος.</ahelp>"
#: 05060200.xhp
msgctxt ""
@@ -20327,7 +20327,7 @@ msgctxt ""
"par_id3149500\n"
"help.text"
msgid "<variable id=\"autoformattabelle\"><ahelp hid=\".\">Automatically applies formats to the current table, including fonts, shading, and borders.</ahelp></variable>"
-msgstr ""
+msgstr "<variable id=\"autoformattabelle\"><ahelp hid=\".\">Εφαρμόζει αυτόματα μορφοποιήσεις στον τρέχοντα πίνακα, συμπεριλαμβανομένων των γραμματοσειρών, της σκίασης και των περιγραμμάτων.</ahelp></variable>"
#: 05150101.xhp
msgctxt ""
@@ -20423,7 +20423,7 @@ msgctxt ""
"par_id3151168\n"
"help.text"
msgid "In the <emph>Add AutoFormat</emph> dialog, enter a name, and then click <emph>OK</emph>."
-msgstr ""
+msgstr "Στον διάλογο <emph>Προσθήκη αυτόματης μορφής</emph>, εισάγετε ένα όνομα και έπειτα πατήστε <emph>Εντάξει</emph>."
#: 05150101.xhp
msgctxt ""
@@ -20431,7 +20431,7 @@ msgctxt ""
"par_id3153391\n"
"help.text"
msgid "<ahelp visibility=\"hidden\" hid=\"modules/swriter/ui/stringinput/edit\">Enter a name for the new AutoFormat, and then click<emph> OK</emph>.</ahelp>"
-msgstr ""
+msgstr "<ahelp visibility=\"hidden\" hid=\"modules/swriter/ui/stringinput/edit\">Εισάγετε ένα όνομα για τη νέα αυτόματη μορφοποίηση και μετά πατήστε στο <emph>Εντάξει</emph>.</ahelp>"
#: 05150101.xhp
msgctxt ""
@@ -20447,7 +20447,7 @@ msgctxt ""
"par_id3150707\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/autoformattable/remove\">Deletes the selected table style. You cannot delete the \"Default Style\" table style.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/autoformattable/remove\">Διαγράφει την επιλεγμένη τεχνοτροπία πίνακα. Δεν μπορείτε να διαγράψετε την τεχνοτροπία πίνακα \"Προεπιλεγμένη τεχνοτροπία\".</ahelp>"
#: 05150101.xhp
msgctxt ""
@@ -20559,7 +20559,7 @@ msgctxt ""
"par_id3149490\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/autoformattable/rename\">Changes the name of the selected table style. You cannot rename the \"Default Style\" table style.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/autoformattable/rename\">Αλλάζει το όνομα της επιλεγμένης τεχνοτροπίας πίνακα. Δεν μπορείτε να μετονομάσετε την τεχνοτροπία πίνακα \"Προεπιλεγμένη τεχνοτροπία\".</ahelp>"
#: 05150104.xhp
msgctxt ""
@@ -20791,7 +20791,7 @@ msgctxt ""
"par_id3149029\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/queryredlinedialog/ok\">Applies all of the formatting changes.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/queryredlinedialog/ok\">Εφαρμόζει όλες τις αλλαγές μορφοποίησης.</ahelp>"
#: 05150300.xhp
msgctxt ""
@@ -20807,7 +20807,7 @@ msgctxt ""
"par_id3149711\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/queryredlinedialog/cancel\">Rejects all of the formatting changes.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/queryredlinedialog/cancel\">Απορρίπτει όλες τις αλλαγές μορφοποίησης.</ahelp>"
#: 05150300.xhp
msgctxt ""
@@ -20823,7 +20823,7 @@ msgctxt ""
"par_id3147570\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/queryredlinedialog/edit\">Opens a dialog where you can accept or reject AutoCorrect changes. You can also view the changes made by a specific author or on a specific date.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/queryredlinedialog/edit\">Ανοίγει έναν διάλογο, όπου μπορείτε να αποδεχθείτε ή να απορρίψετε τις αλλαγές της αυτόματης διόρθωσης. Μπορείτε ακόμα να δείτε τις αλλαγές που έχουν γίνει από κάποιον συντάκτη ή σε μια συγκεκριμένη ημερομηνία.</ahelp>"
#: 05150300.xhp
msgctxt ""
@@ -20855,7 +20855,7 @@ msgctxt ""
"par_id3083446\n"
"help.text"
msgid "<variable id=\"vorlagentext\"><ahelp hid=\".\">Imports formatting styles from another document or template into the current document.</ahelp></variable>"
-msgstr ""
+msgstr "<variable id=\"vorlagentext\"><ahelp hid=\".\">Εισάγει τεχνοτροπίες μορφοποίησης από ένα άλλο έγγραφο ή πρότυπο στο τρέχον έγγραφο.</ahelp></variable>"
#: 05170000.xhp
msgctxt ""
@@ -21135,7 +21135,7 @@ msgctxt ""
"par_id3147401\n"
"help.text"
msgid "<ahelp hid=\".\">Combines two consecutive tables into a single table. The tables must be directly next to each other and not separated by an empty paragraph.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Συνδυάζει δύο συνεχόμενους πίνακες σε έναν απλό πίνακα. Οι πίνακες πρέπει να είναι άμεσα γειτονικοί μεταξύ τους και να μη διαχωρίζονται από μία κενή παράγραφο.</ahelp>"
#: 05200000.xhp
msgctxt ""
@@ -23591,7 +23591,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Adding Signature Line in Text Documents"
-msgstr ""
+msgstr "Προσθήκη γραμμής υπογραφής στα έγγραφα κειμένου"
#: addsignatureline.xhp
msgctxt ""
@@ -23599,7 +23599,7 @@ msgctxt ""
"bm_id821526779524753\n"
"help.text"
msgid "<bookmark_value>digital signature;add signature line</bookmark_value><bookmark_value>signature line;adding</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>ψηφιακή υπογραφή;προσθήκη γραμμής υπογραφής</bookmark_value><bookmark_value>γραμμή υπογραφής;προσθήκη</bookmark_value>"
#: addsignatureline.xhp
msgctxt ""
@@ -23607,7 +23607,7 @@ msgctxt ""
"hd_id501526421873817\n"
"help.text"
msgid "<variable id=\"addsignatureline01\"><link href=\"text/swriter/01/addsignatureline.xhp\" name=\"Adding Signature Line\">Adding a Signature Line in Text Documents</link></variable>"
-msgstr ""
+msgstr "<variable id=\"addsignatureline01\"><link href=\"text/swriter/01/addsignatureline.xhp\" name=\"Adding Signature Line\">Προσθήκη γραμμής υπογραφής σε έγγραφα κειμένου</link></variable>"
#: addsignatureline.xhp
msgctxt ""
@@ -23615,7 +23615,7 @@ msgctxt ""
"par_id991526423190756\n"
"help.text"
msgid "%PRODUCTNAME Writer can insert a graphic box inside the document representing a signature line of the document."
-msgstr ""
+msgstr "Το %PRODUCTNAME Writer μπορεί να εισάγει ένα γραφικό πλαίσιο μέσα στο έγγραφο που αντιπροσωπεύει γραμμή υπογραφής στο έγγραφο."
#: addsignatureline.xhp
msgctxt ""
@@ -23623,7 +23623,7 @@ msgctxt ""
"par_id751526436546030\n"
"help.text"
msgid "<image src=\"media/helpimg/sw_signatureline01.png\" id=\"img_id91526436546031\" width=\"311px\" height=\"179px\"> <alt id=\"alt_id351526436546031\">Signature Line Box</alt> </image>"
-msgstr ""
+msgstr "<image src=\"media/helpimg/sw_signatureline01.png\" id=\"img_id91526436546031\" width=\"311px\" height=\"179px\"> <alt id=\"alt_id351526436546031\">Πλαίσιο γραμμής υπογραφής</alt> </image>"
#: addsignatureline.xhp
msgctxt ""
@@ -23631,7 +23631,7 @@ msgctxt ""
"par_id651526423393786\n"
"help.text"
msgid "The signature line displays an horizontal line, a location mark, the name, title and e-mail of signer."
-msgstr ""
+msgstr "Η γραμμή υπογραφής εμφανίζει μια οριζόντια γραμμή, ένα σημάδι θέσης, το όνομα, τον τίτλο και την ηλ. διεύθυνση του υπογράφοντα."
#: addsignatureline.xhp
msgctxt ""
@@ -23639,7 +23639,7 @@ msgctxt ""
"hd_id631526467960460\n"
"help.text"
msgid "Name"
-msgstr ""
+msgstr "Όνομα"
#: addsignatureline.xhp
msgctxt ""
@@ -23647,7 +23647,7 @@ msgctxt ""
"par_id351526467968348\n"
"help.text"
msgid "Insert the name of the signer. The name is displayed in the signature line graphic box."
-msgstr ""
+msgstr "Εισάγετε το όνομα του υπογράφοντα. Το όνομα εμφανίζεται στο γραφικό πλαίσιο γραμμής υπογραφής."
#: addsignatureline.xhp
msgctxt ""
@@ -23655,7 +23655,7 @@ msgctxt ""
"hd_id171526467974440\n"
"help.text"
msgid "Title"
-msgstr ""
+msgstr "Τίτλος"
#: addsignatureline.xhp
msgctxt ""
@@ -23663,7 +23663,7 @@ msgctxt ""
"par_id701526467979209\n"
"help.text"
msgid "Enter the title of the signer. The title is displayed in the signature line graphic box."
-msgstr ""
+msgstr "Εισάγετε τον τίτλο του υπογράφοντα. Ο τίτλος εμφανίζεται στο γραφικό πλαίσιο γραμμής υπογραφής."
#: addsignatureline.xhp
msgctxt ""
@@ -23671,7 +23671,7 @@ msgctxt ""
"hd_id431526467986157\n"
"help.text"
msgid "Email"
-msgstr ""
+msgstr "Ηλ. διεύθυνση"
#: addsignatureline.xhp
msgctxt ""
@@ -23679,7 +23679,7 @@ msgctxt ""
"par_id111526467993387\n"
"help.text"
msgid "Enter the e-mail of the signer. The email is not displayed in the signature line graphic box, and is be used for the digital signature."
-msgstr ""
+msgstr "Εισάγετε την ηλ. διεύθυνση του υπογράφοντα. Η ηλ. διεύθυνση δεν εμφανίζεται στο γραφικό πλαίσιο γραμμής υπογραφής και χρησιμοποιείται για την ψηφιακή υπογραφή."
#: addsignatureline.xhp
msgctxt ""
@@ -23687,7 +23687,7 @@ msgctxt ""
"hd_id451526468019876\n"
"help.text"
msgid "Signer can add comments"
-msgstr ""
+msgstr "Ο υπογράφων μπορεί να προσθέσει σχόλια"
#: addsignatureline.xhp
msgctxt ""
@@ -23695,7 +23695,7 @@ msgctxt ""
"par_id531526562791579\n"
"help.text"
msgid "Enable signer to insert comments in the Sign Signature Line dialog at time of signature."
-msgstr ""
+msgstr "Ενεργοποιήστε την εισαγωγή σχολίων του υπογράφοντος στον σημάδι διαλόγου γραμμής υπογραφής κατά τον χρόνο υπογραφής."
#: addsignatureline.xhp
msgctxt ""
@@ -23703,7 +23703,7 @@ msgctxt ""
"hd_id31526468046686\n"
"help.text"
msgid "Show sign date in signature line"
-msgstr ""
+msgstr "Εμφάνιση ημερομηνίας υπογραφής στη γραμμή υπογραφής"
#: addsignatureline.xhp
msgctxt ""
@@ -23711,7 +23711,7 @@ msgctxt ""
"par_id11526468051934\n"
"help.text"
msgid "Mark this checkbox to display the date of the signature, at the time when the document is digitally signed."
-msgstr ""
+msgstr "Σημειώστε αυτό το πλαίσιο ελέγχου για να εμφανίσετε την ημερομηνία της υπογραφής, τη στιγμή που υπογράφεται ψηφιακά το έγγραφο."
#: addsignatureline.xhp
msgctxt ""
@@ -23719,7 +23719,7 @@ msgctxt ""
"hd_id791526468057743\n"
"help.text"
msgid "Instructions to the signer"
-msgstr ""
+msgstr "Οδηγίες για τον υπογράφοντα"
#: addsignatureline.xhp
msgctxt ""
@@ -23727,7 +23727,7 @@ msgctxt ""
"par_id131526560799876\n"
"help.text"
msgid "Insert instructions for the signer. The instructions appears in the Sign Signature Line dialog box, at the time of signature."
-msgstr ""
+msgstr "Εισάγετε τις οδηγίες για τον υπογράφοντα. Οι οδηγίες εμφανίζονται στο σημάδι πλαισίου διαλόγου γραμμής υπογραφής, τη στιγμή της υπογραφής."
#: format_object.xhp
msgctxt ""
@@ -26359,7 +26359,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Signing the Signature Line"
-msgstr ""
+msgstr "Υπογραφή στη γραμμή υπογραφής"
#: signsignatureline.xhp
msgctxt ""
@@ -26367,7 +26367,7 @@ msgctxt ""
"bm_id651526779220785\n"
"help.text"
msgid "<bookmark_value>digital signature;sign signature line</bookmark_value><bookmark_value>signature line;signing</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>ψηφιακή υπογραφή;υπογραφή γραμμής υπογραφής</bookmark_value><bookmark_value>γραμμή υπογραφής;υπογραφή</bookmark_value>"
#: signsignatureline.xhp
msgctxt ""
@@ -26375,7 +26375,7 @@ msgctxt ""
"hd_id401526575112776\n"
"help.text"
msgid "<variable id=\"signsignatureline01\"><link href=\"text/swriter/01/signsignatureline.xhp\" name=\"Sign Signature Line\">Digitally Signing the Signature Line</link></variable>"
-msgstr ""
+msgstr "<variable id=\"signsignatureline01\"><link href=\"text/swriter/01/signsignatureline.xhp\" name=\"Υπογραφή στη γραμμή υπογραφής\">Ψηφιακή υπογραφή στη γραμμή υπογραφής</link></variable>"
#: signsignatureline.xhp
msgctxt ""
@@ -26383,7 +26383,7 @@ msgctxt ""
"par_id611526575121298\n"
"help.text"
msgid "%PRODUCTNAME Writer lets you sign digitally a signature line."
-msgstr ""
+msgstr "Το %PRODUCTNAME Writer σας επιτρέπει να υπογράψετε ψηφιακά μια γραμμή υπογραφής."
#: signsignatureline.xhp
msgctxt ""
@@ -26391,7 +26391,7 @@ msgctxt ""
"par_id511526575127337\n"
"help.text"
msgid "On signing a signature line, %PRODUCTNAME Writer fills the line with the name of signer, adds the digital certificate issuer information and optionally insert the date of signature."
-msgstr ""
+msgstr "Υπογράφοντας μια γραμμή υπογραφής, το %PRODUCTNAME Writer γεμίζει τη γραμμή με το όνομα του υπογράφοντα, προσθέτει την πληροφορία του εκδότη του ψηφιακού πιστοποιητικού και εισάγει προαιρετικά την ημερομηνία υπογραφής."
#: signsignatureline.xhp
msgctxt ""
@@ -26399,7 +26399,7 @@ msgctxt ""
"par_id291526564031387\n"
"help.text"
msgid "Select the signature line graphic object context menu. Choose <emph>Sign Signature Line</emph>."
-msgstr ""
+msgstr "Επιλέξτε το μενού περιβάλλοντος του γραφικού αντικειμένου της γραμμής υπογραφής. Επιλέξτε <emph>Υπογραφή γραμμής υπογραφής</emph>."
#: signsignatureline.xhp
msgctxt ""
@@ -26407,7 +26407,7 @@ msgctxt ""
"hd_id311526563971364\n"
"help.text"
msgid "Your Name"
-msgstr ""
+msgstr "Το όνομά σας"
#: signsignatureline.xhp
msgctxt ""
@@ -26415,7 +26415,7 @@ msgctxt ""
"par_id511526564217965\n"
"help.text"
msgid "Enter your name as signer of the document. Your name will be inserted above the signature horizontal line."
-msgstr ""
+msgstr "Εισάγετε το όνομά σας ως υπογράφοντα το έγγραφο. Το όνομά σας θα εισαχθεί πάνω από την οριζόντια γραμμή υπογραφής."
#: signsignatureline.xhp
msgctxt ""
@@ -26423,7 +26423,7 @@ msgctxt ""
"hd_id401526563978041\n"
"help.text"
msgid "Certificate"
-msgstr ""
+msgstr "Πιστοποιητικό"
#: signsignatureline.xhp
msgctxt ""
@@ -26431,7 +26431,7 @@ msgctxt ""
"par_id31526564223526\n"
"help.text"
msgid "Click on the Select Certificate button to open the Select Certificate dialog box, where your certificates are listed. Select the certificate suitable for signing the document."
-msgstr ""
+msgstr "Πατήστε στο πλήκτρο επιλογής πιστοποιητικού για να ανοίξετε το πλαίσιο διαλόγου επιλογής πιστοποιητικού, όπου είναι καταχωρημένα τα πιστοποιητικά σας. Επιλέξτε το κατάλληλο πιστοποιητικό για υπογραφή του εγγράφου."
#: signsignatureline.xhp
msgctxt ""
@@ -26439,7 +26439,7 @@ msgctxt ""
"par_id251526576138883\n"
"help.text"
msgid "The information of the certificate issuer is inserted in the bottom of the Signature Line object."
-msgstr ""
+msgstr "Οι πληροφορίες του εκδότη του πιστοποιητικού εισάγονται στο τέλος του αντικειμένου γραμμής υπογραφής."
#: signsignatureline.xhp
msgctxt ""
@@ -26447,7 +26447,7 @@ msgctxt ""
"hd_id301526563985718\n"
"help.text"
msgid "Instructions from the document creator"
-msgstr ""
+msgstr "Οδηγίες από τον δημιουργό του εγγράφου"
#: signsignatureline.xhp
msgctxt ""
@@ -26455,7 +26455,7 @@ msgctxt ""
"par_id271526564228571\n"
"help.text"
msgid "This area displays the instructions entered by the document creator when <link href=\"text/swriter/01/addsignatureline.xhp\" name=\"Adding the Signature Line\">adding the signature line</link>."
-msgstr ""
+msgstr "Αυτή η περιοχή εμφανίζει τις οδηγίες που έβαλε ο δημιουργός του εγγράφου όταν <link href=\"text/swriter/01/addsignatureline.xhp\" name=\"προσθήκη γραμμής υπογραφής\">πρόσθεσε τη γραμμή υπογραφής</link>."
#: signsignatureline.xhp
msgctxt ""
@@ -26463,7 +26463,7 @@ msgctxt ""
"hd_id161526563992082\n"
"help.text"
msgid "Add comments"
-msgstr ""
+msgstr "Προσθήκη σχολίων"
#: signsignatureline.xhp
msgctxt ""
@@ -26471,7 +26471,7 @@ msgctxt ""
"par_id21526564234712\n"
"help.text"
msgid "Enter comments about the signature. The comments are displayed in the <emph>Description</emph> field of the certificate."
-msgstr ""
+msgstr "Εισάγετε σχόλια για την υπογραφή. Τα σχόλια εμφανίζονται στο πεδίο <emph>Περιγραφή</emph> του πιστοποιητικού."
#: signsignatureline.xhp
msgctxt ""
@@ -26479,7 +26479,7 @@ msgctxt ""
"par_id621526576147414\n"
"help.text"
msgid "If enabled when the signature line was created, the date of signature is inserted on the top right of the signature line object."
-msgstr ""
+msgstr "Εάν είναι ενεργό όταν δημιουργήθηκε η γραμμή υπογραφής, εισάγεται η ημερομηνία υπογραφής πάνω δεξιά από το αντικείμενο γραμμής υπογραφής."
#: signsignatureline.xhp
msgctxt ""
@@ -26487,7 +26487,7 @@ msgctxt ""
"par_id21526579319036\n"
"help.text"
msgid "<image src=\"media/helpimg/sw_signatureline02.png\" id=\"img_id551526579319036\" width=\"280px\" height=\"173px\"><alt id=\"alt_id641526579319036\">Signed Signature Line</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/helpimg/sw_signatureline02.png\" id=\"img_id551526579319036\" width=\"280px\" height=\"173px\"><alt id=\"alt_id641526579319036\">Υπογεγραμμένη γραμμή υπογραφή</alt> </image>"
#: title_page.xhp
msgctxt ""
@@ -26791,7 +26791,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Page Watermark"
-msgstr ""
+msgstr "Υδατογράφημα σελίδας"
#: watermark.xhp
msgctxt ""
@@ -26799,7 +26799,7 @@ msgctxt ""
"hd_id781516897374563\n"
"help.text"
msgid "<link href=\"text/swriter/01/watermark.xhp\" name=\"Watermark\">Page Watermark</link>"
-msgstr ""
+msgstr "<link href=\"text/swriter/01/watermark.xhp\" name=\"Watermark\">Υδατογράφημα σελίδας</link>"
#: watermark.xhp
msgctxt ""
@@ -26807,7 +26807,7 @@ msgctxt ""
"par_id121516897374563\n"
"help.text"
msgid "<variable id=\"waterm01\"><ahelp hid=\".\">Insert a watermark text in the current page style background.</ahelp></variable>"
-msgstr ""
+msgstr "<variable id=\"waterm01\"><ahelp hid=\".\">Εισάγει κείμενο υδατογραφήματος στο παρασκήνιο τεχνοτροπίας της τρέχουσας σελίδας.</ahelp></variable>"
#: watermark.xhp
msgctxt ""
@@ -26815,7 +26815,7 @@ msgctxt ""
"bm_id171516897713635\n"
"help.text"
msgid "<bookmark_value>watermark;text documents</bookmark_value> <bookmark_value>watermark;page background</bookmark_value> <bookmark_value>page background;watermark</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>υδατογράφημα;έγγραφα κειμένου</bookmark_value><bookmark_value>υδατογράφημα;παρασκήνιο σελίδας</bookmark_value><bookmark_value>παρασκήνιο σελίδας;υδατογράφημα</bookmark_value>"
#: watermark.xhp
msgctxt ""
@@ -26823,7 +26823,7 @@ msgctxt ""
"par_id761516899094991\n"
"help.text"
msgid "Choose <item type=\"menuitem\">Format - Watermark</item>."
-msgstr ""
+msgstr "Επιλέξτε <item type=\"menuitem\">Μορφή - Υδατογράφημα</item>."
#: watermark.xhp
msgctxt ""
@@ -26831,7 +26831,7 @@ msgctxt ""
"par_id521516905298143\n"
"help.text"
msgid "A watermark is an identifying image or pattern in paper that appears as various shades of brightness when viewed by transmitted light. Watermarks were originally created directly during paper manufacturing to discourage counterfeiting of documents, currency bills, stamps and more."
-msgstr ""
+msgstr "Ένα υδατογράφημα είναι μια εικόνα ή μοτίβο ταυτοποίησης σε χαρτί που εμφανίζεται ως διάφορες σκιές φωτεινότητας όταν προβάλλεται από μεταδιδόμενο φως. Τα υδατογραφήματα δημιουργήθηκαν αρχικά απευθείας κατά την παραγωγή χαρτιού για να αποθαρρύνουν την πλαστογράφηση των εγγράφων, των χαρτονομισμάτων, των σφραγίδων και άλλων."
#: watermark.xhp
msgctxt ""
@@ -26839,7 +26839,7 @@ msgctxt ""
"par_id201516905302881\n"
"help.text"
msgid "Use watermarks in %PRODUCTNAME Writer to simulate a paper watermark on the document pages."
-msgstr ""
+msgstr "Χρησιμοποιήστε τα υδατογραφήματα στο %PRODUCTNAME Writer για να προσομοιώσετε ένα υδατογράφημα χαρτιού στις σελίδες εγγράφων."
#: watermark.xhp
msgctxt ""
@@ -26847,7 +26847,7 @@ msgctxt ""
"par_id731516900297974\n"
"help.text"
msgid "Fill the dialog settings below."
-msgstr ""
+msgstr "Συμπληρώστε τις παρακάτω ρυθμίσεις διαλόγου."
#: watermark.xhp
msgctxt ""
@@ -26855,7 +26855,7 @@ msgctxt ""
"par_id501516905708560\n"
"help.text"
msgid "The values entered applies to the actual page style."
-msgstr ""
+msgstr "Οι εισερχόμενες τιμές εφαρμόζονται στην τρέχουσα τεχνοτροπία σελίδας."
#: watermark.xhp
msgctxt ""
@@ -26863,7 +26863,7 @@ msgctxt ""
"par_id47418\n"
"help.text"
msgid "<image id=\"img_id16673\" src=\"media/screenshots/modules/swriter/ui/watermarkdialog/WatermarkDialog.png\" width=\"11cm\" height=\"8cm\"><alt id=\"alt_id47763\">Watermark dialog</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id16673\" src=\"media/screenshots/modules/swriter/ui/watermarkdialog/WatermarkDialog.png\" width=\"11cm\" height=\"8cm\"><alt id=\"alt_id47763\">Διάλογος υδατογραφήματος</alt></image>"
#: watermark.xhp
msgctxt ""
@@ -26871,7 +26871,7 @@ msgctxt ""
"hd_id341516900303248\n"
"help.text"
msgid "Text"
-msgstr ""
+msgstr "Κείμενο"
#: watermark.xhp
msgctxt ""
@@ -26879,7 +26879,7 @@ msgctxt ""
"par_id181516900309119\n"
"help.text"
msgid "<ahelp hid=\".\">Enter the watermark text to be displayed as image in the page background.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Εισάγετε το κείμενο που θα εμφανίζεται ως εικόνα στο παρασκήνιο της σελίδας.</ahelp>"
#: watermark.xhp
msgctxt ""
@@ -26887,7 +26887,7 @@ msgctxt ""
"hd_id171516900315575\n"
"help.text"
msgid "Font"
-msgstr ""
+msgstr "Γραμματοσειρά"
#: watermark.xhp
msgctxt ""
@@ -26895,7 +26895,7 @@ msgctxt ""
"par_id781516900322735\n"
"help.text"
msgid "<ahelp hid=\".\">Select the font from the list.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Επιλέξτε τη γραμματοσειρά από τον κατάλογο.</ahelp>"
#: watermark.xhp
msgctxt ""
@@ -26903,7 +26903,7 @@ msgctxt ""
"par_id1001516900331585\n"
"help.text"
msgid "You cannot choose font size or font style for the watermark text. The text size will be scaled to fit in one line in the page background."
-msgstr ""
+msgstr "Δεν μπορείτε να επιλέξετε μέγεθος ή τεχνοτροπία γραμματοσειράς για το κείμενο υδατογραφήματος. Το μέγεθος του κειμένου θα κλιμακωθεί ώστε να προσαρμοστεί σε μια γραμμή στο παρασκήνιο σελίδας."
#: watermark.xhp
msgctxt ""
@@ -26911,7 +26911,7 @@ msgctxt ""
"hd_id721516900337255\n"
"help.text"
msgid "Angle"
-msgstr ""
+msgstr "Γωνία"
#: watermark.xhp
msgctxt ""
@@ -26919,7 +26919,7 @@ msgctxt ""
"par_id531516900343270\n"
"help.text"
msgid "<ahelp hid=\".\">Select the slant angle for the watermark. A positive angle displays the watermark from bottom to top. A negative value displays the watermark text from top to bottom.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Επιλέξτε την γωνία κλίσης του υδατογραφήματος. Θετική γωνία εμφανίζει το υδατογράφημα από κάτω προς τα πάνω. Αρνητική τιμή εμφανίζει το κείμενο του υδατογραφήματος από πάνω προς τα κάτω.</ahelp>"
#: watermark.xhp
msgctxt ""
@@ -26927,7 +26927,7 @@ msgctxt ""
"hd_id511516900348606\n"
"help.text"
msgid "Transparency"
-msgstr ""
+msgstr "Διαφάνεια"
#: watermark.xhp
msgctxt ""
@@ -26935,7 +26935,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 ""
+msgstr "<ahelp hid=\".\">Επιλέξτε το επίπεδο διαφάνειας για το υδατογράφημα. Μια τιμή 0% παράγει ένα αδιαφανές υδατογράφημα και νια τιμή 100% είναι πλήρως διαφανής (αόρατη).</ahelp>"
#: watermark.xhp
msgctxt ""
@@ -26943,7 +26943,7 @@ msgctxt ""
"hd_id321516900368799\n"
"help.text"
msgid "Color"
-msgstr ""
+msgstr "Χρώμα"
#: watermark.xhp
msgctxt ""
@@ -26951,7 +26951,7 @@ msgctxt ""
"par_id521516900373461\n"
"help.text"
msgid "<ahelp hid=\".\">Select a color from the drop-down box.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Επιλέξτε ένα χρώμα από το πτυσσόμενο πλαίσιο.</ahelp>"
#: watermark.xhp
msgctxt ""
@@ -26959,7 +26959,7 @@ msgctxt ""
"hd_id771516906476223\n"
"help.text"
msgid "To change a watermark contents or setting."
-msgstr ""
+msgstr "Για να αλλάξετε τα περιεχόμενα ή τη ρύθμιση του υδατογραφήματος."
#: watermark.xhp
msgctxt ""
@@ -26967,7 +26967,7 @@ msgctxt ""
"par_id831516906589936\n"
"help.text"
msgid "If the watermark in use is a text inserted by the <item type=\"menuitem\">Format - Watermark</item> menu command or by the <link href=\"text/swriter/classificationbar.xhp\" name=\"classification bar\">document classification settings</link>, you can edit the contents and settings on opening the watermark dialog."
-msgstr ""
+msgstr "Εάν το χρησιμοποιούμενο υδατογράφημα είναι εισηγμένο κείμενο από την εντολή μενού <item type=\"menuitem\">Μορφή - Υδατογράφημα</item> ή από τις <link href=\"text/swriter/classificationbar.xhp\" name=\"γραμμή ταξινόμησης\">ρυθμίσεις ταξινόμησης εγγράφου</link>, μπορείτε να επεξεργαστείτε τα περιεχόμενα και τις ρυθμίσεις στο άνοιγμα του διαλόγου υδατογραφήματος."
#: watermark.xhp
msgctxt ""
@@ -26975,7 +26975,7 @@ msgctxt ""
"par_id611516900724619\n"
"help.text"
msgid "<link href=\"text/swriter/classificationbar.xhp#bm_id030820161856432825\" name=\"classification watermark\">Document classification watermarks</link>"
-msgstr ""
+msgstr "<link href=\"text/swriter/classificationbar.xhp#bm_id030820161856432825\" name=\"υδατογράφημα ταξινόμησης\">Υδατογραφήματα ταξινόμησης εγγράφου</link>"
#: watermark.xhp
msgctxt ""
@@ -26983,4 +26983,4 @@ msgctxt ""
"par_id891516901777257\n"
"help.text"
msgid "<link href=\"text/swriter/guide/pagebackground.xhp#bm_id8431653\" name=\"page background\">Page background</link>"
-msgstr ""
+msgstr "<link href=\"text/swriter/guide/pagebackground.xhp#bm_id8431653\" name=\"παρασκήνιο σελίδας\">Παρασκήνιο σελίδας</link>"
diff --git a/source/el/helpcontent2/source/text/swriter/guide.po b/source/el/helpcontent2/source/text/swriter/guide.po
index 853576e7f92..9afc8282a06 100644
--- a/source/el/helpcontent2/source/text/swriter/guide.po
+++ b/source/el/helpcontent2/source/text/swriter/guide.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2018-05-08 15:11+0200\n"
-"PO-Revision-Date: 2018-01-01 15:59+0000\n"
+"PO-Revision-Date: 2018-05-30 05:58+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: team@lists.gnome.gr\n"
"Language: el\n"
@@ -13,9 +13,9 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Pootle 2.8\n"
"X-Project-Style: openoffice\n"
-"X-POOTLE-MTIME: 1514822346.000000\n"
+"X-POOTLE-MTIME: 1527659897.000000\n"
#: anchor_object.xhp
msgctxt ""
@@ -367,7 +367,7 @@ msgctxt ""
"par_id3152867\n"
"help.text"
msgid "Choose <emph>Tools - AutoCorrect</emph>, and ensure that <emph>While Typing</emph> is selected."
-msgstr ""
+msgstr "Επιλέξτε <emph>Μορφή - Αυτόματη διόρθωση</emph> και βεβαιωθείτε ότι είναι επιλεγμένο το <emph>Κατά την πληκτρολόγηση</emph>."
#: auto_numbering.xhp
msgctxt ""
@@ -471,7 +471,7 @@ msgctxt ""
"par_idN10846\n"
"help.text"
msgid "To turn off most AutoCorrect features, remove the check mark from the menu <emph>Tools - AutoCorrect - While Typing</emph>."
-msgstr ""
+msgstr "Για να απενεργοποιήσετε τις περισσότερες από τις λειτουργίες της αυτόματης διόρθωσης, αποεπιλέξτε το σημάδι ελέγχου από το μενού <emph>Εργαλεία - Αυτόματη διόρθωση - Κατά την πληκτρολόγηση</emph>."
#: auto_off.xhp
msgctxt ""
@@ -2255,7 +2255,7 @@ msgctxt ""
"par_id3154243\n"
"help.text"
msgid "Choose <emph>Table - Insert Table</emph>, and insert a table with one column and more than one row into a text document."
-msgstr ""
+msgstr "Επιλέξτε <emph>Πίνακας - Εισαγωγή πίνακα</emph> και εισάγετε έναν πίνακα με μια στήλη και περισσότερες από μία γραμμές σε έγγραφο κειμένου."
#: calculate_intable.xhp
msgctxt ""
@@ -3791,7 +3791,7 @@ msgctxt ""
"par_id3147812\n"
"help.text"
msgid "Opens a dialog to insert the object corresponding to the placeholder, except for text placeholders. For text placeholders, click on the placeholder and type over it."
-msgstr ""
+msgstr "Ανοίγει ένας διάλογος εισαγωγής αντικειμένου αντίστοιχος με το δεσμευτικό θέσης, εκτός από τα δεσμευτικά θέσης κειμένου. Για δεσμευτικά θέσης κειμένου, πατήστε στο δεσμευτικό θέσης και πληκτρολογήστε από πάνω του."
#: fields.xhp
msgctxt ""
@@ -3871,7 +3871,7 @@ msgctxt ""
"par_id271519643331154\n"
"help.text"
msgid "Placeholders are not updated."
-msgstr ""
+msgstr "Τα δεσμευτικά θέσης δεν ενημερώνονται."
#: fields_date.xhp
msgctxt ""
@@ -9471,7 +9471,7 @@ msgctxt ""
"par_id2212591\n"
"help.text"
msgid "<link href=\"https://wiki.documentfoundation.org/Documentation/How_Tos/Setting_up_a_Style_for_Numbering_Lines_in_Code_Listings\" name=\"wiki.documentfoundation.org Setting up a Style for Numbering Lines in Code Listings\">Wiki page about numbering paragraphs by styles</link>"
-msgstr ""
+msgstr "<link href=\"https://wiki.documentfoundation.org/Documentation/How_Tos/Setting_up_a_Style_for_Numbering_Lines_in_Code_Listings\" name=\"wiki.documentfoundation.org Setting up a Style for Numbering Lines in Code Listings\">Σελίδα βίκι για την αρίθμηση παραγράφων κατά τεχνοτροπία</link>"
#: numbering_paras.xhp
msgctxt ""
@@ -9599,7 +9599,7 @@ msgctxt ""
"par_id6943571\n"
"help.text"
msgid "<link href=\"https://wiki.documentfoundation.org/Documentation/How_Tos/Setting_up_a_Style_for_Numbering_Lines_in_Code_Listings\" name=\"wiki.documentfoundation.org Setting up a Style for Numbering Lines in Code Listings\">Wiki page about numbering paragraphs by styles</link>"
-msgstr ""
+msgstr "<link href=\"https://wiki.documentfoundation.org/Documentation/How_Tos/Setting_up_a_Style_for_Numbering_Lines_in_Code_Listings\" name=\"wiki.documentfoundation.org Setting up a Style for Numbering Lines in Code Listings\">Σελίδα βίκι για την αρίθμηση παραγράφων κατά τεχνοτροπία</link>"
#: page_break.xhp
msgctxt ""
@@ -10239,7 +10239,7 @@ msgctxt ""
"par_id399182\n"
"help.text"
msgid "You can now for example insert a footer for the \"Default\" page style only, or insert footers in both page styles, but with differently formatted page number fields."
-msgstr ""
+msgstr "Μπορείτε τώρα, παραδείγματος χάρη, να εισάγετε ένα υποσέλιδο μόνο για την τεχνοτροπία σελίδας \"Προεπιλογή\", ή να εισάγετε υποσέλιδα και στις δύο τεχνοτροπίες σελίδας, αλλά με διαφορετικά μορφοποιημένα πεδία αριθμών σελίδας."
#: pagenumbers.xhp
msgctxt ""
@@ -12039,7 +12039,7 @@ msgctxt ""
"par_id3153388\n"
"help.text"
msgid "Choose <emph>Tools - AutoCorrect - Apply</emph>."
-msgstr ""
+msgstr "Επιλέξτε <emph>Εργαλεία - Αυτόματη διόρθωση - Εφαρμογή</emph>."
#: reset_format.xhp
msgctxt ""
@@ -13887,7 +13887,7 @@ msgctxt ""
"par_id3149609\n"
"help.text"
msgid "Choose <emph>Table - Insert Table</emph>."
-msgstr ""
+msgstr "Επιλέξτε <emph>Πίνακας - Εισαγωγή πίνακα</emph>."
#: table_insert.xhp
msgctxt ""
@@ -14167,7 +14167,7 @@ msgctxt ""
"par_id3145098\n"
"help.text"
msgid "Choose <emph>Table - Insert Table</emph>."
-msgstr ""
+msgstr "Επιλέξτε <emph>Πίνακας - Εισαγωγή πίνακα</emph>."
#: table_repeat_multiple_headers.xhp
msgctxt ""
@@ -14175,7 +14175,7 @@ msgctxt ""
"par_id3156240\n"
"help.text"
msgid "Select the <item type=\"menuitem\">Heading</item> and the <item type=\"menuitem\">Repeat heading rows on new pages</item> check boxes."
-msgstr ""
+msgstr "Επιλέξτε τα πλαίσια ελέγχου <item type=\"menuitem\">Επικεφαλίδα</item> και <item type=\"menuitem\">Επανάληψη γραμμών επικεφαλίδας σε νέες σελίδες</item>."
#: table_repeat_multiple_headers.xhp
msgctxt ""
diff --git a/source/el/officecfg/registry/data/org/openoffice/Office/UI.po b/source/el/officecfg/registry/data/org/openoffice/Office/UI.po
index 74ca86d0041..9973ece343f 100644
--- a/source/el/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/el/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-22 13:17+0200\n"
-"PO-Revision-Date: 2018-05-24 05:52+0000\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
+"PO-Revision-Date: 2018-06-05 05:16+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: team@lists.gnome.gr\n"
"Language: el\n"
@@ -15,7 +15,7 @@ msgstr ""
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
"X-Project-Style: openoffice\n"
-"X-POOTLE-MTIME: 1527141172.000000\n"
+"X-POOTLE-MTIME: 1528175778.000000\n"
#: BaseWindowState.xcu
msgctxt ""
@@ -26521,8 +26521,8 @@ msgctxt ""
"..WriterCommands.UserInterface.Commands..uno:TextAttributes\n"
"Label\n"
"value.text"
-msgid "Text Attributes"
-msgstr "Ιδιότητες κειμένου"
+msgid "Text Attributes..."
+msgstr "Γνωρίσματα κειμένου..."
#: WriterCommands.xcu
msgctxt ""
diff --git a/source/el/readlicense_oo/docs.po b/source/el/readlicense_oo/docs.po
index 789867a54b6..4bfa41e03ae 100644
--- a/source/el/readlicense_oo/docs.po
+++ b/source/el/readlicense_oo/docs.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: 2018-04-17 15:54+0200\n"
-"PO-Revision-Date: 2018-04-20 11:06+0000\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
+"PO-Revision-Date: 2018-06-05 05:16+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: team@lists.gnome.gr\n"
"Language: el\n"
@@ -15,7 +15,7 @@ msgstr ""
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
"X-Project-Style: openoffice\n"
-"X-POOTLE-MTIME: 1524222369.000000\n"
+"X-POOTLE-MTIME: 1528175795.000000\n"
#: readme.xrm
msgctxt ""
@@ -118,8 +118,8 @@ msgctxt ""
"readme.xrm\n"
"macxiOSX\n"
"readmeitem.text"
-msgid "MacOSX 10.8 (Mountain Lion) or higher"
-msgstr "MacOSX 10.8 (Mountain Lion) ή μεταγενέστερο"
+msgid "MacOSX 10.9 (Mavericks) or higher"
+msgstr "MacOSX 10.9 (Mavericks) ή νεότερο"
#: readme.xrm
msgctxt ""
diff --git a/source/el/sc/messages.po b/source/el/sc/messages.po
index 516484793e7..27c913a1def 100644
--- a/source/el/sc/messages.po
+++ b/source/el/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: 2018-05-22 13:16+0200\n"
-"PO-Revision-Date: 2018-05-24 05:53+0000\n"
+"POT-Creation-Date: 2018-06-12 14:40+0200\n"
+"PO-Revision-Date: 2018-06-05 05:17+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: el\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1527141237.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1528175829.000000\n"
#: sc/inc/compiler.hrc:27
msgctxt "RID_FUNCTION_CATEGORIES"
@@ -1870,16 +1870,21 @@ msgid "Nested arrays are not supported."
msgstr "Δεν υποστηρίζονται ένθετοι πίνακες."
#: sc/inc/globstr.hrc:390
+msgctxt "STR_ERR_LONG_BAD_ARRAY_CONTENT"
+msgid "Unsupported inline array content."
+msgstr ""
+
+#: sc/inc/globstr.hrc:391
msgctxt "STR_UNDO_TEXTTOCOLUMNS"
msgid "Text to Columns"
msgstr "Κείμενο σε στήλες"
-#: sc/inc/globstr.hrc:391
+#: sc/inc/globstr.hrc:392
msgctxt "STR_DOC_UPDATED"
msgid "Your spreadsheet has been updated with changes saved by other users."
msgstr "Το υπολογιστικό σας φύλλο έχει ενημερωθεί με αλλαγές που έχουν αποθηκευτεί από άλλους χρήστες."
-#: sc/inc/globstr.hrc:392
+#: sc/inc/globstr.hrc:393
msgctxt "STR_DOC_WILLBESAVED"
msgid ""
"The spreadsheet must be saved now to activate sharing mode.\n"
@@ -1890,7 +1895,7 @@ msgstr ""
"\n"
"Θέλετε να συνεχίσετε;"
-#: sc/inc/globstr.hrc:393
+#: sc/inc/globstr.hrc:394
msgctxt "STR_DOC_WILLNOTBESAVED"
msgid ""
"Already resolved merge conflicts will be lost and your changes to the shared spreadsheet will not be saved.\n"
@@ -1901,7 +1906,7 @@ msgstr ""
"\n"
"Θέλετε να συνεχίσετε;"
-#: sc/inc/globstr.hrc:394
+#: sc/inc/globstr.hrc:395
msgctxt "STR_DOC_DISABLESHARED"
msgid ""
"Disabling shared mode of a spreadsheet hinders all other users of the shared spreadsheet to merge back their work.\n"
@@ -1912,7 +1917,7 @@ msgstr ""
"\n"
"Θέλετε να συνεχίσετε;"
-#: sc/inc/globstr.hrc:395
+#: sc/inc/globstr.hrc:396
msgctxt "STR_DOC_NOLONGERSHARED"
msgid ""
"This spreadsheet is no longer in shared mode.\n"
@@ -1923,7 +1928,7 @@ msgstr ""
"\n"
"Αποθηκεύστε το υπολογιστικό φύλλο σας σε ένα ξεχωριστό αρχείο και συγχωνεύστε τις αλλαγές σας στο κοινόχρηστο υπολογιστικό φύλλο χειροκίνητα."
-#: sc/inc/globstr.hrc:396
+#: sc/inc/globstr.hrc:397
msgctxt "STR_FILE_LOCKED_TRY_LATER"
msgid ""
"The shared spreadsheet file is locked due to a merge in progress by user: '%1'\n"
@@ -1934,7 +1939,7 @@ msgstr ""
"\n"
"Η κοινή χρήση ενός κλειδωμένου αρχείου δεν μπορεί να απενεργοποιηθεί. Προσπαθήστε ξανά αργότερα."
-#: sc/inc/globstr.hrc:397
+#: sc/inc/globstr.hrc:398
msgctxt "STR_FILE_LOCKED_SAVE_LATER"
msgid ""
"The shared spreadsheet file is locked due to a merge in progress by user: '%1'\n"
@@ -1945,147 +1950,147 @@ msgstr ""
"\n"
"Προσπαθήστε πάλι αργότερα να αποθηκεύσετε τις αλλαγές σας."
-#: sc/inc/globstr.hrc:398
+#: sc/inc/globstr.hrc:399
msgctxt "STR_UNKNOWN_USER"
msgid "Unknown User"
msgstr "Άγνωστος χρήστης"
-#: sc/inc/globstr.hrc:399
+#: sc/inc/globstr.hrc:400
msgctxt "STR_SHAPE_AUTOSHAPE"
msgid "AutoShape"
msgstr "Αυτόματο σχήμα"
-#: sc/inc/globstr.hrc:400
+#: sc/inc/globstr.hrc:401
msgctxt "STR_SHAPE_RECTANGLE"
msgid "Rectangle"
msgstr "Ορθογώνιο"
-#: sc/inc/globstr.hrc:401
+#: sc/inc/globstr.hrc:402
msgctxt "STR_SHAPE_LINE"
msgid "Line"
msgstr "Γραμμή"
-#: sc/inc/globstr.hrc:402
+#: sc/inc/globstr.hrc:403
msgctxt "STR_SHAPE_OVAL"
msgid "Oval"
msgstr "Ωοειδές"
-#: sc/inc/globstr.hrc:403
+#: sc/inc/globstr.hrc:404
msgctxt "STR_FORM_BUTTON"
msgid "Button"
msgstr "Κουμπί"
-#: sc/inc/globstr.hrc:404
+#: sc/inc/globstr.hrc:405
msgctxt "STR_FORM_CHECKBOX"
msgid "Check Box"
msgstr "Πλαίσιο ελέγχου"
-#: sc/inc/globstr.hrc:405
+#: sc/inc/globstr.hrc:406
msgctxt "STR_FORM_OPTIONBUTTON"
msgid "Option Button"
msgstr "Κουμπί επιλογών"
-#: sc/inc/globstr.hrc:406
+#: sc/inc/globstr.hrc:407
msgctxt "STR_FORM_LABEL"
msgid "Label"
msgstr "Ετικέτα"
-#: sc/inc/globstr.hrc:407
+#: sc/inc/globstr.hrc:408
msgctxt "STR_FORM_LISTBOX"
msgid "List Box"
msgstr "Πλαίσιο καταλόγου"
-#: sc/inc/globstr.hrc:408
+#: sc/inc/globstr.hrc:409
msgctxt "STR_FORM_GROUPBOX"
msgid "Group Box"
msgstr "Πλαίσιο ομάδας"
-#: sc/inc/globstr.hrc:409
+#: sc/inc/globstr.hrc:410
msgctxt "STR_FORM_DROPDOWN"
msgid "Drop Down"
msgstr "Πτυσσόμενος"
-#: sc/inc/globstr.hrc:410
+#: sc/inc/globstr.hrc:411
msgctxt "STR_FORM_SPINNER"
msgid "Spinner"
msgstr "Μετρητής"
-#: sc/inc/globstr.hrc:411
+#: sc/inc/globstr.hrc:412
msgctxt "STR_FORM_SCROLLBAR"
msgid "Scroll Bar"
msgstr "Γραμμή κύλισης"
-#: sc/inc/globstr.hrc:412
+#: sc/inc/globstr.hrc:413
msgctxt "STR_STYLE_FAMILY_CELL"
msgid "Cell Styles"
msgstr "Τεχνοτροπίες κελιού"
-#: sc/inc/globstr.hrc:413
+#: sc/inc/globstr.hrc:414
msgctxt "STR_STYLE_FAMILY_PAGE"
msgid "Page Styles"
msgstr "Τεχνοτροπίες σελίδας"
-#: sc/inc/globstr.hrc:414
+#: sc/inc/globstr.hrc:415
msgctxt "STR_ERR_DATAPILOTSOURCE"
msgid "Pivot table source data is invalid."
msgstr "Τα πηγαία δεδομένα του συγκεντρωτικού πίνακα είναι άκυρα."
-#: sc/inc/globstr.hrc:415
+#: sc/inc/globstr.hrc:416
msgctxt "STR_OPTIONS_WARN_SEPARATORS"
msgid "Because the current formula separator settings conflict with the locale, the formula separators have been reset to their default values."
msgstr "Λόγω της σύγκρουσης των ρυθμίσεων τρέχοντος διαχωριστικού τύπου με τον τοπικό, τα διαχωριστικά τύπου επανήλθαν στις προεπιλεγμένες τιμές τους."
-#: sc/inc/globstr.hrc:416
+#: sc/inc/globstr.hrc:417
msgctxt "STR_UNDO_INSERT_CURRENT_DATE"
msgid "Insert Current Date"
msgstr "Εισαγωγή τρέχουσας ημερομηνίας"
-#: sc/inc/globstr.hrc:417
+#: sc/inc/globstr.hrc:418
msgctxt "STR_UNDO_INSERT_CURRENT_TIME"
msgid "Insert Current Time"
msgstr "Εισαγωγή τρέχουσας ώρας"
-#: sc/inc/globstr.hrc:418
+#: sc/inc/globstr.hrc:419
msgctxt "STR_MANAGE_NAMES"
msgid "Manage Names..."
msgstr "Διαχείριση ονομάτων..."
-#: sc/inc/globstr.hrc:419
+#: sc/inc/globstr.hrc:420
msgctxt "STR_HEADER_NAME"
msgid "Name"
msgstr "Όνομα"
-#: sc/inc/globstr.hrc:420
+#: sc/inc/globstr.hrc:421
msgctxt "STR_HEADER_RANGE_OR_EXPR"
msgid "Range or formula expression"
msgstr "Περιοχή ή παράσταση τύπου"
-#: sc/inc/globstr.hrc:421
+#: sc/inc/globstr.hrc:422
msgctxt "STR_HEADER_SCOPE"
msgid "Scope"
msgstr "Εμβέλεια"
-#: sc/inc/globstr.hrc:422
+#: sc/inc/globstr.hrc:423
msgctxt "STR_MULTI_SELECT"
msgid "(multiple)"
msgstr "(πολλαπλό)"
-#: sc/inc/globstr.hrc:423
+#: sc/inc/globstr.hrc:424
msgctxt "STR_GLOBAL_SCOPE"
msgid "Document (Global)"
msgstr "Έγγραφο (γενικό)"
-#: sc/inc/globstr.hrc:424
+#: sc/inc/globstr.hrc:425
msgctxt "STR_ERR_NAME_EXISTS"
msgid "Invalid name. Already in use for the selected scope."
msgstr "Άκυρο όνομα. Ήδη σε χρήση για την επιλεγμένη εμβέλεια."
-#: sc/inc/globstr.hrc:425
+#: sc/inc/globstr.hrc:426
msgctxt "STR_ERR_NAME_INVALID"
msgid "Invalid name. Only use letters, numbers and underscore."
msgstr "Άκυρο όνομα. Χρήση μόνο γραμμάτων, αριθμών και υπογραμμίσεων."
-#: sc/inc/globstr.hrc:426
+#: sc/inc/globstr.hrc:427
msgctxt "STR_UNSAVED_EXT_REF"
msgid ""
"This Document contains external references to unsaved documents.\n"
@@ -2096,217 +2101,217 @@ msgstr ""
"\n"
"Θέλετε να συνεχίσετε;"
-#: sc/inc/globstr.hrc:427
+#: sc/inc/globstr.hrc:428
msgctxt "STR_CLOSE_WITH_UNSAVED_REFS"
msgid "This Document is referenced by another document and not yet saved. Closing it without saving will result in data loss."
msgstr "Αυτό το έγγραφο αναφέρεται από ένα άλλο έγγραφο και δεν έχει ακόμα αποθηκευτεί. Κλείνοντας το χωρίς αποθήκευση θα καταλήξει σε απώλεια δεδομένων."
-#: sc/inc/globstr.hrc:428
+#: sc/inc/globstr.hrc:429
msgctxt "STR_HEADER_RANGE"
msgid "Range"
msgstr "Περιοχή"
-#: sc/inc/globstr.hrc:429
+#: sc/inc/globstr.hrc:430
msgctxt "STR_HEADER_COND"
msgid "First Condition"
msgstr "Πρώτη συνθήκη"
-#: sc/inc/globstr.hrc:430
+#: sc/inc/globstr.hrc:431
msgctxt "STR_COND_CONDITION"
msgid "Cell value is"
msgstr "Η τιμή του κελιού είναι"
-#: sc/inc/globstr.hrc:431
+#: sc/inc/globstr.hrc:432
msgctxt "STR_COND_COLORSCALE"
msgid "ColorScale"
msgstr "Κλίμακα χρώματος"
-#: sc/inc/globstr.hrc:432
+#: sc/inc/globstr.hrc:433
msgctxt "STR_COND_DATABAR"
msgid "DataBar"
msgstr "Γραμμή δεδομένων"
-#: sc/inc/globstr.hrc:433
+#: sc/inc/globstr.hrc:434
msgctxt "STR_COND_ICONSET"
msgid "IconSet"
msgstr "Σύνολο εικονιδίων"
-#: sc/inc/globstr.hrc:434
+#: sc/inc/globstr.hrc:435
msgctxt "STR_COND_BETWEEN"
msgid "between"
msgstr "μεταξύ"
-#: sc/inc/globstr.hrc:435
+#: sc/inc/globstr.hrc:436
msgctxt "STR_COND_NOTBETWEEN"
msgid "not between"
msgstr "όχι μεταξύ"
-#: sc/inc/globstr.hrc:436
+#: sc/inc/globstr.hrc:437
msgctxt "STR_COND_UNIQUE"
msgid "unique"
msgstr "μοναδικό"
-#: sc/inc/globstr.hrc:437
+#: sc/inc/globstr.hrc:438
msgctxt "STR_COND_DUPLICATE"
msgid "duplicate"
msgstr "διπλότυπο"
-#: sc/inc/globstr.hrc:438
+#: sc/inc/globstr.hrc:439
msgctxt "STR_COND_FORMULA"
msgid "Formula is"
msgstr "Ο τύπος είναι"
-#: sc/inc/globstr.hrc:439
+#: sc/inc/globstr.hrc:440
msgctxt "STR_COND_TOP10"
msgid "Top Elements"
msgstr "Κορυφαία στοιχεία"
-#: sc/inc/globstr.hrc:440
+#: sc/inc/globstr.hrc:441
msgctxt "STR_COND_BOTTOM10"
msgid "Bottom Elements"
msgstr "Κάτω στοιχεία"
-#: sc/inc/globstr.hrc:441
+#: sc/inc/globstr.hrc:442
msgctxt "STR_COND_TOP_PERCENT"
msgid "Top Percent"
msgstr "Κορυφαίο ποσοστό"
-#: sc/inc/globstr.hrc:442
+#: sc/inc/globstr.hrc:443
msgctxt "STR_COND_DATE"
msgid "Date is"
msgstr "Η ημερομηνία είναι"
-#: sc/inc/globstr.hrc:443
+#: sc/inc/globstr.hrc:444
msgctxt "STR_COND_BOTTOM_PERCENT"
msgid "Bottom Percent"
msgstr "Κάτω ποσοστό"
-#: sc/inc/globstr.hrc:444
+#: sc/inc/globstr.hrc:445
msgctxt "STR_COND_ABOVE_AVERAGE"
msgid "Above Average"
msgstr "Πάνω από το μέσο όρο"
-#: sc/inc/globstr.hrc:445
+#: sc/inc/globstr.hrc:446
msgctxt "STR_COND_BELOW_AVERAGE"
msgid "Below Average"
msgstr "Κάτω από το μέσο όρο"
-#: sc/inc/globstr.hrc:446
+#: sc/inc/globstr.hrc:447
msgctxt "STR_COND_ABOVE_EQUAL_AVERAGE"
msgid "Above or equal Average"
msgstr "Μεγαλύτερο ή ίσο με τον μέσο όρο"
-#: sc/inc/globstr.hrc:447
+#: sc/inc/globstr.hrc:448
msgctxt "STR_COND_BELOW_EQUAL_AVERAGE"
msgid "Below or equal Average"
msgstr "Μικρότερο ή ίσο με τον μέσο όρο"
-#: sc/inc/globstr.hrc:448
+#: sc/inc/globstr.hrc:449
msgctxt "STR_COND_ERROR"
msgid "an Error code"
msgstr "κωδικός σφάλματος"
-#: sc/inc/globstr.hrc:449
+#: sc/inc/globstr.hrc:450
msgctxt "STR_COND_NOERROR"
msgid "not an Error code"
msgstr "δεν είναι κωδικός σφάλματος"
-#: sc/inc/globstr.hrc:450
+#: sc/inc/globstr.hrc:451
msgctxt "STR_COND_BEGINS_WITH"
msgid "Begins with"
msgstr "Αρχίζει με"
-#: sc/inc/globstr.hrc:451
+#: sc/inc/globstr.hrc:452
msgctxt "STR_COND_ENDS_WITH"
msgid "Ends with"
msgstr "Τελειώνει σε"
-#: sc/inc/globstr.hrc:452
+#: sc/inc/globstr.hrc:453
msgctxt "STR_COND_CONTAINS"
msgid "Contains"
msgstr "Περιέχει"
-#: sc/inc/globstr.hrc:453
+#: sc/inc/globstr.hrc:454
msgctxt "STR_COND_NOT_CONTAINS"
msgid "Not Contains"
msgstr "Δεν περιέχει"
-#: sc/inc/globstr.hrc:454
+#: sc/inc/globstr.hrc:455
msgctxt "STR_COND_TODAY"
msgid "today"
msgstr "σήμερα"
-#: sc/inc/globstr.hrc:455
+#: sc/inc/globstr.hrc:456
msgctxt "STR_COND_YESTERDAY"
msgid "yesterday"
msgstr "χτες"
-#: sc/inc/globstr.hrc:456
+#: sc/inc/globstr.hrc:457
msgctxt "STR_COND_TOMORROW"
msgid "tomorrow"
msgstr "αύριο"
-#: sc/inc/globstr.hrc:457
+#: sc/inc/globstr.hrc:458
msgctxt "STR_COND_LAST7DAYS"
msgid "in the last 7 days"
msgstr "τις τελευταίες 7 ημέρες"
-#: sc/inc/globstr.hrc:458
+#: sc/inc/globstr.hrc:459
msgctxt "STR_COND_THISWEEK"
msgid "this week"
msgstr "αυτήν τη βδομάδα"
-#: sc/inc/globstr.hrc:459
+#: sc/inc/globstr.hrc:460
msgctxt "STR_COND_LASTWEEK"
msgid "last week"
msgstr "την τελευταία βδομάδα"
-#: sc/inc/globstr.hrc:460
+#: sc/inc/globstr.hrc:461
msgctxt "STR_COND_NEXTWEEK"
msgid "next week"
msgstr "επόμενη βδομάδα"
-#: sc/inc/globstr.hrc:461
+#: sc/inc/globstr.hrc:462
msgctxt "STR_COND_THISMONTH"
msgid "this month"
msgstr "αυτόν τον μήνα"
-#: sc/inc/globstr.hrc:462
+#: sc/inc/globstr.hrc:463
msgctxt "STR_COND_LASTMONTH"
msgid "last month"
msgstr "τον τελευταίο μήνα"
-#: sc/inc/globstr.hrc:463
+#: sc/inc/globstr.hrc:464
msgctxt "STR_COND_NEXTMONTH"
msgid "next month"
msgstr "τον επόμενο μήνα"
-#: sc/inc/globstr.hrc:464
+#: sc/inc/globstr.hrc:465
msgctxt "STR_COND_THISYEAR"
msgid "this year"
msgstr "φέτος"
-#: sc/inc/globstr.hrc:465
+#: sc/inc/globstr.hrc:466
msgctxt "STR_COND_LASTYEAR"
msgid "last year"
msgstr "πέρσι"
-#: sc/inc/globstr.hrc:466
+#: sc/inc/globstr.hrc:467
msgctxt "STR_COND_NEXTYEAR"
msgid "next year"
msgstr "τον επόμενο χρόνο"
-#: sc/inc/globstr.hrc:467
+#: sc/inc/globstr.hrc:468
msgctxt "STR_COND_AND"
msgid "and"
msgstr "και"
-#: sc/inc/globstr.hrc:468
+#: sc/inc/globstr.hrc:469
msgctxt "STR_ERR_CONDFORMAT_PROTECTED"
msgid "Conditional Formats can not be created, deleted or changed in protected sheets."
msgstr "Μορφοποιήσεις υπό όρους δεν μπορούν να δημιουργηθούν, να διαγραφούν ή να αλλαχθούν σε προστατευμένα φύλλα."
-#: sc/inc/globstr.hrc:469
+#: sc/inc/globstr.hrc:470
msgctxt "STR_EDIT_EXISTING_COND_FORMATS"
msgid ""
"The selected cell already contains conditional formatting. You can either edit the existing conditional format or you define a new overlapping conditional format.\n"
@@ -2317,7 +2322,7 @@ msgstr ""
"\n"
"Θέλετε να επεξεργαστείτε την υπάρχουσα μορφοποίηση υπό όρους;"
-#: sc/inc/globstr.hrc:470
+#: sc/inc/globstr.hrc:471
msgctxt "STR_QUERY_FORMULA_RECALC_ONLOAD_ODS"
msgid ""
"This document was last saved by an application other than %PRODUCTNAME. Some formula cells may produce different results when recalculated.\n"
@@ -2328,7 +2333,7 @@ msgstr ""
"\n"
"Θέλετε να ξαναϋπολογίσετε όλα τα κελιά τύπων σε αυτό το έγγραφο τώρα;"
-#: sc/inc/globstr.hrc:471
+#: sc/inc/globstr.hrc:472
msgctxt "STR_QUERY_FORMULA_RECALC_ONLOAD_XLS"
msgid ""
"This document was last saved by Excel. Some formula cells may produce different results when recalculated.\n"
@@ -2339,77 +2344,77 @@ msgstr ""
"\n"
"Θέλετε να επαναϋπολογίσετε όλα τα κελιά τύπων τώρα;"
-#: sc/inc/globstr.hrc:472
+#: sc/inc/globstr.hrc:473
msgctxt "STR_NO_INSERT_DELETE_OVER_PIVOT_TABLE"
msgid "You cannot insert or delete cells when the affected range intersects with pivot table."
msgstr "Δεν μπορείτε να εισάγετε ή να διαγράψετε κελιά όταν η επηρεαζόμενη περιοχή τέμνεται με τον συγκεντρωτικό πίνακα."
-#: sc/inc/globstr.hrc:473
+#: sc/inc/globstr.hrc:474
msgctxt "STR_DPFIELD_GROUP_BY_SECONDS"
msgid "Seconds"
msgstr "Δευτερόλεπτα"
-#: sc/inc/globstr.hrc:474
+#: sc/inc/globstr.hrc:475
msgctxt "STR_DPFIELD_GROUP_BY_MINUTES"
msgid "Minutes"
msgstr "Λεπτά"
-#: sc/inc/globstr.hrc:475
+#: sc/inc/globstr.hrc:476
msgctxt "STR_DPFIELD_GROUP_BY_HOURS"
msgid "Hours"
msgstr "Ώρες"
-#: sc/inc/globstr.hrc:476
+#: sc/inc/globstr.hrc:477
msgctxt "STR_DPFIELD_GROUP_BY_DAYS"
msgid "Days"
msgstr "Ημέρες"
-#: sc/inc/globstr.hrc:477
+#: sc/inc/globstr.hrc:478
msgctxt "STR_DPFIELD_GROUP_BY_MONTHS"
msgid "Months"
msgstr "Μήνες"
-#: sc/inc/globstr.hrc:478
+#: sc/inc/globstr.hrc:479
msgctxt "STR_DPFIELD_GROUP_BY_QUARTERS"
msgid "Quarters"
msgstr "Τρίμηνα"
-#: sc/inc/globstr.hrc:479
+#: sc/inc/globstr.hrc:480
msgctxt "STR_DPFIELD_GROUP_BY_YEARS"
msgid "Years"
msgstr "Έτη"
-#: sc/inc/globstr.hrc:480
+#: sc/inc/globstr.hrc:481
msgctxt "STR_INVALIDVAL"
msgid "Invalid target value."
msgstr "Άκυρη τιμή προορισμού."
-#: sc/inc/globstr.hrc:481
+#: sc/inc/globstr.hrc:482
msgctxt "STR_INVALIDVAR"
msgid "Undefined name for variable cell."
msgstr "Αόριστο όνομα για κελί μεταβλητής."
-#: sc/inc/globstr.hrc:482
+#: sc/inc/globstr.hrc:483
msgctxt "STR_INVALIDFORM"
msgid "Undefined name as formula cell."
msgstr "Αόριστο όνομα ως κελί τύπου."
-#: sc/inc/globstr.hrc:483
+#: sc/inc/globstr.hrc:484
msgctxt "STR_NOFORMULA"
msgid "Formula cell must contain a formula."
msgstr "Ένα κελί τύπου πρέπει να περιέχει έναν τύπο."
-#: sc/inc/globstr.hrc:484
+#: sc/inc/globstr.hrc:485
msgctxt "STR_INVALIDINPUT"
msgid "Invalid input."
msgstr "Άκυρη είσοδος."
-#: sc/inc/globstr.hrc:485
+#: sc/inc/globstr.hrc:486
msgctxt "STR_INVALIDCONDITION"
msgid "Invalid condition."
msgstr "Άκυρος όρος."
-#: sc/inc/globstr.hrc:486
+#: sc/inc/globstr.hrc:487
msgctxt "STR_QUERYREMOVE"
msgid ""
"Should the entry\n"
@@ -2420,133 +2425,133 @@ msgstr ""
"#\n"
"να διαγραφεί;"
-#: sc/inc/globstr.hrc:487
+#: sc/inc/globstr.hrc:488
msgctxt "STR_COPYLIST"
msgid "Copy List"
msgstr "Αντιγραφή καταλόγου"
-#: sc/inc/globstr.hrc:488
+#: sc/inc/globstr.hrc:489
msgctxt "STR_COPYFROM"
msgid "List from"
msgstr "Κατάλογος από"
-#: sc/inc/globstr.hrc:489
+#: sc/inc/globstr.hrc:490
msgctxt "STR_COPYERR"
msgid "Cells without text have been ignored."
msgstr "Τα κελιά χωρίς κείμενο έχουν παραβλεφθεί."
-#: sc/inc/globstr.hrc:490
+#: sc/inc/globstr.hrc:491
#, c-format
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%s-click to follow hyperlink:"
msgstr "%s-πάτημα για παρακολούθηση του υπερσυνδέσμου:"
-#: sc/inc/globstr.hrc:491
+#: sc/inc/globstr.hrc:492
msgctxt "STR_CLICKHYPERLINK"
msgid "click to open hyperlink:"
msgstr "Πάτημα για άνοιγμα υπερσυνδέσμου:"
-#: sc/inc/globstr.hrc:492
+#: sc/inc/globstr.hrc:493
msgctxt "STR_PRINT_PREVIEW_NODATA"
msgid "No Data"
msgstr "Δεν υπάρχουν δεδομένα"
-#: sc/inc/globstr.hrc:493
+#: sc/inc/globstr.hrc:494
msgctxt "STR_PRINT_PREVIEW_EMPTY_RANGE"
msgid "Print Range Empty"
msgstr "Εκτύπωση κενής περιοχής"
-#: sc/inc/globstr.hrc:494
+#: sc/inc/globstr.hrc:495
msgctxt "STR_UNDO_CONDFORMAT"
msgid "Conditional Format"
msgstr "Μορφοποίηση υπό όρους"
-#: sc/inc/globstr.hrc:495
+#: sc/inc/globstr.hrc:496
msgctxt "STR_UNDO_CONDFORMAT_LIST"
msgid "Conditional Formats"
msgstr "Μορφοποιήσεις υπό όρους"
-#: sc/inc/globstr.hrc:496
+#: sc/inc/globstr.hrc:497
msgctxt "STR_UNDO_FORMULA_TO_VALUE"
msgid "Convert Formula To Value"
msgstr "Μετατροπή τύπου σε τιμή"
-#: sc/inc/globstr.hrc:497
+#: sc/inc/globstr.hrc:498
msgctxt "STR_UNQUOTED_STRING"
msgid "Strings without quotes are interpreted as column/row labels."
msgstr "Συμβολοσειρές χωρίς εισαγωγικά ερμηνεύονται ως ετικέτες στήλης/γραμμής."
-#: sc/inc/globstr.hrc:498
+#: sc/inc/globstr.hrc:499
msgctxt "STR_ENTER_VALUE"
msgid "Enter a value!"
msgstr "Εισάγετε μία τιμή!"
-#: sc/inc/globstr.hrc:499
+#: sc/inc/globstr.hrc:500
msgctxt "STR_TABLE_COUNT"
msgid "Sheet %1 of %2"
msgstr "Φύλλο %1 από %2"
-#: sc/inc/globstr.hrc:500
+#: sc/inc/globstr.hrc:501
msgctxt "STR_FUNCTIONS_FOUND"
msgid "%1 and %2 more"
msgstr "%1 και %2 περισσότερα"
-#: sc/inc/globstr.hrc:501
+#: sc/inc/globstr.hrc:502
msgctxt "STR_GENERAL"
msgid "General"
msgstr "Γενικά"
-#: sc/inc/globstr.hrc:502
+#: sc/inc/globstr.hrc:503
msgctxt "STR_NUMBER"
msgid "Number"
msgstr "Αριθμός"
-#: sc/inc/globstr.hrc:503
+#: sc/inc/globstr.hrc:504
msgctxt "STR_PERCENT"
msgid "Percent"
msgstr "Ποσοστό"
-#: sc/inc/globstr.hrc:504
+#: sc/inc/globstr.hrc:505
msgctxt "STR_CURRENCY"
msgid "Currency"
msgstr "Νόμισμα"
-#: sc/inc/globstr.hrc:505
+#: sc/inc/globstr.hrc:506
msgctxt "STR_DATE"
msgid "Date"
msgstr "Ημερομηνία"
-#: sc/inc/globstr.hrc:506
+#: sc/inc/globstr.hrc:507
msgctxt "STR_TIME"
msgid "Time"
msgstr "Χρόνος"
-#: sc/inc/globstr.hrc:507
+#: sc/inc/globstr.hrc:508
msgctxt "STR_SCIENTIFIC"
msgid "Scientific"
msgstr "Επιστημονική"
-#: sc/inc/globstr.hrc:508
+#: sc/inc/globstr.hrc:509
msgctxt "STR_FRACTION"
msgid "Fraction"
msgstr "Κλάσμα"
-#: sc/inc/globstr.hrc:509
+#: sc/inc/globstr.hrc:510
msgctxt "STR_BOOLEAN_VALUE"
msgid "Boolean Value"
msgstr "Τιμή Μπουλ"
-#: sc/inc/globstr.hrc:510
+#: sc/inc/globstr.hrc:511
msgctxt "STR_TEXT"
msgid "Text"
msgstr "Κείμενο"
-#: sc/inc/globstr.hrc:511
+#: sc/inc/globstr.hrc:512
msgctxt "STR_QUERY_PIVOTTABLE_DELTAB"
msgid "The selected sheet(s) contain source data of related pivot tables that will be lost. Are you sure you want to delete the selected sheet(s)?"
msgstr "Τα επιλεγμένα φύλλα περιέχουν πηγαία δεδομένα σχετικών συγκεντρωτικών πινάκων που θα χαθούν. Είσαστε βέβαιοι ότι θέλετε να διαγράψετε τα επιλεγμένα φύλλα;"
-#: sc/inc/globstr.hrc:512
+#: sc/inc/globstr.hrc:513
msgctxt "STR_ERR_NAME_INVALID_CELL_REF"
msgid "Invalid name. Reference to a cell, or a range of cells not allowed."
msgstr "Άκυρο όνομα. Δεν επιτρέπεται παραπομπή σε κελί ή περιοχή κελιών."
@@ -10488,8 +10493,8 @@ msgstr "Κατάσταση"
#: sc/inc/scfuncs.hrc:3010
msgctxt "SC_OPCODE_T_TEST"
-msgid "Mode specifies the number of distribution tails to return. 1= one-tailed, 2 = two-tailed distribution"
-msgstr "Ο τύπος ορίζει τον αριθμό των πλευρών της κατανομής που θα επιστραφεί . 1= μονόπλευρη, 2 = δίπλευρη κατανομή"
+msgid "Mode specifies the number of distribution tails to return. 1 = one-tailed, 2 = two-tailed distribution"
+msgstr "Η κατάσταση ορίζει τον αριθμό των πλευρών της κατανομής που θα επιστραφεί . 1= μονόπλευρη, 2 = δίπλευρη κατανομή"
#: sc/inc/scfuncs.hrc:3011
msgctxt "SC_OPCODE_T_TEST"
@@ -10533,7 +10538,7 @@ msgstr "Κατάσταση"
#: sc/inc/scfuncs.hrc:3024
msgctxt "SC_OPCODE_T_TEST_MS"
-msgid "Mode specifies the number of distribution tails to return. 1= one-tailed, 2 = two-tailed distribution"
+msgid "Mode specifies the number of distribution tails to return. 1 = one-tailed, 2 = two-tailed distribution"
msgstr "Η κατάσταση ορίζει τον αριθμό των πλευρών της κατανομής που θα επιστραφεί . 1= μονόπλευρη, 2 = δίπλευρη κατανομή"
#: sc/inc/scfuncs.hrc:3025
@@ -18020,22 +18025,22 @@ msgctxt "mergecellsdialog|MergeCellsDialog"
msgid "Merge Cells"
msgstr "Συγχώνευση κελιών"
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:81
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:84
msgctxt "mergecellsdialog|label"
msgid "Some cells are not empty."
msgstr "Κάποια κελιά δεν είναι κενά."
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:96
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:99
msgctxt "mergecellsdialog|move-cells-radio"
msgid "Move the contents of the hidden cells into the first cell"
msgstr "Να μετακινηθούν τα περιεχόμενα των κρυφών κελιών στο πρώτο κελί"
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:112
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:115
msgctxt "mergecellsdialog|empty-cells-radio"
msgid "Empty the contents of the hidden cells"
msgstr "Άδειασμα των περιεχομένων των κρυφών κελιών"
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:128
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:131
msgctxt "mergecellsdialog|keep-content-radio"
msgid "Keep the contents of the hidden cells"
msgstr "Διατήρηση των περιεχομένων των κρυφών κελιών"
diff --git a/source/el/sd/messages.po b/source/el/sd/messages.po
index 41f6db2b89f..180a10133cf 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2018-05-24 06:00+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,170 +13,170 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1527141652.000000\n"
-#: sd/inc/DocumentRenderer.hrc:29
+#: sd/inc/DocumentRenderer.hrc:27
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Slides"
msgstr "Διαφάνειες"
-#: sd/inc/DocumentRenderer.hrc:30
+#: sd/inc/DocumentRenderer.hrc:28
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Handouts"
msgstr "Σημειώματα"
-#: sd/inc/DocumentRenderer.hrc:31
+#: sd/inc/DocumentRenderer.hrc:29
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Notes"
msgstr "Σημειώσεις"
-#: sd/inc/DocumentRenderer.hrc:32
+#: sd/inc/DocumentRenderer.hrc:30
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Outline"
msgstr "Περίγραμμα"
-#: sd/inc/DocumentRenderer.hrc:37
+#: sd/inc/DocumentRenderer.hrc:35
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "According to layout"
msgstr "Σύμφωνα με τη διάταξη"
-#: sd/inc/DocumentRenderer.hrc:38
+#: sd/inc/DocumentRenderer.hrc:36
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "1"
msgstr "1"
-#: sd/inc/DocumentRenderer.hrc:39
+#: sd/inc/DocumentRenderer.hrc:37
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "2"
msgstr "2"
-#: sd/inc/DocumentRenderer.hrc:40
+#: sd/inc/DocumentRenderer.hrc:38
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "3"
msgstr "3"
-#: sd/inc/DocumentRenderer.hrc:41
+#: sd/inc/DocumentRenderer.hrc:39
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "4"
msgstr "4"
-#: sd/inc/DocumentRenderer.hrc:42
+#: sd/inc/DocumentRenderer.hrc:40
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "6"
msgstr "6"
-#: sd/inc/DocumentRenderer.hrc:43
+#: sd/inc/DocumentRenderer.hrc:41
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "9"
msgstr "9"
-#: sd/inc/DocumentRenderer.hrc:48
+#: sd/inc/DocumentRenderer.hrc:46
msgctxt "STR_IMPRESS_PRINT_UI_ORDER_CHOICES"
msgid "Left to right, then down"
msgstr "Από αριστερά προς δεξιά, μετά κάτω"
-#: sd/inc/DocumentRenderer.hrc:49
+#: sd/inc/DocumentRenderer.hrc:47
msgctxt "STR_IMPRESS_PRINT_UI_ORDER_CHOICES"
msgid "Top to bottom, then right"
msgstr "Από πάνω προς κάτω, ύστερα δεξιά"
-#: sd/inc/DocumentRenderer.hrc:54
+#: sd/inc/DocumentRenderer.hrc:52
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Original colors"
msgstr "Αρχικά χρώματα"
-#: sd/inc/DocumentRenderer.hrc:55
+#: sd/inc/DocumentRenderer.hrc:53
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Grayscale"
msgstr "Κλίμακα του γκρι"
-#: sd/inc/DocumentRenderer.hrc:56
+#: sd/inc/DocumentRenderer.hrc:54
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Black & white"
msgstr "Ασπρόμαυρο"
-#: sd/inc/DocumentRenderer.hrc:61
+#: sd/inc/DocumentRenderer.hrc:59
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Original size"
msgstr "Αρχικό μέγεθος"
-#: sd/inc/DocumentRenderer.hrc:62
+#: sd/inc/DocumentRenderer.hrc:60
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Fit to printable page"
msgstr "Προσαρμογή στην εκτυπώσιμη σελίδα"
-#: sd/inc/DocumentRenderer.hrc:63
+#: sd/inc/DocumentRenderer.hrc:61
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Distribute on multiple sheets of paper"
msgstr "Κατανομή σε πολλαπλά φύλλα χαρτιού"
-#: sd/inc/DocumentRenderer.hrc:64
+#: sd/inc/DocumentRenderer.hrc:62
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Tile sheet of paper with repeated slides"
msgstr "Παράθεση φύλλων χαρτιού με επαναλαμβανόμενες διαφάνειες"
-#: sd/inc/DocumentRenderer.hrc:69
+#: sd/inc/DocumentRenderer.hrc:67
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Original size"
msgstr "Αρχικό μέγεθος"
-#: sd/inc/DocumentRenderer.hrc:70
+#: sd/inc/DocumentRenderer.hrc:68
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Fit to printable page"
msgstr "Προσαρμογή στην εκτυπώσιμη σελίδα"
-#: sd/inc/DocumentRenderer.hrc:71
+#: sd/inc/DocumentRenderer.hrc:69
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Distribute on multiple sheets of paper"
msgstr "Κατανομή σε πολλαπλά φύλλα χαρτιού"
-#: sd/inc/DocumentRenderer.hrc:72
+#: sd/inc/DocumentRenderer.hrc:70
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Tile sheet of paper with repeated pages"
msgstr "Παράθεση φύλλων χαρτιού με επαναλαμβανόμενες σελίδες"
-#: sd/inc/DocumentRenderer.hrc:77
+#: sd/inc/DocumentRenderer.hrc:75
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "All pages"
msgstr "Όλες οι σελίδες"
-#: sd/inc/DocumentRenderer.hrc:78
+#: sd/inc/DocumentRenderer.hrc:76
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "Front sides / right pages"
msgstr "Προσόψεις / δεξιές σελίδες"
-#: sd/inc/DocumentRenderer.hrc:79
+#: sd/inc/DocumentRenderer.hrc:77
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "Back sides / left pages"
msgstr "Πίσω όψεις / αριστερές σελίδες"
-#: sd/inc/DocumentRenderer.hrc:84
+#: sd/inc/DocumentRenderer.hrc:82
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~All slides"
msgstr "Ό~λες οι διαφάνειες"
-#: sd/inc/DocumentRenderer.hrc:85
+#: sd/inc/DocumentRenderer.hrc:83
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~Slides"
msgstr "~Διαφάνειες"
-#: sd/inc/DocumentRenderer.hrc:86
+#: sd/inc/DocumentRenderer.hrc:84
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Se~lection"
msgstr "Επι~λογή"
-#: sd/inc/DocumentRenderer.hrc:91
+#: sd/inc/DocumentRenderer.hrc:89
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~All pages"
msgstr "Ό~λες οι σελίδες"
-#: sd/inc/DocumentRenderer.hrc:92
+#: sd/inc/DocumentRenderer.hrc:90
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Pa~ges"
msgstr "Σελί~δες"
-#: sd/inc/DocumentRenderer.hrc:93
+#: sd/inc/DocumentRenderer.hrc:91
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Se~lection"
msgstr "Επι~λογή"
diff --git a/source/el/svx/messages.po b/source/el/svx/messages.po
index cdfaa206f8f..a164efae54a 100644
--- a/source/el/svx/messages.po
+++ b/source/el/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: 2018-05-16 16:53+0200\n"
-"PO-Revision-Date: 2018-05-17 05:21+0000\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
+"PO-Revision-Date: 2018-06-05 05:22+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: el\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1526534498.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1528176159.000000\n"
#: svx/inc/fieldunit.hrc:30
msgctxt "RID_SVXSTR_FIELDUNIT_TABLE"
@@ -5179,8 +5179,8 @@ msgstr "Μπορείτε επίσης να συμπεριλάβετε τα σχ
#: svx/uiconfig/ui/safemodedialog.ui:432
msgctxt "safemodedialog|btn_create_zip"
-msgid "Create Zip Archive from User Profile"
-msgstr "Δημιουργία αρχείου Zip από την κατατομή χρήστη"
+msgid "Archive User Profile"
+msgstr "Αρχειοθέτηση κατατομής (προφίλ) χρήστη"
#: svx/uiconfig/ui/safemodedialog.ui:445
msgctxt "safemodedialog|linkbutton_profile"
@@ -8769,9 +8769,9 @@ msgid "Red"
msgstr "Κόκκινο"
#: include/svx/strings.hrc:565
-msgctxt "RID_SVXSTR_COLOR_VIOLET"
-msgid "Violet"
-msgstr "Βιολετί"
+msgctxt "RID_SVXSTR_COLOR_MAGENTA"
+msgid "Magenta"
+msgstr "Ματζέντα"
#: include/svx/strings.hrc:566
msgctxt "RID_SVXSTR_COLOR_PURPLE"
@@ -8835,9 +8835,9 @@ msgid "Light Red"
msgstr "Ανοιχτό κόκκινο"
#: include/svx/strings.hrc:579
-msgctxt "RID_SVXSTR_COLOR_LIGHTVIOLET"
-msgid "Light Violet"
-msgstr "Ανοιχτό ιώδες"
+msgctxt "RID_SVXSTR_COLOR_LIGHTMAGENTA"
+msgid "Light Magenta"
+msgstr "Ανοιχτό ματζέντα"
#: include/svx/strings.hrc:580
msgctxt "RID_SVXSTR_COLOR_LIGHTPURPLE"
@@ -8901,9 +8901,9 @@ msgid "Dark Red"
msgstr "Σκούρο κόκκινο"
#: include/svx/strings.hrc:593
-msgctxt "RID_SVXSTR_COLOR_DARKVIOLET1"
-msgid "Dark Violet"
-msgstr "Σκούρο ιώδες"
+msgctxt "RID_SVXSTR_COLOR_DARKMAGENTA"
+msgid "Dark Magenta"
+msgstr "Σκούρο ματζέντα"
#: include/svx/strings.hrc:594
msgctxt "RID_SVXSTR_COLOR_DARKPURPLE"
@@ -8937,55 +8937,55 @@ msgstr "Σκούρο λαχανί"
#. Elements of the Tonal color palette
#: include/svx/strings.hrc:601
+msgctxt "RID_SVXSTR_COLOR_VIOLET"
+msgid "Violet"
+msgstr "Βιολετί"
+
+#: include/svx/strings.hrc:602
msgctxt "RID_SVXSTR_COLOR_VIOLET_OUG"
msgid "Violet (Out of Gamut)"
msgstr "Ιώδες (εκτός φάσματος)"
-#: include/svx/strings.hrc:602
+#: include/svx/strings.hrc:603
msgctxt "RID_SVXSTR_COLOR_BLUE_OUG"
msgid "Blue (Out of Gamut)"
msgstr "Γαλάζιο (εκτός φάσματος)"
-#: include/svx/strings.hrc:603
+#: include/svx/strings.hrc:604
msgctxt "RID_SVXSTR_COLOR_AZURE_OUG"
msgid "Azure (Out of Gamut)"
msgstr "Κυανός (εκτός φάσματος)"
-#: include/svx/strings.hrc:604
+#: include/svx/strings.hrc:605
msgctxt "RID_SVXSTR_COLOR_SPRINGGREEN_OUG"
msgid "Spring Green (Out of Gamut)"
msgstr "Ανοιξιάτικο πράσινο (εκτός φάσματος)"
-#: include/svx/strings.hrc:605
+#: include/svx/strings.hrc:606
msgctxt "RID_SVXSTR_COLOR_GREEN_OUG"
msgid "Green (Out of Gamut)"
msgstr "Πράσινο (εκτός φάσματος)"
-#: include/svx/strings.hrc:606
+#: include/svx/strings.hrc:607
msgctxt "RID_SVXSTR_COLOR_CHARTREUSEGREEN_OUG"
msgid "Chartreuse Green (Out of Gamut)"
msgstr "Φωτεινό κιτρινοπράσινο (εκτός φάσματος)"
-#: include/svx/strings.hrc:607
+#: include/svx/strings.hrc:608
msgctxt "RID_SVXSTR_COLOR_ORANGE_OUG"
msgid "Orange (Out of Gamut)"
msgstr "Πορτοκαλί (εκτός φάσματος)"
-#: include/svx/strings.hrc:608
+#: include/svx/strings.hrc:609
msgctxt "RID_SVXSTR_COLOR_RED_OUG"
msgid "Red (Out of Gamut)"
msgstr "Κόκκινο (εκτός φάσματος)"
-#: include/svx/strings.hrc:609
+#: include/svx/strings.hrc:610
msgctxt "RID_SVXSTR_COLOR_ROSE_OUG"
msgid "Rose (Out of Gamut)"
msgstr "Τριανταφυλλί (εκτός φάσματος)"
-#: include/svx/strings.hrc:610
-msgctxt "RID_SVXSTR_COLOR_MAGENTA"
-msgid "Magenta"
-msgstr "Ματζέντα"
-
#: include/svx/strings.hrc:611
msgctxt "RID_SVXSTR_COLOR_AZURE"
msgid "Azure"
@@ -12091,13 +12091,13 @@ msgstr "Κουκκίδες με δεξιά βέλη"
#: include/svx/strings.hrc:1273
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_6"
-msgid "Check mark bullets"
-msgstr "Κουκκίδες με σημάδι ελέγχου"
+msgid "Cross mark bullets"
+msgstr "Κουκκίδες με σημάδι σταυρού"
#: include/svx/strings.hrc:1274
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_7"
-msgid "Tick mark bullets"
-msgstr "Κουκίδες με σημάδι τικ"
+msgid "Check mark bullets"
+msgstr "Κουκκίδες με σημάδι ελέγχου"
#: include/svx/strings.hrc:1275
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_0"
diff --git a/source/el/sw/messages.po b/source/el/sw/messages.po
index bf8b065ec12..303f859b102 100644
--- a/source/el/sw/messages.po
+++ b/source/el/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: 2018-05-22 13:17+0200\n"
-"PO-Revision-Date: 2018-05-24 06:03+0000\n"
+"POT-Creation-Date: 2018-06-12 14:41+0200\n"
+"PO-Revision-Date: 2018-06-05 05:31+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: el\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1527141793.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1528176703.000000\n"
#: sw/inc/app.hrc:29
msgctxt "RID_PARAGRAPHSTYLEFAMILY"
@@ -1180,13 +1180,13 @@ msgstr "Παραπομπή"
#: sw/inc/strings.hrc:172
msgctxt "STR_POOLCOLL_TOX_ILLUSH"
-msgid "Illustration Index Heading"
-msgstr "Επικεφαλίδα καταλόγου εικόνων"
+msgid "Figure Index Heading"
+msgstr ""
#: sw/inc/strings.hrc:173
msgctxt "STR_POOLCOLL_TOX_ILLUS1"
-msgid "Illustration Index 1"
-msgstr "Ευρετήριο εικόνων 1"
+msgid "Figure Index 1"
+msgstr ""
#: sw/inc/strings.hrc:174
msgctxt "STR_POOLCOLL_TOX_OBJECTH"
@@ -3590,8 +3590,8 @@ msgstr "Πίνακας αντικειμένων"
#: sw/inc/strings.hrc:672
msgctxt "STR_TOX_ILL"
-msgid "Illustration Index"
-msgstr "Ευρετήριο εικόνων"
+msgid "Table of Figures"
+msgstr ""
#: sw/inc/strings.hrc:673
#, c-format
@@ -9244,72 +9244,72 @@ msgctxt "footnotepage|label5"
msgid "Continuation Notice"
msgstr "Σημείωση συνέχειας"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:49
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:55
msgctxt "footnotesendnotestabpage|ftnntnum"
msgid "_Restart numbering"
msgstr "Επα_νεκκίνηση αρίθμησης"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:91
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:93
msgctxt "footnotesendnotestabpage|ftnoffset_label"
msgid "_Start at:"
msgstr "Έναρ_ξη στο:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:112
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:111
msgctxt "footnotesendnotestabpage|ftnntnumfmt"
msgid "Custom _format"
msgstr "Προσαρμοσμένη μορ_φή"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:155
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:150
msgctxt "footnotesendnotestabpage|ftnsuffix_label"
msgid "Aft_er:"
msgstr "Με_τά:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:199
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:188
msgctxt "footnotesendnotestabpage|ftnprefix_label"
msgid "Be_fore:"
msgstr "Π_ριν:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:228
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:212
msgctxt "footnotesendnotestabpage|ftnntattextend"
msgid "Collec_t at end of text"
msgstr "Σ_υλλογή στο τέλος του κειμένου"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:252
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:234
msgctxt "footnotesendnotestabpage|label1"
msgid "Footnotes"
msgstr "Υποσημειώσεις"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:289
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:271
msgctxt "footnotesendnotestabpage|endntattextend"
msgid "C_ollect at end of section"
msgstr "Συ_λλογή στο τέλος της ενότητας"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:315
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:295
msgctxt "footnotesendnotestabpage|endntnum"
msgid "_Restart numbering"
msgstr "Επα_νεκκίνηση αρίθμησης"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:357
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:333
msgctxt "footnotesendnotestabpage|endoffset_label"
msgid "_Start at:"
msgstr "Έναρ_ξη στο:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:378
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:351
msgctxt "footnotesendnotestabpage|endntnumfmt"
msgid "_Custom format"
msgstr "Π_ροσαρμοσμένη μορφή"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:421
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:390
msgctxt "footnotesendnotestabpage|endsuffix_label"
msgid "Aft_er:"
msgstr "Με_τά:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:465
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:428
msgctxt "footnotesendnotestabpage|endprefix_label"
msgid "Be_fore:"
msgstr "Π_ριν:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:500
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:458
msgctxt "footnotesendnotestabpage|label2"
msgid "Endnotes"
msgstr "Σημειώσεις τέλους"
@@ -9339,27 +9339,27 @@ msgctxt "formatsectiondialog|notes"
msgid "Footnotes/Endnotes"
msgstr "Υποσημειώσεις/Σημειώσεις τέλους"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:63
+#: sw/uiconfig/swriter/ui/formattablepage.ui:77
msgctxt "formattablepage|nameft"
msgid "_Name"
msgstr "Ό_νομα"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:79
+#: sw/uiconfig/swriter/ui/formattablepage.ui:91
msgctxt "formattablepage|widthft"
msgid "W_idth"
msgstr "Π_λάτος"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:110
+#: sw/uiconfig/swriter/ui/formattablepage.ui:120
msgctxt "formattablepage|relwidth"
msgid "Relati_ve"
msgstr "Σχετι_κά"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:155
+#: sw/uiconfig/swriter/ui/formattablepage.ui:160
msgctxt "formattablepage|label45"
msgid "Properties"
msgstr "Ιδιότητες"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:194
+#: sw/uiconfig/swriter/ui/formattablepage.ui:195
msgctxt "formattablepage|leftft"
msgid "Lef_t"
msgstr "Α_ριστερά"
@@ -9369,62 +9369,62 @@ msgctxt "formattablepage|rightft"
msgid "Ri_ght"
msgstr "Δε_ξιά"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:228
+#: sw/uiconfig/swriter/ui/formattablepage.ui:226
msgctxt "formattablepage|aboveft"
msgid "_Above"
msgstr "_Πάνω"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:245
+#: sw/uiconfig/swriter/ui/formattablepage.ui:241
msgctxt "formattablepage|belowft"
msgid "_Below"
msgstr "_Κάτω"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:320
+#: sw/uiconfig/swriter/ui/formattablepage.ui:311
msgctxt "formattablepage|label46"
msgid "Spacing"
msgstr "Απόσταση"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:362
+#: sw/uiconfig/swriter/ui/formattablepage.ui:349
msgctxt "formattablepage|full"
msgid "A_utomatic"
msgstr "Α_υτόματα"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:380
+#: sw/uiconfig/swriter/ui/formattablepage.ui:365
msgctxt "formattablepage|left"
msgid "_Left"
msgstr "Α_ριστερά"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:398
+#: sw/uiconfig/swriter/ui/formattablepage.ui:381
msgctxt "formattablepage|fromleft"
msgid "_From left"
msgstr "Από αρισ_τερά"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:416
+#: sw/uiconfig/swriter/ui/formattablepage.ui:397
msgctxt "formattablepage|right"
msgid "R_ight"
msgstr "_Δεξιά"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:435
+#: sw/uiconfig/swriter/ui/formattablepage.ui:413
msgctxt "formattablepage|center"
msgid "_Center"
msgstr "Στο _κέντρο"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:453
+#: sw/uiconfig/swriter/ui/formattablepage.ui:429
msgctxt "formattablepage|free"
msgid "_Manual"
msgstr "_Χειροκίνητα"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:478
+#: sw/uiconfig/swriter/ui/formattablepage.ui:452
msgctxt "formattablepage|label43"
msgid "Alignment"
msgstr "Στοίχιση"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:522
+#: sw/uiconfig/swriter/ui/formattablepage.ui:491
msgctxt "formattablepage|label53"
msgid "Text _direction"
msgstr "Κατεύθυνση _κειμένου"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:553
+#: sw/uiconfig/swriter/ui/formattablepage.ui:519
msgctxt "formattablepage|label44"
msgid "Properties "
msgstr "Ιδιότητες"
@@ -9779,22 +9779,27 @@ msgctxt "headerfootermenu|insert_pagenumber"
msgid "Insert Page Number"
msgstr "Εισαγωγή αριθμού σελίδας"
-#: sw/uiconfig/swriter/ui/indentpage.ui:52
+#: sw/uiconfig/swriter/ui/headerfootermenu.ui:42
+msgctxt "headerfootermenu|insert_pagecount"
+msgid "Insert Page Count"
+msgstr "Εισαγωγή αριθμού σελίδων"
+
+#: sw/uiconfig/swriter/ui/indentpage.ui:57
msgctxt "indentpage|label1"
msgid "_Before section"
msgstr "Π_ριν την ενότητα"
-#: sw/uiconfig/swriter/ui/indentpage.ui:67
+#: sw/uiconfig/swriter/ui/indentpage.ui:71
msgctxt "indentpage|label3"
msgid "_After section"
msgstr "Με_τά την ενότητα"
-#: sw/uiconfig/swriter/ui/indentpage.ui:113
+#: sw/uiconfig/swriter/ui/indentpage.ui:115
msgctxt "indentpage|label2"
msgid "Indent"
msgstr "Εσοχή"
-#: sw/uiconfig/swriter/ui/indentpage.ui:142
+#: sw/uiconfig/swriter/ui/indentpage.ui:155
msgctxt "indentpage|preview-atkobject"
msgid "Example"
msgstr "Παράδειγμα"
@@ -13285,8 +13290,8 @@ msgstr "Μορφή προστασίας"
#: sw/uiconfig/swriter/ui/optcompatpage.ui:68
msgctxt "optcompatpage|format"
-msgid "MS Word-compatible trailing blanks"
-msgstr "Αρχικά κενά συμβατά με MS Word"
+msgid "Word-compatible trailing blanks"
+msgstr "Τελικά κενά συμβατά με Word"
#: sw/uiconfig/swriter/ui/optcompatpage.ui:69
msgctxt "optcompatpage|format"
@@ -13295,8 +13300,8 @@ msgstr "Να επιτρέπονται οι λευκές γραμμές των π
#: sw/uiconfig/swriter/ui/optcompatpage.ui:70
msgctxt "optcompatpage|format"
-msgid "A database field (e.g., MailMerge) with empty value hides its paragraph"
-msgstr "Πεδίο βάσης δεδομένων (π.χ., ΣυγχώνευσηΑλληλογραφίας) με κενή τιμή κρύβει την παράγραφό του"
+msgid "Hide paragraphs of database fields (e.g., mail merge) with an empty value"
+msgstr "Απόκρυψη παραγράφων πεδίων βάσης δεδομένων (π.χ., συγχώνευση αλληλογραφίας) με κενή τιμή"
#: sw/uiconfig/swriter/ui/optcompatpage.ui:71
msgctxt "optcompatpage|format"
@@ -15981,122 +15986,122 @@ msgctxt "tableproperties|background"
msgid "Background"
msgstr "Παρασκήνιο"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:25
-msgctxt "tabletextflowpage|liststore1"
-msgid "Horizontal"
-msgstr "Οριζόντια"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:29
-msgctxt "tabletextflowpage|liststore1"
-msgid "Vertical"
-msgstr "Κάθετα"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:33
-msgctxt "tabletextflowpage|liststore1"
-msgid "Use superordinate object settings"
-msgstr "Χρήση ανώτερων ρυθμίσεων αντικειμένων"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:47
-msgctxt "tabletextflowpage|liststore2"
-msgid "Top"
-msgstr "Κορυφή"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:51
-msgctxt "tabletextflowpage|liststore2"
-msgid "Centered"
-msgstr "Κεντραρισμένο"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:55
-msgctxt "tabletextflowpage|liststore2"
-msgid "Bottom"
-msgstr "Τέλος"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:97
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:53
msgctxt "tabletextflowpage|break"
msgid "_Break"
msgstr "Κατάρ_γηση"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:112
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:68
msgctxt "tabletextflowpage|page"
msgid "_Page"
msgstr "_Σελίδα"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:132
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:87
msgctxt "tabletextflowpage|column"
msgid "Col_umn"
msgstr "Σ_τήλη"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:151
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:106
msgctxt "tabletextflowpage|before"
msgid "Be_fore"
msgstr "_Πριν από"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:171
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:125
msgctxt "tabletextflowpage|after"
msgid "_After"
msgstr "_Μετά από"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:203
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:158
msgctxt "tabletextflowpage|pagestyle"
msgid "With Page St_yle"
msgstr "Με _τεχνοτροπία σελίδας"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:224
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:177
msgctxt "tabletextflowpage|pagenoft"
msgid "Page _number"
msgstr "Αρι_θμός σελίδας"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:257
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:213
msgctxt "tabletextflowpage|pagestylelb-atkobject"
msgid "With Page Style"
msgstr "Με τεχνοτροπία σελίδας"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:274
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:230
msgctxt "tabletextflowpage|split"
msgid "Allow _table to split across pages and columns"
msgstr "Να επιτρέπεται η διαίρεση του _πίνακα ανάμεσα σε σελίδες και στήλες"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:289
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:245
msgctxt "tabletextflowpage|splitrow"
msgid "Allow row to break a_cross pages and columns"
msgstr "Να επιτρέπεται η αλλαγή γραμμής ανάμε_σα σε σελίδες και στήλες"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:306
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:262
msgctxt "tabletextflowpage|keep"
msgid "_Keep with next paragraph"
msgstr "_Διατήρηση με την επόμενη παράγραφο"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:328
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:284
msgctxt "tabletextflowpage|label40"
msgid "Text _orientation"
msgstr "_Κατεύθυνση κειμένου"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:361
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:298
+msgctxt "tabletextflowpage|liststore1"
+msgid "Horizontal"
+msgstr "Οριζόντια"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:299
+msgctxt "tabletextflowpage|liststore1"
+msgid "Vertical"
+msgstr "Κάθετα"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:300
+msgctxt "tabletextflowpage|liststore1"
+msgid "Use superordinate object settings"
+msgstr "Χρήση ανώτερων ρυθμίσεων αντικειμένων"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:321
msgctxt "tabletextflowpage|headline"
msgid "R_epeat heading"
msgstr "Επα_νάληψη κεφαλίδας"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:383
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:343
msgctxt "tabletextflowpage|label38"
msgid "The first "
msgstr "Ο πρώτος "
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:396
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:356
msgctxt "tabletextflowpage|label39"
msgid "rows"
msgstr "γραμμές"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:434
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:395
msgctxt "tabletextflowpage|label35"
msgid "Text Flow"
msgstr "Ροή κειμένου"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:467
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:428
msgctxt "tabletextflowpage|label41"
msgid "_Vertical alignment"
msgstr "Κά_θετη στοίχιση"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:495
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:442
+msgctxt "tabletextflowpage|liststore2"
+msgid "Top"
+msgstr "Κορυφή"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:443
+msgctxt "tabletextflowpage|liststore2"
+msgid "Centered"
+msgstr "Κεντραρισμένο"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:444
+msgctxt "tabletextflowpage|liststore2"
+msgid "Bottom"
+msgstr "Τέλος"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:460
msgctxt "tabletextflowpage|label36"
msgid "Alignment"
msgstr "Στοίχιση"
@@ -16878,8 +16883,8 @@ msgstr "Αλφαβητικό ευρετήριο"
#: sw/uiconfig/swriter/ui/tocindexpage.ui:58
msgctxt "tocindexpage|liststore1"
-msgid "Illustration Index"
-msgstr "Ευρετήριο εικόνων"
+msgid "Table of Figures"
+msgstr ""
#: sw/uiconfig/swriter/ui/tocindexpage.ui:62
msgctxt "tocindexpage|liststore1"
diff --git a/source/el/writerperfect/messages.po b/source/el/writerperfect/messages.po
index 19396fa1cec..012a321c0dd 100644
--- a/source/el/writerperfect/messages.po
+++ b/source/el/writerperfect/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-16 16:54+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2018-05-09 06:44+0000\n"
"Last-Translator: Dimitris Spingos <dmtrs32@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -66,97 +66,97 @@ msgctxt "exportepub|generalft"
msgid "General"
msgstr "Γενικά"
-#: writerperfect/uiconfig/ui/exportepub.ui:122
+#: writerperfect/uiconfig/ui/exportepub.ui:121
msgctxt "exportepub|versionft"
msgid "Version:"
msgstr "Έκδοση:"
-#: writerperfect/uiconfig/ui/exportepub.ui:139
+#: writerperfect/uiconfig/ui/exportepub.ui:138
msgctxt "exportepub|epub3"
msgid "EPUB 3.0"
msgstr "EPUB 3.0"
-#: writerperfect/uiconfig/ui/exportepub.ui:140
+#: writerperfect/uiconfig/ui/exportepub.ui:139
msgctxt "exportepub|epub2"
msgid "EPUB 2.0"
msgstr "EPUB 2.0"
-#: writerperfect/uiconfig/ui/exportepub.ui:175
+#: writerperfect/uiconfig/ui/exportepub.ui:174
msgctxt "exportepub|splitft"
msgid "Split method:"
msgstr "Μέθοδος διαίρεσης:"
-#: writerperfect/uiconfig/ui/exportepub.ui:192
+#: writerperfect/uiconfig/ui/exportepub.ui:191
msgctxt "exportepub|splitpage"
msgid "Page break"
msgstr "Αλλαγή σελίδας"
-#: writerperfect/uiconfig/ui/exportepub.ui:193
+#: writerperfect/uiconfig/ui/exportepub.ui:192
msgctxt "exportepub|splitheading"
msgid "Heading"
msgstr "Επικεφαλίδα"
-#: writerperfect/uiconfig/ui/exportepub.ui:228
+#: writerperfect/uiconfig/ui/exportepub.ui:227
msgctxt "exportepub|layoutft"
msgid "Layout method:"
msgstr "Μέθοδος διάταξης:"
-#: writerperfect/uiconfig/ui/exportepub.ui:245
+#: writerperfect/uiconfig/ui/exportepub.ui:244
msgctxt "exportepub|layoutreflowable"
msgid "Reflowable"
msgstr "Αυτόματη αναδίπλωση"
-#: writerperfect/uiconfig/ui/exportepub.ui:246
+#: writerperfect/uiconfig/ui/exportepub.ui:245
msgctxt "exportepub|layoutfixed"
msgid "Fixed"
msgstr "Σταθερή"
-#: writerperfect/uiconfig/ui/exportepub.ui:281
+#: writerperfect/uiconfig/ui/exportepub.ui:280
msgctxt "exportepub|coverimageft"
msgid "Custom cover image:"
msgstr "Προσαρμοσμένη εικόνα εξωφύλλου:"
-#: writerperfect/uiconfig/ui/exportepub.ui:311
+#: writerperfect/uiconfig/ui/exportepub.ui:310
msgctxt "exportepub|coverbutton"
msgid "Browse..."
msgstr "Περιήγηση..."
-#: writerperfect/uiconfig/ui/exportepub.ui:355
+#: writerperfect/uiconfig/ui/exportepub.ui:354
msgctxt "exportepub|mediadirft"
msgid "Custom media directory:"
msgstr "Προσαρμοσμένος κατάλογος μέσων:"
-#: writerperfect/uiconfig/ui/exportepub.ui:385
+#: writerperfect/uiconfig/ui/exportepub.ui:384
msgctxt "exportepub|mediabutton"
msgid "Browse..."
msgstr "Περιήγηση..."
-#: writerperfect/uiconfig/ui/exportepub.ui:429
+#: writerperfect/uiconfig/ui/exportepub.ui:428
msgctxt "exportepub|metadataft"
msgid "Metadata"
msgstr "Μεταδεδομένα"
-#: writerperfect/uiconfig/ui/exportepub.ui:470
+#: writerperfect/uiconfig/ui/exportepub.ui:468
msgctxt "exportepub|identifierft"
msgid "Identifier:"
msgstr "Αναγνωριστικό:"
-#: writerperfect/uiconfig/ui/exportepub.ui:485
+#: writerperfect/uiconfig/ui/exportepub.ui:483
msgctxt "exportepub|titleft"
msgid "Title:"
msgstr "Τίτλος:"
-#: writerperfect/uiconfig/ui/exportepub.ui:511
+#: writerperfect/uiconfig/ui/exportepub.ui:509
msgctxt "exportepub|authorft"
msgid "Author:"
msgstr "Συγγραφέας:"
-#: writerperfect/uiconfig/ui/exportepub.ui:537
+#: writerperfect/uiconfig/ui/exportepub.ui:535
msgctxt "exportepub|languageft"
msgid "Language:"
msgstr "Γλώσσα:"
-#: writerperfect/uiconfig/ui/exportepub.ui:563
+#: writerperfect/uiconfig/ui/exportepub.ui:561
msgctxt "exportepub|dateft"
msgid "Date:"
msgstr "Ημερομηνία:"
diff --git a/source/en-GB/cui/messages.po b/source/en-GB/cui/messages.po
index 289909d1657..e0d566b488b 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2018-05-11 10:13+0000\n"
"Last-Translator: Stuart Swales <stuart.swales.croftnuisk@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -9872,97 +9872,97 @@ msgctxt "positionsizedialog|PositionAndSizeDialog"
msgid "Position and Size"
msgstr "Position and Size"
-#: cui/uiconfig/ui/positionsizedialog.ui:107
+#: cui/uiconfig/ui/positionsizedialog.ui:136
msgctxt "positionsizedialog|RID_SVXPAGE_POSITION_SIZE"
msgid "Position and Size"
msgstr "Position and Size"
-#: cui/uiconfig/ui/positionsizedialog.ui:129
+#: cui/uiconfig/ui/positionsizedialog.ui:182
msgctxt "positionsizedialog|RID_SVXPAGE_SWPOSSIZE"
msgid "Position and Size"
msgstr "Position and Size"
-#: cui/uiconfig/ui/positionsizedialog.ui:152
+#: cui/uiconfig/ui/positionsizedialog.ui:229
msgctxt "positionsizedialog|RID_SVXPAGE_ANGLE"
msgid "Rotation"
msgstr "Rotation"
-#: cui/uiconfig/ui/positionsizedialog.ui:175
+#: cui/uiconfig/ui/positionsizedialog.ui:276
msgctxt "positionsizedialog|RID_SVXPAGE_SLANT"
msgid "Slant & Corner Radius"
msgstr "Slant & Corner Radius"
-#: cui/uiconfig/ui/possizetabpage.ui:40
+#: cui/uiconfig/ui/possizetabpage.ui:61
msgctxt "possizetabpage|FT_POS_X"
msgid "Position _X:"
msgstr "Position _X:"
-#: cui/uiconfig/ui/possizetabpage.ui:56
+#: cui/uiconfig/ui/possizetabpage.ui:75
msgctxt "possizetabpage|FT_POS_Y"
msgid "Position _Y:"
msgstr "Position _Y:"
-#: cui/uiconfig/ui/possizetabpage.ui:110
+#: cui/uiconfig/ui/possizetabpage.ui:128
msgctxt "possizetabpage|FT_POSREFERENCE"
msgid "_Base point:"
msgstr "_Base point:"
-#: cui/uiconfig/ui/possizetabpage.ui:148
+#: cui/uiconfig/ui/possizetabpage.ui:182
msgctxt "possizetabpage|label1"
msgid "Position"
msgstr "Position"
-#: cui/uiconfig/ui/possizetabpage.ui:190
+#: cui/uiconfig/ui/possizetabpage.ui:224
msgctxt "possizetabpage|FT_WIDTH"
msgid "Wi_dth:"
msgstr "Wi_dth:"
-#: cui/uiconfig/ui/possizetabpage.ui:206
+#: cui/uiconfig/ui/possizetabpage.ui:238
msgctxt "possizetabpage|FT_HEIGHT"
msgid "H_eight:"
msgstr "H_eight:"
-#: cui/uiconfig/ui/possizetabpage.ui:247
+#: cui/uiconfig/ui/possizetabpage.ui:276
msgctxt "possizetabpage|CBX_SCALE"
msgid "_Keep ratio"
msgstr "_Keep ratio"
-#: cui/uiconfig/ui/possizetabpage.ui:279
+#: cui/uiconfig/ui/possizetabpage.ui:307
msgctxt "possizetabpage|FT_SIZEREFERENCE"
msgid "Base _point:"
msgstr "Base _point:"
-#: cui/uiconfig/ui/possizetabpage.ui:317
+#: cui/uiconfig/ui/possizetabpage.ui:361
msgctxt "possizetabpage|label2"
msgid "Size"
msgstr "Size"
-#: cui/uiconfig/ui/possizetabpage.ui:356
+#: cui/uiconfig/ui/possizetabpage.ui:401
msgctxt "possizetabpage|TSB_POSPROTECT"
msgid "Positio_n"
msgstr "Positio_n"
-#: cui/uiconfig/ui/possizetabpage.ui:373
+#: cui/uiconfig/ui/possizetabpage.ui:418
msgctxt "possizetabpage|TSB_SIZEPROTECT"
msgid "_Size"
msgstr "_Size"
-#: cui/uiconfig/ui/possizetabpage.ui:397
+#: cui/uiconfig/ui/possizetabpage.ui:441
msgctxt "possizetabpage|label3"
msgid "Protect"
msgstr "Protect"
-#: cui/uiconfig/ui/possizetabpage.ui:430
+#: cui/uiconfig/ui/possizetabpage.ui:475
msgctxt "possizetabpage|TSB_AUTOGROW_WIDTH"
msgid "_Fit width to text"
msgstr "_Fit width to text"
-#: cui/uiconfig/ui/possizetabpage.ui:447
+#: cui/uiconfig/ui/possizetabpage.ui:492
msgctxt "possizetabpage|TSB_AUTOGROW_HEIGHT"
msgid "Fit _height to text"
msgstr "Fit _height to text"
-#: cui/uiconfig/ui/possizetabpage.ui:471
+#: cui/uiconfig/ui/possizetabpage.ui:515
msgctxt "possizetabpage|label4"
msgid "Adapt"
msgstr "Adapt"
@@ -10162,47 +10162,47 @@ msgctxt "recordnumberdialog|label2"
msgid "go to record"
msgstr "go to record"
-#: cui/uiconfig/ui/rotationtabpage.ui:52
+#: cui/uiconfig/ui/rotationtabpage.ui:56
msgctxt "rotationtabpage|FT_POS_X"
msgid "Position _X:"
msgstr "Position _X:"
-#: cui/uiconfig/ui/rotationtabpage.ui:66
+#: cui/uiconfig/ui/rotationtabpage.ui:70
msgctxt "rotationtabpage|FT_POS_Y"
msgid "Position _Y:"
msgstr "Position _Y:"
-#: cui/uiconfig/ui/rotationtabpage.ui:116
+#: cui/uiconfig/ui/rotationtabpage.ui:123
msgctxt "rotationtabpage|FT_POSPRESETS"
msgid "_Default settings:"
msgstr "_Default settings:"
-#: cui/uiconfig/ui/rotationtabpage.ui:130
+#: cui/uiconfig/ui/rotationtabpage.ui:151
msgctxt "rotationtabpage|CTL_RECT|tooltip_text"
msgid "Rotation point"
msgstr "Rotation point"
-#: cui/uiconfig/ui/rotationtabpage.ui:155
+#: cui/uiconfig/ui/rotationtabpage.ui:178
msgctxt "rotationtabpage|label1"
msgid "Pivot Point"
msgstr "Pivot Point"
-#: cui/uiconfig/ui/rotationtabpage.ui:197
+#: cui/uiconfig/ui/rotationtabpage.ui:220
msgctxt "rotationtabpage|FT_ANGLE"
msgid "_Angle:"
msgstr "_Angle:"
-#: cui/uiconfig/ui/rotationtabpage.ui:238
+#: cui/uiconfig/ui/rotationtabpage.ui:263
msgctxt "rotationtabpage|FT_ANGLEPRESETS"
msgid "Default _settings:"
msgstr "Default _settings:"
-#: cui/uiconfig/ui/rotationtabpage.ui:252
+#: cui/uiconfig/ui/rotationtabpage.ui:287
msgctxt "rotationtabpage|CTL_ANGLE|tooltip_text"
msgid "Rotation Angle"
msgstr "Rotation Angle"
-#: cui/uiconfig/ui/rotationtabpage.ui:277
+#: cui/uiconfig/ui/rotationtabpage.ui:314
msgctxt "rotationtabpage|label2"
msgid "Rotation Angle"
msgstr "Rotation Angle"
@@ -10582,52 +10582,52 @@ msgctxt "similaritysearchdialog|relaxbox"
msgid "_Combine"
msgstr "_Combine"
-#: cui/uiconfig/ui/slantcornertabpage.ui:50
+#: cui/uiconfig/ui/slantcornertabpage.ui:70
msgctxt "slantcornertabpage|label5"
msgid "_X:"
msgstr "_X:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:88
+#: cui/uiconfig/ui/slantcornertabpage.ui:110
msgctxt "slantcornertabpage|label6"
msgid "_Y:"
msgstr "_Y:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:125
+#: cui/uiconfig/ui/slantcornertabpage.ui:149
msgctxt "slantcornertabpage|label3"
msgid "Control Point 1"
msgstr "Control Point 1"
-#: cui/uiconfig/ui/slantcornertabpage.ui:159
+#: cui/uiconfig/ui/slantcornertabpage.ui:183
msgctxt "slantcornertabpage|FT_RADIUS"
msgid "_Radius:"
msgstr "_Radius:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:189
+#: cui/uiconfig/ui/slantcornertabpage.ui:214
msgctxt "slantcornertabpage|label1"
msgid "Corner Radius"
msgstr "Corner Radius"
-#: cui/uiconfig/ui/slantcornertabpage.ui:223
+#: cui/uiconfig/ui/slantcornertabpage.ui:248
msgctxt "slantcornertabpage|FT_ANGLE"
msgid "_Angle:"
msgstr "_Angle:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:253
+#: cui/uiconfig/ui/slantcornertabpage.ui:279
msgctxt "slantcornertabpage|label2"
msgid "Slant"
msgstr "Slant"
-#: cui/uiconfig/ui/slantcornertabpage.ui:294
+#: cui/uiconfig/ui/slantcornertabpage.ui:320
msgctxt "slantcornertabpage|label4"
msgid "_X:"
msgstr "_X:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:332
+#: cui/uiconfig/ui/slantcornertabpage.ui:360
msgctxt "slantcornertabpage|label7"
msgid "_Y:"
msgstr "_Y:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:369
+#: cui/uiconfig/ui/slantcornertabpage.ui:399
msgctxt "slantcornertabpage|label8"
msgid "Control Point 2"
msgstr "Control Point 2"
@@ -10907,112 +10907,112 @@ msgctxt "storedwebconnectiondialog|change"
msgid "_Change Password..."
msgstr "_Change Password..."
-#: cui/uiconfig/ui/swpossizepage.ui:74
+#: cui/uiconfig/ui/swpossizepage.ui:85
msgctxt "swpossizepage|widthft"
msgid "_Width:"
msgstr "_Width:"
-#: cui/uiconfig/ui/swpossizepage.ui:111
+#: cui/uiconfig/ui/swpossizepage.ui:123
msgctxt "swpossizepage|heightft"
msgid "H_eight:"
msgstr "H_eight:"
-#: cui/uiconfig/ui/swpossizepage.ui:128
+#: cui/uiconfig/ui/swpossizepage.ui:141
msgctxt "swpossizepage|ratio"
msgid "_Keep ratio"
msgstr "_Keep ratio"
-#: cui/uiconfig/ui/swpossizepage.ui:149
+#: cui/uiconfig/ui/swpossizepage.ui:162
msgctxt "swpossizepage|label2"
msgid "Size"
msgstr "Size"
-#: cui/uiconfig/ui/swpossizepage.ui:205
+#: cui/uiconfig/ui/swpossizepage.ui:218
msgctxt "swpossizepage|topage"
msgid "To _page"
msgstr "To _page"
-#: cui/uiconfig/ui/swpossizepage.ui:222
+#: cui/uiconfig/ui/swpossizepage.ui:234
msgctxt "swpossizepage|topara"
msgid "To paragrap_h"
msgstr "To paragrap_h"
-#: cui/uiconfig/ui/swpossizepage.ui:238
+#: cui/uiconfig/ui/swpossizepage.ui:250
msgctxt "swpossizepage|tochar"
msgid "To cha_racter"
msgstr "To cha_racter"
-#: cui/uiconfig/ui/swpossizepage.ui:254
+#: cui/uiconfig/ui/swpossizepage.ui:266
msgctxt "swpossizepage|aschar"
msgid "_As character"
msgstr "_As character"
-#: cui/uiconfig/ui/swpossizepage.ui:270
+#: cui/uiconfig/ui/swpossizepage.ui:282
msgctxt "swpossizepage|toframe"
msgid "To _frame"
msgstr "To _frame"
-#: cui/uiconfig/ui/swpossizepage.ui:292
+#: cui/uiconfig/ui/swpossizepage.ui:304
msgctxt "swpossizepage|label1"
msgid "Anchor"
msgstr "Anchor"
-#: cui/uiconfig/ui/swpossizepage.ui:333
+#: cui/uiconfig/ui/swpossizepage.ui:344
msgctxt "swpossizepage|horiposft"
msgid "Hori_zontal:"
msgstr "Hori_zontal:"
-#: cui/uiconfig/ui/swpossizepage.ui:347
+#: cui/uiconfig/ui/swpossizepage.ui:358
msgctxt "swpossizepage|horibyft"
msgid "b_y:"
msgstr "b_y:"
-#: cui/uiconfig/ui/swpossizepage.ui:361
+#: cui/uiconfig/ui/swpossizepage.ui:372
msgctxt "swpossizepage|vertbyft"
msgid "_by:"
msgstr "_by:"
-#: cui/uiconfig/ui/swpossizepage.ui:375
+#: cui/uiconfig/ui/swpossizepage.ui:386
msgctxt "swpossizepage|horitoft"
msgid "_to:"
msgstr "_to:"
-#: cui/uiconfig/ui/swpossizepage.ui:421
+#: cui/uiconfig/ui/swpossizepage.ui:433
msgctxt "swpossizepage|vertposft"
msgid "_Vertical:"
msgstr "_Vertical:"
-#: cui/uiconfig/ui/swpossizepage.ui:457
+#: cui/uiconfig/ui/swpossizepage.ui:470
msgctxt "swpossizepage|verttoft"
msgid "t_o:"
msgstr "t_o:"
-#: cui/uiconfig/ui/swpossizepage.ui:478
+#: cui/uiconfig/ui/swpossizepage.ui:492
msgctxt "swpossizepage|mirror"
msgid "_Mirror on even pages"
msgstr "_Mirror on even pages"
-#: cui/uiconfig/ui/swpossizepage.ui:495
+#: cui/uiconfig/ui/swpossizepage.ui:509
msgctxt "swpossizepage|followtextflow"
msgid "Follow te_xt flow"
msgstr "Follow te_xt flow"
-#: cui/uiconfig/ui/swpossizepage.ui:518
+#: cui/uiconfig/ui/swpossizepage.ui:532
msgctxt "swpossizepage|label11"
msgid "Position"
msgstr "Position"
-#: cui/uiconfig/ui/swpossizepage.ui:549
+#: cui/uiconfig/ui/swpossizepage.ui:563
msgctxt "swpossizepage|pos"
msgid "Positio_n"
msgstr "Positio_n"
-#: cui/uiconfig/ui/swpossizepage.ui:565
+#: cui/uiconfig/ui/swpossizepage.ui:579
msgctxt "swpossizepage|size"
msgid "_Size"
msgstr "_Size"
-#: cui/uiconfig/ui/swpossizepage.ui:587
+#: cui/uiconfig/ui/swpossizepage.ui:601
msgctxt "swpossizepage|label3"
msgid "Protect"
msgstr "Protect"
@@ -11202,12 +11202,12 @@ msgctxt "textattrtabpage|label2"
msgid "Spacing to Borders"
msgstr "Spacing to Borders"
-#: cui/uiconfig/ui/textattrtabpage.ui:425
+#: cui/uiconfig/ui/textattrtabpage.ui:423
msgctxt "textattrtabpage|TSB_FULL_WIDTH"
msgid "Full _width"
msgstr "Full _width"
-#: cui/uiconfig/ui/textattrtabpage.ui:448
+#: cui/uiconfig/ui/textattrtabpage.ui:446
msgctxt "textattrtabpage|label3"
msgid "Text Anchor"
msgstr "Text Anchor"
diff --git a/source/en-GB/filter/source/config/fragments/filters.po b/source/en-GB/filter/source/config/fragments/filters.po
index b8eac4f69a8..0ce0ea7bffb 100644
--- a/source/en-GB/filter/source/config/fragments/filters.po
+++ b/source/en-GB/filter/source/config/fragments/filters.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-16 16:54+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2018-05-19 18:04+0000\n"
"Last-Translator: Stuart Swales <stuart.swales.croftnuisk@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -463,8 +463,8 @@ msgctxt ""
"MS Word 2003 XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Word 2003 XML"
-msgstr "Microsoft Word 2003 XML"
+msgid "Word 2003 XML"
+msgstr ""
#: MS_Word_2007_XML.xcu
msgctxt ""
@@ -1282,8 +1282,8 @@ msgctxt ""
"Calc MS Excel 2007 VBA XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Excel 2007-2016 XML (macro enabled)"
-msgstr "Microsoft Excel 2007-2016 XML (macro enabled)"
+msgid "Excel 2007–2019 (macro-enabled)"
+msgstr ""
#: calc_MS_Excel_2007_XML.xcu
msgctxt ""
diff --git a/source/en-GB/filter/source/config/fragments/types.po b/source/en-GB/filter/source/config/fragments/types.po
index 387b9e25c70..226d526293c 100644
--- a/source/en-GB/filter/source/config/fragments/types.po
+++ b/source/en-GB/filter/source/config/fragments/types.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-08 15:11+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2018-05-19 18:04+0000\n"
"Last-Translator: Stuart Swales <stuart.swales.croftnuisk@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1526753075.000000\n"
#: MS_Excel_2007_Binary.xcu
@@ -292,8 +292,8 @@ msgctxt ""
"writer_MS_Word_2003_XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Word 2003 XML"
-msgstr "Microsoft Word 2003 XML"
+msgid "Word 2003 XML"
+msgstr ""
#: writer_MS_Word_2007_XML.xcu
msgctxt ""
diff --git a/source/en-GB/fpicker/messages.po b/source/en-GB/fpicker/messages.po
index 5368ced1df8..4f98722a397 100644
--- a/source/en-GB/fpicker/messages.po
+++ b/source/en-GB/fpicker/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2018-04-23 16:08+0000\n"
"Last-Translator: Stuart Swales <stuart.swales.croftnuisk@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -272,13 +272,13 @@ msgstr "Encrypt with GPG key"
#: fpicker/uiconfig/ui/foldernamedialog.ui:8
msgctxt "foldernamedialog|FolderNameDialog"
-msgid "Folder Name ?"
-msgstr "Folder Name ?"
+msgid "Folder Name"
+msgstr ""
#: fpicker/uiconfig/ui/foldernamedialog.ui:91
msgctxt "foldernamedialog|label2"
-msgid "Na_me"
-msgstr "Na_me"
+msgid "Na_me:"
+msgstr ""
#: fpicker/uiconfig/ui/foldernamedialog.ui:122
msgctxt "foldernamedialog|label1"
diff --git a/source/en-GB/helpcontent2/source/text/shared/00.po b/source/en-GB/helpcontent2/source/text/shared/00.po
index 4b08aca3301..388de70053a 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2018-01-01 13:00+0000\n"
"Last-Translator: Stuart Swales <stuart.swales.croftnuisk@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -397,16 +397,16 @@ msgctxt ""
"00000001.xhp\n"
"hd_id3149670\n"
"help.text"
-msgid "Back"
-msgstr "Back"
+msgid "Reset"
+msgstr ""
#: 00000001.xhp
msgctxt ""
"00000001.xhp\n"
"par_id3145068\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optionsdialog/revert\">Resets modified values back to the $[officename] default values.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/optionsdialog/revert\">Resets modified values back to the $[officename] default values.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optionsdialog/revert\">Resets changes made to the current tab to those applicable when this dialog was opened.</ahelp>"
+msgstr ""
#: 00000001.xhp
msgctxt ""
@@ -552,6 +552,54 @@ msgctxt ""
msgid "<variable id=\"ShiftF1\">Press Shift+F1 and point to a control to learn more about that control.</variable>"
msgstr "<variable id=\"ShiftF1\">Press Shift+F1 and point to a control to learn more about that control.</variable>"
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"hd_id631527692833772\n"
+"help.text"
+msgid "Options dialog buttons"
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"hd_id831527692839432\n"
+"help.text"
+msgid "OK"
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"par_id471527692844934\n"
+"help.text"
+msgid "Save the changes in the page and close the Options dialog."
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"hd_id261527692850720\n"
+"help.text"
+msgid "Cancel"
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"par_id571527692855533\n"
+"help.text"
+msgid "Close the Options dialog and discard all changes done."
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"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 Options dialog."
+msgstr ""
+
#: 00000002.xhp
msgctxt ""
"00000002.xhp\n"
@@ -11125,16 +11173,16 @@ msgctxt ""
"00040502.xhp\n"
"par_id3151293\n"
"help.text"
-msgid "<variable id=\"linienstile\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Line Styles</emph> tab </variable>"
-msgstr "<variable id=\"linienstile\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Line Styles</emph> tab </variable>"
+msgid "<variable id=\"linienstile\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Line Styles</emph> tab</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3149317\n"
"help.text"
-msgid "<variable id=\"linienenden\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Arrow Styles</emph> tab </variable>"
-msgstr "<variable id=\"linienenden\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Arrow Styles</emph> tab </variable>"
+msgid "<variable id=\"linienenden\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Arrow Styles</emph> tab</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
@@ -11173,63 +11221,63 @@ msgctxt ""
"00040502.xhp\n"
"par_id3154948\n"
"help.text"
-msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Area</emph> tab"
-msgstr "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Area</emph> tab"
+msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Area</emph> tab."
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3145607\n"
"help.text"
-msgid "Choose <emph>View - Styles</emph> - open context menu and choose <emph>Modify/New - Area</emph> tab (presentation documents)"
-msgstr "Choose <emph>View - Styles</emph> - open context menu and choose <emph>Modify/New - Area</emph> tab (presentation documents)"
+msgid "Choose <emph>View - Styles</emph> - open context menu and choose <emph>Modify/New - Area</emph> tab (presentation documents)."
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3152922\n"
"help.text"
-msgid "Choose <emph>Format - Title - Area</emph> tab (chart documents)"
-msgstr "Choose <emph>Format - Title - Area</emph> tab (chart documents)"
+msgid "Choose <emph>Format - Title - Area</emph> tab (chart documents)."
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3157894\n"
"help.text"
-msgid "Choose <emph>Format - Legend - Area</emph> tab (chart documents)"
-msgstr "Choose <emph>Format - Legend - Area</emph> tab (chart documents)"
+msgid "Choose <emph>Format - Legend - Area</emph> tab (chart documents)."
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3144444\n"
"help.text"
-msgid "Choose <emph>Format - Chart Wall - Area</emph> tab (chart documents)"
-msgstr "Choose <emph>Format - Chart Wall - Area</emph> tab (chart documents)"
+msgid "Choose <emph>Format - Chart Wall - Area</emph> tab (chart documents)."
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3156543\n"
"help.text"
-msgid "Choose <emph>Format - Chart Floor - Area</emph> tab (chart documents)"
-msgstr "Choose <emph>Format - Chart Floor - Area</emph> tab (chart documents)"
+msgid "Choose <emph>Format - Chart Floor - Area</emph> tab (chart documents)."
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3150685\n"
"help.text"
-msgid "Choose <emph>Format - Chart Area - Area</emph> tab (chart documents)"
-msgstr "Choose <emph>Format - Chart Area - Area</emph> tab (chart documents)"
+msgid "Choose <emph>Format - Chart Area - Area</emph> tab (chart documents)."
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3149664\n"
"help.text"
-msgid "Choose <emph>Slide - Properties - Background</emph> tab (in $[officename] Impress)"
+msgid "Choose <emph>Slide - Properties - Background</emph> tab (in $[officename] Impress)."
msgstr ""
#: 00040502.xhp
@@ -11237,7 +11285,15 @@ msgctxt ""
"00040502.xhp\n"
"par_id9149694\n"
"help.text"
-msgid "Choose <emph>Page - Properties - Background</emph> tab (in $[officename] Draw)"
+msgid "Choose <emph>Page - Properties - Background</emph> tab (in $[officename] Draw)."
+msgstr ""
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id841527083135387\n"
+"help.text"
+msgid "Choose <emph>Table - Properties - Background</emph> tab."
msgstr ""
#: 00040502.xhp
@@ -11349,32 +11405,32 @@ msgctxt ""
"00040502.xhp\n"
"par_id3150011\n"
"help.text"
-msgid "<variable id=\"schatte\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Shadow</emph> tab </variable>"
-msgstr "<variable id=\"schatte\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Shadow</emph> tab </variable>"
+msgid "<variable id=\"schatte\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Shadow</emph> tab</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3147441\n"
"help.text"
-msgid "<variable id=\"verlauf\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Gradients</emph> tab </variable>"
-msgstr "<variable id=\"verlauf\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Gradients</emph> tab </variable>"
+msgid "<variable id=\"verlauf\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Gradients</emph> tab</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3155308\n"
"help.text"
-msgid "<variable id=\"schraffur\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Hatching</emph> tab </variable>"
-msgstr "<variable id=\"schraffur\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Hatching</emph> tab </variable>"
+msgid "<variable id=\"schraffur\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Hatching</emph> tab</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3145800\n"
"help.text"
-msgid "<variable id=\"bitmap\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Bitmaps</emph> tab </variable>"
-msgstr "<variable id=\"bitmap\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Bitmaps</emph> tab </variable>"
+msgid "<variable id=\"bitmap\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Bitmaps</emph> tab</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
@@ -11413,8 +11469,8 @@ msgctxt ""
"00040502.xhp\n"
"par_id3156286\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F4 key </caseinline><caseinline select=\"IMPRESS\">F4 key </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F4 key </caseinline><caseinline select=\"IMPRESS\">F4 key </caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F4 key</caseinline><caseinline select=\"IMPRESS\">F4 key</caseinline></switchinline>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
@@ -11453,8 +11509,8 @@ msgctxt ""
"00040502.xhp\n"
"par_id3153099\n"
"help.text"
-msgid "<variable id=\"position2\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Position and Size</emph> tab </variable>"
-msgstr "<variable id=\"position2\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Position and Size</emph> tab </variable>"
+msgid "<variable id=\"position2\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Position and Size</emph> tab</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
@@ -11485,16 +11541,16 @@ msgctxt ""
"00040502.xhp\n"
"par_id3145666\n"
"help.text"
-msgid "<variable id=\"ecke\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Slant & Corner Radius</emph> tab </variable>"
-msgstr "<variable id=\"ecke\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Slant & Corner Radius</emph> tab </variable>"
+msgid "<variable id=\"ecke\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Slant & Corner Radius</emph> tab</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3146081\n"
"help.text"
-msgid "<variable id=\"legende\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Callout</emph> tab (only for textbox callouts, not for custom shapes callouts) </variable>"
-msgstr "<variable id=\"legende\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Legend</emph> tab (only for text box callouts, not for custom shapes callouts) </variable>"
+msgid "<variable id=\"legende\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Callout</emph> tab (only for textbox callouts, not for custom shapes callouts)</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
@@ -11517,8 +11573,8 @@ msgctxt ""
"00040502.xhp\n"
"par_id3149019\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F8 key </caseinline><caseinline select=\"IMPRESS\">F8 key </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F8 key </caseinline><caseinline select=\"IMPRESS\">F8 key </caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F8 key</caseinline><caseinline select=\"IMPRESS\">F8 key</caseinline></switchinline>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
@@ -11805,8 +11861,8 @@ msgctxt ""
"00040502.xhp\n"
"par_id3153076\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Align Center Horizontally </caseinline><defaultinline>Centered</defaultinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Align Centre Horizontally </caseinline><defaultinline>Centred</defaultinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Align Center Horizontally</caseinline><defaultinline>Centered</defaultinline></switchinline>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
@@ -11845,8 +11901,8 @@ msgctxt ""
"00040502.xhp\n"
"par_id3150527\n"
"help.text"
-msgid "<variable id=\"font\">Click <emph>Fontwork</emph> icon on <emph>Drawing</emph> bar </variable>"
-msgstr "<variable id=\"font\">Click <emph>Fontwork</emph> icon on <emph>Drawing</emph> bar </variable>"
+msgid "<variable id=\"font\">Click <emph>Fontwork</emph> icon on <emph>Drawing</emph> bar</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
diff --git a/source/en-GB/helpcontent2/source/text/shared/01.po b/source/en-GB/helpcontent2/source/text/shared/01.po
index d7ddbdb92e2..46763a6daac 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: 2018-05-23 23:19+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2018-01-15 22:27+0000\n"
"Last-Translator: Stuart Swales <stuart.swales.croftnuisk@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -23587,6 +23587,22 @@ msgstr "You can add custom colours, gradients, hatchings, two-colour patterns an
#: 05210100.xhp
msgctxt ""
"05210100.xhp\n"
+"hd_id471527077476052\n"
+"help.text"
+msgid "Cell, Row or Table background selector"
+msgstr ""
+
+#: 05210100.xhp
+msgctxt ""
+"05210100.xhp\n"
+"par_id661527077493366\n"
+"help.text"
+msgid "Select the table object which background area is to be filled."
+msgstr ""
+
+#: 05210100.xhp
+msgctxt ""
+"05210100.xhp\n"
"hd_id3147373\n"
"help.text"
msgid "None"
@@ -31205,24 +31221,24 @@ msgctxt ""
"06040100.xhp\n"
"hd_id3145072\n"
"help.text"
-msgid "Automatic *bold* and _underline_"
-msgstr "Automatic *bold* and _underline_"
+msgid "Automatic *bold*, /italic/, -strikeout- and _underline_"
+msgstr ""
#: 06040100.xhp
msgctxt ""
"06040100.xhp\n"
"par_id3153577\n"
"help.text"
-msgid "Automatically applies bold formatting to text enclosed by asterisks (*), and underline to text enclosed by underscores ( _ ), for example, *bold*. The asterisks and underscores are not displayed after the formatting is applied."
-msgstr "Automatically applies bold formatting to text enclosed by asterisks (*), and underling to text enclosed by underscores ( _ ), for example, *bold*. The asterisks and underscores are not displayed after the formatting is applied."
+msgid "Automatically applies bold, italic, strikethrough or underline formatting to text enclosed by asterisks (*), slashes (/), hyphens (-), and underscores (_), respectively. These characters disappear after the formatting is applied."
+msgstr ""
#: 06040100.xhp
msgctxt ""
"06040100.xhp\n"
"par_id3153127\n"
"help.text"
-msgid "This feature does not work if the formatting characters * or _ are entered with an <link href=\"text/shared/00/00000005.xhp#IME\" name=\"Input Method Editor\">Input Method Editor</link>."
-msgstr "This feature does not work if the formatting characters * or _ are entered with an <link href=\"text/shared/00/00000005.xhp#IME\" name=\"Input Method Editor\">Input Method Editor</link>."
+msgid "This feature does not work if the formatting characters <item type=\"literal\">* / - _</item> are entered with an <link href=\"text/shared/00/00000005.xhp#IME\" name=\"Input Method Editor\">Input Method Editor</link>."
+msgstr ""
#: 06040100.xhp
msgctxt ""
diff --git a/source/en-GB/helpcontent2/source/text/shared/optionen.po b/source/en-GB/helpcontent2/source/text/shared/optionen.po
index 57b70bbc2c3..3eee44c77a1 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: 2018-05-08 15:10+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2018-01-01 13:01+0000\n"
"Last-Translator: Stuart Swales <stuart.swales.croftnuisk@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -83,6 +83,22 @@ msgstr "Note for macOS users: The Help mentions the menu path Tools - Options at
#: 01000000.xhp
msgctxt ""
"01000000.xhp\n"
+"hd_id551527692881035\n"
+"help.text"
+msgid "Help"
+msgstr ""
+
+#: 01000000.xhp
+msgctxt ""
+"01000000.xhp\n"
+"par_id831527692885723\n"
+"help.text"
+msgid "Opens the help contents for the Options page displayed."
+msgstr ""
+
+#: 01000000.xhp
+msgctxt ""
+"01000000.xhp\n"
"hd_id3159149\n"
"help.text"
msgid "<link href=\"text/shared/optionen/01010000.xhp\" name=\"$[officename]\">%PRODUCTNAME</link>"
@@ -4565,8 +4581,8 @@ msgctxt ""
"01030300.xhp\n"
"par_idN10640\n"
"help.text"
-msgid "Options"
-msgstr "Options"
+msgid "Security Options and Warnings"
+msgstr ""
#: 01030300.xhp
msgctxt ""
@@ -4597,8 +4613,8 @@ msgctxt ""
"01030300.xhp\n"
"hd_id3168736\n"
"help.text"
-msgid "Persistently save passwords protected by a master password"
-msgstr "Persistently save passwords protected by a master password"
+msgid "Persistently save passwords for web connections"
+msgstr ""
#: 01030300.xhp
msgctxt ""
@@ -4613,8 +4629,24 @@ msgctxt ""
"01030300.xhp\n"
"hd_id3901791\n"
"help.text"
+msgid "Protected by a master password (recommended)"
+msgstr ""
+
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"par_id31527711486980\n"
+"help.text"
+msgid "Check to enable all connections' passwords to be protected by a master password."
+msgstr ""
+
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"hd_id141527711343312\n"
+"help.text"
msgid "Master Password"
-msgstr "Master Password"
+msgstr ""
#: 01030300.xhp
msgctxt ""
@@ -13733,8 +13765,8 @@ msgctxt ""
"java.xhp\n"
"hd_id3148618\n"
"help.text"
-msgid "Optional (unstable) options"
-msgstr "Optional (unstable) options"
+msgid "Optional Features"
+msgstr ""
#: java.xhp
msgctxt ""
@@ -13749,8 +13781,8 @@ msgctxt ""
"java.xhp\n"
"par_id3156344\n"
"help.text"
-msgid "It enables features that are not yet complete or contain known bugs. The list of these features is different version by version, or even it can be empty."
-msgstr "It enables features that are not yet complete or contain known bugs. The list of these features is different version by version, or even it can be empty."
+msgid "Enables features that are not yet complete or may contain known bugs. The list of these features is different version by version, or even it can be empty."
+msgstr ""
#: java.xhp
msgctxt ""
@@ -13765,8 +13797,8 @@ msgctxt ""
"java.xhp\n"
"par_id3156345\n"
"help.text"
-msgid "It enables macro recording, so the <link href=\"text/shared/guide/macro_recording.xhp\" name=\"Tools - Macros - Record Macro\"><item type=\"menuitem\">Tools - Macros - Record Macro</item></link> menu item will be available."
-msgstr "It enables macro recording, so the <link href=\"text/shared/guide/macro_recording.xhp\" name=\"Tools - Macros - Record Macro\"><item type=\"menuitem\">Tools - Macros - Record Macro</item></link> menu item will be available."
+msgid "Enables macro recording. The <link href=\"text/shared/guide/macro_recording.xhp\" name=\"Tools - Macros - Record Macro\"><item type=\"menuitem\">Tools - Macros - Record Macro</item></link> menu item is available."
+msgstr ""
#: java.xhp
msgctxt ""
diff --git a/source/en-GB/officecfg/registry/data/org/openoffice/Office/UI.po b/source/en-GB/officecfg/registry/data/org/openoffice/Office/UI.po
index 45d6443b785..fa0efcfaeb9 100644
--- a/source/en-GB/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/en-GB/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-22 13:17+0200\n"
-"PO-Revision-Date: 2018-05-19 18:04+0000\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
+"PO-Revision-Date: 2018-05-31 11:34+0000\n"
"Last-Translator: Stuart Swales <stuart.swales.croftnuisk@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: en_GB\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1526753089.000000\n"
+"X-POOTLE-MTIME: 1527766466.000000\n"
#: BaseWindowState.xcu
msgctxt ""
@@ -149,7 +149,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Form Horizontal Scroll Bar"
-msgstr ""
+msgstr "Form Horizontal Scroll Bar"
#: BasicIDECommands.xcu
msgctxt ""
@@ -25342,7 +25342,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Tabbed"
-msgstr ""
+msgstr "Tabbed"
#: ToolbarMode.xcu
msgctxt ""
@@ -25351,7 +25351,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Groupedbar Compact"
-msgstr ""
+msgstr "Groupedbar Compact"
#: ToolbarMode.xcu
msgctxt ""
@@ -25360,7 +25360,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Groupedbar"
-msgstr ""
+msgstr "Groupedbar"
#: ToolbarMode.xcu
msgctxt ""
@@ -26520,8 +26520,8 @@ msgctxt ""
"..WriterCommands.UserInterface.Commands..uno:TextAttributes\n"
"Label\n"
"value.text"
-msgid "Text Attributes"
-msgstr "Text Attributes"
+msgid "Text Attributes..."
+msgstr ""
#: WriterCommands.xcu
msgctxt ""
@@ -27412,7 +27412,7 @@ msgctxt ""
"PopupLabel\n"
"value.text"
msgid "Edit F~ields..."
-msgstr ""
+msgstr "Edit F~ields..."
#: WriterCommands.xcu
msgctxt ""
@@ -29410,7 +29410,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Clone"
-msgstr ""
+msgstr "Clone"
#: WriterCommands.xcu
msgctxt ""
@@ -29419,7 +29419,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Clone Formatting"
-msgstr ""
+msgstr "Clone Formatting"
#: WriterCommands.xcu
msgctxt ""
@@ -29428,7 +29428,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Clone Formatting (double click and Ctrl or Cmd to alter behavior)"
-msgstr ""
+msgstr "Clone Formatting (double click and Ctrl or Cmd to alter behavior)"
#: WriterCommands.xcu
msgctxt ""
@@ -29527,7 +29527,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Word Count..."
-msgstr ""
+msgstr "~Word Count..."
#: WriterCommands.xcu
msgctxt ""
diff --git a/source/en-GB/readlicense_oo/docs.po b/source/en-GB/readlicense_oo/docs.po
index 95437c73c3d..b4f688c9402 100644
--- a/source/en-GB/readlicense_oo/docs.po
+++ b/source/en-GB/readlicense_oo/docs.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: 2018-04-17 15:54+0200\n"
-"PO-Revision-Date: 2017-11-15 23:03+0000\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
+"PO-Revision-Date: 2018-05-31 11:35+0000\n"
"Last-Translator: Stuart Swales <stuart.swales.croftnuisk@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: en_GB\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1510787002.000000\n"
+"X-POOTLE-MTIME: 1527766547.000000\n"
#: readme.xrm
msgctxt ""
@@ -30,7 +30,7 @@ msgctxt ""
"LatestUpdates\n"
"readmeitem.text"
msgid "For the latest updates to this readme file, see <a href=\"https://www.libreoffice.org/welcome/readme.html\">https://www.libreoffice.org/welcome/readme.html</a>"
-msgstr ""
+msgstr "For the latest updates to this readme file, see <a href=\"https://www.libreoffice.org/welcome/readme.html\">https://www.libreoffice.org/welcome/readme.html</a>"
#: readme.xrm
msgctxt ""
@@ -46,7 +46,7 @@ msgctxt ""
"A7\n"
"readmeitem.text"
msgid "The ${PRODUCTNAME} community is responsible for the development of this product, and invites you to consider participating as a community member. If you are a new user, you can visit the ${PRODUCTNAME} site, where you will find lots of information about the ${PRODUCTNAME} project and the communities that exist around it. Go to <a href=\"https://www.libreoffice.org/\">https://www.libreoffice.org/</a>."
-msgstr ""
+msgstr "The ${PRODUCTNAME} community is responsible for the development of this product, and invites you to consider participating as a community member. If you are a new user, you can visit the ${PRODUCTNAME} site, where you will find lots of information about the ${PRODUCTNAME} project and the communities that exist around it. Go to <a href=\"https://www.libreoffice.org/\">https://www.libreoffice.org/</a>."
#: readme.xrm
msgctxt ""
@@ -86,7 +86,7 @@ msgctxt ""
"A13b\n"
"readmeitem.text"
msgid "If you appreciate their efforts, and would like to ensure that ${PRODUCTNAME} continues to be available far into the future, please consider contributing to the project - see <a href=\"https://www.documentfoundation.org/contribution/\">https://www.documentfoundation.org/contribution/</a> for details. Everyone can make a contribution of some kind."
-msgstr ""
+msgstr "If you appreciate their efforts, and would like to ensure that ${PRODUCTNAME} continues to be available far into the future, please consider contributing to the project - see <a href=\"https://www.documentfoundation.org/contribution/\">https://www.documentfoundation.org/contribution/</a> for details. Everyone can make a contribution of some kind."
#: readme.xrm
msgctxt ""
@@ -117,8 +117,8 @@ msgctxt ""
"readme.xrm\n"
"macxiOSX\n"
"readmeitem.text"
-msgid "MacOSX 10.8 (Mountain Lion) or higher"
-msgstr "MacOSX 10.8 (Mountain Lion) or higher"
+msgid "MacOSX 10.9 (Mavericks) or higher"
+msgstr ""
#: readme.xrm
msgctxt ""
@@ -126,7 +126,7 @@ msgctxt ""
"s2s3sdf21\n"
"readmeitem.text"
msgid "Microsoft Windows 7 SP1, 8, 8.1 Update (S14) or 10"
-msgstr ""
+msgstr "Microsoft Windows 7 SP1, 8, 8.1 Update (S14) or 10"
#: readme.xrm
msgctxt ""
@@ -406,7 +406,7 @@ msgctxt ""
"otherinstall2\n"
"readmeitem.text"
msgid "The RPMS (or DEBS, respectively) directory also contains a package named libreoffice${PRODUCTVERSION}-freedesktop-menus-${PRODUCTVERSION}.0.1-1.noarch.rpm (or libreoffice${PRODUCTVERSION}-debian-menus_${PRODUCTVERSION}.0.1-1_all.deb, respectively, or similar). This is a package for all Linux distributions that support the Freedesktop.org specifications/recommendations (<a href=\"https://en.wikipedia.org/wiki/Freedesktop.org\">https://en.wikipedia.org/wiki/Freedesktop.org</a>), and is provided for installation on other Linux distributions not covered in the aforementioned instructions."
-msgstr ""
+msgstr "The RPMS (or DEBS, respectively) directory also contains a package named libreoffice${PRODUCTVERSION}-freedesktop-menus-${PRODUCTVERSION}.0.1-1.noarch.rpm (or libreoffice${PRODUCTVERSION}-debian-menus_${PRODUCTVERSION}.0.1-1_all.deb, respectively, or similar). This is a package for all Linux distributions that support the Freedesktop.org specifications/recommendations (<a href=\"https://en.wikipedia.org/wiki/Freedesktop.org\">https://en.wikipedia.org/wiki/Freedesktop.org</a>), and is provided for installation on other Linux distributions not covered in the aforementioned instructions."
#: readme.xrm
msgctxt ""
@@ -646,7 +646,7 @@ msgctxt ""
"pji76w1\n"
"readmeitem.text"
msgid "When sending a document via 'File - Send - Document as E-mail' or 'Document as PDF Attachment' problems might occur (program crashes or hangs). This is due to the Windows system file \"Mapi\" (Messaging Application Programming Interface) which causes problems in some file versions. Unfortunately, the problem cannot be narrowed down to a certain version number. For more information visit <a href=\"https://www.microsoft.com\">https://www.microsoft.com</a> to search the Microsoft Knowledge Base for \"mapi dll\"."
-msgstr ""
+msgstr "When sending a document via 'File - Send - Document as E-mail' or 'Document as PDF Attachment' problems might occur (program crashes or hangs). This is due to the Windows system file \"Mapi\" (Messaging Application Programming Interface) which causes problems in some file versions. Unfortunately, the problem cannot be narrowed down to a certain version number. For more information visit <a href=\"https://www.microsoft.com\">https://www.microsoft.com</a> to search the Microsoft Knowledge Base for \"mapi dll\"."
#: readme.xrm
msgctxt ""
@@ -662,7 +662,7 @@ msgctxt ""
"access7\n"
"readmeitem.text"
msgid "For more information on the accessibility features in ${PRODUCTNAME}, see <a href=\"https://www.libreoffice.org/accessibility/\">https://www.libreoffice.org/accessibility/</a>"
-msgstr ""
+msgstr "For more information on the accessibility features in ${PRODUCTNAME}, see <a href=\"https://www.libreoffice.org/accessibility/\">https://www.libreoffice.org/accessibility/</a>"
#: readme.xrm
msgctxt ""
@@ -678,7 +678,7 @@ msgctxt ""
"support1\n"
"readmeitem.text"
msgid "The <a href=\"https://www.libreoffice.org/get-help/community-support/\">main support page</a> offers various possibilities for help with ${PRODUCTNAME}. Your question may have already been answered - check the Community Forum at <a href=\"https://www.documentfoundation.org/nabble/\">https://www.documentfoundation.org/nabble/</a> or search the archives of the 'users@libreoffice.org' mailing list at <a href=\"https://www.libreoffice.org/lists/users/\">https://www.libreoffice.org/lists/users/</a>. Alternatively, you can send in your questions to <a href=\"mailto:users@libreoffice.org\">users@libreoffice.org</a>. If you like to subscribe to the list (to get email responses), send an empty mail to: <a href=\"mailto:users+subscribe@libreoffice.org\">users+subscribe@libreoffice.org</a>."
-msgstr ""
+msgstr "The <a href=\"https://www.libreoffice.org/get-help/community-support/\">main support page</a> offers various possibilities for help with ${PRODUCTNAME}. Your question may have already been answered - check the Community Forum at <a href=\"https://www.documentfoundation.org/nabble/\">https://www.documentfoundation.org/nabble/</a> or search the archives of the 'users@libreoffice.org' mailing list at <a href=\"https://www.libreoffice.org/lists/users/\">https://www.libreoffice.org/lists/users/</a>. Alternatively, you can send in your questions to <a href=\"mailto:users@libreoffice.org\">users@libreoffice.org</a>. If you like to subscribe to the list (to get email responses), send an empty mail to: <a href=\"mailto:users+subscribe@libreoffice.org\">users+subscribe@libreoffice.org</a>."
#: readme.xrm
msgctxt ""
@@ -686,7 +686,7 @@ msgctxt ""
"faq\n"
"readmeitem.text"
msgid "Also check the FAQ section at <a href=\"https://www.libreoffice.org/get-help/frequently-asked-questions/\">the LibreOffice website</a>."
-msgstr ""
+msgstr "Also check the FAQ section at <a href=\"https://www.libreoffice.org/get-help/frequently-asked-questions/\">the LibreOffice website</a>."
#: readme.xrm
msgctxt ""
@@ -702,7 +702,7 @@ msgctxt ""
"reportbugs1\n"
"readmeitem.text"
msgid "Our system for reporting, tracking and solving bugs is currently Bugzilla, hosted at <a href=\"http://bugs.documentfoundation.org/\">http://bugs.documentfoundation.org/</a>. We encourage all users to feel entitled and welcome to report bugs that may arise on your particular platform. Energetic reporting of bugs is one of the most important contributions that the user community can make to the ongoing development and improvement of ${PRODUCTNAME}."
-msgstr ""
+msgstr "Our system for reporting, tracking and solving bugs is currently Bugzilla, hosted at <a href=\"http://bugs.documentfoundation.org/\">http://bugs.documentfoundation.org/</a>. We encourage all users to feel entitled and welcome to report bugs that may arise on your particular platform. Energetic reporting of bugs is one of the most important contributions that the user community can make to the ongoing development and improvement of ${PRODUCTNAME}."
#: readme.xrm
msgctxt ""
@@ -726,7 +726,7 @@ msgctxt ""
"gettingimvolved3\n"
"readmeitem.text"
msgid "As a user, you are already a valuable part of the suite's development process and we would like to encourage you to take an even more active role with a view to being a long-term contributor to the community. Please join and check out the contributing page at <a href=\"https://www.libreoffice.org/community/get-involved/\">the LibreOffice website</a>."
-msgstr ""
+msgstr "As a user, you are already a valuable part of the suite's development process and we would like to encourage you to take an even more active role with a view to being a long-term contributor to the community. Please join and check out the contributing page at <a href=\"https://www.libreoffice.org/community/get-involved/\">the LibreOffice website</a>."
#: readme.xrm
msgctxt ""
@@ -742,7 +742,7 @@ msgctxt ""
"howtostart1\n"
"readmeitem.text"
msgid "The best way to start contributing is to subscribe to one or more of the mailing lists, lurk for a while, and gradually use the mail archives to familiarize yourself with many of the topics covered since the ${PRODUCTNAME} source code was released back in October 2000. When you're comfortable, all you need to do is send an email self-introduction and jump right in. If you are familiar with Open Source Projects, check out our To-Dos list and see if there is anything you would like to help with at <a href=\"https://www.libreoffice.org/community/developers/\">the LibreOffice website</a>."
-msgstr ""
+msgstr "The best way to start contributing is to subscribe to one or more of the mailing lists, lurk for a while, and gradually use the mail archives to familiarize yourself with many of the topics covered since the ${PRODUCTNAME} source code was released back in October 2000. When you're comfortable, all you need to do is send an email self-introduction and jump right in. If you are familiar with Open Source Projects, check out our To-Dos list and see if there is anything you would like to help with at <a href=\"https://www.libreoffice.org/community/developers/\">the LibreOffice website</a>."
#: readme.xrm
msgctxt ""
@@ -758,7 +758,7 @@ msgctxt ""
"subscribe1\n"
"readmeitem.text"
msgid "Here are a few of the mailing lists to which you can subscribe at <a href=\"https://www.libreoffice.org/get-help/mailing-lists/\">https://www.libreoffice.org/get-help/mailing-lists/</a>"
-msgstr ""
+msgstr "Here are a few of the mailing lists to which you can subscribe at <a href=\"https://www.libreoffice.org/get-help/mailing-lists/\">https://www.libreoffice.org/get-help/mailing-lists/</a>"
#: readme.xrm
msgctxt ""
diff --git a/source/en-GB/sc/messages.po b/source/en-GB/sc/messages.po
index 02fac3523ee..613a2d45f5a 100644
--- a/source/en-GB/sc/messages.po
+++ b/source/en-GB/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: 2018-05-22 13:16+0200\n"
-"PO-Revision-Date: 2018-01-19 11:43+0000\n"
+"POT-Creation-Date: 2018-06-12 14:40+0200\n"
+"PO-Revision-Date: 2018-05-31 11:38+0000\n"
"Last-Translator: Stuart Swales <stuart.swales.croftnuisk@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: en_GB\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1516362236.000000\n"
+"X-POOTLE-MTIME: 1527766723.000000\n"
#: sc/inc/compiler.hrc:27
msgctxt "RID_FUNCTION_CATEGORIES"
@@ -390,7 +390,7 @@ msgstr "Original Size"
#: sc/inc/globstr.hrc:96
msgctxt "STR_UNDO_FITCELLSIZE"
msgid "Fit to Cell Size"
-msgstr ""
+msgstr "Fit to Cell Size"
#: sc/inc/globstr.hrc:97
msgctxt "STR_UNDO_UPDATELINK"
@@ -1540,7 +1540,7 @@ msgstr "on"
#: sc/inc/globstr.hrc:328
msgctxt "STR_RELOAD_TABLES"
msgid "Automatic update of external links has been disabled."
-msgstr ""
+msgstr "Automatic update of external links has been disabled."
#: sc/inc/globstr.hrc:329
msgctxt "STR_REIMPORT_AFTER_LOAD"
@@ -1870,16 +1870,21 @@ msgid "Nested arrays are not supported."
msgstr "Nested arrays are not supported."
#: sc/inc/globstr.hrc:390
+msgctxt "STR_ERR_LONG_BAD_ARRAY_CONTENT"
+msgid "Unsupported inline array content."
+msgstr ""
+
+#: sc/inc/globstr.hrc:391
msgctxt "STR_UNDO_TEXTTOCOLUMNS"
msgid "Text to Columns"
msgstr "Text to Columns"
-#: sc/inc/globstr.hrc:391
+#: sc/inc/globstr.hrc:392
msgctxt "STR_DOC_UPDATED"
msgid "Your spreadsheet has been updated with changes saved by other users."
msgstr "Your spreadsheet has been updated with changes saved by other users."
-#: sc/inc/globstr.hrc:392
+#: sc/inc/globstr.hrc:393
msgctxt "STR_DOC_WILLBESAVED"
msgid ""
"The spreadsheet must be saved now to activate sharing mode.\n"
@@ -1890,7 +1895,7 @@ msgstr ""
"\n"
"Do you want to continue?"
-#: sc/inc/globstr.hrc:393
+#: sc/inc/globstr.hrc:394
msgctxt "STR_DOC_WILLNOTBESAVED"
msgid ""
"Already resolved merge conflicts will be lost and your changes to the shared spreadsheet will not be saved.\n"
@@ -1901,7 +1906,7 @@ msgstr ""
"\n"
"Do you want to continue?"
-#: sc/inc/globstr.hrc:394
+#: sc/inc/globstr.hrc:395
msgctxt "STR_DOC_DISABLESHARED"
msgid ""
"Disabling shared mode of a spreadsheet hinders all other users of the shared spreadsheet to merge back their work.\n"
@@ -1912,7 +1917,7 @@ msgstr ""
"\n"
"Do you want to continue?"
-#: sc/inc/globstr.hrc:395
+#: sc/inc/globstr.hrc:396
msgctxt "STR_DOC_NOLONGERSHARED"
msgid ""
"This spreadsheet is no longer in shared mode.\n"
@@ -1923,7 +1928,7 @@ msgstr ""
"\n"
"Save your spreadsheet to a separate file and merge your changes to the shared spreadsheet manually."
-#: sc/inc/globstr.hrc:396
+#: sc/inc/globstr.hrc:397
msgctxt "STR_FILE_LOCKED_TRY_LATER"
msgid ""
"The shared spreadsheet file is locked due to a merge in progress by user: '%1'\n"
@@ -1934,7 +1939,7 @@ msgstr ""
"\n"
"Sharing mode of a locked file cannot be disabled. Try again later."
-#: sc/inc/globstr.hrc:397
+#: sc/inc/globstr.hrc:398
msgctxt "STR_FILE_LOCKED_SAVE_LATER"
msgid ""
"The shared spreadsheet file is locked due to a merge in progress by user: '%1'\n"
@@ -1945,147 +1950,147 @@ msgstr ""
"\n"
"Try again later to save your changes."
-#: sc/inc/globstr.hrc:398
+#: sc/inc/globstr.hrc:399
msgctxt "STR_UNKNOWN_USER"
msgid "Unknown User"
msgstr "Unknown User"
-#: sc/inc/globstr.hrc:399
+#: sc/inc/globstr.hrc:400
msgctxt "STR_SHAPE_AUTOSHAPE"
msgid "AutoShape"
msgstr "AutoShape"
-#: sc/inc/globstr.hrc:400
+#: sc/inc/globstr.hrc:401
msgctxt "STR_SHAPE_RECTANGLE"
msgid "Rectangle"
msgstr "Rectangle"
-#: sc/inc/globstr.hrc:401
+#: sc/inc/globstr.hrc:402
msgctxt "STR_SHAPE_LINE"
msgid "Line"
msgstr "Line"
-#: sc/inc/globstr.hrc:402
+#: sc/inc/globstr.hrc:403
msgctxt "STR_SHAPE_OVAL"
msgid "Oval"
msgstr "Oval"
-#: sc/inc/globstr.hrc:403
+#: sc/inc/globstr.hrc:404
msgctxt "STR_FORM_BUTTON"
msgid "Button"
msgstr "Button"
-#: sc/inc/globstr.hrc:404
+#: sc/inc/globstr.hrc:405
msgctxt "STR_FORM_CHECKBOX"
msgid "Check Box"
msgstr "Check Box"
-#: sc/inc/globstr.hrc:405
+#: sc/inc/globstr.hrc:406
msgctxt "STR_FORM_OPTIONBUTTON"
msgid "Option Button"
msgstr "Option Button"
-#: sc/inc/globstr.hrc:406
+#: sc/inc/globstr.hrc:407
msgctxt "STR_FORM_LABEL"
msgid "Label"
msgstr "Label"
-#: sc/inc/globstr.hrc:407
+#: sc/inc/globstr.hrc:408
msgctxt "STR_FORM_LISTBOX"
msgid "List Box"
msgstr "List Box"
-#: sc/inc/globstr.hrc:408
+#: sc/inc/globstr.hrc:409
msgctxt "STR_FORM_GROUPBOX"
msgid "Group Box"
msgstr "Group Box"
-#: sc/inc/globstr.hrc:409
+#: sc/inc/globstr.hrc:410
msgctxt "STR_FORM_DROPDOWN"
msgid "Drop Down"
msgstr "Drop Down"
-#: sc/inc/globstr.hrc:410
+#: sc/inc/globstr.hrc:411
msgctxt "STR_FORM_SPINNER"
msgid "Spinner"
msgstr "Spinner"
-#: sc/inc/globstr.hrc:411
+#: sc/inc/globstr.hrc:412
msgctxt "STR_FORM_SCROLLBAR"
msgid "Scroll Bar"
msgstr "Scroll Bar"
-#: sc/inc/globstr.hrc:412
+#: sc/inc/globstr.hrc:413
msgctxt "STR_STYLE_FAMILY_CELL"
msgid "Cell Styles"
msgstr "Cell Styles"
-#: sc/inc/globstr.hrc:413
+#: sc/inc/globstr.hrc:414
msgctxt "STR_STYLE_FAMILY_PAGE"
msgid "Page Styles"
msgstr "Page Styles"
-#: sc/inc/globstr.hrc:414
+#: sc/inc/globstr.hrc:415
msgctxt "STR_ERR_DATAPILOTSOURCE"
msgid "Pivot table source data is invalid."
msgstr "Pivot table source data is invalid."
-#: sc/inc/globstr.hrc:415
+#: sc/inc/globstr.hrc:416
msgctxt "STR_OPTIONS_WARN_SEPARATORS"
msgid "Because the current formula separator settings conflict with the locale, the formula separators have been reset to their default values."
msgstr "Because the current formula separator settings conflict with the locale, the formula separators have been reset to their default values."
-#: sc/inc/globstr.hrc:416
+#: sc/inc/globstr.hrc:417
msgctxt "STR_UNDO_INSERT_CURRENT_DATE"
msgid "Insert Current Date"
msgstr "Insert Current Date"
-#: sc/inc/globstr.hrc:417
+#: sc/inc/globstr.hrc:418
msgctxt "STR_UNDO_INSERT_CURRENT_TIME"
msgid "Insert Current Time"
msgstr "Insert Current Time"
-#: sc/inc/globstr.hrc:418
+#: sc/inc/globstr.hrc:419
msgctxt "STR_MANAGE_NAMES"
msgid "Manage Names..."
msgstr "Manage Names..."
-#: sc/inc/globstr.hrc:419
+#: sc/inc/globstr.hrc:420
msgctxt "STR_HEADER_NAME"
msgid "Name"
msgstr "Name"
-#: sc/inc/globstr.hrc:420
+#: sc/inc/globstr.hrc:421
msgctxt "STR_HEADER_RANGE_OR_EXPR"
msgid "Range or formula expression"
msgstr "Range or formula expression"
-#: sc/inc/globstr.hrc:421
+#: sc/inc/globstr.hrc:422
msgctxt "STR_HEADER_SCOPE"
msgid "Scope"
msgstr "Scope"
-#: sc/inc/globstr.hrc:422
+#: sc/inc/globstr.hrc:423
msgctxt "STR_MULTI_SELECT"
msgid "(multiple)"
msgstr "(multiple)"
-#: sc/inc/globstr.hrc:423
+#: sc/inc/globstr.hrc:424
msgctxt "STR_GLOBAL_SCOPE"
msgid "Document (Global)"
msgstr "Document (Global)"
-#: sc/inc/globstr.hrc:424
+#: sc/inc/globstr.hrc:425
msgctxt "STR_ERR_NAME_EXISTS"
msgid "Invalid name. Already in use for the selected scope."
msgstr "Invalid name. Already in use for the selected scope."
-#: sc/inc/globstr.hrc:425
+#: sc/inc/globstr.hrc:426
msgctxt "STR_ERR_NAME_INVALID"
msgid "Invalid name. Only use letters, numbers and underscore."
msgstr "Invalid name. Only use letters, numbers and underscore."
-#: sc/inc/globstr.hrc:426
+#: sc/inc/globstr.hrc:427
msgctxt "STR_UNSAVED_EXT_REF"
msgid ""
"This Document contains external references to unsaved documents.\n"
@@ -2096,217 +2101,217 @@ msgstr ""
"\n"
"Do you want to continue?"
-#: sc/inc/globstr.hrc:427
+#: sc/inc/globstr.hrc:428
msgctxt "STR_CLOSE_WITH_UNSAVED_REFS"
msgid "This Document is referenced by another document and not yet saved. Closing it without saving will result in data loss."
msgstr "This Document is referenced by another document and not yet saved. Closing it without saving will result in data loss."
-#: sc/inc/globstr.hrc:428
+#: sc/inc/globstr.hrc:429
msgctxt "STR_HEADER_RANGE"
msgid "Range"
msgstr "Range"
-#: sc/inc/globstr.hrc:429
+#: sc/inc/globstr.hrc:430
msgctxt "STR_HEADER_COND"
msgid "First Condition"
msgstr "First Condition"
-#: sc/inc/globstr.hrc:430
+#: sc/inc/globstr.hrc:431
msgctxt "STR_COND_CONDITION"
msgid "Cell value is"
msgstr "Cell value is"
-#: sc/inc/globstr.hrc:431
+#: sc/inc/globstr.hrc:432
msgctxt "STR_COND_COLORSCALE"
msgid "ColorScale"
msgstr "ColourScale"
-#: sc/inc/globstr.hrc:432
+#: sc/inc/globstr.hrc:433
msgctxt "STR_COND_DATABAR"
msgid "DataBar"
msgstr "DataBar"
-#: sc/inc/globstr.hrc:433
+#: sc/inc/globstr.hrc:434
msgctxt "STR_COND_ICONSET"
msgid "IconSet"
msgstr "IconSet"
-#: sc/inc/globstr.hrc:434
+#: sc/inc/globstr.hrc:435
msgctxt "STR_COND_BETWEEN"
msgid "between"
msgstr "between"
-#: sc/inc/globstr.hrc:435
+#: sc/inc/globstr.hrc:436
msgctxt "STR_COND_NOTBETWEEN"
msgid "not between"
msgstr "not between"
-#: sc/inc/globstr.hrc:436
+#: sc/inc/globstr.hrc:437
msgctxt "STR_COND_UNIQUE"
msgid "unique"
msgstr "unique"
-#: sc/inc/globstr.hrc:437
+#: sc/inc/globstr.hrc:438
msgctxt "STR_COND_DUPLICATE"
msgid "duplicate"
msgstr "duplicate"
-#: sc/inc/globstr.hrc:438
+#: sc/inc/globstr.hrc:439
msgctxt "STR_COND_FORMULA"
msgid "Formula is"
msgstr "Formula is"
-#: sc/inc/globstr.hrc:439
+#: sc/inc/globstr.hrc:440
msgctxt "STR_COND_TOP10"
msgid "Top Elements"
msgstr "Top Elements"
-#: sc/inc/globstr.hrc:440
+#: sc/inc/globstr.hrc:441
msgctxt "STR_COND_BOTTOM10"
msgid "Bottom Elements"
msgstr "Bottom Elements"
-#: sc/inc/globstr.hrc:441
+#: sc/inc/globstr.hrc:442
msgctxt "STR_COND_TOP_PERCENT"
msgid "Top Percent"
msgstr "Top Percent"
-#: sc/inc/globstr.hrc:442
+#: sc/inc/globstr.hrc:443
msgctxt "STR_COND_DATE"
msgid "Date is"
msgstr "Date is"
-#: sc/inc/globstr.hrc:443
+#: sc/inc/globstr.hrc:444
msgctxt "STR_COND_BOTTOM_PERCENT"
msgid "Bottom Percent"
msgstr "Bottom Percent"
-#: sc/inc/globstr.hrc:444
+#: sc/inc/globstr.hrc:445
msgctxt "STR_COND_ABOVE_AVERAGE"
msgid "Above Average"
msgstr "Above Average"
-#: sc/inc/globstr.hrc:445
+#: sc/inc/globstr.hrc:446
msgctxt "STR_COND_BELOW_AVERAGE"
msgid "Below Average"
msgstr "Below Average"
-#: sc/inc/globstr.hrc:446
+#: sc/inc/globstr.hrc:447
msgctxt "STR_COND_ABOVE_EQUAL_AVERAGE"
msgid "Above or equal Average"
msgstr "Above or equal Average"
-#: sc/inc/globstr.hrc:447
+#: sc/inc/globstr.hrc:448
msgctxt "STR_COND_BELOW_EQUAL_AVERAGE"
msgid "Below or equal Average"
msgstr "Below or equal Average"
-#: sc/inc/globstr.hrc:448
+#: sc/inc/globstr.hrc:449
msgctxt "STR_COND_ERROR"
msgid "an Error code"
msgstr "an Error code"
-#: sc/inc/globstr.hrc:449
+#: sc/inc/globstr.hrc:450
msgctxt "STR_COND_NOERROR"
msgid "not an Error code"
msgstr "not an Error code"
-#: sc/inc/globstr.hrc:450
+#: sc/inc/globstr.hrc:451
msgctxt "STR_COND_BEGINS_WITH"
msgid "Begins with"
msgstr "Begins with"
-#: sc/inc/globstr.hrc:451
+#: sc/inc/globstr.hrc:452
msgctxt "STR_COND_ENDS_WITH"
msgid "Ends with"
msgstr "Ends with"
-#: sc/inc/globstr.hrc:452
+#: sc/inc/globstr.hrc:453
msgctxt "STR_COND_CONTAINS"
msgid "Contains"
msgstr "Contains"
-#: sc/inc/globstr.hrc:453
+#: sc/inc/globstr.hrc:454
msgctxt "STR_COND_NOT_CONTAINS"
msgid "Not Contains"
msgstr "Not Contains"
-#: sc/inc/globstr.hrc:454
+#: sc/inc/globstr.hrc:455
msgctxt "STR_COND_TODAY"
msgid "today"
msgstr "today"
-#: sc/inc/globstr.hrc:455
+#: sc/inc/globstr.hrc:456
msgctxt "STR_COND_YESTERDAY"
msgid "yesterday"
msgstr "yesterday"
-#: sc/inc/globstr.hrc:456
+#: sc/inc/globstr.hrc:457
msgctxt "STR_COND_TOMORROW"
msgid "tomorrow"
msgstr "tomorrow"
-#: sc/inc/globstr.hrc:457
+#: sc/inc/globstr.hrc:458
msgctxt "STR_COND_LAST7DAYS"
msgid "in the last 7 days"
msgstr "in the last 7 days"
-#: sc/inc/globstr.hrc:458
+#: sc/inc/globstr.hrc:459
msgctxt "STR_COND_THISWEEK"
msgid "this week"
msgstr "this week"
-#: sc/inc/globstr.hrc:459
+#: sc/inc/globstr.hrc:460
msgctxt "STR_COND_LASTWEEK"
msgid "last week"
msgstr "last week"
-#: sc/inc/globstr.hrc:460
+#: sc/inc/globstr.hrc:461
msgctxt "STR_COND_NEXTWEEK"
msgid "next week"
msgstr "next week"
-#: sc/inc/globstr.hrc:461
+#: sc/inc/globstr.hrc:462
msgctxt "STR_COND_THISMONTH"
msgid "this month"
msgstr "this month"
-#: sc/inc/globstr.hrc:462
+#: sc/inc/globstr.hrc:463
msgctxt "STR_COND_LASTMONTH"
msgid "last month"
msgstr "last month"
-#: sc/inc/globstr.hrc:463
+#: sc/inc/globstr.hrc:464
msgctxt "STR_COND_NEXTMONTH"
msgid "next month"
msgstr "next month"
-#: sc/inc/globstr.hrc:464
+#: sc/inc/globstr.hrc:465
msgctxt "STR_COND_THISYEAR"
msgid "this year"
msgstr "this year"
-#: sc/inc/globstr.hrc:465
+#: sc/inc/globstr.hrc:466
msgctxt "STR_COND_LASTYEAR"
msgid "last year"
msgstr "last year"
-#: sc/inc/globstr.hrc:466
+#: sc/inc/globstr.hrc:467
msgctxt "STR_COND_NEXTYEAR"
msgid "next year"
msgstr "next year"
-#: sc/inc/globstr.hrc:467
+#: sc/inc/globstr.hrc:468
msgctxt "STR_COND_AND"
msgid "and"
msgstr "and"
-#: sc/inc/globstr.hrc:468
+#: sc/inc/globstr.hrc:469
msgctxt "STR_ERR_CONDFORMAT_PROTECTED"
msgid "Conditional Formats can not be created, deleted or changed in protected sheets."
-msgstr ""
+msgstr "Conditional Formats can not be created, deleted or changed in protected sheets."
-#: sc/inc/globstr.hrc:469
+#: sc/inc/globstr.hrc:470
msgctxt "STR_EDIT_EXISTING_COND_FORMATS"
msgid ""
"The selected cell already contains conditional formatting. You can either edit the existing conditional format or you define a new overlapping conditional format.\n"
@@ -2317,7 +2322,7 @@ msgstr ""
"\n"
" Do you want to edit the existing conditional format?"
-#: sc/inc/globstr.hrc:470
+#: sc/inc/globstr.hrc:471
msgctxt "STR_QUERY_FORMULA_RECALC_ONLOAD_ODS"
msgid ""
"This document was last saved by an application other than %PRODUCTNAME. Some formula cells may produce different results when recalculated.\n"
@@ -2328,7 +2333,7 @@ msgstr ""
"\n"
"Do you want to recalculate all formula cells in this document now?"
-#: sc/inc/globstr.hrc:471
+#: sc/inc/globstr.hrc:472
msgctxt "STR_QUERY_FORMULA_RECALC_ONLOAD_XLS"
msgid ""
"This document was last saved by Excel. Some formula cells may produce different results when recalculated.\n"
@@ -2339,77 +2344,77 @@ msgstr ""
"\n"
"Do you want to recalculate all formula cells now?"
-#: sc/inc/globstr.hrc:472
+#: sc/inc/globstr.hrc:473
msgctxt "STR_NO_INSERT_DELETE_OVER_PIVOT_TABLE"
msgid "You cannot insert or delete cells when the affected range intersects with pivot table."
msgstr "You cannot insert or delete cells when the affected range intersects with pivot table."
-#: sc/inc/globstr.hrc:473
+#: sc/inc/globstr.hrc:474
msgctxt "STR_DPFIELD_GROUP_BY_SECONDS"
msgid "Seconds"
msgstr "Seconds"
-#: sc/inc/globstr.hrc:474
+#: sc/inc/globstr.hrc:475
msgctxt "STR_DPFIELD_GROUP_BY_MINUTES"
msgid "Minutes"
msgstr "Minutes"
-#: sc/inc/globstr.hrc:475
+#: sc/inc/globstr.hrc:476
msgctxt "STR_DPFIELD_GROUP_BY_HOURS"
msgid "Hours"
msgstr "Hours"
-#: sc/inc/globstr.hrc:476
+#: sc/inc/globstr.hrc:477
msgctxt "STR_DPFIELD_GROUP_BY_DAYS"
msgid "Days"
msgstr "Days"
-#: sc/inc/globstr.hrc:477
+#: sc/inc/globstr.hrc:478
msgctxt "STR_DPFIELD_GROUP_BY_MONTHS"
msgid "Months"
msgstr "Months"
-#: sc/inc/globstr.hrc:478
+#: sc/inc/globstr.hrc:479
msgctxt "STR_DPFIELD_GROUP_BY_QUARTERS"
msgid "Quarters"
msgstr "Quarters"
-#: sc/inc/globstr.hrc:479
+#: sc/inc/globstr.hrc:480
msgctxt "STR_DPFIELD_GROUP_BY_YEARS"
msgid "Years"
msgstr "Years"
-#: sc/inc/globstr.hrc:480
+#: sc/inc/globstr.hrc:481
msgctxt "STR_INVALIDVAL"
msgid "Invalid target value."
msgstr "Invalid target value."
-#: sc/inc/globstr.hrc:481
+#: sc/inc/globstr.hrc:482
msgctxt "STR_INVALIDVAR"
msgid "Undefined name for variable cell."
msgstr "Undefined name for variable cell."
-#: sc/inc/globstr.hrc:482
+#: sc/inc/globstr.hrc:483
msgctxt "STR_INVALIDFORM"
msgid "Undefined name as formula cell."
msgstr "Undefined name as formula cell."
-#: sc/inc/globstr.hrc:483
+#: sc/inc/globstr.hrc:484
msgctxt "STR_NOFORMULA"
msgid "Formula cell must contain a formula."
msgstr "Formula cell must contain a formula."
-#: sc/inc/globstr.hrc:484
+#: sc/inc/globstr.hrc:485
msgctxt "STR_INVALIDINPUT"
msgid "Invalid input."
msgstr "Invalid input."
-#: sc/inc/globstr.hrc:485
+#: sc/inc/globstr.hrc:486
msgctxt "STR_INVALIDCONDITION"
msgid "Invalid condition."
msgstr "Invalid condition."
-#: sc/inc/globstr.hrc:486
+#: sc/inc/globstr.hrc:487
msgctxt "STR_QUERYREMOVE"
msgid ""
"Should the entry\n"
@@ -2420,133 +2425,133 @@ msgstr ""
"#\n"
"be deleted?"
-#: sc/inc/globstr.hrc:487
+#: sc/inc/globstr.hrc:488
msgctxt "STR_COPYLIST"
msgid "Copy List"
msgstr "Copy List"
-#: sc/inc/globstr.hrc:488
+#: sc/inc/globstr.hrc:489
msgctxt "STR_COPYFROM"
msgid "List from"
msgstr "List from"
-#: sc/inc/globstr.hrc:489
+#: sc/inc/globstr.hrc:490
msgctxt "STR_COPYERR"
msgid "Cells without text have been ignored."
msgstr "Cells without text have been ignored."
-#: sc/inc/globstr.hrc:490
+#: sc/inc/globstr.hrc:491
#, c-format
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%s-click to follow hyperlink:"
msgstr "%s-click to follow hyperlink:"
-#: sc/inc/globstr.hrc:491
+#: sc/inc/globstr.hrc:492
msgctxt "STR_CLICKHYPERLINK"
msgid "click to open hyperlink:"
msgstr "click to open hyperlink:"
-#: sc/inc/globstr.hrc:492
+#: sc/inc/globstr.hrc:493
msgctxt "STR_PRINT_PREVIEW_NODATA"
msgid "No Data"
msgstr "No Data"
-#: sc/inc/globstr.hrc:493
+#: sc/inc/globstr.hrc:494
msgctxt "STR_PRINT_PREVIEW_EMPTY_RANGE"
msgid "Print Range Empty"
msgstr "Print Range Empty"
-#: sc/inc/globstr.hrc:494
+#: sc/inc/globstr.hrc:495
msgctxt "STR_UNDO_CONDFORMAT"
msgid "Conditional Format"
msgstr "Conditional Format"
-#: sc/inc/globstr.hrc:495
+#: sc/inc/globstr.hrc:496
msgctxt "STR_UNDO_CONDFORMAT_LIST"
msgid "Conditional Formats"
msgstr "Conditional Formats"
-#: sc/inc/globstr.hrc:496
+#: sc/inc/globstr.hrc:497
msgctxt "STR_UNDO_FORMULA_TO_VALUE"
msgid "Convert Formula To Value"
msgstr "Convert Formula To Value"
-#: sc/inc/globstr.hrc:497
+#: sc/inc/globstr.hrc:498
msgctxt "STR_UNQUOTED_STRING"
msgid "Strings without quotes are interpreted as column/row labels."
msgstr "Strings without quotes are interpreted as column/row labels."
-#: sc/inc/globstr.hrc:498
+#: sc/inc/globstr.hrc:499
msgctxt "STR_ENTER_VALUE"
msgid "Enter a value!"
msgstr "Enter a value!"
-#: sc/inc/globstr.hrc:499
+#: sc/inc/globstr.hrc:500
msgctxt "STR_TABLE_COUNT"
msgid "Sheet %1 of %2"
msgstr "Sheet %1 of %2"
-#: sc/inc/globstr.hrc:500
+#: sc/inc/globstr.hrc:501
msgctxt "STR_FUNCTIONS_FOUND"
msgid "%1 and %2 more"
msgstr "%1 and %2 more"
-#: sc/inc/globstr.hrc:501
+#: sc/inc/globstr.hrc:502
msgctxt "STR_GENERAL"
msgid "General"
msgstr "General"
-#: sc/inc/globstr.hrc:502
+#: sc/inc/globstr.hrc:503
msgctxt "STR_NUMBER"
msgid "Number"
msgstr "Number"
-#: sc/inc/globstr.hrc:503
+#: sc/inc/globstr.hrc:504
msgctxt "STR_PERCENT"
msgid "Percent"
msgstr "Percent"
-#: sc/inc/globstr.hrc:504
+#: sc/inc/globstr.hrc:505
msgctxt "STR_CURRENCY"
msgid "Currency"
msgstr "Currency"
-#: sc/inc/globstr.hrc:505
+#: sc/inc/globstr.hrc:506
msgctxt "STR_DATE"
msgid "Date"
msgstr "Date"
-#: sc/inc/globstr.hrc:506
+#: sc/inc/globstr.hrc:507
msgctxt "STR_TIME"
msgid "Time"
msgstr "Time"
-#: sc/inc/globstr.hrc:507
+#: sc/inc/globstr.hrc:508
msgctxt "STR_SCIENTIFIC"
msgid "Scientific"
msgstr "Scientific"
-#: sc/inc/globstr.hrc:508
+#: sc/inc/globstr.hrc:509
msgctxt "STR_FRACTION"
msgid "Fraction"
msgstr "Fraction"
-#: sc/inc/globstr.hrc:509
+#: sc/inc/globstr.hrc:510
msgctxt "STR_BOOLEAN_VALUE"
msgid "Boolean Value"
msgstr "Boolean Value"
-#: sc/inc/globstr.hrc:510
+#: sc/inc/globstr.hrc:511
msgctxt "STR_TEXT"
msgid "Text"
msgstr "Text"
-#: sc/inc/globstr.hrc:511
+#: sc/inc/globstr.hrc:512
msgctxt "STR_QUERY_PIVOTTABLE_DELTAB"
msgid "The selected sheet(s) contain source data of related pivot tables that will be lost. Are you sure you want to delete the selected sheet(s)?"
msgstr "The selected sheet(s) contain source data of related pivot tables that will be lost. Are you sure you want to delete the selected sheet(s)?"
-#: sc/inc/globstr.hrc:512
+#: sc/inc/globstr.hrc:513
msgctxt "STR_ERR_NAME_INVALID_CELL_REF"
msgid "Invalid name. Reference to a cell, or a range of cells not allowed."
msgstr "Invalid name. Reference to a cell, or a range of cells not allowed."
@@ -10488,8 +10493,8 @@ msgstr "Mode"
#: sc/inc/scfuncs.hrc:3010
msgctxt "SC_OPCODE_T_TEST"
-msgid "Mode specifies the number of distribution tails to return. 1= one-tailed, 2 = two-tailed distribution"
-msgstr "Mode specifies the number of distribution tails to return. 1= one-tailed, 2 = two-tailed distribution"
+msgid "Mode specifies the number of distribution tails to return. 1 = one-tailed, 2 = two-tailed distribution"
+msgstr ""
#: sc/inc/scfuncs.hrc:3011
msgctxt "SC_OPCODE_T_TEST"
@@ -10533,8 +10538,8 @@ msgstr "Mode"
#: sc/inc/scfuncs.hrc:3024
msgctxt "SC_OPCODE_T_TEST_MS"
-msgid "Mode specifies the number of distribution tails to return. 1= one-tailed, 2 = two-tailed distribution"
-msgstr "Mode specifies the number of distribution tails to return. 1= one-tailed, 2 = two-tailed distribution"
+msgid "Mode specifies the number of distribution tails to return. 1 = one-tailed, 2 = two-tailed distribution"
+msgstr ""
#: sc/inc/scfuncs.hrc:3025
msgctxt "SC_OPCODE_T_TEST_MS"
@@ -13518,7 +13523,7 @@ msgstr "Custom Styles"
#: sc/inc/strings.hrc:27
msgctxt "SCSTR_LONG_SCDOC_NAME"
msgid "%PRODUCTNAME Spreadsheet format (calc6)"
-msgstr ""
+msgstr "%PRODUCTNAME Spreadsheet format (calc6)"
#: sc/inc/strings.hrc:28
msgctxt "SCSTR_LONG_SCDOC_NAME"
@@ -13630,7 +13635,7 @@ msgstr "Insert Image"
#: sc/inc/strings.hrc:51
msgctxt "STR_QUERYROTATION"
msgid "This image is rotated. Would you like to rotate it into standard orientation?"
-msgstr ""
+msgstr "This image is rotated. Would you like to rotate it into standard orientation?"
#: sc/inc/strings.hrc:52
msgctxt "SCSTR_TOTAL"
@@ -14926,23 +14931,23 @@ msgstr "z Critical two-tail"
#: sc/inc/strings.hrc:332
msgctxt "STR_ENABLE_CONTENT"
msgid "Enable Content"
-msgstr ""
+msgstr "Enable Content"
#. Insert image dialog
#: sc/inc/strings.hrc:334
msgctxt "STR_ANCHOR_TO_CELL"
msgid "To cell"
-msgstr ""
+msgstr "To cell"
#: sc/inc/strings.hrc:335
msgctxt "STR_ANCHOR_TO_CELL_RESIZE"
msgid "To cell (resize with cell)"
-msgstr ""
+msgstr "To cell (resize with cell)"
#: sc/inc/strings.hrc:336
msgctxt "STR_ANCHOR_TO_PAGE"
msgid "To page"
-msgstr ""
+msgstr "To page"
#: sc/inc/units.hrc:27
msgctxt "SCSTR_UNIT"
@@ -15288,17 +15293,17 @@ msgstr "Position"
#: sc/uiconfig/scalc/ui/checkwarningdialog.ui:11
msgctxt "checkwarningdialog|CheckWarningDialog"
msgid "You are pasting data into cells that already contain data."
-msgstr ""
+msgstr "You are pasting data into cells that already contain data."
#: sc/uiconfig/scalc/ui/checkwarningdialog.ui:12
msgctxt "checkwarningdialog|CheckWarningDialog"
msgid "Do you really want to overwrite the existing data?"
-msgstr ""
+msgstr "Do you really want to overwrite the existing data?"
#: sc/uiconfig/scalc/ui/checkwarningdialog.ui:76
msgctxt "checkwarningdialog|ask"
msgid "Warn me about this in the future."
-msgstr ""
+msgstr "Warn me about this in the future."
#: sc/uiconfig/scalc/ui/chisquaretestdialog.ui:9
msgctxt "chisquaretestdialog|ChiSquareTestDialog"
@@ -16878,12 +16883,12 @@ msgstr "Selection"
#: sc/uiconfig/scalc/ui/deletecolumnentry.ui:21
msgctxt "deletecolumnentry|name"
msgid "Delete Columns Action"
-msgstr ""
+msgstr "Delete Columns Action"
#: sc/uiconfig/scalc/ui/deletecolumnentry.ui:37
msgctxt "deletecolumnentry|separator"
msgid "Columns (List of ';' separated columns)"
-msgstr ""
+msgstr "Columns (List of ';' separated columns)"
#: sc/uiconfig/scalc/ui/deletecontents.ui:8
msgctxt "deletecontents|DeleteContentsDialog"
@@ -18020,22 +18025,22 @@ msgctxt "mergecellsdialog|MergeCellsDialog"
msgid "Merge Cells"
msgstr "Merge Cells"
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:81
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:84
msgctxt "mergecellsdialog|label"
msgid "Some cells are not empty."
msgstr "Some cells are not empty."
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:96
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:99
msgctxt "mergecellsdialog|move-cells-radio"
msgid "Move the contents of the hidden cells into the first cell"
msgstr "Move the contents of the hidden cells into the first cell"
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:112
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:115
msgctxt "mergecellsdialog|empty-cells-radio"
msgid "Empty the contents of the hidden cells"
msgstr "Empty the contents of the hidden cells"
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:128
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:131
msgctxt "mergecellsdialog|keep-content-radio"
msgid "Keep the contents of the hidden cells"
msgstr "Keep the contents of the hidden cells"
@@ -18043,17 +18048,17 @@ msgstr "Keep the contents of the hidden cells"
#: sc/uiconfig/scalc/ui/mergecolumnentry.ui:21
msgctxt "mergecolumnentry|name"
msgid "Merge Column Action"
-msgstr ""
+msgstr "Merge Column Action"
#: sc/uiconfig/scalc/ui/mergecolumnentry.ui:37
msgctxt "mergecolumnentry|separator"
msgid "Separator:"
-msgstr ""
+msgstr "Separator:"
#: sc/uiconfig/scalc/ui/mergecolumnentry.ui:58
msgctxt "mergecolumnentry|columns"
msgid "Columns:"
-msgstr ""
+msgstr "Columns:"
#: sc/uiconfig/scalc/ui/movecopysheet.ui:16
msgctxt "movecopysheet|MoveCopySheetDialog"
@@ -18293,22 +18298,22 @@ msgstr "No solution was found."
#: sc/uiconfig/scalc/ui/notebookbar.ui:857
msgctxt "notebookbar|Help"
msgid "_Check for Updates..."
-msgstr ""
+msgstr "_Check for Updates..."
#: sc/uiconfig/scalc/ui/notebookbar.ui:1678
msgctxt "notebookbar|Tools"
msgid "_Check for Updates..."
-msgstr ""
+msgstr "_Check for Updates..."
#: sc/uiconfig/scalc/ui/notebookbar.ui:1952
msgctxt "notebookbar|FileLabel"
msgid "_File"
-msgstr ""
+msgstr "_File"
#: sc/uiconfig/scalc/ui/notebookbar.ui:1971
msgctxt "notebookbar|HelpMenuButton"
msgid "_Help"
-msgstr ""
+msgstr "_Help"
#: sc/uiconfig/scalc/ui/notebookbar.ui:2769
msgctxt "notebookbar|FileLabel"
@@ -18334,7 +18339,7 @@ msgstr "Decrease Indent"
#: sc/uiconfig/scalc/ui/notebookbar.ui:4436
msgctxt "notebookbar|HomeMenuButton"
msgid "_Home"
-msgstr ""
+msgstr "_Home"
#: sc/uiconfig/scalc/ui/notebookbar.ui:4544
msgctxt "notebookbar|CalcLabel"
@@ -18344,12 +18349,12 @@ msgstr "Home"
#: sc/uiconfig/scalc/ui/notebookbar.ui:4991
msgctxt "notebookbar|FieldMenuButton"
msgid "Fiel_d"
-msgstr ""
+msgstr "Fiel_d"
#: sc/uiconfig/scalc/ui/notebookbar.ui:5496
msgctxt "notebookbar|InsertMenuButton"
msgid "_Insert"
-msgstr ""
+msgstr "_Insert"
#: sc/uiconfig/scalc/ui/notebookbar.ui:5581
msgctxt "notebookbar|InsertLabel"
@@ -18359,22 +18364,22 @@ msgstr "Insert"
#: sc/uiconfig/scalc/ui/notebookbar.ui:5610
msgctxt "notebookbar|reviewb"
msgid "Pag_e"
-msgstr ""
+msgstr "Pag_e"
#: sc/uiconfig/scalc/ui/notebookbar.ui:6335
msgctxt "notebookbar|PageLayoutLabel"
msgid "Layout"
-msgstr ""
+msgstr "Layout"
#: sc/uiconfig/scalc/ui/notebookbar.ui:7236
msgctxt "notebookbar|Statistics"
msgid "_Statistics"
-msgstr ""
+msgstr "_Statistics"
#: sc/uiconfig/scalc/ui/notebookbar.ui:7304
msgctxt "notebookbar|DataMenuButton"
msgid "_Data"
-msgstr ""
+msgstr "_Data"
#: sc/uiconfig/scalc/ui/notebookbar.ui:7412
msgctxt "notebookbar|DataLabel"
@@ -18384,7 +18389,7 @@ msgstr "Data"
#: sc/uiconfig/scalc/ui/notebookbar.ui:8035
msgctxt "notebookbar|ReviewMenuButton"
msgid "_Review"
-msgstr ""
+msgstr "_Review"
#: sc/uiconfig/scalc/ui/notebookbar.ui:8120
msgctxt "notebookbar|ReviewLabel"
@@ -18394,7 +18399,7 @@ msgstr "Review"
#: sc/uiconfig/scalc/ui/notebookbar.ui:8896
msgctxt "notebookbar|ViewMenuButton"
msgid "_View"
-msgstr ""
+msgstr "_View"
#: sc/uiconfig/scalc/ui/notebookbar.ui:8981
msgctxt "notebookbar|ViewLabel"
@@ -18404,7 +18409,7 @@ msgstr "View"
#: sc/uiconfig/scalc/ui/notebookbar.ui:9008
msgctxt "notebookbar|GraphicMenuButton"
msgid "_Graphic"
-msgstr ""
+msgstr "_Graphic"
#: sc/uiconfig/scalc/ui/notebookbar.ui:9949
msgctxt "notebookbar|ImageLabel"
@@ -18414,37 +18419,37 @@ msgstr "Image"
#: sc/uiconfig/scalc/ui/notebookbar.ui:11228
msgctxt "notebookbar|DrawMenuButton"
msgid "D_raw"
-msgstr ""
+msgstr "D_raw"
#: sc/uiconfig/scalc/ui/notebookbar.ui:11340
msgctxt "notebookbar|DrawLabel"
msgid "Draw"
-msgstr ""
+msgstr "Draw"
#: sc/uiconfig/scalc/ui/notebookbar.ui:11993
msgctxt "notebookbar|frame:MenuDraw"
msgid "Object"
-msgstr ""
+msgstr "Object"
#: sc/uiconfig/scalc/ui/notebookbar.ui:12082
msgctxt "notebookbar|FrameLabel"
msgid "Object"
-msgstr ""
+msgstr "Object"
#: sc/uiconfig/scalc/ui/notebookbar.ui:12113
msgctxt "notebookbar|ToolsMenuButton"
msgid "_Tools"
-msgstr ""
+msgstr "_Tools"
#: sc/uiconfig/scalc/ui/notebookbar.ui:13250
msgctxt "notebookbar|DevLabel"
msgid "Tools"
-msgstr ""
+msgstr "Tools"
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:2945
msgctxt "notebookbar_groupedbar_compact|Menu"
msgid "_Check for Updates..."
-msgstr ""
+msgstr "_Check for Updates..."
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:2977
msgctxt "notebookbar_groupedbar_compact|defaultD"
@@ -18514,7 +18519,7 @@ msgstr "Note"
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:3336
msgctxt "notebookbar_groupedbar_compact|Tools"
msgid "_Check for Updates..."
-msgstr ""
+msgstr "_Check for Updates..."
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:3630
msgctxt "notebookbar_groupedbar_compact|menub"
@@ -18704,12 +18709,12 @@ msgstr "_View"
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:1950
msgctxt "notebookbar_groupedbar_full|Help"
msgid "_Check for Updates..."
-msgstr ""
+msgstr "_Check for Updates..."
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2945
msgctxt "notebookbar_groupedbar_full|Menu"
msgid "_Check for Updates..."
-msgstr ""
+msgstr "_Check for Updates..."
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2977
msgctxt "notebookbar_groupedbar_full|defaultD"
@@ -18779,7 +18784,7 @@ msgstr "Note"
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:3336
msgctxt "notebookbar_groupedbar_full|Tools"
msgid "_Check for Updates..."
-msgstr ""
+msgstr "_Check for Updates..."
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:3635
msgctxt "notebookbar_groupedbar_full|menub"
@@ -19254,12 +19259,12 @@ msgstr "Edit Contour"
#: sc/uiconfig/scalc/ui/optcalculatepage.ui:48
msgctxt "optcalculatepage|threadingenabled"
msgid "Enable multi-threaded calculation"
-msgstr ""
+msgstr "Enable multi-threaded calculation"
#: sc/uiconfig/scalc/ui/optcalculatepage.ui:52
msgctxt "optcalculatepage|threadingenabled|tooltip_text"
msgid "Enable multi-threaded calculation of formula-groups"
-msgstr ""
+msgstr "Enable multi-threaded calculation of formula-groups"
#: sc/uiconfig/scalc/ui/optcalculatepage.ui:71
msgctxt "optcalculatepage|label4"
@@ -19874,7 +19879,7 @@ msgstr "S_kip empty cells"
#: sc/uiconfig/scalc/ui/pastespecial.ui:479
msgctxt "pastespecial|skip_empty"
msgid "If enabled, blank cells in source will not override the target."
-msgstr ""
+msgstr "If enabled, blank cells in source will not override the target."
#: sc/uiconfig/scalc/ui/pastespecial.ui:492
msgctxt "pastespecial|transpose"
@@ -20379,7 +20384,7 @@ msgstr "Options"
#: sc/uiconfig/scalc/ui/recalcquerydialog.ui:30
msgctxt "recalcquerydialog|ask"
msgid "Always perform this without prompt in the future."
-msgstr ""
+msgstr "Always perform this without prompt in the future."
#: sc/uiconfig/scalc/ui/regressiondialog.ui:9
msgctxt "regressiondialog|RegressionDialog"
@@ -20674,7 +20679,7 @@ msgstr "Update links when opening"
#: sc/uiconfig/scalc/ui/scgeneralpage.ui:156
msgctxt "scgeneralpage|alwaysrb"
msgid "_Always (from trusted locations)"
-msgstr ""
+msgstr "_Always (from trusted locations)"
#: sc/uiconfig/scalc/ui/scgeneralpage.ui:174
msgctxt "scgeneralpage|requestrb"
@@ -20939,17 +20944,17 @@ msgstr "Users Currently Accessing This Spreadsheet"
#: sc/uiconfig/scalc/ui/sharedwarningdialog.ui:12
msgctxt "sharedwarningdialog|SharedWarningDialog"
msgid "The spreadsheet is in shared mode. This allows multiple users to access and edit the spreadsheet at the same time."
-msgstr ""
+msgstr "The spreadsheet is in shared mode. This allows multiple users to access and edit the spreadsheet at the same time."
#: sc/uiconfig/scalc/ui/sharedwarningdialog.ui:13
msgctxt "sharedwarningdialog|SharedWarningDialog"
msgid "Changes to formatting attributes like fonts, colors, and number formats will not be saved and some functionalities like editing charts and drawing objects are not available in shared mode. Turn off shared mode to get exclusive access needed for those changes and functionalities."
-msgstr ""
+msgstr "Changes to formatting attributes like fonts, colours and number formats will not be saved and some functionalities like editing charts and drawing objects are not available in shared mode. Turn off shared mode to get exclusive access needed for those changes and functionalities."
#: sc/uiconfig/scalc/ui/sharedwarningdialog.ui:32
msgctxt "sharedwarningdialog|ask"
msgid "Do not show warning again."
-msgstr ""
+msgstr "Do not show warning again."
#: sc/uiconfig/scalc/ui/sheetprintpage.ui:63
msgctxt "sheetprintpage|radioBTN_TOPDOWN"
diff --git a/source/en-GB/sd/messages.po b/source/en-GB/sd/messages.po
index 569acca0b60..a825a24bc95 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2017-12-18 23:34+0000\n"
"Last-Translator: Stuart Swales <stuart.swales.croftnuisk@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -16,167 +16,167 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1513640065.000000\n"
-#: sd/inc/DocumentRenderer.hrc:29
+#: sd/inc/DocumentRenderer.hrc:27
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Slides"
msgstr "Slides"
-#: sd/inc/DocumentRenderer.hrc:30
+#: sd/inc/DocumentRenderer.hrc:28
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Handouts"
msgstr "Handouts"
-#: sd/inc/DocumentRenderer.hrc:31
+#: sd/inc/DocumentRenderer.hrc:29
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Notes"
msgstr "Notes"
-#: sd/inc/DocumentRenderer.hrc:32
+#: sd/inc/DocumentRenderer.hrc:30
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Outline"
msgstr "Outline"
-#: sd/inc/DocumentRenderer.hrc:37
+#: sd/inc/DocumentRenderer.hrc:35
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "According to layout"
msgstr "According to layout"
-#: sd/inc/DocumentRenderer.hrc:38
+#: sd/inc/DocumentRenderer.hrc:36
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "1"
msgstr "1"
-#: sd/inc/DocumentRenderer.hrc:39
+#: sd/inc/DocumentRenderer.hrc:37
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "2"
msgstr "2"
-#: sd/inc/DocumentRenderer.hrc:40
+#: sd/inc/DocumentRenderer.hrc:38
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "3"
msgstr "3"
-#: sd/inc/DocumentRenderer.hrc:41
+#: sd/inc/DocumentRenderer.hrc:39
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "4"
msgstr "4"
-#: sd/inc/DocumentRenderer.hrc:42
+#: sd/inc/DocumentRenderer.hrc:40
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "6"
msgstr "6"
-#: sd/inc/DocumentRenderer.hrc:43
+#: sd/inc/DocumentRenderer.hrc:41
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "9"
msgstr "9"
-#: sd/inc/DocumentRenderer.hrc:48
+#: sd/inc/DocumentRenderer.hrc:46
msgctxt "STR_IMPRESS_PRINT_UI_ORDER_CHOICES"
msgid "Left to right, then down"
msgstr "Left to right, then down"
-#: sd/inc/DocumentRenderer.hrc:49
+#: sd/inc/DocumentRenderer.hrc:47
msgctxt "STR_IMPRESS_PRINT_UI_ORDER_CHOICES"
msgid "Top to bottom, then right"
msgstr "Top to bottom, then right"
-#: sd/inc/DocumentRenderer.hrc:54
+#: sd/inc/DocumentRenderer.hrc:52
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Original colors"
msgstr "Original colours"
-#: sd/inc/DocumentRenderer.hrc:55
+#: sd/inc/DocumentRenderer.hrc:53
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Grayscale"
msgstr "Greyscale"
-#: sd/inc/DocumentRenderer.hrc:56
+#: sd/inc/DocumentRenderer.hrc:54
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Black & white"
msgstr "Black & white"
-#: sd/inc/DocumentRenderer.hrc:61
+#: sd/inc/DocumentRenderer.hrc:59
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Original size"
msgstr "Original size"
-#: sd/inc/DocumentRenderer.hrc:62
+#: sd/inc/DocumentRenderer.hrc:60
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Fit to printable page"
msgstr "Fit to printable page"
-#: sd/inc/DocumentRenderer.hrc:63
+#: sd/inc/DocumentRenderer.hrc:61
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Distribute on multiple sheets of paper"
msgstr "Distribute on multiple sheets of paper"
-#: sd/inc/DocumentRenderer.hrc:64
+#: sd/inc/DocumentRenderer.hrc:62
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Tile sheet of paper with repeated slides"
msgstr "Tile sheet of paper with repeated slides"
-#: sd/inc/DocumentRenderer.hrc:69
+#: sd/inc/DocumentRenderer.hrc:67
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Original size"
msgstr "Original size"
-#: sd/inc/DocumentRenderer.hrc:70
+#: sd/inc/DocumentRenderer.hrc:68
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Fit to printable page"
msgstr "Fit to printable page"
-#: sd/inc/DocumentRenderer.hrc:71
+#: sd/inc/DocumentRenderer.hrc:69
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Distribute on multiple sheets of paper"
msgstr "Distribute on multiple sheets of paper"
-#: sd/inc/DocumentRenderer.hrc:72
+#: sd/inc/DocumentRenderer.hrc:70
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Tile sheet of paper with repeated pages"
msgstr "Tile sheet of paper with repeated pages"
-#: sd/inc/DocumentRenderer.hrc:77
+#: sd/inc/DocumentRenderer.hrc:75
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "All pages"
msgstr "All pages"
-#: sd/inc/DocumentRenderer.hrc:78
+#: sd/inc/DocumentRenderer.hrc:76
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "Front sides / right pages"
msgstr "Front sides / right pages"
-#: sd/inc/DocumentRenderer.hrc:79
+#: sd/inc/DocumentRenderer.hrc:77
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "Back sides / left pages"
msgstr "Back sides / left pages"
-#: sd/inc/DocumentRenderer.hrc:84
+#: sd/inc/DocumentRenderer.hrc:82
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~All slides"
msgstr "~All slides"
-#: sd/inc/DocumentRenderer.hrc:85
+#: sd/inc/DocumentRenderer.hrc:83
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~Slides"
msgstr "~Slides"
-#: sd/inc/DocumentRenderer.hrc:86
+#: sd/inc/DocumentRenderer.hrc:84
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Se~lection"
msgstr "Se~lection"
-#: sd/inc/DocumentRenderer.hrc:91
+#: sd/inc/DocumentRenderer.hrc:89
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~All pages"
msgstr "~All pages"
-#: sd/inc/DocumentRenderer.hrc:92
+#: sd/inc/DocumentRenderer.hrc:90
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Pa~ges"
msgstr "Pa~ges"
-#: sd/inc/DocumentRenderer.hrc:93
+#: sd/inc/DocumentRenderer.hrc:91
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Se~lection"
msgstr "Se~lection"
diff --git a/source/en-GB/svx/messages.po b/source/en-GB/svx/messages.po
index 024aa24f03e..a12171c6edb 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: 2018-05-16 16:53+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2017-12-09 00:01+0000\n"
"Last-Translator: Stuart Swales <stuart.swales.croftnuisk@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5179,8 +5179,8 @@ msgstr "You can also include relevant parts of your user profile in the bug repo
#: svx/uiconfig/ui/safemodedialog.ui:432
msgctxt "safemodedialog|btn_create_zip"
-msgid "Create Zip Archive from User Profile"
-msgstr "Create Zip Archive from User Profile"
+msgid "Archive User Profile"
+msgstr ""
#: svx/uiconfig/ui/safemodedialog.ui:445
msgctxt "safemodedialog|linkbutton_profile"
@@ -8769,9 +8769,9 @@ msgid "Red"
msgstr "Red"
#: include/svx/strings.hrc:565
-msgctxt "RID_SVXSTR_COLOR_VIOLET"
-msgid "Violet"
-msgstr "Violet"
+msgctxt "RID_SVXSTR_COLOR_MAGENTA"
+msgid "Magenta"
+msgstr "Magenta"
#: include/svx/strings.hrc:566
msgctxt "RID_SVXSTR_COLOR_PURPLE"
@@ -8835,9 +8835,9 @@ msgid "Light Red"
msgstr "Light Red"
#: include/svx/strings.hrc:579
-msgctxt "RID_SVXSTR_COLOR_LIGHTVIOLET"
-msgid "Light Violet"
-msgstr "Light Violet"
+msgctxt "RID_SVXSTR_COLOR_LIGHTMAGENTA"
+msgid "Light Magenta"
+msgstr ""
#: include/svx/strings.hrc:580
msgctxt "RID_SVXSTR_COLOR_LIGHTPURPLE"
@@ -8901,9 +8901,9 @@ msgid "Dark Red"
msgstr "Dark Red"
#: include/svx/strings.hrc:593
-msgctxt "RID_SVXSTR_COLOR_DARKVIOLET1"
-msgid "Dark Violet"
-msgstr "Dark Violet"
+msgctxt "RID_SVXSTR_COLOR_DARKMAGENTA"
+msgid "Dark Magenta"
+msgstr ""
#: include/svx/strings.hrc:594
msgctxt "RID_SVXSTR_COLOR_DARKPURPLE"
@@ -8937,55 +8937,55 @@ msgstr "Dark Lime"
#. Elements of the Tonal color palette
#: include/svx/strings.hrc:601
+msgctxt "RID_SVXSTR_COLOR_VIOLET"
+msgid "Violet"
+msgstr "Violet"
+
+#: include/svx/strings.hrc:602
msgctxt "RID_SVXSTR_COLOR_VIOLET_OUG"
msgid "Violet (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:602
+#: include/svx/strings.hrc:603
msgctxt "RID_SVXSTR_COLOR_BLUE_OUG"
msgid "Blue (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:603
+#: include/svx/strings.hrc:604
msgctxt "RID_SVXSTR_COLOR_AZURE_OUG"
msgid "Azure (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:604
+#: include/svx/strings.hrc:605
msgctxt "RID_SVXSTR_COLOR_SPRINGGREEN_OUG"
msgid "Spring Green (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:605
+#: include/svx/strings.hrc:606
msgctxt "RID_SVXSTR_COLOR_GREEN_OUG"
msgid "Green (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:606
+#: include/svx/strings.hrc:607
msgctxt "RID_SVXSTR_COLOR_CHARTREUSEGREEN_OUG"
msgid "Chartreuse Green (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:607
+#: include/svx/strings.hrc:608
msgctxt "RID_SVXSTR_COLOR_ORANGE_OUG"
msgid "Orange (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:608
+#: include/svx/strings.hrc:609
msgctxt "RID_SVXSTR_COLOR_RED_OUG"
msgid "Red (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:609
+#: include/svx/strings.hrc:610
msgctxt "RID_SVXSTR_COLOR_ROSE_OUG"
msgid "Rose (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:610
-msgctxt "RID_SVXSTR_COLOR_MAGENTA"
-msgid "Magenta"
-msgstr "Magenta"
-
#: include/svx/strings.hrc:611
msgctxt "RID_SVXSTR_COLOR_AZURE"
msgid "Azure"
@@ -12091,13 +12091,13 @@ msgstr "Right pointing arrow bullets"
#: include/svx/strings.hrc:1273
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_6"
-msgid "Check mark bullets"
-msgstr "Check mark bullets"
+msgid "Cross mark bullets"
+msgstr ""
#: include/svx/strings.hrc:1274
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_7"
-msgid "Tick mark bullets"
-msgstr "Tick mark bullets"
+msgid "Check mark bullets"
+msgstr ""
#: include/svx/strings.hrc:1275
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_0"
diff --git a/source/en-GB/sw/messages.po b/source/en-GB/sw/messages.po
index e2506f54cfb..420537889af 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: 2018-05-22 13:17+0200\n"
+"POT-Creation-Date: 2018-06-12 14:41+0200\n"
"PO-Revision-Date: 2018-01-24 22:25+0000\n"
"Last-Translator: Stuart Swales <stuart.swales.croftnuisk@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1180,13 +1180,13 @@ msgstr "Citation"
#: sw/inc/strings.hrc:172
msgctxt "STR_POOLCOLL_TOX_ILLUSH"
-msgid "Illustration Index Heading"
-msgstr "Illustration Index Heading"
+msgid "Figure Index Heading"
+msgstr ""
#: sw/inc/strings.hrc:173
msgctxt "STR_POOLCOLL_TOX_ILLUS1"
-msgid "Illustration Index 1"
-msgstr "Illustration Index 1"
+msgid "Figure Index 1"
+msgstr ""
#: sw/inc/strings.hrc:174
msgctxt "STR_POOLCOLL_TOX_OBJECTH"
@@ -3590,8 +3590,8 @@ msgstr "Table of Objects"
#: sw/inc/strings.hrc:672
msgctxt "STR_TOX_ILL"
-msgid "Illustration Index"
-msgstr "Illustration Index"
+msgid "Table of Figures"
+msgstr ""
#: sw/inc/strings.hrc:673
#, c-format
@@ -9244,72 +9244,72 @@ msgctxt "footnotepage|label5"
msgid "Continuation Notice"
msgstr "Continuation Notice"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:49
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:55
msgctxt "footnotesendnotestabpage|ftnntnum"
msgid "_Restart numbering"
msgstr "_Restart numbering"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:91
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:93
msgctxt "footnotesendnotestabpage|ftnoffset_label"
msgid "_Start at:"
msgstr "_Start at:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:112
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:111
msgctxt "footnotesendnotestabpage|ftnntnumfmt"
msgid "Custom _format"
msgstr "Custom _format"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:155
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:150
msgctxt "footnotesendnotestabpage|ftnsuffix_label"
msgid "Aft_er:"
msgstr "Aft_er:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:199
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:188
msgctxt "footnotesendnotestabpage|ftnprefix_label"
msgid "Be_fore:"
msgstr "Be_fore:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:228
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:212
msgctxt "footnotesendnotestabpage|ftnntattextend"
msgid "Collec_t at end of text"
msgstr "Collec_t at end of text"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:252
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:234
msgctxt "footnotesendnotestabpage|label1"
msgid "Footnotes"
msgstr "Footnotes"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:289
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:271
msgctxt "footnotesendnotestabpage|endntattextend"
msgid "C_ollect at end of section"
msgstr "C_ollect at end of section"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:315
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:295
msgctxt "footnotesendnotestabpage|endntnum"
msgid "_Restart numbering"
msgstr "_Restart numbering"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:357
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:333
msgctxt "footnotesendnotestabpage|endoffset_label"
msgid "_Start at:"
msgstr "_Start at:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:378
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:351
msgctxt "footnotesendnotestabpage|endntnumfmt"
msgid "_Custom format"
msgstr "_Custom format"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:421
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:390
msgctxt "footnotesendnotestabpage|endsuffix_label"
msgid "Aft_er:"
msgstr "Aft_er:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:465
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:428
msgctxt "footnotesendnotestabpage|endprefix_label"
msgid "Be_fore:"
msgstr "Be_fore:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:500
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:458
msgctxt "footnotesendnotestabpage|label2"
msgid "Endnotes"
msgstr "Endnotes"
@@ -9339,27 +9339,27 @@ msgctxt "formatsectiondialog|notes"
msgid "Footnotes/Endnotes"
msgstr "Footnotes/Endnotes"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:63
+#: sw/uiconfig/swriter/ui/formattablepage.ui:77
msgctxt "formattablepage|nameft"
msgid "_Name"
msgstr "_Name"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:79
+#: sw/uiconfig/swriter/ui/formattablepage.ui:91
msgctxt "formattablepage|widthft"
msgid "W_idth"
msgstr "W_idth"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:110
+#: sw/uiconfig/swriter/ui/formattablepage.ui:120
msgctxt "formattablepage|relwidth"
msgid "Relati_ve"
msgstr "Relati_ve"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:155
+#: sw/uiconfig/swriter/ui/formattablepage.ui:160
msgctxt "formattablepage|label45"
msgid "Properties"
msgstr "Properties"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:194
+#: sw/uiconfig/swriter/ui/formattablepage.ui:195
msgctxt "formattablepage|leftft"
msgid "Lef_t"
msgstr "Lef_t"
@@ -9369,62 +9369,62 @@ msgctxt "formattablepage|rightft"
msgid "Ri_ght"
msgstr "Ri_ght"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:228
+#: sw/uiconfig/swriter/ui/formattablepage.ui:226
msgctxt "formattablepage|aboveft"
msgid "_Above"
msgstr "_Above"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:245
+#: sw/uiconfig/swriter/ui/formattablepage.ui:241
msgctxt "formattablepage|belowft"
msgid "_Below"
msgstr "_Below"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:320
+#: sw/uiconfig/swriter/ui/formattablepage.ui:311
msgctxt "formattablepage|label46"
msgid "Spacing"
msgstr "Spacing"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:362
+#: sw/uiconfig/swriter/ui/formattablepage.ui:349
msgctxt "formattablepage|full"
msgid "A_utomatic"
msgstr "A_utomatic"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:380
+#: sw/uiconfig/swriter/ui/formattablepage.ui:365
msgctxt "formattablepage|left"
msgid "_Left"
msgstr "_Left"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:398
+#: sw/uiconfig/swriter/ui/formattablepage.ui:381
msgctxt "formattablepage|fromleft"
msgid "_From left"
msgstr "_From left"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:416
+#: sw/uiconfig/swriter/ui/formattablepage.ui:397
msgctxt "formattablepage|right"
msgid "R_ight"
msgstr "R_ight"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:435
+#: sw/uiconfig/swriter/ui/formattablepage.ui:413
msgctxt "formattablepage|center"
msgid "_Center"
msgstr "_Centre"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:453
+#: sw/uiconfig/swriter/ui/formattablepage.ui:429
msgctxt "formattablepage|free"
msgid "_Manual"
msgstr "_Manual"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:478
+#: sw/uiconfig/swriter/ui/formattablepage.ui:452
msgctxt "formattablepage|label43"
msgid "Alignment"
msgstr "Alignment"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:522
+#: sw/uiconfig/swriter/ui/formattablepage.ui:491
msgctxt "formattablepage|label53"
msgid "Text _direction"
msgstr "Text _direction"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:553
+#: sw/uiconfig/swriter/ui/formattablepage.ui:519
msgctxt "formattablepage|label44"
msgid "Properties "
msgstr "Properties "
@@ -9779,22 +9779,27 @@ msgctxt "headerfootermenu|insert_pagenumber"
msgid "Insert Page Number"
msgstr ""
-#: sw/uiconfig/swriter/ui/indentpage.ui:52
+#: sw/uiconfig/swriter/ui/headerfootermenu.ui:42
+msgctxt "headerfootermenu|insert_pagecount"
+msgid "Insert Page Count"
+msgstr ""
+
+#: sw/uiconfig/swriter/ui/indentpage.ui:57
msgctxt "indentpage|label1"
msgid "_Before section"
msgstr "_Before section"
-#: sw/uiconfig/swriter/ui/indentpage.ui:67
+#: sw/uiconfig/swriter/ui/indentpage.ui:71
msgctxt "indentpage|label3"
msgid "_After section"
msgstr "_After section"
-#: sw/uiconfig/swriter/ui/indentpage.ui:113
+#: sw/uiconfig/swriter/ui/indentpage.ui:115
msgctxt "indentpage|label2"
msgid "Indent"
msgstr "Indent"
-#: sw/uiconfig/swriter/ui/indentpage.ui:142
+#: sw/uiconfig/swriter/ui/indentpage.ui:155
msgctxt "indentpage|preview-atkobject"
msgid "Example"
msgstr "Example"
@@ -13285,8 +13290,8 @@ msgstr "Protect form"
#: sw/uiconfig/swriter/ui/optcompatpage.ui:68
msgctxt "optcompatpage|format"
-msgid "MS Word-compatible trailing blanks"
-msgstr "MS Word-compatible trailing blanks"
+msgid "Word-compatible trailing blanks"
+msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:69
msgctxt "optcompatpage|format"
@@ -13295,7 +13300,7 @@ msgstr "Tolerate white lines of PDF page backgrounds for compatibility with old
#: sw/uiconfig/swriter/ui/optcompatpage.ui:70
msgctxt "optcompatpage|format"
-msgid "A database field (e.g., MailMerge) with empty value hides its paragraph"
+msgid "Hide paragraphs of database fields (e.g., mail merge) with an empty value"
msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:71
@@ -15979,122 +15984,122 @@ msgctxt "tableproperties|background"
msgid "Background"
msgstr "Background"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:25
-msgctxt "tabletextflowpage|liststore1"
-msgid "Horizontal"
-msgstr "Horizontal"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:29
-msgctxt "tabletextflowpage|liststore1"
-msgid "Vertical"
-msgstr "Vertical"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:33
-msgctxt "tabletextflowpage|liststore1"
-msgid "Use superordinate object settings"
-msgstr "Use superordinate object settings"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:47
-msgctxt "tabletextflowpage|liststore2"
-msgid "Top"
-msgstr "Top"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:51
-msgctxt "tabletextflowpage|liststore2"
-msgid "Centered"
-msgstr "Centred"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:55
-msgctxt "tabletextflowpage|liststore2"
-msgid "Bottom"
-msgstr "Bottom"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:97
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:53
msgctxt "tabletextflowpage|break"
msgid "_Break"
msgstr "_Break"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:112
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:68
msgctxt "tabletextflowpage|page"
msgid "_Page"
msgstr "_Page"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:132
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:87
msgctxt "tabletextflowpage|column"
msgid "Col_umn"
msgstr "Col_umn"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:151
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:106
msgctxt "tabletextflowpage|before"
msgid "Be_fore"
msgstr "Be_fore"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:171
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:125
msgctxt "tabletextflowpage|after"
msgid "_After"
msgstr "_After"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:203
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:158
msgctxt "tabletextflowpage|pagestyle"
msgid "With Page St_yle"
msgstr "With Page St_yle"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:224
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:177
msgctxt "tabletextflowpage|pagenoft"
msgid "Page _number"
msgstr "Page _number"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:257
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:213
msgctxt "tabletextflowpage|pagestylelb-atkobject"
msgid "With Page Style"
msgstr "With Page Style"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:274
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:230
msgctxt "tabletextflowpage|split"
msgid "Allow _table to split across pages and columns"
msgstr "Allow _table to split across pages and columns"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:289
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:245
msgctxt "tabletextflowpage|splitrow"
msgid "Allow row to break a_cross pages and columns"
msgstr "Allow row to break a_cross pages and columns"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:306
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:262
msgctxt "tabletextflowpage|keep"
msgid "_Keep with next paragraph"
msgstr "_Keep with next paragraph"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:328
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:284
msgctxt "tabletextflowpage|label40"
msgid "Text _orientation"
msgstr "Text _orientation"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:361
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:298
+msgctxt "tabletextflowpage|liststore1"
+msgid "Horizontal"
+msgstr "Horizontal"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:299
+msgctxt "tabletextflowpage|liststore1"
+msgid "Vertical"
+msgstr "Vertical"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:300
+msgctxt "tabletextflowpage|liststore1"
+msgid "Use superordinate object settings"
+msgstr "Use superordinate object settings"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:321
msgctxt "tabletextflowpage|headline"
msgid "R_epeat heading"
msgstr "R_epeat heading"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:383
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:343
msgctxt "tabletextflowpage|label38"
msgid "The first "
msgstr "The first "
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:396
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:356
msgctxt "tabletextflowpage|label39"
msgid "rows"
msgstr "rows"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:434
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:395
msgctxt "tabletextflowpage|label35"
msgid "Text Flow"
msgstr "Text Flow"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:467
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:428
msgctxt "tabletextflowpage|label41"
msgid "_Vertical alignment"
msgstr "_Vertical alignment"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:495
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:442
+msgctxt "tabletextflowpage|liststore2"
+msgid "Top"
+msgstr "Top"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:443
+msgctxt "tabletextflowpage|liststore2"
+msgid "Centered"
+msgstr "Centred"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:444
+msgctxt "tabletextflowpage|liststore2"
+msgid "Bottom"
+msgstr "Bottom"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:460
msgctxt "tabletextflowpage|label36"
msgid "Alignment"
msgstr "Alignment"
@@ -16876,8 +16881,8 @@ msgstr "Alphabetical Index"
#: sw/uiconfig/swriter/ui/tocindexpage.ui:58
msgctxt "tocindexpage|liststore1"
-msgid "Illustration Index"
-msgstr "Illustration Index"
+msgid "Table of Figures"
+msgstr ""
#: sw/uiconfig/swriter/ui/tocindexpage.ui:62
msgctxt "tocindexpage|liststore1"
diff --git a/source/en-GB/writerperfect/messages.po b/source/en-GB/writerperfect/messages.po
index eda8af12bc0..70771559e38 100644
--- a/source/en-GB/writerperfect/messages.po
+++ b/source/en-GB/writerperfect/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-16 16:54+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2017-11-15 23:02+0000\n"
"Last-Translator: Stuart Swales <stuart.swales.croftnuisk@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -66,97 +66,97 @@ msgctxt "exportepub|generalft"
msgid "General"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:122
+#: writerperfect/uiconfig/ui/exportepub.ui:121
msgctxt "exportepub|versionft"
msgid "Version:"
msgstr "Version:"
-#: writerperfect/uiconfig/ui/exportepub.ui:139
+#: writerperfect/uiconfig/ui/exportepub.ui:138
msgctxt "exportepub|epub3"
msgid "EPUB 3.0"
msgstr "EPUB 3.0"
-#: writerperfect/uiconfig/ui/exportepub.ui:140
+#: writerperfect/uiconfig/ui/exportepub.ui:139
msgctxt "exportepub|epub2"
msgid "EPUB 2.0"
msgstr "EPUB 2.0"
-#: writerperfect/uiconfig/ui/exportepub.ui:175
+#: writerperfect/uiconfig/ui/exportepub.ui:174
msgctxt "exportepub|splitft"
msgid "Split method:"
msgstr "Split method:"
-#: writerperfect/uiconfig/ui/exportepub.ui:192
+#: writerperfect/uiconfig/ui/exportepub.ui:191
msgctxt "exportepub|splitpage"
msgid "Page break"
msgstr "Page break"
-#: writerperfect/uiconfig/ui/exportepub.ui:193
+#: writerperfect/uiconfig/ui/exportepub.ui:192
msgctxt "exportepub|splitheading"
msgid "Heading"
msgstr "Heading"
-#: writerperfect/uiconfig/ui/exportepub.ui:228
+#: writerperfect/uiconfig/ui/exportepub.ui:227
msgctxt "exportepub|layoutft"
msgid "Layout method:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:245
+#: writerperfect/uiconfig/ui/exportepub.ui:244
msgctxt "exportepub|layoutreflowable"
msgid "Reflowable"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:246
+#: writerperfect/uiconfig/ui/exportepub.ui:245
msgctxt "exportepub|layoutfixed"
msgid "Fixed"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:281
+#: writerperfect/uiconfig/ui/exportepub.ui:280
msgctxt "exportepub|coverimageft"
msgid "Custom cover image:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:311
+#: writerperfect/uiconfig/ui/exportepub.ui:310
msgctxt "exportepub|coverbutton"
msgid "Browse..."
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:355
+#: writerperfect/uiconfig/ui/exportepub.ui:354
msgctxt "exportepub|mediadirft"
msgid "Custom media directory:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:385
+#: writerperfect/uiconfig/ui/exportepub.ui:384
msgctxt "exportepub|mediabutton"
msgid "Browse..."
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:429
+#: writerperfect/uiconfig/ui/exportepub.ui:428
msgctxt "exportepub|metadataft"
msgid "Metadata"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:470
+#: writerperfect/uiconfig/ui/exportepub.ui:468
msgctxt "exportepub|identifierft"
msgid "Identifier:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:485
+#: writerperfect/uiconfig/ui/exportepub.ui:483
msgctxt "exportepub|titleft"
msgid "Title:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:511
+#: writerperfect/uiconfig/ui/exportepub.ui:509
msgctxt "exportepub|authorft"
msgid "Author:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:537
+#: writerperfect/uiconfig/ui/exportepub.ui:535
msgctxt "exportepub|languageft"
msgid "Language:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:563
+#: writerperfect/uiconfig/ui/exportepub.ui:561
msgctxt "exportepub|dateft"
msgid "Date:"
msgstr ""
diff --git a/source/en-ZA/cui/messages.po b/source/en-ZA/cui/messages.po
index 4078268d905..8eaae3e68ee 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+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"
@@ -10462,106 +10462,106 @@ msgctxt "positionsizedialog|PositionAndSizeDialog"
msgid "Position and Size"
msgstr "Position and Si~ze..."
-#: cui/uiconfig/ui/positionsizedialog.ui:107
+#: cui/uiconfig/ui/positionsizedialog.ui:136
#, fuzzy
msgctxt "positionsizedialog|RID_SVXPAGE_POSITION_SIZE"
msgid "Position and Size"
msgstr "Position and Si~ze..."
-#: cui/uiconfig/ui/positionsizedialog.ui:129
+#: cui/uiconfig/ui/positionsizedialog.ui:182
#, fuzzy
msgctxt "positionsizedialog|RID_SVXPAGE_SWPOSSIZE"
msgid "Position and Size"
msgstr "Position and Si~ze..."
-#: cui/uiconfig/ui/positionsizedialog.ui:152
+#: cui/uiconfig/ui/positionsizedialog.ui:229
msgctxt "positionsizedialog|RID_SVXPAGE_ANGLE"
msgid "Rotation"
msgstr "Rotation"
-#: cui/uiconfig/ui/positionsizedialog.ui:175
+#: cui/uiconfig/ui/positionsizedialog.ui:276
msgctxt "positionsizedialog|RID_SVXPAGE_SLANT"
msgid "Slant & Corner Radius"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:40
+#: cui/uiconfig/ui/possizetabpage.ui:61
#, fuzzy
msgctxt "possizetabpage|FT_POS_X"
msgid "Position _X:"
msgstr "Position"
-#: cui/uiconfig/ui/possizetabpage.ui:56
+#: cui/uiconfig/ui/possizetabpage.ui:75
#, fuzzy
msgctxt "possizetabpage|FT_POS_Y"
msgid "Position _Y:"
msgstr "Position"
-#: cui/uiconfig/ui/possizetabpage.ui:110
+#: cui/uiconfig/ui/possizetabpage.ui:128
msgctxt "possizetabpage|FT_POSREFERENCE"
msgid "_Base point:"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:148
+#: cui/uiconfig/ui/possizetabpage.ui:182
msgctxt "possizetabpage|label1"
msgid "Position"
msgstr "Position"
-#: cui/uiconfig/ui/possizetabpage.ui:190
+#: cui/uiconfig/ui/possizetabpage.ui:224
#, fuzzy
msgctxt "possizetabpage|FT_WIDTH"
msgid "Wi_dth:"
msgstr "Width"
-#: cui/uiconfig/ui/possizetabpage.ui:206
+#: cui/uiconfig/ui/possizetabpage.ui:238
#, fuzzy
msgctxt "possizetabpage|FT_HEIGHT"
msgid "H_eight:"
msgstr "Height"
-#: cui/uiconfig/ui/possizetabpage.ui:247
+#: cui/uiconfig/ui/possizetabpage.ui:276
#, fuzzy
msgctxt "possizetabpage|CBX_SCALE"
msgid "_Keep ratio"
msgstr "Keep Ratio"
-#: cui/uiconfig/ui/possizetabpage.ui:279
+#: cui/uiconfig/ui/possizetabpage.ui:307
msgctxt "possizetabpage|FT_SIZEREFERENCE"
msgid "Base _point:"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:317
+#: cui/uiconfig/ui/possizetabpage.ui:361
msgctxt "possizetabpage|label2"
msgid "Size"
msgstr "Size"
-#: cui/uiconfig/ui/possizetabpage.ui:356
+#: cui/uiconfig/ui/possizetabpage.ui:401
#, fuzzy
msgctxt "possizetabpage|TSB_POSPROTECT"
msgid "Positio_n"
msgstr "Position"
-#: cui/uiconfig/ui/possizetabpage.ui:373
+#: cui/uiconfig/ui/possizetabpage.ui:418
msgctxt "possizetabpage|TSB_SIZEPROTECT"
msgid "_Size"
msgstr "_Size"
-#: cui/uiconfig/ui/possizetabpage.ui:397
+#: cui/uiconfig/ui/possizetabpage.ui:441
#, fuzzy
msgctxt "possizetabpage|label3"
msgid "Protect"
msgstr "~Protect"
-#: cui/uiconfig/ui/possizetabpage.ui:430
+#: cui/uiconfig/ui/possizetabpage.ui:475
msgctxt "possizetabpage|TSB_AUTOGROW_WIDTH"
msgid "_Fit width to text"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:447
+#: cui/uiconfig/ui/possizetabpage.ui:492
msgctxt "possizetabpage|TSB_AUTOGROW_HEIGHT"
msgid "Fit _height to text"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:471
+#: cui/uiconfig/ui/possizetabpage.ui:515
msgctxt "possizetabpage|label4"
msgid "Adapt"
msgstr ""
@@ -10774,50 +10774,50 @@ msgctxt "recordnumberdialog|label2"
msgid "go to record"
msgstr ""
-#: cui/uiconfig/ui/rotationtabpage.ui:52
+#: cui/uiconfig/ui/rotationtabpage.ui:56
#, fuzzy
msgctxt "rotationtabpage|FT_POS_X"
msgid "Position _X:"
msgstr "Position"
-#: cui/uiconfig/ui/rotationtabpage.ui:66
+#: cui/uiconfig/ui/rotationtabpage.ui:70
#, fuzzy
msgctxt "rotationtabpage|FT_POS_Y"
msgid "Position _Y:"
msgstr "Position"
-#: cui/uiconfig/ui/rotationtabpage.ui:116
+#: cui/uiconfig/ui/rotationtabpage.ui:123
msgctxt "rotationtabpage|FT_POSPRESETS"
msgid "_Default settings:"
msgstr ""
-#: cui/uiconfig/ui/rotationtabpage.ui:130
+#: cui/uiconfig/ui/rotationtabpage.ui:151
msgctxt "rotationtabpage|CTL_RECT|tooltip_text"
msgid "Rotation point"
msgstr ""
-#: cui/uiconfig/ui/rotationtabpage.ui:155
+#: cui/uiconfig/ui/rotationtabpage.ui:178
msgctxt "rotationtabpage|label1"
msgid "Pivot Point"
msgstr ""
-#: cui/uiconfig/ui/rotationtabpage.ui:197
+#: cui/uiconfig/ui/rotationtabpage.ui:220
msgctxt "rotationtabpage|FT_ANGLE"
msgid "_Angle:"
msgstr ""
-#: cui/uiconfig/ui/rotationtabpage.ui:238
+#: cui/uiconfig/ui/rotationtabpage.ui:263
msgctxt "rotationtabpage|FT_ANGLEPRESETS"
msgid "Default _settings:"
msgstr ""
-#: cui/uiconfig/ui/rotationtabpage.ui:252
+#: cui/uiconfig/ui/rotationtabpage.ui:287
#, fuzzy
msgctxt "rotationtabpage|CTL_ANGLE|tooltip_text"
msgid "Rotation Angle"
msgstr "Rotation angle"
-#: cui/uiconfig/ui/rotationtabpage.ui:277
+#: cui/uiconfig/ui/rotationtabpage.ui:314
#, fuzzy
msgctxt "rotationtabpage|label2"
msgid "Rotation Angle"
@@ -11210,55 +11210,55 @@ msgctxt "similaritysearchdialog|relaxbox"
msgid "_Combine"
msgstr "Comb~ine"
-#: cui/uiconfig/ui/slantcornertabpage.ui:50
+#: cui/uiconfig/ui/slantcornertabpage.ui:70
msgctxt "slantcornertabpage|label5"
msgid "_X:"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:88
+#: cui/uiconfig/ui/slantcornertabpage.ui:110
msgctxt "slantcornertabpage|label6"
msgid "_Y:"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:125
+#: cui/uiconfig/ui/slantcornertabpage.ui:149
msgctxt "slantcornertabpage|label3"
msgid "Control Point 1"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:159
+#: cui/uiconfig/ui/slantcornertabpage.ui:183
#, fuzzy
msgctxt "slantcornertabpage|FT_RADIUS"
msgid "_Radius:"
msgstr "Radius"
-#: cui/uiconfig/ui/slantcornertabpage.ui:189
+#: cui/uiconfig/ui/slantcornertabpage.ui:214
#, fuzzy
msgctxt "slantcornertabpage|label1"
msgid "Corner Radius"
msgstr "Corner radius"
-#: cui/uiconfig/ui/slantcornertabpage.ui:223
+#: cui/uiconfig/ui/slantcornertabpage.ui:248
msgctxt "slantcornertabpage|FT_ANGLE"
msgid "_Angle:"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:253
+#: cui/uiconfig/ui/slantcornertabpage.ui:279
#, fuzzy
msgctxt "slantcornertabpage|label2"
msgid "Slant"
msgstr "Slant"
-#: cui/uiconfig/ui/slantcornertabpage.ui:294
+#: cui/uiconfig/ui/slantcornertabpage.ui:320
msgctxt "slantcornertabpage|label4"
msgid "_X:"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:332
+#: cui/uiconfig/ui/slantcornertabpage.ui:360
msgctxt "slantcornertabpage|label7"
msgid "_Y:"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:369
+#: cui/uiconfig/ui/slantcornertabpage.ui:399
msgctxt "slantcornertabpage|label8"
msgid "Control Point 2"
msgstr ""
@@ -11554,123 +11554,123 @@ msgctxt "storedwebconnectiondialog|change"
msgid "_Change Password..."
msgstr "Change ~Password..."
-#: cui/uiconfig/ui/swpossizepage.ui:74
+#: cui/uiconfig/ui/swpossizepage.ui:85
#, fuzzy
msgctxt "swpossizepage|widthft"
msgid "_Width:"
msgstr "Width"
-#: cui/uiconfig/ui/swpossizepage.ui:111
+#: cui/uiconfig/ui/swpossizepage.ui:123
#, fuzzy
msgctxt "swpossizepage|heightft"
msgid "H_eight:"
msgstr "Height"
-#: cui/uiconfig/ui/swpossizepage.ui:128
+#: cui/uiconfig/ui/swpossizepage.ui:141
#, fuzzy
msgctxt "swpossizepage|ratio"
msgid "_Keep ratio"
msgstr "Keep Ratio"
-#: cui/uiconfig/ui/swpossizepage.ui:149
+#: cui/uiconfig/ui/swpossizepage.ui:162
msgctxt "swpossizepage|label2"
msgid "Size"
msgstr "Size"
-#: cui/uiconfig/ui/swpossizepage.ui:205
+#: cui/uiconfig/ui/swpossizepage.ui:218
#, fuzzy
msgctxt "swpossizepage|topage"
msgid "To _page"
msgstr "To Page"
-#: cui/uiconfig/ui/swpossizepage.ui:222
+#: cui/uiconfig/ui/swpossizepage.ui:234
#, fuzzy
msgctxt "swpossizepage|topara"
msgid "To paragrap_h"
msgstr "To Paragraph"
-#: cui/uiconfig/ui/swpossizepage.ui:238
+#: cui/uiconfig/ui/swpossizepage.ui:250
#, fuzzy
msgctxt "swpossizepage|tochar"
msgid "To cha_racter"
msgstr "To Character"
-#: cui/uiconfig/ui/swpossizepage.ui:254
+#: cui/uiconfig/ui/swpossizepage.ui:266
#, fuzzy
msgctxt "swpossizepage|aschar"
msgid "_As character"
msgstr "As Character"
-#: cui/uiconfig/ui/swpossizepage.ui:270
+#: cui/uiconfig/ui/swpossizepage.ui:282
#, fuzzy
msgctxt "swpossizepage|toframe"
msgid "To _frame"
msgstr "To Frame"
-#: cui/uiconfig/ui/swpossizepage.ui:292
+#: cui/uiconfig/ui/swpossizepage.ui:304
msgctxt "swpossizepage|label1"
msgid "Anchor"
msgstr "Anchor"
-#: cui/uiconfig/ui/swpossizepage.ui:333
+#: cui/uiconfig/ui/swpossizepage.ui:344
#, fuzzy
msgctxt "swpossizepage|horiposft"
msgid "Hori_zontal:"
msgstr "Horizontal"
-#: cui/uiconfig/ui/swpossizepage.ui:347
+#: cui/uiconfig/ui/swpossizepage.ui:358
msgctxt "swpossizepage|horibyft"
msgid "b_y:"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:361
+#: cui/uiconfig/ui/swpossizepage.ui:372
msgctxt "swpossizepage|vertbyft"
msgid "_by:"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:375
+#: cui/uiconfig/ui/swpossizepage.ui:386
msgctxt "swpossizepage|horitoft"
msgid "_to:"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:421
+#: cui/uiconfig/ui/swpossizepage.ui:433
#, fuzzy
msgctxt "swpossizepage|vertposft"
msgid "_Vertical:"
msgstr "Vertical"
-#: cui/uiconfig/ui/swpossizepage.ui:457
+#: cui/uiconfig/ui/swpossizepage.ui:470
msgctxt "swpossizepage|verttoft"
msgid "t_o:"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:478
+#: cui/uiconfig/ui/swpossizepage.ui:492
msgctxt "swpossizepage|mirror"
msgid "_Mirror on even pages"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:495
+#: cui/uiconfig/ui/swpossizepage.ui:509
msgctxt "swpossizepage|followtextflow"
msgid "Follow te_xt flow"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:518
+#: cui/uiconfig/ui/swpossizepage.ui:532
msgctxt "swpossizepage|label11"
msgid "Position"
msgstr "Position"
-#: cui/uiconfig/ui/swpossizepage.ui:549
+#: cui/uiconfig/ui/swpossizepage.ui:563
#, fuzzy
msgctxt "swpossizepage|pos"
msgid "Positio_n"
msgstr "Position"
-#: cui/uiconfig/ui/swpossizepage.ui:565
+#: cui/uiconfig/ui/swpossizepage.ui:579
msgctxt "swpossizepage|size"
msgid "_Size"
msgstr "_Size"
-#: cui/uiconfig/ui/swpossizepage.ui:587
+#: cui/uiconfig/ui/swpossizepage.ui:601
#, fuzzy
msgctxt "swpossizepage|label3"
msgid "Protect"
@@ -11873,13 +11873,13 @@ msgctxt "textattrtabpage|label2"
msgid "Spacing to Borders"
msgstr ""
-#: cui/uiconfig/ui/textattrtabpage.ui:425
+#: cui/uiconfig/ui/textattrtabpage.ui:423
#, fuzzy
msgctxt "textattrtabpage|TSB_FULL_WIDTH"
msgid "Full _width"
msgstr "Full-width"
-#: cui/uiconfig/ui/textattrtabpage.ui:448
+#: cui/uiconfig/ui/textattrtabpage.ui:446
msgctxt "textattrtabpage|label3"
msgid "Text Anchor"
msgstr ""
diff --git a/source/en-ZA/filter/source/config/fragments/filters.po b/source/en-ZA/filter/source/config/fragments/filters.po
index af793a23a6f..60960eafd1b 100644
--- a/source/en-ZA/filter/source/config/fragments/filters.po
+++ b/source/en-ZA/filter/source/config/fragments/filters.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-16 16:54+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2016-12-01 14:59+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -465,8 +465,8 @@ msgctxt ""
"MS Word 2003 XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Word 2003 XML"
-msgstr "Microsoft Word 2003 XML"
+msgid "Word 2003 XML"
+msgstr ""
#: MS_Word_2007_XML.xcu
msgctxt ""
@@ -1290,7 +1290,7 @@ msgctxt ""
"Calc MS Excel 2007 VBA XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Excel 2007-2016 XML (macro enabled)"
+msgid "Excel 2007–2019 (macro-enabled)"
msgstr ""
#: calc_MS_Excel_2007_XML.xcu
diff --git a/source/en-ZA/filter/source/config/fragments/types.po b/source/en-ZA/filter/source/config/fragments/types.po
index 3d0e8395aae..1c4f423bf07 100644
--- a/source/en-ZA/filter/source/config/fragments/types.po
+++ b/source/en-ZA/filter/source/config/fragments/types.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-08 15:11+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2015-11-11 20:37+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -296,8 +296,8 @@ msgctxt ""
"writer_MS_Word_2003_XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Word 2003 XML"
-msgstr "Microsoft Word 2003 XML"
+msgid "Word 2003 XML"
+msgstr ""
#: writer_MS_Word_2007_XML.xcu
msgctxt ""
diff --git a/source/en-ZA/fpicker/messages.po b/source/en-ZA/fpicker/messages.po
index ae768a48ef2..b08eef05472 100644
--- a/source/en-ZA/fpicker/messages.po
+++ b/source/en-ZA/fpicker/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+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"
@@ -278,14 +278,13 @@ msgstr ""
#: fpicker/uiconfig/ui/foldernamedialog.ui:8
msgctxt "foldernamedialog|FolderNameDialog"
-msgid "Folder Name ?"
+msgid "Folder Name"
msgstr ""
#: fpicker/uiconfig/ui/foldernamedialog.ui:91
-#, fuzzy
msgctxt "foldernamedialog|label2"
-msgid "Na_me"
-msgstr "Name"
+msgid "Na_me:"
+msgstr ""
#: fpicker/uiconfig/ui/foldernamedialog.ui:122
#, fuzzy
diff --git a/source/en-ZA/helpcontent2/source/text/shared/00.po b/source/en-ZA/helpcontent2/source/text/shared/00.po
index 1ef38c06277..0317a756e90 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2016-05-24 08:27+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -397,16 +397,16 @@ msgctxt ""
"00000001.xhp\n"
"hd_id3149670\n"
"help.text"
-msgid "Back"
-msgstr "Back"
+msgid "Reset"
+msgstr ""
#: 00000001.xhp
msgctxt ""
"00000001.xhp\n"
"par_id3145068\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optionsdialog/revert\">Resets modified values back to the $[officename] default values.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/optionsdialog/revert\">Resets modified values back to the $[officename] default values.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optionsdialog/revert\">Resets changes made to the current tab to those applicable when this dialog was opened.</ahelp>"
+msgstr ""
#: 00000001.xhp
msgctxt ""
@@ -552,6 +552,54 @@ msgctxt ""
msgid "<variable id=\"ShiftF1\">Press Shift+F1 and point to a control to learn more about that control.</variable>"
msgstr ""
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"hd_id631527692833772\n"
+"help.text"
+msgid "Options dialog buttons"
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"hd_id831527692839432\n"
+"help.text"
+msgid "OK"
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"par_id471527692844934\n"
+"help.text"
+msgid "Save the changes in the page and close the Options dialog."
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"hd_id261527692850720\n"
+"help.text"
+msgid "Cancel"
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"par_id571527692855533\n"
+"help.text"
+msgid "Close the Options dialog and discard all changes done."
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"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 Options dialog."
+msgstr ""
+
#: 00000002.xhp
msgctxt ""
"00000002.xhp\n"
@@ -11125,16 +11173,16 @@ msgctxt ""
"00040502.xhp\n"
"par_id3151293\n"
"help.text"
-msgid "<variable id=\"linienstile\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Line Styles</emph> tab </variable>"
-msgstr "<variable id=\"linienstile\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Line Styles</emph> tab </variable>"
+msgid "<variable id=\"linienstile\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Line Styles</emph> tab</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3149317\n"
"help.text"
-msgid "<variable id=\"linienenden\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Arrow Styles</emph> tab </variable>"
-msgstr "<variable id=\"linienenden\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Arrow Styles</emph> tab </variable>"
+msgid "<variable id=\"linienenden\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Arrow Styles</emph> tab</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
@@ -11173,15 +11221,15 @@ msgctxt ""
"00040502.xhp\n"
"par_id3154948\n"
"help.text"
-msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Area</emph> tab"
-msgstr "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Area</emph> tab"
+msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Area</emph> tab."
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3145607\n"
"help.text"
-msgid "Choose <emph>View - Styles</emph> - open context menu and choose <emph>Modify/New - Area</emph> tab (presentation documents)"
+msgid "Choose <emph>View - Styles</emph> - open context menu and choose <emph>Modify/New - Area</emph> tab (presentation documents)."
msgstr ""
#: 00040502.xhp
@@ -11189,47 +11237,47 @@ msgctxt ""
"00040502.xhp\n"
"par_id3152922\n"
"help.text"
-msgid "Choose <emph>Format - Title - Area</emph> tab (chart documents)"
-msgstr "Choose <emph>Format - Title - Area</emph> tab (chart documents)"
+msgid "Choose <emph>Format - Title - Area</emph> tab (chart documents)."
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3157894\n"
"help.text"
-msgid "Choose <emph>Format - Legend - Area</emph> tab (chart documents)"
-msgstr "Choose <emph>Format - Legend - Area</emph> tab (chart documents)"
+msgid "Choose <emph>Format - Legend - Area</emph> tab (chart documents)."
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3144444\n"
"help.text"
-msgid "Choose <emph>Format - Chart Wall - Area</emph> tab (chart documents)"
-msgstr "Choose <emph>Format - Chart Wall - Area</emph> tab (chart documents)"
+msgid "Choose <emph>Format - Chart Wall - Area</emph> tab (chart documents)."
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3156543\n"
"help.text"
-msgid "Choose <emph>Format - Chart Floor - Area</emph> tab (chart documents)"
-msgstr "Choose <emph>Format - Chart Floor - Area</emph> tab (chart documents)"
+msgid "Choose <emph>Format - Chart Floor - Area</emph> tab (chart documents)."
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3150685\n"
"help.text"
-msgid "Choose <emph>Format - Chart Area - Area</emph> tab (chart documents)"
-msgstr "Choose <emph>Format - Chart Area - Area</emph> tab (chart documents)"
+msgid "Choose <emph>Format - Chart Area - Area</emph> tab (chart documents)."
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3149664\n"
"help.text"
-msgid "Choose <emph>Slide - Properties - Background</emph> tab (in $[officename] Impress)"
+msgid "Choose <emph>Slide - Properties - Background</emph> tab (in $[officename] Impress)."
msgstr ""
#: 00040502.xhp
@@ -11237,7 +11285,15 @@ msgctxt ""
"00040502.xhp\n"
"par_id9149694\n"
"help.text"
-msgid "Choose <emph>Page - Properties - Background</emph> tab (in $[officename] Draw)"
+msgid "Choose <emph>Page - Properties - Background</emph> tab (in $[officename] Draw)."
+msgstr ""
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id841527083135387\n"
+"help.text"
+msgid "Choose <emph>Table - Properties - Background</emph> tab."
msgstr ""
#: 00040502.xhp
@@ -11349,32 +11405,32 @@ msgctxt ""
"00040502.xhp\n"
"par_id3150011\n"
"help.text"
-msgid "<variable id=\"schatte\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Shadow</emph> tab </variable>"
-msgstr "<variable id=\"schatte\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Shadow</emph> tab </variable>"
+msgid "<variable id=\"schatte\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Shadow</emph> tab</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3147441\n"
"help.text"
-msgid "<variable id=\"verlauf\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Gradients</emph> tab </variable>"
-msgstr "<variable id=\"verlauf\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Gradients</emph> tab </variable>"
+msgid "<variable id=\"verlauf\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Gradients</emph> tab</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3155308\n"
"help.text"
-msgid "<variable id=\"schraffur\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Hatching</emph> tab </variable>"
-msgstr "<variable id=\"schraffur\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Hatching</emph> tab </variable>"
+msgid "<variable id=\"schraffur\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Hatching</emph> tab</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3145800\n"
"help.text"
-msgid "<variable id=\"bitmap\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Bitmaps</emph> tab </variable>"
-msgstr "<variable id=\"bitmap\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Bitmaps</emph> tab </variable>"
+msgid "<variable id=\"bitmap\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Bitmaps</emph> tab</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
@@ -11413,8 +11469,8 @@ msgctxt ""
"00040502.xhp\n"
"par_id3156286\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F4 key </caseinline><caseinline select=\"IMPRESS\">F4 key </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F4 key </caseinline><caseinline select=\"IMPRESS\">F4 key </caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F4 key</caseinline><caseinline select=\"IMPRESS\">F4 key</caseinline></switchinline>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
@@ -11453,8 +11509,8 @@ msgctxt ""
"00040502.xhp\n"
"par_id3153099\n"
"help.text"
-msgid "<variable id=\"position2\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Position and Size</emph> tab </variable>"
-msgstr "<variable id=\"position2\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Position and Size</emph> tab </variable>"
+msgid "<variable id=\"position2\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Position and Size</emph> tab</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
@@ -11485,16 +11541,16 @@ msgctxt ""
"00040502.xhp\n"
"par_id3145666\n"
"help.text"
-msgid "<variable id=\"ecke\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Slant & Corner Radius</emph> tab </variable>"
-msgstr "<variable id=\"ecke\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Slant & Corner Radius</emph> tab </variable>"
+msgid "<variable id=\"ecke\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Slant & Corner Radius</emph> tab</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3146081\n"
"help.text"
-msgid "<variable id=\"legende\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Callout</emph> tab (only for textbox callouts, not for custom shapes callouts) </variable>"
-msgstr "<variable id=\"legende\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Callout</emph> tab (only for textbox callouts, not for custom shapes callouts) </variable>"
+msgid "<variable id=\"legende\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Callout</emph> tab (only for textbox callouts, not for custom shapes callouts)</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
@@ -11517,8 +11573,8 @@ msgctxt ""
"00040502.xhp\n"
"par_id3149019\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F8 key </caseinline><caseinline select=\"IMPRESS\">F8 key </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F8 key </caseinline><caseinline select=\"IMPRESS\">F8 key </caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F8 key</caseinline><caseinline select=\"IMPRESS\">F8 key</caseinline></switchinline>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
@@ -11805,8 +11861,8 @@ msgctxt ""
"00040502.xhp\n"
"par_id3153076\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Align Center Horizontally </caseinline><defaultinline>Centered</defaultinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Align Center Horizontally </caseinline><defaultinline>Centered</defaultinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Align Center Horizontally</caseinline><defaultinline>Centered</defaultinline></switchinline>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
@@ -11845,8 +11901,8 @@ msgctxt ""
"00040502.xhp\n"
"par_id3150527\n"
"help.text"
-msgid "<variable id=\"font\">Click <emph>Fontwork</emph> icon on <emph>Drawing</emph> bar </variable>"
-msgstr "<variable id=\"font\">Click <emph>Fontwork</emph> icon on <emph>Drawing</emph> bar </variable>"
+msgid "<variable id=\"font\">Click <emph>Fontwork</emph> icon on <emph>Drawing</emph> bar</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
diff --git a/source/en-ZA/helpcontent2/source/text/shared/01.po b/source/en-ZA/helpcontent2/source/text/shared/01.po
index c49475d94b1..9edd0d0b4eb 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: 2018-05-23 23:19+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2016-07-05 21:48+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -23587,6 +23587,22 @@ msgstr ""
#: 05210100.xhp
msgctxt ""
"05210100.xhp\n"
+"hd_id471527077476052\n"
+"help.text"
+msgid "Cell, Row or Table background selector"
+msgstr ""
+
+#: 05210100.xhp
+msgctxt ""
+"05210100.xhp\n"
+"par_id661527077493366\n"
+"help.text"
+msgid "Select the table object which background area is to be filled."
+msgstr ""
+
+#: 05210100.xhp
+msgctxt ""
+"05210100.xhp\n"
"hd_id3147373\n"
"help.text"
msgid "None"
@@ -31205,24 +31221,24 @@ msgctxt ""
"06040100.xhp\n"
"hd_id3145072\n"
"help.text"
-msgid "Automatic *bold* and _underline_"
-msgstr "Automatic *bold* and _underline_"
+msgid "Automatic *bold*, /italic/, -strikeout- and _underline_"
+msgstr ""
#: 06040100.xhp
msgctxt ""
"06040100.xhp\n"
"par_id3153577\n"
"help.text"
-msgid "Automatically applies bold formatting to text enclosed by asterisks (*), and underline to text enclosed by underscores ( _ ), for example, *bold*. The asterisks and underscores are not displayed after the formatting is applied."
-msgstr "Automatically applies bold formatting to text enclosed by asterisks (*), and underline to text enclosed by underscores ( _ ), for example, *bold*. The asterisks and underscores are not displayed after the formatting is applied."
+msgid "Automatically applies bold, italic, strikethrough or underline formatting to text enclosed by asterisks (*), slashes (/), hyphens (-), and underscores (_), respectively. These characters disappear after the formatting is applied."
+msgstr ""
#: 06040100.xhp
msgctxt ""
"06040100.xhp\n"
"par_id3153127\n"
"help.text"
-msgid "This feature does not work if the formatting characters * or _ are entered with an <link href=\"text/shared/00/00000005.xhp#IME\" name=\"Input Method Editor\">Input Method Editor</link>."
-msgstr "This feature does not work if the formatting characters * or _ are entered with an <link href=\"text/shared/00/00000005.xhp#IME\" name=\"Input Method Editor\">Input Method Editor</link>."
+msgid "This feature does not work if the formatting characters <item type=\"literal\">* / - _</item> are entered with an <link href=\"text/shared/00/00000005.xhp#IME\" name=\"Input Method Editor\">Input Method Editor</link>."
+msgstr ""
#: 06040100.xhp
msgctxt ""
diff --git a/source/en-ZA/helpcontent2/source/text/shared/optionen.po b/source/en-ZA/helpcontent2/source/text/shared/optionen.po
index 8521c75518b..9df9851629d 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: 2018-05-08 15:10+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2016-07-05 22:09+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -83,6 +83,22 @@ msgstr ""
#: 01000000.xhp
msgctxt ""
"01000000.xhp\n"
+"hd_id551527692881035\n"
+"help.text"
+msgid "Help"
+msgstr ""
+
+#: 01000000.xhp
+msgctxt ""
+"01000000.xhp\n"
+"par_id831527692885723\n"
+"help.text"
+msgid "Opens the help contents for the Options page displayed."
+msgstr ""
+
+#: 01000000.xhp
+msgctxt ""
+"01000000.xhp\n"
"hd_id3159149\n"
"help.text"
msgid "<link href=\"text/shared/optionen/01010000.xhp\" name=\"$[officename]\">%PRODUCTNAME</link>"
@@ -4565,8 +4581,8 @@ msgctxt ""
"01030300.xhp\n"
"par_idN10640\n"
"help.text"
-msgid "Options"
-msgstr "Options"
+msgid "Security Options and Warnings"
+msgstr ""
#: 01030300.xhp
msgctxt ""
@@ -4597,8 +4613,8 @@ msgctxt ""
"01030300.xhp\n"
"hd_id3168736\n"
"help.text"
-msgid "Persistently save passwords protected by a master password"
-msgstr "Persistently save passwords protected by a master password"
+msgid "Persistently save passwords for web connections"
+msgstr ""
#: 01030300.xhp
msgctxt ""
@@ -4613,8 +4629,24 @@ msgctxt ""
"01030300.xhp\n"
"hd_id3901791\n"
"help.text"
+msgid "Protected by a master password (recommended)"
+msgstr ""
+
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"par_id31527711486980\n"
+"help.text"
+msgid "Check to enable all connections' passwords to be protected by a master password."
+msgstr ""
+
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"hd_id141527711343312\n"
+"help.text"
msgid "Master Password"
-msgstr "Master Password"
+msgstr ""
#: 01030300.xhp
msgctxt ""
@@ -13733,7 +13765,7 @@ msgctxt ""
"java.xhp\n"
"hd_id3148618\n"
"help.text"
-msgid "Optional (unstable) options"
+msgid "Optional Features"
msgstr ""
#: java.xhp
@@ -13749,7 +13781,7 @@ msgctxt ""
"java.xhp\n"
"par_id3156344\n"
"help.text"
-msgid "It enables features that are not yet complete or contain known bugs. The list of these features is different version by version, or even it can be empty."
+msgid "Enables features that are not yet complete or may contain known bugs. The list of these features is different version by version, or even it can be empty."
msgstr ""
#: java.xhp
@@ -13765,7 +13797,7 @@ msgctxt ""
"java.xhp\n"
"par_id3156345\n"
"help.text"
-msgid "It enables macro recording, so the <link href=\"text/shared/guide/macro_recording.xhp\" name=\"Tools - Macros - Record Macro\"><item type=\"menuitem\">Tools - Macros - Record Macro</item></link> menu item will be available."
+msgid "Enables macro recording. The <link href=\"text/shared/guide/macro_recording.xhp\" name=\"Tools - Macros - Record Macro\"><item type=\"menuitem\">Tools - Macros - Record Macro</item></link> menu item is available."
msgstr ""
#: java.xhp
diff --git a/source/en-ZA/officecfg/registry/data/org/openoffice/Office/UI.po b/source/en-ZA/officecfg/registry/data/org/openoffice/Office/UI.po
index f0beb4e6dda..751cd9d6d9e 100644
--- a/source/en-ZA/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/en-ZA/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-22 13:17+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2016-12-21 22:12+0000\n"
"Last-Translator: dwayne <dwayne@translate.org.za>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -26975,8 +26975,8 @@ msgctxt ""
"..WriterCommands.UserInterface.Commands..uno:TextAttributes\n"
"Label\n"
"value.text"
-msgid "Text Attributes"
-msgstr "Text Attributes"
+msgid "Text Attributes..."
+msgstr ""
#: WriterCommands.xcu
msgctxt ""
diff --git a/source/en-ZA/readlicense_oo/docs.po b/source/en-ZA/readlicense_oo/docs.po
index 2434cee9bf3..e07b13acd4a 100644
--- a/source/en-ZA/readlicense_oo/docs.po
+++ b/source/en-ZA/readlicense_oo/docs.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-04-17 15:54+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2016-03-11 01:06+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -117,7 +117,7 @@ msgctxt ""
"readme.xrm\n"
"macxiOSX\n"
"readmeitem.text"
-msgid "MacOSX 10.8 (Mountain Lion) or higher"
+msgid "MacOSX 10.9 (Mavericks) or higher"
msgstr ""
#: readme.xrm
diff --git a/source/en-ZA/sc/messages.po b/source/en-ZA/sc/messages.po
index dddb598b60f..b759eab29fa 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-12 14:40+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"
@@ -1870,17 +1870,22 @@ msgid "Nested arrays are not supported."
msgstr "Nested arrays are not supported."
#: sc/inc/globstr.hrc:390
+msgctxt "STR_ERR_LONG_BAD_ARRAY_CONTENT"
+msgid "Unsupported inline array content."
+msgstr ""
+
+#: sc/inc/globstr.hrc:391
#, fuzzy
msgctxt "STR_UNDO_TEXTTOCOLUMNS"
msgid "Text to Columns"
msgstr "Text to Columns"
-#: sc/inc/globstr.hrc:391
+#: sc/inc/globstr.hrc:392
msgctxt "STR_DOC_UPDATED"
msgid "Your spreadsheet has been updated with changes saved by other users."
msgstr "Your spreadsheet has been updated with changes saved by other users."
-#: sc/inc/globstr.hrc:392
+#: sc/inc/globstr.hrc:393
msgctxt "STR_DOC_WILLBESAVED"
msgid ""
"The spreadsheet must be saved now to activate sharing mode.\n"
@@ -1891,7 +1896,7 @@ msgstr ""
"\n"
"Do you want to continue?"
-#: sc/inc/globstr.hrc:393
+#: sc/inc/globstr.hrc:394
msgctxt "STR_DOC_WILLNOTBESAVED"
msgid ""
"Already resolved merge conflicts will be lost and your changes to the shared spreadsheet will not be saved.\n"
@@ -1902,7 +1907,7 @@ msgstr ""
"\n"
"Do you want to continue?"
-#: sc/inc/globstr.hrc:394
+#: sc/inc/globstr.hrc:395
msgctxt "STR_DOC_DISABLESHARED"
msgid ""
"Disabling shared mode of a spreadsheet hinders all other users of the shared spreadsheet to merge back their work.\n"
@@ -1913,7 +1918,7 @@ msgstr ""
"\n"
"Do you want to continue?"
-#: sc/inc/globstr.hrc:395
+#: sc/inc/globstr.hrc:396
msgctxt "STR_DOC_NOLONGERSHARED"
msgid ""
"This spreadsheet is no longer in shared mode.\n"
@@ -1924,7 +1929,7 @@ msgstr ""
"\n"
"Save your spreadsheet to a separate file and merge your changes to the shared spreadsheet manually."
-#: sc/inc/globstr.hrc:396
+#: sc/inc/globstr.hrc:397
msgctxt "STR_FILE_LOCKED_TRY_LATER"
msgid ""
"The shared spreadsheet file is locked due to a merge in progress by user: '%1'\n"
@@ -1935,7 +1940,7 @@ msgstr ""
"\n"
"Sharing mode of a locked file cannot be disabled. Try again later."
-#: sc/inc/globstr.hrc:397
+#: sc/inc/globstr.hrc:398
msgctxt "STR_FILE_LOCKED_SAVE_LATER"
msgid ""
"The shared spreadsheet file is locked due to a merge in progress by user: '%1'\n"
@@ -1946,148 +1951,148 @@ msgstr ""
"\n"
"Try again later to save your changes."
-#: sc/inc/globstr.hrc:398
+#: sc/inc/globstr.hrc:399
msgctxt "STR_UNKNOWN_USER"
msgid "Unknown User"
msgstr "Unknown User"
-#: sc/inc/globstr.hrc:399
+#: sc/inc/globstr.hrc:400
msgctxt "STR_SHAPE_AUTOSHAPE"
msgid "AutoShape"
msgstr "AutoShape"
-#: sc/inc/globstr.hrc:400
+#: sc/inc/globstr.hrc:401
msgctxt "STR_SHAPE_RECTANGLE"
msgid "Rectangle"
msgstr "Rectangle"
-#: sc/inc/globstr.hrc:401
+#: sc/inc/globstr.hrc:402
msgctxt "STR_SHAPE_LINE"
msgid "Line"
msgstr "Line"
-#: sc/inc/globstr.hrc:402
+#: sc/inc/globstr.hrc:403
msgctxt "STR_SHAPE_OVAL"
msgid "Oval"
msgstr "Oval"
-#: sc/inc/globstr.hrc:403
+#: sc/inc/globstr.hrc:404
msgctxt "STR_FORM_BUTTON"
msgid "Button"
msgstr "Button"
-#: sc/inc/globstr.hrc:404
+#: sc/inc/globstr.hrc:405
msgctxt "STR_FORM_CHECKBOX"
msgid "Check Box"
msgstr "Tick Box"
-#: sc/inc/globstr.hrc:405
+#: sc/inc/globstr.hrc:406
msgctxt "STR_FORM_OPTIONBUTTON"
msgid "Option Button"
msgstr "Option Button"
-#: sc/inc/globstr.hrc:406
+#: sc/inc/globstr.hrc:407
msgctxt "STR_FORM_LABEL"
msgid "Label"
msgstr "Label"
-#: sc/inc/globstr.hrc:407
+#: sc/inc/globstr.hrc:408
msgctxt "STR_FORM_LISTBOX"
msgid "List Box"
msgstr "List Box"
-#: sc/inc/globstr.hrc:408
+#: sc/inc/globstr.hrc:409
msgctxt "STR_FORM_GROUPBOX"
msgid "Group Box"
msgstr "Group Box"
-#: sc/inc/globstr.hrc:409
+#: sc/inc/globstr.hrc:410
msgctxt "STR_FORM_DROPDOWN"
msgid "Drop Down"
msgstr "Drop Down"
-#: sc/inc/globstr.hrc:410
+#: sc/inc/globstr.hrc:411
msgctxt "STR_FORM_SPINNER"
msgid "Spinner"
msgstr "Spinner"
-#: sc/inc/globstr.hrc:411
+#: sc/inc/globstr.hrc:412
msgctxt "STR_FORM_SCROLLBAR"
msgid "Scroll Bar"
msgstr "Scroll Bar"
-#: sc/inc/globstr.hrc:412
+#: sc/inc/globstr.hrc:413
msgctxt "STR_STYLE_FAMILY_CELL"
msgid "Cell Styles"
msgstr "Cell Styles"
-#: sc/inc/globstr.hrc:413
+#: sc/inc/globstr.hrc:414
msgctxt "STR_STYLE_FAMILY_PAGE"
msgid "Page Styles"
msgstr "Page Styles"
-#: sc/inc/globstr.hrc:414
+#: sc/inc/globstr.hrc:415
msgctxt "STR_ERR_DATAPILOTSOURCE"
msgid "Pivot table source data is invalid."
msgstr "Pivot table source data is invalid."
-#: sc/inc/globstr.hrc:415
+#: sc/inc/globstr.hrc:416
msgctxt "STR_OPTIONS_WARN_SEPARATORS"
msgid "Because the current formula separator settings conflict with the locale, the formula separators have been reset to their default values."
msgstr "Because the current formula separator settings conflict with the locale, the formula separators have been reset to their default values."
-#: sc/inc/globstr.hrc:416
+#: sc/inc/globstr.hrc:417
msgctxt "STR_UNDO_INSERT_CURRENT_DATE"
msgid "Insert Current Date"
msgstr "Insert Current Date"
-#: sc/inc/globstr.hrc:417
+#: sc/inc/globstr.hrc:418
msgctxt "STR_UNDO_INSERT_CURRENT_TIME"
msgid "Insert Current Time"
msgstr "Insert Current Time"
-#: sc/inc/globstr.hrc:418
+#: sc/inc/globstr.hrc:419
#, fuzzy
msgctxt "STR_MANAGE_NAMES"
msgid "Manage Names..."
msgstr "Range names"
-#: sc/inc/globstr.hrc:419
+#: sc/inc/globstr.hrc:420
msgctxt "STR_HEADER_NAME"
msgid "Name"
msgstr "Name"
-#: sc/inc/globstr.hrc:420
+#: sc/inc/globstr.hrc:421
msgctxt "STR_HEADER_RANGE_OR_EXPR"
msgid "Range or formula expression"
msgstr ""
-#: sc/inc/globstr.hrc:421
+#: sc/inc/globstr.hrc:422
msgctxt "STR_HEADER_SCOPE"
msgid "Scope"
msgstr "Scope"
-#: sc/inc/globstr.hrc:422
+#: sc/inc/globstr.hrc:423
msgctxt "STR_MULTI_SELECT"
msgid "(multiple)"
msgstr ""
-#: sc/inc/globstr.hrc:423
+#: sc/inc/globstr.hrc:424
msgctxt "STR_GLOBAL_SCOPE"
msgid "Document (Global)"
msgstr "Document (Global)"
-#: sc/inc/globstr.hrc:424
+#: sc/inc/globstr.hrc:425
msgctxt "STR_ERR_NAME_EXISTS"
msgid "Invalid name. Already in use for the selected scope."
msgstr ""
-#: sc/inc/globstr.hrc:425
+#: sc/inc/globstr.hrc:426
msgctxt "STR_ERR_NAME_INVALID"
msgid "Invalid name. Only use letters, numbers and underscore."
msgstr ""
-#: sc/inc/globstr.hrc:426
+#: sc/inc/globstr.hrc:427
msgctxt "STR_UNSAVED_EXT_REF"
msgid ""
"This Document contains external references to unsaved documents.\n"
@@ -2095,229 +2100,229 @@ msgid ""
"Do you want to continue?"
msgstr ""
-#: sc/inc/globstr.hrc:427
+#: sc/inc/globstr.hrc:428
msgctxt "STR_CLOSE_WITH_UNSAVED_REFS"
msgid "This Document is referenced by another document and not yet saved. Closing it without saving will result in data loss."
msgstr ""
-#: sc/inc/globstr.hrc:428
+#: sc/inc/globstr.hrc:429
msgctxt "STR_HEADER_RANGE"
msgid "Range"
msgstr "Range"
-#: sc/inc/globstr.hrc:429
+#: sc/inc/globstr.hrc:430
msgctxt "STR_HEADER_COND"
msgid "First Condition"
msgstr ""
-#: sc/inc/globstr.hrc:430
+#: sc/inc/globstr.hrc:431
#, fuzzy
msgctxt "STR_COND_CONDITION"
msgid "Cell value is"
msgstr "Cell value is"
-#: sc/inc/globstr.hrc:431
+#: sc/inc/globstr.hrc:432
msgctxt "STR_COND_COLORSCALE"
msgid "ColorScale"
msgstr ""
-#: sc/inc/globstr.hrc:432
+#: sc/inc/globstr.hrc:433
msgctxt "STR_COND_DATABAR"
msgid "DataBar"
msgstr ""
-#: sc/inc/globstr.hrc:433
+#: sc/inc/globstr.hrc:434
msgctxt "STR_COND_ICONSET"
msgid "IconSet"
msgstr ""
-#: sc/inc/globstr.hrc:434
+#: sc/inc/globstr.hrc:435
#, fuzzy
msgctxt "STR_COND_BETWEEN"
msgid "between"
msgstr "between"
-#: sc/inc/globstr.hrc:435
+#: sc/inc/globstr.hrc:436
#, fuzzy
msgctxt "STR_COND_NOTBETWEEN"
msgid "not between"
msgstr "not between"
-#: sc/inc/globstr.hrc:436
+#: sc/inc/globstr.hrc:437
msgctxt "STR_COND_UNIQUE"
msgid "unique"
msgstr ""
-#: sc/inc/globstr.hrc:437
+#: sc/inc/globstr.hrc:438
#, fuzzy
msgctxt "STR_COND_DUPLICATE"
msgid "duplicate"
msgstr "Duplicate"
-#: sc/inc/globstr.hrc:438
+#: sc/inc/globstr.hrc:439
#, fuzzy
msgctxt "STR_COND_FORMULA"
msgid "Formula is"
msgstr "Formula is"
-#: sc/inc/globstr.hrc:439
+#: sc/inc/globstr.hrc:440
msgctxt "STR_COND_TOP10"
msgid "Top Elements"
msgstr ""
-#: sc/inc/globstr.hrc:440
+#: sc/inc/globstr.hrc:441
msgctxt "STR_COND_BOTTOM10"
msgid "Bottom Elements"
msgstr ""
-#: sc/inc/globstr.hrc:441
+#: sc/inc/globstr.hrc:442
msgctxt "STR_COND_TOP_PERCENT"
msgid "Top Percent"
msgstr ""
-#: sc/inc/globstr.hrc:442
+#: sc/inc/globstr.hrc:443
msgctxt "STR_COND_DATE"
msgid "Date is"
msgstr ""
-#: sc/inc/globstr.hrc:443
+#: sc/inc/globstr.hrc:444
msgctxt "STR_COND_BOTTOM_PERCENT"
msgid "Bottom Percent"
msgstr ""
-#: sc/inc/globstr.hrc:444
+#: sc/inc/globstr.hrc:445
msgctxt "STR_COND_ABOVE_AVERAGE"
msgid "Above Average"
msgstr ""
-#: sc/inc/globstr.hrc:445
+#: sc/inc/globstr.hrc:446
msgctxt "STR_COND_BELOW_AVERAGE"
msgid "Below Average"
msgstr ""
-#: sc/inc/globstr.hrc:446
+#: sc/inc/globstr.hrc:447
msgctxt "STR_COND_ABOVE_EQUAL_AVERAGE"
msgid "Above or equal Average"
msgstr ""
-#: sc/inc/globstr.hrc:447
+#: sc/inc/globstr.hrc:448
msgctxt "STR_COND_BELOW_EQUAL_AVERAGE"
msgid "Below or equal Average"
msgstr ""
-#: sc/inc/globstr.hrc:448
+#: sc/inc/globstr.hrc:449
#, fuzzy
msgctxt "STR_COND_ERROR"
msgid "an Error code"
msgstr "Error code"
-#: sc/inc/globstr.hrc:449
+#: sc/inc/globstr.hrc:450
#, fuzzy
msgctxt "STR_COND_NOERROR"
msgid "not an Error code"
msgstr "Error code"
-#: sc/inc/globstr.hrc:450
+#: sc/inc/globstr.hrc:451
#, fuzzy
msgctxt "STR_COND_BEGINS_WITH"
msgid "Begins with"
msgstr "Begins with"
-#: sc/inc/globstr.hrc:451
+#: sc/inc/globstr.hrc:452
#, fuzzy
msgctxt "STR_COND_ENDS_WITH"
msgid "Ends with"
msgstr "Ends with"
-#: sc/inc/globstr.hrc:452
+#: sc/inc/globstr.hrc:453
#, fuzzy
msgctxt "STR_COND_CONTAINS"
msgid "Contains"
msgstr "Contains"
-#: sc/inc/globstr.hrc:453
+#: sc/inc/globstr.hrc:454
msgctxt "STR_COND_NOT_CONTAINS"
msgid "Not Contains"
msgstr ""
-#: sc/inc/globstr.hrc:454
+#: sc/inc/globstr.hrc:455
#, fuzzy
msgctxt "STR_COND_TODAY"
msgid "today"
msgstr "Today"
-#: sc/inc/globstr.hrc:455
+#: sc/inc/globstr.hrc:456
#, fuzzy
msgctxt "STR_COND_YESTERDAY"
msgid "yesterday"
msgstr "Yesterday,"
-#: sc/inc/globstr.hrc:456
+#: sc/inc/globstr.hrc:457
msgctxt "STR_COND_TOMORROW"
msgid "tomorrow"
msgstr ""
-#: sc/inc/globstr.hrc:457
+#: sc/inc/globstr.hrc:458
msgctxt "STR_COND_LAST7DAYS"
msgid "in the last 7 days"
msgstr ""
-#: sc/inc/globstr.hrc:458
+#: sc/inc/globstr.hrc:459
msgctxt "STR_COND_THISWEEK"
msgid "this week"
msgstr ""
-#: sc/inc/globstr.hrc:459
+#: sc/inc/globstr.hrc:460
msgctxt "STR_COND_LASTWEEK"
msgid "last week"
msgstr ""
-#: sc/inc/globstr.hrc:460
+#: sc/inc/globstr.hrc:461
msgctxt "STR_COND_NEXTWEEK"
msgid "next week"
msgstr ""
-#: sc/inc/globstr.hrc:461
+#: sc/inc/globstr.hrc:462
msgctxt "STR_COND_THISMONTH"
msgid "this month"
msgstr ""
-#: sc/inc/globstr.hrc:462
+#: sc/inc/globstr.hrc:463
msgctxt "STR_COND_LASTMONTH"
msgid "last month"
msgstr ""
-#: sc/inc/globstr.hrc:463
+#: sc/inc/globstr.hrc:464
msgctxt "STR_COND_NEXTMONTH"
msgid "next month"
msgstr ""
-#: sc/inc/globstr.hrc:464
+#: sc/inc/globstr.hrc:465
msgctxt "STR_COND_THISYEAR"
msgid "this year"
msgstr ""
-#: sc/inc/globstr.hrc:465
+#: sc/inc/globstr.hrc:466
msgctxt "STR_COND_LASTYEAR"
msgid "last year"
msgstr ""
-#: sc/inc/globstr.hrc:466
+#: sc/inc/globstr.hrc:467
msgctxt "STR_COND_NEXTYEAR"
msgid "next year"
msgstr ""
-#: sc/inc/globstr.hrc:467
+#: sc/inc/globstr.hrc:468
msgctxt "STR_COND_AND"
msgid "and"
msgstr "and"
-#: sc/inc/globstr.hrc:468
+#: sc/inc/globstr.hrc:469
msgctxt "STR_ERR_CONDFORMAT_PROTECTED"
msgid "Conditional Formats can not be created, deleted or changed in protected sheets."
msgstr ""
-#: sc/inc/globstr.hrc:469
+#: sc/inc/globstr.hrc:470
msgctxt "STR_EDIT_EXISTING_COND_FORMATS"
msgid ""
"The selected cell already contains conditional formatting. You can either edit the existing conditional format or you define a new overlapping conditional format.\n"
@@ -2325,7 +2330,7 @@ msgid ""
" Do you want to edit the existing conditional format?"
msgstr ""
-#: sc/inc/globstr.hrc:470
+#: sc/inc/globstr.hrc:471
msgctxt "STR_QUERY_FORMULA_RECALC_ONLOAD_ODS"
msgid ""
"This document was last saved by an application other than %PRODUCTNAME. Some formula cells may produce different results when recalculated.\n"
@@ -2333,7 +2338,7 @@ msgid ""
"Do you want to recalculate all formula cells in this document now?"
msgstr ""
-#: sc/inc/globstr.hrc:471
+#: sc/inc/globstr.hrc:472
msgctxt "STR_QUERY_FORMULA_RECALC_ONLOAD_XLS"
msgid ""
"This document was last saved by Excel. Some formula cells may produce different results when recalculated.\n"
@@ -2341,84 +2346,84 @@ msgid ""
"Do you want to recalculate all formula cells now?"
msgstr ""
-#: sc/inc/globstr.hrc:472
+#: sc/inc/globstr.hrc:473
msgctxt "STR_NO_INSERT_DELETE_OVER_PIVOT_TABLE"
msgid "You cannot insert or delete cells when the affected range intersects with pivot table."
msgstr ""
-#: sc/inc/globstr.hrc:473
+#: sc/inc/globstr.hrc:474
msgctxt "STR_DPFIELD_GROUP_BY_SECONDS"
msgid "Seconds"
msgstr "Seconds"
-#: sc/inc/globstr.hrc:474
+#: sc/inc/globstr.hrc:475
msgctxt "STR_DPFIELD_GROUP_BY_MINUTES"
msgid "Minutes"
msgstr "Minutes"
-#: sc/inc/globstr.hrc:475
+#: sc/inc/globstr.hrc:476
msgctxt "STR_DPFIELD_GROUP_BY_HOURS"
msgid "Hours"
msgstr "Hours"
-#: sc/inc/globstr.hrc:476
+#: sc/inc/globstr.hrc:477
msgctxt "STR_DPFIELD_GROUP_BY_DAYS"
msgid "Days"
msgstr "Days"
-#: sc/inc/globstr.hrc:477
+#: sc/inc/globstr.hrc:478
msgctxt "STR_DPFIELD_GROUP_BY_MONTHS"
msgid "Months"
msgstr "Months"
-#: sc/inc/globstr.hrc:478
+#: sc/inc/globstr.hrc:479
#, fuzzy
msgctxt "STR_DPFIELD_GROUP_BY_QUARTERS"
msgid "Quarters"
msgstr "Quarter"
-#: sc/inc/globstr.hrc:479
+#: sc/inc/globstr.hrc:480
#, fuzzy
msgctxt "STR_DPFIELD_GROUP_BY_YEARS"
msgid "Years"
msgstr "Year"
-#: sc/inc/globstr.hrc:480
+#: sc/inc/globstr.hrc:481
#, fuzzy
msgctxt "STR_INVALIDVAL"
msgid "Invalid target value."
msgstr "Invalid target value."
-#: sc/inc/globstr.hrc:481
+#: sc/inc/globstr.hrc:482
#, fuzzy
msgctxt "STR_INVALIDVAR"
msgid "Undefined name for variable cell."
msgstr "Undefined name for variable cell."
-#: sc/inc/globstr.hrc:482
+#: sc/inc/globstr.hrc:483
#, fuzzy
msgctxt "STR_INVALIDFORM"
msgid "Undefined name as formula cell."
msgstr "Undefined name as formula cell."
-#: sc/inc/globstr.hrc:483
+#: sc/inc/globstr.hrc:484
msgctxt "STR_NOFORMULA"
msgid "Formula cell must contain a formula."
msgstr ""
-#: sc/inc/globstr.hrc:484
+#: sc/inc/globstr.hrc:485
#, fuzzy
msgctxt "STR_INVALIDINPUT"
msgid "Invalid input."
msgstr "Invalid input."
-#: sc/inc/globstr.hrc:485
+#: sc/inc/globstr.hrc:486
#, fuzzy
msgctxt "STR_INVALIDCONDITION"
msgid "Invalid condition."
msgstr "Invalid condition."
-#: sc/inc/globstr.hrc:486
+#: sc/inc/globstr.hrc:487
msgctxt "STR_QUERYREMOVE"
msgid ""
"Should the entry\n"
@@ -2426,137 +2431,137 @@ msgid ""
"be deleted?"
msgstr ""
-#: sc/inc/globstr.hrc:487
+#: sc/inc/globstr.hrc:488
msgctxt "STR_COPYLIST"
msgid "Copy List"
msgstr ""
-#: sc/inc/globstr.hrc:488
+#: sc/inc/globstr.hrc:489
msgctxt "STR_COPYFROM"
msgid "List from"
msgstr ""
-#: sc/inc/globstr.hrc:489
+#: sc/inc/globstr.hrc:490
msgctxt "STR_COPYERR"
msgid "Cells without text have been ignored."
msgstr ""
-#: sc/inc/globstr.hrc:490
+#: sc/inc/globstr.hrc:491
#, c-format
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%s-click to follow hyperlink:"
msgstr ""
-#: sc/inc/globstr.hrc:491
+#: sc/inc/globstr.hrc:492
msgctxt "STR_CLICKHYPERLINK"
msgid "click to open hyperlink:"
msgstr ""
-#: sc/inc/globstr.hrc:492
+#: sc/inc/globstr.hrc:493
msgctxt "STR_PRINT_PREVIEW_NODATA"
msgid "No Data"
msgstr ""
-#: sc/inc/globstr.hrc:493
+#: sc/inc/globstr.hrc:494
msgctxt "STR_PRINT_PREVIEW_EMPTY_RANGE"
msgid "Print Range Empty"
msgstr ""
-#: sc/inc/globstr.hrc:494
+#: sc/inc/globstr.hrc:495
#, fuzzy
msgctxt "STR_UNDO_CONDFORMAT"
msgid "Conditional Format"
msgstr "Conditional Formatting"
-#: sc/inc/globstr.hrc:495
+#: sc/inc/globstr.hrc:496
#, fuzzy
msgctxt "STR_UNDO_CONDFORMAT_LIST"
msgid "Conditional Formats"
msgstr "Conditional Formatting"
-#: sc/inc/globstr.hrc:496
+#: sc/inc/globstr.hrc:497
msgctxt "STR_UNDO_FORMULA_TO_VALUE"
msgid "Convert Formula To Value"
msgstr ""
-#: sc/inc/globstr.hrc:497
+#: sc/inc/globstr.hrc:498
msgctxt "STR_UNQUOTED_STRING"
msgid "Strings without quotes are interpreted as column/row labels."
msgstr ""
-#: sc/inc/globstr.hrc:498
+#: sc/inc/globstr.hrc:499
msgctxt "STR_ENTER_VALUE"
msgid "Enter a value!"
msgstr ""
-#: sc/inc/globstr.hrc:499
+#: sc/inc/globstr.hrc:500
msgctxt "STR_TABLE_COUNT"
msgid "Sheet %1 of %2"
msgstr ""
-#: sc/inc/globstr.hrc:500
+#: sc/inc/globstr.hrc:501
msgctxt "STR_FUNCTIONS_FOUND"
msgid "%1 and %2 more"
msgstr ""
-#: sc/inc/globstr.hrc:501
+#: sc/inc/globstr.hrc:502
msgctxt "STR_GENERAL"
msgid "General"
msgstr "General"
-#: sc/inc/globstr.hrc:502
+#: sc/inc/globstr.hrc:503
msgctxt "STR_NUMBER"
msgid "Number"
msgstr "Number"
-#: sc/inc/globstr.hrc:503
+#: sc/inc/globstr.hrc:504
#, fuzzy
msgctxt "STR_PERCENT"
msgid "Percent"
msgstr "Percent"
-#: sc/inc/globstr.hrc:504
+#: sc/inc/globstr.hrc:505
msgctxt "STR_CURRENCY"
msgid "Currency"
msgstr "Currency"
-#: sc/inc/globstr.hrc:505
+#: sc/inc/globstr.hrc:506
msgctxt "STR_DATE"
msgid "Date"
msgstr "Date"
-#: sc/inc/globstr.hrc:506
+#: sc/inc/globstr.hrc:507
msgctxt "STR_TIME"
msgid "Time"
msgstr "Time"
-#: sc/inc/globstr.hrc:507
+#: sc/inc/globstr.hrc:508
msgctxt "STR_SCIENTIFIC"
msgid "Scientific"
msgstr ""
-#: sc/inc/globstr.hrc:508
+#: sc/inc/globstr.hrc:509
#, fuzzy
msgctxt "STR_FRACTION"
msgid "Fraction"
msgstr "Function"
-#: sc/inc/globstr.hrc:509
+#: sc/inc/globstr.hrc:510
msgctxt "STR_BOOLEAN_VALUE"
msgid "Boolean Value"
msgstr ""
-#: sc/inc/globstr.hrc:510
+#: sc/inc/globstr.hrc:511
msgctxt "STR_TEXT"
msgid "Text"
msgstr "Text"
-#: sc/inc/globstr.hrc:511
+#: sc/inc/globstr.hrc:512
msgctxt "STR_QUERY_PIVOTTABLE_DELTAB"
msgid "The selected sheet(s) contain source data of related pivot tables that will be lost. Are you sure you want to delete the selected sheet(s)?"
msgstr ""
-#: sc/inc/globstr.hrc:512
+#: sc/inc/globstr.hrc:513
msgctxt "STR_ERR_NAME_INVALID_CELL_REF"
msgid "Invalid name. Reference to a cell, or a range of cells not allowed."
msgstr ""
@@ -10769,8 +10774,8 @@ msgstr "Mode"
#: sc/inc/scfuncs.hrc:3010
msgctxt "SC_OPCODE_T_TEST"
-msgid "Mode specifies the number of distribution tails to return. 1= one-tailed, 2 = two-tailed distribution"
-msgstr "Mode specifies the number of distribution tails to return. 1= one-tailed, 2 = two-tailed distribution"
+msgid "Mode specifies the number of distribution tails to return. 1 = one-tailed, 2 = two-tailed distribution"
+msgstr ""
#: sc/inc/scfuncs.hrc:3011
msgctxt "SC_OPCODE_T_TEST"
@@ -10816,8 +10821,8 @@ msgstr "Mode"
#: sc/inc/scfuncs.hrc:3024
msgctxt "SC_OPCODE_T_TEST_MS"
-msgid "Mode specifies the number of distribution tails to return. 1= one-tailed, 2 = two-tailed distribution"
-msgstr "Mode specifies the number of distribution tails to return. 1= one-tailed, 2 = two-tailed distribution"
+msgid "Mode specifies the number of distribution tails to return. 1 = one-tailed, 2 = two-tailed distribution"
+msgstr ""
#: sc/inc/scfuncs.hrc:3025
msgctxt "SC_OPCODE_T_TEST_MS"
@@ -18649,23 +18654,23 @@ msgctxt "mergecellsdialog|MergeCellsDialog"
msgid "Merge Cells"
msgstr "Merge Cells"
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:81
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:84
msgctxt "mergecellsdialog|label"
msgid "Some cells are not empty."
msgstr ""
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:96
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:99
#, fuzzy
msgctxt "mergecellsdialog|move-cells-radio"
msgid "Move the contents of the hidden cells into the first cell"
msgstr "Should the contents of the hidden cells be moved into the first cell?"
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:112
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:115
msgctxt "mergecellsdialog|empty-cells-radio"
msgid "Empty the contents of the hidden cells"
msgstr ""
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:128
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:131
msgctxt "mergecellsdialog|keep-content-radio"
msgid "Keep the contents of the hidden cells"
msgstr ""
diff --git a/source/en-ZA/sd/messages.po b/source/en-ZA/sd/messages.po
index 2c48e5a3f30..945fe8277c7 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+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"
@@ -13,177 +13,177 @@ msgstr ""
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-#: sd/inc/DocumentRenderer.hrc:29
+#: sd/inc/DocumentRenderer.hrc:27
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Slides"
msgstr "Slides"
-#: sd/inc/DocumentRenderer.hrc:30
+#: sd/inc/DocumentRenderer.hrc:28
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Handouts"
msgstr "Handouts"
-#: sd/inc/DocumentRenderer.hrc:31
+#: sd/inc/DocumentRenderer.hrc:29
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Notes"
msgstr "Notes"
-#: sd/inc/DocumentRenderer.hrc:32
+#: sd/inc/DocumentRenderer.hrc:30
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Outline"
msgstr "Outline"
-#: sd/inc/DocumentRenderer.hrc:37
+#: sd/inc/DocumentRenderer.hrc:35
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "According to layout"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:38
+#: sd/inc/DocumentRenderer.hrc:36
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "1"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:39
+#: sd/inc/DocumentRenderer.hrc:37
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "2"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:40
+#: sd/inc/DocumentRenderer.hrc:38
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "3"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:41
+#: sd/inc/DocumentRenderer.hrc:39
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "4"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:42
+#: sd/inc/DocumentRenderer.hrc:40
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "6"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:43
+#: sd/inc/DocumentRenderer.hrc:41
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "9"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:48
+#: sd/inc/DocumentRenderer.hrc:46
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_ORDER_CHOICES"
msgid "Left to right, then down"
msgstr "Left to right, then down"
-#: sd/inc/DocumentRenderer.hrc:49
+#: sd/inc/DocumentRenderer.hrc:47
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_ORDER_CHOICES"
msgid "Top to bottom, then right"
msgstr "Top to bottom, then right"
-#: sd/inc/DocumentRenderer.hrc:54
+#: sd/inc/DocumentRenderer.hrc:52
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Original colors"
msgstr "Original colours"
-#: sd/inc/DocumentRenderer.hrc:55
+#: sd/inc/DocumentRenderer.hrc:53
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Grayscale"
msgstr "Greyscale"
-#: sd/inc/DocumentRenderer.hrc:56
+#: sd/inc/DocumentRenderer.hrc:54
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Black & white"
msgstr "Black & white"
-#: sd/inc/DocumentRenderer.hrc:61
+#: sd/inc/DocumentRenderer.hrc:59
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Original size"
msgstr "Original size"
-#: sd/inc/DocumentRenderer.hrc:62
+#: sd/inc/DocumentRenderer.hrc:60
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Fit to printable page"
msgstr "Fit to printable page"
-#: sd/inc/DocumentRenderer.hrc:63
+#: sd/inc/DocumentRenderer.hrc:61
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Distribute on multiple sheets of paper"
msgstr "Distribute on multiple sheets of paper"
-#: sd/inc/DocumentRenderer.hrc:64
+#: sd/inc/DocumentRenderer.hrc:62
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Tile sheet of paper with repeated slides"
msgstr "Tile sheet of paper with repeated slides"
-#: sd/inc/DocumentRenderer.hrc:69
+#: sd/inc/DocumentRenderer.hrc:67
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Original size"
msgstr "Original size"
-#: sd/inc/DocumentRenderer.hrc:70
+#: sd/inc/DocumentRenderer.hrc:68
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Fit to printable page"
msgstr "Fit to printable page"
-#: sd/inc/DocumentRenderer.hrc:71
+#: sd/inc/DocumentRenderer.hrc:69
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Distribute on multiple sheets of paper"
msgstr "Distribute on multiple sheets of paper"
-#: sd/inc/DocumentRenderer.hrc:72
+#: sd/inc/DocumentRenderer.hrc:70
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Tile sheet of paper with repeated pages"
msgstr "Tile sheet of paper with repeated pages"
-#: sd/inc/DocumentRenderer.hrc:77
+#: sd/inc/DocumentRenderer.hrc:75
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "All pages"
msgstr "All pages"
-#: sd/inc/DocumentRenderer.hrc:78
+#: sd/inc/DocumentRenderer.hrc:76
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "Front sides / right pages"
msgstr "Front sides / right pages"
-#: sd/inc/DocumentRenderer.hrc:79
+#: sd/inc/DocumentRenderer.hrc:77
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "Back sides / left pages"
msgstr "Back sides / left pages"
-#: sd/inc/DocumentRenderer.hrc:84
+#: sd/inc/DocumentRenderer.hrc:82
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~All slides"
msgstr "~All slides"
-#: sd/inc/DocumentRenderer.hrc:85
+#: sd/inc/DocumentRenderer.hrc:83
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~Slides"
msgstr "Slides"
-#: sd/inc/DocumentRenderer.hrc:86
+#: sd/inc/DocumentRenderer.hrc:84
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Se~lection"
msgstr "Se~lection"
-#: sd/inc/DocumentRenderer.hrc:91
+#: sd/inc/DocumentRenderer.hrc:89
#, fuzzy
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~All pages"
msgstr "~All pages"
-#: sd/inc/DocumentRenderer.hrc:92
+#: sd/inc/DocumentRenderer.hrc:90
#, fuzzy
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Pa~ges"
msgstr "Pages"
-#: sd/inc/DocumentRenderer.hrc:93
+#: sd/inc/DocumentRenderer.hrc:91
#, fuzzy
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Se~lection"
diff --git a/source/en-ZA/svx/messages.po b/source/en-ZA/svx/messages.po
index 3d54e195e9c..5f90e1c6db9 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: 2018-05-16 16:53+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+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"
@@ -5542,7 +5542,7 @@ msgstr ""
#: svx/uiconfig/ui/safemodedialog.ui:432
msgctxt "safemodedialog|btn_create_zip"
-msgid "Create Zip Archive from User Profile"
+msgid "Archive User Profile"
msgstr ""
#: svx/uiconfig/ui/safemodedialog.ui:445
@@ -9199,9 +9199,9 @@ msgid "Red"
msgstr "Red"
#: include/svx/strings.hrc:565
-msgctxt "RID_SVXSTR_COLOR_VIOLET"
-msgid "Violet"
-msgstr "Violet"
+msgctxt "RID_SVXSTR_COLOR_MAGENTA"
+msgid "Magenta"
+msgstr "Magenta"
#: include/svx/strings.hrc:566
msgctxt "RID_SVXSTR_COLOR_PURPLE"
@@ -9266,8 +9266,8 @@ msgid "Light Red"
msgstr "Light Red"
#: include/svx/strings.hrc:579
-msgctxt "RID_SVXSTR_COLOR_LIGHTVIOLET"
-msgid "Light Violet"
+msgctxt "RID_SVXSTR_COLOR_LIGHTMAGENTA"
+msgid "Light Magenta"
msgstr ""
#: include/svx/strings.hrc:580
@@ -9333,8 +9333,8 @@ msgid "Dark Red"
msgstr "Dark Red"
#: include/svx/strings.hrc:593
-msgctxt "RID_SVXSTR_COLOR_DARKVIOLET1"
-msgid "Dark Violet"
+msgctxt "RID_SVXSTR_COLOR_DARKMAGENTA"
+msgid "Dark Magenta"
msgstr ""
#: include/svx/strings.hrc:594
@@ -9369,55 +9369,55 @@ msgstr ""
#. Elements of the Tonal color palette
#: include/svx/strings.hrc:601
+msgctxt "RID_SVXSTR_COLOR_VIOLET"
+msgid "Violet"
+msgstr "Violet"
+
+#: include/svx/strings.hrc:602
msgctxt "RID_SVXSTR_COLOR_VIOLET_OUG"
msgid "Violet (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:602
+#: include/svx/strings.hrc:603
msgctxt "RID_SVXSTR_COLOR_BLUE_OUG"
msgid "Blue (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:603
+#: include/svx/strings.hrc:604
msgctxt "RID_SVXSTR_COLOR_AZURE_OUG"
msgid "Azure (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:604
+#: include/svx/strings.hrc:605
msgctxt "RID_SVXSTR_COLOR_SPRINGGREEN_OUG"
msgid "Spring Green (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:605
+#: include/svx/strings.hrc:606
msgctxt "RID_SVXSTR_COLOR_GREEN_OUG"
msgid "Green (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:606
+#: include/svx/strings.hrc:607
msgctxt "RID_SVXSTR_COLOR_CHARTREUSEGREEN_OUG"
msgid "Chartreuse Green (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:607
+#: include/svx/strings.hrc:608
msgctxt "RID_SVXSTR_COLOR_ORANGE_OUG"
msgid "Orange (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:608
+#: include/svx/strings.hrc:609
msgctxt "RID_SVXSTR_COLOR_RED_OUG"
msgid "Red (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:609
+#: include/svx/strings.hrc:610
msgctxt "RID_SVXSTR_COLOR_ROSE_OUG"
msgid "Rose (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:610
-msgctxt "RID_SVXSTR_COLOR_MAGENTA"
-msgid "Magenta"
-msgstr "Magenta"
-
#: include/svx/strings.hrc:611
msgctxt "RID_SVXSTR_COLOR_AZURE"
msgid "Azure"
@@ -12617,13 +12617,13 @@ msgstr "Right pointing arrow bullets"
#: include/svx/strings.hrc:1273
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_6"
-msgid "Check mark bullets"
-msgstr "Check mark bullets"
+msgid "Cross mark bullets"
+msgstr ""
#: include/svx/strings.hrc:1274
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_7"
-msgid "Tick mark bullets"
-msgstr "Tick mark bullets"
+msgid "Check mark bullets"
+msgstr ""
#: include/svx/strings.hrc:1275
#, fuzzy
diff --git a/source/en-ZA/sw/messages.po b/source/en-ZA/sw/messages.po
index 5f66f428d45..dba76abeb94 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: 2018-05-22 13:17+0200\n"
+"POT-Creation-Date: 2018-06-12 14:41+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"
@@ -1232,13 +1232,13 @@ msgstr "Quotation"
#: sw/inc/strings.hrc:172
msgctxt "STR_POOLCOLL_TOX_ILLUSH"
-msgid "Illustration Index Heading"
-msgstr "Illustration Index Heading"
+msgid "Figure Index Heading"
+msgstr ""
#: sw/inc/strings.hrc:173
msgctxt "STR_POOLCOLL_TOX_ILLUS1"
-msgid "Illustration Index 1"
-msgstr "Illustration Index 1"
+msgid "Figure Index 1"
+msgstr ""
#: sw/inc/strings.hrc:174
#, fuzzy
@@ -3727,10 +3727,9 @@ msgid "Table of Objects"
msgstr ""
#: sw/inc/strings.hrc:672
-#, fuzzy
msgctxt "STR_TOX_ILL"
-msgid "Illustration Index"
-msgstr "Illustration Index 1"
+msgid "Table of Figures"
+msgstr ""
#: sw/inc/strings.hrc:673
#, c-format
@@ -9728,81 +9727,81 @@ msgctxt "footnotepage|label5"
msgid "Continuation Notice"
msgstr "Continuation notice"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:49
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:55
#, fuzzy
msgctxt "footnotesendnotestabpage|ftnntnum"
msgid "_Restart numbering"
msgstr "Restart numbering"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:91
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:93
#, fuzzy
msgctxt "footnotesendnotestabpage|ftnoffset_label"
msgid "_Start at:"
msgstr "Start at"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:112
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:111
msgctxt "footnotesendnotestabpage|ftnntnumfmt"
msgid "Custom _format"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:155
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:150
#, fuzzy
msgctxt "footnotesendnotestabpage|ftnsuffix_label"
msgid "Aft_er:"
msgstr "After"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:199
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:188
#, fuzzy
msgctxt "footnotesendnotestabpage|ftnprefix_label"
msgid "Be_fore:"
msgstr "Before"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:228
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:212
msgctxt "footnotesendnotestabpage|ftnntattextend"
msgid "Collec_t at end of text"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:252
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:234
#, fuzzy
msgctxt "footnotesendnotestabpage|label1"
msgid "Footnotes"
msgstr "Footnote"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:289
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:271
msgctxt "footnotesendnotestabpage|endntattextend"
msgid "C_ollect at end of section"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:315
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:295
#, fuzzy
msgctxt "footnotesendnotestabpage|endntnum"
msgid "_Restart numbering"
msgstr "Restart numbering"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:357
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:333
#, fuzzy
msgctxt "footnotesendnotestabpage|endoffset_label"
msgid "_Start at:"
msgstr "Start at"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:378
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:351
msgctxt "footnotesendnotestabpage|endntnumfmt"
msgid "_Custom format"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:421
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:390
#, fuzzy
msgctxt "footnotesendnotestabpage|endsuffix_label"
msgid "Aft_er:"
msgstr "After"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:465
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:428
#, fuzzy
msgctxt "footnotesendnotestabpage|endprefix_label"
msgid "Be_fore:"
msgstr "Before"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:500
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:458
#, fuzzy
msgctxt "footnotesendnotestabpage|label2"
msgid "Endnotes"
@@ -9834,29 +9833,29 @@ msgctxt "formatsectiondialog|notes"
msgid "Footnotes/Endnotes"
msgstr "Footnote/Endnote~..."
-#: sw/uiconfig/swriter/ui/formattablepage.ui:63
+#: sw/uiconfig/swriter/ui/formattablepage.ui:77
#, fuzzy
msgctxt "formattablepage|nameft"
msgid "_Name"
msgstr "Name"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:79
+#: sw/uiconfig/swriter/ui/formattablepage.ui:91
#, fuzzy
msgctxt "formattablepage|widthft"
msgid "W_idth"
msgstr "Width"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:110
+#: sw/uiconfig/swriter/ui/formattablepage.ui:120
msgctxt "formattablepage|relwidth"
msgid "Relati_ve"
msgstr ""
-#: sw/uiconfig/swriter/ui/formattablepage.ui:155
+#: sw/uiconfig/swriter/ui/formattablepage.ui:160
msgctxt "formattablepage|label45"
msgid "Properties"
msgstr "Properties"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:194
+#: sw/uiconfig/swriter/ui/formattablepage.ui:195
#, fuzzy
msgctxt "formattablepage|leftft"
msgid "Lef_t"
@@ -9868,71 +9867,71 @@ msgctxt "formattablepage|rightft"
msgid "Ri_ght"
msgstr "Right"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:228
+#: sw/uiconfig/swriter/ui/formattablepage.ui:226
#, fuzzy
msgctxt "formattablepage|aboveft"
msgid "_Above"
msgstr "Above"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:245
+#: sw/uiconfig/swriter/ui/formattablepage.ui:241
#, fuzzy
msgctxt "formattablepage|belowft"
msgid "_Below"
msgstr "Below"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:320
+#: sw/uiconfig/swriter/ui/formattablepage.ui:311
msgctxt "formattablepage|label46"
msgid "Spacing"
msgstr "Spacing"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:362
+#: sw/uiconfig/swriter/ui/formattablepage.ui:349
#, fuzzy
msgctxt "formattablepage|full"
msgid "A_utomatic"
msgstr "Automatic"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:380
+#: sw/uiconfig/swriter/ui/formattablepage.ui:365
#, fuzzy
msgctxt "formattablepage|left"
msgid "_Left"
msgstr "Left"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:398
+#: sw/uiconfig/swriter/ui/formattablepage.ui:381
#, fuzzy
msgctxt "formattablepage|fromleft"
msgid "_From left"
msgstr "From left"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:416
+#: sw/uiconfig/swriter/ui/formattablepage.ui:397
#, fuzzy
msgctxt "formattablepage|right"
msgid "R_ight"
msgstr "Right"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:435
+#: sw/uiconfig/swriter/ui/formattablepage.ui:413
#, fuzzy
msgctxt "formattablepage|center"
msgid "_Center"
msgstr "Centre"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:453
+#: sw/uiconfig/swriter/ui/formattablepage.ui:429
#, fuzzy
msgctxt "formattablepage|free"
msgid "_Manual"
msgstr "Manual"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:478
+#: sw/uiconfig/swriter/ui/formattablepage.ui:452
msgctxt "formattablepage|label43"
msgid "Alignment"
msgstr "Alignment"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:522
+#: sw/uiconfig/swriter/ui/formattablepage.ui:491
#, fuzzy
msgctxt "formattablepage|label53"
msgid "Text _direction"
msgstr "Text direction"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:553
+#: sw/uiconfig/swriter/ui/formattablepage.ui:519
#, fuzzy
msgctxt "formattablepage|label44"
msgid "Properties "
@@ -10318,24 +10317,29 @@ msgctxt "headerfootermenu|insert_pagenumber"
msgid "Insert Page Number"
msgstr ""
-#: sw/uiconfig/swriter/ui/indentpage.ui:52
+#: sw/uiconfig/swriter/ui/headerfootermenu.ui:42
+msgctxt "headerfootermenu|insert_pagecount"
+msgid "Insert Page Count"
+msgstr ""
+
+#: sw/uiconfig/swriter/ui/indentpage.ui:57
#, fuzzy
msgctxt "indentpage|label1"
msgid "_Before section"
msgstr "Before Section"
-#: sw/uiconfig/swriter/ui/indentpage.ui:67
+#: sw/uiconfig/swriter/ui/indentpage.ui:71
#, fuzzy
msgctxt "indentpage|label3"
msgid "_After section"
msgstr "After Section"
-#: sw/uiconfig/swriter/ui/indentpage.ui:113
+#: sw/uiconfig/swriter/ui/indentpage.ui:115
msgctxt "indentpage|label2"
msgid "Indent"
msgstr "Indent"
-#: sw/uiconfig/swriter/ui/indentpage.ui:142
+#: sw/uiconfig/swriter/ui/indentpage.ui:155
msgctxt "indentpage|preview-atkobject"
msgid "Example"
msgstr "Example"
@@ -14129,7 +14133,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:68
msgctxt "optcompatpage|format"
-msgid "MS Word-compatible trailing blanks"
+msgid "Word-compatible trailing blanks"
msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:69
@@ -14139,7 +14143,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:70
msgctxt "optcompatpage|format"
-msgid "A database field (e.g., MailMerge) with empty value hides its paragraph"
+msgid "Hide paragraphs of database fields (e.g., mail merge) with an empty value"
msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:71
@@ -17047,134 +17051,134 @@ msgctxt "tableproperties|background"
msgid "Background"
msgstr "Background"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:25
-msgctxt "tabletextflowpage|liststore1"
-msgid "Horizontal"
-msgstr "Horizontal"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:29
-msgctxt "tabletextflowpage|liststore1"
-msgid "Vertical"
-msgstr "Vertical"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:33
-msgctxt "tabletextflowpage|liststore1"
-msgid "Use superordinate object settings"
-msgstr "Use superordinate object settings"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:47
-msgctxt "tabletextflowpage|liststore2"
-msgid "Top"
-msgstr "Top"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:51
-#, fuzzy
-msgctxt "tabletextflowpage|liststore2"
-msgid "Centered"
-msgstr "Centred"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:55
-msgctxt "tabletextflowpage|liststore2"
-msgid "Bottom"
-msgstr "Bottom"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:97
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:53
#, fuzzy
msgctxt "tabletextflowpage|break"
msgid "_Break"
msgstr "~Break"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:112
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:68
#, fuzzy
msgctxt "tabletextflowpage|page"
msgid "_Page"
msgstr "Page"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:132
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:87
#, fuzzy
msgctxt "tabletextflowpage|column"
msgid "Col_umn"
msgstr "Column"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:151
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:106
#, fuzzy
msgctxt "tabletextflowpage|before"
msgid "Be_fore"
msgstr "Before"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:171
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:125
#, fuzzy
msgctxt "tabletextflowpage|after"
msgid "_After"
msgstr "After"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:203
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:158
#, fuzzy
msgctxt "tabletextflowpage|pagestyle"
msgid "With Page St_yle"
msgstr "Edit Page Style"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:224
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:177
#, fuzzy
msgctxt "tabletextflowpage|pagenoft"
msgid "Page _number"
msgstr "Page number"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:257
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:213
#, fuzzy
msgctxt "tabletextflowpage|pagestylelb-atkobject"
msgid "With Page Style"
msgstr "Edit Page Style"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:274
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:230
msgctxt "tabletextflowpage|split"
msgid "Allow _table to split across pages and columns"
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:289
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:245
#, fuzzy
msgctxt "tabletextflowpage|splitrow"
msgid "Allow row to break a_cross pages and columns"
msgstr "Allow Row to Break Across Pages and Columns"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:306
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:262
#, fuzzy
msgctxt "tabletextflowpage|keep"
msgid "_Keep with next paragraph"
msgstr "Keep with next paragraph"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:328
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:284
msgctxt "tabletextflowpage|label40"
msgid "Text _orientation"
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:361
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:298
+msgctxt "tabletextflowpage|liststore1"
+msgid "Horizontal"
+msgstr "Horizontal"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:299
+msgctxt "tabletextflowpage|liststore1"
+msgid "Vertical"
+msgstr "Vertical"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:300
+msgctxt "tabletextflowpage|liststore1"
+msgid "Use superordinate object settings"
+msgstr "Use superordinate object settings"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:321
#, fuzzy
msgctxt "tabletextflowpage|headline"
msgid "R_epeat heading"
msgstr "Repeat heading"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:383
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:343
msgctxt "tabletextflowpage|label38"
msgid "The first "
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:396
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:356
msgctxt "tabletextflowpage|label39"
msgid "rows"
msgstr "rows"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:434
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:395
msgctxt "tabletextflowpage|label35"
msgid "Text Flow"
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:467
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:428
msgctxt "tabletextflowpage|label41"
msgid "_Vertical alignment"
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:495
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:442
+msgctxt "tabletextflowpage|liststore2"
+msgid "Top"
+msgstr "Top"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:443
+#, fuzzy
+msgctxt "tabletextflowpage|liststore2"
+msgid "Centered"
+msgstr "Centred"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:444
+msgctxt "tabletextflowpage|liststore2"
+msgid "Bottom"
+msgstr "Bottom"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:460
msgctxt "tabletextflowpage|label36"
msgid "Alignment"
msgstr "Alignment"
@@ -18002,10 +18006,9 @@ msgid "Alphabetical Index"
msgstr ""
#: sw/uiconfig/swriter/ui/tocindexpage.ui:58
-#, fuzzy
msgctxt "tocindexpage|liststore1"
-msgid "Illustration Index"
-msgstr "Illustration Index 1"
+msgid "Table of Figures"
+msgstr ""
#: sw/uiconfig/swriter/ui/tocindexpage.ui:62
msgctxt "tocindexpage|liststore1"
diff --git a/source/en-ZA/writerperfect/messages.po b/source/en-ZA/writerperfect/messages.po
index 00eaf7fe2df..d3bf89c74b2 100644
--- a/source/en-ZA/writerperfect/messages.po
+++ b/source/en-ZA/writerperfect/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-16 16:54+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+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"
@@ -65,99 +65,99 @@ msgctxt "exportepub|generalft"
msgid "General"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:122
+#: writerperfect/uiconfig/ui/exportepub.ui:121
#, fuzzy
msgctxt "exportepub|versionft"
msgid "Version:"
msgstr "~Version:"
-#: writerperfect/uiconfig/ui/exportepub.ui:139
+#: writerperfect/uiconfig/ui/exportepub.ui:138
msgctxt "exportepub|epub3"
msgid "EPUB 3.0"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:140
+#: writerperfect/uiconfig/ui/exportepub.ui:139
msgctxt "exportepub|epub2"
msgid "EPUB 2.0"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:175
+#: writerperfect/uiconfig/ui/exportepub.ui:174
msgctxt "exportepub|splitft"
msgid "Split method:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:192
+#: writerperfect/uiconfig/ui/exportepub.ui:191
#, fuzzy
msgctxt "exportepub|splitpage"
msgid "Page break"
msgstr "Pagebreak"
-#: writerperfect/uiconfig/ui/exportepub.ui:193
+#: writerperfect/uiconfig/ui/exportepub.ui:192
msgctxt "exportepub|splitheading"
msgid "Heading"
msgstr "Heading"
-#: writerperfect/uiconfig/ui/exportepub.ui:228
+#: writerperfect/uiconfig/ui/exportepub.ui:227
msgctxt "exportepub|layoutft"
msgid "Layout method:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:245
+#: writerperfect/uiconfig/ui/exportepub.ui:244
msgctxt "exportepub|layoutreflowable"
msgid "Reflowable"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:246
+#: writerperfect/uiconfig/ui/exportepub.ui:245
msgctxt "exportepub|layoutfixed"
msgid "Fixed"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:281
+#: writerperfect/uiconfig/ui/exportepub.ui:280
msgctxt "exportepub|coverimageft"
msgid "Custom cover image:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:311
+#: writerperfect/uiconfig/ui/exportepub.ui:310
msgctxt "exportepub|coverbutton"
msgid "Browse..."
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:355
+#: writerperfect/uiconfig/ui/exportepub.ui:354
msgctxt "exportepub|mediadirft"
msgid "Custom media directory:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:385
+#: writerperfect/uiconfig/ui/exportepub.ui:384
msgctxt "exportepub|mediabutton"
msgid "Browse..."
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:429
+#: writerperfect/uiconfig/ui/exportepub.ui:428
msgctxt "exportepub|metadataft"
msgid "Metadata"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:470
+#: writerperfect/uiconfig/ui/exportepub.ui:468
msgctxt "exportepub|identifierft"
msgid "Identifier:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:485
+#: writerperfect/uiconfig/ui/exportepub.ui:483
msgctxt "exportepub|titleft"
msgid "Title:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:511
+#: writerperfect/uiconfig/ui/exportepub.ui:509
msgctxt "exportepub|authorft"
msgid "Author:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:537
+#: writerperfect/uiconfig/ui/exportepub.ui:535
msgctxt "exportepub|languageft"
msgid "Language:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:563
+#: writerperfect/uiconfig/ui/exportepub.ui:561
msgctxt "exportepub|dateft"
msgid "Date:"
msgstr ""
diff --git a/source/eo/cui/messages.po b/source/eo/cui/messages.po
index 9a9295d1950..693337e448a 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2018-05-15 21:45+0000\n"
"Last-Translator: Donald Rogers <donr2648@clear.net.nz>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -9872,97 +9872,97 @@ msgctxt "positionsizedialog|PositionAndSizeDialog"
msgid "Position and Size"
msgstr "Pozicio kaj grando"
-#: cui/uiconfig/ui/positionsizedialog.ui:107
+#: cui/uiconfig/ui/positionsizedialog.ui:136
msgctxt "positionsizedialog|RID_SVXPAGE_POSITION_SIZE"
msgid "Position and Size"
msgstr "Pozicio kaj grando"
-#: cui/uiconfig/ui/positionsizedialog.ui:129
+#: cui/uiconfig/ui/positionsizedialog.ui:182
msgctxt "positionsizedialog|RID_SVXPAGE_SWPOSSIZE"
msgid "Position and Size"
msgstr "Pozicio kaj grando"
-#: cui/uiconfig/ui/positionsizedialog.ui:152
+#: cui/uiconfig/ui/positionsizedialog.ui:229
msgctxt "positionsizedialog|RID_SVXPAGE_ANGLE"
msgid "Rotation"
msgstr "Turno"
-#: cui/uiconfig/ui/positionsizedialog.ui:175
+#: cui/uiconfig/ui/positionsizedialog.ui:276
msgctxt "positionsizedialog|RID_SVXPAGE_SLANT"
msgid "Slant & Corner Radius"
msgstr "Klino kaj angula radiuso"
-#: cui/uiconfig/ui/possizetabpage.ui:40
+#: cui/uiconfig/ui/possizetabpage.ui:61
msgctxt "possizetabpage|FT_POS_X"
msgid "Position _X:"
msgstr "Pozicio _X:"
-#: cui/uiconfig/ui/possizetabpage.ui:56
+#: cui/uiconfig/ui/possizetabpage.ui:75
msgctxt "possizetabpage|FT_POS_Y"
msgid "Position _Y:"
msgstr "Pozicio _Y:"
-#: cui/uiconfig/ui/possizetabpage.ui:110
+#: cui/uiconfig/ui/possizetabpage.ui:128
msgctxt "possizetabpage|FT_POSREFERENCE"
msgid "_Base point:"
msgstr "Baza punkto:"
-#: cui/uiconfig/ui/possizetabpage.ui:148
+#: cui/uiconfig/ui/possizetabpage.ui:182
msgctxt "possizetabpage|label1"
msgid "Position"
msgstr "Pozicio"
-#: cui/uiconfig/ui/possizetabpage.ui:190
+#: cui/uiconfig/ui/possizetabpage.ui:224
msgctxt "possizetabpage|FT_WIDTH"
msgid "Wi_dth:"
msgstr "Larĝo:"
-#: cui/uiconfig/ui/possizetabpage.ui:206
+#: cui/uiconfig/ui/possizetabpage.ui:238
msgctxt "possizetabpage|FT_HEIGHT"
msgid "H_eight:"
msgstr "Alto:"
-#: cui/uiconfig/ui/possizetabpage.ui:247
+#: cui/uiconfig/ui/possizetabpage.ui:276
msgctxt "possizetabpage|CBX_SCALE"
msgid "_Keep ratio"
msgstr "Konservi proporcion"
-#: cui/uiconfig/ui/possizetabpage.ui:279
+#: cui/uiconfig/ui/possizetabpage.ui:307
msgctxt "possizetabpage|FT_SIZEREFERENCE"
msgid "Base _point:"
msgstr "Baza punkto:"
-#: cui/uiconfig/ui/possizetabpage.ui:317
+#: cui/uiconfig/ui/possizetabpage.ui:361
msgctxt "possizetabpage|label2"
msgid "Size"
msgstr "Grando"
-#: cui/uiconfig/ui/possizetabpage.ui:356
+#: cui/uiconfig/ui/possizetabpage.ui:401
msgctxt "possizetabpage|TSB_POSPROTECT"
msgid "Positio_n"
msgstr "Pozicio"
-#: cui/uiconfig/ui/possizetabpage.ui:373
+#: cui/uiconfig/ui/possizetabpage.ui:418
msgctxt "possizetabpage|TSB_SIZEPROTECT"
msgid "_Size"
msgstr "Grando"
-#: cui/uiconfig/ui/possizetabpage.ui:397
+#: cui/uiconfig/ui/possizetabpage.ui:441
msgctxt "possizetabpage|label3"
msgid "Protect"
msgstr "Protekti"
-#: cui/uiconfig/ui/possizetabpage.ui:430
+#: cui/uiconfig/ui/possizetabpage.ui:475
msgctxt "possizetabpage|TSB_AUTOGROW_WIDTH"
msgid "_Fit width to text"
msgstr "Adapti larĝon al teksto"
-#: cui/uiconfig/ui/possizetabpage.ui:447
+#: cui/uiconfig/ui/possizetabpage.ui:492
msgctxt "possizetabpage|TSB_AUTOGROW_HEIGHT"
msgid "Fit _height to text"
msgstr "Adapti alton al teksto"
-#: cui/uiconfig/ui/possizetabpage.ui:471
+#: cui/uiconfig/ui/possizetabpage.ui:515
msgctxt "possizetabpage|label4"
msgid "Adapt"
msgstr "Adapti"
@@ -10162,47 +10162,47 @@ msgctxt "recordnumberdialog|label2"
msgid "go to record"
msgstr "iru al rikordo"
-#: cui/uiconfig/ui/rotationtabpage.ui:52
+#: cui/uiconfig/ui/rotationtabpage.ui:56
msgctxt "rotationtabpage|FT_POS_X"
msgid "Position _X:"
msgstr "Pozicio _X:"
-#: cui/uiconfig/ui/rotationtabpage.ui:66
+#: cui/uiconfig/ui/rotationtabpage.ui:70
msgctxt "rotationtabpage|FT_POS_Y"
msgid "Position _Y:"
msgstr "Pozicio _Y:"
-#: cui/uiconfig/ui/rotationtabpage.ui:116
+#: cui/uiconfig/ui/rotationtabpage.ui:123
msgctxt "rotationtabpage|FT_POSPRESETS"
msgid "_Default settings:"
msgstr "Apriora agordaro:"
-#: cui/uiconfig/ui/rotationtabpage.ui:130
+#: cui/uiconfig/ui/rotationtabpage.ui:151
msgctxt "rotationtabpage|CTL_RECT|tooltip_text"
msgid "Rotation point"
msgstr "Turna punkto"
-#: cui/uiconfig/ui/rotationtabpage.ui:155
+#: cui/uiconfig/ui/rotationtabpage.ui:178
msgctxt "rotationtabpage|label1"
msgid "Pivot Point"
msgstr "Pivota punkto"
-#: cui/uiconfig/ui/rotationtabpage.ui:197
+#: cui/uiconfig/ui/rotationtabpage.ui:220
msgctxt "rotationtabpage|FT_ANGLE"
msgid "_Angle:"
msgstr "Angulo:"
-#: cui/uiconfig/ui/rotationtabpage.ui:238
+#: cui/uiconfig/ui/rotationtabpage.ui:263
msgctxt "rotationtabpage|FT_ANGLEPRESETS"
msgid "Default _settings:"
msgstr "Aprioraj agordoj:"
-#: cui/uiconfig/ui/rotationtabpage.ui:252
+#: cui/uiconfig/ui/rotationtabpage.ui:287
msgctxt "rotationtabpage|CTL_ANGLE|tooltip_text"
msgid "Rotation Angle"
msgstr "Turna angulo"
-#: cui/uiconfig/ui/rotationtabpage.ui:277
+#: cui/uiconfig/ui/rotationtabpage.ui:314
msgctxt "rotationtabpage|label2"
msgid "Rotation Angle"
msgstr "Turna angulo"
@@ -10582,52 +10582,52 @@ msgctxt "similaritysearchdialog|relaxbox"
msgid "_Combine"
msgstr "Kombini"
-#: cui/uiconfig/ui/slantcornertabpage.ui:50
+#: cui/uiconfig/ui/slantcornertabpage.ui:70
msgctxt "slantcornertabpage|label5"
msgid "_X:"
msgstr "_X:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:88
+#: cui/uiconfig/ui/slantcornertabpage.ui:110
msgctxt "slantcornertabpage|label6"
msgid "_Y:"
msgstr "_Y:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:125
+#: cui/uiconfig/ui/slantcornertabpage.ui:149
msgctxt "slantcornertabpage|label3"
msgid "Control Point 1"
msgstr "Regpunkto 1"
-#: cui/uiconfig/ui/slantcornertabpage.ui:159
+#: cui/uiconfig/ui/slantcornertabpage.ui:183
msgctxt "slantcornertabpage|FT_RADIUS"
msgid "_Radius:"
msgstr "Radiuso:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:189
+#: cui/uiconfig/ui/slantcornertabpage.ui:214
msgctxt "slantcornertabpage|label1"
msgid "Corner Radius"
msgstr "Angula radiuso"
-#: cui/uiconfig/ui/slantcornertabpage.ui:223
+#: cui/uiconfig/ui/slantcornertabpage.ui:248
msgctxt "slantcornertabpage|FT_ANGLE"
msgid "_Angle:"
msgstr "Angulo:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:253
+#: cui/uiconfig/ui/slantcornertabpage.ui:279
msgctxt "slantcornertabpage|label2"
msgid "Slant"
msgstr "Klino"
-#: cui/uiconfig/ui/slantcornertabpage.ui:294
+#: cui/uiconfig/ui/slantcornertabpage.ui:320
msgctxt "slantcornertabpage|label4"
msgid "_X:"
msgstr "_X:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:332
+#: cui/uiconfig/ui/slantcornertabpage.ui:360
msgctxt "slantcornertabpage|label7"
msgid "_Y:"
msgstr "_Y:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:369
+#: cui/uiconfig/ui/slantcornertabpage.ui:399
msgctxt "slantcornertabpage|label8"
msgid "Control Point 2"
msgstr "Regpunkto 2"
@@ -10907,112 +10907,112 @@ msgctxt "storedwebconnectiondialog|change"
msgid "_Change Password..."
msgstr "Ŝanĝi pasvorton..."
-#: cui/uiconfig/ui/swpossizepage.ui:74
+#: cui/uiconfig/ui/swpossizepage.ui:85
msgctxt "swpossizepage|widthft"
msgid "_Width:"
msgstr "Larĝo:"
-#: cui/uiconfig/ui/swpossizepage.ui:111
+#: cui/uiconfig/ui/swpossizepage.ui:123
msgctxt "swpossizepage|heightft"
msgid "H_eight:"
msgstr "Alto:"
-#: cui/uiconfig/ui/swpossizepage.ui:128
+#: cui/uiconfig/ui/swpossizepage.ui:141
msgctxt "swpossizepage|ratio"
msgid "_Keep ratio"
msgstr "Konservi proporcion"
-#: cui/uiconfig/ui/swpossizepage.ui:149
+#: cui/uiconfig/ui/swpossizepage.ui:162
msgctxt "swpossizepage|label2"
msgid "Size"
msgstr "Grando"
-#: cui/uiconfig/ui/swpossizepage.ui:205
+#: cui/uiconfig/ui/swpossizepage.ui:218
msgctxt "swpossizepage|topage"
msgid "To _page"
msgstr "Al paĝo"
-#: cui/uiconfig/ui/swpossizepage.ui:222
+#: cui/uiconfig/ui/swpossizepage.ui:234
msgctxt "swpossizepage|topara"
msgid "To paragrap_h"
msgstr "Al alineo"
-#: cui/uiconfig/ui/swpossizepage.ui:238
+#: cui/uiconfig/ui/swpossizepage.ui:250
msgctxt "swpossizepage|tochar"
msgid "To cha_racter"
msgstr "Al signo"
-#: cui/uiconfig/ui/swpossizepage.ui:254
+#: cui/uiconfig/ui/swpossizepage.ui:266
msgctxt "swpossizepage|aschar"
msgid "_As character"
msgstr "Kiel signo"
-#: cui/uiconfig/ui/swpossizepage.ui:270
+#: cui/uiconfig/ui/swpossizepage.ui:282
msgctxt "swpossizepage|toframe"
msgid "To _frame"
msgstr "Al kadro"
-#: cui/uiconfig/ui/swpossizepage.ui:292
+#: cui/uiconfig/ui/swpossizepage.ui:304
msgctxt "swpossizepage|label1"
msgid "Anchor"
msgstr "Ankri"
-#: cui/uiconfig/ui/swpossizepage.ui:333
+#: cui/uiconfig/ui/swpossizepage.ui:344
msgctxt "swpossizepage|horiposft"
msgid "Hori_zontal:"
msgstr "Horizontale:"
-#: cui/uiconfig/ui/swpossizepage.ui:347
+#: cui/uiconfig/ui/swpossizepage.ui:358
msgctxt "swpossizepage|horibyft"
msgid "b_y:"
msgstr "de:"
-#: cui/uiconfig/ui/swpossizepage.ui:361
+#: cui/uiconfig/ui/swpossizepage.ui:372
msgctxt "swpossizepage|vertbyft"
msgid "_by:"
msgstr "de:"
-#: cui/uiconfig/ui/swpossizepage.ui:375
+#: cui/uiconfig/ui/swpossizepage.ui:386
msgctxt "swpossizepage|horitoft"
msgid "_to:"
msgstr "al:"
-#: cui/uiconfig/ui/swpossizepage.ui:421
+#: cui/uiconfig/ui/swpossizepage.ui:433
msgctxt "swpossizepage|vertposft"
msgid "_Vertical:"
msgstr "Vertikale:"
-#: cui/uiconfig/ui/swpossizepage.ui:457
+#: cui/uiconfig/ui/swpossizepage.ui:470
msgctxt "swpossizepage|verttoft"
msgid "t_o:"
msgstr "al:"
-#: cui/uiconfig/ui/swpossizepage.ui:478
+#: cui/uiconfig/ui/swpossizepage.ui:492
msgctxt "swpossizepage|mirror"
msgid "_Mirror on even pages"
msgstr "Speguli en paraj paĝoj"
-#: cui/uiconfig/ui/swpossizepage.ui:495
+#: cui/uiconfig/ui/swpossizepage.ui:509
msgctxt "swpossizepage|followtextflow"
msgid "Follow te_xt flow"
msgstr "Sekvi tekstan fluon"
-#: cui/uiconfig/ui/swpossizepage.ui:518
+#: cui/uiconfig/ui/swpossizepage.ui:532
msgctxt "swpossizepage|label11"
msgid "Position"
msgstr "Pozicio"
-#: cui/uiconfig/ui/swpossizepage.ui:549
+#: cui/uiconfig/ui/swpossizepage.ui:563
msgctxt "swpossizepage|pos"
msgid "Positio_n"
msgstr "Pozicio"
-#: cui/uiconfig/ui/swpossizepage.ui:565
+#: cui/uiconfig/ui/swpossizepage.ui:579
msgctxt "swpossizepage|size"
msgid "_Size"
msgstr "Grando"
-#: cui/uiconfig/ui/swpossizepage.ui:587
+#: cui/uiconfig/ui/swpossizepage.ui:601
msgctxt "swpossizepage|label3"
msgid "Protect"
msgstr "Protekti"
@@ -11202,12 +11202,12 @@ msgctxt "textattrtabpage|label2"
msgid "Spacing to Borders"
msgstr "Interspacoj apud borderoj"
-#: cui/uiconfig/ui/textattrtabpage.ui:425
+#: cui/uiconfig/ui/textattrtabpage.ui:423
msgctxt "textattrtabpage|TSB_FULL_WIDTH"
msgid "Full _width"
msgstr "Tuta larĝo"
-#: cui/uiconfig/ui/textattrtabpage.ui:448
+#: cui/uiconfig/ui/textattrtabpage.ui:446
msgctxt "textattrtabpage|label3"
msgid "Text Anchor"
msgstr "Teksta ankro"
diff --git a/source/eo/filter/source/config/fragments/filters.po b/source/eo/filter/source/config/fragments/filters.po
index e522102a71e..4d802ddafda 100644
--- a/source/eo/filter/source/config/fragments/filters.po
+++ b/source/eo/filter/source/config/fragments/filters.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-16 16:54+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2018-05-05 04:20+0000\n"
"Last-Translator: Donald Rogers <donr2648@clear.net.nz>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -463,8 +463,8 @@ msgctxt ""
"MS Word 2003 XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Word 2003 XML"
-msgstr "Microsoft Word 2003 XML"
+msgid "Word 2003 XML"
+msgstr ""
#: MS_Word_2007_XML.xcu
msgctxt ""
@@ -1282,8 +1282,8 @@ msgctxt ""
"Calc MS Excel 2007 VBA XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Excel 2007-2016 XML (macro enabled)"
-msgstr "Microsoft Excel 2007-2016 XML (makrooj enŝaltitaj)"
+msgid "Excel 2007–2019 (macro-enabled)"
+msgstr ""
#: calc_MS_Excel_2007_XML.xcu
msgctxt ""
diff --git a/source/eo/filter/source/config/fragments/types.po b/source/eo/filter/source/config/fragments/types.po
index 4d0ca43574c..b44e2801f58 100644
--- a/source/eo/filter/source/config/fragments/types.po
+++ b/source/eo/filter/source/config/fragments/types.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-08 15:11+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2018-05-05 04:21+0000\n"
"Last-Translator: Donald Rogers <donr2648@clear.net.nz>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -292,8 +292,8 @@ msgctxt ""
"writer_MS_Word_2003_XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Word 2003 XML"
-msgstr "Microsoft Word 2003 XML"
+msgid "Word 2003 XML"
+msgstr ""
#: writer_MS_Word_2007_XML.xcu
msgctxt ""
diff --git a/source/eo/fpicker/messages.po b/source/eo/fpicker/messages.po
index ec57544904b..ab5629a46ec 100644
--- a/source/eo/fpicker/messages.po
+++ b/source/eo/fpicker/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2018-03-09 02:34+0000\n"
"Last-Translator: Donald Rogers <donr2648@clear.net.nz>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -272,13 +272,13 @@ msgstr "Ĉifri per GPG-ŝlosilo"
#: fpicker/uiconfig/ui/foldernamedialog.ui:8
msgctxt "foldernamedialog|FolderNameDialog"
-msgid "Folder Name ?"
-msgstr "Nomo de dosierujo ?"
+msgid "Folder Name"
+msgstr ""
#: fpicker/uiconfig/ui/foldernamedialog.ui:91
msgctxt "foldernamedialog|label2"
-msgid "Na_me"
-msgstr "Nomo"
+msgid "Na_me:"
+msgstr ""
#: fpicker/uiconfig/ui/foldernamedialog.ui:122
msgctxt "foldernamedialog|label1"
diff --git a/source/eo/helpcontent2/source/text/shared/00.po b/source/eo/helpcontent2/source/text/shared/00.po
index f1d31841e4a..e072b19b240 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2018-01-16 03:18+0000\n"
"Last-Translator: Donald Rogers <donr2648@clear.net.nz>\n"
"Language-Team: Esperanto <eo@li.org>\n"
@@ -397,16 +397,16 @@ msgctxt ""
"00000001.xhp\n"
"hd_id3149670\n"
"help.text"
-msgid "Back"
-msgstr "Reen"
+msgid "Reset"
+msgstr ""
#: 00000001.xhp
msgctxt ""
"00000001.xhp\n"
"par_id3145068\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optionsdialog/revert\">Resets modified values back to the $[officename] default values.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/optionsdialog/revert\">Restaŭras ŝanĝitajn valorojn al la aprioraj $[officename]-valoroj.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optionsdialog/revert\">Resets changes made to the current tab to those applicable when this dialog was opened.</ahelp>"
+msgstr ""
#: 00000001.xhp
msgctxt ""
@@ -552,6 +552,54 @@ msgctxt ""
msgid "<variable id=\"ShiftF1\">Press Shift+F1 and point to a control to learn more about that control.</variable>"
msgstr "<variable id=\"ShiftF1\">Premu Maj+F1 kaj indiku regilon por lerni pri tiu regilo.</variable>"
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"hd_id631527692833772\n"
+"help.text"
+msgid "Options dialog buttons"
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"hd_id831527692839432\n"
+"help.text"
+msgid "OK"
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"par_id471527692844934\n"
+"help.text"
+msgid "Save the changes in the page and close the Options dialog."
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"hd_id261527692850720\n"
+"help.text"
+msgid "Cancel"
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"par_id571527692855533\n"
+"help.text"
+msgid "Close the Options dialog and discard all changes done."
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"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 Options dialog."
+msgstr ""
+
#: 00000002.xhp
msgctxt ""
"00000002.xhp\n"
@@ -11125,7 +11173,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3151293\n"
"help.text"
-msgid "<variable id=\"linienstile\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Line Styles</emph> tab </variable>"
+msgid "<variable id=\"linienstile\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Line Styles</emph> tab</variable>"
msgstr ""
#: 00040502.xhp
@@ -11133,7 +11181,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3149317\n"
"help.text"
-msgid "<variable id=\"linienenden\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Arrow Styles</emph> tab </variable>"
+msgid "<variable id=\"linienenden\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Arrow Styles</emph> tab</variable>"
msgstr ""
#: 00040502.xhp
@@ -11173,7 +11221,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3154948\n"
"help.text"
-msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Area</emph> tab"
+msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Area</emph> tab."
msgstr ""
#: 00040502.xhp
@@ -11181,7 +11229,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3145607\n"
"help.text"
-msgid "Choose <emph>View - Styles</emph> - open context menu and choose <emph>Modify/New - Area</emph> tab (presentation documents)"
+msgid "Choose <emph>View - Styles</emph> - open context menu and choose <emph>Modify/New - Area</emph> tab (presentation documents)."
msgstr ""
#: 00040502.xhp
@@ -11189,47 +11237,47 @@ msgctxt ""
"00040502.xhp\n"
"par_id3152922\n"
"help.text"
-msgid "Choose <emph>Format - Title - Area</emph> tab (chart documents)"
-msgstr "Elektu langeton<emph>Formati - Grafikaĵoj - Grafikaĵoj</emph>"
+msgid "Choose <emph>Format - Title - Area</emph> tab (chart documents)."
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3157894\n"
"help.text"
-msgid "Choose <emph>Format - Legend - Area</emph> tab (chart documents)"
-msgstr "Elektu langeton<emph>Formati - Grafikaĵoj - Grafikaĵoj</emph>"
+msgid "Choose <emph>Format - Legend - Area</emph> tab (chart documents)."
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3144444\n"
"help.text"
-msgid "Choose <emph>Format - Chart Wall - Area</emph> tab (chart documents)"
-msgstr "Elektu langeton<emph>Formati - Grafikaĵoj - Grafikaĵoj</emph>"
+msgid "Choose <emph>Format - Chart Wall - Area</emph> tab (chart documents)."
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3156543\n"
"help.text"
-msgid "Choose <emph>Format - Chart Floor - Area</emph> tab (chart documents)"
-msgstr "Elektu langeton<emph>Formati - Grafikaĵoj - Grafikaĵoj</emph>"
+msgid "Choose <emph>Format - Chart Floor - Area</emph> tab (chart documents)."
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3150685\n"
"help.text"
-msgid "Choose <emph>Format - Chart Area - Area</emph> tab (chart documents)"
-msgstr "Elektu langeton<emph>Formati - Grafikaĵoj - Grafikaĵoj</emph>"
+msgid "Choose <emph>Format - Chart Area - Area</emph> tab (chart documents)."
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3149664\n"
"help.text"
-msgid "Choose <emph>Slide - Properties - Background</emph> tab (in $[officename] Impress)"
+msgid "Choose <emph>Slide - Properties - Background</emph> tab (in $[officename] Impress)."
msgstr ""
#: 00040502.xhp
@@ -11237,7 +11285,15 @@ msgctxt ""
"00040502.xhp\n"
"par_id9149694\n"
"help.text"
-msgid "Choose <emph>Page - Properties - Background</emph> tab (in $[officename] Draw)"
+msgid "Choose <emph>Page - Properties - Background</emph> tab (in $[officename] Draw)."
+msgstr ""
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id841527083135387\n"
+"help.text"
+msgid "Choose <emph>Table - Properties - Background</emph> tab."
msgstr ""
#: 00040502.xhp
@@ -11349,7 +11405,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3150011\n"
"help.text"
-msgid "<variable id=\"schatte\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Shadow</emph> tab </variable>"
+msgid "<variable id=\"schatte\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Shadow</emph> tab</variable>"
msgstr ""
#: 00040502.xhp
@@ -11357,7 +11413,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3147441\n"
"help.text"
-msgid "<variable id=\"verlauf\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Gradients</emph> tab </variable>"
+msgid "<variable id=\"verlauf\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Gradients</emph> tab</variable>"
msgstr ""
#: 00040502.xhp
@@ -11365,7 +11421,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3155308\n"
"help.text"
-msgid "<variable id=\"schraffur\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Hatching</emph> tab </variable>"
+msgid "<variable id=\"schraffur\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Hatching</emph> tab</variable>"
msgstr ""
#: 00040502.xhp
@@ -11373,7 +11429,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3145800\n"
"help.text"
-msgid "<variable id=\"bitmap\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Bitmaps</emph> tab </variable>"
+msgid "<variable id=\"bitmap\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Bitmaps</emph> tab</variable>"
msgstr ""
#: 00040502.xhp
@@ -11413,7 +11469,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3156286\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F4 key </caseinline><caseinline select=\"IMPRESS\">F4 key </caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F4 key</caseinline><caseinline select=\"IMPRESS\">F4 key</caseinline></switchinline>"
msgstr ""
#: 00040502.xhp
@@ -11453,7 +11509,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3153099\n"
"help.text"
-msgid "<variable id=\"position2\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Position and Size</emph> tab </variable>"
+msgid "<variable id=\"position2\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Position and Size</emph> tab</variable>"
msgstr ""
#: 00040502.xhp
@@ -11485,7 +11541,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3145666\n"
"help.text"
-msgid "<variable id=\"ecke\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Slant & Corner Radius</emph> tab </variable>"
+msgid "<variable id=\"ecke\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Slant & Corner Radius</emph> tab</variable>"
msgstr ""
#: 00040502.xhp
@@ -11493,7 +11549,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3146081\n"
"help.text"
-msgid "<variable id=\"legende\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Callout</emph> tab (only for textbox callouts, not for custom shapes callouts) </variable>"
+msgid "<variable id=\"legende\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Callout</emph> tab (only for textbox callouts, not for custom shapes callouts)</variable>"
msgstr ""
#: 00040502.xhp
@@ -11517,7 +11573,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3149019\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F8 key </caseinline><caseinline select=\"IMPRESS\">F8 key </caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F8 key</caseinline><caseinline select=\"IMPRESS\">F8 key</caseinline></switchinline>"
msgstr ""
#: 00040502.xhp
@@ -11805,8 +11861,8 @@ msgctxt ""
"00040502.xhp\n"
"par_id3153076\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Align Center Horizontally </caseinline><defaultinline>Centered</defaultinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Ĝisrandigo centrigite</caseinline><defaultinline>Centrigita</defaultinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Align Center Horizontally</caseinline><defaultinline>Centered</defaultinline></switchinline>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
@@ -11845,7 +11901,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3150527\n"
"help.text"
-msgid "<variable id=\"font\">Click <emph>Fontwork</emph> icon on <emph>Drawing</emph> bar </variable>"
+msgid "<variable id=\"font\">Click <emph>Fontwork</emph> icon on <emph>Drawing</emph> bar</variable>"
msgstr ""
#: 00040502.xhp
diff --git a/source/eo/helpcontent2/source/text/shared/01.po b/source/eo/helpcontent2/source/text/shared/01.po
index 2b1b52501b5..b2e6473620b 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: 2018-05-23 23:19+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2017-09-14 22:06+0000\n"
"Last-Translator: Donald Rogers <donr2648@clear.net.nz>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -23587,6 +23587,22 @@ msgstr ""
#: 05210100.xhp
msgctxt ""
"05210100.xhp\n"
+"hd_id471527077476052\n"
+"help.text"
+msgid "Cell, Row or Table background selector"
+msgstr ""
+
+#: 05210100.xhp
+msgctxt ""
+"05210100.xhp\n"
+"par_id661527077493366\n"
+"help.text"
+msgid "Select the table object which background area is to be filled."
+msgstr ""
+
+#: 05210100.xhp
+msgctxt ""
+"05210100.xhp\n"
"hd_id3147373\n"
"help.text"
msgid "None"
@@ -31205,15 +31221,15 @@ msgctxt ""
"06040100.xhp\n"
"hd_id3145072\n"
"help.text"
-msgid "Automatic *bold* and _underline_"
-msgstr "Aŭtomate *grasigi* kaj _substreki_"
+msgid "Automatic *bold*, /italic/, -strikeout- and _underline_"
+msgstr ""
#: 06040100.xhp
msgctxt ""
"06040100.xhp\n"
"par_id3153577\n"
"help.text"
-msgid "Automatically applies bold formatting to text enclosed by asterisks (*), and underline to text enclosed by underscores ( _ ), for example, *bold*. The asterisks and underscores are not displayed after the formatting is applied."
+msgid "Automatically applies bold, italic, strikethrough or underline formatting to text enclosed by asterisks (*), slashes (/), hyphens (-), and underscores (_), respectively. These characters disappear after the formatting is applied."
msgstr ""
#: 06040100.xhp
@@ -31221,7 +31237,7 @@ msgctxt ""
"06040100.xhp\n"
"par_id3153127\n"
"help.text"
-msgid "This feature does not work if the formatting characters * or _ are entered with an <link href=\"text/shared/00/00000005.xhp#IME\" name=\"Input Method Editor\">Input Method Editor</link>."
+msgid "This feature does not work if the formatting characters <item type=\"literal\">* / - _</item> are entered with an <link href=\"text/shared/00/00000005.xhp#IME\" name=\"Input Method Editor\">Input Method Editor</link>."
msgstr ""
#: 06040100.xhp
diff --git a/source/eo/helpcontent2/source/text/shared/optionen.po b/source/eo/helpcontent2/source/text/shared/optionen.po
index b23aadcfe9b..75a66613da4 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: 2018-05-08 15:10+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2016-07-06 01:25+0000\n"
"Last-Translator: Donald Rogers <donr2648@clear.net.nz>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -83,6 +83,22 @@ msgstr ""
#: 01000000.xhp
msgctxt ""
"01000000.xhp\n"
+"hd_id551527692881035\n"
+"help.text"
+msgid "Help"
+msgstr ""
+
+#: 01000000.xhp
+msgctxt ""
+"01000000.xhp\n"
+"par_id831527692885723\n"
+"help.text"
+msgid "Opens the help contents for the Options page displayed."
+msgstr ""
+
+#: 01000000.xhp
+msgctxt ""
+"01000000.xhp\n"
"hd_id3159149\n"
"help.text"
msgid "<link href=\"text/shared/optionen/01010000.xhp\" name=\"$[officename]\">%PRODUCTNAME</link>"
@@ -4565,8 +4581,8 @@ msgctxt ""
"01030300.xhp\n"
"par_idN10640\n"
"help.text"
-msgid "Options"
-msgstr "Agordaro"
+msgid "Security Options and Warnings"
+msgstr ""
#: 01030300.xhp
msgctxt ""
@@ -4597,7 +4613,7 @@ msgctxt ""
"01030300.xhp\n"
"hd_id3168736\n"
"help.text"
-msgid "Persistently save passwords protected by a master password"
+msgid "Persistently save passwords for web connections"
msgstr ""
#: 01030300.xhp
@@ -4613,6 +4629,22 @@ msgctxt ""
"01030300.xhp\n"
"hd_id3901791\n"
"help.text"
+msgid "Protected by a master password (recommended)"
+msgstr ""
+
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"par_id31527711486980\n"
+"help.text"
+msgid "Check to enable all connections' passwords to be protected by a master password."
+msgstr ""
+
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"hd_id141527711343312\n"
+"help.text"
msgid "Master Password"
msgstr ""
@@ -13733,7 +13765,7 @@ msgctxt ""
"java.xhp\n"
"hd_id3148618\n"
"help.text"
-msgid "Optional (unstable) options"
+msgid "Optional Features"
msgstr ""
#: java.xhp
@@ -13749,7 +13781,7 @@ msgctxt ""
"java.xhp\n"
"par_id3156344\n"
"help.text"
-msgid "It enables features that are not yet complete or contain known bugs. The list of these features is different version by version, or even it can be empty."
+msgid "Enables features that are not yet complete or may contain known bugs. The list of these features is different version by version, or even it can be empty."
msgstr ""
#: java.xhp
@@ -13765,7 +13797,7 @@ msgctxt ""
"java.xhp\n"
"par_id3156345\n"
"help.text"
-msgid "It enables macro recording, so the <link href=\"text/shared/guide/macro_recording.xhp\" name=\"Tools - Macros - Record Macro\"><item type=\"menuitem\">Tools - Macros - Record Macro</item></link> menu item will be available."
+msgid "Enables macro recording. The <link href=\"text/shared/guide/macro_recording.xhp\" name=\"Tools - Macros - Record Macro\"><item type=\"menuitem\">Tools - Macros - Record Macro</item></link> menu item is available."
msgstr ""
#: java.xhp
diff --git a/source/eo/officecfg/registry/data/org/openoffice/Office/UI.po b/source/eo/officecfg/registry/data/org/openoffice/Office/UI.po
index a1e1bb836a1..6dedf9e54dd 100644
--- a/source/eo/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/eo/officecfg/registry/data/org/openoffice/Office/UI.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: 2018-05-22 13:17+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2018-05-15 21:46+0000\n"
"Last-Translator: Donald Rogers <donr2648@clear.net.nz>\n"
"Language-Team: Esperanto <kde-i18n-doc@kde.org>\n"
@@ -26520,8 +26520,8 @@ msgctxt ""
"..WriterCommands.UserInterface.Commands..uno:TextAttributes\n"
"Label\n"
"value.text"
-msgid "Text Attributes"
-msgstr "Tekstaj atributoj"
+msgid "Text Attributes..."
+msgstr ""
#: WriterCommands.xcu
msgctxt ""
diff --git a/source/eo/readlicense_oo/docs.po b/source/eo/readlicense_oo/docs.po
index 9be946b9bb5..e28c80b5778 100644
--- a/source/eo/readlicense_oo/docs.po
+++ b/source/eo/readlicense_oo/docs.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: 2018-04-17 15:54+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2018-05-05 04:22+0000\n"
"Last-Translator: Donald Rogers <donr2648@clear.net.nz>\n"
"Language-Team: Esperanto <eo@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1525494125.000000\n"
#: readme.xrm
@@ -117,8 +117,8 @@ msgctxt ""
"readme.xrm\n"
"macxiOSX\n"
"readmeitem.text"
-msgid "MacOSX 10.8 (Mountain Lion) or higher"
-msgstr "MacOSX 10.8 (Mountain Lion) aŭ pli alta"
+msgid "MacOSX 10.9 (Mavericks) or higher"
+msgstr ""
#: readme.xrm
msgctxt ""
diff --git a/source/eo/sc/messages.po b/source/eo/sc/messages.po
index 214574d6943..40d12307382 100644
--- a/source/eo/sc/messages.po
+++ b/source/eo/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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-12 14:40+0200\n"
"PO-Revision-Date: 2018-05-05 04:32+0000\n"
"Last-Translator: Donald Rogers <donr2648@clear.net.nz>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1870,16 +1870,21 @@ msgid "Nested arrays are not supported."
msgstr "Hierarkiaj tabeloj ne estas subtenataj."
#: sc/inc/globstr.hrc:390
+msgctxt "STR_ERR_LONG_BAD_ARRAY_CONTENT"
+msgid "Unsupported inline array content."
+msgstr ""
+
+#: sc/inc/globstr.hrc:391
msgctxt "STR_UNDO_TEXTTOCOLUMNS"
msgid "Text to Columns"
msgstr "Teksto al kolumnoj"
-#: sc/inc/globstr.hrc:391
+#: sc/inc/globstr.hrc:392
msgctxt "STR_DOC_UPDATED"
msgid "Your spreadsheet has been updated with changes saved by other users."
msgstr "Via kalkultabelo estas aktualigita per ŝanĝoj konservitaj de aliaj uzantoj."
-#: sc/inc/globstr.hrc:392
+#: sc/inc/globstr.hrc:393
msgctxt "STR_DOC_WILLBESAVED"
msgid ""
"The spreadsheet must be saved now to activate sharing mode.\n"
@@ -1890,7 +1895,7 @@ msgstr ""
"\n"
"Ĉu vi volas daŭrigi?"
-#: sc/inc/globstr.hrc:393
+#: sc/inc/globstr.hrc:394
msgctxt "STR_DOC_WILLNOTBESAVED"
msgid ""
"Already resolved merge conflicts will be lost and your changes to the shared spreadsheet will not be saved.\n"
@@ -1901,7 +1906,7 @@ msgstr ""
"\n"
"Ĉu vi volas daŭrigi?"
-#: sc/inc/globstr.hrc:394
+#: sc/inc/globstr.hrc:395
msgctxt "STR_DOC_DISABLESHARED"
msgid ""
"Disabling shared mode of a spreadsheet hinders all other users of the shared spreadsheet to merge back their work.\n"
@@ -1912,7 +1917,7 @@ msgstr ""
"\n"
"Ĉu vi volas daŭrigi?"
-#: sc/inc/globstr.hrc:395
+#: sc/inc/globstr.hrc:396
msgctxt "STR_DOC_NOLONGERSHARED"
msgid ""
"This spreadsheet is no longer in shared mode.\n"
@@ -1923,7 +1928,7 @@ msgstr ""
"\n"
"Konservu vian kalkultabelon en apartan dosieron kaj mane kunfandu viajn ŝanĝojn al la dividata kalkultabelo."
-#: sc/inc/globstr.hrc:396
+#: sc/inc/globstr.hrc:397
msgctxt "STR_FILE_LOCKED_TRY_LATER"
msgid ""
"The shared spreadsheet file is locked due to a merge in progress by user: '%1'\n"
@@ -1934,7 +1939,7 @@ msgstr ""
"\n"
"Ne eblas malŝalti dividan reĝimon de ŝlosita dosiero. Provu denove poste."
-#: sc/inc/globstr.hrc:397
+#: sc/inc/globstr.hrc:398
msgctxt "STR_FILE_LOCKED_SAVE_LATER"
msgid ""
"The shared spreadsheet file is locked due to a merge in progress by user: '%1'\n"
@@ -1945,147 +1950,147 @@ msgstr ""
"\n"
"Provu denove poste por konservi viajn ŝanĝojn."
-#: sc/inc/globstr.hrc:398
+#: sc/inc/globstr.hrc:399
msgctxt "STR_UNKNOWN_USER"
msgid "Unknown User"
msgstr "Nekonata uzanto"
-#: sc/inc/globstr.hrc:399
+#: sc/inc/globstr.hrc:400
msgctxt "STR_SHAPE_AUTOSHAPE"
msgid "AutoShape"
msgstr "Aŭtomate formi"
-#: sc/inc/globstr.hrc:400
+#: sc/inc/globstr.hrc:401
msgctxt "STR_SHAPE_RECTANGLE"
msgid "Rectangle"
msgstr "Ortangulo"
-#: sc/inc/globstr.hrc:401
+#: sc/inc/globstr.hrc:402
msgctxt "STR_SHAPE_LINE"
msgid "Line"
msgstr "Linio"
-#: sc/inc/globstr.hrc:402
+#: sc/inc/globstr.hrc:403
msgctxt "STR_SHAPE_OVAL"
msgid "Oval"
msgstr "Ovalo"
-#: sc/inc/globstr.hrc:403
+#: sc/inc/globstr.hrc:404
msgctxt "STR_FORM_BUTTON"
msgid "Button"
msgstr "Butono"
-#: sc/inc/globstr.hrc:404
+#: sc/inc/globstr.hrc:405
msgctxt "STR_FORM_CHECKBOX"
msgid "Check Box"
msgstr "Markobutono"
-#: sc/inc/globstr.hrc:405
+#: sc/inc/globstr.hrc:406
msgctxt "STR_FORM_OPTIONBUTTON"
msgid "Option Button"
msgstr "Radiobutono"
-#: sc/inc/globstr.hrc:406
+#: sc/inc/globstr.hrc:407
msgctxt "STR_FORM_LABEL"
msgid "Label"
msgstr "Etikedo"
-#: sc/inc/globstr.hrc:407
+#: sc/inc/globstr.hrc:408
msgctxt "STR_FORM_LISTBOX"
msgid "List Box"
msgstr "Listujo"
-#: sc/inc/globstr.hrc:408
+#: sc/inc/globstr.hrc:409
msgctxt "STR_FORM_GROUPBOX"
msgid "Group Box"
msgstr "Grupa zono"
-#: sc/inc/globstr.hrc:409
+#: sc/inc/globstr.hrc:410
msgctxt "STR_FORM_DROPDOWN"
msgid "Drop Down"
msgstr "Falmenuo"
-#: sc/inc/globstr.hrc:410
+#: sc/inc/globstr.hrc:411
msgctxt "STR_FORM_SPINNER"
msgid "Spinner"
msgstr "Turnilo"
-#: sc/inc/globstr.hrc:411
+#: sc/inc/globstr.hrc:412
msgctxt "STR_FORM_SCROLLBAR"
msgid "Scroll Bar"
msgstr "Rulumskalo"
-#: sc/inc/globstr.hrc:412
+#: sc/inc/globstr.hrc:413
msgctxt "STR_STYLE_FAMILY_CELL"
msgid "Cell Styles"
msgstr "Ĉelaj stiloj"
-#: sc/inc/globstr.hrc:413
+#: sc/inc/globstr.hrc:414
msgctxt "STR_STYLE_FAMILY_PAGE"
msgid "Page Styles"
msgstr "Paĝaj stiloj"
-#: sc/inc/globstr.hrc:414
+#: sc/inc/globstr.hrc:415
msgctxt "STR_ERR_DATAPILOTSOURCE"
msgid "Pivot table source data is invalid."
msgstr "Pivottabelaj fontdatumoj ne validas."
-#: sc/inc/globstr.hrc:415
+#: sc/inc/globstr.hrc:416
msgctxt "STR_OPTIONS_WARN_SEPARATORS"
msgid "Because the current formula separator settings conflict with the locale, the formula separators have been reset to their default values."
msgstr "Ĉar la aktualaj formulaj apartigilaj agordoj konfliktas kun la lokaĵaro, la formulaj apartigilaj estas reagorditaj al siaj aprioraj valoroj."
-#: sc/inc/globstr.hrc:416
+#: sc/inc/globstr.hrc:417
msgctxt "STR_UNDO_INSERT_CURRENT_DATE"
msgid "Insert Current Date"
msgstr "Enmeti aktualan daton"
-#: sc/inc/globstr.hrc:417
+#: sc/inc/globstr.hrc:418
msgctxt "STR_UNDO_INSERT_CURRENT_TIME"
msgid "Insert Current Time"
msgstr "Enmeti aktualan horon"
-#: sc/inc/globstr.hrc:418
+#: sc/inc/globstr.hrc:419
msgctxt "STR_MANAGE_NAMES"
msgid "Manage Names..."
msgstr "Agordi nomojn..."
-#: sc/inc/globstr.hrc:419
+#: sc/inc/globstr.hrc:420
msgctxt "STR_HEADER_NAME"
msgid "Name"
msgstr "Nomo"
-#: sc/inc/globstr.hrc:420
+#: sc/inc/globstr.hrc:421
msgctxt "STR_HEADER_RANGE_OR_EXPR"
msgid "Range or formula expression"
msgstr "Ĉelaro aŭ formula esprimo"
-#: sc/inc/globstr.hrc:421
+#: sc/inc/globstr.hrc:422
msgctxt "STR_HEADER_SCOPE"
msgid "Scope"
msgstr "Amplekso"
-#: sc/inc/globstr.hrc:422
+#: sc/inc/globstr.hrc:423
msgctxt "STR_MULTI_SELECT"
msgid "(multiple)"
msgstr "(pluraj)"
-#: sc/inc/globstr.hrc:423
+#: sc/inc/globstr.hrc:424
msgctxt "STR_GLOBAL_SCOPE"
msgid "Document (Global)"
msgstr "Dokumento (malloka)"
-#: sc/inc/globstr.hrc:424
+#: sc/inc/globstr.hrc:425
msgctxt "STR_ERR_NAME_EXISTS"
msgid "Invalid name. Already in use for the selected scope."
msgstr "Nomo ne validas. Jam estas uzita por la elektita amplekso."
-#: sc/inc/globstr.hrc:425
+#: sc/inc/globstr.hrc:426
msgctxt "STR_ERR_NAME_INVALID"
msgid "Invalid name. Only use letters, numbers and underscore."
msgstr "Nomo ne validas. Uzu nur literojn, nombrojn kaj substreketon."
-#: sc/inc/globstr.hrc:426
+#: sc/inc/globstr.hrc:427
msgctxt "STR_UNSAVED_EXT_REF"
msgid ""
"This Document contains external references to unsaved documents.\n"
@@ -2096,217 +2101,217 @@ msgstr ""
"\n"
"Ĉu vi volas daŭrigi?"
-#: sc/inc/globstr.hrc:427
+#: sc/inc/globstr.hrc:428
msgctxt "STR_CLOSE_WITH_UNSAVED_REFS"
msgid "This Document is referenced by another document and not yet saved. Closing it without saving will result in data loss."
msgstr "Alia dokumento referencas ĉi tiun dokumenton kiu ne estas konservita. Fermi ĝin sen konservi ĝin kaŭzos perdi datumojn."
-#: sc/inc/globstr.hrc:428
+#: sc/inc/globstr.hrc:429
msgctxt "STR_HEADER_RANGE"
msgid "Range"
msgstr "Amplekso"
-#: sc/inc/globstr.hrc:429
+#: sc/inc/globstr.hrc:430
msgctxt "STR_HEADER_COND"
msgid "First Condition"
msgstr "Unua kondiĉo"
-#: sc/inc/globstr.hrc:430
+#: sc/inc/globstr.hrc:431
msgctxt "STR_COND_CONDITION"
msgid "Cell value is"
msgstr "Ĉelvaloro estas"
-#: sc/inc/globstr.hrc:431
+#: sc/inc/globstr.hrc:432
msgctxt "STR_COND_COLORSCALE"
msgid "ColorScale"
msgstr "KoloraSkalo"
-#: sc/inc/globstr.hrc:432
+#: sc/inc/globstr.hrc:433
msgctxt "STR_COND_DATABAR"
msgid "DataBar"
msgstr "Datuma breto"
-#: sc/inc/globstr.hrc:433
+#: sc/inc/globstr.hrc:434
msgctxt "STR_COND_ICONSET"
msgid "IconSet"
msgstr "Bildsimbolaro"
-#: sc/inc/globstr.hrc:434
+#: sc/inc/globstr.hrc:435
msgctxt "STR_COND_BETWEEN"
msgid "between"
msgstr "inter"
-#: sc/inc/globstr.hrc:435
+#: sc/inc/globstr.hrc:436
msgctxt "STR_COND_NOTBETWEEN"
msgid "not between"
msgstr "ne inter"
-#: sc/inc/globstr.hrc:436
+#: sc/inc/globstr.hrc:437
msgctxt "STR_COND_UNIQUE"
msgid "unique"
msgstr "unika"
-#: sc/inc/globstr.hrc:437
+#: sc/inc/globstr.hrc:438
msgctxt "STR_COND_DUPLICATE"
msgid "duplicate"
msgstr "duoblaĵo"
-#: sc/inc/globstr.hrc:438
+#: sc/inc/globstr.hrc:439
msgctxt "STR_COND_FORMULA"
msgid "Formula is"
msgstr "Formulo estas"
-#: sc/inc/globstr.hrc:439
+#: sc/inc/globstr.hrc:440
msgctxt "STR_COND_TOP10"
msgid "Top Elements"
msgstr "Supraj elementoj"
-#: sc/inc/globstr.hrc:440
+#: sc/inc/globstr.hrc:441
msgctxt "STR_COND_BOTTOM10"
msgid "Bottom Elements"
msgstr "Malsupraj elementoj"
-#: sc/inc/globstr.hrc:441
+#: sc/inc/globstr.hrc:442
msgctxt "STR_COND_TOP_PERCENT"
msgid "Top Percent"
msgstr "Supra elcento"
-#: sc/inc/globstr.hrc:442
+#: sc/inc/globstr.hrc:443
msgctxt "STR_COND_DATE"
msgid "Date is"
msgstr "Dato estas"
-#: sc/inc/globstr.hrc:443
+#: sc/inc/globstr.hrc:444
msgctxt "STR_COND_BOTTOM_PERCENT"
msgid "Bottom Percent"
msgstr "Malsupra elcento"
-#: sc/inc/globstr.hrc:444
+#: sc/inc/globstr.hrc:445
msgctxt "STR_COND_ABOVE_AVERAGE"
msgid "Above Average"
msgstr "Super mezo"
-#: sc/inc/globstr.hrc:445
+#: sc/inc/globstr.hrc:446
msgctxt "STR_COND_BELOW_AVERAGE"
msgid "Below Average"
msgstr "Sub mezo"
-#: sc/inc/globstr.hrc:446
+#: sc/inc/globstr.hrc:447
msgctxt "STR_COND_ABOVE_EQUAL_AVERAGE"
msgid "Above or equal Average"
msgstr "Pli ol aŭ egala al la meznombro"
-#: sc/inc/globstr.hrc:447
+#: sc/inc/globstr.hrc:448
msgctxt "STR_COND_BELOW_EQUAL_AVERAGE"
msgid "Below or equal Average"
msgstr "Malpli ol aŭ egala al la meznombro"
-#: sc/inc/globstr.hrc:448
+#: sc/inc/globstr.hrc:449
msgctxt "STR_COND_ERROR"
msgid "an Error code"
msgstr "erarkodo"
-#: sc/inc/globstr.hrc:449
+#: sc/inc/globstr.hrc:450
msgctxt "STR_COND_NOERROR"
msgid "not an Error code"
msgstr "ne erarkodo"
-#: sc/inc/globstr.hrc:450
+#: sc/inc/globstr.hrc:451
msgctxt "STR_COND_BEGINS_WITH"
msgid "Begins with"
msgstr "Komencas per"
-#: sc/inc/globstr.hrc:451
+#: sc/inc/globstr.hrc:452
msgctxt "STR_COND_ENDS_WITH"
msgid "Ends with"
msgstr "Finiĝas per"
-#: sc/inc/globstr.hrc:452
+#: sc/inc/globstr.hrc:453
msgctxt "STR_COND_CONTAINS"
msgid "Contains"
msgstr "Enhavas"
-#: sc/inc/globstr.hrc:453
+#: sc/inc/globstr.hrc:454
msgctxt "STR_COND_NOT_CONTAINS"
msgid "Not Contains"
msgstr "Ne enhavas"
-#: sc/inc/globstr.hrc:454
+#: sc/inc/globstr.hrc:455
msgctxt "STR_COND_TODAY"
msgid "today"
msgstr "hodiaŭ"
-#: sc/inc/globstr.hrc:455
+#: sc/inc/globstr.hrc:456
msgctxt "STR_COND_YESTERDAY"
msgid "yesterday"
msgstr "hieraŭ"
-#: sc/inc/globstr.hrc:456
+#: sc/inc/globstr.hrc:457
msgctxt "STR_COND_TOMORROW"
msgid "tomorrow"
msgstr "morgaŭ"
-#: sc/inc/globstr.hrc:457
+#: sc/inc/globstr.hrc:458
msgctxt "STR_COND_LAST7DAYS"
msgid "in the last 7 days"
msgstr "en la lastaj 7 tagoj"
-#: sc/inc/globstr.hrc:458
+#: sc/inc/globstr.hrc:459
msgctxt "STR_COND_THISWEEK"
msgid "this week"
msgstr "ĉi-semajne"
-#: sc/inc/globstr.hrc:459
+#: sc/inc/globstr.hrc:460
msgctxt "STR_COND_LASTWEEK"
msgid "last week"
msgstr "lastasemajne"
-#: sc/inc/globstr.hrc:460
+#: sc/inc/globstr.hrc:461
msgctxt "STR_COND_NEXTWEEK"
msgid "next week"
msgstr "venontasemajne"
-#: sc/inc/globstr.hrc:461
+#: sc/inc/globstr.hrc:462
msgctxt "STR_COND_THISMONTH"
msgid "this month"
msgstr "ĉi-monate"
-#: sc/inc/globstr.hrc:462
+#: sc/inc/globstr.hrc:463
msgctxt "STR_COND_LASTMONTH"
msgid "last month"
msgstr "lastamonate"
-#: sc/inc/globstr.hrc:463
+#: sc/inc/globstr.hrc:464
msgctxt "STR_COND_NEXTMONTH"
msgid "next month"
msgstr "venontamonate"
-#: sc/inc/globstr.hrc:464
+#: sc/inc/globstr.hrc:465
msgctxt "STR_COND_THISYEAR"
msgid "this year"
msgstr "ĉi-jare"
-#: sc/inc/globstr.hrc:465
+#: sc/inc/globstr.hrc:466
msgctxt "STR_COND_LASTYEAR"
msgid "last year"
msgstr "lastajare"
-#: sc/inc/globstr.hrc:466
+#: sc/inc/globstr.hrc:467
msgctxt "STR_COND_NEXTYEAR"
msgid "next year"
msgstr "venontajare"
-#: sc/inc/globstr.hrc:467
+#: sc/inc/globstr.hrc:468
msgctxt "STR_COND_AND"
msgid "and"
msgstr "kaj"
-#: sc/inc/globstr.hrc:468
+#: sc/inc/globstr.hrc:469
msgctxt "STR_ERR_CONDFORMAT_PROTECTED"
msgid "Conditional Formats can not be created, deleted or changed in protected sheets."
msgstr "Ne eblas krei, aŭ forigi aŭ ŝanĝi kondiĉajn formatojn en protektataj folioj."
-#: sc/inc/globstr.hrc:469
+#: sc/inc/globstr.hrc:470
msgctxt "STR_EDIT_EXISTING_COND_FORMATS"
msgid ""
"The selected cell already contains conditional formatting. You can either edit the existing conditional format or you define a new overlapping conditional format.\n"
@@ -2317,7 +2322,7 @@ msgstr ""
"\n"
"Ĉu vi volas redakti la ekzistantan kondiĉan formaton?"
-#: sc/inc/globstr.hrc:470
+#: sc/inc/globstr.hrc:471
msgctxt "STR_QUERY_FORMULA_RECALC_ONLOAD_ODS"
msgid ""
"This document was last saved by an application other than %PRODUCTNAME. Some formula cells may produce different results when recalculated.\n"
@@ -2328,7 +2333,7 @@ msgstr ""
"\n"
"Ĉu vi nun volas rekalkuli ĉiujn ĉelojn en la dokumento?"
-#: sc/inc/globstr.hrc:471
+#: sc/inc/globstr.hrc:472
msgctxt "STR_QUERY_FORMULA_RECALC_ONLOAD_XLS"
msgid ""
"This document was last saved by Excel. Some formula cells may produce different results when recalculated.\n"
@@ -2339,77 +2344,77 @@ msgstr ""
"\n"
"Ĉu vi nun volas rekalkuli ĉiujn formulajn ĉelojn?"
-#: sc/inc/globstr.hrc:472
+#: sc/inc/globstr.hrc:473
msgctxt "STR_NO_INSERT_DELETE_OVER_PIVOT_TABLE"
msgid "You cannot insert or delete cells when the affected range intersects with pivot table."
msgstr "Vi ne povas enigi aŭ forigi ĉelojn kiam la rilata ĉelaro kaj pivota tabelo intersekcas sin."
-#: sc/inc/globstr.hrc:473
+#: sc/inc/globstr.hrc:474
msgctxt "STR_DPFIELD_GROUP_BY_SECONDS"
msgid "Seconds"
msgstr "Sekundoj"
-#: sc/inc/globstr.hrc:474
+#: sc/inc/globstr.hrc:475
msgctxt "STR_DPFIELD_GROUP_BY_MINUTES"
msgid "Minutes"
msgstr "Minutoj"
-#: sc/inc/globstr.hrc:475
+#: sc/inc/globstr.hrc:476
msgctxt "STR_DPFIELD_GROUP_BY_HOURS"
msgid "Hours"
msgstr "Horoj"
-#: sc/inc/globstr.hrc:476
+#: sc/inc/globstr.hrc:477
msgctxt "STR_DPFIELD_GROUP_BY_DAYS"
msgid "Days"
msgstr "Tagoj"
-#: sc/inc/globstr.hrc:477
+#: sc/inc/globstr.hrc:478
msgctxt "STR_DPFIELD_GROUP_BY_MONTHS"
msgid "Months"
msgstr "Monatoj"
-#: sc/inc/globstr.hrc:478
+#: sc/inc/globstr.hrc:479
msgctxt "STR_DPFIELD_GROUP_BY_QUARTERS"
msgid "Quarters"
msgstr "Kvaronoj"
-#: sc/inc/globstr.hrc:479
+#: sc/inc/globstr.hrc:480
msgctxt "STR_DPFIELD_GROUP_BY_YEARS"
msgid "Years"
msgstr "Jaroj"
-#: sc/inc/globstr.hrc:480
+#: sc/inc/globstr.hrc:481
msgctxt "STR_INVALIDVAL"
msgid "Invalid target value."
msgstr "Nevalida cela valoro"
-#: sc/inc/globstr.hrc:481
+#: sc/inc/globstr.hrc:482
msgctxt "STR_INVALIDVAR"
msgid "Undefined name for variable cell."
msgstr "Nedifinita nomo por variabla ĉelo."
-#: sc/inc/globstr.hrc:482
+#: sc/inc/globstr.hrc:483
msgctxt "STR_INVALIDFORM"
msgid "Undefined name as formula cell."
msgstr "Nedifinita nomo kiel formula ĉelo."
-#: sc/inc/globstr.hrc:483
+#: sc/inc/globstr.hrc:484
msgctxt "STR_NOFORMULA"
msgid "Formula cell must contain a formula."
msgstr "Formula ĉelo devas enhavi formulon."
-#: sc/inc/globstr.hrc:484
+#: sc/inc/globstr.hrc:485
msgctxt "STR_INVALIDINPUT"
msgid "Invalid input."
msgstr "Nevalida enigo."
-#: sc/inc/globstr.hrc:485
+#: sc/inc/globstr.hrc:486
msgctxt "STR_INVALIDCONDITION"
msgid "Invalid condition."
msgstr "Nevalida kondiĉo"
-#: sc/inc/globstr.hrc:486
+#: sc/inc/globstr.hrc:487
msgctxt "STR_QUERYREMOVE"
msgid ""
"Should the entry\n"
@@ -2420,133 +2425,133 @@ msgstr ""
"#\n"
"forigi?"
-#: sc/inc/globstr.hrc:487
+#: sc/inc/globstr.hrc:488
msgctxt "STR_COPYLIST"
msgid "Copy List"
msgstr "Kopii liston"
-#: sc/inc/globstr.hrc:488
+#: sc/inc/globstr.hrc:489
msgctxt "STR_COPYFROM"
msgid "List from"
msgstr "Listo el"
-#: sc/inc/globstr.hrc:489
+#: sc/inc/globstr.hrc:490
msgctxt "STR_COPYERR"
msgid "Cells without text have been ignored."
msgstr "Ĉeloj sen teksto estas ignoritaj."
-#: sc/inc/globstr.hrc:490
+#: sc/inc/globstr.hrc:491
#, c-format
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%s-click to follow hyperlink:"
msgstr "%s-alklaku por sekvi ligilon:"
-#: sc/inc/globstr.hrc:491
+#: sc/inc/globstr.hrc:492
msgctxt "STR_CLICKHYPERLINK"
msgid "click to open hyperlink:"
msgstr "klaki por malfermi hiperligilon:"
-#: sc/inc/globstr.hrc:492
+#: sc/inc/globstr.hrc:493
msgctxt "STR_PRINT_PREVIEW_NODATA"
msgid "No Data"
msgstr "Sen datumo"
-#: sc/inc/globstr.hrc:493
+#: sc/inc/globstr.hrc:494
msgctxt "STR_PRINT_PREVIEW_EMPTY_RANGE"
msgid "Print Range Empty"
msgstr "Presamplekso malplena"
-#: sc/inc/globstr.hrc:494
+#: sc/inc/globstr.hrc:495
msgctxt "STR_UNDO_CONDFORMAT"
msgid "Conditional Format"
msgstr "Kondiĉa formato"
-#: sc/inc/globstr.hrc:495
+#: sc/inc/globstr.hrc:496
msgctxt "STR_UNDO_CONDFORMAT_LIST"
msgid "Conditional Formats"
msgstr "Kondiĉaj formatoj"
-#: sc/inc/globstr.hrc:496
+#: sc/inc/globstr.hrc:497
msgctxt "STR_UNDO_FORMULA_TO_VALUE"
msgid "Convert Formula To Value"
msgstr "Konverti formulon al valoro"
-#: sc/inc/globstr.hrc:497
+#: sc/inc/globstr.hrc:498
msgctxt "STR_UNQUOTED_STRING"
msgid "Strings without quotes are interpreted as column/row labels."
msgstr "Ĉenoj sen citiloj interpretiĝas kiel kolumnaj/vicaj etikedoj"
-#: sc/inc/globstr.hrc:498
+#: sc/inc/globstr.hrc:499
msgctxt "STR_ENTER_VALUE"
msgid "Enter a value!"
msgstr "Enigu valoron!"
-#: sc/inc/globstr.hrc:499
+#: sc/inc/globstr.hrc:500
msgctxt "STR_TABLE_COUNT"
msgid "Sheet %1 of %2"
msgstr "Folio %1 el %2"
-#: sc/inc/globstr.hrc:500
+#: sc/inc/globstr.hrc:501
msgctxt "STR_FUNCTIONS_FOUND"
msgid "%1 and %2 more"
msgstr "%1 kaj %2 pli"
-#: sc/inc/globstr.hrc:501
+#: sc/inc/globstr.hrc:502
msgctxt "STR_GENERAL"
msgid "General"
msgstr "Ĝenerala"
-#: sc/inc/globstr.hrc:502
+#: sc/inc/globstr.hrc:503
msgctxt "STR_NUMBER"
msgid "Number"
msgstr "Numero"
-#: sc/inc/globstr.hrc:503
+#: sc/inc/globstr.hrc:504
msgctxt "STR_PERCENT"
msgid "Percent"
msgstr "Elcento"
-#: sc/inc/globstr.hrc:504
+#: sc/inc/globstr.hrc:505
msgctxt "STR_CURRENCY"
msgid "Currency"
msgstr "Valuto"
-#: sc/inc/globstr.hrc:505
+#: sc/inc/globstr.hrc:506
msgctxt "STR_DATE"
msgid "Date"
msgstr "Dato"
-#: sc/inc/globstr.hrc:506
+#: sc/inc/globstr.hrc:507
msgctxt "STR_TIME"
msgid "Time"
msgstr "Horo"
-#: sc/inc/globstr.hrc:507
+#: sc/inc/globstr.hrc:508
msgctxt "STR_SCIENTIFIC"
msgid "Scientific"
msgstr "Scienca"
-#: sc/inc/globstr.hrc:508
+#: sc/inc/globstr.hrc:509
msgctxt "STR_FRACTION"
msgid "Fraction"
msgstr "Frakcio"
-#: sc/inc/globstr.hrc:509
+#: sc/inc/globstr.hrc:510
msgctxt "STR_BOOLEAN_VALUE"
msgid "Boolean Value"
msgstr "Bulea valoro"
-#: sc/inc/globstr.hrc:510
+#: sc/inc/globstr.hrc:511
msgctxt "STR_TEXT"
msgid "Text"
msgstr "Teksto"
-#: sc/inc/globstr.hrc:511
+#: sc/inc/globstr.hrc:512
msgctxt "STR_QUERY_PIVOTTABLE_DELTAB"
msgid "The selected sheet(s) contain source data of related pivot tables that will be lost. Are you sure you want to delete the selected sheet(s)?"
msgstr "La elektita(j) folio(j) enhavas fontajn kodojn de rilataj pivotaj tabeloj kiuj perdiĝos. Ĉu vi certe volas forigi la elektita(j)n foilio(j)n?"
-#: sc/inc/globstr.hrc:512
+#: sc/inc/globstr.hrc:513
msgctxt "STR_ERR_NAME_INVALID_CELL_REF"
msgid "Invalid name. Reference to a cell, or a range of cells not allowed."
msgstr "Nevalida nomo. Referenco al ĉelo, aŭ ĉelaro ne permesita."
@@ -10488,8 +10493,8 @@ msgstr "Reĝimo"
#: sc/inc/scfuncs.hrc:3010
msgctxt "SC_OPCODE_T_TEST"
-msgid "Mode specifies the number of distribution tails to return. 1= one-tailed, 2 = two-tailed distribution"
-msgstr "Reĝimo specifas la nombron de distribuaj finaĵoj liverendaj. 1 = unu-finaĵa, 2 = du-finaĵa."
+msgid "Mode specifies the number of distribution tails to return. 1 = one-tailed, 2 = two-tailed distribution"
+msgstr ""
#: sc/inc/scfuncs.hrc:3011
msgctxt "SC_OPCODE_T_TEST"
@@ -10533,8 +10538,8 @@ msgstr "Reĝimo"
#: sc/inc/scfuncs.hrc:3024
msgctxt "SC_OPCODE_T_TEST_MS"
-msgid "Mode specifies the number of distribution tails to return. 1= one-tailed, 2 = two-tailed distribution"
-msgstr "Reĝimo agordas la nombron de distribuaj vostoj liverotaj. 1 = unuvosta, 2 = duvosta."
+msgid "Mode specifies the number of distribution tails to return. 1 = one-tailed, 2 = two-tailed distribution"
+msgstr ""
#: sc/inc/scfuncs.hrc:3025
msgctxt "SC_OPCODE_T_TEST_MS"
@@ -18020,22 +18025,22 @@ msgctxt "mergecellsdialog|MergeCellsDialog"
msgid "Merge Cells"
msgstr "Kunfandi ĉelojn"
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:81
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:84
msgctxt "mergecellsdialog|label"
msgid "Some cells are not empty."
msgstr "Iuj ĉeloj ne estas malplenaj"
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:96
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:99
msgctxt "mergecellsdialog|move-cells-radio"
msgid "Move the contents of the hidden cells into the first cell"
msgstr "Movi la enhavon de la kaŝitaj ĉeloj en la unuan ĉelon"
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:112
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:115
msgctxt "mergecellsdialog|empty-cells-radio"
msgid "Empty the contents of the hidden cells"
msgstr "Forigi la enhavon de la kaŝitaj ĉeloj"
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:128
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:131
msgctxt "mergecellsdialog|keep-content-radio"
msgid "Keep the contents of the hidden cells"
msgstr "Reteni la enhavon de la kaŝitaj ĉeloj"
diff --git a/source/eo/scp2/source/ooo.po b/source/eo/scp2/source/ooo.po
index e0fa43ea492..910c715eb6f 100644
--- a/source/eo/scp2/source/ooo.po
+++ b/source/eo/scp2/source/ooo.po
@@ -4,8 +4,8 @@ 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: 2018-05-23 23:20+0200\n"
-"PO-Revision-Date: 2017-11-28 01:17+0000\n"
-"Last-Translator: Donald Rogers <donr2648@clear.net.nz>\n"
+"PO-Revision-Date: 2018-05-27 20:39+0000\n"
+"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Esperanto <kde-i18n-doc@kde.org>\n"
"Language: eo\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1511831857.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1527453591.000000\n"
#: folderitem_ooo.ulf
msgctxt ""
@@ -1886,7 +1886,7 @@ msgctxt ""
"STR_NAME_MODULE_LANGPACK_FY\n"
"LngText.text"
msgid "Frisian"
-msgstr ""
+msgstr "Frisa"
#: module_langpack.ulf
msgctxt ""
@@ -1894,7 +1894,7 @@ msgctxt ""
"STR_DESC_MODULE_LANGPACK_FY\n"
"LngText.text"
msgid "Installs the Frisian user interface"
-msgstr ""
+msgstr "Instalas la frisan fasadon"
#: module_langpack.ulf
msgctxt ""
@@ -4622,4 +4622,4 @@ msgctxt ""
"STR_REG_VAL_APPCAPABILITY_DESCRIPTION_OOO\n"
"LngText.text"
msgid "LibreOffice"
-msgstr "LibreOffice.org"
+msgstr "LibreOffice"
diff --git a/source/eo/sd/messages.po b/source/eo/sd/messages.po
index 32a6d15701a..de0b9889c32 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2018-05-15 21:46+0000\n"
"Last-Translator: Donald Rogers <donr2648@clear.net.nz>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -16,167 +16,167 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1526420808.000000\n"
-#: sd/inc/DocumentRenderer.hrc:29
+#: sd/inc/DocumentRenderer.hrc:27
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Slides"
msgstr "Lumbildoj"
-#: sd/inc/DocumentRenderer.hrc:30
+#: sd/inc/DocumentRenderer.hrc:28
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Handouts"
msgstr "Flugfolioj"
-#: sd/inc/DocumentRenderer.hrc:31
+#: sd/inc/DocumentRenderer.hrc:29
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Notes"
msgstr "Notoj"
-#: sd/inc/DocumentRenderer.hrc:32
+#: sd/inc/DocumentRenderer.hrc:30
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Outline"
msgstr "Konturo"
-#: sd/inc/DocumentRenderer.hrc:37
+#: sd/inc/DocumentRenderer.hrc:35
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "According to layout"
msgstr "Laŭ la aranĝo"
-#: sd/inc/DocumentRenderer.hrc:38
+#: sd/inc/DocumentRenderer.hrc:36
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "1"
msgstr "1"
-#: sd/inc/DocumentRenderer.hrc:39
+#: sd/inc/DocumentRenderer.hrc:37
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "2"
msgstr "2"
-#: sd/inc/DocumentRenderer.hrc:40
+#: sd/inc/DocumentRenderer.hrc:38
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "3"
msgstr "3"
-#: sd/inc/DocumentRenderer.hrc:41
+#: sd/inc/DocumentRenderer.hrc:39
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "4"
msgstr "4"
-#: sd/inc/DocumentRenderer.hrc:42
+#: sd/inc/DocumentRenderer.hrc:40
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "6"
msgstr "6"
-#: sd/inc/DocumentRenderer.hrc:43
+#: sd/inc/DocumentRenderer.hrc:41
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "9"
msgstr "9"
-#: sd/inc/DocumentRenderer.hrc:48
+#: sd/inc/DocumentRenderer.hrc:46
msgctxt "STR_IMPRESS_PRINT_UI_ORDER_CHOICES"
msgid "Left to right, then down"
msgstr "De maldekstre dekstren, tiam malsupren"
-#: sd/inc/DocumentRenderer.hrc:49
+#: sd/inc/DocumentRenderer.hrc:47
msgctxt "STR_IMPRESS_PRINT_UI_ORDER_CHOICES"
msgid "Top to bottom, then right"
msgstr "De supre malsupren, tiam dekstren"
-#: sd/inc/DocumentRenderer.hrc:54
+#: sd/inc/DocumentRenderer.hrc:52
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Original colors"
msgstr "Originaj koloroj"
-#: sd/inc/DocumentRenderer.hrc:55
+#: sd/inc/DocumentRenderer.hrc:53
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Grayscale"
msgstr "Grizoskalo"
-#: sd/inc/DocumentRenderer.hrc:56
+#: sd/inc/DocumentRenderer.hrc:54
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Black & white"
msgstr "Nigra-blanka"
-#: sd/inc/DocumentRenderer.hrc:61
+#: sd/inc/DocumentRenderer.hrc:59
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Original size"
msgstr "Origina grando"
-#: sd/inc/DocumentRenderer.hrc:62
+#: sd/inc/DocumentRenderer.hrc:60
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Fit to printable page"
msgstr "Adapti al presebla paĝo"
-#: sd/inc/DocumentRenderer.hrc:63
+#: sd/inc/DocumentRenderer.hrc:61
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Distribute on multiple sheets of paper"
msgstr "Distribui sur pluraj folioj de papero"
-#: sd/inc/DocumentRenderer.hrc:64
+#: sd/inc/DocumentRenderer.hrc:62
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Tile sheet of paper with repeated slides"
msgstr "Kaheligi folion de papero per ripetitaj lumbildoj"
-#: sd/inc/DocumentRenderer.hrc:69
+#: sd/inc/DocumentRenderer.hrc:67
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Original size"
msgstr "Origina grando"
-#: sd/inc/DocumentRenderer.hrc:70
+#: sd/inc/DocumentRenderer.hrc:68
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Fit to printable page"
msgstr "Adapti al presebla paĝo"
-#: sd/inc/DocumentRenderer.hrc:71
+#: sd/inc/DocumentRenderer.hrc:69
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Distribute on multiple sheets of paper"
msgstr "Distribui sur pluraj folioj de papero"
-#: sd/inc/DocumentRenderer.hrc:72
+#: sd/inc/DocumentRenderer.hrc:70
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Tile sheet of paper with repeated pages"
msgstr "Kaheligi folion de papero per ripetitaj paĝoj"
-#: sd/inc/DocumentRenderer.hrc:77
+#: sd/inc/DocumentRenderer.hrc:75
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "All pages"
msgstr "Ĉiuj paĝoj"
-#: sd/inc/DocumentRenderer.hrc:78
+#: sd/inc/DocumentRenderer.hrc:76
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "Front sides / right pages"
msgstr "Antaŭaj flankoj / dekstraj paĝoj"
-#: sd/inc/DocumentRenderer.hrc:79
+#: sd/inc/DocumentRenderer.hrc:77
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "Back sides / left pages"
msgstr "Malantaŭaj flankoj / maldekstraj paĝoj"
-#: sd/inc/DocumentRenderer.hrc:84
+#: sd/inc/DocumentRenderer.hrc:82
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~All slides"
msgstr "Ĉiuj lumbildoj"
-#: sd/inc/DocumentRenderer.hrc:85
+#: sd/inc/DocumentRenderer.hrc:83
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~Slides"
msgstr "Lumbildoj"
-#: sd/inc/DocumentRenderer.hrc:86
+#: sd/inc/DocumentRenderer.hrc:84
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Se~lection"
msgstr "Elektaĵo"
-#: sd/inc/DocumentRenderer.hrc:91
+#: sd/inc/DocumentRenderer.hrc:89
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~All pages"
msgstr "Ĉiuj paĝoj"
-#: sd/inc/DocumentRenderer.hrc:92
+#: sd/inc/DocumentRenderer.hrc:90
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Pa~ges"
msgstr "Paĝoj"
-#: sd/inc/DocumentRenderer.hrc:93
+#: sd/inc/DocumentRenderer.hrc:91
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Se~lection"
msgstr "Elektaĵo"
diff --git a/source/eo/svx/messages.po b/source/eo/svx/messages.po
index fce26323004..16eef661329 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: 2018-05-16 16:53+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2018-05-15 21:51+0000\n"
"Last-Translator: Donald Rogers <donr2648@clear.net.nz>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5177,8 +5177,8 @@ msgstr "Vi ankaŭ povas enmeti rilatajn partojn de via propra profilo en la cimr
#: svx/uiconfig/ui/safemodedialog.ui:432
msgctxt "safemodedialog|btn_create_zip"
-msgid "Create Zip Archive from User Profile"
-msgstr "Krei Zip-arkivon el propra profilo"
+msgid "Archive User Profile"
+msgstr ""
#: svx/uiconfig/ui/safemodedialog.ui:445
msgctxt "safemodedialog|linkbutton_profile"
@@ -8767,9 +8767,9 @@ msgid "Red"
msgstr "Ruĝa"
#: include/svx/strings.hrc:565
-msgctxt "RID_SVXSTR_COLOR_VIOLET"
-msgid "Violet"
-msgstr "Viola"
+msgctxt "RID_SVXSTR_COLOR_MAGENTA"
+msgid "Magenta"
+msgstr "Malva"
#: include/svx/strings.hrc:566
msgctxt "RID_SVXSTR_COLOR_PURPLE"
@@ -8833,9 +8833,9 @@ msgid "Light Red"
msgstr "Helruĝa"
#: include/svx/strings.hrc:579
-msgctxt "RID_SVXSTR_COLOR_LIGHTVIOLET"
-msgid "Light Violet"
-msgstr "Helviola"
+msgctxt "RID_SVXSTR_COLOR_LIGHTMAGENTA"
+msgid "Light Magenta"
+msgstr ""
#: include/svx/strings.hrc:580
msgctxt "RID_SVXSTR_COLOR_LIGHTPURPLE"
@@ -8899,9 +8899,9 @@ msgid "Dark Red"
msgstr "Malhelruĝa"
#: include/svx/strings.hrc:593
-msgctxt "RID_SVXSTR_COLOR_DARKVIOLET1"
-msgid "Dark Violet"
-msgstr "Malhelviola"
+msgctxt "RID_SVXSTR_COLOR_DARKMAGENTA"
+msgid "Dark Magenta"
+msgstr ""
#: include/svx/strings.hrc:594
msgctxt "RID_SVXSTR_COLOR_DARKPURPLE"
@@ -8935,55 +8935,55 @@ msgstr "Malhelverdflava"
#. Elements of the Tonal color palette
#: include/svx/strings.hrc:601
+msgctxt "RID_SVXSTR_COLOR_VIOLET"
+msgid "Violet"
+msgstr "Viola"
+
+#: include/svx/strings.hrc:602
msgctxt "RID_SVXSTR_COLOR_VIOLET_OUG"
msgid "Violet (Out of Gamut)"
msgstr "Viola (ekster kolorcirklo)"
-#: include/svx/strings.hrc:602
+#: include/svx/strings.hrc:603
msgctxt "RID_SVXSTR_COLOR_BLUE_OUG"
msgid "Blue (Out of Gamut)"
msgstr "Blua (ekster kolorcirklo)"
-#: include/svx/strings.hrc:603
+#: include/svx/strings.hrc:604
msgctxt "RID_SVXSTR_COLOR_AZURE_OUG"
msgid "Azure (Out of Gamut)"
msgstr "Lazura (ekster kolorcirklo)"
-#: include/svx/strings.hrc:604
+#: include/svx/strings.hrc:605
msgctxt "RID_SVXSTR_COLOR_SPRINGGREEN_OUG"
msgid "Spring Green (Out of Gamut)"
msgstr "Printempa verda (ekster kolorcirklo)"
-#: include/svx/strings.hrc:605
+#: include/svx/strings.hrc:606
msgctxt "RID_SVXSTR_COLOR_GREEN_OUG"
msgid "Green (Out of Gamut)"
msgstr "Verda (ekster kolorcirklo)"
-#: include/svx/strings.hrc:606
+#: include/svx/strings.hrc:607
msgctxt "RID_SVXSTR_COLOR_CHARTREUSEGREEN_OUG"
msgid "Chartreuse Green (Out of Gamut)"
msgstr "Kartuziana verda (ekster kolorcirklo)"
-#: include/svx/strings.hrc:607
+#: include/svx/strings.hrc:608
msgctxt "RID_SVXSTR_COLOR_ORANGE_OUG"
msgid "Orange (Out of Gamut)"
msgstr "Oranĝa (ekster kolorcirklo)"
-#: include/svx/strings.hrc:608
+#: include/svx/strings.hrc:609
msgctxt "RID_SVXSTR_COLOR_RED_OUG"
msgid "Red (Out of Gamut)"
msgstr "Ruĝa (ekster kolorcirklo)"
-#: include/svx/strings.hrc:609
+#: include/svx/strings.hrc:610
msgctxt "RID_SVXSTR_COLOR_ROSE_OUG"
msgid "Rose (Out of Gamut)"
msgstr "Rozkolora (ekster kolorcirklo)"
-#: include/svx/strings.hrc:610
-msgctxt "RID_SVXSTR_COLOR_MAGENTA"
-msgid "Magenta"
-msgstr "Malva"
-
#: include/svx/strings.hrc:611
msgctxt "RID_SVXSTR_COLOR_AZURE"
msgid "Azure"
@@ -12089,13 +12089,13 @@ msgstr "Dekstrenaj sagaj buloj"
#: include/svx/strings.hrc:1273
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_6"
-msgid "Check mark bullets"
-msgstr "Markaj buloj"
+msgid "Cross mark bullets"
+msgstr ""
#: include/svx/strings.hrc:1274
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_7"
-msgid "Tick mark bullets"
-msgstr "Hoksignaj buloj"
+msgid "Check mark bullets"
+msgstr ""
#: include/svx/strings.hrc:1275
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_0"
diff --git a/source/eo/sw/messages.po b/source/eo/sw/messages.po
index 1c6074536eb..2fafbf10373 100644
--- a/source/eo/sw/messages.po
+++ b/source/eo/sw/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: 2018-05-22 13:17+0200\n"
-"PO-Revision-Date: 2018-05-15 21:53+0000\n"
-"Last-Translator: Donald Rogers <donr2648@clear.net.nz>\n"
+"POT-Creation-Date: 2018-06-12 14:41+0200\n"
+"PO-Revision-Date: 2018-06-08 05:59+0000\n"
+"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: eo\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1526421225.000000\n"
+"X-POOTLE-MTIME: 1528437567.000000\n"
#: sw/inc/app.hrc:29
msgctxt "RID_PARAGRAPHSTYLEFAMILY"
@@ -1180,13 +1180,13 @@ msgstr "Citaĵo"
#: sw/inc/strings.hrc:172
msgctxt "STR_POOLCOLL_TOX_ILLUSH"
-msgid "Illustration Index Heading"
-msgstr "Kapo de la Ilustraĵa Indekso"
+msgid "Figure Index Heading"
+msgstr ""
#: sw/inc/strings.hrc:173
msgctxt "STR_POOLCOLL_TOX_ILLUS1"
-msgid "Illustration Index 1"
-msgstr "Ilustraĵa indekso 1"
+msgid "Figure Index 1"
+msgstr ""
#: sw/inc/strings.hrc:174
msgctxt "STR_POOLCOLL_TOX_OBJECTH"
@@ -3590,8 +3590,8 @@ msgstr "Tabelo de objektoj"
#: sw/inc/strings.hrc:672
msgctxt "STR_TOX_ILL"
-msgid "Illustration Index"
-msgstr "Indekso de ilustraĵoj"
+msgid "Table of Figures"
+msgstr ""
#: sw/inc/strings.hrc:673
#, c-format
@@ -9244,72 +9244,72 @@ msgctxt "footnotepage|label5"
msgid "Continuation Notice"
msgstr "Avizo pri daŭrigo"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:49
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:55
msgctxt "footnotesendnotestabpage|ftnntnum"
msgid "_Restart numbering"
msgstr "Restartigi numeri"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:91
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:93
msgctxt "footnotesendnotestabpage|ftnoffset_label"
msgid "_Start at:"
msgstr "Komenci je:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:112
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:111
msgctxt "footnotesendnotestabpage|ftnntnumfmt"
msgid "Custom _format"
msgstr "Propra formato"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:155
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:150
msgctxt "footnotesendnotestabpage|ftnsuffix_label"
msgid "Aft_er:"
msgstr "Post:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:199
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:188
msgctxt "footnotesendnotestabpage|ftnprefix_label"
msgid "Be_fore:"
msgstr "Antaŭ:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:228
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:212
msgctxt "footnotesendnotestabpage|ftnntattextend"
msgid "Collec_t at end of text"
msgstr "Kolekti ĉe la fino de teksto"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:252
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:234
msgctxt "footnotesendnotestabpage|label1"
msgid "Footnotes"
msgstr "Piednotoj"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:289
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:271
msgctxt "footnotesendnotestabpage|endntattextend"
msgid "C_ollect at end of section"
msgstr "Kolekti ĉe la fino de sekcio"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:315
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:295
msgctxt "footnotesendnotestabpage|endntnum"
msgid "_Restart numbering"
msgstr "Restartigi numeri"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:357
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:333
msgctxt "footnotesendnotestabpage|endoffset_label"
msgid "_Start at:"
msgstr "Komenci je:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:378
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:351
msgctxt "footnotesendnotestabpage|endntnumfmt"
msgid "_Custom format"
msgstr "Propra formato"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:421
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:390
msgctxt "footnotesendnotestabpage|endsuffix_label"
msgid "Aft_er:"
msgstr "Post:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:465
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:428
msgctxt "footnotesendnotestabpage|endprefix_label"
msgid "Be_fore:"
msgstr "Antaŭ:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:500
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:458
msgctxt "footnotesendnotestabpage|label2"
msgid "Endnotes"
msgstr "Finnotoj"
@@ -9339,27 +9339,27 @@ msgctxt "formatsectiondialog|notes"
msgid "Footnotes/Endnotes"
msgstr "Piednotoj/finnotoj"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:63
+#: sw/uiconfig/swriter/ui/formattablepage.ui:77
msgctxt "formattablepage|nameft"
msgid "_Name"
msgstr "Nomo"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:79
+#: sw/uiconfig/swriter/ui/formattablepage.ui:91
msgctxt "formattablepage|widthft"
msgid "W_idth"
msgstr "Larĝo"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:110
+#: sw/uiconfig/swriter/ui/formattablepage.ui:120
msgctxt "formattablepage|relwidth"
msgid "Relati_ve"
msgstr "Relative"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:155
+#: sw/uiconfig/swriter/ui/formattablepage.ui:160
msgctxt "formattablepage|label45"
msgid "Properties"
msgstr "Atributoj"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:194
+#: sw/uiconfig/swriter/ui/formattablepage.ui:195
msgctxt "formattablepage|leftft"
msgid "Lef_t"
msgstr "Maldekstre"
@@ -9369,62 +9369,62 @@ msgctxt "formattablepage|rightft"
msgid "Ri_ght"
msgstr "Dekstra"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:228
+#: sw/uiconfig/swriter/ui/formattablepage.ui:226
msgctxt "formattablepage|aboveft"
msgid "_Above"
msgstr "Supre"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:245
+#: sw/uiconfig/swriter/ui/formattablepage.ui:241
msgctxt "formattablepage|belowft"
msgid "_Below"
msgstr "Sube"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:320
+#: sw/uiconfig/swriter/ui/formattablepage.ui:311
msgctxt "formattablepage|label46"
msgid "Spacing"
msgstr "Interspaco"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:362
+#: sw/uiconfig/swriter/ui/formattablepage.ui:349
msgctxt "formattablepage|full"
msgid "A_utomatic"
msgstr "Aŭtomata"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:380
+#: sw/uiconfig/swriter/ui/formattablepage.ui:365
msgctxt "formattablepage|left"
msgid "_Left"
msgstr "Maldekstra"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:398
+#: sw/uiconfig/swriter/ui/formattablepage.ui:381
msgctxt "formattablepage|fromleft"
msgid "_From left"
msgstr "De maldekstro"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:416
+#: sw/uiconfig/swriter/ui/formattablepage.ui:397
msgctxt "formattablepage|right"
msgid "R_ight"
msgstr "Dekstre"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:435
+#: sw/uiconfig/swriter/ui/formattablepage.ui:413
msgctxt "formattablepage|center"
msgid "_Center"
msgstr "Centre"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:453
+#: sw/uiconfig/swriter/ui/formattablepage.ui:429
msgctxt "formattablepage|free"
msgid "_Manual"
msgstr "Mana"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:478
+#: sw/uiconfig/swriter/ui/formattablepage.ui:452
msgctxt "formattablepage|label43"
msgid "Alignment"
msgstr "Ĝisrandigo"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:522
+#: sw/uiconfig/swriter/ui/formattablepage.ui:491
msgctxt "formattablepage|label53"
msgid "Text _direction"
msgstr "Teksta direkto"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:553
+#: sw/uiconfig/swriter/ui/formattablepage.ui:519
msgctxt "formattablepage|label44"
msgid "Properties "
msgstr "Atributoj "
@@ -9779,22 +9779,27 @@ msgctxt "headerfootermenu|insert_pagenumber"
msgid "Insert Page Number"
msgstr "Enmeti paĝnumeron"
-#: sw/uiconfig/swriter/ui/indentpage.ui:52
+#: sw/uiconfig/swriter/ui/headerfootermenu.ui:42
+msgctxt "headerfootermenu|insert_pagecount"
+msgid "Insert Page Count"
+msgstr ""
+
+#: sw/uiconfig/swriter/ui/indentpage.ui:57
msgctxt "indentpage|label1"
msgid "_Before section"
msgstr "Antaŭ sekcio"
-#: sw/uiconfig/swriter/ui/indentpage.ui:67
+#: sw/uiconfig/swriter/ui/indentpage.ui:71
msgctxt "indentpage|label3"
msgid "_After section"
msgstr "Post sekcio"
-#: sw/uiconfig/swriter/ui/indentpage.ui:113
+#: sw/uiconfig/swriter/ui/indentpage.ui:115
msgctxt "indentpage|label2"
msgid "Indent"
msgstr "Krommarĝeno"
-#: sw/uiconfig/swriter/ui/indentpage.ui:142
+#: sw/uiconfig/swriter/ui/indentpage.ui:155
msgctxt "indentpage|preview-atkobject"
msgid "Example"
msgstr "Ekzemplo"
@@ -11782,12 +11787,12 @@ msgstr ""
#: sw/uiconfig/swriter/ui/notebookbar.ui:1851
msgctxt "notebookbar|FileMenuButton"
msgid "_File"
-msgstr ""
+msgstr "Dosiero"
#: sw/uiconfig/swriter/ui/notebookbar.ui:1870
msgctxt "notebookbar|HelpMenuButton"
msgid "_Help"
-msgstr ""
+msgstr "Helpo"
#: sw/uiconfig/swriter/ui/notebookbar.ui:2658
msgctxt "notebookbar|FileLabel"
@@ -11797,7 +11802,7 @@ msgstr "Dosiero"
#: sw/uiconfig/swriter/ui/notebookbar.ui:2817
msgctxt "notebookbar|HomeMenuButton"
msgid "_Home"
-msgstr ""
+msgstr "Hejmo"
#: sw/uiconfig/swriter/ui/notebookbar.ui:4203
msgctxt "notebookbar|HomeLabel"
@@ -11807,7 +11812,7 @@ msgstr "Hejmo"
#: sw/uiconfig/swriter/ui/notebookbar.ui:5273
msgctxt "notebookbar|InsertMenuButton"
msgid "_Insert"
-msgstr ""
+msgstr "Enmeti"
#: sw/uiconfig/swriter/ui/notebookbar.ui:5358
msgctxt "notebookbar|InsertLabel"
@@ -11817,7 +11822,7 @@ msgstr "Enmeti"
#: sw/uiconfig/swriter/ui/notebookbar.ui:5388
msgctxt "notebookbar|PageMenuButton"
msgid "Pag_e"
-msgstr ""
+msgstr "Paĝo"
#: sw/uiconfig/swriter/ui/notebookbar.ui:6307
msgctxt "notebookbar|LayoutLabel"
@@ -11827,7 +11832,7 @@ msgstr "Aranĝo"
#: sw/uiconfig/swriter/ui/notebookbar.ui:6335
msgctxt "notebookbar|ReferencesMenuButton"
msgid "Reference_s"
-msgstr ""
+msgstr "Referencoj"
#: sw/uiconfig/swriter/ui/notebookbar.ui:6914
msgctxt "notebookbar|ReferencesLabel"
@@ -11887,12 +11892,12 @@ msgstr "Desegni"
#: sw/uiconfig/swriter/ui/notebookbar.ui:13000
msgctxt "notebookbar|ObjectMenuButton:MenuDraw"
msgid "Object"
-msgstr ""
+msgstr "Objekto"
#: sw/uiconfig/swriter/ui/notebookbar.ui:13089
msgctxt "notebookbar|ObjectLabel"
msgid "Object"
-msgstr ""
+msgstr "Objekto"
#: sw/uiconfig/swriter/ui/notebookbar.ui:13120
msgctxt "notebookbar|ToolsMenuButton"
@@ -13285,8 +13290,8 @@ msgstr "Protekti formularon"
#: sw/uiconfig/swriter/ui/optcompatpage.ui:68
msgctxt "optcompatpage|format"
-msgid "MS Word-compatible trailing blanks"
-msgstr "MS Word-kongruaj sekvaj spacetoj"
+msgid "Word-compatible trailing blanks"
+msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:69
msgctxt "optcompatpage|format"
@@ -13295,7 +13300,7 @@ msgstr "Toleru blankajn liniojn de PDF-paĝaj fonoj por kongrueco kun malnovaj d
#: sw/uiconfig/swriter/ui/optcompatpage.ui:70
msgctxt "optcompatpage|format"
-msgid "A database field (e.g., MailMerge) with empty value hides its paragraph"
+msgid "Hide paragraphs of database fields (e.g., mail merge) with an empty value"
msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:71
@@ -15981,122 +15986,122 @@ msgctxt "tableproperties|background"
msgid "Background"
msgstr "Fono"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:25
-msgctxt "tabletextflowpage|liststore1"
-msgid "Horizontal"
-msgstr "Horizontala"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:29
-msgctxt "tabletextflowpage|liststore1"
-msgid "Vertical"
-msgstr "Vertikala"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:33
-msgctxt "tabletextflowpage|liststore1"
-msgid "Use superordinate object settings"
-msgstr "Uzi superordinatajn objektagordojn"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:47
-msgctxt "tabletextflowpage|liststore2"
-msgid "Top"
-msgstr "Supre"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:51
-msgctxt "tabletextflowpage|liststore2"
-msgid "Centered"
-msgstr "Centre"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:55
-msgctxt "tabletextflowpage|liststore2"
-msgid "Bottom"
-msgstr "Malsupro"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:97
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:53
msgctxt "tabletextflowpage|break"
msgid "_Break"
msgstr "Salto"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:112
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:68
msgctxt "tabletextflowpage|page"
msgid "_Page"
msgstr "Paĝo"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:132
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:87
msgctxt "tabletextflowpage|column"
msgid "Col_umn"
msgstr "Kolumnoj"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:151
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:106
msgctxt "tabletextflowpage|before"
msgid "Be_fore"
msgstr "Antaŭ"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:171
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:125
msgctxt "tabletextflowpage|after"
msgid "_After"
msgstr "Post"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:203
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:158
msgctxt "tabletextflowpage|pagestyle"
msgid "With Page St_yle"
msgstr "Kun paĝa stilo"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:224
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:177
msgctxt "tabletextflowpage|pagenoft"
msgid "Page _number"
msgstr "Paĝnumero"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:257
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:213
msgctxt "tabletextflowpage|pagestylelb-atkobject"
msgid "With Page Style"
msgstr "Kun paĝa stilo"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:274
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:230
msgctxt "tabletextflowpage|split"
msgid "Allow _table to split across pages and columns"
msgstr "Permesi, ke tabelo dividiĝu trans paĝojn kaj kolumnojn"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:289
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:245
msgctxt "tabletextflowpage|splitrow"
msgid "Allow row to break a_cross pages and columns"
msgstr "Permesi, ke vico saltu trans paĝoj kaj kolumnoj"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:306
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:262
msgctxt "tabletextflowpage|keep"
msgid "_Keep with next paragraph"
msgstr "Teni kun sekva alineo"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:328
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:284
msgctxt "tabletextflowpage|label40"
msgid "Text _orientation"
msgstr "Teksta orientiĝo"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:361
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:298
+msgctxt "tabletextflowpage|liststore1"
+msgid "Horizontal"
+msgstr "Horizontala"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:299
+msgctxt "tabletextflowpage|liststore1"
+msgid "Vertical"
+msgstr "Vertikala"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:300
+msgctxt "tabletextflowpage|liststore1"
+msgid "Use superordinate object settings"
+msgstr "Uzi superordinatajn objektagordojn"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:321
msgctxt "tabletextflowpage|headline"
msgid "R_epeat heading"
msgstr "Ripeti titolon"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:383
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:343
msgctxt "tabletextflowpage|label38"
msgid "The first "
msgstr "La unua"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:396
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:356
msgctxt "tabletextflowpage|label39"
msgid "rows"
msgstr "vicoj"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:434
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:395
msgctxt "tabletextflowpage|label35"
msgid "Text Flow"
msgstr "Teksta fluo"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:467
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:428
msgctxt "tabletextflowpage|label41"
msgid "_Vertical alignment"
msgstr "Vertikala ĝisrandigo"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:495
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:442
+msgctxt "tabletextflowpage|liststore2"
+msgid "Top"
+msgstr "Supre"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:443
+msgctxt "tabletextflowpage|liststore2"
+msgid "Centered"
+msgstr "Centre"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:444
+msgctxt "tabletextflowpage|liststore2"
+msgid "Bottom"
+msgstr "Malsupro"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:460
msgctxt "tabletextflowpage|label36"
msgid "Alignment"
msgstr "Ĝisrandigo"
@@ -16878,8 +16883,8 @@ msgstr "Alfabeta indekso"
#: sw/uiconfig/swriter/ui/tocindexpage.ui:58
msgctxt "tocindexpage|liststore1"
-msgid "Illustration Index"
-msgstr "Indekso de ilustraĵoj"
+msgid "Table of Figures"
+msgstr ""
#: sw/uiconfig/swriter/ui/tocindexpage.ui:62
msgctxt "tocindexpage|liststore1"
diff --git a/source/eo/writerperfect/messages.po b/source/eo/writerperfect/messages.po
index e1dff9e7176..923e6037512 100644
--- a/source/eo/writerperfect/messages.po
+++ b/source/eo/writerperfect/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-16 16:54+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2018-05-15 21:56+0000\n"
"Last-Translator: Donald Rogers <donr2648@clear.net.nz>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -66,97 +66,97 @@ msgctxt "exportepub|generalft"
msgid "General"
msgstr "Ĝenerale"
-#: writerperfect/uiconfig/ui/exportepub.ui:122
+#: writerperfect/uiconfig/ui/exportepub.ui:121
msgctxt "exportepub|versionft"
msgid "Version:"
msgstr "Versio:"
-#: writerperfect/uiconfig/ui/exportepub.ui:139
+#: writerperfect/uiconfig/ui/exportepub.ui:138
msgctxt "exportepub|epub3"
msgid "EPUB 3.0"
msgstr "EPUB 3.0"
-#: writerperfect/uiconfig/ui/exportepub.ui:140
+#: writerperfect/uiconfig/ui/exportepub.ui:139
msgctxt "exportepub|epub2"
msgid "EPUB 2.0"
msgstr "EPUB 2.0"
-#: writerperfect/uiconfig/ui/exportepub.ui:175
+#: writerperfect/uiconfig/ui/exportepub.ui:174
msgctxt "exportepub|splitft"
msgid "Split method:"
msgstr "Dividi metodon:"
-#: writerperfect/uiconfig/ui/exportepub.ui:192
+#: writerperfect/uiconfig/ui/exportepub.ui:191
msgctxt "exportepub|splitpage"
msgid "Page break"
msgstr "Paĝosalto"
-#: writerperfect/uiconfig/ui/exportepub.ui:193
+#: writerperfect/uiconfig/ui/exportepub.ui:192
msgctxt "exportepub|splitheading"
msgid "Heading"
msgstr "Paĝokapo"
-#: writerperfect/uiconfig/ui/exportepub.ui:228
+#: writerperfect/uiconfig/ui/exportepub.ui:227
msgctxt "exportepub|layoutft"
msgid "Layout method:"
msgstr "Aranĝa metodo:"
-#: writerperfect/uiconfig/ui/exportepub.ui:245
+#: writerperfect/uiconfig/ui/exportepub.ui:244
msgctxt "exportepub|layoutreflowable"
msgid "Reflowable"
msgstr "Refluigebla"
-#: writerperfect/uiconfig/ui/exportepub.ui:246
+#: writerperfect/uiconfig/ui/exportepub.ui:245
msgctxt "exportepub|layoutfixed"
msgid "Fixed"
msgstr "Fiksita"
-#: writerperfect/uiconfig/ui/exportepub.ui:281
+#: writerperfect/uiconfig/ui/exportepub.ui:280
msgctxt "exportepub|coverimageft"
msgid "Custom cover image:"
msgstr "Propra kovrila bildo:"
-#: writerperfect/uiconfig/ui/exportepub.ui:311
+#: writerperfect/uiconfig/ui/exportepub.ui:310
msgctxt "exportepub|coverbutton"
msgid "Browse..."
msgstr "Foliumi..."
-#: writerperfect/uiconfig/ui/exportepub.ui:355
+#: writerperfect/uiconfig/ui/exportepub.ui:354
msgctxt "exportepub|mediadirft"
msgid "Custom media directory:"
msgstr "Propra aŭdvidea dosierujo:"
-#: writerperfect/uiconfig/ui/exportepub.ui:385
+#: writerperfect/uiconfig/ui/exportepub.ui:384
msgctxt "exportepub|mediabutton"
msgid "Browse..."
msgstr "Foliumi..."
-#: writerperfect/uiconfig/ui/exportepub.ui:429
+#: writerperfect/uiconfig/ui/exportepub.ui:428
msgctxt "exportepub|metadataft"
msgid "Metadata"
msgstr "Metadatumoj"
-#: writerperfect/uiconfig/ui/exportepub.ui:470
+#: writerperfect/uiconfig/ui/exportepub.ui:468
msgctxt "exportepub|identifierft"
msgid "Identifier:"
msgstr "Identigilo:"
-#: writerperfect/uiconfig/ui/exportepub.ui:485
+#: writerperfect/uiconfig/ui/exportepub.ui:483
msgctxt "exportepub|titleft"
msgid "Title:"
msgstr "Titolo:"
-#: writerperfect/uiconfig/ui/exportepub.ui:511
+#: writerperfect/uiconfig/ui/exportepub.ui:509
msgctxt "exportepub|authorft"
msgid "Author:"
msgstr "Aŭtoro:"
-#: writerperfect/uiconfig/ui/exportepub.ui:537
+#: writerperfect/uiconfig/ui/exportepub.ui:535
msgctxt "exportepub|languageft"
msgid "Language:"
msgstr "Lingvo:"
-#: writerperfect/uiconfig/ui/exportepub.ui:563
+#: writerperfect/uiconfig/ui/exportepub.ui:561
msgctxt "exportepub|dateft"
msgid "Date:"
msgstr "Dato:"
diff --git a/source/es/cui/messages.po b/source/es/cui/messages.po
index cb2205ac0ed..8a35807b065 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: 2018-05-22 13:16+0200\n"
-"PO-Revision-Date: 2018-05-18 14:58+0000\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
+"PO-Revision-Date: 2018-05-31 23:10+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: es\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1526655500.000000\n"
+"X-POOTLE-MTIME: 1527808243.000000\n"
#: cui/inc/personalization.hrc:31
msgctxt "RID_SVXSTR_PERSONA_CATEGORIES"
@@ -1523,7 +1523,7 @@ msgstr "Reemplazar viñetas por: "
#: cui/inc/strings.hrc:350
msgctxt "RID_SVXSTR_RIGHT_MARGIN"
msgid "Combine single line paragraphs if length greater than"
-msgstr "Combinar los párrafos de una línea si la longitud supera el"
+msgstr "Combinar párrafos de un solo renglón si la longitud supera el"
#: cui/inc/strings.hrc:351
msgctxt "RID_SVXSTR_NUM"
@@ -9872,97 +9872,97 @@ msgctxt "positionsizedialog|PositionAndSizeDialog"
msgid "Position and Size"
msgstr "Posición y tamaño"
-#: cui/uiconfig/ui/positionsizedialog.ui:107
+#: cui/uiconfig/ui/positionsizedialog.ui:136
msgctxt "positionsizedialog|RID_SVXPAGE_POSITION_SIZE"
msgid "Position and Size"
msgstr "Posición y tamaño"
-#: cui/uiconfig/ui/positionsizedialog.ui:129
+#: cui/uiconfig/ui/positionsizedialog.ui:182
msgctxt "positionsizedialog|RID_SVXPAGE_SWPOSSIZE"
msgid "Position and Size"
msgstr "Posición y tamaño"
-#: cui/uiconfig/ui/positionsizedialog.ui:152
+#: cui/uiconfig/ui/positionsizedialog.ui:229
msgctxt "positionsizedialog|RID_SVXPAGE_ANGLE"
msgid "Rotation"
msgstr "Rotación"
-#: cui/uiconfig/ui/positionsizedialog.ui:175
+#: cui/uiconfig/ui/positionsizedialog.ui:276
msgctxt "positionsizedialog|RID_SVXPAGE_SLANT"
msgid "Slant & Corner Radius"
msgstr "Inclinación y radio de esquina"
-#: cui/uiconfig/ui/possizetabpage.ui:40
+#: cui/uiconfig/ui/possizetabpage.ui:61
msgctxt "possizetabpage|FT_POS_X"
msgid "Position _X:"
msgstr "Posición _X:"
-#: cui/uiconfig/ui/possizetabpage.ui:56
+#: cui/uiconfig/ui/possizetabpage.ui:75
msgctxt "possizetabpage|FT_POS_Y"
msgid "Position _Y:"
msgstr "Posición _Y:"
-#: cui/uiconfig/ui/possizetabpage.ui:110
+#: cui/uiconfig/ui/possizetabpage.ui:128
msgctxt "possizetabpage|FT_POSREFERENCE"
msgid "_Base point:"
msgstr "Punto de _base:"
-#: cui/uiconfig/ui/possizetabpage.ui:148
+#: cui/uiconfig/ui/possizetabpage.ui:182
msgctxt "possizetabpage|label1"
msgid "Position"
msgstr "Posición"
-#: cui/uiconfig/ui/possizetabpage.ui:190
+#: cui/uiconfig/ui/possizetabpage.ui:224
msgctxt "possizetabpage|FT_WIDTH"
msgid "Wi_dth:"
msgstr "A_nchura:"
-#: cui/uiconfig/ui/possizetabpage.ui:206
+#: cui/uiconfig/ui/possizetabpage.ui:238
msgctxt "possizetabpage|FT_HEIGHT"
msgid "H_eight:"
msgstr "A_ltura:"
-#: cui/uiconfig/ui/possizetabpage.ui:247
+#: cui/uiconfig/ui/possizetabpage.ui:276
msgctxt "possizetabpage|CBX_SCALE"
msgid "_Keep ratio"
msgstr "_Mantener proporciones"
-#: cui/uiconfig/ui/possizetabpage.ui:279
+#: cui/uiconfig/ui/possizetabpage.ui:307
msgctxt "possizetabpage|FT_SIZEREFERENCE"
msgid "Base _point:"
msgstr "_Punto de base:"
-#: cui/uiconfig/ui/possizetabpage.ui:317
+#: cui/uiconfig/ui/possizetabpage.ui:361
msgctxt "possizetabpage|label2"
msgid "Size"
msgstr "Tamaño"
-#: cui/uiconfig/ui/possizetabpage.ui:356
+#: cui/uiconfig/ui/possizetabpage.ui:401
msgctxt "possizetabpage|TSB_POSPROTECT"
msgid "Positio_n"
msgstr "Posició_n"
-#: cui/uiconfig/ui/possizetabpage.ui:373
+#: cui/uiconfig/ui/possizetabpage.ui:418
msgctxt "possizetabpage|TSB_SIZEPROTECT"
msgid "_Size"
msgstr "_Tamaño"
-#: cui/uiconfig/ui/possizetabpage.ui:397
+#: cui/uiconfig/ui/possizetabpage.ui:441
msgctxt "possizetabpage|label3"
msgid "Protect"
msgstr "Proteger"
-#: cui/uiconfig/ui/possizetabpage.ui:430
+#: cui/uiconfig/ui/possizetabpage.ui:475
msgctxt "possizetabpage|TSB_AUTOGROW_WIDTH"
msgid "_Fit width to text"
msgstr "Ajustar anch_ura al texto"
-#: cui/uiconfig/ui/possizetabpage.ui:447
+#: cui/uiconfig/ui/possizetabpage.ui:492
msgctxt "possizetabpage|TSB_AUTOGROW_HEIGHT"
msgid "Fit _height to text"
msgstr "Ajustar alt_ura al texto"
-#: cui/uiconfig/ui/possizetabpage.ui:471
+#: cui/uiconfig/ui/possizetabpage.ui:515
msgctxt "possizetabpage|label4"
msgid "Adapt"
msgstr "Adaptar"
@@ -10162,47 +10162,47 @@ msgctxt "recordnumberdialog|label2"
msgid "go to record"
msgstr "ir al registro"
-#: cui/uiconfig/ui/rotationtabpage.ui:52
+#: cui/uiconfig/ui/rotationtabpage.ui:56
msgctxt "rotationtabpage|FT_POS_X"
msgid "Position _X:"
msgstr "Posición _X:"
-#: cui/uiconfig/ui/rotationtabpage.ui:66
+#: cui/uiconfig/ui/rotationtabpage.ui:70
msgctxt "rotationtabpage|FT_POS_Y"
msgid "Position _Y:"
msgstr "Posición _Y:"
-#: cui/uiconfig/ui/rotationtabpage.ui:116
+#: cui/uiconfig/ui/rotationtabpage.ui:123
msgctxt "rotationtabpage|FT_POSPRESETS"
msgid "_Default settings:"
msgstr "Config. pre_determinada:"
-#: cui/uiconfig/ui/rotationtabpage.ui:130
+#: cui/uiconfig/ui/rotationtabpage.ui:151
msgctxt "rotationtabpage|CTL_RECT|tooltip_text"
msgid "Rotation point"
msgstr "Punto de giro"
-#: cui/uiconfig/ui/rotationtabpage.ui:155
+#: cui/uiconfig/ui/rotationtabpage.ui:178
msgctxt "rotationtabpage|label1"
msgid "Pivot Point"
msgstr "Punto de giro"
-#: cui/uiconfig/ui/rotationtabpage.ui:197
+#: cui/uiconfig/ui/rotationtabpage.ui:220
msgctxt "rotationtabpage|FT_ANGLE"
msgid "_Angle:"
msgstr "Án_gulo:"
-#: cui/uiconfig/ui/rotationtabpage.ui:238
+#: cui/uiconfig/ui/rotationtabpage.ui:263
msgctxt "rotationtabpage|FT_ANGLEPRESETS"
msgid "Default _settings:"
msgstr "Configuración pre_determinada:"
-#: cui/uiconfig/ui/rotationtabpage.ui:252
+#: cui/uiconfig/ui/rotationtabpage.ui:287
msgctxt "rotationtabpage|CTL_ANGLE|tooltip_text"
msgid "Rotation Angle"
msgstr "Ángulo de giro"
-#: cui/uiconfig/ui/rotationtabpage.ui:277
+#: cui/uiconfig/ui/rotationtabpage.ui:314
msgctxt "rotationtabpage|label2"
msgid "Rotation Angle"
msgstr "Ángulo de giro"
@@ -10582,52 +10582,52 @@ msgctxt "similaritysearchdialog|relaxbox"
msgid "_Combine"
msgstr "_Combinar"
-#: cui/uiconfig/ui/slantcornertabpage.ui:50
+#: cui/uiconfig/ui/slantcornertabpage.ui:70
msgctxt "slantcornertabpage|label5"
msgid "_X:"
msgstr "_X:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:88
+#: cui/uiconfig/ui/slantcornertabpage.ui:110
msgctxt "slantcornertabpage|label6"
msgid "_Y:"
msgstr "_Y:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:125
+#: cui/uiconfig/ui/slantcornertabpage.ui:149
msgctxt "slantcornertabpage|label3"
msgid "Control Point 1"
msgstr "Punto de control 1"
-#: cui/uiconfig/ui/slantcornertabpage.ui:159
+#: cui/uiconfig/ui/slantcornertabpage.ui:183
msgctxt "slantcornertabpage|FT_RADIUS"
msgid "_Radius:"
msgstr "_Radio:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:189
+#: cui/uiconfig/ui/slantcornertabpage.ui:214
msgctxt "slantcornertabpage|label1"
msgid "Corner Radius"
msgstr "Radio de ángulo"
-#: cui/uiconfig/ui/slantcornertabpage.ui:223
+#: cui/uiconfig/ui/slantcornertabpage.ui:248
msgctxt "slantcornertabpage|FT_ANGLE"
msgid "_Angle:"
msgstr "Án_gulo:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:253
+#: cui/uiconfig/ui/slantcornertabpage.ui:279
msgctxt "slantcornertabpage|label2"
msgid "Slant"
msgstr "Inclinación"
-#: cui/uiconfig/ui/slantcornertabpage.ui:294
+#: cui/uiconfig/ui/slantcornertabpage.ui:320
msgctxt "slantcornertabpage|label4"
msgid "_X:"
msgstr "_X:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:332
+#: cui/uiconfig/ui/slantcornertabpage.ui:360
msgctxt "slantcornertabpage|label7"
msgid "_Y:"
msgstr "_Y:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:369
+#: cui/uiconfig/ui/slantcornertabpage.ui:399
msgctxt "slantcornertabpage|label8"
msgid "Control Point 2"
msgstr "Punto de control 2"
@@ -10907,112 +10907,112 @@ msgctxt "storedwebconnectiondialog|change"
msgid "_Change Password..."
msgstr "_Cambiar contraseña…"
-#: cui/uiconfig/ui/swpossizepage.ui:74
+#: cui/uiconfig/ui/swpossizepage.ui:85
msgctxt "swpossizepage|widthft"
msgid "_Width:"
msgstr "_Anchura:"
-#: cui/uiconfig/ui/swpossizepage.ui:111
+#: cui/uiconfig/ui/swpossizepage.ui:123
msgctxt "swpossizepage|heightft"
msgid "H_eight:"
msgstr "A_ltura:"
-#: cui/uiconfig/ui/swpossizepage.ui:128
+#: cui/uiconfig/ui/swpossizepage.ui:141
msgctxt "swpossizepage|ratio"
msgid "_Keep ratio"
msgstr "_Mantener proporciones"
-#: cui/uiconfig/ui/swpossizepage.ui:149
+#: cui/uiconfig/ui/swpossizepage.ui:162
msgctxt "swpossizepage|label2"
msgid "Size"
msgstr "Tamaño"
-#: cui/uiconfig/ui/swpossizepage.ui:205
+#: cui/uiconfig/ui/swpossizepage.ui:218
msgctxt "swpossizepage|topage"
msgid "To _page"
msgstr "A la _página"
-#: cui/uiconfig/ui/swpossizepage.ui:222
+#: cui/uiconfig/ui/swpossizepage.ui:234
msgctxt "swpossizepage|topara"
msgid "To paragrap_h"
msgstr "Al párra_fo"
-#: cui/uiconfig/ui/swpossizepage.ui:238
+#: cui/uiconfig/ui/swpossizepage.ui:250
msgctxt "swpossizepage|tochar"
msgid "To cha_racter"
msgstr "Al ca_rácter"
-#: cui/uiconfig/ui/swpossizepage.ui:254
+#: cui/uiconfig/ui/swpossizepage.ui:266
msgctxt "swpossizepage|aschar"
msgid "_As character"
msgstr "_Como carácter"
-#: cui/uiconfig/ui/swpossizepage.ui:270
+#: cui/uiconfig/ui/swpossizepage.ui:282
msgctxt "swpossizepage|toframe"
msgid "To _frame"
msgstr "Al _marco"
-#: cui/uiconfig/ui/swpossizepage.ui:292
+#: cui/uiconfig/ui/swpossizepage.ui:304
msgctxt "swpossizepage|label1"
msgid "Anchor"
msgstr "Ancla"
-#: cui/uiconfig/ui/swpossizepage.ui:333
+#: cui/uiconfig/ui/swpossizepage.ui:344
msgctxt "swpossizepage|horiposft"
msgid "Hori_zontal:"
msgstr "Hori_zontal:"
-#: cui/uiconfig/ui/swpossizepage.ui:347
+#: cui/uiconfig/ui/swpossizepage.ui:358
msgctxt "swpossizepage|horibyft"
msgid "b_y:"
msgstr "_por:"
-#: cui/uiconfig/ui/swpossizepage.ui:361
+#: cui/uiconfig/ui/swpossizepage.ui:372
msgctxt "swpossizepage|vertbyft"
msgid "_by:"
msgstr "po_r:"
-#: cui/uiconfig/ui/swpossizepage.ui:375
+#: cui/uiconfig/ui/swpossizepage.ui:386
msgctxt "swpossizepage|horitoft"
msgid "_to:"
msgstr "_a:"
-#: cui/uiconfig/ui/swpossizepage.ui:421
+#: cui/uiconfig/ui/swpossizepage.ui:433
msgctxt "swpossizepage|vertposft"
msgid "_Vertical:"
msgstr "_Vertical:"
-#: cui/uiconfig/ui/swpossizepage.ui:457
+#: cui/uiconfig/ui/swpossizepage.ui:470
msgctxt "swpossizepage|verttoft"
msgid "t_o:"
msgstr "_a:"
-#: cui/uiconfig/ui/swpossizepage.ui:478
+#: cui/uiconfig/ui/swpossizepage.ui:492
msgctxt "swpossizepage|mirror"
msgid "_Mirror on even pages"
msgstr "_Invertir en páginas pares"
-#: cui/uiconfig/ui/swpossizepage.ui:495
+#: cui/uiconfig/ui/swpossizepage.ui:509
msgctxt "swpossizepage|followtextflow"
msgid "Follow te_xt flow"
msgstr "Seguir flujo del te_xto"
-#: cui/uiconfig/ui/swpossizepage.ui:518
+#: cui/uiconfig/ui/swpossizepage.ui:532
msgctxt "swpossizepage|label11"
msgid "Position"
msgstr "Posición"
-#: cui/uiconfig/ui/swpossizepage.ui:549
+#: cui/uiconfig/ui/swpossizepage.ui:563
msgctxt "swpossizepage|pos"
msgid "Positio_n"
msgstr "Posició_n"
-#: cui/uiconfig/ui/swpossizepage.ui:565
+#: cui/uiconfig/ui/swpossizepage.ui:579
msgctxt "swpossizepage|size"
msgid "_Size"
msgstr "_Tamaño"
-#: cui/uiconfig/ui/swpossizepage.ui:587
+#: cui/uiconfig/ui/swpossizepage.ui:601
msgctxt "swpossizepage|label3"
msgid "Protect"
msgstr "Proteger"
@@ -11202,12 +11202,12 @@ msgctxt "textattrtabpage|label2"
msgid "Spacing to Borders"
msgstr "Espaciado hacia los bordes"
-#: cui/uiconfig/ui/textattrtabpage.ui:425
+#: cui/uiconfig/ui/textattrtabpage.ui:423
msgctxt "textattrtabpage|TSB_FULL_WIDTH"
msgid "Full _width"
msgstr "Anchura _completa"
-#: cui/uiconfig/ui/textattrtabpage.ui:448
+#: cui/uiconfig/ui/textattrtabpage.ui:446
msgctxt "textattrtabpage|label3"
msgid "Text Anchor"
msgstr "Ancla de texto"
diff --git a/source/es/filter/source/config/fragments/filters.po b/source/es/filter/source/config/fragments/filters.po
index 1b15a599320..d640c1a18d9 100644
--- a/source/es/filter/source/config/fragments/filters.po
+++ b/source/es/filter/source/config/fragments/filters.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: 2018-05-16 16:54+0200\n"
-"PO-Revision-Date: 2018-05-17 21:42+0000\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
+"PO-Revision-Date: 2018-06-06 08:24+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: es\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1526593346.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1528273488.000000\n"
#: ADO_rowset_XML.xcu
msgctxt ""
@@ -463,8 +463,8 @@ msgctxt ""
"MS Word 2003 XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Word 2003 XML"
-msgstr "XML de Microsoft Word 2003"
+msgid "Word 2003 XML"
+msgstr "XML de Word 2003"
#: MS_Word_2007_XML.xcu
msgctxt ""
@@ -1282,7 +1282,7 @@ msgctxt ""
"Calc MS Excel 2007 VBA XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Excel 2007-2016 XML (macro enabled)"
+msgid "Excel 2007–2019 (macro-enabled)"
msgstr "Excel 2007-2019 (habilitado para macros)"
#: calc_MS_Excel_2007_XML.xcu
diff --git a/source/es/filter/source/config/fragments/types.po b/source/es/filter/source/config/fragments/types.po
index 005cea5de5d..22c2c5487bc 100644
--- a/source/es/filter/source/config/fragments/types.po
+++ b/source/es/filter/source/config/fragments/types.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: 2018-05-08 15:11+0200\n"
-"PO-Revision-Date: 2018-05-08 16:48+0000\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
+"PO-Revision-Date: 2018-06-06 08:24+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: es\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1525798095.000000\n"
+"X-POOTLE-MTIME: 1528273495.000000\n"
#: MS_Excel_2007_Binary.xcu
msgctxt ""
@@ -292,8 +292,8 @@ msgctxt ""
"writer_MS_Word_2003_XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Word 2003 XML"
-msgstr "XML de Microsoft Word 2003"
+msgid "Word 2003 XML"
+msgstr "XML de Word 2003"
#: writer_MS_Word_2007_XML.xcu
msgctxt ""
diff --git a/source/es/fpicker/messages.po b/source/es/fpicker/messages.po
index c68fe9fa9a3..9c0b8d78b71 100644
--- a/source/es/fpicker/messages.po
+++ b/source/es/fpicker/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-22 13:16+0200\n"
-"PO-Revision-Date: 2018-03-02 15:21+0000\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
+"PO-Revision-Date: 2018-06-06 08:25+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: es\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1520004088.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1528273520.000000\n"
#: include/fpicker/strings.hrc:14
msgctxt "STR_SVT_FILEPICKER_AUTO_EXTENSION"
@@ -272,13 +272,13 @@ msgstr "Cifrar con clave GPG"
#: fpicker/uiconfig/ui/foldernamedialog.ui:8
msgctxt "foldernamedialog|FolderNameDialog"
-msgid "Folder Name ?"
+msgid "Folder Name"
msgstr "Nombre de la carpeta"
#: fpicker/uiconfig/ui/foldernamedialog.ui:91
msgctxt "foldernamedialog|label2"
-msgid "Na_me"
-msgstr "No_mbre"
+msgid "Na_me:"
+msgstr "No_mbre:"
#: fpicker/uiconfig/ui/foldernamedialog.ui:122
msgctxt "foldernamedialog|label1"
diff --git a/source/es/helpcontent2/source/text/sbasic/shared.po b/source/es/helpcontent2/source/text/sbasic/shared.po
index 66769559bef..51daf962b93 100644
--- a/source/es/helpcontent2/source/text/sbasic/shared.po
+++ b/source/es/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: 2018-05-16 16:54+0200\n"
-"PO-Revision-Date: 2018-05-20 12:26+0000\n"
+"PO-Revision-Date: 2018-05-29 18:47+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: es\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1526819161.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1527619643.000000\n"
#: 00000002.xhp
msgctxt ""
@@ -22070,7 +22070,7 @@ msgctxt ""
"par_id3150792\n"
"help.text"
msgid "<emph>Name:</emph> Name of the subroutine."
-msgstr "<emph>Nombre:</emph> el nombre de la subrutina."
+msgstr "<emph>Name</emph>: el nombre de la subrutina."
#: 03090409.xhp
msgctxt ""
@@ -22078,7 +22078,7 @@ msgctxt ""
"par_id3154138\n"
"help.text"
msgid "<emph>VarName:</emph> Parameter that you want to pass to the subroutine."
-msgstr ""
+msgstr "<emph>VarName</emph>: el parámetro que se debe transmitir a la subrutina."
#: 03090409.xhp
msgctxt ""
@@ -22086,7 +22086,7 @@ msgctxt ""
"par_id3154908\n"
"help.text"
msgid "<emph>Type:</emph> Type-declaration key word."
-msgstr "<emph>Tipo:</emph> Palabra clave de declaración de tipo."
+msgstr "<emph>Type</emph>: palabra clave de declaración de tipo."
#: 03090409.xhp
msgctxt ""
@@ -32110,7 +32110,7 @@ msgctxt ""
"par_idN1060F\n"
"help.text"
msgid "For a list of available services, go to: <link href=\"https://api.libreoffice.org/docs/idl/ref/namespacecom_1_1sun_1_1star.html\" name=\"api.libreoffice.org com::sun::star Module Reference\">https://api.libreoffice.org/docs/idl/ref/namespacecom_1_1sun_1_1star.html</link>"
-msgstr ""
+msgstr "Para consultar una lista de los servicios disponibles, visite <link href=\"https://api.libreoffice.org/docs/idl/ref/namespacecom_1_1sun_1_1star.html\" name=\"Referencia del módulo com::sun::star en api.libreoffice.org\">api.libreoffice.org</link>."
#: 03131600.xhp
msgctxt ""
@@ -34382,7 +34382,7 @@ msgctxt ""
"par_id240720170117395610\n"
"help.text"
msgid "<emph>Life</emph> is the depreciation period determining the number of periods in the depreciation of the asset."
-msgstr ""
+msgstr "<emph>Life</emph>: el período de depreciación determinando el número de períodos en la depreciación del activo."
#: 03140012.xhp
msgctxt ""
diff --git a/source/es/helpcontent2/source/text/scalc/00.po b/source/es/helpcontent2/source/text/scalc/00.po
index ce05fc0fe49..e458e8169f5 100644
--- a/source/es/helpcontent2/source/text/scalc/00.po
+++ b/source/es/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: 2017-11-22 13:53+0100\n"
-"PO-Revision-Date: 2018-05-19 14:21+0000\n"
+"PO-Revision-Date: 2018-05-31 22:30+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: es\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1526739684.000000\n"
+"X-POOTLE-MTIME: 1527805802.000000\n"
#: 00000004.xhp
msgctxt ""
@@ -774,7 +774,7 @@ msgctxt ""
"par_id3153916\n"
"help.text"
msgid "Choose <emph>Format - AutoFormat</emph>"
-msgstr "Menú <emph>Formato - AutoFormato...</emph>"
+msgstr "Vaya a <emph>Formato ▸ Formato automático</emph>"
#: 00000405.xhp
msgctxt ""
diff --git a/source/es/helpcontent2/source/text/scalc/01.po b/source/es/helpcontent2/source/text/scalc/01.po
index f20ea9077d0..baea4c0b82f 100644
--- a/source/es/helpcontent2/source/text/scalc/01.po
+++ b/source/es/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: 2018-05-08 15:11+0200\n"
-"PO-Revision-Date: 2018-05-24 03:50+0000\n"
+"PO-Revision-Date: 2018-06-11 10:59+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: es\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1527133837.000000\n"
+"X-POOTLE-MTIME: 1528714747.000000\n"
#: 01120000.xhp
msgctxt ""
@@ -33942,7 +33942,7 @@ msgctxt ""
"par_id3150427\n"
"help.text"
msgid "<emph>Value1, Value2, ..., Value30</emph> are up to 30 values, which represent deposits or withdrawals."
-msgstr ""
+msgstr "<emph>Valor1, Valor2…, Valor30</emph> son hasta 30 valores que representan depósitos o retiros."
#: 04060119.xhp
msgctxt ""
@@ -35574,7 +35574,7 @@ msgctxt ""
"par_id3148585\n"
"help.text"
msgid "COUNT(Value1; Value2; ...; Value30)"
-msgstr ""
+msgstr "CONTAR(Valor1; Valor2…; Valor30)"
#: 04060181.xhp
msgctxt ""
@@ -39758,7 +39758,7 @@ msgctxt ""
"par_id3154303\n"
"help.text"
msgid "<emph>Number1, Number2, ..., Number30</emph> are up to 30 values or ranges, that can be used to calculate the harmonic mean."
-msgstr ""
+msgstr "<emph>Número1, Número2… Número30</emph> son hasta 30 valores o intervalos que se pueden utilizar para calcular la media armónica."
#: 04060182.xhp
msgctxt ""
@@ -40774,7 +40774,7 @@ msgctxt ""
"par_id3154508\n"
"help.text"
msgid "KURT(Number1; Number2; ...; Number30)"
-msgstr ""
+msgstr "CURTOSIS(Número1; Número2…; Número30)"
#: 04060183.xhp
msgctxt ""
@@ -40782,7 +40782,7 @@ msgctxt ""
"par_id3145167\n"
"help.text"
msgid "<emph>Number1, Number2, ..., Number30</emph> are numeric arguments or ranges representing a random sample of distribution."
-msgstr ""
+msgstr "<emph>Número1, Número2…, Número30</emph> son argumentos o intervalos numéricos que representan una muestra aleatoria de la distribución."
#: 04060183.xhp
msgctxt ""
@@ -41294,7 +41294,7 @@ msgctxt ""
"par_id3150202\n"
"help.text"
msgid "<emph>Value1; Value2;...; Value30</emph> are values or ranges. Text has the value of 0."
-msgstr ""
+msgstr "<emph>Valor1; Valor2… Valor30</emph> son valores o intervalos. Al texto se asigna el valor 0."
#: 04060184.xhp
msgctxt ""
@@ -41366,7 +41366,7 @@ msgctxt ""
"par_id3150109\n"
"help.text"
msgid "<emph>Number1, Number2, ..., Number30</emph> are values or ranges, which represent a sample. Each number can also be replaced by a reference."
-msgstr ""
+msgstr "<emph>Número1, Número2… Número30</emph> son valores o intervalos que representan una muestra. Cada número se puede reemplazar por una referencia."
#: 04060184.xhp
msgctxt ""
@@ -41446,7 +41446,7 @@ msgctxt ""
"par_id3153486\n"
"help.text"
msgid "<emph>Number1, Number2, ..., Number30</emph> are numerical values or ranges."
-msgstr ""
+msgstr "<emph>Número1, Número2… Número30</emph> son valores o intervalos numéricos."
#: 04060184.xhp
msgctxt ""
@@ -41518,7 +41518,7 @@ msgctxt ""
"par_id3146098\n"
"help.text"
msgid "<emph>Value1, Value2, ..., Value30</emph> are values or ranges. Text has the value of 0."
-msgstr ""
+msgstr "<emph>Valor1, Valor2… Valor30</emph> son valores o intervalos. Al texto se asigna el valor 0."
#: 04060184.xhp
msgctxt ""
@@ -41590,7 +41590,7 @@ msgctxt ""
"par_id3157871\n"
"help.text"
msgid "<emph>Number1, Number2, ..., Number30</emph> are values or ranges that represent a sample. Each number can also be replaced by a reference."
-msgstr ""
+msgstr "<emph>Número1, Número2… Número30</emph> son valores o intervalos que representan una muestra. Cada número se puede reemplazar por una referencia."
#: 04060184.xhp
msgctxt ""
@@ -41654,7 +41654,7 @@ msgctxt ""
"par_id3150741\n"
"help.text"
msgid "<emph>Number1, Number2, ..., Number30</emph> are numerical values or ranges."
-msgstr ""
+msgstr "<emph>Número1, Número2… Número30</emph> son valores o intervalos numéricos."
#: 04060184.xhp
msgctxt ""
@@ -44102,7 +44102,7 @@ msgctxt ""
"par_id3157904\n"
"help.text"
msgid "<emph>Number1, Number2, ..., Number30</emph> are numerical values or ranges representing a sample based on an entire population."
-msgstr ""
+msgstr "<emph>Número1, Número2… Número30</emph> son valores o intervalos numéricos que representan una muestra obtenida a partir de toda una población."
#: 04060185.xhp
msgctxt ""
@@ -49854,7 +49854,7 @@ msgctxt ""
"par_id3154017\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/autoformattable/add\">Allows you to add the current formatting of a range of at least 4 x 4 cells to the list of predefined AutoFormats.</ahelp> The <emph>Add AutoFormat</emph> dialog then appears."
-msgstr ""
+msgstr "<ahelp hid=\"modules/scalc/ui/autoformattable/add\">Le permite añadir el formato actual de un intervalo de al menos 4 × 4 celdas a la lista de formatos automáticos predefinidos.</ahelp> Aparecerá el cuadro de diálogo <emph>Añadir formato automático</emph>."
#: 05110000.xhp
msgctxt ""
diff --git a/source/es/helpcontent2/source/text/scalc/guide.po b/source/es/helpcontent2/source/text/scalc/guide.po
index e27f6fd435e..42d89b16fed 100644
--- a/source/es/helpcontent2/source/text/scalc/guide.po
+++ b/source/es/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: 2018-05-22 13:16+0200\n"
-"PO-Revision-Date: 2018-05-24 03:51+0000\n"
+"PO-Revision-Date: 2018-06-11 11:00+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: es\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1527133919.000000\n"
+"X-POOTLE-MTIME: 1528714854.000000\n"
#: address_auto.xhp
msgctxt ""
@@ -358,7 +358,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Using AutoFormat for Tables"
-msgstr "Usar AutoFormato para tablas"
+msgstr "Uso de formato automático en tablas"
#: autoformat.xhp
msgctxt ""
@@ -382,7 +382,7 @@ msgctxt ""
"par_id3149401\n"
"help.text"
msgid "You can use the AutoFormat feature to quickly apply a format to a sheet or a selected cell range."
-msgstr "Puede utilizar la función AutoFormato para aplicar rápidamente formato a una hoja o un área de celdas seleccionada."
+msgstr "La función Formato automático permite aplicar rápidamente un formato a una hoja o a un intervalo de celdas que seleccione."
#: autoformat.xhp
msgctxt ""
@@ -406,7 +406,7 @@ msgctxt ""
"par_idN106D5\n"
"help.text"
msgid "Choose <item type=\"menuitem\">Format - AutoFormat</item>."
-msgstr "Elija <item type=\"menuitem\">Formato - AutoFormato</item>."
+msgstr "Vaya a <item type=\"menuitem\">Formato ▸ Formato automático</item>."
#: autoformat.xhp
msgctxt ""
@@ -446,7 +446,7 @@ msgctxt ""
"par_id3155379\n"
"help.text"
msgid "To Define an AutoFormat for Spreadsheets"
-msgstr "Definir un autoformato para hojas de cálculo"
+msgstr "Definir un formato automático para hojas de cálculo"
#: autoformat.xhp
msgctxt ""
@@ -454,7 +454,7 @@ msgctxt ""
"par_id3148868\n"
"help.text"
msgid "You can define a new AutoFormat that is available to all spreadsheets."
-msgstr "Puede definir un nuevo AutoFormato que esté disponible para todas las hojas de cálculo."
+msgstr "Puede definir un nuevo formato automático para que esté disponible para todos los libros."
#: autoformat.xhp
msgctxt ""
@@ -470,7 +470,7 @@ msgctxt ""
"par_id3145384\n"
"help.text"
msgid "Choose <item type=\"menuitem\">Edit - Select All</item>."
-msgstr "Elija <item type=\"menuitem\">Editar - Seleccionar todo</item>."
+msgstr "Vaya a <item type=\"menuitem\">Editar ▸ Seleccionar todo</item>."
#: autoformat.xhp
msgctxt ""
@@ -478,7 +478,7 @@ msgctxt ""
"par_id3153815\n"
"help.text"
msgid "Choose <item type=\"menuitem\">Format - AutoFormat</item>."
-msgstr "Elija <item type=\"menuitem\">Formato - AutoFormato</item>."
+msgstr "Vaya a <item type=\"menuitem\">Formato ▸ Formato automático</item>."
#: autoformat.xhp
msgctxt ""
@@ -510,7 +510,7 @@ msgctxt ""
"par_id3159203\n"
"help.text"
msgid "<link href=\"text/scalc/01/05110000.xhp\" name=\"Format - AutoFormat\">Format - AutoFormat</link>"
-msgstr "<link href=\"text/scalc/01/05110000.xhp\" name=\"Formato - AutoFormato\">Formato - AutoFormato</link>"
+msgstr "<link href=\"text/scalc/01/05110000.xhp\" name=\"Formato - Formato automático\">Formato ▸ Formato automático</link>"
#: background.xhp
msgctxt ""
@@ -8246,7 +8246,7 @@ msgctxt ""
"par_id41525141917275\n"
"help.text"
msgid "The data range and the data series pages of the chart wizard are not enabled. They are controlled by the pivot table."
-msgstr ""
+msgstr "No se activan las páginas del intervalo de datos y de la serie de datos del asistente de diagramas, dado que ambos elementos son controlados por la tabla dinámica."
#: pivotchart_create.xhp
msgctxt ""
diff --git a/source/es/helpcontent2/source/text/shared/00.po b/source/es/helpcontent2/source/text/shared/00.po
index 555d953d313..ab4855b9ac8 100644
--- a/source/es/helpcontent2/source/text/shared/00.po
+++ b/source/es/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: 2018-05-22 13:16+0200\n"
-"PO-Revision-Date: 2018-05-24 03:46+0000\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
+"PO-Revision-Date: 2018-06-06 09:35+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: es\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1527133591.000000\n"
+"X-POOTLE-MTIME: 1528277730.000000\n"
#: 00000001.xhp
msgctxt ""
@@ -397,16 +397,16 @@ msgctxt ""
"00000001.xhp\n"
"hd_id3149670\n"
"help.text"
-msgid "Back"
-msgstr "Anterior"
+msgid "Reset"
+msgstr "Restablecer"
#: 00000001.xhp
msgctxt ""
"00000001.xhp\n"
"par_id3145068\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optionsdialog/revert\">Resets modified values back to the $[officename] default values.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/optionsdialog/revert\">Restablece los valores modificados a los valores predeterminados de $[officename].</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optionsdialog/revert\">Resets changes made to the current tab to those applicable when this dialog was opened.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/optionsdialog/revert\">Reinicializa las modificaciones realizadas en la pestaña actual a aquellas existentes cuando se abrió el cuadro de diálogo.</ahelp>"
#: 00000001.xhp
msgctxt ""
@@ -552,6 +552,54 @@ msgctxt ""
msgid "<variable id=\"ShiftF1\">Press Shift+F1 and point to a control to learn more about that control.</variable>"
msgstr "<variable id=\"ShiftF1\">Pulse Mayús + F1 y apunte a un control para obtener más información sobre ese control.</variable>"
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"hd_id631527692833772\n"
+"help.text"
+msgid "Options dialog buttons"
+msgstr "Botones del cuadro de diálogo Opciones"
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"hd_id831527692839432\n"
+"help.text"
+msgid "OK"
+msgstr "Aceptar"
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"par_id471527692844934\n"
+"help.text"
+msgid "Save the changes in the page and close the Options dialog."
+msgstr "Guarda las modificaciones realizadas en el cuadro de diálogo Opciones y lo cierra."
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"hd_id261527692850720\n"
+"help.text"
+msgid "Cancel"
+msgstr "Cancelar"
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"par_id571527692855533\n"
+"help.text"
+msgid "Close the Options dialog and discard all changes done."
+msgstr "Cierra el cuadro de diálogo Opciones y descarta todas las modificaciones hechas."
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"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 Options dialog."
+msgstr "Algunas opciones no pueden restablecerse tras haberse modificado. En esos casos, puede bien cambiar de vuelta a los valores originales manualmente o bien pulsar en <emph>Cancelar</emph> y volver a abrir el cuadro de diálogo Opciones."
+
#: 00000002.xhp
msgctxt ""
"00000002.xhp\n"
@@ -11125,16 +11173,16 @@ msgctxt ""
"00040502.xhp\n"
"par_id3151293\n"
"help.text"
-msgid "<variable id=\"linienstile\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Line Styles</emph> tab </variable>"
-msgstr "<variable id=\"linienstile\">Seleccione <emph>Formato - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Objeto - </emph></caseinline><caseinline select=\"CALC\"><emph>Gráfico - </emph></caseinline></switchinline><emph>Línea, ficha Estilos de línea</emph></variable>"
+msgid "<variable id=\"linienstile\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Line Styles</emph> tab</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3149317\n"
"help.text"
-msgid "<variable id=\"linienenden\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Arrow Styles</emph> tab </variable>"
-msgstr "<variable id=\"linienenden\">Seleccione <emph>Formato - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Objeto - </emph></caseinline><caseinline select=\"CALC\"><emph>Gráfico - </emph></caseinline></switchinline><emph>Línea, ficha Estilos de flecha</emph></variable>"
+msgid "<variable id=\"linienenden\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Arrow Styles</emph> tab</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
@@ -11173,72 +11221,80 @@ msgctxt ""
"00040502.xhp\n"
"par_id3154948\n"
"help.text"
-msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Area</emph> tab"
-msgstr "Seleccione <emph>Formato - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Objeto - </emph></caseinline><caseinline select=\"CALC\"><emph>Gráfico - </emph></caseinline></switchinline><emph>Área, ficha Área</emph>"
+msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Area</emph> tab."
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3145607\n"
"help.text"
-msgid "Choose <emph>View - Styles</emph> - open context menu and choose <emph>Modify/New - Area</emph> tab (presentation documents)"
-msgstr "Vaya a <emph>Ver ▸ Estilos</emph>, abra el menú contextual y seleccione <emph>Modificar/nuevo ▸</emph> pestaña <emph>Área</emph> (presentaciones)"
+msgid "Choose <emph>View - Styles</emph> - open context menu and choose <emph>Modify/New - Area</emph> tab (presentation documents)."
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3152922\n"
"help.text"
-msgid "Choose <emph>Format - Title - Area</emph> tab (chart documents)"
-msgstr "Elija la pestaña <emph>Formato - Título - Área</emph> (documentos del gráfico)"
+msgid "Choose <emph>Format - Title - Area</emph> tab (chart documents)."
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3157894\n"
"help.text"
-msgid "Choose <emph>Format - Legend - Area</emph> tab (chart documents)"
-msgstr "Elija la pestaña (gráfico)<emph>Formato - Leyenda - Área</emph>"
+msgid "Choose <emph>Format - Legend - Area</emph> tab (chart documents)."
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3144444\n"
"help.text"
-msgid "Choose <emph>Format - Chart Wall - Area</emph> tab (chart documents)"
-msgstr "Menú <emph>Formato - Plano lateral... - </emph> Ficha <emph>Área</emph> (diagramas)"
+msgid "Choose <emph>Format - Chart Wall - Area</emph> tab (chart documents)."
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3156543\n"
"help.text"
-msgid "Choose <emph>Format - Chart Floor - Area</emph> tab (chart documents)"
-msgstr "Menú <emph>Formato - Base del diagrama... -</emph> Ficha <emph>Área</emph> (diagramas)"
+msgid "Choose <emph>Format - Chart Floor - Area</emph> tab (chart documents)."
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3150685\n"
"help.text"
-msgid "Choose <emph>Format - Chart Area - Area</emph> tab (chart documents)"
-msgstr "Menú <emph>Formato - Área del diagrama... - </emph> Ficha <emph>Área</emph> (diagramas)"
+msgid "Choose <emph>Format - Chart Area - Area</emph> tab (chart documents)."
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3149664\n"
"help.text"
-msgid "Choose <emph>Slide - Properties - Background</emph> tab (in $[officename] Impress)"
-msgstr "Vaya a <emph>Diapositiva ▸ Propiedades ▸</emph> pestaña <emph>Fondo</emph> (en $[officename] Impress)"
+msgid "Choose <emph>Slide - Properties - Background</emph> tab (in $[officename] Impress)."
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id9149694\n"
"help.text"
-msgid "Choose <emph>Page - Properties - Background</emph> tab (in $[officename] Draw)"
-msgstr "Vaya a <emph>Página ▸ Propiedades ▸</emph> pestaña <emph>Fondo</emph> (en $[officename] Draw)"
+msgid "Choose <emph>Page - Properties - Background</emph> tab (in $[officename] Draw)."
+msgstr ""
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id841527083135387\n"
+"help.text"
+msgid "Choose <emph>Table - Properties - Background</emph> tab."
+msgstr ""
#: 00040502.xhp
msgctxt ""
@@ -11349,32 +11405,32 @@ msgctxt ""
"00040502.xhp\n"
"par_id3150011\n"
"help.text"
-msgid "<variable id=\"schatte\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Shadow</emph> tab </variable>"
-msgstr "<variable id=\"schatte\">Seleccione <emph>Formato - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Objeto - </emph></caseinline><caseinline select=\"CALC\"><emph>Gráfico - </emph></caseinline></switchinline><emph>Área, ficha Sombra</emph></variable>"
+msgid "<variable id=\"schatte\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Shadow</emph> tab</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3147441\n"
"help.text"
-msgid "<variable id=\"verlauf\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Gradients</emph> tab </variable>"
-msgstr "<variable id=\"verlauf\">Vaya a <emph>Formato ▸ </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Objeto ▸ </emph></caseinline><caseinline select=\"CALC\"><emph>Gráfico ▸ </emph></caseinline></switchinline><emph>Área ▸ Degradados</emph></variable>"
+msgid "<variable id=\"verlauf\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Gradients</emph> tab</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3155308\n"
"help.text"
-msgid "<variable id=\"schraffur\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Hatching</emph> tab </variable>"
-msgstr "<variable id=\"schraffur\">Seleccione <emph>Formato - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Objeto - </emph></caseinline><caseinline select=\"CALC\"><emph>Gráfico - </emph></caseinline></switchinline><emph>Área, ficha Trama</emph></variable>"
+msgid "<variable id=\"schraffur\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Hatching</emph> tab</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3145800\n"
"help.text"
-msgid "<variable id=\"bitmap\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Bitmaps</emph> tab </variable>"
-msgstr "<variable id=\"bitmap\">Seleccione <emph>Formato - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Objeto - </emph></caseinline><caseinline select=\"CALC\"><emph>Gráfico - </emph></caseinline></switchinline><emph>Área, ficha Mapas de bits</emph></variable>"
+msgid "<variable id=\"bitmap\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Bitmaps</emph> tab</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
@@ -11413,8 +11469,8 @@ msgctxt ""
"00040502.xhp\n"
"par_id3156286\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F4 key </caseinline><caseinline select=\"IMPRESS\">F4 key </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"DRAW\">Tecla F4 </caseinline><caseinline select=\"IMPRESS\">Tecla F4 </caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F4 key</caseinline><caseinline select=\"IMPRESS\">F4 key</caseinline></switchinline>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
@@ -11453,8 +11509,8 @@ msgctxt ""
"00040502.xhp\n"
"par_id3153099\n"
"help.text"
-msgid "<variable id=\"position2\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Position and Size</emph> tab </variable>"
-msgstr "<variable id=\"position2\">Seleccione <emph>Formato - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Objeto - </emph></caseinline><caseinline select=\"CALC\"><emph>Gráfico - </emph></caseinline></switchinline><emph>Posición y tamaño, ficha Posición y tamaño</emph></variable>"
+msgid "<variable id=\"position2\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Position and Size</emph> tab</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
@@ -11485,16 +11541,16 @@ msgctxt ""
"00040502.xhp\n"
"par_id3145666\n"
"help.text"
-msgid "<variable id=\"ecke\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Slant & Corner Radius</emph> tab </variable>"
-msgstr "<variable id=\"ecke\">Seleccione <emph>Formato - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Objeto - </emph></caseinline><caseinline select=\"CALC\"><emph>Gráfico - </emph></caseinline></switchinline><emph>Posición y tamaño - ficha Inclinación / Radio de esquina</emph></variable>"
+msgid "<variable id=\"ecke\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Slant & Corner Radius</emph> tab</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3146081\n"
"help.text"
-msgid "<variable id=\"legende\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Callout</emph> tab (only for textbox callouts, not for custom shapes callouts) </variable>"
-msgstr "<variable id=\"legende\">Elija la pestaña <emph>Llamada</emph> en <emph>Formato - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Objeto - </emph></caseinline><caseinline select=\"CALC\"><emph>Gráfico - </emph></caseinline></switchinline><emph>Posición y tamaño</emph> (sólo para llamadas con cuadros de texto, no para llamadas con formas personalizadas) </variable>"
+msgid "<variable id=\"legende\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Callout</emph> tab (only for textbox callouts, not for custom shapes callouts)</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
@@ -11517,8 +11573,8 @@ msgctxt ""
"00040502.xhp\n"
"par_id3149019\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F8 key </caseinline><caseinline select=\"IMPRESS\">F8 key </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F8 </caseinline><caseinline select=\"IMPRESS\">F8 </caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F8 key</caseinline><caseinline select=\"IMPRESS\">F8 key</caseinline></switchinline>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
@@ -11805,8 +11861,8 @@ msgctxt ""
"00040502.xhp\n"
"par_id3153076\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Align Center Horizontally </caseinline><defaultinline>Centered</defaultinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Alinear centrado horizontalmente</caseinline><defaultinline>Centrado</defaultinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Align Center Horizontally</caseinline><defaultinline>Centered</defaultinline></switchinline>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
@@ -11845,7 +11901,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3150527\n"
"help.text"
-msgid "<variable id=\"font\">Click <emph>Fontwork</emph> icon on <emph>Drawing</emph> bar </variable>"
+msgid "<variable id=\"font\">Click <emph>Fontwork</emph> icon on <emph>Drawing</emph> bar</variable>"
msgstr "<variable id=\"font\">Pulse en el icono de <emph>Fontwork</emph> en la barra <emph>Dibujo</emph></variable>"
#: 00040502.xhp
diff --git a/source/es/helpcontent2/source/text/shared/01.po b/source/es/helpcontent2/source/text/shared/01.po
index 9e4548d4632..a78243cec62 100644
--- a/source/es/helpcontent2/source/text/shared/01.po
+++ b/source/es/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: 2018-05-23 23:19+0200\n"
-"PO-Revision-Date: 2018-05-24 03:43+0000\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
+"PO-Revision-Date: 2018-06-09 04:19+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: es\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1527133399.000000\n"
+"X-POOTLE-MTIME: 1528517989.000000\n"
#: 01010000.xhp
msgctxt ""
@@ -46,7 +46,7 @@ msgctxt ""
"par_id3149182\n"
"help.text"
msgid "<ahelp hid=\"HID_TBXCONTROL_FILENEW\" visibility=\"hidden\">Creates a new $[officename] document. Click the arrow to select the document type.</ahelp>"
-msgstr "<ahelp hid=\"HID_TBXCONTROL_FILENEW\" visibility=\"hidden\">Crea un documento nuevo de $[officename]. Haga clic en la flecha para seleccionar el tipo de documento.</ahelp>"
+msgstr "<ahelp hid=\"HID_TBXCONTROL_FILENEW\" visibility=\"hidden\">Crea un documento nuevo de $[officename]. Pulse en la flecha para seleccionar el tipo de documento.</ahelp>"
#: 01010000.xhp
msgctxt ""
@@ -54,7 +54,7 @@ msgctxt ""
"par_id3153528\n"
"help.text"
msgid "<ahelp hid=\".\">If you want to create a document from a template, choose <emph>New - Templates.</emph></ahelp>"
-msgstr "<ahelp hid=\".\">Para crear un documento a partir de una plantilla, elija <emph>Nuevo ▸ Plantillas</emph>.</ahelp>"
+msgstr "<ahelp hid=\".\">Para crear un documento a partir de una plantilla, elija <emph>Nuevo ▸ Plantillas</emph>.</ahelp>"
#: 01010000.xhp
msgctxt ""
@@ -2566,7 +2566,7 @@ msgctxt ""
"par_id3155934\n"
"help.text"
msgid "The following sections describe the <item type=\"productname\">%PRODUCTNAME</item> <emph>Save as</emph> dialog. To activate the <emph><item type=\"productname\">%PRODUCTNAME</item> Open</emph> and <emph>Save</emph> dialog boxes, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - </emph><link href=\"text/shared/optionen/01010600.xhp\" name=\"%PRODUCTNAME - General\"><emph>%PRODUCTNAME- General</emph></link>, and then select the <emph>Use %PRODUCTNAME dialogs</emph> in the <emph>Open/Save dialogs</emph> area."
-msgstr ""
+msgstr "Las siguientes secciones describen el cuadro de diálogo <emph>Guardar como</emph> de <item type=\"productname\">%PRODUCTNAME</item>. Para activar los cuadros de diálogo <emph>Abrir</emph> y <emph>Guardar</emph> de <item type=\"productname\">%PRODUCTNAME</item>, diríjase a <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME ▸ Preferencias</emph></caseinline><defaultinline><emph>Herramientas ▸ Opciones</emph></defaultinline></switchinline><emph> ▸ </emph><link href=\"text/shared/optionen/01010600.xhp\" name=\"%PRODUCTNAME - General\"><emph>%PRODUCTNAME ▸ General</emph></link> y luego active la casilla <emph>Utilizar los diálogos de %PRODUCTNAME</emph> en el apartado <emph>Cuadros de diálogo para abrir y guardar</emph>."
#: 01070000.xhp
msgctxt ""
@@ -3422,7 +3422,7 @@ msgctxt ""
"par_id3156324\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Some statistic values can be used as <link href=\"text/swriter/02/14020000.xhp\" name=\"variables in formulas\">variables in formulas</link>.</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Algunos valores estadísticos pueden emplearse como <link href=\"text/swriter/02/14020000.xhp\" name=\"variables en fórmulas\">variables en fórmulas</link>.</caseinline></switchinline>"
#: 01100400.xhp
msgctxt ""
@@ -3454,7 +3454,7 @@ msgctxt ""
"par_id3153527\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Number of tables in the file.</caseinline><caseinline select=\"CALC\">Number of sheets in the file.</caseinline></switchinline> This statistic does not include tables that were inserted as <link href=\"text/shared/00/00000005.xhp#ole\" name=\"OLE\">OLE</link> objects."
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Número de tablas del archivo.</caseinline><caseinline select=\"CALC\">Número de hojas del archivo.</caseinline></switchinline> La estadística no incluye las tablas que se han insertado como objetos <link href=\"text/shared/00/00000005.xhp#ole\" name=\"OLE\">OLE</link>."
#: 01100400.xhp
msgctxt ""
@@ -7046,7 +7046,7 @@ msgctxt ""
"par_id3155555\n"
"help.text"
msgid "Finds zero or more of the characters in front of the \"*\". For example, \"Ab*c\" finds \"Ac\", \"Abc\", \"Abbc\", \"Abbbc\", and so on."
-msgstr "Busca cero o más de los caracteres que preceden a \"*\". Por ejemplo, \"Ab*c\" encuentra \"Ac\", \"Abc\", \"Abbc\", \"Abbbc\", y así sucesivamente."
+msgstr "Busca cero o más de los caracteres que preceden a «*». Por ejemplo, «Ab*c» encuentra «Ac», «Abc», «Abbc», «Abbbc», y así sucesivamente."
#: 02100001.xhp
msgctxt ""
@@ -13966,7 +13966,7 @@ msgctxt ""
"par_id3150866\n"
"help.text"
msgid "The format code for currencies uses the form [$xxx-nnn], where xxx is the currency symbol, and nnn the country code. Special banking symbols, such as EUR (for Euro), do not require the country code. The currency format is not dependent on the language that you select in the<emph> Language</emph> box."
-msgstr "El código de formato para las monedas sigue el esquema [$xxx-nnn], donde xxx es el símbolo de moneda y nnn el código de país. Los símbolos bancarios especiales, como EUR (para el Euro), no precisan del código de país. El formato de moneda no depende del idioma seleccionado en el cuadro<emph> Idioma</emph>."
+msgstr "Los códigos de formato para las monedas siguen el esquema [$xxx-nnn], donde xxx es el símbolo monetario y nnn el código de país. Los símbolos bancarios especiales, como EUR (para el euro), no precisan del código de país. El formato de moneda no depende del idioma seleccionado en el cuadro <emph>Idioma</emph>."
#: 05020300.xhp
msgctxt ""
@@ -15190,7 +15190,7 @@ msgctxt ""
"par_id3154656\n"
"help.text"
msgid "Japanese Gengou Calendar"
-msgstr "Calendario Gengou japonés"
+msgstr "Calendario gengō japonés"
#: 05020301.xhp
msgctxt ""
@@ -23587,6 +23587,22 @@ msgstr "Es posible añadir colores personalizados, degradados, tramas, patrones
#: 05210100.xhp
msgctxt ""
"05210100.xhp\n"
+"hd_id471527077476052\n"
+"help.text"
+msgid "Cell, Row or Table background selector"
+msgstr ""
+
+#: 05210100.xhp
+msgctxt ""
+"05210100.xhp\n"
+"par_id661527077493366\n"
+"help.text"
+msgid "Select the table object which background area is to be filled."
+msgstr "Seleccione el objeto de la tabla cuyo fondo debe rellenarse."
+
+#: 05210100.xhp
+msgctxt ""
+"05210100.xhp\n"
"hd_id3147373\n"
"help.text"
msgid "None"
@@ -31205,24 +31221,24 @@ msgctxt ""
"06040100.xhp\n"
"hd_id3145072\n"
"help.text"
-msgid "Automatic *bold* and _underline_"
-msgstr "En *negrita* y _subrayado_ automáticamente"
+msgid "Automatic *bold*, /italic/, -strikeout- and _underline_"
+msgstr "*Negrita*, /itálica/, -tachado- y _subrayado_ automáticos"
#: 06040100.xhp
msgctxt ""
"06040100.xhp\n"
"par_id3153577\n"
"help.text"
-msgid "Automatically applies bold formatting to text enclosed by asterisks (*), and underline to text enclosed by underscores ( _ ), for example, *bold*. The asterisks and underscores are not displayed after the formatting is applied."
-msgstr "Aplica automáticamente negrita al texto entre asteriscos (*) y subraya el texto entre guiones bajos (_), por ejemplo, *negrita*. Los asteriscos y guiones bajos no se muestran después de aplicar el formato."
+msgid "Automatically applies bold, italic, strikethrough or underline formatting to text enclosed by asterisks (*), slashes (/), hyphens (-), and underscores (_), respectively. These characters disappear after the formatting is applied."
+msgstr "Aplica automáticamente un formato de negrita, cursiva, tachado o subrayado al texto que encierre entre asteriscos (*), barras (/), guiones (-) o guiones bajos (_) respectivamente. Estos caracteres desaparecerán luego de que se aplique el formato."
#: 06040100.xhp
msgctxt ""
"06040100.xhp\n"
"par_id3153127\n"
"help.text"
-msgid "This feature does not work if the formatting characters * or _ are entered with an <link href=\"text/shared/00/00000005.xhp#IME\" name=\"Input Method Editor\">Input Method Editor</link>."
-msgstr "Esta función no está operativa si los caracteres de formato * o _ se escriben mediante un <link name=\"Editor de método de entrada (IME)\" href=\"text/shared/00/00000005.xhp#IME\">Editor de método de entrada (IME)</link>."
+msgid "This feature does not work if the formatting characters <item type=\"literal\">* / - _</item> are entered with an <link href=\"text/shared/00/00000005.xhp#IME\" name=\"Input Method Editor\">Input Method Editor</link>."
+msgstr "Esta funcionalidad no es operativa si los caracteres de formato <item type=\"literal\">* / - _</item> se introducen mediante un <link href=\"text/shared/00/00000005.xhp#IME\" name=\"Editor de método de entrada\">editor de método de entrada</link>."
#: 06040100.xhp
msgctxt ""
@@ -31686,7 +31702,7 @@ msgctxt ""
"hd_id3151019\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Combine single line paragraphs if length greater than ...</caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Combinar los párrafos de una sola línea si la longitud es mayor al ...</caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Combinar párrafos de un solo renglón si la longitud supera el…</caseinline></switchinline>"
#: 06040100.xhp
msgctxt ""
@@ -37886,7 +37902,7 @@ msgctxt ""
"par_id321526421041596\n"
"help.text"
msgid "<link href=\"text/shared/guide/digital_signatures.xhp\">About Digital Signatures</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/guide/digital_signatures.xhp\">Acerca de las firmas digitales</link>"
#: extensionupdate.xhp
msgctxt ""
@@ -40430,7 +40446,7 @@ msgctxt ""
"par_id281120160949347055\n"
"help.text"
msgid "If you want to report a problem with your user profile, by clicking on <emph>Create Zip Archive from User Profile</emph> you can generate a zip file which can be uploaded to the bug tracking system to be investigated by the developers."
-msgstr "Si quiere informar de un problema con su perfil de usuario, al pulsar en <emph>Crear archivador .zip del perfil de usuario</emph> puede generar un archivador ZIP que podrá enviar a los programadores para su análisis a través del sistema de seguimiento de errores."
+msgstr "Si quiere informar de un problema con su perfil de usuario, puede pulsar en <emph>Archivar perfil de usuario</emph> para generar un archivador ZIP que podrá enviar a los programadores para su análisis a través del sistema de seguimiento de errores."
#: profile_safe_mode.xhp
msgctxt ""
@@ -42182,7 +42198,7 @@ msgctxt ""
"par_id39089022\n"
"help.text"
msgid "The list of TSA URLs that can be selected is maintained under <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME - Security - TSAs</emph>."
-msgstr ""
+msgstr "La lista de URL de TSA que se pueden seleccionar se configura en <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME ▸ Preferencias</emph></caseinline><defaultinline><emph>Herramientas ▸ Opciones</emph></defaultinline></switchinline><emph> ▸ %PRODUCTNAME ▸ Seguridad ▸ TSA</emph>."
#: ref_pdf_export.xhp
msgctxt ""
@@ -42310,7 +42326,7 @@ msgctxt ""
"par_idN1059C\n"
"help.text"
msgid "Enable Macros"
-msgstr "Habilitar macros"
+msgstr "Activar macros"
#: securitywarning.xhp
msgctxt ""
@@ -42326,7 +42342,7 @@ msgctxt ""
"par_idN105A3\n"
"help.text"
msgid "Disable Macros"
-msgstr "Deshabilitar macros"
+msgstr "Desactivar macros"
#: securitywarning.xhp
msgctxt ""
@@ -42414,7 +42430,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Signing Existing PDF"
-msgstr ""
+msgstr "Firmar PDF existentes"
#: signexistingpdf.xhp
msgctxt ""
@@ -42422,7 +42438,7 @@ msgctxt ""
"bm_id581526779778738\n"
"help.text"
msgid "<bookmark_value>digital signature;signing existing PDF</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>firma digital;firmar PDF existentes</bookmark_value>"
#: signexistingpdf.xhp
msgctxt ""
@@ -42430,7 +42446,7 @@ msgctxt ""
"hd_id201526432498222\n"
"help.text"
msgid "<variable id=\"signexisitingpdf\"><link href=\"text/shared/01/signexistingpdf.xhp\" name=\"Sign Existing PDF Files\">Signing Existing PDF files</link></variable>"
-msgstr ""
+msgstr "<variable id=\"signexisitingpdf\"><link href=\"text/shared/01/signexistingpdf.xhp\" name=\"Firmar archivos PDF existentes\">Firmar archivos PDF existentes</link></variable>"
#: signexistingpdf.xhp
msgctxt ""
@@ -42438,7 +42454,7 @@ msgctxt ""
"par_id41526423955118\n"
"help.text"
msgid "%PRODUCTNAME can digitally sign an existing PDF document."
-msgstr ""
+msgstr "%PRODUCTNAME es capaz de aplicar firmas digitales a documentos PDF existentes."
#: signexistingpdf.xhp
msgctxt ""
@@ -42446,7 +42462,7 @@ msgctxt ""
"par_id821526581027302\n"
"help.text"
msgid "The file opens in %PRODUCTNAME Draw in read only mode."
-msgstr ""
+msgstr "El archivo se abre en %PRODUCTNAME Draw en el modo de solo lectura."
#: signexistingpdf.xhp
msgctxt ""
@@ -42454,7 +42470,7 @@ msgctxt ""
"par_id361526580565237\n"
"help.text"
msgid "Sign the PDF document as usual."
-msgstr ""
+msgstr "Firme el documento PDF como de costumbre."
#: webhtml.xhp
msgctxt ""
@@ -42462,7 +42478,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Preview in Web Browser"
-msgstr "Vista previo en el Navegador Web"
+msgstr "Previsualizar en navegador"
#: webhtml.xhp
msgctxt ""
diff --git a/source/es/helpcontent2/source/text/shared/02.po b/source/es/helpcontent2/source/text/shared/02.po
index 5e6a5715e1b..8cff02c264a 100644
--- a/source/es/helpcontent2/source/text/shared/02.po
+++ b/source/es/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: 2018-05-08 15:10+0200\n"
-"PO-Revision-Date: 2018-05-23 23:09+0000\n"
+"PO-Revision-Date: 2018-06-02 04:01+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: es\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1527116955.000000\n"
+"X-POOTLE-MTIME: 1527912117.000000\n"
#: 01110000.xhp
msgctxt ""
@@ -12598,7 +12598,7 @@ msgctxt ""
"par_id3156326\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">If data is inserted into the document as a table, the table properties are not saved along with the data in the document. If you select the <emph>AutoFormat</emph> function for formatting the table, $[officename] will note the name of the format template. This template will then be used automatically if you insert data as a table again, unless the preferences have been changed.</caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Si en el documento se insertan datos como tabla, las propiedades de la tabla no se guardan con los datos. Si selecciona la opción <emph>Autoformato</emph> para dar formato a la tabla, $[officename] toma nota del nombre de la plantilla de formato. Dicha plantilla se emplea de forma automática si vuelve a insertar datos como tabla, a menos que se hayan modificado las preferencias.</caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Si en el documento se insertan datos en forma de tabla, las propiedades de la tabla no se guardan con los datos. Si selecciona la opción <emph>Formato automático</emph> para dar formato a la tabla, $[officename] toma nota del nombre de la plantilla de formato. Dicha plantilla se emplea de forma automática si vuelve a insertar datos como tabla, a menos que se hayan modificado las preferencias.</caseinline></switchinline>"
#: 12070100.xhp
msgctxt ""
@@ -12894,7 +12894,7 @@ msgctxt ""
"par_id3154988\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/insertdbcolumnsdialog/autoformat\">Opens the <switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/swriter/01/05150101.xhp\" name=\"AutoFormat\"><emph>AutoFormat</emph></link></caseinline><defaultinline><emph>AutoFormat</emph></defaultinline></switchinline> dialog, in which you can select format styles that are immediately applied when inserting the table.</ahelp>"
-msgstr "<ahelp hid=\"modules/swriter/ui/insertdbcolumnsdialog/autoformat\">Abre el diálogo <switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/swriter/01/05150101.xhp\" name=\"AutoFormat\"><emph>Autoformato</emph></link></caseinline><defaultinline><emph>Autoformato</emph></defaultinline></switchinline>, en el que se pueden seleccionar estilos de formato que se aplican a la tabla de forma inmediata.</ahelp>"
+msgstr "<ahelp hid=\"modules/swriter/ui/insertdbcolumnsdialog/autoformat\">Abre el cuadro de diálogo <switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/swriter/01/05150101.xhp\" name=\"Formato automático\"><emph>Formato automático</emph></link></caseinline><defaultinline><emph>Formato automático</emph></defaultinline></switchinline>, en el que se pueden seleccionar estilos de formato que se aplican de inmediato al insertar la tabla.</ahelp>"
#: 12070200.xhp
msgctxt ""
diff --git a/source/es/helpcontent2/source/text/shared/autopi.po b/source/es/helpcontent2/source/text/shared/autopi.po
index 8ab242e8ec4..a0a1605ddfa 100644
--- a/source/es/helpcontent2/source/text/shared/autopi.po
+++ b/source/es/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: 2018-04-24 12:21+0200\n"
-"PO-Revision-Date: 2018-05-10 00:06+0000\n"
+"PO-Revision-Date: 2018-06-08 03:06+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: es\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1525910787.000000\n"
+"X-POOTLE-MTIME: 1528427169.000000\n"
#: 01000000.xhp
msgctxt ""
@@ -1726,7 +1726,7 @@ msgctxt ""
"par_id3156426\n"
"help.text"
msgid "The wizard saves the current settings and goes to the next page. Once you reach the last page, this button will become inactive."
-msgstr "El AutoPiloto utiliza las configuraciones actuales del diálogo y presenta las opciones seleccionables del paso siguiente. Este botón no puede verse en la última página del diálogo."
+msgstr "El asistente almacena las configuraciones actuales y presenta las opciones seleccionables del paso siguiente. Este botón se vuelve inactivo en la última página del asistente."
#: 01040000.xhp
msgctxt ""
@@ -1742,7 +1742,7 @@ msgctxt ""
"par_id3156346\n"
"help.text"
msgid "According to your selections, the wizard creates a document template and saves it on your hard disk. A new document based on the template appears in the work area, with the filename \"UntitledX\" (X stands for an automatic number)."
-msgstr "El AutoPiloto crea, con la ayuda de la selección que ha efectuado, una plantilla nueva y la guarda en el disco duro. A partir de la plantilla recién creada, $[officename] crea un documento denominado \"sin nombre X\" (donde X es un número consecutivo) y lo muestra en el área de trabajo."
+msgstr "Conforme a las selecciones hechas, el asistente crea una plantilla de documento nueva y la guarda en el disco duro. En el área de trabajo aparecerá un documento nuevo basado en esa plantilla y denominado «Sin título X» (donde X representa un número automático)."
#: 01040000.xhp
msgctxt ""
diff --git a/source/es/helpcontent2/source/text/shared/guide.po b/source/es/helpcontent2/source/text/shared/guide.po
index 1107ffe86c8..97b2accb562 100644
--- a/source/es/helpcontent2/source/text/shared/guide.po
+++ b/source/es/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: 2018-05-16 16:54+0200\n"
-"PO-Revision-Date: 2018-05-23 23:01+0000\n"
+"PO-Revision-Date: 2018-05-29 18:52+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: es\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1527116497.000000\n"
+"X-POOTLE-MTIME: 1527619956.000000\n"
#: aaa_start.xhp
msgctxt ""
@@ -4878,7 +4878,7 @@ msgctxt ""
"par_id3150984\n"
"help.text"
msgid "On the <emph>Form Controls</emph> toolbar, click the <emph>Design Mode On/Off</emph> icon<image id=\"img_id3147618\" src=\"cmd/sc_switchcontroldesignmode.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3147618\">Icon</alt></image> to turn off the design mode."
-msgstr ""
+msgstr "En la barra de herramientas <emph>Controles de formulario</emph>, pulse en el icono <emph>Modo de diseño</emph> <image id=\"img_id3147618\" src=\"cmd/sc_switchcontroldesignmode.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3147618\">Icono</alt></image> para salir del modo de diseño."
#: data_search2.xhp
msgctxt ""
@@ -4926,7 +4926,7 @@ msgctxt ""
"par_id3150114\n"
"help.text"
msgid "Click the <link href=\"text/shared/02/12120000.xhp\" name=\"Apply Filter\"><emph>Apply Filter</emph></link> icon<image id=\"img_id3144764\" src=\"cmd/sc_datafilterstandardfilter.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3144764\">Icon</alt></image> on the <emph>Form Navigation</emph> toolbar to change to the filtered view."
-msgstr ""
+msgstr "Pulse en el icono <link href=\"text/shared/02/12120000.xhp\" name=\"Aplicar filtro\"><emph>Aplicar filtro</emph></link> <image id=\"img_id3144764\" src=\"cmd/sc_datafilterstandardfilter.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3144764\">Icono</alt></image> de la barra de herramientas <emph>Navegación de formulario</emph> para cambiar a la vista filtrada."
#: data_search2.xhp
msgctxt ""
@@ -18790,7 +18790,7 @@ msgctxt ""
"par_id041620170723511300\n"
"help.text"
msgid "Search for the Personal Budget Template, then download it"
-msgstr ""
+msgstr "Encuentre la plantilla Presupuesto personal y descárguela"
#: template_manager.xhp
msgctxt ""
diff --git a/source/es/helpcontent2/source/text/shared/optionen.po b/source/es/helpcontent2/source/text/shared/optionen.po
index cedaa31325d..80b44d034a7 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: 2018-05-08 15:10+0200\n"
-"PO-Revision-Date: 2018-05-22 23:06+0000\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
+"PO-Revision-Date: 2018-06-06 08:58+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: es\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1527030399.000000\n"
+"X-POOTLE-MTIME: 1528275530.000000\n"
#: 01000000.xhp
msgctxt ""
@@ -83,6 +83,22 @@ msgstr "Observación para los usuarios de macOS: la ayuda menciona la ruta de me
#: 01000000.xhp
msgctxt ""
"01000000.xhp\n"
+"hd_id551527692881035\n"
+"help.text"
+msgid "Help"
+msgstr "Ayuda"
+
+#: 01000000.xhp
+msgctxt ""
+"01000000.xhp\n"
+"par_id831527692885723\n"
+"help.text"
+msgid "Opens the help contents for the Options page displayed."
+msgstr "Abre el contenido de ayuda correspondiente a la sección mostrada de las opciones."
+
+#: 01000000.xhp
+msgctxt ""
+"01000000.xhp\n"
"hd_id3159149\n"
"help.text"
msgid "<link href=\"text/shared/optionen/01010000.xhp\" name=\"$[officename]\">%PRODUCTNAME</link>"
@@ -870,7 +886,7 @@ msgctxt ""
"par_id6944181\n"
"help.text"
msgid "OpenOffice.org 3 and StarOffice 9 introduce new features which have to be saved using the <link href=\"https://en.wikipedia.org/wiki/OpenDocument\" name=\"English Wikipedia: OpenDocument\">OpenDocument</link> format (ODF) version 1.2. The prior versions of OpenOffice.org 2 and StarOffice 8 support the file formats ODF 1.0/1.1. Those prior file formats cannot store all new features of the new software."
-msgstr ""
+msgstr "OpenOffice.org 3 y StarOffice 9 introducen características nuevas que deben guardarse en el formato <link href=\"https://es.wikipedia.org/wiki/OpenDocument\" name=\"Wikipedia en español: OpenDocument\">OpenDocument</link> (ODF) versión 1.2. Las versiones anteriores de OpenOffice.org 2 y StarOffice 8 utilizan los formatos de archivo ODF 1.0/1.1. Estos formatos de archivo anteriores no pueden almacenar todas las últimas características incorporadas en las nuevas aplicaciones."
#: 01010200.xhp
msgctxt ""
@@ -1590,7 +1606,7 @@ msgctxt ""
"par_id3154730\n"
"help.text"
msgid "<variable id=\"ignore\">The <emph>IgnoreAllList (All)</emph> includes all words that have been marked with <emph>Ignore</emph> during spellcheck. This list is valid only for the current spellcheck.</variable>"
-msgstr ""
+msgstr "<variable id=\"ignore\">La lista <emph>IgnoreAllList (Todo)</emph> incluye todas las palabras que se han marcado como <emph>Ignorar</emph> durante la revisión ortográfica. Esta lista es válida únicamente para la revisión ortográfica actual.</variable>"
#: 01010400.xhp
msgctxt ""
@@ -2278,7 +2294,7 @@ msgctxt ""
"par_id3150771\n"
"help.text"
msgid "<variable id=\"farbentext\"><ahelp hid=\".\">%PRODUCTNAME lets you define custom colors using a two-dimensional graphic and numerical gradient chart of the <emph>Pick a Color</emph> dialog.</ahelp></variable>"
-msgstr ""
+msgstr "<variable id=\"farbentext\"><ahelp hid=\".\">%PRODUCTNAME le permite definir colores personalizados mediante un muestrario de dos dimensiones en el cuadro de diálogo <emph>Elija un color</emph>.</ahelp></variable>"
#: 01010501.xhp
msgctxt ""
@@ -2326,7 +2342,7 @@ msgctxt ""
"par_id3148947\n"
"help.text"
msgid "<ahelp hid=\".\">With the vertical color component slider you can modify the value of each component of the color.</ahelp> With the large colored square you can select the color component approximately."
-msgstr ""
+msgstr "<ahelp hid=\".\">Utilice el control deslizante vertical para modificar el valor de cada componente del color.</ahelp> En el muestrario grande puede elegir cada componente del color de manera aproximativa."
#: 01010501.xhp
msgctxt ""
@@ -4565,8 +4581,8 @@ msgctxt ""
"01030300.xhp\n"
"par_idN10640\n"
"help.text"
-msgid "Options"
-msgstr "Opciones"
+msgid "Security Options and Warnings"
+msgstr "Opciones de seguridad y alertas"
#: 01030300.xhp
msgctxt ""
@@ -4597,8 +4613,8 @@ msgctxt ""
"01030300.xhp\n"
"hd_id3168736\n"
"help.text"
-msgid "Persistently save passwords protected by a master password"
-msgstr "Guardar permanentemente las contraseñas protegidas por una contraseña maestra"
+msgid "Persistently save passwords for web connections"
+msgstr "Guardar permanentemente contraseñas de conexiones web"
#: 01030300.xhp
msgctxt ""
@@ -4613,6 +4629,22 @@ msgctxt ""
"01030300.xhp\n"
"hd_id3901791\n"
"help.text"
+msgid "Protected by a master password (recommended)"
+msgstr "Protegidas mediante una contraseña maestra (recomendado)"
+
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"par_id31527711486980\n"
+"help.text"
+msgid "Check to enable all connections' passwords to be protected by a master password."
+msgstr "Marque esta opción para utilizar una contraseña maestra que proteja a su vez las contraseñas de las conexiones."
+
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"hd_id141527711343312\n"
+"help.text"
msgid "Master Password"
msgstr "Contraseña maestra"
@@ -7222,7 +7254,7 @@ msgctxt ""
"hd_id3146317\n"
"help.text"
msgid "Add paragraph and table spacing at tops of pages"
-msgstr ""
+msgstr "Añadir espaciado de párrafos y tablas al inicio de las páginas"
#: 01041000.xhp
msgctxt ""
@@ -13733,8 +13765,8 @@ msgctxt ""
"java.xhp\n"
"hd_id3148618\n"
"help.text"
-msgid "Optional (unstable) options"
-msgstr "Opciones opcionales (inestables)"
+msgid "Optional Features"
+msgstr "Funcionalidades opcionales"
#: java.xhp
msgctxt ""
@@ -13749,7 +13781,7 @@ msgctxt ""
"java.xhp\n"
"par_id3156344\n"
"help.text"
-msgid "It enables features that are not yet complete or contain known bugs. The list of these features is different version by version, or even it can be empty."
+msgid "Enables features that are not yet complete or may contain known bugs. The list of these features is different version by version, or even it can be empty."
msgstr "Permite funciones que aún no están completas o que contienen errores conocidos. La lista de estas características es diferente en cada versión, o incluso puede estar vacía."
#: java.xhp
@@ -13765,8 +13797,8 @@ msgctxt ""
"java.xhp\n"
"par_id3156345\n"
"help.text"
-msgid "It enables macro recording, so the <link href=\"text/shared/guide/macro_recording.xhp\" name=\"Tools - Macros - Record Macro\"><item type=\"menuitem\">Tools - Macros - Record Macro</item></link> menu item will be available."
-msgstr "Activa la grabación de macros, de modo que el elemento del menú <link href=\"text/shared/guide/macro_recording.xhp\" name=\"Herramientas - Macros - Grabar macro\"><item type=\"menuitem\">Herramientas ▸ Macros ▸ Grabar macro</item></link> esté disponible."
+msgid "Enables macro recording. The <link href=\"text/shared/guide/macro_recording.xhp\" name=\"Tools - Macros - Record Macro\"><item type=\"menuitem\">Tools - Macros - Record Macro</item></link> menu item is available."
+msgstr "Activa la grabación de macros. El elemento del menú <link href=\"text/shared/guide/macro_recording.xhp\" name=\"Herramientas - Macros - Grabar macro\"><item type=\"menuitem\">Herramientas ▸ Macros ▸ Grabar macro</item></link> quedará disponible."
#: java.xhp
msgctxt ""
diff --git a/source/es/helpcontent2/source/text/smath/01.po b/source/es/helpcontent2/source/text/smath/01.po
index c0fc457a3c0..7d1469d2495 100644
--- a/source/es/helpcontent2/source/text/smath/01.po
+++ b/source/es/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: 2018-05-16 16:54+0200\n"
-"PO-Revision-Date: 2018-05-16 05:31+0000\n"
+"PO-Revision-Date: 2018-06-02 01:55+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: es\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1526448719.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1527904554.000000\n"
#: 02080000.xhp
msgctxt ""
@@ -5246,7 +5246,7 @@ msgctxt ""
"par_id3153818\n"
"help.text"
msgid "<image id=\"img_id3148870\" src=\"media/helpimg/smzb1.png\" width=\"95px\" height=\"80px\"><alt id=\"alt_id3148870\">Symbols with Indices</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3148870\" src=\"media/helpimg/smzb1.png\" width=\"95px\" height=\"80px\"><alt id=\"alt_id3148870\">Símbolos con índices</alt></image>"
#: 03090902.xhp
msgctxt ""
@@ -5278,7 +5278,7 @@ msgctxt ""
"par_id3153912\n"
"help.text"
msgid "<image id=\"img_id3149126\" src=\"media/helpimg/smzb2.png\" width=\"95px\" height=\"80px\"><alt id=\"alt_id3149126\">Symbols with Indices</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3149126\" src=\"media/helpimg/smzb2.png\" width=\"95px\" height=\"80px\"><alt id=\"alt_id3149126\">Símbolos con índices</alt></image>"
#: 03090903.xhp
msgctxt ""
@@ -5310,7 +5310,7 @@ msgctxt ""
"par_id3148866\n"
"help.text"
msgid "<image id=\"img_id3153246\" src=\"media/helpimg/smzb3.png\" width=\"175px\" height=\"80px\"><alt id=\"alt_id3153246\">Symbols with Indices</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3153246\" src=\"media/helpimg/smzb3.png\" width=\"175px\" height=\"80px\"><alt id=\"alt_id3153246\">Símbolos con índices</alt></image>"
#: 03090904.xhp
msgctxt ""
@@ -5438,7 +5438,7 @@ msgctxt ""
"par_id3153912\n"
"help.text"
msgid "<image id=\"img_id3148871\" src=\"media/helpimg/smzb7.png\" width=\"255px\" height=\"60px\"><alt id=\"alt_id3148871\">Functions</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3148871\" src=\"media/helpimg/smzb7.png\" width=\"255px\" height=\"60px\"><alt id=\"alt_id3148871\">Funciones</alt></image>"
#: 03090908.xhp
msgctxt ""
@@ -5470,7 +5470,7 @@ msgctxt ""
"par_id3148870\n"
"help.text"
msgid "<image id=\"img_id3153917\" src=\"media/helpimg/smzb8.png\" width=\"303px\" height=\"83px\"><alt id=\"alt_id3153917\">Square Root</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3153917\" src=\"media/helpimg/smzb8.png\" width=\"303px\" height=\"83px\"><alt id=\"alt_id3153917\">Raíz cuadrada</alt></image>"
#: 03090909.xhp
msgctxt ""
@@ -6366,7 +6366,7 @@ msgctxt ""
"par_id3151388\n"
"help.text"
msgid "Symbol in Elements pane"
-msgstr "Símbolo en el panel Elementos"
+msgstr "Símbolo del panel Elementos"
#: 03091501.xhp
msgctxt ""
@@ -6846,7 +6846,7 @@ msgctxt ""
"par_id3154032\n"
"help.text"
msgid "Symbol in Elements pane"
-msgstr "Símbolo en el panel Elementos"
+msgstr "Símbolo del panel Elementos"
#: 03091502.xhp
msgctxt ""
@@ -7454,7 +7454,7 @@ msgctxt ""
"par_id3145724\n"
"help.text"
msgid "Symbol in Elements pane"
-msgstr "Símbolo en el panel Elementos"
+msgstr "Símbolo del panel Elementos"
#: 03091503.xhp
msgctxt ""
@@ -7870,7 +7870,7 @@ msgctxt ""
"par_id3156681\n"
"help.text"
msgid "Symbol in Elements pane"
-msgstr "Símbolo en el panel Elementos"
+msgstr "Símbolo del panel Elementos"
#: 03091504.xhp
msgctxt ""
@@ -8334,7 +8334,7 @@ msgctxt ""
"par_id3143994\n"
"help.text"
msgid "Symbol in Elements pane"
-msgstr "Símbolo en el panel Elementos"
+msgstr "Símbolo del panel Elementos"
#: 03091505.xhp
msgctxt ""
@@ -8614,7 +8614,7 @@ msgctxt ""
"par_id3167610\n"
"help.text"
msgid "Symbol in Elements pane"
-msgstr "Símbolo en el panel Elementos"
+msgstr "Símbolo del panel Elementos"
#: 03091506.xhp
msgctxt ""
@@ -9030,7 +9030,7 @@ msgctxt ""
"par_id3162086\n"
"help.text"
msgid "Symbol in Elements pane"
-msgstr "Símbolo en el panel Elementos"
+msgstr "Símbolo del panel Elementos"
#: 03091507.xhp
msgctxt ""
@@ -9422,7 +9422,7 @@ msgctxt ""
"par_id3180684\n"
"help.text"
msgid "Symbol in Elements pane"
-msgstr "Símbolo en el panel Elementos"
+msgstr "Símbolo del panel Elementos"
#: 03091508.xhp
msgctxt ""
@@ -9878,7 +9878,7 @@ msgctxt ""
"par_id3184320\n"
"help.text"
msgid "Symbol in Elements pane"
-msgstr "Símbolo en el panel Elementos"
+msgstr "Símbolo del panel Elementos"
#: 03091509.xhp
msgctxt ""
@@ -11990,7 +11990,7 @@ msgctxt ""
"bm_id3145799\n"
"help.text"
msgid "<bookmark_value>symbols; entering in %PRODUCTNAME Math</bookmark_value> <bookmark_value>%PRODUCTNAME Math; entering symbols in</bookmark_value> <bookmark_value>catalog for mathematical symbols</bookmark_value> <bookmark_value>mathematical symbols;catalog</bookmark_value> <bookmark_value>Greek symbols in formulas</bookmark_value> <bookmark_value>formulas; entering symbols in</bookmark_value>"
-msgstr "<bookmark_value>símbolos;escribir en %PRODUCTNAME Math</bookmark_value><bookmark_value>%PRODUCTNAME Math;escribir símbolos en</bookmark_value><bookmark_value>catálogo para símbolos matemáticos</bookmark_value><bookmark_value>símbolos matemáticos;catálogo</bookmark_value><bookmark_value>símbolos griegos en fórmulas</bookmark_value><bookmark_value>fórmulas;escribir símbolos en</bookmark_value>"
+msgstr "<bookmark_value>símbolos;escribir en %PRODUCTNAME Math</bookmark_value><bookmark_value>%PRODUCTNAME Math;escribir símbolos en</bookmark_value><bookmark_value>catálogo de símbolos matemáticos</bookmark_value><bookmark_value>símbolos matemáticos;catálogo</bookmark_value><bookmark_value>símbolos griegos en fórmulas</bookmark_value><bookmark_value>fórmulas;escribir símbolos en</bookmark_value>"
#: 06010000.xhp
msgctxt ""
diff --git a/source/es/helpcontent2/source/text/smath/06.po b/source/es/helpcontent2/source/text/smath/06.po
index 0ce4253eacf..1dfaadf501b 100644
--- a/source/es/helpcontent2/source/text/smath/06.po
+++ b/source/es/helpcontent2/source/text/smath/06.po
@@ -4,14 +4,17 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2018-05-16 16:54+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"PO-Revision-Date: 2018-05-29 22:00+0000\n"
+"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: es\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: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1527631207.000000\n"
#: screenshots.xhp
msgctxt ""
@@ -19,7 +22,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Math screenshots"
-msgstr ""
+msgstr "Capturas de pantalla de Math"
#: screenshots.xhp
msgctxt ""
@@ -27,7 +30,7 @@ msgctxt ""
"par_id141525570544232\n"
"help.text"
msgid "<image src=\"media/screenshots/modules/smath/ui/alignmentdialog/AlignmentDialog.png\" id=\"img_id331525570544232\" localize=\"true\"><alt id=\"alt_id641525570544232\">Alignment Dialog</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/screenshots/modules/smath/ui/alignmentdialog/AlignmentDialog.png\" id=\"img_id331525570544232\" localize=\"true\"><alt id=\"alt_id641525570544232\">Cuadro de diálogo Alineación</alt></image>"
#: screenshots.xhp
msgctxt ""
@@ -35,7 +38,7 @@ msgctxt ""
"par_id121525570707303\n"
"help.text"
msgid "<image src=\"media/screenshots/modules/smath/ui/catalogdialog/CatalogDialog.png\" id=\"img_id441525570707303\" localize=\"true\"><alt id=\"alt_id921525570707303\">Catalog Dialog</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/screenshots/modules/smath/ui/catalogdialog/CatalogDialog.png\" id=\"img_id441525570707303\" localize=\"true\"><alt id=\"alt_id921525570707303\">Cuadro de diálogo Catálogo</alt></image>"
#: screenshots.xhp
msgctxt ""
@@ -43,7 +46,7 @@ msgctxt ""
"par_id71525570710878\n"
"help.text"
msgid "<image src=\"media/screenshots/modules/smath/ui/fontdialog/FontDialog.png\" id=\"img_id41525570710879\" localize=\"true\"><alt id=\"alt_id931525570710879\">Font Dialog</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/screenshots/modules/smath/ui/fontdialog/FontDialog.png\" id=\"img_id41525570710879\" localize=\"true\"><alt id=\"alt_id931525570710879\">Cuadro de diálogo Tipo de letra</alt></image>"
#: screenshots.xhp
msgctxt ""
@@ -51,7 +54,7 @@ msgctxt ""
"par_id671525570713808\n"
"help.text"
msgid "<image src=\"media/screenshots/modules/smath/ui/fontsizedialog/FontSizeDialog.png\" id=\"img_id131525570713808\" localize=\"true\"><alt id=\"alt_id501525570713809\">Font Size Dialog</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/screenshots/modules/smath/ui/fontsizedialog/FontSizeDialog.png\" id=\"img_id131525570713808\" localize=\"true\"><alt id=\"alt_id501525570713809\">Cuadro de diálogo Tamaño de letra</alt></image>"
#: screenshots.xhp
msgctxt ""
@@ -59,7 +62,7 @@ msgctxt ""
"par_id891525570718035\n"
"help.text"
msgid "<image src=\"media/screenshots/modules/smath/ui/fonttypedialog/FontsDialog.png\" id=\"img_id441525570718035\" localize=\"true\"><alt id=\"alt_id401525570718036\">Font Type Dialog</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/screenshots/modules/smath/ui/fonttypedialog/FontsDialog.png\" id=\"img_id441525570718035\" localize=\"true\"><alt id=\"alt_id401525570718036\">Cuadro de diálogo Tipo de letra</alt></image>"
#: screenshots.xhp
msgctxt ""
@@ -75,7 +78,7 @@ msgctxt ""
"par_id861525570725718\n"
"help.text"
msgid "<image src=\"media/screenshots/modules/smath/ui/spacingdialog/SpacingDialog.png\" id=\"img_id81525570725718\" localize=\"true\"><alt id=\"alt_id981525570725718\">Spacing Dialog</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/screenshots/modules/smath/ui/spacingdialog/SpacingDialog.png\" id=\"img_id81525570725718\" localize=\"true\"><alt id=\"alt_id981525570725718\">Cuadro de diálogo Espaciado</alt></image>"
#: screenshots.xhp
msgctxt ""
@@ -83,4 +86,4 @@ msgctxt ""
"par_id931525570728897\n"
"help.text"
msgid "<image src=\"media/screenshots/modules/smath/ui/symdefinedialog/EditSymbols.png\" id=\"img_id491525570728897\" localize=\"true\"><alt id=\"alt_id31525570728897\">Edit Symbols</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/screenshots/modules/smath/ui/symdefinedialog/EditSymbols.png\" id=\"img_id491525570728897\" localize=\"true\"><alt id=\"alt_id31525570728897\">Cuadro de diálogo Editar símbolos</alt></image>"
diff --git a/source/es/helpcontent2/source/text/swriter.po b/source/es/helpcontent2/source/text/swriter.po
index 8d61a1ec6f0..e87e1ebd9b5 100644
--- a/source/es/helpcontent2/source/text/swriter.po
+++ b/source/es/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: 2018-04-05 11:28+0200\n"
-"PO-Revision-Date: 2018-04-29 05:48+0000\n"
+"PO-Revision-Date: 2018-06-01 05:09+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: es\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1524980902.000000\n"
+"X-POOTLE-MTIME: 1527829750.000000\n"
#: classificationbar.xhp
msgctxt ""
@@ -1350,7 +1350,7 @@ msgctxt ""
"par_idN105F7\n"
"help.text"
msgid "<link href=\"text/swriter/01/05150101.xhp\">Table AutoFormat</link>"
-msgstr "<link href=\"text/swriter/01/05150101.xhp\">AutoFormato de tabla</link>"
+msgstr "<link href=\"text/swriter/01/05150101.xhp\">Formato automático de tabla</link>"
#: main0110.xhp
msgctxt ""
@@ -1470,7 +1470,7 @@ msgctxt ""
"par_idN1074C\n"
"help.text"
msgid "Text to Table"
-msgstr "Texto a Tabla"
+msgstr "Texto en tabla"
#: main0110.xhp
msgctxt ""
diff --git a/source/es/helpcontent2/source/text/swriter/00.po b/source/es/helpcontent2/source/text/swriter/00.po
index 4ed1ab79cba..8d2860c6db7 100644
--- a/source/es/helpcontent2/source/text/swriter/00.po
+++ b/source/es/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: 2018-05-22 13:17+0200\n"
-"PO-Revision-Date: 2018-05-23 22:49+0000\n"
+"PO-Revision-Date: 2018-05-31 23:03+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: es\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1527115799.000000\n"
+"X-POOTLE-MTIME: 1527807834.000000\n"
#: 00000004.xhp
msgctxt ""
@@ -1110,7 +1110,7 @@ msgctxt ""
"par_id3154342\n"
"help.text"
msgid "<variable id=\"druckerbr\">Choose <emph>Insert - Envelope - Printer</emph> tab</variable>"
-msgstr ""
+msgstr "<variable id=\"druckerbr\">Vaya a <emph>Insertar ▸ Sobre ▸</emph> pestaña <emph>Impresora</emph></variable>"
#: 00000404.xhp
msgctxt ""
@@ -1166,7 +1166,7 @@ msgctxt ""
"par_id3153129\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F12"
-msgstr ""
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">⌘F12</caseinline><defaultinline>Ctrl + F12</defaultinline></switchinline>"
#: 00000404.xhp
msgctxt ""
diff --git a/source/es/helpcontent2/source/text/swriter/01.po b/source/es/helpcontent2/source/text/swriter/01.po
index bbd95cd23cd..5a487746337 100644
--- a/source/es/helpcontent2/source/text/swriter/01.po
+++ b/source/es/helpcontent2/source/text/swriter/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: 2018-05-22 13:17+0200\n"
-"PO-Revision-Date: 2018-05-24 03:43+0000\n"
+"PO-Revision-Date: 2018-06-02 05:15+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: es\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1527133430.000000\n"
+"X-POOTLE-MTIME: 1527916500.000000\n"
#: 01120000.xhp
msgctxt ""
@@ -20294,7 +20294,7 @@ msgctxt ""
"par_id3150536\n"
"help.text"
msgid "<link href=\"text/swriter/01/05150200.xhp\" name=\"Other AutoFormat rules\">Other AutoCorrect rules</link>"
-msgstr "<link href=\"text/swriter/01/05150200.xhp\" name=\"Otras reglas del AutoFormato\">Otras reglas del AutoFormato</link>"
+msgstr "<link href=\"text/swriter/01/05150200.xhp\" name=\"Otras reglas de corrección automática\">Otras reglas de corrección automática</link>"
#: 05150101.xhp
msgctxt ""
@@ -23590,7 +23590,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Adding Signature Line in Text Documents"
-msgstr ""
+msgstr "Añadir una línea de firma a los documentos de texto"
#: addsignatureline.xhp
msgctxt ""
@@ -23694,7 +23694,7 @@ msgctxt ""
"par_id531526562791579\n"
"help.text"
msgid "Enable signer to insert comments in the Sign Signature Line dialog at time of signature."
-msgstr ""
+msgstr "Permite que el firmante inserte comentarios en el cuadro de diálogo Firmar línea de firma en el momento de firmar."
#: addsignatureline.xhp
msgctxt ""
diff --git a/source/es/helpcontent2/source/text/swriter/guide.po b/source/es/helpcontent2/source/text/swriter/guide.po
index 9b0bc68b7dc..b05ad76d418 100644
--- a/source/es/helpcontent2/source/text/swriter/guide.po
+++ b/source/es/helpcontent2/source/text/swriter/guide.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2018-05-08 15:11+0200\n"
-"PO-Revision-Date: 2018-05-24 03:44+0000\n"
+"PO-Revision-Date: 2018-06-01 06:12+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: es\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1527133454.000000\n"
+"X-POOTLE-MTIME: 1527833564.000000\n"
#: anchor_object.xhp
msgctxt ""
@@ -9078,7 +9078,7 @@ msgctxt ""
"par_id3155179\n"
"help.text"
msgid "$[officename] can automatically format dates that you have entered into a table, according to the regional settings specified in your operating system."
-msgstr "De forma predeterminada, $[officename]formatea automáticamente los formatos de las fechas que se escriben en una tabla de acuerdo con la configuración regional definida en el sistema operativo."
+msgstr "De forma predeterminada, $[officename] da formato automáticamente a las fechas que se escriben en tablas de acuerdo con la configuración regional definida en el sistema operativo."
#: number_date_conv.xhp
msgctxt ""
@@ -11958,7 +11958,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Removing Line Breaks"
-msgstr "Quitar saltos de línea"
+msgstr "Quitar saltos de renglón"
#: removing_line_breaks.xhp
msgctxt ""
@@ -11974,7 +11974,7 @@ msgctxt ""
"hd_id3155916\n"
"help.text"
msgid "<variable id=\"removing_line_breaks\"><link href=\"text/swriter/guide/removing_line_breaks.xhp\">Removing Line Breaks</link></variable>"
-msgstr "<variable id=\"removing_line_breaks\"><link href=\"text/swriter/guide/removing_line_breaks.xhp\">Quitar saltos de línea</link></variable>"
+msgstr "<variable id=\"removing_line_breaks\"><link href=\"text/swriter/guide/removing_line_breaks.xhp\">Quitar saltos de renglón</link></variable>"
#: removing_line_breaks.xhp
msgctxt ""
@@ -11982,7 +11982,7 @@ msgctxt ""
"par_id3155858\n"
"help.text"
msgid "Use the AutoCorrect feature to remove line breaks that occur within sentences. Unwanted line breaks can occur when you copy text from another source and paste it into a text document."
-msgstr "Use la función corrección automática para borrar los saltos de línea que aparecen en los enunciados. Saltos de línea no deseados pueden aparecer si copia texto de otra fuente y lo pega en un documento de texto."
+msgstr "Utilice la función de corrección automática para quitar los saltos de renglón presentes en los enunciados. Pueden producirse saltos de renglón no deseados si copia texto de otra fuente y lo pega en un documento de texto."
#: removing_line_breaks.xhp
msgctxt ""
@@ -12006,7 +12006,7 @@ msgctxt ""
"par_id3149645\n"
"help.text"
msgid "On the <emph>Options</emph> tab, ensure that <emph>Combine single line paragraphs if length greater than 50%</emph> is selected. To change the minimum percentage for the line length, double-click the option in the list, and then enter a new percentage."
-msgstr "En la pestaña <emph>Opciones</emph>, compruebe que esté marcada la opción <emph>Combina los párrafos de una línea a partir de 50%</emph>. Si desea cambiar el porcentaje mínimo para la longitud de la línea pulse dos veces sobre la opción de la lista y escriba un nuevo porcentaje."
+msgstr "En la pestaña <emph>Opciones</emph>, cerciórese de que esté marcada la opción <emph>Combinar párrafos de un solo renglón si la longitud supera el 50 %</emph>. Si desea cambiar el porcentaje mínimo para la longitud del renglón, pulse dos veces sobre la opción de la lista e indique un porcentaje nuevo."
#: removing_line_breaks.xhp
msgctxt ""
@@ -16110,7 +16110,7 @@ msgctxt ""
"par_id3154400\n"
"help.text"
msgid "You can insert a hyphen where you want on a line, or let $[officename] search for the words to hyphenate, and then offer a suggested hyphenation."
-msgstr "Puede insertar un guión donde desee en una línea o permitir que $[officename] busque palabras que dividir y, a continuación, ofrezca una separación sugerida."
+msgstr "Puede insertar un guion donde desee en un renglón o permitir que $[officename] busque palabras que dividir y ofrezca una sugerencia de división."
#: using_hyphen.xhp
msgctxt ""
@@ -16126,7 +16126,7 @@ msgctxt ""
"par_id3153363\n"
"help.text"
msgid "To quickly insert a hyphen, click in the word where you want to add the hyphen, and then press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Hyphen(-)."
-msgstr "Si desea insertar rápidamente un guión, haga clic en la palabra y, a continuación, pulse <switchinline select=\"sys\"><caseinline select=\"MAC\">Comando </caseinline><defaultinline>Ctrl</defaultinline></switchinline> + guión (-)."
+msgstr "Si desea insertar rápidamente un guion, pulse en la palabra y, a continuación, oprima <switchinline select=\"sys\"><caseinline select=\"MAC\">⌘-</caseinline><defaultinline>Ctrl + -</defaultinline></switchinline>."
#: using_hyphen.xhp
msgctxt ""
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 02febbe9567..cdc25f40576 100644
--- a/source/es/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/es/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-22 13:17+0200\n"
-"PO-Revision-Date: 2018-05-16 03:05+0000\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
+"PO-Revision-Date: 2018-06-07 18:59+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: es\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1526439924.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1528397980.000000\n"
#: BaseWindowState.xcu
msgctxt ""
@@ -149,7 +149,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Form Horizontal Scroll Bar"
-msgstr ""
+msgstr "Barra de desplazamiento horizontal de formulario"
#: BasicIDECommands.xcu
msgctxt ""
@@ -25135,7 +25135,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Standard Toolbar"
-msgstr ""
+msgstr "Barras estándares"
#: ToolbarMode.xcu
msgctxt ""
@@ -25180,7 +25180,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Tabbed"
-msgstr "Con pestañas"
+msgstr "En pestañas"
#: ToolbarMode.xcu
msgctxt ""
@@ -25189,7 +25189,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Tabbed Compact"
-msgstr "Compacta, con pestañas"
+msgstr "En pestañas, compacta"
#: ToolbarMode.xcu
msgctxt ""
@@ -25198,7 +25198,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Groupedbar Compact"
-msgstr "Por grupos, compacta"
+msgstr "Agrupada, compacta"
#: ToolbarMode.xcu
msgctxt ""
@@ -25207,7 +25207,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Groupedbar"
-msgstr "Por grupos"
+msgstr "Barra agrupada"
#: ToolbarMode.xcu
msgctxt ""
@@ -25216,7 +25216,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Standard Toolbar"
-msgstr ""
+msgstr "Barras estándares"
#: ToolbarMode.xcu
msgctxt ""
@@ -25252,7 +25252,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Tabbed"
-msgstr "Con pestañas"
+msgstr "En pestañas"
#: ToolbarMode.xcu
msgctxt ""
@@ -25261,7 +25261,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Groupedbar Compact"
-msgstr "Por grupos, compacta"
+msgstr "Agrupada, compacta"
#: ToolbarMode.xcu
msgctxt ""
@@ -25270,7 +25270,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Groupedbar"
-msgstr "Por grupos"
+msgstr "Barra agrupada"
#: ToolbarMode.xcu
msgctxt ""
@@ -25279,7 +25279,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Standard Toolbar"
-msgstr ""
+msgstr "Barras estándares"
#: ToolbarMode.xcu
msgctxt ""
@@ -25315,7 +25315,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Groupedbar Compact"
-msgstr "Por grupos, compacta"
+msgstr "Agrupada, compacta"
#: ToolbarMode.xcu
msgctxt ""
@@ -25324,7 +25324,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Groupedbar"
-msgstr "Por grupos"
+msgstr "Barra agrupada"
#: ToolbarMode.xcu
msgctxt ""
@@ -25333,7 +25333,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Standard Toolbar"
-msgstr ""
+msgstr "Barras estándares"
#: ToolbarMode.xcu
msgctxt ""
@@ -25342,7 +25342,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Tabbed"
-msgstr ""
+msgstr "En pestañas"
#: ToolbarMode.xcu
msgctxt ""
@@ -25351,7 +25351,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Groupedbar Compact"
-msgstr ""
+msgstr "Agrupada compacta"
#: ToolbarMode.xcu
msgctxt ""
@@ -25360,7 +25360,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Groupedbar"
-msgstr ""
+msgstr "Barra agrupada"
#: ToolbarMode.xcu
msgctxt ""
@@ -25369,7 +25369,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Standard Toolbar"
-msgstr ""
+msgstr "Barras estándares"
#: ToolbarMode.xcu
msgctxt ""
@@ -25378,7 +25378,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Standard Toolbar"
-msgstr ""
+msgstr "Barras estándares"
#: WriterCommands.xcu
msgctxt ""
@@ -26520,8 +26520,8 @@ msgctxt ""
"..WriterCommands.UserInterface.Commands..uno:TextAttributes\n"
"Label\n"
"value.text"
-msgid "Text Attributes"
-msgstr "Atributos de texto"
+msgid "Text Attributes..."
+msgstr "Atributos de texto…"
#: WriterCommands.xcu
msgctxt ""
diff --git a/source/es/readlicense_oo/docs.po b/source/es/readlicense_oo/docs.po
index 804a8f226ea..81b1b8bbb13 100644
--- a/source/es/readlicense_oo/docs.po
+++ b/source/es/readlicense_oo/docs.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: 2018-04-17 15:54+0200\n"
-"PO-Revision-Date: 2018-04-18 06:40+0000\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
+"PO-Revision-Date: 2018-06-06 08:27+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: es\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1524033651.000000\n"
+"X-POOTLE-MTIME: 1528273650.000000\n"
#: readme.xrm
msgctxt ""
@@ -117,8 +117,8 @@ msgctxt ""
"readme.xrm\n"
"macxiOSX\n"
"readmeitem.text"
-msgid "MacOSX 10.8 (Mountain Lion) or higher"
-msgstr "Apple macOS 10.8 (Mountain Lion) o más reciente"
+msgid "MacOSX 10.9 (Mavericks) or higher"
+msgstr "macOS 10.9 (Mavericks) o más reciente"
#: readme.xrm
msgctxt ""
@@ -182,7 +182,7 @@ msgctxt ""
"s2we35\n"
"readmeitem.text"
msgid "Linux Kernel version 2.6.18 or higher;"
-msgstr "Núcleo Linux versión 2.6.18 o superior;"
+msgstr "Núcleo Linux versión 2.6.18 o más reciente;"
#: readme.xrm
msgctxt ""
@@ -190,7 +190,7 @@ msgctxt ""
"s253we\n"
"readmeitem.text"
msgid "glibc2 version 2.5 or higher;"
-msgstr "glibc2 versión 2.5 o superior;"
+msgstr "glibc2 versión 2.5 o más reciente;"
#: readme.xrm
msgctxt ""
@@ -198,7 +198,7 @@ msgctxt ""
"s255we\n"
"readmeitem.text"
msgid "freetype version 2.2.0 or higher;"
-msgstr "freetype versión 2.2.0 o superior;"
+msgstr "freetype versión 2.2.0 o más reciente;"
#: readme.xrm
msgctxt ""
@@ -206,7 +206,7 @@ msgctxt ""
"s256we\n"
"readmeitem.text"
msgid "gtk version 2.10.4 or higher;"
-msgstr "gtk versión 2.10.4 o superior;"
+msgstr "gtk versión 2.10.4 o más reciente;"
#: readme.xrm
msgctxt ""
@@ -214,7 +214,7 @@ msgctxt ""
"wd2dff\n"
"readmeitem.text"
msgid "Gnome 2.16 or higher, with the gail 1.9 and the at-spi 1.7 packages (required for support for assistive technology [AT] tools), or another compatible GUI (such as KDE, among others)."
-msgstr "Gnome 2.16 o superior, con los paquetes gail 1.9 y at-spi 1.7 (necesario para la compatibilidad con tecnologías de asistencia [AT]), u otra IGU compatible (como KDE, entre otras)"
+msgstr "Gnome 2.16 o más reciente, con los paquetes gail 1.9 y at-spi 1.7 (necesario para la compatibilidad con tecnologías de asistencia [AT]), u otra IGU compatible (como KDE, entre otras)"
#: readme.xrm
msgctxt ""
diff --git a/source/es/sc/messages.po b/source/es/sc/messages.po
index 73fe3b1442e..c2142cd3ad6 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: 2018-05-22 13:16+0200\n"
-"PO-Revision-Date: 2018-05-23 22:48+0000\n"
+"POT-Creation-Date: 2018-06-12 14:40+0200\n"
+"PO-Revision-Date: 2018-06-07 17:36+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: es\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1527115691.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1528393000.000000\n"
#: sc/inc/compiler.hrc:27
msgctxt "RID_FUNCTION_CATEGORIES"
@@ -1121,8 +1121,8 @@ msgid ""
"AutoFormat could not be created. \n"
"Try again using a different name."
msgstr ""
-"Ha ingresado un nombre no válido.\n"
-"No se pudo crear el autoformato.\n"
+"Ha proporcionado un nombre no válido.\n"
+"No se pudo crear el formato automático.\n"
"Intente nuevamente utilizando otro nombre."
#: sc/inc/globstr.hrc:248
@@ -1870,16 +1870,21 @@ msgid "Nested arrays are not supported."
msgstr "No se admiten las matrices anidadas."
#: sc/inc/globstr.hrc:390
+msgctxt "STR_ERR_LONG_BAD_ARRAY_CONTENT"
+msgid "Unsupported inline array content."
+msgstr ""
+
+#: sc/inc/globstr.hrc:391
msgctxt "STR_UNDO_TEXTTOCOLUMNS"
msgid "Text to Columns"
msgstr "Texto a columnas"
-#: sc/inc/globstr.hrc:391
+#: sc/inc/globstr.hrc:392
msgctxt "STR_DOC_UPDATED"
msgid "Your spreadsheet has been updated with changes saved by other users."
msgstr "Se ha actualizado la hoja de cálculo con cambios guardados por otros usuarios."
-#: sc/inc/globstr.hrc:392
+#: sc/inc/globstr.hrc:393
msgctxt "STR_DOC_WILLBESAVED"
msgid ""
"The spreadsheet must be saved now to activate sharing mode.\n"
@@ -1890,7 +1895,7 @@ msgstr ""
"\n"
"¿Quiere continuar?"
-#: sc/inc/globstr.hrc:393
+#: sc/inc/globstr.hrc:394
msgctxt "STR_DOC_WILLNOTBESAVED"
msgid ""
"Already resolved merge conflicts will be lost and your changes to the shared spreadsheet will not be saved.\n"
@@ -1901,7 +1906,7 @@ msgstr ""
"\n"
"¿Quiere continuar?"
-#: sc/inc/globstr.hrc:394
+#: sc/inc/globstr.hrc:395
msgctxt "STR_DOC_DISABLESHARED"
msgid ""
"Disabling shared mode of a spreadsheet hinders all other users of the shared spreadsheet to merge back their work.\n"
@@ -1912,7 +1917,7 @@ msgstr ""
"\n"
"¿Quiere continuar?"
-#: sc/inc/globstr.hrc:395
+#: sc/inc/globstr.hrc:396
msgctxt "STR_DOC_NOLONGERSHARED"
msgid ""
"This spreadsheet is no longer in shared mode.\n"
@@ -1923,7 +1928,7 @@ msgstr ""
"\n"
"Guarde su hoja de cálculo en un archivo separado y combine sus cambios en la hoja de cálculo compartida manualmente."
-#: sc/inc/globstr.hrc:396
+#: sc/inc/globstr.hrc:397
msgctxt "STR_FILE_LOCKED_TRY_LATER"
msgid ""
"The shared spreadsheet file is locked due to a merge in progress by user: '%1'\n"
@@ -1934,7 +1939,7 @@ msgstr ""
"\n"
"No se puede desactivar el modo compartido de un archivo bloqueado. Inténtelo de nuevo más tarde."
-#: sc/inc/globstr.hrc:397
+#: sc/inc/globstr.hrc:398
msgctxt "STR_FILE_LOCKED_SAVE_LATER"
msgid ""
"The shared spreadsheet file is locked due to a merge in progress by user: '%1'\n"
@@ -1945,147 +1950,147 @@ msgstr ""
"\n"
"Intente guardar sus cambios de nuevo más tarde."
-#: sc/inc/globstr.hrc:398
+#: sc/inc/globstr.hrc:399
msgctxt "STR_UNKNOWN_USER"
msgid "Unknown User"
msgstr "Usuario desconocido"
-#: sc/inc/globstr.hrc:399
+#: sc/inc/globstr.hrc:400
msgctxt "STR_SHAPE_AUTOSHAPE"
msgid "AutoShape"
msgstr "AutoForma"
-#: sc/inc/globstr.hrc:400
+#: sc/inc/globstr.hrc:401
msgctxt "STR_SHAPE_RECTANGLE"
msgid "Rectangle"
msgstr "Rectángulo"
-#: sc/inc/globstr.hrc:401
+#: sc/inc/globstr.hrc:402
msgctxt "STR_SHAPE_LINE"
msgid "Line"
msgstr "Línea"
-#: sc/inc/globstr.hrc:402
+#: sc/inc/globstr.hrc:403
msgctxt "STR_SHAPE_OVAL"
msgid "Oval"
msgstr "Óvalo"
-#: sc/inc/globstr.hrc:403
+#: sc/inc/globstr.hrc:404
msgctxt "STR_FORM_BUTTON"
msgid "Button"
msgstr "Botón"
-#: sc/inc/globstr.hrc:404
+#: sc/inc/globstr.hrc:405
msgctxt "STR_FORM_CHECKBOX"
msgid "Check Box"
msgstr "Casilla de verificación"
-#: sc/inc/globstr.hrc:405
+#: sc/inc/globstr.hrc:406
msgctxt "STR_FORM_OPTIONBUTTON"
msgid "Option Button"
msgstr "Botón de opción"
-#: sc/inc/globstr.hrc:406
+#: sc/inc/globstr.hrc:407
msgctxt "STR_FORM_LABEL"
msgid "Label"
msgstr "Etiqueta"
-#: sc/inc/globstr.hrc:407
+#: sc/inc/globstr.hrc:408
msgctxt "STR_FORM_LISTBOX"
msgid "List Box"
msgstr "Cuadro de lista"
-#: sc/inc/globstr.hrc:408
+#: sc/inc/globstr.hrc:409
msgctxt "STR_FORM_GROUPBOX"
msgid "Group Box"
msgstr "Casilla de grupo"
-#: sc/inc/globstr.hrc:409
+#: sc/inc/globstr.hrc:410
msgctxt "STR_FORM_DROPDOWN"
msgid "Drop Down"
msgstr "Desplegable"
-#: sc/inc/globstr.hrc:410
+#: sc/inc/globstr.hrc:411
msgctxt "STR_FORM_SPINNER"
msgid "Spinner"
msgstr "Selector"
-#: sc/inc/globstr.hrc:411
+#: sc/inc/globstr.hrc:412
msgctxt "STR_FORM_SCROLLBAR"
msgid "Scroll Bar"
msgstr "Barra de desplazamiento"
-#: sc/inc/globstr.hrc:412
+#: sc/inc/globstr.hrc:413
msgctxt "STR_STYLE_FAMILY_CELL"
msgid "Cell Styles"
msgstr "Estilos de celda"
-#: sc/inc/globstr.hrc:413
+#: sc/inc/globstr.hrc:414
msgctxt "STR_STYLE_FAMILY_PAGE"
msgid "Page Styles"
msgstr "Estilos de página"
-#: sc/inc/globstr.hrc:414
+#: sc/inc/globstr.hrc:415
msgctxt "STR_ERR_DATAPILOTSOURCE"
msgid "Pivot table source data is invalid."
msgstr "Los datos de origen para la tabla dinámica no son válidos."
-#: sc/inc/globstr.hrc:415
+#: sc/inc/globstr.hrc:416
msgctxt "STR_OPTIONS_WARN_SEPARATORS"
msgid "Because the current formula separator settings conflict with the locale, the formula separators have been reset to their default values."
msgstr "Los separadores de fórmula han sido restablecidos a sus valores predeterminados debido a que la configuración actual del separador de fórmula entra en conflicto con la configuración regional."
-#: sc/inc/globstr.hrc:416
+#: sc/inc/globstr.hrc:417
msgctxt "STR_UNDO_INSERT_CURRENT_DATE"
msgid "Insert Current Date"
msgstr "Insertar la fecha actual"
-#: sc/inc/globstr.hrc:417
+#: sc/inc/globstr.hrc:418
msgctxt "STR_UNDO_INSERT_CURRENT_TIME"
msgid "Insert Current Time"
msgstr "Insertar la hora actual"
-#: sc/inc/globstr.hrc:418
+#: sc/inc/globstr.hrc:419
msgctxt "STR_MANAGE_NAMES"
msgid "Manage Names..."
msgstr "Gestionar nombres..."
-#: sc/inc/globstr.hrc:419
+#: sc/inc/globstr.hrc:420
msgctxt "STR_HEADER_NAME"
msgid "Name"
msgstr "Nombre"
-#: sc/inc/globstr.hrc:420
+#: sc/inc/globstr.hrc:421
msgctxt "STR_HEADER_RANGE_OR_EXPR"
msgid "Range or formula expression"
msgstr "Intervalo o expresión de fórmula"
-#: sc/inc/globstr.hrc:421
+#: sc/inc/globstr.hrc:422
msgctxt "STR_HEADER_SCOPE"
msgid "Scope"
msgstr "Ámbito"
-#: sc/inc/globstr.hrc:422
+#: sc/inc/globstr.hrc:423
msgctxt "STR_MULTI_SELECT"
msgid "(multiple)"
msgstr "(múltiple)"
-#: sc/inc/globstr.hrc:423
+#: sc/inc/globstr.hrc:424
msgctxt "STR_GLOBAL_SCOPE"
msgid "Document (Global)"
msgstr "Documento (Global)"
-#: sc/inc/globstr.hrc:424
+#: sc/inc/globstr.hrc:425
msgctxt "STR_ERR_NAME_EXISTS"
msgid "Invalid name. Already in use for the selected scope."
msgstr "El nombre no es válido. Ya está en uso en el ámbito seleccionado."
-#: sc/inc/globstr.hrc:425
+#: sc/inc/globstr.hrc:426
msgctxt "STR_ERR_NAME_INVALID"
msgid "Invalid name. Only use letters, numbers and underscore."
msgstr "El nombre no es válido. Use solo letras, números y guiones bajos."
-#: sc/inc/globstr.hrc:426
+#: sc/inc/globstr.hrc:427
msgctxt "STR_UNSAVED_EXT_REF"
msgid ""
"This Document contains external references to unsaved documents.\n"
@@ -2096,217 +2101,217 @@ msgstr ""
"\n"
"¿Quiere continuar?"
-#: sc/inc/globstr.hrc:427
+#: sc/inc/globstr.hrc:428
msgctxt "STR_CLOSE_WITH_UNSAVED_REFS"
msgid "This Document is referenced by another document and not yet saved. Closing it without saving will result in data loss."
msgstr "Otro documento hace referencia a este documento que aún no se guardó. Si lo cierra sin guardar provocará una pérdida de datos."
-#: sc/inc/globstr.hrc:428
+#: sc/inc/globstr.hrc:429
msgctxt "STR_HEADER_RANGE"
msgid "Range"
msgstr "Intervalo"
-#: sc/inc/globstr.hrc:429
+#: sc/inc/globstr.hrc:430
msgctxt "STR_HEADER_COND"
msgid "First Condition"
msgstr "Primera condición"
-#: sc/inc/globstr.hrc:430
+#: sc/inc/globstr.hrc:431
msgctxt "STR_COND_CONDITION"
msgid "Cell value is"
msgstr "El valor de la celda es"
-#: sc/inc/globstr.hrc:431
+#: sc/inc/globstr.hrc:432
msgctxt "STR_COND_COLORSCALE"
msgid "ColorScale"
msgstr "EscalaColor"
-#: sc/inc/globstr.hrc:432
+#: sc/inc/globstr.hrc:433
msgctxt "STR_COND_DATABAR"
msgid "DataBar"
msgstr "BarraDatos"
-#: sc/inc/globstr.hrc:433
+#: sc/inc/globstr.hrc:434
msgctxt "STR_COND_ICONSET"
msgid "IconSet"
msgstr "ConjuntoIconos"
-#: sc/inc/globstr.hrc:434
+#: sc/inc/globstr.hrc:435
msgctxt "STR_COND_BETWEEN"
msgid "between"
msgstr "entre"
-#: sc/inc/globstr.hrc:435
+#: sc/inc/globstr.hrc:436
msgctxt "STR_COND_NOTBETWEEN"
msgid "not between"
msgstr "no entre"
-#: sc/inc/globstr.hrc:436
+#: sc/inc/globstr.hrc:437
msgctxt "STR_COND_UNIQUE"
msgid "unique"
msgstr "único"
-#: sc/inc/globstr.hrc:437
+#: sc/inc/globstr.hrc:438
msgctxt "STR_COND_DUPLICATE"
msgid "duplicate"
msgstr "duplicado"
-#: sc/inc/globstr.hrc:438
+#: sc/inc/globstr.hrc:439
msgctxt "STR_COND_FORMULA"
msgid "Formula is"
msgstr "La fórmula es"
-#: sc/inc/globstr.hrc:439
+#: sc/inc/globstr.hrc:440
msgctxt "STR_COND_TOP10"
msgid "Top Elements"
msgstr "Elementos superiores"
-#: sc/inc/globstr.hrc:440
+#: sc/inc/globstr.hrc:441
msgctxt "STR_COND_BOTTOM10"
msgid "Bottom Elements"
msgstr "Elementos inferiores"
-#: sc/inc/globstr.hrc:441
+#: sc/inc/globstr.hrc:442
msgctxt "STR_COND_TOP_PERCENT"
msgid "Top Percent"
msgstr "Porcentaje superior"
-#: sc/inc/globstr.hrc:442
+#: sc/inc/globstr.hrc:443
msgctxt "STR_COND_DATE"
msgid "Date is"
msgstr "La fecha es"
-#: sc/inc/globstr.hrc:443
+#: sc/inc/globstr.hrc:444
msgctxt "STR_COND_BOTTOM_PERCENT"
msgid "Bottom Percent"
msgstr "Porcentaje inferior"
-#: sc/inc/globstr.hrc:444
+#: sc/inc/globstr.hrc:445
msgctxt "STR_COND_ABOVE_AVERAGE"
msgid "Above Average"
msgstr "Encima del promedio"
-#: sc/inc/globstr.hrc:445
+#: sc/inc/globstr.hrc:446
msgctxt "STR_COND_BELOW_AVERAGE"
msgid "Below Average"
msgstr "Menor que el promedio"
-#: sc/inc/globstr.hrc:446
+#: sc/inc/globstr.hrc:447
msgctxt "STR_COND_ABOVE_EQUAL_AVERAGE"
msgid "Above or equal Average"
msgstr "Igual o superior al promedio"
-#: sc/inc/globstr.hrc:447
+#: sc/inc/globstr.hrc:448
msgctxt "STR_COND_BELOW_EQUAL_AVERAGE"
msgid "Below or equal Average"
msgstr "Igual o inferior al promedio"
-#: sc/inc/globstr.hrc:448
+#: sc/inc/globstr.hrc:449
msgctxt "STR_COND_ERROR"
msgid "an Error code"
msgstr "un Código de error"
-#: sc/inc/globstr.hrc:449
+#: sc/inc/globstr.hrc:450
msgctxt "STR_COND_NOERROR"
msgid "not an Error code"
msgstr "no es un Código de error"
-#: sc/inc/globstr.hrc:450
+#: sc/inc/globstr.hrc:451
msgctxt "STR_COND_BEGINS_WITH"
msgid "Begins with"
msgstr "Comienza con"
-#: sc/inc/globstr.hrc:451
+#: sc/inc/globstr.hrc:452
msgctxt "STR_COND_ENDS_WITH"
msgid "Ends with"
msgstr "Termina con"
-#: sc/inc/globstr.hrc:452
+#: sc/inc/globstr.hrc:453
msgctxt "STR_COND_CONTAINS"
msgid "Contains"
msgstr "Contiene"
-#: sc/inc/globstr.hrc:453
+#: sc/inc/globstr.hrc:454
msgctxt "STR_COND_NOT_CONTAINS"
msgid "Not Contains"
msgstr "No contiene"
-#: sc/inc/globstr.hrc:454
+#: sc/inc/globstr.hrc:455
msgctxt "STR_COND_TODAY"
msgid "today"
msgstr "hoy"
-#: sc/inc/globstr.hrc:455
+#: sc/inc/globstr.hrc:456
msgctxt "STR_COND_YESTERDAY"
msgid "yesterday"
msgstr "ayer"
-#: sc/inc/globstr.hrc:456
+#: sc/inc/globstr.hrc:457
msgctxt "STR_COND_TOMORROW"
msgid "tomorrow"
msgstr "mañana"
-#: sc/inc/globstr.hrc:457
+#: sc/inc/globstr.hrc:458
msgctxt "STR_COND_LAST7DAYS"
msgid "in the last 7 days"
msgstr "en los últimos 7 días"
-#: sc/inc/globstr.hrc:458
+#: sc/inc/globstr.hrc:459
msgctxt "STR_COND_THISWEEK"
msgid "this week"
msgstr "esta semana"
-#: sc/inc/globstr.hrc:459
+#: sc/inc/globstr.hrc:460
msgctxt "STR_COND_LASTWEEK"
msgid "last week"
msgstr "semana pasada"
-#: sc/inc/globstr.hrc:460
+#: sc/inc/globstr.hrc:461
msgctxt "STR_COND_NEXTWEEK"
msgid "next week"
msgstr "semana siguiente"
-#: sc/inc/globstr.hrc:461
+#: sc/inc/globstr.hrc:462
msgctxt "STR_COND_THISMONTH"
msgid "this month"
msgstr "este mes"
-#: sc/inc/globstr.hrc:462
+#: sc/inc/globstr.hrc:463
msgctxt "STR_COND_LASTMONTH"
msgid "last month"
msgstr "mes pasado"
-#: sc/inc/globstr.hrc:463
+#: sc/inc/globstr.hrc:464
msgctxt "STR_COND_NEXTMONTH"
msgid "next month"
msgstr "mes siguiente"
-#: sc/inc/globstr.hrc:464
+#: sc/inc/globstr.hrc:465
msgctxt "STR_COND_THISYEAR"
msgid "this year"
msgstr "este año"
-#: sc/inc/globstr.hrc:465
+#: sc/inc/globstr.hrc:466
msgctxt "STR_COND_LASTYEAR"
msgid "last year"
msgstr "año pasado"
-#: sc/inc/globstr.hrc:466
+#: sc/inc/globstr.hrc:467
msgctxt "STR_COND_NEXTYEAR"
msgid "next year"
msgstr "año próximo"
-#: sc/inc/globstr.hrc:467
+#: sc/inc/globstr.hrc:468
msgctxt "STR_COND_AND"
msgid "and"
msgstr "y"
-#: sc/inc/globstr.hrc:468
+#: sc/inc/globstr.hrc:469
msgctxt "STR_ERR_CONDFORMAT_PROTECTED"
msgid "Conditional Formats can not be created, deleted or changed in protected sheets."
msgstr "No se pueden crear, eliminar o cambiar formatos condicionales en hojas protegidas."
-#: sc/inc/globstr.hrc:469
+#: sc/inc/globstr.hrc:470
msgctxt "STR_EDIT_EXISTING_COND_FORMATS"
msgid ""
"The selected cell already contains conditional formatting. You can either edit the existing conditional format or you define a new overlapping conditional format.\n"
@@ -2317,7 +2322,7 @@ msgstr ""
"\n"
"¿Quiere editar el formato condicional existente?"
-#: sc/inc/globstr.hrc:470
+#: sc/inc/globstr.hrc:471
msgctxt "STR_QUERY_FORMULA_RECALC_ONLOAD_ODS"
msgid ""
"This document was last saved by an application other than %PRODUCTNAME. Some formula cells may produce different results when recalculated.\n"
@@ -2328,7 +2333,7 @@ msgstr ""
"\n"
"¿Quiere recalcular ahora todas las celdas con fórmulas de este documento?"
-#: sc/inc/globstr.hrc:471
+#: sc/inc/globstr.hrc:472
msgctxt "STR_QUERY_FORMULA_RECALC_ONLOAD_XLS"
msgid ""
"This document was last saved by Excel. Some formula cells may produce different results when recalculated.\n"
@@ -2339,77 +2344,77 @@ msgstr ""
"\n"
"¿Quiere recalcular todas las celdas con fórmulas ahora?"
-#: sc/inc/globstr.hrc:472
+#: sc/inc/globstr.hrc:473
msgctxt "STR_NO_INSERT_DELETE_OVER_PIVOT_TABLE"
msgid "You cannot insert or delete cells when the affected range intersects with pivot table."
msgstr "No puede insertar o eliminar celdas cuando el área afectada cruza una tabla dinámica."
-#: sc/inc/globstr.hrc:473
+#: sc/inc/globstr.hrc:474
msgctxt "STR_DPFIELD_GROUP_BY_SECONDS"
msgid "Seconds"
msgstr "Segundos"
-#: sc/inc/globstr.hrc:474
+#: sc/inc/globstr.hrc:475
msgctxt "STR_DPFIELD_GROUP_BY_MINUTES"
msgid "Minutes"
msgstr "Minutos"
-#: sc/inc/globstr.hrc:475
+#: sc/inc/globstr.hrc:476
msgctxt "STR_DPFIELD_GROUP_BY_HOURS"
msgid "Hours"
msgstr "Horas"
-#: sc/inc/globstr.hrc:476
+#: sc/inc/globstr.hrc:477
msgctxt "STR_DPFIELD_GROUP_BY_DAYS"
msgid "Days"
msgstr "Días"
-#: sc/inc/globstr.hrc:477
+#: sc/inc/globstr.hrc:478
msgctxt "STR_DPFIELD_GROUP_BY_MONTHS"
msgid "Months"
msgstr "Meses"
-#: sc/inc/globstr.hrc:478
+#: sc/inc/globstr.hrc:479
msgctxt "STR_DPFIELD_GROUP_BY_QUARTERS"
msgid "Quarters"
msgstr "Trimestres"
-#: sc/inc/globstr.hrc:479
+#: sc/inc/globstr.hrc:480
msgctxt "STR_DPFIELD_GROUP_BY_YEARS"
msgid "Years"
msgstr "Años"
-#: sc/inc/globstr.hrc:480
+#: sc/inc/globstr.hrc:481
msgctxt "STR_INVALIDVAL"
msgid "Invalid target value."
msgstr "Valor de destino no válido."
-#: sc/inc/globstr.hrc:481
+#: sc/inc/globstr.hrc:482
msgctxt "STR_INVALIDVAR"
msgid "Undefined name for variable cell."
msgstr "No se ha definido el nombre de la celda de la variable."
-#: sc/inc/globstr.hrc:482
+#: sc/inc/globstr.hrc:483
msgctxt "STR_INVALIDFORM"
msgid "Undefined name as formula cell."
msgstr "Nombre no definido como celda de fórmula."
-#: sc/inc/globstr.hrc:483
+#: sc/inc/globstr.hrc:484
msgctxt "STR_NOFORMULA"
msgid "Formula cell must contain a formula."
msgstr "La celda de fórmula debe contener una fórmula."
-#: sc/inc/globstr.hrc:484
+#: sc/inc/globstr.hrc:485
msgctxt "STR_INVALIDINPUT"
msgid "Invalid input."
msgstr "La entrada no es válida."
-#: sc/inc/globstr.hrc:485
+#: sc/inc/globstr.hrc:486
msgctxt "STR_INVALIDCONDITION"
msgid "Invalid condition."
msgstr "La condición no es válida."
-#: sc/inc/globstr.hrc:486
+#: sc/inc/globstr.hrc:487
msgctxt "STR_QUERYREMOVE"
msgid ""
"Should the entry\n"
@@ -2419,133 +2424,133 @@ msgstr ""
"¿Quiere eliminar la entrada\n"
"#?"
-#: sc/inc/globstr.hrc:487
+#: sc/inc/globstr.hrc:488
msgctxt "STR_COPYLIST"
msgid "Copy List"
msgstr "Copiar lista"
-#: sc/inc/globstr.hrc:488
+#: sc/inc/globstr.hrc:489
msgctxt "STR_COPYFROM"
msgid "List from"
msgstr "Lista de"
-#: sc/inc/globstr.hrc:489
+#: sc/inc/globstr.hrc:490
msgctxt "STR_COPYERR"
msgid "Cells without text have been ignored."
msgstr "Se ignoraron las celdas sin texto."
-#: sc/inc/globstr.hrc:490
+#: sc/inc/globstr.hrc:491
#, c-format
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%s-click to follow hyperlink:"
msgstr "%s + pulse para abrir hiperenlace:"
-#: sc/inc/globstr.hrc:491
+#: sc/inc/globstr.hrc:492
msgctxt "STR_CLICKHYPERLINK"
msgid "click to open hyperlink:"
msgstr "pulse para abrir hiperenlace:"
-#: sc/inc/globstr.hrc:492
+#: sc/inc/globstr.hrc:493
msgctxt "STR_PRINT_PREVIEW_NODATA"
msgid "No Data"
msgstr "Sin datos"
-#: sc/inc/globstr.hrc:493
+#: sc/inc/globstr.hrc:494
msgctxt "STR_PRINT_PREVIEW_EMPTY_RANGE"
msgid "Print Range Empty"
msgstr "Intervalo de impresión vacío"
-#: sc/inc/globstr.hrc:494
+#: sc/inc/globstr.hrc:495
msgctxt "STR_UNDO_CONDFORMAT"
msgid "Conditional Format"
msgstr "Formato condicional"
-#: sc/inc/globstr.hrc:495
+#: sc/inc/globstr.hrc:496
msgctxt "STR_UNDO_CONDFORMAT_LIST"
msgid "Conditional Formats"
msgstr "Formatos condicionales"
-#: sc/inc/globstr.hrc:496
+#: sc/inc/globstr.hrc:497
msgctxt "STR_UNDO_FORMULA_TO_VALUE"
msgid "Convert Formula To Value"
msgstr "Convertir fórmula en valor"
-#: sc/inc/globstr.hrc:497
+#: sc/inc/globstr.hrc:498
msgctxt "STR_UNQUOTED_STRING"
msgid "Strings without quotes are interpreted as column/row labels."
msgstr "Las cadenas no entrecomilladas se interpretan como etiquetas de columna/fila."
-#: sc/inc/globstr.hrc:498
+#: sc/inc/globstr.hrc:499
msgctxt "STR_ENTER_VALUE"
msgid "Enter a value!"
msgstr "Especifique un valor."
-#: sc/inc/globstr.hrc:499
+#: sc/inc/globstr.hrc:500
msgctxt "STR_TABLE_COUNT"
msgid "Sheet %1 of %2"
msgstr "Hoja %1 de %2"
-#: sc/inc/globstr.hrc:500
+#: sc/inc/globstr.hrc:501
msgctxt "STR_FUNCTIONS_FOUND"
msgid "%1 and %2 more"
msgstr "%1 y %2 más"
-#: sc/inc/globstr.hrc:501
+#: sc/inc/globstr.hrc:502
msgctxt "STR_GENERAL"
msgid "General"
msgstr "General"
-#: sc/inc/globstr.hrc:502
+#: sc/inc/globstr.hrc:503
msgctxt "STR_NUMBER"
msgid "Number"
msgstr "Número"
-#: sc/inc/globstr.hrc:503
+#: sc/inc/globstr.hrc:504
msgctxt "STR_PERCENT"
msgid "Percent"
msgstr "Porcentaje"
-#: sc/inc/globstr.hrc:504
+#: sc/inc/globstr.hrc:505
msgctxt "STR_CURRENCY"
msgid "Currency"
msgstr "Moneda"
-#: sc/inc/globstr.hrc:505
+#: sc/inc/globstr.hrc:506
msgctxt "STR_DATE"
msgid "Date"
msgstr "Fecha"
-#: sc/inc/globstr.hrc:506
+#: sc/inc/globstr.hrc:507
msgctxt "STR_TIME"
msgid "Time"
msgstr "Hora"
-#: sc/inc/globstr.hrc:507
+#: sc/inc/globstr.hrc:508
msgctxt "STR_SCIENTIFIC"
msgid "Scientific"
msgstr "Científico"
-#: sc/inc/globstr.hrc:508
+#: sc/inc/globstr.hrc:509
msgctxt "STR_FRACTION"
msgid "Fraction"
msgstr "Fracción"
-#: sc/inc/globstr.hrc:509
+#: sc/inc/globstr.hrc:510
msgctxt "STR_BOOLEAN_VALUE"
msgid "Boolean Value"
msgstr "Valor booleano"
-#: sc/inc/globstr.hrc:510
+#: sc/inc/globstr.hrc:511
msgctxt "STR_TEXT"
msgid "Text"
msgstr "Texto"
-#: sc/inc/globstr.hrc:511
+#: sc/inc/globstr.hrc:512
msgctxt "STR_QUERY_PIVOTTABLE_DELTAB"
msgid "The selected sheet(s) contain source data of related pivot tables that will be lost. Are you sure you want to delete the selected sheet(s)?"
msgstr "Las hojas seleccionadas contienen datos de origen para tablas dinámicas que se perderán con esta acción. ¿Confirma que quiere eliminar las hojas seleccionadas?"
-#: sc/inc/globstr.hrc:512
+#: sc/inc/globstr.hrc:513
msgctxt "STR_ERR_NAME_INVALID_CELL_REF"
msgid "Invalid name. Reference to a cell, or a range of cells not allowed."
msgstr "El nombre no es válido. No se permiten referencias a celdas o a intervalos de celdas."
@@ -10488,8 +10493,8 @@ msgstr "Modo"
#: sc/inc/scfuncs.hrc:3010
msgctxt "SC_OPCODE_T_TEST"
-msgid "Mode specifies the number of distribution tails to return. 1= one-tailed, 2 = two-tailed distribution"
-msgstr "El modo especifica el número de colas de distribución a devolver. 1=una cola, 2=distribución de cola doble"
+msgid "Mode specifies the number of distribution tails to return. 1 = one-tailed, 2 = two-tailed distribution"
+msgstr ""
#: sc/inc/scfuncs.hrc:3011
msgctxt "SC_OPCODE_T_TEST"
@@ -10533,8 +10538,8 @@ msgstr "Modo"
#: sc/inc/scfuncs.hrc:3024
msgctxt "SC_OPCODE_T_TEST_MS"
-msgid "Mode specifies the number of distribution tails to return. 1= one-tailed, 2 = two-tailed distribution"
-msgstr "El modo determina el número de colas de la distribución. 1= unilateral, 2= bilateral."
+msgid "Mode specifies the number of distribution tails to return. 1 = one-tailed, 2 = two-tailed distribution"
+msgstr ""
#: sc/inc/scfuncs.hrc:3025
msgctxt "SC_OPCODE_T_TEST_MS"
@@ -18020,22 +18025,22 @@ msgctxt "mergecellsdialog|MergeCellsDialog"
msgid "Merge Cells"
msgstr "Combinar celdas"
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:81
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:84
msgctxt "mergecellsdialog|label"
msgid "Some cells are not empty."
msgstr "Algunas celdas no están vacías"
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:96
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:99
msgctxt "mergecellsdialog|move-cells-radio"
msgid "Move the contents of the hidden cells into the first cell"
msgstr "Mover a la primera celda el contenido de las celdas ocultas "
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:112
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:115
msgctxt "mergecellsdialog|empty-cells-radio"
msgid "Empty the contents of the hidden cells"
msgstr "Vaciar el contenido de las celdas ocultas"
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:128
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:131
msgctxt "mergecellsdialog|keep-content-radio"
msgid "Keep the contents of the hidden cells"
msgstr "Mantener el contenido de las celdas ocultas"
@@ -18293,12 +18298,12 @@ msgstr "No se encontró ninguna solución."
#: sc/uiconfig/scalc/ui/notebookbar.ui:857
msgctxt "notebookbar|Help"
msgid "_Check for Updates..."
-msgstr ""
+msgstr "_Buscar actualizaciones…"
#: sc/uiconfig/scalc/ui/notebookbar.ui:1678
msgctxt "notebookbar|Tools"
msgid "_Check for Updates..."
-msgstr ""
+msgstr "_Buscar actualizaciones…"
#: sc/uiconfig/scalc/ui/notebookbar.ui:1952
msgctxt "notebookbar|FileLabel"
@@ -18444,7 +18449,7 @@ msgstr "Herramientas"
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:2945
msgctxt "notebookbar_groupedbar_compact|Menu"
msgid "_Check for Updates..."
-msgstr ""
+msgstr "_Buscar actualizaciones…"
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:2977
msgctxt "notebookbar_groupedbar_compact|defaultD"
@@ -18514,7 +18519,7 @@ msgstr "Nota"
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:3336
msgctxt "notebookbar_groupedbar_compact|Tools"
msgid "_Check for Updates..."
-msgstr ""
+msgstr "_Buscar actualizaciones…"
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:3630
msgctxt "notebookbar_groupedbar_compact|menub"
@@ -18707,12 +18712,12 @@ msgstr "_Ver"
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:1950
msgctxt "notebookbar_groupedbar_full|Help"
msgid "_Check for Updates..."
-msgstr ""
+msgstr "_Buscar actualizaciones…"
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2945
msgctxt "notebookbar_groupedbar_full|Menu"
msgid "_Check for Updates..."
-msgstr ""
+msgstr "_Buscar actualizaciones…"
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2977
msgctxt "notebookbar_groupedbar_full|defaultD"
@@ -18782,7 +18787,7 @@ msgstr "Nota"
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:3336
msgctxt "notebookbar_groupedbar_full|Tools"
msgid "_Check for Updates..."
-msgstr ""
+msgstr "_Buscar actualizaciones…"
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:3635
msgctxt "notebookbar_groupedbar_full|menub"
diff --git a/source/es/scp2/source/ooo.po b/source/es/scp2/source/ooo.po
index cdf609aa98b..88245208f83 100644
--- a/source/es/scp2/source/ooo.po
+++ b/source/es/scp2/source/ooo.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2018-05-23 23:20+0200\n"
-"PO-Revision-Date: 2018-01-24 02:05+0000\n"
+"PO-Revision-Date: 2018-05-27 20:35+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: es\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1516759543.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1527453334.000000\n"
#: folderitem_ooo.ulf
msgctxt ""
@@ -846,7 +846,7 @@ msgctxt ""
"STR_NAME_MODULE_HELPPACK_NB\n"
"LngText.text"
msgid "Norwegian (Bokmål)"
-msgstr "Noruego (Bokmål)"
+msgstr "Noruego (bokmål)"
#: module_helppack.ulf
msgctxt ""
@@ -854,7 +854,7 @@ msgctxt ""
"STR_DESC_MODULE_HELPPACK_NB\n"
"LngText.text"
msgid "Installs Norwegian (Bokmål) help in %PRODUCTNAME %PRODUCTVERSION"
-msgstr "Instala la ayuda en noruego (Bokmål) para %PRODUCTNAME %PRODUCTVERSION"
+msgstr "Instala la ayuda en noruego (bokmål) para %PRODUCTNAME %PRODUCTVERSION"
#: module_helppack.ulf
msgctxt ""
@@ -862,7 +862,7 @@ msgctxt ""
"STR_NAME_MODULE_HELPPACK_NN\n"
"LngText.text"
msgid "Norwegian (Nynorsk)"
-msgstr "Noruego (Nynorsk)"
+msgstr "Noruego (nynorsk)"
#: module_helppack.ulf
msgctxt ""
@@ -870,7 +870,7 @@ msgctxt ""
"STR_DESC_MODULE_HELPPACK_NN\n"
"LngText.text"
msgid "Installs Norwegian (Nynorsk) help in %PRODUCTNAME %PRODUCTVERSION"
-msgstr "Instala la ayuda en noruego (Nynorsk) para %PRODUCTNAME %PRODUCTVERSION"
+msgstr "Instala la ayuda en noruego (nynorsk) para %PRODUCTNAME %PRODUCTVERSION"
#: module_helppack.ulf
msgctxt ""
@@ -1774,7 +1774,7 @@ msgctxt ""
"STR_NAME_MODULE_HELPPACK_TE\n"
"LngText.text"
msgid "Telugu"
-msgstr "Telugú"
+msgstr "Telugu"
#: module_helppack.ulf
msgctxt ""
@@ -1782,7 +1782,7 @@ msgctxt ""
"STR_DESC_MODULE_HELPPACK_TE\n"
"LngText.text"
msgid "Installs Telugu help in %PRODUCTNAME %PRODUCTVERSION"
-msgstr "Instala la ayuda en telugú para %PRODUCTNAME %PRODUCTVERSION"
+msgstr "Instala la ayuda en telugu para %PRODUCTNAME %PRODUCTVERSION"
#: module_helppack.ulf
msgctxt ""
@@ -1886,7 +1886,7 @@ msgctxt ""
"STR_NAME_MODULE_LANGPACK_FY\n"
"LngText.text"
msgid "Frisian"
-msgstr ""
+msgstr "Frisón"
#: module_langpack.ulf
msgctxt ""
@@ -1894,7 +1894,7 @@ msgctxt ""
"STR_DESC_MODULE_LANGPACK_FY\n"
"LngText.text"
msgid "Installs the Frisian user interface"
-msgstr ""
+msgstr "Instala la interfaz de usuario en frisón"
#: module_langpack.ulf
msgctxt ""
@@ -2454,7 +2454,7 @@ msgctxt ""
"STR_DESC_MODULE_LANGPACK_MY\n"
"LngText.text"
msgid "Installs the Burmese (Myanmar) user interface"
-msgstr "Instala la interfaz de usuario en Birmano (Myanmar)"
+msgstr "Instala la interfaz de usuario en birmano"
#: module_langpack.ulf
msgctxt ""
@@ -2670,7 +2670,7 @@ msgctxt ""
"STR_NAME_MODULE_LANGPACK_NB\n"
"LngText.text"
msgid "Norwegian (Bokmål)"
-msgstr "Noruego (Bokmål)"
+msgstr "Noruego (bokmål)"
#: module_langpack.ulf
msgctxt ""
@@ -2678,7 +2678,7 @@ msgctxt ""
"STR_DESC_MODULE_LANGPACK_NB\n"
"LngText.text"
msgid "Installs the Norwegian (Bokmål) user interface"
-msgstr "Instala la interfaz de usuario en noruego (Bokmål)"
+msgstr "Instala la interfaz de usuario en noruego (bokmål)"
#: module_langpack.ulf
msgctxt ""
@@ -2686,7 +2686,7 @@ msgctxt ""
"STR_NAME_MODULE_LANGPACK_NN\n"
"LngText.text"
msgid "Norwegian (Nynorsk)"
-msgstr "Noruego (Nynorsk)"
+msgstr "Noruego (nynorsk)"
#: module_langpack.ulf
msgctxt ""
@@ -2694,7 +2694,7 @@ msgctxt ""
"STR_DESC_MODULE_LANGPACK_NN\n"
"LngText.text"
msgid "Installs the Norwegian (Nynorsk) user interface"
-msgstr "Instala la interfaz de usuario en noruego (Nynorsk)"
+msgstr "Instala la interfaz de usuario en noruego (nynorsk)"
#: module_langpack.ulf
msgctxt ""
diff --git a/source/es/sd/messages.po b/source/es/sd/messages.po
index 32149f49618..98b10d4e8cc 100644
--- a/source/es/sd/messages.po
+++ b/source/es/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: 2018-05-22 13:16+0200\n"
-"PO-Revision-Date: 2018-05-23 22:46+0000\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
+"PO-Revision-Date: 2018-06-07 17:23+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: es\n"
@@ -14,169 +14,169 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1527115580.000000\n"
+"X-POOTLE-MTIME: 1528392225.000000\n"
-#: sd/inc/DocumentRenderer.hrc:29
+#: sd/inc/DocumentRenderer.hrc:27
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Slides"
msgstr "Diapositivas"
-#: sd/inc/DocumentRenderer.hrc:30
+#: sd/inc/DocumentRenderer.hrc:28
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Handouts"
msgstr "Folletos"
-#: sd/inc/DocumentRenderer.hrc:31
+#: sd/inc/DocumentRenderer.hrc:29
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Notes"
msgstr "Notas"
-#: sd/inc/DocumentRenderer.hrc:32
+#: sd/inc/DocumentRenderer.hrc:30
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Outline"
msgstr "Esquema"
-#: sd/inc/DocumentRenderer.hrc:37
+#: sd/inc/DocumentRenderer.hrc:35
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "According to layout"
msgstr "Según la disposición"
-#: sd/inc/DocumentRenderer.hrc:38
+#: sd/inc/DocumentRenderer.hrc:36
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "1"
msgstr "1"
-#: sd/inc/DocumentRenderer.hrc:39
+#: sd/inc/DocumentRenderer.hrc:37
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "2"
msgstr "2"
-#: sd/inc/DocumentRenderer.hrc:40
+#: sd/inc/DocumentRenderer.hrc:38
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "3"
msgstr "3"
-#: sd/inc/DocumentRenderer.hrc:41
+#: sd/inc/DocumentRenderer.hrc:39
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "4"
msgstr "4"
-#: sd/inc/DocumentRenderer.hrc:42
+#: sd/inc/DocumentRenderer.hrc:40
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "6"
msgstr "6"
-#: sd/inc/DocumentRenderer.hrc:43
+#: sd/inc/DocumentRenderer.hrc:41
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "9"
msgstr "9"
-#: sd/inc/DocumentRenderer.hrc:48
+#: sd/inc/DocumentRenderer.hrc:46
msgctxt "STR_IMPRESS_PRINT_UI_ORDER_CHOICES"
msgid "Left to right, then down"
msgstr "De izquierda a derecha y hacia abajo"
-#: sd/inc/DocumentRenderer.hrc:49
+#: sd/inc/DocumentRenderer.hrc:47
msgctxt "STR_IMPRESS_PRINT_UI_ORDER_CHOICES"
msgid "Top to bottom, then right"
msgstr "De arriba a abajo y hacia la derecha"
-#: sd/inc/DocumentRenderer.hrc:54
+#: sd/inc/DocumentRenderer.hrc:52
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Original colors"
msgstr "Colores originales"
-#: sd/inc/DocumentRenderer.hrc:55
+#: sd/inc/DocumentRenderer.hrc:53
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Grayscale"
msgstr "Escala de grises"
-#: sd/inc/DocumentRenderer.hrc:56
+#: sd/inc/DocumentRenderer.hrc:54
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Black & white"
msgstr "Blanco y negro"
-#: sd/inc/DocumentRenderer.hrc:61
+#: sd/inc/DocumentRenderer.hrc:59
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Original size"
msgstr "Tamaño original"
-#: sd/inc/DocumentRenderer.hrc:62
+#: sd/inc/DocumentRenderer.hrc:60
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Fit to printable page"
msgstr "Ajustar a zona imprimible"
-#: sd/inc/DocumentRenderer.hrc:63
+#: sd/inc/DocumentRenderer.hrc:61
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Distribute on multiple sheets of paper"
msgstr "Distribuir en varias hojas de papel"
-#: sd/inc/DocumentRenderer.hrc:64
+#: sd/inc/DocumentRenderer.hrc:62
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Tile sheet of paper with repeated slides"
msgstr "Crear mosaico de diapositivas repetidas en la hoja"
-#: sd/inc/DocumentRenderer.hrc:69
+#: sd/inc/DocumentRenderer.hrc:67
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Original size"
msgstr "Tamaño original"
-#: sd/inc/DocumentRenderer.hrc:70
+#: sd/inc/DocumentRenderer.hrc:68
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Fit to printable page"
msgstr "Ajustar a zona imprimible"
-#: sd/inc/DocumentRenderer.hrc:71
+#: sd/inc/DocumentRenderer.hrc:69
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Distribute on multiple sheets of paper"
msgstr "Distribuir en varias hojas de papel"
-#: sd/inc/DocumentRenderer.hrc:72
+#: sd/inc/DocumentRenderer.hrc:70
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Tile sheet of paper with repeated pages"
msgstr "Crear mosaico de páginas repetidas en la hoja"
-#: sd/inc/DocumentRenderer.hrc:77
+#: sd/inc/DocumentRenderer.hrc:75
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "All pages"
msgstr "Todas las páginas"
-#: sd/inc/DocumentRenderer.hrc:78
+#: sd/inc/DocumentRenderer.hrc:76
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "Front sides / right pages"
msgstr "Anversos/páginas derechas"
-#: sd/inc/DocumentRenderer.hrc:79
+#: sd/inc/DocumentRenderer.hrc:77
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "Back sides / left pages"
msgstr "Reversos/páginas izquierdas"
-#: sd/inc/DocumentRenderer.hrc:84
+#: sd/inc/DocumentRenderer.hrc:82
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~All slides"
msgstr "~Todas las diapositivas"
-#: sd/inc/DocumentRenderer.hrc:85
+#: sd/inc/DocumentRenderer.hrc:83
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~Slides"
msgstr "~Diapositivas"
-#: sd/inc/DocumentRenderer.hrc:86
+#: sd/inc/DocumentRenderer.hrc:84
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Se~lection"
msgstr "Se~lección"
-#: sd/inc/DocumentRenderer.hrc:91
+#: sd/inc/DocumentRenderer.hrc:89
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~All pages"
msgstr "~Todas las páginas"
-#: sd/inc/DocumentRenderer.hrc:92
+#: sd/inc/DocumentRenderer.hrc:90
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Pa~ges"
msgstr "Pá~ginas"
-#: sd/inc/DocumentRenderer.hrc:93
+#: sd/inc/DocumentRenderer.hrc:91
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Se~lection"
msgstr "Se~lección"
@@ -1717,52 +1717,52 @@ msgstr "Objeto sin relleno ni línea"
#: sd/inc/strings.hrc:323
msgctxt "STR_POOLSHEET_FILLED"
msgid "Filled"
-msgstr ""
+msgstr "Rellenado"
#: sd/inc/strings.hrc:324
msgctxt "STR_POOLSHEET_FILLED_BLUE"
msgid "Filled Blue"
-msgstr ""
+msgstr "Rellenado azul"
#: sd/inc/strings.hrc:325
msgctxt "STR_POOLSHEET_FILLED_GREEN"
msgid "Filled Green"
-msgstr ""
+msgstr "Rellenado verde"
#: sd/inc/strings.hrc:326
msgctxt "STR_POOLSHEET_FILLED_YELLOW"
msgid "Filled Yellow"
-msgstr ""
+msgstr "Rellenado amarillo"
#: sd/inc/strings.hrc:327
msgctxt "STR_POOLSHEET_FILLED_RED"
msgid "Filled Red"
-msgstr ""
+msgstr "Rellenado rojo"
#: sd/inc/strings.hrc:329
msgctxt "STR_POOLSHEET_OUTLINE"
msgid "Outlined"
-msgstr ""
+msgstr "Contorneado"
#: sd/inc/strings.hrc:330
msgctxt "STR_POOLSHEET_OUTLINE_BLUE"
msgid "Outlined Blue"
-msgstr ""
+msgstr "Contorneado azul"
#: sd/inc/strings.hrc:331
msgctxt "STR_POOLSHEET_OUTLINE_GREEN"
msgid "Outlined Green"
-msgstr ""
+msgstr "Contorneado verde"
#: sd/inc/strings.hrc:332
msgctxt "STR_POOLSHEET_OUTLINE_YELLOW"
msgid "Outlined Yellow"
-msgstr ""
+msgstr "Contorneado amarillo"
#: sd/inc/strings.hrc:333
msgctxt "STR_POOLSHEET_OUTLINE_RED"
msgid "Outlined Red"
-msgstr ""
+msgstr "Contorneado rojo"
#: sd/inc/strings.hrc:335
msgctxt "STR_PSEUDOSHEET_TITLE"
@@ -3608,12 +3608,12 @@ msgstr "Mostrar formas"
#: sd/uiconfig/simpress/ui/notebookbar.ui:967
msgctxt "notebookbar|Help"
msgid "_Check for Updates..."
-msgstr ""
+msgstr "_Buscar actualizaciones…"
#: sd/uiconfig/simpress/ui/notebookbar.ui:2096
msgctxt "notebookbar|Tools"
msgid "_Check for Updates..."
-msgstr ""
+msgstr "_Buscar actualizaciones…"
#: sd/uiconfig/simpress/ui/notebookbar.ui:2422
msgctxt "notebookbar|FileLabel"
@@ -3734,22 +3734,22 @@ msgstr ""
#: sd/uiconfig/simpress/ui/notebookbar.ui:11804
msgctxt "notebookbar|ToolsMenuButton"
msgid "_Tools"
-msgstr ""
+msgstr "_Herramientas"
#: sd/uiconfig/simpress/ui/notebookbar.ui:12758
msgctxt "notebookbar|DevLabel"
msgid "Tools"
-msgstr ""
+msgstr "Herramientas"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:1922
msgctxt "notebookbar_groupedbar_compact|Menu"
msgid "_Check for Updates..."
-msgstr ""
+msgstr "_Buscar actualizaciones…"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:2328
msgctxt "notebookbar_groupedbar_compact|Tools"
msgid "_Check for Updates..."
-msgstr ""
+msgstr "_Buscar actualizaciones…"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:2589
msgctxt "notebookbar_groupedbar_compact|menub"
@@ -3931,17 +3931,17 @@ msgstr "_Ver"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:1421
msgctxt "notebookbar_groupedbar_full|Help"
msgid "_Check for Updates..."
-msgstr ""
+msgstr "_Buscar actualizaciones…"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:2115
msgctxt "notebookbar_groupedbar_full|Menu"
msgid "_Check for Updates..."
-msgstr ""
+msgstr "_Buscar actualizaciones…"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:2599
msgctxt "notebookbar_groupedbar_full|Tools"
msgid "_Check for Updates..."
-msgstr ""
+msgstr "_Buscar actualizaciones…"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:2865
msgctxt "notebookbar_groupedbar_full|menub"
@@ -4043,10 +4043,9 @@ msgid "_Slide Show"
msgstr "_Pase de diapositivas"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:7008
-#, fuzzy
msgctxt "notebookbar_groupedbar_full|tabled"
msgid "T_able"
-msgstr "Tabla"
+msgstr "_Tabla"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:7277
#, fuzzy
diff --git a/source/es/sfx2/messages.po b/source/es/sfx2/messages.po
index 931fc684402..fc3fe568480 100644
--- a/source/es/sfx2/messages.po
+++ b/source/es/sfx2/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: 2018-05-22 13:16+0200\n"
-"PO-Revision-Date: 2018-05-18 14:58+0000\n"
+"PO-Revision-Date: 2018-06-02 05:09+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: es\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1526655507.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1527916185.000000\n"
#: include/sfx2/strings.hrc:25
msgctxt "STR_TEMPLATE_FILTER"
@@ -1828,7 +1828,7 @@ msgstr "Proteger"
#: sfx2/uiconfig/ui/checkin.ui:89
msgctxt "checkin|MajorVersion"
msgid "New major version"
-msgstr "Nueva versión mayor"
+msgstr "Versión principal nueva"
#: sfx2/uiconfig/ui/checkin.ui:106
msgctxt "checkin|label2"
diff --git a/source/es/svx/messages.po b/source/es/svx/messages.po
index 36bfb28889c..c2b304bbd3c 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: 2018-05-16 16:53+0200\n"
-"PO-Revision-Date: 2018-05-18 15:13+0000\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
+"PO-Revision-Date: 2018-06-07 17:25+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: es\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1526656382.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1528392349.000000\n"
#: svx/inc/fieldunit.hrc:30
msgctxt "RID_SVXSTR_FIELDUNIT_TABLE"
@@ -5186,8 +5186,8 @@ msgstr "Puede además incluir las partes pertinentes del perfil de usuario en el
#: svx/uiconfig/ui/safemodedialog.ui:432
msgctxt "safemodedialog|btn_create_zip"
-msgid "Create Zip Archive from User Profile"
-msgstr "Crear archivador .zip del perfil de usuario"
+msgid "Archive User Profile"
+msgstr "Archivar perfil de usuario"
#: svx/uiconfig/ui/safemodedialog.ui:445
msgctxt "safemodedialog|linkbutton_profile"
@@ -8776,9 +8776,9 @@ msgid "Red"
msgstr "Rojo"
#: include/svx/strings.hrc:565
-msgctxt "RID_SVXSTR_COLOR_VIOLET"
-msgid "Violet"
-msgstr "Violeta"
+msgctxt "RID_SVXSTR_COLOR_MAGENTA"
+msgid "Magenta"
+msgstr "Magenta"
#: include/svx/strings.hrc:566
msgctxt "RID_SVXSTR_COLOR_PURPLE"
@@ -8842,9 +8842,9 @@ msgid "Light Red"
msgstr "Rojo claro"
#: include/svx/strings.hrc:579
-msgctxt "RID_SVXSTR_COLOR_LIGHTVIOLET"
-msgid "Light Violet"
-msgstr "Violeta claro"
+msgctxt "RID_SVXSTR_COLOR_LIGHTMAGENTA"
+msgid "Light Magenta"
+msgstr "Magenta claro"
#: include/svx/strings.hrc:580
msgctxt "RID_SVXSTR_COLOR_LIGHTPURPLE"
@@ -8908,9 +8908,9 @@ msgid "Dark Red"
msgstr "Rojo oscuro"
#: include/svx/strings.hrc:593
-msgctxt "RID_SVXSTR_COLOR_DARKVIOLET1"
-msgid "Dark Violet"
-msgstr "Violeta oscuro"
+msgctxt "RID_SVXSTR_COLOR_DARKMAGENTA"
+msgid "Dark Magenta"
+msgstr "Magenta oscuro"
#: include/svx/strings.hrc:594
msgctxt "RID_SVXSTR_COLOR_DARKPURPLE"
@@ -8944,55 +8944,55 @@ msgstr "Lima oscuro"
#. Elements of the Tonal color palette
#: include/svx/strings.hrc:601
+msgctxt "RID_SVXSTR_COLOR_VIOLET"
+msgid "Violet"
+msgstr "Violeta"
+
+#: include/svx/strings.hrc:602
msgctxt "RID_SVXSTR_COLOR_VIOLET_OUG"
msgid "Violet (Out of Gamut)"
msgstr "Violeta (fuera del espectro)"
-#: include/svx/strings.hrc:602
+#: include/svx/strings.hrc:603
msgctxt "RID_SVXSTR_COLOR_BLUE_OUG"
msgid "Blue (Out of Gamut)"
msgstr "Azul (fuera del espectro)"
-#: include/svx/strings.hrc:603
+#: include/svx/strings.hrc:604
msgctxt "RID_SVXSTR_COLOR_AZURE_OUG"
msgid "Azure (Out of Gamut)"
msgstr "Cerúleo (fuera del espectro)"
-#: include/svx/strings.hrc:604
+#: include/svx/strings.hrc:605
msgctxt "RID_SVXSTR_COLOR_SPRINGGREEN_OUG"
msgid "Spring Green (Out of Gamut)"
msgstr "Verde primavera (fuera del espectro)"
-#: include/svx/strings.hrc:605
+#: include/svx/strings.hrc:606
msgctxt "RID_SVXSTR_COLOR_GREEN_OUG"
msgid "Green (Out of Gamut)"
msgstr "Verde (fuera del espectro)"
-#: include/svx/strings.hrc:606
+#: include/svx/strings.hrc:607
msgctxt "RID_SVXSTR_COLOR_CHARTREUSEGREEN_OUG"
msgid "Chartreuse Green (Out of Gamut)"
msgstr "Cartujo (fuera del espectro)"
-#: include/svx/strings.hrc:607
+#: include/svx/strings.hrc:608
msgctxt "RID_SVXSTR_COLOR_ORANGE_OUG"
msgid "Orange (Out of Gamut)"
msgstr "Naranja (fuera del espectro)"
-#: include/svx/strings.hrc:608
+#: include/svx/strings.hrc:609
msgctxt "RID_SVXSTR_COLOR_RED_OUG"
msgid "Red (Out of Gamut)"
msgstr "Rojo (fuera del espectro)"
-#: include/svx/strings.hrc:609
+#: include/svx/strings.hrc:610
msgctxt "RID_SVXSTR_COLOR_ROSE_OUG"
msgid "Rose (Out of Gamut)"
msgstr "Rosa (fuera del espectro)"
-#: include/svx/strings.hrc:610
-msgctxt "RID_SVXSTR_COLOR_MAGENTA"
-msgid "Magenta"
-msgstr "Magenta"
-
#: include/svx/strings.hrc:611
msgctxt "RID_SVXSTR_COLOR_AZURE"
msgid "Azure"
@@ -9665,7 +9665,7 @@ msgstr "Submarino"
#: include/svx/strings.hrc:756
msgctxt "RID_SVXSTR_GRDT80"
msgid "Green Grass"
-msgstr ""
+msgstr "Césped verde"
#: include/svx/strings.hrc:757
msgctxt "RID_SVXSTR_GRDT81"
@@ -12096,12 +12096,12 @@ msgstr "Viñetas en forma de flecha a la derecha"
#: include/svx/strings.hrc:1273
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_6"
-msgid "Check mark bullets"
+msgid "Cross mark bullets"
msgstr "Viñetas de cruz"
#: include/svx/strings.hrc:1274
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_7"
-msgid "Tick mark bullets"
+msgid "Check mark bullets"
msgstr "Viñetas de marca de verificación"
#: include/svx/strings.hrc:1275
diff --git a/source/es/sw/messages.po b/source/es/sw/messages.po
index 365607f2d29..d60e66899be 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: 2018-05-22 13:17+0200\n"
-"PO-Revision-Date: 2018-05-23 22:47+0000\n"
+"POT-Creation-Date: 2018-06-12 14:41+0200\n"
+"PO-Revision-Date: 2018-06-13 01:54+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: es\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1527115647.000000\n"
+"X-POOTLE-MTIME: 1528854876.000000\n"
#: sw/inc/app.hrc:29
msgctxt "RID_PARAGRAPHSTYLEFAMILY"
@@ -1180,13 +1180,13 @@ msgstr "Citación"
#: sw/inc/strings.hrc:172
msgctxt "STR_POOLCOLL_TOX_ILLUSH"
-msgid "Illustration Index Heading"
-msgstr "Título del índice de ilustraciones"
+msgid "Figure Index Heading"
+msgstr "Título del índice de figuras"
#: sw/inc/strings.hrc:173
msgctxt "STR_POOLCOLL_TOX_ILLUS1"
-msgid "Illustration Index 1"
-msgstr "Índice de ilustraciones 1"
+msgid "Figure Index 1"
+msgstr "Índice de figuras 1"
#: sw/inc/strings.hrc:174
msgctxt "STR_POOLCOLL_TOX_OBJECTH"
@@ -3591,8 +3591,8 @@ msgstr "Índice de objetos"
#: sw/inc/strings.hrc:672
msgctxt "STR_TOX_ILL"
-msgid "Illustration Index"
-msgstr "Índice de ilustraciones"
+msgid "Table of Figures"
+msgstr "Índice de figuras"
#: sw/inc/strings.hrc:673
#, c-format
@@ -9245,72 +9245,72 @@ msgctxt "footnotepage|label5"
msgid "Continuation Notice"
msgstr "Aviso de continuación"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:49
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:55
msgctxt "footnotesendnotestabpage|ftnntnum"
msgid "_Restart numbering"
msgstr "_Reiniciar la numeración"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:91
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:93
msgctxt "footnotesendnotestabpage|ftnoffset_label"
msgid "_Start at:"
msgstr "_Iniciar en:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:112
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:111
msgctxt "footnotesendnotestabpage|ftnntnumfmt"
msgid "Custom _format"
msgstr "_Formato personalizado"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:155
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:150
msgctxt "footnotesendnotestabpage|ftnsuffix_label"
msgid "Aft_er:"
msgstr "D_espués:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:199
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:188
msgctxt "footnotesendnotestabpage|ftnprefix_label"
msgid "Be_fore:"
msgstr "A_ntes:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:228
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:212
msgctxt "footnotesendnotestabpage|ftnntattextend"
msgid "Collec_t at end of text"
msgstr "Reun_ir al final del texto"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:252
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:234
msgctxt "footnotesendnotestabpage|label1"
msgid "Footnotes"
msgstr "Notas al pie"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:289
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:271
msgctxt "footnotesendnotestabpage|endntattextend"
msgid "C_ollect at end of section"
msgstr "Rec_olectar al final de la sección"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:315
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:295
msgctxt "footnotesendnotestabpage|endntnum"
msgid "_Restart numbering"
msgstr "_Reiniciar la numeración"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:357
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:333
msgctxt "footnotesendnotestabpage|endoffset_label"
msgid "_Start at:"
msgstr "_Iniciar en:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:378
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:351
msgctxt "footnotesendnotestabpage|endntnumfmt"
msgid "_Custom format"
msgstr "_Formato personalizado"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:421
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:390
msgctxt "footnotesendnotestabpage|endsuffix_label"
msgid "Aft_er:"
msgstr "D_espués:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:465
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:428
msgctxt "footnotesendnotestabpage|endprefix_label"
msgid "Be_fore:"
msgstr "A_ntes:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:500
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:458
msgctxt "footnotesendnotestabpage|label2"
msgid "Endnotes"
msgstr "Notas finales"
@@ -9340,27 +9340,27 @@ msgctxt "formatsectiondialog|notes"
msgid "Footnotes/Endnotes"
msgstr "Notas al pie/finales"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:63
+#: sw/uiconfig/swriter/ui/formattablepage.ui:77
msgctxt "formattablepage|nameft"
msgid "_Name"
msgstr "_Nombre"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:79
+#: sw/uiconfig/swriter/ui/formattablepage.ui:91
msgctxt "formattablepage|widthft"
msgid "W_idth"
msgstr "Anc_hura"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:110
+#: sw/uiconfig/swriter/ui/formattablepage.ui:120
msgctxt "formattablepage|relwidth"
msgid "Relati_ve"
msgstr "Relati_vo"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:155
+#: sw/uiconfig/swriter/ui/formattablepage.ui:160
msgctxt "formattablepage|label45"
msgid "Properties"
msgstr "Propiedades"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:194
+#: sw/uiconfig/swriter/ui/formattablepage.ui:195
msgctxt "formattablepage|leftft"
msgid "Lef_t"
msgstr "_Izquierda"
@@ -9370,62 +9370,62 @@ msgctxt "formattablepage|rightft"
msgid "Ri_ght"
msgstr "_Derecha"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:228
+#: sw/uiconfig/swriter/ui/formattablepage.ui:226
msgctxt "formattablepage|aboveft"
msgid "_Above"
msgstr "Hacia _arriba"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:245
+#: sw/uiconfig/swriter/ui/formattablepage.ui:241
msgctxt "formattablepage|belowft"
msgid "_Below"
msgstr "A_bajo"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:320
+#: sw/uiconfig/swriter/ui/formattablepage.ui:311
msgctxt "formattablepage|label46"
msgid "Spacing"
msgstr "Espacio"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:362
+#: sw/uiconfig/swriter/ui/formattablepage.ui:349
msgctxt "formattablepage|full"
msgid "A_utomatic"
msgstr "Au_tomática"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:380
+#: sw/uiconfig/swriter/ui/formattablepage.ui:365
msgctxt "formattablepage|left"
msgid "_Left"
msgstr "_Izquierda"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:398
+#: sw/uiconfig/swriter/ui/formattablepage.ui:381
msgctxt "formattablepage|fromleft"
msgid "_From left"
msgstr "A partir de i_zquierda"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:416
+#: sw/uiconfig/swriter/ui/formattablepage.ui:397
msgctxt "formattablepage|right"
msgid "R_ight"
msgstr "_Derecha"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:435
+#: sw/uiconfig/swriter/ui/formattablepage.ui:413
msgctxt "formattablepage|center"
msgid "_Center"
msgstr "_Centro"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:453
+#: sw/uiconfig/swriter/ui/formattablepage.ui:429
msgctxt "formattablepage|free"
msgid "_Manual"
msgstr "_Manual"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:478
+#: sw/uiconfig/swriter/ui/formattablepage.ui:452
msgctxt "formattablepage|label43"
msgid "Alignment"
msgstr "Alineación"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:522
+#: sw/uiconfig/swriter/ui/formattablepage.ui:491
msgctxt "formattablepage|label53"
msgid "Text _direction"
msgstr "_Dirección de escritura"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:553
+#: sw/uiconfig/swriter/ui/formattablepage.ui:519
msgctxt "formattablepage|label44"
msgid "Properties "
msgstr "Propiedades "
@@ -9780,22 +9780,27 @@ msgctxt "headerfootermenu|insert_pagenumber"
msgid "Insert Page Number"
msgstr "Insertar número de página"
-#: sw/uiconfig/swriter/ui/indentpage.ui:52
+#: sw/uiconfig/swriter/ui/headerfootermenu.ui:42
+msgctxt "headerfootermenu|insert_pagecount"
+msgid "Insert Page Count"
+msgstr "Insertar número de páginas"
+
+#: sw/uiconfig/swriter/ui/indentpage.ui:57
msgctxt "indentpage|label1"
msgid "_Before section"
msgstr "_Antes de la sección"
-#: sw/uiconfig/swriter/ui/indentpage.ui:67
+#: sw/uiconfig/swriter/ui/indentpage.ui:71
msgctxt "indentpage|label3"
msgid "_After section"
msgstr "_Después de la sección"
-#: sw/uiconfig/swriter/ui/indentpage.ui:113
+#: sw/uiconfig/swriter/ui/indentpage.ui:115
msgctxt "indentpage|label2"
msgid "Indent"
msgstr "Sangría"
-#: sw/uiconfig/swriter/ui/indentpage.ui:142
+#: sw/uiconfig/swriter/ui/indentpage.ui:155
msgctxt "indentpage|preview-atkobject"
msgid "Example"
msgstr "Ejemplo"
@@ -11773,12 +11778,12 @@ msgstr "Índice de usuario nuevo"
#: sw/uiconfig/swriter/ui/notebookbar.ui:537
msgctxt "notebookbar|Help"
msgid "_Check for Updates..."
-msgstr ""
+msgstr "_Buscar actualizaciones…"
#: sw/uiconfig/swriter/ui/notebookbar.ui:1581
msgctxt "notebookbar|Tools"
msgid "_Check for Updates..."
-msgstr ""
+msgstr "_Buscar actualizaciones…"
#: sw/uiconfig/swriter/ui/notebookbar.ui:1851
msgctxt "notebookbar|FileMenuButton"
@@ -11908,7 +11913,7 @@ msgstr "Herramientas"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:1697
msgctxt "notebookbar_compact|Update"
msgid "_Check for Updates..."
-msgstr ""
+msgstr "_Buscar actualizaciones…"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:2007
msgctxt "notebookbar_compact|FileMenuButton"
@@ -11962,7 +11967,7 @@ msgstr "Disposición"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5320
msgctxt "notebookbar_compact|ReferencesMenuButton"
msgid "Reference_s"
-msgstr ""
+msgstr "Referencia_s"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5708
msgctxt "notebookbar_compact|ReferencesLabel"
@@ -12054,7 +12059,7 @@ msgstr "Barra de menús"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:2516
msgctxt "notebookbar_groupedbar_compact|Menu"
msgid "_Check for Updates..."
-msgstr ""
+msgstr "_Buscar actualizaciones…"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:2651
msgctxt "notebookbar_groupedbar_compact|Quotation2"
@@ -12064,7 +12069,7 @@ msgstr "Cita"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:2945
msgctxt "notebookbar_groupedbar_compact|Tools"
msgid "_Check for Updates..."
-msgstr ""
+msgstr "_Buscar actualizaciones…"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:3246
msgctxt "notebookbar_groupedbar_compact|menub"
@@ -12282,12 +12287,12 @@ msgstr "_Ver"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:1486
msgctxt "notebookbar_groupedbar_full|Help"
msgid "_Check for Updates..."
-msgstr ""
+msgstr "_Buscar actualizaciones…"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:2555
msgctxt "notebookbar_groupedbar_full|Menu"
msgid "_Check for Updates..."
-msgstr ""
+msgstr "_Buscar actualizaciones…"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:2690
msgctxt "notebookbar_groupedbar_full|Quotation2"
@@ -12297,7 +12302,7 @@ msgstr "Cita"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:2984
msgctxt "notebookbar_groupedbar_full|Tools"
msgid "_Check for Updates..."
-msgstr ""
+msgstr "_Buscar actualizaciones…"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:3289
msgctxt "notebookbar_groupedbar_full|menub"
@@ -13298,8 +13303,8 @@ msgstr "Proteger formulario"
#: sw/uiconfig/swriter/ui/optcompatpage.ui:68
msgctxt "optcompatpage|format"
-msgid "MS Word-compatible trailing blanks"
-msgstr "Espacios posteriores compatibles con Microsoft Word"
+msgid "Word-compatible trailing blanks"
+msgstr "Espacios posteriores compatibles con Word"
#: sw/uiconfig/swriter/ui/optcompatpage.ui:69
msgctxt "optcompatpage|format"
@@ -13308,7 +13313,7 @@ msgstr "Tolerar renglones vacíos de fondos de página de PDF para compatibilida
#: sw/uiconfig/swriter/ui/optcompatpage.ui:70
msgctxt "optcompatpage|format"
-msgid "A database field (e.g., MailMerge) with empty value hides its paragraph"
+msgid "Hide paragraphs of database fields (e.g., mail merge) with an empty value"
msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:71
@@ -16002,122 +16007,122 @@ msgctxt "tableproperties|background"
msgid "Background"
msgstr "Fondo"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:25
-msgctxt "tabletextflowpage|liststore1"
-msgid "Horizontal"
-msgstr "Horizontal"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:29
-msgctxt "tabletextflowpage|liststore1"
-msgid "Vertical"
-msgstr "Vertical"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:33
-msgctxt "tabletextflowpage|liststore1"
-msgid "Use superordinate object settings"
-msgstr "Utilizar configuración del objeto superior"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:47
-msgctxt "tabletextflowpage|liststore2"
-msgid "Top"
-msgstr "Arriba"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:51
-msgctxt "tabletextflowpage|liststore2"
-msgid "Centered"
-msgstr "Centrado"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:55
-msgctxt "tabletextflowpage|liststore2"
-msgid "Bottom"
-msgstr "Abajo"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:97
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:53
msgctxt "tabletextflowpage|break"
msgid "_Break"
msgstr "_Quebrar"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:112
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:68
msgctxt "tabletextflowpage|page"
msgid "_Page"
msgstr "_Página"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:132
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:87
msgctxt "tabletextflowpage|column"
msgid "Col_umn"
msgstr "Col_umna"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:151
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:106
msgctxt "tabletextflowpage|before"
msgid "Be_fore"
msgstr "_Delante"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:171
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:125
msgctxt "tabletextflowpage|after"
msgid "_After"
msgstr "_Detrás"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:203
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:158
msgctxt "tabletextflowpage|pagestyle"
msgid "With Page St_yle"
msgstr "C_on estilo de página"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:224
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:177
msgctxt "tabletextflowpage|pagenoft"
msgid "Page _number"
msgstr "_N.º de página"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:257
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:213
msgctxt "tabletextflowpage|pagestylelb-atkobject"
msgid "With Page Style"
msgstr "Con estilo de página"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:274
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:230
msgctxt "tabletextflowpage|split"
msgid "Allow _table to split across pages and columns"
msgstr "Permitir división de _tabla en páginas y columnas"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:289
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:245
msgctxt "tabletextflowpage|splitrow"
msgid "Allow row to break a_cross pages and columns"
msgstr "Permitir división de fila entre pág_inas y columnas"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:306
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:262
msgctxt "tabletextflowpage|keep"
msgid "_Keep with next paragraph"
msgstr "_Mantener párrafos juntos"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:328
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:284
msgctxt "tabletextflowpage|label40"
msgid "Text _orientation"
msgstr "_Orientación del texto"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:361
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:298
+msgctxt "tabletextflowpage|liststore1"
+msgid "Horizontal"
+msgstr "Horizontal"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:299
+msgctxt "tabletextflowpage|liststore1"
+msgid "Vertical"
+msgstr "Vertical"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:300
+msgctxt "tabletextflowpage|liststore1"
+msgid "Use superordinate object settings"
+msgstr "Utilizar configuración del objeto superior"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:321
msgctxt "tabletextflowpage|headline"
msgid "R_epeat heading"
msgstr "R_epetir título"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:383
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:343
msgctxt "tabletextflowpage|label38"
msgid "The first "
msgstr "Las primeras "
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:396
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:356
msgctxt "tabletextflowpage|label39"
msgid "rows"
msgstr "filas"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:434
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:395
msgctxt "tabletextflowpage|label35"
msgid "Text Flow"
msgstr "Flujo del texto"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:467
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:428
msgctxt "tabletextflowpage|label41"
msgid "_Vertical alignment"
msgstr "_Alineación vertical"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:495
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:442
+msgctxt "tabletextflowpage|liststore2"
+msgid "Top"
+msgstr "Arriba"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:443
+msgctxt "tabletextflowpage|liststore2"
+msgid "Centered"
+msgstr "Centrado"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:444
+msgctxt "tabletextflowpage|liststore2"
+msgid "Bottom"
+msgstr "Abajo"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:460
msgctxt "tabletextflowpage|label36"
msgid "Alignment"
msgstr "Alineación"
@@ -16899,8 +16904,8 @@ msgstr "Índice alfabético"
#: sw/uiconfig/swriter/ui/tocindexpage.ui:58
msgctxt "tocindexpage|liststore1"
-msgid "Illustration Index"
-msgstr "Índice de figuras"
+msgid "Table of Figures"
+msgstr ""
#: sw/uiconfig/swriter/ui/tocindexpage.ui:62
msgctxt "tocindexpage|liststore1"
diff --git a/source/es/writerperfect/messages.po b/source/es/writerperfect/messages.po
index fd783c5b724..317c6ef6277 100644
--- a/source/es/writerperfect/messages.po
+++ b/source/es/writerperfect/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-16 16:54+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2018-05-08 16:51+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -66,97 +66,97 @@ msgctxt "exportepub|generalft"
msgid "General"
msgstr "General"
-#: writerperfect/uiconfig/ui/exportepub.ui:122
+#: writerperfect/uiconfig/ui/exportepub.ui:121
msgctxt "exportepub|versionft"
msgid "Version:"
msgstr "Versión:"
-#: writerperfect/uiconfig/ui/exportepub.ui:139
+#: writerperfect/uiconfig/ui/exportepub.ui:138
msgctxt "exportepub|epub3"
msgid "EPUB 3.0"
msgstr "EPUB 3.0"
-#: writerperfect/uiconfig/ui/exportepub.ui:140
+#: writerperfect/uiconfig/ui/exportepub.ui:139
msgctxt "exportepub|epub2"
msgid "EPUB 2.0"
msgstr "EPUB 2.0"
-#: writerperfect/uiconfig/ui/exportepub.ui:175
+#: writerperfect/uiconfig/ui/exportepub.ui:174
msgctxt "exportepub|splitft"
msgid "Split method:"
msgstr "Método de división:"
-#: writerperfect/uiconfig/ui/exportepub.ui:192
+#: writerperfect/uiconfig/ui/exportepub.ui:191
msgctxt "exportepub|splitpage"
msgid "Page break"
msgstr "Salto de página"
-#: writerperfect/uiconfig/ui/exportepub.ui:193
+#: writerperfect/uiconfig/ui/exportepub.ui:192
msgctxt "exportepub|splitheading"
msgid "Heading"
msgstr "Título"
-#: writerperfect/uiconfig/ui/exportepub.ui:228
+#: writerperfect/uiconfig/ui/exportepub.ui:227
msgctxt "exportepub|layoutft"
msgid "Layout method:"
msgstr "Método de maquetación:"
-#: writerperfect/uiconfig/ui/exportepub.ui:245
+#: writerperfect/uiconfig/ui/exportepub.ui:244
msgctxt "exportepub|layoutreflowable"
msgid "Reflowable"
msgstr "Ajustable"
-#: writerperfect/uiconfig/ui/exportepub.ui:246
+#: writerperfect/uiconfig/ui/exportepub.ui:245
msgctxt "exportepub|layoutfixed"
msgid "Fixed"
msgstr "Fijo"
-#: writerperfect/uiconfig/ui/exportepub.ui:281
+#: writerperfect/uiconfig/ui/exportepub.ui:280
msgctxt "exportepub|coverimageft"
msgid "Custom cover image:"
msgstr "Imagen de cubierta personalizada:"
-#: writerperfect/uiconfig/ui/exportepub.ui:311
+#: writerperfect/uiconfig/ui/exportepub.ui:310
msgctxt "exportepub|coverbutton"
msgid "Browse..."
msgstr "Examinar…"
-#: writerperfect/uiconfig/ui/exportepub.ui:355
+#: writerperfect/uiconfig/ui/exportepub.ui:354
msgctxt "exportepub|mediadirft"
msgid "Custom media directory:"
msgstr "Directorio multimedia personalizado:"
-#: writerperfect/uiconfig/ui/exportepub.ui:385
+#: writerperfect/uiconfig/ui/exportepub.ui:384
msgctxt "exportepub|mediabutton"
msgid "Browse..."
msgstr "Examinar…"
-#: writerperfect/uiconfig/ui/exportepub.ui:429
+#: writerperfect/uiconfig/ui/exportepub.ui:428
msgctxt "exportepub|metadataft"
msgid "Metadata"
msgstr "Metadatos"
-#: writerperfect/uiconfig/ui/exportepub.ui:470
+#: writerperfect/uiconfig/ui/exportepub.ui:468
msgctxt "exportepub|identifierft"
msgid "Identifier:"
msgstr "Identificador:"
-#: writerperfect/uiconfig/ui/exportepub.ui:485
+#: writerperfect/uiconfig/ui/exportepub.ui:483
msgctxt "exportepub|titleft"
msgid "Title:"
msgstr "Título:"
-#: writerperfect/uiconfig/ui/exportepub.ui:511
+#: writerperfect/uiconfig/ui/exportepub.ui:509
msgctxt "exportepub|authorft"
msgid "Author:"
msgstr "Autor:"
-#: writerperfect/uiconfig/ui/exportepub.ui:537
+#: writerperfect/uiconfig/ui/exportepub.ui:535
msgctxt "exportepub|languageft"
msgid "Language:"
msgstr "Idioma:"
-#: writerperfect/uiconfig/ui/exportepub.ui:563
+#: writerperfect/uiconfig/ui/exportepub.ui:561
msgctxt "exportepub|dateft"
msgid "Date:"
msgstr "Fecha:"
diff --git a/source/es/xmlsecurity/messages.po b/source/es/xmlsecurity/messages.po
index bf1b1e4e104..4c86b7679e8 100644
--- a/source/es/xmlsecurity/messages.po
+++ b/source/es/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: 2018-05-22 13:17+0200\n"
-"PO-Revision-Date: 2018-03-22 04:55+0000\n"
+"PO-Revision-Date: 2018-05-31 23:02+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: es\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1521694516.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1527807729.000000\n"
#: xmlsecurity/inc/strings.hrc:25
msgctxt "STR_CERTIFICATE_NOT_VALIDATED"
@@ -460,7 +460,7 @@ msgstr "Firmar"
#: xmlsecurity/uiconfig/ui/selectcertificatedialog.ui:194
msgctxt "selectcertificatedialog|str_selectsign"
msgid "Select"
-msgstr ""
+msgstr "Seleccionar"
#: xmlsecurity/uiconfig/ui/selectcertificatedialog.ui:199
msgctxt "selectcertificatedialog|str_encrypt"
diff --git a/source/et/cui/messages.po b/source/et/cui/messages.po
index 58c3b35c7aa..13a76d8118d 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2018-01-06 22:13+0000\n"
"Last-Translator: Mihkel Tõnnov <mihhkel@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -9872,97 +9872,97 @@ msgctxt "positionsizedialog|PositionAndSizeDialog"
msgid "Position and Size"
msgstr "Paigutus ja suurus"
-#: cui/uiconfig/ui/positionsizedialog.ui:107
+#: cui/uiconfig/ui/positionsizedialog.ui:136
msgctxt "positionsizedialog|RID_SVXPAGE_POSITION_SIZE"
msgid "Position and Size"
msgstr "Paigutus ja suurus"
-#: cui/uiconfig/ui/positionsizedialog.ui:129
+#: cui/uiconfig/ui/positionsizedialog.ui:182
msgctxt "positionsizedialog|RID_SVXPAGE_SWPOSSIZE"
msgid "Position and Size"
msgstr "Paigutus ja suurus"
-#: cui/uiconfig/ui/positionsizedialog.ui:152
+#: cui/uiconfig/ui/positionsizedialog.ui:229
msgctxt "positionsizedialog|RID_SVXPAGE_ANGLE"
msgid "Rotation"
msgstr "Pööramine"
-#: cui/uiconfig/ui/positionsizedialog.ui:175
+#: cui/uiconfig/ui/positionsizedialog.ui:276
msgctxt "positionsizedialog|RID_SVXPAGE_SLANT"
msgid "Slant & Corner Radius"
msgstr "Kalle ja nurkraadius"
-#: cui/uiconfig/ui/possizetabpage.ui:40
+#: cui/uiconfig/ui/possizetabpage.ui:61
msgctxt "possizetabpage|FT_POS_X"
msgid "Position _X:"
msgstr "X-asukoht:"
-#: cui/uiconfig/ui/possizetabpage.ui:56
+#: cui/uiconfig/ui/possizetabpage.ui:75
msgctxt "possizetabpage|FT_POS_Y"
msgid "Position _Y:"
msgstr "Y-asukoht:"
-#: cui/uiconfig/ui/possizetabpage.ui:110
+#: cui/uiconfig/ui/possizetabpage.ui:128
msgctxt "possizetabpage|FT_POSREFERENCE"
msgid "_Base point:"
msgstr "Baaspunkt:"
-#: cui/uiconfig/ui/possizetabpage.ui:148
+#: cui/uiconfig/ui/possizetabpage.ui:182
msgctxt "possizetabpage|label1"
msgid "Position"
msgstr "Paigutus"
-#: cui/uiconfig/ui/possizetabpage.ui:190
+#: cui/uiconfig/ui/possizetabpage.ui:224
msgctxt "possizetabpage|FT_WIDTH"
msgid "Wi_dth:"
msgstr "Laius:"
-#: cui/uiconfig/ui/possizetabpage.ui:206
+#: cui/uiconfig/ui/possizetabpage.ui:238
msgctxt "possizetabpage|FT_HEIGHT"
msgid "H_eight:"
msgstr "Kõrgus:"
-#: cui/uiconfig/ui/possizetabpage.ui:247
+#: cui/uiconfig/ui/possizetabpage.ui:276
msgctxt "possizetabpage|CBX_SCALE"
msgid "_Keep ratio"
msgstr "Hoitakse proportsioonis"
-#: cui/uiconfig/ui/possizetabpage.ui:279
+#: cui/uiconfig/ui/possizetabpage.ui:307
msgctxt "possizetabpage|FT_SIZEREFERENCE"
msgid "Base _point:"
msgstr "Baaspunkt:"
-#: cui/uiconfig/ui/possizetabpage.ui:317
+#: cui/uiconfig/ui/possizetabpage.ui:361
msgctxt "possizetabpage|label2"
msgid "Size"
msgstr "Suurus"
-#: cui/uiconfig/ui/possizetabpage.ui:356
+#: cui/uiconfig/ui/possizetabpage.ui:401
msgctxt "possizetabpage|TSB_POSPROTECT"
msgid "Positio_n"
msgstr "Paigutus"
-#: cui/uiconfig/ui/possizetabpage.ui:373
+#: cui/uiconfig/ui/possizetabpage.ui:418
msgctxt "possizetabpage|TSB_SIZEPROTECT"
msgid "_Size"
msgstr "Suurus"
-#: cui/uiconfig/ui/possizetabpage.ui:397
+#: cui/uiconfig/ui/possizetabpage.ui:441
msgctxt "possizetabpage|label3"
msgid "Protect"
msgstr "Kaitstud"
-#: cui/uiconfig/ui/possizetabpage.ui:430
+#: cui/uiconfig/ui/possizetabpage.ui:475
msgctxt "possizetabpage|TSB_AUTOGROW_WIDTH"
msgid "_Fit width to text"
msgstr "Laiuse sobitamine tekstiga"
-#: cui/uiconfig/ui/possizetabpage.ui:447
+#: cui/uiconfig/ui/possizetabpage.ui:492
msgctxt "possizetabpage|TSB_AUTOGROW_HEIGHT"
msgid "Fit _height to text"
msgstr "Kõrguse sobitamine tekstiga"
-#: cui/uiconfig/ui/possizetabpage.ui:471
+#: cui/uiconfig/ui/possizetabpage.ui:515
msgctxt "possizetabpage|label4"
msgid "Adapt"
msgstr "Kohandamine"
@@ -10162,47 +10162,47 @@ msgctxt "recordnumberdialog|label2"
msgid "go to record"
msgstr "mine kirjele"
-#: cui/uiconfig/ui/rotationtabpage.ui:52
+#: cui/uiconfig/ui/rotationtabpage.ui:56
msgctxt "rotationtabpage|FT_POS_X"
msgid "Position _X:"
msgstr "X-asukoht:"
-#: cui/uiconfig/ui/rotationtabpage.ui:66
+#: cui/uiconfig/ui/rotationtabpage.ui:70
msgctxt "rotationtabpage|FT_POS_Y"
msgid "Position _Y:"
msgstr "Y-asukoht:"
-#: cui/uiconfig/ui/rotationtabpage.ui:116
+#: cui/uiconfig/ui/rotationtabpage.ui:123
msgctxt "rotationtabpage|FT_POSPRESETS"
msgid "_Default settings:"
msgstr "Vaikesätted:"
-#: cui/uiconfig/ui/rotationtabpage.ui:130
+#: cui/uiconfig/ui/rotationtabpage.ui:151
msgctxt "rotationtabpage|CTL_RECT|tooltip_text"
msgid "Rotation point"
msgstr "Pöördepunkt"
-#: cui/uiconfig/ui/rotationtabpage.ui:155
+#: cui/uiconfig/ui/rotationtabpage.ui:178
msgctxt "rotationtabpage|label1"
msgid "Pivot Point"
msgstr "Pöördetsenter"
-#: cui/uiconfig/ui/rotationtabpage.ui:197
+#: cui/uiconfig/ui/rotationtabpage.ui:220
msgctxt "rotationtabpage|FT_ANGLE"
msgid "_Angle:"
msgstr "_Nurk:"
-#: cui/uiconfig/ui/rotationtabpage.ui:238
+#: cui/uiconfig/ui/rotationtabpage.ui:263
msgctxt "rotationtabpage|FT_ANGLEPRESETS"
msgid "Default _settings:"
msgstr "Vaikesätted:"
-#: cui/uiconfig/ui/rotationtabpage.ui:252
+#: cui/uiconfig/ui/rotationtabpage.ui:287
msgctxt "rotationtabpage|CTL_ANGLE|tooltip_text"
msgid "Rotation Angle"
msgstr "Pöördenurk"
-#: cui/uiconfig/ui/rotationtabpage.ui:277
+#: cui/uiconfig/ui/rotationtabpage.ui:314
msgctxt "rotationtabpage|label2"
msgid "Rotation Angle"
msgstr "Pöördenurk"
@@ -10582,52 +10582,52 @@ msgctxt "similaritysearchdialog|relaxbox"
msgid "_Combine"
msgstr "Kombinatsioonid"
-#: cui/uiconfig/ui/slantcornertabpage.ui:50
+#: cui/uiconfig/ui/slantcornertabpage.ui:70
msgctxt "slantcornertabpage|label5"
msgid "_X:"
msgstr "_X:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:88
+#: cui/uiconfig/ui/slantcornertabpage.ui:110
msgctxt "slantcornertabpage|label6"
msgid "_Y:"
msgstr "_Y:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:125
+#: cui/uiconfig/ui/slantcornertabpage.ui:149
msgctxt "slantcornertabpage|label3"
msgid "Control Point 1"
msgstr "1. juhtpunkt"
-#: cui/uiconfig/ui/slantcornertabpage.ui:159
+#: cui/uiconfig/ui/slantcornertabpage.ui:183
msgctxt "slantcornertabpage|FT_RADIUS"
msgid "_Radius:"
msgstr "Raadius:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:189
+#: cui/uiconfig/ui/slantcornertabpage.ui:214
msgctxt "slantcornertabpage|label1"
msgid "Corner Radius"
msgstr "Nurkraadius"
-#: cui/uiconfig/ui/slantcornertabpage.ui:223
+#: cui/uiconfig/ui/slantcornertabpage.ui:248
msgctxt "slantcornertabpage|FT_ANGLE"
msgid "_Angle:"
msgstr "_Nurk:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:253
+#: cui/uiconfig/ui/slantcornertabpage.ui:279
msgctxt "slantcornertabpage|label2"
msgid "Slant"
msgstr "Kalle"
-#: cui/uiconfig/ui/slantcornertabpage.ui:294
+#: cui/uiconfig/ui/slantcornertabpage.ui:320
msgctxt "slantcornertabpage|label4"
msgid "_X:"
msgstr "_X:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:332
+#: cui/uiconfig/ui/slantcornertabpage.ui:360
msgctxt "slantcornertabpage|label7"
msgid "_Y:"
msgstr "_Y:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:369
+#: cui/uiconfig/ui/slantcornertabpage.ui:399
msgctxt "slantcornertabpage|label8"
msgid "Control Point 2"
msgstr "2. juhtpunkt"
@@ -10907,112 +10907,112 @@ msgctxt "storedwebconnectiondialog|change"
msgid "_Change Password..."
msgstr "Muuda parooli..."
-#: cui/uiconfig/ui/swpossizepage.ui:74
+#: cui/uiconfig/ui/swpossizepage.ui:85
msgctxt "swpossizepage|widthft"
msgid "_Width:"
msgstr "_Laius:"
-#: cui/uiconfig/ui/swpossizepage.ui:111
+#: cui/uiconfig/ui/swpossizepage.ui:123
msgctxt "swpossizepage|heightft"
msgid "H_eight:"
msgstr "_Kõrgus:"
-#: cui/uiconfig/ui/swpossizepage.ui:128
+#: cui/uiconfig/ui/swpossizepage.ui:141
msgctxt "swpossizepage|ratio"
msgid "_Keep ratio"
msgstr "_Hoitakse proportsioonis"
-#: cui/uiconfig/ui/swpossizepage.ui:149
+#: cui/uiconfig/ui/swpossizepage.ui:162
msgctxt "swpossizepage|label2"
msgid "Size"
msgstr "Suurus"
-#: cui/uiconfig/ui/swpossizepage.ui:205
+#: cui/uiconfig/ui/swpossizepage.ui:218
msgctxt "swpossizepage|topage"
msgid "To _page"
msgstr "Leheküljele"
-#: cui/uiconfig/ui/swpossizepage.ui:222
+#: cui/uiconfig/ui/swpossizepage.ui:234
msgctxt "swpossizepage|topara"
msgid "To paragrap_h"
msgstr "Lõigule"
-#: cui/uiconfig/ui/swpossizepage.ui:238
+#: cui/uiconfig/ui/swpossizepage.ui:250
msgctxt "swpossizepage|tochar"
msgid "To cha_racter"
msgstr "Märgile"
-#: cui/uiconfig/ui/swpossizepage.ui:254
+#: cui/uiconfig/ui/swpossizepage.ui:266
msgctxt "swpossizepage|aschar"
msgid "_As character"
msgstr "Märgina"
-#: cui/uiconfig/ui/swpossizepage.ui:270
+#: cui/uiconfig/ui/swpossizepage.ui:282
msgctxt "swpossizepage|toframe"
msgid "To _frame"
msgstr "Paneelile"
-#: cui/uiconfig/ui/swpossizepage.ui:292
+#: cui/uiconfig/ui/swpossizepage.ui:304
msgctxt "swpossizepage|label1"
msgid "Anchor"
msgstr "Ankurdamine"
-#: cui/uiconfig/ui/swpossizepage.ui:333
+#: cui/uiconfig/ui/swpossizepage.ui:344
msgctxt "swpossizepage|horiposft"
msgid "Hori_zontal:"
msgstr "Hori_sontaalne:"
-#: cui/uiconfig/ui/swpossizepage.ui:347
+#: cui/uiconfig/ui/swpossizepage.ui:358
msgctxt "swpossizepage|horibyft"
msgid "b_y:"
msgstr " "
-#: cui/uiconfig/ui/swpossizepage.ui:361
+#: cui/uiconfig/ui/swpossizepage.ui:372
msgctxt "swpossizepage|vertbyft"
msgid "_by:"
msgstr " "
-#: cui/uiconfig/ui/swpossizepage.ui:375
+#: cui/uiconfig/ui/swpossizepage.ui:386
msgctxt "swpossizepage|horitoft"
msgid "_to:"
msgstr "Alus:"
-#: cui/uiconfig/ui/swpossizepage.ui:421
+#: cui/uiconfig/ui/swpossizepage.ui:433
msgctxt "swpossizepage|vertposft"
msgid "_Vertical:"
msgstr "_Vertikaalne:"
-#: cui/uiconfig/ui/swpossizepage.ui:457
+#: cui/uiconfig/ui/swpossizepage.ui:470
msgctxt "swpossizepage|verttoft"
msgid "t_o:"
msgstr "Alus:"
-#: cui/uiconfig/ui/swpossizepage.ui:478
+#: cui/uiconfig/ui/swpossizepage.ui:492
msgctxt "swpossizepage|mirror"
msgid "_Mirror on even pages"
msgstr "Peegeldatakse paarislehekülgedel"
-#: cui/uiconfig/ui/swpossizepage.ui:495
+#: cui/uiconfig/ui/swpossizepage.ui:509
msgctxt "swpossizepage|followtextflow"
msgid "Follow te_xt flow"
msgstr "Tekstivoo järgimine"
-#: cui/uiconfig/ui/swpossizepage.ui:518
+#: cui/uiconfig/ui/swpossizepage.ui:532
msgctxt "swpossizepage|label11"
msgid "Position"
msgstr "Paigutus"
-#: cui/uiconfig/ui/swpossizepage.ui:549
+#: cui/uiconfig/ui/swpossizepage.ui:563
msgctxt "swpossizepage|pos"
msgid "Positio_n"
msgstr "Paigutus"
-#: cui/uiconfig/ui/swpossizepage.ui:565
+#: cui/uiconfig/ui/swpossizepage.ui:579
msgctxt "swpossizepage|size"
msgid "_Size"
msgstr "Suurus"
-#: cui/uiconfig/ui/swpossizepage.ui:587
+#: cui/uiconfig/ui/swpossizepage.ui:601
msgctxt "swpossizepage|label3"
msgid "Protect"
msgstr "Kaitstud"
@@ -11202,12 +11202,12 @@ msgctxt "textattrtabpage|label2"
msgid "Spacing to Borders"
msgstr "Vahe ääristeni"
-#: cui/uiconfig/ui/textattrtabpage.ui:425
+#: cui/uiconfig/ui/textattrtabpage.ui:423
msgctxt "textattrtabpage|TSB_FULL_WIDTH"
msgid "Full _width"
msgstr "Täislaius"
-#: cui/uiconfig/ui/textattrtabpage.ui:448
+#: cui/uiconfig/ui/textattrtabpage.ui:446
msgctxt "textattrtabpage|label3"
msgid "Text Anchor"
msgstr "Tekstiankur"
diff --git a/source/et/filter/source/config/fragments/filters.po b/source/et/filter/source/config/fragments/filters.po
index 47d91ef79fc..29609fadb44 100644
--- a/source/et/filter/source/config/fragments/filters.po
+++ b/source/et/filter/source/config/fragments/filters.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: 2018-05-16 16:54+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2017-12-28 15:39+0000\n"
"Last-Translator: Mihkel Tõnnov <mihhkel@gmail.com>\n"
"Language-Team: Estonian <none>\n"
@@ -463,8 +463,8 @@ msgctxt ""
"MS Word 2003 XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Word 2003 XML"
-msgstr "Microsoft Word 2003 XML"
+msgid "Word 2003 XML"
+msgstr ""
#: MS_Word_2007_XML.xcu
msgctxt ""
@@ -1282,8 +1282,8 @@ msgctxt ""
"Calc MS Excel 2007 VBA XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Excel 2007-2016 XML (macro enabled)"
-msgstr "Microsoft Excel 2007-2016 XML (makrodega)"
+msgid "Excel 2007–2019 (macro-enabled)"
+msgstr ""
#: calc_MS_Excel_2007_XML.xcu
msgctxt ""
diff --git a/source/et/filter/source/config/fragments/types.po b/source/et/filter/source/config/fragments/types.po
index a3b2a5c6d4b..aebe8a03e19 100644
--- a/source/et/filter/source/config/fragments/types.po
+++ b/source/et/filter/source/config/fragments/types.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: 2018-05-08 15:11+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2017-12-14 23:29+0000\n"
"Last-Translator: Mihkel Tõnnov <mihhkel@gmail.com>\n"
"Language-Team: Estonian <none>\n"
@@ -292,8 +292,8 @@ msgctxt ""
"writer_MS_Word_2003_XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Word 2003 XML"
-msgstr "Microsoft Word 2003 XML"
+msgid "Word 2003 XML"
+msgstr ""
#: writer_MS_Word_2007_XML.xcu
msgctxt ""
diff --git a/source/et/fpicker/messages.po b/source/et/fpicker/messages.po
index a2cf8da6573..49fd8e7048c 100644
--- a/source/et/fpicker/messages.po
+++ b/source/et/fpicker/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2018-01-17 00:41+0000\n"
"Last-Translator: Mihkel Tõnnov <mihhkel@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -272,13 +272,13 @@ msgstr "Krüpteeritakse GPG-võtmega"
#: fpicker/uiconfig/ui/foldernamedialog.ui:8
msgctxt "foldernamedialog|FolderNameDialog"
-msgid "Folder Name ?"
-msgstr "Kausta nimi"
+msgid "Folder Name"
+msgstr ""
#: fpicker/uiconfig/ui/foldernamedialog.ui:91
msgctxt "foldernamedialog|label2"
-msgid "Na_me"
-msgstr "Nimi"
+msgid "Na_me:"
+msgstr ""
#: fpicker/uiconfig/ui/foldernamedialog.ui:122
msgctxt "foldernamedialog|label1"
diff --git a/source/et/helpcontent2/source/text/shared/00.po b/source/et/helpcontent2/source/text/shared/00.po
index e6ceb86062d..eb40e4ddb8e 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2016-05-24 09:32+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Estonian <none>\n"
@@ -397,16 +397,16 @@ msgctxt ""
"00000001.xhp\n"
"hd_id3149670\n"
"help.text"
-msgid "Back"
-msgstr "Lähtesta"
+msgid "Reset"
+msgstr ""
#: 00000001.xhp
msgctxt ""
"00000001.xhp\n"
"par_id3145068\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optionsdialog/revert\">Resets modified values back to the $[officename] default values.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/optionsdialog/revert\">Lähtestab muudetud väärtused $[officename]'i vaikeväärtuseks.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optionsdialog/revert\">Resets changes made to the current tab to those applicable when this dialog was opened.</ahelp>"
+msgstr ""
#: 00000001.xhp
msgctxt ""
@@ -552,6 +552,54 @@ msgctxt ""
msgid "<variable id=\"ShiftF1\">Press Shift+F1 and point to a control to learn more about that control.</variable>"
msgstr "<variable id=\"ShiftF1\">Juhtelemendi kohta lisateabe saamiseks vajuta Shift+F1 ja vii kursor huvipakkuvale juhtelemendile. </variable>"
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"hd_id631527692833772\n"
+"help.text"
+msgid "Options dialog buttons"
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"hd_id831527692839432\n"
+"help.text"
+msgid "OK"
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"par_id471527692844934\n"
+"help.text"
+msgid "Save the changes in the page and close the Options dialog."
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"hd_id261527692850720\n"
+"help.text"
+msgid "Cancel"
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"par_id571527692855533\n"
+"help.text"
+msgid "Close the Options dialog and discard all changes done."
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"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 Options dialog."
+msgstr ""
+
#: 00000002.xhp
msgctxt ""
"00000002.xhp\n"
@@ -11125,16 +11173,16 @@ msgctxt ""
"00040502.xhp\n"
"par_id3151293\n"
"help.text"
-msgid "<variable id=\"linienstile\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Line Styles</emph> tab </variable>"
-msgstr "<variable id=\"linienstile\">Vali <emph>Vormindus - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Objekt - </emph></caseinline><caseinline select=\"CALC\"><emph>Pilt - </emph></caseinline></switchinline><emph>Joon -</emph> kaart <emph>Joonestiilid</emph> </variable>"
+msgid "<variable id=\"linienstile\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Line Styles</emph> tab</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3149317\n"
"help.text"
-msgid "<variable id=\"linienenden\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Arrow Styles</emph> tab </variable>"
-msgstr "<variable id=\"linienenden\">Vali <emph>Vormindus - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Objekt - </emph></caseinline><caseinline select=\"CALC\"><emph>Pilt - </emph></caseinline></switchinline><emph>Joon -</emph> kaart <emph>Noolestiilid</emph></variable>"
+msgid "<variable id=\"linienenden\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Arrow Styles</emph> tab</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
@@ -11173,15 +11221,15 @@ msgctxt ""
"00040502.xhp\n"
"par_id3154948\n"
"help.text"
-msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Area</emph> tab"
-msgstr "Vali <emph>Vormindus - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Objekt - </emph></caseinline><caseinline select=\"CALC\"><emph>Pilt - </emph></caseinline></switchinline><emph>Ala - </emph>kaart <emph>Ala</emph>"
+msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Area</emph> tab."
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3145607\n"
"help.text"
-msgid "Choose <emph>View - Styles</emph> - open context menu and choose <emph>Modify/New - Area</emph> tab (presentation documents)"
+msgid "Choose <emph>View - Styles</emph> - open context menu and choose <emph>Modify/New - Area</emph> tab (presentation documents)."
msgstr ""
#: 00040502.xhp
@@ -11189,47 +11237,47 @@ msgctxt ""
"00040502.xhp\n"
"par_id3152922\n"
"help.text"
-msgid "Choose <emph>Format - Title - Area</emph> tab (chart documents)"
-msgstr "Vali <emph>Vormindus - Pealkiri -</emph> kaart <emph>Ala</emph> (diagrammides)"
+msgid "Choose <emph>Format - Title - Area</emph> tab (chart documents)."
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3157894\n"
"help.text"
-msgid "Choose <emph>Format - Legend - Area</emph> tab (chart documents)"
-msgstr "Vali <emph>Vormindus - Legend -</emph> kaart <emph>Ala</emph> (diagrammides)"
+msgid "Choose <emph>Format - Legend - Area</emph> tab (chart documents)."
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3144444\n"
"help.text"
-msgid "Choose <emph>Format - Chart Wall - Area</emph> tab (chart documents)"
-msgstr "Vali <emph>Vormindus - Diagrammi sein -</emph> kaart <emph>Ala</emph> (diagrammides)"
+msgid "Choose <emph>Format - Chart Wall - Area</emph> tab (chart documents)."
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3156543\n"
"help.text"
-msgid "Choose <emph>Format - Chart Floor - Area</emph> tab (chart documents)"
-msgstr "Vali <emph>Vormindus - Diagrammi põhi -</emph> kaart <emph>Ala</emph> (diagrammides)"
+msgid "Choose <emph>Format - Chart Floor - Area</emph> tab (chart documents)."
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3150685\n"
"help.text"
-msgid "Choose <emph>Format - Chart Area - Area</emph> tab (chart documents)"
-msgstr "Vali <emph>Vormindus - Diagrammi ala -</emph> kaart <emph>Ala</emph> (diagrammides)"
+msgid "Choose <emph>Format - Chart Area - Area</emph> tab (chart documents)."
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3149664\n"
"help.text"
-msgid "Choose <emph>Slide - Properties - Background</emph> tab (in $[officename] Impress)"
+msgid "Choose <emph>Slide - Properties - Background</emph> tab (in $[officename] Impress)."
msgstr ""
#: 00040502.xhp
@@ -11237,7 +11285,15 @@ msgctxt ""
"00040502.xhp\n"
"par_id9149694\n"
"help.text"
-msgid "Choose <emph>Page - Properties - Background</emph> tab (in $[officename] Draw)"
+msgid "Choose <emph>Page - Properties - Background</emph> tab (in $[officename] Draw)."
+msgstr ""
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id841527083135387\n"
+"help.text"
+msgid "Choose <emph>Table - Properties - Background</emph> tab."
msgstr ""
#: 00040502.xhp
@@ -11349,32 +11405,32 @@ msgctxt ""
"00040502.xhp\n"
"par_id3150011\n"
"help.text"
-msgid "<variable id=\"schatte\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Shadow</emph> tab </variable>"
-msgstr "<variable id=\"schatte\">Vali <emph>Vormindus - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Objekt - </emph></caseinline><caseinline select=\"CALC\"><emph>Pilt - </emph></caseinline></switchinline><emph>Ala - </emph>kaart <emph>Vari</emph></variable>"
+msgid "<variable id=\"schatte\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Shadow</emph> tab</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3147441\n"
"help.text"
-msgid "<variable id=\"verlauf\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Gradients</emph> tab </variable>"
-msgstr "<variable id=\"verlauf\">Vali <emph>Vormindus - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Objekt - </emph></caseinline><caseinline select=\"CALC\"><emph>Pilt - </emph></caseinline></switchinline><emph>Ala - </emph>kaart <emph>Üleminekud</emph></variable>"
+msgid "<variable id=\"verlauf\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Gradients</emph> tab</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3155308\n"
"help.text"
-msgid "<variable id=\"schraffur\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Hatching</emph> tab </variable>"
-msgstr "<variable id=\"schraffur\">Vali <emph>Vormindus - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Objekt - </emph></caseinline><caseinline select=\"CALC\"><emph>Pilt - </emph></caseinline></switchinline><emph>Ala - </emph>kaart <emph>Viirutus</emph></variable>"
+msgid "<variable id=\"schraffur\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Hatching</emph> tab</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3145800\n"
"help.text"
-msgid "<variable id=\"bitmap\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Bitmaps</emph> tab </variable>"
-msgstr "<variable id=\"bitmap\">Vali <emph>Vormindus - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Objekt - </emph></caseinline><caseinline select=\"CALC\"><emph>Pilt - </emph></caseinline></switchinline><emph>Ala - </emph>kaart <emph>Bittrastrid</emph></variable>"
+msgid "<variable id=\"bitmap\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Bitmaps</emph> tab</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
@@ -11413,8 +11469,8 @@ msgctxt ""
"00040502.xhp\n"
"par_id3156286\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F4 key </caseinline><caseinline select=\"IMPRESS\">F4 key </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"DRAW\">klahv F4 </caseinline><caseinline select=\"IMPRESS\">klahv F4 </caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F4 key</caseinline><caseinline select=\"IMPRESS\">F4 key</caseinline></switchinline>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
@@ -11453,8 +11509,8 @@ msgctxt ""
"00040502.xhp\n"
"par_id3153099\n"
"help.text"
-msgid "<variable id=\"position2\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Position and Size</emph> tab </variable>"
-msgstr "<variable id=\"position2\">Vali <emph>Vormindus - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Objekt - </emph></caseinline><caseinline select=\"CALC\"><emph>Pilt - </emph></caseinline></switchinline><emph>Paigutus ja suurus - </emph>kaart <emph>Paigutus ja suurus</emph> </variable>"
+msgid "<variable id=\"position2\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Position and Size</emph> tab</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
@@ -11485,16 +11541,16 @@ msgctxt ""
"00040502.xhp\n"
"par_id3145666\n"
"help.text"
-msgid "<variable id=\"ecke\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Slant & Corner Radius</emph> tab </variable>"
-msgstr "<variable id=\"ecke\">Vali <emph>Vormindus - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Objekt - </emph></caseinline><caseinline select=\"CALC\"><emph>Pilt - </emph></caseinline></switchinline><emph>Paigutus ja suurus - </emph>kaart <emph>Kalle ja nurkraadius</emph> </variable>"
+msgid "<variable id=\"ecke\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Slant & Corner Radius</emph> tab</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3146081\n"
"help.text"
-msgid "<variable id=\"legende\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Callout</emph> tab (only for textbox callouts, not for custom shapes callouts) </variable>"
-msgstr "<variable id=\"legende\">Vali <emph>Vormindus - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Objekt - </emph></caseinline><caseinline select=\"CALC\"><emph>Pilt - </emph></caseinline></switchinline><emph>Paigutus ja suurus - </emph>kaart <emph>Viiktekst</emph> (ainult tekstikastiga viikude, mitte kohandatud kujuga viikude jaoks) </variable>"
+msgid "<variable id=\"legende\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Callout</emph> tab (only for textbox callouts, not for custom shapes callouts)</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
@@ -11517,8 +11573,8 @@ msgctxt ""
"00040502.xhp\n"
"par_id3149019\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F8 key </caseinline><caseinline select=\"IMPRESS\">F8 key </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"DRAW\">Klahv F8 </caseinline><caseinline select=\"IMPRESS\">Klahv F8 </caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F8 key</caseinline><caseinline select=\"IMPRESS\">F8 key</caseinline></switchinline>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
@@ -11805,8 +11861,8 @@ msgctxt ""
"00040502.xhp\n"
"par_id3153076\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Align Center Horizontally </caseinline><defaultinline>Centered</defaultinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Joonda rõhtsalt keskele </caseinline><defaultinline>Keskele</defaultinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Align Center Horizontally</caseinline><defaultinline>Centered</defaultinline></switchinline>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
@@ -11845,8 +11901,8 @@ msgctxt ""
"00040502.xhp\n"
"par_id3150527\n"
"help.text"
-msgid "<variable id=\"font\">Click <emph>Fontwork</emph> icon on <emph>Drawing</emph> bar </variable>"
-msgstr "<variable id=\"font\">Klõpsa <emph>joonistusriba</emph> ikoonil <emph>Ilukiri</emph> </variable>"
+msgid "<variable id=\"font\">Click <emph>Fontwork</emph> icon on <emph>Drawing</emph> bar</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
diff --git a/source/et/helpcontent2/source/text/shared/01.po b/source/et/helpcontent2/source/text/shared/01.po
index fd563b0753a..5e423a86365 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: 2018-05-23 23:19+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2016-07-06 02:13+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Estonian <none>\n"
@@ -23587,6 +23587,22 @@ msgstr ""
#: 05210100.xhp
msgctxt ""
"05210100.xhp\n"
+"hd_id471527077476052\n"
+"help.text"
+msgid "Cell, Row or Table background selector"
+msgstr ""
+
+#: 05210100.xhp
+msgctxt ""
+"05210100.xhp\n"
+"par_id661527077493366\n"
+"help.text"
+msgid "Select the table object which background area is to be filled."
+msgstr ""
+
+#: 05210100.xhp
+msgctxt ""
+"05210100.xhp\n"
"hd_id3147373\n"
"help.text"
msgid "None"
@@ -31205,24 +31221,24 @@ msgctxt ""
"06040100.xhp\n"
"hd_id3145072\n"
"help.text"
-msgid "Automatic *bold* and _underline_"
-msgstr "Automaatne *paks* ja _allajoonitud_ kiri"
+msgid "Automatic *bold*, /italic/, -strikeout- and _underline_"
+msgstr ""
#: 06040100.xhp
msgctxt ""
"06040100.xhp\n"
"par_id3153577\n"
"help.text"
-msgid "Automatically applies bold formatting to text enclosed by asterisks (*), and underline to text enclosed by underscores ( _ ), for example, *bold*. The asterisks and underscores are not displayed after the formatting is applied."
-msgstr "Muudab automaatselt rasvaseks teksti, mis on ümbritsetud tärnidega (*), ja joonib alla teksti, mis on ümbritsetud alakriipsudega ( _ ), näiteks *paks*. Pärast vorminduse rakendamist tärne ja alakriipse ei kuvata."
+msgid "Automatically applies bold, italic, strikethrough or underline formatting to text enclosed by asterisks (*), slashes (/), hyphens (-), and underscores (_), respectively. These characters disappear after the formatting is applied."
+msgstr ""
#: 06040100.xhp
msgctxt ""
"06040100.xhp\n"
"par_id3153127\n"
"help.text"
-msgid "This feature does not work if the formatting characters * or _ are entered with an <link href=\"text/shared/00/00000005.xhp#IME\" name=\"Input Method Editor\">Input Method Editor</link>."
-msgstr "See funktsioon ei tööta, kui vormindussümbolid * ja _ on sisestatud <link href=\"text/shared/00/00000005.xhp#IME\" name=\"sisestusmeetodi redaktori\">sisestusmeetodi redaktori</link> abil."
+msgid "This feature does not work if the formatting characters <item type=\"literal\">* / - _</item> are entered with an <link href=\"text/shared/00/00000005.xhp#IME\" name=\"Input Method Editor\">Input Method Editor</link>."
+msgstr ""
#: 06040100.xhp
msgctxt ""
diff --git a/source/et/helpcontent2/source/text/shared/optionen.po b/source/et/helpcontent2/source/text/shared/optionen.po
index 49fa8708511..766649d533a 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: 2018-05-08 15:10+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2016-07-06 02:48+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Estonian <none>\n"
@@ -83,6 +83,22 @@ msgstr ""
#: 01000000.xhp
msgctxt ""
"01000000.xhp\n"
+"hd_id551527692881035\n"
+"help.text"
+msgid "Help"
+msgstr ""
+
+#: 01000000.xhp
+msgctxt ""
+"01000000.xhp\n"
+"par_id831527692885723\n"
+"help.text"
+msgid "Opens the help contents for the Options page displayed."
+msgstr ""
+
+#: 01000000.xhp
+msgctxt ""
+"01000000.xhp\n"
"hd_id3159149\n"
"help.text"
msgid "<link href=\"text/shared/optionen/01010000.xhp\" name=\"$[officename]\">%PRODUCTNAME</link>"
@@ -4565,8 +4581,8 @@ msgctxt ""
"01030300.xhp\n"
"par_idN10640\n"
"help.text"
-msgid "Options"
-msgstr "Sätted"
+msgid "Security Options and Warnings"
+msgstr ""
#: 01030300.xhp
msgctxt ""
@@ -4597,8 +4613,8 @@ msgctxt ""
"01030300.xhp\n"
"hd_id3168736\n"
"help.text"
-msgid "Persistently save passwords protected by a master password"
-msgstr "Ülemparooliga kaitstud paroolid salvestatakse püsivalt"
+msgid "Persistently save passwords for web connections"
+msgstr ""
#: 01030300.xhp
msgctxt ""
@@ -4613,8 +4629,24 @@ msgctxt ""
"01030300.xhp\n"
"hd_id3901791\n"
"help.text"
+msgid "Protected by a master password (recommended)"
+msgstr ""
+
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"par_id31527711486980\n"
+"help.text"
+msgid "Check to enable all connections' passwords to be protected by a master password."
+msgstr ""
+
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"hd_id141527711343312\n"
+"help.text"
msgid "Master Password"
-msgstr "Ülemparool"
+msgstr ""
#: 01030300.xhp
msgctxt ""
@@ -13733,8 +13765,8 @@ msgctxt ""
"java.xhp\n"
"hd_id3148618\n"
"help.text"
-msgid "Optional (unstable) options"
-msgstr "Ebastabiilsed lisavõimalused"
+msgid "Optional Features"
+msgstr ""
#: java.xhp
msgctxt ""
@@ -13749,8 +13781,8 @@ msgctxt ""
"java.xhp\n"
"par_id3156344\n"
"help.text"
-msgid "It enables features that are not yet complete or contain known bugs. The list of these features is different version by version, or even it can be empty."
-msgstr "Võimaldab kasutada programmi funktsioone, mis pole veel päris valmis või sisaldavad suuri vigu. Nende funktsioonide loend erineb versiooniti ja võib ka täiesti tühi olla."
+msgid "Enables features that are not yet complete or may contain known bugs. The list of these features is different version by version, or even it can be empty."
+msgstr ""
#: java.xhp
msgctxt ""
@@ -13765,8 +13797,8 @@ msgctxt ""
"java.xhp\n"
"par_id3156345\n"
"help.text"
-msgid "It enables macro recording, so the <link href=\"text/shared/guide/macro_recording.xhp\" name=\"Tools - Macros - Record Macro\"><item type=\"menuitem\">Tools - Macros - Record Macro</item></link> menu item will be available."
-msgstr "Võimaldab makrode salvestamise, nii et saadaval on menüükäsk <link href=\"text/shared/guide/macro_recording.xhp\" name=\"Tööriistad - Makrod - Salvesta makro\"><item type=\"menuitem\">Tööriistad - Makrod - Salvesta makro</item></link>."
+msgid "Enables macro recording. The <link href=\"text/shared/guide/macro_recording.xhp\" name=\"Tools - Macros - Record Macro\"><item type=\"menuitem\">Tools - Macros - Record Macro</item></link> menu item is available."
+msgstr ""
#: java.xhp
msgctxt ""
diff --git a/source/et/officecfg/registry/data/org/openoffice/Office/UI.po b/source/et/officecfg/registry/data/org/openoffice/Office/UI.po
index 66ff5892f3a..27c063ef1dc 100644
--- a/source/et/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/et/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-22 13:17+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2018-01-16 20:16+0000\n"
"Last-Translator: Mihkel Tõnnov <mihhkel@gmail.com>\n"
"Language-Team: Estonian <none>\n"
@@ -26520,8 +26520,8 @@ msgctxt ""
"..WriterCommands.UserInterface.Commands..uno:TextAttributes\n"
"Label\n"
"value.text"
-msgid "Text Attributes"
-msgstr "Teksti atribuudid"
+msgid "Text Attributes..."
+msgstr ""
#: WriterCommands.xcu
msgctxt ""
diff --git a/source/et/readlicense_oo/docs.po b/source/et/readlicense_oo/docs.po
index dc5e3a82874..96223cf3984 100644
--- a/source/et/readlicense_oo/docs.po
+++ b/source/et/readlicense_oo/docs.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: 2018-04-17 15:54+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2017-12-14 23:22+0000\n"
"Last-Translator: Mihkel Tõnnov <mihhkel@gmail.com>\n"
"Language-Team: Estonian <none>\n"
@@ -117,8 +117,8 @@ msgctxt ""
"readme.xrm\n"
"macxiOSX\n"
"readmeitem.text"
-msgid "MacOSX 10.8 (Mountain Lion) or higher"
-msgstr "Mac OS X 10.8 (Mountain Lion) või uuem"
+msgid "MacOSX 10.9 (Mavericks) or higher"
+msgstr ""
#: readme.xrm
msgctxt ""
diff --git a/source/et/sc/messages.po b/source/et/sc/messages.po
index 7b00ccaa6f9..840759118b0 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-12 14:40+0200\n"
"PO-Revision-Date: 2018-01-17 00:35+0000\n"
"Last-Translator: Mihkel Tõnnov <mihhkel@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1868,16 +1868,21 @@ msgid "Nested arrays are not supported."
msgstr "Põimitud massiivid pole toetatud."
#: sc/inc/globstr.hrc:390
+msgctxt "STR_ERR_LONG_BAD_ARRAY_CONTENT"
+msgid "Unsupported inline array content."
+msgstr ""
+
+#: sc/inc/globstr.hrc:391
msgctxt "STR_UNDO_TEXTTOCOLUMNS"
msgid "Text to Columns"
msgstr "Tekst veergudesse"
-#: sc/inc/globstr.hrc:391
+#: sc/inc/globstr.hrc:392
msgctxt "STR_DOC_UPDATED"
msgid "Your spreadsheet has been updated with changes saved by other users."
msgstr "Sinu arvutustabelit uuendati teiste kasutajate poolt salvestatud muudatustega."
-#: sc/inc/globstr.hrc:392
+#: sc/inc/globstr.hrc:393
msgctxt "STR_DOC_WILLBESAVED"
msgid ""
"The spreadsheet must be saved now to activate sharing mode.\n"
@@ -1888,7 +1893,7 @@ msgstr ""
"\n"
"Kas soovid jätkata?"
-#: sc/inc/globstr.hrc:393
+#: sc/inc/globstr.hrc:394
msgctxt "STR_DOC_WILLNOTBESAVED"
msgid ""
"Already resolved merge conflicts will be lost and your changes to the shared spreadsheet will not be saved.\n"
@@ -1899,7 +1904,7 @@ msgstr ""
"\n"
"Kas soovid jätkata?"
-#: sc/inc/globstr.hrc:394
+#: sc/inc/globstr.hrc:395
msgctxt "STR_DOC_DISABLESHARED"
msgid ""
"Disabling shared mode of a spreadsheet hinders all other users of the shared spreadsheet to merge back their work.\n"
@@ -1910,7 +1915,7 @@ msgstr ""
"\n"
"Kas soovid jätkata?"
-#: sc/inc/globstr.hrc:395
+#: sc/inc/globstr.hrc:396
msgctxt "STR_DOC_NOLONGERSHARED"
msgid ""
"This spreadsheet is no longer in shared mode.\n"
@@ -1921,7 +1926,7 @@ msgstr ""
"\n"
"Salvesta arvutustabel eraldi failina ja ühenda oma muudatused jagatud arvutustabeliga käsitsi."
-#: sc/inc/globstr.hrc:396
+#: sc/inc/globstr.hrc:397
msgctxt "STR_FILE_LOCKED_TRY_LATER"
msgid ""
"The shared spreadsheet file is locked due to a merge in progress by user: '%1'\n"
@@ -1932,7 +1937,7 @@ msgstr ""
"\n"
"Lukustatud faili jagamisrežiimi ei saa muuta. Proovi hiljem uuesti."
-#: sc/inc/globstr.hrc:397
+#: sc/inc/globstr.hrc:398
msgctxt "STR_FILE_LOCKED_SAVE_LATER"
msgid ""
"The shared spreadsheet file is locked due to a merge in progress by user: '%1'\n"
@@ -1943,147 +1948,147 @@ msgstr ""
"\n"
"Proovi hiljem uuesti oma muudatusi salvestada."
-#: sc/inc/globstr.hrc:398
+#: sc/inc/globstr.hrc:399
msgctxt "STR_UNKNOWN_USER"
msgid "Unknown User"
msgstr "Tundmatu kasutaja"
-#: sc/inc/globstr.hrc:399
+#: sc/inc/globstr.hrc:400
msgctxt "STR_SHAPE_AUTOSHAPE"
msgid "AutoShape"
msgstr "Automaatkujund"
-#: sc/inc/globstr.hrc:400
+#: sc/inc/globstr.hrc:401
msgctxt "STR_SHAPE_RECTANGLE"
msgid "Rectangle"
msgstr "Ristkülik"
-#: sc/inc/globstr.hrc:401
+#: sc/inc/globstr.hrc:402
msgctxt "STR_SHAPE_LINE"
msgid "Line"
msgstr "Joon"
-#: sc/inc/globstr.hrc:402
+#: sc/inc/globstr.hrc:403
msgctxt "STR_SHAPE_OVAL"
msgid "Oval"
msgstr "Ovaal"
-#: sc/inc/globstr.hrc:403
+#: sc/inc/globstr.hrc:404
msgctxt "STR_FORM_BUTTON"
msgid "Button"
msgstr "Nupp"
-#: sc/inc/globstr.hrc:404
+#: sc/inc/globstr.hrc:405
msgctxt "STR_FORM_CHECKBOX"
msgid "Check Box"
msgstr "Märkeruut"
-#: sc/inc/globstr.hrc:405
+#: sc/inc/globstr.hrc:406
msgctxt "STR_FORM_OPTIONBUTTON"
msgid "Option Button"
msgstr "Valikunupp"
-#: sc/inc/globstr.hrc:406
+#: sc/inc/globstr.hrc:407
msgctxt "STR_FORM_LABEL"
msgid "Label"
msgstr "Silt"
-#: sc/inc/globstr.hrc:407
+#: sc/inc/globstr.hrc:408
msgctxt "STR_FORM_LISTBOX"
msgid "List Box"
msgstr "Loendikast"
-#: sc/inc/globstr.hrc:408
+#: sc/inc/globstr.hrc:409
msgctxt "STR_FORM_GROUPBOX"
msgid "Group Box"
msgstr "Rühmakast"
-#: sc/inc/globstr.hrc:409
+#: sc/inc/globstr.hrc:410
msgctxt "STR_FORM_DROPDOWN"
msgid "Drop Down"
msgstr "Rippmenüü"
-#: sc/inc/globstr.hrc:410
+#: sc/inc/globstr.hrc:411
msgctxt "STR_FORM_SPINNER"
msgid "Spinner"
msgstr "Vurr"
-#: sc/inc/globstr.hrc:411
+#: sc/inc/globstr.hrc:412
msgctxt "STR_FORM_SCROLLBAR"
msgid "Scroll Bar"
msgstr "Kerimisriba"
-#: sc/inc/globstr.hrc:412
+#: sc/inc/globstr.hrc:413
msgctxt "STR_STYLE_FAMILY_CELL"
msgid "Cell Styles"
msgstr "Lahtristiilid"
-#: sc/inc/globstr.hrc:413
+#: sc/inc/globstr.hrc:414
msgctxt "STR_STYLE_FAMILY_PAGE"
msgid "Page Styles"
msgstr "Leheküljestiilid"
-#: sc/inc/globstr.hrc:414
+#: sc/inc/globstr.hrc:415
msgctxt "STR_ERR_DATAPILOTSOURCE"
msgid "Pivot table source data is invalid."
msgstr "Liigendtabeli lähteandmed on vigased."
-#: sc/inc/globstr.hrc:415
+#: sc/inc/globstr.hrc:416
msgctxt "STR_OPTIONS_WARN_SEPARATORS"
msgid "Because the current formula separator settings conflict with the locale, the formula separators have been reset to their default values."
msgstr "Kuna praegused valemieraldussätted on vastuolus lokaadi sätetega, lähtestati valemieraldajad vaikeväärtustele."
-#: sc/inc/globstr.hrc:416
+#: sc/inc/globstr.hrc:417
msgctxt "STR_UNDO_INSERT_CURRENT_DATE"
msgid "Insert Current Date"
msgstr "Praegune kuupäev"
-#: sc/inc/globstr.hrc:417
+#: sc/inc/globstr.hrc:418
msgctxt "STR_UNDO_INSERT_CURRENT_TIME"
msgid "Insert Current Time"
msgstr "Praegune kellaaeg"
-#: sc/inc/globstr.hrc:418
+#: sc/inc/globstr.hrc:419
msgctxt "STR_MANAGE_NAMES"
msgid "Manage Names..."
msgstr "Halda nimesid..."
-#: sc/inc/globstr.hrc:419
+#: sc/inc/globstr.hrc:420
msgctxt "STR_HEADER_NAME"
msgid "Name"
msgstr "Nimi"
-#: sc/inc/globstr.hrc:420
+#: sc/inc/globstr.hrc:421
msgctxt "STR_HEADER_RANGE_OR_EXPR"
msgid "Range or formula expression"
msgstr "Vahemik või valemiavaldis"
-#: sc/inc/globstr.hrc:421
+#: sc/inc/globstr.hrc:422
msgctxt "STR_HEADER_SCOPE"
msgid "Scope"
msgstr "Skoop"
-#: sc/inc/globstr.hrc:422
+#: sc/inc/globstr.hrc:423
msgctxt "STR_MULTI_SELECT"
msgid "(multiple)"
msgstr "(mitu)"
-#: sc/inc/globstr.hrc:423
+#: sc/inc/globstr.hrc:424
msgctxt "STR_GLOBAL_SCOPE"
msgid "Document (Global)"
msgstr "Dokument (üldine)"
-#: sc/inc/globstr.hrc:424
+#: sc/inc/globstr.hrc:425
msgctxt "STR_ERR_NAME_EXISTS"
msgid "Invalid name. Already in use for the selected scope."
msgstr "Sobimatu nimi. Valitud skoobi jaoks on see juba kasutusel."
-#: sc/inc/globstr.hrc:425
+#: sc/inc/globstr.hrc:426
msgctxt "STR_ERR_NAME_INVALID"
msgid "Invalid name. Only use letters, numbers and underscore."
msgstr "Sobimatu nimi. Kasuta üksnes tähti, numbreid ja alakriipsu."
-#: sc/inc/globstr.hrc:426
+#: sc/inc/globstr.hrc:427
msgctxt "STR_UNSAVED_EXT_REF"
msgid ""
"This Document contains external references to unsaved documents.\n"
@@ -2094,217 +2099,217 @@ msgstr ""
"\n"
"Kas soovid jätkata?"
-#: sc/inc/globstr.hrc:427
+#: sc/inc/globstr.hrc:428
msgctxt "STR_CLOSE_WITH_UNSAVED_REFS"
msgid "This Document is referenced by another document and not yet saved. Closing it without saving will result in data loss."
msgstr "Seda dokumenti on viidatud teisest dokumendist, aga seda pole veel salvestatud. Selle sulgemisel ilma salvestamata lähevad andmed kaotsi."
-#: sc/inc/globstr.hrc:428
+#: sc/inc/globstr.hrc:429
msgctxt "STR_HEADER_RANGE"
msgid "Range"
msgstr "Vahemik"
-#: sc/inc/globstr.hrc:429
+#: sc/inc/globstr.hrc:430
msgctxt "STR_HEADER_COND"
msgid "First Condition"
msgstr "Esimene tingimus"
-#: sc/inc/globstr.hrc:430
+#: sc/inc/globstr.hrc:431
msgctxt "STR_COND_CONDITION"
msgid "Cell value is"
msgstr "Lahtri väärtus"
-#: sc/inc/globstr.hrc:431
+#: sc/inc/globstr.hrc:432
msgctxt "STR_COND_COLORSCALE"
msgid "ColorScale"
msgstr "Värviskaala"
-#: sc/inc/globstr.hrc:432
+#: sc/inc/globstr.hrc:433
msgctxt "STR_COND_DATABAR"
msgid "DataBar"
msgstr "Andmeriba"
-#: sc/inc/globstr.hrc:433
+#: sc/inc/globstr.hrc:434
msgctxt "STR_COND_ICONSET"
msgid "IconSet"
msgstr "Ikoonikogu"
-#: sc/inc/globstr.hrc:434
+#: sc/inc/globstr.hrc:435
msgctxt "STR_COND_BETWEEN"
msgid "between"
msgstr "on vahemikus"
-#: sc/inc/globstr.hrc:435
+#: sc/inc/globstr.hrc:436
msgctxt "STR_COND_NOTBETWEEN"
msgid "not between"
msgstr "pole vahemikus"
-#: sc/inc/globstr.hrc:436
+#: sc/inc/globstr.hrc:437
msgctxt "STR_COND_UNIQUE"
msgid "unique"
msgstr "on unikaalne"
-#: sc/inc/globstr.hrc:437
+#: sc/inc/globstr.hrc:438
msgctxt "STR_COND_DUPLICATE"
msgid "duplicate"
msgstr "pole unikaalne"
-#: sc/inc/globstr.hrc:438
+#: sc/inc/globstr.hrc:439
msgctxt "STR_COND_FORMULA"
msgid "Formula is"
msgstr "Valem on"
-#: sc/inc/globstr.hrc:439
+#: sc/inc/globstr.hrc:440
msgctxt "STR_COND_TOP10"
msgid "Top Elements"
msgstr "on suurimate hulgas"
-#: sc/inc/globstr.hrc:440
+#: sc/inc/globstr.hrc:441
msgctxt "STR_COND_BOTTOM10"
msgid "Bottom Elements"
msgstr "on vähimate hulgas"
-#: sc/inc/globstr.hrc:441
+#: sc/inc/globstr.hrc:442
msgctxt "STR_COND_TOP_PERCENT"
msgid "Top Percent"
msgstr "on suurimate protsentide hulgas"
-#: sc/inc/globstr.hrc:442
+#: sc/inc/globstr.hrc:443
msgctxt "STR_COND_DATE"
msgid "Date is"
msgstr "Kuupäev on"
-#: sc/inc/globstr.hrc:443
+#: sc/inc/globstr.hrc:444
msgctxt "STR_COND_BOTTOM_PERCENT"
msgid "Bottom Percent"
msgstr "on vähimate protsentide hulgas"
-#: sc/inc/globstr.hrc:444
+#: sc/inc/globstr.hrc:445
msgctxt "STR_COND_ABOVE_AVERAGE"
msgid "Above Average"
msgstr "on üle keskmise"
-#: sc/inc/globstr.hrc:445
+#: sc/inc/globstr.hrc:446
msgctxt "STR_COND_BELOW_AVERAGE"
msgid "Below Average"
msgstr "on alla keskmise"
-#: sc/inc/globstr.hrc:446
+#: sc/inc/globstr.hrc:447
msgctxt "STR_COND_ABOVE_EQUAL_AVERAGE"
msgid "Above or equal Average"
msgstr "on vähemalt keskmine"
-#: sc/inc/globstr.hrc:447
+#: sc/inc/globstr.hrc:448
msgctxt "STR_COND_BELOW_EQUAL_AVERAGE"
msgid "Below or equal Average"
msgstr "on kuni keskmine"
-#: sc/inc/globstr.hrc:448
+#: sc/inc/globstr.hrc:449
msgctxt "STR_COND_ERROR"
msgid "an Error code"
msgstr "on veakood"
-#: sc/inc/globstr.hrc:449
+#: sc/inc/globstr.hrc:450
msgctxt "STR_COND_NOERROR"
msgid "not an Error code"
msgstr "pole veakood"
-#: sc/inc/globstr.hrc:450
+#: sc/inc/globstr.hrc:451
msgctxt "STR_COND_BEGINS_WITH"
msgid "Begins with"
msgstr "algab"
-#: sc/inc/globstr.hrc:451
+#: sc/inc/globstr.hrc:452
msgctxt "STR_COND_ENDS_WITH"
msgid "Ends with"
msgstr "lõpeb"
-#: sc/inc/globstr.hrc:452
+#: sc/inc/globstr.hrc:453
msgctxt "STR_COND_CONTAINS"
msgid "Contains"
msgstr "sisaldab"
-#: sc/inc/globstr.hrc:453
+#: sc/inc/globstr.hrc:454
msgctxt "STR_COND_NOT_CONTAINS"
msgid "Not Contains"
msgstr "ei sisalda"
-#: sc/inc/globstr.hrc:454
+#: sc/inc/globstr.hrc:455
msgctxt "STR_COND_TODAY"
msgid "today"
msgstr "täna"
-#: sc/inc/globstr.hrc:455
+#: sc/inc/globstr.hrc:456
msgctxt "STR_COND_YESTERDAY"
msgid "yesterday"
msgstr "eile"
-#: sc/inc/globstr.hrc:456
+#: sc/inc/globstr.hrc:457
msgctxt "STR_COND_TOMORROW"
msgid "tomorrow"
msgstr "homme"
-#: sc/inc/globstr.hrc:457
+#: sc/inc/globstr.hrc:458
msgctxt "STR_COND_LAST7DAYS"
msgid "in the last 7 days"
msgstr "viimase 7 päeva hulgas"
-#: sc/inc/globstr.hrc:458
+#: sc/inc/globstr.hrc:459
msgctxt "STR_COND_THISWEEK"
msgid "this week"
msgstr "sel nädalal"
-#: sc/inc/globstr.hrc:459
+#: sc/inc/globstr.hrc:460
msgctxt "STR_COND_LASTWEEK"
msgid "last week"
msgstr "eelmisel nädalal"
-#: sc/inc/globstr.hrc:460
+#: sc/inc/globstr.hrc:461
msgctxt "STR_COND_NEXTWEEK"
msgid "next week"
msgstr "järgmisel nädalal"
-#: sc/inc/globstr.hrc:461
+#: sc/inc/globstr.hrc:462
msgctxt "STR_COND_THISMONTH"
msgid "this month"
msgstr "sel kuul"
-#: sc/inc/globstr.hrc:462
+#: sc/inc/globstr.hrc:463
msgctxt "STR_COND_LASTMONTH"
msgid "last month"
msgstr "eelmisel kuul"
-#: sc/inc/globstr.hrc:463
+#: sc/inc/globstr.hrc:464
msgctxt "STR_COND_NEXTMONTH"
msgid "next month"
msgstr "järgmisel kuul"
-#: sc/inc/globstr.hrc:464
+#: sc/inc/globstr.hrc:465
msgctxt "STR_COND_THISYEAR"
msgid "this year"
msgstr "sel aastal"
-#: sc/inc/globstr.hrc:465
+#: sc/inc/globstr.hrc:466
msgctxt "STR_COND_LASTYEAR"
msgid "last year"
msgstr "eelmisel aastal"
-#: sc/inc/globstr.hrc:466
+#: sc/inc/globstr.hrc:467
msgctxt "STR_COND_NEXTYEAR"
msgid "next year"
msgstr "järgmisel aastal"
-#: sc/inc/globstr.hrc:467
+#: sc/inc/globstr.hrc:468
msgctxt "STR_COND_AND"
msgid "and"
msgstr "ja"
-#: sc/inc/globstr.hrc:468
+#: sc/inc/globstr.hrc:469
msgctxt "STR_ERR_CONDFORMAT_PROTECTED"
msgid "Conditional Formats can not be created, deleted or changed in protected sheets."
msgstr ""
-#: sc/inc/globstr.hrc:469
+#: sc/inc/globstr.hrc:470
msgctxt "STR_EDIT_EXISTING_COND_FORMATS"
msgid ""
"The selected cell already contains conditional formatting. You can either edit the existing conditional format or you define a new overlapping conditional format.\n"
@@ -2315,7 +2320,7 @@ msgstr ""
"\n"
"Kas soovid muuta olemasolevat tingimuslikku vormindust?"
-#: sc/inc/globstr.hrc:470
+#: sc/inc/globstr.hrc:471
msgctxt "STR_QUERY_FORMULA_RECALC_ONLOAD_ODS"
msgid ""
"This document was last saved by an application other than %PRODUCTNAME. Some formula cells may produce different results when recalculated.\n"
@@ -2326,7 +2331,7 @@ msgstr ""
"\n"
"Kas soovid kõik selle dokumendi valemid kohe uuesti arvutada?"
-#: sc/inc/globstr.hrc:471
+#: sc/inc/globstr.hrc:472
msgctxt "STR_QUERY_FORMULA_RECALC_ONLOAD_XLS"
msgid ""
"This document was last saved by Excel. Some formula cells may produce different results when recalculated.\n"
@@ -2337,77 +2342,77 @@ msgstr ""
"\n"
"Kas soovid kõik selle dokumendi valemid kohe uuesti arvutada?"
-#: sc/inc/globstr.hrc:472
+#: sc/inc/globstr.hrc:473
msgctxt "STR_NO_INSERT_DELETE_OVER_PIVOT_TABLE"
msgid "You cannot insert or delete cells when the affected range intersects with pivot table."
msgstr "Liigendtabeliga lõikuvas alas ei saa lahtreid lisada ega kustutada."
-#: sc/inc/globstr.hrc:473
+#: sc/inc/globstr.hrc:474
msgctxt "STR_DPFIELD_GROUP_BY_SECONDS"
msgid "Seconds"
msgstr "Sekundid"
-#: sc/inc/globstr.hrc:474
+#: sc/inc/globstr.hrc:475
msgctxt "STR_DPFIELD_GROUP_BY_MINUTES"
msgid "Minutes"
msgstr "min tagant"
-#: sc/inc/globstr.hrc:475
+#: sc/inc/globstr.hrc:476
msgctxt "STR_DPFIELD_GROUP_BY_HOURS"
msgid "Hours"
msgstr "Tunnid"
-#: sc/inc/globstr.hrc:476
+#: sc/inc/globstr.hrc:477
msgctxt "STR_DPFIELD_GROUP_BY_DAYS"
msgid "Days"
msgstr "Päevad"
-#: sc/inc/globstr.hrc:477
+#: sc/inc/globstr.hrc:478
msgctxt "STR_DPFIELD_GROUP_BY_MONTHS"
msgid "Months"
msgstr "Kuud"
-#: sc/inc/globstr.hrc:478
+#: sc/inc/globstr.hrc:479
msgctxt "STR_DPFIELD_GROUP_BY_QUARTERS"
msgid "Quarters"
msgstr "Kvartalid"
-#: sc/inc/globstr.hrc:479
+#: sc/inc/globstr.hrc:480
msgctxt "STR_DPFIELD_GROUP_BY_YEARS"
msgid "Years"
msgstr "Aastad"
-#: sc/inc/globstr.hrc:480
+#: sc/inc/globstr.hrc:481
msgctxt "STR_INVALIDVAL"
msgid "Invalid target value."
msgstr "Vigane sihtväärtus."
-#: sc/inc/globstr.hrc:481
+#: sc/inc/globstr.hrc:482
msgctxt "STR_INVALIDVAR"
msgid "Undefined name for variable cell."
msgstr "Muutujalahtri jaoks nimi määramata."
-#: sc/inc/globstr.hrc:482
+#: sc/inc/globstr.hrc:483
msgctxt "STR_INVALIDFORM"
msgid "Undefined name as formula cell."
msgstr "Valemilahtri jaoks nimi määramata."
-#: sc/inc/globstr.hrc:483
+#: sc/inc/globstr.hrc:484
msgctxt "STR_NOFORMULA"
msgid "Formula cell must contain a formula."
msgstr "Valemilahter peab sisaldama valemit."
-#: sc/inc/globstr.hrc:484
+#: sc/inc/globstr.hrc:485
msgctxt "STR_INVALIDINPUT"
msgid "Invalid input."
msgstr "Vigane sisestus."
-#: sc/inc/globstr.hrc:485
+#: sc/inc/globstr.hrc:486
msgctxt "STR_INVALIDCONDITION"
msgid "Invalid condition."
msgstr "Vigane tingimus."
-#: sc/inc/globstr.hrc:486
+#: sc/inc/globstr.hrc:487
msgctxt "STR_QUERYREMOVE"
msgid ""
"Should the entry\n"
@@ -2418,133 +2423,133 @@ msgstr ""
"#\n"
"?"
-#: sc/inc/globstr.hrc:487
+#: sc/inc/globstr.hrc:488
msgctxt "STR_COPYLIST"
msgid "Copy List"
msgstr "Loendi kopeerimine"
-#: sc/inc/globstr.hrc:488
+#: sc/inc/globstr.hrc:489
msgctxt "STR_COPYFROM"
msgid "List from"
msgstr "Loend"
-#: sc/inc/globstr.hrc:489
+#: sc/inc/globstr.hrc:490
msgctxt "STR_COPYERR"
msgid "Cells without text have been ignored."
msgstr "Ilma tekstita lahtreid ei arvestatud."
-#: sc/inc/globstr.hrc:490
+#: sc/inc/globstr.hrc:491
#, c-format
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%s-click to follow hyperlink:"
msgstr "Lingi avamiseks tee %s-klõps:"
-#: sc/inc/globstr.hrc:491
+#: sc/inc/globstr.hrc:492
msgctxt "STR_CLICKHYPERLINK"
msgid "click to open hyperlink:"
msgstr "Klõps avab hüperlingi: "
-#: sc/inc/globstr.hrc:492
+#: sc/inc/globstr.hrc:493
msgctxt "STR_PRINT_PREVIEW_NODATA"
msgid "No Data"
msgstr "Andmeid pole"
-#: sc/inc/globstr.hrc:493
+#: sc/inc/globstr.hrc:494
msgctxt "STR_PRINT_PREVIEW_EMPTY_RANGE"
msgid "Print Range Empty"
msgstr "Trükiala on tühi"
-#: sc/inc/globstr.hrc:494
+#: sc/inc/globstr.hrc:495
msgctxt "STR_UNDO_CONDFORMAT"
msgid "Conditional Format"
msgstr "Tingimuslik vormindus"
-#: sc/inc/globstr.hrc:495
+#: sc/inc/globstr.hrc:496
msgctxt "STR_UNDO_CONDFORMAT_LIST"
msgid "Conditional Formats"
msgstr "Tingimuslik vormindus"
-#: sc/inc/globstr.hrc:496
+#: sc/inc/globstr.hrc:497
msgctxt "STR_UNDO_FORMULA_TO_VALUE"
msgid "Convert Formula To Value"
msgstr "Teisenda valem väärtuseks"
-#: sc/inc/globstr.hrc:497
+#: sc/inc/globstr.hrc:498
msgctxt "STR_UNQUOTED_STRING"
msgid "Strings without quotes are interpreted as column/row labels."
msgstr "Ilme jutumärkideta stringe tõlgendatakse veeru- või reapäistena."
-#: sc/inc/globstr.hrc:498
+#: sc/inc/globstr.hrc:499
msgctxt "STR_ENTER_VALUE"
msgid "Enter a value!"
msgstr "Palun sisesta väärtus!"
-#: sc/inc/globstr.hrc:499
+#: sc/inc/globstr.hrc:500
msgctxt "STR_TABLE_COUNT"
msgid "Sheet %1 of %2"
msgstr "Leht %1 / %2"
-#: sc/inc/globstr.hrc:500
+#: sc/inc/globstr.hrc:501
msgctxt "STR_FUNCTIONS_FOUND"
msgid "%1 and %2 more"
msgstr "%1 ja veel %2"
-#: sc/inc/globstr.hrc:501
+#: sc/inc/globstr.hrc:502
msgctxt "STR_GENERAL"
msgid "General"
msgstr "Üldine"
-#: sc/inc/globstr.hrc:502
+#: sc/inc/globstr.hrc:503
msgctxt "STR_NUMBER"
msgid "Number"
msgstr "Arv"
-#: sc/inc/globstr.hrc:503
+#: sc/inc/globstr.hrc:504
msgctxt "STR_PERCENT"
msgid "Percent"
msgstr "Protsent"
-#: sc/inc/globstr.hrc:504
+#: sc/inc/globstr.hrc:505
msgctxt "STR_CURRENCY"
msgid "Currency"
msgstr "Raha"
-#: sc/inc/globstr.hrc:505
+#: sc/inc/globstr.hrc:506
msgctxt "STR_DATE"
msgid "Date"
msgstr "Kuupäev"
-#: sc/inc/globstr.hrc:506
+#: sc/inc/globstr.hrc:507
msgctxt "STR_TIME"
msgid "Time"
msgstr "Kellaaeg"
-#: sc/inc/globstr.hrc:507
+#: sc/inc/globstr.hrc:508
msgctxt "STR_SCIENTIFIC"
msgid "Scientific"
msgstr "Teaduslik"
-#: sc/inc/globstr.hrc:508
+#: sc/inc/globstr.hrc:509
msgctxt "STR_FRACTION"
msgid "Fraction"
msgstr "Murd"
-#: sc/inc/globstr.hrc:509
+#: sc/inc/globstr.hrc:510
msgctxt "STR_BOOLEAN_VALUE"
msgid "Boolean Value"
msgstr "Tõeväärtus"
-#: sc/inc/globstr.hrc:510
+#: sc/inc/globstr.hrc:511
msgctxt "STR_TEXT"
msgid "Text"
msgstr "Tekst"
-#: sc/inc/globstr.hrc:511
+#: sc/inc/globstr.hrc:512
msgctxt "STR_QUERY_PIVOTTABLE_DELTAB"
msgid "The selected sheet(s) contain source data of related pivot tables that will be lost. Are you sure you want to delete the selected sheet(s)?"
msgstr "Valitud lehel või lehtedel on liigendtabelite lähteandmeid, mis läheks nüüd kaotsi. Kas tõesti soovid valitud lehe(d) kustutada?"
-#: sc/inc/globstr.hrc:512
+#: sc/inc/globstr.hrc:513
msgctxt "STR_ERR_NAME_INVALID_CELL_REF"
msgid "Invalid name. Reference to a cell, or a range of cells not allowed."
msgstr "Vigane nimi. Viide lahtrile või lahtrivahemikule pole lubatud."
@@ -10486,8 +10491,8 @@ msgstr "režiim"
#: sc/inc/scfuncs.hrc:3010
msgctxt "SC_OPCODE_T_TEST"
-msgid "Mode specifies the number of distribution tails to return. 1= one-tailed, 2 = two-tailed distribution"
-msgstr "Režiim määrab jaotuse tagastatavate poolte arvu. 1 = ühepoolne, 2 = kahepoolne jaotus."
+msgid "Mode specifies the number of distribution tails to return. 1 = one-tailed, 2 = two-tailed distribution"
+msgstr ""
#: sc/inc/scfuncs.hrc:3011
msgctxt "SC_OPCODE_T_TEST"
@@ -10531,8 +10536,8 @@ msgstr "režiim"
#: sc/inc/scfuncs.hrc:3024
msgctxt "SC_OPCODE_T_TEST_MS"
-msgid "Mode specifies the number of distribution tails to return. 1= one-tailed, 2 = two-tailed distribution"
-msgstr "Režiim määrab jaotuse tagastatavate poolte arvu. 1 = ühepoolne, 2 = kahepoolne jaotus."
+msgid "Mode specifies the number of distribution tails to return. 1 = one-tailed, 2 = two-tailed distribution"
+msgstr ""
#: sc/inc/scfuncs.hrc:3025
msgctxt "SC_OPCODE_T_TEST_MS"
@@ -18018,22 +18023,22 @@ msgctxt "mergecellsdialog|MergeCellsDialog"
msgid "Merge Cells"
msgstr "Lahtrite ühendamine"
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:81
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:84
msgctxt "mergecellsdialog|label"
msgid "Some cells are not empty."
msgstr "Mõned lahtrid ei ole tühjad."
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:96
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:99
msgctxt "mergecellsdialog|move-cells-radio"
msgid "Move the contents of the hidden cells into the first cell"
msgstr "Varjatud lahtrite sisu liigutatakse esimesse lahtrisse"
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:112
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:115
msgctxt "mergecellsdialog|empty-cells-radio"
msgid "Empty the contents of the hidden cells"
msgstr "Varjatud lahtrite sisu kustutatakse"
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:128
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:131
msgctxt "mergecellsdialog|keep-content-radio"
msgid "Keep the contents of the hidden cells"
msgstr "Varjatud lahtrite sisu säilitatakse"
diff --git a/source/et/sd/messages.po b/source/et/sd/messages.po
index b4104a319f1..4fd71df38f0 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2018-01-16 21:13+0000\n"
"Last-Translator: Mihkel Tõnnov <mihhkel@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -16,167 +16,167 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1516137211.000000\n"
-#: sd/inc/DocumentRenderer.hrc:29
+#: sd/inc/DocumentRenderer.hrc:27
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Slides"
msgstr "Slaidid"
-#: sd/inc/DocumentRenderer.hrc:30
+#: sd/inc/DocumentRenderer.hrc:28
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Handouts"
msgstr "Jaotusmaterjal"
-#: sd/inc/DocumentRenderer.hrc:31
+#: sd/inc/DocumentRenderer.hrc:29
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Notes"
msgstr "Märkmed"
-#: sd/inc/DocumentRenderer.hrc:32
+#: sd/inc/DocumentRenderer.hrc:30
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Outline"
msgstr "Liigendus"
-#: sd/inc/DocumentRenderer.hrc:37
+#: sd/inc/DocumentRenderer.hrc:35
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "According to layout"
msgstr "Vastavalt paigutusele"
-#: sd/inc/DocumentRenderer.hrc:38
+#: sd/inc/DocumentRenderer.hrc:36
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "1"
msgstr "1"
-#: sd/inc/DocumentRenderer.hrc:39
+#: sd/inc/DocumentRenderer.hrc:37
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "2"
msgstr "2"
-#: sd/inc/DocumentRenderer.hrc:40
+#: sd/inc/DocumentRenderer.hrc:38
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "3"
msgstr "3"
-#: sd/inc/DocumentRenderer.hrc:41
+#: sd/inc/DocumentRenderer.hrc:39
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "4"
msgstr "4"
-#: sd/inc/DocumentRenderer.hrc:42
+#: sd/inc/DocumentRenderer.hrc:40
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "6"
msgstr "6"
-#: sd/inc/DocumentRenderer.hrc:43
+#: sd/inc/DocumentRenderer.hrc:41
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "9"
msgstr "9"
-#: sd/inc/DocumentRenderer.hrc:48
+#: sd/inc/DocumentRenderer.hrc:46
msgctxt "STR_IMPRESS_PRINT_UI_ORDER_CHOICES"
msgid "Left to right, then down"
msgstr "Vasakult paremale, siis alla"
-#: sd/inc/DocumentRenderer.hrc:49
+#: sd/inc/DocumentRenderer.hrc:47
msgctxt "STR_IMPRESS_PRINT_UI_ORDER_CHOICES"
msgid "Top to bottom, then right"
msgstr "Ülalt alla, siis paremale"
-#: sd/inc/DocumentRenderer.hrc:54
+#: sd/inc/DocumentRenderer.hrc:52
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Original colors"
msgstr "Algsed värvid"
-#: sd/inc/DocumentRenderer.hrc:55
+#: sd/inc/DocumentRenderer.hrc:53
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Grayscale"
msgstr "Halltoonid"
-#: sd/inc/DocumentRenderer.hrc:56
+#: sd/inc/DocumentRenderer.hrc:54
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Black & white"
msgstr "Mustvalge"
-#: sd/inc/DocumentRenderer.hrc:61
+#: sd/inc/DocumentRenderer.hrc:59
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Original size"
msgstr "Algsuurus"
-#: sd/inc/DocumentRenderer.hrc:62
+#: sd/inc/DocumentRenderer.hrc:60
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Fit to printable page"
msgstr "Sobitatakse leheküljele"
-#: sd/inc/DocumentRenderer.hrc:63
+#: sd/inc/DocumentRenderer.hrc:61
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Distribute on multiple sheets of paper"
msgstr "Jaotatakse mitme lehe peale laiali"
-#: sd/inc/DocumentRenderer.hrc:64
+#: sd/inc/DocumentRenderer.hrc:62
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Tile sheet of paper with repeated slides"
msgstr "Paanitakse paberileht korduvate slaididega"
-#: sd/inc/DocumentRenderer.hrc:69
+#: sd/inc/DocumentRenderer.hrc:67
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Original size"
msgstr "Algsuurus"
-#: sd/inc/DocumentRenderer.hrc:70
+#: sd/inc/DocumentRenderer.hrc:68
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Fit to printable page"
msgstr "Sobitatakse leheküljele"
-#: sd/inc/DocumentRenderer.hrc:71
+#: sd/inc/DocumentRenderer.hrc:69
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Distribute on multiple sheets of paper"
msgstr "Jaotatakse mitme lehe peale laiali"
-#: sd/inc/DocumentRenderer.hrc:72
+#: sd/inc/DocumentRenderer.hrc:70
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Tile sheet of paper with repeated pages"
msgstr "Paanitakse paberileht korduvate lehekülgedega"
-#: sd/inc/DocumentRenderer.hrc:77
+#: sd/inc/DocumentRenderer.hrc:75
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "All pages"
msgstr "Kõik leheküljed"
-#: sd/inc/DocumentRenderer.hrc:78
+#: sd/inc/DocumentRenderer.hrc:76
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "Front sides / right pages"
msgstr "Esiküljed / parempoolsed"
-#: sd/inc/DocumentRenderer.hrc:79
+#: sd/inc/DocumentRenderer.hrc:77
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "Back sides / left pages"
msgstr "Tagaküljed / vasakpoolsed"
-#: sd/inc/DocumentRenderer.hrc:84
+#: sd/inc/DocumentRenderer.hrc:82
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~All slides"
msgstr "Kõik slaidid"
-#: sd/inc/DocumentRenderer.hrc:85
+#: sd/inc/DocumentRenderer.hrc:83
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~Slides"
msgstr "Slaidid"
-#: sd/inc/DocumentRenderer.hrc:86
+#: sd/inc/DocumentRenderer.hrc:84
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Se~lection"
msgstr "Valik"
-#: sd/inc/DocumentRenderer.hrc:91
+#: sd/inc/DocumentRenderer.hrc:89
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~All pages"
msgstr "Kõik leheküljed"
-#: sd/inc/DocumentRenderer.hrc:92
+#: sd/inc/DocumentRenderer.hrc:90
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Pa~ges"
msgstr "Leheküljed"
-#: sd/inc/DocumentRenderer.hrc:93
+#: sd/inc/DocumentRenderer.hrc:91
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Se~lection"
msgstr "Valik"
diff --git a/source/et/svx/messages.po b/source/et/svx/messages.po
index 398f10dd81c..bbe45f84569 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: 2018-05-16 16:53+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2018-02-22 18:38+0000\n"
"Last-Translator: Mihkel Tõnnov <mihhkel@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5179,8 +5179,8 @@ msgstr "Vearaportisse võid kaasata ka oma kasutajaprofiili asjakohased osad (pe
#: svx/uiconfig/ui/safemodedialog.ui:432
msgctxt "safemodedialog|btn_create_zip"
-msgid "Create Zip Archive from User Profile"
-msgstr "Salvesta kasutajaprofiil zip-failina"
+msgid "Archive User Profile"
+msgstr ""
#: svx/uiconfig/ui/safemodedialog.ui:445
msgctxt "safemodedialog|linkbutton_profile"
@@ -8769,9 +8769,9 @@ msgid "Red"
msgstr "Punane"
#: include/svx/strings.hrc:565
-msgctxt "RID_SVXSTR_COLOR_VIOLET"
-msgid "Violet"
-msgstr "Lilla"
+msgctxt "RID_SVXSTR_COLOR_MAGENTA"
+msgid "Magenta"
+msgstr "Magenta"
#: include/svx/strings.hrc:566
msgctxt "RID_SVXSTR_COLOR_PURPLE"
@@ -8835,9 +8835,9 @@ msgid "Light Red"
msgstr "Roosa"
#: include/svx/strings.hrc:579
-msgctxt "RID_SVXSTR_COLOR_LIGHTVIOLET"
-msgid "Light Violet"
-msgstr "Helelilla"
+msgctxt "RID_SVXSTR_COLOR_LIGHTMAGENTA"
+msgid "Light Magenta"
+msgstr ""
#: include/svx/strings.hrc:580
msgctxt "RID_SVXSTR_COLOR_LIGHTPURPLE"
@@ -8901,9 +8901,9 @@ msgid "Dark Red"
msgstr "Tumepunane"
#: include/svx/strings.hrc:593
-msgctxt "RID_SVXSTR_COLOR_DARKVIOLET1"
-msgid "Dark Violet"
-msgstr "Tumelilla"
+msgctxt "RID_SVXSTR_COLOR_DARKMAGENTA"
+msgid "Dark Magenta"
+msgstr ""
#: include/svx/strings.hrc:594
msgctxt "RID_SVXSTR_COLOR_DARKPURPLE"
@@ -8937,55 +8937,55 @@ msgstr "Tume laimiroheline"
#. Elements of the Tonal color palette
#: include/svx/strings.hrc:601
+msgctxt "RID_SVXSTR_COLOR_VIOLET"
+msgid "Violet"
+msgstr "Lilla"
+
+#: include/svx/strings.hrc:602
msgctxt "RID_SVXSTR_COLOR_VIOLET_OUG"
msgid "Violet (Out of Gamut)"
msgstr "Violetne (spektrist väljas)"
-#: include/svx/strings.hrc:602
+#: include/svx/strings.hrc:603
msgctxt "RID_SVXSTR_COLOR_BLUE_OUG"
msgid "Blue (Out of Gamut)"
msgstr "Sinine (spektrist väljas)"
-#: include/svx/strings.hrc:603
+#: include/svx/strings.hrc:604
msgctxt "RID_SVXSTR_COLOR_AZURE_OUG"
msgid "Azure (Out of Gamut)"
msgstr "Taevasinine (spektrist väljas)"
-#: include/svx/strings.hrc:604
+#: include/svx/strings.hrc:605
msgctxt "RID_SVXSTR_COLOR_SPRINGGREEN_OUG"
msgid "Spring Green (Out of Gamut)"
msgstr "Kevadroheline (spektrist väljas)"
-#: include/svx/strings.hrc:605
+#: include/svx/strings.hrc:606
msgctxt "RID_SVXSTR_COLOR_GREEN_OUG"
msgid "Green (Out of Gamut)"
msgstr "Roheline (spektrist väljas)"
-#: include/svx/strings.hrc:606
+#: include/svx/strings.hrc:607
msgctxt "RID_SVXSTR_COLOR_CHARTREUSEGREEN_OUG"
msgid "Chartreuse Green (Out of Gamut)"
msgstr "Kollakasroheline (spektrist väljas)"
-#: include/svx/strings.hrc:607
+#: include/svx/strings.hrc:608
msgctxt "RID_SVXSTR_COLOR_ORANGE_OUG"
msgid "Orange (Out of Gamut)"
msgstr "Oranž (spektrist väljas)"
-#: include/svx/strings.hrc:608
+#: include/svx/strings.hrc:609
msgctxt "RID_SVXSTR_COLOR_RED_OUG"
msgid "Red (Out of Gamut)"
msgstr "Punane (spektrist väljas)"
-#: include/svx/strings.hrc:609
+#: include/svx/strings.hrc:610
msgctxt "RID_SVXSTR_COLOR_ROSE_OUG"
msgid "Rose (Out of Gamut)"
msgstr "Roosa (spektrist väljas)"
-#: include/svx/strings.hrc:610
-msgctxt "RID_SVXSTR_COLOR_MAGENTA"
-msgid "Magenta"
-msgstr "Magenta"
-
#: include/svx/strings.hrc:611
msgctxt "RID_SVXSTR_COLOR_AZURE"
msgid "Azure"
@@ -12091,13 +12091,13 @@ msgstr "Paremale suunatud nooleotsakujulised täpid"
#: include/svx/strings.hrc:1273
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_6"
-msgid "Check mark bullets"
-msgstr "Ristikesekujulised täpid"
+msgid "Cross mark bullets"
+msgstr ""
#: include/svx/strings.hrc:1274
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_7"
-msgid "Tick mark bullets"
-msgstr "Linnukesekujulised täpid"
+msgid "Check mark bullets"
+msgstr ""
#: include/svx/strings.hrc:1275
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_0"
diff --git a/source/et/sw/messages.po b/source/et/sw/messages.po
index 1f119491cf5..e30005ab33f 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: 2018-05-22 13:17+0200\n"
+"POT-Creation-Date: 2018-06-12 14:41+0200\n"
"PO-Revision-Date: 2018-02-22 18:39+0000\n"
"Last-Translator: Mihkel Tõnnov <mihhkel@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1180,13 +1180,13 @@ msgstr "Viide"
#: sw/inc/strings.hrc:172
msgctxt "STR_POOLCOLL_TOX_ILLUSH"
-msgid "Illustration Index Heading"
-msgstr "Illustratsioonide registri pealkiri"
+msgid "Figure Index Heading"
+msgstr ""
#: sw/inc/strings.hrc:173
msgctxt "STR_POOLCOLL_TOX_ILLUS1"
-msgid "Illustration Index 1"
-msgstr "Illustratsioonide register 1"
+msgid "Figure Index 1"
+msgstr ""
#: sw/inc/strings.hrc:174
msgctxt "STR_POOLCOLL_TOX_OBJECTH"
@@ -3590,8 +3590,8 @@ msgstr "Objektide register"
#: sw/inc/strings.hrc:672
msgctxt "STR_TOX_ILL"
-msgid "Illustration Index"
-msgstr "Illustratsioonide register"
+msgid "Table of Figures"
+msgstr ""
#: sw/inc/strings.hrc:673
#, c-format
@@ -9244,72 +9244,72 @@ msgctxt "footnotepage|label5"
msgid "Continuation Notice"
msgstr "Jätkamise märge"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:49
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:55
msgctxt "footnotesendnotestabpage|ftnntnum"
msgid "_Restart numbering"
msgstr "Taasalustatakse nummerdust"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:91
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:93
msgctxt "footnotesendnotestabpage|ftnoffset_label"
msgid "_Start at:"
msgstr "Algab kohalt"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:112
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:111
msgctxt "footnotesendnotestabpage|ftnntnumfmt"
msgid "Custom _format"
msgstr "Kohandatud vormindus"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:155
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:150
msgctxt "footnotesendnotestabpage|ftnsuffix_label"
msgid "Aft_er:"
msgstr "Teksti järel:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:199
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:188
msgctxt "footnotesendnotestabpage|ftnprefix_label"
msgid "Be_fore:"
msgstr "Teksti ees:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:228
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:212
msgctxt "footnotesendnotestabpage|ftnntattextend"
msgid "Collec_t at end of text"
msgstr "Kogutakse teksti lõppu"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:252
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:234
msgctxt "footnotesendnotestabpage|label1"
msgid "Footnotes"
msgstr "Allmärkused"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:289
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:271
msgctxt "footnotesendnotestabpage|endntattextend"
msgid "C_ollect at end of section"
msgstr "Kogutakse sektsiooni lõppu"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:315
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:295
msgctxt "footnotesendnotestabpage|endntnum"
msgid "_Restart numbering"
msgstr "Taasalustatakse nummerdust"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:357
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:333
msgctxt "footnotesendnotestabpage|endoffset_label"
msgid "_Start at:"
msgstr "Algab kohalt"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:378
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:351
msgctxt "footnotesendnotestabpage|endntnumfmt"
msgid "_Custom format"
msgstr "Kohandatud vormindus"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:421
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:390
msgctxt "footnotesendnotestabpage|endsuffix_label"
msgid "Aft_er:"
msgstr "Pärast teksti:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:465
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:428
msgctxt "footnotesendnotestabpage|endprefix_label"
msgid "Be_fore:"
msgstr "Teksti ees:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:500
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:458
msgctxt "footnotesendnotestabpage|label2"
msgid "Endnotes"
msgstr "Lõpumärkused"
@@ -9339,27 +9339,27 @@ msgctxt "formatsectiondialog|notes"
msgid "Footnotes/Endnotes"
msgstr "All- ja lõpumärkused"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:63
+#: sw/uiconfig/swriter/ui/formattablepage.ui:77
msgctxt "formattablepage|nameft"
msgid "_Name"
msgstr "Nimi"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:79
+#: sw/uiconfig/swriter/ui/formattablepage.ui:91
msgctxt "formattablepage|widthft"
msgid "W_idth"
msgstr "La_ius"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:110
+#: sw/uiconfig/swriter/ui/formattablepage.ui:120
msgctxt "formattablepage|relwidth"
msgid "Relati_ve"
msgstr "Su_hteline"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:155
+#: sw/uiconfig/swriter/ui/formattablepage.ui:160
msgctxt "formattablepage|label45"
msgid "Properties"
msgstr "Omadused"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:194
+#: sw/uiconfig/swriter/ui/formattablepage.ui:195
msgctxt "formattablepage|leftft"
msgid "Lef_t"
msgstr "Vasakul"
@@ -9369,62 +9369,62 @@ msgctxt "formattablepage|rightft"
msgid "Ri_ght"
msgstr "Paremal"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:228
+#: sw/uiconfig/swriter/ui/formattablepage.ui:226
msgctxt "formattablepage|aboveft"
msgid "_Above"
msgstr "Üleval"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:245
+#: sw/uiconfig/swriter/ui/formattablepage.ui:241
msgctxt "formattablepage|belowft"
msgid "_Below"
msgstr "All"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:320
+#: sw/uiconfig/swriter/ui/formattablepage.ui:311
msgctxt "formattablepage|label46"
msgid "Spacing"
msgstr "Vahed"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:362
+#: sw/uiconfig/swriter/ui/formattablepage.ui:349
msgctxt "formattablepage|full"
msgid "A_utomatic"
msgstr "A_utomaatne"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:380
+#: sw/uiconfig/swriter/ui/formattablepage.ui:365
msgctxt "formattablepage|left"
msgid "_Left"
msgstr "Vasakule"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:398
+#: sw/uiconfig/swriter/ui/formattablepage.ui:381
msgctxt "formattablepage|fromleft"
msgid "_From left"
msgstr "_Vasakult"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:416
+#: sw/uiconfig/swriter/ui/formattablepage.ui:397
msgctxt "formattablepage|right"
msgid "R_ight"
msgstr "_Paremale"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:435
+#: sw/uiconfig/swriter/ui/formattablepage.ui:413
msgctxt "formattablepage|center"
msgid "_Center"
msgstr "Keskjoondatud"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:453
+#: sw/uiconfig/swriter/ui/formattablepage.ui:429
msgctxt "formattablepage|free"
msgid "_Manual"
msgstr "_Käsitsi"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:478
+#: sw/uiconfig/swriter/ui/formattablepage.ui:452
msgctxt "formattablepage|label43"
msgid "Alignment"
msgstr "Joondus"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:522
+#: sw/uiconfig/swriter/ui/formattablepage.ui:491
msgctxt "formattablepage|label53"
msgid "Text _direction"
msgstr "Teksti _suund"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:553
+#: sw/uiconfig/swriter/ui/formattablepage.ui:519
msgctxt "formattablepage|label44"
msgid "Properties "
msgstr "Omadused "
@@ -9779,22 +9779,27 @@ msgctxt "headerfootermenu|insert_pagenumber"
msgid "Insert Page Number"
msgstr ""
-#: sw/uiconfig/swriter/ui/indentpage.ui:52
+#: sw/uiconfig/swriter/ui/headerfootermenu.ui:42
+msgctxt "headerfootermenu|insert_pagecount"
+msgid "Insert Page Count"
+msgstr ""
+
+#: sw/uiconfig/swriter/ui/indentpage.ui:57
msgctxt "indentpage|label1"
msgid "_Before section"
msgstr "Enne sektsiooni"
-#: sw/uiconfig/swriter/ui/indentpage.ui:67
+#: sw/uiconfig/swriter/ui/indentpage.ui:71
msgctxt "indentpage|label3"
msgid "_After section"
msgstr "Pärast sektsiooni"
-#: sw/uiconfig/swriter/ui/indentpage.ui:113
+#: sw/uiconfig/swriter/ui/indentpage.ui:115
msgctxt "indentpage|label2"
msgid "Indent"
msgstr "Taane"
-#: sw/uiconfig/swriter/ui/indentpage.ui:142
+#: sw/uiconfig/swriter/ui/indentpage.ui:155
msgctxt "indentpage|preview-atkobject"
msgid "Example"
msgstr "Näide"
@@ -13285,8 +13290,8 @@ msgstr "Muutmise eest kaitstud vorm"
#: sw/uiconfig/swriter/ui/optcompatpage.ui:68
msgctxt "optcompatpage|format"
-msgid "MS Word-compatible trailing blanks"
-msgstr "MS Wordiga ühilduvad lõputühikud"
+msgid "Word-compatible trailing blanks"
+msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:69
msgctxt "optcompatpage|format"
@@ -13295,7 +13300,7 @@ msgstr "Valgete ridade sallimine vanadest dokumentidest genereeritud PDF-ide leh
#: sw/uiconfig/swriter/ui/optcompatpage.ui:70
msgctxt "optcompatpage|format"
-msgid "A database field (e.g., MailMerge) with empty value hides its paragraph"
+msgid "Hide paragraphs of database fields (e.g., mail merge) with an empty value"
msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:71
@@ -15977,122 +15982,122 @@ msgctxt "tableproperties|background"
msgid "Background"
msgstr "Taust"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:25
-msgctxt "tabletextflowpage|liststore1"
-msgid "Horizontal"
-msgstr "Horisontaalselt"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:29
-msgctxt "tabletextflowpage|liststore1"
-msgid "Vertical"
-msgstr "Vertikaalselt"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:33
-msgctxt "tabletextflowpage|liststore1"
-msgid "Use superordinate object settings"
-msgstr "Kasutatakse ülemobjekti sätteid"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:47
-msgctxt "tabletextflowpage|liststore2"
-msgid "Top"
-msgstr "Üles"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:51
-msgctxt "tabletextflowpage|liststore2"
-msgid "Centered"
-msgstr "Keskele"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:55
-msgctxt "tabletextflowpage|liststore2"
-msgid "Bottom"
-msgstr "Alla"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:97
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:53
msgctxt "tabletextflowpage|break"
msgid "_Break"
msgstr "Eralda"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:112
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:68
msgctxt "tabletextflowpage|page"
msgid "_Page"
msgstr "_Lehekülg"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:132
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:87
msgctxt "tabletextflowpage|column"
msgid "Col_umn"
msgstr "Veer_g"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:151
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:106
msgctxt "tabletextflowpage|before"
msgid "Be_fore"
msgstr "_Enne"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:171
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:125
msgctxt "tabletextflowpage|after"
msgid "_After"
msgstr "_Pärast"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:203
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:158
msgctxt "tabletextflowpage|pagestyle"
msgid "With Page St_yle"
msgstr "Leheküljestii_liga"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:224
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:177
msgctxt "tabletextflowpage|pagenoft"
msgid "Page _number"
msgstr "Lehekülje_number"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:257
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:213
msgctxt "tabletextflowpage|pagestylelb-atkobject"
msgid "With Page Style"
msgstr "Leheküljestii_liga"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:274
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:230
msgctxt "tabletextflowpage|split"
msgid "Allow _table to split across pages and columns"
msgstr "Tabeli tükeldamine lehekülgede ja veergude kaupa"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:289
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:245
msgctxt "tabletextflowpage|splitrow"
msgid "Allow row to break a_cross pages and columns"
msgstr "Ridade murdmine lehekülgede ja veergude kaupa"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:306
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:262
msgctxt "tabletextflowpage|keep"
msgid "_Keep with next paragraph"
msgstr "_Hoitakse koos järgmise lõiguga"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:328
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:284
msgctxt "tabletextflowpage|label40"
msgid "Text _orientation"
msgstr "Teksti paigutus"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:361
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:298
+msgctxt "tabletextflowpage|liststore1"
+msgid "Horizontal"
+msgstr "Horisontaalselt"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:299
+msgctxt "tabletextflowpage|liststore1"
+msgid "Vertical"
+msgstr "Vertikaalselt"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:300
+msgctxt "tabletextflowpage|liststore1"
+msgid "Use superordinate object settings"
+msgstr "Kasutatakse ülemobjekti sätteid"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:321
msgctxt "tabletextflowpage|headline"
msgid "R_epeat heading"
msgstr "Päiseridade kordamine"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:383
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:343
msgctxt "tabletextflowpage|label38"
msgid "The first "
msgstr "Esimesed "
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:396
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:356
msgctxt "tabletextflowpage|label39"
msgid "rows"
msgstr "rida"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:434
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:395
msgctxt "tabletextflowpage|label35"
msgid "Text Flow"
msgstr "Tekstivoog"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:467
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:428
msgctxt "tabletextflowpage|label41"
msgid "_Vertical alignment"
msgstr "_Vertikaalne joondus"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:495
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:442
+msgctxt "tabletextflowpage|liststore2"
+msgid "Top"
+msgstr "Üles"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:443
+msgctxt "tabletextflowpage|liststore2"
+msgid "Centered"
+msgstr "Keskele"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:444
+msgctxt "tabletextflowpage|liststore2"
+msgid "Bottom"
+msgstr "Alla"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:460
msgctxt "tabletextflowpage|label36"
msgid "Alignment"
msgstr "Joondus"
@@ -16874,8 +16879,8 @@ msgstr "Tähestikuline register"
#: sw/uiconfig/swriter/ui/tocindexpage.ui:58
msgctxt "tocindexpage|liststore1"
-msgid "Illustration Index"
-msgstr "Illustratsioonide register"
+msgid "Table of Figures"
+msgstr ""
#: sw/uiconfig/swriter/ui/tocindexpage.ui:62
msgctxt "tocindexpage|liststore1"
diff --git a/source/et/writerperfect/messages.po b/source/et/writerperfect/messages.po
index 188fc3b0ea3..9e74eb3a3aa 100644
--- a/source/et/writerperfect/messages.po
+++ b/source/et/writerperfect/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-16 16:54+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2017-12-28 20:04+0000\n"
"Last-Translator: Mihkel Tõnnov <mihhkel@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -66,97 +66,97 @@ msgctxt "exportepub|generalft"
msgid "General"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:122
+#: writerperfect/uiconfig/ui/exportepub.ui:121
msgctxt "exportepub|versionft"
msgid "Version:"
msgstr "Versioon:"
-#: writerperfect/uiconfig/ui/exportepub.ui:139
+#: writerperfect/uiconfig/ui/exportepub.ui:138
msgctxt "exportepub|epub3"
msgid "EPUB 3.0"
msgstr "EPUB 3.0"
-#: writerperfect/uiconfig/ui/exportepub.ui:140
+#: writerperfect/uiconfig/ui/exportepub.ui:139
msgctxt "exportepub|epub2"
msgid "EPUB 2.0"
msgstr "EPUB 2.0"
-#: writerperfect/uiconfig/ui/exportepub.ui:175
+#: writerperfect/uiconfig/ui/exportepub.ui:174
msgctxt "exportepub|splitft"
msgid "Split method:"
msgstr "Tükeldusmeetod:"
-#: writerperfect/uiconfig/ui/exportepub.ui:192
+#: writerperfect/uiconfig/ui/exportepub.ui:191
msgctxt "exportepub|splitpage"
msgid "Page break"
msgstr "Leheküljepiir"
-#: writerperfect/uiconfig/ui/exportepub.ui:193
+#: writerperfect/uiconfig/ui/exportepub.ui:192
msgctxt "exportepub|splitheading"
msgid "Heading"
msgstr "Pealkiri"
-#: writerperfect/uiconfig/ui/exportepub.ui:228
+#: writerperfect/uiconfig/ui/exportepub.ui:227
msgctxt "exportepub|layoutft"
msgid "Layout method:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:245
+#: writerperfect/uiconfig/ui/exportepub.ui:244
msgctxt "exportepub|layoutreflowable"
msgid "Reflowable"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:246
+#: writerperfect/uiconfig/ui/exportepub.ui:245
msgctxt "exportepub|layoutfixed"
msgid "Fixed"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:281
+#: writerperfect/uiconfig/ui/exportepub.ui:280
msgctxt "exportepub|coverimageft"
msgid "Custom cover image:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:311
+#: writerperfect/uiconfig/ui/exportepub.ui:310
msgctxt "exportepub|coverbutton"
msgid "Browse..."
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:355
+#: writerperfect/uiconfig/ui/exportepub.ui:354
msgctxt "exportepub|mediadirft"
msgid "Custom media directory:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:385
+#: writerperfect/uiconfig/ui/exportepub.ui:384
msgctxt "exportepub|mediabutton"
msgid "Browse..."
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:429
+#: writerperfect/uiconfig/ui/exportepub.ui:428
msgctxt "exportepub|metadataft"
msgid "Metadata"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:470
+#: writerperfect/uiconfig/ui/exportepub.ui:468
msgctxt "exportepub|identifierft"
msgid "Identifier:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:485
+#: writerperfect/uiconfig/ui/exportepub.ui:483
msgctxt "exportepub|titleft"
msgid "Title:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:511
+#: writerperfect/uiconfig/ui/exportepub.ui:509
msgctxt "exportepub|authorft"
msgid "Author:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:537
+#: writerperfect/uiconfig/ui/exportepub.ui:535
msgctxt "exportepub|languageft"
msgid "Language:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:563
+#: writerperfect/uiconfig/ui/exportepub.ui:561
msgctxt "exportepub|dateft"
msgid "Date:"
msgstr ""
diff --git a/source/eu/basic/messages.po b/source/eu/basic/messages.po
index 4a83aa103fe..0fe0d5f5364 100644
--- a/source/eu/basic/messages.po
+++ b/source/eu/basic/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: 2018-02-27 15:07+0100\n"
-"PO-Revision-Date: 2017-10-14 12:48+0000\n"
-"Last-Translator: Osoitz <oelkoro@gmail.com>\n"
+"PO-Revision-Date: 2018-06-12 16:44+0000\n"
+"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: eu\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1507985288.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1528821841.000000\n"
#: basic/inc/basic.hrc:27
msgctxt "RID_BASIC_START"
@@ -49,7 +49,7 @@ msgstr "Ez dago nahikoa memoria."
#: basic/inc/basic.hrc:33
msgctxt "RID_BASIC_START"
msgid "Array already dimensioned."
-msgstr "Taulak baditu neurriak lehendik."
+msgstr "Matrizeak baditu neurriak lehendik."
#: basic/inc/basic.hrc:34
msgctxt "RID_BASIC_START"
diff --git a/source/eu/cui/messages.po b/source/eu/cui/messages.po
index a536adba742..24ad94d5a83 100644
--- a/source/eu/cui/messages.po
+++ b/source/eu/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: 2018-05-22 13:16+0200\n"
-"PO-Revision-Date: 2018-05-15 06:47+0000\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
+"PO-Revision-Date: 2018-06-05 16:05+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: eu\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1526366878.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1528214707.000000\n"
#: cui/inc/personalization.hrc:31
msgctxt "RID_SVXSTR_PERSONA_CATEGORIES"
@@ -6093,7 +6093,7 @@ msgstr "E_sleitutako karpetak eta fitxategiak"
#: cui/uiconfig/ui/javaclasspathdialog.ui:180
msgctxt "javaclasspathdialog|archive"
msgid "_Add Archive..."
-msgstr "_Gehitu fitxategia..."
+msgstr "_Gehitu artxiboa..."
#: cui/uiconfig/ui/javaclasspathdialog.ui:194
msgctxt "javaclasspathdialog|folder"
@@ -7842,7 +7842,7 @@ msgstr "Bildu erabilera-datuak eta bidali The Document Foundation fundazioari"
#: cui/uiconfig/ui/optgeneralpage.ui:306
msgctxt "optgeneralpage|label7"
msgid "Help Improve %PRODUCTNAME"
-msgstr "Lagungu %PRODUCTNAME hobetzen"
+msgstr "Lagundu %PRODUCTNAME hobetzen"
#: cui/uiconfig/ui/optgeneralpage.ui:337
msgctxt "optgeneralpage|quicklaunch"
@@ -8974,7 +8974,7 @@ msgstr "Letra-tipoen zerrendak"
#: cui/uiconfig/ui/optviewpage.ui:345
msgctxt "optviewpage|label8"
msgid "Toolbar icon _size:"
-msgstr "Tre_sna-barraren ikono-tamaina:"
+msgstr "Tre_sna-barrako ikonoen tamaina:"
#: cui/uiconfig/ui/optviewpage.ui:360
msgctxt "optviewpage|iconstyle"
@@ -9049,7 +9049,7 @@ msgstr "Pantailako letra-tipoen a_ntialiasing-a"
#: cui/uiconfig/ui/optviewpage.ui:425
msgctxt "optviewpage|label9"
msgid "Sidebar _icon size:"
-msgstr "Albo-barrako _ikonoen tamaina:"
+msgstr "Alboko barrako _ikonoen tamaina:"
#: cui/uiconfig/ui/optviewpage.ui:439
msgctxt "optviewpage|sidebariconsize"
@@ -9872,97 +9872,97 @@ msgctxt "positionsizedialog|PositionAndSizeDialog"
msgid "Position and Size"
msgstr "Kokagunea eta tamaina"
-#: cui/uiconfig/ui/positionsizedialog.ui:107
+#: cui/uiconfig/ui/positionsizedialog.ui:136
msgctxt "positionsizedialog|RID_SVXPAGE_POSITION_SIZE"
msgid "Position and Size"
msgstr "Kokagunea eta tamaina"
-#: cui/uiconfig/ui/positionsizedialog.ui:129
+#: cui/uiconfig/ui/positionsizedialog.ui:182
msgctxt "positionsizedialog|RID_SVXPAGE_SWPOSSIZE"
msgid "Position and Size"
msgstr "Kokagunea eta tamaina"
-#: cui/uiconfig/ui/positionsizedialog.ui:152
+#: cui/uiconfig/ui/positionsizedialog.ui:229
msgctxt "positionsizedialog|RID_SVXPAGE_ANGLE"
msgid "Rotation"
msgstr "Biraketa"
-#: cui/uiconfig/ui/positionsizedialog.ui:175
+#: cui/uiconfig/ui/positionsizedialog.ui:276
msgctxt "positionsizedialog|RID_SVXPAGE_SLANT"
msgid "Slant & Corner Radius"
msgstr "Inklinazioa eta izkinako erradioa"
-#: cui/uiconfig/ui/possizetabpage.ui:40
+#: cui/uiconfig/ui/possizetabpage.ui:61
msgctxt "possizetabpage|FT_POS_X"
msgid "Position _X:"
msgstr "_X kokagunea:"
-#: cui/uiconfig/ui/possizetabpage.ui:56
+#: cui/uiconfig/ui/possizetabpage.ui:75
msgctxt "possizetabpage|FT_POS_Y"
msgid "Position _Y:"
msgstr "_Y kokagunea:"
-#: cui/uiconfig/ui/possizetabpage.ui:110
+#: cui/uiconfig/ui/possizetabpage.ui:128
msgctxt "possizetabpage|FT_POSREFERENCE"
msgid "_Base point:"
msgstr "_Oinarri-puntua;"
-#: cui/uiconfig/ui/possizetabpage.ui:148
+#: cui/uiconfig/ui/possizetabpage.ui:182
msgctxt "possizetabpage|label1"
msgid "Position"
msgstr "Kokagunea"
-#: cui/uiconfig/ui/possizetabpage.ui:190
+#: cui/uiconfig/ui/possizetabpage.ui:224
msgctxt "possizetabpage|FT_WIDTH"
msgid "Wi_dth:"
msgstr "Za_balera:"
-#: cui/uiconfig/ui/possizetabpage.ui:206
+#: cui/uiconfig/ui/possizetabpage.ui:238
msgctxt "possizetabpage|FT_HEIGHT"
msgid "H_eight:"
msgstr "_Altuera:"
-#: cui/uiconfig/ui/possizetabpage.ui:247
+#: cui/uiconfig/ui/possizetabpage.ui:276
msgctxt "possizetabpage|CBX_SCALE"
msgid "_Keep ratio"
msgstr "_Mantendu proportzioa"
-#: cui/uiconfig/ui/possizetabpage.ui:279
+#: cui/uiconfig/ui/possizetabpage.ui:307
msgctxt "possizetabpage|FT_SIZEREFERENCE"
msgid "Base _point:"
msgstr "Oi_narri-puntua:"
-#: cui/uiconfig/ui/possizetabpage.ui:317
+#: cui/uiconfig/ui/possizetabpage.ui:361
msgctxt "possizetabpage|label2"
msgid "Size"
msgstr "Tamaina"
-#: cui/uiconfig/ui/possizetabpage.ui:356
+#: cui/uiconfig/ui/possizetabpage.ui:401
msgctxt "possizetabpage|TSB_POSPROTECT"
msgid "Positio_n"
msgstr "_Kokalekua"
-#: cui/uiconfig/ui/possizetabpage.ui:373
+#: cui/uiconfig/ui/possizetabpage.ui:418
msgctxt "possizetabpage|TSB_SIZEPROTECT"
msgid "_Size"
msgstr "_Tamaina"
-#: cui/uiconfig/ui/possizetabpage.ui:397
+#: cui/uiconfig/ui/possizetabpage.ui:441
msgctxt "possizetabpage|label3"
msgid "Protect"
msgstr "Babestu"
-#: cui/uiconfig/ui/possizetabpage.ui:430
+#: cui/uiconfig/ui/possizetabpage.ui:475
msgctxt "possizetabpage|TSB_AUTOGROW_WIDTH"
msgid "_Fit width to text"
msgstr "Doitu _zabalera testura"
-#: cui/uiconfig/ui/possizetabpage.ui:447
+#: cui/uiconfig/ui/possizetabpage.ui:492
msgctxt "possizetabpage|TSB_AUTOGROW_HEIGHT"
msgid "Fit _height to text"
msgstr "Doitu _altuera testura"
-#: cui/uiconfig/ui/possizetabpage.ui:471
+#: cui/uiconfig/ui/possizetabpage.ui:515
msgctxt "possizetabpage|label4"
msgid "Adapt"
msgstr "Egokitu"
@@ -10162,47 +10162,47 @@ msgctxt "recordnumberdialog|label2"
msgid "go to record"
msgstr "joan erregistrora"
-#: cui/uiconfig/ui/rotationtabpage.ui:52
+#: cui/uiconfig/ui/rotationtabpage.ui:56
msgctxt "rotationtabpage|FT_POS_X"
msgid "Position _X:"
msgstr "_X kokagunea:"
-#: cui/uiconfig/ui/rotationtabpage.ui:66
+#: cui/uiconfig/ui/rotationtabpage.ui:70
msgctxt "rotationtabpage|FT_POS_Y"
msgid "Position _Y:"
msgstr "_Y kokagunea:"
-#: cui/uiconfig/ui/rotationtabpage.ui:116
+#: cui/uiconfig/ui/rotationtabpage.ui:123
msgctxt "rotationtabpage|FT_POSPRESETS"
msgid "_Default settings:"
msgstr "Ezarpen _lehenetsiak:"
-#: cui/uiconfig/ui/rotationtabpage.ui:130
+#: cui/uiconfig/ui/rotationtabpage.ui:151
msgctxt "rotationtabpage|CTL_RECT|tooltip_text"
msgid "Rotation point"
msgstr "Biraketa-puntua"
-#: cui/uiconfig/ui/rotationtabpage.ui:155
+#: cui/uiconfig/ui/rotationtabpage.ui:178
msgctxt "rotationtabpage|label1"
msgid "Pivot Point"
msgstr "Biraketa-puntua"
-#: cui/uiconfig/ui/rotationtabpage.ui:197
+#: cui/uiconfig/ui/rotationtabpage.ui:220
msgctxt "rotationtabpage|FT_ANGLE"
msgid "_Angle:"
msgstr "_Angelua:"
-#: cui/uiconfig/ui/rotationtabpage.ui:238
+#: cui/uiconfig/ui/rotationtabpage.ui:263
msgctxt "rotationtabpage|FT_ANGLEPRESETS"
msgid "Default _settings:"
msgstr "Ezarpen le_henetsiak:"
-#: cui/uiconfig/ui/rotationtabpage.ui:252
+#: cui/uiconfig/ui/rotationtabpage.ui:287
msgctxt "rotationtabpage|CTL_ANGLE|tooltip_text"
msgid "Rotation Angle"
msgstr "Biraketa-angelua"
-#: cui/uiconfig/ui/rotationtabpage.ui:277
+#: cui/uiconfig/ui/rotationtabpage.ui:314
msgctxt "rotationtabpage|label2"
msgid "Rotation Angle"
msgstr "Biraketa-angelua"
@@ -10450,7 +10450,7 @@ msgstr "Hurrengo zutabeak ezkutuan daude. Markatu erakutsi nahi dituzun eremuak
#: cui/uiconfig/ui/signatureline.ui:8
msgctxt "signatureline|SignatureLineDialog"
msgid "Signature Line"
-msgstr "Sinadura-lerroa"
+msgstr "Sinadura-marra"
#: cui/uiconfig/ui/signatureline.ui:111
msgctxt "signatureline|edit_name"
@@ -10498,7 +10498,7 @@ msgstr "Sinatzaileak iruzkinak gehitu ditzake"
#: cui/uiconfig/ui/signatureline.ui:243
msgctxt "signatureline|checkbox_show_sign_date"
msgid "Show sign date in signature line"
-msgstr "Erakutsi sinatze-data sinaduraren lerroan"
+msgstr "Erakutsi sinatze-data sinadura-marran"
#: cui/uiconfig/ui/signatureline.ui:261
msgctxt "signatureline|label_instructions"
@@ -10513,7 +10513,7 @@ msgstr "Gehiago"
#: cui/uiconfig/ui/signsignatureline.ui:8
msgctxt "signsignatureline|SignSignatureLineDialog"
msgid "Sign Signature Line"
-msgstr "Sinatu sinadura-lerroa"
+msgstr "Sinatu sinadura-marra"
#: cui/uiconfig/ui/signsignatureline.ui:113
msgctxt "signsignatureline|edit_name"
@@ -10582,52 +10582,52 @@ msgctxt "similaritysearchdialog|relaxbox"
msgid "_Combine"
msgstr "Ko_nbinatu"
-#: cui/uiconfig/ui/slantcornertabpage.ui:50
+#: cui/uiconfig/ui/slantcornertabpage.ui:70
msgctxt "slantcornertabpage|label5"
msgid "_X:"
msgstr "_X:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:88
+#: cui/uiconfig/ui/slantcornertabpage.ui:110
msgctxt "slantcornertabpage|label6"
msgid "_Y:"
msgstr "_Y:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:125
+#: cui/uiconfig/ui/slantcornertabpage.ui:149
msgctxt "slantcornertabpage|label3"
msgid "Control Point 1"
msgstr "1. kontrol-puntua"
-#: cui/uiconfig/ui/slantcornertabpage.ui:159
+#: cui/uiconfig/ui/slantcornertabpage.ui:183
msgctxt "slantcornertabpage|FT_RADIUS"
msgid "_Radius:"
msgstr "E_rradioa:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:189
+#: cui/uiconfig/ui/slantcornertabpage.ui:214
msgctxt "slantcornertabpage|label1"
msgid "Corner Radius"
msgstr "Izkinako erradioa"
-#: cui/uiconfig/ui/slantcornertabpage.ui:223
+#: cui/uiconfig/ui/slantcornertabpage.ui:248
msgctxt "slantcornertabpage|FT_ANGLE"
msgid "_Angle:"
msgstr "_Angelua:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:253
+#: cui/uiconfig/ui/slantcornertabpage.ui:279
msgctxt "slantcornertabpage|label2"
msgid "Slant"
msgstr "Inklinatu"
-#: cui/uiconfig/ui/slantcornertabpage.ui:294
+#: cui/uiconfig/ui/slantcornertabpage.ui:320
msgctxt "slantcornertabpage|label4"
msgid "_X:"
msgstr "_X:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:332
+#: cui/uiconfig/ui/slantcornertabpage.ui:360
msgctxt "slantcornertabpage|label7"
msgid "_Y:"
msgstr "_Y:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:369
+#: cui/uiconfig/ui/slantcornertabpage.ui:399
msgctxt "slantcornertabpage|label8"
msgid "Control Point 2"
msgstr "2. kontrol-puntua"
@@ -10907,112 +10907,112 @@ msgctxt "storedwebconnectiondialog|change"
msgid "_Change Password..."
msgstr "Aldatu pasa_hitza..."
-#: cui/uiconfig/ui/swpossizepage.ui:74
+#: cui/uiconfig/ui/swpossizepage.ui:85
msgctxt "swpossizepage|widthft"
msgid "_Width:"
msgstr "_Zabalera:"
-#: cui/uiconfig/ui/swpossizepage.ui:111
+#: cui/uiconfig/ui/swpossizepage.ui:123
msgctxt "swpossizepage|heightft"
msgid "H_eight:"
msgstr "_Altuera:"
-#: cui/uiconfig/ui/swpossizepage.ui:128
+#: cui/uiconfig/ui/swpossizepage.ui:141
msgctxt "swpossizepage|ratio"
msgid "_Keep ratio"
msgstr "_Mantendu proportzioa"
-#: cui/uiconfig/ui/swpossizepage.ui:149
+#: cui/uiconfig/ui/swpossizepage.ui:162
msgctxt "swpossizepage|label2"
msgid "Size"
msgstr "Tamaina"
-#: cui/uiconfig/ui/swpossizepage.ui:205
+#: cui/uiconfig/ui/swpossizepage.ui:218
msgctxt "swpossizepage|topage"
msgid "To _page"
msgstr "_Orrialdera"
-#: cui/uiconfig/ui/swpossizepage.ui:222
+#: cui/uiconfig/ui/swpossizepage.ui:234
msgctxt "swpossizepage|topara"
msgid "To paragrap_h"
msgstr "_Paragrafora"
-#: cui/uiconfig/ui/swpossizepage.ui:238
+#: cui/uiconfig/ui/swpossizepage.ui:250
msgctxt "swpossizepage|tochar"
msgid "To cha_racter"
msgstr "_Karakterera"
-#: cui/uiconfig/ui/swpossizepage.ui:254
+#: cui/uiconfig/ui/swpossizepage.ui:266
msgctxt "swpossizepage|aschar"
msgid "_As character"
msgstr "Karaktere _gisa"
-#: cui/uiconfig/ui/swpossizepage.ui:270
+#: cui/uiconfig/ui/swpossizepage.ui:282
msgctxt "swpossizepage|toframe"
msgid "To _frame"
msgstr "_Markora"
-#: cui/uiconfig/ui/swpossizepage.ui:292
+#: cui/uiconfig/ui/swpossizepage.ui:304
msgctxt "swpossizepage|label1"
msgid "Anchor"
msgstr "Ainguratu"
-#: cui/uiconfig/ui/swpossizepage.ui:333
+#: cui/uiconfig/ui/swpossizepage.ui:344
msgctxt "swpossizepage|horiposft"
msgid "Hori_zontal:"
msgstr "Hori_zontala:"
-#: cui/uiconfig/ui/swpossizepage.ui:347
+#: cui/uiconfig/ui/swpossizepage.ui:358
msgctxt "swpossizepage|horibyft"
msgid "b_y:"
msgstr "_distan.:"
-#: cui/uiconfig/ui/swpossizepage.ui:361
+#: cui/uiconfig/ui/swpossizepage.ui:372
msgctxt "swpossizepage|vertbyft"
msgid "_by:"
msgstr "_honen arabera:"
-#: cui/uiconfig/ui/swpossizepage.ui:375
+#: cui/uiconfig/ui/swpossizepage.ui:386
msgctxt "swpossizepage|horitoft"
msgid "_to:"
msgstr "H_ona:"
-#: cui/uiconfig/ui/swpossizepage.ui:421
+#: cui/uiconfig/ui/swpossizepage.ui:433
msgctxt "swpossizepage|vertposft"
msgid "_Vertical:"
msgstr "_Bertikala:"
-#: cui/uiconfig/ui/swpossizepage.ui:457
+#: cui/uiconfig/ui/swpossizepage.ui:470
msgctxt "swpossizepage|verttoft"
msgid "t_o:"
msgstr "h_ona:"
-#: cui/uiconfig/ui/swpossizepage.ui:478
+#: cui/uiconfig/ui/swpossizepage.ui:492
msgctxt "swpossizepage|mirror"
msgid "_Mirror on even pages"
msgstr "_Ispilatu orrialde bikoitietan"
-#: cui/uiconfig/ui/swpossizepage.ui:495
+#: cui/uiconfig/ui/swpossizepage.ui:509
msgctxt "swpossizepage|followtextflow"
msgid "Follow te_xt flow"
msgstr "Jarraitu testu-flu_xuari"
-#: cui/uiconfig/ui/swpossizepage.ui:518
+#: cui/uiconfig/ui/swpossizepage.ui:532
msgctxt "swpossizepage|label11"
msgid "Position"
msgstr "Kokagunea"
-#: cui/uiconfig/ui/swpossizepage.ui:549
+#: cui/uiconfig/ui/swpossizepage.ui:563
msgctxt "swpossizepage|pos"
msgid "Positio_n"
msgstr "_Kokalekua"
-#: cui/uiconfig/ui/swpossizepage.ui:565
+#: cui/uiconfig/ui/swpossizepage.ui:579
msgctxt "swpossizepage|size"
msgid "_Size"
msgstr "_Tamaina"
-#: cui/uiconfig/ui/swpossizepage.ui:587
+#: cui/uiconfig/ui/swpossizepage.ui:601
msgctxt "swpossizepage|label3"
msgid "Protect"
msgstr "Babestu"
@@ -11202,12 +11202,12 @@ msgctxt "textattrtabpage|label2"
msgid "Spacing to Borders"
msgstr "Ertzera bitarteko tartea"
-#: cui/uiconfig/ui/textattrtabpage.ui:425
+#: cui/uiconfig/ui/textattrtabpage.ui:423
msgctxt "textattrtabpage|TSB_FULL_WIDTH"
msgid "Full _width"
msgstr "Zabalera _osoa"
-#: cui/uiconfig/ui/textattrtabpage.ui:448
+#: cui/uiconfig/ui/textattrtabpage.ui:446
msgctxt "textattrtabpage|label3"
msgid "Text Anchor"
msgstr "Testu-aingura"
diff --git a/source/eu/filter/messages.po b/source/eu/filter/messages.po
index 7697d52715e..653640b6ee0 100644
--- a/source/eu/filter/messages.po
+++ b/source/eu/filter/messages.po
@@ -4,14 +4,17 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2018-04-23 18:11+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"PO-Revision-Date: 2018-06-04 05:58+0000\n"
+"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: eu\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: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1528091881.000000\n"
#: filter/inc/strings.hrc:25
msgctxt "STR_COLUMN_HEADER_NAME"
@@ -241,12 +244,12 @@ msgstr "PDF 1.4 baino lehenagoko PDF bertsioetan ez da gardentasuna onartzen. Ob
#: filter/inc/strings.hrc:74
msgctxt "STR_WARN_FORMACTION_PDFA_SHORT"
msgid "PDF/A form action"
-msgstr "PDF/A formulario-ekintza"
+msgstr "PDF/A inprimakiaren ekintza"
#: filter/inc/strings.hrc:75
msgctxt "STR_WARN_FORMACTION_PDFA"
msgid "A form control contained an action not supported by the PDF/A standard. The action was skipped"
-msgstr "Formulario-kontrol batek PDF/A estandarrak onartzen ez duen ekintza bat du. Eintza saltatu egin da"
+msgstr "Inprimaki-kontrol batek PDF/A estandarrak onartzen ez duen ekintza bat du. Ekintza saltatu egin da"
#: filter/inc/strings.hrc:76
msgctxt "STR_WARN_TRANSP_CONVERTED"
diff --git a/source/eu/filter/source/config/fragments/filters.po b/source/eu/filter/source/config/fragments/filters.po
index 362fdf1cc7f..b38780e3c64 100644
--- a/source/eu/filter/source/config/fragments/filters.po
+++ b/source/eu/filter/source/config/fragments/filters.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: 2018-05-16 16:54+0200\n"
-"PO-Revision-Date: 2018-05-17 07:52+0000\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
+"PO-Revision-Date: 2018-06-05 05:50+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: eu\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1526543549.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1528177817.000000\n"
#: ADO_rowset_XML.xcu
msgctxt ""
@@ -463,8 +463,8 @@ msgctxt ""
"MS Word 2003 XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Word 2003 XML"
-msgstr "Microsoft Word 2003 XMLa"
+msgid "Word 2003 XML"
+msgstr "Word 2003 XML"
#: MS_Word_2007_XML.xcu
msgctxt ""
@@ -1282,8 +1282,8 @@ msgctxt ""
"Calc MS Excel 2007 VBA XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Excel 2007-2016 XML (macro enabled)"
-msgstr "Microsoft Excel 2007-2016 XMLa (makroak gaituta)"
+msgid "Excel 2007–2019 (macro-enabled)"
+msgstr "Excel 2007–2019 (makroak gaituta)"
#: calc_MS_Excel_2007_XML.xcu
msgctxt ""
diff --git a/source/eu/filter/source/config/fragments/types.po b/source/eu/filter/source/config/fragments/types.po
index af0f797e1f6..83b7802d43b 100644
--- a/source/eu/filter/source/config/fragments/types.po
+++ b/source/eu/filter/source/config/fragments/types.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: 2018-05-08 15:11+0200\n"
-"PO-Revision-Date: 2018-05-09 08:20+0000\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
+"PO-Revision-Date: 2018-06-05 05:50+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: eu\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1525854049.000000\n"
+"X-POOTLE-MTIME: 1528177820.000000\n"
#: MS_Excel_2007_Binary.xcu
msgctxt ""
@@ -292,8 +292,8 @@ msgctxt ""
"writer_MS_Word_2003_XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Word 2003 XML"
-msgstr "Microsoft Word 2003 XMLa"
+msgid "Word 2003 XML"
+msgstr "Word 2003 XML"
#: writer_MS_Word_2007_XML.xcu
msgctxt ""
diff --git a/source/eu/fpicker/messages.po b/source/eu/fpicker/messages.po
index 728ccc6a616..eff6e583a3e 100644
--- a/source/eu/fpicker/messages.po
+++ b/source/eu/fpicker/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-22 13:16+0200\n"
-"PO-Revision-Date: 2018-03-06 16:34+0000\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
+"PO-Revision-Date: 2018-06-05 05:50+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: eu\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1520354062.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1528177832.000000\n"
#: include/fpicker/strings.hrc:14
msgctxt "STR_SVT_FILEPICKER_AUTO_EXTENSION"
@@ -272,13 +272,13 @@ msgstr "Zifratu GPG gakoarekin"
#: fpicker/uiconfig/ui/foldernamedialog.ui:8
msgctxt "foldernamedialog|FolderNameDialog"
-msgid "Folder Name ?"
-msgstr "Karpeta-izena?"
+msgid "Folder Name"
+msgstr "Karpeta-izena"
#: fpicker/uiconfig/ui/foldernamedialog.ui:91
msgctxt "foldernamedialog|label2"
-msgid "Na_me"
-msgstr "I_zena"
+msgid "Na_me:"
+msgstr "I_zena:"
#: fpicker/uiconfig/ui/foldernamedialog.ui:122
msgctxt "foldernamedialog|label1"
diff --git a/source/eu/helpcontent2/source/text/sbasic/guide.po b/source/eu/helpcontent2/source/text/sbasic/guide.po
index cc2bab08137..5b35638df4a 100644
--- a/source/eu/helpcontent2/source/text/sbasic/guide.po
+++ b/source/eu/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: 2018-04-25 13:24+0200\n"
-"PO-Revision-Date: 2018-05-06 08:48+0000\n"
+"PO-Revision-Date: 2018-06-04 06:01+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: eu\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1525596491.000000\n"
+"X-POOTLE-MTIME: 1528092063.000000\n"
#: access2base.xhp
msgctxt ""
@@ -126,7 +126,7 @@ msgctxt ""
"par_idA2B013\n"
"help.text"
msgid "the support of the shortcut notations like <item type=\"literal\">Forms!myForm!myControl</item>"
-msgstr "laburdura idazkeraren euskarria, hala nola, <item type=\"literal\">Formularioak!NireFormularioa!NireKontrola</item>"
+msgstr "laburdura idazkeraren euskarria, hala nola, <item type=\"literal\">Inprimakiak!NireInprimakia!NireKontrola</item>"
#: access2base.xhp
msgctxt ""
diff --git a/source/eu/helpcontent2/source/text/scalc.po b/source/eu/helpcontent2/source/text/scalc.po
index ce2873bad93..47cb53db8be 100644
--- a/source/eu/helpcontent2/source/text/scalc.po
+++ b/source/eu/helpcontent2/source/text/scalc.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-05-09 16:45+0200\n"
-"PO-Revision-Date: 2018-05-09 08:35+0000\n"
+"PO-Revision-Date: 2018-06-05 06:46+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: eu\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1525854921.000000\n"
+"X-POOTLE-MTIME: 1528181181.000000\n"
#: main0000.xhp
msgctxt ""
@@ -462,7 +462,7 @@ msgctxt ""
"par_id3150440\n"
"help.text"
msgid "<ahelp hid=\".\">The <emph>Tools </emph>menu contains commands to check spelling, to trace sheet references, to find mistakes and to define scenarios.</ahelp>"
-msgstr "<ahelp hid=\".\"><emph>Tresnak</emph>menuko komandoekin ortografia egiaztatu ahal izango duzu, orri-erreferentziak markatu, akatsak aurkitu eta agertokiak definitu.</ahelp>"
+msgstr "<ahelp hid=\".\"><emph>Tresnak</emph> menuko komandoekin ortografia egiaztatu ahal izango duzu, orri-erreferentziak markatu, akatsak aurkitu eta agertokiak definitu.</ahelp>"
#: main0106.xhp
msgctxt ""
diff --git a/source/eu/helpcontent2/source/text/scalc/01.po b/source/eu/helpcontent2/source/text/scalc/01.po
index c7636bca2bb..626dfe53a87 100644
--- a/source/eu/helpcontent2/source/text/scalc/01.po
+++ b/source/eu/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: 2018-05-08 15:11+0200\n"
-"PO-Revision-Date: 2018-05-12 08:07+0000\n"
+"PO-Revision-Date: 2018-05-25 09:51+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: eu\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1526112446.000000\n"
+"X-POOTLE-MTIME: 1527241864.000000\n"
#: 01120000.xhp
msgctxt ""
@@ -19758,7 +19758,7 @@ msgctxt ""
"par_id3150036\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_BEREICHE\">Returns the number of individual ranges that belong to a multiple range.</ahelp> A range can consist of contiguous cells or a single cell."
-msgstr "<ahelp hid=\"HID_FUNC_BEREICHE\">Area (anizkoitz) batean zenbat area dauden ematen du..</ahelp> Area bat ondoz ondoko gelaxken area edo gelaxka bakarra izan daiteke."
+msgstr "<ahelp hid=\"HID_FUNC_BEREICHE\">Barruti anizkoitz batean zenbat barruti dauden ematen du..</ahelp> Barruti bat ondoz ondoko gelaxken barrutia edo gelaxka bakarra izan daiteke."
#: 04060109.xhp
msgctxt ""
diff --git a/source/eu/helpcontent2/source/text/scalc/04.po b/source/eu/helpcontent2/source/text/scalc/04.po
index 2bd6ab891ae..f834c4ab184 100644
--- a/source/eu/helpcontent2/source/text/scalc/04.po
+++ b/source/eu/helpcontent2/source/text/scalc/04.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2017-10-04 11:48+0200\n"
-"PO-Revision-Date: 2018-05-06 09:04+0000\n"
+"PO-Revision-Date: 2018-05-25 09:51+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: eu\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1525597469.000000\n"
+"X-POOTLE-MTIME: 1527241919.000000\n"
#: 01020000.xhp
msgctxt ""
@@ -454,7 +454,7 @@ msgctxt ""
"par_id3154847\n"
"help.text"
msgid "Selects the data range that contains the cursor. A range is a contiguous cell range that contains data and is bounded by empty row and columns."
-msgstr "Kurtsorea kokatutako datu-area hautatzen du. Datuak dituen gelaxka-area jarraitua da area; hutsik dauden errenkada eta zutabeek mugatzen dute."
+msgstr "Kurtsorea kokatutako datu-barrutia hautatzen du. Barruti bat datuak dituen ondoz ondoko gelaxken multzoa da, hutsik dauden errenkada eta zutabeek mugatzen dutenea."
#: 01020000.xhp
msgctxt ""
diff --git a/source/eu/helpcontent2/source/text/scalc/guide.po b/source/eu/helpcontent2/source/text/scalc/guide.po
index e9baf074056..82e17eb957d 100644
--- a/source/eu/helpcontent2/source/text/scalc/guide.po
+++ b/source/eu/helpcontent2/source/text/scalc/guide.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2018-05-22 13:16+0200\n"
-"PO-Revision-Date: 2018-05-16 20:10+0000\n"
-"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
+"PO-Revision-Date: 2018-05-24 10:33+0000\n"
+"Last-Translator: Osoitz <oelkoro@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: eu\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1526501404.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1527157999.000000\n"
#: address_auto.xhp
msgctxt ""
@@ -8398,7 +8398,7 @@ msgctxt ""
"par_id681525167692377\n"
"help.text"
msgid "<image src=\"media/helpimg/sc_PivotChartButtons.png\" id=\"img_id801525167692378\" width=\"604px\" height=\"340px\"><alt id=\"alt_id881525167692378\">Pivot chart buttons</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/helpimg/sc_PivotChartButtons.png\" id=\"img_id801525167692378\" width=\"604px\" height=\"340px\"><alt id=\"alt_id881525167692378\">Diagrama dinamikoaren botoiak</alt></image>"
#: pivotchart_filter.xhp
msgctxt ""
diff --git a/source/eu/helpcontent2/source/text/sdraw/guide.po b/source/eu/helpcontent2/source/text/sdraw/guide.po
index 5158779b88f..dbc05c44d4f 100644
--- a/source/eu/helpcontent2/source/text/sdraw/guide.po
+++ b/source/eu/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: 2018-04-17 15:54+0200\n"
-"PO-Revision-Date: 2018-05-09 08:31+0000\n"
+"PO-Revision-Date: 2018-06-05 06:15+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: eu\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1525854710.000000\n"
+"X-POOTLE-MTIME: 1528179337.000000\n"
#: align_arrange.xhp
msgctxt ""
@@ -2118,7 +2118,7 @@ msgctxt ""
"par_id3147366\n"
"help.text"
msgid "For example, click the arrow next to the <emph>Callouts</emph> icon <image id=\"img_id3154508\" src=\"cmd/sc_calloutshapes.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3154508\">Icon</alt></image> to open the Callouts toolbar."
-msgstr "Adibidez, egin klik <emph>Bunbuiloak</emph> ikonoaren <image id=\"img_id3154508\" src=\"cmd/sc_calloutshapes.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3154508\">Ikonoa</alt></image> ondoko gezian Bunbuiloak tresna-barra irekitzeko."
+msgstr "Adibidez, egin klik <emph>Bunbuiloak</emph> ikonoaren <image id=\"img_id3154508\" src=\"cmd/sc_calloutshapes.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3154508\">Ikonoa</alt></image> ondoko gezian 'Bunbuiloak' tresna-barra irekitzeko."
#: text_enter.xhp
msgctxt ""
diff --git a/source/eu/helpcontent2/source/text/shared/00.po b/source/eu/helpcontent2/source/text/shared/00.po
index 64db1cff793..93f0f7637b7 100644
--- a/source/eu/helpcontent2/source/text/shared/00.po
+++ b/source/eu/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: 2018-05-22 13:16+0200\n"
-"PO-Revision-Date: 2018-05-23 08:15+0000\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
+"PO-Revision-Date: 2018-06-05 06:17+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: eu\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1527063356.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1528179445.000000\n"
#: 00000001.xhp
msgctxt ""
@@ -397,16 +397,16 @@ msgctxt ""
"00000001.xhp\n"
"hd_id3149670\n"
"help.text"
-msgid "Back"
-msgstr "Atzera"
+msgid "Reset"
+msgstr "Berrezarri"
#: 00000001.xhp
msgctxt ""
"00000001.xhp\n"
"par_id3145068\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optionsdialog/revert\">Resets modified values back to the $[officename] default values.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/optionsdialog/revert\">Aldatutako balioak baztertu eta $[officename] aplikazioko balio lehenetsiak berrezartzen ditu.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optionsdialog/revert\">Resets changes made to the current tab to those applicable when this dialog was opened.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/optionsdialog/revert\">Berrezarri uneko fitxan egindako aldaketak eta ezarri elkarrizketa-koadroa ireki denean aplikagarriak zirenak.</ahelp>"
#: 00000001.xhp
msgctxt ""
@@ -552,6 +552,54 @@ msgctxt ""
msgid "<variable id=\"ShiftF1\">Press Shift+F1 and point to a control to learn more about that control.</variable>"
msgstr "<variable id=\"ShiftF1\">Sakatu Shift+F1 eta kokatu kontrol baten gainean, hari buruz gehiago ikasteko.</variable>"
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"hd_id631527692833772\n"
+"help.text"
+msgid "Options dialog buttons"
+msgstr "'Aukerak' elkarrizketa-koadroaren botoiak"
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"hd_id831527692839432\n"
+"help.text"
+msgid "OK"
+msgstr "Ados"
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"par_id471527692844934\n"
+"help.text"
+msgid "Save the changes in the page and close the Options dialog."
+msgstr "Gorde orrialdeko aldaketak eta itxi 'Aukerak' elkarrizketa-koadroa."
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"hd_id261527692850720\n"
+"help.text"
+msgid "Cancel"
+msgstr "Utzi"
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"par_id571527692855533\n"
+"help.text"
+msgid "Close the Options dialog and discard all changes done."
+msgstr "Itxi 'Aukerak' elkarrizketa-koadroak eta baztertu egindako aldaketa guztiak."
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"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 Options dialog."
+msgstr "Zenbait aukera ezin dira berrezarri, behin editatutak izan ondoren. Editatu berriro eskuz, edo egin klik <emph>Utzi</emph> aukeran eta ireki berriro 'Aukerak' elkarrizketa-koadroa."
+
#: 00000002.xhp
msgctxt ""
"00000002.xhp\n"
@@ -6006,7 +6054,7 @@ msgctxt ""
"par_id181526424294565\n"
"help.text"
msgid "Choose <emph>File - Digital Signatures - Sign Existing PDF</emph>."
-msgstr ""
+msgstr "Aukeratu <emph>Fitxategia - Sinadura digitalak - Sinatu lehendik dagoen PDFa</emph>"
#: 00000401.xhp
msgctxt ""
@@ -6198,7 +6246,7 @@ msgctxt ""
"par_id3163421\n"
"help.text"
msgid "Choose <emph>File - Export As - Export as PDF</emph>, Digital Signatures tab"
-msgstr ""
+msgstr "Aukeratu <emph>Fitxategia - Esportatu honela - Esportatu PDF gisa</emph>, 'Sinadura digitalak' fitxa"
#: 00000401.xhp
msgctxt ""
@@ -6206,7 +6254,7 @@ msgctxt ""
"par_id3166421\n"
"help.text"
msgid "Choose <emph>File - Export As - Export as PDF</emph>"
-msgstr ""
+msgstr "Aukeratu <emph>Fitxategia - Esportatu honela - Esportatu PDF gisa</emph>."
#: 00000401.xhp
msgctxt ""
@@ -11125,16 +11173,16 @@ msgctxt ""
"00040502.xhp\n"
"par_id3151293\n"
"help.text"
-msgid "<variable id=\"linienstile\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Line Styles</emph> tab </variable>"
-msgstr "<variable id=\"linienstile\">Aukeratu <emph>Formatua - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Objektua - </emph></caseinline><caseinline select=\"CALC\"><emph>Grafikoa - </emph></caseinline></switchinline><emph>Marra - Marra Estiloak</emph> fitxa </variable>"
+msgid "<variable id=\"linienstile\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Line Styles</emph> tab</variable>"
+msgstr "<variable id=\"linienstile\">Aukeratu <emph>Formatua - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Objektua - </emph></caseinline><caseinline select=\"CALC\"><emph>Grafikoa - </emph></caseinline></switchinline><emph>Lerroa - Lerro-estiloak</emph> fitxa</variable>"
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3149317\n"
"help.text"
-msgid "<variable id=\"linienenden\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Arrow Styles</emph> tab </variable>"
-msgstr "<variable id=\"linienenden\">Aukeratu <emph>Formatua - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Objektua - </emph></caseinline><caseinline select=\"CALC\"><emph>Grafikoa - </emph></caseinline></switchinline><emph>Marra - Gezi-estiloak</emph> fitxa </variable>"
+msgid "<variable id=\"linienenden\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Arrow Styles</emph> tab</variable>"
+msgstr "<variable id=\"linienenden\">Aukeratu <emph>Formatua - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Objektua - </emph></caseinline><caseinline select=\"CALC\"><emph>Grafikoa - </emph></caseinline></switchinline><emph>Lerroa - Gezi-estiloak</emph> fitxa</variable>"
#: 00040502.xhp
msgctxt ""
@@ -11173,72 +11221,80 @@ msgctxt ""
"00040502.xhp\n"
"par_id3154948\n"
"help.text"
-msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Area</emph> tab"
-msgstr "Aukeratu <emph>Formatua - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Objektua - </emph></caseinline><caseinline select=\"CALC\"><emph>Grafikoa - </emph></caseinline></switchinline><emph>Area - Area</emph> fitxa"
+msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Area</emph> tab."
+msgstr "Aukeratu <emph>Formatua - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Objektua - </emph></caseinline><caseinline select=\"CALC\"><emph>Grafikoa - </emph></caseinline></switchinline><emph>Area - Area</emph> fitxa."
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3145607\n"
"help.text"
-msgid "Choose <emph>View - Styles</emph> - open context menu and choose <emph>Modify/New - Area</emph> tab (presentation documents)"
-msgstr "Aukeratu <emph>Ikusi - Estiloak</emph> - ireki laster-menua eta aukeratu <emph>Aldatu/Berria - Barrutia</emph> fitxa (aurkezpen-dokumentuak)"
+msgid "Choose <emph>View - Styles</emph> - open context menu and choose <emph>Modify/New - Area</emph> tab (presentation documents)."
+msgstr "Aukeratu <emph>Ikusi - Estiloak</emph> - ireki laster-menua eta aukeratu <emph>Aldatu/Berria - Area</emph> fitxa (aurkezpen-dokumentuak)."
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3152922\n"
"help.text"
-msgid "Choose <emph>Format - Title - Area</emph> tab (chart documents)"
-msgstr "Aukeratu <emph>Formatua - Titulua - Area</emph> fitxa (diagrama-dokumentuak)"
+msgid "Choose <emph>Format - Title - Area</emph> tab (chart documents)."
+msgstr "Aukeratu <emph>Formatua - Titulua - Area</emph> fitxa (diagrama-dokumentuak)."
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3157894\n"
"help.text"
-msgid "Choose <emph>Format - Legend - Area</emph> tab (chart documents)"
-msgstr "Aukeratu <emph>Formatua - Legenda - Area</emph> fitxa (diagrama-dokumentuak)"
+msgid "Choose <emph>Format - Legend - Area</emph> tab (chart documents)."
+msgstr "Aukeratu <emph>Formatua - Legenda - Area</emph> fitxa (diagrama-dokumentuak)."
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3144444\n"
"help.text"
-msgid "Choose <emph>Format - Chart Wall - Area</emph> tab (chart documents)"
-msgstr "Aukeratu <emph>Formatua - Diagramaren horma- Area</emph> fitxa (diagrama-dokumentuak)"
+msgid "Choose <emph>Format - Chart Wall - Area</emph> tab (chart documents)."
+msgstr "Aukeratu <emph>Formatua - Diagramaren horma - Area</emph> fitxa (diagrama-dokumentuak)."
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3156543\n"
"help.text"
-msgid "Choose <emph>Format - Chart Floor - Area</emph> tab (chart documents)"
-msgstr "Aukeratu <emph>Formatua - Diagramaren zorua- Area</emph> fitxa (diagrama-dokumentuak)"
+msgid "Choose <emph>Format - Chart Floor - Area</emph> tab (chart documents)."
+msgstr "Aukeratu <emph>Formatua - Diagramaren zorua - Area</emph> fitxa (diagrama-dokumentuak)."
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3150685\n"
"help.text"
-msgid "Choose <emph>Format - Chart Area - Area</emph> tab (chart documents)"
-msgstr "Aukeratu <emph>Formatua - Diagrama-area- Area</emph> fitxa (diagrama-dokumentuak)"
+msgid "Choose <emph>Format - Chart Area - Area</emph> tab (chart documents)."
+msgstr "Aukeratu <emph>Formatua - Diagrama-area - Area</emph> fitxa (diagrama-dokumentuak)."
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3149664\n"
"help.text"
-msgid "Choose <emph>Slide - Properties - Background</emph> tab (in $[officename] Impress)"
-msgstr "Aukeratu <emph>Diapositiba - Propietateak - Atzeko planoa</emph> fitxa ($[officename] Impress aplikazioan)"
+msgid "Choose <emph>Slide - Properties - Background</emph> tab (in $[officename] Impress)."
+msgstr "Aukeratu <emph>Diapositiba - Propietateak - Atzeko planoa</emph> fitxa ($[officename] Impress aplikazioan)."
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id9149694\n"
"help.text"
-msgid "Choose <emph>Page - Properties - Background</emph> tab (in $[officename] Draw)"
-msgstr "Aukeratu <emph>Orrialdea - Propietateak - Atzeko planoa</emph> fitxa ($[officename] Draw aplikazioan)"
+msgid "Choose <emph>Page - Properties - Background</emph> tab (in $[officename] Draw)."
+msgstr "Aukeratu <emph>Orrialdea - Propietateak - Atzeko planoa</emph> fitxa ($[officename] Draw aplikazioan)."
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id841527083135387\n"
+"help.text"
+msgid "Choose <emph>Table - Properties - Background</emph> tab."
+msgstr "Aukeratu <emph>Taula - Propietateak - Atzeko planoa</emph> fitxa."
#: 00040502.xhp
msgctxt ""
@@ -11349,32 +11405,32 @@ msgctxt ""
"00040502.xhp\n"
"par_id3150011\n"
"help.text"
-msgid "<variable id=\"schatte\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Shadow</emph> tab </variable>"
-msgstr "<variable id=\"schatte\">Aukeratu <emph>Formatua - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Objektua - </emph></caseinline><caseinline select=\"CALC\"><emph>Grafikoa - </emph></caseinline></switchinline><emph>Area - Itzala</emph> fitxa </variable>"
+msgid "<variable id=\"schatte\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Shadow</emph> tab</variable>"
+msgstr "<variable id=\"schatte\">Aukeratu <emph>Formatua - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Objektua - </emph></caseinline><caseinline select=\"CALC\"><emph>Grafikoa - </emph></caseinline></switchinline><emph>Area - Itzala</emph> fitxa</variable>"
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3147441\n"
"help.text"
-msgid "<variable id=\"verlauf\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Gradients</emph> tab </variable>"
-msgstr "<variable id=\"verlauf\">Aukeratu <emph>Formatua - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Objektua - </emph></caseinline><caseinline select=\"CALC\"><emph>Grafikoa - </emph></caseinline></switchinline><emph>Area - Gradienteak</emph> fitxa </variable>"
+msgid "<variable id=\"verlauf\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Gradients</emph> tab</variable>"
+msgstr "<variable id=\"verlauf\">Aukeratu <emph>Formatua - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Objektua - </emph></caseinline><caseinline select=\"CALC\"><emph>Grafikoa - </emph></caseinline></switchinline><emph>Area - Gradienteak</emph> fitxa</variable>"
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3155308\n"
"help.text"
-msgid "<variable id=\"schraffur\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Hatching</emph> tab </variable>"
-msgstr "<variable id=\"schraffur\">Aukeratu <emph>Formatua - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Objektua - </emph></caseinline><caseinline select=\"CALC\"><emph>Grafikoa - </emph></caseinline></switchinline><emph>Area - Itzaleztadura</emph> fitxa </variable>"
+msgid "<variable id=\"schraffur\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Hatching</emph> tab</variable>"
+msgstr "<variable id=\"schraffur\">Aukeratu <emph>Formatua - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Objektua - </emph></caseinline><caseinline select=\"CALC\"><emph>Grafikoa - </emph></caseinline></switchinline><emph>Area - Itzaleztadura</emph> fitxa</variable>"
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3145800\n"
"help.text"
-msgid "<variable id=\"bitmap\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Bitmaps</emph> tab </variable>"
-msgstr "<variable id=\"bitmap\">Aukeratu <emph>Formatua - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Objektua - </emph></caseinline><caseinline select=\"CALC\"><emph>Grafikoa - </emph></caseinline></switchinline><emph>Area - Bit-mapak</emph> fitxa </variable>"
+msgid "<variable id=\"bitmap\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Bitmaps</emph> tab</variable>"
+msgstr "<variable id=\"bitmap\">Aukeratu <emph>Formatua - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Objektua - </emph></caseinline><caseinline select=\"CALC\"><emph>Grafikoa - </emph></caseinline></switchinline><emph>Area - Bit-mapak</emph> fitxa</variable>"
#: 00040502.xhp
msgctxt ""
@@ -11413,8 +11469,8 @@ msgctxt ""
"00040502.xhp\n"
"par_id3156286\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F4 key </caseinline><caseinline select=\"IMPRESS\">F4 key </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F4 tekla </caseinline><caseinline select=\"IMPRESS\">F4 tekla</caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F4 key</caseinline><caseinline select=\"IMPRESS\">F4 key</caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F4 tekla</caseinline><caseinline select=\"IMPRESS\">F4 tekla</caseinline></switchinline>"
#: 00040502.xhp
msgctxt ""
@@ -11453,8 +11509,8 @@ msgctxt ""
"00040502.xhp\n"
"par_id3153099\n"
"help.text"
-msgid "<variable id=\"position2\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Position and Size</emph> tab </variable>"
-msgstr "<variable id=\"position2\">Aukeratu <emph>Formatua - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Objektua - </emph></caseinline><caseinline select=\"CALC\"><emph>Grafikoa - </emph></caseinline></switchinline><emph>Kokalekua eta tamaina - </emph> fitxa </variable>"
+msgid "<variable id=\"position2\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Position and Size</emph> tab</variable>"
+msgstr "<variable id=\"position2\">Aukeratu <emph>Formatua - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Objektua - </emph></caseinline><caseinline select=\"CALC\"><emph>Grafikoa - </emph></caseinline></switchinline><emph>Kokalekua eta tamaina - Kokalekua eta tamaina</emph> fitxa</variable>"
#: 00040502.xhp
msgctxt ""
@@ -11485,16 +11541,16 @@ msgctxt ""
"00040502.xhp\n"
"par_id3145666\n"
"help.text"
-msgid "<variable id=\"ecke\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Slant & Corner Radius</emph> tab </variable>"
-msgstr "<variable id=\"ecke\">Aukeratu <emph>Formatua - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Objektua - </emph></caseinline><caseinline select=\"CALC\"><emph>Grafikoa - </emph></caseinline></switchinline><emph>Kokalekua eta tamaina - Inklinazioa eta Izkinako erradioa</emph> fitxa </variable>"
+msgid "<variable id=\"ecke\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Slant & Corner Radius</emph> tab</variable>"
+msgstr "<variable id=\"ecke\">Aukeratu <emph>Formatua - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Objektua - </emph></caseinline><caseinline select=\"CALC\"><emph>Grafikoa - </emph></caseinline></switchinline><emph>Kokalekua eta tamaina - Inklinazioa eta izkinako erradioa</emph> fitxa</variable>"
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3146081\n"
"help.text"
-msgid "<variable id=\"legende\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Callout</emph> tab (only for textbox callouts, not for custom shapes callouts) </variable>"
-msgstr "<variable id=\"legende\">Aukeratu <emph>Formatua - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Objektua - </emph></caseinline><caseinline select=\"CALC\"><emph>Grafikoa - </emph></caseinline></switchinline><emph>Kokalekua eta tamaina - Bunbuiloa</emph> fitxa (testu-kutxako legendentzat besterik ez, ez forma pertsonalizatuak dituzten bunbuiloentzat)</variable>"
+msgid "<variable id=\"legende\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Callout</emph> tab (only for textbox callouts, not for custom shapes callouts)</variable>"
+msgstr "<variable id=\"legende\">Aukeratu <emph>Formatua - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Objektua - </emph></caseinline><caseinline select=\"CALC\"><emph>Grafikoa - </emph></caseinline></switchinline><emph>Kokalekua eta tamaina - Bunbuiloa</emph> fitxa (testu-kutxak diren bunbuiloetarako soilik, ez forma pertsonalizatuko bunbuiloetarako)</variable>"
#: 00040502.xhp
msgctxt ""
@@ -11517,8 +11573,8 @@ msgctxt ""
"00040502.xhp\n"
"par_id3149019\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F8 key </caseinline><caseinline select=\"IMPRESS\">F8 key </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F8 tekla </caseinline><caseinline select=\"IMPRESS\">F8 tekla</caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F8 key</caseinline><caseinline select=\"IMPRESS\">F8 key</caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F8 tekla</caseinline><caseinline select=\"IMPRESS\">F8 tekla</caseinline></switchinline>"
#: 00040502.xhp
msgctxt ""
@@ -11805,7 +11861,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3153076\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Align Center Horizontally </caseinline><defaultinline>Centered</defaultinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Align Center Horizontally</caseinline><defaultinline>Centered</defaultinline></switchinline>"
msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Lerrokatu horizontalean zentratuta</caseinline><defaultinline>Erdian</defaultinline></switchinline>"
#: 00040502.xhp
@@ -11845,8 +11901,8 @@ msgctxt ""
"00040502.xhp\n"
"par_id3150527\n"
"help.text"
-msgid "<variable id=\"font\">Click <emph>Fontwork</emph> icon on <emph>Drawing</emph> bar </variable>"
-msgstr "<variable id=\"font\">Egin klik <emph>Fontwork</emph> ikonoan <emph>Marrazkia</emph> barra </variable>"
+msgid "<variable id=\"font\">Click <emph>Fontwork</emph> icon on <emph>Drawing</emph> bar</variable>"
+msgstr "<variable id=\"font\">Egin klik <emph>Fontwork</emph> ikonoan, <emph>Marrazkia</emph> barran</variable>"
#: 00040502.xhp
msgctxt ""
diff --git a/source/eu/helpcontent2/source/text/shared/01.po b/source/eu/helpcontent2/source/text/shared/01.po
index c598ef5b68e..51cdb79b25b 100644
--- a/source/eu/helpcontent2/source/text/shared/01.po
+++ b/source/eu/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: 2018-05-23 23:19+0200\n"
-"PO-Revision-Date: 2018-05-23 08:15+0000\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
+"PO-Revision-Date: 2018-06-05 06:20+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: eu\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1527063320.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1528179608.000000\n"
#: 01010000.xhp
msgctxt ""
@@ -2566,7 +2566,7 @@ msgctxt ""
"par_id3155934\n"
"help.text"
msgid "The following sections describe the <item type=\"productname\">%PRODUCTNAME</item> <emph>Save as</emph> dialog. To activate the <emph><item type=\"productname\">%PRODUCTNAME</item> Open</emph> and <emph>Save</emph> dialog boxes, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - </emph><link href=\"text/shared/optionen/01010600.xhp\" name=\"%PRODUCTNAME - General\"><emph>%PRODUCTNAME- General</emph></link>, and then select the <emph>Use %PRODUCTNAME dialogs</emph> in the <emph>Open/Save dialogs</emph> area."
-msgstr ""
+msgstr "Atal honek <item type=\"productname\">%PRODUCTNAME</item><emph>Gorde honela</emph> elkarrizketa-koadroa azaltzen du. <emph><item type=\"productname\">%PRODUCTNAME</item>Ireki</emph> eta <emph>Gorde</emph> elkarrizketa-koadroak aktibatzeko, aukeratu <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Hobespenak</emph></caseinline><defaultinline><emph>Tresnak - Aukerak</emph></defaultinline></switchinline><emph> - </emph><link href=\"text/shared/optionen/01010600.xhp\" name=\"%PRODUCTNAME - General\"><emph>%PRODUCTNAME - Orokorra</emph></link>, eta gero hautatu <emph>Erabili %PRODUCTNAME elkarrizketa-koadroak</emph> <emph>Ireki/Gorde elkarrizketa-koadroaren</emph> arean."
#: 01070000.xhp
msgctxt ""
@@ -3422,7 +3422,7 @@ msgctxt ""
"par_id3156324\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Some statistic values can be used as <link href=\"text/swriter/02/14020000.xhp\" name=\"variables in formulas\">variables in formulas</link>.</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Balio estatistiko batzuk <link href=\"text/swriter/02/14020000.xhp\" name=\"variables in formulas\">formuletan aldagai</link>gisa erabil daitezke.</caseinline></switchinline>"
#: 01100400.xhp
msgctxt ""
@@ -3454,7 +3454,7 @@ msgctxt ""
"par_id3153527\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Number of tables in the file.</caseinline><caseinline select=\"CALC\">Number of sheets in the file.</caseinline></switchinline> This statistic does not include tables that were inserted as <link href=\"text/shared/00/00000005.xhp#ole\" name=\"OLE\">OLE</link> objects."
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Fitxategiko taula kopurua.</caseinline><caseinline select=\"CALC\">Fitxategiko orri kopurua.</caseinline></switchinline> Estatistika horiek ez dituzte kontuan hartzen <link href=\"text/shared/00/00000005.xhp#ole\" name=\"OLE\">OLE</link> objektu gisa txertatutako taulak."
#: 01100400.xhp
msgctxt ""
@@ -3470,7 +3470,7 @@ msgctxt ""
"par_id3156114\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Number of cells with content in the file.</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Fitxategian edukia duten gelaxken kopurua.</caseinline></switchinline>"
#: 01100400.xhp
msgctxt ""
@@ -3478,7 +3478,7 @@ msgctxt ""
"hd_id641526904710590\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Formula groups:</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Formula-taldeak:</caseinline></switchinline>"
#: 01100400.xhp
msgctxt ""
@@ -3486,7 +3486,7 @@ msgctxt ""
"par_id541526903668055\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Number of contiguous ranges in a column with same formula.</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Zutabe bateko ondoz ondoko barrutiak, formula bera dutenak.</caseinline></switchinline>"
#: 01100400.xhp
msgctxt ""
@@ -3494,7 +3494,7 @@ msgctxt ""
"hd_id3147210\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Images:</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Irudiak:</caseinline></switchinline>"
#: 01100400.xhp
msgctxt ""
@@ -3502,7 +3502,7 @@ msgctxt ""
"par_id3166411\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Number of images in the file. This statistic does not include images that were inserted as <link href=\"text/shared/00/00000005.xhp#ole\" name=\"OLE\">OLE</link> objects.</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Fitxategiko irudi kopurua. Estatistika hauetan ez dira kontuan hartzen <link href=\"text/shared/00/00000005.xhp#ole\" name=\"OLE\">OLE</link> objektu gisa txertatutako irudiak.</caseinline></switchinline>"
#: 01100400.xhp
msgctxt ""
@@ -3510,7 +3510,7 @@ msgctxt ""
"hd_id3147618\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">OLE Objects:</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">OLE objektuak:</caseinline></switchinline>"
#: 01100400.xhp
msgctxt ""
@@ -3518,7 +3518,7 @@ msgctxt ""
"par_id3149820\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Number of <link href=\"text/shared/00/00000005.xhp#ole\" name=\"OLE\">OLE</link> objects in the file, including tables and graphics that were inserted as OLE objects.</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Fitxategiko <link href=\"text/shared/00/00000005.xhp#ole\" name=\"OLE\">OLE</link> objektu kopurua, OLE objektu gisa txertatu ziren taulak eta grafikoak barne.</caseinline></switchinline>"
#: 01100400.xhp
msgctxt ""
@@ -3526,7 +3526,7 @@ msgctxt ""
"hd_id3153665\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Paragraphs:</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Paragrafoak:</caseinline></switchinline>"
#: 01100400.xhp
msgctxt ""
@@ -3534,7 +3534,7 @@ msgctxt ""
"par_id3156156\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Number of paragraphs (including blank paragraphs) in the file.</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Fitxategiko paragrafo kopurua (paragrafo hutsak barne).</caseinline></switchinline>"
#: 01100400.xhp
msgctxt ""
@@ -3542,7 +3542,7 @@ msgctxt ""
"hd_id3155261\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Words:</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Hitzak:</caseinline></switchinline>"
#: 01100400.xhp
msgctxt ""
@@ -3550,7 +3550,7 @@ msgctxt ""
"par_id3147402\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Number of words (including words consisting of a single character) in the file.</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Fitxategiko hitz kopurua (karaktere bakarra duten hitzak barne).</caseinline></switchinline>"
#: 01100400.xhp
msgctxt ""
@@ -3558,7 +3558,7 @@ msgctxt ""
"hd_id3150466\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Characters:</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Karaktereak:</caseinline></switchinline>"
#: 01100400.xhp
msgctxt ""
@@ -3566,7 +3566,7 @@ msgctxt ""
"par_id3149294\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Number of characters (including spaces) in the file. Non-printable characters are not included.</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Fitxategiko karaktere kopurua (zuriuneak barne). Karaktere ez-inprimagarriak ez dira sartzen.</caseinline></switchinline>"
#: 01100400.xhp
msgctxt ""
@@ -3574,7 +3574,7 @@ msgctxt ""
"hd_id3148947\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Lines:</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Marrak:</caseinline></switchinline>"
#: 01100400.xhp
msgctxt ""
@@ -3582,7 +3582,7 @@ msgctxt ""
"par_id3149650\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Number of lines in the file.</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Fitxategiko marra kopurua.</caseinline></switchinline>"
#: 01100400.xhp
msgctxt ""
@@ -3590,7 +3590,7 @@ msgctxt ""
"hd_id3153525\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Update</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Eguneratu</caseinline></switchinline>"
#: 01100400.xhp
msgctxt ""
@@ -5454,7 +5454,7 @@ msgctxt ""
"par_id3149205\n"
"help.text"
msgid "<ahelp hid=\".\">Reverses the last command or the last entry you typed. To select the command that you want to reverse, click the arrow next to the <emph>Undo </emph>icon on the Standard bar.</ahelp>"
-msgstr "<ahelp hid=\".\">Azken komandoa edo idatzitako azken sarrera desegiten du. Desegin nahi duzun komandoa hautatzeko, egin klik 'Estandarra' barrako <emph>Desegin</emph>ikonoaren ondoan dagoen gezian.</ahelp>"
+msgstr "<ahelp hid=\".\">Azken komandoa edo idatzitako azken sarrera desegiten du. Desegin nahi duzun komandoa hautatzeko, egin klik 'Estandarra' barrako <emph>Desegin</emph> ikonoaren ondoan dagoen gezian.</ahelp>"
#: 02010000.xhp
msgctxt ""
@@ -11406,7 +11406,7 @@ msgctxt ""
"par_id3150838\n"
"help.text"
msgid "<variable id=\"dokver\"><ahelp hid=\".uno:CompareDocuments\">Compares the current document with a document that you select.</ahelp></variable> The contents of the selected document are marked as deletions in the dialog that opens. If you want, you can insert the contents of the selected file into the current document by selecting the relevant deleted entries, clicking <emph>Reject</emph>, and then clicking <emph>Insert</emph>."
-msgstr "<variable id=\"dokver\"><ahelp hid=\".uno:CompareDocuments\">Uneko dokumentua hautatutako dokumentu batekin konparatzen du.</ahelp></variable> Hautatutako dokumentuaren edukia ezabatze gisa markatzen da irekitzen den elkarrizketa-koadroan. Nahi izanez gero, hautatutako fitxategiaren edukia uneko dokumentuan txerta daiteke ezabatutako sarrera egokiak hautatuz, eta ondoren<emph>Ezetsi</emph>n eta <emph>Txertatu</emph>n klik eginez."
+msgstr "<variable id=\"dokver\"><ahelp hid=\".uno:CompareDocuments\">Uneko dokumentua hautatutako dokumentu batekin konparatzen du.</ahelp></variable> Hautatutako dokumentuaren edukia ezabatze gisa markatzen da irekitzen den elkarrizketa-koadroan. Nahi izanez gero, hautatutako fitxategiaren edukia uneko dokumentuan txerta daiteke ezabatutako sarrera egokiak hautatuta, eta ondoren<emph>Ezetsi</emph> eta <emph>Txertatu</emph> aukeretan klik eginda."
#: 02240000.xhp
msgctxt ""
@@ -23587,6 +23587,22 @@ msgstr "Kolore, gradiente, itzaleztadura, bi koloreko eredu eta bitmap-eredu per
#: 05210100.xhp
msgctxt ""
"05210100.xhp\n"
+"hd_id471527077476052\n"
+"help.text"
+msgid "Cell, Row or Table background selector"
+msgstr "Gelaxkaren, errenkadaren eta taularen atzeko planoaren hautatzailea"
+
+#: 05210100.xhp
+msgctxt ""
+"05210100.xhp\n"
+"par_id661527077493366\n"
+"help.text"
+msgid "Select the table object which background area is to be filled."
+msgstr "Hautatu taulako zein objekturi beteko zaioan atzeko planoaren area."
+
+#: 05210100.xhp
+msgctxt ""
+"05210100.xhp\n"
"hd_id3147373\n"
"help.text"
msgid "None"
@@ -25238,7 +25254,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Slant & Corner Radius"
-msgstr "Inklinazioa eta Izkinako erradioa"
+msgstr "Inklinazioa eta izkinako erradioa"
#: 05230400.xhp
msgctxt ""
@@ -25254,7 +25270,7 @@ msgctxt ""
"hd_id3149988\n"
"help.text"
msgid "<link href=\"text/shared/01/05230400.xhp\" name=\"Slant & Corner Radius\">Slant & Corner Radius</link>"
-msgstr "<link href=\"text/shared/01/05230400.xhp\" name=\"Slant & Corner Radius\">Inklinazioa eta Izkinako erradioa</link>"
+msgstr "<link href=\"text/shared/01/05230400.xhp\" name=\"Slant & Corner Radius\">Inklinazioa eta izkinako erradioa</link>"
#: 05230400.xhp
msgctxt ""
@@ -31205,24 +31221,24 @@ msgctxt ""
"06040100.xhp\n"
"hd_id3145072\n"
"help.text"
-msgid "Automatic *bold* and _underline_"
-msgstr "Automatikoki *lodia* eta _azpimarratua_"
+msgid "Automatic *bold*, /italic/, -strikeout- and _underline_"
+msgstr "*Lodi*, /etzan/, -marratu- eta _azpimarratu_ automatikoak"
#: 06040100.xhp
msgctxt ""
"06040100.xhp\n"
"par_id3153577\n"
"help.text"
-msgid "Automatically applies bold formatting to text enclosed by asterisks (*), and underline to text enclosed by underscores ( _ ), for example, *bold*. The asterisks and underscores are not displayed after the formatting is applied."
-msgstr "Izartxoen (*) artean dagoen testuan formatu lodia aplikatzen du automatikoki eta azpimarren ( _ ) artean dagoen testuan azpimarratua, adibidez, *lodia*. Formatua aplikatu ondoren izartxoak eta azpimarrak ez dira bistaratzen."
+msgid "Automatically applies bold, italic, strikethrough or underline formatting to text enclosed by asterisks (*), slashes (/), hyphens (-), and underscores (_), respectively. These characters disappear after the formatting is applied."
+msgstr "Automatikoki aplikatzen du letra lodia, etzana, marratua edo azpimarratuaren formatua, asteriskoekin (*), barrekin (/), marratxoekin (-) edo azpimarrekin (_) inguratutako testuari, hurrenez hurren. Karaktere horiek desagertu egingo dira formatua aplikatu ondoren."
#: 06040100.xhp
msgctxt ""
"06040100.xhp\n"
"par_id3153127\n"
"help.text"
-msgid "This feature does not work if the formatting characters * or _ are entered with an <link href=\"text/shared/00/00000005.xhp#IME\" name=\"Input Method Editor\">Input Method Editor</link>."
-msgstr "Eginbide honek ez du balio formatua emateko karaktereak * edo _ <link href=\"text/shared/00/00000005.xhp#IME\" name=\"Input Method Editor\">Sarrerako metodoaren editorea</link>ren bidez idazten badira."
+msgid "This feature does not work if the formatting characters <item type=\"literal\">* / - _</item> are entered with an <link href=\"text/shared/00/00000005.xhp#IME\" name=\"Input Method Editor\">Input Method Editor</link>."
+msgstr "Eginbide honek ez du balio formatua emateko <item type=\"literal\">* / - _</item> karaktereak <link href=\"text/shared/00/00000005.xhp#IME\" name=\"Input Method Editor\">Sarrerako metodoaren editorea</link> erabilita idazten badira."
#: 06040100.xhp
msgctxt ""
@@ -37870,7 +37886,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Digital Signature in PDF Export"
-msgstr ""
+msgstr "Sinadura digitala PDF esportazioan"
#: digitalsignaturespdf.xhp
msgctxt ""
@@ -37878,7 +37894,7 @@ msgctxt ""
"hd_id771526419375353\n"
"help.text"
msgid "Signing Exported PDF"
-msgstr ""
+msgstr "Esportatutako PDFa sinatzea"
#: digitalsignaturespdf.xhp
msgctxt ""
@@ -37886,7 +37902,7 @@ msgctxt ""
"par_id321526421041596\n"
"help.text"
msgid "<link href=\"text/shared/guide/digital_signatures.xhp\">About Digital Signatures</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/guide/digital_signatures.xhp\">Sinadura digitalei buruz</link>"
#: extensionupdate.xhp
msgctxt ""
@@ -41110,7 +41126,7 @@ msgctxt ""
"par_idN207C2\n"
"help.text"
msgid "To export comments of Writer documents as they are shown in %PRODUCTNAME, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer - Print</emph> and select the <emph>In margins</emph> option in the <emph>Comments</emph> area. The exported pages will be scaled down and the comments will be placed into their margins."
-msgstr ""
+msgstr "Writer dokumentuetako iruzkinak %PRODUCTNAME aplikazioan erakusten diren moduan esportatzeko, aukeratu <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Hobespenak</emph> </caseinline><defaultinline><emph>Tresnak - Aukerak</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer - Inprimatu</emph> eta hautatu <emph>Marjinetan</emph> aukera <emph>Iruzkinak</emph> arean. Esportatutako orrialdeen eskala txikiagotu eta iruzkinak marjinetan kokatuko dira."
#: ref_pdf_export.xhp
msgctxt ""
@@ -42038,7 +42054,7 @@ msgctxt ""
"par_id22107306\n"
"help.text"
msgid "The key store to be used can be selected under <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME - Security - Certificate Path</emph>."
-msgstr ""
+msgstr "Erabiliko den gako-biltegia hautatzeko, erabili <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Hobespenak</emph> </caseinline><defaultinline><emph>Tresnak - Aukerak</emph></defaultinline></switchinline><emph> - %PRODUCTNAME - Segurtasuna - Ziurtagiriaren bide-izena</emph>."
#: ref_pdf_export.xhp
msgctxt ""
@@ -42182,7 +42198,7 @@ msgctxt ""
"par_id39089022\n"
"help.text"
msgid "The list of TSA URLs that can be selected is maintained under <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME - Security - TSAs</emph>."
-msgstr ""
+msgstr "Hautatu daitezkeen TSA URLak honako aukeran konfiguratzen dira: <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Hobespenak</emph> </caseinline><defaultinline><emph>Tresnak - Aukerak</emph></defaultinline></switchinline><emph> - %PRODUCTNAME - Segurtasuna - TSAk</emph>."
#: ref_pdf_export.xhp
msgctxt ""
@@ -42414,7 +42430,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Signing Existing PDF"
-msgstr ""
+msgstr "Sinatu lehendik dagoen PDFa"
#: signexistingpdf.xhp
msgctxt ""
@@ -42422,7 +42438,7 @@ msgctxt ""
"bm_id581526779778738\n"
"help.text"
msgid "<bookmark_value>digital signature;signing existing PDF</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>sinadura digitala;lehendik dagoen PDFa sinatzea</bookmark_value>"
#: signexistingpdf.xhp
msgctxt ""
@@ -42430,7 +42446,7 @@ msgctxt ""
"hd_id201526432498222\n"
"help.text"
msgid "<variable id=\"signexisitingpdf\"><link href=\"text/shared/01/signexistingpdf.xhp\" name=\"Sign Existing PDF Files\">Signing Existing PDF files</link></variable>"
-msgstr ""
+msgstr "<variable id=\"signexisitingpdf\"><link href=\"text/shared/01/signexistingpdf.xhp\" name=\"Sign Existing PDF Files\">Sinatu lehendik dauden PDF fitxategiak</link></variable>"
#: signexistingpdf.xhp
msgctxt ""
@@ -42438,7 +42454,7 @@ msgctxt ""
"par_id41526423955118\n"
"help.text"
msgid "%PRODUCTNAME can digitally sign an existing PDF document."
-msgstr ""
+msgstr "%PRODUCTNAME aplikazioak lehendik dauden PDF dokumentuei sinadura digitala eman diezaieke."
#: signexistingpdf.xhp
msgctxt ""
@@ -42446,7 +42462,7 @@ msgctxt ""
"par_id821526581027302\n"
"help.text"
msgid "The file opens in %PRODUCTNAME Draw in read only mode."
-msgstr ""
+msgstr "Fitxategia %PRODUCTNAME Draw aplikazioan irekiko da, irakurtzeko moduan soilik."
#: signexistingpdf.xhp
msgctxt ""
@@ -42454,7 +42470,7 @@ msgctxt ""
"par_id361526580565237\n"
"help.text"
msgid "Sign the PDF document as usual."
-msgstr ""
+msgstr "Sinatu PDF dokumentua normalean egiten den bezala."
#: webhtml.xhp
msgctxt ""
diff --git a/source/eu/helpcontent2/source/text/shared/optionen.po b/source/eu/helpcontent2/source/text/shared/optionen.po
index 9ed52536ab8..2acc8697eda 100644
--- a/source/eu/helpcontent2/source/text/shared/optionen.po
+++ b/source/eu/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: 2018-05-08 15:10+0200\n"
-"PO-Revision-Date: 2018-05-12 12:32+0000\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
+"PO-Revision-Date: 2018-06-05 05:59+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: eu\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1526128375.000000\n"
+"X-POOTLE-MTIME: 1528178386.000000\n"
#: 01000000.xhp
msgctxt ""
@@ -83,6 +83,22 @@ msgstr "Oharra macOS sistemaren erabiltzaileentzako: 'Laguntzak' hainbat lekutan
#: 01000000.xhp
msgctxt ""
"01000000.xhp\n"
+"hd_id551527692881035\n"
+"help.text"
+msgid "Help"
+msgstr "Laguntza"
+
+#: 01000000.xhp
+msgctxt ""
+"01000000.xhp\n"
+"par_id831527692885723\n"
+"help.text"
+msgid "Opens the help contents for the Options page displayed."
+msgstr "Laguntzaren edukiak irekitzen ditu bistaratutako 'Aukerak' orrialderako."
+
+#: 01000000.xhp
+msgctxt ""
+"01000000.xhp\n"
"hd_id3159149\n"
"help.text"
msgid "<link href=\"text/shared/optionen/01010000.xhp\" name=\"$[officename]\">%PRODUCTNAME</link>"
@@ -4565,8 +4581,8 @@ msgctxt ""
"01030300.xhp\n"
"par_idN10640\n"
"help.text"
-msgid "Options"
-msgstr "Aukerak"
+msgid "Security Options and Warnings"
+msgstr "Segurtasuneko aukerak eta abisuak"
#: 01030300.xhp
msgctxt ""
@@ -4597,8 +4613,8 @@ msgctxt ""
"01030300.xhp\n"
"hd_id3168736\n"
"help.text"
-msgid "Persistently save passwords protected by a master password"
-msgstr "Gorde pasahitzak modu iraunkorrean, pasahitz maisu batekin babestuta"
+msgid "Persistently save passwords for web connections"
+msgstr "Gorde pasahitza betirako web konexioentzako"
#: 01030300.xhp
msgctxt ""
@@ -4613,6 +4629,22 @@ msgctxt ""
"01030300.xhp\n"
"hd_id3901791\n"
"help.text"
+msgid "Protected by a master password (recommended)"
+msgstr "Pasahitz maisu bidez babestua (gomendatua)"
+
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"par_id31527711486980\n"
+"help.text"
+msgid "Check to enable all connections' passwords to be protected by a master password."
+msgstr "Markatu, konexio guztietako pasahitzak pasahitz maisu baten bidez babestu nahi badituzu."
+
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"hd_id141527711343312\n"
+"help.text"
msgid "Master Password"
msgstr "Pasahitz maisua"
@@ -13733,8 +13765,8 @@ msgctxt ""
"java.xhp\n"
"hd_id3148618\n"
"help.text"
-msgid "Optional (unstable) options"
-msgstr "Hautazko aukerak (ezegonkorrak)"
+msgid "Optional Features"
+msgstr "Aukerako eginbideak"
#: java.xhp
msgctxt ""
@@ -13749,8 +13781,8 @@ msgctxt ""
"java.xhp\n"
"par_id3156344\n"
"help.text"
-msgid "It enables features that are not yet complete or contain known bugs. The list of these features is different version by version, or even it can be empty."
-msgstr "Oraindik osatuta ez dauden edo akatsak dituzten eginbideak gaitzen ditu. Eginbide horien zerrenda desberdina da bertsio batetik bestera, edo hutsik egon daiteke."
+msgid "Enables features that are not yet complete or may contain known bugs. The list of these features is different version by version, or even it can be empty."
+msgstr "Oraindik osatuta ez dauden edo akatsak eduki ditzaketen eginbideak gaitzen ditu. Eginbide horien zerrenda desberdina da bertsio batetik bestera, edo hutsik egon daiteke."
#: java.xhp
msgctxt ""
@@ -13765,8 +13797,8 @@ msgctxt ""
"java.xhp\n"
"par_id3156345\n"
"help.text"
-msgid "It enables macro recording, so the <link href=\"text/shared/guide/macro_recording.xhp\" name=\"Tools - Macros - Record Macro\"><item type=\"menuitem\">Tools - Macros - Record Macro</item></link> menu item will be available."
-msgstr "Makroen grabazioa gaitzen du, <link href=\"text/shared/guide/macro_recording.xhp\" name=\"Tools - Macros - Record Macro\"><item type=\"menuitem\">Tresnak - Makorka - Grabatu makroa</item></link> menu-elementua erabilgarri egon dadin."
+msgid "Enables macro recording. The <link href=\"text/shared/guide/macro_recording.xhp\" name=\"Tools - Macros - Record Macro\"><item type=\"menuitem\">Tools - Macros - Record Macro</item></link> menu item is available."
+msgstr "Makroen grabazioa gaitzen du. <link href=\"text/shared/guide/macro_recording.xhp\" name=\"Tools - Macros - Record Macro\"><item type=\"menuitem\">Tresnak - Makroak - Grabatu makroa</item></link> menu-elementua erabilgarri ipintzen du."
#: java.xhp
msgctxt ""
diff --git a/source/eu/helpcontent2/source/text/simpress/guide.po b/source/eu/helpcontent2/source/text/simpress/guide.po
index a000bd6f6f9..64b0ea2877d 100644
--- a/source/eu/helpcontent2/source/text/simpress/guide.po
+++ b/source/eu/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: 2018-05-16 16:54+0200\n"
-"PO-Revision-Date: 2018-05-12 12:34+0000\n"
+"PO-Revision-Date: 2018-06-01 08:27+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: eu\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1526128445.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1527841666.000000\n"
#: 3d_create.xhp
msgctxt ""
@@ -2414,7 +2414,7 @@ msgctxt ""
"par_id3148610\n"
"help.text"
msgid "You can use the keyboard to access $[officename] Impress commands as well as to navigate through the workspace. $[officename] Impress uses the same shortcut keys as $[officename] Draw to create <link href=\"text/sdraw/guide/keyboard.xhp\" name=\"drawing objects\">drawing objects</link>."
-msgstr "Teklatua erabil dezakezu $[officename] Impresseko komandoak eskuratzeko eta laneko arean nabigatzeko. $[officename] Impress-ek $[officename] Draw aplikazioko laster-tekla berdinak erabiltzen ditu <link href=\"text/sdraw/guide/keyboard.xhp\" name=\"marrazki-objektuak\">marrazki-objektuak</link> sortzeko."
+msgstr "Teklatua erabil dezakezu $[officename] Impresseko komandoak eskuratzeko eta laneko arean nabigatzeko. $[officename] Impressek $[officename] Draw aplikazioko laster-tekla berdinak erabiltzen ditu <link href=\"text/sdraw/guide/keyboard.xhp\" name=\"drawing objects\">marrazki-objektuak</link> sortzeko."
#: keyboard.xhp
msgctxt ""
diff --git a/source/eu/helpcontent2/source/text/swriter/00.po b/source/eu/helpcontent2/source/text/swriter/00.po
index cab223a7abc..53a343ed409 100644
--- a/source/eu/helpcontent2/source/text/swriter/00.po
+++ b/source/eu/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: 2018-05-22 13:17+0200\n"
-"PO-Revision-Date: 2018-05-12 12:36+0000\n"
+"PO-Revision-Date: 2018-05-25 10:02+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: eu\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1526128600.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1527242546.000000\n"
#: 00000004.xhp
msgctxt ""
@@ -598,7 +598,7 @@ msgctxt ""
"par_id3155990\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F2"
-msgstr ""
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">⌘</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F2"
#: 00000404.xhp
msgctxt ""
@@ -854,7 +854,7 @@ msgctxt ""
"par_id3150113\n"
"help.text"
msgid "<variable id=\"einfscript\">Choose <emph>Insert - Script</emph> (only HTML documents)</variable>"
-msgstr ""
+msgstr "<variable id=\"einfscript\">Aukeratu <emph>Txertatu - Scripta</emph> (HTML dokumentuak soilik)</variable>"
#: 00000404.xhp
msgctxt ""
@@ -1094,7 +1094,7 @@ msgctxt ""
"par_id3155087\n"
"help.text"
msgid "<variable id=\"umschlagb\">Choose <emph>Insert - Envelope - Envelope</emph> tab</variable>"
-msgstr ""
+msgstr "<variable id=\"umschlagb\">Aukeratu <emph>Txertatu - Gutun-azala - Gutun-azala</emph> fitxa</variable>"
#: 00000404.xhp
msgctxt ""
@@ -1102,7 +1102,7 @@ msgctxt ""
"par_id3146955\n"
"help.text"
msgid "<variable id=\"formatbr\">Choose <emph>Insert - Envelope - Format</emph> tab</variable>"
-msgstr ""
+msgstr "<variable id=\"formatbr\">Aukeratu <emph>Txertatu - Gutun-azala - Formatua</emph> fitxa</variable>"
#: 00000404.xhp
msgctxt ""
@@ -1110,7 +1110,7 @@ msgctxt ""
"par_id3154342\n"
"help.text"
msgid "<variable id=\"druckerbr\">Choose <emph>Insert - Envelope - Printer</emph> tab</variable>"
-msgstr ""
+msgstr "<variable id=\"druckerbr\">Aukeratu <emph>Txertatu - Gutun-azala - Inprimagailua</emph> fitxa</variable>"
#: 00000404.xhp
msgctxt ""
@@ -1166,7 +1166,7 @@ msgctxt ""
"par_id3153129\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F12"
-msgstr ""
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">⌘</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F12"
#: 00000404.xhp
msgctxt ""
@@ -1254,7 +1254,7 @@ msgctxt ""
"par_id81526422144005\n"
"help.text"
msgid "Choose <emph>Insert - Signature Line...</emph>"
-msgstr ""
+msgstr "Aukeratu <emph>Txertatu - Sinadura-marra...</emph>"
#: 00000405.xhp
msgctxt ""
diff --git a/source/eu/helpcontent2/source/text/swriter/01.po b/source/eu/helpcontent2/source/text/swriter/01.po
index 576a61fc3dc..42fc78e1583 100644
--- a/source/eu/helpcontent2/source/text/swriter/01.po
+++ b/source/eu/helpcontent2/source/text/swriter/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: 2018-05-22 13:17+0200\n"
-"PO-Revision-Date: 2018-05-12 17:15+0000\n"
+"PO-Revision-Date: 2018-05-25 10:18+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: eu\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1526145352.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1527243508.000000\n"
#: 01120000.xhp
msgctxt ""
@@ -23590,7 +23590,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Adding Signature Line in Text Documents"
-msgstr ""
+msgstr "Sinadura-marra gehitzea testu-dokumentuei"
#: addsignatureline.xhp
msgctxt ""
@@ -23598,7 +23598,7 @@ msgctxt ""
"bm_id821526779524753\n"
"help.text"
msgid "<bookmark_value>digital signature;add signature line</bookmark_value><bookmark_value>signature line;adding</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>sinadura digitala;gehitu sinadura-marra</bookmark_value><bookmark_value>sinadura-marra;gehitzea</bookmark_value>"
#: addsignatureline.xhp
msgctxt ""
@@ -23606,7 +23606,7 @@ msgctxt ""
"hd_id501526421873817\n"
"help.text"
msgid "<variable id=\"addsignatureline01\"><link href=\"text/swriter/01/addsignatureline.xhp\" name=\"Adding Signature Line\">Adding a Signature Line in Text Documents</link></variable>"
-msgstr ""
+msgstr "<variable id=\"addsignatureline01\"><link href=\"text/swriter/01/addsignatureline.xhp\" name=\"Adding Signature Line\">Sinadura-marra gehitzea testu-dokumentuei</link></variable>"
#: addsignatureline.xhp
msgctxt ""
@@ -23614,7 +23614,7 @@ msgctxt ""
"par_id991526423190756\n"
"help.text"
msgid "%PRODUCTNAME Writer can insert a graphic box inside the document representing a signature line of the document."
-msgstr ""
+msgstr "%PRODUCTNAME Writerrek kutxa grafiko bat txerta dezake dokumentuan, dokumentuaren sinadura-marra irudikatzeko."
#: addsignatureline.xhp
msgctxt ""
@@ -23622,7 +23622,7 @@ msgctxt ""
"par_id751526436546030\n"
"help.text"
msgid "<image src=\"media/helpimg/sw_signatureline01.png\" id=\"img_id91526436546031\" width=\"311px\" height=\"179px\"> <alt id=\"alt_id351526436546031\">Signature Line Box</alt> </image>"
-msgstr ""
+msgstr "<image src=\"media/helpimg/sw_signatureline01.png\" id=\"img_id91526436546031\" width=\"311px\" height=\"179px\"> <alt id=\"alt_id351526436546031\">Sinadura-marraren kutxa</alt> </image>"
#: addsignatureline.xhp
msgctxt ""
@@ -23630,7 +23630,7 @@ msgctxt ""
"par_id651526423393786\n"
"help.text"
msgid "The signature line displays an horizontal line, a location mark, the name, title and e-mail of signer."
-msgstr ""
+msgstr "Sinadura-marrak honako elementuak bistaratzen ditu: marra horizontal bat, kokapen-marka bat, eta sinatzailearen izena, titulua eta posta elektronikoko helbidea."
#: addsignatureline.xhp
msgctxt ""
@@ -23638,7 +23638,7 @@ msgctxt ""
"hd_id631526467960460\n"
"help.text"
msgid "Name"
-msgstr ""
+msgstr "Izena"
#: addsignatureline.xhp
msgctxt ""
@@ -23646,7 +23646,7 @@ msgctxt ""
"par_id351526467968348\n"
"help.text"
msgid "Insert the name of the signer. The name is displayed in the signature line graphic box."
-msgstr ""
+msgstr "Txertatu sinatzailearen izena. Izen hori sinadura-marraren kutxa grafikoan bistaratuko da."
#: addsignatureline.xhp
msgctxt ""
@@ -23654,7 +23654,7 @@ msgctxt ""
"hd_id171526467974440\n"
"help.text"
msgid "Title"
-msgstr ""
+msgstr "Titulua"
#: addsignatureline.xhp
msgctxt ""
@@ -23662,7 +23662,7 @@ msgctxt ""
"par_id701526467979209\n"
"help.text"
msgid "Enter the title of the signer. The title is displayed in the signature line graphic box."
-msgstr ""
+msgstr "Txertatu sinatzailearen titulua. Titulu hori sinadura-marraren kutxa grafikoan bistaratuko da."
#: addsignatureline.xhp
msgctxt ""
@@ -23670,7 +23670,7 @@ msgctxt ""
"hd_id431526467986157\n"
"help.text"
msgid "Email"
-msgstr ""
+msgstr "Posta elektronikoa"
#: addsignatureline.xhp
msgctxt ""
@@ -23678,7 +23678,7 @@ msgctxt ""
"par_id111526467993387\n"
"help.text"
msgid "Enter the e-mail of the signer. The email is not displayed in the signature line graphic box, and is be used for the digital signature."
-msgstr ""
+msgstr "Txertatu sinatzailearen posta elektronikoko helbidea. Helbide hori sinadura-marraren kutxa grafikoan bistaratuko da, eta sinadura digitalean erabiliko da."
#: addsignatureline.xhp
msgctxt ""
@@ -23686,7 +23686,7 @@ msgctxt ""
"hd_id451526468019876\n"
"help.text"
msgid "Signer can add comments"
-msgstr ""
+msgstr "Sinatzaileak iruzkinak gehitu ditzake"
#: addsignatureline.xhp
msgctxt ""
@@ -23694,7 +23694,7 @@ msgctxt ""
"par_id531526562791579\n"
"help.text"
msgid "Enable signer to insert comments in the Sign Signature Line dialog at time of signature."
-msgstr ""
+msgstr "Gaitu sinatzaileak iruzkinak txertatu ahal ditzan 'Sinatu sinadura-marra' elkarrizketa-koadroan, sinatzera doanean."
#: addsignatureline.xhp
msgctxt ""
@@ -23702,7 +23702,7 @@ msgctxt ""
"hd_id31526468046686\n"
"help.text"
msgid "Show sign date in signature line"
-msgstr ""
+msgstr "Erakutsi sinatze-data sinadura-marran"
#: addsignatureline.xhp
msgctxt ""
@@ -23710,7 +23710,7 @@ msgctxt ""
"par_id11526468051934\n"
"help.text"
msgid "Mark this checkbox to display the date of the signature, at the time when the document is digitally signed."
-msgstr ""
+msgstr "Markatu kontrol-lauki hau sinaduraren data bistaratzeko. Dokumentuari sinadura digitala gehitu zaioneko data izango da."
#: addsignatureline.xhp
msgctxt ""
@@ -23718,7 +23718,7 @@ msgctxt ""
"hd_id791526468057743\n"
"help.text"
msgid "Instructions to the signer"
-msgstr ""
+msgstr "Sinatzailearentzako argibideak"
#: addsignatureline.xhp
msgctxt ""
@@ -23726,7 +23726,7 @@ msgctxt ""
"par_id131526560799876\n"
"help.text"
msgid "Insert instructions for the signer. The instructions appears in the Sign Signature Line dialog box, at the time of signature."
-msgstr ""
+msgstr "Txertatu sinatzailearentzako argibideak. Argibide horiek 'Sinatu sinadura-marra' elkarrizketa-koadroan agertuko dira, sinatzerako unean."
#: format_object.xhp
msgctxt ""
@@ -26358,7 +26358,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Signing the Signature Line"
-msgstr ""
+msgstr "Sinadura-marra sinatzea"
#: signsignatureline.xhp
msgctxt ""
@@ -26366,7 +26366,7 @@ msgctxt ""
"bm_id651526779220785\n"
"help.text"
msgid "<bookmark_value>digital signature;sign signature line</bookmark_value><bookmark_value>signature line;signing</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>sinadura digitala;sinatu sinadura-marra</bookmark_value><bookmark_value>sinadura-marra;sinatzea</bookmark_value>"
#: signsignatureline.xhp
msgctxt ""
@@ -26374,7 +26374,7 @@ msgctxt ""
"hd_id401526575112776\n"
"help.text"
msgid "<variable id=\"signsignatureline01\"><link href=\"text/swriter/01/signsignatureline.xhp\" name=\"Sign Signature Line\">Digitally Signing the Signature Line</link></variable>"
-msgstr ""
+msgstr "<variable id=\"signsignatureline01\"><link href=\"text/swriter/01/signsignatureline.xhp\" name=\"Sign Signature Line\">Sinadura-marran sinadura digitala gehitzea</link></variable>"
#: signsignatureline.xhp
msgctxt ""
@@ -26382,7 +26382,7 @@ msgctxt ""
"par_id611526575121298\n"
"help.text"
msgid "%PRODUCTNAME Writer lets you sign digitally a signature line."
-msgstr ""
+msgstr "%PRODUCTNAME Writerren sinadura-marra bat modu digitalean sina daiteke."
#: signsignatureline.xhp
msgctxt ""
@@ -26390,7 +26390,7 @@ msgctxt ""
"par_id511526575127337\n"
"help.text"
msgid "On signing a signature line, %PRODUCTNAME Writer fills the line with the name of signer, adds the digital certificate issuer information and optionally insert the date of signature."
-msgstr ""
+msgstr "Sinadura-marra sinatzean, %PRODUCTNAME Writerrek sinatzailearen izenarekin betetzen du marra, ziurtagiri digitalaren jaulkitzailearen informazioa gehitzen du eta, aukeran, sinaduraren data txertatzen du."
#: signsignatureline.xhp
msgctxt ""
@@ -26398,7 +26398,7 @@ msgctxt ""
"par_id291526564031387\n"
"help.text"
msgid "Select the signature line graphic object context menu. Choose <emph>Sign Signature Line</emph>."
-msgstr ""
+msgstr "Hautatu sinadura-marraren objektu grafikoaren laster-menua. Aukeratu <emph>Sinatu sinadura-marra</emph>."
#: signsignatureline.xhp
msgctxt ""
@@ -26406,7 +26406,7 @@ msgctxt ""
"hd_id311526563971364\n"
"help.text"
msgid "Your Name"
-msgstr ""
+msgstr "Zure izena"
#: signsignatureline.xhp
msgctxt ""
@@ -26414,7 +26414,7 @@ msgctxt ""
"par_id511526564217965\n"
"help.text"
msgid "Enter your name as signer of the document. Your name will be inserted above the signature horizontal line."
-msgstr ""
+msgstr "Sartu zure izena dokumentuaren sinatzaile gisa. Zure izena sinadura-marra horizontalaren gainean txertatuko da."
#: signsignatureline.xhp
msgctxt ""
@@ -26422,7 +26422,7 @@ msgctxt ""
"hd_id401526563978041\n"
"help.text"
msgid "Certificate"
-msgstr ""
+msgstr "Ziurtagiria"
#: signsignatureline.xhp
msgctxt ""
@@ -26430,7 +26430,7 @@ msgctxt ""
"par_id31526564223526\n"
"help.text"
msgid "Click on the Select Certificate button to open the Select Certificate dialog box, where your certificates are listed. Select the certificate suitable for signing the document."
-msgstr ""
+msgstr "Egin klik 'Hautatu ziurtagiria' botoian izen bereko elkarrizketa-koadroa irekitzeko. Bertan, zure ziurtagirien zerrenda ikusiko duzu. Hautatu dokumentua sinatzeko egokia den ziurtagiria."
#: signsignatureline.xhp
msgctxt ""
@@ -26438,7 +26438,7 @@ msgctxt ""
"par_id251526576138883\n"
"help.text"
msgid "The information of the certificate issuer is inserted in the bottom of the Signature Line object."
-msgstr ""
+msgstr "Ziurtagiri-jaulkitzailearen informazioa sinadura-marraren objektuaren behealdean txertatuko da."
#: signsignatureline.xhp
msgctxt ""
@@ -26446,7 +26446,7 @@ msgctxt ""
"hd_id301526563985718\n"
"help.text"
msgid "Instructions from the document creator"
-msgstr ""
+msgstr "Dokumentuaren egilearentzako argibideak"
#: signsignatureline.xhp
msgctxt ""
@@ -26454,7 +26454,7 @@ msgctxt ""
"par_id271526564228571\n"
"help.text"
msgid "This area displays the instructions entered by the document creator when <link href=\"text/swriter/01/addsignatureline.xhp\" name=\"Adding the Signature Line\">adding the signature line</link>."
-msgstr ""
+msgstr "Area honek dokumentuaren sortzaileak <link href=\"text/swriter/01/addsignatureline.xhp\" name=\"Adding the Signature Line\">sinadura-marra gehitu zuenean</link> sartu zituen argibideak bistaratzen ditu."
#: signsignatureline.xhp
msgctxt ""
@@ -26462,7 +26462,7 @@ msgctxt ""
"hd_id161526563992082\n"
"help.text"
msgid "Add comments"
-msgstr ""
+msgstr "Gehitu iruzkinak"
#: signsignatureline.xhp
msgctxt ""
@@ -26470,7 +26470,7 @@ msgctxt ""
"par_id21526564234712\n"
"help.text"
msgid "Enter comments about the signature. The comments are displayed in the <emph>Description</emph> field of the certificate."
-msgstr ""
+msgstr "Sartu sinadurari buruzko iruzkinak. Iruzkinak ziurtagiriaren <emph>Deskribapena</emph> eremuan bistaratuko dira."
#: signsignatureline.xhp
msgctxt ""
@@ -26478,7 +26478,7 @@ msgctxt ""
"par_id621526576147414\n"
"help.text"
msgid "If enabled when the signature line was created, the date of signature is inserted on the top right of the signature line object."
-msgstr ""
+msgstr "Sinadura-fitxategia sortu zenean gaituta bazegoen, sinadura-marraren objektuaren goiko eskuineko aldean sinaduraren data txertatuko da."
#: signsignatureline.xhp
msgctxt ""
@@ -26486,7 +26486,7 @@ msgctxt ""
"par_id21526579319036\n"
"help.text"
msgid "<image src=\"media/helpimg/sw_signatureline02.png\" id=\"img_id551526579319036\" width=\"280px\" height=\"173px\"><alt id=\"alt_id641526579319036\">Signed Signature Line</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/helpimg/sw_signatureline02.png\" id=\"img_id551526579319036\" width=\"280px\" height=\"173px\"><alt id=\"alt_id641526579319036\">Sinatutako sinadura-marra</alt></image>"
#: title_page.xhp
msgctxt ""
diff --git a/source/eu/officecfg/registry/data/org/openoffice.po b/source/eu/officecfg/registry/data/org/openoffice.po
index 73c0a5c4165..c959ba747f1 100644
--- a/source/eu/officecfg/registry/data/org/openoffice.po
+++ b/source/eu/officecfg/registry/data/org/openoffice.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: 2018-02-27 13:56+0100\n"
-"PO-Revision-Date: 2018-03-06 16:34+0000\n"
+"PO-Revision-Date: 2018-06-04 05:58+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: eu\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1520354068.000000\n"
+"X-POOTLE-MTIME: 1528091889.000000\n"
#: Setup.xcu
msgctxt ""
@@ -23,7 +23,7 @@ msgctxt ""
"ooSetupFactoryUIName\n"
"value.text"
msgid "Base: Database Form"
-msgstr "Base: datu-base formularioa"
+msgstr "Base: datu-baseen inprimakia"
#: Setup.xcu
msgctxt ""
diff --git a/source/eu/officecfg/registry/data/org/openoffice/Office/UI.po b/source/eu/officecfg/registry/data/org/openoffice/Office/UI.po
index 7feae26a832..7a3d9867699 100644
--- a/source/eu/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/eu/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-22 13:17+0200\n"
-"PO-Revision-Date: 2018-05-17 08:07+0000\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
+"PO-Revision-Date: 2018-06-05 05:50+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: Librezale <librezale@librezale.org>\n"
"Language: eu\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1526544440.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1528177841.000000\n"
#: BaseWindowState.xcu
msgctxt ""
@@ -104,7 +104,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Form Option Button"
-msgstr "Aukera-botoiaren formularioa"
+msgstr "Inprimakiaren aukera-botoia"
#: BasicIDECommands.xcu
msgctxt ""
@@ -113,7 +113,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Form Check Box"
-msgstr "Kontrol-laukiaren formularioa"
+msgstr "Inprimakiaren kontrol-laukia"
#: BasicIDECommands.xcu
msgctxt ""
@@ -122,7 +122,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Form List Box"
-msgstr "Zerrenda-koadroaren formularioa"
+msgstr "Inprimakiaren zerrenda-koadroa"
#: BasicIDECommands.xcu
msgctxt ""
@@ -131,7 +131,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Form Combo Box"
-msgstr "Konbinazio-koadroaren formularioa"
+msgstr "Inprimakiaren konbinazio-koadroa"
#: BasicIDECommands.xcu
msgctxt ""
@@ -149,7 +149,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Form Horizontal Scroll Bar"
-msgstr ""
+msgstr "Inprimakiaren korritze-barra horizontala"
#: BasicIDECommands.xcu
msgctxt ""
@@ -158,7 +158,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Form Spin Button"
-msgstr "Biratze-botoiaren formularioa"
+msgstr "Inprimakiaren biratze-botoia"
#: BasicIDECommands.xcu
msgctxt ""
@@ -22129,7 +22129,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Sign Existing PDF..."
-msgstr "Sinatu lehendik dagoen PDF bat..."
+msgstr "Sinatu lehendik dagoen PDFa..."
#: GenericCommands.xcu
msgctxt ""
@@ -23056,7 +23056,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Edit Signature ~Line..."
-msgstr "Editatu sinadura-~lerroa..."
+msgstr "Editatu sinadura-~marra..."
#: GenericCommands.xcu
msgctxt ""
@@ -23065,7 +23065,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Sign Signature Line..."
-msgstr "~Sinatu sinadura-lerroa..."
+msgstr "~Sinatu sinadura-marra..."
#: ImpressWindowState.xcu
msgctxt ""
@@ -25342,7 +25342,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Tabbed"
-msgstr ""
+msgstr "Fitxak"
#: ToolbarMode.xcu
msgctxt ""
@@ -25351,7 +25351,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Groupedbar Compact"
-msgstr ""
+msgstr "Multzo-barra konpaktua"
#: ToolbarMode.xcu
msgctxt ""
@@ -25360,7 +25360,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Groupedbar"
-msgstr ""
+msgstr "Multzo-barra"
#: ToolbarMode.xcu
msgctxt ""
@@ -26520,8 +26520,8 @@ msgctxt ""
"..WriterCommands.UserInterface.Commands..uno:TextAttributes\n"
"Label\n"
"value.text"
-msgid "Text Attributes"
-msgstr "Testu-atributuak"
+msgid "Text Attributes..."
+msgstr "Testu-atributuak..."
#: WriterCommands.xcu
msgctxt ""
diff --git a/source/eu/readlicense_oo/docs.po b/source/eu/readlicense_oo/docs.po
index 144f8d9ef17..6033d4b4ce0 100644
--- a/source/eu/readlicense_oo/docs.po
+++ b/source/eu/readlicense_oo/docs.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: 2018-04-17 15:54+0200\n"
-"PO-Revision-Date: 2018-04-24 06:46+0000\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
+"PO-Revision-Date: 2018-06-05 05:50+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: Librezale <librezale@librezale.org>\n"
"Language: eu\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1524552396.000000\n"
+"X-POOTLE-MTIME: 1528177852.000000\n"
#: readme.xrm
msgctxt ""
@@ -117,8 +117,8 @@ msgctxt ""
"readme.xrm\n"
"macxiOSX\n"
"readmeitem.text"
-msgid "MacOSX 10.8 (Mountain Lion) or higher"
-msgstr "MacOSX 10.8 (Mountain Lion) edo berriagoa"
+msgid "MacOSX 10.9 (Mavericks) or higher"
+msgstr "MacOSX 10.9 (Mavericks) edo berriagoa"
#: readme.xrm
msgctxt ""
diff --git a/source/eu/sc/messages.po b/source/eu/sc/messages.po
index 3d9da5b8354..87bd326d446 100644
--- a/source/eu/sc/messages.po
+++ b/source/eu/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: 2018-05-22 13:16+0200\n"
-"PO-Revision-Date: 2018-05-17 07:23+0000\n"
+"POT-Creation-Date: 2018-06-12 14:40+0200\n"
+"PO-Revision-Date: 2018-06-12 16:47+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: eu\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1526541806.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1528822051.000000\n"
#: sc/inc/compiler.hrc:27
msgctxt "RID_FUNCTION_CATEGORIES"
@@ -1870,16 +1870,21 @@ msgid "Nested arrays are not supported."
msgstr "Habiaratutako matrizeak ez daude onartuta."
#: sc/inc/globstr.hrc:390
+msgctxt "STR_ERR_LONG_BAD_ARRAY_CONTENT"
+msgid "Unsupported inline array content."
+msgstr "Onartzen ez den lerroko matrize-edukia."
+
+#: sc/inc/globstr.hrc:391
msgctxt "STR_UNDO_TEXTTOCOLUMNS"
msgid "Text to Columns"
msgstr "Testua zutabeetara"
-#: sc/inc/globstr.hrc:391
+#: sc/inc/globstr.hrc:392
msgctxt "STR_DOC_UPDATED"
msgid "Your spreadsheet has been updated with changes saved by other users."
msgstr "Kalkulu-orria beste erabiltzaileen gordetako aldaketekin eguneratu da."
-#: sc/inc/globstr.hrc:392
+#: sc/inc/globstr.hrc:393
msgctxt "STR_DOC_WILLBESAVED"
msgid ""
"The spreadsheet must be saved now to activate sharing mode.\n"
@@ -1890,7 +1895,7 @@ msgstr ""
"\n"
"Jarraitu nahi duzu?"
-#: sc/inc/globstr.hrc:393
+#: sc/inc/globstr.hrc:394
msgctxt "STR_DOC_WILLNOTBESAVED"
msgid ""
"Already resolved merge conflicts will be lost and your changes to the shared spreadsheet will not be saved.\n"
@@ -1901,7 +1906,7 @@ msgstr ""
"\n"
"Jarraitu nahi duzu?"
-#: sc/inc/globstr.hrc:394
+#: sc/inc/globstr.hrc:395
msgctxt "STR_DOC_DISABLESHARED"
msgid ""
"Disabling shared mode of a spreadsheet hinders all other users of the shared spreadsheet to merge back their work.\n"
@@ -1912,7 +1917,7 @@ msgstr ""
"\n"
"Jarraitu nahi duzu?"
-#: sc/inc/globstr.hrc:395
+#: sc/inc/globstr.hrc:396
msgctxt "STR_DOC_NOLONGERSHARED"
msgid ""
"This spreadsheet is no longer in shared mode.\n"
@@ -1923,7 +1928,7 @@ msgstr ""
"\n"
"Gorde zure kalkulu-orria beste fitxategi batean eta partekatutako kalkulu-orriari egin dizkiozun aldaketak eskuz batu."
-#: sc/inc/globstr.hrc:396
+#: sc/inc/globstr.hrc:397
msgctxt "STR_FILE_LOCKED_TRY_LATER"
msgid ""
"The shared spreadsheet file is locked due to a merge in progress by user: '%1'\n"
@@ -1934,7 +1939,7 @@ msgstr ""
"\n"
"Blokeatutako fitxategi baten partekatze-modua ezin da desgaitu. Saiatu berriro geroago."
-#: sc/inc/globstr.hrc:397
+#: sc/inc/globstr.hrc:398
msgctxt "STR_FILE_LOCKED_SAVE_LATER"
msgid ""
"The shared spreadsheet file is locked due to a merge in progress by user: '%1'\n"
@@ -1945,147 +1950,147 @@ msgstr ""
"\n"
"Saiatu beranduago zure aldaketak gordetzeko."
-#: sc/inc/globstr.hrc:398
+#: sc/inc/globstr.hrc:399
msgctxt "STR_UNKNOWN_USER"
msgid "Unknown User"
msgstr "Erabiltzaile ezezaguna"
-#: sc/inc/globstr.hrc:399
+#: sc/inc/globstr.hrc:400
msgctxt "STR_SHAPE_AUTOSHAPE"
msgid "AutoShape"
msgstr "Autoformak"
-#: sc/inc/globstr.hrc:400
+#: sc/inc/globstr.hrc:401
msgctxt "STR_SHAPE_RECTANGLE"
msgid "Rectangle"
msgstr "Laukizuzena"
-#: sc/inc/globstr.hrc:401
+#: sc/inc/globstr.hrc:402
msgctxt "STR_SHAPE_LINE"
msgid "Line"
msgstr "Marra"
-#: sc/inc/globstr.hrc:402
+#: sc/inc/globstr.hrc:403
msgctxt "STR_SHAPE_OVAL"
msgid "Oval"
msgstr "Obalatua"
-#: sc/inc/globstr.hrc:403
+#: sc/inc/globstr.hrc:404
msgctxt "STR_FORM_BUTTON"
msgid "Button"
msgstr "Botoia"
-#: sc/inc/globstr.hrc:404
+#: sc/inc/globstr.hrc:405
msgctxt "STR_FORM_CHECKBOX"
msgid "Check Box"
msgstr "Kontrol-laukia"
-#: sc/inc/globstr.hrc:405
+#: sc/inc/globstr.hrc:406
msgctxt "STR_FORM_OPTIONBUTTON"
msgid "Option Button"
msgstr "Aukera-botoia"
-#: sc/inc/globstr.hrc:406
+#: sc/inc/globstr.hrc:407
msgctxt "STR_FORM_LABEL"
msgid "Label"
msgstr "Etiketa"
-#: sc/inc/globstr.hrc:407
+#: sc/inc/globstr.hrc:408
msgctxt "STR_FORM_LISTBOX"
msgid "List Box"
msgstr "Zerrenda-koadroa"
-#: sc/inc/globstr.hrc:408
+#: sc/inc/globstr.hrc:409
msgctxt "STR_FORM_GROUPBOX"
msgid "Group Box"
msgstr "Talde-markoa"
-#: sc/inc/globstr.hrc:409
+#: sc/inc/globstr.hrc:410
msgctxt "STR_FORM_DROPDOWN"
msgid "Drop Down"
msgstr "Goitibeherako koadroa"
-#: sc/inc/globstr.hrc:410
+#: sc/inc/globstr.hrc:411
msgctxt "STR_FORM_SPINNER"
msgid "Spinner"
msgstr "Birakaria"
-#: sc/inc/globstr.hrc:411
+#: sc/inc/globstr.hrc:412
msgctxt "STR_FORM_SCROLLBAR"
msgid "Scroll Bar"
msgstr "Korritze-barra"
-#: sc/inc/globstr.hrc:412
+#: sc/inc/globstr.hrc:413
msgctxt "STR_STYLE_FAMILY_CELL"
msgid "Cell Styles"
msgstr "Gelaxka-estiloak"
-#: sc/inc/globstr.hrc:413
+#: sc/inc/globstr.hrc:414
msgctxt "STR_STYLE_FAMILY_PAGE"
msgid "Page Styles"
msgstr "Orrialde-estiloak"
-#: sc/inc/globstr.hrc:414
+#: sc/inc/globstr.hrc:415
msgctxt "STR_ERR_DATAPILOTSOURCE"
msgid "Pivot table source data is invalid."
msgstr "Taula dinamikoaren iturburuko datuak baliogabeak dira."
-#: sc/inc/globstr.hrc:415
+#: sc/inc/globstr.hrc:416
msgctxt "STR_OPTIONS_WARN_SEPARATORS"
msgid "Because the current formula separator settings conflict with the locale, the formula separators have been reset to their default values."
msgstr "Formulen bereizlearen uneko ezarpenak lokalarekin gatazkan daudenez, formulen bereizleak haien balio lehenetsietara berrezarri dira."
-#: sc/inc/globstr.hrc:416
+#: sc/inc/globstr.hrc:417
msgctxt "STR_UNDO_INSERT_CURRENT_DATE"
msgid "Insert Current Date"
msgstr "Txertatu uneko data"
-#: sc/inc/globstr.hrc:417
+#: sc/inc/globstr.hrc:418
msgctxt "STR_UNDO_INSERT_CURRENT_TIME"
msgid "Insert Current Time"
msgstr "Txertatu uneko ordua"
-#: sc/inc/globstr.hrc:418
+#: sc/inc/globstr.hrc:419
msgctxt "STR_MANAGE_NAMES"
msgid "Manage Names..."
msgstr "Kudeatu izenak..."
-#: sc/inc/globstr.hrc:419
+#: sc/inc/globstr.hrc:420
msgctxt "STR_HEADER_NAME"
msgid "Name"
msgstr "Izena"
-#: sc/inc/globstr.hrc:420
+#: sc/inc/globstr.hrc:421
msgctxt "STR_HEADER_RANGE_OR_EXPR"
msgid "Range or formula expression"
msgstr "Barruti- edo formula-adierazpena"
-#: sc/inc/globstr.hrc:421
+#: sc/inc/globstr.hrc:422
msgctxt "STR_HEADER_SCOPE"
msgid "Scope"
msgstr "Esparrua"
-#: sc/inc/globstr.hrc:422
+#: sc/inc/globstr.hrc:423
msgctxt "STR_MULTI_SELECT"
msgid "(multiple)"
msgstr "(anitza)"
-#: sc/inc/globstr.hrc:423
+#: sc/inc/globstr.hrc:424
msgctxt "STR_GLOBAL_SCOPE"
msgid "Document (Global)"
msgstr "Dokumentua (globala)"
-#: sc/inc/globstr.hrc:424
+#: sc/inc/globstr.hrc:425
msgctxt "STR_ERR_NAME_EXISTS"
msgid "Invalid name. Already in use for the selected scope."
msgstr "Baliogabeko izena. Jadanik erabilia hautatutako esparrurako."
-#: sc/inc/globstr.hrc:425
+#: sc/inc/globstr.hrc:426
msgctxt "STR_ERR_NAME_INVALID"
msgid "Invalid name. Only use letters, numbers and underscore."
msgstr "Baliogabeko izena. Erabili letrak, zenbakiak eta azpimarra soilik."
-#: sc/inc/globstr.hrc:426
+#: sc/inc/globstr.hrc:427
msgctxt "STR_UNSAVED_EXT_REF"
msgid ""
"This Document contains external references to unsaved documents.\n"
@@ -2096,217 +2101,217 @@ msgstr ""
"\n"
"Jarraitu nahi duzu?"
-#: sc/inc/globstr.hrc:427
+#: sc/inc/globstr.hrc:428
msgctxt "STR_CLOSE_WITH_UNSAVED_REFS"
msgid "This Document is referenced by another document and not yet saved. Closing it without saving will result in data loss."
msgstr "Beste dokumentu batek dokumentu hau du erreferentzia modura eta oraindik ez da gorde. Gorde gabe ixten bada datuak gal daitezke."
-#: sc/inc/globstr.hrc:428
+#: sc/inc/globstr.hrc:429
msgctxt "STR_HEADER_RANGE"
msgid "Range"
msgstr "Barrutia"
-#: sc/inc/globstr.hrc:429
+#: sc/inc/globstr.hrc:430
msgctxt "STR_HEADER_COND"
msgid "First Condition"
msgstr "Lehen baldintza"
-#: sc/inc/globstr.hrc:430
+#: sc/inc/globstr.hrc:431
msgctxt "STR_COND_CONDITION"
msgid "Cell value is"
msgstr "Gelaxkaren balioa"
-#: sc/inc/globstr.hrc:431
+#: sc/inc/globstr.hrc:432
msgctxt "STR_COND_COLORSCALE"
msgid "ColorScale"
msgstr "KoloreEskala"
-#: sc/inc/globstr.hrc:432
+#: sc/inc/globstr.hrc:433
msgctxt "STR_COND_DATABAR"
msgid "DataBar"
msgstr "Datu-barra"
-#: sc/inc/globstr.hrc:433
+#: sc/inc/globstr.hrc:434
msgctxt "STR_COND_ICONSET"
msgid "IconSet"
msgstr "IkonoMultzoa"
-#: sc/inc/globstr.hrc:434
+#: sc/inc/globstr.hrc:435
msgctxt "STR_COND_BETWEEN"
msgid "between"
msgstr "bitarte honetan"
-#: sc/inc/globstr.hrc:435
+#: sc/inc/globstr.hrc:436
msgctxt "STR_COND_NOTBETWEEN"
msgid "not between"
msgstr "ez dago bitarte honetan"
-#: sc/inc/globstr.hrc:436
+#: sc/inc/globstr.hrc:437
msgctxt "STR_COND_UNIQUE"
msgid "unique"
msgstr "bakarra"
-#: sc/inc/globstr.hrc:437
+#: sc/inc/globstr.hrc:438
msgctxt "STR_COND_DUPLICATE"
msgid "duplicate"
msgstr "bikoiztu"
-#: sc/inc/globstr.hrc:438
+#: sc/inc/globstr.hrc:439
msgctxt "STR_COND_FORMULA"
msgid "Formula is"
msgstr "Formula da:"
-#: sc/inc/globstr.hrc:439
+#: sc/inc/globstr.hrc:440
msgctxt "STR_COND_TOP10"
msgid "Top Elements"
msgstr "Goiko elementuak"
-#: sc/inc/globstr.hrc:440
+#: sc/inc/globstr.hrc:441
msgctxt "STR_COND_BOTTOM10"
msgid "Bottom Elements"
msgstr "Beheko elementuak"
-#: sc/inc/globstr.hrc:441
+#: sc/inc/globstr.hrc:442
msgctxt "STR_COND_TOP_PERCENT"
msgid "Top Percent"
msgstr "Goiko ehunekoa"
-#: sc/inc/globstr.hrc:442
+#: sc/inc/globstr.hrc:443
msgctxt "STR_COND_DATE"
msgid "Date is"
msgstr "Data da:"
-#: sc/inc/globstr.hrc:443
+#: sc/inc/globstr.hrc:444
msgctxt "STR_COND_BOTTOM_PERCENT"
msgid "Bottom Percent"
msgstr "Beheko ehunekoa"
-#: sc/inc/globstr.hrc:444
+#: sc/inc/globstr.hrc:445
msgctxt "STR_COND_ABOVE_AVERAGE"
msgid "Above Average"
msgstr "Batez bestekoa baino gehiago"
-#: sc/inc/globstr.hrc:445
+#: sc/inc/globstr.hrc:446
msgctxt "STR_COND_BELOW_AVERAGE"
msgid "Below Average"
msgstr "Batez bestekoa baino gutxiago"
-#: sc/inc/globstr.hrc:446
+#: sc/inc/globstr.hrc:447
msgctxt "STR_COND_ABOVE_EQUAL_AVERAGE"
msgid "Above or equal Average"
msgstr "Batez bestea baino gehiago edo berdina"
-#: sc/inc/globstr.hrc:447
+#: sc/inc/globstr.hrc:448
msgctxt "STR_COND_BELOW_EQUAL_AVERAGE"
msgid "Below or equal Average"
msgstr "Batez bestekoa baino gutxiago edo berdina"
-#: sc/inc/globstr.hrc:448
+#: sc/inc/globstr.hrc:449
msgctxt "STR_COND_ERROR"
msgid "an Error code"
msgstr "Errore-kodea"
-#: sc/inc/globstr.hrc:449
+#: sc/inc/globstr.hrc:450
msgctxt "STR_COND_NOERROR"
msgid "not an Error code"
msgstr "Errore-kodea"
-#: sc/inc/globstr.hrc:450
+#: sc/inc/globstr.hrc:451
msgctxt "STR_COND_BEGINS_WITH"
msgid "Begins with"
msgstr "Honela hasten da"
-#: sc/inc/globstr.hrc:451
+#: sc/inc/globstr.hrc:452
msgctxt "STR_COND_ENDS_WITH"
msgid "Ends with"
msgstr "Honela amaitzen da"
-#: sc/inc/globstr.hrc:452
+#: sc/inc/globstr.hrc:453
msgctxt "STR_COND_CONTAINS"
msgid "Contains"
msgstr "Dauka"
-#: sc/inc/globstr.hrc:453
+#: sc/inc/globstr.hrc:454
msgctxt "STR_COND_NOT_CONTAINS"
msgid "Not Contains"
msgstr "Ez dauka"
-#: sc/inc/globstr.hrc:454
+#: sc/inc/globstr.hrc:455
msgctxt "STR_COND_TODAY"
msgid "today"
msgstr "gaur"
-#: sc/inc/globstr.hrc:455
+#: sc/inc/globstr.hrc:456
msgctxt "STR_COND_YESTERDAY"
msgid "yesterday"
msgstr "atzo"
-#: sc/inc/globstr.hrc:456
+#: sc/inc/globstr.hrc:457
msgctxt "STR_COND_TOMORROW"
msgid "tomorrow"
msgstr "bihar"
-#: sc/inc/globstr.hrc:457
+#: sc/inc/globstr.hrc:458
msgctxt "STR_COND_LAST7DAYS"
msgid "in the last 7 days"
msgstr "azken 7 egunetan"
-#: sc/inc/globstr.hrc:458
+#: sc/inc/globstr.hrc:459
msgctxt "STR_COND_THISWEEK"
msgid "this week"
msgstr "aste honetan"
-#: sc/inc/globstr.hrc:459
+#: sc/inc/globstr.hrc:460
msgctxt "STR_COND_LASTWEEK"
msgid "last week"
msgstr "aurreko astean"
-#: sc/inc/globstr.hrc:460
+#: sc/inc/globstr.hrc:461
msgctxt "STR_COND_NEXTWEEK"
msgid "next week"
msgstr "hurrengo astean"
-#: sc/inc/globstr.hrc:461
+#: sc/inc/globstr.hrc:462
msgctxt "STR_COND_THISMONTH"
msgid "this month"
msgstr "hilabete honetan"
-#: sc/inc/globstr.hrc:462
+#: sc/inc/globstr.hrc:463
msgctxt "STR_COND_LASTMONTH"
msgid "last month"
msgstr "aurreko hilabetean"
-#: sc/inc/globstr.hrc:463
+#: sc/inc/globstr.hrc:464
msgctxt "STR_COND_NEXTMONTH"
msgid "next month"
msgstr "hurrengo hilabetean"
-#: sc/inc/globstr.hrc:464
+#: sc/inc/globstr.hrc:465
msgctxt "STR_COND_THISYEAR"
msgid "this year"
msgstr "aurten"
-#: sc/inc/globstr.hrc:465
+#: sc/inc/globstr.hrc:466
msgctxt "STR_COND_LASTYEAR"
msgid "last year"
msgstr "aurreko urtean"
-#: sc/inc/globstr.hrc:466
+#: sc/inc/globstr.hrc:467
msgctxt "STR_COND_NEXTYEAR"
msgid "next year"
msgstr "hurrengo urtean"
-#: sc/inc/globstr.hrc:467
+#: sc/inc/globstr.hrc:468
msgctxt "STR_COND_AND"
msgid "and"
msgstr "eta"
-#: sc/inc/globstr.hrc:468
+#: sc/inc/globstr.hrc:469
msgctxt "STR_ERR_CONDFORMAT_PROTECTED"
msgid "Conditional Formats can not be created, deleted or changed in protected sheets."
msgstr "Baldintzapeko formatuak ezin dira sortu, ezabatu edo aldatu babestutako orrietan."
-#: sc/inc/globstr.hrc:469
+#: sc/inc/globstr.hrc:470
msgctxt "STR_EDIT_EXISTING_COND_FORMATS"
msgid ""
"The selected cell already contains conditional formatting. You can either edit the existing conditional format or you define a new overlapping conditional format.\n"
@@ -2317,7 +2322,7 @@ msgstr ""
"\n"
" Lehendik dagoen baldintzapeko formatua editatu nahi duzu?"
-#: sc/inc/globstr.hrc:470
+#: sc/inc/globstr.hrc:471
msgctxt "STR_QUERY_FORMULA_RECALC_ONLOAD_ODS"
msgid ""
"This document was last saved by an application other than %PRODUCTNAME. Some formula cells may produce different results when recalculated.\n"
@@ -2328,7 +2333,7 @@ msgstr ""
"\n"
"Dokumentu honetako formula-gelaxka guztiak birkalkulatu nahi dituzu?"
-#: sc/inc/globstr.hrc:471
+#: sc/inc/globstr.hrc:472
msgctxt "STR_QUERY_FORMULA_RECALC_ONLOAD_XLS"
msgid ""
"This document was last saved by Excel. Some formula cells may produce different results when recalculated.\n"
@@ -2339,77 +2344,77 @@ msgstr ""
"\n"
"Formula-gelaxka guztiak birkalkulatu nahi dituzu?"
-#: sc/inc/globstr.hrc:472
+#: sc/inc/globstr.hrc:473
msgctxt "STR_NO_INSERT_DELETE_OVER_PIVOT_TABLE"
msgid "You cannot insert or delete cells when the affected range intersects with pivot table."
msgstr "Ezin dira gelaxkak txertatu edo ezabatu aldatu nahi den barrutia taula dinamiko batekin bat datorrenean."
-#: sc/inc/globstr.hrc:473
+#: sc/inc/globstr.hrc:474
msgctxt "STR_DPFIELD_GROUP_BY_SECONDS"
msgid "Seconds"
msgstr "Segundoak"
-#: sc/inc/globstr.hrc:474
+#: sc/inc/globstr.hrc:475
msgctxt "STR_DPFIELD_GROUP_BY_MINUTES"
msgid "Minutes"
msgstr "Minutuak"
-#: sc/inc/globstr.hrc:475
+#: sc/inc/globstr.hrc:476
msgctxt "STR_DPFIELD_GROUP_BY_HOURS"
msgid "Hours"
msgstr "Orduak"
-#: sc/inc/globstr.hrc:476
+#: sc/inc/globstr.hrc:477
msgctxt "STR_DPFIELD_GROUP_BY_DAYS"
msgid "Days"
msgstr "Egunak"
-#: sc/inc/globstr.hrc:477
+#: sc/inc/globstr.hrc:478
msgctxt "STR_DPFIELD_GROUP_BY_MONTHS"
msgid "Months"
msgstr "Hilabeteak"
-#: sc/inc/globstr.hrc:478
+#: sc/inc/globstr.hrc:479
msgctxt "STR_DPFIELD_GROUP_BY_QUARTERS"
msgid "Quarters"
msgstr "Hiruhilekoak"
-#: sc/inc/globstr.hrc:479
+#: sc/inc/globstr.hrc:480
msgctxt "STR_DPFIELD_GROUP_BY_YEARS"
msgid "Years"
msgstr "Urteak"
-#: sc/inc/globstr.hrc:480
+#: sc/inc/globstr.hrc:481
msgctxt "STR_INVALIDVAL"
msgid "Invalid target value."
msgstr "Xede-balioa ez da baliozkoa."
-#: sc/inc/globstr.hrc:481
+#: sc/inc/globstr.hrc:482
msgctxt "STR_INVALIDVAR"
msgid "Undefined name for variable cell."
msgstr "Aldagai-gelaxkaren izena definitu gabe."
-#: sc/inc/globstr.hrc:482
+#: sc/inc/globstr.hrc:483
msgctxt "STR_INVALIDFORM"
msgid "Undefined name as formula cell."
msgstr "Formula-gelaxkaren izena definitu gabe."
-#: sc/inc/globstr.hrc:483
+#: sc/inc/globstr.hrc:484
msgctxt "STR_NOFORMULA"
msgid "Formula cell must contain a formula."
msgstr "Formula-gelaxkak formula bat eduki behar du."
-#: sc/inc/globstr.hrc:484
+#: sc/inc/globstr.hrc:485
msgctxt "STR_INVALIDINPUT"
msgid "Invalid input."
msgstr "Sarrera baliogabea."
-#: sc/inc/globstr.hrc:485
+#: sc/inc/globstr.hrc:486
msgctxt "STR_INVALIDCONDITION"
msgid "Invalid condition."
msgstr "Baldintza baliogabea."
-#: sc/inc/globstr.hrc:486
+#: sc/inc/globstr.hrc:487
msgctxt "STR_QUERYREMOVE"
msgid ""
"Should the entry\n"
@@ -2420,133 +2425,133 @@ msgstr ""
"#\n"
"sarrera?"
-#: sc/inc/globstr.hrc:487
+#: sc/inc/globstr.hrc:488
msgctxt "STR_COPYLIST"
msgid "Copy List"
msgstr "Kopiatu zerrenda"
-#: sc/inc/globstr.hrc:488
+#: sc/inc/globstr.hrc:489
msgctxt "STR_COPYFROM"
msgid "List from"
msgstr "Kopiatu hemendik:"
-#: sc/inc/globstr.hrc:489
+#: sc/inc/globstr.hrc:490
msgctxt "STR_COPYERR"
msgid "Cells without text have been ignored."
msgstr "Testurik gabeko gelaxkak ez dira kontuan hartu."
-#: sc/inc/globstr.hrc:490
+#: sc/inc/globstr.hrc:491
#, c-format
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%s-click to follow hyperlink:"
msgstr "%s klik esteka jarraitzeko:"
-#: sc/inc/globstr.hrc:491
+#: sc/inc/globstr.hrc:492
msgctxt "STR_CLICKHYPERLINK"
msgid "click to open hyperlink:"
msgstr "klik hiperesteka irekitzeko:"
-#: sc/inc/globstr.hrc:492
+#: sc/inc/globstr.hrc:493
msgctxt "STR_PRINT_PREVIEW_NODATA"
msgid "No Data"
msgstr "Daturik ez"
-#: sc/inc/globstr.hrc:493
+#: sc/inc/globstr.hrc:494
msgctxt "STR_PRINT_PREVIEW_EMPTY_RANGE"
msgid "Print Range Empty"
msgstr "Inprimatze-area hutsik"
-#: sc/inc/globstr.hrc:494
+#: sc/inc/globstr.hrc:495
msgctxt "STR_UNDO_CONDFORMAT"
msgid "Conditional Format"
msgstr "Baldintzapeko formatua"
-#: sc/inc/globstr.hrc:495
+#: sc/inc/globstr.hrc:496
msgctxt "STR_UNDO_CONDFORMAT_LIST"
msgid "Conditional Formats"
msgstr "Baldintzapeko formatuak"
-#: sc/inc/globstr.hrc:496
+#: sc/inc/globstr.hrc:497
msgctxt "STR_UNDO_FORMULA_TO_VALUE"
msgid "Convert Formula To Value"
msgstr "Bihurtu formula balio"
-#: sc/inc/globstr.hrc:497
+#: sc/inc/globstr.hrc:498
msgctxt "STR_UNQUOTED_STRING"
msgid "Strings without quotes are interpreted as column/row labels."
msgstr "Komatxorik gabeko kateak zutabe/errenkadaren etiketatzat hartuko dira."
-#: sc/inc/globstr.hrc:498
+#: sc/inc/globstr.hrc:499
msgctxt "STR_ENTER_VALUE"
msgid "Enter a value!"
msgstr "Sartu balio bat!"
-#: sc/inc/globstr.hrc:499
+#: sc/inc/globstr.hrc:500
msgctxt "STR_TABLE_COUNT"
msgid "Sheet %1 of %2"
msgstr "%1 / %2 orria"
-#: sc/inc/globstr.hrc:500
+#: sc/inc/globstr.hrc:501
msgctxt "STR_FUNCTIONS_FOUND"
msgid "%1 and %2 more"
msgstr "%1 eta %2 gehiago"
-#: sc/inc/globstr.hrc:501
+#: sc/inc/globstr.hrc:502
msgctxt "STR_GENERAL"
msgid "General"
msgstr "Orokorra"
-#: sc/inc/globstr.hrc:502
+#: sc/inc/globstr.hrc:503
msgctxt "STR_NUMBER"
msgid "Number"
msgstr "Zenbakia"
-#: sc/inc/globstr.hrc:503
+#: sc/inc/globstr.hrc:504
msgctxt "STR_PERCENT"
msgid "Percent"
msgstr "Ehunekoa"
-#: sc/inc/globstr.hrc:504
+#: sc/inc/globstr.hrc:505
msgctxt "STR_CURRENCY"
msgid "Currency"
msgstr "Moneta"
-#: sc/inc/globstr.hrc:505
+#: sc/inc/globstr.hrc:506
msgctxt "STR_DATE"
msgid "Date"
msgstr "Data"
-#: sc/inc/globstr.hrc:506
+#: sc/inc/globstr.hrc:507
msgctxt "STR_TIME"
msgid "Time"
msgstr "Ordua"
-#: sc/inc/globstr.hrc:507
+#: sc/inc/globstr.hrc:508
msgctxt "STR_SCIENTIFIC"
msgid "Scientific"
msgstr "Zientifikoa"
-#: sc/inc/globstr.hrc:508
+#: sc/inc/globstr.hrc:509
msgctxt "STR_FRACTION"
msgid "Fraction"
msgstr "Frakzioa"
-#: sc/inc/globstr.hrc:509
+#: sc/inc/globstr.hrc:510
msgctxt "STR_BOOLEAN_VALUE"
msgid "Boolean Value"
msgstr "Balio boolearra"
-#: sc/inc/globstr.hrc:510
+#: sc/inc/globstr.hrc:511
msgctxt "STR_TEXT"
msgid "Text"
msgstr "Testua"
-#: sc/inc/globstr.hrc:511
+#: sc/inc/globstr.hrc:512
msgctxt "STR_QUERY_PIVOTTABLE_DELTAB"
msgid "The selected sheet(s) contain source data of related pivot tables that will be lost. Are you sure you want to delete the selected sheet(s)?"
msgstr "Hautatutako orria(e)k erlazionatutako taula dinamikoen iturburu-datuak ditu(zte). Ziur zaude hautatutako orria(k) ezabatu nahi dituzula?"
-#: sc/inc/globstr.hrc:512
+#: sc/inc/globstr.hrc:513
msgctxt "STR_ERR_NAME_INVALID_CELL_REF"
msgid "Invalid name. Reference to a cell, or a range of cells not allowed."
msgstr "Baliogabeko izena. Ez da onartzen gelaxka bati edo gelaxka-barruti bati erreferentzia egitea."
@@ -10488,7 +10493,7 @@ msgstr "Modua"
#: sc/inc/scfuncs.hrc:3010
msgctxt "SC_OPCODE_T_TEST"
-msgid "Mode specifies the number of distribution tails to return. 1= one-tailed, 2 = two-tailed distribution"
+msgid "Mode specifies the number of distribution tails to return. 1 = one-tailed, 2 = two-tailed distribution"
msgstr "Moduak zenbat banaketa-ilara emango diren adierazten du. 1 = ilara bakarra, 2 = bi ilara"
#: sc/inc/scfuncs.hrc:3011
@@ -10533,7 +10538,7 @@ msgstr "Modua"
#: sc/inc/scfuncs.hrc:3024
msgctxt "SC_OPCODE_T_TEST_MS"
-msgid "Mode specifies the number of distribution tails to return. 1= one-tailed, 2 = two-tailed distribution"
+msgid "Mode specifies the number of distribution tails to return. 1 = one-tailed, 2 = two-tailed distribution"
msgstr "Moduak zenbat banaketa-ilara emango diren adierazten du. 1 = ilara bakarra, 2 = bi ilara"
#: sc/inc/scfuncs.hrc:3025
@@ -18020,22 +18025,22 @@ msgctxt "mergecellsdialog|MergeCellsDialog"
msgid "Merge Cells"
msgstr "Bateratu gelaxkak"
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:81
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:84
msgctxt "mergecellsdialog|label"
msgid "Some cells are not empty."
msgstr "Gelaxka batzuk ez daude hutsik."
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:96
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:99
msgctxt "mergecellsdialog|move-cells-radio"
msgid "Move the contents of the hidden cells into the first cell"
msgstr "Eraman ezkutatutako gelaxken edukia lehen gelaxkara"
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:112
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:115
msgctxt "mergecellsdialog|empty-cells-radio"
msgid "Empty the contents of the hidden cells"
msgstr "Hustu ezkutatutako gelaxken edukia"
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:128
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:131
msgctxt "mergecellsdialog|keep-content-radio"
msgid "Keep the contents of the hidden cells"
msgstr "Mantendu edukia ezkutatutako gelaxketan"
@@ -18303,12 +18308,12 @@ msgstr "Bilatu _eguneratzeak..."
#: sc/uiconfig/scalc/ui/notebookbar.ui:1952
msgctxt "notebookbar|FileLabel"
msgid "_File"
-msgstr ""
+msgstr "_Fitxategia"
#: sc/uiconfig/scalc/ui/notebookbar.ui:1971
msgctxt "notebookbar|HelpMenuButton"
msgid "_Help"
-msgstr ""
+msgstr "_Laguntza"
#: sc/uiconfig/scalc/ui/notebookbar.ui:2769
msgctxt "notebookbar|FileLabel"
@@ -18334,7 +18339,7 @@ msgstr "Txikitu koska"
#: sc/uiconfig/scalc/ui/notebookbar.ui:4436
msgctxt "notebookbar|HomeMenuButton"
msgid "_Home"
-msgstr ""
+msgstr "_Karpeta nagusia"
#: sc/uiconfig/scalc/ui/notebookbar.ui:4544
msgctxt "notebookbar|CalcLabel"
@@ -18344,12 +18349,12 @@ msgstr "Hasiera"
#: sc/uiconfig/scalc/ui/notebookbar.ui:4991
msgctxt "notebookbar|FieldMenuButton"
msgid "Fiel_d"
-msgstr ""
+msgstr "E_remua"
#: sc/uiconfig/scalc/ui/notebookbar.ui:5496
msgctxt "notebookbar|InsertMenuButton"
msgid "_Insert"
-msgstr ""
+msgstr "_Txertatu"
#: sc/uiconfig/scalc/ui/notebookbar.ui:5581
msgctxt "notebookbar|InsertLabel"
@@ -18359,7 +18364,7 @@ msgstr "Txertatu"
#: sc/uiconfig/scalc/ui/notebookbar.ui:5610
msgctxt "notebookbar|reviewb"
msgid "Pag_e"
-msgstr ""
+msgstr "Orriald_ea"
#: sc/uiconfig/scalc/ui/notebookbar.ui:6335
msgctxt "notebookbar|PageLayoutLabel"
@@ -18374,7 +18379,7 @@ msgstr "E_statistikak"
#: sc/uiconfig/scalc/ui/notebookbar.ui:7304
msgctxt "notebookbar|DataMenuButton"
msgid "_Data"
-msgstr ""
+msgstr "_Datuak"
#: sc/uiconfig/scalc/ui/notebookbar.ui:7412
msgctxt "notebookbar|DataLabel"
@@ -18384,7 +18389,7 @@ msgstr "Datuak"
#: sc/uiconfig/scalc/ui/notebookbar.ui:8035
msgctxt "notebookbar|ReviewMenuButton"
msgid "_Review"
-msgstr ""
+msgstr "_Berrikusi"
#: sc/uiconfig/scalc/ui/notebookbar.ui:8120
msgctxt "notebookbar|ReviewLabel"
@@ -18394,7 +18399,7 @@ msgstr "Berrikusi"
#: sc/uiconfig/scalc/ui/notebookbar.ui:8896
msgctxt "notebookbar|ViewMenuButton"
msgid "_View"
-msgstr ""
+msgstr "_Ikusi"
#: sc/uiconfig/scalc/ui/notebookbar.ui:8981
msgctxt "notebookbar|ViewLabel"
@@ -18404,7 +18409,7 @@ msgstr "Ikusi"
#: sc/uiconfig/scalc/ui/notebookbar.ui:9008
msgctxt "notebookbar|GraphicMenuButton"
msgid "_Graphic"
-msgstr ""
+msgstr "_Grafikoa"
#: sc/uiconfig/scalc/ui/notebookbar.ui:9949
msgctxt "notebookbar|ImageLabel"
@@ -18414,12 +18419,12 @@ msgstr "Irudia"
#: sc/uiconfig/scalc/ui/notebookbar.ui:11228
msgctxt "notebookbar|DrawMenuButton"
msgid "D_raw"
-msgstr ""
+msgstr "M_arraztu"
#: sc/uiconfig/scalc/ui/notebookbar.ui:11340
msgctxt "notebookbar|DrawLabel"
msgid "Draw"
-msgstr ""
+msgstr "Marraztu"
#: sc/uiconfig/scalc/ui/notebookbar.ui:11993
msgctxt "notebookbar|frame:MenuDraw"
@@ -18434,12 +18439,12 @@ msgstr "Objektua"
#: sc/uiconfig/scalc/ui/notebookbar.ui:12113
msgctxt "notebookbar|ToolsMenuButton"
msgid "_Tools"
-msgstr ""
+msgstr "_Tresnak"
#: sc/uiconfig/scalc/ui/notebookbar.ui:13250
msgctxt "notebookbar|DevLabel"
msgid "Tools"
-msgstr ""
+msgstr "Tresnak"
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:2945
msgctxt "notebookbar_groupedbar_compact|Menu"
diff --git a/source/eu/scp2/source/ooo.po b/source/eu/scp2/source/ooo.po
index 4739b27a785..a24c49d64a2 100644
--- a/source/eu/scp2/source/ooo.po
+++ b/source/eu/scp2/source/ooo.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: 2018-05-23 23:20+0200\n"
-"PO-Revision-Date: 2018-05-15 06:45+0000\n"
-"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
+"PO-Revision-Date: 2018-05-24 10:27+0000\n"
+"Last-Translator: Osoitz <oelkoro@gmail.com>\n"
"Language-Team: Librezale <librezale@librezale.org>\n"
"Language: eu\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1526366746.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1527157654.000000\n"
#: folderitem_ooo.ulf
msgctxt ""
@@ -1886,7 +1886,7 @@ msgctxt ""
"STR_NAME_MODULE_LANGPACK_FY\n"
"LngText.text"
msgid "Frisian"
-msgstr ""
+msgstr "Frisiera"
#: module_langpack.ulf
msgctxt ""
@@ -1894,7 +1894,7 @@ msgctxt ""
"STR_DESC_MODULE_LANGPACK_FY\n"
"LngText.text"
msgid "Installs the Frisian user interface"
-msgstr ""
+msgstr "Frisiar erabiltzaile-interfazea instalatzen du"
#: module_langpack.ulf
msgctxt ""
diff --git a/source/eu/sd/messages.po b/source/eu/sd/messages.po
index 01686f7f8d6..c912cf52197 100644
--- a/source/eu/sd/messages.po
+++ b/source/eu/sd/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: 2018-05-22 13:16+0200\n"
-"PO-Revision-Date: 2018-05-17 07:23+0000\n"
-"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
+"PO-Revision-Date: 2018-05-24 10:32+0000\n"
+"Last-Translator: Osoitz <oelkoro@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: eu\n"
"MIME-Version: 1.0\n"
@@ -14,169 +14,169 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1526541814.000000\n"
+"X-POOTLE-MTIME: 1527157942.000000\n"
-#: sd/inc/DocumentRenderer.hrc:29
+#: sd/inc/DocumentRenderer.hrc:27
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Slides"
msgstr "Diapositibak"
-#: sd/inc/DocumentRenderer.hrc:30
+#: sd/inc/DocumentRenderer.hrc:28
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Handouts"
msgstr "Eskuorriak"
-#: sd/inc/DocumentRenderer.hrc:31
+#: sd/inc/DocumentRenderer.hrc:29
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Notes"
msgstr "Oharrak"
-#: sd/inc/DocumentRenderer.hrc:32
+#: sd/inc/DocumentRenderer.hrc:30
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Outline"
msgstr "Eskema"
-#: sd/inc/DocumentRenderer.hrc:37
+#: sd/inc/DocumentRenderer.hrc:35
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "According to layout"
msgstr "Diseinuaren arabera"
-#: sd/inc/DocumentRenderer.hrc:38
+#: sd/inc/DocumentRenderer.hrc:36
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "1"
msgstr "1"
-#: sd/inc/DocumentRenderer.hrc:39
+#: sd/inc/DocumentRenderer.hrc:37
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "2"
msgstr "2"
-#: sd/inc/DocumentRenderer.hrc:40
+#: sd/inc/DocumentRenderer.hrc:38
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "3"
msgstr "3"
-#: sd/inc/DocumentRenderer.hrc:41
+#: sd/inc/DocumentRenderer.hrc:39
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "4"
msgstr "4"
-#: sd/inc/DocumentRenderer.hrc:42
+#: sd/inc/DocumentRenderer.hrc:40
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "6"
msgstr "6"
-#: sd/inc/DocumentRenderer.hrc:43
+#: sd/inc/DocumentRenderer.hrc:41
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "9"
msgstr "9"
-#: sd/inc/DocumentRenderer.hrc:48
+#: sd/inc/DocumentRenderer.hrc:46
msgctxt "STR_IMPRESS_PRINT_UI_ORDER_CHOICES"
msgid "Left to right, then down"
msgstr "Ezkerretik eskuinera, gero behera"
-#: sd/inc/DocumentRenderer.hrc:49
+#: sd/inc/DocumentRenderer.hrc:47
msgctxt "STR_IMPRESS_PRINT_UI_ORDER_CHOICES"
msgid "Top to bottom, then right"
msgstr "Goitik behera, gero eskuinera"
-#: sd/inc/DocumentRenderer.hrc:54
+#: sd/inc/DocumentRenderer.hrc:52
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Original colors"
msgstr "Jatorrizko koloreak"
-#: sd/inc/DocumentRenderer.hrc:55
+#: sd/inc/DocumentRenderer.hrc:53
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Grayscale"
msgstr "Gris-eskala"
-#: sd/inc/DocumentRenderer.hrc:56
+#: sd/inc/DocumentRenderer.hrc:54
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Black & white"
msgstr "Zuri-beltza"
-#: sd/inc/DocumentRenderer.hrc:61
+#: sd/inc/DocumentRenderer.hrc:59
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Original size"
msgstr "Jatorrizko tamaina"
-#: sd/inc/DocumentRenderer.hrc:62
+#: sd/inc/DocumentRenderer.hrc:60
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Fit to printable page"
msgstr "Doitu orrialde inprimagarrira"
-#: sd/inc/DocumentRenderer.hrc:63
+#: sd/inc/DocumentRenderer.hrc:61
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Distribute on multiple sheets of paper"
msgstr "Banatu papereko hainbat orritan"
-#: sd/inc/DocumentRenderer.hrc:64
+#: sd/inc/DocumentRenderer.hrc:62
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Tile sheet of paper with repeated slides"
msgstr "Paperaren orriak lauza moduan errepikatutako diapositibekin"
-#: sd/inc/DocumentRenderer.hrc:69
+#: sd/inc/DocumentRenderer.hrc:67
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Original size"
msgstr "Jatorrizko tamaina"
-#: sd/inc/DocumentRenderer.hrc:70
+#: sd/inc/DocumentRenderer.hrc:68
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Fit to printable page"
msgstr "Doitu orrialde inprimagarrira"
-#: sd/inc/DocumentRenderer.hrc:71
+#: sd/inc/DocumentRenderer.hrc:69
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Distribute on multiple sheets of paper"
msgstr "Banatu papereko hainbat orritan"
-#: sd/inc/DocumentRenderer.hrc:72
+#: sd/inc/DocumentRenderer.hrc:70
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Tile sheet of paper with repeated pages"
msgstr "Paperaren orriak lauza moduan errepikatutako orrialdeetan"
-#: sd/inc/DocumentRenderer.hrc:77
+#: sd/inc/DocumentRenderer.hrc:75
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "All pages"
msgstr "Orrialde guztiak"
-#: sd/inc/DocumentRenderer.hrc:78
+#: sd/inc/DocumentRenderer.hrc:76
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "Front sides / right pages"
msgstr "Aurreko aldeak / eskuineko orrialdeak"
-#: sd/inc/DocumentRenderer.hrc:79
+#: sd/inc/DocumentRenderer.hrc:77
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "Back sides / left pages"
msgstr "Atzeko aldeak / ezkerreko orrialdeak"
-#: sd/inc/DocumentRenderer.hrc:84
+#: sd/inc/DocumentRenderer.hrc:82
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~All slides"
msgstr "Diapositiba ~guztiak"
-#: sd/inc/DocumentRenderer.hrc:85
+#: sd/inc/DocumentRenderer.hrc:83
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~Slides"
msgstr "~Diapositibak"
-#: sd/inc/DocumentRenderer.hrc:86
+#: sd/inc/DocumentRenderer.hrc:84
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Se~lection"
msgstr "~Hautapena"
-#: sd/inc/DocumentRenderer.hrc:91
+#: sd/inc/DocumentRenderer.hrc:89
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~All pages"
msgstr "Orrialde ~guztiak"
-#: sd/inc/DocumentRenderer.hrc:92
+#: sd/inc/DocumentRenderer.hrc:90
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Pa~ges"
msgstr "~Orrialdeak"
-#: sd/inc/DocumentRenderer.hrc:93
+#: sd/inc/DocumentRenderer.hrc:91
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Se~lection"
msgstr "~Hautapena"
@@ -1717,52 +1717,52 @@ msgstr "Betegarririk eta marrarik gabeko objektua"
#: sd/inc/strings.hrc:323
msgctxt "STR_POOLSHEET_FILLED"
msgid "Filled"
-msgstr ""
+msgstr "Beteta"
#: sd/inc/strings.hrc:324
msgctxt "STR_POOLSHEET_FILLED_BLUE"
msgid "Filled Blue"
-msgstr ""
+msgstr "Urdinez betea"
#: sd/inc/strings.hrc:325
msgctxt "STR_POOLSHEET_FILLED_GREEN"
msgid "Filled Green"
-msgstr ""
+msgstr "Berdez betea"
#: sd/inc/strings.hrc:326
msgctxt "STR_POOLSHEET_FILLED_YELLOW"
msgid "Filled Yellow"
-msgstr ""
+msgstr "Horiz betea"
#: sd/inc/strings.hrc:327
msgctxt "STR_POOLSHEET_FILLED_RED"
msgid "Filled Red"
-msgstr ""
+msgstr "Gorriz betea"
#: sd/inc/strings.hrc:329
msgctxt "STR_POOLSHEET_OUTLINE"
msgid "Outlined"
-msgstr ""
+msgstr "Ingerada"
#: sd/inc/strings.hrc:330
msgctxt "STR_POOLSHEET_OUTLINE_BLUE"
msgid "Outlined Blue"
-msgstr ""
+msgstr "Ingerada urdina"
#: sd/inc/strings.hrc:331
msgctxt "STR_POOLSHEET_OUTLINE_GREEN"
msgid "Outlined Green"
-msgstr ""
+msgstr "Ingerada berdea"
#: sd/inc/strings.hrc:332
msgctxt "STR_POOLSHEET_OUTLINE_YELLOW"
msgid "Outlined Yellow"
-msgstr ""
+msgstr "Ingerada horia"
#: sd/inc/strings.hrc:333
msgctxt "STR_POOLSHEET_OUTLINE_RED"
msgid "Outlined Red"
-msgstr ""
+msgstr "Ingerada gorria"
#: sd/inc/strings.hrc:335
msgctxt "STR_PSEUDOSHEET_TITLE"
@@ -3615,67 +3615,67 @@ msgstr "Bilatu _eguneratzeak..."
#: sd/uiconfig/simpress/ui/notebookbar.ui:2422
msgctxt "notebookbar|FileLabel"
msgid "_File"
-msgstr ""
+msgstr "_Fitxategia"
#: sd/uiconfig/simpress/ui/notebookbar.ui:2441
msgctxt "notebookbar|HelpMenuButton"
msgid "_Help"
-msgstr ""
+msgstr "_Laguntza"
#: sd/uiconfig/simpress/ui/notebookbar.ui:3230
msgctxt "notebookbar|FileLabel"
msgid "File"
-msgstr ""
+msgstr "Fitxategia"
#: sd/uiconfig/simpress/ui/notebookbar.ui:3389
msgctxt "notebookbar|HomeMenuButton"
msgid "_Home"
-msgstr ""
+msgstr "_Karpeta nagusia"
#: sd/uiconfig/simpress/ui/notebookbar.ui:4846
msgctxt "notebookbar|HomeLabel"
msgid "Home"
-msgstr ""
+msgstr "Etxea"
#: sd/uiconfig/simpress/ui/notebookbar.ui:5293
msgctxt "notebookbar|FieldMenuButton"
msgid "Fiel_d"
-msgstr ""
+msgstr "E_remua"
#: sd/uiconfig/simpress/ui/notebookbar.ui:5820
msgctxt "notebookbar|InsertMenuButton"
msgid "_Insert"
-msgstr ""
+msgstr "_Txertatu"
#: sd/uiconfig/simpress/ui/notebookbar.ui:5905
msgctxt "notebookbar|InsertLabel"
msgid "Insert"
-msgstr ""
+msgstr "Txertatu"
#: sd/uiconfig/simpress/ui/notebookbar.ui:5935
msgctxt "notebookbar|SlideMenuButton"
msgid "S_lide"
-msgstr ""
+msgstr "Dia_positiba"
#: sd/uiconfig/simpress/ui/notebookbar.ui:6688
msgctxt "notebookbar|LayoutLabel"
msgid "Slide"
-msgstr ""
+msgstr "Diapositiba"
#: sd/uiconfig/simpress/ui/notebookbar.ui:6716
msgctxt "notebookbar|SlideShowMenuButton"
msgid "_Slide Show"
-msgstr ""
+msgstr "_Diapositiba-aurkezpena"
#: sd/uiconfig/simpress/ui/notebookbar.ui:7194
msgctxt "notebookbar|ReferencesLabel"
msgid "Slide Show"
-msgstr ""
+msgstr "Diapositiba-aurkezpena"
#: sd/uiconfig/simpress/ui/notebookbar.ui:7222
msgctxt "notebookbar|ReviewMenuButton"
msgid "_Review"
-msgstr ""
+msgstr "_Berrikusi"
#: sd/uiconfig/simpress/ui/notebookbar.ui:7651
msgctxt "notebookbar|ReviewLabel"
@@ -3685,7 +3685,7 @@ msgstr "Berrikusi"
#: sd/uiconfig/simpress/ui/notebookbar.ui:7679
msgctxt "notebookbar|ViewMenuButton"
msgid "_View"
-msgstr ""
+msgstr "_Ikusi"
#: sd/uiconfig/simpress/ui/notebookbar.ui:8580
msgctxt "notebookbar|ViewLabel"
@@ -3695,7 +3695,7 @@ msgstr "Ikusi"
#: sd/uiconfig/simpress/ui/notebookbar.ui:9369
msgctxt "notebookbar|TableMenuButton"
msgid "T_able"
-msgstr ""
+msgstr "T_aula"
#: sd/uiconfig/simpress/ui/notebookbar.ui:9453
msgctxt "notebookbar|TableLabel"
@@ -3706,12 +3706,12 @@ msgstr "Taula"
#: sd/uiconfig/simpress/ui/notebookbar.ui:11131
msgctxt "notebookbar|ConvertMenuButton"
msgid "Convert"
-msgstr ""
+msgstr "Bihurtu"
#: sd/uiconfig/simpress/ui/notebookbar.ui:10335
msgctxt "notebookbar|GraphicMenuButton"
msgid "_Graphic"
-msgstr ""
+msgstr "_Grafikoa"
#: sd/uiconfig/simpress/ui/notebookbar.ui:10447
msgctxt "notebookbar|ImageLabel"
@@ -3721,22 +3721,22 @@ msgstr "Irudia"
#: sd/uiconfig/simpress/ui/notebookbar.ui:11658
msgctxt "notebookbar|DrawMenuButton"
msgid "D_raw"
-msgstr ""
+msgstr "M_arraztu"
#: sd/uiconfig/simpress/ui/notebookbar.ui:11772
msgctxt "notebookbar|DrawLabel"
msgid "Draw"
-msgstr ""
+msgstr "Marraztu"
#: sd/uiconfig/simpress/ui/notebookbar.ui:11804
msgctxt "notebookbar|ToolsMenuButton"
msgid "_Tools"
-msgstr ""
+msgstr "_Tresnak"
#: sd/uiconfig/simpress/ui/notebookbar.ui:12758
msgctxt "notebookbar|DevLabel"
msgid "Tools"
-msgstr ""
+msgstr "Tresnak"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:1922
msgctxt "notebookbar_groupedbar_compact|Menu"
diff --git a/source/eu/svx/messages.po b/source/eu/svx/messages.po
index 0a8d59ac9f8..cbcddcf8263 100644
--- a/source/eu/svx/messages.po
+++ b/source/eu/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: 2018-05-16 16:53+0200\n"
-"PO-Revision-Date: 2018-05-17 08:04+0000\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
+"PO-Revision-Date: 2018-06-05 05:55+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: eu\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1526544295.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1528178131.000000\n"
#: svx/inc/fieldunit.hrc:30
msgctxt "RID_SVXSTR_FIELDUNIT_TABLE"
@@ -4426,7 +4426,7 @@ msgstr "Ikusi"
#: svx/uiconfig/ui/namespacedialog.ui:9
msgctxt "namespacedialog|NamespaceDialog"
msgid "Namespaces for Forms"
-msgstr "Formularioetarako leku-izenak"
+msgstr "Inprimakietarako leku-izenak"
#: svx/uiconfig/ui/namespacedialog.ui:106
msgctxt "namespacedialog|add"
@@ -5179,8 +5179,8 @@ msgstr "Zure erabiltzaile-profilaren parteak ere txertatu ditzakezu arazoa-txost
#: svx/uiconfig/ui/safemodedialog.ui:432
msgctxt "safemodedialog|btn_create_zip"
-msgid "Create Zip Archive from User Profile"
-msgstr "Sortu ZIP artxiboa erabiltzailearen profilarekin"
+msgid "Archive User Profile"
+msgstr "Erabiltzaile-profilaren fitxategia"
#: svx/uiconfig/ui/safemodedialog.ui:445
msgctxt "safemodedialog|linkbutton_profile"
@@ -8769,9 +8769,9 @@ msgid "Red"
msgstr "Gorria"
#: include/svx/strings.hrc:565
-msgctxt "RID_SVXSTR_COLOR_VIOLET"
-msgid "Violet"
-msgstr "Bioleta"
+msgctxt "RID_SVXSTR_COLOR_MAGENTA"
+msgid "Magenta"
+msgstr "Magenta"
#: include/svx/strings.hrc:566
msgctxt "RID_SVXSTR_COLOR_PURPLE"
@@ -8835,9 +8835,9 @@ msgid "Light Red"
msgstr "Gorri argia"
#: include/svx/strings.hrc:579
-msgctxt "RID_SVXSTR_COLOR_LIGHTVIOLET"
-msgid "Light Violet"
-msgstr "Bioleta argia"
+msgctxt "RID_SVXSTR_COLOR_LIGHTMAGENTA"
+msgid "Light Magenta"
+msgstr "Magenta argia"
#: include/svx/strings.hrc:580
msgctxt "RID_SVXSTR_COLOR_LIGHTPURPLE"
@@ -8901,9 +8901,9 @@ msgid "Dark Red"
msgstr "Gorri iluna"
#: include/svx/strings.hrc:593
-msgctxt "RID_SVXSTR_COLOR_DARKVIOLET1"
-msgid "Dark Violet"
-msgstr "Bioleta iluna"
+msgctxt "RID_SVXSTR_COLOR_DARKMAGENTA"
+msgid "Dark Magenta"
+msgstr "Magenta iluna"
#: include/svx/strings.hrc:594
msgctxt "RID_SVXSTR_COLOR_DARKPURPLE"
@@ -8937,55 +8937,55 @@ msgstr "Lima iluna"
#. Elements of the Tonal color palette
#: include/svx/strings.hrc:601
+msgctxt "RID_SVXSTR_COLOR_VIOLET"
+msgid "Violet"
+msgstr "Bioleta"
+
+#: include/svx/strings.hrc:602
msgctxt "RID_SVXSTR_COLOR_VIOLET_OUG"
msgid "Violet (Out of Gamut)"
msgstr "Bioleta (Gamatik kanpo)"
-#: include/svx/strings.hrc:602
+#: include/svx/strings.hrc:603
msgctxt "RID_SVXSTR_COLOR_BLUE_OUG"
msgid "Blue (Out of Gamut)"
msgstr "Urdina (Gamatik kanpo)"
-#: include/svx/strings.hrc:603
+#: include/svx/strings.hrc:604
msgctxt "RID_SVXSTR_COLOR_AZURE_OUG"
msgid "Azure (Out of Gamut)"
msgstr "Zeru urdina (Gamatik kanpo)"
-#: include/svx/strings.hrc:604
+#: include/svx/strings.hrc:605
msgctxt "RID_SVXSTR_COLOR_SPRINGGREEN_OUG"
msgid "Spring Green (Out of Gamut)"
msgstr "Udaberri berdea (Gamatik kanpo)"
-#: include/svx/strings.hrc:605
+#: include/svx/strings.hrc:606
msgctxt "RID_SVXSTR_COLOR_GREEN_OUG"
msgid "Green (Out of Gamut)"
msgstr "Berdea (Gamatik kanpo)"
-#: include/svx/strings.hrc:606
+#: include/svx/strings.hrc:607
msgctxt "RID_SVXSTR_COLOR_CHARTREUSEGREEN_OUG"
msgid "Chartreuse Green (Out of Gamut)"
msgstr "Berde horixka (Gamatik kanpo)"
-#: include/svx/strings.hrc:607
+#: include/svx/strings.hrc:608
msgctxt "RID_SVXSTR_COLOR_ORANGE_OUG"
msgid "Orange (Out of Gamut)"
msgstr "Laranja (Gamatik kanpo)"
-#: include/svx/strings.hrc:608
+#: include/svx/strings.hrc:609
msgctxt "RID_SVXSTR_COLOR_RED_OUG"
msgid "Red (Out of Gamut)"
msgstr "Gorria (Gamatik kanpo)"
-#: include/svx/strings.hrc:609
+#: include/svx/strings.hrc:610
msgctxt "RID_SVXSTR_COLOR_ROSE_OUG"
msgid "Rose (Out of Gamut)"
msgstr "Arrosa (Gamatik kanpo)"
-#: include/svx/strings.hrc:610
-msgctxt "RID_SVXSTR_COLOR_MAGENTA"
-msgid "Magenta"
-msgstr "Magenta"
-
#: include/svx/strings.hrc:611
msgctxt "RID_SVXSTR_COLOR_AZURE"
msgid "Azure"
@@ -10427,7 +10427,7 @@ msgstr "%PRODUCTNAME %PRODUCTVERSION zure dokumentuak berreskuratzen hasi da. Do
#: include/svx/strings.hrc:918
msgctxt "RID_SVXSTR_RECOVERYONLY_FINISH_DESCR"
msgid "Recovery of your documents was finished. Click 'Finish' to see your documents."
-msgstr "Zure dokumentuen berreskuratzea amaitu a. Sakatu 'Amaitu' zure dokumentuak ikusteko."
+msgstr "Zure dokumentuen berreskuratzea amaitu da. Sakatu 'Amaitu' zure dokumentuak ikusteko."
#: include/svx/strings.hrc:919
msgctxt "RID_SVXSTR_RECOVERYONLY_FINISH"
@@ -12091,13 +12091,13 @@ msgstr "Eskuineranzko gezien buletak"
#: include/svx/strings.hrc:1273
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_6"
-msgid "Check mark bullets"
-msgstr "Hautamarka-buletak"
+msgid "Cross mark bullets"
+msgstr "Gurutze-marken buletak"
#: include/svx/strings.hrc:1274
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_7"
-msgid "Tick mark bullets"
-msgstr "Marka lagungarrien buletak"
+msgid "Check mark bullets"
+msgstr "Hautamarka-buletak"
#: include/svx/strings.hrc:1275
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_0"
diff --git a/source/eu/sw/messages.po b/source/eu/sw/messages.po
index 3c3c3758b5c..7125a1c94b1 100644
--- a/source/eu/sw/messages.po
+++ b/source/eu/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: 2018-05-22 13:17+0200\n"
-"PO-Revision-Date: 2018-05-17 07:53+0000\n"
+"POT-Creation-Date: 2018-06-12 14:41+0200\n"
+"PO-Revision-Date: 2018-06-12 16:43+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: eu\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1526543613.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1528821811.000000\n"
#: sw/inc/app.hrc:29
msgctxt "RID_PARAGRAPHSTYLEFAMILY"
@@ -1180,13 +1180,13 @@ msgstr "Aipua"
#: sw/inc/strings.hrc:172
msgctxt "STR_POOLCOLL_TOX_ILLUSH"
-msgid "Illustration Index Heading"
-msgstr "Ilustrazio-indizearen izenburua"
+msgid "Figure Index Heading"
+msgstr "Irudi-indizearen izenburua"
#: sw/inc/strings.hrc:173
msgctxt "STR_POOLCOLL_TOX_ILLUS1"
-msgid "Illustration Index 1"
-msgstr "1. ilustrazio-indizea"
+msgid "Figure Index 1"
+msgstr "Irudi-indizea 1"
#: sw/inc/strings.hrc:174
msgctxt "STR_POOLCOLL_TOX_OBJECTH"
@@ -3590,8 +3590,8 @@ msgstr "Objektuen taula"
#: sw/inc/strings.hrc:672
msgctxt "STR_TOX_ILL"
-msgid "Illustration Index"
-msgstr "Ilustrazio-indizea"
+msgid "Table of Figures"
+msgstr "Irudien taula"
#: sw/inc/strings.hrc:673
#, c-format
@@ -9244,72 +9244,72 @@ msgctxt "footnotepage|label5"
msgid "Continuation Notice"
msgstr "Jarraipen-oharra"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:49
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:55
msgctxt "footnotesendnotestabpage|ftnntnum"
msgid "_Restart numbering"
msgstr "Hasi be_rriro numerazioa"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:91
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:93
msgctxt "footnotesendnotestabpage|ftnoffset_label"
msgid "_Start at:"
msgstr "_Hasi hemen:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:112
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:111
msgctxt "footnotesendnotestabpage|ftnntnumfmt"
msgid "Custom _format"
msgstr "Formatu _pertsonalizatua"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:155
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:150
msgctxt "footnotesendnotestabpage|ftnsuffix_label"
msgid "Aft_er:"
msgstr "On_doren:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:199
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:188
msgctxt "footnotesendnotestabpage|ftnprefix_label"
msgid "Be_fore:"
msgstr "Au_rretik:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:228
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:212
msgctxt "footnotesendnotestabpage|ftnntattextend"
msgid "Collec_t at end of text"
msgstr "Bildu _testuaren amaieran"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:252
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:234
msgctxt "footnotesendnotestabpage|label1"
msgid "Footnotes"
msgstr "Oin-oharrak"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:289
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:271
msgctxt "footnotesendnotestabpage|endntattextend"
msgid "C_ollect at end of section"
msgstr "Bildu _sekzioaren amaieran"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:315
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:295
msgctxt "footnotesendnotestabpage|endntnum"
msgid "_Restart numbering"
msgstr "Hasi be_rriro numerazioa"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:357
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:333
msgctxt "footnotesendnotestabpage|endoffset_label"
msgid "_Start at:"
msgstr "_Hasi hemen:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:378
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:351
msgctxt "footnotesendnotestabpage|endntnumfmt"
msgid "_Custom format"
msgstr "_Formatu pertsonalizatua"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:421
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:390
msgctxt "footnotesendnotestabpage|endsuffix_label"
msgid "Aft_er:"
msgstr "On_doren:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:465
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:428
msgctxt "footnotesendnotestabpage|endprefix_label"
msgid "Be_fore:"
msgstr "Au_rretik:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:500
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:458
msgctxt "footnotesendnotestabpage|label2"
msgid "Endnotes"
msgstr "Amaiera-oharrak"
@@ -9339,27 +9339,27 @@ msgctxt "formatsectiondialog|notes"
msgid "Footnotes/Endnotes"
msgstr "Oin-oharrak/Amaiera-oharrak"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:63
+#: sw/uiconfig/swriter/ui/formattablepage.ui:77
msgctxt "formattablepage|nameft"
msgid "_Name"
msgstr "Ize_na"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:79
+#: sw/uiconfig/swriter/ui/formattablepage.ui:91
msgctxt "formattablepage|widthft"
msgid "W_idth"
msgstr "Z_abalera"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:110
+#: sw/uiconfig/swriter/ui/formattablepage.ui:120
msgctxt "formattablepage|relwidth"
msgid "Relati_ve"
msgstr "Erlati_boa"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:155
+#: sw/uiconfig/swriter/ui/formattablepage.ui:160
msgctxt "formattablepage|label45"
msgid "Properties"
msgstr "Propietateak"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:194
+#: sw/uiconfig/swriter/ui/formattablepage.ui:195
msgctxt "formattablepage|leftft"
msgid "Lef_t"
msgstr "Ezkerre_an"
@@ -9369,62 +9369,62 @@ msgctxt "formattablepage|rightft"
msgid "Ri_ght"
msgstr "E_skuinean"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:228
+#: sw/uiconfig/swriter/ui/formattablepage.ui:226
msgctxt "formattablepage|aboveft"
msgid "_Above"
msgstr "_Gainean"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:245
+#: sw/uiconfig/swriter/ui/formattablepage.ui:241
msgctxt "formattablepage|belowft"
msgid "_Below"
msgstr "_Azpian"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:320
+#: sw/uiconfig/swriter/ui/formattablepage.ui:311
msgctxt "formattablepage|label46"
msgid "Spacing"
msgstr "Tartea"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:362
+#: sw/uiconfig/swriter/ui/formattablepage.ui:349
msgctxt "formattablepage|full"
msgid "A_utomatic"
msgstr "_Automatikoa"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:380
+#: sw/uiconfig/swriter/ui/formattablepage.ui:365
msgctxt "formattablepage|left"
msgid "_Left"
msgstr "E_zkerrean"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:398
+#: sw/uiconfig/swriter/ui/formattablepage.ui:381
msgctxt "formattablepage|fromleft"
msgid "_From left"
msgstr "_Ezkerretik"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:416
+#: sw/uiconfig/swriter/ui/formattablepage.ui:397
msgctxt "formattablepage|right"
msgid "R_ight"
msgstr "E_skuinean"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:435
+#: sw/uiconfig/swriter/ui/formattablepage.ui:413
msgctxt "formattablepage|center"
msgid "_Center"
msgstr "_Erdian"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:453
+#: sw/uiconfig/swriter/ui/formattablepage.ui:429
msgctxt "formattablepage|free"
msgid "_Manual"
msgstr "_Eskuz"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:478
+#: sw/uiconfig/swriter/ui/formattablepage.ui:452
msgctxt "formattablepage|label43"
msgid "Alignment"
msgstr "Lerrokatzea"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:522
+#: sw/uiconfig/swriter/ui/formattablepage.ui:491
msgctxt "formattablepage|label53"
msgid "Text _direction"
msgstr "Testuaren _noranzkoa"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:553
+#: sw/uiconfig/swriter/ui/formattablepage.ui:519
msgctxt "formattablepage|label44"
msgid "Properties "
msgstr "Propietateak "
@@ -9779,22 +9779,27 @@ msgctxt "headerfootermenu|insert_pagenumber"
msgid "Insert Page Number"
msgstr "Txertatu orri-zenbakia"
-#: sw/uiconfig/swriter/ui/indentpage.ui:52
+#: sw/uiconfig/swriter/ui/headerfootermenu.ui:42
+msgctxt "headerfootermenu|insert_pagecount"
+msgid "Insert Page Count"
+msgstr "Txertatu orrialde kopurua"
+
+#: sw/uiconfig/swriter/ui/indentpage.ui:57
msgctxt "indentpage|label1"
msgid "_Before section"
msgstr "Sekzioaren au_rretik"
-#: sw/uiconfig/swriter/ui/indentpage.ui:67
+#: sw/uiconfig/swriter/ui/indentpage.ui:71
msgctxt "indentpage|label3"
msgid "_After section"
msgstr "Sekzioaren o_ndoren"
-#: sw/uiconfig/swriter/ui/indentpage.ui:113
+#: sw/uiconfig/swriter/ui/indentpage.ui:115
msgctxt "indentpage|label2"
msgid "Indent"
msgstr "Koska"
-#: sw/uiconfig/swriter/ui/indentpage.ui:142
+#: sw/uiconfig/swriter/ui/indentpage.ui:155
msgctxt "indentpage|preview-atkobject"
msgid "Example"
msgstr "Adibidea"
@@ -11002,7 +11007,7 @@ msgstr "_Sortu konexio berria"
#: sw/uiconfig/swriter/ui/mergeconnectdialog.ui:134
msgctxt "mergeconnectdialog|label2"
msgid "Fields are used to personalize form letters. The fields are placeholders for data from a data source, such as a database. The fields in the form letter must be connected to the data source."
-msgstr "Eremuak gutun-formularioak pertsonalizatzeko erabiltzen dira. Eremuak datu-iturburu bateko datuak kokatzeko leku-markak dira. Gutun-inprimakiko eremuek datu-iturburuari lotuta egon behar dute."
+msgstr "Eremuak gutun-inprimakiak pertsonalizatzeko erabiltzen dira. Eremuak datu-iturburu bateko datuak kokatzeko leku-markak dira. Gutun-inprimakiko eremuek datu-iturburuari lotuta egon behar dute."
#: sw/uiconfig/swriter/ui/mergeconnectdialog.ui:153
msgctxt "mergeconnectdialog|label1"
@@ -11912,7 +11917,7 @@ msgstr "Bilatu _eguneratzeak..."
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:2007
msgctxt "notebookbar_compact|FileMenuButton"
msgid "_File"
-msgstr ""
+msgstr "_Fitxategia"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:2721
msgctxt "notebookbar_compact|FileLabel"
@@ -11922,7 +11927,7 @@ msgstr "Fitxategia"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:2770
msgctxt "notebookbar_compact|HomeMenuButton"
msgid "_Menu"
-msgstr ""
+msgstr "_Menua"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3829
msgctxt "notebookbar_compact|HomeLabel"
@@ -11932,7 +11937,7 @@ msgstr "Hasiera"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3882
msgctxt "notebookbar_compact|InsertMenuButton"
msgid "_Insert"
-msgstr ""
+msgstr "_Txertatu"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4501
msgctxt "notebookbar_compact|InsertLabel"
@@ -11950,7 +11955,7 @@ msgstr "Egokitu"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5221
msgctxt "notebookbar_compact|PageMenuButton"
msgid "Pag_e"
-msgstr ""
+msgstr "Orriald_ea"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5273
msgctxt "notebookbar_compact|LayoutLabel"
@@ -11960,7 +11965,7 @@ msgstr "Diseinua"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5320
msgctxt "notebookbar_compact|ReferencesMenuButton"
msgid "Reference_s"
-msgstr ""
+msgstr "E_rreferentziak"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5708
msgctxt "notebookbar_compact|ReferencesLabel"
@@ -11970,7 +11975,7 @@ msgstr "Erreferentziak"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6204
msgctxt "notebookbar_compact|ReviewMenuButton"
msgid "_Review"
-msgstr ""
+msgstr "_Berrikusi"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6237
msgctxt "notebookbar_compact|ReviewLabel"
@@ -11980,7 +11985,7 @@ msgstr "Berrikusi"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6706
msgctxt "notebookbar_compact|ViewMenuButton"
msgid "_View"
-msgstr ""
+msgstr "_Ikusi"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6758
msgctxt "notebookbar_compact|ViewLabel"
@@ -11990,7 +11995,7 @@ msgstr "Ikusi"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6806
msgctxt "notebookbar_compact|TableMenuButton"
msgid "T_able"
-msgstr ""
+msgstr "T_aula"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7540
msgctxt "notebookbar_compact|TableLabel"
@@ -12007,7 +12012,7 @@ msgstr "_Lerrokatu"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8291
msgctxt "notebookbar_compact|GraphicMenuButton"
msgid "_Graphic"
-msgstr ""
+msgstr "_Grafikoa"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8324
msgctxt "notebookbar_compact|ImageLabel"
@@ -12017,7 +12022,7 @@ msgstr "Irudia"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9070
msgctxt "notebookbar_compact|DrawMenuButton"
msgid "D_raw"
-msgstr ""
+msgstr "M_arraztu"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9125
msgctxt "notebookbar_compact|ShapeLabel"
@@ -12027,7 +12032,7 @@ msgstr "Marraztu"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9651
msgctxt "notebookbar_compact|ObjectMenuButton:MenuDraw"
msgid "Object"
-msgstr ""
+msgstr "Objektua"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9707
msgctxt "notebookbar_compact|FrameLabel"
@@ -12037,7 +12042,7 @@ msgstr "Objektua"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9757
msgctxt "notebookbar_compact|ToolsMenuButton"
msgid "_Tools"
-msgstr ""
+msgstr "_Tresnak"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10600
msgctxt "notebookbar_compact|DevLabel"
@@ -13285,8 +13290,8 @@ msgstr "Babestu inprimakia"
#: sw/uiconfig/swriter/ui/optcompatpage.ui:68
msgctxt "optcompatpage|format"
-msgid "MS Word-compatible trailing blanks"
-msgstr "MS Word aplikazioarekin bateragarriak diren amaierako hutsuneak"
+msgid "Word-compatible trailing blanks"
+msgstr "Word aplikazioarekin bateragarriak diren amaierako hutsuneak"
#: sw/uiconfig/swriter/ui/optcompatpage.ui:69
msgctxt "optcompatpage|format"
@@ -13295,8 +13300,8 @@ msgstr "Onartu marra zuriak PDF orrien atzeko planoetan, dokumentu zaharrekin ba
#: sw/uiconfig/swriter/ui/optcompatpage.ui:70
msgctxt "optcompatpage|format"
-msgid "A database field (e.g., MailMerge) with empty value hides its paragraph"
-msgstr ""
+msgid "Hide paragraphs of database fields (e.g., mail merge) with an empty value"
+msgstr "Ezkutatu datu-baseko eremuen paragrafoak (adib. posta-konbinazioan) balio huts batekin"
#: sw/uiconfig/swriter/ui/optcompatpage.ui:71
msgctxt "optcompatpage|format"
@@ -15981,122 +15986,122 @@ msgctxt "tableproperties|background"
msgid "Background"
msgstr "Atzeko planoa"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:25
-msgctxt "tabletextflowpage|liststore1"
-msgid "Horizontal"
-msgstr "Horizontala"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:29
-msgctxt "tabletextflowpage|liststore1"
-msgid "Vertical"
-msgstr "Bertikala"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:33
-msgctxt "tabletextflowpage|liststore1"
-msgid "Use superordinate object settings"
-msgstr "Erabili goi-mailako objektuen ezarpenak"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:47
-msgctxt "tabletextflowpage|liststore2"
-msgid "Top"
-msgstr "Goian"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:51
-msgctxt "tabletextflowpage|liststore2"
-msgid "Centered"
-msgstr "Erdian"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:55
-msgctxt "tabletextflowpage|liststore2"
-msgid "Bottom"
-msgstr "Behean"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:97
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:53
msgctxt "tabletextflowpage|break"
msgid "_Break"
msgstr "_Jauzia"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:112
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:68
msgctxt "tabletextflowpage|page"
msgid "_Page"
msgstr "_Orrialdea"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:132
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:87
msgctxt "tabletextflowpage|column"
msgid "Col_umn"
msgstr "Zu_tabea"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:151
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:106
msgctxt "tabletextflowpage|before"
msgid "Be_fore"
msgstr "Au_rretik"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:171
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:125
msgctxt "tabletextflowpage|after"
msgid "_After"
msgstr "_Ondoren"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:203
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:158
msgctxt "tabletextflowpage|pagestyle"
msgid "With Page St_yle"
msgstr "Orrialde e_stiloarekin"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:224
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:177
msgctxt "tabletextflowpage|pagenoft"
msgid "Page _number"
msgstr "Orrialde-_zenbakia"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:257
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:213
msgctxt "tabletextflowpage|pagestylelb-atkobject"
msgid "With Page Style"
msgstr "Orrialde-estiloarekin"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:274
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:230
msgctxt "tabletextflowpage|split"
msgid "Allow _table to split across pages and columns"
msgstr "Baimendu _taula orrialde eta zutabetan zatitzea"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:289
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:245
msgctxt "tabletextflowpage|splitrow"
msgid "Allow row to break a_cross pages and columns"
msgstr "Baimendu orrialde- eta zutabe-j_auziak errenkadan"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:306
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:262
msgctxt "tabletextflowpage|keep"
msgid "_Keep with next paragraph"
msgstr "_Mantendu hurrengo paragrafoarekin"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:328
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:284
msgctxt "tabletextflowpage|label40"
msgid "Text _orientation"
msgstr "Testu-_orientazioa"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:361
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:298
+msgctxt "tabletextflowpage|liststore1"
+msgid "Horizontal"
+msgstr "Horizontala"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:299
+msgctxt "tabletextflowpage|liststore1"
+msgid "Vertical"
+msgstr "Bertikala"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:300
+msgctxt "tabletextflowpage|liststore1"
+msgid "Use superordinate object settings"
+msgstr "Erabili goi-mailako objektuen ezarpenak"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:321
msgctxt "tabletextflowpage|headline"
msgid "R_epeat heading"
msgstr "Erre_pikatu izenburua"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:383
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:343
msgctxt "tabletextflowpage|label38"
msgid "The first "
msgstr "Lehena "
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:396
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:356
msgctxt "tabletextflowpage|label39"
msgid "rows"
msgstr "errenkadak"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:434
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:395
msgctxt "tabletextflowpage|label35"
msgid "Text Flow"
msgstr "Testu-fluxua"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:467
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:428
msgctxt "tabletextflowpage|label41"
msgid "_Vertical alignment"
msgstr "_Lerrokatze bertikala"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:495
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:442
+msgctxt "tabletextflowpage|liststore2"
+msgid "Top"
+msgstr "Goian"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:443
+msgctxt "tabletextflowpage|liststore2"
+msgid "Centered"
+msgstr "Erdian"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:444
+msgctxt "tabletextflowpage|liststore2"
+msgid "Bottom"
+msgstr "Behean"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:460
msgctxt "tabletextflowpage|label36"
msgid "Alignment"
msgstr "Lerrokatzea"
@@ -16878,8 +16883,8 @@ msgstr "Indize alfabetikoa"
#: sw/uiconfig/swriter/ui/tocindexpage.ui:58
msgctxt "tocindexpage|liststore1"
-msgid "Illustration Index"
-msgstr "Ilustrazio-indizea"
+msgid "Table of Figures"
+msgstr "Irudien taula"
#: sw/uiconfig/swriter/ui/tocindexpage.ui:62
msgctxt "tocindexpage|liststore1"
diff --git a/source/eu/writerperfect/messages.po b/source/eu/writerperfect/messages.po
index 2f03c9bdf76..cca0c7021f8 100644
--- a/source/eu/writerperfect/messages.po
+++ b/source/eu/writerperfect/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-16 16:54+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2018-05-12 12:08+0000\n"
"Last-Translator: Asier Sarasua Garmendia <asiersar@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -66,97 +66,97 @@ msgctxt "exportepub|generalft"
msgid "General"
msgstr "Orokorra"
-#: writerperfect/uiconfig/ui/exportepub.ui:122
+#: writerperfect/uiconfig/ui/exportepub.ui:121
msgctxt "exportepub|versionft"
msgid "Version:"
msgstr "Bertsioa:"
-#: writerperfect/uiconfig/ui/exportepub.ui:139
+#: writerperfect/uiconfig/ui/exportepub.ui:138
msgctxt "exportepub|epub3"
msgid "EPUB 3.0"
msgstr "EPUB 3.0"
-#: writerperfect/uiconfig/ui/exportepub.ui:140
+#: writerperfect/uiconfig/ui/exportepub.ui:139
msgctxt "exportepub|epub2"
msgid "EPUB 2.0"
msgstr "EPUB 2.0"
-#: writerperfect/uiconfig/ui/exportepub.ui:175
+#: writerperfect/uiconfig/ui/exportepub.ui:174
msgctxt "exportepub|splitft"
msgid "Split method:"
msgstr "Zatitze-metodoa:"
-#: writerperfect/uiconfig/ui/exportepub.ui:192
+#: writerperfect/uiconfig/ui/exportepub.ui:191
msgctxt "exportepub|splitpage"
msgid "Page break"
msgstr "Orrialde-jauzia"
-#: writerperfect/uiconfig/ui/exportepub.ui:193
+#: writerperfect/uiconfig/ui/exportepub.ui:192
msgctxt "exportepub|splitheading"
msgid "Heading"
msgstr "Izenburua"
-#: writerperfect/uiconfig/ui/exportepub.ui:228
+#: writerperfect/uiconfig/ui/exportepub.ui:227
msgctxt "exportepub|layoutft"
msgid "Layout method:"
msgstr "Antolamendu modua:"
-#: writerperfect/uiconfig/ui/exportepub.ui:245
+#: writerperfect/uiconfig/ui/exportepub.ui:244
msgctxt "exportepub|layoutreflowable"
msgid "Reflowable"
msgstr "Moldakorra"
-#: writerperfect/uiconfig/ui/exportepub.ui:246
+#: writerperfect/uiconfig/ui/exportepub.ui:245
msgctxt "exportepub|layoutfixed"
msgid "Fixed"
msgstr "Finkoa"
-#: writerperfect/uiconfig/ui/exportepub.ui:281
+#: writerperfect/uiconfig/ui/exportepub.ui:280
msgctxt "exportepub|coverimageft"
msgid "Custom cover image:"
msgstr "Azaleko irudi pertsonala:"
-#: writerperfect/uiconfig/ui/exportepub.ui:311
+#: writerperfect/uiconfig/ui/exportepub.ui:310
msgctxt "exportepub|coverbutton"
msgid "Browse..."
msgstr "Arakatu..."
-#: writerperfect/uiconfig/ui/exportepub.ui:355
+#: writerperfect/uiconfig/ui/exportepub.ui:354
msgctxt "exportepub|mediadirft"
msgid "Custom media directory:"
msgstr "Multimedia direktorio pertsonala:"
-#: writerperfect/uiconfig/ui/exportepub.ui:385
+#: writerperfect/uiconfig/ui/exportepub.ui:384
msgctxt "exportepub|mediabutton"
msgid "Browse..."
msgstr "Arakatu..."
-#: writerperfect/uiconfig/ui/exportepub.ui:429
+#: writerperfect/uiconfig/ui/exportepub.ui:428
msgctxt "exportepub|metadataft"
msgid "Metadata"
msgstr "Metadatuak"
-#: writerperfect/uiconfig/ui/exportepub.ui:470
+#: writerperfect/uiconfig/ui/exportepub.ui:468
msgctxt "exportepub|identifierft"
msgid "Identifier:"
msgstr "Identifikatzailea:"
-#: writerperfect/uiconfig/ui/exportepub.ui:485
+#: writerperfect/uiconfig/ui/exportepub.ui:483
msgctxt "exportepub|titleft"
msgid "Title:"
msgstr "Titulua:"
-#: writerperfect/uiconfig/ui/exportepub.ui:511
+#: writerperfect/uiconfig/ui/exportepub.ui:509
msgctxt "exportepub|authorft"
msgid "Author:"
msgstr "Egilea:"
-#: writerperfect/uiconfig/ui/exportepub.ui:537
+#: writerperfect/uiconfig/ui/exportepub.ui:535
msgctxt "exportepub|languageft"
msgid "Language:"
msgstr "Hizkuntza:"
-#: writerperfect/uiconfig/ui/exportepub.ui:563
+#: writerperfect/uiconfig/ui/exportepub.ui:561
msgctxt "exportepub|dateft"
msgid "Date:"
msgstr "Data:"
diff --git a/source/eu/xmlsecurity/messages.po b/source/eu/xmlsecurity/messages.po
index 8ffc6587581..e470b08d519 100644
--- a/source/eu/xmlsecurity/messages.po
+++ b/source/eu/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: 2018-05-22 13:17+0200\n"
-"PO-Revision-Date: 2018-03-08 11:00+0000\n"
+"PO-Revision-Date: 2018-05-24 10:31+0000\n"
"Last-Translator: Osoitz <oelkoro@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: eu\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1520506800.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1527157904.000000\n"
#: xmlsecurity/inc/strings.hrc:25
msgctxt "STR_CERTIFICATE_NOT_VALIDATED"
@@ -460,7 +460,7 @@ msgstr "Sinatu"
#: xmlsecurity/uiconfig/ui/selectcertificatedialog.ui:194
msgctxt "selectcertificatedialog|str_selectsign"
msgid "Select"
-msgstr ""
+msgstr "Hautatu"
#: xmlsecurity/uiconfig/ui/selectcertificatedialog.ui:199
msgctxt "selectcertificatedialog|str_encrypt"
diff --git a/source/fa/cui/messages.po b/source/fa/cui/messages.po
index d2809588fe7..febb2152326 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2018-04-01 22:34+0000\n"
"Last-Translator: Eric Bright <bright.email@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -10461,106 +10461,106 @@ msgctxt "positionsizedialog|PositionAndSizeDialog"
msgid "Position and Size"
msgstr "موقعیت و ان~دازه"
-#: cui/uiconfig/ui/positionsizedialog.ui:107
+#: cui/uiconfig/ui/positionsizedialog.ui:136
#, fuzzy
msgctxt "positionsizedialog|RID_SVXPAGE_POSITION_SIZE"
msgid "Position and Size"
msgstr "موقعیت و ان~دازه"
-#: cui/uiconfig/ui/positionsizedialog.ui:129
+#: cui/uiconfig/ui/positionsizedialog.ui:182
#, fuzzy
msgctxt "positionsizedialog|RID_SVXPAGE_SWPOSSIZE"
msgid "Position and Size"
msgstr "موقعیت و ان~دازه"
-#: cui/uiconfig/ui/positionsizedialog.ui:152
+#: cui/uiconfig/ui/positionsizedialog.ui:229
msgctxt "positionsizedialog|RID_SVXPAGE_ANGLE"
msgid "Rotation"
msgstr "چرخش"
-#: cui/uiconfig/ui/positionsizedialog.ui:175
+#: cui/uiconfig/ui/positionsizedialog.ui:276
msgctxt "positionsizedialog|RID_SVXPAGE_SLANT"
msgid "Slant & Corner Radius"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:40
+#: cui/uiconfig/ui/possizetabpage.ui:61
#, fuzzy
msgctxt "possizetabpage|FT_POS_X"
msgid "Position _X:"
msgstr "موقعیت"
-#: cui/uiconfig/ui/possizetabpage.ui:56
+#: cui/uiconfig/ui/possizetabpage.ui:75
#, fuzzy
msgctxt "possizetabpage|FT_POS_Y"
msgid "Position _Y:"
msgstr "موقعیت"
-#: cui/uiconfig/ui/possizetabpage.ui:110
+#: cui/uiconfig/ui/possizetabpage.ui:128
msgctxt "possizetabpage|FT_POSREFERENCE"
msgid "_Base point:"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:148
+#: cui/uiconfig/ui/possizetabpage.ui:182
msgctxt "possizetabpage|label1"
msgid "Position"
msgstr "موقعیت"
-#: cui/uiconfig/ui/possizetabpage.ui:190
+#: cui/uiconfig/ui/possizetabpage.ui:224
#, fuzzy
msgctxt "possizetabpage|FT_WIDTH"
msgid "Wi_dth:"
msgstr "عرض"
-#: cui/uiconfig/ui/possizetabpage.ui:206
+#: cui/uiconfig/ui/possizetabpage.ui:238
#, fuzzy
msgctxt "possizetabpage|FT_HEIGHT"
msgid "H_eight:"
msgstr "ارتفاع"
-#: cui/uiconfig/ui/possizetabpage.ui:247
+#: cui/uiconfig/ui/possizetabpage.ui:276
msgctxt "possizetabpage|CBX_SCALE"
msgid "_Keep ratio"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:279
+#: cui/uiconfig/ui/possizetabpage.ui:307
msgctxt "possizetabpage|FT_SIZEREFERENCE"
msgid "Base _point:"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:317
+#: cui/uiconfig/ui/possizetabpage.ui:361
msgctxt "possizetabpage|label2"
msgid "Size"
msgstr "اندازه"
-#: cui/uiconfig/ui/possizetabpage.ui:356
+#: cui/uiconfig/ui/possizetabpage.ui:401
#, fuzzy
msgctxt "possizetabpage|TSB_POSPROTECT"
msgid "Positio_n"
msgstr "موقعیت"
-#: cui/uiconfig/ui/possizetabpage.ui:373
+#: cui/uiconfig/ui/possizetabpage.ui:418
#, fuzzy
msgctxt "possizetabpage|TSB_SIZEPROTECT"
msgid "_Size"
msgstr "اندازه"
-#: cui/uiconfig/ui/possizetabpage.ui:397
+#: cui/uiconfig/ui/possizetabpage.ui:441
#, fuzzy
msgctxt "possizetabpage|label3"
msgid "Protect"
msgstr "م~حافظت"
-#: cui/uiconfig/ui/possizetabpage.ui:430
+#: cui/uiconfig/ui/possizetabpage.ui:475
msgctxt "possizetabpage|TSB_AUTOGROW_WIDTH"
msgid "_Fit width to text"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:447
+#: cui/uiconfig/ui/possizetabpage.ui:492
msgctxt "possizetabpage|TSB_AUTOGROW_HEIGHT"
msgid "Fit _height to text"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:471
+#: cui/uiconfig/ui/possizetabpage.ui:515
msgctxt "possizetabpage|label4"
msgid "Adapt"
msgstr ""
@@ -10771,50 +10771,50 @@ msgctxt "recordnumberdialog|label2"
msgid "go to record"
msgstr ""
-#: cui/uiconfig/ui/rotationtabpage.ui:52
+#: cui/uiconfig/ui/rotationtabpage.ui:56
#, fuzzy
msgctxt "rotationtabpage|FT_POS_X"
msgid "Position _X:"
msgstr "موقعیت"
-#: cui/uiconfig/ui/rotationtabpage.ui:66
+#: cui/uiconfig/ui/rotationtabpage.ui:70
#, fuzzy
msgctxt "rotationtabpage|FT_POS_Y"
msgid "Position _Y:"
msgstr "موقعیت"
-#: cui/uiconfig/ui/rotationtabpage.ui:116
+#: cui/uiconfig/ui/rotationtabpage.ui:123
msgctxt "rotationtabpage|FT_POSPRESETS"
msgid "_Default settings:"
msgstr ""
-#: cui/uiconfig/ui/rotationtabpage.ui:130
+#: cui/uiconfig/ui/rotationtabpage.ui:151
msgctxt "rotationtabpage|CTL_RECT|tooltip_text"
msgid "Rotation point"
msgstr ""
-#: cui/uiconfig/ui/rotationtabpage.ui:155
+#: cui/uiconfig/ui/rotationtabpage.ui:178
msgctxt "rotationtabpage|label1"
msgid "Pivot Point"
msgstr ""
-#: cui/uiconfig/ui/rotationtabpage.ui:197
+#: cui/uiconfig/ui/rotationtabpage.ui:220
msgctxt "rotationtabpage|FT_ANGLE"
msgid "_Angle:"
msgstr ""
-#: cui/uiconfig/ui/rotationtabpage.ui:238
+#: cui/uiconfig/ui/rotationtabpage.ui:263
msgctxt "rotationtabpage|FT_ANGLEPRESETS"
msgid "Default _settings:"
msgstr ""
-#: cui/uiconfig/ui/rotationtabpage.ui:252
+#: cui/uiconfig/ui/rotationtabpage.ui:287
#, fuzzy
msgctxt "rotationtabpage|CTL_ANGLE|tooltip_text"
msgid "Rotation Angle"
msgstr "زاویهٔ چرخش"
-#: cui/uiconfig/ui/rotationtabpage.ui:277
+#: cui/uiconfig/ui/rotationtabpage.ui:314
#, fuzzy
msgctxt "rotationtabpage|label2"
msgid "Rotation Angle"
@@ -11208,55 +11208,55 @@ msgctxt "similaritysearchdialog|relaxbox"
msgid "_Combine"
msgstr "تر~کیب"
-#: cui/uiconfig/ui/slantcornertabpage.ui:50
+#: cui/uiconfig/ui/slantcornertabpage.ui:70
msgctxt "slantcornertabpage|label5"
msgid "_X:"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:88
+#: cui/uiconfig/ui/slantcornertabpage.ui:110
msgctxt "slantcornertabpage|label6"
msgid "_Y:"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:125
+#: cui/uiconfig/ui/slantcornertabpage.ui:149
msgctxt "slantcornertabpage|label3"
msgid "Control Point 1"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:159
+#: cui/uiconfig/ui/slantcornertabpage.ui:183
#, fuzzy
msgctxt "slantcornertabpage|FT_RADIUS"
msgid "_Radius:"
msgstr "شعاع"
-#: cui/uiconfig/ui/slantcornertabpage.ui:189
+#: cui/uiconfig/ui/slantcornertabpage.ui:214
#, fuzzy
msgctxt "slantcornertabpage|label1"
msgid "Corner Radius"
msgstr "شعاع گوشه"
-#: cui/uiconfig/ui/slantcornertabpage.ui:223
+#: cui/uiconfig/ui/slantcornertabpage.ui:248
msgctxt "slantcornertabpage|FT_ANGLE"
msgid "_Angle:"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:253
+#: cui/uiconfig/ui/slantcornertabpage.ui:279
#, fuzzy
msgctxt "slantcornertabpage|label2"
msgid "Slant"
msgstr "خوابیدگی"
-#: cui/uiconfig/ui/slantcornertabpage.ui:294
+#: cui/uiconfig/ui/slantcornertabpage.ui:320
msgctxt "slantcornertabpage|label4"
msgid "_X:"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:332
+#: cui/uiconfig/ui/slantcornertabpage.ui:360
msgctxt "slantcornertabpage|label7"
msgid "_Y:"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:369
+#: cui/uiconfig/ui/slantcornertabpage.ui:399
msgctxt "slantcornertabpage|label8"
msgid "Control Point 2"
msgstr ""
@@ -11550,123 +11550,123 @@ msgctxt "storedwebconnectiondialog|change"
msgid "_Change Password..."
msgstr "تغییر ~رمز عبور..."
-#: cui/uiconfig/ui/swpossizepage.ui:74
+#: cui/uiconfig/ui/swpossizepage.ui:85
#, fuzzy
msgctxt "swpossizepage|widthft"
msgid "_Width:"
msgstr "عرض"
-#: cui/uiconfig/ui/swpossizepage.ui:111
+#: cui/uiconfig/ui/swpossizepage.ui:123
#, fuzzy
msgctxt "swpossizepage|heightft"
msgid "H_eight:"
msgstr "ارتفاع"
-#: cui/uiconfig/ui/swpossizepage.ui:128
+#: cui/uiconfig/ui/swpossizepage.ui:141
msgctxt "swpossizepage|ratio"
msgid "_Keep ratio"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:149
+#: cui/uiconfig/ui/swpossizepage.ui:162
msgctxt "swpossizepage|label2"
msgid "Size"
msgstr "اندازه"
-#: cui/uiconfig/ui/swpossizepage.ui:205
+#: cui/uiconfig/ui/swpossizepage.ui:218
#, fuzzy
msgctxt "swpossizepage|topage"
msgid "To _page"
msgstr "به صفحه"
-#: cui/uiconfig/ui/swpossizepage.ui:222
+#: cui/uiconfig/ui/swpossizepage.ui:234
#, fuzzy
msgctxt "swpossizepage|topara"
msgid "To paragrap_h"
msgstr "بند"
-#: cui/uiconfig/ui/swpossizepage.ui:238
+#: cui/uiconfig/ui/swpossizepage.ui:250
#, fuzzy
msgctxt "swpossizepage|tochar"
msgid "To cha_racter"
msgstr "به نویسه"
-#: cui/uiconfig/ui/swpossizepage.ui:254
+#: cui/uiconfig/ui/swpossizepage.ui:266
#, fuzzy
msgctxt "swpossizepage|aschar"
msgid "_As character"
msgstr "به صورت نویسه"
-#: cui/uiconfig/ui/swpossizepage.ui:270
+#: cui/uiconfig/ui/swpossizepage.ui:282
#, fuzzy
msgctxt "swpossizepage|toframe"
msgid "To _frame"
msgstr "چارچوب"
-#: cui/uiconfig/ui/swpossizepage.ui:292
+#: cui/uiconfig/ui/swpossizepage.ui:304
msgctxt "swpossizepage|label1"
msgid "Anchor"
msgstr "لنگر"
-#: cui/uiconfig/ui/swpossizepage.ui:333
+#: cui/uiconfig/ui/swpossizepage.ui:344
#, fuzzy
msgctxt "swpossizepage|horiposft"
msgid "Hori_zontal:"
msgstr "افقی"
-#: cui/uiconfig/ui/swpossizepage.ui:347
+#: cui/uiconfig/ui/swpossizepage.ui:358
msgctxt "swpossizepage|horibyft"
msgid "b_y:"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:361
+#: cui/uiconfig/ui/swpossizepage.ui:372
msgctxt "swpossizepage|vertbyft"
msgid "_by:"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:375
+#: cui/uiconfig/ui/swpossizepage.ui:386
msgctxt "swpossizepage|horitoft"
msgid "_to:"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:421
+#: cui/uiconfig/ui/swpossizepage.ui:433
#, fuzzy
msgctxt "swpossizepage|vertposft"
msgid "_Vertical:"
msgstr "عمودی"
-#: cui/uiconfig/ui/swpossizepage.ui:457
+#: cui/uiconfig/ui/swpossizepage.ui:470
msgctxt "swpossizepage|verttoft"
msgid "t_o:"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:478
+#: cui/uiconfig/ui/swpossizepage.ui:492
msgctxt "swpossizepage|mirror"
msgid "_Mirror on even pages"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:495
+#: cui/uiconfig/ui/swpossizepage.ui:509
msgctxt "swpossizepage|followtextflow"
msgid "Follow te_xt flow"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:518
+#: cui/uiconfig/ui/swpossizepage.ui:532
msgctxt "swpossizepage|label11"
msgid "Position"
msgstr "موقعیت"
-#: cui/uiconfig/ui/swpossizepage.ui:549
+#: cui/uiconfig/ui/swpossizepage.ui:563
#, fuzzy
msgctxt "swpossizepage|pos"
msgid "Positio_n"
msgstr "موقعیت"
-#: cui/uiconfig/ui/swpossizepage.ui:565
+#: cui/uiconfig/ui/swpossizepage.ui:579
#, fuzzy
msgctxt "swpossizepage|size"
msgid "_Size"
msgstr "اندازه"
-#: cui/uiconfig/ui/swpossizepage.ui:587
+#: cui/uiconfig/ui/swpossizepage.ui:601
#, fuzzy
msgctxt "swpossizepage|label3"
msgid "Protect"
@@ -11868,13 +11868,13 @@ msgctxt "textattrtabpage|label2"
msgid "Spacing to Borders"
msgstr ""
-#: cui/uiconfig/ui/textattrtabpage.ui:425
+#: cui/uiconfig/ui/textattrtabpage.ui:423
#, fuzzy
msgctxt "textattrtabpage|TSB_FULL_WIDTH"
msgid "Full _width"
msgstr "تمام‌عرض"
-#: cui/uiconfig/ui/textattrtabpage.ui:448
+#: cui/uiconfig/ui/textattrtabpage.ui:446
msgctxt "textattrtabpage|label3"
msgid "Text Anchor"
msgstr ""
diff --git a/source/fa/filter/source/config/fragments/filters.po b/source/fa/filter/source/config/fragments/filters.po
index 255ac790739..d37d9d3de22 100644
--- a/source/fa/filter/source/config/fragments/filters.po
+++ b/source/fa/filter/source/config/fragments/filters.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-16 16:54+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2016-12-01 15:20+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -465,8 +465,8 @@ msgctxt ""
"MS Word 2003 XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Word 2003 XML"
-msgstr "‏XML مایکروسافت وُرد 2003"
+msgid "Word 2003 XML"
+msgstr ""
#: MS_Word_2007_XML.xcu
msgctxt ""
@@ -1291,7 +1291,7 @@ msgctxt ""
"Calc MS Excel 2007 VBA XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Excel 2007-2016 XML (macro enabled)"
+msgid "Excel 2007–2019 (macro-enabled)"
msgstr ""
#: calc_MS_Excel_2007_XML.xcu
diff --git a/source/fa/filter/source/config/fragments/types.po b/source/fa/filter/source/config/fragments/types.po
index b023a21f864..b7551bcb376 100644
--- a/source/fa/filter/source/config/fragments/types.po
+++ b/source/fa/filter/source/config/fragments/types.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-08 15:11+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2015-11-11 20:42+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -296,8 +296,8 @@ msgctxt ""
"writer_MS_Word_2003_XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Word 2003 XML"
-msgstr "‏XML مایکروسافت وُرد 2003"
+msgid "Word 2003 XML"
+msgstr ""
#: writer_MS_Word_2007_XML.xcu
msgctxt ""
diff --git a/source/fa/fpicker/messages.po b/source/fa/fpicker/messages.po
index 7aff8cbabed..d70f6ee55db 100644
--- a/source/fa/fpicker/messages.po
+++ b/source/fa/fpicker/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2018-04-01 22:41+0000\n"
"Last-Translator: Hossein <hossein.ir@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -272,13 +272,13 @@ msgstr "رمز کردن با کلیدِ GPG"
#: fpicker/uiconfig/ui/foldernamedialog.ui:8
msgctxt "foldernamedialog|FolderNameDialog"
-msgid "Folder Name ?"
-msgstr "نام پوشه"
+msgid "Folder Name"
+msgstr ""
#: fpicker/uiconfig/ui/foldernamedialog.ui:91
msgctxt "foldernamedialog|label2"
-msgid "Na_me"
-msgstr "ن_ام"
+msgid "Na_me:"
+msgstr ""
#: fpicker/uiconfig/ui/foldernamedialog.ui:122
msgctxt "foldernamedialog|label1"
diff --git a/source/fa/officecfg/registry/data/org/openoffice/Office/UI.po b/source/fa/officecfg/registry/data/org/openoffice/Office/UI.po
index 2a4e0e9c9a7..120528b28f6 100644
--- a/source/fa/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/fa/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-22 13:17+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2016-12-01 15:27+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -27033,8 +27033,8 @@ msgctxt ""
"..WriterCommands.UserInterface.Commands..uno:TextAttributes\n"
"Label\n"
"value.text"
-msgid "Text Attributes"
-msgstr "مشخصه‌های متن"
+msgid "Text Attributes..."
+msgstr ""
#: WriterCommands.xcu
msgctxt ""
diff --git a/source/fa/readlicense_oo/docs.po b/source/fa/readlicense_oo/docs.po
index 7e38cce1420..39350aaf03a 100644
--- a/source/fa/readlicense_oo/docs.po
+++ b/source/fa/readlicense_oo/docs.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-04-17 15:54+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2016-03-21 12:35+0000\n"
"Last-Translator: Hossein <hossein.ir@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -117,7 +117,7 @@ msgctxt ""
"readme.xrm\n"
"macxiOSX\n"
"readmeitem.text"
-msgid "MacOSX 10.8 (Mountain Lion) or higher"
+msgid "MacOSX 10.9 (Mavericks) or higher"
msgstr ""
#: readme.xrm
diff --git a/source/fa/sc/messages.po b/source/fa/sc/messages.po
index 6835f7d8cf5..2551573d74c 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-12 14:40+0200\n"
"PO-Revision-Date: 2018-04-01 22:48+0000\n"
"Last-Translator: Eric Bright <bright.email@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1873,17 +1873,22 @@ msgid "Nested arrays are not supported."
msgstr "آرایه‌های تو در تو پشتیبانی نمی‌شوند."
#: sc/inc/globstr.hrc:390
+msgctxt "STR_ERR_LONG_BAD_ARRAY_CONTENT"
+msgid "Unsupported inline array content."
+msgstr ""
+
+#: sc/inc/globstr.hrc:391
#, fuzzy
msgctxt "STR_UNDO_TEXTTOCOLUMNS"
msgid "Text to Columns"
msgstr "متن به ستون‌ها"
-#: sc/inc/globstr.hrc:391
+#: sc/inc/globstr.hrc:392
msgctxt "STR_DOC_UPDATED"
msgid "Your spreadsheet has been updated with changes saved by other users."
msgstr "صفحه‌گسترده شما با تغییرات ذخیره شده توسط کاربران دیگر به‌هنگام شده است."
-#: sc/inc/globstr.hrc:392
+#: sc/inc/globstr.hrc:393
msgctxt "STR_DOC_WILLBESAVED"
msgid ""
"The spreadsheet must be saved now to activate sharing mode.\n"
@@ -1894,7 +1899,7 @@ msgstr ""
"\n"
"آیا مایلید ادامه دهید؟"
-#: sc/inc/globstr.hrc:393
+#: sc/inc/globstr.hrc:394
msgctxt "STR_DOC_WILLNOTBESAVED"
msgid ""
"Already resolved merge conflicts will be lost and your changes to the shared spreadsheet will not be saved.\n"
@@ -1905,7 +1910,7 @@ msgstr ""
"\n"
"آیا مایلید ادامه دهید؟"
-#: sc/inc/globstr.hrc:394
+#: sc/inc/globstr.hrc:395
msgctxt "STR_DOC_DISABLESHARED"
msgid ""
"Disabling shared mode of a spreadsheet hinders all other users of the shared spreadsheet to merge back their work.\n"
@@ -1916,7 +1921,7 @@ msgstr ""
"\n"
"آیا مایل به ادامه کار هستید؟"
-#: sc/inc/globstr.hrc:395
+#: sc/inc/globstr.hrc:396
msgctxt "STR_DOC_NOLONGERSHARED"
msgid ""
"This spreadsheet is no longer in shared mode.\n"
@@ -1927,7 +1932,7 @@ msgstr ""
"\n"
"صفحه گسترده خود را به صورت یک پرونده مجزا ذخیره کنید و تغییرات خود را به صورت دستی با صفحه اشتراکی ادغام نمائید."
-#: sc/inc/globstr.hrc:396
+#: sc/inc/globstr.hrc:397
msgctxt "STR_FILE_LOCKED_TRY_LATER"
msgid ""
"The shared spreadsheet file is locked due to a merge in progress by user: '%1'\n"
@@ -1938,7 +1943,7 @@ msgstr ""
"\n"
"حالت اشتراک یک پرونده قفل شده نمی‌تواند غیرفعال شود. بعداً دوباره تلاش کنید."
-#: sc/inc/globstr.hrc:397
+#: sc/inc/globstr.hrc:398
msgctxt "STR_FILE_LOCKED_SAVE_LATER"
msgid ""
"The shared spreadsheet file is locked due to a merge in progress by user: '%1'\n"
@@ -1949,149 +1954,149 @@ msgstr ""
"\n"
"برای ذخیره تغییرات خود بعداً سعی کنید."
-#: sc/inc/globstr.hrc:398
+#: sc/inc/globstr.hrc:399
msgctxt "STR_UNKNOWN_USER"
msgid "Unknown User"
msgstr "کاربر ناشناس"
-#: sc/inc/globstr.hrc:399
+#: sc/inc/globstr.hrc:400
msgctxt "STR_SHAPE_AUTOSHAPE"
msgid "AutoShape"
msgstr "شکل‌خودکار"
-#: sc/inc/globstr.hrc:400
+#: sc/inc/globstr.hrc:401
msgctxt "STR_SHAPE_RECTANGLE"
msgid "Rectangle"
msgstr "مستطیل"
-#: sc/inc/globstr.hrc:401
+#: sc/inc/globstr.hrc:402
msgctxt "STR_SHAPE_LINE"
msgid "Line"
msgstr "خط"
-#: sc/inc/globstr.hrc:402
+#: sc/inc/globstr.hrc:403
msgctxt "STR_SHAPE_OVAL"
msgid "Oval"
msgstr "بیضی"
-#: sc/inc/globstr.hrc:403
+#: sc/inc/globstr.hrc:404
msgctxt "STR_FORM_BUTTON"
msgid "Button"
msgstr "دکمه"
-#: sc/inc/globstr.hrc:404
+#: sc/inc/globstr.hrc:405
msgctxt "STR_FORM_CHECKBOX"
msgid "Check Box"
msgstr "جعبه انتخاب"
-#: sc/inc/globstr.hrc:405
+#: sc/inc/globstr.hrc:406
msgctxt "STR_FORM_OPTIONBUTTON"
msgid "Option Button"
msgstr "دکمه گزینه"
-#: sc/inc/globstr.hrc:406
+#: sc/inc/globstr.hrc:407
msgctxt "STR_FORM_LABEL"
msgid "Label"
msgstr "بر‌چسب"
-#: sc/inc/globstr.hrc:407
+#: sc/inc/globstr.hrc:408
msgctxt "STR_FORM_LISTBOX"
msgid "List Box"
msgstr "جعبه فهرست"
-#: sc/inc/globstr.hrc:408
+#: sc/inc/globstr.hrc:409
msgctxt "STR_FORM_GROUPBOX"
msgid "Group Box"
msgstr "جعبه گروه"
-#: sc/inc/globstr.hrc:409
+#: sc/inc/globstr.hrc:410
msgctxt "STR_FORM_DROPDOWN"
msgid "Drop Down"
msgstr "بازشدنی"
-#: sc/inc/globstr.hrc:410
+#: sc/inc/globstr.hrc:411
msgctxt "STR_FORM_SPINNER"
msgid "Spinner"
msgstr "چرخنده"
-#: sc/inc/globstr.hrc:411
+#: sc/inc/globstr.hrc:412
msgctxt "STR_FORM_SCROLLBAR"
msgid "Scroll Bar"
msgstr "نوار پیمایش"
-#: sc/inc/globstr.hrc:412
+#: sc/inc/globstr.hrc:413
msgctxt "STR_STYLE_FAMILY_CELL"
msgid "Cell Styles"
msgstr "سبک‌های خانه"
-#: sc/inc/globstr.hrc:413
+#: sc/inc/globstr.hrc:414
msgctxt "STR_STYLE_FAMILY_PAGE"
msgid "Page Styles"
msgstr "سبک‌های صفحه"
-#: sc/inc/globstr.hrc:414
+#: sc/inc/globstr.hrc:415
msgctxt "STR_ERR_DATAPILOTSOURCE"
msgid "Pivot table source data is invalid."
msgstr "داده منبع جدول محوری نامعتبر است."
-#: sc/inc/globstr.hrc:415
+#: sc/inc/globstr.hrc:416
msgctxt "STR_OPTIONS_WARN_SEPARATORS"
msgid "Because the current formula separator settings conflict with the locale, the formula separators have been reset to their default values."
msgstr "به دلیل تعارض تنظیمات جداکننده فرمول با ویژگی‌های محلی، جداکننده فرمول به حالت پیش‌گزیده خود بازگردانده شد."
-#: sc/inc/globstr.hrc:416
+#: sc/inc/globstr.hrc:417
msgctxt "STR_UNDO_INSERT_CURRENT_DATE"
msgid "Insert Current Date"
msgstr "درج تاریخ کنونی"
-#: sc/inc/globstr.hrc:417
+#: sc/inc/globstr.hrc:418
msgctxt "STR_UNDO_INSERT_CURRENT_TIME"
msgid "Insert Current Time"
msgstr "درج زمان کنونی"
-#: sc/inc/globstr.hrc:418
+#: sc/inc/globstr.hrc:419
#, fuzzy
msgctxt "STR_MANAGE_NAMES"
msgid "Manage Names..."
msgstr "نام محدوده‌ها"
-#: sc/inc/globstr.hrc:419
+#: sc/inc/globstr.hrc:420
msgctxt "STR_HEADER_NAME"
msgid "Name"
msgstr "نام"
-#: sc/inc/globstr.hrc:420
+#: sc/inc/globstr.hrc:421
msgctxt "STR_HEADER_RANGE_OR_EXPR"
msgid "Range or formula expression"
msgstr ""
-#: sc/inc/globstr.hrc:421
+#: sc/inc/globstr.hrc:422
#, fuzzy
msgctxt "STR_HEADER_SCOPE"
msgid "Scope"
msgstr "قلمرو"
-#: sc/inc/globstr.hrc:422
+#: sc/inc/globstr.hrc:423
msgctxt "STR_MULTI_SELECT"
msgid "(multiple)"
msgstr ""
-#: sc/inc/globstr.hrc:423
+#: sc/inc/globstr.hrc:424
msgctxt "STR_GLOBAL_SCOPE"
msgid "Document (Global)"
msgstr "سند (سراسری)"
-#: sc/inc/globstr.hrc:424
+#: sc/inc/globstr.hrc:425
msgctxt "STR_ERR_NAME_EXISTS"
msgid "Invalid name. Already in use for the selected scope."
msgstr ""
-#: sc/inc/globstr.hrc:425
+#: sc/inc/globstr.hrc:426
msgctxt "STR_ERR_NAME_INVALID"
msgid "Invalid name. Only use letters, numbers and underscore."
msgstr ""
-#: sc/inc/globstr.hrc:426
+#: sc/inc/globstr.hrc:427
msgctxt "STR_UNSAVED_EXT_REF"
msgid ""
"This Document contains external references to unsaved documents.\n"
@@ -2099,227 +2104,227 @@ msgid ""
"Do you want to continue?"
msgstr ""
-#: sc/inc/globstr.hrc:427
+#: sc/inc/globstr.hrc:428
msgctxt "STR_CLOSE_WITH_UNSAVED_REFS"
msgid "This Document is referenced by another document and not yet saved. Closing it without saving will result in data loss."
msgstr ""
-#: sc/inc/globstr.hrc:428
+#: sc/inc/globstr.hrc:429
msgctxt "STR_HEADER_RANGE"
msgid "Range"
msgstr "محدوده"
-#: sc/inc/globstr.hrc:429
+#: sc/inc/globstr.hrc:430
msgctxt "STR_HEADER_COND"
msgid "First Condition"
msgstr ""
-#: sc/inc/globstr.hrc:430
+#: sc/inc/globstr.hrc:431
#, fuzzy
msgctxt "STR_COND_CONDITION"
msgid "Cell value is"
msgstr "مقدار خانه"
-#: sc/inc/globstr.hrc:431
+#: sc/inc/globstr.hrc:432
msgctxt "STR_COND_COLORSCALE"
msgid "ColorScale"
msgstr ""
-#: sc/inc/globstr.hrc:432
+#: sc/inc/globstr.hrc:433
msgctxt "STR_COND_DATABAR"
msgid "DataBar"
msgstr ""
-#: sc/inc/globstr.hrc:433
+#: sc/inc/globstr.hrc:434
msgctxt "STR_COND_ICONSET"
msgid "IconSet"
msgstr ""
-#: sc/inc/globstr.hrc:434
+#: sc/inc/globstr.hrc:435
#, fuzzy
msgctxt "STR_COND_BETWEEN"
msgid "between"
msgstr "بین"
-#: sc/inc/globstr.hrc:435
+#: sc/inc/globstr.hrc:436
#, fuzzy
msgctxt "STR_COND_NOTBETWEEN"
msgid "not between"
msgstr "خارج"
-#: sc/inc/globstr.hrc:436
+#: sc/inc/globstr.hrc:437
msgctxt "STR_COND_UNIQUE"
msgid "unique"
msgstr ""
-#: sc/inc/globstr.hrc:437
+#: sc/inc/globstr.hrc:438
#, fuzzy
msgctxt "STR_COND_DUPLICATE"
msgid "duplicate"
msgstr "تکثیر"
-#: sc/inc/globstr.hrc:438
+#: sc/inc/globstr.hrc:439
#, fuzzy
msgctxt "STR_COND_FORMULA"
msgid "Formula is"
msgstr "فرمول"
-#: sc/inc/globstr.hrc:439
+#: sc/inc/globstr.hrc:440
msgctxt "STR_COND_TOP10"
msgid "Top Elements"
msgstr ""
-#: sc/inc/globstr.hrc:440
+#: sc/inc/globstr.hrc:441
msgctxt "STR_COND_BOTTOM10"
msgid "Bottom Elements"
msgstr ""
-#: sc/inc/globstr.hrc:441
+#: sc/inc/globstr.hrc:442
msgctxt "STR_COND_TOP_PERCENT"
msgid "Top Percent"
msgstr ""
-#: sc/inc/globstr.hrc:442
+#: sc/inc/globstr.hrc:443
msgctxt "STR_COND_DATE"
msgid "Date is"
msgstr ""
-#: sc/inc/globstr.hrc:443
+#: sc/inc/globstr.hrc:444
msgctxt "STR_COND_BOTTOM_PERCENT"
msgid "Bottom Percent"
msgstr ""
-#: sc/inc/globstr.hrc:444
+#: sc/inc/globstr.hrc:445
msgctxt "STR_COND_ABOVE_AVERAGE"
msgid "Above Average"
msgstr ""
-#: sc/inc/globstr.hrc:445
+#: sc/inc/globstr.hrc:446
msgctxt "STR_COND_BELOW_AVERAGE"
msgid "Below Average"
msgstr ""
-#: sc/inc/globstr.hrc:446
+#: sc/inc/globstr.hrc:447
msgctxt "STR_COND_ABOVE_EQUAL_AVERAGE"
msgid "Above or equal Average"
msgstr ""
-#: sc/inc/globstr.hrc:447
+#: sc/inc/globstr.hrc:448
msgctxt "STR_COND_BELOW_EQUAL_AVERAGE"
msgid "Below or equal Average"
msgstr ""
-#: sc/inc/globstr.hrc:448
+#: sc/inc/globstr.hrc:449
msgctxt "STR_COND_ERROR"
msgid "an Error code"
msgstr ""
-#: sc/inc/globstr.hrc:449
+#: sc/inc/globstr.hrc:450
msgctxt "STR_COND_NOERROR"
msgid "not an Error code"
msgstr ""
-#: sc/inc/globstr.hrc:450
+#: sc/inc/globstr.hrc:451
#, fuzzy
msgctxt "STR_COND_BEGINS_WITH"
msgid "Begins with"
msgstr "آغاز می‌شود با"
-#: sc/inc/globstr.hrc:451
+#: sc/inc/globstr.hrc:452
#, fuzzy
msgctxt "STR_COND_ENDS_WITH"
msgid "Ends with"
msgstr "پایان می‌یابد با"
-#: sc/inc/globstr.hrc:452
+#: sc/inc/globstr.hrc:453
#, fuzzy
msgctxt "STR_COND_CONTAINS"
msgid "Contains"
msgstr "شامل"
-#: sc/inc/globstr.hrc:453
+#: sc/inc/globstr.hrc:454
msgctxt "STR_COND_NOT_CONTAINS"
msgid "Not Contains"
msgstr ""
-#: sc/inc/globstr.hrc:454
+#: sc/inc/globstr.hrc:455
#, fuzzy
msgctxt "STR_COND_TODAY"
msgid "today"
msgstr "امروز"
-#: sc/inc/globstr.hrc:455
+#: sc/inc/globstr.hrc:456
#, fuzzy
msgctxt "STR_COND_YESTERDAY"
msgid "yesterday"
msgstr "دیروز،"
-#: sc/inc/globstr.hrc:456
+#: sc/inc/globstr.hrc:457
msgctxt "STR_COND_TOMORROW"
msgid "tomorrow"
msgstr ""
-#: sc/inc/globstr.hrc:457
+#: sc/inc/globstr.hrc:458
msgctxt "STR_COND_LAST7DAYS"
msgid "in the last 7 days"
msgstr ""
-#: sc/inc/globstr.hrc:458
+#: sc/inc/globstr.hrc:459
msgctxt "STR_COND_THISWEEK"
msgid "this week"
msgstr ""
-#: sc/inc/globstr.hrc:459
+#: sc/inc/globstr.hrc:460
msgctxt "STR_COND_LASTWEEK"
msgid "last week"
msgstr ""
-#: sc/inc/globstr.hrc:460
+#: sc/inc/globstr.hrc:461
msgctxt "STR_COND_NEXTWEEK"
msgid "next week"
msgstr ""
-#: sc/inc/globstr.hrc:461
+#: sc/inc/globstr.hrc:462
msgctxt "STR_COND_THISMONTH"
msgid "this month"
msgstr ""
-#: sc/inc/globstr.hrc:462
+#: sc/inc/globstr.hrc:463
msgctxt "STR_COND_LASTMONTH"
msgid "last month"
msgstr ""
-#: sc/inc/globstr.hrc:463
+#: sc/inc/globstr.hrc:464
msgctxt "STR_COND_NEXTMONTH"
msgid "next month"
msgstr ""
-#: sc/inc/globstr.hrc:464
+#: sc/inc/globstr.hrc:465
msgctxt "STR_COND_THISYEAR"
msgid "this year"
msgstr ""
-#: sc/inc/globstr.hrc:465
+#: sc/inc/globstr.hrc:466
msgctxt "STR_COND_LASTYEAR"
msgid "last year"
msgstr ""
-#: sc/inc/globstr.hrc:466
+#: sc/inc/globstr.hrc:467
msgctxt "STR_COND_NEXTYEAR"
msgid "next year"
msgstr ""
-#: sc/inc/globstr.hrc:467
+#: sc/inc/globstr.hrc:468
msgctxt "STR_COND_AND"
msgid "and"
msgstr "و"
-#: sc/inc/globstr.hrc:468
+#: sc/inc/globstr.hrc:469
msgctxt "STR_ERR_CONDFORMAT_PROTECTED"
msgid "Conditional Formats can not be created, deleted or changed in protected sheets."
msgstr ""
-#: sc/inc/globstr.hrc:469
+#: sc/inc/globstr.hrc:470
msgctxt "STR_EDIT_EXISTING_COND_FORMATS"
msgid ""
"The selected cell already contains conditional formatting. You can either edit the existing conditional format or you define a new overlapping conditional format.\n"
@@ -2327,7 +2332,7 @@ msgid ""
" Do you want to edit the existing conditional format?"
msgstr ""
-#: sc/inc/globstr.hrc:470
+#: sc/inc/globstr.hrc:471
msgctxt "STR_QUERY_FORMULA_RECALC_ONLOAD_ODS"
msgid ""
"This document was last saved by an application other than %PRODUCTNAME. Some formula cells may produce different results when recalculated.\n"
@@ -2335,7 +2340,7 @@ msgid ""
"Do you want to recalculate all formula cells in this document now?"
msgstr ""
-#: sc/inc/globstr.hrc:471
+#: sc/inc/globstr.hrc:472
msgctxt "STR_QUERY_FORMULA_RECALC_ONLOAD_XLS"
msgid ""
"This document was last saved by Excel. Some formula cells may produce different results when recalculated.\n"
@@ -2343,85 +2348,85 @@ msgid ""
"Do you want to recalculate all formula cells now?"
msgstr ""
-#: sc/inc/globstr.hrc:472
+#: sc/inc/globstr.hrc:473
msgctxt "STR_NO_INSERT_DELETE_OVER_PIVOT_TABLE"
msgid "You cannot insert or delete cells when the affected range intersects with pivot table."
msgstr ""
-#: sc/inc/globstr.hrc:473
+#: sc/inc/globstr.hrc:474
msgctxt "STR_DPFIELD_GROUP_BY_SECONDS"
msgid "Seconds"
msgstr "ثانیه"
-#: sc/inc/globstr.hrc:474
+#: sc/inc/globstr.hrc:475
msgctxt "STR_DPFIELD_GROUP_BY_MINUTES"
msgid "Minutes"
msgstr "دقیقه"
-#: sc/inc/globstr.hrc:475
+#: sc/inc/globstr.hrc:476
msgctxt "STR_DPFIELD_GROUP_BY_HOURS"
msgid "Hours"
msgstr "ساعت"
-#: sc/inc/globstr.hrc:476
+#: sc/inc/globstr.hrc:477
msgctxt "STR_DPFIELD_GROUP_BY_DAYS"
msgid "Days"
msgstr "روز"
-#: sc/inc/globstr.hrc:477
+#: sc/inc/globstr.hrc:478
#, fuzzy
msgctxt "STR_DPFIELD_GROUP_BY_MONTHS"
msgid "Months"
msgstr "ماه"
-#: sc/inc/globstr.hrc:478
+#: sc/inc/globstr.hrc:479
#, fuzzy
msgctxt "STR_DPFIELD_GROUP_BY_QUARTERS"
msgid "Quarters"
msgstr "یک چهارم"
-#: sc/inc/globstr.hrc:479
+#: sc/inc/globstr.hrc:480
#, fuzzy
msgctxt "STR_DPFIELD_GROUP_BY_YEARS"
msgid "Years"
msgstr "سال"
-#: sc/inc/globstr.hrc:480
+#: sc/inc/globstr.hrc:481
#, fuzzy
msgctxt "STR_INVALIDVAL"
msgid "Invalid target value."
msgstr "مقدار هدف نامعتبر."
-#: sc/inc/globstr.hrc:481
+#: sc/inc/globstr.hrc:482
#, fuzzy
msgctxt "STR_INVALIDVAR"
msgid "Undefined name for variable cell."
msgstr "نام تعریف نشده برای خانهٔ متغیر."
-#: sc/inc/globstr.hrc:482
+#: sc/inc/globstr.hrc:483
#, fuzzy
msgctxt "STR_INVALIDFORM"
msgid "Undefined name as formula cell."
msgstr "نام تعریف نشده برای سلول فرمول‌."
-#: sc/inc/globstr.hrc:483
+#: sc/inc/globstr.hrc:484
msgctxt "STR_NOFORMULA"
msgid "Formula cell must contain a formula."
msgstr ""
-#: sc/inc/globstr.hrc:484
+#: sc/inc/globstr.hrc:485
#, fuzzy
msgctxt "STR_INVALIDINPUT"
msgid "Invalid input."
msgstr "ورودی نامعتبر."
-#: sc/inc/globstr.hrc:485
+#: sc/inc/globstr.hrc:486
#, fuzzy
msgctxt "STR_INVALIDCONDITION"
msgid "Invalid condition."
msgstr "شرط نامعتبر."
-#: sc/inc/globstr.hrc:486
+#: sc/inc/globstr.hrc:487
msgctxt "STR_QUERYREMOVE"
msgid ""
"Should the entry\n"
@@ -2432,137 +2437,137 @@ msgstr ""
"#\n"
"حذف شود؟"
-#: sc/inc/globstr.hrc:487
+#: sc/inc/globstr.hrc:488
msgctxt "STR_COPYLIST"
msgid "Copy List"
msgstr "نسخه‌برداری از فهرست"
-#: sc/inc/globstr.hrc:488
+#: sc/inc/globstr.hrc:489
msgctxt "STR_COPYFROM"
msgid "List from"
msgstr "فهرست از"
-#: sc/inc/globstr.hrc:489
+#: sc/inc/globstr.hrc:490
msgctxt "STR_COPYERR"
msgid "Cells without text have been ignored."
msgstr "خانه‌های بدون متن نادیده گرفته شدند."
-#: sc/inc/globstr.hrc:490
+#: sc/inc/globstr.hrc:491
#, c-format
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%s-click to follow hyperlink:"
msgstr ""
-#: sc/inc/globstr.hrc:491
+#: sc/inc/globstr.hrc:492
msgctxt "STR_CLICKHYPERLINK"
msgid "click to open hyperlink:"
msgstr ""
-#: sc/inc/globstr.hrc:492
+#: sc/inc/globstr.hrc:493
msgctxt "STR_PRINT_PREVIEW_NODATA"
msgid "No Data"
msgstr ""
-#: sc/inc/globstr.hrc:493
+#: sc/inc/globstr.hrc:494
msgctxt "STR_PRINT_PREVIEW_EMPTY_RANGE"
msgid "Print Range Empty"
msgstr ""
-#: sc/inc/globstr.hrc:494
+#: sc/inc/globstr.hrc:495
#, fuzzy
msgctxt "STR_UNDO_CONDFORMAT"
msgid "Conditional Format"
msgstr "قالب‌بندی شرطی"
-#: sc/inc/globstr.hrc:495
+#: sc/inc/globstr.hrc:496
#, fuzzy
msgctxt "STR_UNDO_CONDFORMAT_LIST"
msgid "Conditional Formats"
msgstr "قالب‌بندی شرطی"
-#: sc/inc/globstr.hrc:496
+#: sc/inc/globstr.hrc:497
msgctxt "STR_UNDO_FORMULA_TO_VALUE"
msgid "Convert Formula To Value"
msgstr ""
-#: sc/inc/globstr.hrc:497
+#: sc/inc/globstr.hrc:498
msgctxt "STR_UNQUOTED_STRING"
msgid "Strings without quotes are interpreted as column/row labels."
msgstr ""
-#: sc/inc/globstr.hrc:498
+#: sc/inc/globstr.hrc:499
msgctxt "STR_ENTER_VALUE"
msgid "Enter a value!"
msgstr ""
-#: sc/inc/globstr.hrc:499
+#: sc/inc/globstr.hrc:500
msgctxt "STR_TABLE_COUNT"
msgid "Sheet %1 of %2"
msgstr ""
-#: sc/inc/globstr.hrc:500
+#: sc/inc/globstr.hrc:501
msgctxt "STR_FUNCTIONS_FOUND"
msgid "%1 and %2 more"
msgstr ""
-#: sc/inc/globstr.hrc:501
+#: sc/inc/globstr.hrc:502
msgctxt "STR_GENERAL"
msgid "General"
msgstr "عمومی"
-#: sc/inc/globstr.hrc:502
+#: sc/inc/globstr.hrc:503
msgctxt "STR_NUMBER"
msgid "Number"
msgstr "عدد"
-#: sc/inc/globstr.hrc:503
+#: sc/inc/globstr.hrc:504
#, fuzzy
msgctxt "STR_PERCENT"
msgid "Percent"
msgstr "درصد"
-#: sc/inc/globstr.hrc:504
+#: sc/inc/globstr.hrc:505
msgctxt "STR_CURRENCY"
msgid "Currency"
msgstr "پول"
-#: sc/inc/globstr.hrc:505
+#: sc/inc/globstr.hrc:506
msgctxt "STR_DATE"
msgid "Date"
msgstr "تاریخ"
-#: sc/inc/globstr.hrc:506
+#: sc/inc/globstr.hrc:507
msgctxt "STR_TIME"
msgid "Time"
msgstr "زمان"
-#: sc/inc/globstr.hrc:507
+#: sc/inc/globstr.hrc:508
msgctxt "STR_SCIENTIFIC"
msgid "Scientific"
msgstr ""
-#: sc/inc/globstr.hrc:508
+#: sc/inc/globstr.hrc:509
#, fuzzy
msgctxt "STR_FRACTION"
msgid "Fraction"
msgstr "تابع"
-#: sc/inc/globstr.hrc:509
+#: sc/inc/globstr.hrc:510
msgctxt "STR_BOOLEAN_VALUE"
msgid "Boolean Value"
msgstr ""
-#: sc/inc/globstr.hrc:510
+#: sc/inc/globstr.hrc:511
msgctxt "STR_TEXT"
msgid "Text"
msgstr "متن"
-#: sc/inc/globstr.hrc:511
+#: sc/inc/globstr.hrc:512
msgctxt "STR_QUERY_PIVOTTABLE_DELTAB"
msgid "The selected sheet(s) contain source data of related pivot tables that will be lost. Are you sure you want to delete the selected sheet(s)?"
msgstr ""
-#: sc/inc/globstr.hrc:512
+#: sc/inc/globstr.hrc:513
msgctxt "STR_ERR_NAME_INVALID_CELL_REF"
msgid "Invalid name. Reference to a cell, or a range of cells not allowed."
msgstr ""
@@ -10841,10 +10846,9 @@ msgid "Mode"
msgstr "حالت"
#: sc/inc/scfuncs.hrc:3010
-#, fuzzy
msgctxt "SC_OPCODE_T_TEST"
-msgid "Mode specifies the number of distribution tails to return. 1= one-tailed, 2 = two-tailed distribution"
-msgstr "حالت، تعداد انتهایی توزیع‌ها را برای بازگشت مشخص می‌کند. یک برابر یا یک بخش انتهائی و دو برابر با دو بخش انتهائی یک توزیع می‌باشد که بازگشت داده می‌شود."
+msgid "Mode specifies the number of distribution tails to return. 1 = one-tailed, 2 = two-tailed distribution"
+msgstr ""
#: sc/inc/scfuncs.hrc:3011
msgctxt "SC_OPCODE_T_TEST"
@@ -10891,10 +10895,9 @@ msgid "Mode"
msgstr "حالت"
#: sc/inc/scfuncs.hrc:3024
-#, fuzzy
msgctxt "SC_OPCODE_T_TEST_MS"
-msgid "Mode specifies the number of distribution tails to return. 1= one-tailed, 2 = two-tailed distribution"
-msgstr "حالت، تعداد انتهایی توزیع‌ها را برای بازگشت مشخص می‌کند. یک برابر یا یک بخش انتهائی و دو برابر با دو بخش انتهائی یک توزیع می‌باشد که بازگشت داده می‌شود."
+msgid "Mode specifies the number of distribution tails to return. 1 = one-tailed, 2 = two-tailed distribution"
+msgstr ""
#: sc/inc/scfuncs.hrc:3025
msgctxt "SC_OPCODE_T_TEST_MS"
@@ -18836,23 +18839,23 @@ msgctxt "mergecellsdialog|MergeCellsDialog"
msgid "Merge Cells"
msgstr "ادغام خانه‌ها"
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:81
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:84
msgctxt "mergecellsdialog|label"
msgid "Some cells are not empty."
msgstr ""
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:96
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:99
#, fuzzy
msgctxt "mergecellsdialog|move-cells-radio"
msgid "Move the contents of the hidden cells into the first cell"
msgstr "آیا محتویات خانه‌های مخفی به خانهٔ اول منتقل شود؟"
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:112
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:115
msgctxt "mergecellsdialog|empty-cells-radio"
msgid "Empty the contents of the hidden cells"
msgstr ""
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:128
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:131
msgctxt "mergecellsdialog|keep-content-radio"
msgid "Keep the contents of the hidden cells"
msgstr ""
diff --git a/source/fa/sd/messages.po b/source/fa/sd/messages.po
index 96c1ac6b335..8b1a95120c2 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2018-03-11 17:14+0000\n"
"Last-Translator: Hossein <hossein.ir@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -16,178 +16,178 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1520788497.000000\n"
-#: sd/inc/DocumentRenderer.hrc:29
+#: sd/inc/DocumentRenderer.hrc:27
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Slides"
msgstr "اسلاید"
-#: sd/inc/DocumentRenderer.hrc:30
+#: sd/inc/DocumentRenderer.hrc:28
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Handouts"
msgstr "بروشور"
-#: sd/inc/DocumentRenderer.hrc:31
+#: sd/inc/DocumentRenderer.hrc:29
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Notes"
msgstr "یادداشت‌ها"
-#: sd/inc/DocumentRenderer.hrc:32
+#: sd/inc/DocumentRenderer.hrc:30
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Outline"
msgstr "رئوس مطالب"
-#: sd/inc/DocumentRenderer.hrc:37
+#: sd/inc/DocumentRenderer.hrc:35
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "According to layout"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:38
+#: sd/inc/DocumentRenderer.hrc:36
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "1"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:39
+#: sd/inc/DocumentRenderer.hrc:37
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "2"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:40
+#: sd/inc/DocumentRenderer.hrc:38
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "3"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:41
+#: sd/inc/DocumentRenderer.hrc:39
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "4"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:42
+#: sd/inc/DocumentRenderer.hrc:40
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "6"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:43
+#: sd/inc/DocumentRenderer.hrc:41
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "9"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:48
+#: sd/inc/DocumentRenderer.hrc:46
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_ORDER_CHOICES"
msgid "Left to right, then down"
msgstr "چپ به راست، سپس پائین"
-#: sd/inc/DocumentRenderer.hrc:49
+#: sd/inc/DocumentRenderer.hrc:47
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_ORDER_CHOICES"
msgid "Top to bottom, then right"
msgstr "بالا به پائین، سپس راست"
-#: sd/inc/DocumentRenderer.hrc:54
+#: sd/inc/DocumentRenderer.hrc:52
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Original colors"
msgstr "رنگ‌های اصلی"
-#: sd/inc/DocumentRenderer.hrc:55
+#: sd/inc/DocumentRenderer.hrc:53
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Grayscale"
msgstr "سایه‌های خاکستری"
-#: sd/inc/DocumentRenderer.hrc:56
+#: sd/inc/DocumentRenderer.hrc:54
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Black & white"
msgstr "سیاه و سفید"
-#: sd/inc/DocumentRenderer.hrc:61
+#: sd/inc/DocumentRenderer.hrc:59
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Original size"
msgstr "اندازه اصلی"
-#: sd/inc/DocumentRenderer.hrc:62
+#: sd/inc/DocumentRenderer.hrc:60
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Fit to printable page"
msgstr "تطابق با صفحه قابل چاپ"
-#: sd/inc/DocumentRenderer.hrc:63
+#: sd/inc/DocumentRenderer.hrc:61
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Distribute on multiple sheets of paper"
msgstr "توزیع بر روی چند صفحه کاغذ"
-#: sd/inc/DocumentRenderer.hrc:64
+#: sd/inc/DocumentRenderer.hrc:62
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Tile sheet of paper with repeated slides"
msgstr "کاشی کردن کاغذ با اسلایدهای تکراری"
-#: sd/inc/DocumentRenderer.hrc:69
+#: sd/inc/DocumentRenderer.hrc:67
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Original size"
msgstr "اندازه اصلی"
-#: sd/inc/DocumentRenderer.hrc:70
+#: sd/inc/DocumentRenderer.hrc:68
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Fit to printable page"
msgstr "تطابق با صفحه قابل چاپ"
-#: sd/inc/DocumentRenderer.hrc:71
+#: sd/inc/DocumentRenderer.hrc:69
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Distribute on multiple sheets of paper"
msgstr "توزیع بر روی چند صفحه کاغذ"
-#: sd/inc/DocumentRenderer.hrc:72
+#: sd/inc/DocumentRenderer.hrc:70
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Tile sheet of paper with repeated pages"
msgstr "کاشی کردن کاغذ با صفحات تکراری"
-#: sd/inc/DocumentRenderer.hrc:77
+#: sd/inc/DocumentRenderer.hrc:75
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "All pages"
msgstr "همه"
-#: sd/inc/DocumentRenderer.hrc:78
+#: sd/inc/DocumentRenderer.hrc:76
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "Front sides / right pages"
msgstr "طرف جلو / صفحات سمت راست"
-#: sd/inc/DocumentRenderer.hrc:79
+#: sd/inc/DocumentRenderer.hrc:77
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "Back sides / left pages"
msgstr "طرف پشت / صفحات سمت چپ"
-#: sd/inc/DocumentRenderer.hrc:84
+#: sd/inc/DocumentRenderer.hrc:82
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~All slides"
msgstr "~همه اسلایدها"
-#: sd/inc/DocumentRenderer.hrc:85
+#: sd/inc/DocumentRenderer.hrc:83
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~Slides"
msgstr "اسلاید"
-#: sd/inc/DocumentRenderer.hrc:86
+#: sd/inc/DocumentRenderer.hrc:84
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Se~lection"
msgstr "~انتخاب"
-#: sd/inc/DocumentRenderer.hrc:91
+#: sd/inc/DocumentRenderer.hrc:89
#, fuzzy
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~All pages"
msgstr "~همه صفحات"
-#: sd/inc/DocumentRenderer.hrc:92
+#: sd/inc/DocumentRenderer.hrc:90
#, fuzzy
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Pa~ges"
msgstr "صفحه"
-#: sd/inc/DocumentRenderer.hrc:93
+#: sd/inc/DocumentRenderer.hrc:91
#, fuzzy
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Se~lection"
diff --git a/source/fa/svx/messages.po b/source/fa/svx/messages.po
index c80067af503..d09706bf7ce 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: 2018-05-16 16:53+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+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"
@@ -5459,7 +5459,7 @@ msgstr ""
#: svx/uiconfig/ui/safemodedialog.ui:432
msgctxt "safemodedialog|btn_create_zip"
-msgid "Create Zip Archive from User Profile"
+msgid "Archive User Profile"
msgstr ""
#: svx/uiconfig/ui/safemodedialog.ui:445
@@ -9137,9 +9137,9 @@ msgid "Red"
msgstr "قرمز"
#: include/svx/strings.hrc:565
-msgctxt "RID_SVXSTR_COLOR_VIOLET"
-msgid "Violet"
-msgstr "بنفش"
+msgctxt "RID_SVXSTR_COLOR_MAGENTA"
+msgid "Magenta"
+msgstr "سرخابی"
#: include/svx/strings.hrc:566
msgctxt "RID_SVXSTR_COLOR_PURPLE"
@@ -9204,8 +9204,8 @@ msgid "Light Red"
msgstr "قرمز روشن"
#: include/svx/strings.hrc:579
-msgctxt "RID_SVXSTR_COLOR_LIGHTVIOLET"
-msgid "Light Violet"
+msgctxt "RID_SVXSTR_COLOR_LIGHTMAGENTA"
+msgid "Light Magenta"
msgstr ""
#: include/svx/strings.hrc:580
@@ -9271,8 +9271,8 @@ msgid "Dark Red"
msgstr "قرمز تیره"
#: include/svx/strings.hrc:593
-msgctxt "RID_SVXSTR_COLOR_DARKVIOLET1"
-msgid "Dark Violet"
+msgctxt "RID_SVXSTR_COLOR_DARKMAGENTA"
+msgid "Dark Magenta"
msgstr ""
#: include/svx/strings.hrc:594
@@ -9307,55 +9307,55 @@ msgstr ""
#. Elements of the Tonal color palette
#: include/svx/strings.hrc:601
+msgctxt "RID_SVXSTR_COLOR_VIOLET"
+msgid "Violet"
+msgstr "بنفش"
+
+#: include/svx/strings.hrc:602
msgctxt "RID_SVXSTR_COLOR_VIOLET_OUG"
msgid "Violet (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:602
+#: include/svx/strings.hrc:603
msgctxt "RID_SVXSTR_COLOR_BLUE_OUG"
msgid "Blue (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:603
+#: include/svx/strings.hrc:604
msgctxt "RID_SVXSTR_COLOR_AZURE_OUG"
msgid "Azure (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:604
+#: include/svx/strings.hrc:605
msgctxt "RID_SVXSTR_COLOR_SPRINGGREEN_OUG"
msgid "Spring Green (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:605
+#: include/svx/strings.hrc:606
msgctxt "RID_SVXSTR_COLOR_GREEN_OUG"
msgid "Green (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:606
+#: include/svx/strings.hrc:607
msgctxt "RID_SVXSTR_COLOR_CHARTREUSEGREEN_OUG"
msgid "Chartreuse Green (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:607
+#: include/svx/strings.hrc:608
msgctxt "RID_SVXSTR_COLOR_ORANGE_OUG"
msgid "Orange (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:608
+#: include/svx/strings.hrc:609
msgctxt "RID_SVXSTR_COLOR_RED_OUG"
msgid "Red (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:609
+#: include/svx/strings.hrc:610
msgctxt "RID_SVXSTR_COLOR_ROSE_OUG"
msgid "Rose (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:610
-msgctxt "RID_SVXSTR_COLOR_MAGENTA"
-msgid "Magenta"
-msgstr "سرخابی"
-
#: include/svx/strings.hrc:611
msgctxt "RID_SVXSTR_COLOR_AZURE"
msgid "Azure"
@@ -12584,12 +12584,12 @@ msgstr ""
#: include/svx/strings.hrc:1273
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_6"
-msgid "Check mark bullets"
+msgid "Cross mark bullets"
msgstr ""
#: include/svx/strings.hrc:1274
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_7"
-msgid "Tick mark bullets"
+msgid "Check mark bullets"
msgstr ""
#: include/svx/strings.hrc:1275
diff --git a/source/fa/sw/messages.po b/source/fa/sw/messages.po
index 26674cd5e30..572df2378f6 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: 2018-05-22 13:17+0200\n"
+"POT-Creation-Date: 2018-06-12 14:41+0200\n"
"PO-Revision-Date: 2018-04-01 22:55+0000\n"
"Last-Translator: Eric Bright <bright.email@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1212,13 +1212,13 @@ msgstr "نقل قول"
#: sw/inc/strings.hrc:172
msgctxt "STR_POOLCOLL_TOX_ILLUSH"
-msgid "Illustration Index Heading"
-msgstr "سرنویس نمایهٔ تصاویر"
+msgid "Figure Index Heading"
+msgstr ""
#: sw/inc/strings.hrc:173
msgctxt "STR_POOLCOLL_TOX_ILLUS1"
-msgid "Illustration Index 1"
-msgstr "نمایهٔ تصاویر ۱"
+msgid "Figure Index 1"
+msgstr ""
#: sw/inc/strings.hrc:174
#, fuzzy
@@ -3700,10 +3700,9 @@ msgid "Table of Objects"
msgstr ""
#: sw/inc/strings.hrc:672
-#, fuzzy
msgctxt "STR_TOX_ILL"
-msgid "Illustration Index"
-msgstr "نمایهٔ تصاویر ۱"
+msgid "Table of Figures"
+msgstr ""
#: sw/inc/strings.hrc:673
#, c-format
@@ -9701,81 +9700,81 @@ msgctxt "footnotepage|label5"
msgid "Continuation Notice"
msgstr "اعلان ادامه"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:49
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:55
#, fuzzy
msgctxt "footnotesendnotestabpage|ftnntnum"
msgid "_Restart numbering"
msgstr "شروع مجدد شماره‌گذاری"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:91
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:93
#, fuzzy
msgctxt "footnotesendnotestabpage|ftnoffset_label"
msgid "_Start at:"
msgstr "آ~غاز از"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:112
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:111
msgctxt "footnotesendnotestabpage|ftnntnumfmt"
msgid "Custom _format"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:155
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:150
#, fuzzy
msgctxt "footnotesendnotestabpage|ftnsuffix_label"
msgid "Aft_er:"
msgstr "بعد"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:199
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:188
#, fuzzy
msgctxt "footnotesendnotestabpage|ftnprefix_label"
msgid "Be_fore:"
msgstr "قبل"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:228
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:212
msgctxt "footnotesendnotestabpage|ftnntattextend"
msgid "Collec_t at end of text"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:252
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:234
#, fuzzy
msgctxt "footnotesendnotestabpage|label1"
msgid "Footnotes"
msgstr "پانویس"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:289
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:271
msgctxt "footnotesendnotestabpage|endntattextend"
msgid "C_ollect at end of section"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:315
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:295
#, fuzzy
msgctxt "footnotesendnotestabpage|endntnum"
msgid "_Restart numbering"
msgstr "شروع مجدد شماره‌گذاری"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:357
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:333
#, fuzzy
msgctxt "footnotesendnotestabpage|endoffset_label"
msgid "_Start at:"
msgstr "آ~غاز از"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:378
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:351
msgctxt "footnotesendnotestabpage|endntnumfmt"
msgid "_Custom format"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:421
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:390
#, fuzzy
msgctxt "footnotesendnotestabpage|endsuffix_label"
msgid "Aft_er:"
msgstr "بعد"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:465
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:428
#, fuzzy
msgctxt "footnotesendnotestabpage|endprefix_label"
msgid "Be_fore:"
msgstr "قبل"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:500
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:458
#, fuzzy
msgctxt "footnotesendnotestabpage|label2"
msgid "Endnotes"
@@ -9808,29 +9807,29 @@ msgctxt "formatsectiondialog|notes"
msgid "Footnotes/Endnotes"
msgstr "~پانویس..."
-#: sw/uiconfig/swriter/ui/formattablepage.ui:63
+#: sw/uiconfig/swriter/ui/formattablepage.ui:77
#, fuzzy
msgctxt "formattablepage|nameft"
msgid "_Name"
msgstr "نام"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:79
+#: sw/uiconfig/swriter/ui/formattablepage.ui:91
#, fuzzy
msgctxt "formattablepage|widthft"
msgid "W_idth"
msgstr "عرض"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:110
+#: sw/uiconfig/swriter/ui/formattablepage.ui:120
msgctxt "formattablepage|relwidth"
msgid "Relati_ve"
msgstr ""
-#: sw/uiconfig/swriter/ui/formattablepage.ui:155
+#: sw/uiconfig/swriter/ui/formattablepage.ui:160
msgctxt "formattablepage|label45"
msgid "Properties"
msgstr "ویژگی‌ها"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:194
+#: sw/uiconfig/swriter/ui/formattablepage.ui:195
#, fuzzy
msgctxt "formattablepage|leftft"
msgid "Lef_t"
@@ -9842,71 +9841,71 @@ msgctxt "formattablepage|rightft"
msgid "Ri_ght"
msgstr "راست"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:228
+#: sw/uiconfig/swriter/ui/formattablepage.ui:226
#, fuzzy
msgctxt "formattablepage|aboveft"
msgid "_Above"
msgstr "بالا"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:245
+#: sw/uiconfig/swriter/ui/formattablepage.ui:241
#, fuzzy
msgctxt "formattablepage|belowft"
msgid "_Below"
msgstr "پائین"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:320
+#: sw/uiconfig/swriter/ui/formattablepage.ui:311
msgctxt "formattablepage|label46"
msgid "Spacing"
msgstr "فاصله‌گذاری"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:362
+#: sw/uiconfig/swriter/ui/formattablepage.ui:349
#, fuzzy
msgctxt "formattablepage|full"
msgid "A_utomatic"
msgstr "خودکار"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:380
+#: sw/uiconfig/swriter/ui/formattablepage.ui:365
#, fuzzy
msgctxt "formattablepage|left"
msgid "_Left"
msgstr "چپ"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:398
+#: sw/uiconfig/swriter/ui/formattablepage.ui:381
#, fuzzy
msgctxt "formattablepage|fromleft"
msgid "_From left"
msgstr "از چپ"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:416
+#: sw/uiconfig/swriter/ui/formattablepage.ui:397
#, fuzzy
msgctxt "formattablepage|right"
msgid "R_ight"
msgstr "راست"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:435
+#: sw/uiconfig/swriter/ui/formattablepage.ui:413
#, fuzzy
msgctxt "formattablepage|center"
msgid "_Center"
msgstr "مرکز"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:453
+#: sw/uiconfig/swriter/ui/formattablepage.ui:429
#, fuzzy
msgctxt "formattablepage|free"
msgid "_Manual"
msgstr "دستی"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:478
+#: sw/uiconfig/swriter/ui/formattablepage.ui:452
msgctxt "formattablepage|label43"
msgid "Alignment"
msgstr "ردیف کردن"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:522
+#: sw/uiconfig/swriter/ui/formattablepage.ui:491
#, fuzzy
msgctxt "formattablepage|label53"
msgid "Text _direction"
msgstr "تصحیح متن"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:553
+#: sw/uiconfig/swriter/ui/formattablepage.ui:519
#, fuzzy
msgctxt "formattablepage|label44"
msgid "Properties "
@@ -10293,25 +10292,30 @@ msgctxt "headerfootermenu|insert_pagenumber"
msgid "Insert Page Number"
msgstr ""
-#: sw/uiconfig/swriter/ui/indentpage.ui:52
+#: sw/uiconfig/swriter/ui/headerfootermenu.ui:42
+msgctxt "headerfootermenu|insert_pagecount"
+msgid "Insert Page Count"
+msgstr ""
+
+#: sw/uiconfig/swriter/ui/indentpage.ui:57
#, fuzzy
msgctxt "indentpage|label1"
msgid "_Before section"
msgstr "قبل از بخش"
-#: sw/uiconfig/swriter/ui/indentpage.ui:67
+#: sw/uiconfig/swriter/ui/indentpage.ui:71
#, fuzzy
msgctxt "indentpage|label3"
msgid "_After section"
msgstr "بعد از بخش"
-#: sw/uiconfig/swriter/ui/indentpage.ui:113
+#: sw/uiconfig/swriter/ui/indentpage.ui:115
#, fuzzy
msgctxt "indentpage|label2"
msgid "Indent"
msgstr "تورفتگی‌ها"
-#: sw/uiconfig/swriter/ui/indentpage.ui:142
+#: sw/uiconfig/swriter/ui/indentpage.ui:155
msgctxt "indentpage|preview-atkobject"
msgid "Example"
msgstr "مثال"
@@ -14111,7 +14115,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:68
msgctxt "optcompatpage|format"
-msgid "MS Word-compatible trailing blanks"
+msgid "Word-compatible trailing blanks"
msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:69
@@ -14121,7 +14125,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:70
msgctxt "optcompatpage|format"
-msgid "A database field (e.g., MailMerge) with empty value hides its paragraph"
+msgid "Hide paragraphs of database fields (e.g., mail merge) with an empty value"
msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:71
@@ -17033,134 +17037,134 @@ msgctxt "tableproperties|background"
msgid "Background"
msgstr "پس‌زمینه"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:25
-msgctxt "tabletextflowpage|liststore1"
-msgid "Horizontal"
-msgstr "افقی"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:29
-msgctxt "tabletextflowpage|liststore1"
-msgid "Vertical"
-msgstr "عمودی"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:33
-msgctxt "tabletextflowpage|liststore1"
-msgid "Use superordinate object settings"
-msgstr "استفاده از تنظیمات شیء مافوق"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:47
-msgctxt "tabletextflowpage|liststore2"
-msgid "Top"
-msgstr "بالا"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:51
-#, fuzzy
-msgctxt "tabletextflowpage|liststore2"
-msgid "Centered"
-msgstr "وسط‌چین"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:55
-msgctxt "tabletextflowpage|liststore2"
-msgid "Bottom"
-msgstr "پایین"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:97
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:53
#, fuzzy
msgctxt "tabletextflowpage|break"
msgid "_Break"
msgstr "~شکستن"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:112
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:68
#, fuzzy
msgctxt "tabletextflowpage|page"
msgid "_Page"
msgstr "صفحه"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:132
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:87
#, fuzzy
msgctxt "tabletextflowpage|column"
msgid "Col_umn"
msgstr "ستون"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:151
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:106
#, fuzzy
msgctxt "tabletextflowpage|before"
msgid "Be_fore"
msgstr "قبل"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:171
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:125
#, fuzzy
msgctxt "tabletextflowpage|after"
msgid "_After"
msgstr "بعد"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:203
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:158
#, fuzzy
msgctxt "tabletextflowpage|pagestyle"
msgid "With Page St_yle"
msgstr "ویرایش سبک صفحه"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:224
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:177
#, fuzzy
msgctxt "tabletextflowpage|pagenoft"
msgid "Page _number"
msgstr "شمارهٔ صفحه"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:257
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:213
#, fuzzy
msgctxt "tabletextflowpage|pagestylelb-atkobject"
msgid "With Page Style"
msgstr "ویرایش سبک صفحه"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:274
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:230
msgctxt "tabletextflowpage|split"
msgid "Allow _table to split across pages and columns"
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:289
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:245
#, fuzzy
msgctxt "tabletextflowpage|splitrow"
msgid "Allow row to break a_cross pages and columns"
msgstr "مجاز بودن شکست سطری در صفحات و ستون‌ها"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:306
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:262
#, fuzzy
msgctxt "tabletextflowpage|keep"
msgid "_Keep with next paragraph"
msgstr "نگه داشتن کنار بند بعدی"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:328
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:284
msgctxt "tabletextflowpage|label40"
msgid "Text _orientation"
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:361
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:298
+msgctxt "tabletextflowpage|liststore1"
+msgid "Horizontal"
+msgstr "افقی"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:299
+msgctxt "tabletextflowpage|liststore1"
+msgid "Vertical"
+msgstr "عمودی"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:300
+msgctxt "tabletextflowpage|liststore1"
+msgid "Use superordinate object settings"
+msgstr "استفاده از تنظیمات شیء مافوق"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:321
#, fuzzy
msgctxt "tabletextflowpage|headline"
msgid "R_epeat heading"
msgstr "تکرار سرجدول"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:383
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:343
msgctxt "tabletextflowpage|label38"
msgid "The first "
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:396
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:356
msgctxt "tabletextflowpage|label39"
msgid "rows"
msgstr "سطر"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:434
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:395
msgctxt "tabletextflowpage|label35"
msgid "Text Flow"
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:467
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:428
msgctxt "tabletextflowpage|label41"
msgid "_Vertical alignment"
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:495
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:442
+msgctxt "tabletextflowpage|liststore2"
+msgid "Top"
+msgstr "بالا"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:443
+#, fuzzy
+msgctxt "tabletextflowpage|liststore2"
+msgid "Centered"
+msgstr "وسط‌چین"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:444
+msgctxt "tabletextflowpage|liststore2"
+msgid "Bottom"
+msgstr "پایین"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:460
msgctxt "tabletextflowpage|label36"
msgid "Alignment"
msgstr "ردیف کردن"
@@ -18000,10 +18004,9 @@ msgid "Alphabetical Index"
msgstr ""
#: sw/uiconfig/swriter/ui/tocindexpage.ui:58
-#, fuzzy
msgctxt "tocindexpage|liststore1"
-msgid "Illustration Index"
-msgstr "نمایهٔ تصاویر ۱"
+msgid "Table of Figures"
+msgstr ""
#: sw/uiconfig/swriter/ui/tocindexpage.ui:62
msgctxt "tocindexpage|liststore1"
diff --git a/source/fa/writerperfect/messages.po b/source/fa/writerperfect/messages.po
index e9e6622c93b..3c9a34bfd4a 100644
--- a/source/fa/writerperfect/messages.po
+++ b/source/fa/writerperfect/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-16 16:54+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+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"
@@ -65,100 +65,100 @@ msgctxt "exportepub|generalft"
msgid "General"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:122
+#: writerperfect/uiconfig/ui/exportepub.ui:121
#, fuzzy
msgctxt "exportepub|versionft"
msgid "Version:"
msgstr "~نسخه"
-#: writerperfect/uiconfig/ui/exportepub.ui:139
+#: writerperfect/uiconfig/ui/exportepub.ui:138
msgctxt "exportepub|epub3"
msgid "EPUB 3.0"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:140
+#: writerperfect/uiconfig/ui/exportepub.ui:139
msgctxt "exportepub|epub2"
msgid "EPUB 2.0"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:175
+#: writerperfect/uiconfig/ui/exportepub.ui:174
msgctxt "exportepub|splitft"
msgid "Split method:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:192
+#: writerperfect/uiconfig/ui/exportepub.ui:191
#, fuzzy
msgctxt "exportepub|splitpage"
msgid "Page break"
msgstr "شکست صفحه"
-#: writerperfect/uiconfig/ui/exportepub.ui:193
+#: writerperfect/uiconfig/ui/exportepub.ui:192
#, fuzzy
msgctxt "exportepub|splitheading"
msgid "Heading"
msgstr "تیتر"
-#: writerperfect/uiconfig/ui/exportepub.ui:228
+#: writerperfect/uiconfig/ui/exportepub.ui:227
msgctxt "exportepub|layoutft"
msgid "Layout method:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:245
+#: writerperfect/uiconfig/ui/exportepub.ui:244
msgctxt "exportepub|layoutreflowable"
msgid "Reflowable"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:246
+#: writerperfect/uiconfig/ui/exportepub.ui:245
msgctxt "exportepub|layoutfixed"
msgid "Fixed"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:281
+#: writerperfect/uiconfig/ui/exportepub.ui:280
msgctxt "exportepub|coverimageft"
msgid "Custom cover image:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:311
+#: writerperfect/uiconfig/ui/exportepub.ui:310
msgctxt "exportepub|coverbutton"
msgid "Browse..."
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:355
+#: writerperfect/uiconfig/ui/exportepub.ui:354
msgctxt "exportepub|mediadirft"
msgid "Custom media directory:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:385
+#: writerperfect/uiconfig/ui/exportepub.ui:384
msgctxt "exportepub|mediabutton"
msgid "Browse..."
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:429
+#: writerperfect/uiconfig/ui/exportepub.ui:428
msgctxt "exportepub|metadataft"
msgid "Metadata"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:470
+#: writerperfect/uiconfig/ui/exportepub.ui:468
msgctxt "exportepub|identifierft"
msgid "Identifier:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:485
+#: writerperfect/uiconfig/ui/exportepub.ui:483
msgctxt "exportepub|titleft"
msgid "Title:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:511
+#: writerperfect/uiconfig/ui/exportepub.ui:509
msgctxt "exportepub|authorft"
msgid "Author:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:537
+#: writerperfect/uiconfig/ui/exportepub.ui:535
msgctxt "exportepub|languageft"
msgid "Language:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:563
+#: writerperfect/uiconfig/ui/exportepub.ui:561
msgctxt "exportepub|dateft"
msgid "Date:"
msgstr ""
diff --git a/source/fi/connectivity/registry/mork/org/openoffice/Office/DataAccess.po b/source/fi/connectivity/registry/mork/org/openoffice/Office/DataAccess.po
index f537d06be87..4ec552c332d 100644
--- a/source/fi/connectivity/registry/mork/org/openoffice/Office/DataAccess.po
+++ b/source/fi/connectivity/registry/mork/org/openoffice/Office/DataAccess.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: 2018-04-23 18:10+0200\n"
-"PO-Revision-Date: 2013-05-23 23:22+0000\n"
-"Last-Translator: Anonymous Pootle User\n"
+"PO-Revision-Date: 2018-06-07 17:03+0000\n"
+"Last-Translator: Harri Pitkänen <hatapitk@iki.fi>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: fi\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1369351352.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1528390990.000000\n"
#: Drivers.xcu
msgctxt ""
@@ -23,4 +23,4 @@ msgctxt ""
"DriverTypeDisplayName\n"
"value.text"
msgid "Thunderbird Address Book"
-msgstr ""
+msgstr "Thunderbird-osoitekirja"
diff --git a/source/fi/cui/messages.po b/source/fi/cui/messages.po
index 12d70c0ddc1..f8d46d7c87f 100644
--- a/source/fi/cui/messages.po
+++ b/source/fi/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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2018-02-12 17:53+0000\n"
"Last-Translator: Harri Pitkänen <hatapitk@iki.fi>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -9892,97 +9892,97 @@ msgctxt "positionsizedialog|PositionAndSizeDialog"
msgid "Position and Size"
msgstr "Sijainti ja koko"
-#: cui/uiconfig/ui/positionsizedialog.ui:107
+#: cui/uiconfig/ui/positionsizedialog.ui:136
msgctxt "positionsizedialog|RID_SVXPAGE_POSITION_SIZE"
msgid "Position and Size"
msgstr "Sijainti ja koko"
-#: cui/uiconfig/ui/positionsizedialog.ui:129
+#: cui/uiconfig/ui/positionsizedialog.ui:182
msgctxt "positionsizedialog|RID_SVXPAGE_SWPOSSIZE"
msgid "Position and Size"
msgstr "Sijainti ja koko"
-#: cui/uiconfig/ui/positionsizedialog.ui:152
+#: cui/uiconfig/ui/positionsizedialog.ui:229
msgctxt "positionsizedialog|RID_SVXPAGE_ANGLE"
msgid "Rotation"
msgstr "Kierto"
-#: cui/uiconfig/ui/positionsizedialog.ui:175
+#: cui/uiconfig/ui/positionsizedialog.ui:276
msgctxt "positionsizedialog|RID_SVXPAGE_SLANT"
msgid "Slant & Corner Radius"
msgstr "Kallistus- ja kulmasäde"
-#: cui/uiconfig/ui/possizetabpage.ui:40
+#: cui/uiconfig/ui/possizetabpage.ui:61
msgctxt "possizetabpage|FT_POS_X"
msgid "Position _X:"
msgstr "Sijainti X:"
-#: cui/uiconfig/ui/possizetabpage.ui:56
+#: cui/uiconfig/ui/possizetabpage.ui:75
msgctxt "possizetabpage|FT_POS_Y"
msgid "Position _Y:"
msgstr "Sijainti Y:"
-#: cui/uiconfig/ui/possizetabpage.ui:110
+#: cui/uiconfig/ui/possizetabpage.ui:128
msgctxt "possizetabpage|FT_POSREFERENCE"
msgid "_Base point:"
msgstr "Peruspiste:"
-#: cui/uiconfig/ui/possizetabpage.ui:148
+#: cui/uiconfig/ui/possizetabpage.ui:182
msgctxt "possizetabpage|label1"
msgid "Position"
msgstr "Sijainti"
-#: cui/uiconfig/ui/possizetabpage.ui:190
+#: cui/uiconfig/ui/possizetabpage.ui:224
msgctxt "possizetabpage|FT_WIDTH"
msgid "Wi_dth:"
msgstr "Leveys:"
-#: cui/uiconfig/ui/possizetabpage.ui:206
+#: cui/uiconfig/ui/possizetabpage.ui:238
msgctxt "possizetabpage|FT_HEIGHT"
msgid "H_eight:"
msgstr "Korkeus:"
-#: cui/uiconfig/ui/possizetabpage.ui:247
+#: cui/uiconfig/ui/possizetabpage.ui:276
msgctxt "possizetabpage|CBX_SCALE"
msgid "_Keep ratio"
msgstr "Säilytä suhteet"
-#: cui/uiconfig/ui/possizetabpage.ui:279
+#: cui/uiconfig/ui/possizetabpage.ui:307
msgctxt "possizetabpage|FT_SIZEREFERENCE"
msgid "Base _point:"
msgstr "Peruspiste:"
-#: cui/uiconfig/ui/possizetabpage.ui:317
+#: cui/uiconfig/ui/possizetabpage.ui:361
msgctxt "possizetabpage|label2"
msgid "Size"
msgstr "Koko"
-#: cui/uiconfig/ui/possizetabpage.ui:356
+#: cui/uiconfig/ui/possizetabpage.ui:401
msgctxt "possizetabpage|TSB_POSPROTECT"
msgid "Positio_n"
msgstr "Sijainti"
-#: cui/uiconfig/ui/possizetabpage.ui:373
+#: cui/uiconfig/ui/possizetabpage.ui:418
msgctxt "possizetabpage|TSB_SIZEPROTECT"
msgid "_Size"
msgstr "Koko"
-#: cui/uiconfig/ui/possizetabpage.ui:397
+#: cui/uiconfig/ui/possizetabpage.ui:441
msgctxt "possizetabpage|label3"
msgid "Protect"
msgstr "Suojaa"
-#: cui/uiconfig/ui/possizetabpage.ui:430
+#: cui/uiconfig/ui/possizetabpage.ui:475
msgctxt "possizetabpage|TSB_AUTOGROW_WIDTH"
msgid "_Fit width to text"
msgstr "Sovita leveys tekstiin"
-#: cui/uiconfig/ui/possizetabpage.ui:447
+#: cui/uiconfig/ui/possizetabpage.ui:492
msgctxt "possizetabpage|TSB_AUTOGROW_HEIGHT"
msgid "Fit _height to text"
msgstr "Sovita korkeus tekstiin"
-#: cui/uiconfig/ui/possizetabpage.ui:471
+#: cui/uiconfig/ui/possizetabpage.ui:515
msgctxt "possizetabpage|label4"
msgid "Adapt"
msgstr "Sovita"
@@ -10182,47 +10182,47 @@ msgctxt "recordnumberdialog|label2"
msgid "go to record"
msgstr "siirry tietueeseen"
-#: cui/uiconfig/ui/rotationtabpage.ui:52
+#: cui/uiconfig/ui/rotationtabpage.ui:56
msgctxt "rotationtabpage|FT_POS_X"
msgid "Position _X:"
msgstr "Sijainti X:"
-#: cui/uiconfig/ui/rotationtabpage.ui:66
+#: cui/uiconfig/ui/rotationtabpage.ui:70
msgctxt "rotationtabpage|FT_POS_Y"
msgid "Position _Y:"
msgstr "Sijainti Y:"
-#: cui/uiconfig/ui/rotationtabpage.ui:116
+#: cui/uiconfig/ui/rotationtabpage.ui:123
msgctxt "rotationtabpage|FT_POSPRESETS"
msgid "_Default settings:"
msgstr "Oletusasetukset:"
-#: cui/uiconfig/ui/rotationtabpage.ui:130
+#: cui/uiconfig/ui/rotationtabpage.ui:151
msgctxt "rotationtabpage|CTL_RECT|tooltip_text"
msgid "Rotation point"
msgstr "Kiertopiste"
-#: cui/uiconfig/ui/rotationtabpage.ui:155
+#: cui/uiconfig/ui/rotationtabpage.ui:178
msgctxt "rotationtabpage|label1"
msgid "Pivot Point"
msgstr "Keskipiste"
-#: cui/uiconfig/ui/rotationtabpage.ui:197
+#: cui/uiconfig/ui/rotationtabpage.ui:220
msgctxt "rotationtabpage|FT_ANGLE"
msgid "_Angle:"
msgstr "Kulma:"
-#: cui/uiconfig/ui/rotationtabpage.ui:238
+#: cui/uiconfig/ui/rotationtabpage.ui:263
msgctxt "rotationtabpage|FT_ANGLEPRESETS"
msgid "Default _settings:"
msgstr "Oletusasetukset:"
-#: cui/uiconfig/ui/rotationtabpage.ui:252
+#: cui/uiconfig/ui/rotationtabpage.ui:287
msgctxt "rotationtabpage|CTL_ANGLE|tooltip_text"
msgid "Rotation Angle"
msgstr "Kiertokulma"
-#: cui/uiconfig/ui/rotationtabpage.ui:277
+#: cui/uiconfig/ui/rotationtabpage.ui:314
msgctxt "rotationtabpage|label2"
msgid "Rotation Angle"
msgstr "Kiertokulma"
@@ -10603,52 +10603,52 @@ msgctxt "similaritysearchdialog|relaxbox"
msgid "_Combine"
msgstr "Yhdistä"
-#: cui/uiconfig/ui/slantcornertabpage.ui:50
+#: cui/uiconfig/ui/slantcornertabpage.ui:70
msgctxt "slantcornertabpage|label5"
msgid "_X:"
msgstr "X:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:88
+#: cui/uiconfig/ui/slantcornertabpage.ui:110
msgctxt "slantcornertabpage|label6"
msgid "_Y:"
msgstr "Y:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:125
+#: cui/uiconfig/ui/slantcornertabpage.ui:149
msgctxt "slantcornertabpage|label3"
msgid "Control Point 1"
msgstr "Ohjauspiste 1"
-#: cui/uiconfig/ui/slantcornertabpage.ui:159
+#: cui/uiconfig/ui/slantcornertabpage.ui:183
msgctxt "slantcornertabpage|FT_RADIUS"
msgid "_Radius:"
msgstr "Säde:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:189
+#: cui/uiconfig/ui/slantcornertabpage.ui:214
msgctxt "slantcornertabpage|label1"
msgid "Corner Radius"
msgstr "Kulmasäde"
-#: cui/uiconfig/ui/slantcornertabpage.ui:223
+#: cui/uiconfig/ui/slantcornertabpage.ui:248
msgctxt "slantcornertabpage|FT_ANGLE"
msgid "_Angle:"
msgstr "Kulma:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:253
+#: cui/uiconfig/ui/slantcornertabpage.ui:279
msgctxt "slantcornertabpage|label2"
msgid "Slant"
msgstr "Kallista"
-#: cui/uiconfig/ui/slantcornertabpage.ui:294
+#: cui/uiconfig/ui/slantcornertabpage.ui:320
msgctxt "slantcornertabpage|label4"
msgid "_X:"
msgstr "X:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:332
+#: cui/uiconfig/ui/slantcornertabpage.ui:360
msgctxt "slantcornertabpage|label7"
msgid "_Y:"
msgstr "Y:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:369
+#: cui/uiconfig/ui/slantcornertabpage.ui:399
msgctxt "slantcornertabpage|label8"
msgid "Control Point 2"
msgstr "Ohjauspiste 2"
@@ -10930,112 +10930,112 @@ msgctxt "storedwebconnectiondialog|change"
msgid "_Change Password..."
msgstr "Vaihda salasana..."
-#: cui/uiconfig/ui/swpossizepage.ui:74
+#: cui/uiconfig/ui/swpossizepage.ui:85
msgctxt "swpossizepage|widthft"
msgid "_Width:"
msgstr "Leveys:"
-#: cui/uiconfig/ui/swpossizepage.ui:111
+#: cui/uiconfig/ui/swpossizepage.ui:123
msgctxt "swpossizepage|heightft"
msgid "H_eight:"
msgstr "Korkeus:"
-#: cui/uiconfig/ui/swpossizepage.ui:128
+#: cui/uiconfig/ui/swpossizepage.ui:141
msgctxt "swpossizepage|ratio"
msgid "_Keep ratio"
msgstr "Säilytä suhteet"
-#: cui/uiconfig/ui/swpossizepage.ui:149
+#: cui/uiconfig/ui/swpossizepage.ui:162
msgctxt "swpossizepage|label2"
msgid "Size"
msgstr "Koko"
-#: cui/uiconfig/ui/swpossizepage.ui:205
+#: cui/uiconfig/ui/swpossizepage.ui:218
msgctxt "swpossizepage|topage"
msgid "To _page"
msgstr "Sivulle"
-#: cui/uiconfig/ui/swpossizepage.ui:222
+#: cui/uiconfig/ui/swpossizepage.ui:234
msgctxt "swpossizepage|topara"
msgid "To paragrap_h"
msgstr "Kappaleeseen"
-#: cui/uiconfig/ui/swpossizepage.ui:238
+#: cui/uiconfig/ui/swpossizepage.ui:250
msgctxt "swpossizepage|tochar"
msgid "To cha_racter"
msgstr "Merkkiin"
-#: cui/uiconfig/ui/swpossizepage.ui:254
+#: cui/uiconfig/ui/swpossizepage.ui:266
msgctxt "swpossizepage|aschar"
msgid "_As character"
msgstr "Merkkinä"
-#: cui/uiconfig/ui/swpossizepage.ui:270
+#: cui/uiconfig/ui/swpossizepage.ui:282
msgctxt "swpossizepage|toframe"
msgid "To _frame"
msgstr "Kehykseen"
-#: cui/uiconfig/ui/swpossizepage.ui:292
+#: cui/uiconfig/ui/swpossizepage.ui:304
msgctxt "swpossizepage|label1"
msgid "Anchor"
msgstr "Ankkuri"
-#: cui/uiconfig/ui/swpossizepage.ui:333
+#: cui/uiconfig/ui/swpossizepage.ui:344
msgctxt "swpossizepage|horiposft"
msgid "Hori_zontal:"
msgstr "Vaakataso:"
-#: cui/uiconfig/ui/swpossizepage.ui:347
+#: cui/uiconfig/ui/swpossizepage.ui:358
msgctxt "swpossizepage|horibyft"
msgid "b_y:"
msgstr "etäisyys:"
-#: cui/uiconfig/ui/swpossizepage.ui:361
+#: cui/uiconfig/ui/swpossizepage.ui:372
msgctxt "swpossizepage|vertbyft"
msgid "_by:"
msgstr "etäisyys:"
-#: cui/uiconfig/ui/swpossizepage.ui:375
+#: cui/uiconfig/ui/swpossizepage.ui:386
msgctxt "swpossizepage|horitoft"
msgid "_to:"
msgstr "kohde:"
-#: cui/uiconfig/ui/swpossizepage.ui:421
+#: cui/uiconfig/ui/swpossizepage.ui:433
msgctxt "swpossizepage|vertposft"
msgid "_Vertical:"
msgstr "Pystytasossa:"
-#: cui/uiconfig/ui/swpossizepage.ui:457
+#: cui/uiconfig/ui/swpossizepage.ui:470
msgctxt "swpossizepage|verttoft"
msgid "t_o:"
msgstr "kohde:"
-#: cui/uiconfig/ui/swpossizepage.ui:478
+#: cui/uiconfig/ui/swpossizepage.ui:492
msgctxt "swpossizepage|mirror"
msgid "_Mirror on even pages"
msgstr "Peilaa parillisilla sivuilla"
-#: cui/uiconfig/ui/swpossizepage.ui:495
+#: cui/uiconfig/ui/swpossizepage.ui:509
msgctxt "swpossizepage|followtextflow"
msgid "Follow te_xt flow"
msgstr "Seuraa tekstin rivitystä"
-#: cui/uiconfig/ui/swpossizepage.ui:518
+#: cui/uiconfig/ui/swpossizepage.ui:532
msgctxt "swpossizepage|label11"
msgid "Position"
msgstr "Sijainti"
-#: cui/uiconfig/ui/swpossizepage.ui:549
+#: cui/uiconfig/ui/swpossizepage.ui:563
msgctxt "swpossizepage|pos"
msgid "Positio_n"
msgstr "Sijainti"
-#: cui/uiconfig/ui/swpossizepage.ui:565
+#: cui/uiconfig/ui/swpossizepage.ui:579
msgctxt "swpossizepage|size"
msgid "_Size"
msgstr "Koko"
-#: cui/uiconfig/ui/swpossizepage.ui:587
+#: cui/uiconfig/ui/swpossizepage.ui:601
msgctxt "swpossizepage|label3"
msgid "Protect"
msgstr "Suojaa"
@@ -11225,12 +11225,12 @@ msgctxt "textattrtabpage|label2"
msgid "Spacing to Borders"
msgstr "Väli reunoihin"
-#: cui/uiconfig/ui/textattrtabpage.ui:425
+#: cui/uiconfig/ui/textattrtabpage.ui:423
msgctxt "textattrtabpage|TSB_FULL_WIDTH"
msgid "Full _width"
msgstr "Täysi leveys"
-#: cui/uiconfig/ui/textattrtabpage.ui:448
+#: cui/uiconfig/ui/textattrtabpage.ui:446
msgctxt "textattrtabpage|label3"
msgid "Text Anchor"
msgstr "Tekstin ankkuri"
diff --git a/source/fi/dbaccess/messages.po b/source/fi/dbaccess/messages.po
index c28e5cb4c2f..7af497b5e05 100644
--- a/source/fi/dbaccess/messages.po
+++ b/source/fi/dbaccess/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2018-04-23 18:10+0200\n"
-"PO-Revision-Date: 2018-02-18 12:11+0000\n"
+"PO-Revision-Date: 2018-06-07 17:08+0000\n"
"Last-Translator: Harri Pitkänen <hatapitk@iki.fi>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: fi\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1518955907.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1528391318.000000\n"
#: dbaccess/inc/query.hrc:26
msgctxt "RSC_QUERY_OBJECT_TYPE"
@@ -1652,7 +1652,7 @@ msgstr ""
#: dbaccess/inc/strings.hrc:352
msgctxt "RID_STR_EXTENSION_NOT_PRESENT"
msgid "The report, \"$file$\", requires the Report Builder feature."
-msgstr ""
+msgstr "Raportti \"$file$\" vaatii Report Builder -lisäosan."
#: dbaccess/inc/strings.hrc:354
msgctxt "STR_COULDNOTCREATE_DRIVERMANAGER"
@@ -1773,7 +1773,7 @@ msgstr "Enempää asetuksia ei tarvita. Napsauta '%test' -painiketta varmistaaks
#: dbaccess/inc/strings.hrc:379
msgctxt "STR_COMMONURL"
msgid "Datasource URL (e.g. host=$host:$port dbname=$database)"
-msgstr ""
+msgstr "Tietolähteen URL (esim. host=$host:$port dbname=$database)"
#: dbaccess/inc/strings.hrc:380
msgctxt "STR_HOSTNAME"
@@ -3214,22 +3214,22 @@ msgstr "Muunnettava kohde:"
#: dbaccess/uiconfig/ui/migrwarndlg.ui:7
msgctxt "migrationwarndialog|MigrationWarnDialog"
msgid "Confirm Migration"
-msgstr ""
+msgstr "Vahvista muunnos"
#: dbaccess/uiconfig/ui/migrwarndlg.ui:11
msgctxt "migrationwarndialog|MigrationWarnDialog"
msgid "The document contains embedded HSQL data, which is deprecated."
-msgstr ""
+msgstr "Asiakirja sisältää upotettua HSQL-dataa, jonka käyttöä ei enää suositella."
#: dbaccess/uiconfig/ui/migrwarndlg.ui:12
msgctxt "migrationwarndialog|MigrationWarnDialog"
msgid "Would you like to migrate to Firebird now?"
-msgstr ""
+msgstr "Haluatko muuntaa datan nyt Firebird-muotoon?"
#: dbaccess/uiconfig/ui/migrwarndlg.ui:37
msgctxt "migrationwarndialog|later"
msgid "_Later"
-msgstr ""
+msgstr "Myöhemmin"
#: dbaccess/uiconfig/ui/mysqlnativepage.ui:48
msgctxt "mysqlnativepage|connectionheader"
@@ -3613,7 +3613,7 @@ msgstr "Vyörytä päivitykset"
#: dbaccess/uiconfig/ui/relationdialog.ui:244
msgctxt "relationdialog|addnull"
msgid "_Set NULL"
-msgstr ""
+msgstr "Aseta NULL"
#: dbaccess/uiconfig/ui/relationdialog.ui:260
msgctxt "relationdialog|adddefault"
@@ -3638,7 +3638,7 @@ msgstr "Vyörytä poistot"
#: dbaccess/uiconfig/ui/relationdialog.ui:346
msgctxt "relationdialog|delnull"
msgid "_Set NULL"
-msgstr ""
+msgstr "Aseta NULL"
#: dbaccess/uiconfig/ui/relationdialog.ui:361
msgctxt "relationdialog|deldefault"
diff --git a/source/fi/dictionaries/id.po b/source/fi/dictionaries/id.po
index f5cfbccc472..f1e764ea640 100644
--- a/source/fi/dictionaries/id.po
+++ b/source/fi/dictionaries/id.po
@@ -4,14 +4,17 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2018-03-13 12:10+0100\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"PO-Revision-Date: 2018-06-07 17:04+0000\n"
+"Last-Translator: Harri Pitkänen <hatapitk@iki.fi>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: fi\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: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1528391064.000000\n"
#: description.xml
msgctxt ""
@@ -19,4 +22,4 @@ msgctxt ""
"dispname\n"
"description.text"
msgid "Indonesian spelling dictionary and thesaurus"
-msgstr ""
+msgstr "Indonesian oikoluku- ja synonyymisanasto"
diff --git a/source/fi/filter/source/config/fragments/filters.po b/source/fi/filter/source/config/fragments/filters.po
index 3d609401be1..f5d67922c75 100644
--- a/source/fi/filter/source/config/fragments/filters.po
+++ b/source/fi/filter/source/config/fragments/filters.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: 2018-05-16 16:54+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2018-01-28 11:13+0000\n"
"Last-Translator: Harri Pitkänen <hatapitk@iki.fi>\n"
"Language-Team: Finnish <discuss@fi.libreoffice.org>\n"
@@ -463,8 +463,8 @@ msgctxt ""
"MS Word 2003 XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Word 2003 XML"
-msgstr "Microsoft Word 2003 XML"
+msgid "Word 2003 XML"
+msgstr ""
#: MS_Word_2007_XML.xcu
msgctxt ""
@@ -1282,8 +1282,8 @@ msgctxt ""
"Calc MS Excel 2007 VBA XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Excel 2007-2016 XML (macro enabled)"
-msgstr "Microsoft Excel 2007-2016 XML (makrot käytössä)"
+msgid "Excel 2007–2019 (macro-enabled)"
+msgstr ""
#: calc_MS_Excel_2007_XML.xcu
msgctxt ""
diff --git a/source/fi/filter/source/config/fragments/types.po b/source/fi/filter/source/config/fragments/types.po
index 4248f406aca..072f2131c5f 100644
--- a/source/fi/filter/source/config/fragments/types.po
+++ b/source/fi/filter/source/config/fragments/types.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: 2018-05-08 15:11+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2018-01-28 11:13+0000\n"
"Last-Translator: Harri Pitkänen <hatapitk@iki.fi>\n"
"Language-Team: Finnish <discuss@fi.libreoffice.org>\n"
@@ -292,8 +292,8 @@ msgctxt ""
"writer_MS_Word_2003_XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Word 2003 XML"
-msgstr "Microsoft Word 2003 XML"
+msgid "Word 2003 XML"
+msgstr ""
#: writer_MS_Word_2007_XML.xcu
msgctxt ""
diff --git a/source/fi/fpicker/messages.po b/source/fi/fpicker/messages.po
index f3c5441542b..3766dfea739 100644
--- a/source/fi/fpicker/messages.po
+++ b/source/fi/fpicker/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-22 13:16+0200\n"
-"PO-Revision-Date: 2018-01-28 11:42+0000\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
+"PO-Revision-Date: 2018-06-07 17:02+0000\n"
"Last-Translator: Harri Pitkänen <hatapitk@iki.fi>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: fi\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1517139724.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1528390955.000000\n"
#: include/fpicker/strings.hrc:14
msgctxt "STR_SVT_FILEPICKER_AUTO_EXTENSION"
@@ -75,7 +75,7 @@ msgstr "Tyyli:"
#: include/fpicker/strings.hrc:26
msgctxt "STR_SVT_FILEPICKER_IMAGE_ANCHOR"
msgid "A~nchor:"
-msgstr ""
+msgstr "Ankkuri:"
#: include/fpicker/strings.hrc:27
msgctxt "STR_SVT_FILEPICKER_SELECTION"
@@ -272,13 +272,13 @@ msgstr "Salaa GPG-avaimella"
#: fpicker/uiconfig/ui/foldernamedialog.ui:8
msgctxt "foldernamedialog|FolderNameDialog"
-msgid "Folder Name ?"
-msgstr "Kansion nimi ?"
+msgid "Folder Name"
+msgstr "Kansion nimi"
#: fpicker/uiconfig/ui/foldernamedialog.ui:91
msgctxt "foldernamedialog|label2"
-msgid "Na_me"
-msgstr "Nimi"
+msgid "Na_me:"
+msgstr "Nimi:"
#: fpicker/uiconfig/ui/foldernamedialog.ui:122
msgctxt "foldernamedialog|label1"
diff --git a/source/fi/helpcontent2/source/text/shared/00.po b/source/fi/helpcontent2/source/text/shared/00.po
index 517275fc707..aba2f3bf9ab 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2016-05-24 09:33+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Finnish <discuss@fi.libreoffice.org>\n"
@@ -397,16 +397,16 @@ msgctxt ""
"00000001.xhp\n"
"hd_id3149670\n"
"help.text"
-msgid "Back"
-msgstr "Edellinen"
+msgid "Reset"
+msgstr ""
#: 00000001.xhp
msgctxt ""
"00000001.xhp\n"
"par_id3145068\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optionsdialog/revert\">Resets modified values back to the $[officename] default values.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/optionsdialog/revert\">Palautetaan muutetut arvot $[officename]n oletusarvoiksi.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optionsdialog/revert\">Resets changes made to the current tab to those applicable when this dialog was opened.</ahelp>"
+msgstr ""
#: 00000001.xhp
msgctxt ""
@@ -552,6 +552,54 @@ msgctxt ""
msgid "<variable id=\"ShiftF1\">Press Shift+F1 and point to a control to learn more about that control.</variable>"
msgstr "<variable id=\"ShiftF1\">Lisätietoja ohjausobjekteista saa painamalla Vaihto+F1 ja osoittamalla kohdetta.</variable>"
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"hd_id631527692833772\n"
+"help.text"
+msgid "Options dialog buttons"
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"hd_id831527692839432\n"
+"help.text"
+msgid "OK"
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"par_id471527692844934\n"
+"help.text"
+msgid "Save the changes in the page and close the Options dialog."
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"hd_id261527692850720\n"
+"help.text"
+msgid "Cancel"
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"par_id571527692855533\n"
+"help.text"
+msgid "Close the Options dialog and discard all changes done."
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"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 Options dialog."
+msgstr ""
+
#: 00000002.xhp
msgctxt ""
"00000002.xhp\n"
@@ -11125,16 +11173,16 @@ msgctxt ""
"00040502.xhp\n"
"par_id3151293\n"
"help.text"
-msgid "<variable id=\"linienstile\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Line Styles</emph> tab </variable>"
-msgstr "<variable id=\"linienstile\">Valitse <emph>Muotoilu - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Piirrosobjekti - </emph></caseinline><caseinline select=\"CALC\"><emph>Grafiikka - </emph></caseinline></switchinline><emph>Viiva - Viivatyylit</emph>-välilehti </variable>"
+msgid "<variable id=\"linienstile\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Line Styles</emph> tab</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3149317\n"
"help.text"
-msgid "<variable id=\"linienenden\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Arrow Styles</emph> tab </variable>"
-msgstr "<variable id=\"linienenden\">Valitse <emph>Muotoilu - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Piirrosobjekti - </emph></caseinline><caseinline select=\"CALC\"><emph>Grafiikka - </emph></caseinline></switchinline><emph>Viiva - Nuolen tyylit</emph> -välilehti </variable>"
+msgid "<variable id=\"linienenden\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Arrow Styles</emph> tab</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
@@ -11173,15 +11221,15 @@ msgctxt ""
"00040502.xhp\n"
"par_id3154948\n"
"help.text"
-msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Area</emph> tab"
-msgstr "Valitse <emph>Muotoilu - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Piirrosobjekti - </emph></caseinline><caseinline select=\"CALC\"><emph>Grafiikka - </emph></caseinline></switchinline><emph>Alue - Alue</emph>-välilehti"
+msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Area</emph> tab."
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3145607\n"
"help.text"
-msgid "Choose <emph>View - Styles</emph> - open context menu and choose <emph>Modify/New - Area</emph> tab (presentation documents)"
+msgid "Choose <emph>View - Styles</emph> - open context menu and choose <emph>Modify/New - Area</emph> tab (presentation documents)."
msgstr ""
#: 00040502.xhp
@@ -11189,47 +11237,47 @@ msgctxt ""
"00040502.xhp\n"
"par_id3152922\n"
"help.text"
-msgid "Choose <emph>Format - Title - Area</emph> tab (chart documents)"
-msgstr "Valitse <emph>Muotoilu - Otsikko - Alue</emph>-välilehti (kaaviot)"
+msgid "Choose <emph>Format - Title - Area</emph> tab (chart documents)."
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3157894\n"
"help.text"
-msgid "Choose <emph>Format - Legend - Area</emph> tab (chart documents)"
-msgstr "Valitse <emph>Muotoilu - Selite - Alue</emph>-välilehti (kaaviot)"
+msgid "Choose <emph>Format - Legend - Area</emph> tab (chart documents)."
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3144444\n"
"help.text"
-msgid "Choose <emph>Format - Chart Wall - Area</emph> tab (chart documents)"
-msgstr "Valitse <emph>Muotoilu - Kaavion tausta - Alue</emph>-välilehti (kaaviot)"
+msgid "Choose <emph>Format - Chart Wall - Area</emph> tab (chart documents)."
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3156543\n"
"help.text"
-msgid "Choose <emph>Format - Chart Floor - Area</emph> tab (chart documents)"
-msgstr "Valitse <emph>Muotoilu - Kaavion perusta - Alue</emph>-välilehti (kaaviot)"
+msgid "Choose <emph>Format - Chart Floor - Area</emph> tab (chart documents)."
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3150685\n"
"help.text"
-msgid "Choose <emph>Format - Chart Area - Area</emph> tab (chart documents)"
-msgstr "Valitse <emph>Muotoilu - Kaavioalue - Alue</emph>-välilehti (kaaviot)"
+msgid "Choose <emph>Format - Chart Area - Area</emph> tab (chart documents)."
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3149664\n"
"help.text"
-msgid "Choose <emph>Slide - Properties - Background</emph> tab (in $[officename] Impress)"
+msgid "Choose <emph>Slide - Properties - Background</emph> tab (in $[officename] Impress)."
msgstr ""
#: 00040502.xhp
@@ -11237,7 +11285,15 @@ msgctxt ""
"00040502.xhp\n"
"par_id9149694\n"
"help.text"
-msgid "Choose <emph>Page - Properties - Background</emph> tab (in $[officename] Draw)"
+msgid "Choose <emph>Page - Properties - Background</emph> tab (in $[officename] Draw)."
+msgstr ""
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id841527083135387\n"
+"help.text"
+msgid "Choose <emph>Table - Properties - Background</emph> tab."
msgstr ""
#: 00040502.xhp
@@ -11349,32 +11405,32 @@ msgctxt ""
"00040502.xhp\n"
"par_id3150011\n"
"help.text"
-msgid "<variable id=\"schatte\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Shadow</emph> tab </variable>"
-msgstr "<variable id=\"schatte\">Valitse <emph>Muotoilu - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Piirrosobjekti - </emph></caseinline><caseinline select=\"CALC\"><emph>Grafiikka - </emph></caseinline></switchinline><emph>Alue - Varjo</emph>-välilehti </variable>"
+msgid "<variable id=\"schatte\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Shadow</emph> tab</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3147441\n"
"help.text"
-msgid "<variable id=\"verlauf\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Gradients</emph> tab </variable>"
-msgstr "<variable id=\"verlauf\">Valitse <emph>Muotoilu - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Piirrosobjekti - </emph></caseinline><caseinline select=\"CALC\"><emph>Grafiikka - </emph></caseinline></switchinline><emph>Alue - Liukuvärjäykset</emph>-välilehti </variable>"
+msgid "<variable id=\"verlauf\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Gradients</emph> tab</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3155308\n"
"help.text"
-msgid "<variable id=\"schraffur\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Hatching</emph> tab </variable>"
-msgstr "<variable id=\"schraffur\">Valitse <emph>Muotoilu - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Piirrosobjekti - </emph></caseinline><caseinline select=\"CALC\"><emph>Grafiikka - </emph></caseinline></switchinline><emph>Alue - Viivoitus</emph>-välilehti </variable>"
+msgid "<variable id=\"schraffur\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Hatching</emph> tab</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3145800\n"
"help.text"
-msgid "<variable id=\"bitmap\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Bitmaps</emph> tab </variable>"
-msgstr "<variable id=\"bitmap\">Valitse <emph>Muotoilu - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Piirrosobjekti - </emph></caseinline><caseinline select=\"CALC\"><emph>Grafiikka - </emph></caseinline></switchinline><emph>Alue - Bittikartat</emph>-välilehti </variable>"
+msgid "<variable id=\"bitmap\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Bitmaps</emph> tab</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
@@ -11413,8 +11469,8 @@ msgctxt ""
"00040502.xhp\n"
"par_id3156286\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F4 key </caseinline><caseinline select=\"IMPRESS\">F4 key </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F4-näppäin </caseinline><caseinline select=\"IMPRESS\">F4-näppäin </caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F4 key</caseinline><caseinline select=\"IMPRESS\">F4 key</caseinline></switchinline>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
@@ -11453,8 +11509,8 @@ msgctxt ""
"00040502.xhp\n"
"par_id3153099\n"
"help.text"
-msgid "<variable id=\"position2\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Position and Size</emph> tab </variable>"
-msgstr "<variable id=\"position2\">Valitse <emph>Muotoilu - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Piirrosobjekti - </emph></caseinline><caseinline select=\"CALC\"><emph>Grafiikka - </emph></caseinline></switchinline><emph>Sijainti ja koko - Sijainti ja koko</emph> -välilehti </variable>"
+msgid "<variable id=\"position2\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Position and Size</emph> tab</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
@@ -11485,16 +11541,16 @@ msgctxt ""
"00040502.xhp\n"
"par_id3145666\n"
"help.text"
-msgid "<variable id=\"ecke\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Slant & Corner Radius</emph> tab </variable>"
-msgstr "<variable id=\"ecke\">Valitse <emph>Muotoilu - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Piirrosobjekti - </emph></caseinline><caseinline select=\"CALC\"><emph>Grafiikka - </emph></caseinline></switchinline><emph>Sijainti ja koko - Kallistus- ja kulmasäde</emph> -välilehti </variable>"
+msgid "<variable id=\"ecke\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Slant & Corner Radius</emph> tab</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3146081\n"
"help.text"
-msgid "<variable id=\"legende\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Callout</emph> tab (only for textbox callouts, not for custom shapes callouts) </variable>"
-msgstr "<variable id=\"legende\">Valitse <emph>Muotoilu - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Piirrosobjekti - </emph></caseinline><caseinline select=\"CALC\"><emph>Grafiikka - </emph></caseinline></switchinline><emph>Sijainti ja koko - Kuvateksti</emph>-välilehti (erilliselle kuvatekstityypille, ei muille puhekuplille) </variable>"
+msgid "<variable id=\"legende\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Callout</emph> tab (only for textbox callouts, not for custom shapes callouts)</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
@@ -11517,8 +11573,8 @@ msgctxt ""
"00040502.xhp\n"
"par_id3149019\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F8 key </caseinline><caseinline select=\"IMPRESS\">F8 key </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F8-näppäin </caseinline><caseinline select=\"IMPRESS\">F8-näppäin </caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F8 key</caseinline><caseinline select=\"IMPRESS\">F8 key</caseinline></switchinline>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
@@ -11805,8 +11861,8 @@ msgctxt ""
"00040502.xhp\n"
"par_id3153076\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Align Center Horizontally </caseinline><defaultinline>Centered</defaultinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Keskitä vaakatasossa </caseinline><defaultinline>Keskitetty</defaultinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Align Center Horizontally</caseinline><defaultinline>Centered</defaultinline></switchinline>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
@@ -11845,8 +11901,8 @@ msgctxt ""
"00040502.xhp\n"
"par_id3150527\n"
"help.text"
-msgid "<variable id=\"font\">Click <emph>Fontwork</emph> icon on <emph>Drawing</emph> bar </variable>"
-msgstr "<variable id=\"font\">Napsauta <emph>Piirros</emph>-palkin <emph>Fonttipaja</emph>-kuvaketta</variable>"
+msgid "<variable id=\"font\">Click <emph>Fontwork</emph> icon on <emph>Drawing</emph> bar</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
diff --git a/source/fi/helpcontent2/source/text/shared/01.po b/source/fi/helpcontent2/source/text/shared/01.po
index f77dd8e28ad..8cd742190aa 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: 2018-05-23 23:19+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2016-07-06 02:06+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Finnish <discuss@fi.libreoffice.org>\n"
@@ -23587,6 +23587,22 @@ msgstr ""
#: 05210100.xhp
msgctxt ""
"05210100.xhp\n"
+"hd_id471527077476052\n"
+"help.text"
+msgid "Cell, Row or Table background selector"
+msgstr ""
+
+#: 05210100.xhp
+msgctxt ""
+"05210100.xhp\n"
+"par_id661527077493366\n"
+"help.text"
+msgid "Select the table object which background area is to be filled."
+msgstr ""
+
+#: 05210100.xhp
+msgctxt ""
+"05210100.xhp\n"
"hd_id3147373\n"
"help.text"
msgid "None"
@@ -31205,24 +31221,24 @@ msgctxt ""
"06040100.xhp\n"
"hd_id3145072\n"
"help.text"
-msgid "Automatic *bold* and _underline_"
-msgstr "Automaattinen *lihavoitu* ja _alleviivaus_"
+msgid "Automatic *bold*, /italic/, -strikeout- and _underline_"
+msgstr ""
#: 06040100.xhp
msgctxt ""
"06040100.xhp\n"
"par_id3153577\n"
"help.text"
-msgid "Automatically applies bold formatting to text enclosed by asterisks (*), and underline to text enclosed by underscores ( _ ), for example, *bold*. The asterisks and underscores are not displayed after the formatting is applied."
-msgstr "Lihavointia käytetään tekstiin, joka on rajattu asteriskeilla (*), esimerkiksi *bold*, ja alleviivausta alaviivoin ( _ ) rajattuun tekstiin. Asteriskeja tai alaviivoja ei esitetä muotoilun tapahduttua."
+msgid "Automatically applies bold, italic, strikethrough or underline formatting to text enclosed by asterisks (*), slashes (/), hyphens (-), and underscores (_), respectively. These characters disappear after the formatting is applied."
+msgstr ""
#: 06040100.xhp
msgctxt ""
"06040100.xhp\n"
"par_id3153127\n"
"help.text"
-msgid "This feature does not work if the formatting characters * or _ are entered with an <link href=\"text/shared/00/00000005.xhp#IME\" name=\"Input Method Editor\">Input Method Editor</link>."
-msgstr "Tämä piirre ei toimi, jos muotoilumerkki * tai _ syötetään <link href=\"text/shared/00/00000005.xhp#IME\" name=\"IME-syötönmuokkain\">IME-syötönmuokkaimella</link>."
+msgid "This feature does not work if the formatting characters <item type=\"literal\">* / - _</item> are entered with an <link href=\"text/shared/00/00000005.xhp#IME\" name=\"Input Method Editor\">Input Method Editor</link>."
+msgstr ""
#: 06040100.xhp
msgctxt ""
diff --git a/source/fi/helpcontent2/source/text/shared/optionen.po b/source/fi/helpcontent2/source/text/shared/optionen.po
index 4d4c0ec35ee..bb6b113cfb8 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: 2018-05-08 15:10+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2016-07-06 02:25+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Finnish <discuss@fi.libreoffice.org>\n"
@@ -83,6 +83,22 @@ msgstr ""
#: 01000000.xhp
msgctxt ""
"01000000.xhp\n"
+"hd_id551527692881035\n"
+"help.text"
+msgid "Help"
+msgstr ""
+
+#: 01000000.xhp
+msgctxt ""
+"01000000.xhp\n"
+"par_id831527692885723\n"
+"help.text"
+msgid "Opens the help contents for the Options page displayed."
+msgstr ""
+
+#: 01000000.xhp
+msgctxt ""
+"01000000.xhp\n"
"hd_id3159149\n"
"help.text"
msgid "<link href=\"text/shared/optionen/01010000.xhp\" name=\"$[officename]\">%PRODUCTNAME</link>"
@@ -4565,8 +4581,8 @@ msgctxt ""
"01030300.xhp\n"
"par_idN10640\n"
"help.text"
-msgid "Options"
-msgstr "Asetukset"
+msgid "Security Options and Warnings"
+msgstr ""
#: 01030300.xhp
msgctxt ""
@@ -4597,8 +4613,8 @@ msgctxt ""
"01030300.xhp\n"
"hd_id3168736\n"
"help.text"
-msgid "Persistently save passwords protected by a master password"
-msgstr "Tallenna pysyvästi pääsalasanalla suojatut salasanat"
+msgid "Persistently save passwords for web connections"
+msgstr ""
#: 01030300.xhp
msgctxt ""
@@ -4613,8 +4629,24 @@ msgctxt ""
"01030300.xhp\n"
"hd_id3901791\n"
"help.text"
+msgid "Protected by a master password (recommended)"
+msgstr ""
+
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"par_id31527711486980\n"
+"help.text"
+msgid "Check to enable all connections' passwords to be protected by a master password."
+msgstr ""
+
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"hd_id141527711343312\n"
+"help.text"
msgid "Master Password"
-msgstr "Pääsalasana"
+msgstr ""
#: 01030300.xhp
msgctxt ""
@@ -13733,8 +13765,8 @@ msgctxt ""
"java.xhp\n"
"hd_id3148618\n"
"help.text"
-msgid "Optional (unstable) options"
-msgstr "Valinnaiset (epävakaat) toiminnot"
+msgid "Optional Features"
+msgstr ""
#: java.xhp
msgctxt ""
@@ -13749,8 +13781,8 @@ msgctxt ""
"java.xhp\n"
"par_id3156344\n"
"help.text"
-msgid "It enables features that are not yet complete or contain known bugs. The list of these features is different version by version, or even it can be empty."
-msgstr "Ottaa käyttöön ominaisuudet, jotka eivät vielä ole täysin valmiita tai sisältävät tunnettuja vikoja. Nämä ominaisuudet voivat muuttua ohjelmiston versioiden välillä, eikä niitä välttämättä ole lainkaan."
+msgid "Enables features that are not yet complete or may contain known bugs. The list of these features is different version by version, or even it can be empty."
+msgstr ""
#: java.xhp
msgctxt ""
@@ -13765,8 +13797,8 @@ msgctxt ""
"java.xhp\n"
"par_id3156345\n"
"help.text"
-msgid "It enables macro recording, so the <link href=\"text/shared/guide/macro_recording.xhp\" name=\"Tools - Macros - Record Macro\"><item type=\"menuitem\">Tools - Macros - Record Macro</item></link> menu item will be available."
-msgstr "Mahdollistaa makrojen nauhoittamisen, eli valikkotoiminto <link href=\"text/shared/guide/macro_recording.xhp\" name=\"Työkalut - Makrot - Nauhoita makro\"><item type=\"menuitem\">Työkalut - Makrot - Nauhoita makro</item></link> tulee näkyviin."
+msgid "Enables macro recording. The <link href=\"text/shared/guide/macro_recording.xhp\" name=\"Tools - Macros - Record Macro\"><item type=\"menuitem\">Tools - Macros - Record Macro</item></link> menu item is available."
+msgstr ""
#: java.xhp
msgctxt ""
diff --git a/source/fi/instsetoo_native/inc_openoffice/windows/msi_languages.po b/source/fi/instsetoo_native/inc_openoffice/windows/msi_languages.po
index cb484151299..36317198b52 100644
--- a/source/fi/instsetoo_native/inc_openoffice/windows/msi_languages.po
+++ b/source/fi/instsetoo_native/inc_openoffice/windows/msi_languages.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: 2018-04-17 15:54+0200\n"
-"PO-Revision-Date: 2018-01-28 11:11+0000\n"
+"PO-Revision-Date: 2018-06-07 17:01+0000\n"
"Last-Translator: Harri Pitkänen <hatapitk@iki.fi>\n"
"Language-Team: Finnish <discuss@fi.libreoffice.org>\n"
"Language: fi\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1517137899.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1528390897.000000\n"
#: ActionTe.ulf
msgctxt ""
@@ -3870,7 +3870,7 @@ msgctxt ""
"OOO_LAUNCH_2\n"
"LngText.text"
msgid "[ProductName] cannot be installed on this Windows version. [WindowsMinVersionText] or newer is required."
-msgstr ""
+msgstr "[ProductName]n asennus ei onnistu tähän Windows-versioon. Tarvitaan [WindowsMinVersionText] tai uudempi."
#: LaunchCo.ulf
msgctxt ""
@@ -3878,7 +3878,7 @@ msgctxt ""
"OOO_LAUNCH_3\n"
"LngText.text"
msgid "To install [ProductName] on Windows 8.1, at least April 2014 update rollup (MS KB 2919355) must be installed."
-msgstr ""
+msgstr "[ProductName]n asentaminen Windows 8.1 -järjestelmään onnistuu vain, jos vähintään huhtikuun 2014 päivitykset (MS KB 2919355) on asennettu."
#: Property.ulf
msgctxt ""
@@ -3894,7 +3894,7 @@ msgctxt ""
"OOO_ARPHELPLINKTEMPLATE\n"
"LngText.text"
msgid "https://www.libreoffice.org/get-help"
-msgstr ""
+msgstr "https://fi.libreoffice.org/ohjeet"
#: Property.ulf
msgctxt ""
@@ -3902,7 +3902,7 @@ msgctxt ""
"OOO_ARPURLINFOABOUTTEMPLATE\n"
"LngText.text"
msgid "https://www.libreoffice.org/"
-msgstr ""
+msgstr "https://fi.libreoffice.org/"
#: Property.ulf
msgctxt ""
@@ -3910,7 +3910,7 @@ msgctxt ""
"OOO_ARPURLUPDATEINFOTEMPLATE\n"
"LngText.text"
msgid "https://www.libreoffice.org/download"
-msgstr ""
+msgstr "https://fi.libreoffice.org/lataa"
#: Property.ulf
msgctxt ""
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 37fa696ff61..d6a7b9ef26f 100644
--- a/source/fi/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/fi/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-22 13:17+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2018-01-29 19:30+0000\n"
"Last-Translator: Harri Pitkänen <hatapitk@iki.fi>\n"
"Language-Team: Finnish <discuss@fi.libreoffice.org>\n"
@@ -26524,8 +26524,8 @@ msgctxt ""
"..WriterCommands.UserInterface.Commands..uno:TextAttributes\n"
"Label\n"
"value.text"
-msgid "Text Attributes"
-msgstr "Tekstin ominaisuudet"
+msgid "Text Attributes..."
+msgstr ""
#: WriterCommands.xcu
msgctxt ""
diff --git a/source/fi/readlicense_oo/docs.po b/source/fi/readlicense_oo/docs.po
index 3f8c0e2eeea..65eadf77283 100644
--- a/source/fi/readlicense_oo/docs.po
+++ b/source/fi/readlicense_oo/docs.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-04-17 15:54+0200\n"
-"PO-Revision-Date: 2018-01-28 11:13+0000\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
+"PO-Revision-Date: 2018-06-07 16:57+0000\n"
"Last-Translator: Harri Pitkänen <hatapitk@iki.fi>\n"
"Language-Team: Finnish <discuss@fi.libreoffice.org>\n"
"Language: fi\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1517138016.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1528390644.000000\n"
#: readme.xrm
msgctxt ""
@@ -30,7 +30,7 @@ msgctxt ""
"LatestUpdates\n"
"readmeitem.text"
msgid "For the latest updates to this readme file, see <a href=\"https://www.libreoffice.org/welcome/readme.html\">https://www.libreoffice.org/welcome/readme.html</a>"
-msgstr ""
+msgstr "Tämän LueMinut-tiedoston uusimmat päivitykset löytyvät (englanniksi) osoitteesta <a href=\"https://www.libreoffice.org/welcome/readme.html\">https://www.libreoffice.org/welcome/readme.html</a>."
#: readme.xrm
msgctxt ""
@@ -46,7 +46,7 @@ msgctxt ""
"A7\n"
"readmeitem.text"
msgid "The ${PRODUCTNAME} community is responsible for the development of this product, and invites you to consider participating as a community member. If you are a new user, you can visit the ${PRODUCTNAME} site, where you will find lots of information about the ${PRODUCTNAME} project and the communities that exist around it. Go to <a href=\"https://www.libreoffice.org/\">https://www.libreoffice.org/</a>."
-msgstr ""
+msgstr "Tämän ohjelmiston kehittänyt ${PRODUCTNAME}-yhteisö haluaa kutsua myös sinut osallistumaan yhteisön toimintaan. Uutena käyttäjänä sinun olisi hyvä tutustua ${PRODUCTNAME}n sivustoon, josta löytyy paljon tietoa ${PRODUCTNAME}-projektista ja sen parissa toimivista yhteisöistä. Lisää tietoa löytyy osoitteesta <a href=\"https://fi.libreoffice.org/\">https://fi.libreoffice.org/</a>."
#: readme.xrm
msgctxt ""
@@ -86,7 +86,7 @@ msgctxt ""
"A13b\n"
"readmeitem.text"
msgid "If you appreciate their efforts, and would like to ensure that ${PRODUCTNAME} continues to be available far into the future, please consider contributing to the project - see <a href=\"https://www.documentfoundation.org/contribution/\">https://www.documentfoundation.org/contribution/</a> for details. Everyone can make a contribution of some kind."
-msgstr ""
+msgstr "Jos arvostat tätä työtä ja haluat auttaa ${PRODUCTNAME}a kehittymään jatkossakin, voit osallistua projektiin. Katso lisää tietoa osoitteesta <a href=\"https://www.documentfoundation.org/contribution/\">https://www.documentfoundation.org/contribution/</a>. Kaikki voivat osallistua jollakin tavalla."
#: readme.xrm
msgctxt ""
@@ -117,8 +117,8 @@ msgctxt ""
"readme.xrm\n"
"macxiOSX\n"
"readmeitem.text"
-msgid "MacOSX 10.8 (Mountain Lion) or higher"
-msgstr "Mac OS X 10.8 (Mountain Lion) tai uudempi"
+msgid "MacOSX 10.9 (Mavericks) or higher"
+msgstr "MacOSX 10.9 (Mavericks) tai uudempi"
#: readme.xrm
msgctxt ""
@@ -126,7 +126,7 @@ msgctxt ""
"s2s3sdf21\n"
"readmeitem.text"
msgid "Microsoft Windows 7 SP1, 8, 8.1 Update (S14) or 10"
-msgstr ""
+msgstr "Microsoft Windows 7 SP1, 8, 8.1 Update (S14) tai 10"
#: readme.xrm
msgctxt ""
@@ -406,7 +406,7 @@ msgctxt ""
"otherinstall2\n"
"readmeitem.text"
msgid "The RPMS (or DEBS, respectively) directory also contains a package named libreoffice${PRODUCTVERSION}-freedesktop-menus-${PRODUCTVERSION}.0.1-1.noarch.rpm (or libreoffice${PRODUCTVERSION}-debian-menus_${PRODUCTVERSION}.0.1-1_all.deb, respectively, or similar). This is a package for all Linux distributions that support the Freedesktop.org specifications/recommendations (<a href=\"https://en.wikipedia.org/wiki/Freedesktop.org\">https://en.wikipedia.org/wiki/Freedesktop.org</a>), and is provided for installation on other Linux distributions not covered in the aforementioned instructions."
-msgstr ""
+msgstr "Kansio RPMS (tai DEBS) sisältää myös paketin nimeltä libreoffice${PRODUCTVERSION}-freedesktop-menus-${PRODUCTVERSION}.0.1-1.noarch.rpm (tai libreoffice${PRODUCTVERSION}-debian-menus_${PRODUCTVERSION}.0.1-1_all.deb, tai vastaavan). Tämä paketti soveltuu kaikille Linux-jakeluille, jotka tukevat Freedesktop.orgin määrityksiä (<a href=\"https://en.wikipedia.org/wiki/Freedesktop.org\">https://en.wikipedia.org/wiki/Freedesktop.org</a>). Sitä kannattaa käyttää, jos järjestelmällesi ei ole omaa työpöytäintegraatiopakettia."
#: readme.xrm
msgctxt ""
@@ -646,7 +646,7 @@ msgctxt ""
"pji76w1\n"
"readmeitem.text"
msgid "When sending a document via 'File - Send - Document as E-mail' or 'Document as PDF Attachment' problems might occur (program crashes or hangs). This is due to the Windows system file \"Mapi\" (Messaging Application Programming Interface) which causes problems in some file versions. Unfortunately, the problem cannot be narrowed down to a certain version number. For more information visit <a href=\"https://www.microsoft.com\">https://www.microsoft.com</a> to search the Microsoft Knowledge Base for \"mapi dll\"."
-msgstr ""
+msgstr "Windows-käyttöjärjestelmissä saattaa ilmaantua ongelmia (ohjelma kaatuu tai jumiutuu) silloin, kun asiakirja yritetään lähettää 'Tiedosto - Lähetä - Asiakirja sähköpostina' tai 'Asiakirja PDF-liitteenä' -toimintojen avulla. Tämä johtuu sähköpostin välitykseen liittyvästä \"MAPI\"-järjestelmätiedostosta Windowsissa. Valitettavasti tämä ongelma ei esiinny vain tietyissä tunnetuissa Windows-versioissa. Lisätietoja aiheesta löytyy <a href=\"https://www.microsoft.com\">https://www.microsoft.com/</a> -sivuilta, hakemalla Microsoft Knowledge Base -tietämyskannasta hakusanaa \"mapi.dll\"."
#: readme.xrm
msgctxt ""
@@ -662,7 +662,7 @@ msgctxt ""
"access7\n"
"readmeitem.text"
msgid "For more information on the accessibility features in ${PRODUCTNAME}, see <a href=\"https://www.libreoffice.org/accessibility/\">https://www.libreoffice.org/accessibility/</a>"
-msgstr ""
+msgstr "Lisää tietoa ${PRODUCTNAME}n saavutettavuustoiminnoista löytyy osoitteesta <a href=\"https://www.libreoffice.org/accessibility/\">https://www.libreoffice.org/accessibility/</a>"
#: readme.xrm
msgctxt ""
@@ -678,7 +678,7 @@ msgctxt ""
"support1\n"
"readmeitem.text"
msgid "The <a href=\"https://www.libreoffice.org/get-help/community-support/\">main support page</a> offers various possibilities for help with ${PRODUCTNAME}. Your question may have already been answered - check the Community Forum at <a href=\"https://www.documentfoundation.org/nabble/\">https://www.documentfoundation.org/nabble/</a> or search the archives of the 'users@libreoffice.org' mailing list at <a href=\"https://www.libreoffice.org/lists/users/\">https://www.libreoffice.org/lists/users/</a>. Alternatively, you can send in your questions to <a href=\"mailto:users@libreoffice.org\">users@libreoffice.org</a>. If you like to subscribe to the list (to get email responses), send an empty mail to: <a href=\"mailto:users+subscribe@libreoffice.org\">users+subscribe@libreoffice.org</a>."
-msgstr ""
+msgstr "<a href=\"https://www.libreoffice.org/get-help/community-support/\">Tukisivustomme</a> tarjoaa erilaisia tukivaihtoehtoja ${PRODUCTNAME}lle. Kysymyksiisi voi löytyä vastaus myös englanninkieliseltä keskustelualueelta <a href=\"https://www.documentfoundation.org/nabble/\">https://www.documentfoundation.org/nabble/</a> tai englanninkieliseltä tukilistalta 'users@libreoffice.org' osoitteessa <a href=\"https://www.libreoffice.org/lists/users/\">https://www.libreoffice.org/lists/users/</a>. Voit myös lähettää kysymyksesi sähköpostitse julkiselle tukipostituslistalle osoitteeseen <a href=\"mailto:users@libreoffice.org\">users@libreoffice.org</a>. Jos haluat saada sähköpostiisi kaikki tukilistalle tulevat viestit, lähetä tyhjä sähköpostiviesti osoitteeseen <a href=\"mailto:users+subscribe@libreoffice.org\">users+subscribe@libreoffice.org</a>."
#: readme.xrm
msgctxt ""
@@ -686,7 +686,7 @@ msgctxt ""
"faq\n"
"readmeitem.text"
msgid "Also check the FAQ section at <a href=\"https://www.libreoffice.org/get-help/frequently-asked-questions/\">the LibreOffice website</a>."
-msgstr ""
+msgstr "Katso myös usein kysytyt kysymykset <a href=\"https://www.libreoffice.org/get-help/frequently-asked-questions/\">LibreOffice-sivustolta</a>."
#: readme.xrm
msgctxt ""
@@ -702,7 +702,7 @@ msgctxt ""
"reportbugs1\n"
"readmeitem.text"
msgid "Our system for reporting, tracking and solving bugs is currently Bugzilla, hosted at <a href=\"http://bugs.documentfoundation.org/\">http://bugs.documentfoundation.org/</a>. We encourage all users to feel entitled and welcome to report bugs that may arise on your particular platform. Energetic reporting of bugs is one of the most important contributions that the user community can make to the ongoing development and improvement of ${PRODUCTNAME}."
-msgstr ""
+msgstr "Bugien raportoimiseen ja seurantaan käytämme Bugzillaa osoitteessa <a href=\"http://bugs.documentfoundation.org/\">http://bugs.documentfoundation.org/</a>. Toivotamme kaikki käyttäjät tervetulleeksi raportoimaan havaitsemistaan vioista. Huolellinen bugien raportointi on yksi tehokkaimmista tavoista, joilla käyttäjät voivat auttaa ${PRODUCTNAME}n jatkokehitystä."
#: readme.xrm
msgctxt ""
@@ -726,7 +726,7 @@ msgctxt ""
"gettingimvolved3\n"
"readmeitem.text"
msgid "As a user, you are already a valuable part of the suite's development process and we would like to encourage you to take an even more active role with a view to being a long-term contributor to the community. Please join and check out the contributing page at <a href=\"https://www.libreoffice.org/community/get-involved/\">the LibreOffice website</a>."
-msgstr ""
+msgstr "Käyttäjänäkin olet jo arvokas osa ohjelmiston kehitysprosessia. Haluaisimme rohkaista käyttäjiämme aktiivisuuteen, ja kannustamme sinua toimimaan yhteisön hyväksi pitkäaikaisena jäsenenä. Lisää tietoa tavoista osallistua löytyy <a href=\"https://www.libreoffice.org/community/get-involved/\">LibreOffice-sivustolta</a>."
#: readme.xrm
msgctxt ""
@@ -742,7 +742,7 @@ msgctxt ""
"howtostart1\n"
"readmeitem.text"
msgid "The best way to start contributing is to subscribe to one or more of the mailing lists, lurk for a while, and gradually use the mail archives to familiarize yourself with many of the topics covered since the ${PRODUCTNAME} source code was released back in October 2000. When you're comfortable, all you need to do is send an email self-introduction and jump right in. If you are familiar with Open Source Projects, check out our To-Dos list and see if there is anything you would like to help with at <a href=\"https://www.libreoffice.org/community/developers/\">the LibreOffice website</a>."
-msgstr ""
+msgstr "Paras tapa aloittaa yhteisön toimintaan osallistuminen on tilata yksi tai useampia postituslistoja, seurata niillä käytävää keskustelua jonkin aikaa ja vähitellen käyttää postituslistojen arkistoja tutustuaksesi keskustelunaiheisiin, joita on käsitelty sen jälkeen kun ${PRODUCTNAME}n lähdekoodi alunperin julkaistiin syksyllä 2000. Tämän jälkeen voit lähettää listalle viestin, jossa esittelet itsesi ja tarjoudut auttamaan. Jos tunnet avoimen lähdekoodin kehitysprojekteja, vilkaise <a href=\"https://www.libreoffice.org/community/developers/\">LibreOffice-sivustolta</a>, mitä tehtävää olisi tarjolla."
#: readme.xrm
msgctxt ""
@@ -758,7 +758,7 @@ msgctxt ""
"subscribe1\n"
"readmeitem.text"
msgid "Here are a few of the mailing lists to which you can subscribe at <a href=\"https://www.libreoffice.org/get-help/mailing-lists/\">https://www.libreoffice.org/get-help/mailing-lists/</a>"
-msgstr ""
+msgstr "Tässä on muutamia englanninkielisiä sähköpostilistoja, joille voit liittyä osoitteessa <a href=\"https://www.libreoffice.org/get-help/mailing-lists/\">https://www.libreoffice.org/get-help/mailing-lists/</a>"
#: readme.xrm
msgctxt ""
diff --git a/source/fi/sc/messages.po b/source/fi/sc/messages.po
index 265170bcd90..d97b0dd6838 100644
--- a/source/fi/sc/messages.po
+++ b/source/fi/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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-12 14:40+0200\n"
"PO-Revision-Date: 2018-02-18 11:54+0000\n"
"Last-Translator: Harri Pitkänen <hatapitk@iki.fi>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1869,16 +1869,21 @@ msgid "Nested arrays are not supported."
msgstr "Sisäkkäisiä taulukoita ei tueta."
#: sc/inc/globstr.hrc:390
+msgctxt "STR_ERR_LONG_BAD_ARRAY_CONTENT"
+msgid "Unsupported inline array content."
+msgstr ""
+
+#: sc/inc/globstr.hrc:391
msgctxt "STR_UNDO_TEXTTOCOLUMNS"
msgid "Text to Columns"
msgstr "Teksti sarakkeiksi"
-#: sc/inc/globstr.hrc:391
+#: sc/inc/globstr.hrc:392
msgctxt "STR_DOC_UPDATED"
msgid "Your spreadsheet has been updated with changes saved by other users."
msgstr "Laskentataulukkoa on päivitetty muiden käyttäjien tekemillä muutoksilla."
-#: sc/inc/globstr.hrc:392
+#: sc/inc/globstr.hrc:393
msgctxt "STR_DOC_WILLBESAVED"
msgid ""
"The spreadsheet must be saved now to activate sharing mode.\n"
@@ -1889,7 +1894,7 @@ msgstr ""
"\n"
"Haluatko jatkaa?"
-#: sc/inc/globstr.hrc:393
+#: sc/inc/globstr.hrc:394
msgctxt "STR_DOC_WILLNOTBESAVED"
msgid ""
"Already resolved merge conflicts will be lost and your changes to the shared spreadsheet will not be saved.\n"
@@ -1900,7 +1905,7 @@ msgstr ""
"\n"
"Haluatko jatkaa?"
-#: sc/inc/globstr.hrc:394
+#: sc/inc/globstr.hrc:395
msgctxt "STR_DOC_DISABLESHARED"
msgid ""
"Disabling shared mode of a spreadsheet hinders all other users of the shared spreadsheet to merge back their work.\n"
@@ -1911,7 +1916,7 @@ msgstr ""
"\n"
"Haluatko jatkaa?"
-#: sc/inc/globstr.hrc:395
+#: sc/inc/globstr.hrc:396
msgctxt "STR_DOC_NOLONGERSHARED"
msgid ""
"This spreadsheet is no longer in shared mode.\n"
@@ -1922,7 +1927,7 @@ msgstr ""
"\n"
"Tallenna laskentataulukko erilliseen tiedostoon ja siirrä muutoksesi jaettuun taulukkoon manuaalisesti."
-#: sc/inc/globstr.hrc:396
+#: sc/inc/globstr.hrc:397
msgctxt "STR_FILE_LOCKED_TRY_LATER"
msgid ""
"The shared spreadsheet file is locked due to a merge in progress by user: '%1'\n"
@@ -1933,7 +1938,7 @@ msgstr ""
"\n"
"Lukitun tiedoston jaettua muokkaustilaa ei voi ottaa pois käytöstä. Kokeile myöhemmin uudestaan."
-#: sc/inc/globstr.hrc:397
+#: sc/inc/globstr.hrc:398
msgctxt "STR_FILE_LOCKED_SAVE_LATER"
msgid ""
"The shared spreadsheet file is locked due to a merge in progress by user: '%1'\n"
@@ -1944,147 +1949,147 @@ msgstr ""
"\n"
"Yritä tallentaa muutoksesi myöhemmin uudestaan."
-#: sc/inc/globstr.hrc:398
+#: sc/inc/globstr.hrc:399
msgctxt "STR_UNKNOWN_USER"
msgid "Unknown User"
msgstr "Tuntematon käyttäjä"
-#: sc/inc/globstr.hrc:399
+#: sc/inc/globstr.hrc:400
msgctxt "STR_SHAPE_AUTOSHAPE"
msgid "AutoShape"
msgstr "Automaattinen muoto"
-#: sc/inc/globstr.hrc:400
+#: sc/inc/globstr.hrc:401
msgctxt "STR_SHAPE_RECTANGLE"
msgid "Rectangle"
msgstr "Suorakulmio"
-#: sc/inc/globstr.hrc:401
+#: sc/inc/globstr.hrc:402
msgctxt "STR_SHAPE_LINE"
msgid "Line"
msgstr "Viiva"
-#: sc/inc/globstr.hrc:402
+#: sc/inc/globstr.hrc:403
msgctxt "STR_SHAPE_OVAL"
msgid "Oval"
msgstr "Ovaali"
-#: sc/inc/globstr.hrc:403
+#: sc/inc/globstr.hrc:404
msgctxt "STR_FORM_BUTTON"
msgid "Button"
msgstr "Painike"
-#: sc/inc/globstr.hrc:404
+#: sc/inc/globstr.hrc:405
msgctxt "STR_FORM_CHECKBOX"
msgid "Check Box"
msgstr "Valintaruutu"
-#: sc/inc/globstr.hrc:405
+#: sc/inc/globstr.hrc:406
msgctxt "STR_FORM_OPTIONBUTTON"
msgid "Option Button"
msgstr "Valintapainike"
-#: sc/inc/globstr.hrc:406
+#: sc/inc/globstr.hrc:407
msgctxt "STR_FORM_LABEL"
msgid "Label"
msgstr "Otsake"
-#: sc/inc/globstr.hrc:407
+#: sc/inc/globstr.hrc:408
msgctxt "STR_FORM_LISTBOX"
msgid "List Box"
msgstr "Lista"
-#: sc/inc/globstr.hrc:408
+#: sc/inc/globstr.hrc:409
msgctxt "STR_FORM_GROUPBOX"
msgid "Group Box"
msgstr "Ryhmävalinta"
-#: sc/inc/globstr.hrc:409
+#: sc/inc/globstr.hrc:410
msgctxt "STR_FORM_DROPDOWN"
msgid "Drop Down"
msgstr "Alasvetovalikko"
-#: sc/inc/globstr.hrc:410
+#: sc/inc/globstr.hrc:411
msgctxt "STR_FORM_SPINNER"
msgid "Spinner"
msgstr "Selaaja"
-#: sc/inc/globstr.hrc:411
+#: sc/inc/globstr.hrc:412
msgctxt "STR_FORM_SCROLLBAR"
msgid "Scroll Bar"
msgstr "Vierityspalkki"
-#: sc/inc/globstr.hrc:412
+#: sc/inc/globstr.hrc:413
msgctxt "STR_STYLE_FAMILY_CELL"
msgid "Cell Styles"
msgstr "Solun tyylit"
-#: sc/inc/globstr.hrc:413
+#: sc/inc/globstr.hrc:414
msgctxt "STR_STYLE_FAMILY_PAGE"
msgid "Page Styles"
msgstr "Sivun tyylit"
-#: sc/inc/globstr.hrc:414
+#: sc/inc/globstr.hrc:415
msgctxt "STR_ERR_DATAPILOTSOURCE"
msgid "Pivot table source data is invalid."
msgstr "Tietojen ohjauksen lähdetietoalue on virheellinen."
-#: sc/inc/globstr.hrc:415
+#: sc/inc/globstr.hrc:416
msgctxt "STR_OPTIONS_WARN_SEPARATORS"
msgid "Because the current formula separator settings conflict with the locale, the formula separators have been reset to their default values."
msgstr "Koska nykyinen kaavaerotinasetus on ristiriidassa paikallisasetusten kanssa, kaavaerottimet on palautettu oletusarvoihinsa."
-#: sc/inc/globstr.hrc:416
+#: sc/inc/globstr.hrc:417
msgctxt "STR_UNDO_INSERT_CURRENT_DATE"
msgid "Insert Current Date"
msgstr "Liitä tämänhetkinen päiväys"
-#: sc/inc/globstr.hrc:417
+#: sc/inc/globstr.hrc:418
msgctxt "STR_UNDO_INSERT_CURRENT_TIME"
msgid "Insert Current Time"
msgstr "Liitä tämänhetkinen aika"
-#: sc/inc/globstr.hrc:418
+#: sc/inc/globstr.hrc:419
msgctxt "STR_MANAGE_NAMES"
msgid "Manage Names..."
msgstr "Nimien hallinta..."
-#: sc/inc/globstr.hrc:419
+#: sc/inc/globstr.hrc:420
msgctxt "STR_HEADER_NAME"
msgid "Name"
msgstr "Nimi"
-#: sc/inc/globstr.hrc:420
+#: sc/inc/globstr.hrc:421
msgctxt "STR_HEADER_RANGE_OR_EXPR"
msgid "Range or formula expression"
msgstr "Alue tai lauseke"
-#: sc/inc/globstr.hrc:421
+#: sc/inc/globstr.hrc:422
msgctxt "STR_HEADER_SCOPE"
msgid "Scope"
msgstr "Näkyvyys"
-#: sc/inc/globstr.hrc:422
+#: sc/inc/globstr.hrc:423
msgctxt "STR_MULTI_SELECT"
msgid "(multiple)"
msgstr "(monivalinta)"
-#: sc/inc/globstr.hrc:423
+#: sc/inc/globstr.hrc:424
msgctxt "STR_GLOBAL_SCOPE"
msgid "Document (Global)"
msgstr "Asiakirja (globaali)"
-#: sc/inc/globstr.hrc:424
+#: sc/inc/globstr.hrc:425
msgctxt "STR_ERR_NAME_EXISTS"
msgid "Invalid name. Already in use for the selected scope."
msgstr "Nimi ei kelpaa. Se on jo käytössä valitussa kohteessa."
-#: sc/inc/globstr.hrc:425
+#: sc/inc/globstr.hrc:426
msgctxt "STR_ERR_NAME_INVALID"
msgid "Invalid name. Only use letters, numbers and underscore."
msgstr "Nimi ei kelpaa. Käytä vain kirjaimia, numeroita ja alaviivoja."
-#: sc/inc/globstr.hrc:426
+#: sc/inc/globstr.hrc:427
msgctxt "STR_UNSAVED_EXT_REF"
msgid ""
"This Document contains external references to unsaved documents.\n"
@@ -2095,217 +2100,217 @@ msgstr ""
"\n"
"Haluatko jatkaa?"
-#: sc/inc/globstr.hrc:427
+#: sc/inc/globstr.hrc:428
msgctxt "STR_CLOSE_WITH_UNSAVED_REFS"
msgid "This Document is referenced by another document and not yet saved. Closing it without saving will result in data loss."
msgstr "Tähän tallentamattomaan asiakirjaan viitataan toisesta asiakirjasta. Asiakirjan sulkeminen tallentamatta aiheuttaa siinä olevien tietojen menettämisen."
-#: sc/inc/globstr.hrc:428
+#: sc/inc/globstr.hrc:429
msgctxt "STR_HEADER_RANGE"
msgid "Range"
msgstr "Alue"
-#: sc/inc/globstr.hrc:429
+#: sc/inc/globstr.hrc:430
msgctxt "STR_HEADER_COND"
msgid "First Condition"
msgstr "Ensimmäinen ehto"
-#: sc/inc/globstr.hrc:430
+#: sc/inc/globstr.hrc:431
msgctxt "STR_COND_CONDITION"
msgid "Cell value is"
msgstr "Solun arvo on"
-#: sc/inc/globstr.hrc:431
+#: sc/inc/globstr.hrc:432
msgctxt "STR_COND_COLORSCALE"
msgid "ColorScale"
msgstr "VariSkaala"
-#: sc/inc/globstr.hrc:432
+#: sc/inc/globstr.hrc:433
msgctxt "STR_COND_DATABAR"
msgid "DataBar"
msgstr "VariPalkki"
-#: sc/inc/globstr.hrc:433
+#: sc/inc/globstr.hrc:434
msgctxt "STR_COND_ICONSET"
msgid "IconSet"
msgstr "KuvakeKokoelma"
-#: sc/inc/globstr.hrc:434
+#: sc/inc/globstr.hrc:435
msgctxt "STR_COND_BETWEEN"
msgid "between"
msgstr "välillä"
-#: sc/inc/globstr.hrc:435
+#: sc/inc/globstr.hrc:436
msgctxt "STR_COND_NOTBETWEEN"
msgid "not between"
msgstr "ei väliltä"
-#: sc/inc/globstr.hrc:436
+#: sc/inc/globstr.hrc:437
msgctxt "STR_COND_UNIQUE"
msgid "unique"
msgstr "uniikki"
-#: sc/inc/globstr.hrc:437
+#: sc/inc/globstr.hrc:438
msgctxt "STR_COND_DUPLICATE"
msgid "duplicate"
msgstr "kaksoiskappale"
-#: sc/inc/globstr.hrc:438
+#: sc/inc/globstr.hrc:439
msgctxt "STR_COND_FORMULA"
msgid "Formula is"
msgstr "Kaava on"
-#: sc/inc/globstr.hrc:439
+#: sc/inc/globstr.hrc:440
msgctxt "STR_COND_TOP10"
msgid "Top Elements"
msgstr "Ylimmät elementit"
-#: sc/inc/globstr.hrc:440
+#: sc/inc/globstr.hrc:441
msgctxt "STR_COND_BOTTOM10"
msgid "Bottom Elements"
msgstr "Alimmat elementit"
-#: sc/inc/globstr.hrc:441
+#: sc/inc/globstr.hrc:442
msgctxt "STR_COND_TOP_PERCENT"
msgid "Top Percent"
msgstr "Ylin prosentti"
-#: sc/inc/globstr.hrc:442
+#: sc/inc/globstr.hrc:443
msgctxt "STR_COND_DATE"
msgid "Date is"
msgstr "Päivämäärä on"
-#: sc/inc/globstr.hrc:443
+#: sc/inc/globstr.hrc:444
msgctxt "STR_COND_BOTTOM_PERCENT"
msgid "Bottom Percent"
msgstr "Alin prosentti"
-#: sc/inc/globstr.hrc:444
+#: sc/inc/globstr.hrc:445
msgctxt "STR_COND_ABOVE_AVERAGE"
msgid "Above Average"
msgstr "Yli keskiarvon"
-#: sc/inc/globstr.hrc:445
+#: sc/inc/globstr.hrc:446
msgctxt "STR_COND_BELOW_AVERAGE"
msgid "Below Average"
msgstr "Alle keskiarvon"
-#: sc/inc/globstr.hrc:446
+#: sc/inc/globstr.hrc:447
msgctxt "STR_COND_ABOVE_EQUAL_AVERAGE"
msgid "Above or equal Average"
msgstr "Vähintään keskiarvo"
-#: sc/inc/globstr.hrc:447
+#: sc/inc/globstr.hrc:448
msgctxt "STR_COND_BELOW_EQUAL_AVERAGE"
msgid "Below or equal Average"
msgstr "Enintään keskiarvo"
-#: sc/inc/globstr.hrc:448
+#: sc/inc/globstr.hrc:449
msgctxt "STR_COND_ERROR"
msgid "an Error code"
msgstr "virhekoodi"
-#: sc/inc/globstr.hrc:449
+#: sc/inc/globstr.hrc:450
msgctxt "STR_COND_NOERROR"
msgid "not an Error code"
msgstr "ei virhekoodi"
-#: sc/inc/globstr.hrc:450
+#: sc/inc/globstr.hrc:451
msgctxt "STR_COND_BEGINS_WITH"
msgid "Begins with"
msgstr "Alkaa"
-#: sc/inc/globstr.hrc:451
+#: sc/inc/globstr.hrc:452
msgctxt "STR_COND_ENDS_WITH"
msgid "Ends with"
msgstr "Loppuu"
-#: sc/inc/globstr.hrc:452
+#: sc/inc/globstr.hrc:453
msgctxt "STR_COND_CONTAINS"
msgid "Contains"
msgstr "Sisältää"
-#: sc/inc/globstr.hrc:453
+#: sc/inc/globstr.hrc:454
msgctxt "STR_COND_NOT_CONTAINS"
msgid "Not Contains"
msgstr "Ei sisällä"
-#: sc/inc/globstr.hrc:454
+#: sc/inc/globstr.hrc:455
msgctxt "STR_COND_TODAY"
msgid "today"
msgstr "tänään"
-#: sc/inc/globstr.hrc:455
+#: sc/inc/globstr.hrc:456
msgctxt "STR_COND_YESTERDAY"
msgid "yesterday"
msgstr "eilen"
-#: sc/inc/globstr.hrc:456
+#: sc/inc/globstr.hrc:457
msgctxt "STR_COND_TOMORROW"
msgid "tomorrow"
msgstr "huomenna"
-#: sc/inc/globstr.hrc:457
+#: sc/inc/globstr.hrc:458
msgctxt "STR_COND_LAST7DAYS"
msgid "in the last 7 days"
msgstr "viimeisen 7 päivän aikana"
-#: sc/inc/globstr.hrc:458
+#: sc/inc/globstr.hrc:459
msgctxt "STR_COND_THISWEEK"
msgid "this week"
msgstr "tällä viikolla"
-#: sc/inc/globstr.hrc:459
+#: sc/inc/globstr.hrc:460
msgctxt "STR_COND_LASTWEEK"
msgid "last week"
msgstr "edellisellä viikolla"
-#: sc/inc/globstr.hrc:460
+#: sc/inc/globstr.hrc:461
msgctxt "STR_COND_NEXTWEEK"
msgid "next week"
msgstr "seuraavalla viikolla"
-#: sc/inc/globstr.hrc:461
+#: sc/inc/globstr.hrc:462
msgctxt "STR_COND_THISMONTH"
msgid "this month"
msgstr "tässä kuussa"
-#: sc/inc/globstr.hrc:462
+#: sc/inc/globstr.hrc:463
msgctxt "STR_COND_LASTMONTH"
msgid "last month"
msgstr "edellisessä kuussa"
-#: sc/inc/globstr.hrc:463
+#: sc/inc/globstr.hrc:464
msgctxt "STR_COND_NEXTMONTH"
msgid "next month"
msgstr "seuraavassa kuussa"
-#: sc/inc/globstr.hrc:464
+#: sc/inc/globstr.hrc:465
msgctxt "STR_COND_THISYEAR"
msgid "this year"
msgstr "tänä vuonna"
-#: sc/inc/globstr.hrc:465
+#: sc/inc/globstr.hrc:466
msgctxt "STR_COND_LASTYEAR"
msgid "last year"
msgstr "viime vuonna"
-#: sc/inc/globstr.hrc:466
+#: sc/inc/globstr.hrc:467
msgctxt "STR_COND_NEXTYEAR"
msgid "next year"
msgstr "ensi vuonna"
-#: sc/inc/globstr.hrc:467
+#: sc/inc/globstr.hrc:468
msgctxt "STR_COND_AND"
msgid "and"
msgstr "ja"
-#: sc/inc/globstr.hrc:468
+#: sc/inc/globstr.hrc:469
msgctxt "STR_ERR_CONDFORMAT_PROTECTED"
msgid "Conditional Formats can not be created, deleted or changed in protected sheets."
msgstr ""
-#: sc/inc/globstr.hrc:469
+#: sc/inc/globstr.hrc:470
msgctxt "STR_EDIT_EXISTING_COND_FORMATS"
msgid ""
"The selected cell already contains conditional formatting. You can either edit the existing conditional format or you define a new overlapping conditional format.\n"
@@ -2316,7 +2321,7 @@ msgstr ""
"\n"
" Haluatko muokata nykyistä ehdollista muotoilua?"
-#: sc/inc/globstr.hrc:470
+#: sc/inc/globstr.hrc:471
msgctxt "STR_QUERY_FORMULA_RECALC_ONLOAD_ODS"
msgid ""
"This document was last saved by an application other than %PRODUCTNAME. Some formula cells may produce different results when recalculated.\n"
@@ -2327,7 +2332,7 @@ msgstr ""
"\n"
"Haluatko, että kaikkien kaavasolujen arvot tässä asiakirjassa lasketaan uudelleen?"
-#: sc/inc/globstr.hrc:471
+#: sc/inc/globstr.hrc:472
msgctxt "STR_QUERY_FORMULA_RECALC_ONLOAD_XLS"
msgid ""
"This document was last saved by Excel. Some formula cells may produce different results when recalculated.\n"
@@ -2338,77 +2343,77 @@ msgstr ""
"\n"
"Haluatko, että kaikkien kaavasolujen arvot tässä asiakirjassa lasketaan uudelleen?"
-#: sc/inc/globstr.hrc:472
+#: sc/inc/globstr.hrc:473
msgctxt "STR_NO_INSERT_DELETE_OVER_PIVOT_TABLE"
msgid "You cannot insert or delete cells when the affected range intersects with pivot table."
msgstr "Soluja ei voi lisätä tai poistaa, jos muutettava alue osuu tietojen ohjaustaulukon alueelle."
-#: sc/inc/globstr.hrc:473
+#: sc/inc/globstr.hrc:474
msgctxt "STR_DPFIELD_GROUP_BY_SECONDS"
msgid "Seconds"
msgstr "Sekuntia"
-#: sc/inc/globstr.hrc:474
+#: sc/inc/globstr.hrc:475
msgctxt "STR_DPFIELD_GROUP_BY_MINUTES"
msgid "Minutes"
msgstr "minuutti"
-#: sc/inc/globstr.hrc:475
+#: sc/inc/globstr.hrc:476
msgctxt "STR_DPFIELD_GROUP_BY_HOURS"
msgid "Hours"
msgstr "Tuntia"
-#: sc/inc/globstr.hrc:476
+#: sc/inc/globstr.hrc:477
msgctxt "STR_DPFIELD_GROUP_BY_DAYS"
msgid "Days"
msgstr "Päivät"
-#: sc/inc/globstr.hrc:477
+#: sc/inc/globstr.hrc:478
msgctxt "STR_DPFIELD_GROUP_BY_MONTHS"
msgid "Months"
msgstr "Kuukausien määrä"
-#: sc/inc/globstr.hrc:478
+#: sc/inc/globstr.hrc:479
msgctxt "STR_DPFIELD_GROUP_BY_QUARTERS"
msgid "Quarters"
msgstr "Vuosineljännestä"
-#: sc/inc/globstr.hrc:479
+#: sc/inc/globstr.hrc:480
msgctxt "STR_DPFIELD_GROUP_BY_YEARS"
msgid "Years"
msgstr "Vuotta"
-#: sc/inc/globstr.hrc:480
+#: sc/inc/globstr.hrc:481
msgctxt "STR_INVALIDVAL"
msgid "Invalid target value."
msgstr "Virheellinen kohdearvo."
-#: sc/inc/globstr.hrc:481
+#: sc/inc/globstr.hrc:482
msgctxt "STR_INVALIDVAR"
msgid "Undefined name for variable cell."
msgstr "Määrittämätön nimi muuttujasoluna."
-#: sc/inc/globstr.hrc:482
+#: sc/inc/globstr.hrc:483
msgctxt "STR_INVALIDFORM"
msgid "Undefined name as formula cell."
msgstr "Määrittämätön nimi kaavasoluna."
-#: sc/inc/globstr.hrc:483
+#: sc/inc/globstr.hrc:484
msgctxt "STR_NOFORMULA"
msgid "Formula cell must contain a formula."
msgstr "Kaavasolussa on oltava kaava."
-#: sc/inc/globstr.hrc:484
+#: sc/inc/globstr.hrc:485
msgctxt "STR_INVALIDINPUT"
msgid "Invalid input."
msgstr "Virheellinen syöte."
-#: sc/inc/globstr.hrc:485
+#: sc/inc/globstr.hrc:486
msgctxt "STR_INVALIDCONDITION"
msgid "Invalid condition."
msgstr "Virheellinen ehto."
-#: sc/inc/globstr.hrc:486
+#: sc/inc/globstr.hrc:487
msgctxt "STR_QUERYREMOVE"
msgid ""
"Should the entry\n"
@@ -2419,133 +2424,133 @@ msgstr ""
"#\n"
"?"
-#: sc/inc/globstr.hrc:487
+#: sc/inc/globstr.hrc:488
msgctxt "STR_COPYLIST"
msgid "Copy List"
msgstr "Kopioi luettelo"
-#: sc/inc/globstr.hrc:488
+#: sc/inc/globstr.hrc:489
msgctxt "STR_COPYFROM"
msgid "List from"
msgstr "Luettelo"
-#: sc/inc/globstr.hrc:489
+#: sc/inc/globstr.hrc:490
msgctxt "STR_COPYERR"
msgid "Cells without text have been ignored."
msgstr "Tekstittömät solut ohitettiin."
-#: sc/inc/globstr.hrc:490
+#: sc/inc/globstr.hrc:491
#, c-format
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%s-click to follow hyperlink:"
msgstr "%s-napsautus avaa linkin:"
-#: sc/inc/globstr.hrc:491
+#: sc/inc/globstr.hrc:492
msgctxt "STR_CLICKHYPERLINK"
msgid "click to open hyperlink:"
msgstr "napsautus avaa hyperlinkin:"
-#: sc/inc/globstr.hrc:492
+#: sc/inc/globstr.hrc:493
msgctxt "STR_PRINT_PREVIEW_NODATA"
msgid "No Data"
msgstr "Ei dataa"
-#: sc/inc/globstr.hrc:493
+#: sc/inc/globstr.hrc:494
msgctxt "STR_PRINT_PREVIEW_EMPTY_RANGE"
msgid "Print Range Empty"
msgstr "Tyhjä tulostusalue"
-#: sc/inc/globstr.hrc:494
+#: sc/inc/globstr.hrc:495
msgctxt "STR_UNDO_CONDFORMAT"
msgid "Conditional Format"
msgstr "Ehdollinen muotoilu"
-#: sc/inc/globstr.hrc:495
+#: sc/inc/globstr.hrc:496
msgctxt "STR_UNDO_CONDFORMAT_LIST"
msgid "Conditional Formats"
msgstr "Ehdolliset muotoilut"
-#: sc/inc/globstr.hrc:496
+#: sc/inc/globstr.hrc:497
msgctxt "STR_UNDO_FORMULA_TO_VALUE"
msgid "Convert Formula To Value"
msgstr "Muunna kaava arvoksi"
-#: sc/inc/globstr.hrc:497
+#: sc/inc/globstr.hrc:498
msgctxt "STR_UNQUOTED_STRING"
msgid "Strings without quotes are interpreted as column/row labels."
msgstr "Merkkijonot ilman lainausmerkkejä tulkitaan sarake- tai riviotsikoiksi."
-#: sc/inc/globstr.hrc:498
+#: sc/inc/globstr.hrc:499
msgctxt "STR_ENTER_VALUE"
msgid "Enter a value!"
msgstr "Syötä arvo!"
-#: sc/inc/globstr.hrc:499
+#: sc/inc/globstr.hrc:500
msgctxt "STR_TABLE_COUNT"
msgid "Sheet %1 of %2"
msgstr "Taulukko %1 / %2"
-#: sc/inc/globstr.hrc:500
+#: sc/inc/globstr.hrc:501
msgctxt "STR_FUNCTIONS_FOUND"
msgid "%1 and %2 more"
msgstr "%1 ja %2 lisää"
-#: sc/inc/globstr.hrc:501
+#: sc/inc/globstr.hrc:502
msgctxt "STR_GENERAL"
msgid "General"
msgstr "Yleinen"
-#: sc/inc/globstr.hrc:502
+#: sc/inc/globstr.hrc:503
msgctxt "STR_NUMBER"
msgid "Number"
msgstr "Luku"
-#: sc/inc/globstr.hrc:503
+#: sc/inc/globstr.hrc:504
msgctxt "STR_PERCENT"
msgid "Percent"
msgstr "Prosenttia"
-#: sc/inc/globstr.hrc:504
+#: sc/inc/globstr.hrc:505
msgctxt "STR_CURRENCY"
msgid "Currency"
msgstr "Valuutta"
-#: sc/inc/globstr.hrc:505
+#: sc/inc/globstr.hrc:506
msgctxt "STR_DATE"
msgid "Date"
msgstr "Päivämäärä"
-#: sc/inc/globstr.hrc:506
+#: sc/inc/globstr.hrc:507
msgctxt "STR_TIME"
msgid "Time"
msgstr "Aika"
-#: sc/inc/globstr.hrc:507
+#: sc/inc/globstr.hrc:508
msgctxt "STR_SCIENTIFIC"
msgid "Scientific"
msgstr "Tieteellinen"
-#: sc/inc/globstr.hrc:508
+#: sc/inc/globstr.hrc:509
msgctxt "STR_FRACTION"
msgid "Fraction"
msgstr "Murtoluku"
-#: sc/inc/globstr.hrc:509
+#: sc/inc/globstr.hrc:510
msgctxt "STR_BOOLEAN_VALUE"
msgid "Boolean Value"
msgstr "Boolen arvo"
-#: sc/inc/globstr.hrc:510
+#: sc/inc/globstr.hrc:511
msgctxt "STR_TEXT"
msgid "Text"
msgstr "Teksti"
-#: sc/inc/globstr.hrc:511
+#: sc/inc/globstr.hrc:512
msgctxt "STR_QUERY_PIVOTTABLE_DELTAB"
msgid "The selected sheet(s) contain source data of related pivot tables that will be lost. Are you sure you want to delete the selected sheet(s)?"
msgstr "Valitut taulukot sisältävät tietojen ohjauksen taulukon lähdedataa. Haluatko varmasti poistaa valitut taulukot?"
-#: sc/inc/globstr.hrc:512
+#: sc/inc/globstr.hrc:513
msgctxt "STR_ERR_NAME_INVALID_CELL_REF"
msgid "Invalid name. Reference to a cell, or a range of cells not allowed."
msgstr "Virheellinen nimi. Viittausta soluun tai solualueeseen ei sallita."
@@ -10487,8 +10492,8 @@ msgstr "Tila"
#: sc/inc/scfuncs.hrc:3010
msgctxt "SC_OPCODE_T_TEST"
-msgid "Mode specifies the number of distribution tails to return. 1= one-tailed, 2 = two-tailed distribution"
-msgstr "Tila määrittää palautettavien jakaumahäntien määrän. 1 = yksihäntäinen ja 2 = kaksihäntäinen jakauma"
+msgid "Mode specifies the number of distribution tails to return. 1 = one-tailed, 2 = two-tailed distribution"
+msgstr ""
#: sc/inc/scfuncs.hrc:3011
msgctxt "SC_OPCODE_T_TEST"
@@ -10532,8 +10537,8 @@ msgstr "Tila"
#: sc/inc/scfuncs.hrc:3024
msgctxt "SC_OPCODE_T_TEST_MS"
-msgid "Mode specifies the number of distribution tails to return. 1= one-tailed, 2 = two-tailed distribution"
-msgstr "Tila määrittää palautettavien jakaumahäntien määrän. 1 = yksihäntäinen ja 2 = kaksihäntäinen jakauma"
+msgid "Mode specifies the number of distribution tails to return. 1 = one-tailed, 2 = two-tailed distribution"
+msgstr ""
#: sc/inc/scfuncs.hrc:3025
msgctxt "SC_OPCODE_T_TEST_MS"
@@ -18019,22 +18024,22 @@ msgctxt "mergecellsdialog|MergeCellsDialog"
msgid "Merge Cells"
msgstr "Yhdistä solut"
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:81
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:84
msgctxt "mergecellsdialog|label"
msgid "Some cells are not empty."
msgstr "Jotkin soluista eivät ole tyhjiä."
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:96
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:99
msgctxt "mergecellsdialog|move-cells-radio"
msgid "Move the contents of the hidden cells into the first cell"
msgstr "Siirretäänkö piilotettujen solujen sisältö ensimmäiseen soluun?"
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:112
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:115
msgctxt "mergecellsdialog|empty-cells-radio"
msgid "Empty the contents of the hidden cells"
msgstr "Tyhjennä piilotettujen solujen sisältö"
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:128
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:131
msgctxt "mergecellsdialog|keep-content-radio"
msgid "Keep the contents of the hidden cells"
msgstr "Säilytä piilotettujen solujen sisältö"
diff --git a/source/fi/scp2/source/ooo.po b/source/fi/scp2/source/ooo.po
index 9180ac7d01b..a0f844464c4 100644
--- a/source/fi/scp2/source/ooo.po
+++ b/source/fi/scp2/source/ooo.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: 2018-05-23 23:20+0200\n"
-"PO-Revision-Date: 2018-01-28 11:40+0000\n"
+"PO-Revision-Date: 2018-06-07 17:05+0000\n"
"Last-Translator: Harri Pitkänen <hatapitk@iki.fi>\n"
"Language-Team: Finnish <discuss@fi.libreoffice.org>\n"
"Language: fi\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1517139639.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1528391119.000000\n"
#: folderitem_ooo.ulf
msgctxt ""
@@ -1886,7 +1886,7 @@ msgctxt ""
"STR_NAME_MODULE_LANGPACK_FY\n"
"LngText.text"
msgid "Frisian"
-msgstr ""
+msgstr "friisi"
#: module_langpack.ulf
msgctxt ""
@@ -1894,7 +1894,7 @@ msgctxt ""
"STR_DESC_MODULE_LANGPACK_FY\n"
"LngText.text"
msgid "Installs the Frisian user interface"
-msgstr ""
+msgstr "Asentaa friisinkielisen käyttöliittymän"
#: module_langpack.ulf
msgctxt ""
diff --git a/source/fi/sd/messages.po b/source/fi/sd/messages.po
index a503c0f051c..9556bad3eac 100644
--- a/source/fi/sd/messages.po
+++ b/source/fi/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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2018-02-18 18:15+0000\n"
"Last-Translator: Harri Pitkänen <hatapitk@iki.fi>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -16,167 +16,167 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1518977702.000000\n"
-#: sd/inc/DocumentRenderer.hrc:29
+#: sd/inc/DocumentRenderer.hrc:27
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Slides"
msgstr "Diat"
-#: sd/inc/DocumentRenderer.hrc:30
+#: sd/inc/DocumentRenderer.hrc:28
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Handouts"
msgstr "Tiivistelmä"
-#: sd/inc/DocumentRenderer.hrc:31
+#: sd/inc/DocumentRenderer.hrc:29
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Notes"
msgstr "Muistiinpanot"
-#: sd/inc/DocumentRenderer.hrc:32
+#: sd/inc/DocumentRenderer.hrc:30
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Outline"
msgstr "Jäsennys"
-#: sd/inc/DocumentRenderer.hrc:37
+#: sd/inc/DocumentRenderer.hrc:35
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "According to layout"
msgstr "Asettelun mukaan"
-#: sd/inc/DocumentRenderer.hrc:38
+#: sd/inc/DocumentRenderer.hrc:36
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "1"
msgstr "1"
-#: sd/inc/DocumentRenderer.hrc:39
+#: sd/inc/DocumentRenderer.hrc:37
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "2"
msgstr "2"
-#: sd/inc/DocumentRenderer.hrc:40
+#: sd/inc/DocumentRenderer.hrc:38
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "3"
msgstr "3"
-#: sd/inc/DocumentRenderer.hrc:41
+#: sd/inc/DocumentRenderer.hrc:39
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "4"
msgstr "4"
-#: sd/inc/DocumentRenderer.hrc:42
+#: sd/inc/DocumentRenderer.hrc:40
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "6"
msgstr "6"
-#: sd/inc/DocumentRenderer.hrc:43
+#: sd/inc/DocumentRenderer.hrc:41
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "9"
msgstr "9"
-#: sd/inc/DocumentRenderer.hrc:48
+#: sd/inc/DocumentRenderer.hrc:46
msgctxt "STR_IMPRESS_PRINT_UI_ORDER_CHOICES"
msgid "Left to right, then down"
msgstr "Vasemmalta oikealle, sitten alas"
-#: sd/inc/DocumentRenderer.hrc:49
+#: sd/inc/DocumentRenderer.hrc:47
msgctxt "STR_IMPRESS_PRINT_UI_ORDER_CHOICES"
msgid "Top to bottom, then right"
msgstr "Ylhäältä alas, sitten oikealle"
-#: sd/inc/DocumentRenderer.hrc:54
+#: sd/inc/DocumentRenderer.hrc:52
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Original colors"
msgstr "Alkuperäiset värit"
-#: sd/inc/DocumentRenderer.hrc:55
+#: sd/inc/DocumentRenderer.hrc:53
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Grayscale"
msgstr "Harmaasävy"
-#: sd/inc/DocumentRenderer.hrc:56
+#: sd/inc/DocumentRenderer.hrc:54
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Black & white"
msgstr "Mustavalkoinen"
-#: sd/inc/DocumentRenderer.hrc:61
+#: sd/inc/DocumentRenderer.hrc:59
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Original size"
msgstr "Alkuperäinen koko"
-#: sd/inc/DocumentRenderer.hrc:62
+#: sd/inc/DocumentRenderer.hrc:60
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Fit to printable page"
msgstr "Sovita tulostusalueelle"
-#: sd/inc/DocumentRenderer.hrc:63
+#: sd/inc/DocumentRenderer.hrc:61
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Distribute on multiple sheets of paper"
msgstr "Jaa usealle paperiarkille"
-#: sd/inc/DocumentRenderer.hrc:64
+#: sd/inc/DocumentRenderer.hrc:62
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Tile sheet of paper with repeated slides"
msgstr "Tulosta sama dia useaan kertaan yhdelle arkille"
-#: sd/inc/DocumentRenderer.hrc:69
+#: sd/inc/DocumentRenderer.hrc:67
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Original size"
msgstr "Alkuperäinen koko"
-#: sd/inc/DocumentRenderer.hrc:70
+#: sd/inc/DocumentRenderer.hrc:68
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Fit to printable page"
msgstr "Sovita tulostusalueelle"
-#: sd/inc/DocumentRenderer.hrc:71
+#: sd/inc/DocumentRenderer.hrc:69
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Distribute on multiple sheets of paper"
msgstr "Jaa usealle paperiarkille"
-#: sd/inc/DocumentRenderer.hrc:72
+#: sd/inc/DocumentRenderer.hrc:70
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Tile sheet of paper with repeated pages"
msgstr "Tulosta sama sivu useaan kertaan yhdelle arkille"
-#: sd/inc/DocumentRenderer.hrc:77
+#: sd/inc/DocumentRenderer.hrc:75
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "All pages"
msgstr "Kaikki sivut"
-#: sd/inc/DocumentRenderer.hrc:78
+#: sd/inc/DocumentRenderer.hrc:76
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "Front sides / right pages"
msgstr "Paperin etupuolet / oikeat sivut"
-#: sd/inc/DocumentRenderer.hrc:79
+#: sd/inc/DocumentRenderer.hrc:77
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "Back sides / left pages"
msgstr "Paperin kääntöpuolet / vasemmat sivut"
-#: sd/inc/DocumentRenderer.hrc:84
+#: sd/inc/DocumentRenderer.hrc:82
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~All slides"
msgstr "Kaikki diat"
-#: sd/inc/DocumentRenderer.hrc:85
+#: sd/inc/DocumentRenderer.hrc:83
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~Slides"
msgstr "Diat"
-#: sd/inc/DocumentRenderer.hrc:86
+#: sd/inc/DocumentRenderer.hrc:84
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Se~lection"
msgstr "Valitut diat"
-#: sd/inc/DocumentRenderer.hrc:91
+#: sd/inc/DocumentRenderer.hrc:89
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~All pages"
msgstr "Kaikki sivut"
-#: sd/inc/DocumentRenderer.hrc:92
+#: sd/inc/DocumentRenderer.hrc:90
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Pa~ges"
msgstr "Sivut"
-#: sd/inc/DocumentRenderer.hrc:93
+#: sd/inc/DocumentRenderer.hrc:91
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Se~lection"
msgstr "Valitut diat"
diff --git a/source/fi/svx/messages.po b/source/fi/svx/messages.po
index 44b07e046ba..b68a5abedb4 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: 2018-05-16 16:53+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2018-02-04 17:54+0000\n"
"Last-Translator: Harri Pitkänen <hatapitk@iki.fi>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5179,8 +5179,8 @@ msgstr "Voit halutessasi sisällyttää vikaraporttiin joitakin käyttäjäprofi
#: svx/uiconfig/ui/safemodedialog.ui:432
msgctxt "safemodedialog|btn_create_zip"
-msgid "Create Zip Archive from User Profile"
-msgstr "Luo zip-paketti käyttäjäprofiilista"
+msgid "Archive User Profile"
+msgstr ""
#: svx/uiconfig/ui/safemodedialog.ui:445
msgctxt "safemodedialog|linkbutton_profile"
@@ -8769,9 +8769,9 @@ msgid "Red"
msgstr "Punainen"
#: include/svx/strings.hrc:565
-msgctxt "RID_SVXSTR_COLOR_VIOLET"
-msgid "Violet"
-msgstr "Violetti"
+msgctxt "RID_SVXSTR_COLOR_MAGENTA"
+msgid "Magenta"
+msgstr "Purppura"
#: include/svx/strings.hrc:566
msgctxt "RID_SVXSTR_COLOR_PURPLE"
@@ -8835,9 +8835,9 @@ msgid "Light Red"
msgstr "Kirkas punainen"
#: include/svx/strings.hrc:579
-msgctxt "RID_SVXSTR_COLOR_LIGHTVIOLET"
-msgid "Light Violet"
-msgstr "Vaaleanvioletti"
+msgctxt "RID_SVXSTR_COLOR_LIGHTMAGENTA"
+msgid "Light Magenta"
+msgstr ""
#: include/svx/strings.hrc:580
msgctxt "RID_SVXSTR_COLOR_LIGHTPURPLE"
@@ -8901,9 +8901,9 @@ msgid "Dark Red"
msgstr "Tummanpunainen"
#: include/svx/strings.hrc:593
-msgctxt "RID_SVXSTR_COLOR_DARKVIOLET1"
-msgid "Dark Violet"
-msgstr "Tummanvioletti"
+msgctxt "RID_SVXSTR_COLOR_DARKMAGENTA"
+msgid "Dark Magenta"
+msgstr ""
#: include/svx/strings.hrc:594
msgctxt "RID_SVXSTR_COLOR_DARKPURPLE"
@@ -8937,55 +8937,55 @@ msgstr "Tumma limetti"
#. Elements of the Tonal color palette
#: include/svx/strings.hrc:601
+msgctxt "RID_SVXSTR_COLOR_VIOLET"
+msgid "Violet"
+msgstr "Violetti"
+
+#: include/svx/strings.hrc:602
msgctxt "RID_SVXSTR_COLOR_VIOLET_OUG"
msgid "Violet (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:602
+#: include/svx/strings.hrc:603
msgctxt "RID_SVXSTR_COLOR_BLUE_OUG"
msgid "Blue (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:603
+#: include/svx/strings.hrc:604
msgctxt "RID_SVXSTR_COLOR_AZURE_OUG"
msgid "Azure (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:604
+#: include/svx/strings.hrc:605
msgctxt "RID_SVXSTR_COLOR_SPRINGGREEN_OUG"
msgid "Spring Green (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:605
+#: include/svx/strings.hrc:606
msgctxt "RID_SVXSTR_COLOR_GREEN_OUG"
msgid "Green (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:606
+#: include/svx/strings.hrc:607
msgctxt "RID_SVXSTR_COLOR_CHARTREUSEGREEN_OUG"
msgid "Chartreuse Green (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:607
+#: include/svx/strings.hrc:608
msgctxt "RID_SVXSTR_COLOR_ORANGE_OUG"
msgid "Orange (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:608
+#: include/svx/strings.hrc:609
msgctxt "RID_SVXSTR_COLOR_RED_OUG"
msgid "Red (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:609
+#: include/svx/strings.hrc:610
msgctxt "RID_SVXSTR_COLOR_ROSE_OUG"
msgid "Rose (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:610
-msgctxt "RID_SVXSTR_COLOR_MAGENTA"
-msgid "Magenta"
-msgstr "Purppura"
-
#: include/svx/strings.hrc:611
msgctxt "RID_SVXSTR_COLOR_AZURE"
msgid "Azure"
@@ -12091,13 +12091,13 @@ msgstr "Oikealle osoittavat nuolenmuotoiset luettelomerkit"
#: include/svx/strings.hrc:1273
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_6"
-msgid "Check mark bullets"
-msgstr "Rastit"
+msgid "Cross mark bullets"
+msgstr ""
#: include/svx/strings.hrc:1274
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_7"
-msgid "Tick mark bullets"
-msgstr "Tarkastuslistamerkit"
+msgid "Check mark bullets"
+msgstr ""
#: include/svx/strings.hrc:1275
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_0"
diff --git a/source/fi/sw/messages.po b/source/fi/sw/messages.po
index a2767a94827..56ae6eca512 100644
--- a/source/fi/sw/messages.po
+++ b/source/fi/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: 2018-05-22 13:17+0200\n"
+"POT-Creation-Date: 2018-06-12 14:41+0200\n"
"PO-Revision-Date: 2018-02-18 12:07+0000\n"
"Last-Translator: Harri Pitkänen <hatapitk@iki.fi>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1180,13 +1180,13 @@ msgstr "Sitaatti"
#: sw/inc/strings.hrc:172
msgctxt "STR_POOLCOLL_TOX_ILLUSH"
-msgid "Illustration Index Heading"
-msgstr "Kuvaluettelon otsikko"
+msgid "Figure Index Heading"
+msgstr ""
#: sw/inc/strings.hrc:173
msgctxt "STR_POOLCOLL_TOX_ILLUS1"
-msgid "Illustration Index 1"
-msgstr "Kuvaluettelo 1"
+msgid "Figure Index 1"
+msgstr ""
#: sw/inc/strings.hrc:174
msgctxt "STR_POOLCOLL_TOX_OBJECTH"
@@ -3590,8 +3590,8 @@ msgstr "Objektiluettelo"
#: sw/inc/strings.hrc:672
msgctxt "STR_TOX_ILL"
-msgid "Illustration Index"
-msgstr "Kuvaluettelo"
+msgid "Table of Figures"
+msgstr ""
#: sw/inc/strings.hrc:673
#, c-format
@@ -9244,72 +9244,72 @@ msgctxt "footnotepage|label5"
msgid "Continuation Notice"
msgstr "Jatkoilmoitus"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:49
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:55
msgctxt "footnotesendnotestabpage|ftnntnum"
msgid "_Restart numbering"
msgstr "Aloita numerointi uudestaan"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:91
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:93
msgctxt "footnotesendnotestabpage|ftnoffset_label"
msgid "_Start at:"
msgstr "Aloitus:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:112
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:111
msgctxt "footnotesendnotestabpage|ftnntnumfmt"
msgid "Custom _format"
msgstr "Mukautettu muoto"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:155
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:150
msgctxt "footnotesendnotestabpage|ftnsuffix_label"
msgid "Aft_er:"
msgstr "Jälkeen:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:199
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:188
msgctxt "footnotesendnotestabpage|ftnprefix_label"
msgid "Be_fore:"
msgstr "Ennen:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:228
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:212
msgctxt "footnotesendnotestabpage|ftnntattextend"
msgid "Collec_t at end of text"
msgstr "Kerää tekstin loppuun"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:252
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:234
msgctxt "footnotesendnotestabpage|label1"
msgid "Footnotes"
msgstr "Alaviitteet"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:289
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:271
msgctxt "footnotesendnotestabpage|endntattextend"
msgid "C_ollect at end of section"
msgstr "Kerää osan loppuun"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:315
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:295
msgctxt "footnotesendnotestabpage|endntnum"
msgid "_Restart numbering"
msgstr "Aloita numerointi uudestaan"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:357
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:333
msgctxt "footnotesendnotestabpage|endoffset_label"
msgid "_Start at:"
msgstr "Aloitus:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:378
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:351
msgctxt "footnotesendnotestabpage|endntnumfmt"
msgid "_Custom format"
msgstr "Mukautettu muoto"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:421
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:390
msgctxt "footnotesendnotestabpage|endsuffix_label"
msgid "Aft_er:"
msgstr "Jälkeen:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:465
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:428
msgctxt "footnotesendnotestabpage|endprefix_label"
msgid "Be_fore:"
msgstr "Ennen:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:500
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:458
msgctxt "footnotesendnotestabpage|label2"
msgid "Endnotes"
msgstr "Loppuviitteet"
@@ -9339,27 +9339,27 @@ msgctxt "formatsectiondialog|notes"
msgid "Footnotes/Endnotes"
msgstr "Ala- ja loppuviitteet"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:63
+#: sw/uiconfig/swriter/ui/formattablepage.ui:77
msgctxt "formattablepage|nameft"
msgid "_Name"
msgstr "_Nimi"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:79
+#: sw/uiconfig/swriter/ui/formattablepage.ui:91
msgctxt "formattablepage|widthft"
msgid "W_idth"
msgstr "_Leveys"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:110
+#: sw/uiconfig/swriter/ui/formattablepage.ui:120
msgctxt "formattablepage|relwidth"
msgid "Relati_ve"
msgstr "_Suhteellinen"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:155
+#: sw/uiconfig/swriter/ui/formattablepage.ui:160
msgctxt "formattablepage|label45"
msgid "Properties"
msgstr "Ominaisuudet"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:194
+#: sw/uiconfig/swriter/ui/formattablepage.ui:195
msgctxt "formattablepage|leftft"
msgid "Lef_t"
msgstr "Vase_n"
@@ -9369,62 +9369,62 @@ msgctxt "formattablepage|rightft"
msgid "Ri_ght"
msgstr "Oi_kea"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:228
+#: sw/uiconfig/swriter/ui/formattablepage.ui:226
msgctxt "formattablepage|aboveft"
msgid "_Above"
msgstr "_Ylhäällä"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:245
+#: sw/uiconfig/swriter/ui/formattablepage.ui:241
msgctxt "formattablepage|belowft"
msgid "_Below"
msgstr "_Alhaalla"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:320
+#: sw/uiconfig/swriter/ui/formattablepage.ui:311
msgctxt "formattablepage|label46"
msgid "Spacing"
msgstr "Välit"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:362
+#: sw/uiconfig/swriter/ui/formattablepage.ui:349
msgctxt "formattablepage|full"
msgid "A_utomatic"
msgstr "A_utomaattinen"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:380
+#: sw/uiconfig/swriter/ui/formattablepage.ui:365
msgctxt "formattablepage|left"
msgid "_Left"
msgstr "_Vasen"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:398
+#: sw/uiconfig/swriter/ui/formattablepage.ui:381
msgctxt "formattablepage|fromleft"
msgid "_From left"
msgstr "Va_semmalta"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:416
+#: sw/uiconfig/swriter/ui/formattablepage.ui:397
msgctxt "formattablepage|right"
msgid "R_ight"
msgstr "_Oikea"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:435
+#: sw/uiconfig/swriter/ui/formattablepage.ui:413
msgctxt "formattablepage|center"
msgid "_Center"
msgstr "_Keskitä"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:453
+#: sw/uiconfig/swriter/ui/formattablepage.ui:429
msgctxt "formattablepage|free"
msgid "_Manual"
msgstr "_Manuaalinen"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:478
+#: sw/uiconfig/swriter/ui/formattablepage.ui:452
msgctxt "formattablepage|label43"
msgid "Alignment"
msgstr "Tasaus"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:522
+#: sw/uiconfig/swriter/ui/formattablepage.ui:491
msgctxt "formattablepage|label53"
msgid "Text _direction"
msgstr "_Tekstin suunta"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:553
+#: sw/uiconfig/swriter/ui/formattablepage.ui:519
msgctxt "formattablepage|label44"
msgid "Properties "
msgstr "Ominaisuudet "
@@ -9779,22 +9779,27 @@ msgctxt "headerfootermenu|insert_pagenumber"
msgid "Insert Page Number"
msgstr ""
-#: sw/uiconfig/swriter/ui/indentpage.ui:52
+#: sw/uiconfig/swriter/ui/headerfootermenu.ui:42
+msgctxt "headerfootermenu|insert_pagecount"
+msgid "Insert Page Count"
+msgstr ""
+
+#: sw/uiconfig/swriter/ui/indentpage.ui:57
msgctxt "indentpage|label1"
msgid "_Before section"
msgstr "Ennen osaa"
-#: sw/uiconfig/swriter/ui/indentpage.ui:67
+#: sw/uiconfig/swriter/ui/indentpage.ui:71
msgctxt "indentpage|label3"
msgid "_After section"
msgstr "Osan jälkeen"
-#: sw/uiconfig/swriter/ui/indentpage.ui:113
+#: sw/uiconfig/swriter/ui/indentpage.ui:115
msgctxt "indentpage|label2"
msgid "Indent"
msgstr "Sisennä"
-#: sw/uiconfig/swriter/ui/indentpage.ui:142
+#: sw/uiconfig/swriter/ui/indentpage.ui:155
msgctxt "indentpage|preview-atkobject"
msgid "Example"
msgstr "Esimerkki"
@@ -13302,8 +13307,8 @@ msgstr "Suojaa lomake"
#: sw/uiconfig/swriter/ui/optcompatpage.ui:68
msgctxt "optcompatpage|format"
-msgid "MS Word-compatible trailing blanks"
-msgstr "MS Word -yhteensopivat loppuvälilyönnit"
+msgid "Word-compatible trailing blanks"
+msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:69
msgctxt "optcompatpage|format"
@@ -13312,7 +13317,7 @@ msgstr "Salli valkoiset viivat PDF-sivuissa vanhojen dokumenttien yhteensopivuud
#: sw/uiconfig/swriter/ui/optcompatpage.ui:70
msgctxt "optcompatpage|format"
-msgid "A database field (e.g., MailMerge) with empty value hides its paragraph"
+msgid "Hide paragraphs of database fields (e.g., mail merge) with an empty value"
msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:71
@@ -15997,122 +16002,122 @@ msgctxt "tableproperties|background"
msgid "Background"
msgstr "Tausta"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:25
-msgctxt "tabletextflowpage|liststore1"
-msgid "Horizontal"
-msgstr "Vaakataso"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:29
-msgctxt "tabletextflowpage|liststore1"
-msgid "Vertical"
-msgstr "Pystytaso"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:33
-msgctxt "tabletextflowpage|liststore1"
-msgid "Use superordinate object settings"
-msgstr "Käytä ensisijaista objektiasetusta"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:47
-msgctxt "tabletextflowpage|liststore2"
-msgid "Top"
-msgstr "Yläreuna"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:51
-msgctxt "tabletextflowpage|liststore2"
-msgid "Centered"
-msgstr "Keskitetty"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:55
-msgctxt "tabletextflowpage|liststore2"
-msgid "Bottom"
-msgstr "Alareuna"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:97
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:53
msgctxt "tabletextflowpage|break"
msgid "_Break"
msgstr "_Pura"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:112
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:68
msgctxt "tabletextflowpage|page"
msgid "_Page"
msgstr "_Sivu"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:132
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:87
msgctxt "tabletextflowpage|column"
msgid "Col_umn"
msgstr "_Palsta"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:151
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:106
msgctxt "tabletextflowpage|before"
msgid "Be_fore"
msgstr "En_nen"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:171
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:125
msgctxt "tabletextflowpage|after"
msgid "_After"
msgstr "_Jälkeen"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:203
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:158
msgctxt "tabletextflowpage|pagestyle"
msgid "With Page St_yle"
msgstr "_Sivutyylin kanssa"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:224
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:177
msgctxt "tabletextflowpage|pagenoft"
msgid "Page _number"
msgstr "_Sivunumero"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:257
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:213
msgctxt "tabletextflowpage|pagestylelb-atkobject"
msgid "With Page Style"
msgstr "Sivutyylin kanssa"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:274
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:230
msgctxt "tabletextflowpage|split"
msgid "Allow _table to split across pages and columns"
msgstr "Salli _taulukon jakautua useille sivuille ja sarakkeille"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:289
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:245
msgctxt "tabletextflowpage|splitrow"
msgid "Allow row to break a_cross pages and columns"
msgstr "Salli rivin _jakautua useille sivuille ja sarakkeille"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:306
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:262
msgctxt "tabletextflowpage|keep"
msgid "_Keep with next paragraph"
msgstr "Si_do seuraavaan kappaleeseen"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:328
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:284
msgctxt "tabletextflowpage|label40"
msgid "Text _orientation"
msgstr "Tekstin suunta"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:361
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:298
+msgctxt "tabletextflowpage|liststore1"
+msgid "Horizontal"
+msgstr "Vaakataso"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:299
+msgctxt "tabletextflowpage|liststore1"
+msgid "Vertical"
+msgstr "Pystytaso"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:300
+msgctxt "tabletextflowpage|liststore1"
+msgid "Use superordinate object settings"
+msgstr "Käytä ensisijaista objektiasetusta"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:321
msgctxt "tabletextflowpage|headline"
msgid "R_epeat heading"
msgstr "_Toista otsikko"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:383
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:343
msgctxt "tabletextflowpage|label38"
msgid "The first "
msgstr "Ensimmäiset "
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:396
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:356
msgctxt "tabletextflowpage|label39"
msgid "rows"
msgstr "riviä"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:434
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:395
msgctxt "tabletextflowpage|label35"
msgid "Text Flow"
msgstr "Tekstin rivitys"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:467
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:428
msgctxt "tabletextflowpage|label41"
msgid "_Vertical alignment"
msgstr "_Pystytasaus"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:495
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:442
+msgctxt "tabletextflowpage|liststore2"
+msgid "Top"
+msgstr "Yläreuna"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:443
+msgctxt "tabletextflowpage|liststore2"
+msgid "Centered"
+msgstr "Keskitetty"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:444
+msgctxt "tabletextflowpage|liststore2"
+msgid "Bottom"
+msgstr "Alareuna"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:460
msgctxt "tabletextflowpage|label36"
msgid "Alignment"
msgstr "Tasaus"
@@ -16894,8 +16899,8 @@ msgstr "Aakkosellinen hakemisto"
#: sw/uiconfig/swriter/ui/tocindexpage.ui:58
msgctxt "tocindexpage|liststore1"
-msgid "Illustration Index"
-msgstr "Kuvaluettelo"
+msgid "Table of Figures"
+msgstr ""
#: sw/uiconfig/swriter/ui/tocindexpage.ui:62
msgctxt "tocindexpage|liststore1"
diff --git a/source/fi/writerperfect/messages.po b/source/fi/writerperfect/messages.po
index ce2a74377cf..e90434ad99e 100644
--- a/source/fi/writerperfect/messages.po
+++ b/source/fi/writerperfect/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: 2018-05-16 16:54+0200\n"
-"PO-Revision-Date: 2018-01-28 11:36+0000\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
+"PO-Revision-Date: 2018-06-07 17:11+0000\n"
"Last-Translator: Harri Pitkänen <hatapitk@iki.fi>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: fi\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1517139366.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1528391464.000000\n"
#: writerperfect/inc/strings.hrc:15
msgctxt "STR_ENCODING_DIALOG_TITLE"
@@ -24,7 +24,7 @@ msgstr "Tuo tiedosto"
#: writerperfect/inc/strings.hrc:16
msgctxt "STR_ENCODING_DIALOG_TITLE_MSMULTIPLAN"
msgid "Import MS Multiplan for DOS file"
-msgstr ""
+msgstr "Tuo MS Multiplan for DOS -tiedosto"
#: writerperfect/inc/strings.hrc:17
msgctxt "STR_ENCODING_DIALOG_TITLE_MSWORKS"
@@ -64,99 +64,99 @@ msgstr "EPUB-vienti"
#: writerperfect/uiconfig/ui/exportepub.ui:91
msgctxt "exportepub|generalft"
msgid "General"
-msgstr ""
+msgstr "Yleinen"
-#: writerperfect/uiconfig/ui/exportepub.ui:122
+#: writerperfect/uiconfig/ui/exportepub.ui:121
msgctxt "exportepub|versionft"
msgid "Version:"
msgstr "Versio:"
-#: writerperfect/uiconfig/ui/exportepub.ui:139
+#: writerperfect/uiconfig/ui/exportepub.ui:138
msgctxt "exportepub|epub3"
msgid "EPUB 3.0"
msgstr "EPUB 3.0"
-#: writerperfect/uiconfig/ui/exportepub.ui:140
+#: writerperfect/uiconfig/ui/exportepub.ui:139
msgctxt "exportepub|epub2"
msgid "EPUB 2.0"
msgstr "EPUB 2.0"
-#: writerperfect/uiconfig/ui/exportepub.ui:175
+#: writerperfect/uiconfig/ui/exportepub.ui:174
msgctxt "exportepub|splitft"
msgid "Split method:"
msgstr "Jakotapa:"
-#: writerperfect/uiconfig/ui/exportepub.ui:192
+#: writerperfect/uiconfig/ui/exportepub.ui:191
msgctxt "exportepub|splitpage"
msgid "Page break"
msgstr "Sivunvaihto"
-#: writerperfect/uiconfig/ui/exportepub.ui:193
+#: writerperfect/uiconfig/ui/exportepub.ui:192
msgctxt "exportepub|splitheading"
msgid "Heading"
msgstr "Otsikko"
-#: writerperfect/uiconfig/ui/exportepub.ui:228
+#: writerperfect/uiconfig/ui/exportepub.ui:227
msgctxt "exportepub|layoutft"
msgid "Layout method:"
-msgstr ""
+msgstr "Asettelutapa:"
-#: writerperfect/uiconfig/ui/exportepub.ui:245
+#: writerperfect/uiconfig/ui/exportepub.ui:244
msgctxt "exportepub|layoutreflowable"
msgid "Reflowable"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:246
+#: writerperfect/uiconfig/ui/exportepub.ui:245
msgctxt "exportepub|layoutfixed"
msgid "Fixed"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:281
+#: writerperfect/uiconfig/ui/exportepub.ui:280
msgctxt "exportepub|coverimageft"
msgid "Custom cover image:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:311
+#: writerperfect/uiconfig/ui/exportepub.ui:310
msgctxt "exportepub|coverbutton"
msgid "Browse..."
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:355
+#: writerperfect/uiconfig/ui/exportepub.ui:354
msgctxt "exportepub|mediadirft"
msgid "Custom media directory:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:385
+#: writerperfect/uiconfig/ui/exportepub.ui:384
msgctxt "exportepub|mediabutton"
msgid "Browse..."
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:429
+#: writerperfect/uiconfig/ui/exportepub.ui:428
msgctxt "exportepub|metadataft"
msgid "Metadata"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:470
+#: writerperfect/uiconfig/ui/exportepub.ui:468
msgctxt "exportepub|identifierft"
msgid "Identifier:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:485
+#: writerperfect/uiconfig/ui/exportepub.ui:483
msgctxt "exportepub|titleft"
msgid "Title:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:511
+#: writerperfect/uiconfig/ui/exportepub.ui:509
msgctxt "exportepub|authorft"
msgid "Author:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:537
+#: writerperfect/uiconfig/ui/exportepub.ui:535
msgctxt "exportepub|languageft"
msgid "Language:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:563
+#: writerperfect/uiconfig/ui/exportepub.ui:561
msgctxt "exportepub|dateft"
msgid "Date:"
msgstr ""
diff --git a/source/fi/xmlsecurity/messages.po b/source/fi/xmlsecurity/messages.po
index c906b7f3623..904df587b4a 100644
--- a/source/fi/xmlsecurity/messages.po
+++ b/source/fi/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: 2018-05-22 13:17+0200\n"
-"PO-Revision-Date: 2018-01-28 11:34+0000\n"
+"PO-Revision-Date: 2018-06-07 17:02+0000\n"
"Last-Translator: Harri Pitkänen <hatapitk@iki.fi>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: fi\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1517139248.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1528390920.000000\n"
#: xmlsecurity/inc/strings.hrc:25
msgctxt "STR_CERTIFICATE_NOT_VALIDATED"
@@ -390,7 +390,7 @@ msgstr "Valitse varmenne"
#: xmlsecurity/uiconfig/ui/selectcertificatedialog.ui:92
msgctxt "selectcertificatedialog|issuedto"
msgid "Issued to"
-msgstr ""
+msgstr "Haltija"
#: xmlsecurity/uiconfig/ui/selectcertificatedialog.ui:103
msgctxt "selectcertificatedialog|issuedby"
@@ -460,7 +460,7 @@ msgstr "Allekirjoita"
#: xmlsecurity/uiconfig/ui/selectcertificatedialog.ui:194
msgctxt "selectcertificatedialog|str_selectsign"
msgid "Select"
-msgstr ""
+msgstr "Valitse"
#: xmlsecurity/uiconfig/ui/selectcertificatedialog.ui:199
msgctxt "selectcertificatedialog|str_encrypt"
diff --git a/source/fr/cui/messages.po b/source/fr/cui/messages.po
index e7296e15415..541faf46937 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2018-05-08 15:21+0000\n"
"Last-Translator: Jean-Baptiste Faure <jbfaure@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -9872,97 +9872,97 @@ msgctxt "positionsizedialog|PositionAndSizeDialog"
msgid "Position and Size"
msgstr "Position et taille"
-#: cui/uiconfig/ui/positionsizedialog.ui:107
+#: cui/uiconfig/ui/positionsizedialog.ui:136
msgctxt "positionsizedialog|RID_SVXPAGE_POSITION_SIZE"
msgid "Position and Size"
msgstr "Position et taille"
-#: cui/uiconfig/ui/positionsizedialog.ui:129
+#: cui/uiconfig/ui/positionsizedialog.ui:182
msgctxt "positionsizedialog|RID_SVXPAGE_SWPOSSIZE"
msgid "Position and Size"
msgstr "Position et taille"
-#: cui/uiconfig/ui/positionsizedialog.ui:152
+#: cui/uiconfig/ui/positionsizedialog.ui:229
msgctxt "positionsizedialog|RID_SVXPAGE_ANGLE"
msgid "Rotation"
msgstr "Rotation"
-#: cui/uiconfig/ui/positionsizedialog.ui:175
+#: cui/uiconfig/ui/positionsizedialog.ui:276
msgctxt "positionsizedialog|RID_SVXPAGE_SLANT"
msgid "Slant & Corner Radius"
msgstr "Inclinaison et rayon d'angle"
-#: cui/uiconfig/ui/possizetabpage.ui:40
+#: cui/uiconfig/ui/possizetabpage.ui:61
msgctxt "possizetabpage|FT_POS_X"
msgid "Position _X:"
msgstr "Position _X :"
-#: cui/uiconfig/ui/possizetabpage.ui:56
+#: cui/uiconfig/ui/possizetabpage.ui:75
msgctxt "possizetabpage|FT_POS_Y"
msgid "Position _Y:"
msgstr "Position _Y :"
-#: cui/uiconfig/ui/possizetabpage.ui:110
+#: cui/uiconfig/ui/possizetabpage.ui:128
msgctxt "possizetabpage|FT_POSREFERENCE"
msgid "_Base point:"
msgstr "Point de _base :"
-#: cui/uiconfig/ui/possizetabpage.ui:148
+#: cui/uiconfig/ui/possizetabpage.ui:182
msgctxt "possizetabpage|label1"
msgid "Position"
msgstr "Position"
-#: cui/uiconfig/ui/possizetabpage.ui:190
+#: cui/uiconfig/ui/possizetabpage.ui:224
msgctxt "possizetabpage|FT_WIDTH"
msgid "Wi_dth:"
msgstr "Lar_geur :"
-#: cui/uiconfig/ui/possizetabpage.ui:206
+#: cui/uiconfig/ui/possizetabpage.ui:238
msgctxt "possizetabpage|FT_HEIGHT"
msgid "H_eight:"
msgstr "_Hauteur :"
-#: cui/uiconfig/ui/possizetabpage.ui:247
+#: cui/uiconfig/ui/possizetabpage.ui:276
msgctxt "possizetabpage|CBX_SCALE"
msgid "_Keep ratio"
msgstr "_Conserver le ratio"
-#: cui/uiconfig/ui/possizetabpage.ui:279
+#: cui/uiconfig/ui/possizetabpage.ui:307
msgctxt "possizetabpage|FT_SIZEREFERENCE"
msgid "Base _point:"
msgstr "_Point de base :"
-#: cui/uiconfig/ui/possizetabpage.ui:317
+#: cui/uiconfig/ui/possizetabpage.ui:361
msgctxt "possizetabpage|label2"
msgid "Size"
msgstr "Taille"
-#: cui/uiconfig/ui/possizetabpage.ui:356
+#: cui/uiconfig/ui/possizetabpage.ui:401
msgctxt "possizetabpage|TSB_POSPROTECT"
msgid "Positio_n"
msgstr "Positio_n"
-#: cui/uiconfig/ui/possizetabpage.ui:373
+#: cui/uiconfig/ui/possizetabpage.ui:418
msgctxt "possizetabpage|TSB_SIZEPROTECT"
msgid "_Size"
msgstr "_Taille"
-#: cui/uiconfig/ui/possizetabpage.ui:397
+#: cui/uiconfig/ui/possizetabpage.ui:441
msgctxt "possizetabpage|label3"
msgid "Protect"
msgstr "Protéger"
-#: cui/uiconfig/ui/possizetabpage.ui:430
+#: cui/uiconfig/ui/possizetabpage.ui:475
msgctxt "possizetabpage|TSB_AUTOGROW_WIDTH"
msgid "_Fit width to text"
msgstr "_Adapter la largeur au texte"
-#: cui/uiconfig/ui/possizetabpage.ui:447
+#: cui/uiconfig/ui/possizetabpage.ui:492
msgctxt "possizetabpage|TSB_AUTOGROW_HEIGHT"
msgid "Fit _height to text"
msgstr "Adapter la _hauteur au texte"
-#: cui/uiconfig/ui/possizetabpage.ui:471
+#: cui/uiconfig/ui/possizetabpage.ui:515
msgctxt "possizetabpage|label4"
msgid "Adapt"
msgstr "Adapter"
@@ -10162,47 +10162,47 @@ msgctxt "recordnumberdialog|label2"
msgid "go to record"
msgstr "aller à l'enregistrement"
-#: cui/uiconfig/ui/rotationtabpage.ui:52
+#: cui/uiconfig/ui/rotationtabpage.ui:56
msgctxt "rotationtabpage|FT_POS_X"
msgid "Position _X:"
msgstr "Position _X :"
-#: cui/uiconfig/ui/rotationtabpage.ui:66
+#: cui/uiconfig/ui/rotationtabpage.ui:70
msgctxt "rotationtabpage|FT_POS_Y"
msgid "Position _Y:"
msgstr "Position _Y :"
-#: cui/uiconfig/ui/rotationtabpage.ui:116
+#: cui/uiconfig/ui/rotationtabpage.ui:123
msgctxt "rotationtabpage|FT_POSPRESETS"
msgid "_Default settings:"
msgstr "Paramètres par _défaut :"
-#: cui/uiconfig/ui/rotationtabpage.ui:130
+#: cui/uiconfig/ui/rotationtabpage.ui:151
msgctxt "rotationtabpage|CTL_RECT|tooltip_text"
msgid "Rotation point"
msgstr "Point de rotation"
-#: cui/uiconfig/ui/rotationtabpage.ui:155
+#: cui/uiconfig/ui/rotationtabpage.ui:178
msgctxt "rotationtabpage|label1"
msgid "Pivot Point"
msgstr "Point de pivot"
-#: cui/uiconfig/ui/rotationtabpage.ui:197
+#: cui/uiconfig/ui/rotationtabpage.ui:220
msgctxt "rotationtabpage|FT_ANGLE"
msgid "_Angle:"
msgstr "_Angle :"
-#: cui/uiconfig/ui/rotationtabpage.ui:238
+#: cui/uiconfig/ui/rotationtabpage.ui:263
msgctxt "rotationtabpage|FT_ANGLEPRESETS"
msgid "Default _settings:"
msgstr "Paramètres par _défaut :"
-#: cui/uiconfig/ui/rotationtabpage.ui:252
+#: cui/uiconfig/ui/rotationtabpage.ui:287
msgctxt "rotationtabpage|CTL_ANGLE|tooltip_text"
msgid "Rotation Angle"
msgstr "Angle de rotation"
-#: cui/uiconfig/ui/rotationtabpage.ui:277
+#: cui/uiconfig/ui/rotationtabpage.ui:314
msgctxt "rotationtabpage|label2"
msgid "Rotation Angle"
msgstr "Angle de rotation"
@@ -10582,52 +10582,52 @@ msgctxt "similaritysearchdialog|relaxbox"
msgid "_Combine"
msgstr "_Combiner"
-#: cui/uiconfig/ui/slantcornertabpage.ui:50
+#: cui/uiconfig/ui/slantcornertabpage.ui:70
msgctxt "slantcornertabpage|label5"
msgid "_X:"
msgstr "_X:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:88
+#: cui/uiconfig/ui/slantcornertabpage.ui:110
msgctxt "slantcornertabpage|label6"
msgid "_Y:"
msgstr "_Y:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:125
+#: cui/uiconfig/ui/slantcornertabpage.ui:149
msgctxt "slantcornertabpage|label3"
msgid "Control Point 1"
msgstr "Point de contrôle 1"
-#: cui/uiconfig/ui/slantcornertabpage.ui:159
+#: cui/uiconfig/ui/slantcornertabpage.ui:183
msgctxt "slantcornertabpage|FT_RADIUS"
msgid "_Radius:"
msgstr "_Rayon :"
-#: cui/uiconfig/ui/slantcornertabpage.ui:189
+#: cui/uiconfig/ui/slantcornertabpage.ui:214
msgctxt "slantcornertabpage|label1"
msgid "Corner Radius"
msgstr "Rayon d'angle"
-#: cui/uiconfig/ui/slantcornertabpage.ui:223
+#: cui/uiconfig/ui/slantcornertabpage.ui:248
msgctxt "slantcornertabpage|FT_ANGLE"
msgid "_Angle:"
msgstr "_Angle :"
-#: cui/uiconfig/ui/slantcornertabpage.ui:253
+#: cui/uiconfig/ui/slantcornertabpage.ui:279
msgctxt "slantcornertabpage|label2"
msgid "Slant"
msgstr "Incliner"
-#: cui/uiconfig/ui/slantcornertabpage.ui:294
+#: cui/uiconfig/ui/slantcornertabpage.ui:320
msgctxt "slantcornertabpage|label4"
msgid "_X:"
msgstr "_X:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:332
+#: cui/uiconfig/ui/slantcornertabpage.ui:360
msgctxt "slantcornertabpage|label7"
msgid "_Y:"
msgstr "_Y:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:369
+#: cui/uiconfig/ui/slantcornertabpage.ui:399
msgctxt "slantcornertabpage|label8"
msgid "Control Point 2"
msgstr "Point de contrôle 2"
@@ -10907,112 +10907,112 @@ msgctxt "storedwebconnectiondialog|change"
msgid "_Change Password..."
msgstr "_Modifier le mot de passe..."
-#: cui/uiconfig/ui/swpossizepage.ui:74
+#: cui/uiconfig/ui/swpossizepage.ui:85
msgctxt "swpossizepage|widthft"
msgid "_Width:"
msgstr "_Largeur :"
-#: cui/uiconfig/ui/swpossizepage.ui:111
+#: cui/uiconfig/ui/swpossizepage.ui:123
msgctxt "swpossizepage|heightft"
msgid "H_eight:"
msgstr "H_auteur :"
-#: cui/uiconfig/ui/swpossizepage.ui:128
+#: cui/uiconfig/ui/swpossizepage.ui:141
msgctxt "swpossizepage|ratio"
msgid "_Keep ratio"
msgstr "_Conserver le ratio"
-#: cui/uiconfig/ui/swpossizepage.ui:149
+#: cui/uiconfig/ui/swpossizepage.ui:162
msgctxt "swpossizepage|label2"
msgid "Size"
msgstr "Taille"
-#: cui/uiconfig/ui/swpossizepage.ui:205
+#: cui/uiconfig/ui/swpossizepage.ui:218
msgctxt "swpossizepage|topage"
msgid "To _page"
msgstr "À la _page"
-#: cui/uiconfig/ui/swpossizepage.ui:222
+#: cui/uiconfig/ui/swpossizepage.ui:234
msgctxt "swpossizepage|topara"
msgid "To paragrap_h"
msgstr "Au para_graphe"
-#: cui/uiconfig/ui/swpossizepage.ui:238
+#: cui/uiconfig/ui/swpossizepage.ui:250
msgctxt "swpossizepage|tochar"
msgid "To cha_racter"
msgstr "Au _caractère"
-#: cui/uiconfig/ui/swpossizepage.ui:254
+#: cui/uiconfig/ui/swpossizepage.ui:266
msgctxt "swpossizepage|aschar"
msgid "_As character"
msgstr "Co_mme caractère"
-#: cui/uiconfig/ui/swpossizepage.ui:270
+#: cui/uiconfig/ui/swpossizepage.ui:282
msgctxt "swpossizepage|toframe"
msgid "To _frame"
msgstr "Au ca_dre"
-#: cui/uiconfig/ui/swpossizepage.ui:292
+#: cui/uiconfig/ui/swpossizepage.ui:304
msgctxt "swpossizepage|label1"
msgid "Anchor"
msgstr "Ancrer"
-#: cui/uiconfig/ui/swpossizepage.ui:333
+#: cui/uiconfig/ui/swpossizepage.ui:344
msgctxt "swpossizepage|horiposft"
msgid "Hori_zontal:"
msgstr "_Horizontal :"
-#: cui/uiconfig/ui/swpossizepage.ui:347
+#: cui/uiconfig/ui/swpossizepage.ui:358
msgctxt "swpossizepage|horibyft"
msgid "b_y:"
msgstr "_par :"
-#: cui/uiconfig/ui/swpossizepage.ui:361
+#: cui/uiconfig/ui/swpossizepage.ui:372
msgctxt "swpossizepage|vertbyft"
msgid "_by:"
msgstr "pa_r :"
-#: cui/uiconfig/ui/swpossizepage.ui:375
+#: cui/uiconfig/ui/swpossizepage.ui:386
msgctxt "swpossizepage|horitoft"
msgid "_to:"
msgstr "_à :"
-#: cui/uiconfig/ui/swpossizepage.ui:421
+#: cui/uiconfig/ui/swpossizepage.ui:433
msgctxt "swpossizepage|vertposft"
msgid "_Vertical:"
msgstr "_Verticale :"
-#: cui/uiconfig/ui/swpossizepage.ui:457
+#: cui/uiconfig/ui/swpossizepage.ui:470
msgctxt "swpossizepage|verttoft"
msgid "t_o:"
msgstr "_à :"
-#: cui/uiconfig/ui/swpossizepage.ui:478
+#: cui/uiconfig/ui/swpossizepage.ui:492
msgctxt "swpossizepage|mirror"
msgid "_Mirror on even pages"
msgstr "_Refléter sur les pages paires"
-#: cui/uiconfig/ui/swpossizepage.ui:495
+#: cui/uiconfig/ui/swpossizepage.ui:509
msgctxt "swpossizepage|followtextflow"
msgid "Follow te_xt flow"
msgstr "Respecter les _enchaînements"
-#: cui/uiconfig/ui/swpossizepage.ui:518
+#: cui/uiconfig/ui/swpossizepage.ui:532
msgctxt "swpossizepage|label11"
msgid "Position"
msgstr "Position"
-#: cui/uiconfig/ui/swpossizepage.ui:549
+#: cui/uiconfig/ui/swpossizepage.ui:563
msgctxt "swpossizepage|pos"
msgid "Positio_n"
msgstr "P_osition"
-#: cui/uiconfig/ui/swpossizepage.ui:565
+#: cui/uiconfig/ui/swpossizepage.ui:579
msgctxt "swpossizepage|size"
msgid "_Size"
msgstr "_Taille"
-#: cui/uiconfig/ui/swpossizepage.ui:587
+#: cui/uiconfig/ui/swpossizepage.ui:601
msgctxt "swpossizepage|label3"
msgid "Protect"
msgstr "Protéger"
@@ -11202,12 +11202,12 @@ msgctxt "textattrtabpage|label2"
msgid "Spacing to Borders"
msgstr "Espacement avec les bordures"
-#: cui/uiconfig/ui/textattrtabpage.ui:425
+#: cui/uiconfig/ui/textattrtabpage.ui:423
msgctxt "textattrtabpage|TSB_FULL_WIDTH"
msgid "Full _width"
msgstr "Pleine _largeur"
-#: cui/uiconfig/ui/textattrtabpage.ui:448
+#: cui/uiconfig/ui/textattrtabpage.ui:446
msgctxt "textattrtabpage|label3"
msgid "Text Anchor"
msgstr "Ancre de texte"
diff --git a/source/fr/filter/source/config/fragments/filters.po b/source/fr/filter/source/config/fragments/filters.po
index f5ec27a5655..32919f61ef1 100644
--- a/source/fr/filter/source/config/fragments/filters.po
+++ b/source/fr/filter/source/config/fragments/filters.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: 2018-05-16 16:54+0200\n"
-"PO-Revision-Date: 2018-05-21 09:31+0000\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
+"PO-Revision-Date: 2018-06-05 05:06+0000\n"
"Last-Translator: Jean-Baptiste Faure <jbfaure@libreoffice.org>\n"
"Language-Team: ll.org\n"
"Language: fr\n"
@@ -13,9 +13,9 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Pootle 2.8\n"
"X-Project-Style: openoffice\n"
-"X-POOTLE-MTIME: 1526895075.000000\n"
+"X-POOTLE-MTIME: 1528175179.000000\n"
#: ADO_rowset_XML.xcu
msgctxt ""
@@ -464,8 +464,8 @@ msgctxt ""
"MS Word 2003 XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Word 2003 XML"
-msgstr "Microsoft Word 2003 XML"
+msgid "Word 2003 XML"
+msgstr "Word 2003 XML"
#: MS_Word_2007_XML.xcu
msgctxt ""
@@ -1283,8 +1283,8 @@ msgctxt ""
"Calc MS Excel 2007 VBA XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Excel 2007-2016 XML (macro enabled)"
-msgstr "Microsoft Excel 2007-2016 XML (macros possibles)"
+msgid "Excel 2007–2019 (macro-enabled)"
+msgstr "Excel 2007–2019 (avec macro)"
#: calc_MS_Excel_2007_XML.xcu
msgctxt ""
diff --git a/source/fr/filter/source/config/fragments/types.po b/source/fr/filter/source/config/fragments/types.po
index a5a1a1d3841..537cbc1b10f 100644
--- a/source/fr/filter/source/config/fragments/types.po
+++ b/source/fr/filter/source/config/fragments/types.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: 2018-05-08 15:11+0200\n"
-"PO-Revision-Date: 2018-05-09 09:45+0000\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
+"PO-Revision-Date: 2018-06-05 05:06+0000\n"
"Last-Translator: Jean-Baptiste Faure <jbfaure@libreoffice.org>\n"
"Language-Team: ll.org\n"
"Language: fr\n"
@@ -15,7 +15,7 @@ msgstr ""
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
"X-Project-Style: openoffice\n"
-"X-POOTLE-MTIME: 1525859143.000000\n"
+"X-POOTLE-MTIME: 1528175185.000000\n"
#: MS_Excel_2007_Binary.xcu
msgctxt ""
@@ -293,8 +293,8 @@ msgctxt ""
"writer_MS_Word_2003_XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Word 2003 XML"
-msgstr "Microsoft Word 2003 XML"
+msgid "Word 2003 XML"
+msgstr "Word 2003 XML"
#: writer_MS_Word_2007_XML.xcu
msgctxt ""
diff --git a/source/fr/fpicker/messages.po b/source/fr/fpicker/messages.po
index 583debbcac4..41d65cd5b44 100644
--- a/source/fr/fpicker/messages.po
+++ b/source/fr/fpicker/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-22 13:16+0200\n"
-"PO-Revision-Date: 2018-03-06 07:24+0000\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
+"PO-Revision-Date: 2018-06-05 05:08+0000\n"
"Last-Translator: Jean-Baptiste Faure <jbfaure@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: fr\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1520321040.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1528175281.000000\n"
#: include/fpicker/strings.hrc:14
msgctxt "STR_SVT_FILEPICKER_AUTO_EXTENSION"
@@ -272,13 +272,13 @@ msgstr "Chiffrer avec une clé GPG"
#: fpicker/uiconfig/ui/foldernamedialog.ui:8
msgctxt "foldernamedialog|FolderNameDialog"
-msgid "Folder Name ?"
-msgstr "Nom du dossier ?"
+msgid "Folder Name"
+msgstr "Nom du dossier"
#: fpicker/uiconfig/ui/foldernamedialog.ui:91
msgctxt "foldernamedialog|label2"
-msgid "Na_me"
-msgstr "N_om"
+msgid "Na_me:"
+msgstr "No_m :"
#: fpicker/uiconfig/ui/foldernamedialog.ui:122
msgctxt "foldernamedialog|label1"
diff --git a/source/fr/helpcontent2/source/text/sbasic/shared.po b/source/fr/helpcontent2/source/text/sbasic/shared.po
index 747bfe8e9d6..bd0875e5755 100644
--- a/source/fr/helpcontent2/source/text/sbasic/shared.po
+++ b/source/fr/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: 2018-05-16 16:54+0200\n"
-"PO-Revision-Date: 2018-05-14 14:43+0000\n"
+"PO-Revision-Date: 2018-05-25 15:00+0000\n"
"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
"Language-Team: ll.org\n"
"Language: fr\n"
@@ -13,9 +13,9 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Pootle 2.8\n"
"X-Project-Style: openoffice\n"
-"X-POOTLE-MTIME: 1526309031.000000\n"
+"X-POOTLE-MTIME: 1527260413.000000\n"
#: 00000002.xhp
msgctxt ""
@@ -5671,7 +5671,7 @@ msgctxt ""
"par_id3155930\n"
"help.text"
msgid "<ahelp hid=\".\">Select \"Yes\" to prevent the user from editing the value of the current control. The control is enabled and can be focused but not modified.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Sélectionnez Oui pour empêcher l'utilisateur d'éditer la valeur du contrôle actif. Le contrôle est activé et peut recevoir le focus mais ne peut pas être modifié.</ahelp>"
#: 01170101.xhp
msgctxt ""
diff --git a/source/fr/helpcontent2/source/text/sbasic/shared/01.po b/source/fr/helpcontent2/source/text/sbasic/shared/01.po
index 2656e71a557..68b2ad9c1ef 100644
--- a/source/fr/helpcontent2/source/text/sbasic/shared/01.po
+++ b/source/fr/helpcontent2/source/text/sbasic/shared/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: 2018-05-16 16:54+0200\n"
-"PO-Revision-Date: 2015-07-10 18:18+0000\n"
-"Last-Translator: Jean-Baptiste Faure <jbfaure@libreoffice.org>\n"
+"PO-Revision-Date: 2018-05-25 14:59+0000\n"
+"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
"Language-Team: ll.org\n"
"Language: fr\n"
"MIME-Version: 1.0\n"
@@ -13,9 +13,9 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Pootle 2.8\n"
"X-Project-Style: openoffice\n"
-"X-POOTLE-MTIME: 1436552296.000000\n"
+"X-POOTLE-MTIME: 1527260398.000000\n"
#: 06130000.xhp
msgctxt ""
@@ -47,7 +47,7 @@ msgctxt ""
"par_id3152886\n"
"help.text"
msgid "<variable id=\"makro\"><ahelp hid=\".uno:ChooseMacro\">Opens the <emph>Macro</emph> dialog, where you can create, edit, organize, and run $[officename] Basic macros.</ahelp></variable>"
-msgstr ""
+msgstr "<variable id=\"makro\"><ahelp hid=\".uno:ChooseMacro\">Ouvre la boîte de dialogue <emph>Macro</emph> permettant de créer, modifier, organiser et exécuter les macros de $[officename] Basic.</ahelp></variable>"
#: 06130000.xhp
msgctxt ""
@@ -375,7 +375,7 @@ msgctxt ""
"par_id3155126\n"
"help.text"
msgid "<ahelp hid=\"modules/BasicIDE/ui/libpage/import\">Locate that $[officename] Basic library that you want to add to the current list, and then click <emph>Open</emph>.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/BasicIDE/ui/libpage/import\">Localisez la bibliothèque Basic $[officename] que vous souhaitez ajouter à la liste active, puis cliquez sur <emph>Ouvrir</emph>.</ahelp>"
#: 06130100.xhp
msgctxt ""
@@ -495,7 +495,7 @@ msgctxt ""
"par_id3154840\n"
"help.text"
msgid "Locate that <item type=\"productname\">%PRODUCTNAME</item> Basic library that you want to add to the current list, and then click <emph>Open</emph>."
-msgstr ""
+msgstr "Localisez la bibliothèque <item type=\"productname\">%PRODUCTNAME</item> Basic à ajouter à la liste active, puis cliquez sur <emph>Ouvrir</emph>."
#: 06130500.xhp
msgctxt ""
diff --git a/source/fr/helpcontent2/source/text/scalc/01.po b/source/fr/helpcontent2/source/text/scalc/01.po
index f0d3a28f8eb..305ca41326d 100644
--- a/source/fr/helpcontent2/source/text/scalc/01.po
+++ b/source/fr/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: 2018-05-08 15:11+0200\n"
-"PO-Revision-Date: 2018-05-14 16:20+0000\n"
+"PO-Revision-Date: 2018-05-25 15:41+0000\n"
"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: fr\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1526314858.000000\n"
+"X-POOTLE-MTIME: 1527262881.000000\n"
#: 01120000.xhp
msgctxt ""
@@ -63246,7 +63246,7 @@ msgctxt ""
"par_id351517132879400\n"
"help.text"
msgid "ENCODEURL(Text)"
-msgstr ""
+msgstr "ENCODEURL(Texte)"
#: func_webservice.xhp
msgctxt ""
@@ -63270,7 +63270,7 @@ msgctxt ""
"par_id651517132994921\n"
"help.text"
msgid "If cell A1 contains the Cyrillic text \"автомобиль\", <item type=\"input\">=ENCODEURL(A1)</item> returns %D0%B0%D0%B2%D1%82%D0%BE%D0%BC%D0%BE%D0%B1%D0%B8%D0%BB%D1%8C (the word \"автомобиль\" means car in Russian)."
-msgstr ""
+msgstr "Si une cellule A1 contient le texte cyrillique \"автомобиль\", <item type=\"input\">=ENCODEURL(A1)</item> renvoie %D0%B0%D0%B2%D1%82%D0%BE%D0%BC%D0%BE%D0%B1%D0%B8%D0%BB%D1%8C (le mot \"автомобиль\" signifie voiture en russe)."
#: func_webservice.xhp
msgctxt ""
@@ -65190,7 +65190,7 @@ msgctxt ""
"par_id1000670\n"
"help.text"
msgid "For more information on descriptive statistics, refer to the <link href=\"https://en.wikipedia.org/wiki/Descriptive_statistics\" name=\"English Wikipedia: Descriptive statistics\">corresponding Wikipedia article</link>."
-msgstr ""
+msgstr "Pour plus d'informations sur les statistiques descriptives, référez-vous à <link href=\"https://fr.wikipedia.org/wiki/Statistique_descriptive\" name=\"French Wikipedia: Statistiques descriptives\">l'article Wikipedia correspondant</link>."
#: statistics.xhp
msgctxt ""
@@ -65374,7 +65374,7 @@ msgctxt ""
"par_id1001270\n"
"help.text"
msgid "For more information on ANOVA, refer to the <link href=\"https://en.wikipedia.org/wiki/ANOVA\" name=\"English Wikipedia: ANOVA\">corresponding Wikipedia article</link>."
-msgstr ""
+msgstr "Pour plus d'information sur ANOVA, veuillez vous référer à <link href=\"https://fr.wikipedia.org/wiki/Analyse_de_la_variance\" name=\"French Wikipedia : Analyse de la variance\">l'article Wikipedia correspondant</link>."
#: statistics.xhp
msgctxt ""
@@ -65638,7 +65638,7 @@ msgctxt ""
"par_id1001790\n"
"help.text"
msgid "For more information on statistical correlation, refer to the <link href=\"https://en.wikipedia.org/wiki/Correlation\" name=\"English Wikipedia: Correlation\">corresponding Wikipedia article</link>."
-msgstr ""
+msgstr "Pour plus d'informations sur la corrélation statistique, veuillez vous référer à <link href=\"http://fr.wikipedia.org/wiki/Corrélation_(statistiques)\" name=\"French Wikipedia : Corrélation (statistiques)\">l'article Wikipedia correspondant</link>."
#: statistics.xhp
msgctxt ""
@@ -65750,7 +65750,7 @@ msgctxt ""
"par_id1001970\n"
"help.text"
msgid "For more information on statistical covariance, refer to the <link href=\"https://en.wikipedia.org/wiki/Covariance\" name=\"English Wikipedia: Covariance\">corresponding Wikipedia article</link>."
-msgstr ""
+msgstr "Pour plus d'informations sur la covariance statistiques, veuillez vous référer à <link href=\"https://fr.wikipedia.org/wiki/Covariance\" name=\"French Wikipedia : Covariance\">l'article Wikipedia correspondant</link>."
#: statistics.xhp
msgctxt ""
@@ -65862,7 +65862,7 @@ msgctxt ""
"par_id1002150\n"
"help.text"
msgid "For more information on exponential smoothing, refer to the <link href=\"https://en.wikipedia.org/wiki/Exponential_smoothing\" name=\"English Wikipedia: Exponential smoothing\">corresponding Wikipedia article</link>."
-msgstr ""
+msgstr "Pour plus d'informations sur le lissage exponentiel, veuillez vous référer à <link href=\"https://fr.wikipedia.org/wiki/Moyenne_glissante#Moyenne_mobile_exponentielle\" name=\"French Wikipedia : Moyenne glissante\">l'article Wikipedia correspondant</link>."
#: statistics.xhp
msgctxt ""
@@ -65950,7 +65950,7 @@ msgctxt ""
"par_id1002520\n"
"help.text"
msgid "For more information on the moving average, refer to the <link href=\"https://en.wikipedia.org/wiki/Moving_average\" name=\"English Wikipedia: Moving average\">corresponding Wikipedia article</link>."
-msgstr ""
+msgstr "Pour plus d'informations sur la moyenne glissante, veuillez vous référer à <link href=\"https://fr.wikipedia.org/wiki/Moyenne_glissante\" name=\"French Wikipedia : Moyenne glissante\">l'article Wikipedia correspondant</link>."
#: statistics.xhp
msgctxt ""
@@ -66070,7 +66070,7 @@ msgctxt ""
"par_id1002850\n"
"help.text"
msgid "For more information on paired t-tests, refer to the <link href=\"https://en.wikipedia.org/wiki/T-test\" name=\"English Wikipedia: T-test\">corresponding Wikipedia article</link>."
-msgstr ""
+msgstr "Pour plus d'informations sur les tests t appariés, veuillez vous référer à <link href=\"http://fr.wikipedia.org/wiki/Test_de_Student\" name=\"French Wikipedia : Test de Student\">l'article Wikipedia correspondant</link>."
#: statistics.xhp
msgctxt ""
@@ -66302,7 +66302,7 @@ msgctxt ""
"par_id1003270\n"
"help.text"
msgid "For more information on F-tests, refer to the <link href=\"https://en.wikipedia.org/wiki/F-test\" name=\"English Wikipedia: F-test\">corresponding Wikipedia article</link>."
-msgstr ""
+msgstr "Pour plus d'informations sur les tests-F, veuillez vous référer à <link href=\"https://fr.wikipedia.org/wiki/Test_de_Fisher\" name=\"French Wikipedia : Test de Fisher\">l'article correspondant sur Wikipedia</link>."
#: statistics.xhp
msgctxt ""
@@ -66510,7 +66510,7 @@ msgctxt ""
"par_id1003660\n"
"help.text"
msgid "For more information on Z-tests, refer to the <link href=\"https://en.wikipedia.org/wiki/Z-test\" name=\"English Wikipedia: Z-test\">corresponding Wikipedia article</link>."
-msgstr ""
+msgstr "Pour plus d'informations sur les tests-Z, veuillez vous référer à <link href=\"https://fr.wikipedia.org/wiki/Z-test\" name=\"French Wikipedia : Z-test\">l'article Wikipedia correspondant (en anglais)</link>."
#: statistics.xhp
msgctxt ""
@@ -66734,7 +66734,7 @@ msgctxt ""
"par_id1004000\n"
"help.text"
msgid "For more information on chi-square tests, refer to the <link href=\"https://en.wikipedia.org/wiki/Chi-square_test\" name=\"English Wikipedia: Chi-square_test\">corresponding Wikipedia article</link>."
-msgstr ""
+msgstr "Pour plus d'informations sur les tests khi-deux, reportez-vous à l'<link href=\"https://en.wikipedia.org/wiki/Chi-square_test\" name=\"English Wikipedia: Chi-square_test\">article correspondant sur Wikipedia</link >"
#: statistics.xhp
msgctxt ""
@@ -66870,7 +66870,7 @@ msgctxt ""
"par_id1001270\n"
"help.text"
msgid "For more information on regression analysis, refer to the <link href=\"https://en.wikipedia.org/wiki/Regression_analysis\" name=\"English Wikipedia: Regression analysis\">corresponding Wikipedia article</link>."
-msgstr ""
+msgstr "Pour plus d'information sur les analyses de régression, veuillez vous référer à <link href=\"https://fr.wikipedia.org/wiki/R%C3%A9gression_(statistiques)\" name=\"French Wikipedia: Régression (statistiques)\">l'article Wikipedia correspondant.</link>"
#: statistics_regression.xhp
msgctxt ""
@@ -67278,7 +67278,7 @@ msgctxt ""
"par_id661521494897796\n"
"help.text"
msgid "This field specifies the position of a cell in the document that an element or an attribute is linked to. If it is a non-recurring element or an attribute, it simply points to the cell where the value of the linked element/attribute will get imported. If it is a recurring element, it points to the top-left cell of the range where the whole record entries plus header will get imported."
-msgstr ""
+msgstr "Ce champ spécifie la position d'une cellule dans le document à laquelle sont liés un élément ou un attribut. Si c'est un élément non récurrent ou un attribut, il pointe simplement vers la cellule où la valeur de l'élément ou de l'attribut sera importé. Si c'est un élément récurrent, il pointe vers la cellule supérieure gauche de la plage où l'ensemble des entrées d'enregistrement plus l'entête sera importé."
#: xml_source.xhp
msgctxt ""
diff --git a/source/fr/helpcontent2/source/text/scalc/06.po b/source/fr/helpcontent2/source/text/scalc/06.po
index 8c940b47a6f..0637feb6288 100644
--- a/source/fr/helpcontent2/source/text/scalc/06.po
+++ b/source/fr/helpcontent2/source/text/scalc/06.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: 2018-05-08 15:11+0200\n"
-"PO-Revision-Date: 2018-05-07 16:58+0000\n"
+"PO-Revision-Date: 2018-05-25 12:44+0000\n"
"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: fr\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1525712304.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1527252252.000000\n"
#: calcsamplefiles.xhp
msgctxt ""
@@ -46,4 +46,4 @@ msgctxt ""
"par_id161521563314918\n"
"help.text"
msgid "<object data=\"media/files/scalc/pivot.ods\" id=\"ods_id61521547603544\" type=\"application/vnd.oasis.opendocument.spreadsheet\"/>"
-msgstr ""
+msgstr "<object data=\"media/files/scalc/pivot.ods\" id=\"ods_id61521547603544\" type=\"application/vnd.oasis.opendocument.spreadsheet\"/>"
diff --git a/source/fr/helpcontent2/source/text/scalc/guide.po b/source/fr/helpcontent2/source/text/scalc/guide.po
index 2e142789d30..c2e6fdea96a 100644
--- a/source/fr/helpcontent2/source/text/scalc/guide.po
+++ b/source/fr/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: 2018-05-22 13:16+0200\n"
-"PO-Revision-Date: 2018-03-08 18:06+0000\n"
+"PO-Revision-Date: 2018-05-29 16:27+0000\n"
"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
"Language-Team: ll.org\n"
"Language: fr\n"
@@ -13,9 +13,9 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Pootle 2.8\n"
"X-Project-Style: openoffice\n"
-"X-POOTLE-MTIME: 1520532370.000000\n"
+"X-POOTLE-MTIME: 1527611265.000000\n"
#: address_auto.xhp
msgctxt ""
@@ -79,7 +79,7 @@ msgctxt ""
"par_id3149210\n"
"help.text"
msgid "If you want a name to be automatically recognized by Calc, the name must start with a letter and be composed of alphanumeric characters. If you enter the name in the formula yourself, enclose the name in single quotation marks ('). If a single quotation mark appears in a name, you must enter a backslash in front of the quotation mark, for example, <item type=\"literal\">'Harry\\'s Bar'</item>."
-msgstr ""
+msgstr "Si vous souhaitez qu'un nom soit automatiquement reconnu par Calc, il faut que ce nom commence par une lettre et qu'il comporte des caractères alphanumériques. Si vous saisissez vous-même le nom dans la formule, encadrez-le de guillemets simples ('). Si le nom contient une apostrophe, vous devrez faire précéder celle-ci d'une barre oblique inverse, comme dans cet exemple : <item type=\"literal\">'L\\'échoppe de Jean'</item>."
#: auto_off.xhp
msgctxt ""
@@ -3831,7 +3831,7 @@ msgctxt ""
"par_id4525284\n"
"help.text"
msgid "<link href=\"https://wiki.documentfoundation.org/Documentation/How_Tos/Defining_a_Data_Range\" name=\"wiki.documentfoundation.org Defining a Data Range\">Wiki page about defining a data range</link>"
-msgstr ""
+msgstr "<link href=\"https://wiki.documentfoundation.org/Documentation/How_Tos/Defining_a_Data_Range\" name=\"wiki.documentfoundation.org Defining a Data Range\">Page de Wiki à propos de la définition d'une plage de données</link>"
#: database_sort.xhp
msgctxt ""
@@ -3911,7 +3911,7 @@ msgctxt ""
"par_id1846980\n"
"help.text"
msgid "<link href=\"https://wiki.documentfoundation.org/Documentation/How_Tos/Defining_a_Data_Range\" name=\"wiki.documentfoundation.org: Defining a Data Range\">Wiki page about defining a data range</link>"
-msgstr ""
+msgstr "<link href=\"https://wiki.documentfoundation.org/Documentation/How_Tos/Defining_a_Data_Range\" name=\"wiki.documentfoundation.org: Defining a Data Range\">Page de Wiki à propos de la définition d'une plage de données</link>"
#: datapilot.xhp
msgctxt ""
@@ -4103,7 +4103,7 @@ msgctxt ""
"par_id141525148751543\n"
"help.text"
msgid "If you delete a pivot table linked to a pivot chart, the pivot chart is also deleted. A dialog box opens to confirm the pivot chart deletion."
-msgstr ""
+msgstr "Si vous supprimez une table dynamique liée à un diagramme de table dynamique, le diagramme de table dynamique est également supprimé. Une boîte de dialogue s'ouvre afin de confirmer la suppression du diagramme de table dynamique."
#: datapilot_edittable.xhp
msgctxt ""
@@ -8127,7 +8127,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Pivot Chart"
-msgstr ""
+msgstr "Diagramme de table dynamique"
#: pivotchart.xhp
msgctxt ""
@@ -8135,7 +8135,7 @@ msgctxt ""
"bm_id541525139738752\n"
"help.text"
msgid "<bookmark_value>chart;pivot chart</bookmark_value> <bookmark_value>pivot table;pivot chart</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Diagramme;diagramme de table dynamique</bookmark_value><bookmark_value>Table dynamique;diagramme de table dynamique</bookmark_value>"
#: pivotchart.xhp
msgctxt ""
@@ -8143,7 +8143,7 @@ msgctxt ""
"hd_id141525139671420\n"
"help.text"
msgid "<variable id=\"pivotchart\"><link href=\"text/scalc/guide/pivotchart.xhp\" name=\"Pivot Chart\">Pivot Chart</link></variable>"
-msgstr ""
+msgstr "<variable id=\"pivotchart\"><link href=\"text/scalc/guide/pivotchart.xhp\" name=\"Pivot Chart\">Diagramme de table dynamique</link></variable>"
#: pivotchart.xhp
msgctxt ""
@@ -8151,7 +8151,7 @@ msgctxt ""
"par_id291525139878423\n"
"help.text"
msgid "A pivot chart is a chart with data range and data series of a <link href=\"text/scalc/guide/datapilot.xhp\" name=\"Pivot Table\">pivot table</link>."
-msgstr ""
+msgstr "Un diagramme de table dynamique est un diagramme avec des plages de données et des séries de données provenant d'une <link href=\"text/scalc/guide/datapilot.xhp\" name=\"Pivot Table\">table dynamique</link>."
#: pivotchart.xhp
msgctxt ""
@@ -8159,7 +8159,7 @@ msgctxt ""
"par_id911525139890364\n"
"help.text"
msgid "Different from static sized tables, where the number of rows and columns are constant, pivot tables can have varying dimensions, depending on the pivot table settings and its data source contents."
-msgstr ""
+msgstr "À la différence des tables de taille statique, où le nombre de lignes et de colonnes sont constants, les tables dynamiques peuvent avoir des dimensions variées, en fonction des paramètres de la table dynamique et du contenu des sources de données."
#: pivotchart.xhp
msgctxt ""
@@ -8167,7 +8167,7 @@ msgctxt ""
"par_id201525141351484\n"
"help.text"
msgid "Pivot charts track the changes in the data issued from a pivot table and adjust the data series and data range accordingly."
-msgstr ""
+msgstr "Les diagrammes de table dynamique suivent les modifications des données issues d'une table dynamique et ajustent les séries et les plages de données en conséquence."
#: pivotchart.xhp
msgctxt ""
@@ -8175,7 +8175,7 @@ msgctxt ""
"par_id191525177790601\n"
"help.text"
msgid "<link href=\"https://tomazvajngerl.blogspot.com/2017/03/pivot-charts-in-libreoffice-part-1.html\" name=\"Tomaž Vajngerl blog\">Technical details on %PRODUCTNAME pivot chart implementation</link>."
-msgstr ""
+msgstr "<link href=\"https://tomazvajngerl.blogspot.com/2017/03/pivot-charts-in-libreoffice-part-1.html\" name=\"Tomaž Vajngerl blog\">Détails techniques sur l'implémentation des diagrammes de table dynamique %PRODUCTNAME</link>."
#: pivotchart_create.xhp
msgctxt ""
@@ -8183,7 +8183,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Creating Pivot Charts"
-msgstr ""
+msgstr "Création de diagrammes de table dynamique."
#: pivotchart_create.xhp
msgctxt ""
@@ -8191,7 +8191,7 @@ msgctxt ""
"bm_id531525141739769\n"
"help.text"
msgid "<bookmark_value>pivot chart;creating</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Diagramme de table dynamique;création</bookmark_value>"
#: pivotchart_create.xhp
msgctxt ""
@@ -8199,7 +8199,7 @@ msgctxt ""
"hd_id441525141699185\n"
"help.text"
msgid "<variable id=\"pivotchartcreate\"><link href=\"text/scalc/guide/pivotchart_create.xhp\" name=\"pivot chart create\">Creating Pivot Charts</link></variable>"
-msgstr ""
+msgstr "<variable id=\"pivotchartcreate\"><link href=\"text/scalc/guide/pivotchart_create.xhp\" name=\"pivot chart create\">Création de diagrammes de table dynamique</link></variable>"
#: pivotchart_create.xhp
msgctxt ""
@@ -8207,7 +8207,7 @@ msgctxt ""
"par_id481525142550652\n"
"help.text"
msgid "To create a pivot chart proceed as below:"
-msgstr ""
+msgstr "Pour créer un diagramme de table dynamique, procédez de la façon suivante :"
#: pivotchart_create.xhp
msgctxt ""
@@ -8215,7 +8215,7 @@ msgctxt ""
"par_id761525140219212\n"
"help.text"
msgid "Click inside the pivot table that you want to present in your chart."
-msgstr ""
+msgstr "Cliquez à l'intérieur de la table dynamique à présenter sous forme de diagramme."
#: pivotchart_create.xhp
msgctxt ""
@@ -8223,7 +8223,7 @@ msgctxt ""
"par_id351525140237521\n"
"help.text"
msgid "Choose <emph>Insert – Chart</emph> or click in the <image id=\"img_id3157322\" src=\"cmd/sc_insertobjectchart.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3159322\">Insert Chart Icon</alt></image> <emph>Insert Chart</emph> icon in the main toolbar."
-msgstr ""
+msgstr "Choisissez <emph>Insertion - Diagramme</emph> ou cliquez sur l'icône <image id=\"img_id3157322\" src=\"cmd/sc_insertobjectchart.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3159322\">Insérer un diagramme</alt></image><emph>Insérer un diagramme</emph> dans la barre d'outils principale."
#: pivotchart_create.xhp
msgctxt ""
@@ -8231,7 +8231,7 @@ msgctxt ""
"par_id151525140367370\n"
"help.text"
msgid "%PRODUCTNAME Calc automatically detects the pivot table and opens the pivot chart wizard."
-msgstr ""
+msgstr "%PRODUCTNAME Calc détecte automatiquement la table dynamique et ouvre l'assistant de diagramme de table dynamique."
#: pivotchart_create.xhp
msgctxt ""
@@ -8239,7 +8239,7 @@ msgctxt ""
"par_id861525140391601\n"
"help.text"
msgid "Select the <link href=\"text/schart/01/wiz_chart_type.xhp\" name=\"Chart type\">Chart type</link> for the data in the chart wizard."
-msgstr ""
+msgstr "Sélectionnez le <link href=\"text/schart/01/wiz_chart_type.xhp\" name=\"Chart type\">Type de diagramme</link> pour les données dans l'assistant de diagramme."
#: pivotchart_create.xhp
msgctxt ""
@@ -8247,7 +8247,7 @@ msgctxt ""
"par_id41525141917275\n"
"help.text"
msgid "The data range and the data series pages of the chart wizard are not enabled. They are controlled by the pivot table."
-msgstr ""
+msgstr "Les pages de plages et de séries de données de l'assistant de diagramme ne sont pas actives. Elles sont contrôlées par la table dynamique. "
#: pivotchart_create.xhp
msgctxt ""
@@ -8255,7 +8255,7 @@ msgctxt ""
"par_id511525140411625\n"
"help.text"
msgid "Select the <link href=\"text/schart/01/wiz_chart_elements.xhp\" name=\"Chart elements\">Chart Elements</link> of the pivot chart in the wizard."
-msgstr ""
+msgstr "Sélectionnez les <link href=\"text/schart/01/wiz_chart_elements.xhp\" name=\"Chart elements\">Éléments du diagramme</link> du diagramme de table dynamique dans l'assistant."
#: pivotchart_create.xhp
msgctxt ""
@@ -8263,7 +8263,7 @@ msgctxt ""
"par_id1001525165156188\n"
"help.text"
msgid "Click <emph>OK</emph> to close the wizard and create the pivot chart."
-msgstr ""
+msgstr "Cliquez sur <emph>OK</emph> pour fermer l'assistant et créer le diagramme de table dynamique."
#: pivotchart_delete.xhp
msgctxt ""
@@ -8271,7 +8271,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Deleting Pivot Charts"
-msgstr ""
+msgstr "Suppression de diagrammes de table dynamique"
#: pivotchart_delete.xhp
msgctxt ""
@@ -8279,7 +8279,7 @@ msgctxt ""
"hd_id231525147891984\n"
"help.text"
msgid "<variable id=\"pivotchartdelete\"><link href=\"text/scalc/guide/pivotchart_delete.xhp\" name=\"Deleting a Pivot Chart\">Deleting a Pivot Chart</link></variable>"
-msgstr ""
+msgstr "<variable id=\"pivotchartdelete\"><link href=\"text/scalc/guide/pivotchart_delete.xhp\" name=\"Deleting a Pivot Chart\">Suppression de diagramme de table dynamique</link></variable>"
#: pivotchart_delete.xhp
msgctxt ""
@@ -8287,7 +8287,7 @@ msgctxt ""
"bm_id231525149357908\n"
"help.text"
msgid "<bookmark_value>pivot chart;deleting</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Diagramme de table dynamique;suppression</bookmark_value>"
#: pivotchart_delete.xhp
msgctxt ""
@@ -8295,7 +8295,7 @@ msgctxt ""
"par_id141525147903623\n"
"help.text"
msgid "To delete a pivot chart, select the chart and press <emph>Del</emph>."
-msgstr ""
+msgstr "Pour supprimer un diagramme de table dynamique, sélectionnez le diagramme et appuyez sur <emph>Supprimer</emph>."
#: pivotchart_delete.xhp
msgctxt ""
@@ -8303,7 +8303,7 @@ msgctxt ""
"par_id431525148462157\n"
"help.text"
msgid "When deleting a pivot chart, the linked pivot table is not affected."
-msgstr ""
+msgstr "Lors de la suppression d'un diagramme de table dynamique, la table dynamique liée n'est pas affectée."
#: pivotchart_delete.xhp
msgctxt ""
@@ -8311,7 +8311,7 @@ msgctxt ""
"par_id141525148751543\n"
"help.text"
msgid "If you delete a pivot table linked to a pivot chart, the pivot chart is also deleted. A dialog box opens to confirm the pivot chart deletion."
-msgstr ""
+msgstr "Si vous supprimez une table dynamique liée à un diagramme de table dynamique, le diagramme de table dynamique est également supprimé. Une boîte de dialogue s'ouvre afin de confirmer la suppression du diagramme de table dynamique."
#: pivotchart_edit.xhp
msgctxt ""
@@ -8319,7 +8319,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Editing Pivot Charts"
-msgstr ""
+msgstr "Édition des diagrammes de table dynamique"
#: pivotchart_edit.xhp
msgctxt ""
@@ -8327,7 +8327,7 @@ msgctxt ""
"bm_id661525144028976\n"
"help.text"
msgid "<bookmark_value>pivot chart;editing</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Diagramme de table dynamique;édition</bookmark_value>"
#: pivotchart_edit.xhp
msgctxt ""
@@ -8335,7 +8335,7 @@ msgctxt ""
"hd_id271525144002806\n"
"help.text"
msgid "<variable id=\"pivotchartedit\"><link href=\"text/scalc/guide/pivotchart_edit.xhp\" name=\"Pivot Chart Editing\">Editing Pivot Charts</link></variable>"
-msgstr ""
+msgstr "<variable id=\"pivotchartedit\"><link href=\"text/scalc/guide/pivotchart_edit.xhp\" name=\"Pivot Chart Editing\">Édition de diagrammes de table dynamique</link></variable>"
#: pivotchart_edit.xhp
msgctxt ""
@@ -8343,7 +8343,7 @@ msgctxt ""
"par_id971525144066574\n"
"help.text"
msgid "Edit a pivot chart in the same way as normal charts."
-msgstr ""
+msgstr "Éditez un diagramme de table dynamique de la même façon que vous le faites pour un diagramme normal."
#: pivotchart_edit.xhp
msgctxt ""
@@ -8351,7 +8351,7 @@ msgctxt ""
"hd_id5631580\n"
"help.text"
msgid "To edit a pivot chart"
-msgstr ""
+msgstr "Pour éditer un diagramme de table dynamique"
#: pivotchart_filter.xhp
msgctxt ""
@@ -8359,7 +8359,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Filtering Pivot Charts"
-msgstr ""
+msgstr "Filtrage des diagrammes de table dynamique"
#: pivotchart_filter.xhp
msgctxt ""
@@ -8367,7 +8367,7 @@ msgctxt ""
"hd_id401525165755583\n"
"help.text"
msgid "<variable id=\"pivotchartfilter\"><link href=\"text/scalc/guide/pivotchart_filter.xhp\" name=\"Filtering Pivot Charts\">Filtering Pivot Charts</link></variable>"
-msgstr ""
+msgstr "<variable id=\"pivotchartfilter\"><link href=\"text/scalc/guide/pivotchart_filter.xhp\" name=\"Filtering Pivot Charts\">Filtrage des diagrammes de table de pilote</link></variable>"
#: pivotchart_filter.xhp
msgctxt ""
@@ -8375,7 +8375,7 @@ msgctxt ""
"par_id781525166702239\n"
"help.text"
msgid "Filters are used to remove unwanted data from the pivot chart. You can use filters in the pivot chart or in the corresponding <link href=\"text/scalc/guide/datapilot_filtertable.xhp\" name=\"Pivot table filtering\">pivot table</link>, since the resulting chart is exactly the same."
-msgstr ""
+msgstr "Les filtres sont utilisés pour supprimer les données non voulues de la table dynamique. Vous pouvez utiliser des filtres dans le diagramme de table dynamique ou dans la <link href=\"text/scalc/guide/datapilot_filtertable.xhp\" name=\"Pivot table filtering\">table dynamique</link> correspondante dans la mesure où le diagramme résultant est exactement identique."
#: pivotchart_filter.xhp
msgctxt ""
@@ -8383,7 +8383,7 @@ msgctxt ""
"hd_id201525166689277\n"
"help.text"
msgid "Pivot chart field buttons"
-msgstr ""
+msgstr "Boutons de champ du diagramme de table dynamique"
#: pivotchart_filter.xhp
msgctxt ""
@@ -8391,7 +8391,7 @@ msgctxt ""
"par_id751525167435160\n"
"help.text"
msgid "Pivot chart buttons are unique to pivot charts, normal charts don't have them. The buttons shows the layout of the pivot table, which are the pivot table fields. If present, page fields are displayed in the top. Row fields are displayed on the bottom of the chart next to each other and the legend shows the buttons from column fields stacked."
-msgstr ""
+msgstr "Les boutons de diagramme de table dynamique sont uniques aux diagrammes de table dynamique, ils ne sont pas disponibles pour les autres diagrammes. Les boutons affichent la mise en page de la table dynamique, qui correspont aux champs de la table dynamique. S'ils sont présents, les champs de pages sont affichés en haut. Les champs de ligne sont affiché en bas du diagramme les uns à côté des autres et la légende affiche les boutons des champs de colonne empilés."
#: pivotchart_filter.xhp
msgctxt ""
@@ -8399,7 +8399,7 @@ msgctxt ""
"par_id681525167692377\n"
"help.text"
msgid "<image src=\"media/helpimg/sc_PivotChartButtons.png\" id=\"img_id801525167692378\" width=\"604px\" height=\"340px\"><alt id=\"alt_id881525167692378\">Pivot chart buttons</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/helpimg/sc_PivotChartButtons.png\" id=\"img_id801525167692378\" width=\"604px\" height=\"340px\"><alt id=\"alt_id881525167692378\">Boutons de diagramme de table dynamique</alt></image>"
#: pivotchart_filter.xhp
msgctxt ""
@@ -8407,7 +8407,7 @@ msgctxt ""
"par_id851525167448337\n"
"help.text"
msgid "The buttons have a pop-up action attached to them. If there is some filtering applied, then the arrow turns blue (similar to the pivot table), so it is easier to see when a field has any filter applied."
-msgstr ""
+msgstr "Les boutons on une action pop-up qui leur est attachée. S'il y a un filtrage appliqué, alors la flèche devient bleue (de la même façon que dans la table dynamique), il est ainsi plus facile de voir lorsqu'un filtre est appliqué à un champ."
#: pivotchart_filter.xhp
msgctxt ""
@@ -8415,7 +8415,7 @@ msgctxt ""
"par_id401525167457977\n"
"help.text"
msgid "Existing page fields shows what is filtered: when nothing is filtered \"- all -\" is shown, when some data is filtered, then \"- multiple -\" is shown and when only one value is not filtered, the value is shown."
-msgstr ""
+msgstr "Les champs de page existants affichent ce qui est filtré : lorsqu'il n'y a pas de filtre appliqué \"-tout-\" est affiché, lorsque des données sont filtrées, alors \"-multiple-\" est affiché et lorsqu'une seule valeur n'est pas filtrée, la valeur est affichée."
#: pivotchart_update.xhp
msgctxt ""
@@ -8423,7 +8423,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Pivot Chart Update"
-msgstr ""
+msgstr "Actualiser un diagramme de table dynamique"
#: pivotchart_update.xhp
msgctxt ""
@@ -8431,7 +8431,7 @@ msgctxt ""
"bm_id801525146393791\n"
"help.text"
msgid "<bookmark_value>pivot chart;update</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Diagramme de table dynamique;actualiser</bookmark_value>"
#: pivotchart_update.xhp
msgctxt ""
@@ -8439,7 +8439,7 @@ msgctxt ""
"hd_id281525146417678\n"
"help.text"
msgid "<variable id=\"pivotchartupdate\"><link href=\"text/scalc/guide/pivotchart_update.xhp\" name=\"Pivot Chart Update\">Updating Pivot Charts</link></variable>"
-msgstr ""
+msgstr "<variable id=\"pivotchartupdate\"><link href=\"text/scalc/guide/pivotchart_update.xhp\" name=\"Pivot Chart Update\">Actualiser les diagrammes de table dynamique</link></variable>"
#: pivotchart_update.xhp
msgctxt ""
@@ -8447,7 +8447,7 @@ msgctxt ""
"par_id831525146706944\n"
"help.text"
msgid "If the data of the source sheet has been changed, you must refresh the pivot table and the pivot chart is updated accordingly. To refresh the pivot table (and thus the pivot chart):"
-msgstr ""
+msgstr "Si les données de la feuille source ont été modifiées, vous devez rafraîchir la table dynamique et le diagramme de table dynamique est actualisé en conséquence. Pour rafraîchir la table dynamique (et donc le diagramme de table dynamique) :"
#: pivotchart_update.xhp
msgctxt ""
@@ -8455,7 +8455,7 @@ msgctxt ""
"par_id451525146722974\n"
"help.text"
msgid "Choose <emph>Data - Pivot Table - Refresh</emph>."
-msgstr ""
+msgstr "Choisissez <emph>Données - Table dynamique - Rafraîchir</emph>"
#: pivotchart_update.xhp
msgctxt ""
@@ -8463,7 +8463,7 @@ msgctxt ""
"par_id331525146738273\n"
"help.text"
msgid "Choose <emph>Refresh...</emph> in the context menu of any cell in the pivot table."
-msgstr ""
+msgstr "Choisissez <emph>Rafraîchir...</emph> dans le menu contextuel de n'importe quelle cellule de la table dynamique."
#: print_details.xhp
msgctxt ""
diff --git a/source/fr/helpcontent2/source/text/shared/00.po b/source/fr/helpcontent2/source/text/shared/00.po
index 2fc64dd979b..13968383eb8 100644
--- a/source/fr/helpcontent2/source/text/shared/00.po
+++ b/source/fr/helpcontent2/source/text/shared/00.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: 2018-05-22 13:16+0200\n"
-"PO-Revision-Date: 2018-05-09 12:08+0000\n"
-"Last-Translator: Jean-Baptiste Faure <jbfaure@libreoffice.org>\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
+"PO-Revision-Date: 2018-06-06 14:34+0000\n"
+"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
"Language-Team: ll.org\n"
"Language: fr\n"
"MIME-Version: 1.0\n"
@@ -13,9 +13,9 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Pootle 2.8\n"
"X-Project-Style: openoffice\n"
-"X-POOTLE-MTIME: 1525867709.000000\n"
+"X-POOTLE-MTIME: 1528295668.000000\n"
#: 00000001.xhp
msgctxt ""
@@ -398,16 +398,16 @@ msgctxt ""
"00000001.xhp\n"
"hd_id3149670\n"
"help.text"
-msgid "Back"
-msgstr "Précédent"
+msgid "Reset"
+msgstr "Réinitialiser"
#: 00000001.xhp
msgctxt ""
"00000001.xhp\n"
"par_id3145068\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optionsdialog/revert\">Resets modified values back to the $[officename] default values.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/optionsdialog/revert\">Rétablit les valeurs modifiées aux valeurs par défaut de $[officename].</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optionsdialog/revert\">Resets changes made to the current tab to those applicable when this dialog was opened.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/optionsdialog/revert\">Réinitialise les modifications effectuées sur l'onglet actif à celles applicables lorsque la boîte de dialogue a été ouverte.</ahelp>"
#: 00000001.xhp
msgctxt ""
@@ -553,6 +553,54 @@ msgctxt ""
msgid "<variable id=\"ShiftF1\">Press Shift+F1 and point to a control to learn more about that control.</variable>"
msgstr "<variable id=\"ShiftF1\">Appuyez sur Maj+F1 et pointez sur une commande pour en savoir plus sur celle-ci.</variable>"
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"hd_id631527692833772\n"
+"help.text"
+msgid "Options dialog buttons"
+msgstr "Boutons de la boîte de dialogue Options"
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"hd_id831527692839432\n"
+"help.text"
+msgid "OK"
+msgstr "OK"
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"par_id471527692844934\n"
+"help.text"
+msgid "Save the changes in the page and close the Options dialog."
+msgstr "Enregistrer les modifications de l'onglet et fermer la boîte de dialogue Options"
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"hd_id261527692850720\n"
+"help.text"
+msgid "Cancel"
+msgstr "Annuler"
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"par_id571527692855533\n"
+"help.text"
+msgid "Close the Options dialog and discard all changes done."
+msgstr "Fermer la boîte de dialogue Options et abandonner toutes les modifications effectuées."
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"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 Options dialog."
+msgstr "Certaines options ne peuvent pas être réinitialisées une fois éditées. Annulez les modifications manuellement ou appuyez sur <emph>Annuler</emph> et ouvrez de nouveau la boîte de dialogue."
+
#: 00000002.xhp
msgctxt ""
"00000002.xhp\n"
@@ -6007,7 +6055,7 @@ msgctxt ""
"par_id181526424294565\n"
"help.text"
msgid "Choose <emph>File - Digital Signatures - Sign Existing PDF</emph>."
-msgstr ""
+msgstr "Choisissez <emph>Fichier - Signatures numériques - Signer un PDF existant</emph>"
#: 00000401.xhp
msgctxt ""
@@ -6199,7 +6247,7 @@ msgctxt ""
"par_id3163421\n"
"help.text"
msgid "Choose <emph>File - Export As - Export as PDF</emph>, Digital Signatures tab"
-msgstr ""
+msgstr "Choisissez <emph>Fichier - Exporter sous - Exporter comme PDF</emph>, onglet Signatures numériques"
#: 00000401.xhp
msgctxt ""
@@ -6207,7 +6255,7 @@ msgctxt ""
"par_id3166421\n"
"help.text"
msgid "Choose <emph>File - Export As - Export as PDF</emph>"
-msgstr ""
+msgstr "Choisissez <emph>Fichier - Exporter sous - Exporter au format PDF</emph>"
#: 00000401.xhp
msgctxt ""
@@ -6671,7 +6719,7 @@ msgctxt ""
"par_id3150396\n"
"help.text"
msgid "Choose <emph>Tools - AutoCorrect - Apply and Edit Changes</emph>. The AutoCorrect dialog appears. Click the <emph>Edit Changes</emph> button and navigate to the <emph>List</emph> tab."
-msgstr ""
+msgstr "Choisissez <emph>Outils - AutoCorrection - Appliquer et éditer les modifications.</emph> La boîte de dialogue AutoCorrection s'affiche. Cliquez sur le bouton <emph>Éditer les modifications</emph> et naviguez jusqu'à l'onglet <emph>Liste</emph>"
#: 00000402.xhp
msgctxt ""
@@ -6951,7 +6999,7 @@ msgctxt ""
"par_id3149962\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">Zoom also with (+) (-) (×) and (÷) on the number keypad</caseinline><caseinline select=\"IMPRESS\">Zoom also with (+) (-) (×) and (÷) on the number keypad</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"DRAW\">Pour effectuer un zoom, vous pouvez également utiliser les touches (+) (-) (×) et (÷) du pavé numérique.</caseinline><caseinline select=\"IMPRESS\">Pour effectuer un zoom, vous pouvez également utiliser les touches (+) (-) (×) et (÷) du pavé numérique.</caseinline></switchinline>"
#: 00000403.xhp
msgctxt ""
@@ -7103,7 +7151,7 @@ msgctxt ""
"par_id3149046\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> + Shift + F4 keys"
-msgstr ""
+msgstr "Les touches <switchinline select=\"sys\"><caseinline select=\"MAC\">Commande</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F4"
#: 00000403.xhp
msgctxt ""
@@ -7159,7 +7207,7 @@ msgctxt ""
"par_idN1091B\n"
"help.text"
msgid "<variable id=\"grid\">Choose <emph>View - Grid</emph> (Impress or Draw)</variable>"
-msgstr ""
+msgstr "<variable id=\"grid\">Choisissez <emph>Affichage - Grille</emph> (Impress ou Draw)</variable>"
#: 00000403.xhp
msgctxt ""
@@ -7167,7 +7215,7 @@ msgctxt ""
"par_idN1092E\n"
"help.text"
msgid "<variable id=\"guides\">Choose <emph>View - Snap Lines</emph> (Impress or Draw)</variable>"
-msgstr ""
+msgstr "<variable id=\"guides\">Choisissez <emph>Affichage - Lignes de capture</emph> (Impress ou Draw)</variable>"
#: 00000404.xhp
msgctxt ""
@@ -7671,7 +7719,7 @@ msgctxt ""
"par_id3146957\n"
"help.text"
msgid "<variable id=\"galleryregisterdateien\">Choose <emph>Tools - Gallery</emph> or click the <emph>Gallery </emph>icon on the <emph>Standard</emph> Bar - <emph>New Theme</emph> button - <emph>Files</emph> tab.</variable>"
-msgstr ""
+msgstr "<variable id=\"galleryregisterdateien\">Choisissez <emph>Outils - Galerie</emph> ou cliquez sur l'icône <emph>Galerie</emph> dans la barre <emph>Standard</emph> - bouton <emph>Nouveau thème</emph> - onglet <emph>Fichiers</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -7679,7 +7727,7 @@ msgctxt ""
"par_id3166411\n"
"help.text"
msgid "Choose <emph>Tools - Spelling</emph>."
-msgstr ""
+msgstr "Choisissez <emph>Outils - Orthographe</emph>."
#: 00000406.xhp
msgctxt ""
@@ -7719,7 +7767,7 @@ msgctxt ""
"par_id3156326\n"
"help.text"
msgid "<variable id=\"hangul\">Choose <emph>Tools - Language - Hangul/Hanja Conversion</emph>. Asian language support must be enabled.</variable>"
-msgstr ""
+msgstr "<variable id=\"hangul\">Choisissez <emph>Outils - Langue - Conversion hangul/hanja</emph>. La prise en charge des langues asiatiques doit être activée.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -7727,7 +7775,7 @@ msgctxt ""
"par_idN10705\n"
"help.text"
msgid "<variable id=\"chinese\">Choose <emph>Tools - Language - Chinese Conversion</emph>. Asian language support must be enabled.</variable>"
-msgstr ""
+msgstr "<variable id=\"chinese\">Choisissez <emph>Outils - Langue - Conversion chinoise</emph>. La prise en charge des langues asiatiques doit être activée.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -7735,7 +7783,7 @@ msgctxt ""
"par_idN1071E\n"
"help.text"
msgid "<variable id=\"chineseedit\">Choose <emph>Tools - Language - Chinese Conversion</emph> - <emph>Edit terms</emph> button. Asian language support must be enabled.</variable>"
-msgstr ""
+msgstr "<variable id=\"chineseedit\">Choisissez <emph>Outils - Langue - Conversion chinoise</emph> - bouton <emph>Éditer les termes</emph>. La prise en charge des langues asiatiques doit être activée.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -7743,7 +7791,7 @@ msgctxt ""
"par_id3155419\n"
"help.text"
msgid "<variable id=\"rechtschreibungmenue\">Choose <emph>Tools - Spelling</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"rechtschreibungmenue\">Choisissez <emph>Outils - Orthographe</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -7751,7 +7799,7 @@ msgctxt ""
"par_id3150771\n"
"help.text"
msgid "<variable id=\"zoptionen\">Choose <emph>Tools - Spelling</emph>, then click <emph>Options</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"zoptionen\">Choisissez <emph>Outils - Orthographe</emph>, puis cliquez sur <emph>Options</emph></variable>"
#: 00000406.xhp
msgctxt ""
@@ -7775,7 +7823,7 @@ msgctxt ""
"par_id3153320\n"
"help.text"
msgid "Choose <emph>Tools - Color Replacer</emph> ($[officename] Draw and $[officename] Impress)."
-msgstr ""
+msgstr "Choisissez <emph>Outils - Remplacement de couleur</emph> ($[officename] Draw et $[officename] Impress)"
#: 00000406.xhp
msgctxt ""
@@ -7783,7 +7831,7 @@ msgctxt ""
"par_idN107E9\n"
"help.text"
msgid "<variable id=\"mediaplayer\">Choose <emph>Tools - Media Player</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"mediaplayer\">Choisissez <emph>Outils - Media Player</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -7791,7 +7839,7 @@ msgctxt ""
"par_id3151385\n"
"help.text"
msgid "<variable id=\"makro\">Choose <emph>Tools - Macros - Organize Macros - %PRODUCTNAME Basic</emph>, or press <switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>+F11 (if not assigned by your system).</variable>"
-msgstr ""
+msgstr "<variable id=\"makro\">Choisissez <emph>Outils - Macros - Gérer les macros - %PRODUCTNAME Basic</emph>, ou appuyez sur <switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>+F11 (si non assignée par votre système).</variable>"
#: 00000406.xhp
msgctxt ""
@@ -7799,7 +7847,7 @@ msgctxt ""
"par_id3149456\n"
"help.text"
msgid "Choose <emph>Tools - Macros - Record Macro</emph>."
-msgstr ""
+msgstr "Choisissez <emph>Outils - Macros - Enregistrer la macro</emph>."
#: 00000406.xhp
msgctxt ""
@@ -7807,7 +7855,7 @@ msgctxt ""
"par_id3150398\n"
"help.text"
msgid "<variable id=\"passwort\">Choose <emph>Tools - Macros - Organize Macros - %PRODUCTNAME Basic</emph>, click the <emph>Organizer</emph> button, click the <emph>Libraries</emph> tab, and then click the <emph>Password</emph> button.</variable>"
-msgstr ""
+msgstr "<variable id=\"passwort\">Choisissez <emph>Outils - Macros - Gérer les macros - %PRODUCTNAME Basic</emph>, cliquez sur le bouton <emph>Gérer</emph>, sur l'onglet <emph>Bibliothèques</emph> et sur le bouton <emph>Mot de passe</emph></variable>"
#: 00000406.xhp
msgctxt ""
@@ -7815,7 +7863,7 @@ msgctxt ""
"par_idN10843\n"
"help.text"
msgid "<variable id=\"packagemanager\">Choose <emph>Tools - Extension Manager</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"packagemanager\">Choisissez <emph>Outils - Gestionnaire d'extensions</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -7823,7 +7871,7 @@ msgctxt ""
"par_id9988402\n"
"help.text"
msgid "<variable id=\"packagemanager_eu\">Choose <emph>Tools - Extension Manager</emph>, click <emph>Updates</emph> button.</variable>"
-msgstr ""
+msgstr "<variable id=\"packagemanager_eu\">Choisissez <emph>Outils - Gestionnaire des extensions</emph>, cliquez sur le bouton <emph>Mises à jour</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -7831,7 +7879,7 @@ msgctxt ""
"par_id3151106\n"
"help.text"
msgid "<variable id=\"xmlfilter\">Choose <emph>Tools - XML Filter Settings</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"xmlfilter\">Choisissez <emph>Outils - Paramétrages du filtre XML</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -7839,7 +7887,7 @@ msgctxt ""
"par_id3153778\n"
"help.text"
msgid "<variable id=\"xmlfilteredit\">Choose <emph>Tools - XML Filter Settings</emph>, then click <emph>New</emph> or <emph>Edit</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"xmlfilteredit\">Choisissez <emph>Outils - Paramétrages du filtre XML</emph>, puis cliquez sur <emph>Nouveau</emph> ou <emph>Éditer</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -7847,7 +7895,7 @@ msgctxt ""
"par_id3148979\n"
"help.text"
msgid "<variable id=\"xmlfiltertest\">Choose <emph>Tools - XML Filter Settings</emph>, then click <emph>Test XSLTs</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"xmlfiltertest\">Choisissez <emph>Outils - Paramétrages du filtre XML</emph>, puis cliquez sur <emph>Tester les XSLT</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -7855,7 +7903,7 @@ msgctxt ""
"par_id3148672\n"
"help.text"
msgid "<variable id=\"anpassen\">Choose <emph>Tools - Customize</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"anpassen\">Choisissez <emph>Outils - Personnaliser</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -7863,7 +7911,7 @@ msgctxt ""
"par_id3147230\n"
"help.text"
msgid "<variable id=\"menue\">Choose <emph>Tools - Customize - Menus</emph> tab.</variable>"
-msgstr ""
+msgstr "<variable id=\"menue\">Choisissez l'onglet <emph>Outils - Personnaliser - Menus</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -7871,7 +7919,7 @@ msgctxt ""
"par_idN108E9\n"
"help.text"
msgid "<variable id=\"menuenew\">Choose <emph>Tools - Customize - Menus</emph> tab, click <emph>New</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"menuenew\">Choisissez l'onglet <emph>Outils - Personnaliser - Menus</emph>, cliquez sur <emph>Nouveau</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -7879,7 +7927,7 @@ msgctxt ""
"par_idN10919\n"
"help.text"
msgid "<variable id=\"menuemove\">Choose <emph>Tools - Customize - Menus</emph> tab, click <emph>Menu - Move</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"menuemove\">Choisissez l'onglet <emph>Outils - Personnaliser - Menus</emph>, cliquez sur <emph>Menu - Déplacer</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -7887,7 +7935,7 @@ msgctxt ""
"par_id3145171\n"
"help.text"
msgid "<variable id=\"tastatur\">Choose <emph>Tools - Customize - Keyboard</emph> tab. A document must be opened.</variable>"
-msgstr ""
+msgstr "<variable id=\"tastatur\">Choisissez l'onglet <emph>Outils - Personnaliser - Clavier</emph>. Un document doit être ouvert.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -7895,7 +7943,7 @@ msgctxt ""
"par_id3153968\n"
"help.text"
msgid "<variable id=\"symbole\">Choose <emph>Tools - Customize - Toolbars</emph> tab.</variable>"
-msgstr ""
+msgstr "<variable id=\"symbole\">Choisissez l'onglet <emph>Outils - Personnaliser - Barre d'outils</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -7903,7 +7951,7 @@ msgctxt ""
"par_id3144432\n"
"help.text"
msgid "<variable id=\"events\">Choose <emph>Tools - Customize - Events</emph> tab.</variable>"
-msgstr ""
+msgstr "<variable id=\"events\">Choisissez l'onglet <emph>Outils - Personnaliser - Événements</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -7911,7 +7959,7 @@ msgctxt ""
"par_id3157895\n"
"help.text"
msgid "<variable id=\"autokorr\">Choose <emph>Tools - AutoCorrect - AutoCorrect Options</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"autokorr\">Choisissez <emph>Outils - AutoCorrection - Options d'AutoCorrection</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -7919,7 +7967,7 @@ msgctxt ""
"par_id3153768\n"
"help.text"
msgid "<variable id=\"autokooptionen\">Choose <emph>Tools - AutoCorrect - AutoCorrect Options - Options</emph> tab.</variable>"
-msgstr ""
+msgstr "<variable id=\"autokooptionen\">Choisissez l'onglet <emph>Outils - AutoCorrection - Options d'AutoCorrection - Options</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -7927,7 +7975,7 @@ msgctxt ""
"par_id1978514\n"
"help.text"
msgid "<variable id=\"autokosmarttags\">Choose <emph>Tools - AutoCorrect - AutoCorrect Options - Smart Tags</emph> tab.</variable>"
-msgstr ""
+msgstr "<variable id=\"autokosmarttags\">Choisissez l'onglet <emph>Outils - AutoCorrection - Options d'AutoCorrection - Smart Tags</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -7935,7 +7983,7 @@ msgctxt ""
"par_id3155368\n"
"help.text"
msgid "<variable id=\"autokoersetzung\">Choose <emph>Tools - AutoCorrect - AutoCorrect Options - Replace</emph> tab.</variable>"
-msgstr ""
+msgstr "<variable id=\"autokoersetzung\">Choisissez l'onglet <emph>Outils - AutoCorrection - Options d'AutoCorrection - Remplacer</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -7943,7 +7991,7 @@ msgctxt ""
"par_id3155860\n"
"help.text"
msgid "<variable id=\"autokoausnahmen\">Choose <emph>Tools - AutoCorrect - AutoCorrect Options - Exceptions</emph> tab.</variable>"
-msgstr ""
+msgstr "<variable id=\"autokoausnahmen\">Choisissez l'onglet <emph>Outils - AutoCorrection - Options d'AutoCorrection - Exceptions</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -7951,7 +7999,7 @@ msgctxt ""
"par_id3153094\n"
"help.text"
msgid "<variable id=\"autokotyafz\">Choose <emph>Tools - AutoCorrect - AutoCorrect Options - Localized Options</emph> tab.</variable>"
-msgstr ""
+msgstr "<variable id=\"autokotyafz\">Choisissez l'onglet <emph>Outils - AutoCorrection - Options d'AutoCorrection - Options linguistiques</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -7959,7 +8007,7 @@ msgctxt ""
"par_id3153945\n"
"help.text"
msgid "<variable id=\"autokoworterg\">Choose <emph>Tools - AutoCorrect - AutoCorrect Options - Word Completion</emph> tab.</variable>"
-msgstr ""
+msgstr "<variable id=\"autokoworterg\">Choisissez <emph>Outils - AutoCorrection - Options d'AutoCorrection - Insertion automatique</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -7967,7 +8015,7 @@ msgctxt ""
"par_id3151352\n"
"help.text"
msgid "<variable id=\"exopas\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Calc - View</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"exopas\">Choisissez <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Préférences</emph></caseinline><defaultinline><emph>Outils - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Calc - Affichage</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -7975,7 +8023,7 @@ msgctxt ""
"par_id3154127\n"
"help.text"
msgid "<variable id=\"etoplayout\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Impress/%PRODUCTNAME Draw - View</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"etoplayout\">Choisissez <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Préférences</emph></caseinline><defaultinline><emph>Outils - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Impress/%PRODUCTNAME Draw - Affichage</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -7983,7 +8031,7 @@ msgctxt ""
"par_id3149664\n"
"help.text"
msgid "<variable id=\"etotm\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Draw - General</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"etotm\">Choisissez <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Préférences</emph></caseinline><defaultinline><emph>Outils - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Draw - Général</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8007,7 +8055,7 @@ msgctxt ""
"par_id3147295\n"
"help.text"
msgid "<variable id=\"optionen\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline>.</variable>"
-msgstr ""
+msgstr "<variable id=\"optionen\">Choisissez <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Préférences</emph></caseinline><defaultinline><emph>Outils - Options</emph></defaultinline></switchinline>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8015,7 +8063,7 @@ msgctxt ""
"par_id3156006\n"
"help.text"
msgid "<variable id=\"optionenallgemein\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename]</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"optionenallgemein\">Choisissez <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Préférences</emph></caseinline><defaultinline><emph>Outils - Options</emph></defaultinline></switchinline><emph> - $[officename] - Mémoire</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8023,7 +8071,7 @@ msgctxt ""
"par_id3155308\n"
"help.text"
msgid "<variable id=\"benutzerdaten\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - User Data</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"benutzerdaten\">Choisissez <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Préférences</emph></caseinline><defaultinline><emph>Outils - Options</emph></defaultinline></switchinline><emph> - $[officename] - Données d'identité</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8031,7 +8079,7 @@ msgctxt ""
"par_id3155312\n"
"help.text"
msgid "<variable id=\"allg\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - General</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"allg\">Choisissez <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Préférences</emph></caseinline><defaultinline><emph>Outils - Options</emph></defaultinline></switchinline><emph> - $[officename] - Général</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8039,7 +8087,7 @@ msgctxt ""
"par_id3150032\n"
"help.text"
msgid "<variable id=\"arbeit\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - Memory</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"arbeit\">Choisissez <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Préférences</emph></caseinline><defaultinline><emph>Outils - Options</emph></defaultinline></switchinline><emph> - $[officename] - Mémoire</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8047,7 +8095,7 @@ msgctxt ""
"par_id3159153\n"
"help.text"
msgid "<variable id=\"ansicht\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - View</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"ansicht\">Choisissez <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Préférences</emph></caseinline><defaultinline><emph>Outils - Options</emph></defaultinline></switchinline><emph> - $[officename] - Affichage</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8055,7 +8103,7 @@ msgctxt ""
"par_id3166413\n"
"help.text"
msgid "<variable id=\"drucken\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - Print</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"drucken\">Choisissez <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Préférences</emph></caseinline><defaultinline><emph>Outils - Options</emph></defaultinline></switchinline><emph> - $[officename] - Imprimer</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8063,7 +8111,7 @@ msgctxt ""
"par_id3147330\n"
"help.text"
msgid "Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - Paths</emph>."
-msgstr ""
+msgstr "Choisissez <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Préférences</emph></caseinline><defaultinline><emph>Outils - Options</emph></defaultinline></switchinline><emph> - $[officename] - Chemins</emph>."
#: 00000406.xhp
msgctxt ""
@@ -8071,7 +8119,7 @@ msgctxt ""
"par_id3150036\n"
"help.text"
msgid "Choose <emph>Tools - AutoText - Path</emph>."
-msgstr ""
+msgstr "Choisissez <emph>Outils - AutoTexte - Chemin</emph>"
#: 00000406.xhp
msgctxt ""
@@ -8079,7 +8127,7 @@ msgctxt ""
"par_id3149581\n"
"help.text"
msgid "Choose <emph>Format - Area - Colors</emph> tab."
-msgstr ""
+msgstr "Choisissez l'onglet <emph>Format - Remplissage - Couleurs</emph>"
#: 00000406.xhp
msgctxt ""
@@ -8111,7 +8159,7 @@ msgctxt ""
"par_id3149403\n"
"help.text"
msgid "<variable id=\"schriers\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - Fonts</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"schriers\">Choisissez <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Préférences</emph></caseinline><defaultinline><emph>Outils - Options</emph></defaultinline></switchinline><emph> - $[officename] - Polices</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8119,7 +8167,7 @@ msgctxt ""
"par_id3150717\n"
"help.text"
msgid "<variable id=\"scripting\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - Security</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"scripting\">Choisissez <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Préférences</emph></caseinline><defaultinline><emph>Outils - Options</emph></defaultinline></switchinline><emph> - $[officename] - Sécurité</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8127,7 +8175,7 @@ msgctxt ""
"par_idN11C3D\n"
"help.text"
msgid "<variable id=\"advanced\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - Advanced</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"advanced\">Choisissez <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Préférences</emph></caseinline><defaultinline><emph>Outils - Options</emph></defaultinline></switchinline><emph> - $[officename] - Avancé</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8135,7 +8183,7 @@ msgctxt ""
"par_idN11C3E\n"
"help.text"
msgid "<variable id=\"personalization\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - Personalization</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"personalization\">Choisissez <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Préférences</emph></caseinline><defaultinline><emph>Outils - Options</emph></defaultinline></switchinline><emph> - $[officename] - Personnalisation</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8143,7 +8191,7 @@ msgctxt ""
"par_idN11C3F\n"
"help.text"
msgid "<variable id=\"opencl\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - Open CL</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"opencl\">Choisissez <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Préférences</emph></caseinline><defaultinline><emph>Outils - Options</emph></defaultinline></switchinline><emph> - $[officename] - Open CL</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8151,7 +8199,7 @@ msgctxt ""
"par_idN11C3G\n"
"help.text"
msgid "<variable id=\"basicide\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - Basic IDE</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"basicide\">Choisissez <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Préférences</emph></caseinline><defaultinline><emph>Outils - Options</emph></defaultinline></switchinline><emph> - $[officename] - EDI Basic</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8159,7 +8207,7 @@ msgctxt ""
"par_id5485702\n"
"help.text"
msgid "<variable id=\"online_update\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - Online Update</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"online_update\">Choisissez <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Préférences</emph></caseinline><defaultinline><emph>Outils - Options</emph></defaultinline></switchinline><emph> - $[officename] - Mise à jour en ligne</emph></variable>"
#: 00000406.xhp
msgctxt ""
@@ -8167,7 +8215,7 @@ msgctxt ""
"par_id3146989\n"
"help.text"
msgid "<variable id=\"accessibility\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - Accessibility</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"accessibility\">Choisissez <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Préférences</emph></caseinline><defaultinline><emph>Outils - Options</emph></defaultinline></switchinline><emph> - $[officename] - Accessibilité</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8175,7 +8223,7 @@ msgctxt ""
"par_id3144746\n"
"help.text"
msgid "<variable id=\"appearance\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - Application Colors</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"appearance\">Choisissez <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Préférences</emph></caseinline><defaultinline><emph>Outils - Options</emph></defaultinline></switchinline><emph> - $[officename] - Couleurs d'application</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8183,7 +8231,7 @@ msgctxt ""
"par_id3156355\n"
"help.text"
msgid "<variable id=\"landen\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - Load/Save</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"landen\">Choisissez <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Préférences</emph></caseinline><defaultinline><emph>Outils - Options</emph></defaultinline></switchinline><emph> - Chargement/enregistrement</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8191,7 +8239,7 @@ msgctxt ""
"par_id3147223\n"
"help.text"
msgid "<variable id=\"rsave\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - Load/Save - General</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"rsave\">Choisissez <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Préférences</emph></caseinline><defaultinline><emph>Outils - Options</emph></defaultinline></switchinline><emph> - Chargement/enregistrement - Général</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8199,7 +8247,7 @@ msgctxt ""
"par_id3153958\n"
"help.text"
msgid "<variable id=\"etsofi\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - Load/Save</emph> - <emph>VBA Properties</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"etsofi\">Choisissez <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Préférences</emph></caseinline><defaultinline><emph>Outils - Options</emph></defaultinline></switchinline><emph> - Chargement/enregistrement</emph> - <emph>Proriétés VBA</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8207,7 +8255,7 @@ msgctxt ""
"par_id3153707\n"
"help.text"
msgid "<variable id=\"etsofi2\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - Load/Save</emph> - <emph>Microsoft Office</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"etsofi2\">Choisissez <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Préférences</emph></caseinline><defaultinline><emph>Outils - Options</emph></defaultinline></switchinline><emph> - Chargement/enregistrement</emph> - <emph>Microsoft Office</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8215,7 +8263,7 @@ msgctxt ""
"par_id3145667\n"
"help.text"
msgid "<variable id=\"html\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - Load/Save</emph> - <emph>HTML Compatibility</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"html\">Choisissez <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Préférences</emph></caseinline><defaultinline><emph>Outils - Options</emph></defaultinline></switchinline><emph> - Chargement/enregistrement</emph> - <emph>Compatibilité HTML</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8223,7 +8271,7 @@ msgctxt ""
"par_id3146792\n"
"help.text"
msgid "<variable id=\"asiatypo\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - Language Settings</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"asiatypo\">Choisissez <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Préférences</emph></caseinline><defaultinline><emph>Outils - Options</emph></defaultinline></switchinline><emph> - Paramètres linguistiques</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8231,7 +8279,7 @@ msgctxt ""
"par_id3157965\n"
"help.text"
msgid "<variable id=\"sprachen\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - Language Settings - Languages</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"sprachen\">Choisissez <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Préférences</emph></caseinline><defaultinline><emph>Outils - Options</emph></defaultinline></switchinline><emph> - Paramètres linguistiques - Langues</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8239,7 +8287,7 @@ msgctxt ""
"par_id3155446\n"
"help.text"
msgid "<variable id=\"sprachenctl\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - Language Settings - Languages - Complex Text Layout</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"sprachenctl\">Choisissez <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Préférences</emph></caseinline><defaultinline><emph>Outils - Options</emph></defaultinline></switchinline><emph> - Paramètres linguistiques - Langues - Script complexe</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8247,7 +8295,7 @@ msgctxt ""
"par_id3150745\n"
"help.text"
msgid "Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - Language Settings - Languages</emph>."
-msgstr ""
+msgstr "Choisissez <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Préférences</emph></caseinline><defaultinline><emph>Outils - Options</emph></defaultinline></switchinline><emph> - Paramètres linguistiques - Langues</emph>."
#: 00000406.xhp
msgctxt ""
@@ -8255,7 +8303,7 @@ msgctxt ""
"par_id3148407\n"
"help.text"
msgid "Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - Language Settings - Writing Aids</emph>, in the <emph>Available language modules</emph> list, select one of the language modules and then click <emph>Edit</emph>."
-msgstr ""
+msgstr "Choisissez <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Préférences</emph></caseinline><defaultinline><emph>Outils - Options</emph></defaultinline></switchinline><emph> - Paramètres linguistiques - Linguistique</emph>, dans la liste des <emph>modules de langue disponibles</emph>, sélectionnez l'un des modules de langue et cliquez sur <emph>Éditer</emph>."
#: 00000406.xhp
msgctxt ""
@@ -8263,7 +8311,7 @@ msgctxt ""
"par_id3150324\n"
"help.text"
msgid "Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - Language Settings - Writing Aids</emph>."
-msgstr ""
+msgstr "Choisissez <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Préférences</emph></caseinline><defaultinline><emph>Outils - Options</emph></defaultinline></switchinline><emph> - Paramètres linguistiques - Linguistique</emph>."
#: 00000406.xhp
msgctxt ""
@@ -8271,7 +8319,7 @@ msgctxt ""
"par_id3145620\n"
"help.text"
msgid "<variable id=\"suchja\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - Language Settings - Searching in Japanese</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"suchja\">Choisissez <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Préférences</emph></caseinline><defaultinline><emph>Outils - Options</emph></defaultinline></switchinline><emph> - Paramètres linguistiques - Recherche en Japonais</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8279,7 +8327,7 @@ msgctxt ""
"par_id3147341\n"
"help.text"
msgid "<variable id=\"asialayout\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - Language Settings - Asian Layout</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"asialayout\">Choisissez <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Préférences</emph></caseinline><defaultinline><emph>Outils - Options</emph></defaultinline></switchinline><emph> - Paramètres linguistiques - Mise en page asiatique</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8287,7 +8335,7 @@ msgctxt ""
"par_id3147359\n"
"help.text"
msgid "<variable id=\"internet\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - Internet</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"internet\">Choisissez <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Préférences</emph></caseinline><defaultinline><emph>Outils - Options</emph></defaultinline></switchinline><emph> - Internet</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8295,7 +8343,7 @@ msgctxt ""
"par_id3156374\n"
"help.text"
msgid "<variable id=\"internet1\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - Internet - Proxy</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"internet1\">Choisissez <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Préférences</emph></caseinline><defaultinline><emph>Outils - Options</emph></defaultinline></switchinline><emph> - Internet - Proxy</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8303,7 +8351,7 @@ msgctxt ""
"par_id3149280\n"
"help.text"
msgid "<variable id=\"optionentextdokument\">Open a text document, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"optionentextdokument\">Ouvrez un document texte, choisissez <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Préférences</emph></caseinline><defaultinline><emph>Outils - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8311,7 +8359,7 @@ msgctxt ""
"par_idN10E4F\n"
"help.text"
msgid "<variable id=\"compatibility\">Open a text document, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer - Compatibility</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"compatibility\">Ouvrez un document texte, choisissez <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Préférences</emph></caseinline><defaultinline><emph>Outils - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer - Compatibilité</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8319,7 +8367,7 @@ msgctxt ""
"par_id3148929\n"
"help.text"
msgid "<variable id=\"laden\">Open a text document, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer - General</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"laden\">Ouvrez un document texte, choisissez <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Préférences</emph></caseinline><defaultinline><emph>Outils - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer - Général</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8327,7 +8375,7 @@ msgctxt ""
"par_idN10F2F\n"
"help.text"
msgid "<variable id=\"mailmergeemail\">Open a text document, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer - Mail Merge E-mail</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"mailmergeemail\">Ouvrez un document texte, choisissez <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Préférences</emph></caseinline><defaultinline><emph>Outils - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer - E-mail de mailing</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8335,7 +8383,7 @@ msgctxt ""
"par_id3149825\n"
"help.text"
msgid "<variable id=\"einfuegenbeschriftung\">Open a text document, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer - AutoCaption</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"einfuegenbeschriftung\">Ouvrez un document texte, choisissez <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Préférences</emph></caseinline><defaultinline><emph>Outils - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer - Légende automatique</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8343,7 +8391,7 @@ msgctxt ""
"par_id3155333\n"
"help.text"
msgid "<variable id=\"layout\">Open a text document, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer/%PRODUCTNAME Writer/Web</emph> - <emph>View</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"layout\">Ouvrez un document texte, choisissez <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Préférences</emph></caseinline><defaultinline><emph>Outils - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer/%PRODUCTNAME Writer/Web</emph> - <emph>Afficher</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8351,7 +8399,7 @@ msgctxt ""
"par_id3146316\n"
"help.text"
msgid "<variable id=\"registerschattencursor\">Open a text document, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer/%PRODUCTNAME Writer/Web</emph> - <emph>Formatting Aids</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"registerschattencursor\">Ouvrez un document texte, choisissez <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Préférences</emph></caseinline><defaultinline><emph>Outils - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer/%PRODUCTNAME Writer/Web</emph> - <emph>Aides au formatage</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8359,7 +8407,7 @@ msgctxt ""
"par_id3153534\n"
"help.text"
msgid "<variable id=\"raster\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer/%PRODUCTNAME Calc/%PRODUCTNAME Writer/Web - Grid</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"raster\">Choisissez <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Préférences</emph></caseinline><defaultinline><emph>Outils - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer/%PRODUCTNAME Calc/%PRODUCTNAME Writer/Web - Grille</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8367,7 +8415,7 @@ msgctxt ""
"par_id3155961\n"
"help.text"
msgid "Open a text document, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer - Basic Fonts (Western)</emph>."
-msgstr ""
+msgstr "Ouvrez un document texte, choisissez <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Préférences</emph></caseinline><defaultinline><emph>Outils - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer - Police standard (occidentale)</emph>."
#: 00000406.xhp
msgctxt ""
@@ -8375,7 +8423,7 @@ msgctxt ""
"par_id3159313\n"
"help.text"
msgid "Open a text document, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer - Basic Fonts (Asian)</emph>. Asian language support must be enabled."
-msgstr ""
+msgstr "Ouvrez un document de texte, choisissez <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Préférences</emph></caseinline><defaultinline><emph>Outils - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer - Polices standards (Asiatiques)</emph>. La prise en charge des langues asiatiques doit être activée."
#: 00000406.xhp
msgctxt ""
@@ -8383,7 +8431,7 @@ msgctxt ""
"par_id3155607\n"
"help.text"
msgid "<variable id=\"drucken1\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer/ %PRODUCTNAME Writer/Web</emph> - <emph>Print</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"drucken1\">Choisissez <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Préférences</emph></caseinline><defaultinline><emph>Outils - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer/ %PRODUCTNAME Writer/Web</emph> - <emph>Imprimer</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8391,7 +8439,7 @@ msgctxt ""
"par_id3988769\n"
"help.text"
msgid "<variable id=\"drucken2\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Calc - Print</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"drucken2\">Choisissez <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Préférences</emph></caseinline><defaultinline><emph>Outils - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Calc - Imprimer</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8399,7 +8447,7 @@ msgctxt ""
"par_id3145769\n"
"help.text"
msgid "<variable id=\"registertabelle\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer/%PRODUCTNAME Writer/Web - Table</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"registertabelle\">Choisissez <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Préférences</emph></caseinline><defaultinline><emph>Outils - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer/%PRODUCTNAME Writer/Web - Tableau</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8407,7 +8455,7 @@ msgctxt ""
"par_id3147005\n"
"help.text"
msgid "<variable id=\"registeraenderungen\">Open a text document, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer - Changes</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"registeraenderungen\">Choisissez <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Préférences</emph></caseinline><defaultinline><emph>Outils - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer - Modifications</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8415,7 +8463,7 @@ msgctxt ""
"par_id3159333\n"
"help.text"
msgid "<variable id=\"webbrowser1\">Open an HTML document, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer/Web</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"webbrowser1\">Ouvrez un document HTML, choisissez <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Préférences</emph></caseinline><defaultinline><emph>Outils - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer/Web</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8423,7 +8471,7 @@ msgctxt ""
"par_id3149448\n"
"help.text"
msgid "<variable id=\"hinter\">Open an HTML document, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer/Web - Background</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"hinter\">Ouvrez un document HTML, choisissez <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Préférences</emph></caseinline><defaultinline><emph>Outils - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer/Web - Arrière-plan</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8431,7 +8479,7 @@ msgctxt ""
"par_id3149336\n"
"help.text"
msgid "<variable id=\"tabellendokument\">Open a spreadsheet document, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Calc</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"tabellendokument\">Ouvrez un document classeur, choisissez <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Préférences</emph></caseinline><defaultinline><emph>Outils - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Calc</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8439,7 +8487,7 @@ msgctxt ""
"par_id3152966\n"
"help.text"
msgid "<variable id=\"tabelleeingabe\">Open a spreadsheet document, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Calc - General</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"tabelleeingabe\">Ouvrez un document classeur, choisissez <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Préférences</emph></caseinline><defaultinline><emph>Outils - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Calc - Général</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8447,7 +8495,7 @@ msgctxt ""
"par_id3149814\n"
"help.text"
msgid "<variable id=\"tabelleinhalte\">Open a spreadsheet document, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Calc - View</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"tabelleinhalte\">Ouvrez un document classeur, choisissez <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Préférences</emph></caseinline><defaultinline><emph>Outils - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Calc - Affichage</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8455,7 +8503,7 @@ msgctxt ""
"par_id3154656\n"
"help.text"
msgid "<variable id=\"exopbe\">Open a spreadsheet document, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Calc - Calculate</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"exopbe\">Ouvrez un document classeur, choisissez <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Préférences</emph></caseinline><defaultinline><emph>Outils - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Calc - Calculer</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8463,7 +8511,7 @@ msgctxt ""
"par_id3154657\n"
"help.text"
msgid "<variable id=\"exopco\">Open a spreadsheet document, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Calc - Compatibility</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"exopco\">Ouvrez un document classeur, choisissez <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Préférences</emph></caseinline><defaultinline><emph>Outils - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Calc - Compatibilité</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8471,7 +8519,7 @@ msgctxt ""
"par_id3152494\n"
"help.text"
msgid "<variable id=\"exopso\">Open a spreadsheet document, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Calc - Sort Lists</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"exopso\">Ouvrez un document classeur, choisissez <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Préférences</emph></caseinline><defaultinline><emph>Outils - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Calc - Listes de tri</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8479,7 +8527,7 @@ msgctxt ""
"par_id3152495\n"
"help.text"
msgid "<variable id=\"exopfo\">Open a spreadsheet document, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Calc - Formula</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"exopfo\">Ouvrez un document classeur, choisissez <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Préférences</emph></caseinline><defaultinline><emph>Outils - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Calc - Formule</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8487,7 +8535,7 @@ msgctxt ""
"par_id3152496\n"
"help.text"
msgid "<variable id=\"exopde\">Open a spreadsheet document, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Calc - Defaults</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"exopde\">Ouvrez un document classeur, choisissez <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Préférences</emph></caseinline><defaultinline><emph>Outils - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Calc - Par défaut</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8495,7 +8543,7 @@ msgctxt ""
"par_id3149527\n"
"help.text"
msgid "<variable id=\"listekopieren\">Open a spreadsheet document, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Calc - Sort Lists - Copy</emph> button.</variable>"
-msgstr ""
+msgstr "<variable id=\"listekopieren\">Ouvrez un document classeur, choisissez <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Préférences</emph></caseinline><defaultinline><emph>Outils - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Calc - Listes de tri - Copier</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8503,7 +8551,7 @@ msgctxt ""
"par_id3154903\n"
"help.text"
msgid "<variable id=\"exopaen\">Open a spreadsheet document, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Calc - Changes</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"exopaen\">Ouvrez un document classeur, choisissez <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Préférences</emph></caseinline><defaultinline><emph>Outils - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Calc - Modifications</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8511,7 +8559,7 @@ msgctxt ""
"par_id3152582\n"
"help.text"
msgid "<variable id=\"etotall\">Open a presentation document, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Impress</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"etotall\">Ouvrez un document de présentation, choisissez <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Préférences</emph></caseinline><defaultinline><emph>Outils - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Impress</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8519,7 +8567,7 @@ msgctxt ""
"par_id3148418\n"
"help.text"
msgid "<variable id=\"etopsonstiges\">Open a presentation document, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Impress/%PRODUCTNAME Draw - General</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"etopsonstiges\">Ouvrez un document de présentation, choisissez <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Préférences</emph></caseinline><defaultinline><emph>Outils - Options</emph></defaultinline></switchinline><emph> -%PRODUCTNAME Impress/%PRODUCTNAME Draw - Général</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8527,7 +8575,7 @@ msgctxt ""
"par_id3150380\n"
"help.text"
msgid "<variable id=\"etopas\">Open a presentation document, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Impress/%PRODUCTNAME Draw - View</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"etopas\">Ouvrez un document de présentation, choisissez <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Préférences</emph></caseinline><defaultinline><emph>Outils - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Impress/%PRODUCTNAME Draw - Affichage</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8535,7 +8583,7 @@ msgctxt ""
"par_id3166423\n"
"help.text"
msgid "<variable id=\"etopfe\">Open a presentation document, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Impress/%PRODUCTNAME Draw - Grid</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"etopfe\">Ouvrez un document de présentation, choisissez <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Préférences</emph></caseinline><defaultinline><emph>Outils - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Impress/%PRODUCTNAME Draw - Grille</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8543,7 +8591,7 @@ msgctxt ""
"par_id3148873\n"
"help.text"
msgid "<variable id=\"etopdk\">Open a presentation document, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Impress/%PRODUCTNAME Draw - Print</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"etopdk\">Ouvrez un document de présentation, choisissez <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Préférences</emph></caseinline><defaultinline><emph>Outils - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Impress/%PRODUCTNAME Draw - Imprimer</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8551,7 +8599,7 @@ msgctxt ""
"par_id3145220\n"
"help.text"
msgid "<variable id=\"etotallz\">Open a drawing document, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Draw</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"etotallz\">Ouvrez un document de dessin, choisissez <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Préférences</emph></caseinline><defaultinline><emph>Outils - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Draw</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8559,7 +8607,7 @@ msgctxt ""
"par_id3149573\n"
"help.text"
msgid "<variable id=\"etsodr\">Open a Math document, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Math</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"etsodr\">Ouvrez un document Math, choisissez <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Préférences</emph></caseinline><defaultinline><emph>Outils - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Math</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8567,7 +8615,7 @@ msgctxt ""
"par_id3145613\n"
"help.text"
msgid "<variable id=\"formeinst\">Open a Math document, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Math - Settings</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"formeinst\">Ouvrez un document Math, choisissez <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Préférences</emph></caseinline><defaultinline><emph>Outils - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Math - Paramètres</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8575,7 +8623,7 @@ msgctxt ""
"par_id3155137\n"
"help.text"
msgid "<variable id=\"diagrfarbe\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - Charts</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"diagrfarbe\">Choisissez <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Préférences</emph></caseinline><defaultinline><emph>Outils - Options</emph></defaultinline></switchinline><emph> - Diagrammes</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8583,7 +8631,7 @@ msgctxt ""
"par_id3149211\n"
"help.text"
msgid "<variable id=\"diagrgfarbe\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - Charts - Default Colors</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"diagrgfarbe\">Choisissez <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Préférences</emph></caseinline><defaultinline><emph>Outils - Options</emph></defaultinline></switchinline><emph> - Diagrammes - Couleurs par défaut</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8591,7 +8639,7 @@ msgctxt ""
"par_id3150862\n"
"help.text"
msgid "<variable id=\"datenqu\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Base</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"datenqu\">Choisissez <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Préférences</emph></caseinline><defaultinline><emph>Outils - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Base</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8599,7 +8647,7 @@ msgctxt ""
"par_id3147368\n"
"help.text"
msgid "<variable id=\"verbindungen\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Base - Connections</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"verbindungen\">Choisissez <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Préférences</emph></caseinline><defaultinline><emph>Outils - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Base - Connexions</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8607,7 +8655,7 @@ msgctxt ""
"par_idN1120D\n"
"help.text"
msgid "<variable id=\"registered\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Base - Databases</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"registered\">Choisissez <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Préférences</emph></caseinline><defaultinline><emph>Outils - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Base - Bases de données</emph>.</variable>"
#: 00000407.xhp
msgctxt ""
@@ -11126,15 +11174,15 @@ msgctxt ""
"00040502.xhp\n"
"par_id3151293\n"
"help.text"
-msgid "<variable id=\"linienstile\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Line Styles</emph> tab </variable>"
-msgstr "<variable id=\"linienstile\">Choisissez <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Objet - </emph></caseinline><caseinline select=\"CALC\"><emph>Image - </emph></caseinline></switchinline> onglet <emph>Ligne - Styles de ligne</emph> </variable>"
+msgid "<variable id=\"linienstile\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Line Styles</emph> tab</variable>"
+msgstr "<variable id=\"linienstile\">Choisissez <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Objet - </emph></caseinline><caseinline select=\"CALC\"><emph>Image - </emph></caseinline></switchinline> onglet<emph>Ligne - Styles de ligne</emph></variable>"
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3149317\n"
"help.text"
-msgid "<variable id=\"linienenden\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Arrow Styles</emph> tab </variable>"
+msgid "<variable id=\"linienenden\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Arrow Styles</emph> tab</variable>"
msgstr "<variable id=\"linienenden\">Choisissez <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Objet - </emph></caseinline><caseinline select=\"CALC\"><emph>Image - </emph></caseinline></switchinline> onglet <emph>Ligne - Styles de flèche</emph> </variable>"
#: 00040502.xhp
@@ -11174,7 +11222,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3154948\n"
"help.text"
-msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Area</emph> tab"
+msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Area</emph> tab."
msgstr "Choisissez <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Objet - </emph></caseinline><caseinline select=\"CALC\"><emph>Image - </emph></caseinline></switchinline> onglet <emph>Remplissage - Remplissage</emph>"
#: 00040502.xhp
@@ -11182,7 +11230,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3145607\n"
"help.text"
-msgid "Choose <emph>View - Styles</emph> - open context menu and choose <emph>Modify/New - Area</emph> tab (presentation documents)"
+msgid "Choose <emph>View - Styles</emph> - open context menu and choose <emph>Modify/New - Area</emph> tab (presentation documents)."
msgstr "Choisissez <emph>Affichage - Styles</emph> - ouvrez le menu contextuel et choisissez l'onglet <emph>Modifier/Nouveau - Remplissage</emph> (présentations)"
#: 00040502.xhp
@@ -11190,56 +11238,64 @@ msgctxt ""
"00040502.xhp\n"
"par_id3152922\n"
"help.text"
-msgid "Choose <emph>Format - Title - Area</emph> tab (chart documents)"
-msgstr "Choisissez l'onglet <emph>Format - Titre - Remplissage</emph> (diagrammes)"
+msgid "Choose <emph>Format - Title - Area</emph> tab (chart documents)."
+msgstr "Choisissez l'onglet <emph>Format - Titre - Remplissage</emph> (diagrammes)."
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3157894\n"
"help.text"
-msgid "Choose <emph>Format - Legend - Area</emph> tab (chart documents)"
-msgstr "Choisissez l'onglet <emph>Format - Légende - Remplissage</emph> (diagrammes)"
+msgid "Choose <emph>Format - Legend - Area</emph> tab (chart documents)."
+msgstr "Choisissez l'onglet <emph>Format - Légende - Remplissage</emph> (diagrammes)."
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3144444\n"
"help.text"
-msgid "Choose <emph>Format - Chart Wall - Area</emph> tab (chart documents)"
-msgstr "Choisissez l'onglet <emph>Format - Paroi du diagramme - Remplissage</emph> (diagrammes)"
+msgid "Choose <emph>Format - Chart Wall - Area</emph> tab (chart documents)."
+msgstr "Choisissez l'onglet <emph>Format - Paroi du diagramme - Remplissage</emph> (diagrammes)."
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3156543\n"
"help.text"
-msgid "Choose <emph>Format - Chart Floor - Area</emph> tab (chart documents)"
-msgstr "Choisissez l'onglet <emph>Format - Plancher du diagramme - Remplissage</emph> (diagrammes)"
+msgid "Choose <emph>Format - Chart Floor - Area</emph> tab (chart documents)."
+msgstr "Choisissez l'onglet <emph>Format - Plancher du diagramme - Remplissage</emph> (diagrammes)."
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3150685\n"
"help.text"
-msgid "Choose <emph>Format - Chart Area - Area</emph> tab (chart documents)"
-msgstr "Choisissez onglet <emph>Format - Arrière-plan du diagramme - Remplissage</emph> (diagrammes)"
+msgid "Choose <emph>Format - Chart Area - Area</emph> tab (chart documents)."
+msgstr "Choisissez onglet <emph>Format - Arrière-plan du diagramme - Remplissage</emph> (diagrammes)."
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3149664\n"
"help.text"
-msgid "Choose <emph>Slide - Properties - Background</emph> tab (in $[officename] Impress)"
-msgstr "Choisissez l'onglet <emph>Diapo - Propriétés - Arrière-plan</emph> (dans $[officename] Impress)"
+msgid "Choose <emph>Slide - Properties - Background</emph> tab (in $[officename] Impress)."
+msgstr "Choisissez l'onglet <emph>Diapo - Propriétés - Arrière-plan</emph> (dans $[officename] Impress)."
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id9149694\n"
"help.text"
-msgid "Choose <emph>Page - Properties - Background</emph> tab (in $[officename] Draw)"
-msgstr "Choisissez l'onglet <emph>Page - Propriétés - Arrière-Plan</emph> (dans $[officename] Draw)"
+msgid "Choose <emph>Page - Properties - Background</emph> tab (in $[officename] Draw)."
+msgstr "Choisissez l'onglet <emph>Page - Propriétés - Arrière-Plan</emph> (dans $[officename] Draw)."
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id841527083135387\n"
+"help.text"
+msgid "Choose <emph>Table - Properties - Background</emph> tab."
+msgstr "Choisissez l'onglet <emph>Tableau - Propriétés - Arrière-plan</emph>."
#: 00040502.xhp
msgctxt ""
@@ -11350,7 +11406,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3150011\n"
"help.text"
-msgid "<variable id=\"schatte\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Shadow</emph> tab </variable>"
+msgid "<variable id=\"schatte\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Shadow</emph> tab</variable>"
msgstr "<variable id=\"schatte\">Choisissez <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Objet - </emph></caseinline><caseinline select=\"CALC\"><emph>Image - </emph></caseinline></switchinline> onglet <emph>Remplissage - Ombre</emph> </variable>"
#: 00040502.xhp
@@ -11358,7 +11414,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3147441\n"
"help.text"
-msgid "<variable id=\"verlauf\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Gradients</emph> tab </variable>"
+msgid "<variable id=\"verlauf\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Gradients</emph> tab</variable>"
msgstr "<variable id=\"verlauf\">Choisissez <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Objet - </emph></caseinline><caseinline select=\"CALC\"><emph>Image - </emph></caseinline></switchinline> onglet <emph>Remplissage - Dégradés</emph> </variable>"
#: 00040502.xhp
@@ -11366,7 +11422,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3155308\n"
"help.text"
-msgid "<variable id=\"schraffur\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Hatching</emph> tab </variable>"
+msgid "<variable id=\"schraffur\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Hatching</emph> tab</variable>"
msgstr "<variable id=\"schraffur\">Choisissez <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Objet - </emph></caseinline><caseinline select=\"CALC\"><emph>Image - </emph></caseinline></switchinline> onglet <emph>Remplissage - Hachures</emph> </variable>"
#: 00040502.xhp
@@ -11374,7 +11430,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3145800\n"
"help.text"
-msgid "<variable id=\"bitmap\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Bitmaps</emph> tab </variable>"
+msgid "<variable id=\"bitmap\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Bitmaps</emph> tab</variable>"
msgstr "<variable id=\"bitmap\">Choisissez <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Objet - </emph></caseinline><caseinline select=\"CALC\"><emph>Image - </emph></caseinline></switchinline> onglet <emph>Remplissage - Bitmaps</emph> </variable>"
#: 00040502.xhp
@@ -11414,8 +11470,8 @@ msgctxt ""
"00040502.xhp\n"
"par_id3156286\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F4 key </caseinline><caseinline select=\"IMPRESS\">F4 key </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F4</caseinline><caseinline select=\"IMPRESS\">F4</caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F4 key</caseinline><caseinline select=\"IMPRESS\">F4 key</caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"DRAW\">Touche F4</caseinline><caseinline select=\"IMPRESS\">Touche F4</caseinline></switchinline>"
#: 00040502.xhp
msgctxt ""
@@ -11454,7 +11510,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3153099\n"
"help.text"
-msgid "<variable id=\"position2\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Position and Size</emph> tab </variable>"
+msgid "<variable id=\"position2\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Position and Size</emph> tab</variable>"
msgstr "<variable id=\"position2\">Choisissez <emph>Format </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Objet - </emph></caseinline><caseinline select=\"CALC\"><emph>Image - </emph></caseinline></switchinline> onglet <emph>Position et taille - Position et taille</emph> </variable>"
#: 00040502.xhp
@@ -11486,15 +11542,15 @@ msgctxt ""
"00040502.xhp\n"
"par_id3145666\n"
"help.text"
-msgid "<variable id=\"ecke\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Slant & Corner Radius</emph> tab </variable>"
-msgstr "<variable id=\"ecke\">Choisissez <emph>Format </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Objet - </emph></caseinline><caseinline select=\"CALC\"><emph>Image - </emph></caseinline></switchinline> onglet <emph>Position et taille - Inclinaison / rayon d'angle</emph>.</variable>"
+msgid "<variable id=\"ecke\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Slant & Corner Radius</emph> tab</variable>"
+msgstr "<variable id=\"ecke\">Choisissez <emph>Format </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Objet - </emph></caseinline><caseinline select=\"CALC\"><emph>Image - </emph></caseinline></switchinline> onglet <emph>Position et taille - Inclinaison / rayon d'angle</emph></variable>"
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3146081\n"
"help.text"
-msgid "<variable id=\"legende\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Callout</emph> tab (only for textbox callouts, not for custom shapes callouts) </variable>"
+msgid "<variable id=\"legende\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Callout</emph> tab (only for textbox callouts, not for custom shapes callouts)</variable>"
msgstr "<variable id=\"legende\">Choisissez <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Objet - </emph></caseinline><caseinline select=\"CALC\"><emph>Images - </emph></caseinline></switchinline>onglet (uniquement pour les légendes de zone de texte, non pour les légendes des formes personnalisées) <emph>Position et taille - Légende</emph></variable>"
#: 00040502.xhp
@@ -11518,7 +11574,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3149019\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F8 key </caseinline><caseinline select=\"IMPRESS\">F8 key </caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F8 key</caseinline><caseinline select=\"IMPRESS\">F8 key</caseinline></switchinline>"
msgstr "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F8</caseinline><caseinline select=\"IMPRESS\">F8</caseinline></switchinline>"
#: 00040502.xhp
@@ -11806,7 +11862,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3153076\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Align Center Horizontally </caseinline><defaultinline>Centered</defaultinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Align Center Horizontally</caseinline><defaultinline>Centered</defaultinline></switchinline>"
msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Aligner centré horizontalement</caseinline><defaultinline>Centré</defaultinline></switchinline>"
#: 00040502.xhp
@@ -11846,7 +11902,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3150527\n"
"help.text"
-msgid "<variable id=\"font\">Click <emph>Fontwork</emph> icon on <emph>Drawing</emph> bar </variable>"
+msgid "<variable id=\"font\">Click <emph>Fontwork</emph> icon on <emph>Drawing</emph> bar</variable>"
msgstr "<variable id=\"font\">Cliquez sur l'icône <emph>Fontwork</emph> dans la barre de <emph>dessin</emph> </variable>"
#: 00040502.xhp
diff --git a/source/fr/helpcontent2/source/text/shared/01.po b/source/fr/helpcontent2/source/text/shared/01.po
index 460972f32e0..4d2c7e094c9 100644
--- a/source/fr/helpcontent2/source/text/shared/01.po
+++ b/source/fr/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: 2018-05-23 23:19+0200\n"
-"PO-Revision-Date: 2018-05-23 17:08+0000\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
+"PO-Revision-Date: 2018-06-06 14:41+0000\n"
"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
"Language-Team: ll.org\n"
"Language: fr\n"
@@ -13,9 +13,9 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Pootle 2.8\n"
"X-Project-Style: openoffice\n"
-"X-POOTLE-MTIME: 1527095301.000000\n"
+"X-POOTLE-MTIME: 1528296069.000000\n"
#: 01010000.xhp
msgctxt ""
@@ -2567,7 +2567,7 @@ msgctxt ""
"par_id3155934\n"
"help.text"
msgid "The following sections describe the <item type=\"productname\">%PRODUCTNAME</item> <emph>Save as</emph> dialog. To activate the <emph><item type=\"productname\">%PRODUCTNAME</item> Open</emph> and <emph>Save</emph> dialog boxes, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - </emph><link href=\"text/shared/optionen/01010600.xhp\" name=\"%PRODUCTNAME - General\"><emph>%PRODUCTNAME- General</emph></link>, and then select the <emph>Use %PRODUCTNAME dialogs</emph> in the <emph>Open/Save dialogs</emph> area."
-msgstr ""
+msgstr "Les sections suivantes décrivent la boîte de dialogue <emph>Ouvrir</emph> de <item type=\"productname\">%PRODUCTNAME</item>. Pour activer les boîtes de dialogue <emph>Ouvrir</emph> et <emph>Enregistrer</emph> de <emph><item type=\"productname\">%PRODUCTNAME</item></emph>, choisissez <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Préférences</emph></caseinline><defaultinline><emph>Outils - Options</emph></defaultinline></switchinline><emph> - </emph><link href=\"text/shared/optionen/01010600.xhp\" name=\"%PRODUCTNAME - Général\"><emph>%PRODUCTNAME- Général</emph></link>, puis sélectionnez <emph>Utiliser les boîtes de dialogues %PRODUCTNAME</emph> dans la zone <emph>Boîte de dialogues Ouvrir/Enregistrer</emph>."
#: 01070000.xhp
msgctxt ""
@@ -3423,7 +3423,7 @@ msgctxt ""
"par_id3156324\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Some statistic values can be used as <link href=\"text/swriter/02/14020000.xhp\" name=\"variables in formulas\">variables in formulas</link>.</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Certaines valeurs statistiques peuvent être utilisées comme <link href=\"text/swriter/02/14020000.xhp\" name=\"variables de formules\">variables de formules</link>.</caseinline></switchinline>"
#: 01100400.xhp
msgctxt ""
@@ -3455,7 +3455,7 @@ msgctxt ""
"par_id3153527\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Number of tables in the file.</caseinline><caseinline select=\"CALC\">Number of sheets in the file.</caseinline></switchinline> This statistic does not include tables that were inserted as <link href=\"text/shared/00/00000005.xhp#ole\" name=\"OLE\">OLE</link> objects."
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Nombre de tableaux contenus dans le fichier.</caseinline><caseinline select=\"CALC\">Nombre de feuilles contenues dans le fichier.</caseinline></switchinline> Les statistiques ne comptabilisent pas les tableaux insérés en tant qu'objets <link href=\"text/shared/00/00000005.xhp#ole\" name=\"OLE\">OLE</link>."
#: 01100400.xhp
msgctxt ""
@@ -3471,7 +3471,7 @@ msgctxt ""
"par_id3156114\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Number of cells with content in the file.</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Nombre de cellules non vides dans le fichier.</caseinline></switchinline>"
#: 01100400.xhp
msgctxt ""
@@ -3479,7 +3479,7 @@ msgctxt ""
"hd_id641526904710590\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Formula groups:</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Groupes de formules</caseinline></switchinline>"
#: 01100400.xhp
msgctxt ""
@@ -3487,7 +3487,7 @@ msgctxt ""
"par_id541526903668055\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Number of contiguous ranges in a column with same formula.</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Nombre de plages contiguës dans une colonne avec la même formule.</caseinline></switchinline>"
#: 01100400.xhp
msgctxt ""
@@ -3495,7 +3495,7 @@ msgctxt ""
"hd_id3147210\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Images:</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Images :</caseinline></switchinline>"
#: 01100400.xhp
msgctxt ""
@@ -3503,7 +3503,7 @@ msgctxt ""
"par_id3166411\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Number of images in the file. This statistic does not include images that were inserted as <link href=\"text/shared/00/00000005.xhp#ole\" name=\"OLE\">OLE</link> objects.</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Nombre d'images présentes dans le fichier. Les statistiques ne comptabilisent pas les images insérées en tant qu'objets <link href=\"text/shared/00/00000005.xhp#ole\" name=\"OLE\">OLE</link>.</caseinline></switchinline>"
#: 01100400.xhp
msgctxt ""
@@ -3511,7 +3511,7 @@ msgctxt ""
"hd_id3147618\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">OLE Objects:</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Objets OLE :</caseinline></switchinline>"
#: 01100400.xhp
msgctxt ""
@@ -3519,7 +3519,7 @@ msgctxt ""
"par_id3149820\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Number of <link href=\"text/shared/00/00000005.xhp#ole\" name=\"OLE\">OLE</link> objects in the file, including tables and graphics that were inserted as OLE objects.</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Nombre d'objets <link href=\"text/shared/00/00000005.xhp#ole\" name=\"OLE\">OLE</link> contenus dans le fichier, y compris les tableaux et images insérés en tant qu'objets OLE.</caseinline></switchinline>"
#: 01100400.xhp
msgctxt ""
@@ -3527,7 +3527,7 @@ msgctxt ""
"hd_id3153665\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Paragraphs:</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Paragraphes : </caseinline></switchinline>"
#: 01100400.xhp
msgctxt ""
@@ -3535,7 +3535,7 @@ msgctxt ""
"par_id3156156\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Number of paragraphs (including blank paragraphs) in the file.</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Nombre de paragraphes (paragraphes vides inclus) que comporte le fichier.</caseinline></switchinline>"
#: 01100400.xhp
msgctxt ""
@@ -3543,7 +3543,7 @@ msgctxt ""
"hd_id3155261\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Words:</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Mots :</caseinline></switchinline>"
#: 01100400.xhp
msgctxt ""
@@ -3551,7 +3551,7 @@ msgctxt ""
"par_id3147402\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Number of words (including words consisting of a single character) in the file.</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Nombre de mots (y compris les mots à un seul caractère) contenus dans le fichier.</caseinline></switchinline>"
#: 01100400.xhp
msgctxt ""
@@ -3559,7 +3559,7 @@ msgctxt ""
"hd_id3150466\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Characters:</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Caractères :</caseinline></switchinline>"
#: 01100400.xhp
msgctxt ""
@@ -3567,7 +3567,7 @@ msgctxt ""
"par_id3149294\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Number of characters (including spaces) in the file. Non-printable characters are not included.</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Nombre de caractères (espaces inclus) contenus dans le fichier. Les caractères non imprimables ne sont pas comptabilisés.</caseinline></switchinline>"
#: 01100400.xhp
msgctxt ""
@@ -3575,7 +3575,7 @@ msgctxt ""
"hd_id3148947\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Lines:</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Lignes :</caseinline></switchinline>"
#: 01100400.xhp
msgctxt ""
@@ -3583,7 +3583,7 @@ msgctxt ""
"par_id3149650\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Number of lines in the file.</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Nombre de lignes du fichier. </caseinline></switchinline>"
#: 01100400.xhp
msgctxt ""
@@ -3591,7 +3591,7 @@ msgctxt ""
"hd_id3153525\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Update</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Actualiser</caseinline></switchinline>"
#: 01100400.xhp
msgctxt ""
@@ -23588,6 +23588,22 @@ msgstr "Vous pouvez ajouter des couleurs, dégradés, hachures, des motifs bicol
#: 05210100.xhp
msgctxt ""
"05210100.xhp\n"
+"hd_id471527077476052\n"
+"help.text"
+msgid "Cell, Row or Table background selector"
+msgstr "Sélecteur d'arrière-plan de table, de ligne ou de cellule"
+
+#: 05210100.xhp
+msgctxt ""
+"05210100.xhp\n"
+"par_id661527077493366\n"
+"help.text"
+msgid "Select the table object which background area is to be filled."
+msgstr "Sélectionnez l'objet de table dont l'arrière-plan doit être rempli."
+
+#: 05210100.xhp
+msgctxt ""
+"05210100.xhp\n"
"hd_id3147373\n"
"help.text"
msgid "None"
@@ -31206,24 +31222,24 @@ msgctxt ""
"06040100.xhp\n"
"hd_id3145072\n"
"help.text"
-msgid "Automatic *bold* and _underline_"
-msgstr "*Gras* et _Soulignage_ automatiques"
+msgid "Automatic *bold*, /italic/, -strikeout- and _underline_"
+msgstr "*gras*, /italique/, -barré- et _souligné_ automatiques"
#: 06040100.xhp
msgctxt ""
"06040100.xhp\n"
"par_id3153577\n"
"help.text"
-msgid "Automatically applies bold formatting to text enclosed by asterisks (*), and underline to text enclosed by underscores ( _ ), for example, *bold*. The asterisks and underscores are not displayed after the formatting is applied."
-msgstr "Applique automatiquement un formatage de texte gras au texte entouré par des astérisques (*) et un soulignage au texte entouré par des traits de soulignage (_), par exemple, *gras*. Les astérisques et traits de soulignage ne sont plus affichés après que le formatage a été appliqué."
+msgid "Automatically applies bold, italic, strikethrough or underline formatting to text enclosed by asterisks (*), slashes (/), hyphens (-), and underscores (_), respectively. These characters disappear after the formatting is applied."
+msgstr "Applique automatiquement un formatage gras, italique, barré ou souligné à du texte entouré respectivement par des astérisques (*), des barres obliques (/), des tirets (-) ou des traits de soulignement (_). Ces caractères disparaissent après que le formatage a été appliqué."
#: 06040100.xhp
msgctxt ""
"06040100.xhp\n"
"par_id3153127\n"
"help.text"
-msgid "This feature does not work if the formatting characters * or _ are entered with an <link href=\"text/shared/00/00000005.xhp#IME\" name=\"Input Method Editor\">Input Method Editor</link>."
-msgstr "Cette fonction ne fonctionne pas si les caractères de formatage * ou _ sont saisis avec un <link href=\"text/shared/00/00000005.xhp#IME\" name=\"Éditeur de méthode de saisie\">Éditeur de méthode de saisie</link>."
+msgid "This feature does not work if the formatting characters <item type=\"literal\">* / - _</item> are entered with an <link href=\"text/shared/00/00000005.xhp#IME\" name=\"Input Method Editor\">Input Method Editor</link>."
+msgstr "Cette fonction ne fonctionne pas si les caractères de formatage<item type=\"literal\"> * / - _</item> sont saisis avec un <link href=\"text/shared/00/00000005.xhp#IME\" name=\"Éditeur de méthode de saisie\">Éditeur de méthode de saisie</link>."
#: 06040100.xhp
msgctxt ""
@@ -37871,7 +37887,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Digital Signature in PDF Export"
-msgstr ""
+msgstr "Signature numérique de l'export PDF"
#: digitalsignaturespdf.xhp
msgctxt ""
@@ -37879,7 +37895,7 @@ msgctxt ""
"hd_id771526419375353\n"
"help.text"
msgid "Signing Exported PDF"
-msgstr ""
+msgstr "Signature d'un PDF exporté"
#: digitalsignaturespdf.xhp
msgctxt ""
@@ -37887,7 +37903,7 @@ msgctxt ""
"par_id321526421041596\n"
"help.text"
msgid "<link href=\"text/shared/guide/digital_signatures.xhp\">About Digital Signatures</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/guide/digital_signatures.xhp\">À propos des signatures numériques</link>"
#: extensionupdate.xhp
msgctxt ""
@@ -41111,7 +41127,7 @@ msgctxt ""
"par_idN207C2\n"
"help.text"
msgid "To export comments of Writer documents as they are shown in %PRODUCTNAME, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer - Print</emph> and select the <emph>In margins</emph> option in the <emph>Comments</emph> area. The exported pages will be scaled down and the comments will be placed into their margins."
-msgstr ""
+msgstr "Pour exporter les commentaires des documents Writer comme affichés dans %PRODUCTNAME, choisissez <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Préférences</emph></caseinline><defaultinline><emph>Outils - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer - Imprimer</emph> et sélectionnez l'option <emph>Dans les marges</emph> dans la zone <emph>Commentaires</emph>. Les pages exportées seront réduites et les commentaires seront placés dans leurs marges. "
#: ref_pdf_export.xhp
msgctxt ""
@@ -42039,7 +42055,7 @@ msgctxt ""
"par_id22107306\n"
"help.text"
msgid "The key store to be used can be selected under <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME - Security - Certificate Path</emph>."
-msgstr ""
+msgstr "Le trousseau de clés à utiliser peut être sélectionné depuis <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Préférences</emph></caseinline><defaultinline><emph>Outils - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME - Sécurité - Chemin du certificats</emph>."
#: ref_pdf_export.xhp
msgctxt ""
@@ -42183,7 +42199,7 @@ msgctxt ""
"par_id39089022\n"
"help.text"
msgid "The list of TSA URLs that can be selected is maintained under <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME - Security - TSAs</emph>."
-msgstr ""
+msgstr "La liste des URL de TSA qui peuvent être sélectionnées est maintenue dans <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Préférences</emph></caseinline><defaultinline><emph>Outils - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME - Sécurité - autorités d'horodatage (TSA)</emph>."
#: ref_pdf_export.xhp
msgctxt ""
@@ -42415,7 +42431,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Signing Existing PDF"
-msgstr ""
+msgstr "Signature d'un PDF existant"
#: signexistingpdf.xhp
msgctxt ""
@@ -42423,7 +42439,7 @@ msgctxt ""
"bm_id581526779778738\n"
"help.text"
msgid "<bookmark_value>digital signature;signing existing PDF</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Signature numérique;signature d'un PDF existant</bookmark_value>"
#: signexistingpdf.xhp
msgctxt ""
@@ -42431,7 +42447,7 @@ msgctxt ""
"hd_id201526432498222\n"
"help.text"
msgid "<variable id=\"signexisitingpdf\"><link href=\"text/shared/01/signexistingpdf.xhp\" name=\"Sign Existing PDF Files\">Signing Existing PDF files</link></variable>"
-msgstr ""
+msgstr "<variable id=\"signexisitingpdf\"><link href=\"text/shared/01/signexistingpdf.xhp\" name=\"Sign Existing PDF Files\">Signature de fichiers PDF existants</link></variable>"
#: signexistingpdf.xhp
msgctxt ""
@@ -42439,7 +42455,7 @@ msgctxt ""
"par_id41526423955118\n"
"help.text"
msgid "%PRODUCTNAME can digitally sign an existing PDF document."
-msgstr ""
+msgstr "%PRODUCTNAME peut signer numériquement un document PDF existant."
#: signexistingpdf.xhp
msgctxt ""
@@ -42447,7 +42463,7 @@ msgctxt ""
"par_id821526581027302\n"
"help.text"
msgid "The file opens in %PRODUCTNAME Draw in read only mode."
-msgstr ""
+msgstr "Le fichier s'ouvre dans %PRODUCTNAME Draw en mode de lecture seule."
#: signexistingpdf.xhp
msgctxt ""
@@ -42455,7 +42471,7 @@ msgctxt ""
"par_id361526580565237\n"
"help.text"
msgid "Sign the PDF document as usual."
-msgstr ""
+msgstr "Signer le document PDF comme d'habitude."
#: webhtml.xhp
msgctxt ""
diff --git a/source/fr/helpcontent2/source/text/shared/02.po b/source/fr/helpcontent2/source/text/shared/02.po
index bbf22ef2750..bfb7c55e923 100644
--- a/source/fr/helpcontent2/source/text/shared/02.po
+++ b/source/fr/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: 2018-05-08 15:10+0200\n"
-"PO-Revision-Date: 2018-04-25 17:22+0000\n"
+"PO-Revision-Date: 2018-05-24 11:55+0000\n"
"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
"Language-Team: ll.org\n"
"Language: fr\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1524676946.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1527162944.000000\n"
#: 01110000.xhp
msgctxt ""
@@ -8286,7 +8286,7 @@ msgctxt ""
"par_id3150040\n"
"help.text"
msgid "<ahelp hid=\".\">Toggles the Design mode on or off. This function is used to switch quickly between <link href=\"text/shared/explorer/database/04030000.xhp\" name=\"Design\">Design</link> and User mode. Activate to edit the form controls, deactivate to use the form controls.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Active ou désactive le mode Ébauche. Cette fonction permet de passer rapidement du mode <link href=\"text/shared/explorer/database/04030000.xhp\" name=\"Ébauche\">Ébauche</link> au mode Utilisateur. Activez ce mode pour éditer les contrôles de formulaire et désactivez-le pour les utiliser.</ahelp>"
#: 01170500.xhp
msgctxt ""
@@ -9718,7 +9718,7 @@ msgctxt ""
"par_id3153539\n"
"help.text"
msgid "<ahelp hid=\".uno:TextdirectionLeftToRight\">Specifies the horizontal direction of the text.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".uno:TextdirectionLeftToRight\">Spécifie l'orientation horizontale du texte.</ahelp>"
#: 02040000.xhp
msgctxt ""
@@ -9758,7 +9758,7 @@ msgctxt ""
"par_id3153089\n"
"help.text"
msgid "<ahelp hid=\".uno:TextdirectionTopToBottom\" visibility=\"visible\">Specifies the vertical direction of the text.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".uno:TextdirectionTopToBottom\" visibility=\"visible\">Spécifie l'orientation verticale du texte.</ahelp>"
#: 02050000.xhp
msgctxt ""
@@ -10766,7 +10766,7 @@ msgctxt ""
"par_id3109850\n"
"help.text"
msgid "<ahelp hid=\".\">Positions the selected paragraph before the one above it.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Place le paragraphe sélectionné avant le paragraphe précédent.</ahelp>"
#: 06100000.xhp
msgctxt ""
@@ -10822,7 +10822,7 @@ msgctxt ""
"par_id3154228\n"
"help.text"
msgid "<ahelp hid=\".\">Positions the selected paragraph after the one below it.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Place le paragraphe sélectionné après le paragraphe suivant.</ahelp>"
#: 06110000.xhp
msgctxt ""
@@ -11990,7 +11990,7 @@ msgctxt ""
"par_id3150445\n"
"help.text"
msgid "<ahelp hid=\".\">Moves back to the previous page in the document.</ahelp> This function is only active when you select the <emph>Print Preview</emph> function on the <emph>File</emph> menu."
-msgstr ""
+msgstr "<ahelp hid=\".\">Passe à la page précédente du document.</ahelp> Cette fonction n'est active que lorsque vous sélectionnez <emph>Aperçu</emph> dans le menu <emph>Fichier</emph>."
#: 10010000.xhp
msgctxt ""
@@ -12030,7 +12030,7 @@ msgctxt ""
"par_id3159224\n"
"help.text"
msgid "<ahelp hid=\".\">Moves forward to the next page in the document.</ahelp> This function is only active when you select the <emph>Print Preview</emph> function on the <emph>File</emph> menu."
-msgstr ""
+msgstr "<ahelp hid=\".\">Passe à la page suivante du document.</ahelp> Cette fonction n'est active que lorsque vous sélectionnez <emph>Aperçu</emph> dans le menu <emph>Fichier</emph>."
#: 10020000.xhp
msgctxt ""
@@ -12070,7 +12070,7 @@ msgctxt ""
"par_id3153539\n"
"help.text"
msgid "<ahelp hid=\".\">Moves to the first page of the document.</ahelp> This function is only active when you select the <emph>Print Preview</emph> function on the <emph>File</emph> menu."
-msgstr ""
+msgstr "<ahelp hid=\".\">Ramène le document à la première page.</ahelp> Cette fonction n'est active que lorsque vous sélectionnez la fonction <emph>Aperçu</emph> du menu <emph>Fichier</emph>."
#: 10030000.xhp
msgctxt ""
@@ -12110,7 +12110,7 @@ msgctxt ""
"par_id3149716\n"
"help.text"
msgid "<ahelp hid=\".\">Moves to the last page of the document.</ahelp> This function is only active when you select the <emph>Print Preview</emph> function on the <emph>File</emph> menu."
-msgstr ""
+msgstr "<ahelp hid=\".\">Ramène le document à la dernière page.</ahelp> Cette fonction n'est active que lorsque vous sélectionnez la fonction <emph>Aperçu</emph> du menu <emph>Fichier</emph>."
#: 10040000.xhp
msgctxt ""
diff --git a/source/fr/helpcontent2/source/text/shared/guide.po b/source/fr/helpcontent2/source/text/shared/guide.po
index dbe2ba4948f..eb32d6c7f79 100644
--- a/source/fr/helpcontent2/source/text/shared/guide.po
+++ b/source/fr/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: 2018-05-16 16:54+0200\n"
-"PO-Revision-Date: 2018-04-25 17:46+0000\n"
+"PO-Revision-Date: 2018-05-24 13:01+0000\n"
"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
"Language-Team: ll.org\n"
"Language: fr\n"
@@ -13,9 +13,9 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Pootle 2.8\n"
"X-Project-Style: openoffice\n"
-"X-POOTLE-MTIME: 1524678366.000000\n"
+"X-POOTLE-MTIME: 1527166898.000000\n"
#: aaa_start.xhp
msgctxt ""
@@ -4143,7 +4143,7 @@ msgctxt ""
"par_id2584002\n"
"help.text"
msgid "On Windows systems, you can also use drag-and-drop instead of Copy and Paste. Also, for registered databases, you can open the datasource browser (press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> + Shift + F4 keys) instead of opening the Base window."
-msgstr ""
+msgstr "Sur les systèmes Windows, vous pouvez également utiliser le glisser et déposer au lieu du copier et coller. Pour les bases de données enregistrées, vous pouvez également ouvrir le navigateur de source de données (appuyez sur les touches <switchinline select=\"sys\"><caseinline select=\"MAC\">Commande</caseinline><defaultinline>Ctrl</defaultinline></switchinline> + Maj + F4) au lieu d'ouvrir la fenêtre Base."
#: data_new.xhp
msgctxt ""
@@ -4871,7 +4871,7 @@ msgctxt ""
"par_id3159157\n"
"help.text"
msgid "As an example, open an empty text document and press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> + Shift + F4 keys. Open the bibliography database table <emph>biblio</emph> in the data source view. While pressing Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>, drag a few column headers into the document so that the form fields are created."
-msgstr ""
+msgstr "Par exemple, ouvrez un document texte vide et appuyez sur les touches <switchinline select=\"sys\"><caseinline select=\"MAC\">Commande</caseinline><defaultinline>Ctrl</defaultinline></switchinline> + Maj + F4. Ouvrez la table de base de données bibliographique <emph>biblio</emph> dans la vue de source de données. Tout en appuyant sur Maj+<switchinline select=\"sys\"><caseinline select=\"MAC\">Commande</caseinline><defaultinline>Ctrl</defaultinline></switchinline>, glissez quelques en-têtes de colonnes dans le document de façon à ce que des champs de formulaire soient créés."
#: data_search2.xhp
msgctxt ""
@@ -4879,7 +4879,7 @@ msgctxt ""
"par_id3150984\n"
"help.text"
msgid "On the <emph>Form Controls</emph> toolbar, click the <emph>Design Mode On/Off</emph> icon<image id=\"img_id3147618\" src=\"cmd/sc_switchcontroldesignmode.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3147618\">Icon</alt></image> to turn off the design mode."
-msgstr ""
+msgstr "Pour désactiver le mode Ébauche, cliquez sur l'icône <emph>(Dés)activer le mode Ébauche</emph> <image id=\"img_id3147618\" src=\"cmd/sc_switchcontroldesignmode.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3147618\">Icône</alt></image> dans la barre d'outils <emph>Contrôles de formulaire</emph>."
#: data_search2.xhp
msgctxt ""
@@ -4887,7 +4887,7 @@ msgctxt ""
"par_id3148672\n"
"help.text"
msgid "On the <emph>Form Navigation</emph> toolbar, click the <emph>Form-Based Filters</emph> icon<image id=\"img_id3149807\" src=\"cmd/sc_formfilter.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3149807\">Icon</alt></image>. The current document is displayed with its form controls as an empty edit mask. The <emph>Form Filter </emph>toolbar appears."
-msgstr ""
+msgstr "Dans la barre d'outils <emph>Navigation pour formulaires</emph>, cliquez sur l'icône <emph>Filtres de formulaire</emph> <image id=\"img_id3149807\" src=\"cmd/sc_formfilter.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3149807\">Icône</alt></image>. Le document actif est affiché avec ses contrôles de formulaire comme masque d'édition vide. La barre d'outils <emph>Filtre de formulaire</emph> s'affiche."
#: data_search2.xhp
msgctxt ""
@@ -4927,7 +4927,7 @@ msgctxt ""
"par_id3150114\n"
"help.text"
msgid "Click the <link href=\"text/shared/02/12120000.xhp\" name=\"Apply Filter\"><emph>Apply Filter</emph></link> icon<image id=\"img_id3144764\" src=\"cmd/sc_datafilterstandardfilter.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3144764\">Icon</alt></image> on the <emph>Form Navigation</emph> toolbar to change to the filtered view."
-msgstr ""
+msgstr "Pour passer en mode d'affichage filtré, cliquez sur l'icône <link href=\"text/shared/02/12120000.xhp\" name=\"Appliquer le filtre\"><emph>Appliquer le filtre</emph></link> <image id=\"img_id3144764\" src=\"cmd/sc_datafilterstandardfilter.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3144764\">Icône</alt></image> dans la barre d'outils <emph>Navigation pour formulaires</emph>."
#: data_search2.xhp
msgctxt ""
@@ -4935,7 +4935,7 @@ msgctxt ""
"par_id3146898\n"
"help.text"
msgid "The filter that has been set can be removed by clicking <link href=\"text/shared/02/12040000.xhp\" name=\"Remove Filter/Sort\"><emph>Reset Filter/Sort</emph></link> icon<image id=\"img_id3151318\" src=\"cmd/sc_removefiltersort.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3151318\">Icon</alt></image>."
-msgstr ""
+msgstr "Vous pouvez supprimer le filtre défini en cliquant sur l'icône <link href=\"text/shared/02/12040000.xhp\" name=\"Réinitialiser le filtre/tri\"><emph>Réinitialiser le filtre/tri</emph></link><image id=\"img_id3151318\" src=\"cmd/sc_removefiltersort.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3151318\">Icône</alt></image>."
#: data_tabledefine.xhp
msgctxt ""
@@ -5335,7 +5335,7 @@ msgctxt ""
"par_id3149415\n"
"help.text"
msgid "Choose <emph>View - Data Sources</emph> or press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> + Shift + F4 keys to call the data source view from a text document or spreadsheet."
-msgstr ""
+msgstr "Choisissez <emph>Affichage - Sources de données</emph> ou appuyez sur les touches <switchinline select=\"sys\"><caseinline select=\"MAC\">Commande</caseinline><defaultinline>Ctrl</defaultinline></switchinline> + Maj + F4 pour appeler la vue de source de données à partir d'un document texte ou d'un classeur."
#: database_main.xhp
msgctxt ""
@@ -6079,7 +6079,7 @@ msgctxt ""
"par_id461519763996407\n"
"help.text"
msgid "Your private key for the digital signature will usually be generated and securely stored by Windows as part of the signature-issuance process. Once the issuing Certificate Authority is satisfied that your computer produced the private key and you have satisfied any other identification requirements, the corresponding public key is signed by the Certificate Authority. For personal keys obtained over the Internet, the private key is generated by your browser and it is not shared with the Certificate Authority."
-msgstr ""
+msgstr "Votre clé privée de signature numérique est habituellement générée et stockée de façon sécurisée par Windows dans le cadre du processus de signature. Une fois que le fournisseur de l'autorité de certificat est satisfait par la production de votre clé privée par l'ordinateur et que vous avez satisfait à toutes les autres nécessités d'identification, la clé publique correspondante est signée par l'autorité de certificat pour les clés personnelles obtenues sur Internet, la clé privée est générée par votre navigateur et n'est pas partagée avec l'autorité de certificat."
#: digitalsign_send.xhp
msgctxt ""
@@ -6087,7 +6087,7 @@ msgctxt ""
"par_id181519764008387\n"
"help.text"
msgid "If a private key is received by other means or you transfer it from another computer, you can install it on your Windows PC by double-clicking on the private key certificate and providing any required password. This private key may be known to others (such as an organizational or governmental security administration) depending on how it was issued to you."
-msgstr ""
+msgstr "Si une clé privée est reçue par d'autres moyens ou que vous la transférez d'un autre ordinateur, vous pouvez l'installer sur votre PC Windows en double-cliquant sur le certificat de clé privée et en fournissant le mot de passe requis. Cette clé privée peut être connue par d'autres (tels que des organisations ou des administrations de sécurité gouvernementales) en fonction de la façon dont elle vous a été fournie."
#: digitalsign_send.xhp
msgctxt ""
@@ -6103,7 +6103,7 @@ msgctxt ""
"par_id351519764024243\n"
"help.text"
msgid "The general management of public and private keys on your PC will vary depending on the version of Windows you are operating. For more information, use the \"Help and Support\" topic of your Windows version and search for \"digital signature\"."
-msgstr ""
+msgstr "La gestion générale de clés publiques et privées sur le PC dépend de la version de Windows qui est exploitée. Pour de plus amples informations, utilisez la rubrique \"Aide et Support\" de la version Windows et recherchez \"signature numérique\"."
#: digitalsign_send.xhp
msgctxt ""
@@ -6143,7 +6143,7 @@ msgctxt ""
"par_idN106AE\n"
"help.text"
msgid "In the <link href=\"text/shared/01/selectcertificate.xhp\">Select Certificate</link> dialog, select your certificate and click <emph>OK</emph>."
-msgstr ""
+msgstr "Dans la boîte de dialogue <link href=\"text/shared/01/selectcertificate.xhp\">Sélectionner un certificat</link>, sélectionnez votre certificat et cliquez sur <emph>OK</emph>."
#: digitalsign_send.xhp
msgctxt ""
@@ -6151,7 +6151,7 @@ msgctxt ""
"par_idN106C0\n"
"help.text"
msgid "You see again the <emph>Digital Signatures</emph> dialog, where you can add more certificates if you want. Click <emph>OK</emph> to add the public key to the saved file."
-msgstr ""
+msgstr "La boîte de dialogue <emph>Signatures numériques</emph> s'affiche de nouveau, dans laquelle vous pouvez ajouter d'autres certificats si besoin. Cliquez sur <emph>OK</emph> pour ajouter la clé publique au fichier enregistré."
#: digitalsign_send.xhp
msgctxt ""
@@ -6159,7 +6159,7 @@ msgctxt ""
"par_idN106C3\n"
"help.text"
msgid "A signed document shows an icon <image id=\"img_id262764\" src=\"xmlsecurity/res/certificate_16.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id262764\">Icon</alt></image> in the status bar. You can double-click the icon in the status bar to view the certificate."
-msgstr ""
+msgstr "Un document signé affiche une icône <image id=\"img_id262764\" src=\"xmlsecurity/res/certificate_16.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id262764\">icône</alt></image> dans la barre d'état. Double-cliquez sur l'icône dans la barre d'état pour afficher le certificat."
#: digitalsign_send.xhp
msgctxt ""
@@ -6167,7 +6167,7 @@ msgctxt ""
"par_id2008200911381426\n"
"help.text"
msgid "The result of the signature validation is displayed in the status bar and within the Digital Signature dialog. Several documents and macro signatures can exist inside an ODF document. If there is a problem with one signature, then the validation result of that one signature is assumed for all signatures. That is, if there are ten valid signatures and one invalid signature, then the status bar and the status field in the dialog will flag the signature as <emph>invalid</emph>."
-msgstr ""
+msgstr "Le résultat de la validation de la signature est affiché dans la barre d'état et dans la boîte de dialogue Signature numérique. Plusieurs signatures de documents et de macros peuvent exister dans un document ODF. S'il y a un problème avec une signature, alors le résultat de la validation de cette signature est supposé pour toutes les signatures. C'est à dire que s'il y a dix signatures valides et une signature non valide, alors la barre d'état et le champ de statut dans la boîte de dialogue marqueront la signature comme <emph>incorrecte</emph>."
#: digitalsign_send.xhp
msgctxt ""
@@ -10999,7 +10999,7 @@ msgctxt ""
"par_id3150515\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> + Shift + F4 opens and closes the data source view."
-msgstr ""
+msgstr "La combinaison de touche <switchinline select=\"sys\"><caseinline select=\"MAC\">Commande</caseinline><defaultinline>Ctrl</defaultinline></switchinline> + Mak + F4 ouvre et ferme la vue de source de données."
#: keyboard.xhp
msgctxt ""
@@ -17247,7 +17247,7 @@ msgctxt ""
"par_id3153360\n"
"help.text"
msgid "Replace <emph>{install}</emph> with the path to your installation of $[officename] software (for example, <emph>C:\\Program Files\\Office</emph> in Windows, or <emph>~/office</emph> in UNIX)"
-msgstr ""
+msgstr "Remplacez <emph>{installation}</emph> par le chemin d'installation du logiciel $[officename] (par exemple, <emph>C:\\Program Files\\Office</emph> sous Windows, ou <emph>~/office</emph> sour UNIX)"
#: start_parameters.xhp
msgctxt ""
@@ -17919,7 +17919,7 @@ msgctxt ""
"par_id0820200802524413\n"
"help.text"
msgid "You see the Start Center when no document is open in %PRODUCTNAME. It is divided into two panes. <ahelp hid=\".\">Click a button on the left pane to open a new document or a file dialog.</ahelp>"
-msgstr ""
+msgstr "Le Centre de démarrage est affiché lorsque aucun document n'est ouvert dans %PRODUCTNAME. Il est divisé en deux panneaux. <ahelp hid=\".\">Cliquez sur le bouton dans le panneau de gauche pour ouvrir un nouveau document ou une boîte de dialogue de fichier.</ahelp>"
#: startcenter.xhp
msgctxt ""
@@ -17951,7 +17951,7 @@ msgctxt ""
"par_id0820200802525413\n"
"help.text"
msgid "<ahelp hid=\".\">The <emph>Recent Files</emph> button shows thumbnails of the most recent documents you opened.</ahelp> Hover your mouse over the thumbnail to highlight the document, display a tip about the document location and display an icon on the top right to delete the thumbnail from the pane and from the recent files list. Click on the thumbnail to open the document underneath."
-msgstr ""
+msgstr "<ahelp hid=\".\">Le bouton <emph>Fichiers récents</emph> affiche les vignettes des documents les plus récents que vous avez ouverts.</ahelp> Passez votre souris au dessus d'une vignette pour mettre le document en surbrillance, afficher une infobulle indiquant l'emplacement du document et afficher une icône dans le coin en haut à droite permettant de supprimer la vignette du panneau et de la liste des fichiers récents. Cliquez sur sa vignette pour ouvrir le document."
#: startcenter.xhp
msgctxt ""
diff --git a/source/fr/helpcontent2/source/text/shared/help.po b/source/fr/helpcontent2/source/text/shared/help.po
index 33fd0a5387e..55f5a19c35c 100644
--- a/source/fr/helpcontent2/source/text/shared/help.po
+++ b/source/fr/helpcontent2/source/text/shared/help.po
@@ -4,14 +4,17 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2018-05-16 16:54+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"PO-Revision-Date: 2018-05-24 12:24+0000\n"
+"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: fr\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: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1527164679.000000\n"
#: browserhelp.xhp
msgctxt ""
@@ -19,7 +22,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Help Page Strings"
-msgstr ""
+msgstr "Chaînes de la page d'aide"
#: browserhelp.xhp
msgctxt ""
@@ -27,7 +30,7 @@ msgctxt ""
"par_id491525733955136\n"
"help.text"
msgid "<variable id=\"module\">Module</variable>"
-msgstr ""
+msgstr "<variable id=\"module\">Module</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -35,7 +38,7 @@ msgctxt ""
"par_id531525734031068\n"
"help.text"
msgid "<variable id=\"language\">Language</variable>"
-msgstr ""
+msgstr "<variable id=\"language\">Langue</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -43,7 +46,7 @@ msgctxt ""
"par_id991525734084608\n"
"help.text"
msgid "<variable id=\"contents\">Contents</variable>"
-msgstr ""
+msgstr "<variable id=\"contents\">Contenu</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -51,7 +54,7 @@ msgctxt ""
"par_id601525734140935\n"
"help.text"
msgid "<variable id=\"index\">Index</variable>"
-msgstr ""
+msgstr "<variable id=\"index\">Index</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -59,7 +62,7 @@ msgctxt ""
"par_id191525734190260\n"
"help.text"
msgid "<variable id=\"donate\">If this page has been helpful, you can support us!</variable>"
-msgstr ""
+msgstr "<variable id=\"donate\">Si cette page vous a été utile, vous pouvez nous apporter votre soutien!</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -67,7 +70,7 @@ msgctxt ""
"par_id881525734289794\n"
"help.text"
msgid "<variable id=\"LibreOfficeHelp\">%PRODUCTNAME %PRODUCTVERSION Help</variable>"
-msgstr ""
+msgstr "<variable id=\"LibreOfficeHelp\">Aide %PRODUCTNAME %PRODUCTVERSION</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -75,7 +78,7 @@ msgctxt ""
"par_id421525736799965\n"
"help.text"
msgid "<variable id=\"copyclip\">Click on text to copy to clipboard</variable>"
-msgstr ""
+msgstr "<variable id=\"copyclip\">Cliquez sur le texte pour le copier dans le presse-papiers</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -83,7 +86,7 @@ msgctxt ""
"par_id31525734624833\n"
"help.text"
msgid "<variable id=\"selectmodule\">Select Module</variable>"
-msgstr ""
+msgstr "<variable id=\"selectmodule\">Sélectionner le module</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -91,7 +94,7 @@ msgctxt ""
"par_id1001525734619670\n"
"help.text"
msgid "<variable id=\"selectlanguage\">Select Language</variable>"
-msgstr ""
+msgstr "<variable id=\"selectlanguage\">Sélectionner la langue</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -99,7 +102,7 @@ msgctxt ""
"par_id91525734616233\n"
"help.text"
msgid "<variable id=\"searchhelpcontents\">Search help contents</variable>"
-msgstr ""
+msgstr "<variable id=\"searchhelpcontents\">Rechercher dans le contenu de l'aide</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -107,7 +110,7 @@ msgctxt ""
"par_id811525747677263\n"
"help.text"
msgid "<variable id=\"en-US\">English (USA)</variable>"
-msgstr ""
+msgstr "<variable id=\"en-US\">Anglais (E.U.A)</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -115,7 +118,7 @@ msgctxt ""
"par_id521525747699241\n"
"help.text"
msgid "<variable id=\"am\">Amharic</variable>"
-msgstr ""
+msgstr "<variable id=\"am\">Amharique</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -123,7 +126,7 @@ msgctxt ""
"par_id841525747709330\n"
"help.text"
msgid "<variable id=\"ar\">Arabic</variable>"
-msgstr ""
+msgstr "<variable id=\"ar\">Arabe</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -131,7 +134,7 @@ msgctxt ""
"par_id371525747715258\n"
"help.text"
msgid "<variable id=\"ast\">Asturian</variable>"
-msgstr ""
+msgstr "<variable id=\"ast\">Asturien</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -139,7 +142,7 @@ msgctxt ""
"par_id91525747756759\n"
"help.text"
msgid "<variable id=\"bg\">Bulgarian</variable>"
-msgstr ""
+msgstr "<variable id=\"bg\">Bulgare</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -147,7 +150,7 @@ msgctxt ""
"par_id391525747761934\n"
"help.text"
msgid "<variable id=\"bn\">Bengali</variable>"
-msgstr ""
+msgstr "<variable id=\"bn\">Bengali</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -155,7 +158,7 @@ msgctxt ""
"par_id701525747766711\n"
"help.text"
msgid "<variable id=\"bn-IN\">Bengali (India)</variable>"
-msgstr ""
+msgstr "<variable id=\"bn-IN\">Bengali (Inde)</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -163,7 +166,7 @@ msgctxt ""
"par_id941525747772436\n"
"help.text"
msgid "<variable id=\"bo\">Tibetan</variable>"
-msgstr ""
+msgstr "<variable id=\"bo\">Tibétain</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -171,7 +174,7 @@ msgctxt ""
"par_id241525747783594\n"
"help.text"
msgid "<variable id=\"bs\">Bosnian</variable>"
-msgstr ""
+msgstr "<variable id=\"bs\">Bosnien</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -179,7 +182,7 @@ msgctxt ""
"par_id191525747798511\n"
"help.text"
msgid "<variable id=\"ca\">Catalan</variable>"
-msgstr ""
+msgstr "<variable id=\"ca\">Catalan</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -187,7 +190,7 @@ msgctxt ""
"par_id331525747842279\n"
"help.text"
msgid "<variable id=\"ca-valencia\">Valencian Catalan</variable>"
-msgstr ""
+msgstr "<variable id=\"ca-valencia\">Catalan Valencien</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -195,7 +198,7 @@ msgctxt ""
"par_id541525747847143\n"
"help.text"
msgid "<variable id=\"cs\">Czech</variable>"
-msgstr ""
+msgstr "<variable id=\"cs\">Tchèque</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -203,7 +206,7 @@ msgctxt ""
"par_id141525747867126\n"
"help.text"
msgid "<variable id=\"da\">Danish</variable>"
-msgstr ""
+msgstr "<variable id=\"da\">Danois</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -211,7 +214,7 @@ msgctxt ""
"par_id131525747872352\n"
"help.text"
msgid "<variable id=\"de\">German</variable>"
-msgstr ""
+msgstr "<variable id=\"de\">Allemand</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -219,7 +222,7 @@ msgctxt ""
"par_id831525747962487\n"
"help.text"
msgid "<variable id=\"dz\">Dzongkha</variable>"
-msgstr ""
+msgstr "<variable id=\"dz\">Dzongkha</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -227,7 +230,7 @@ msgctxt ""
"par_id631525747969597\n"
"help.text"
msgid "<variable id=\"el\">Greek</variable>"
-msgstr ""
+msgstr "<variable id=\"el\">Grecque</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -235,7 +238,7 @@ msgctxt ""
"par_id371525747976937\n"
"help.text"
msgid "<variable id=\"en-GB\">English (UK)</variable>"
-msgstr ""
+msgstr "<variable id=\"en-GB\">Anglais (RU)</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -243,7 +246,7 @@ msgctxt ""
"par_id701525747984877\n"
"help.text"
msgid "<variable id=\"en-ZA\">English (SA)</variable>"
-msgstr ""
+msgstr "<variable id=\"en-ZA\">Anglais (SA)</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -251,7 +254,7 @@ msgctxt ""
"par_id61525747994007\n"
"help.text"
msgid "<variable id=\"eo\">Esperanto</variable>"
-msgstr ""
+msgstr "<variable id=\"eo\">Espéranto</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -259,7 +262,7 @@ msgctxt ""
"par_id811525748006070\n"
"help.text"
msgid "<variable id=\"es\">Spanish</variable>"
-msgstr ""
+msgstr "<variable id=\"es\">Espagnole</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -267,7 +270,7 @@ msgctxt ""
"par_id561525748012579\n"
"help.text"
msgid "<variable id=\"et\">Estonian</variable>"
-msgstr ""
+msgstr "<variable id=\"et\">Estonien</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -275,7 +278,7 @@ msgctxt ""
"par_id111525748019144\n"
"help.text"
msgid "<variable id=\"eu\">Basque</variable>"
-msgstr ""
+msgstr "<variable id=\"eu\">Basque</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -283,7 +286,7 @@ msgctxt ""
"par_id621525748022811\n"
"help.text"
msgid "<variable id=\"fi\">Finnish</variable>"
-msgstr ""
+msgstr "<variable id=\"fi\">Finlandais</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -291,7 +294,7 @@ msgctxt ""
"par_id861525748027499\n"
"help.text"
msgid "<variable id=\"fr\">French</variable>"
-msgstr ""
+msgstr "<variable id=\"fr\">Français</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -299,7 +302,7 @@ msgctxt ""
"par_id661525748030419\n"
"help.text"
msgid "<variable id=\"gl\">Galician</variable>"
-msgstr ""
+msgstr "<variable id=\"gl\">Galicien</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -307,7 +310,7 @@ msgctxt ""
"par_id301525748033370\n"
"help.text"
msgid "<variable id=\"gu\">Gujarati</variable>"
-msgstr ""
+msgstr "<variable id=\"gu\">Gujarati</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -315,7 +318,7 @@ msgctxt ""
"par_id141525748036295\n"
"help.text"
msgid "<variable id=\"he\">Hebrew</variable>"
-msgstr ""
+msgstr "<variable id=\"he\">Hébreu</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -323,7 +326,7 @@ msgctxt ""
"par_id531525748040396\n"
"help.text"
msgid "<variable id=\"hi\">Hindi</variable>"
-msgstr ""
+msgstr "<variable id=\"hi\">Hindi</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -331,7 +334,7 @@ msgctxt ""
"par_id901525748044409\n"
"help.text"
msgid "<variable id=\"hr\">Croatian</variable>"
-msgstr ""
+msgstr "<variable id=\"hr\">Croate</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -339,7 +342,7 @@ msgctxt ""
"par_id331525748049389\n"
"help.text"
msgid "<variable id=\"hu\">Hungarian</variable>"
-msgstr ""
+msgstr "<variable id=\"hu\">Hongrois</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -347,7 +350,7 @@ msgctxt ""
"par_id21525748084845\n"
"help.text"
msgid "<variable id=\"is\">Icelandic</variable>"
-msgstr ""
+msgstr "<variable id=\"is\">Islandais</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -355,7 +358,7 @@ msgctxt ""
"par_id761525748087547\n"
"help.text"
msgid "<variable id=\"it\">Italian</variable>"
-msgstr ""
+msgstr "<variable id=\"it\">Italien</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -363,7 +366,7 @@ msgctxt ""
"par_id691525748090324\n"
"help.text"
msgid "<variable id=\"ja\">Japanese</variable>"
-msgstr ""
+msgstr "<variable id=\"ja\">Japonais</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -371,7 +374,7 @@ msgctxt ""
"par_id181525748093242\n"
"help.text"
msgid "<variable id=\"ka\">Georgian</variable>"
-msgstr ""
+msgstr "<variable id=\"ka\">Géorgien</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -379,7 +382,7 @@ msgctxt ""
"par_id531525748097320\n"
"help.text"
msgid "<variable id=\"km\">Khmer</variable>"
-msgstr ""
+msgstr "<variable id=\"km\">Khmer</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -387,7 +390,7 @@ msgctxt ""
"par_id641525748100233\n"
"help.text"
msgid "<variable id=\"ko\">Korean</variable>"
-msgstr ""
+msgstr "<variable id=\"ko\">Coréen</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -395,7 +398,7 @@ msgctxt ""
"par_id521525748103387\n"
"help.text"
msgid "<variable id=\"lo\">Lao</variable>"
-msgstr ""
+msgstr "<variable id=\"lo\">Laotien</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -403,7 +406,7 @@ msgctxt ""
"par_id51525748108130\n"
"help.text"
msgid "<variable id=\"lt\">Lithuanian</variable>"
-msgstr ""
+msgstr "<variable id=\"lt\">Lituanien</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -411,7 +414,7 @@ msgctxt ""
"par_id111525748111334\n"
"help.text"
msgid "<variable id=\"lv\">Latvian</variable>"
-msgstr ""
+msgstr "<variable id=\"lv\">Letton</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -419,7 +422,7 @@ msgctxt ""
"par_id131525748114674\n"
"help.text"
msgid "<variable id=\"mk\">Macedonian</variable>"
-msgstr ""
+msgstr "<variable id=\"mk\">Macédonien</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -427,7 +430,7 @@ msgctxt ""
"par_id441525748118091\n"
"help.text"
msgid "<variable id=\"nb\">Norwegian Bokmål</variable>"
-msgstr ""
+msgstr "<variable id=\"nb\">Norvégien Bokmål</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -435,7 +438,7 @@ msgctxt ""
"par_id221525748121057\n"
"help.text"
msgid "<variable id=\"ne\">Nepali</variable>"
-msgstr ""
+msgstr "<variable id=\"ne\">Népalais</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -443,7 +446,7 @@ msgctxt ""
"par_id441525748123904\n"
"help.text"
msgid "<variable id=\"nl\">Dutch</variable>"
-msgstr ""
+msgstr "<variable id=\"nl\">Néerlandais</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -451,7 +454,7 @@ msgctxt ""
"par_id371525748126784\n"
"help.text"
msgid "<variable id=\"nn\">Norwegian Nynorsk</variable>"
-msgstr ""
+msgstr "<variable id=\"nn\">Norvégien Nynorsk</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -459,7 +462,7 @@ msgctxt ""
"par_id401525748129935\n"
"help.text"
msgid "<variable id=\"om\">Oromo</variable>"
-msgstr ""
+msgstr "<variable id=\"om\">Oromo</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -467,7 +470,7 @@ msgctxt ""
"par_id91525748133349\n"
"help.text"
msgid "<variable id=\"pl\">Polish</variable>"
-msgstr ""
+msgstr "<variable id=\"pl\">Polonais</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -475,7 +478,7 @@ msgctxt ""
"par_id631525748136712\n"
"help.text"
msgid "<variable id=\"pt\">Portuguese</variable>"
-msgstr ""
+msgstr "<variable id=\"pt\">Portugais</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -483,7 +486,7 @@ msgctxt ""
"par_id351525748140239\n"
"help.text"
msgid "<variable id=\"pt-BR\">Brazilian Portuguese</variable>"
-msgstr ""
+msgstr "<variable id=\"pt-BR\">Portugais brésilien</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -491,7 +494,7 @@ msgctxt ""
"par_id421525748143274\n"
"help.text"
msgid "<variable id=\"ro\">Romanian</variable>"
-msgstr ""
+msgstr "<variable id=\"ro\">Roumain</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -499,7 +502,7 @@ msgctxt ""
"par_id291525748146064\n"
"help.text"
msgid "<variable id=\"ru\">Russian</variable>"
-msgstr ""
+msgstr "<variable id=\"ru\">Russe</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -507,7 +510,7 @@ msgctxt ""
"par_id91525748149042\n"
"help.text"
msgid "<variable id=\"si\">Sinhala</variable>"
-msgstr ""
+msgstr "<variable id=\"si\">Sinhala</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -515,7 +518,7 @@ msgctxt ""
"par_id191525748182094\n"
"help.text"
msgid "<variable id=\"sid\">Sidama</variable>"
-msgstr ""
+msgstr "<variable id=\"sid\">Sidama</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -523,7 +526,7 @@ msgctxt ""
"par_id461525748185823\n"
"help.text"
msgid "<variable id=\"sk\">Slovak</variable>"
-msgstr ""
+msgstr "<variable id=\"sk\">Slovaque</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -531,7 +534,7 @@ msgctxt ""
"par_id41525748190004\n"
"help.text"
msgid "<variable id=\"sl\">Slovenian</variable>"
-msgstr ""
+msgstr "<variable id=\"sl\">Slovène</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -539,7 +542,7 @@ msgctxt ""
"par_id281525748193030\n"
"help.text"
msgid "<variable id=\"sq\">Albanian</variable>"
-msgstr ""
+msgstr "<variable id=\"sq\">Albanais</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -547,7 +550,7 @@ msgctxt ""
"par_id481525748203088\n"
"help.text"
msgid "<variable id=\"sv\">Swedish</variable>"
-msgstr ""
+msgstr "<variable id=\"sv\">Suédois</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -555,7 +558,7 @@ msgctxt ""
"par_id191525748206804\n"
"help.text"
msgid "<variable id=\"ta\">Tamil</variable>"
-msgstr ""
+msgstr "<variable id=\"ta\">Tamoul</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -563,7 +566,7 @@ msgctxt ""
"par_id391525748210165\n"
"help.text"
msgid "<variable id=\"tg\">Tajik</variable>"
-msgstr ""
+msgstr "<variable id=\"tg\">Tajik</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -571,7 +574,7 @@ msgctxt ""
"par_id561525748213759\n"
"help.text"
msgid "<variable id=\"tr\">Turkish</variable>"
-msgstr ""
+msgstr "<variable id=\"tr\">Turc</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -579,7 +582,7 @@ msgctxt ""
"par_id621525748217482\n"
"help.text"
msgid "<variable id=\"ug\">Uyghur</variable>"
-msgstr ""
+msgstr "<variable id=\"ug\">Uyghur</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -587,7 +590,7 @@ msgctxt ""
"par_id861525748221057\n"
"help.text"
msgid "<variable id=\"uk\">Ukrainian</variable>"
-msgstr ""
+msgstr "<variable id=\"uk\">Ukrainien</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -595,7 +598,7 @@ msgctxt ""
"par_id611525748224412\n"
"help.text"
msgid "<variable id=\"vi\">Vietnamese</variable>"
-msgstr ""
+msgstr "<variable id=\"vi\">Vietnamien</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -603,7 +606,7 @@ msgctxt ""
"par_id981525748227614\n"
"help.text"
msgid "<variable id=\"zh-CN\">Chinese (Simplified)</variable>"
-msgstr ""
+msgstr "<variable id=\"zh-CN\">Chinois (simplifié)</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -611,4 +614,4 @@ msgctxt ""
"par_id61525748230858\n"
"help.text"
msgid "<variable id=\"zh-TW\">Chinese (Traditional)</variable>"
-msgstr ""
+msgstr "<variable id=\"zh-TW\">Chinois (traditionnel)</variable>"
diff --git a/source/fr/helpcontent2/source/text/shared/optionen.po b/source/fr/helpcontent2/source/text/shared/optionen.po
index bf168169286..a9f1ff72919 100644
--- a/source/fr/helpcontent2/source/text/shared/optionen.po
+++ b/source/fr/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: 2018-05-08 15:10+0200\n"
-"PO-Revision-Date: 2018-04-25 17:50+0000\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
+"PO-Revision-Date: 2018-06-06 14:44+0000\n"
"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
"Language-Team: ll.org\n"
"Language: fr\n"
@@ -13,9 +13,9 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Pootle 2.8\n"
"X-Project-Style: openoffice\n"
-"X-POOTLE-MTIME: 1524678607.000000\n"
+"X-POOTLE-MTIME: 1528296264.000000\n"
#: 01000000.xhp
msgctxt ""
@@ -84,6 +84,22 @@ msgstr "Remarque à l'attention des utilisateurs macOS : l'aide mentionne le che
#: 01000000.xhp
msgctxt ""
"01000000.xhp\n"
+"hd_id551527692881035\n"
+"help.text"
+msgid "Help"
+msgstr "Aide"
+
+#: 01000000.xhp
+msgctxt ""
+"01000000.xhp\n"
+"par_id831527692885723\n"
+"help.text"
+msgid "Opens the help contents for the Options page displayed."
+msgstr "Ouvre le contenu de l'aide pour l'onglet Options affiché."
+
+#: 01000000.xhp
+msgctxt ""
+"01000000.xhp\n"
"hd_id3159149\n"
"help.text"
msgid "<link href=\"text/shared/optionen/01010000.xhp\" name=\"$[officename]\">%PRODUCTNAME</link>"
@@ -1415,7 +1431,7 @@ msgctxt ""
"par_id3153663\n"
"help.text"
msgid "A language module can contain one, two or three submodules: Spellcheck, hyphenation and thesaurus. Each sub-module can be available in one or more languages. If you click in front of the name of the module, you activate all the available sub-modules simultaneously. If you remove a set mark, you deactivate all the available sub-modules simultaneously. If you wish to activate or deactivate individual sub-modules, click the <emph>Edit</emph> button to open the <link href=\"text/shared/optionen/01010401.xhp\" name=\"Edit Modules\"><emph>Edit Modules</emph></link> dialog."
-msgstr ""
+msgstr "Un module de langue peut comporter un, deux ou trois sous-modules : Vérification orthographique, Coupure des mots et Dictionnaire des synonymes. Chacun peut être proposé dans une ou plusieurs langues. Si vous cliquez devant le nom du module, vous activez tous les sous-modules disponibles simultanément. Si vous supprimez une coche, vous désactivez tous les sous-modules disponibles simultanément. Si vous désirez activer ou désactiver certains sous-modules, cliquez sur le bouton <emph>Éditer</emph> pour ouvrir la boîte de dialogue <link href=\"text/shared/optionen/01010401.xhp\" name=\"Édition des modules\"><emph>Édition des modules</emph></link>."
#: 01010400.xhp
msgctxt ""
@@ -1423,7 +1439,7 @@ msgctxt ""
"par_id3294778\n"
"help.text"
msgid "The configuration allows two different directories: one folder where the user has write permissions, and one without write permissions. The user can only edit and delete the user dictionaries that are located in the writable path. Other dictionaries can be read only."
-msgstr ""
+msgstr "La configuration autorise deux répertoires différents : un fichier pour lequel l'utilisateur a les droits d'écriture, et un fichier sans permission d'écriture. L'utilisateur peut seulement éditer et supprimer les dictionnaires utilisateurs qui sont situés dans le chemin ou l'écriture est possible. Les autres dictionnaires sont accessibles en lecture seule."
#: 01010400.xhp
msgctxt ""
@@ -1591,7 +1607,7 @@ msgctxt ""
"par_id3154730\n"
"help.text"
msgid "<variable id=\"ignore\">The <emph>IgnoreAllList (All)</emph> includes all words that have been marked with <emph>Ignore</emph> during spellcheck. This list is valid only for the current spellcheck.</variable>"
-msgstr ""
+msgstr "<variable id=\"ignore\">La liste <emph>IgnoreAllList (Toutes)</emph> comprend tous les mots marqués <emph>Ignorer</emph> au cours de la vérification orthographique. Cette liste est valable uniquement pour la vérification orthographique active.</variable>"
#: 01010400.xhp
msgctxt ""
@@ -1671,7 +1687,7 @@ msgctxt ""
"par_id3163808\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/editdictionarydialog/newreplace\">Adds the word in the <emph>Word</emph> text field to your current custom dictionary. The word in the <emph>Suggestion</emph> field is also added when working with exception dictionaries.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/editdictionarydialog/newreplace\">Ajoute le mot figurant dans la zone de texte <emph>Mot</emph> au dictionnaire personnalisé actif. Le mot figurant dans le champ <emph>Suggestions</emph> est également ajouté lorsque vous utilisez des dictionnaires des exceptions.</ahelp>"
#: 01010400.xhp
msgctxt ""
@@ -4566,8 +4582,8 @@ msgctxt ""
"01030300.xhp\n"
"par_idN10640\n"
"help.text"
-msgid "Options"
-msgstr "Options"
+msgid "Security Options and Warnings"
+msgstr "Options et avertissements de sécurité"
#: 01030300.xhp
msgctxt ""
@@ -4598,8 +4614,8 @@ msgctxt ""
"01030300.xhp\n"
"hd_id3168736\n"
"help.text"
-msgid "Persistently save passwords protected by a master password"
-msgstr "Enregistrer de façon permanente les mots de passe protégés par un mot de passe principal"
+msgid "Persistently save passwords for web connections"
+msgstr "Enregistrer de façon permanente les mots de passe pour les connexions web"
#: 01030300.xhp
msgctxt ""
@@ -4614,6 +4630,22 @@ msgctxt ""
"01030300.xhp\n"
"hd_id3901791\n"
"help.text"
+msgid "Protected by a master password (recommended)"
+msgstr "Protégé par un mot de passe principal (recommandé)"
+
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"par_id31527711486980\n"
+"help.text"
+msgid "Check to enable all connections' passwords to be protected by a master password."
+msgstr "Cochez pour permettre à tous les mots de passe de connexion d'être protégé par un mot de passe principal."
+
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"hd_id141527711343312\n"
+"help.text"
msgid "Master Password"
msgstr "Mot de passe principal"
@@ -13734,8 +13766,8 @@ msgctxt ""
"java.xhp\n"
"hd_id3148618\n"
"help.text"
-msgid "Optional (unstable) options"
-msgstr "Options facultatives (non stabilisées)"
+msgid "Optional Features"
+msgstr "Fonctionnalités optionnelles"
#: java.xhp
msgctxt ""
@@ -13750,8 +13782,8 @@ msgctxt ""
"java.xhp\n"
"par_id3156344\n"
"help.text"
-msgid "It enables features that are not yet complete or contain known bugs. The list of these features is different version by version, or even it can be empty."
-msgstr "Cela active des fonctions qui ne sont pas encore complètes ou contiennent des dysfonctionnements connus. La liste de ces fonctions est différente de version en version, ou peut même être vide."
+msgid "Enables features that are not yet complete or may contain known bugs. The list of these features is different version by version, or even it can be empty."
+msgstr "Active des fonctions qui ne sont pas encore complètes ou peuvent contenir des dysfonctionnements connus. La liste de ces fonctions est différente de version en version, ou peut même être vide."
#: java.xhp
msgctxt ""
@@ -13766,8 +13798,8 @@ msgctxt ""
"java.xhp\n"
"par_id3156345\n"
"help.text"
-msgid "It enables macro recording, so the <link href=\"text/shared/guide/macro_recording.xhp\" name=\"Tools - Macros - Record Macro\"><item type=\"menuitem\">Tools - Macros - Record Macro</item></link> menu item will be available."
-msgstr "Cela active l'enregistrement des macros, de sorte que l'élément de menu <link href=\"text/shared/guide/macro_recording.xhp\" name=\"Outils - Macros - Enregistrer la macro\"><item type=\"menuitem\">Outils - Macros - Enregistrer la macro</item></link> devient actif."
+msgid "Enables macro recording. The <link href=\"text/shared/guide/macro_recording.xhp\" name=\"Tools - Macros - Record Macro\"><item type=\"menuitem\">Tools - Macros - Record Macro</item></link> menu item is available."
+msgstr "Active l'enregistrement des macros. L'élément de menu <link href=\"text/shared/guide/macro_recording.xhp\" name=\"Outils - Macros - Enregistrer la macro\"><item type=\"menuitem\">Outils - Macros - Enregistrer la macro</item></link> devient actif."
#: java.xhp
msgctxt ""
diff --git a/source/fr/helpcontent2/source/text/swriter/00.po b/source/fr/helpcontent2/source/text/swriter/00.po
index c9cf644ec83..e2e01b9bdba 100644
--- a/source/fr/helpcontent2/source/text/swriter/00.po
+++ b/source/fr/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: 2018-05-22 13:17+0200\n"
-"PO-Revision-Date: 2018-05-14 15:06+0000\n"
+"PO-Revision-Date: 2018-05-24 15:12+0000\n"
"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
"Language-Team: ll.org\n"
"Language: fr\n"
@@ -13,9 +13,9 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Pootle 2.8\n"
"X-Project-Style: openoffice\n"
-"X-POOTLE-MTIME: 1526310418.000000\n"
+"X-POOTLE-MTIME: 1527174735.000000\n"
#: 00000004.xhp
msgctxt ""
@@ -599,7 +599,7 @@ msgctxt ""
"par_id3155990\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F2"
-msgstr ""
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Commande</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F2"
#: 00000404.xhp
msgctxt ""
@@ -855,7 +855,7 @@ msgctxt ""
"par_id3150113\n"
"help.text"
msgid "<variable id=\"einfscript\">Choose <emph>Insert - Script</emph> (only HTML documents)</variable>"
-msgstr ""
+msgstr "<variable id=\"einfscript\">Choisissez <emph>Insertion - Script</emph> (uniquement pour les documents HTML)</variable>"
#: 00000404.xhp
msgctxt ""
@@ -1095,7 +1095,7 @@ msgctxt ""
"par_id3155087\n"
"help.text"
msgid "<variable id=\"umschlagb\">Choose <emph>Insert - Envelope - Envelope</emph> tab</variable>"
-msgstr ""
+msgstr "<variable id=\"umschlagb\">Choisissez le menu puis l'onglet <emph>Insertion - Enveloppe - Enveloppe</emph></variable>"
#: 00000404.xhp
msgctxt ""
@@ -1103,7 +1103,7 @@ msgctxt ""
"par_id3146955\n"
"help.text"
msgid "<variable id=\"formatbr\">Choose <emph>Insert - Envelope - Format</emph> tab</variable>"
-msgstr ""
+msgstr "<variable id=\"formatbr\">Choisissez le menu puis l'onglet <emph>Insertion - Enveloppe - Format</emph></variable>"
#: 00000404.xhp
msgctxt ""
@@ -1111,7 +1111,7 @@ msgctxt ""
"par_id3154342\n"
"help.text"
msgid "<variable id=\"druckerbr\">Choose <emph>Insert - Envelope - Printer</emph> tab</variable>"
-msgstr ""
+msgstr "<variable id=\"druckerbr\">Choisissez le menu puis l'onglet <emph>Insertion - Enveloppe - Imprimante</emph></variable>"
#: 00000404.xhp
msgctxt ""
@@ -1167,7 +1167,7 @@ msgctxt ""
"par_id3153129\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F12"
-msgstr ""
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Commande</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F12"
#: 00000404.xhp
msgctxt ""
@@ -1255,7 +1255,7 @@ msgctxt ""
"par_id81526422144005\n"
"help.text"
msgid "Choose <emph>Insert - Signature Line...</emph>"
-msgstr ""
+msgstr "Choisissez <emph>Insertion - Ligne de signature...</emph>"
#: 00000405.xhp
msgctxt ""
diff --git a/source/fr/helpcontent2/source/text/swriter/01.po b/source/fr/helpcontent2/source/text/swriter/01.po
index 8b8ad995abd..8066cf56aca 100644
--- a/source/fr/helpcontent2/source/text/swriter/01.po
+++ b/source/fr/helpcontent2/source/text/swriter/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: 2018-05-22 13:17+0200\n"
-"PO-Revision-Date: 2018-05-14 15:25+0000\n"
+"PO-Revision-Date: 2018-05-25 12:43+0000\n"
"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
"Language-Team: ll.org\n"
"Language: fr\n"
@@ -13,9 +13,9 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Pootle 2.8\n"
"X-Project-Style: openoffice\n"
-"X-POOTLE-MTIME: 1526311535.000000\n"
+"X-POOTLE-MTIME: 1527252225.000000\n"
#: 01120000.xhp
msgctxt ""
@@ -23591,7 +23591,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Adding Signature Line in Text Documents"
-msgstr ""
+msgstr "Ajouter une ligne de signature dans les documents texte"
#: addsignatureline.xhp
msgctxt ""
@@ -23599,7 +23599,7 @@ msgctxt ""
"bm_id821526779524753\n"
"help.text"
msgid "<bookmark_value>digital signature;add signature line</bookmark_value><bookmark_value>signature line;adding</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Signature numérique;ajouter une ligne de signature</bookmark_value><bookmark_value>Signature numérique;ajouter</bookmark_value>"
#: addsignatureline.xhp
msgctxt ""
@@ -23607,7 +23607,7 @@ msgctxt ""
"hd_id501526421873817\n"
"help.text"
msgid "<variable id=\"addsignatureline01\"><link href=\"text/swriter/01/addsignatureline.xhp\" name=\"Adding Signature Line\">Adding a Signature Line in Text Documents</link></variable>"
-msgstr ""
+msgstr "<variable id=\"addsignatureline01\"><link href=\"text/swriter/01/addsignatureline.xhp\" name=\"Adding Signature Line\">Ajouter une ligne de signature dans les documents texte</link></variable>"
#: addsignatureline.xhp
msgctxt ""
@@ -23615,7 +23615,7 @@ msgctxt ""
"par_id991526423190756\n"
"help.text"
msgid "%PRODUCTNAME Writer can insert a graphic box inside the document representing a signature line of the document."
-msgstr ""
+msgstr "%PRODUCTNAME Writer peut insérer une zone graphique à l'intérieur du document, représentant une ligne de signature du document."
#: addsignatureline.xhp
msgctxt ""
@@ -23623,7 +23623,7 @@ msgctxt ""
"par_id751526436546030\n"
"help.text"
msgid "<image src=\"media/helpimg/sw_signatureline01.png\" id=\"img_id91526436546031\" width=\"311px\" height=\"179px\"> <alt id=\"alt_id351526436546031\">Signature Line Box</alt> </image>"
-msgstr ""
+msgstr "<image src=\"media/helpimg/sw_signatureline01.png\" id=\"img_id91526436546031\" width=\"311px\" height=\"179px\"><alt id=\"alt_id351526436546031\">Zone de ligne de signature</alt></image>"
#: addsignatureline.xhp
msgctxt ""
@@ -23631,7 +23631,7 @@ msgctxt ""
"par_id651526423393786\n"
"help.text"
msgid "The signature line displays an horizontal line, a location mark, the name, title and e-mail of signer."
-msgstr ""
+msgstr "La ligne de signature affiche une ligne horizontale, une marque d'emplacement, le nom, le titre et l'e-mail du signataire."
#: addsignatureline.xhp
msgctxt ""
@@ -23639,7 +23639,7 @@ msgctxt ""
"hd_id631526467960460\n"
"help.text"
msgid "Name"
-msgstr ""
+msgstr "Nom"
#: addsignatureline.xhp
msgctxt ""
@@ -23647,7 +23647,7 @@ msgctxt ""
"par_id351526467968348\n"
"help.text"
msgid "Insert the name of the signer. The name is displayed in the signature line graphic box."
-msgstr ""
+msgstr "Insérez le nom du signataire. Le nom est affiché dans la zone graphique de la ligne de signature."
#: addsignatureline.xhp
msgctxt ""
@@ -23655,7 +23655,7 @@ msgctxt ""
"hd_id171526467974440\n"
"help.text"
msgid "Title"
-msgstr ""
+msgstr "Titre"
#: addsignatureline.xhp
msgctxt ""
@@ -23663,7 +23663,7 @@ msgctxt ""
"par_id701526467979209\n"
"help.text"
msgid "Enter the title of the signer. The title is displayed in the signature line graphic box."
-msgstr ""
+msgstr "Saisissez le titre du signataire. Le titre est affiché dans la zone graphique de la ligne de signature."
#: addsignatureline.xhp
msgctxt ""
@@ -23671,7 +23671,7 @@ msgctxt ""
"hd_id431526467986157\n"
"help.text"
msgid "Email"
-msgstr ""
+msgstr "E-mail"
#: addsignatureline.xhp
msgctxt ""
@@ -23679,7 +23679,7 @@ msgctxt ""
"par_id111526467993387\n"
"help.text"
msgid "Enter the e-mail of the signer. The email is not displayed in the signature line graphic box, and is be used for the digital signature."
-msgstr ""
+msgstr "Saisissez l'e-mail du signataire. L'e-mail n'est pas affiché dans la zone graphique de la ligne de signature et est utilisé pour la signature numérique."
#: addsignatureline.xhp
msgctxt ""
@@ -23687,7 +23687,7 @@ msgctxt ""
"hd_id451526468019876\n"
"help.text"
msgid "Signer can add comments"
-msgstr ""
+msgstr "Le signataire peut ajouter des commentaires"
#: addsignatureline.xhp
msgctxt ""
@@ -23695,7 +23695,7 @@ msgctxt ""
"par_id531526562791579\n"
"help.text"
msgid "Enable signer to insert comments in the Sign Signature Line dialog at time of signature."
-msgstr ""
+msgstr "Permet au signataire d'insérer des commentaires dans la boîte de dialogue Signer la ligne de signature au moment de la signature."
#: addsignatureline.xhp
msgctxt ""
@@ -23703,7 +23703,7 @@ msgctxt ""
"hd_id31526468046686\n"
"help.text"
msgid "Show sign date in signature line"
-msgstr ""
+msgstr "Afficher la date de signature dans la ligne de signature"
#: addsignatureline.xhp
msgctxt ""
@@ -23711,7 +23711,7 @@ msgctxt ""
"par_id11526468051934\n"
"help.text"
msgid "Mark this checkbox to display the date of the signature, at the time when the document is digitally signed."
-msgstr ""
+msgstr "Marquez cette case à cocher pour afficher la date de la signature au moment ou le document est numériquement signé."
#: addsignatureline.xhp
msgctxt ""
@@ -23719,7 +23719,7 @@ msgctxt ""
"hd_id791526468057743\n"
"help.text"
msgid "Instructions to the signer"
-msgstr ""
+msgstr "Instructions pour le signataire :"
#: addsignatureline.xhp
msgctxt ""
@@ -23727,7 +23727,7 @@ msgctxt ""
"par_id131526560799876\n"
"help.text"
msgid "Insert instructions for the signer. The instructions appears in the Sign Signature Line dialog box, at the time of signature."
-msgstr ""
+msgstr "Insérez les instructions pour le signataire. Les instructions apparaissent dans la boîte de dialogue Signer la ligne de signature, au moment de la signature."
#: format_object.xhp
msgctxt ""
@@ -26359,7 +26359,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Signing the Signature Line"
-msgstr ""
+msgstr "Signer la ligne de signature"
#: signsignatureline.xhp
msgctxt ""
@@ -26367,7 +26367,7 @@ msgctxt ""
"bm_id651526779220785\n"
"help.text"
msgid "<bookmark_value>digital signature;sign signature line</bookmark_value><bookmark_value>signature line;signing</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Signature numérique;signer la ligne de signature</bookmark_value><bookmark_value>Ligne de signature;signer</bookmark_value>"
#: signsignatureline.xhp
msgctxt ""
@@ -26375,7 +26375,7 @@ msgctxt ""
"hd_id401526575112776\n"
"help.text"
msgid "<variable id=\"signsignatureline01\"><link href=\"text/swriter/01/signsignatureline.xhp\" name=\"Sign Signature Line\">Digitally Signing the Signature Line</link></variable>"
-msgstr ""
+msgstr "<variable id=\"signsignatureline01\"><link href=\"text/swriter/01/signsignatureline.xhp\" name=\"Sign Signature Line\">Signer numériquement la ligne de signature</link></variable>"
#: signsignatureline.xhp
msgctxt ""
@@ -26383,7 +26383,7 @@ msgctxt ""
"par_id611526575121298\n"
"help.text"
msgid "%PRODUCTNAME Writer lets you sign digitally a signature line."
-msgstr ""
+msgstr "%PRODUCTNAME Writer vous permet de signer numériquement une ligne de signature."
#: signsignatureline.xhp
msgctxt ""
@@ -26391,7 +26391,7 @@ msgctxt ""
"par_id511526575127337\n"
"help.text"
msgid "On signing a signature line, %PRODUCTNAME Writer fills the line with the name of signer, adds the digital certificate issuer information and optionally insert the date of signature."
-msgstr ""
+msgstr "Lors de la signature d'une ligne de signature, %PRODUCTNAME Writer remplit la ligne avec le nom du signataire, ajoute les informations du producteur du certificat numérique et, facultativement, insère la date de la signature."
#: signsignatureline.xhp
msgctxt ""
@@ -26399,7 +26399,7 @@ msgctxt ""
"par_id291526564031387\n"
"help.text"
msgid "Select the signature line graphic object context menu. Choose <emph>Sign Signature Line</emph>."
-msgstr ""
+msgstr "Sélectionnez le menu contextuel de l'objet graphique de la ligne de signature. Choisissez <emph>Signer la ligne de signature</emph>."
#: signsignatureline.xhp
msgctxt ""
@@ -26407,7 +26407,7 @@ msgctxt ""
"hd_id311526563971364\n"
"help.text"
msgid "Your Name"
-msgstr ""
+msgstr "Votre nom"
#: signsignatureline.xhp
msgctxt ""
@@ -26415,7 +26415,7 @@ msgctxt ""
"par_id511526564217965\n"
"help.text"
msgid "Enter your name as signer of the document. Your name will be inserted above the signature horizontal line."
-msgstr ""
+msgstr "Saisissez votre nom comme signataire du document. Votre nom sera inséré au-dessus de la ligne horizontale de signature."
#: signsignatureline.xhp
msgctxt ""
@@ -26423,7 +26423,7 @@ msgctxt ""
"hd_id401526563978041\n"
"help.text"
msgid "Certificate"
-msgstr ""
+msgstr "Certificat"
#: signsignatureline.xhp
msgctxt ""
@@ -26431,7 +26431,7 @@ msgctxt ""
"par_id31526564223526\n"
"help.text"
msgid "Click on the Select Certificate button to open the Select Certificate dialog box, where your certificates are listed. Select the certificate suitable for signing the document."
-msgstr ""
+msgstr "Cliquez sur le bouton Sélectionner un certificat pour ouvrir la boîte de dialogue Sélectionner un certificat, où vos certificats sont listés. Sélectionnez un certificat permettant de signer le document."
#: signsignatureline.xhp
msgctxt ""
@@ -26439,7 +26439,7 @@ msgctxt ""
"par_id251526576138883\n"
"help.text"
msgid "The information of the certificate issuer is inserted in the bottom of the Signature Line object."
-msgstr ""
+msgstr "Les informations du fournisseur de certificat sont insérées au bas de l'objet Ligne de signature."
#: signsignatureline.xhp
msgctxt ""
@@ -26447,7 +26447,7 @@ msgctxt ""
"hd_id301526563985718\n"
"help.text"
msgid "Instructions from the document creator"
-msgstr ""
+msgstr "Instructions du créateur du document :"
#: signsignatureline.xhp
msgctxt ""
@@ -26455,7 +26455,7 @@ msgctxt ""
"par_id271526564228571\n"
"help.text"
msgid "This area displays the instructions entered by the document creator when <link href=\"text/swriter/01/addsignatureline.xhp\" name=\"Adding the Signature Line\">adding the signature line</link>."
-msgstr ""
+msgstr "Cette zone affiche les instructions saisies par le créateur du document lors de <link href=\"text/swriter/01/addsignatureline.xhp\" name=\"Adding the Signature Line\">l'ajout de la ligne de signature</link>."
#: signsignatureline.xhp
msgctxt ""
@@ -26463,7 +26463,7 @@ msgctxt ""
"hd_id161526563992082\n"
"help.text"
msgid "Add comments"
-msgstr ""
+msgstr "Ajouter des commentaires :"
#: signsignatureline.xhp
msgctxt ""
@@ -26471,7 +26471,7 @@ msgctxt ""
"par_id21526564234712\n"
"help.text"
msgid "Enter comments about the signature. The comments are displayed in the <emph>Description</emph> field of the certificate."
-msgstr ""
+msgstr "Saisissez les commentaires à propos de la signature. Les commentaires sont affichés dans le champ <emph>Description</emph> du certificat."
#: signsignatureline.xhp
msgctxt ""
@@ -26479,7 +26479,7 @@ msgctxt ""
"par_id621526576147414\n"
"help.text"
msgid "If enabled when the signature line was created, the date of signature is inserted on the top right of the signature line object."
-msgstr ""
+msgstr "Si activé lorsque la ligne de signature a été créée, la date de signature est insérée en haut à droite de l'objet de ligne de signature."
#: signsignatureline.xhp
msgctxt ""
@@ -26487,7 +26487,7 @@ msgctxt ""
"par_id21526579319036\n"
"help.text"
msgid "<image src=\"media/helpimg/sw_signatureline02.png\" id=\"img_id551526579319036\" width=\"280px\" height=\"173px\"><alt id=\"alt_id641526579319036\">Signed Signature Line</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/helpimg/sw_signatureline02.png\" id=\"img_id551526579319036\" width=\"280px\" height=\"173px\"><alt id=\"alt_id641526579319036\">Ligne de signature signée</alt></image>"
#: title_page.xhp
msgctxt ""
diff --git a/source/fr/officecfg/registry/data/org/openoffice/Office/UI.po b/source/fr/officecfg/registry/data/org/openoffice/Office/UI.po
index a9aeb16a1f8..336acf140cf 100644
--- a/source/fr/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/fr/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-22 13:17+0200\n"
-"PO-Revision-Date: 2018-05-09 07:38+0000\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
+"PO-Revision-Date: 2018-06-05 05:08+0000\n"
"Last-Translator: Jean-Baptiste Faure <jbfaure@libreoffice.org>\n"
"Language-Team: ll.org\n"
"Language: fr\n"
@@ -13,9 +13,9 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Pootle 2.8\n"
"X-Project-Style: openoffice\n"
-"X-POOTLE-MTIME: 1525851527.000000\n"
+"X-POOTLE-MTIME: 1528175296.000000\n"
#: BaseWindowState.xcu
msgctxt ""
@@ -150,7 +150,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Form Horizontal Scroll Bar"
-msgstr ""
+msgstr "Barre de défilement horizontale pour formulaire"
#: BasicIDECommands.xcu
msgctxt ""
@@ -25343,7 +25343,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Tabbed"
-msgstr ""
+msgstr "Onglets"
#: ToolbarMode.xcu
msgctxt ""
@@ -25352,7 +25352,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Groupedbar Compact"
-msgstr ""
+msgstr "Barre groupée compacte"
#: ToolbarMode.xcu
msgctxt ""
@@ -25361,7 +25361,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Groupedbar"
-msgstr ""
+msgstr "Barre groupée"
#: ToolbarMode.xcu
msgctxt ""
@@ -26521,8 +26521,8 @@ msgctxt ""
"..WriterCommands.UserInterface.Commands..uno:TextAttributes\n"
"Label\n"
"value.text"
-msgid "Text Attributes"
-msgstr "Attributs de texte"
+msgid "Text Attributes..."
+msgstr "Attributs de texte..."
#: WriterCommands.xcu
msgctxt ""
diff --git a/source/fr/readlicense_oo/docs.po b/source/fr/readlicense_oo/docs.po
index d726222793c..bd5296b537f 100644
--- a/source/fr/readlicense_oo/docs.po
+++ b/source/fr/readlicense_oo/docs.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: 2018-04-17 15:54+0200\n"
-"PO-Revision-Date: 2018-04-26 21:29+0000\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
+"PO-Revision-Date: 2018-06-05 05:08+0000\n"
"Last-Translator: Jean-Baptiste Faure <jbfaure@libreoffice.org>\n"
"Language-Team: ll.org\n"
"Language: fr\n"
@@ -15,7 +15,7 @@ msgstr ""
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
"X-Project-Style: openoffice\n"
-"X-POOTLE-MTIME: 1524778185.000000\n"
+"X-POOTLE-MTIME: 1528175326.000000\n"
#: readme.xrm
msgctxt ""
@@ -118,8 +118,8 @@ msgctxt ""
"readme.xrm\n"
"macxiOSX\n"
"readmeitem.text"
-msgid "MacOSX 10.8 (Mountain Lion) or higher"
-msgstr "MacOSX 10.8 (Mountain Lion) ou supérieur"
+msgid "MacOSX 10.9 (Mavericks) or higher"
+msgstr "MacOSX 10.9 (Mavericks) ou supérieure"
#: readme.xrm
msgctxt ""
diff --git a/source/fr/sc/messages.po b/source/fr/sc/messages.po
index 77f6ae43730..07c58848c6a 100644
--- a/source/fr/sc/messages.po
+++ b/source/fr/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: 2018-05-22 13:16+0200\n"
-"PO-Revision-Date: 2018-05-21 09:33+0000\n"
+"POT-Creation-Date: 2018-06-12 14:40+0200\n"
+"PO-Revision-Date: 2018-06-05 05:11+0000\n"
"Last-Translator: Jean-Baptiste Faure <jbfaure@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: fr\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1526895200.000000\n"
+"X-POOTLE-MTIME: 1528175467.000000\n"
#: sc/inc/compiler.hrc:27
msgctxt "RID_FUNCTION_CATEGORIES"
@@ -1870,16 +1870,21 @@ msgid "Nested arrays are not supported."
msgstr "Les matrices imbriquées ne sont pas prises en charge."
#: sc/inc/globstr.hrc:390
+msgctxt "STR_ERR_LONG_BAD_ARRAY_CONTENT"
+msgid "Unsupported inline array content."
+msgstr ""
+
+#: sc/inc/globstr.hrc:391
msgctxt "STR_UNDO_TEXTTOCOLUMNS"
msgid "Text to Columns"
msgstr "Texte vers colonnes"
-#: sc/inc/globstr.hrc:391
+#: sc/inc/globstr.hrc:392
msgctxt "STR_DOC_UPDATED"
msgid "Your spreadsheet has been updated with changes saved by other users."
msgstr "La feuille de calcul a été actualisée avec les modifications enregistrées par les autres utilisateurs."
-#: sc/inc/globstr.hrc:392
+#: sc/inc/globstr.hrc:393
msgctxt "STR_DOC_WILLBESAVED"
msgid ""
"The spreadsheet must be saved now to activate sharing mode.\n"
@@ -1890,7 +1895,7 @@ msgstr ""
"\n"
"Souhaitez-vous continuer ?"
-#: sc/inc/globstr.hrc:393
+#: sc/inc/globstr.hrc:394
msgctxt "STR_DOC_WILLNOTBESAVED"
msgid ""
"Already resolved merge conflicts will be lost and your changes to the shared spreadsheet will not be saved.\n"
@@ -1901,7 +1906,7 @@ msgstr ""
"\n"
"Souhaitez-vous continuer ?"
-#: sc/inc/globstr.hrc:394
+#: sc/inc/globstr.hrc:395
msgctxt "STR_DOC_DISABLESHARED"
msgid ""
"Disabling shared mode of a spreadsheet hinders all other users of the shared spreadsheet to merge back their work.\n"
@@ -1912,7 +1917,7 @@ msgstr ""
"\n"
"Souhaitez-vous continuer ?"
-#: sc/inc/globstr.hrc:395
+#: sc/inc/globstr.hrc:396
msgctxt "STR_DOC_NOLONGERSHARED"
msgid ""
"This spreadsheet is no longer in shared mode.\n"
@@ -1923,7 +1928,7 @@ msgstr ""
"\n"
"Enregistrez la feuille de calcul dans un fichier séparé et fusionnez manuellement vos modifications dans la feuille partagée."
-#: sc/inc/globstr.hrc:396
+#: sc/inc/globstr.hrc:397
msgctxt "STR_FILE_LOCKED_TRY_LATER"
msgid ""
"The shared spreadsheet file is locked due to a merge in progress by user: '%1'\n"
@@ -1934,7 +1939,7 @@ msgstr ""
"\n"
"Le mode partagé d'un fichier verrouillé ne peut pas être désactivé. Essayez de nouveau plus tard."
-#: sc/inc/globstr.hrc:397
+#: sc/inc/globstr.hrc:398
msgctxt "STR_FILE_LOCKED_SAVE_LATER"
msgid ""
"The shared spreadsheet file is locked due to a merge in progress by user: '%1'\n"
@@ -1945,147 +1950,147 @@ msgstr ""
"\n"
"Essayez d'enregistrer vos modifications plus tard."
-#: sc/inc/globstr.hrc:398
+#: sc/inc/globstr.hrc:399
msgctxt "STR_UNKNOWN_USER"
msgid "Unknown User"
msgstr "Utilisateur inconnu"
-#: sc/inc/globstr.hrc:399
+#: sc/inc/globstr.hrc:400
msgctxt "STR_SHAPE_AUTOSHAPE"
msgid "AutoShape"
msgstr "Forme automatique"
-#: sc/inc/globstr.hrc:400
+#: sc/inc/globstr.hrc:401
msgctxt "STR_SHAPE_RECTANGLE"
msgid "Rectangle"
msgstr "Rectangle"
-#: sc/inc/globstr.hrc:401
+#: sc/inc/globstr.hrc:402
msgctxt "STR_SHAPE_LINE"
msgid "Line"
msgstr "Ligne"
-#: sc/inc/globstr.hrc:402
+#: sc/inc/globstr.hrc:403
msgctxt "STR_SHAPE_OVAL"
msgid "Oval"
msgstr "Ellipse"
-#: sc/inc/globstr.hrc:403
+#: sc/inc/globstr.hrc:404
msgctxt "STR_FORM_BUTTON"
msgid "Button"
msgstr "Bouton"
-#: sc/inc/globstr.hrc:404
+#: sc/inc/globstr.hrc:405
msgctxt "STR_FORM_CHECKBOX"
msgid "Check Box"
msgstr "Case à cocher"
-#: sc/inc/globstr.hrc:405
+#: sc/inc/globstr.hrc:406
msgctxt "STR_FORM_OPTIONBUTTON"
msgid "Option Button"
msgstr "Bouton radio"
-#: sc/inc/globstr.hrc:406
+#: sc/inc/globstr.hrc:407
msgctxt "STR_FORM_LABEL"
msgid "Label"
msgstr "Étiquette"
-#: sc/inc/globstr.hrc:407
+#: sc/inc/globstr.hrc:408
msgctxt "STR_FORM_LISTBOX"
msgid "List Box"
msgstr "Zone de liste"
-#: sc/inc/globstr.hrc:408
+#: sc/inc/globstr.hrc:409
msgctxt "STR_FORM_GROUPBOX"
msgid "Group Box"
msgstr "Zone de groupe"
-#: sc/inc/globstr.hrc:409
+#: sc/inc/globstr.hrc:410
msgctxt "STR_FORM_DROPDOWN"
msgid "Drop Down"
msgstr "Dérouler"
-#: sc/inc/globstr.hrc:410
+#: sc/inc/globstr.hrc:411
msgctxt "STR_FORM_SPINNER"
msgid "Spinner"
msgstr "Compteur"
-#: sc/inc/globstr.hrc:411
+#: sc/inc/globstr.hrc:412
msgctxt "STR_FORM_SCROLLBAR"
msgid "Scroll Bar"
msgstr "Barre de défilement"
-#: sc/inc/globstr.hrc:412
+#: sc/inc/globstr.hrc:413
msgctxt "STR_STYLE_FAMILY_CELL"
msgid "Cell Styles"
msgstr "Styles de cellule"
-#: sc/inc/globstr.hrc:413
+#: sc/inc/globstr.hrc:414
msgctxt "STR_STYLE_FAMILY_PAGE"
msgid "Page Styles"
msgstr "Styles de page"
-#: sc/inc/globstr.hrc:414
+#: sc/inc/globstr.hrc:415
msgctxt "STR_ERR_DATAPILOTSOURCE"
msgid "Pivot table source data is invalid."
msgstr "La source de la table dynamique n'est pas valide."
-#: sc/inc/globstr.hrc:415
+#: sc/inc/globstr.hrc:416
msgctxt "STR_OPTIONS_WARN_SEPARATORS"
msgid "Because the current formula separator settings conflict with the locale, the formula separators have been reset to their default values."
msgstr "Les séparateurs de formule ont été rétablis à leurs valeurs par défaut car les paramètres du séparateur de formule actif sont en conflit avec le paramètre local."
-#: sc/inc/globstr.hrc:416
+#: sc/inc/globstr.hrc:417
msgctxt "STR_UNDO_INSERT_CURRENT_DATE"
msgid "Insert Current Date"
msgstr "Insérer la date actuelle"
-#: sc/inc/globstr.hrc:417
+#: sc/inc/globstr.hrc:418
msgctxt "STR_UNDO_INSERT_CURRENT_TIME"
msgid "Insert Current Time"
msgstr "Insérer l'heure actuelle"
-#: sc/inc/globstr.hrc:418
+#: sc/inc/globstr.hrc:419
msgctxt "STR_MANAGE_NAMES"
msgid "Manage Names..."
msgstr "Gérer les noms..."
-#: sc/inc/globstr.hrc:419
+#: sc/inc/globstr.hrc:420
msgctxt "STR_HEADER_NAME"
msgid "Name"
msgstr "Nom"
-#: sc/inc/globstr.hrc:420
+#: sc/inc/globstr.hrc:421
msgctxt "STR_HEADER_RANGE_OR_EXPR"
msgid "Range or formula expression"
msgstr "Plage ou expression de formule"
-#: sc/inc/globstr.hrc:421
+#: sc/inc/globstr.hrc:422
msgctxt "STR_HEADER_SCOPE"
msgid "Scope"
msgstr "Étendue"
-#: sc/inc/globstr.hrc:422
+#: sc/inc/globstr.hrc:423
msgctxt "STR_MULTI_SELECT"
msgid "(multiple)"
msgstr "(multiple)"
-#: sc/inc/globstr.hrc:423
+#: sc/inc/globstr.hrc:424
msgctxt "STR_GLOBAL_SCOPE"
msgid "Document (Global)"
msgstr "Document (global)"
-#: sc/inc/globstr.hrc:424
+#: sc/inc/globstr.hrc:425
msgctxt "STR_ERR_NAME_EXISTS"
msgid "Invalid name. Already in use for the selected scope."
msgstr "Nom incorrect. Déjà utilisé pour l'étendue sélectionnée."
-#: sc/inc/globstr.hrc:425
+#: sc/inc/globstr.hrc:426
msgctxt "STR_ERR_NAME_INVALID"
msgid "Invalid name. Only use letters, numbers and underscore."
msgstr "Nom incorrect. Utilisez uniquement des lettres, des nombres ou des soulignements."
-#: sc/inc/globstr.hrc:426
+#: sc/inc/globstr.hrc:427
msgctxt "STR_UNSAVED_EXT_REF"
msgid ""
"This Document contains external references to unsaved documents.\n"
@@ -2096,217 +2101,217 @@ msgstr ""
"\n"
"Voulez-vous continuer ?"
-#: sc/inc/globstr.hrc:427
+#: sc/inc/globstr.hrc:428
msgctxt "STR_CLOSE_WITH_UNSAVED_REFS"
msgid "This Document is referenced by another document and not yet saved. Closing it without saving will result in data loss."
msgstr "Ce document est référencé par un autre document et non encore enregistré. Les données seront perdues s'il est fermé sans être enregistré."
-#: sc/inc/globstr.hrc:428
+#: sc/inc/globstr.hrc:429
msgctxt "STR_HEADER_RANGE"
msgid "Range"
msgstr "Plage"
-#: sc/inc/globstr.hrc:429
+#: sc/inc/globstr.hrc:430
msgctxt "STR_HEADER_COND"
msgid "First Condition"
msgstr "Première condition"
-#: sc/inc/globstr.hrc:430
+#: sc/inc/globstr.hrc:431
msgctxt "STR_COND_CONDITION"
msgid "Cell value is"
msgstr "La valeur de cellule est"
-#: sc/inc/globstr.hrc:431
+#: sc/inc/globstr.hrc:432
msgctxt "STR_COND_COLORSCALE"
msgid "ColorScale"
msgstr "Échelle de couleur"
-#: sc/inc/globstr.hrc:432
+#: sc/inc/globstr.hrc:433
msgctxt "STR_COND_DATABAR"
msgid "DataBar"
msgstr "Barre de données"
-#: sc/inc/globstr.hrc:433
+#: sc/inc/globstr.hrc:434
msgctxt "STR_COND_ICONSET"
msgid "IconSet"
msgstr "Jeu d'icônes"
-#: sc/inc/globstr.hrc:434
+#: sc/inc/globstr.hrc:435
msgctxt "STR_COND_BETWEEN"
msgid "between"
msgstr "entre"
-#: sc/inc/globstr.hrc:435
+#: sc/inc/globstr.hrc:436
msgctxt "STR_COND_NOTBETWEEN"
msgid "not between"
msgstr "pas entre"
-#: sc/inc/globstr.hrc:436
+#: sc/inc/globstr.hrc:437
msgctxt "STR_COND_UNIQUE"
msgid "unique"
msgstr "unique"
-#: sc/inc/globstr.hrc:437
+#: sc/inc/globstr.hrc:438
msgctxt "STR_COND_DUPLICATE"
msgid "duplicate"
msgstr "dupliquer"
-#: sc/inc/globstr.hrc:438
+#: sc/inc/globstr.hrc:439
msgctxt "STR_COND_FORMULA"
msgid "Formula is"
msgstr "La formule est"
-#: sc/inc/globstr.hrc:439
+#: sc/inc/globstr.hrc:440
msgctxt "STR_COND_TOP10"
msgid "Top Elements"
msgstr "Éléments supérieurs"
-#: sc/inc/globstr.hrc:440
+#: sc/inc/globstr.hrc:441
msgctxt "STR_COND_BOTTOM10"
msgid "Bottom Elements"
msgstr "Éléments inférieurs"
-#: sc/inc/globstr.hrc:441
+#: sc/inc/globstr.hrc:442
msgctxt "STR_COND_TOP_PERCENT"
msgid "Top Percent"
msgstr "Pourcentage supérieur"
-#: sc/inc/globstr.hrc:442
+#: sc/inc/globstr.hrc:443
msgctxt "STR_COND_DATE"
msgid "Date is"
msgstr "La date est"
-#: sc/inc/globstr.hrc:443
+#: sc/inc/globstr.hrc:444
msgctxt "STR_COND_BOTTOM_PERCENT"
msgid "Bottom Percent"
msgstr "Pourcentage inférieur"
-#: sc/inc/globstr.hrc:444
+#: sc/inc/globstr.hrc:445
msgctxt "STR_COND_ABOVE_AVERAGE"
msgid "Above Average"
msgstr "Moyenne supérieure"
-#: sc/inc/globstr.hrc:445
+#: sc/inc/globstr.hrc:446
msgctxt "STR_COND_BELOW_AVERAGE"
msgid "Below Average"
msgstr "Moyenne inférieure"
-#: sc/inc/globstr.hrc:446
+#: sc/inc/globstr.hrc:447
msgctxt "STR_COND_ABOVE_EQUAL_AVERAGE"
msgid "Above or equal Average"
msgstr "Moyenne supérieure ou égale"
-#: sc/inc/globstr.hrc:447
+#: sc/inc/globstr.hrc:448
msgctxt "STR_COND_BELOW_EQUAL_AVERAGE"
msgid "Below or equal Average"
msgstr "Moyenne inférieure ou égale"
-#: sc/inc/globstr.hrc:448
+#: sc/inc/globstr.hrc:449
msgctxt "STR_COND_ERROR"
msgid "an Error code"
msgstr "un code Erreur"
-#: sc/inc/globstr.hrc:449
+#: sc/inc/globstr.hrc:450
msgctxt "STR_COND_NOERROR"
msgid "not an Error code"
msgstr "pas un code Erreur"
-#: sc/inc/globstr.hrc:450
+#: sc/inc/globstr.hrc:451
msgctxt "STR_COND_BEGINS_WITH"
msgid "Begins with"
msgstr "Commence par"
-#: sc/inc/globstr.hrc:451
+#: sc/inc/globstr.hrc:452
msgctxt "STR_COND_ENDS_WITH"
msgid "Ends with"
msgstr "Finit par"
-#: sc/inc/globstr.hrc:452
+#: sc/inc/globstr.hrc:453
msgctxt "STR_COND_CONTAINS"
msgid "Contains"
msgstr "Contient"
-#: sc/inc/globstr.hrc:453
+#: sc/inc/globstr.hrc:454
msgctxt "STR_COND_NOT_CONTAINS"
msgid "Not Contains"
msgstr "Ne contient pas"
-#: sc/inc/globstr.hrc:454
+#: sc/inc/globstr.hrc:455
msgctxt "STR_COND_TODAY"
msgid "today"
msgstr "aujourd'hui"
-#: sc/inc/globstr.hrc:455
+#: sc/inc/globstr.hrc:456
msgctxt "STR_COND_YESTERDAY"
msgid "yesterday"
msgstr "hier"
-#: sc/inc/globstr.hrc:456
+#: sc/inc/globstr.hrc:457
msgctxt "STR_COND_TOMORROW"
msgid "tomorrow"
msgstr "demain"
-#: sc/inc/globstr.hrc:457
+#: sc/inc/globstr.hrc:458
msgctxt "STR_COND_LAST7DAYS"
msgid "in the last 7 days"
msgstr "dans les 7 derniers jours"
-#: sc/inc/globstr.hrc:458
+#: sc/inc/globstr.hrc:459
msgctxt "STR_COND_THISWEEK"
msgid "this week"
msgstr "cette semaine"
-#: sc/inc/globstr.hrc:459
+#: sc/inc/globstr.hrc:460
msgctxt "STR_COND_LASTWEEK"
msgid "last week"
msgstr "la semaine dernière"
-#: sc/inc/globstr.hrc:460
+#: sc/inc/globstr.hrc:461
msgctxt "STR_COND_NEXTWEEK"
msgid "next week"
msgstr "la semaine prochaine"
-#: sc/inc/globstr.hrc:461
+#: sc/inc/globstr.hrc:462
msgctxt "STR_COND_THISMONTH"
msgid "this month"
msgstr "ce mois"
-#: sc/inc/globstr.hrc:462
+#: sc/inc/globstr.hrc:463
msgctxt "STR_COND_LASTMONTH"
msgid "last month"
msgstr "le mois dernier"
-#: sc/inc/globstr.hrc:463
+#: sc/inc/globstr.hrc:464
msgctxt "STR_COND_NEXTMONTH"
msgid "next month"
msgstr "le mois prochain"
-#: sc/inc/globstr.hrc:464
+#: sc/inc/globstr.hrc:465
msgctxt "STR_COND_THISYEAR"
msgid "this year"
msgstr "cette année"
-#: sc/inc/globstr.hrc:465
+#: sc/inc/globstr.hrc:466
msgctxt "STR_COND_LASTYEAR"
msgid "last year"
msgstr "l'année dernière"
-#: sc/inc/globstr.hrc:466
+#: sc/inc/globstr.hrc:467
msgctxt "STR_COND_NEXTYEAR"
msgid "next year"
msgstr "l'année prochaine"
-#: sc/inc/globstr.hrc:467
+#: sc/inc/globstr.hrc:468
msgctxt "STR_COND_AND"
msgid "and"
msgstr "et"
-#: sc/inc/globstr.hrc:468
+#: sc/inc/globstr.hrc:469
msgctxt "STR_ERR_CONDFORMAT_PROTECTED"
msgid "Conditional Formats can not be created, deleted or changed in protected sheets."
msgstr "Les formatages conditionnels ne peuvent pas être créés, supprimés ou modifiés dans des feuilles protégées."
-#: sc/inc/globstr.hrc:469
+#: sc/inc/globstr.hrc:470
msgctxt "STR_EDIT_EXISTING_COND_FORMATS"
msgid ""
"The selected cell already contains conditional formatting. You can either edit the existing conditional format or you define a new overlapping conditional format.\n"
@@ -2317,7 +2322,7 @@ msgstr ""
"\n"
"Voulez-vous éditer le format conditionnel existant ? "
-#: sc/inc/globstr.hrc:470
+#: sc/inc/globstr.hrc:471
msgctxt "STR_QUERY_FORMULA_RECALC_ONLOAD_ODS"
msgid ""
"This document was last saved by an application other than %PRODUCTNAME. Some formula cells may produce different results when recalculated.\n"
@@ -2328,7 +2333,7 @@ msgstr ""
"\n"
"Voulez-vous recalculer maintenant toutes les cellules de formule dans ce document ?"
-#: sc/inc/globstr.hrc:471
+#: sc/inc/globstr.hrc:472
msgctxt "STR_QUERY_FORMULA_RECALC_ONLOAD_XLS"
msgid ""
"This document was last saved by Excel. Some formula cells may produce different results when recalculated.\n"
@@ -2339,77 +2344,77 @@ msgstr ""
"\n"
"Voulez-vous recalculer maintenant toutes les cellules de formule ?"
-#: sc/inc/globstr.hrc:472
+#: sc/inc/globstr.hrc:473
msgctxt "STR_NO_INSERT_DELETE_OVER_PIVOT_TABLE"
msgid "You cannot insert or delete cells when the affected range intersects with pivot table."
msgstr "Vous ne pouvez pas insérer ou supprimer des cellules quand la plage affectée intersecte une table dynamique."
-#: sc/inc/globstr.hrc:473
+#: sc/inc/globstr.hrc:474
msgctxt "STR_DPFIELD_GROUP_BY_SECONDS"
msgid "Seconds"
msgstr "Secondes"
-#: sc/inc/globstr.hrc:474
+#: sc/inc/globstr.hrc:475
msgctxt "STR_DPFIELD_GROUP_BY_MINUTES"
msgid "Minutes"
msgstr "Minutes"
-#: sc/inc/globstr.hrc:475
+#: sc/inc/globstr.hrc:476
msgctxt "STR_DPFIELD_GROUP_BY_HOURS"
msgid "Hours"
msgstr "Heures"
-#: sc/inc/globstr.hrc:476
+#: sc/inc/globstr.hrc:477
msgctxt "STR_DPFIELD_GROUP_BY_DAYS"
msgid "Days"
msgstr "Jours"
-#: sc/inc/globstr.hrc:477
+#: sc/inc/globstr.hrc:478
msgctxt "STR_DPFIELD_GROUP_BY_MONTHS"
msgid "Months"
msgstr "Mois"
-#: sc/inc/globstr.hrc:478
+#: sc/inc/globstr.hrc:479
msgctxt "STR_DPFIELD_GROUP_BY_QUARTERS"
msgid "Quarters"
msgstr "Trimestres"
-#: sc/inc/globstr.hrc:479
+#: sc/inc/globstr.hrc:480
msgctxt "STR_DPFIELD_GROUP_BY_YEARS"
msgid "Years"
msgstr "Années"
-#: sc/inc/globstr.hrc:480
+#: sc/inc/globstr.hrc:481
msgctxt "STR_INVALIDVAL"
msgid "Invalid target value."
msgstr "La valeur cible est incorrecte."
-#: sc/inc/globstr.hrc:481
+#: sc/inc/globstr.hrc:482
msgctxt "STR_INVALIDVAR"
msgid "Undefined name for variable cell."
msgstr "Le nom de la cellule variable n'a pas été défini."
-#: sc/inc/globstr.hrc:482
+#: sc/inc/globstr.hrc:483
msgctxt "STR_INVALIDFORM"
msgid "Undefined name as formula cell."
msgstr "Le nom de la cellule de formule n'a pas été défini."
-#: sc/inc/globstr.hrc:483
+#: sc/inc/globstr.hrc:484
msgctxt "STR_NOFORMULA"
msgid "Formula cell must contain a formula."
msgstr "La cellule de formule doit contenir une formule"
-#: sc/inc/globstr.hrc:484
+#: sc/inc/globstr.hrc:485
msgctxt "STR_INVALIDINPUT"
msgid "Invalid input."
msgstr "Saisie incorrecte."
-#: sc/inc/globstr.hrc:485
+#: sc/inc/globstr.hrc:486
msgctxt "STR_INVALIDCONDITION"
msgid "Invalid condition."
msgstr "Condition incorrecte."
-#: sc/inc/globstr.hrc:486
+#: sc/inc/globstr.hrc:487
msgctxt "STR_QUERYREMOVE"
msgid ""
"Should the entry\n"
@@ -2420,133 +2425,133 @@ msgstr ""
"#\n"
" ?"
-#: sc/inc/globstr.hrc:487
+#: sc/inc/globstr.hrc:488
msgctxt "STR_COPYLIST"
msgid "Copy List"
msgstr "Copier la liste"
-#: sc/inc/globstr.hrc:488
+#: sc/inc/globstr.hrc:489
msgctxt "STR_COPYFROM"
msgid "List from"
msgstr "Liste à partir de"
-#: sc/inc/globstr.hrc:489
+#: sc/inc/globstr.hrc:490
msgctxt "STR_COPYERR"
msgid "Cells without text have been ignored."
msgstr "Les cellules sans texte ont été ignorées."
-#: sc/inc/globstr.hrc:490
+#: sc/inc/globstr.hrc:491
#, c-format
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%s-click to follow hyperlink:"
msgstr "Cliquer en appuyant sur %s pour suivre un hyperlien"
-#: sc/inc/globstr.hrc:491
+#: sc/inc/globstr.hrc:492
msgctxt "STR_CLICKHYPERLINK"
msgid "click to open hyperlink:"
msgstr "cliquer pour ouvrir un hyperlien :"
-#: sc/inc/globstr.hrc:492
+#: sc/inc/globstr.hrc:493
msgctxt "STR_PRINT_PREVIEW_NODATA"
msgid "No Data"
msgstr "Aucune donnée"
-#: sc/inc/globstr.hrc:493
+#: sc/inc/globstr.hrc:494
msgctxt "STR_PRINT_PREVIEW_EMPTY_RANGE"
msgid "Print Range Empty"
msgstr "La zone d'impression est vide"
-#: sc/inc/globstr.hrc:494
+#: sc/inc/globstr.hrc:495
msgctxt "STR_UNDO_CONDFORMAT"
msgid "Conditional Format"
msgstr "Format conditionnel"
-#: sc/inc/globstr.hrc:495
+#: sc/inc/globstr.hrc:496
msgctxt "STR_UNDO_CONDFORMAT_LIST"
msgid "Conditional Formats"
msgstr "Formats conditionnels"
-#: sc/inc/globstr.hrc:496
+#: sc/inc/globstr.hrc:497
msgctxt "STR_UNDO_FORMULA_TO_VALUE"
msgid "Convert Formula To Value"
msgstr "Convertir la formule en valeur"
-#: sc/inc/globstr.hrc:497
+#: sc/inc/globstr.hrc:498
msgctxt "STR_UNQUOTED_STRING"
msgid "Strings without quotes are interpreted as column/row labels."
msgstr "Les chaînes de caractères sans guillemets sont interprétées comme des étiquettes de colonne/ligne."
-#: sc/inc/globstr.hrc:498
+#: sc/inc/globstr.hrc:499
msgctxt "STR_ENTER_VALUE"
msgid "Enter a value!"
msgstr "Saisissez une valeur !"
-#: sc/inc/globstr.hrc:499
+#: sc/inc/globstr.hrc:500
msgctxt "STR_TABLE_COUNT"
msgid "Sheet %1 of %2"
msgstr "Feuille %1 sur %2"
-#: sc/inc/globstr.hrc:500
+#: sc/inc/globstr.hrc:501
msgctxt "STR_FUNCTIONS_FOUND"
msgid "%1 and %2 more"
msgstr "%1 et %2 en plus"
-#: sc/inc/globstr.hrc:501
+#: sc/inc/globstr.hrc:502
msgctxt "STR_GENERAL"
msgid "General"
msgstr "Général"
-#: sc/inc/globstr.hrc:502
+#: sc/inc/globstr.hrc:503
msgctxt "STR_NUMBER"
msgid "Number"
msgstr "Nombre"
-#: sc/inc/globstr.hrc:503
+#: sc/inc/globstr.hrc:504
msgctxt "STR_PERCENT"
msgid "Percent"
msgstr "Pourcentage"
-#: sc/inc/globstr.hrc:504
+#: sc/inc/globstr.hrc:505
msgctxt "STR_CURRENCY"
msgid "Currency"
msgstr "Monnaie"
-#: sc/inc/globstr.hrc:505
+#: sc/inc/globstr.hrc:506
msgctxt "STR_DATE"
msgid "Date"
msgstr "Date"
-#: sc/inc/globstr.hrc:506
+#: sc/inc/globstr.hrc:507
msgctxt "STR_TIME"
msgid "Time"
msgstr "Heure"
-#: sc/inc/globstr.hrc:507
+#: sc/inc/globstr.hrc:508
msgctxt "STR_SCIENTIFIC"
msgid "Scientific"
msgstr "Scientifique"
-#: sc/inc/globstr.hrc:508
+#: sc/inc/globstr.hrc:509
msgctxt "STR_FRACTION"
msgid "Fraction"
msgstr "Fraction"
-#: sc/inc/globstr.hrc:509
+#: sc/inc/globstr.hrc:510
msgctxt "STR_BOOLEAN_VALUE"
msgid "Boolean Value"
msgstr "Valeur logique"
-#: sc/inc/globstr.hrc:510
+#: sc/inc/globstr.hrc:511
msgctxt "STR_TEXT"
msgid "Text"
msgstr "Texte"
-#: sc/inc/globstr.hrc:511
+#: sc/inc/globstr.hrc:512
msgctxt "STR_QUERY_PIVOTTABLE_DELTAB"
msgid "The selected sheet(s) contain source data of related pivot tables that will be lost. Are you sure you want to delete the selected sheet(s)?"
msgstr "La ou les feuilles sélectionnées contiennent une source de donnée des tables dynamiques relatives qui vont être perdues. Êtes-vous sûr de vouloir supprimer la ou les feuilles sélectionnées ?"
-#: sc/inc/globstr.hrc:512
+#: sc/inc/globstr.hrc:513
msgctxt "STR_ERR_NAME_INVALID_CELL_REF"
msgid "Invalid name. Reference to a cell, or a range of cells not allowed."
msgstr "Nom incorrect. La référence à une cellule, ou à une plage de cellules n'est pas autorisée."
@@ -10488,8 +10493,8 @@ msgstr "Mode"
#: sc/inc/scfuncs.hrc:3010
msgctxt "SC_OPCODE_T_TEST"
-msgid "Mode specifies the number of distribution tails to return. 1= one-tailed, 2 = two-tailed distribution"
-msgstr "Mode = 1 calcule le test unilatéral ; mode = 2 calcule le test bilatéral"
+msgid "Mode specifies the number of distribution tails to return. 1 = one-tailed, 2 = two-tailed distribution"
+msgstr "Mode indique le nombre de latéralité de la distribution à renvoyer. 1 calcule le test unilatéral ; mode = 2 calcule le test bilatéral"
#: sc/inc/scfuncs.hrc:3011
msgctxt "SC_OPCODE_T_TEST"
@@ -10533,7 +10538,7 @@ msgstr "Mode"
#: sc/inc/scfuncs.hrc:3024
msgctxt "SC_OPCODE_T_TEST_MS"
-msgid "Mode specifies the number of distribution tails to return. 1= one-tailed, 2 = two-tailed distribution"
+msgid "Mode specifies the number of distribution tails to return. 1 = one-tailed, 2 = two-tailed distribution"
msgstr "Mode indique le nombre de latéralité de la distribution à renvoyer. 1 calcule le test unilatéral ; mode = 2 calcule le test bilatéral"
#: sc/inc/scfuncs.hrc:3025
@@ -18020,22 +18025,22 @@ msgctxt "mergecellsdialog|MergeCellsDialog"
msgid "Merge Cells"
msgstr "Fusionner les cellules"
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:81
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:84
msgctxt "mergecellsdialog|label"
msgid "Some cells are not empty."
msgstr "Quelques cellules ne sont pas vides."
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:96
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:99
msgctxt "mergecellsdialog|move-cells-radio"
msgid "Move the contents of the hidden cells into the first cell"
msgstr "Déplacer le contenu des cellules cachées dans la première cellule"
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:112
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:115
msgctxt "mergecellsdialog|empty-cells-radio"
msgid "Empty the contents of the hidden cells"
msgstr "Vider le contenu des cellules cachées"
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:128
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:131
msgctxt "mergecellsdialog|keep-content-radio"
msgid "Keep the contents of the hidden cells"
msgstr "Conserver le contenu des cellules cachées"
@@ -18303,12 +18308,12 @@ msgstr "_Vérifier les mises à jour..."
#: sc/uiconfig/scalc/ui/notebookbar.ui:1952
msgctxt "notebookbar|FileLabel"
msgid "_File"
-msgstr ""
+msgstr "_Fichier"
#: sc/uiconfig/scalc/ui/notebookbar.ui:1971
msgctxt "notebookbar|HelpMenuButton"
msgid "_Help"
-msgstr ""
+msgstr "_Aide"
#: sc/uiconfig/scalc/ui/notebookbar.ui:2769
msgctxt "notebookbar|FileLabel"
@@ -18334,7 +18339,7 @@ msgstr "Diminuer le retrait"
#: sc/uiconfig/scalc/ui/notebookbar.ui:4436
msgctxt "notebookbar|HomeMenuButton"
msgid "_Home"
-msgstr ""
+msgstr "_Origine"
#: sc/uiconfig/scalc/ui/notebookbar.ui:4544
msgctxt "notebookbar|CalcLabel"
@@ -18344,12 +18349,12 @@ msgstr "Origine"
#: sc/uiconfig/scalc/ui/notebookbar.ui:4991
msgctxt "notebookbar|FieldMenuButton"
msgid "Fiel_d"
-msgstr ""
+msgstr "_Champ"
#: sc/uiconfig/scalc/ui/notebookbar.ui:5496
msgctxt "notebookbar|InsertMenuButton"
msgid "_Insert"
-msgstr ""
+msgstr "_Insérer"
#: sc/uiconfig/scalc/ui/notebookbar.ui:5581
msgctxt "notebookbar|InsertLabel"
@@ -18359,7 +18364,7 @@ msgstr "Insérer"
#: sc/uiconfig/scalc/ui/notebookbar.ui:5610
msgctxt "notebookbar|reviewb"
msgid "Pag_e"
-msgstr ""
+msgstr "Pag_e"
#: sc/uiconfig/scalc/ui/notebookbar.ui:6335
msgctxt "notebookbar|PageLayoutLabel"
@@ -18374,7 +18379,7 @@ msgstr "_Statistiques"
#: sc/uiconfig/scalc/ui/notebookbar.ui:7304
msgctxt "notebookbar|DataMenuButton"
msgid "_Data"
-msgstr ""
+msgstr "_Données"
#: sc/uiconfig/scalc/ui/notebookbar.ui:7412
msgctxt "notebookbar|DataLabel"
@@ -18384,7 +18389,7 @@ msgstr "Données"
#: sc/uiconfig/scalc/ui/notebookbar.ui:8035
msgctxt "notebookbar|ReviewMenuButton"
msgid "_Review"
-msgstr ""
+msgstr "_Révision"
#: sc/uiconfig/scalc/ui/notebookbar.ui:8120
msgctxt "notebookbar|ReviewLabel"
@@ -18394,7 +18399,7 @@ msgstr "Révision"
#: sc/uiconfig/scalc/ui/notebookbar.ui:8896
msgctxt "notebookbar|ViewMenuButton"
msgid "_View"
-msgstr ""
+msgstr "_Affichage"
#: sc/uiconfig/scalc/ui/notebookbar.ui:8981
msgctxt "notebookbar|ViewLabel"
@@ -18404,7 +18409,7 @@ msgstr "Afficher"
#: sc/uiconfig/scalc/ui/notebookbar.ui:9008
msgctxt "notebookbar|GraphicMenuButton"
msgid "_Graphic"
-msgstr ""
+msgstr "_Image"
#: sc/uiconfig/scalc/ui/notebookbar.ui:9949
msgctxt "notebookbar|ImageLabel"
@@ -18414,12 +18419,12 @@ msgstr "Image"
#: sc/uiconfig/scalc/ui/notebookbar.ui:11228
msgctxt "notebookbar|DrawMenuButton"
msgid "D_raw"
-msgstr ""
+msgstr "Dessine_r"
#: sc/uiconfig/scalc/ui/notebookbar.ui:11340
msgctxt "notebookbar|DrawLabel"
msgid "Draw"
-msgstr ""
+msgstr "Dessiner"
#: sc/uiconfig/scalc/ui/notebookbar.ui:11993
msgctxt "notebookbar|frame:MenuDraw"
@@ -18434,12 +18439,12 @@ msgstr "Objet"
#: sc/uiconfig/scalc/ui/notebookbar.ui:12113
msgctxt "notebookbar|ToolsMenuButton"
msgid "_Tools"
-msgstr ""
+msgstr "_Outils"
#: sc/uiconfig/scalc/ui/notebookbar.ui:13250
msgctxt "notebookbar|DevLabel"
msgid "Tools"
-msgstr ""
+msgstr "Outils"
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:2945
msgctxt "notebookbar_groupedbar_compact|Menu"
diff --git a/source/fr/scp2/source/ooo.po b/source/fr/scp2/source/ooo.po
index ba2dc573698..aa51a1dcaf5 100644
--- a/source/fr/scp2/source/ooo.po
+++ b/source/fr/scp2/source/ooo.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: 2018-05-23 23:20+0200\n"
-"PO-Revision-Date: 2017-11-22 17:55+0000\n"
-"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
+"PO-Revision-Date: 2018-05-28 19:51+0000\n"
+"Last-Translator: Jean-Baptiste Faure <jbfaure@libreoffice.org>\n"
"Language-Team: ll.org\n"
"Language: fr\n"
"MIME-Version: 1.0\n"
@@ -13,9 +13,9 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Pootle 2.8\n"
"X-Project-Style: openoffice\n"
-"X-POOTLE-MTIME: 1511373309.000000\n"
+"X-POOTLE-MTIME: 1527537063.000000\n"
#: folderitem_ooo.ulf
msgctxt ""
@@ -1887,7 +1887,7 @@ msgctxt ""
"STR_NAME_MODULE_LANGPACK_FY\n"
"LngText.text"
msgid "Frisian"
-msgstr ""
+msgstr "Frison"
#: module_langpack.ulf
msgctxt ""
@@ -1895,7 +1895,7 @@ msgctxt ""
"STR_DESC_MODULE_LANGPACK_FY\n"
"LngText.text"
msgid "Installs the Frisian user interface"
-msgstr ""
+msgstr "Installe l'interface utilisateur en frison"
#: module_langpack.ulf
msgctxt ""
diff --git a/source/fr/sd/messages.po b/source/fr/sd/messages.po
index c82b8667c1c..bf93fcdc756 100644
--- a/source/fr/sd/messages.po
+++ b/source/fr/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: 2018-05-22 13:16+0200\n"
-"PO-Revision-Date: 2018-05-21 09:32+0000\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
+"PO-Revision-Date: 2018-05-28 20:38+0000\n"
"Last-Translator: Jean-Baptiste Faure <jbfaure@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: fr\n"
@@ -14,169 +14,169 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1526895162.000000\n"
+"X-POOTLE-MTIME: 1527539889.000000\n"
-#: sd/inc/DocumentRenderer.hrc:29
+#: sd/inc/DocumentRenderer.hrc:27
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Slides"
msgstr "Diapos"
-#: sd/inc/DocumentRenderer.hrc:30
+#: sd/inc/DocumentRenderer.hrc:28
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Handouts"
msgstr "Prospectus"
-#: sd/inc/DocumentRenderer.hrc:31
+#: sd/inc/DocumentRenderer.hrc:29
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Notes"
msgstr "Notes"
-#: sd/inc/DocumentRenderer.hrc:32
+#: sd/inc/DocumentRenderer.hrc:30
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Outline"
msgstr "Plan"
-#: sd/inc/DocumentRenderer.hrc:37
+#: sd/inc/DocumentRenderer.hrc:35
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "According to layout"
msgstr "Selon la mise en page"
-#: sd/inc/DocumentRenderer.hrc:38
+#: sd/inc/DocumentRenderer.hrc:36
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "1"
msgstr "1"
-#: sd/inc/DocumentRenderer.hrc:39
+#: sd/inc/DocumentRenderer.hrc:37
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "2"
msgstr "2"
-#: sd/inc/DocumentRenderer.hrc:40
+#: sd/inc/DocumentRenderer.hrc:38
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "3"
msgstr "3"
-#: sd/inc/DocumentRenderer.hrc:41
+#: sd/inc/DocumentRenderer.hrc:39
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "4"
msgstr "4"
-#: sd/inc/DocumentRenderer.hrc:42
+#: sd/inc/DocumentRenderer.hrc:40
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "6"
msgstr "6"
-#: sd/inc/DocumentRenderer.hrc:43
+#: sd/inc/DocumentRenderer.hrc:41
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "9"
msgstr "9"
-#: sd/inc/DocumentRenderer.hrc:48
+#: sd/inc/DocumentRenderer.hrc:46
msgctxt "STR_IMPRESS_PRINT_UI_ORDER_CHOICES"
msgid "Left to right, then down"
msgstr "De gauche à droite, puis vers le bas"
-#: sd/inc/DocumentRenderer.hrc:49
+#: sd/inc/DocumentRenderer.hrc:47
msgctxt "STR_IMPRESS_PRINT_UI_ORDER_CHOICES"
msgid "Top to bottom, then right"
msgstr "De haut en bas, puis vers la droite"
-#: sd/inc/DocumentRenderer.hrc:54
+#: sd/inc/DocumentRenderer.hrc:52
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Original colors"
msgstr "Couleurs d'origine"
-#: sd/inc/DocumentRenderer.hrc:55
+#: sd/inc/DocumentRenderer.hrc:53
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Grayscale"
msgstr "Niveaux de gris"
-#: sd/inc/DocumentRenderer.hrc:56
+#: sd/inc/DocumentRenderer.hrc:54
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Black & white"
msgstr "Noir & blanc"
-#: sd/inc/DocumentRenderer.hrc:61
+#: sd/inc/DocumentRenderer.hrc:59
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Original size"
msgstr "Taille d'origine"
-#: sd/inc/DocumentRenderer.hrc:62
+#: sd/inc/DocumentRenderer.hrc:60
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Fit to printable page"
msgstr "Adapter à la page imprimable"
-#: sd/inc/DocumentRenderer.hrc:63
+#: sd/inc/DocumentRenderer.hrc:61
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Distribute on multiple sheets of paper"
msgstr "Répartir sur plusieurs feuilles de papier"
-#: sd/inc/DocumentRenderer.hrc:64
+#: sd/inc/DocumentRenderer.hrc:62
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Tile sheet of paper with repeated slides"
msgstr "Remplir la feuille de papier avec des diapos répétées"
-#: sd/inc/DocumentRenderer.hrc:69
+#: sd/inc/DocumentRenderer.hrc:67
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Original size"
msgstr "Taille d'origine"
-#: sd/inc/DocumentRenderer.hrc:70
+#: sd/inc/DocumentRenderer.hrc:68
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Fit to printable page"
msgstr "Adapter à la page imprimable"
-#: sd/inc/DocumentRenderer.hrc:71
+#: sd/inc/DocumentRenderer.hrc:69
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Distribute on multiple sheets of paper"
msgstr "Répartir sur plusieurs feuilles de papier"
-#: sd/inc/DocumentRenderer.hrc:72
+#: sd/inc/DocumentRenderer.hrc:70
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Tile sheet of paper with repeated pages"
msgstr "Remplir la feuille de papier avec des pages répétées"
-#: sd/inc/DocumentRenderer.hrc:77
+#: sd/inc/DocumentRenderer.hrc:75
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "All pages"
msgstr "Toutes les pages"
-#: sd/inc/DocumentRenderer.hrc:78
+#: sd/inc/DocumentRenderer.hrc:76
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "Front sides / right pages"
msgstr "Recto / pages de droite"
-#: sd/inc/DocumentRenderer.hrc:79
+#: sd/inc/DocumentRenderer.hrc:77
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "Back sides / left pages"
msgstr "Verso / pages de gauche"
-#: sd/inc/DocumentRenderer.hrc:84
+#: sd/inc/DocumentRenderer.hrc:82
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~All slides"
msgstr "~Toutes les diapos"
-#: sd/inc/DocumentRenderer.hrc:85
+#: sd/inc/DocumentRenderer.hrc:83
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~Slides"
msgstr "~Diapos"
-#: sd/inc/DocumentRenderer.hrc:86
+#: sd/inc/DocumentRenderer.hrc:84
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Se~lection"
msgstr "Sé~lection"
-#: sd/inc/DocumentRenderer.hrc:91
+#: sd/inc/DocumentRenderer.hrc:89
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~All pages"
msgstr "~Toutes les pages"
-#: sd/inc/DocumentRenderer.hrc:92
+#: sd/inc/DocumentRenderer.hrc:90
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Pa~ges"
msgstr "Pa~ges"
-#: sd/inc/DocumentRenderer.hrc:93
+#: sd/inc/DocumentRenderer.hrc:91
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Se~lection"
msgstr "Sé~lection"
@@ -1717,52 +1717,52 @@ msgstr "Objet sans remplissage et sans ligne"
#: sd/inc/strings.hrc:323
msgctxt "STR_POOLSHEET_FILLED"
msgid "Filled"
-msgstr ""
+msgstr "Plein"
#: sd/inc/strings.hrc:324
msgctxt "STR_POOLSHEET_FILLED_BLUE"
msgid "Filled Blue"
-msgstr ""
+msgstr "Plein bleu"
#: sd/inc/strings.hrc:325
msgctxt "STR_POOLSHEET_FILLED_GREEN"
msgid "Filled Green"
-msgstr ""
+msgstr "Plein vert"
#: sd/inc/strings.hrc:326
msgctxt "STR_POOLSHEET_FILLED_YELLOW"
msgid "Filled Yellow"
-msgstr ""
+msgstr "Plein jaune"
#: sd/inc/strings.hrc:327
msgctxt "STR_POOLSHEET_FILLED_RED"
msgid "Filled Red"
-msgstr ""
+msgstr "Plein rouge"
#: sd/inc/strings.hrc:329
msgctxt "STR_POOLSHEET_OUTLINE"
msgid "Outlined"
-msgstr ""
+msgstr "Contour"
#: sd/inc/strings.hrc:330
msgctxt "STR_POOLSHEET_OUTLINE_BLUE"
msgid "Outlined Blue"
-msgstr ""
+msgstr "Contour bleu"
#: sd/inc/strings.hrc:331
msgctxt "STR_POOLSHEET_OUTLINE_GREEN"
msgid "Outlined Green"
-msgstr ""
+msgstr "Contour vert"
#: sd/inc/strings.hrc:332
msgctxt "STR_POOLSHEET_OUTLINE_YELLOW"
msgid "Outlined Yellow"
-msgstr ""
+msgstr "Contour jaune"
#: sd/inc/strings.hrc:333
msgctxt "STR_POOLSHEET_OUTLINE_RED"
msgid "Outlined Red"
-msgstr ""
+msgstr "Contour rouge"
#: sd/inc/strings.hrc:335
msgctxt "STR_PSEUDOSHEET_TITLE"
@@ -3615,67 +3615,67 @@ msgstr "_Vérifier les mises à jour..."
#: sd/uiconfig/simpress/ui/notebookbar.ui:2422
msgctxt "notebookbar|FileLabel"
msgid "_File"
-msgstr ""
+msgstr "_Fichier"
#: sd/uiconfig/simpress/ui/notebookbar.ui:2441
msgctxt "notebookbar|HelpMenuButton"
msgid "_Help"
-msgstr ""
+msgstr "_Aide"
#: sd/uiconfig/simpress/ui/notebookbar.ui:3230
msgctxt "notebookbar|FileLabel"
msgid "File"
-msgstr ""
+msgstr "Fichier"
#: sd/uiconfig/simpress/ui/notebookbar.ui:3389
msgctxt "notebookbar|HomeMenuButton"
msgid "_Home"
-msgstr ""
+msgstr "_Origine"
#: sd/uiconfig/simpress/ui/notebookbar.ui:4846
msgctxt "notebookbar|HomeLabel"
msgid "Home"
-msgstr ""
+msgstr "Origine"
#: sd/uiconfig/simpress/ui/notebookbar.ui:5293
msgctxt "notebookbar|FieldMenuButton"
msgid "Fiel_d"
-msgstr ""
+msgstr "_Champ"
#: sd/uiconfig/simpress/ui/notebookbar.ui:5820
msgctxt "notebookbar|InsertMenuButton"
msgid "_Insert"
-msgstr ""
+msgstr "_Insérer"
#: sd/uiconfig/simpress/ui/notebookbar.ui:5905
msgctxt "notebookbar|InsertLabel"
msgid "Insert"
-msgstr ""
+msgstr "Insérer"
#: sd/uiconfig/simpress/ui/notebookbar.ui:5935
msgctxt "notebookbar|SlideMenuButton"
msgid "S_lide"
-msgstr ""
+msgstr "D_iapo"
#: sd/uiconfig/simpress/ui/notebookbar.ui:6688
msgctxt "notebookbar|LayoutLabel"
msgid "Slide"
-msgstr ""
+msgstr "Diapo"
#: sd/uiconfig/simpress/ui/notebookbar.ui:6716
msgctxt "notebookbar|SlideShowMenuButton"
msgid "_Slide Show"
-msgstr ""
+msgstr "_Diaporama"
#: sd/uiconfig/simpress/ui/notebookbar.ui:7194
msgctxt "notebookbar|ReferencesLabel"
msgid "Slide Show"
-msgstr ""
+msgstr "Diaporama"
#: sd/uiconfig/simpress/ui/notebookbar.ui:7222
msgctxt "notebookbar|ReviewMenuButton"
msgid "_Review"
-msgstr ""
+msgstr "_Relecture"
#: sd/uiconfig/simpress/ui/notebookbar.ui:7651
msgctxt "notebookbar|ReviewLabel"
@@ -3685,7 +3685,7 @@ msgstr "Révision"
#: sd/uiconfig/simpress/ui/notebookbar.ui:7679
msgctxt "notebookbar|ViewMenuButton"
msgid "_View"
-msgstr ""
+msgstr "_Affichage"
#: sd/uiconfig/simpress/ui/notebookbar.ui:8580
msgctxt "notebookbar|ViewLabel"
@@ -3695,7 +3695,7 @@ msgstr "Affichage"
#: sd/uiconfig/simpress/ui/notebookbar.ui:9369
msgctxt "notebookbar|TableMenuButton"
msgid "T_able"
-msgstr ""
+msgstr "T_ableau"
#: sd/uiconfig/simpress/ui/notebookbar.ui:9453
msgctxt "notebookbar|TableLabel"
@@ -3706,12 +3706,12 @@ msgstr "Tableau"
#: sd/uiconfig/simpress/ui/notebookbar.ui:11131
msgctxt "notebookbar|ConvertMenuButton"
msgid "Convert"
-msgstr ""
+msgstr "Convertir"
#: sd/uiconfig/simpress/ui/notebookbar.ui:10335
msgctxt "notebookbar|GraphicMenuButton"
msgid "_Graphic"
-msgstr ""
+msgstr "_Image"
#: sd/uiconfig/simpress/ui/notebookbar.ui:10447
msgctxt "notebookbar|ImageLabel"
@@ -3721,22 +3721,22 @@ msgstr "Image"
#: sd/uiconfig/simpress/ui/notebookbar.ui:11658
msgctxt "notebookbar|DrawMenuButton"
msgid "D_raw"
-msgstr ""
+msgstr "Dessine_r"
#: sd/uiconfig/simpress/ui/notebookbar.ui:11772
msgctxt "notebookbar|DrawLabel"
msgid "Draw"
-msgstr ""
+msgstr "Dessiner"
#: sd/uiconfig/simpress/ui/notebookbar.ui:11804
msgctxt "notebookbar|ToolsMenuButton"
msgid "_Tools"
-msgstr ""
+msgstr "_Outils"
#: sd/uiconfig/simpress/ui/notebookbar.ui:12758
msgctxt "notebookbar|DevLabel"
msgid "Tools"
-msgstr ""
+msgstr "Outils"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:1922
msgctxt "notebookbar_groupedbar_compact|Menu"
diff --git a/source/fr/svx/messages.po b/source/fr/svx/messages.po
index a20f5d282d7..0034d927d76 100644
--- a/source/fr/svx/messages.po
+++ b/source/fr/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: 2018-05-16 16:53+0200\n"
-"PO-Revision-Date: 2018-05-21 09:55+0000\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
+"PO-Revision-Date: 2018-06-05 05:14+0000\n"
"Last-Translator: Jean-Baptiste Faure <jbfaure@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: fr\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1526896504.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1528175644.000000\n"
#: svx/inc/fieldunit.hrc:30
msgctxt "RID_SVXSTR_FIELDUNIT_TABLE"
@@ -5179,8 +5179,8 @@ msgstr "Vous pouvez également inclure les parties pertinentes du profil utilisa
#: svx/uiconfig/ui/safemodedialog.ui:432
msgctxt "safemodedialog|btn_create_zip"
-msgid "Create Zip Archive from User Profile"
-msgstr "Créer une archive Zip du profil utilisateur"
+msgid "Archive User Profile"
+msgstr "Archiver le profil utilisateur"
#: svx/uiconfig/ui/safemodedialog.ui:445
msgctxt "safemodedialog|linkbutton_profile"
@@ -8769,9 +8769,9 @@ msgid "Red"
msgstr "Rouge"
#: include/svx/strings.hrc:565
-msgctxt "RID_SVXSTR_COLOR_VIOLET"
-msgid "Violet"
-msgstr "Violet"
+msgctxt "RID_SVXSTR_COLOR_MAGENTA"
+msgid "Magenta"
+msgstr "Magenta"
#: include/svx/strings.hrc:566
msgctxt "RID_SVXSTR_COLOR_PURPLE"
@@ -8835,9 +8835,9 @@ msgid "Light Red"
msgstr "Rouge clair"
#: include/svx/strings.hrc:579
-msgctxt "RID_SVXSTR_COLOR_LIGHTVIOLET"
-msgid "Light Violet"
-msgstr "Violet clair"
+msgctxt "RID_SVXSTR_COLOR_LIGHTMAGENTA"
+msgid "Light Magenta"
+msgstr "Magenta clair"
#: include/svx/strings.hrc:580
msgctxt "RID_SVXSTR_COLOR_LIGHTPURPLE"
@@ -8901,9 +8901,9 @@ msgid "Dark Red"
msgstr "Rouge foncé"
#: include/svx/strings.hrc:593
-msgctxt "RID_SVXSTR_COLOR_DARKVIOLET1"
-msgid "Dark Violet"
-msgstr "Violet foncé"
+msgctxt "RID_SVXSTR_COLOR_DARKMAGENTA"
+msgid "Dark Magenta"
+msgstr "Magenta foncé"
#: include/svx/strings.hrc:594
msgctxt "RID_SVXSTR_COLOR_DARKPURPLE"
@@ -8937,55 +8937,55 @@ msgstr "Citron vert foncé"
#. Elements of the Tonal color palette
#: include/svx/strings.hrc:601
+msgctxt "RID_SVXSTR_COLOR_VIOLET"
+msgid "Violet"
+msgstr "Violet"
+
+#: include/svx/strings.hrc:602
msgctxt "RID_SVXSTR_COLOR_VIOLET_OUG"
msgid "Violet (Out of Gamut)"
msgstr "Violet (Hors Gamut)"
-#: include/svx/strings.hrc:602
+#: include/svx/strings.hrc:603
msgctxt "RID_SVXSTR_COLOR_BLUE_OUG"
msgid "Blue (Out of Gamut)"
msgstr "Bleu (Hors Gamut)"
-#: include/svx/strings.hrc:603
+#: include/svx/strings.hrc:604
msgctxt "RID_SVXSTR_COLOR_AZURE_OUG"
msgid "Azure (Out of Gamut)"
msgstr "Bleu azur (Hors Gamut)"
-#: include/svx/strings.hrc:604
+#: include/svx/strings.hrc:605
msgctxt "RID_SVXSTR_COLOR_SPRINGGREEN_OUG"
msgid "Spring Green (Out of Gamut)"
msgstr "Vert printemps (Hors Gamut)"
-#: include/svx/strings.hrc:605
+#: include/svx/strings.hrc:606
msgctxt "RID_SVXSTR_COLOR_GREEN_OUG"
msgid "Green (Out of Gamut)"
msgstr "Vert (Hors Gamut)"
-#: include/svx/strings.hrc:606
+#: include/svx/strings.hrc:607
msgctxt "RID_SVXSTR_COLOR_CHARTREUSEGREEN_OUG"
msgid "Chartreuse Green (Out of Gamut)"
msgstr "Chartreuse (Hors Gamut)"
-#: include/svx/strings.hrc:607
+#: include/svx/strings.hrc:608
msgctxt "RID_SVXSTR_COLOR_ORANGE_OUG"
msgid "Orange (Out of Gamut)"
msgstr "Orange (Hors Gamut)"
-#: include/svx/strings.hrc:608
+#: include/svx/strings.hrc:609
msgctxt "RID_SVXSTR_COLOR_RED_OUG"
msgid "Red (Out of Gamut)"
msgstr "Rouge (Hors Gamut)"
-#: include/svx/strings.hrc:609
+#: include/svx/strings.hrc:610
msgctxt "RID_SVXSTR_COLOR_ROSE_OUG"
msgid "Rose (Out of Gamut)"
msgstr "Rose (Hors Gamut)"
-#: include/svx/strings.hrc:610
-msgctxt "RID_SVXSTR_COLOR_MAGENTA"
-msgid "Magenta"
-msgstr "Magenta"
-
#: include/svx/strings.hrc:611
msgctxt "RID_SVXSTR_COLOR_AZURE"
msgid "Azure"
@@ -9638,7 +9638,7 @@ msgstr "Brume de Londres"
#: include/svx/strings.hrc:752
msgctxt "RID_SVXSTR_GRDT76"
msgid "Teal to Blue"
-msgstr "Sarcelle à bleu"
+msgstr "Gris à bleu"
#: include/svx/strings.hrc:753
msgctxt "RID_SVXSTR_GRDT77"
@@ -12091,13 +12091,13 @@ msgstr "Puces flèche pointant vers la droite"
#: include/svx/strings.hrc:1273
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_6"
-msgid "Check mark bullets"
-msgstr "Puces en forme de coche"
+msgid "Cross mark bullets"
+msgstr "Puces en forme de croix"
#: include/svx/strings.hrc:1274
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_7"
-msgid "Tick mark bullets"
-msgstr "Puces en forme de marque de graduation"
+msgid "Check mark bullets"
+msgstr "Puces en forme de coche"
#: include/svx/strings.hrc:1275
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_0"
diff --git a/source/fr/sw/messages.po b/source/fr/sw/messages.po
index 57f760e175b..184a8f26df6 100644
--- a/source/fr/sw/messages.po
+++ b/source/fr/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: 2018-05-22 13:17+0200\n"
-"PO-Revision-Date: 2018-05-21 10:06+0000\n"
+"POT-Creation-Date: 2018-06-12 14:41+0200\n"
+"PO-Revision-Date: 2018-06-05 05:18+0000\n"
"Last-Translator: Jean-Baptiste Faure <jbfaure@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: fr\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1526897205.000000\n"
+"X-POOTLE-MTIME: 1528175910.000000\n"
#: sw/inc/app.hrc:29
msgctxt "RID_PARAGRAPHSTYLEFAMILY"
@@ -1180,13 +1180,13 @@ msgstr "Citation"
#: sw/inc/strings.hrc:172
msgctxt "STR_POOLCOLL_TOX_ILLUSH"
-msgid "Illustration Index Heading"
-msgstr "Titre de l'index des illustrations"
+msgid "Figure Index Heading"
+msgstr ""
#: sw/inc/strings.hrc:173
msgctxt "STR_POOLCOLL_TOX_ILLUS1"
-msgid "Illustration Index 1"
-msgstr "Index des illustrations 1"
+msgid "Figure Index 1"
+msgstr ""
#: sw/inc/strings.hrc:174
msgctxt "STR_POOLCOLL_TOX_OBJECTH"
@@ -3590,8 +3590,8 @@ msgstr "Index des objets"
#: sw/inc/strings.hrc:672
msgctxt "STR_TOX_ILL"
-msgid "Illustration Index"
-msgstr "Index des illustrations"
+msgid "Table of Figures"
+msgstr ""
#: sw/inc/strings.hrc:673
#, c-format
@@ -9244,72 +9244,72 @@ msgctxt "footnotepage|label5"
msgid "Continuation Notice"
msgstr "Indication de suite"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:49
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:55
msgctxt "footnotesendnotestabpage|ftnntnum"
msgid "_Restart numbering"
msgstr "_Recommencer la numérotation"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:91
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:93
msgctxt "footnotesendnotestabpage|ftnoffset_label"
msgid "_Start at:"
msgstr "_Commencer avec :"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:112
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:111
msgctxt "footnotesendnotestabpage|ftnntnumfmt"
msgid "Custom _format"
msgstr "_Format personnalisé"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:155
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:150
msgctxt "footnotesendnotestabpage|ftnsuffix_label"
msgid "Aft_er:"
msgstr "_Après :"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:199
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:188
msgctxt "footnotesendnotestabpage|ftnprefix_label"
msgid "Be_fore:"
msgstr "A_vant :"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:228
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:212
msgctxt "footnotesendnotestabpage|ftnntattextend"
msgid "Collec_t at end of text"
msgstr "Regrouper en _fin de texte"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:252
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:234
msgctxt "footnotesendnotestabpage|label1"
msgid "Footnotes"
msgstr "Notes de bas de page"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:289
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:271
msgctxt "footnotesendnotestabpage|endntattextend"
msgid "C_ollect at end of section"
msgstr "Regrouper en _fin de section"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:315
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:295
msgctxt "footnotesendnotestabpage|endntnum"
msgid "_Restart numbering"
msgstr "_Recommencer la numérotation"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:357
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:333
msgctxt "footnotesendnotestabpage|endoffset_label"
msgid "_Start at:"
msgstr "_Commencer avec :"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:378
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:351
msgctxt "footnotesendnotestabpage|endntnumfmt"
msgid "_Custom format"
msgstr "Format _personnalisé"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:421
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:390
msgctxt "footnotesendnotestabpage|endsuffix_label"
msgid "Aft_er:"
msgstr "_Après :"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:465
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:428
msgctxt "footnotesendnotestabpage|endprefix_label"
msgid "Be_fore:"
msgstr "A_vant :"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:500
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:458
msgctxt "footnotesendnotestabpage|label2"
msgid "Endnotes"
msgstr "Notes de fin"
@@ -9339,27 +9339,27 @@ msgctxt "formatsectiondialog|notes"
msgid "Footnotes/Endnotes"
msgstr "Notes de bas de page/de fin"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:63
+#: sw/uiconfig/swriter/ui/formattablepage.ui:77
msgctxt "formattablepage|nameft"
msgid "_Name"
msgstr "_Nom"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:79
+#: sw/uiconfig/swriter/ui/formattablepage.ui:91
msgctxt "formattablepage|widthft"
msgid "W_idth"
msgstr "L_argeur"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:110
+#: sw/uiconfig/swriter/ui/formattablepage.ui:120
msgctxt "formattablepage|relwidth"
msgid "Relati_ve"
msgstr "_Relatif"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:155
+#: sw/uiconfig/swriter/ui/formattablepage.ui:160
msgctxt "formattablepage|label45"
msgid "Properties"
msgstr "Propriétés"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:194
+#: sw/uiconfig/swriter/ui/formattablepage.ui:195
msgctxt "formattablepage|leftft"
msgid "Lef_t"
msgstr "À _gauche"
@@ -9369,62 +9369,62 @@ msgctxt "formattablepage|rightft"
msgid "Ri_ght"
msgstr "À d_roite"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:228
+#: sw/uiconfig/swriter/ui/formattablepage.ui:226
msgctxt "formattablepage|aboveft"
msgid "_Above"
msgstr "_Au-dessus"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:245
+#: sw/uiconfig/swriter/ui/formattablepage.ui:241
msgctxt "formattablepage|belowft"
msgid "_Below"
msgstr "En _dessous"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:320
+#: sw/uiconfig/swriter/ui/formattablepage.ui:311
msgctxt "formattablepage|label46"
msgid "Spacing"
msgstr "Espacement"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:362
+#: sw/uiconfig/swriter/ui/formattablepage.ui:349
msgctxt "formattablepage|full"
msgid "A_utomatic"
msgstr "_Automatique"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:380
+#: sw/uiconfig/swriter/ui/formattablepage.ui:365
msgctxt "formattablepage|left"
msgid "_Left"
msgstr "À _gauche"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:398
+#: sw/uiconfig/swriter/ui/formattablepage.ui:381
msgctxt "formattablepage|fromleft"
msgid "_From left"
msgstr "De la _gauche"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:416
+#: sw/uiconfig/swriter/ui/formattablepage.ui:397
msgctxt "formattablepage|right"
msgid "R_ight"
msgstr "À _droite"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:435
+#: sw/uiconfig/swriter/ui/formattablepage.ui:413
msgctxt "formattablepage|center"
msgid "_Center"
msgstr "_Centrer"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:453
+#: sw/uiconfig/swriter/ui/formattablepage.ui:429
msgctxt "formattablepage|free"
msgid "_Manual"
msgstr "_Manuel"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:478
+#: sw/uiconfig/swriter/ui/formattablepage.ui:452
msgctxt "formattablepage|label43"
msgid "Alignment"
msgstr "Alignement"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:522
+#: sw/uiconfig/swriter/ui/formattablepage.ui:491
msgctxt "formattablepage|label53"
msgid "Text _direction"
msgstr "_Orientation du texte"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:553
+#: sw/uiconfig/swriter/ui/formattablepage.ui:519
msgctxt "formattablepage|label44"
msgid "Properties "
msgstr "Propriétés"
@@ -9779,22 +9779,27 @@ msgctxt "headerfootermenu|insert_pagenumber"
msgid "Insert Page Number"
msgstr "Insérer un numéro de page"
-#: sw/uiconfig/swriter/ui/indentpage.ui:52
+#: sw/uiconfig/swriter/ui/headerfootermenu.ui:42
+msgctxt "headerfootermenu|insert_pagecount"
+msgid "Insert Page Count"
+msgstr "Insérer le nombre de pages"
+
+#: sw/uiconfig/swriter/ui/indentpage.ui:57
msgctxt "indentpage|label1"
msgid "_Before section"
msgstr "Avant _la section"
-#: sw/uiconfig/swriter/ui/indentpage.ui:67
+#: sw/uiconfig/swriter/ui/indentpage.ui:71
msgctxt "indentpage|label3"
msgid "_After section"
msgstr "_Après la section"
-#: sw/uiconfig/swriter/ui/indentpage.ui:113
+#: sw/uiconfig/swriter/ui/indentpage.ui:115
msgctxt "indentpage|label2"
msgid "Indent"
msgstr "Retrait"
-#: sw/uiconfig/swriter/ui/indentpage.ui:142
+#: sw/uiconfig/swriter/ui/indentpage.ui:155
msgctxt "indentpage|preview-atkobject"
msgid "Example"
msgstr "Exemple"
@@ -11912,7 +11917,7 @@ msgstr "_Vérifier les mises à jours..."
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:2007
msgctxt "notebookbar_compact|FileMenuButton"
msgid "_File"
-msgstr ""
+msgstr "_Fichier"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:2721
msgctxt "notebookbar_compact|FileLabel"
@@ -11922,7 +11927,7 @@ msgstr "Fichier"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:2770
msgctxt "notebookbar_compact|HomeMenuButton"
msgid "_Menu"
-msgstr ""
+msgstr "_Menu"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3829
msgctxt "notebookbar_compact|HomeLabel"
@@ -11932,7 +11937,7 @@ msgstr "Origine"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3882
msgctxt "notebookbar_compact|InsertMenuButton"
msgid "_Insert"
-msgstr ""
+msgstr "_Insérer"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4501
msgctxt "notebookbar_compact|InsertLabel"
@@ -11950,7 +11955,7 @@ msgstr "Adaptation"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5221
msgctxt "notebookbar_compact|PageMenuButton"
msgid "Pag_e"
-msgstr ""
+msgstr "Pag_e"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5273
msgctxt "notebookbar_compact|LayoutLabel"
@@ -11960,7 +11965,7 @@ msgstr "Mise en page"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5320
msgctxt "notebookbar_compact|ReferencesMenuButton"
msgid "Reference_s"
-msgstr ""
+msgstr "Référence_s"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5708
msgctxt "notebookbar_compact|ReferencesLabel"
@@ -11970,7 +11975,7 @@ msgstr "Références"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6204
msgctxt "notebookbar_compact|ReviewMenuButton"
msgid "_Review"
-msgstr ""
+msgstr "_Réviser"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6237
msgctxt "notebookbar_compact|ReviewLabel"
@@ -11980,7 +11985,7 @@ msgstr "Révision"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6706
msgctxt "notebookbar_compact|ViewMenuButton"
msgid "_View"
-msgstr ""
+msgstr "_Afficher"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6758
msgctxt "notebookbar_compact|ViewLabel"
@@ -11990,7 +11995,7 @@ msgstr "Affichage"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6806
msgctxt "notebookbar_compact|TableMenuButton"
msgid "T_able"
-msgstr ""
+msgstr "T_ableau"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7540
msgctxt "notebookbar_compact|TableLabel"
@@ -12007,7 +12012,7 @@ msgstr "A_ligner"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8291
msgctxt "notebookbar_compact|GraphicMenuButton"
msgid "_Graphic"
-msgstr ""
+msgstr "_Image"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8324
msgctxt "notebookbar_compact|ImageLabel"
@@ -12017,7 +12022,7 @@ msgstr "Image"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9070
msgctxt "notebookbar_compact|DrawMenuButton"
msgid "D_raw"
-msgstr ""
+msgstr "Dra_w"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9125
msgctxt "notebookbar_compact|ShapeLabel"
@@ -12027,7 +12032,7 @@ msgstr "Dessiner"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9651
msgctxt "notebookbar_compact|ObjectMenuButton:MenuDraw"
msgid "Object"
-msgstr ""
+msgstr "Objet"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9707
msgctxt "notebookbar_compact|FrameLabel"
@@ -12037,7 +12042,7 @@ msgstr "Objet"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9757
msgctxt "notebookbar_compact|ToolsMenuButton"
msgid "_Tools"
-msgstr ""
+msgstr "_Outils"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10600
msgctxt "notebookbar_compact|DevLabel"
@@ -13285,7 +13290,7 @@ msgstr "Protéger le formulaire"
#: sw/uiconfig/swriter/ui/optcompatpage.ui:68
msgctxt "optcompatpage|format"
-msgid "MS Word-compatible trailing blanks"
+msgid "Word-compatible trailing blanks"
msgstr "Espaces compatibles MS Word"
#: sw/uiconfig/swriter/ui/optcompatpage.ui:69
@@ -13295,8 +13300,8 @@ msgstr "Tolérer les lignes blanches de l'arrière plan des pages du PDF a fin d
#: sw/uiconfig/swriter/ui/optcompatpage.ui:70
msgctxt "optcompatpage|format"
-msgid "A database field (e.g., MailMerge) with empty value hides its paragraph"
-msgstr ""
+msgid "Hide paragraphs of database fields (e.g., mail merge) with an empty value"
+msgstr "Masquer les paragraphes de champs de base de données (par ex. mailing) avec une valeur vide"
#: sw/uiconfig/swriter/ui/optcompatpage.ui:71
msgctxt "optcompatpage|format"
@@ -15981,122 +15986,122 @@ msgctxt "tableproperties|background"
msgid "Background"
msgstr "Arrière-plan"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:25
-msgctxt "tabletextflowpage|liststore1"
-msgid "Horizontal"
-msgstr "Horizontal"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:29
-msgctxt "tabletextflowpage|liststore1"
-msgid "Vertical"
-msgstr "Vertical"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:33
-msgctxt "tabletextflowpage|liststore1"
-msgid "Use superordinate object settings"
-msgstr "Utiliser les paramètres de l'objet supérieur"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:47
-msgctxt "tabletextflowpage|liststore2"
-msgid "Top"
-msgstr "Haut"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:51
-msgctxt "tabletextflowpage|liststore2"
-msgid "Centered"
-msgstr "Centré"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:55
-msgctxt "tabletextflowpage|liststore2"
-msgid "Bottom"
-msgstr "Bas"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:97
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:53
msgctxt "tabletextflowpage|break"
msgid "_Break"
msgstr "_Saut"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:112
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:68
msgctxt "tabletextflowpage|page"
msgid "_Page"
msgstr "_Page"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:132
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:87
msgctxt "tabletextflowpage|column"
msgid "Col_umn"
msgstr "Col_onne"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:151
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:106
msgctxt "tabletextflowpage|before"
msgid "Be_fore"
msgstr "A_vant"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:171
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:125
msgctxt "tabletextflowpage|after"
msgid "_After"
msgstr "A_près"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:203
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:158
msgctxt "tabletextflowpage|pagestyle"
msgid "With Page St_yle"
msgstr "Avec le st_yle de page"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:224
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:177
msgctxt "tabletextflowpage|pagenoft"
msgid "Page _number"
msgstr "Numér_o de page"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:257
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:213
msgctxt "tabletextflowpage|pagestylelb-atkobject"
msgid "With Page Style"
msgstr "Avec le style de page"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:274
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:230
msgctxt "tabletextflowpage|split"
msgid "Allow _table to split across pages and columns"
msgstr "Autoriser le _fractionnement des tableaux sur plusieurs pages et colonnes"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:289
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:245
msgctxt "tabletextflowpage|splitrow"
msgid "Allow row to break a_cross pages and columns"
msgstr "Autoriser le fra_ctionnement des lignes sur plusieurs pages et colonnes"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:306
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:262
msgctxt "tabletextflowpage|keep"
msgid "_Keep with next paragraph"
msgstr "_Conserver avec le paragraphe suivant"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:328
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:284
msgctxt "tabletextflowpage|label40"
msgid "Text _orientation"
msgstr "_Orientation du texte"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:361
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:298
+msgctxt "tabletextflowpage|liststore1"
+msgid "Horizontal"
+msgstr "Horizontal"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:299
+msgctxt "tabletextflowpage|liststore1"
+msgid "Vertical"
+msgstr "Vertical"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:300
+msgctxt "tabletextflowpage|liststore1"
+msgid "Use superordinate object settings"
+msgstr "Utiliser les paramètres de l'objet supérieur"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:321
msgctxt "tabletextflowpage|headline"
msgid "R_epeat heading"
msgstr "Répéter le _titre"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:383
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:343
msgctxt "tabletextflowpage|label38"
msgid "The first "
msgstr "Le premier"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:396
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:356
msgctxt "tabletextflowpage|label39"
msgid "rows"
msgstr "lignes"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:434
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:395
msgctxt "tabletextflowpage|label35"
msgid "Text Flow"
msgstr "Enchaînements"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:467
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:428
msgctxt "tabletextflowpage|label41"
msgid "_Vertical alignment"
msgstr "Alignement _vertical"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:495
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:442
+msgctxt "tabletextflowpage|liststore2"
+msgid "Top"
+msgstr "Haut"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:443
+msgctxt "tabletextflowpage|liststore2"
+msgid "Centered"
+msgstr "Centré"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:444
+msgctxt "tabletextflowpage|liststore2"
+msgid "Bottom"
+msgstr "Bas"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:460
msgctxt "tabletextflowpage|label36"
msgid "Alignment"
msgstr "Alignement"
@@ -16878,8 +16883,8 @@ msgstr "Index lexical"
#: sw/uiconfig/swriter/ui/tocindexpage.ui:58
msgctxt "tocindexpage|liststore1"
-msgid "Illustration Index"
-msgstr "Index des illustrations"
+msgid "Table of Figures"
+msgstr ""
#: sw/uiconfig/swriter/ui/tocindexpage.ui:62
msgctxt "tocindexpage|liststore1"
diff --git a/source/fr/writerperfect/messages.po b/source/fr/writerperfect/messages.po
index 9c7871efec6..0c2e2dd0f83 100644
--- a/source/fr/writerperfect/messages.po
+++ b/source/fr/writerperfect/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-16 16:54+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2018-05-08 15:22+0000\n"
"Last-Translator: Jean-Baptiste Faure <jbfaure@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -66,97 +66,97 @@ msgctxt "exportepub|generalft"
msgid "General"
msgstr "Général"
-#: writerperfect/uiconfig/ui/exportepub.ui:122
+#: writerperfect/uiconfig/ui/exportepub.ui:121
msgctxt "exportepub|versionft"
msgid "Version:"
msgstr "Version :"
-#: writerperfect/uiconfig/ui/exportepub.ui:139
+#: writerperfect/uiconfig/ui/exportepub.ui:138
msgctxt "exportepub|epub3"
msgid "EPUB 3.0"
msgstr "EPUB 3.0"
-#: writerperfect/uiconfig/ui/exportepub.ui:140
+#: writerperfect/uiconfig/ui/exportepub.ui:139
msgctxt "exportepub|epub2"
msgid "EPUB 2.0"
msgstr "EPUB 2.0"
-#: writerperfect/uiconfig/ui/exportepub.ui:175
+#: writerperfect/uiconfig/ui/exportepub.ui:174
msgctxt "exportepub|splitft"
msgid "Split method:"
msgstr "Méthode de scission :"
-#: writerperfect/uiconfig/ui/exportepub.ui:192
+#: writerperfect/uiconfig/ui/exportepub.ui:191
msgctxt "exportepub|splitpage"
msgid "Page break"
msgstr "Saut de page"
-#: writerperfect/uiconfig/ui/exportepub.ui:193
+#: writerperfect/uiconfig/ui/exportepub.ui:192
msgctxt "exportepub|splitheading"
msgid "Heading"
msgstr "En-tête"
-#: writerperfect/uiconfig/ui/exportepub.ui:228
+#: writerperfect/uiconfig/ui/exportepub.ui:227
msgctxt "exportepub|layoutft"
msgid "Layout method:"
msgstr "Méthode de mise en page :"
-#: writerperfect/uiconfig/ui/exportepub.ui:245
+#: writerperfect/uiconfig/ui/exportepub.ui:244
msgctxt "exportepub|layoutreflowable"
msgid "Reflowable"
msgstr "Refusion"
-#: writerperfect/uiconfig/ui/exportepub.ui:246
+#: writerperfect/uiconfig/ui/exportepub.ui:245
msgctxt "exportepub|layoutfixed"
msgid "Fixed"
msgstr "Fixé"
-#: writerperfect/uiconfig/ui/exportepub.ui:281
+#: writerperfect/uiconfig/ui/exportepub.ui:280
msgctxt "exportepub|coverimageft"
msgid "Custom cover image:"
msgstr "Image de couverture personnalisée :"
-#: writerperfect/uiconfig/ui/exportepub.ui:311
+#: writerperfect/uiconfig/ui/exportepub.ui:310
msgctxt "exportepub|coverbutton"
msgid "Browse..."
msgstr "Parcourir..."
-#: writerperfect/uiconfig/ui/exportepub.ui:355
+#: writerperfect/uiconfig/ui/exportepub.ui:354
msgctxt "exportepub|mediadirft"
msgid "Custom media directory:"
msgstr "Répertoire média personnalisé :"
-#: writerperfect/uiconfig/ui/exportepub.ui:385
+#: writerperfect/uiconfig/ui/exportepub.ui:384
msgctxt "exportepub|mediabutton"
msgid "Browse..."
msgstr "Parcourir..."
-#: writerperfect/uiconfig/ui/exportepub.ui:429
+#: writerperfect/uiconfig/ui/exportepub.ui:428
msgctxt "exportepub|metadataft"
msgid "Metadata"
msgstr "Métadonnées"
-#: writerperfect/uiconfig/ui/exportepub.ui:470
+#: writerperfect/uiconfig/ui/exportepub.ui:468
msgctxt "exportepub|identifierft"
msgid "Identifier:"
msgstr "Identifiant :"
-#: writerperfect/uiconfig/ui/exportepub.ui:485
+#: writerperfect/uiconfig/ui/exportepub.ui:483
msgctxt "exportepub|titleft"
msgid "Title:"
msgstr "Titre :"
-#: writerperfect/uiconfig/ui/exportepub.ui:511
+#: writerperfect/uiconfig/ui/exportepub.ui:509
msgctxt "exportepub|authorft"
msgid "Author:"
msgstr "Auteur :"
-#: writerperfect/uiconfig/ui/exportepub.ui:537
+#: writerperfect/uiconfig/ui/exportepub.ui:535
msgctxt "exportepub|languageft"
msgid "Language:"
msgstr "Langue :"
-#: writerperfect/uiconfig/ui/exportepub.ui:563
+#: writerperfect/uiconfig/ui/exportepub.ui:561
msgctxt "exportepub|dateft"
msgid "Date:"
msgstr "Date :"
diff --git a/source/fr/xmlsecurity/messages.po b/source/fr/xmlsecurity/messages.po
index 6bc3f0e0202..24a9a1bd5c0 100644
--- a/source/fr/xmlsecurity/messages.po
+++ b/source/fr/xmlsecurity/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: 2018-05-22 13:17+0200\n"
-"PO-Revision-Date: 2018-02-28 18:23+0000\n"
-"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
+"PO-Revision-Date: 2018-05-28 19:49+0000\n"
+"Last-Translator: Jean-Baptiste Faure <jbfaure@libreoffice.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: fr\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1519842203.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1527536951.000000\n"
#: xmlsecurity/inc/strings.hrc:25
msgctxt "STR_CERTIFICATE_NOT_VALIDATED"
@@ -460,7 +460,7 @@ msgstr "Signer"
#: xmlsecurity/uiconfig/ui/selectcertificatedialog.ui:194
msgctxt "selectcertificatedialog|str_selectsign"
msgid "Select"
-msgstr ""
+msgstr "Sélectionner"
#: xmlsecurity/uiconfig/ui/selectcertificatedialog.ui:199
msgctxt "selectcertificatedialog|str_encrypt"
diff --git a/source/fy/cui/messages.po b/source/fy/cui/messages.po
index 00a48a22569..e81b6b490b2 100644
--- a/source/fy/cui/messages.po
+++ b/source/fy/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: 2018-05-22 13:16+0200\n"
-"PO-Revision-Date: 2018-05-09 19:41+0000\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
+"PO-Revision-Date: 2018-05-31 17:31+0000\n"
"Last-Translator: Berend Ytsma <berendy@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: fy\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1525894892.000000\n"
+"X-POOTLE-MTIME: 1527787880.000000\n"
#: cui/inc/personalization.hrc:31
msgctxt "RID_SVXSTR_PERSONA_CATEGORIES"
@@ -3898,7 +3898,7 @@ msgstr "_M"
#: cui/uiconfig/ui/colorpage.ui:581
msgctxt "colorpage|label5"
msgid "Active"
-msgstr "Warber"
+msgstr "Aktyf"
#: cui/uiconfig/ui/colorpage.ui:627
msgctxt "colorpage|newpreview-atkobject"
@@ -5488,7 +5488,7 @@ msgstr "Nei efteren pleatst wurd negearje"
#: cui/uiconfig/ui/hangulhanjaoptdialog.ui:218
msgctxt "hangulhanjaoptdialog|showrecentfirst"
msgid "Show recently used entries first"
-msgstr "Koartlyn brûkte gegevens earst sjen litte"
+msgstr "Resint brûkte gegevens earst sjen litte"
#: cui/uiconfig/ui/hangulhanjaoptdialog.ui:233
msgctxt "hangulhanjaoptdialog|autoreplaceunique"
@@ -9872,97 +9872,97 @@ msgctxt "positionsizedialog|PositionAndSizeDialog"
msgid "Position and Size"
msgstr "Posysje en grutte"
-#: cui/uiconfig/ui/positionsizedialog.ui:107
+#: cui/uiconfig/ui/positionsizedialog.ui:136
msgctxt "positionsizedialog|RID_SVXPAGE_POSITION_SIZE"
msgid "Position and Size"
msgstr "Posysje en grutte"
-#: cui/uiconfig/ui/positionsizedialog.ui:129
+#: cui/uiconfig/ui/positionsizedialog.ui:182
msgctxt "positionsizedialog|RID_SVXPAGE_SWPOSSIZE"
msgid "Position and Size"
msgstr "Posysje en grutte"
-#: cui/uiconfig/ui/positionsizedialog.ui:152
+#: cui/uiconfig/ui/positionsizedialog.ui:229
msgctxt "positionsizedialog|RID_SVXPAGE_ANGLE"
msgid "Rotation"
msgstr "Rotaasje"
-#: cui/uiconfig/ui/positionsizedialog.ui:175
+#: cui/uiconfig/ui/positionsizedialog.ui:276
msgctxt "positionsizedialog|RID_SVXPAGE_SLANT"
msgid "Slant & Corner Radius"
msgstr "Helling & hoek radius"
-#: cui/uiconfig/ui/possizetabpage.ui:40
+#: cui/uiconfig/ui/possizetabpage.ui:61
msgctxt "possizetabpage|FT_POS_X"
msgid "Position _X:"
msgstr "Posysje _X:"
-#: cui/uiconfig/ui/possizetabpage.ui:56
+#: cui/uiconfig/ui/possizetabpage.ui:75
msgctxt "possizetabpage|FT_POS_Y"
msgid "Position _Y:"
msgstr "Posysje _Y:"
-#: cui/uiconfig/ui/possizetabpage.ui:110
+#: cui/uiconfig/ui/possizetabpage.ui:128
msgctxt "possizetabpage|FT_POSREFERENCE"
msgid "_Base point:"
msgstr "_Basispunt:"
-#: cui/uiconfig/ui/possizetabpage.ui:148
+#: cui/uiconfig/ui/possizetabpage.ui:182
msgctxt "possizetabpage|label1"
msgid "Position"
msgstr "Posysje"
-#: cui/uiconfig/ui/possizetabpage.ui:190
+#: cui/uiconfig/ui/possizetabpage.ui:224
msgctxt "possizetabpage|FT_WIDTH"
msgid "Wi_dth:"
msgstr "Bree_dte:"
-#: cui/uiconfig/ui/possizetabpage.ui:206
+#: cui/uiconfig/ui/possizetabpage.ui:238
msgctxt "possizetabpage|FT_HEIGHT"
msgid "H_eight:"
msgstr "H_ichte:"
-#: cui/uiconfig/ui/possizetabpage.ui:247
+#: cui/uiconfig/ui/possizetabpage.ui:276
msgctxt "possizetabpage|CBX_SCALE"
msgid "_Keep ratio"
msgstr "_Ferhâlding behâlde"
-#: cui/uiconfig/ui/possizetabpage.ui:279
+#: cui/uiconfig/ui/possizetabpage.ui:307
msgctxt "possizetabpage|FT_SIZEREFERENCE"
msgid "Base _point:"
msgstr "Basispunt:"
-#: cui/uiconfig/ui/possizetabpage.ui:317
+#: cui/uiconfig/ui/possizetabpage.ui:361
msgctxt "possizetabpage|label2"
msgid "Size"
msgstr "Grutte"
-#: cui/uiconfig/ui/possizetabpage.ui:356
+#: cui/uiconfig/ui/possizetabpage.ui:401
msgctxt "possizetabpage|TSB_POSPROTECT"
msgid "Positio_n"
msgstr "Posy_sje"
-#: cui/uiconfig/ui/possizetabpage.ui:373
+#: cui/uiconfig/ui/possizetabpage.ui:418
msgctxt "possizetabpage|TSB_SIZEPROTECT"
msgid "_Size"
msgstr "_Grutte"
-#: cui/uiconfig/ui/possizetabpage.ui:397
+#: cui/uiconfig/ui/possizetabpage.ui:441
msgctxt "possizetabpage|label3"
msgid "Protect"
msgstr "Befeiligje"
-#: cui/uiconfig/ui/possizetabpage.ui:430
+#: cui/uiconfig/ui/possizetabpage.ui:475
msgctxt "possizetabpage|TSB_AUTOGROW_WIDTH"
msgid "_Fit width to text"
msgstr "_Breedte oanpasse oan tekst"
-#: cui/uiconfig/ui/possizetabpage.ui:447
+#: cui/uiconfig/ui/possizetabpage.ui:492
msgctxt "possizetabpage|TSB_AUTOGROW_HEIGHT"
msgid "Fit _height to text"
msgstr "_Hichte oanpasse oan tekst"
-#: cui/uiconfig/ui/possizetabpage.ui:471
+#: cui/uiconfig/ui/possizetabpage.ui:515
msgctxt "possizetabpage|label4"
msgid "Adapt"
msgstr "Oanpasse"
@@ -10162,47 +10162,47 @@ msgctxt "recordnumberdialog|label2"
msgid "go to record"
msgstr "gean nei record"
-#: cui/uiconfig/ui/rotationtabpage.ui:52
+#: cui/uiconfig/ui/rotationtabpage.ui:56
msgctxt "rotationtabpage|FT_POS_X"
msgid "Position _X:"
msgstr "Posysje _X:"
-#: cui/uiconfig/ui/rotationtabpage.ui:66
+#: cui/uiconfig/ui/rotationtabpage.ui:70
msgctxt "rotationtabpage|FT_POS_Y"
msgid "Position _Y:"
msgstr "Posysje _Y:"
-#: cui/uiconfig/ui/rotationtabpage.ui:116
+#: cui/uiconfig/ui/rotationtabpage.ui:123
msgctxt "rotationtabpage|FT_POSPRESETS"
msgid "_Default settings:"
msgstr "_Standert ynstellingen:"
-#: cui/uiconfig/ui/rotationtabpage.ui:130
+#: cui/uiconfig/ui/rotationtabpage.ui:151
msgctxt "rotationtabpage|CTL_RECT|tooltip_text"
msgid "Rotation point"
msgstr "Draaipunt"
-#: cui/uiconfig/ui/rotationtabpage.ui:155
+#: cui/uiconfig/ui/rotationtabpage.ui:178
msgctxt "rotationtabpage|label1"
msgid "Pivot Point"
msgstr "Spilpunt"
-#: cui/uiconfig/ui/rotationtabpage.ui:197
+#: cui/uiconfig/ui/rotationtabpage.ui:220
msgctxt "rotationtabpage|FT_ANGLE"
msgid "_Angle:"
msgstr "_Hoek:"
-#: cui/uiconfig/ui/rotationtabpage.ui:238
+#: cui/uiconfig/ui/rotationtabpage.ui:263
msgctxt "rotationtabpage|FT_ANGLEPRESETS"
msgid "Default _settings:"
msgstr "Standert _ynstellingen:"
-#: cui/uiconfig/ui/rotationtabpage.ui:252
+#: cui/uiconfig/ui/rotationtabpage.ui:287
msgctxt "rotationtabpage|CTL_ANGLE|tooltip_text"
msgid "Rotation Angle"
msgstr "Draaihoek"
-#: cui/uiconfig/ui/rotationtabpage.ui:277
+#: cui/uiconfig/ui/rotationtabpage.ui:314
msgctxt "rotationtabpage|label2"
msgid "Rotation Angle"
msgstr "Draaihoek"
@@ -10582,52 +10582,52 @@ msgctxt "similaritysearchdialog|relaxbox"
msgid "_Combine"
msgstr "_Gearfoegje"
-#: cui/uiconfig/ui/slantcornertabpage.ui:50
+#: cui/uiconfig/ui/slantcornertabpage.ui:70
msgctxt "slantcornertabpage|label5"
msgid "_X:"
msgstr "_X:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:88
+#: cui/uiconfig/ui/slantcornertabpage.ui:110
msgctxt "slantcornertabpage|label6"
msgid "_Y:"
msgstr "_Y:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:125
+#: cui/uiconfig/ui/slantcornertabpage.ui:149
msgctxt "slantcornertabpage|label3"
msgid "Control Point 1"
msgstr "Kontrôle punt 1"
-#: cui/uiconfig/ui/slantcornertabpage.ui:159
+#: cui/uiconfig/ui/slantcornertabpage.ui:183
msgctxt "slantcornertabpage|FT_RADIUS"
msgid "_Radius:"
msgstr "_Radius:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:189
+#: cui/uiconfig/ui/slantcornertabpage.ui:214
msgctxt "slantcornertabpage|label1"
msgid "Corner Radius"
msgstr "Hoek radius"
-#: cui/uiconfig/ui/slantcornertabpage.ui:223
+#: cui/uiconfig/ui/slantcornertabpage.ui:248
msgctxt "slantcornertabpage|FT_ANGLE"
msgid "_Angle:"
msgstr "_Hoek:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:253
+#: cui/uiconfig/ui/slantcornertabpage.ui:279
msgctxt "slantcornertabpage|label2"
msgid "Slant"
msgstr "Helling ynstelle"
-#: cui/uiconfig/ui/slantcornertabpage.ui:294
+#: cui/uiconfig/ui/slantcornertabpage.ui:320
msgctxt "slantcornertabpage|label4"
msgid "_X:"
msgstr "_X:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:332
+#: cui/uiconfig/ui/slantcornertabpage.ui:360
msgctxt "slantcornertabpage|label7"
msgid "_Y:"
msgstr "_Y:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:369
+#: cui/uiconfig/ui/slantcornertabpage.ui:399
msgctxt "slantcornertabpage|label8"
msgid "Control Point 2"
msgstr "Kontrôle punt 2"
@@ -10907,112 +10907,112 @@ msgctxt "storedwebconnectiondialog|change"
msgid "_Change Password..."
msgstr "_Wachtwurd feroarje..."
-#: cui/uiconfig/ui/swpossizepage.ui:74
+#: cui/uiconfig/ui/swpossizepage.ui:85
msgctxt "swpossizepage|widthft"
msgid "_Width:"
msgstr "_Breedte:"
-#: cui/uiconfig/ui/swpossizepage.ui:111
+#: cui/uiconfig/ui/swpossizepage.ui:123
msgctxt "swpossizepage|heightft"
msgid "H_eight:"
msgstr "H_ichte:"
-#: cui/uiconfig/ui/swpossizepage.ui:128
+#: cui/uiconfig/ui/swpossizepage.ui:141
msgctxt "swpossizepage|ratio"
msgid "_Keep ratio"
msgstr "_Ferhâlding behâlde"
-#: cui/uiconfig/ui/swpossizepage.ui:149
+#: cui/uiconfig/ui/swpossizepage.ui:162
msgctxt "swpossizepage|label2"
msgid "Size"
msgstr "Grutte"
-#: cui/uiconfig/ui/swpossizepage.ui:205
+#: cui/uiconfig/ui/swpossizepage.ui:218
msgctxt "swpossizepage|topage"
msgid "To _page"
msgstr "Oan _side"
-#: cui/uiconfig/ui/swpossizepage.ui:222
+#: cui/uiconfig/ui/swpossizepage.ui:234
msgctxt "swpossizepage|topara"
msgid "To paragrap_h"
msgstr "Oan a_linea"
-#: cui/uiconfig/ui/swpossizepage.ui:238
+#: cui/uiconfig/ui/swpossizepage.ui:250
msgctxt "swpossizepage|tochar"
msgid "To cha_racter"
msgstr "Oan _teken"
-#: cui/uiconfig/ui/swpossizepage.ui:254
+#: cui/uiconfig/ui/swpossizepage.ui:266
msgctxt "swpossizepage|aschar"
msgid "_As character"
msgstr "_As teken"
-#: cui/uiconfig/ui/swpossizepage.ui:270
+#: cui/uiconfig/ui/swpossizepage.ui:282
msgctxt "swpossizepage|toframe"
msgid "To _frame"
msgstr "Oan _ramt"
-#: cui/uiconfig/ui/swpossizepage.ui:292
+#: cui/uiconfig/ui/swpossizepage.ui:304
msgctxt "swpossizepage|label1"
msgid "Anchor"
msgstr "Anker"
-#: cui/uiconfig/ui/swpossizepage.ui:333
+#: cui/uiconfig/ui/swpossizepage.ui:344
msgctxt "swpossizepage|horiposft"
msgid "Hori_zontal:"
msgstr "Hori_zontaal:"
-#: cui/uiconfig/ui/swpossizepage.ui:347
+#: cui/uiconfig/ui/swpossizepage.ui:358
msgctxt "swpossizepage|horibyft"
msgid "b_y:"
msgstr "t_roch:"
-#: cui/uiconfig/ui/swpossizepage.ui:361
+#: cui/uiconfig/ui/swpossizepage.ui:372
msgctxt "swpossizepage|vertbyft"
msgid "_by:"
msgstr "_troch:"
-#: cui/uiconfig/ui/swpossizepage.ui:375
+#: cui/uiconfig/ui/swpossizepage.ui:386
msgctxt "swpossizepage|horitoft"
msgid "_to:"
msgstr "_oan:"
-#: cui/uiconfig/ui/swpossizepage.ui:421
+#: cui/uiconfig/ui/swpossizepage.ui:433
msgctxt "swpossizepage|vertposft"
msgid "_Vertical:"
msgstr "_Fertikaal:"
-#: cui/uiconfig/ui/swpossizepage.ui:457
+#: cui/uiconfig/ui/swpossizepage.ui:470
msgctxt "swpossizepage|verttoft"
msgid "t_o:"
msgstr "n_ei:"
-#: cui/uiconfig/ui/swpossizepage.ui:478
+#: cui/uiconfig/ui/swpossizepage.ui:492
msgctxt "swpossizepage|mirror"
msgid "_Mirror on even pages"
msgstr "_Op even siden spegelje"
-#: cui/uiconfig/ui/swpossizepage.ui:495
+#: cui/uiconfig/ui/swpossizepage.ui:509
msgctxt "swpossizepage|followtextflow"
msgid "Follow te_xt flow"
msgstr "Folgje de te_kst ferrin"
-#: cui/uiconfig/ui/swpossizepage.ui:518
+#: cui/uiconfig/ui/swpossizepage.ui:532
msgctxt "swpossizepage|label11"
msgid "Position"
msgstr "Posysje"
-#: cui/uiconfig/ui/swpossizepage.ui:549
+#: cui/uiconfig/ui/swpossizepage.ui:563
msgctxt "swpossizepage|pos"
msgid "Positio_n"
msgstr "Posy_sje"
-#: cui/uiconfig/ui/swpossizepage.ui:565
+#: cui/uiconfig/ui/swpossizepage.ui:579
msgctxt "swpossizepage|size"
msgid "_Size"
msgstr "_Grutte"
-#: cui/uiconfig/ui/swpossizepage.ui:587
+#: cui/uiconfig/ui/swpossizepage.ui:601
msgctxt "swpossizepage|label3"
msgid "Protect"
msgstr "Befeiligje"
@@ -11202,12 +11202,12 @@ msgctxt "textattrtabpage|label2"
msgid "Spacing to Borders"
msgstr "Ofstân ta rânen"
-#: cui/uiconfig/ui/textattrtabpage.ui:425
+#: cui/uiconfig/ui/textattrtabpage.ui:423
msgctxt "textattrtabpage|TSB_FULL_WIDTH"
msgid "Full _width"
msgstr "Folsleine _breedte"
-#: cui/uiconfig/ui/textattrtabpage.ui:448
+#: cui/uiconfig/ui/textattrtabpage.ui:446
msgctxt "textattrtabpage|label3"
msgid "Text Anchor"
msgstr "Tekst anker"
diff --git a/source/fy/dbaccess/messages.po b/source/fy/dbaccess/messages.po
index 60d1ac0b49e..b0904c8293c 100644
--- a/source/fy/dbaccess/messages.po
+++ b/source/fy/dbaccess/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2018-04-23 18:10+0200\n"
-"PO-Revision-Date: 2018-05-10 19:16+0000\n"
+"PO-Revision-Date: 2018-05-31 19:04+0000\n"
"Last-Translator: Berend Ytsma <berendy@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: fy\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1525979772.000000\n"
+"X-POOTLE-MTIME: 1527793468.000000\n"
#: dbaccess/inc/query.hrc:26
msgctxt "RSC_QUERY_OBJECT_TYPE"
@@ -1502,7 +1502,7 @@ msgstr "Eigenskippen gegevensboarne: #"
#: dbaccess/inc/strings.hrc:320
msgctxt "STR_ERR_USE_CONNECT_TO"
msgid "Please choose 'Connect to an existing database' to connect to an existing database instead."
-msgstr "Kies 'Ferbine mei in besteande gegevensbank' om, in plak derfan, te ferbinen mei in besteande gegevensbank."
+msgstr "Kies 'Ferbine mei in besteande gegevensbank' om, yn plak derfan, te ferbinen mei in besteande gegevensbank."
#: dbaccess/inc/strings.hrc:321
msgctxt "STR_COULD_NOT_LOAD_ODBC_LIB"
diff --git a/source/fy/filter/messages.po b/source/fy/filter/messages.po
index d42bd2fef17..e027176788e 100644
--- a/source/fy/filter/messages.po
+++ b/source/fy/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: 2018-04-23 18:11+0200\n"
-"PO-Revision-Date: 2018-04-19 13:31+0000\n"
+"PO-Revision-Date: 2018-05-30 15:13+0000\n"
"Last-Translator: Berend Ytsma <berendy@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: fy\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1524144685.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1527693230.000000\n"
#: filter/inc/strings.hrc:25
msgctxt "STR_COLUMN_HEADER_NAME"
@@ -993,7 +993,7 @@ msgstr "Blêdzje..."
#: filter/uiconfig/ui/testxmlfilter.ui:229
msgctxt "testxmlfilter|recentfile"
msgid "Recent File"
-msgstr "Koartlyn brûkte triem"
+msgstr "Resint brûkte triem"
#: filter/uiconfig/ui/testxmlfilter.ui:244
msgctxt "testxmlfilter|templateimport"
diff --git a/source/fy/filter/source/config/fragments/filters.po b/source/fy/filter/source/config/fragments/filters.po
index 8f86a59a006..c6568f96f26 100644
--- a/source/fy/filter/source/config/fragments/filters.po
+++ b/source/fy/filter/source/config/fragments/filters.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: 2018-05-16 16:54+0200\n"
-"PO-Revision-Date: 2018-05-17 10:58+0000\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
+"PO-Revision-Date: 2018-06-06 12:49+0000\n"
"Last-Translator: Berend Ytsma <berendy@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: fy\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1526554724.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1528289353.000000\n"
#: ADO_rowset_XML.xcu
msgctxt ""
@@ -463,8 +463,8 @@ msgctxt ""
"MS Word 2003 XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Word 2003 XML"
-msgstr "Microsoft Word 2003 XML"
+msgid "Word 2003 XML"
+msgstr "Word 2003 XML"
#: MS_Word_2007_XML.xcu
msgctxt ""
@@ -1282,8 +1282,8 @@ msgctxt ""
"Calc MS Excel 2007 VBA XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Excel 2007-2016 XML (macro enabled)"
-msgstr "Microsoft Excel 2007-2016 XML (makro ynskeakele)"
+msgid "Excel 2007–2019 (macro-enabled)"
+msgstr "Excel 2007–2019 (macro-ynskeakele)"
#: calc_MS_Excel_2007_XML.xcu
msgctxt ""
diff --git a/source/fy/filter/source/config/fragments/types.po b/source/fy/filter/source/config/fragments/types.po
index 8a571b91a4e..42cec312ef0 100644
--- a/source/fy/filter/source/config/fragments/types.po
+++ b/source/fy/filter/source/config/fragments/types.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: 2018-05-08 15:11+0200\n"
-"PO-Revision-Date: 2018-05-09 19:42+0000\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
+"PO-Revision-Date: 2018-06-06 12:49+0000\n"
"Last-Translator: Berend Ytsma <berendy@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: fy\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1525894970.000000\n"
+"X-POOTLE-MTIME: 1528289356.000000\n"
#: MS_Excel_2007_Binary.xcu
msgctxt ""
@@ -292,8 +292,8 @@ msgctxt ""
"writer_MS_Word_2003_XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Word 2003 XML"
-msgstr "Microsoft Word 2003 XML"
+msgid "Word 2003 XML"
+msgstr "Word 2003 XML"
#: writer_MS_Word_2007_XML.xcu
msgctxt ""
diff --git a/source/fy/fpicker/messages.po b/source/fy/fpicker/messages.po
index b1890d5d91c..7062c0987d5 100644
--- a/source/fy/fpicker/messages.po
+++ b/source/fy/fpicker/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-22 13:16+0200\n"
-"PO-Revision-Date: 2018-02-28 20:02+0000\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
+"PO-Revision-Date: 2018-06-06 12:49+0000\n"
"Last-Translator: Berend Ytsma <berendy@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: fy\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1519848175.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1528289364.000000\n"
#: include/fpicker/strings.hrc:14
msgctxt "STR_SVT_FILEPICKER_AUTO_EXTENSION"
@@ -272,13 +272,13 @@ msgstr "Fersifere mei GPG kaai"
#: fpicker/uiconfig/ui/foldernamedialog.ui:8
msgctxt "foldernamedialog|FolderNameDialog"
-msgid "Folder Name ?"
-msgstr "Mapnamme ?"
+msgid "Folder Name"
+msgstr "Mapnamme"
#: fpicker/uiconfig/ui/foldernamedialog.ui:91
msgctxt "foldernamedialog|label2"
-msgid "Na_me"
-msgstr "Na_mme"
+msgid "Na_me:"
+msgstr "Na_mme:"
#: fpicker/uiconfig/ui/foldernamedialog.ui:122
msgctxt "foldernamedialog|label1"
diff --git a/source/fy/instsetoo_native/inc_openoffice/windows/msi_languages.po b/source/fy/instsetoo_native/inc_openoffice/windows/msi_languages.po
index 2f9d707458c..2da53c00ce2 100644
--- a/source/fy/instsetoo_native/inc_openoffice/windows/msi_languages.po
+++ b/source/fy/instsetoo_native/inc_openoffice/windows/msi_languages.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: 2018-04-17 15:54+0200\n"
-"PO-Revision-Date: 2018-05-10 09:43+0000\n"
+"PO-Revision-Date: 2018-06-06 13:39+0000\n"
"Last-Translator: Berend Ytsma <berendy@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: fy\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1525945380.000000\n"
+"X-POOTLE-MTIME: 1528292340.000000\n"
#: ActionTe.ulf
msgctxt ""
@@ -1990,7 +1990,7 @@ msgctxt ""
"OOO_CONTROL_173\n"
"LngText.text"
msgid "&Install"
-msgstr "&Ynstallearjen"
+msgstr "&Ynstallearje"
#: Control.ulf
msgctxt ""
@@ -4318,7 +4318,7 @@ msgctxt ""
"OOO_UITEXT_30\n"
"LngText.text"
msgid "Compiling cost for this feature..."
-msgstr "Bepale fan kosten foar dit ûnderdiel..."
+msgstr "Bepale fan romte foar dit ûnderdiel..."
#: UIText.ulf
msgctxt ""
diff --git a/source/fy/officecfg/registry/data/org/openoffice/Office.po b/source/fy/officecfg/registry/data/org/openoffice/Office.po
index 3394380fc4b..b32f5610f7d 100644
--- a/source/fy/officecfg/registry/data/org/openoffice/Office.po
+++ b/source/fy/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: 2018-02-27 13:56+0100\n"
-"PO-Revision-Date: 2018-05-10 09:37+0000\n"
+"PO-Revision-Date: 2018-06-13 18:33+0000\n"
"Last-Translator: Berend Ytsma <berendy@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: fy\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1525945059.000000\n"
+"X-POOTLE-MTIME: 1528914834.000000\n"
#: Addons.xcu
msgctxt ""
@@ -11498,7 +11498,7 @@ msgctxt ""
"DisplayName\n"
"value.text"
msgid "Web pages"
-msgstr "Websiden"
+msgstr "Websteeën"
#: UI.xcu
msgctxt ""
diff --git a/source/fy/officecfg/registry/data/org/openoffice/Office/UI.po b/source/fy/officecfg/registry/data/org/openoffice/Office/UI.po
index 2c59a51ba79..8fd5545e680 100644
--- a/source/fy/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/fy/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-22 13:17+0200\n"
-"PO-Revision-Date: 2018-05-10 19:38+0000\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
+"PO-Revision-Date: 2018-06-06 12:49+0000\n"
"Last-Translator: Berend Ytsma <berendy@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: fy\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1525981101.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1528289374.000000\n"
#: BaseWindowState.xcu
msgctxt ""
@@ -149,7 +149,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Form Horizontal Scroll Bar"
-msgstr ""
+msgstr "Horizontale skowbalke foar formulier"
#: BasicIDECommands.xcu
msgctxt ""
@@ -14189,7 +14189,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Preview in Web Browser"
-msgstr "Foarbyld yn web sneuper"
+msgstr "Foarbyld yn websneuper"
#: GenericCommands.xcu
msgctxt ""
@@ -15908,7 +15908,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Increase Size"
-msgstr "Ofmjitting fergrutsje"
+msgstr "Tekst fergrutsje"
#: GenericCommands.xcu
msgctxt ""
@@ -15935,7 +15935,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Decrease Size"
-msgstr "Ofmjitting ferlytsje"
+msgstr "Tekst ferlytsje"
#: GenericCommands.xcu
msgctxt ""
@@ -22444,7 +22444,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "F~ormat"
-msgstr "~Yndieling"
+msgstr "Ynd~ieling"
#: GenericCommands.xcu
msgctxt ""
@@ -25342,7 +25342,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Tabbed"
-msgstr ""
+msgstr "Ljepper"
#: ToolbarMode.xcu
msgctxt ""
@@ -25351,7 +25351,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Groupedbar Compact"
-msgstr ""
+msgstr "Groepearre kompakt"
#: ToolbarMode.xcu
msgctxt ""
@@ -25360,7 +25360,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Groupedbar"
-msgstr ""
+msgstr "Groepearre"
#: ToolbarMode.xcu
msgctxt ""
@@ -26520,8 +26520,8 @@ msgctxt ""
"..WriterCommands.UserInterface.Commands..uno:TextAttributes\n"
"Label\n"
"value.text"
-msgid "Text Attributes"
-msgstr "Tekst attributen"
+msgid "Text Attributes..."
+msgstr "Tekst attributen..."
#: WriterCommands.xcu
msgctxt ""
diff --git a/source/fy/readlicense_oo/docs.po b/source/fy/readlicense_oo/docs.po
index 2a664dabbbc..ebc106904dd 100644
--- a/source/fy/readlicense_oo/docs.po
+++ b/source/fy/readlicense_oo/docs.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: 2018-04-17 15:54+0200\n"
-"PO-Revision-Date: 2018-05-10 19:10+0000\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
+"PO-Revision-Date: 2018-06-06 12:49+0000\n"
"Last-Translator: Berend Ytsma <berendy@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: fy\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1525979443.000000\n"
+"X-POOTLE-MTIME: 1528289386.000000\n"
#: readme.xrm
msgctxt ""
@@ -117,8 +117,8 @@ msgctxt ""
"readme.xrm\n"
"macxiOSX\n"
"readmeitem.text"
-msgid "MacOSX 10.8 (Mountain Lion) or higher"
-msgstr "MacOSX 10.8 (Mountain Lion) of heger"
+msgid "MacOSX 10.9 (Mavericks) or higher"
+msgstr "MacOSX 10.9 (Mavericks) of heger"
#: readme.xrm
msgctxt ""
diff --git a/source/fy/sc/messages.po b/source/fy/sc/messages.po
index d512dc28b86..21d304c94c8 100644
--- a/source/fy/sc/messages.po
+++ b/source/fy/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: 2018-05-22 13:16+0200\n"
-"PO-Revision-Date: 2018-05-17 10:59+0000\n"
+"POT-Creation-Date: 2018-06-12 14:40+0200\n"
+"PO-Revision-Date: 2018-06-06 12:50+0000\n"
"Last-Translator: Berend Ytsma <berendy@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: fy\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1526554785.000000\n"
+"X-POOTLE-MTIME: 1528289445.000000\n"
#: sc/inc/compiler.hrc:27
msgctxt "RID_FUNCTION_CATEGORIES"
@@ -1870,16 +1870,21 @@ msgid "Nested arrays are not supported."
msgstr "Neste matriks wurde net stipe."
#: sc/inc/globstr.hrc:390
+msgctxt "STR_ERR_LONG_BAD_ARRAY_CONTENT"
+msgid "Unsupported inline array content."
+msgstr ""
+
+#: sc/inc/globstr.hrc:391
msgctxt "STR_UNDO_TEXTTOCOLUMNS"
msgid "Text to Columns"
msgstr "Tekst nei kolommen"
-#: sc/inc/globstr.hrc:391
+#: sc/inc/globstr.hrc:392
msgctxt "STR_DOC_UPDATED"
msgid "Your spreadsheet has been updated with changes saved by other users."
msgstr "Jo rekkenblêd is fernijd mei feroaringen bewarre troch oare brûkers."
-#: sc/inc/globstr.hrc:392
+#: sc/inc/globstr.hrc:393
msgctxt "STR_DOC_WILLBESAVED"
msgid ""
"The spreadsheet must be saved now to activate sharing mode.\n"
@@ -1890,7 +1895,7 @@ msgstr ""
"\n"
"Trochgean?"
-#: sc/inc/globstr.hrc:393
+#: sc/inc/globstr.hrc:394
msgctxt "STR_DOC_WILLNOTBESAVED"
msgid ""
"Already resolved merge conflicts will be lost and your changes to the shared spreadsheet will not be saved.\n"
@@ -1901,7 +1906,7 @@ msgstr ""
"\n"
"Trochgean?"
-#: sc/inc/globstr.hrc:394
+#: sc/inc/globstr.hrc:395
msgctxt "STR_DOC_DISABLESHARED"
msgid ""
"Disabling shared mode of a spreadsheet hinders all other users of the shared spreadsheet to merge back their work.\n"
@@ -1912,7 +1917,7 @@ msgstr ""
"\n"
"Trochgean?"
-#: sc/inc/globstr.hrc:395
+#: sc/inc/globstr.hrc:396
msgctxt "STR_DOC_NOLONGERSHARED"
msgid ""
"This spreadsheet is no longer in shared mode.\n"
@@ -1923,7 +1928,7 @@ msgstr ""
"\n"
"Bewarje jo rekkenblêd yn in aparte triem en set jo feroaringen yn it dielde rekkenblêd der sels yn."
-#: sc/inc/globstr.hrc:396
+#: sc/inc/globstr.hrc:397
msgctxt "STR_FILE_LOCKED_TRY_LATER"
msgid ""
"The shared spreadsheet file is locked due to a merge in progress by user: '%1'\n"
@@ -1934,7 +1939,7 @@ msgstr ""
"\n"
"De dielde modus fan in skoattele triem kin net útskeakele wurde. Besykje letter nochris."
-#: sc/inc/globstr.hrc:397
+#: sc/inc/globstr.hrc:398
msgctxt "STR_FILE_LOCKED_SAVE_LATER"
msgid ""
"The shared spreadsheet file is locked due to a merge in progress by user: '%1'\n"
@@ -1945,147 +1950,147 @@ msgstr ""
"\n"
"Besykje letter nochris om jo feroaringen te bewarjen."
-#: sc/inc/globstr.hrc:398
+#: sc/inc/globstr.hrc:399
msgctxt "STR_UNKNOWN_USER"
msgid "Unknown User"
msgstr "Unbekende brûker"
-#: sc/inc/globstr.hrc:399
+#: sc/inc/globstr.hrc:400
msgctxt "STR_SHAPE_AUTOSHAPE"
msgid "AutoShape"
msgstr "AutoFoarm"
-#: sc/inc/globstr.hrc:400
+#: sc/inc/globstr.hrc:401
msgctxt "STR_SHAPE_RECTANGLE"
msgid "Rectangle"
msgstr "Rjochthoek"
-#: sc/inc/globstr.hrc:401
+#: sc/inc/globstr.hrc:402
msgctxt "STR_SHAPE_LINE"
msgid "Line"
msgstr "Line"
-#: sc/inc/globstr.hrc:402
+#: sc/inc/globstr.hrc:403
msgctxt "STR_SHAPE_OVAL"
msgid "Oval"
msgstr "Ovaal"
-#: sc/inc/globstr.hrc:403
+#: sc/inc/globstr.hrc:404
msgctxt "STR_FORM_BUTTON"
msgid "Button"
msgstr "Knop"
-#: sc/inc/globstr.hrc:404
+#: sc/inc/globstr.hrc:405
msgctxt "STR_FORM_CHECKBOX"
msgid "Check Box"
msgstr "Karfakje"
-#: sc/inc/globstr.hrc:405
+#: sc/inc/globstr.hrc:406
msgctxt "STR_FORM_OPTIONBUTTON"
msgid "Option Button"
msgstr "Opsje knop"
-#: sc/inc/globstr.hrc:406
+#: sc/inc/globstr.hrc:407
msgctxt "STR_FORM_LABEL"
msgid "Label"
msgstr "Lebel"
-#: sc/inc/globstr.hrc:407
+#: sc/inc/globstr.hrc:408
msgctxt "STR_FORM_LISTBOX"
msgid "List Box"
msgstr "Karlist"
-#: sc/inc/globstr.hrc:408
+#: sc/inc/globstr.hrc:409
msgctxt "STR_FORM_GROUPBOX"
msgid "Group Box"
msgstr "Groepsfak"
-#: sc/inc/globstr.hrc:409
+#: sc/inc/globstr.hrc:410
msgctxt "STR_FORM_DROPDOWN"
msgid "Drop Down"
msgstr "Ferfolchkarlist"
-#: sc/inc/globstr.hrc:410
+#: sc/inc/globstr.hrc:411
msgctxt "STR_FORM_SPINNER"
msgid "Spinner"
msgstr "Spinner"
-#: sc/inc/globstr.hrc:411
+#: sc/inc/globstr.hrc:412
msgctxt "STR_FORM_SCROLLBAR"
msgid "Scroll Bar"
msgstr "Skowbalke"
-#: sc/inc/globstr.hrc:412
+#: sc/inc/globstr.hrc:413
msgctxt "STR_STYLE_FAMILY_CELL"
msgid "Cell Styles"
msgstr "Sel styl"
-#: sc/inc/globstr.hrc:413
+#: sc/inc/globstr.hrc:414
msgctxt "STR_STYLE_FAMILY_PAGE"
msgid "Page Styles"
msgstr "Side styl"
-#: sc/inc/globstr.hrc:414
+#: sc/inc/globstr.hrc:415
msgctxt "STR_ERR_DATAPILOTSOURCE"
msgid "Pivot table source data is invalid."
msgstr "De boarne gegevens foar de draaitabel binne ûnjildich."
-#: sc/inc/globstr.hrc:415
+#: sc/inc/globstr.hrc:416
msgctxt "STR_OPTIONS_WARN_SEPARATORS"
msgid "Because the current formula separator settings conflict with the locale, the formula separators have been reset to their default values."
msgstr "Omdat de aktuele ynstelling fan it formule skiedingsteken yn konflikt is mei de taalregio, is it formule skiedingsteken weromset nei de standert wearde."
-#: sc/inc/globstr.hrc:416
+#: sc/inc/globstr.hrc:417
msgctxt "STR_UNDO_INSERT_CURRENT_DATE"
msgid "Insert Current Date"
msgstr "Aktuele datum ynfoegje"
-#: sc/inc/globstr.hrc:417
+#: sc/inc/globstr.hrc:418
msgctxt "STR_UNDO_INSERT_CURRENT_TIME"
msgid "Insert Current Time"
msgstr "Aktuele tiid ynfoegje"
-#: sc/inc/globstr.hrc:418
+#: sc/inc/globstr.hrc:419
msgctxt "STR_MANAGE_NAMES"
msgid "Manage Names..."
msgstr "Nammen beheare..."
-#: sc/inc/globstr.hrc:419
+#: sc/inc/globstr.hrc:420
msgctxt "STR_HEADER_NAME"
msgid "Name"
msgstr "Namme"
-#: sc/inc/globstr.hrc:420
+#: sc/inc/globstr.hrc:421
msgctxt "STR_HEADER_RANGE_OR_EXPR"
msgid "Range or formula expression"
msgstr "Berik of formule ekspresje"
-#: sc/inc/globstr.hrc:421
+#: sc/inc/globstr.hrc:422
msgctxt "STR_HEADER_SCOPE"
msgid "Scope"
msgstr "Berik"
-#: sc/inc/globstr.hrc:422
+#: sc/inc/globstr.hrc:423
msgctxt "STR_MULTI_SELECT"
msgid "(multiple)"
msgstr "(meardere)"
-#: sc/inc/globstr.hrc:423
+#: sc/inc/globstr.hrc:424
msgctxt "STR_GLOBAL_SCOPE"
msgid "Document (Global)"
msgstr "Dokumint (globaal)"
-#: sc/inc/globstr.hrc:424
+#: sc/inc/globstr.hrc:425
msgctxt "STR_ERR_NAME_EXISTS"
msgid "Invalid name. Already in use for the selected scope."
msgstr "Unjildige namme. Al yn brûkme foar it selektearre berik."
-#: sc/inc/globstr.hrc:425
+#: sc/inc/globstr.hrc:426
msgctxt "STR_ERR_NAME_INVALID"
msgid "Invalid name. Only use letters, numbers and underscore."
msgstr "Unjildige namme. Brûk allinne letters, getallen en ûnderstreek."
-#: sc/inc/globstr.hrc:426
+#: sc/inc/globstr.hrc:427
msgctxt "STR_UNSAVED_EXT_REF"
msgid ""
"This Document contains external references to unsaved documents.\n"
@@ -2096,217 +2101,217 @@ msgstr ""
"\n"
"Trochgean?"
-#: sc/inc/globstr.hrc:427
+#: sc/inc/globstr.hrc:428
msgctxt "STR_CLOSE_WITH_UNSAVED_REFS"
msgid "This Document is referenced by another document and not yet saved. Closing it without saving will result in data loss."
msgstr "Der wurdt fanút in oar dokumint nei dit dokumint ferwiisd, mar it is noch net bewarre. It ferlitten sûnder bewarjen sil soargje foar ferlies fan gegevens."
-#: sc/inc/globstr.hrc:428
+#: sc/inc/globstr.hrc:429
msgctxt "STR_HEADER_RANGE"
msgid "Range"
msgstr "Berik"
-#: sc/inc/globstr.hrc:429
+#: sc/inc/globstr.hrc:430
msgctxt "STR_HEADER_COND"
msgid "First Condition"
msgstr "Earste kondysje"
-#: sc/inc/globstr.hrc:430
+#: sc/inc/globstr.hrc:431
msgctxt "STR_COND_CONDITION"
msgid "Cell value is"
msgstr "Sel wearde is"
-#: sc/inc/globstr.hrc:431
+#: sc/inc/globstr.hrc:432
msgctxt "STR_COND_COLORSCALE"
msgid "ColorScale"
msgstr "Kleuren skealing"
-#: sc/inc/globstr.hrc:432
+#: sc/inc/globstr.hrc:433
msgctxt "STR_COND_DATABAR"
msgid "DataBar"
msgstr "Gegevensbalk"
-#: sc/inc/globstr.hrc:433
+#: sc/inc/globstr.hrc:434
msgctxt "STR_COND_ICONSET"
msgid "IconSet"
msgstr "Ikoanen set"
-#: sc/inc/globstr.hrc:434
+#: sc/inc/globstr.hrc:435
msgctxt "STR_COND_BETWEEN"
msgid "between"
msgstr "tusken"
-#: sc/inc/globstr.hrc:435
+#: sc/inc/globstr.hrc:436
msgctxt "STR_COND_NOTBETWEEN"
msgid "not between"
msgstr "net tusken"
-#: sc/inc/globstr.hrc:436
+#: sc/inc/globstr.hrc:437
msgctxt "STR_COND_UNIQUE"
msgid "unique"
msgstr "unyk"
-#: sc/inc/globstr.hrc:437
+#: sc/inc/globstr.hrc:438
msgctxt "STR_COND_DUPLICATE"
msgid "duplicate"
msgstr "duplikaat"
-#: sc/inc/globstr.hrc:438
+#: sc/inc/globstr.hrc:439
msgctxt "STR_COND_FORMULA"
msgid "Formula is"
msgstr "Formule is"
-#: sc/inc/globstr.hrc:439
+#: sc/inc/globstr.hrc:440
msgctxt "STR_COND_TOP10"
msgid "Top Elements"
msgstr "Heechste eleminten"
-#: sc/inc/globstr.hrc:440
+#: sc/inc/globstr.hrc:441
msgctxt "STR_COND_BOTTOM10"
msgid "Bottom Elements"
msgstr "Leechste eleminten"
-#: sc/inc/globstr.hrc:441
+#: sc/inc/globstr.hrc:442
msgctxt "STR_COND_TOP_PERCENT"
msgid "Top Percent"
msgstr "Heechste persintaazje"
-#: sc/inc/globstr.hrc:442
+#: sc/inc/globstr.hrc:443
msgctxt "STR_COND_DATE"
msgid "Date is"
msgstr "Datum is"
-#: sc/inc/globstr.hrc:443
+#: sc/inc/globstr.hrc:444
msgctxt "STR_COND_BOTTOM_PERCENT"
msgid "Bottom Percent"
msgstr "Leechste persintaazje"
-#: sc/inc/globstr.hrc:444
+#: sc/inc/globstr.hrc:445
msgctxt "STR_COND_ABOVE_AVERAGE"
msgid "Above Average"
msgstr "Boppe trochsneed"
-#: sc/inc/globstr.hrc:445
+#: sc/inc/globstr.hrc:446
msgctxt "STR_COND_BELOW_AVERAGE"
msgid "Below Average"
msgstr "Under trochsneed"
-#: sc/inc/globstr.hrc:446
+#: sc/inc/globstr.hrc:447
msgctxt "STR_COND_ABOVE_EQUAL_AVERAGE"
msgid "Above or equal Average"
msgstr "Mear dan of lyk oan trochsneed"
-#: sc/inc/globstr.hrc:447
+#: sc/inc/globstr.hrc:448
msgctxt "STR_COND_BELOW_EQUAL_AVERAGE"
msgid "Below or equal Average"
msgstr "Minder dan of lyk oan trochsneed"
-#: sc/inc/globstr.hrc:448
+#: sc/inc/globstr.hrc:449
msgctxt "STR_COND_ERROR"
msgid "an Error code"
msgstr "in flaterkoade"
-#: sc/inc/globstr.hrc:449
+#: sc/inc/globstr.hrc:450
msgctxt "STR_COND_NOERROR"
msgid "not an Error code"
msgstr "net in flaterkoade"
-#: sc/inc/globstr.hrc:450
+#: sc/inc/globstr.hrc:451
msgctxt "STR_COND_BEGINS_WITH"
msgid "Begins with"
msgstr "Begjint mei"
-#: sc/inc/globstr.hrc:451
+#: sc/inc/globstr.hrc:452
msgctxt "STR_COND_ENDS_WITH"
msgid "Ends with"
msgstr "Einiget mei"
-#: sc/inc/globstr.hrc:452
+#: sc/inc/globstr.hrc:453
msgctxt "STR_COND_CONTAINS"
msgid "Contains"
msgstr "Befettet"
-#: sc/inc/globstr.hrc:453
+#: sc/inc/globstr.hrc:454
msgctxt "STR_COND_NOT_CONTAINS"
msgid "Not Contains"
msgstr "Befettet net"
-#: sc/inc/globstr.hrc:454
+#: sc/inc/globstr.hrc:455
msgctxt "STR_COND_TODAY"
msgid "today"
msgstr "hjoed"
-#: sc/inc/globstr.hrc:455
+#: sc/inc/globstr.hrc:456
msgctxt "STR_COND_YESTERDAY"
msgid "yesterday"
msgstr "juster"
-#: sc/inc/globstr.hrc:456
+#: sc/inc/globstr.hrc:457
msgctxt "STR_COND_TOMORROW"
msgid "tomorrow"
msgstr "moarn"
-#: sc/inc/globstr.hrc:457
+#: sc/inc/globstr.hrc:458
msgctxt "STR_COND_LAST7DAYS"
msgid "in the last 7 days"
msgstr "yn de lêste 7 dagen"
-#: sc/inc/globstr.hrc:458
+#: sc/inc/globstr.hrc:459
msgctxt "STR_COND_THISWEEK"
msgid "this week"
msgstr "dizze wike"
-#: sc/inc/globstr.hrc:459
+#: sc/inc/globstr.hrc:460
msgctxt "STR_COND_LASTWEEK"
msgid "last week"
msgstr "foarige wike"
-#: sc/inc/globstr.hrc:460
+#: sc/inc/globstr.hrc:461
msgctxt "STR_COND_NEXTWEEK"
msgid "next week"
msgstr "folgjende wike"
-#: sc/inc/globstr.hrc:461
+#: sc/inc/globstr.hrc:462
msgctxt "STR_COND_THISMONTH"
msgid "this month"
msgstr "dizze moanne"
-#: sc/inc/globstr.hrc:462
+#: sc/inc/globstr.hrc:463
msgctxt "STR_COND_LASTMONTH"
msgid "last month"
msgstr "foarige moanne"
-#: sc/inc/globstr.hrc:463
+#: sc/inc/globstr.hrc:464
msgctxt "STR_COND_NEXTMONTH"
msgid "next month"
msgstr "folgjende moanne"
-#: sc/inc/globstr.hrc:464
+#: sc/inc/globstr.hrc:465
msgctxt "STR_COND_THISYEAR"
msgid "this year"
msgstr "dit jier"
-#: sc/inc/globstr.hrc:465
+#: sc/inc/globstr.hrc:466
msgctxt "STR_COND_LASTYEAR"
msgid "last year"
msgstr "foarich jier"
-#: sc/inc/globstr.hrc:466
+#: sc/inc/globstr.hrc:467
msgctxt "STR_COND_NEXTYEAR"
msgid "next year"
msgstr "folgjend jier"
-#: sc/inc/globstr.hrc:467
+#: sc/inc/globstr.hrc:468
msgctxt "STR_COND_AND"
msgid "and"
msgstr "en"
-#: sc/inc/globstr.hrc:468
+#: sc/inc/globstr.hrc:469
msgctxt "STR_ERR_CONDFORMAT_PROTECTED"
msgid "Conditional Formats can not be created, deleted or changed in protected sheets."
msgstr "Betingst opmaak kin net oanmakke, wiske of oanpast wurde yn befeilige blêden."
-#: sc/inc/globstr.hrc:469
+#: sc/inc/globstr.hrc:470
msgctxt "STR_EDIT_EXISTING_COND_FORMATS"
msgid ""
"The selected cell already contains conditional formatting. You can either edit the existing conditional format or you define a new overlapping conditional format.\n"
@@ -2317,7 +2322,7 @@ msgstr ""
"\n"
" Wolle jo de besteande betingst opmaak bewurkje?"
-#: sc/inc/globstr.hrc:470
+#: sc/inc/globstr.hrc:471
msgctxt "STR_QUERY_FORMULA_RECALC_ONLOAD_ODS"
msgid ""
"This document was last saved by an application other than %PRODUCTNAME. Some formula cells may produce different results when recalculated.\n"
@@ -2328,7 +2333,7 @@ msgstr ""
"\n"
"Wolle jo alle formule sellen no werberekkenje?"
-#: sc/inc/globstr.hrc:471
+#: sc/inc/globstr.hrc:472
msgctxt "STR_QUERY_FORMULA_RECALC_ONLOAD_XLS"
msgid ""
"This document was last saved by Excel. Some formula cells may produce different results when recalculated.\n"
@@ -2339,77 +2344,77 @@ msgstr ""
"\n"
"Wolle jo alle formule sellen no werberekkenje?"
-#: sc/inc/globstr.hrc:472
+#: sc/inc/globstr.hrc:473
msgctxt "STR_NO_INSERT_DELETE_OVER_PIVOT_TABLE"
msgid "You cannot insert or delete cells when the affected range intersects with pivot table."
msgstr "Jo kinne gjin sellen ynfoegje of wiskje as it sel berik ûnderdiel is fan in draaitabel."
-#: sc/inc/globstr.hrc:473
+#: sc/inc/globstr.hrc:474
msgctxt "STR_DPFIELD_GROUP_BY_SECONDS"
msgid "Seconds"
msgstr "Sekonden"
-#: sc/inc/globstr.hrc:474
+#: sc/inc/globstr.hrc:475
msgctxt "STR_DPFIELD_GROUP_BY_MINUTES"
msgid "Minutes"
msgstr "Minuten"
-#: sc/inc/globstr.hrc:475
+#: sc/inc/globstr.hrc:476
msgctxt "STR_DPFIELD_GROUP_BY_HOURS"
msgid "Hours"
msgstr "Oeren"
-#: sc/inc/globstr.hrc:476
+#: sc/inc/globstr.hrc:477
msgctxt "STR_DPFIELD_GROUP_BY_DAYS"
msgid "Days"
msgstr "Dagen"
-#: sc/inc/globstr.hrc:477
+#: sc/inc/globstr.hrc:478
msgctxt "STR_DPFIELD_GROUP_BY_MONTHS"
msgid "Months"
msgstr "Moannen"
-#: sc/inc/globstr.hrc:478
+#: sc/inc/globstr.hrc:479
msgctxt "STR_DPFIELD_GROUP_BY_QUARTERS"
msgid "Quarters"
msgstr "Kertieren"
-#: sc/inc/globstr.hrc:479
+#: sc/inc/globstr.hrc:480
msgctxt "STR_DPFIELD_GROUP_BY_YEARS"
msgid "Years"
msgstr "Jierren"
-#: sc/inc/globstr.hrc:480
+#: sc/inc/globstr.hrc:481
msgctxt "STR_INVALIDVAL"
msgid "Invalid target value."
msgstr "Unjildige doel wearde."
-#: sc/inc/globstr.hrc:481
+#: sc/inc/globstr.hrc:482
msgctxt "STR_INVALIDVAR"
msgid "Undefined name for variable cell."
msgstr "Net definiearre namme foar fariabele sel."
-#: sc/inc/globstr.hrc:482
+#: sc/inc/globstr.hrc:483
msgctxt "STR_INVALIDFORM"
msgid "Undefined name as formula cell."
msgstr "Net definiearre namme foar formule sel."
-#: sc/inc/globstr.hrc:483
+#: sc/inc/globstr.hrc:484
msgctxt "STR_NOFORMULA"
msgid "Formula cell must contain a formula."
msgstr "Formule sel moat in formule befetsje."
-#: sc/inc/globstr.hrc:484
+#: sc/inc/globstr.hrc:485
msgctxt "STR_INVALIDINPUT"
msgid "Invalid input."
msgstr "Unjildige ynfier."
-#: sc/inc/globstr.hrc:485
+#: sc/inc/globstr.hrc:486
msgctxt "STR_INVALIDCONDITION"
msgid "Invalid condition."
msgstr "Unjildige betingst."
-#: sc/inc/globstr.hrc:486
+#: sc/inc/globstr.hrc:487
msgctxt "STR_QUERYREMOVE"
msgid ""
"Should the entry\n"
@@ -2420,133 +2425,133 @@ msgstr ""
"#\n"
"wiske wurde?"
-#: sc/inc/globstr.hrc:487
+#: sc/inc/globstr.hrc:488
msgctxt "STR_COPYLIST"
msgid "Copy List"
msgstr "List kopiearje"
-#: sc/inc/globstr.hrc:488
+#: sc/inc/globstr.hrc:489
msgctxt "STR_COPYFROM"
msgid "List from"
msgstr "List fan"
-#: sc/inc/globstr.hrc:489
+#: sc/inc/globstr.hrc:490
msgctxt "STR_COPYERR"
msgid "Cells without text have been ignored."
msgstr "Sellen sûnder tekst binne negearre."
-#: sc/inc/globstr.hrc:490
+#: sc/inc/globstr.hrc:491
#, c-format
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%s-click to follow hyperlink:"
msgstr "%s-klik om ferwizing te folgjen:"
-#: sc/inc/globstr.hrc:491
+#: sc/inc/globstr.hrc:492
msgctxt "STR_CLICKHYPERLINK"
msgid "click to open hyperlink:"
msgstr "klik om de ferwizing te iepenjen:"
-#: sc/inc/globstr.hrc:492
+#: sc/inc/globstr.hrc:493
msgctxt "STR_PRINT_PREVIEW_NODATA"
msgid "No Data"
msgstr "Gjin gegevens"
-#: sc/inc/globstr.hrc:493
+#: sc/inc/globstr.hrc:494
msgctxt "STR_PRINT_PREVIEW_EMPTY_RANGE"
msgid "Print Range Empty"
msgstr "Print berik leech"
-#: sc/inc/globstr.hrc:494
+#: sc/inc/globstr.hrc:495
msgctxt "STR_UNDO_CONDFORMAT"
msgid "Conditional Format"
msgstr "Opmaak mei betingst"
-#: sc/inc/globstr.hrc:495
+#: sc/inc/globstr.hrc:496
msgctxt "STR_UNDO_CONDFORMAT_LIST"
msgid "Conditional Formats"
msgstr "Opmaak mei betingst"
-#: sc/inc/globstr.hrc:496
+#: sc/inc/globstr.hrc:497
msgctxt "STR_UNDO_FORMULA_TO_VALUE"
msgid "Convert Formula To Value"
msgstr "Formule nei wearde omsette"
-#: sc/inc/globstr.hrc:497
+#: sc/inc/globstr.hrc:498
msgctxt "STR_UNQUOTED_STRING"
msgid "Strings without quotes are interpreted as column/row labels."
msgstr "Tekenrigen sûnder oanhelling wurde sjoen as kolom/rige lebels."
-#: sc/inc/globstr.hrc:498
+#: sc/inc/globstr.hrc:499
msgctxt "STR_ENTER_VALUE"
msgid "Enter a value!"
msgstr "Fier in wearde yn!"
-#: sc/inc/globstr.hrc:499
+#: sc/inc/globstr.hrc:500
msgctxt "STR_TABLE_COUNT"
msgid "Sheet %1 of %2"
msgstr "Blêd %1 fan 'e %2"
-#: sc/inc/globstr.hrc:500
+#: sc/inc/globstr.hrc:501
msgctxt "STR_FUNCTIONS_FOUND"
msgid "%1 and %2 more"
msgstr "%1 en %2 mear"
-#: sc/inc/globstr.hrc:501
+#: sc/inc/globstr.hrc:502
msgctxt "STR_GENERAL"
msgid "General"
msgstr "Algemien"
-#: sc/inc/globstr.hrc:502
+#: sc/inc/globstr.hrc:503
msgctxt "STR_NUMBER"
msgid "Number"
msgstr "Getal"
-#: sc/inc/globstr.hrc:503
+#: sc/inc/globstr.hrc:504
msgctxt "STR_PERCENT"
msgid "Percent"
msgstr "Persintaazje"
-#: sc/inc/globstr.hrc:504
+#: sc/inc/globstr.hrc:505
msgctxt "STR_CURRENCY"
msgid "Currency"
msgstr "Muntienheid"
-#: sc/inc/globstr.hrc:505
+#: sc/inc/globstr.hrc:506
msgctxt "STR_DATE"
msgid "Date"
msgstr "Datum"
-#: sc/inc/globstr.hrc:506
+#: sc/inc/globstr.hrc:507
msgctxt "STR_TIME"
msgid "Time"
msgstr "Tiid"
-#: sc/inc/globstr.hrc:507
+#: sc/inc/globstr.hrc:508
msgctxt "STR_SCIENTIFIC"
msgid "Scientific"
msgstr "Wittenskiplik"
-#: sc/inc/globstr.hrc:508
+#: sc/inc/globstr.hrc:509
msgctxt "STR_FRACTION"
msgid "Fraction"
msgstr "Breuk"
-#: sc/inc/globstr.hrc:509
+#: sc/inc/globstr.hrc:510
msgctxt "STR_BOOLEAN_VALUE"
msgid "Boolean Value"
msgstr "Booleaanske wearde"
-#: sc/inc/globstr.hrc:510
+#: sc/inc/globstr.hrc:511
msgctxt "STR_TEXT"
msgid "Text"
msgstr "Tekst"
-#: sc/inc/globstr.hrc:511
+#: sc/inc/globstr.hrc:512
msgctxt "STR_QUERY_PIVOTTABLE_DELTAB"
msgid "The selected sheet(s) contain source data of related pivot tables that will be lost. Are you sure you want to delete the selected sheet(s)?"
msgstr "It/de selektearre blêd(en) befetsje boarne gegevens fan draaitabellen dy ferlern gean. Wolle jo it/de selektearre blêd(en) wiskje?"
-#: sc/inc/globstr.hrc:512
+#: sc/inc/globstr.hrc:513
msgctxt "STR_ERR_NAME_INVALID_CELL_REF"
msgid "Invalid name. Reference to a cell, or a range of cells not allowed."
msgstr "Unjildige namme. Ferwizing nei in sel, of sel berik net tastien."
@@ -10488,8 +10493,8 @@ msgstr "Modus"
#: sc/inc/scfuncs.hrc:3010
msgctxt "SC_OPCODE_T_TEST"
-msgid "Mode specifies the number of distribution tails to return. 1= one-tailed, 2 = two-tailed distribution"
-msgstr "Modus jout it tal fan ferdieling stikken werom te kommen. 1 = ien stik, 2 = twasidige ferdieling"
+msgid "Mode specifies the number of distribution tails to return. 1 = one-tailed, 2 = two-tailed distribution"
+msgstr "Modus jout it tal fan ferdielings stikken werom te kommen. 1 = ien stik, 2 = twasidige ferdieling"
#: sc/inc/scfuncs.hrc:3011
msgctxt "SC_OPCODE_T_TEST"
@@ -10533,8 +10538,8 @@ msgstr "Modus"
#: sc/inc/scfuncs.hrc:3024
msgctxt "SC_OPCODE_T_TEST_MS"
-msgid "Mode specifies the number of distribution tails to return. 1= one-tailed, 2 = two-tailed distribution"
-msgstr "Modus jout it tal fan ferdieling stikken werom te kommen. 1 = ien stik, 2 = twasidige ferdieling"
+msgid "Mode specifies the number of distribution tails to return. 1 = one-tailed, 2 = two-tailed distribution"
+msgstr "Modus jout it tal fan ferdielings stikken werom te kommen. 1 = ien stik, 2 = twasidige ferdieling"
#: sc/inc/scfuncs.hrc:3025
msgctxt "SC_OPCODE_T_TEST_MS"
@@ -18020,22 +18025,22 @@ msgctxt "mergecellsdialog|MergeCellsDialog"
msgid "Merge Cells"
msgstr "Sellen gearfoegje"
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:81
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:84
msgctxt "mergecellsdialog|label"
msgid "Some cells are not empty."
msgstr "Guon sellen binne net leech."
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:96
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:99
msgctxt "mergecellsdialog|move-cells-radio"
msgid "Move the contents of the hidden cells into the first cell"
msgstr "De ynhâld fan de ferburgen sellen nei de earste sel ferpleatse"
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:112
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:115
msgctxt "mergecellsdialog|empty-cells-radio"
msgid "Empty the contents of the hidden cells"
msgstr "Wiskje de ynhâld fan de ferburgen sellen"
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:128
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:131
msgctxt "mergecellsdialog|keep-content-radio"
msgid "Keep the contents of the hidden cells"
msgstr "Hâld de ynhâld fan de ferburgen sellen"
@@ -18303,12 +18308,12 @@ msgstr "_Kontrolearje op fernijingen..."
#: sc/uiconfig/scalc/ui/notebookbar.ui:1952
msgctxt "notebookbar|FileLabel"
msgid "_File"
-msgstr ""
+msgstr "_Triem"
#: sc/uiconfig/scalc/ui/notebookbar.ui:1971
msgctxt "notebookbar|HelpMenuButton"
msgid "_Help"
-msgstr ""
+msgstr "_Help"
#: sc/uiconfig/scalc/ui/notebookbar.ui:2769
msgctxt "notebookbar|FileLabel"
@@ -18334,7 +18339,7 @@ msgstr "Ynsprong ferlytsje"
#: sc/uiconfig/scalc/ui/notebookbar.ui:4436
msgctxt "notebookbar|HomeMenuButton"
msgid "_Home"
-msgstr ""
+msgstr "T_hús"
#: sc/uiconfig/scalc/ui/notebookbar.ui:4544
msgctxt "notebookbar|CalcLabel"
@@ -18344,12 +18349,12 @@ msgstr "Thús"
#: sc/uiconfig/scalc/ui/notebookbar.ui:4991
msgctxt "notebookbar|FieldMenuButton"
msgid "Fiel_d"
-msgstr ""
+msgstr "Fjil_d"
#: sc/uiconfig/scalc/ui/notebookbar.ui:5496
msgctxt "notebookbar|InsertMenuButton"
msgid "_Insert"
-msgstr ""
+msgstr "_Ynfoegje"
#: sc/uiconfig/scalc/ui/notebookbar.ui:5581
msgctxt "notebookbar|InsertLabel"
@@ -18359,7 +18364,7 @@ msgstr "Ynfoegje"
#: sc/uiconfig/scalc/ui/notebookbar.ui:5610
msgctxt "notebookbar|reviewb"
msgid "Pag_e"
-msgstr ""
+msgstr "Sid_e"
#: sc/uiconfig/scalc/ui/notebookbar.ui:6335
msgctxt "notebookbar|PageLayoutLabel"
@@ -18374,7 +18379,7 @@ msgstr "_Statistiken"
#: sc/uiconfig/scalc/ui/notebookbar.ui:7304
msgctxt "notebookbar|DataMenuButton"
msgid "_Data"
-msgstr ""
+msgstr "_Gegevens"
#: sc/uiconfig/scalc/ui/notebookbar.ui:7412
msgctxt "notebookbar|DataLabel"
@@ -18384,7 +18389,7 @@ msgstr "Gegevens"
#: sc/uiconfig/scalc/ui/notebookbar.ui:8035
msgctxt "notebookbar|ReviewMenuButton"
msgid "_Review"
-msgstr ""
+msgstr "_Resinsearje"
#: sc/uiconfig/scalc/ui/notebookbar.ui:8120
msgctxt "notebookbar|ReviewLabel"
@@ -18394,7 +18399,7 @@ msgstr "Resinsje"
#: sc/uiconfig/scalc/ui/notebookbar.ui:8896
msgctxt "notebookbar|ViewMenuButton"
msgid "_View"
-msgstr ""
+msgstr "_Werjefte"
#: sc/uiconfig/scalc/ui/notebookbar.ui:8981
msgctxt "notebookbar|ViewLabel"
@@ -18404,7 +18409,7 @@ msgstr "Werjefte"
#: sc/uiconfig/scalc/ui/notebookbar.ui:9008
msgctxt "notebookbar|GraphicMenuButton"
msgid "_Graphic"
-msgstr ""
+msgstr "_Ofbylding"
#: sc/uiconfig/scalc/ui/notebookbar.ui:9949
msgctxt "notebookbar|ImageLabel"
@@ -18414,12 +18419,12 @@ msgstr "Ofbylding"
#: sc/uiconfig/scalc/ui/notebookbar.ui:11228
msgctxt "notebookbar|DrawMenuButton"
msgid "D_raw"
-msgstr ""
+msgstr "Te_kenje"
#: sc/uiconfig/scalc/ui/notebookbar.ui:11340
msgctxt "notebookbar|DrawLabel"
msgid "Draw"
-msgstr ""
+msgstr "Tekenje"
#: sc/uiconfig/scalc/ui/notebookbar.ui:11993
msgctxt "notebookbar|frame:MenuDraw"
@@ -18434,12 +18439,12 @@ msgstr "Objekt"
#: sc/uiconfig/scalc/ui/notebookbar.ui:12113
msgctxt "notebookbar|ToolsMenuButton"
msgid "_Tools"
-msgstr ""
+msgstr "_Ark"
#: sc/uiconfig/scalc/ui/notebookbar.ui:13250
msgctxt "notebookbar|DevLabel"
msgid "Tools"
-msgstr ""
+msgstr "Ark"
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:2945
msgctxt "notebookbar_groupedbar_compact|Menu"
diff --git a/source/fy/scp2/source/ooo.po b/source/fy/scp2/source/ooo.po
index 3ff7f172d1d..d5d7997030c 100644
--- a/source/fy/scp2/source/ooo.po
+++ b/source/fy/scp2/source/ooo.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2018-05-23 23:20+0200\n"
-"PO-Revision-Date: 2018-04-20 09:19+0000\n"
+"PO-Revision-Date: 2018-05-24 19:33+0000\n"
"Last-Translator: Berend Ytsma <berendy@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: fy\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1524215978.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1527190426.000000\n"
#: folderitem_ooo.ulf
msgctxt ""
@@ -1886,7 +1886,7 @@ msgctxt ""
"STR_NAME_MODULE_LANGPACK_FY\n"
"LngText.text"
msgid "Frisian"
-msgstr ""
+msgstr "Frysk"
#: module_langpack.ulf
msgctxt ""
@@ -1894,7 +1894,7 @@ msgctxt ""
"STR_DESC_MODULE_LANGPACK_FY\n"
"LngText.text"
msgid "Installs the Frisian user interface"
-msgstr ""
+msgstr "Ynstallearret de brûkersynterfaasje yn it Frysk"
#: module_langpack.ulf
msgctxt ""
diff --git a/source/fy/sd/messages.po b/source/fy/sd/messages.po
index e6b35b5a6ec..11fefcd8c91 100644
--- a/source/fy/sd/messages.po
+++ b/source/fy/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: 2018-05-22 13:16+0200\n"
-"PO-Revision-Date: 2018-05-17 10:59+0000\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
+"PO-Revision-Date: 2018-05-24 19:35+0000\n"
"Last-Translator: Berend Ytsma <berendy@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: fy\n"
@@ -14,169 +14,169 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1526554793.000000\n"
+"X-POOTLE-MTIME: 1527190544.000000\n"
-#: sd/inc/DocumentRenderer.hrc:29
+#: sd/inc/DocumentRenderer.hrc:27
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Slides"
msgstr "Dia's"
-#: sd/inc/DocumentRenderer.hrc:30
+#: sd/inc/DocumentRenderer.hrc:28
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Handouts"
msgstr "Handouts"
-#: sd/inc/DocumentRenderer.hrc:31
+#: sd/inc/DocumentRenderer.hrc:29
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Notes"
msgstr "Notysjes"
-#: sd/inc/DocumentRenderer.hrc:32
+#: sd/inc/DocumentRenderer.hrc:30
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Outline"
msgstr "Omtrek"
-#: sd/inc/DocumentRenderer.hrc:37
+#: sd/inc/DocumentRenderer.hrc:35
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "According to layout"
msgstr "Neffens opmaak"
-#: sd/inc/DocumentRenderer.hrc:38
+#: sd/inc/DocumentRenderer.hrc:36
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "1"
msgstr "1"
-#: sd/inc/DocumentRenderer.hrc:39
+#: sd/inc/DocumentRenderer.hrc:37
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "2"
msgstr "2"
-#: sd/inc/DocumentRenderer.hrc:40
+#: sd/inc/DocumentRenderer.hrc:38
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "3"
msgstr "3"
-#: sd/inc/DocumentRenderer.hrc:41
+#: sd/inc/DocumentRenderer.hrc:39
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "4"
msgstr "4"
-#: sd/inc/DocumentRenderer.hrc:42
+#: sd/inc/DocumentRenderer.hrc:40
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "6"
msgstr "6"
-#: sd/inc/DocumentRenderer.hrc:43
+#: sd/inc/DocumentRenderer.hrc:41
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "9"
msgstr "9"
-#: sd/inc/DocumentRenderer.hrc:48
+#: sd/inc/DocumentRenderer.hrc:46
msgctxt "STR_IMPRESS_PRINT_UI_ORDER_CHOICES"
msgid "Left to right, then down"
msgstr "Fan links nei rjochts, dan nei ûnderen"
-#: sd/inc/DocumentRenderer.hrc:49
+#: sd/inc/DocumentRenderer.hrc:47
msgctxt "STR_IMPRESS_PRINT_UI_ORDER_CHOICES"
msgid "Top to bottom, then right"
msgstr "Fan boppe nei ûnderen, dan nei rjochts"
-#: sd/inc/DocumentRenderer.hrc:54
+#: sd/inc/DocumentRenderer.hrc:52
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Original colors"
msgstr "Orizjinele kleuren"
-#: sd/inc/DocumentRenderer.hrc:55
+#: sd/inc/DocumentRenderer.hrc:53
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Grayscale"
msgstr "Griiswearden"
-#: sd/inc/DocumentRenderer.hrc:56
+#: sd/inc/DocumentRenderer.hrc:54
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Black & white"
msgstr "Swart & wyt"
-#: sd/inc/DocumentRenderer.hrc:61
+#: sd/inc/DocumentRenderer.hrc:59
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Original size"
msgstr "Orizjinele grutte"
-#: sd/inc/DocumentRenderer.hrc:62
+#: sd/inc/DocumentRenderer.hrc:60
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Fit to printable page"
msgstr "Oanpasse oan te printsjen side"
-#: sd/inc/DocumentRenderer.hrc:63
+#: sd/inc/DocumentRenderer.hrc:61
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Distribute on multiple sheets of paper"
msgstr "Ferdiel oer meardere blêden papier"
-#: sd/inc/DocumentRenderer.hrc:64
+#: sd/inc/DocumentRenderer.hrc:62
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Tile sheet of paper with repeated slides"
msgstr "Blêden papier tegelje mei werheljende dia's"
-#: sd/inc/DocumentRenderer.hrc:69
+#: sd/inc/DocumentRenderer.hrc:67
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Original size"
msgstr "Orizjinele grutte"
-#: sd/inc/DocumentRenderer.hrc:70
+#: sd/inc/DocumentRenderer.hrc:68
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Fit to printable page"
msgstr "Oanpasse oan te printsjen side"
-#: sd/inc/DocumentRenderer.hrc:71
+#: sd/inc/DocumentRenderer.hrc:69
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Distribute on multiple sheets of paper"
msgstr "Ferdiel oer meardere blêden papier"
-#: sd/inc/DocumentRenderer.hrc:72
+#: sd/inc/DocumentRenderer.hrc:70
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Tile sheet of paper with repeated pages"
msgstr "Blêden papier tegelje mei werheljende siden"
-#: sd/inc/DocumentRenderer.hrc:77
+#: sd/inc/DocumentRenderer.hrc:75
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "All pages"
msgstr "Alle siden"
-#: sd/inc/DocumentRenderer.hrc:78
+#: sd/inc/DocumentRenderer.hrc:76
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "Front sides / right pages"
msgstr "Foarside / rjochter siden"
-#: sd/inc/DocumentRenderer.hrc:79
+#: sd/inc/DocumentRenderer.hrc:77
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "Back sides / left pages"
msgstr "Efterside / linkersiden"
-#: sd/inc/DocumentRenderer.hrc:84
+#: sd/inc/DocumentRenderer.hrc:82
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~All slides"
msgstr "~Alle dia's"
-#: sd/inc/DocumentRenderer.hrc:85
+#: sd/inc/DocumentRenderer.hrc:83
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~Slides"
msgstr "~Dia's"
-#: sd/inc/DocumentRenderer.hrc:86
+#: sd/inc/DocumentRenderer.hrc:84
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Se~lection"
msgstr "Se~leksje"
-#: sd/inc/DocumentRenderer.hrc:91
+#: sd/inc/DocumentRenderer.hrc:89
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~All pages"
msgstr "~Alle siden"
-#: sd/inc/DocumentRenderer.hrc:92
+#: sd/inc/DocumentRenderer.hrc:90
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Pa~ges"
msgstr "Si~den"
-#: sd/inc/DocumentRenderer.hrc:93
+#: sd/inc/DocumentRenderer.hrc:91
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Se~lection"
msgstr "Se~leksje"
@@ -1717,52 +1717,52 @@ msgstr "Objekt mei gjin folling en gjin line"
#: sd/inc/strings.hrc:323
msgctxt "STR_POOLSHEET_FILLED"
msgid "Filled"
-msgstr ""
+msgstr "Folle"
#: sd/inc/strings.hrc:324
msgctxt "STR_POOLSHEET_FILLED_BLUE"
msgid "Filled Blue"
-msgstr ""
+msgstr "Blau folle"
#: sd/inc/strings.hrc:325
msgctxt "STR_POOLSHEET_FILLED_GREEN"
msgid "Filled Green"
-msgstr ""
+msgstr "Grien folle"
#: sd/inc/strings.hrc:326
msgctxt "STR_POOLSHEET_FILLED_YELLOW"
msgid "Filled Yellow"
-msgstr ""
+msgstr "Giel folle"
#: sd/inc/strings.hrc:327
msgctxt "STR_POOLSHEET_FILLED_RED"
msgid "Filled Red"
-msgstr ""
+msgstr "Read folle"
#: sd/inc/strings.hrc:329
msgctxt "STR_POOLSHEET_OUTLINE"
msgid "Outlined"
-msgstr ""
+msgstr "Omline"
#: sd/inc/strings.hrc:330
msgctxt "STR_POOLSHEET_OUTLINE_BLUE"
msgid "Outlined Blue"
-msgstr ""
+msgstr "Blau omline"
#: sd/inc/strings.hrc:331
msgctxt "STR_POOLSHEET_OUTLINE_GREEN"
msgid "Outlined Green"
-msgstr ""
+msgstr "Grien omline"
#: sd/inc/strings.hrc:332
msgctxt "STR_POOLSHEET_OUTLINE_YELLOW"
msgid "Outlined Yellow"
-msgstr ""
+msgstr "Giel omline"
#: sd/inc/strings.hrc:333
msgctxt "STR_POOLSHEET_OUTLINE_RED"
msgid "Outlined Red"
-msgstr ""
+msgstr "Read omline"
#: sd/inc/strings.hrc:335
msgctxt "STR_PSEUDOSHEET_TITLE"
@@ -3615,67 +3615,67 @@ msgstr "_Kontrolearje op fernijingen..."
#: sd/uiconfig/simpress/ui/notebookbar.ui:2422
msgctxt "notebookbar|FileLabel"
msgid "_File"
-msgstr ""
+msgstr "_Triem"
#: sd/uiconfig/simpress/ui/notebookbar.ui:2441
msgctxt "notebookbar|HelpMenuButton"
msgid "_Help"
-msgstr ""
+msgstr "_Help"
#: sd/uiconfig/simpress/ui/notebookbar.ui:3230
msgctxt "notebookbar|FileLabel"
msgid "File"
-msgstr ""
+msgstr "Triem"
#: sd/uiconfig/simpress/ui/notebookbar.ui:3389
msgctxt "notebookbar|HomeMenuButton"
msgid "_Home"
-msgstr ""
+msgstr "T_hús"
#: sd/uiconfig/simpress/ui/notebookbar.ui:4846
msgctxt "notebookbar|HomeLabel"
msgid "Home"
-msgstr ""
+msgstr "Thús"
#: sd/uiconfig/simpress/ui/notebookbar.ui:5293
msgctxt "notebookbar|FieldMenuButton"
msgid "Fiel_d"
-msgstr ""
+msgstr "Fjil_d"
#: sd/uiconfig/simpress/ui/notebookbar.ui:5820
msgctxt "notebookbar|InsertMenuButton"
msgid "_Insert"
-msgstr ""
+msgstr "_Ynfoegje"
#: sd/uiconfig/simpress/ui/notebookbar.ui:5905
msgctxt "notebookbar|InsertLabel"
msgid "Insert"
-msgstr ""
+msgstr "Ynfoegje"
#: sd/uiconfig/simpress/ui/notebookbar.ui:5935
msgctxt "notebookbar|SlideMenuButton"
msgid "S_lide"
-msgstr ""
+msgstr "D_ia"
#: sd/uiconfig/simpress/ui/notebookbar.ui:6688
msgctxt "notebookbar|LayoutLabel"
msgid "Slide"
-msgstr ""
+msgstr "Dia"
#: sd/uiconfig/simpress/ui/notebookbar.ui:6716
msgctxt "notebookbar|SlideShowMenuButton"
msgid "_Slide Show"
-msgstr ""
+msgstr "_Dia foarstelling"
#: sd/uiconfig/simpress/ui/notebookbar.ui:7194
msgctxt "notebookbar|ReferencesLabel"
msgid "Slide Show"
-msgstr ""
+msgstr "Dia foarstelling"
#: sd/uiconfig/simpress/ui/notebookbar.ui:7222
msgctxt "notebookbar|ReviewMenuButton"
msgid "_Review"
-msgstr ""
+msgstr "_Resinsearje"
#: sd/uiconfig/simpress/ui/notebookbar.ui:7651
msgctxt "notebookbar|ReviewLabel"
@@ -3685,7 +3685,7 @@ msgstr "Resinsje"
#: sd/uiconfig/simpress/ui/notebookbar.ui:7679
msgctxt "notebookbar|ViewMenuButton"
msgid "_View"
-msgstr ""
+msgstr "_Werjefte"
#: sd/uiconfig/simpress/ui/notebookbar.ui:8580
msgctxt "notebookbar|ViewLabel"
@@ -3695,7 +3695,7 @@ msgstr "Werjefte"
#: sd/uiconfig/simpress/ui/notebookbar.ui:9369
msgctxt "notebookbar|TableMenuButton"
msgid "T_able"
-msgstr ""
+msgstr "T_abel"
#: sd/uiconfig/simpress/ui/notebookbar.ui:9453
msgctxt "notebookbar|TableLabel"
@@ -3706,12 +3706,12 @@ msgstr "Tabel"
#: sd/uiconfig/simpress/ui/notebookbar.ui:11131
msgctxt "notebookbar|ConvertMenuButton"
msgid "Convert"
-msgstr ""
+msgstr "Omsette"
#: sd/uiconfig/simpress/ui/notebookbar.ui:10335
msgctxt "notebookbar|GraphicMenuButton"
msgid "_Graphic"
-msgstr ""
+msgstr "_Ofbylding"
#: sd/uiconfig/simpress/ui/notebookbar.ui:10447
msgctxt "notebookbar|ImageLabel"
@@ -3721,22 +3721,22 @@ msgstr "Ofbylding"
#: sd/uiconfig/simpress/ui/notebookbar.ui:11658
msgctxt "notebookbar|DrawMenuButton"
msgid "D_raw"
-msgstr ""
+msgstr "Te_kenje"
#: sd/uiconfig/simpress/ui/notebookbar.ui:11772
msgctxt "notebookbar|DrawLabel"
msgid "Draw"
-msgstr ""
+msgstr "Tekenje"
#: sd/uiconfig/simpress/ui/notebookbar.ui:11804
msgctxt "notebookbar|ToolsMenuButton"
msgid "_Tools"
-msgstr ""
+msgstr "_Ark"
#: sd/uiconfig/simpress/ui/notebookbar.ui:12758
msgctxt "notebookbar|DevLabel"
msgid "Tools"
-msgstr ""
+msgstr "Ark"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:1922
msgctxt "notebookbar_groupedbar_compact|Menu"
diff --git a/source/fy/sfx2/messages.po b/source/fy/sfx2/messages.po
index d8435f71610..a18293e2eef 100644
--- a/source/fy/sfx2/messages.po
+++ b/source/fy/sfx2/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: 2018-05-22 13:16+0200\n"
-"PO-Revision-Date: 2018-05-10 19:40+0000\n"
+"PO-Revision-Date: 2018-06-06 13:52+0000\n"
"Last-Translator: Berend Ytsma <berendy@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: fy\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1525981255.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1528293137.000000\n"
#: include/sfx2/strings.hrc:25
msgctxt "STR_TEMPLATE_FILTER"
@@ -445,7 +445,7 @@ msgid ""
"Maybe no web browser could be found on your system. In that case, please check your Desktop Preferences or install a web browser (for example, Firefox) in the default location requested during the browser installation."
msgstr ""
"It iepenjen fan \"$(ARG1)\" mislearre mei de flater koade $(ARG2) en berjocht: \"$(ARG3)\"\n"
-"Miskien is der gjin sneuper op jo systeem fûn. Kontrolearje, yn dat gefal, de foarkar fan jo buroblêd of ynstallearje in web sneuper (lykas Vivaldi) yn de standert lokaasje dy ûnder it ynstallearjen foarsteld wurdt."
+"Miskien is der gjin sneuper op jo systeem fûn. Kontrolearje, yn dat gefal, de foarkar fan jo buroblêd of ynstallearje in websneuper (lykas Vivaldi) yn de standert lokaasje dy ûnder it ynstallearjen foarsteld wurdt."
#: include/sfx2/strings.hrc:106
msgctxt "STR_NO_ABS_URI_REF"
@@ -1448,7 +1448,7 @@ msgstr "CV"
#: include/sfx2/strings.hrc:301
msgctxt "STR_TEMPLATE_NAME25"
msgid "Resume"
-msgstr "Ferfetsje"
+msgstr "Gearfetting"
#: include/sfx2/strings.hrc:302
msgctxt "STR_TEMPLATE_NAME26"
@@ -2726,17 +2726,17 @@ msgstr "_Iepenje triem"
#: sfx2/uiconfig/ui/startcenter.ui:166
msgctxt "startcenter|open_remote"
msgid "Remote File_s"
-msgstr "E_ksterne triemmen"
+msgstr "_Eksterne triemmen"
#: sfx2/uiconfig/ui/startcenter.ui:198
msgctxt "startcenter|open_recent"
msgid "_Recent Files"
-msgstr "_Koartlyn brûkte triemmen"
+msgstr "_Resint brûkte triemmen"
#: sfx2/uiconfig/ui/startcenter.ui:217
msgctxt "startcenter|templates_all"
msgid "T_emplates"
-msgstr "S_jabloanen"
+msgstr "_Sjabloanen"
#: sfx2/uiconfig/ui/startcenter.ui:253
msgctxt "startcenter|create_label"
@@ -2791,7 +2791,7 @@ msgstr "Programma"
#: sfx2/uiconfig/ui/startcenter.ui:500
msgctxt "startcenter|all_recent_label"
msgid "Recent Files List"
-msgstr "Koartlyn brûkte triemmen list"
+msgstr "Resint brûkte triemmen list"
#: sfx2/uiconfig/ui/startcenter.ui:513
msgctxt "startcenter|local_view_label"
diff --git a/source/fy/svx/messages.po b/source/fy/svx/messages.po
index 513ff496457..a34e7cb8980 100644
--- a/source/fy/svx/messages.po
+++ b/source/fy/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: 2018-05-16 16:53+0200\n"
-"PO-Revision-Date: 2018-05-17 17:36+0000\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
+"PO-Revision-Date: 2018-06-06 12:51+0000\n"
"Last-Translator: Berend Ytsma <berendy@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: fy\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1526578575.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1528289514.000000\n"
#: svx/inc/fieldunit.hrc:30
msgctxt "RID_SVXSTR_FIELDUNIT_TABLE"
@@ -5179,8 +5179,8 @@ msgstr "Jo kinne ek relevante dielen fan jo brûkers profyl yn jo brek rapport y
#: svx/uiconfig/ui/safemodedialog.ui:432
msgctxt "safemodedialog|btn_create_zip"
-msgid "Create Zip Archive from User Profile"
-msgstr "Meitsje in zip triem fan jo brûker profyl"
+msgid "Archive User Profile"
+msgstr "Brûkers profyl argivearje"
#: svx/uiconfig/ui/safemodedialog.ui:445
msgctxt "safemodedialog|linkbutton_profile"
@@ -8769,9 +8769,9 @@ msgid "Red"
msgstr "Read"
#: include/svx/strings.hrc:565
-msgctxt "RID_SVXSTR_COLOR_VIOLET"
-msgid "Violet"
-msgstr "Fiolet"
+msgctxt "RID_SVXSTR_COLOR_MAGENTA"
+msgid "Magenta"
+msgstr "Magenta"
#: include/svx/strings.hrc:566
msgctxt "RID_SVXSTR_COLOR_PURPLE"
@@ -8835,9 +8835,9 @@ msgid "Light Red"
msgstr "Ljochtread"
#: include/svx/strings.hrc:579
-msgctxt "RID_SVXSTR_COLOR_LIGHTVIOLET"
-msgid "Light Violet"
-msgstr "Ljocht violet"
+msgctxt "RID_SVXSTR_COLOR_LIGHTMAGENTA"
+msgid "Light Magenta"
+msgstr "Ljocht magenta"
#: include/svx/strings.hrc:580
msgctxt "RID_SVXSTR_COLOR_LIGHTPURPLE"
@@ -8901,9 +8901,9 @@ msgid "Dark Red"
msgstr "Donkerread"
#: include/svx/strings.hrc:593
-msgctxt "RID_SVXSTR_COLOR_DARKVIOLET1"
-msgid "Dark Violet"
-msgstr "Donker fiolet"
+msgctxt "RID_SVXSTR_COLOR_DARKMAGENTA"
+msgid "Dark Magenta"
+msgstr "Donker magenta"
#: include/svx/strings.hrc:594
msgctxt "RID_SVXSTR_COLOR_DARKPURPLE"
@@ -8937,55 +8937,55 @@ msgstr "Donker limoen"
#. Elements of the Tonal color palette
#: include/svx/strings.hrc:601
+msgctxt "RID_SVXSTR_COLOR_VIOLET"
+msgid "Violet"
+msgstr "Fiolet"
+
+#: include/svx/strings.hrc:602
msgctxt "RID_SVXSTR_COLOR_VIOLET_OUG"
msgid "Violet (Out of Gamut)"
msgstr "Fiolet (Ut Gamut)"
-#: include/svx/strings.hrc:602
+#: include/svx/strings.hrc:603
msgctxt "RID_SVXSTR_COLOR_BLUE_OUG"
msgid "Blue (Out of Gamut)"
msgstr "Blau (Ut Gamut)"
-#: include/svx/strings.hrc:603
+#: include/svx/strings.hrc:604
msgctxt "RID_SVXSTR_COLOR_AZURE_OUG"
msgid "Azure (Out of Gamut)"
msgstr "Azure (Ut Gamut)"
-#: include/svx/strings.hrc:604
+#: include/svx/strings.hrc:605
msgctxt "RID_SVXSTR_COLOR_SPRINGGREEN_OUG"
msgid "Spring Green (Out of Gamut)"
msgstr "Maitiid grien (Ut Gamut)"
-#: include/svx/strings.hrc:605
+#: include/svx/strings.hrc:606
msgctxt "RID_SVXSTR_COLOR_GREEN_OUG"
msgid "Green (Out of Gamut)"
msgstr "Grien (Ut Gamut)"
-#: include/svx/strings.hrc:606
+#: include/svx/strings.hrc:607
msgctxt "RID_SVXSTR_COLOR_CHARTREUSEGREEN_OUG"
msgid "Chartreuse Green (Out of Gamut)"
msgstr "Chartreuse (Ut Gamut)"
-#: include/svx/strings.hrc:607
+#: include/svx/strings.hrc:608
msgctxt "RID_SVXSTR_COLOR_ORANGE_OUG"
msgid "Orange (Out of Gamut)"
msgstr "Oranje (Ut Gamut)"
-#: include/svx/strings.hrc:608
+#: include/svx/strings.hrc:609
msgctxt "RID_SVXSTR_COLOR_RED_OUG"
msgid "Red (Out of Gamut)"
msgstr "Read (Ut Gamut)"
-#: include/svx/strings.hrc:609
+#: include/svx/strings.hrc:610
msgctxt "RID_SVXSTR_COLOR_ROSE_OUG"
msgid "Rose (Out of Gamut)"
msgstr "Rôze (Ut Gamut)"
-#: include/svx/strings.hrc:610
-msgctxt "RID_SVXSTR_COLOR_MAGENTA"
-msgid "Magenta"
-msgstr "Magenta"
-
#: include/svx/strings.hrc:611
msgctxt "RID_SVXSTR_COLOR_AZURE"
msgid "Azure"
@@ -12091,13 +12091,13 @@ msgstr "Opsommingetkens fan nei rjochts wizende pylken"
#: include/svx/strings.hrc:1273
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_6"
-msgid "Check mark bullets"
-msgstr "Finkje as opsommingstekens"
+msgid "Cross mark bullets"
+msgstr "Krúskes as opsommingstekens"
#: include/svx/strings.hrc:1274
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_7"
-msgid "Tick mark bullets"
-msgstr "Mjitstreekje as opsommingstekens"
+msgid "Check mark bullets"
+msgstr "Finkjes as opsommingstekens"
#: include/svx/strings.hrc:1275
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_0"
diff --git a/source/fy/sw/messages.po b/source/fy/sw/messages.po
index 0541cb75ee8..2443cc19d59 100644
--- a/source/fy/sw/messages.po
+++ b/source/fy/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: 2018-05-22 13:17+0200\n"
-"PO-Revision-Date: 2018-05-17 17:37+0000\n"
+"POT-Creation-Date: 2018-06-12 14:41+0200\n"
+"PO-Revision-Date: 2018-06-06 12:53+0000\n"
"Last-Translator: Berend Ytsma <berendy@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: fy\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1526578678.000000\n"
+"X-POOTLE-MTIME: 1528289582.000000\n"
#: sw/inc/app.hrc:29
msgctxt "RID_PARAGRAPHSTYLEFAMILY"
@@ -1180,13 +1180,13 @@ msgstr "Sitaat"
#: sw/inc/strings.hrc:172
msgctxt "STR_POOLCOLL_TOX_ILLUSH"
-msgid "Illustration Index Heading"
-msgstr "Titel yllustraasje register"
+msgid "Figure Index Heading"
+msgstr ""
#: sw/inc/strings.hrc:173
msgctxt "STR_POOLCOLL_TOX_ILLUS1"
-msgid "Illustration Index 1"
-msgstr "Yllustraasje register 1"
+msgid "Figure Index 1"
+msgstr ""
#: sw/inc/strings.hrc:174
msgctxt "STR_POOLCOLL_TOX_OBJECTH"
@@ -3590,8 +3590,8 @@ msgstr "Objekten register"
#: sw/inc/strings.hrc:672
msgctxt "STR_TOX_ILL"
-msgid "Illustration Index"
-msgstr "Yllustraasje register"
+msgid "Table of Figures"
+msgstr ""
#: sw/inc/strings.hrc:673
#, c-format
@@ -9244,72 +9244,72 @@ msgctxt "footnotepage|label5"
msgid "Continuation Notice"
msgstr "Ferfolch notysje"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:49
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:55
msgctxt "footnotesendnotestabpage|ftnntnum"
msgid "_Restart numbering"
msgstr "_Nije nûmering"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:91
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:93
msgctxt "footnotesendnotestabpage|ftnoffset_label"
msgid "_Start at:"
msgstr "_Begjin by:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:112
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:111
msgctxt "footnotesendnotestabpage|ftnntnumfmt"
msgid "Custom _format"
msgstr "Oanpast _formaat"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:155
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:150
msgctxt "footnotesendnotestabpage|ftnsuffix_label"
msgid "Aft_er:"
msgstr "Dêrn_ei:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:199
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:188
msgctxt "footnotesendnotestabpage|ftnprefix_label"
msgid "Be_fore:"
msgstr "Der_foar:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:228
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:212
msgctxt "footnotesendnotestabpage|ftnntattextend"
msgid "Collec_t at end of text"
msgstr "Oan ein fan _tekst sammelje"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:252
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:234
msgctxt "footnotesendnotestabpage|label1"
msgid "Footnotes"
msgstr "Fuotnoat"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:289
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:271
msgctxt "footnotesendnotestabpage|endntattextend"
msgid "C_ollect at end of section"
msgstr "Oan ein fan h_aadstik sammelje"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:315
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:295
msgctxt "footnotesendnotestabpage|endntnum"
msgid "_Restart numbering"
msgstr "_Nije nûmering"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:357
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:333
msgctxt "footnotesendnotestabpage|endoffset_label"
msgid "_Start at:"
msgstr "_Begjin by:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:378
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:351
msgctxt "footnotesendnotestabpage|endntnumfmt"
msgid "_Custom format"
msgstr "_Oanpast formaat"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:421
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:390
msgctxt "footnotesendnotestabpage|endsuffix_label"
msgid "Aft_er:"
msgstr "Dêrn_ei:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:465
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:428
msgctxt "footnotesendnotestabpage|endprefix_label"
msgid "Be_fore:"
msgstr "Der_foar:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:500
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:458
msgctxt "footnotesendnotestabpage|label2"
msgid "Endnotes"
msgstr "Einnoat"
@@ -9339,27 +9339,27 @@ msgctxt "formatsectiondialog|notes"
msgid "Footnotes/Endnotes"
msgstr "Fuotnoaten/einnoaten"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:63
+#: sw/uiconfig/swriter/ui/formattablepage.ui:77
msgctxt "formattablepage|nameft"
msgid "_Name"
msgstr "_Namme"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:79
+#: sw/uiconfig/swriter/ui/formattablepage.ui:91
msgctxt "formattablepage|widthft"
msgid "W_idth"
msgstr "Bree_dte"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:110
+#: sw/uiconfig/swriter/ui/formattablepage.ui:120
msgctxt "formattablepage|relwidth"
msgid "Relati_ve"
msgstr "Relatie_f"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:155
+#: sw/uiconfig/swriter/ui/formattablepage.ui:160
msgctxt "formattablepage|label45"
msgid "Properties"
msgstr "Eigenskippen"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:194
+#: sw/uiconfig/swriter/ui/formattablepage.ui:195
msgctxt "formattablepage|leftft"
msgid "Lef_t"
msgstr "Link_s"
@@ -9369,62 +9369,62 @@ msgctxt "formattablepage|rightft"
msgid "Ri_ght"
msgstr "Rjo_chts"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:228
+#: sw/uiconfig/swriter/ui/formattablepage.ui:226
msgctxt "formattablepage|aboveft"
msgid "_Above"
msgstr "_Boppe"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:245
+#: sw/uiconfig/swriter/ui/formattablepage.ui:241
msgctxt "formattablepage|belowft"
msgid "_Below"
msgstr "_Under"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:320
+#: sw/uiconfig/swriter/ui/formattablepage.ui:311
msgctxt "formattablepage|label46"
msgid "Spacing"
msgstr "Ofstân"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:362
+#: sw/uiconfig/swriter/ui/formattablepage.ui:349
msgctxt "formattablepage|full"
msgid "A_utomatic"
msgstr "A_utomatysk"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:380
+#: sw/uiconfig/swriter/ui/formattablepage.ui:365
msgctxt "formattablepage|left"
msgid "_Left"
msgstr "_Links"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:398
+#: sw/uiconfig/swriter/ui/formattablepage.ui:381
msgctxt "formattablepage|fromleft"
msgid "_From left"
msgstr "_Fan ôf links"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:416
+#: sw/uiconfig/swriter/ui/formattablepage.ui:397
msgctxt "formattablepage|right"
msgid "R_ight"
msgstr "R_jochts"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:435
+#: sw/uiconfig/swriter/ui/formattablepage.ui:413
msgctxt "formattablepage|center"
msgid "_Center"
msgstr "_Sintrearre"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:453
+#: sw/uiconfig/swriter/ui/formattablepage.ui:429
msgctxt "formattablepage|free"
msgid "_Manual"
msgstr "_Selsbehear"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:478
+#: sw/uiconfig/swriter/ui/formattablepage.ui:452
msgctxt "formattablepage|label43"
msgid "Alignment"
msgstr "Rjochting"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:522
+#: sw/uiconfig/swriter/ui/formattablepage.ui:491
msgctxt "formattablepage|label53"
msgid "Text _direction"
msgstr "Tekst_rjochting"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:553
+#: sw/uiconfig/swriter/ui/formattablepage.ui:519
msgctxt "formattablepage|label44"
msgid "Properties "
msgstr "Eigenskippen "
@@ -9779,22 +9779,27 @@ msgctxt "headerfootermenu|insert_pagenumber"
msgid "Insert Page Number"
msgstr "Side nûmer ynfoegje"
-#: sw/uiconfig/swriter/ui/indentpage.ui:52
+#: sw/uiconfig/swriter/ui/headerfootermenu.ui:42
+msgctxt "headerfootermenu|insert_pagecount"
+msgid "Insert Page Count"
+msgstr "Side tal ynfoegje"
+
+#: sw/uiconfig/swriter/ui/indentpage.ui:57
msgctxt "indentpage|label1"
msgid "_Before section"
msgstr "_Foar seksje"
-#: sw/uiconfig/swriter/ui/indentpage.ui:67
+#: sw/uiconfig/swriter/ui/indentpage.ui:71
msgctxt "indentpage|label3"
msgid "_After section"
msgstr "_Nei seksje"
-#: sw/uiconfig/swriter/ui/indentpage.ui:113
+#: sw/uiconfig/swriter/ui/indentpage.ui:115
msgctxt "indentpage|label2"
msgid "Indent"
msgstr "Ynsprong"
-#: sw/uiconfig/swriter/ui/indentpage.ui:142
+#: sw/uiconfig/swriter/ui/indentpage.ui:155
msgctxt "indentpage|preview-atkobject"
msgid "Example"
msgstr "Foarbyld"
@@ -11912,7 +11917,7 @@ msgstr "_Kontrolearje op fernijingen..."
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:2007
msgctxt "notebookbar_compact|FileMenuButton"
msgid "_File"
-msgstr ""
+msgstr "_Triem"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:2721
msgctxt "notebookbar_compact|FileLabel"
@@ -11922,7 +11927,7 @@ msgstr "Triem"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:2770
msgctxt "notebookbar_compact|HomeMenuButton"
msgid "_Menu"
-msgstr ""
+msgstr "_Menu"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3829
msgctxt "notebookbar_compact|HomeLabel"
@@ -11932,7 +11937,7 @@ msgstr "Thús"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3882
msgctxt "notebookbar_compact|InsertMenuButton"
msgid "_Insert"
-msgstr ""
+msgstr "_Ynfoegje"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4501
msgctxt "notebookbar_compact|InsertLabel"
@@ -11950,7 +11955,7 @@ msgstr "Omrinne"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5221
msgctxt "notebookbar_compact|PageMenuButton"
msgid "Pag_e"
-msgstr ""
+msgstr "Sid_e"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5273
msgctxt "notebookbar_compact|LayoutLabel"
@@ -11960,7 +11965,7 @@ msgstr "Yndieling"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5320
msgctxt "notebookbar_compact|ReferencesMenuButton"
msgid "Reference_s"
-msgstr ""
+msgstr "Ferwizing_en"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5708
msgctxt "notebookbar_compact|ReferencesLabel"
@@ -11970,7 +11975,7 @@ msgstr "Ferwizingen"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6204
msgctxt "notebookbar_compact|ReviewMenuButton"
msgid "_Review"
-msgstr ""
+msgstr "_Resinsearje"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6237
msgctxt "notebookbar_compact|ReviewLabel"
@@ -11980,7 +11985,7 @@ msgstr "Resinsje"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6706
msgctxt "notebookbar_compact|ViewMenuButton"
msgid "_View"
-msgstr ""
+msgstr "_Werjefte"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6758
msgctxt "notebookbar_compact|ViewLabel"
@@ -11990,7 +11995,7 @@ msgstr "Werjefte"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6806
msgctxt "notebookbar_compact|TableMenuButton"
msgid "T_able"
-msgstr ""
+msgstr "T_abel"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7540
msgctxt "notebookbar_compact|TableLabel"
@@ -12007,7 +12012,7 @@ msgstr "Rj_ochtsje"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8291
msgctxt "notebookbar_compact|GraphicMenuButton"
msgid "_Graphic"
-msgstr ""
+msgstr "_Ofbylding"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8324
msgctxt "notebookbar_compact|ImageLabel"
@@ -12017,7 +12022,7 @@ msgstr "Ofbylding"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9070
msgctxt "notebookbar_compact|DrawMenuButton"
msgid "D_raw"
-msgstr ""
+msgstr "Te_kenje"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9125
msgctxt "notebookbar_compact|ShapeLabel"
@@ -12027,7 +12032,7 @@ msgstr "Tekenje"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9651
msgctxt "notebookbar_compact|ObjectMenuButton:MenuDraw"
msgid "Object"
-msgstr ""
+msgstr "Objekt"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9707
msgctxt "notebookbar_compact|FrameLabel"
@@ -12037,7 +12042,7 @@ msgstr "Objekt"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9757
msgctxt "notebookbar_compact|ToolsMenuButton"
msgid "_Tools"
-msgstr ""
+msgstr "_Ark"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10600
msgctxt "notebookbar_compact|DevLabel"
@@ -13285,8 +13290,8 @@ msgstr "Formulier befeiligje"
#: sw/uiconfig/swriter/ui/optcompatpage.ui:68
msgctxt "optcompatpage|format"
-msgid "MS Word-compatible trailing blanks"
-msgstr "MS Word kompatibel efterlizzende romte"
+msgid "Word-compatible trailing blanks"
+msgstr "Word kompatibele opfolch spaasjes"
#: sw/uiconfig/swriter/ui/optcompatpage.ui:69
msgctxt "optcompatpage|format"
@@ -13295,8 +13300,8 @@ msgstr "Wite linen op de eftergrûnen fan PDF siden tastean foar kompatibiliteit
#: sw/uiconfig/swriter/ui/optcompatpage.ui:70
msgctxt "optcompatpage|format"
-msgid "A database field (e.g., MailMerge) with empty value hides its paragraph"
-msgstr ""
+msgid "Hide paragraphs of database fields (e.g., mail merge) with an empty value"
+msgstr "Alinea's ferbergje fan gegevensbank fjilden (ngl. standertbrief) mei in legen wearde"
#: sw/uiconfig/swriter/ui/optcompatpage.ui:71
msgctxt "optcompatpage|format"
@@ -15981,122 +15986,122 @@ msgctxt "tableproperties|background"
msgid "Background"
msgstr "Eftergrûn"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:25
-msgctxt "tabletextflowpage|liststore1"
-msgid "Horizontal"
-msgstr "Horizontaal"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:29
-msgctxt "tabletextflowpage|liststore1"
-msgid "Vertical"
-msgstr "Fertikaal"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:33
-msgctxt "tabletextflowpage|liststore1"
-msgid "Use superordinate object settings"
-msgstr "De ynstellingen fan it hegere objekt brûke"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:47
-msgctxt "tabletextflowpage|liststore2"
-msgid "Top"
-msgstr "Boppe"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:51
-msgctxt "tabletextflowpage|liststore2"
-msgid "Centered"
-msgstr "Sintrearre"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:55
-msgctxt "tabletextflowpage|liststore2"
-msgid "Bottom"
-msgstr "Under"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:97
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:53
msgctxt "tabletextflowpage|break"
msgid "_Break"
msgstr "Of_brekke"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:112
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:68
msgctxt "tabletextflowpage|page"
msgid "_Page"
msgstr "_Side"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:132
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:87
msgctxt "tabletextflowpage|column"
msgid "Col_umn"
msgstr "Kol_om"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:151
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:106
msgctxt "tabletextflowpage|before"
msgid "Be_fore"
msgstr "Der_foar"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:171
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:125
msgctxt "tabletextflowpage|after"
msgid "_After"
msgstr "_Dêrnei"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:203
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:158
msgctxt "tabletextflowpage|pagestyle"
msgid "With Page St_yle"
msgstr "Mei side st_yl"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:224
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:177
msgctxt "tabletextflowpage|pagenoft"
msgid "Page _number"
msgstr "Side_nûmer"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:257
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:213
msgctxt "tabletextflowpage|pagestylelb-atkobject"
msgid "With Page Style"
msgstr "Mei side styl"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:274
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:230
msgctxt "tabletextflowpage|split"
msgid "Allow _table to split across pages and columns"
msgstr "Tabel _tastean om him oer siden en kolommen te spjalten"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:289
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:245
msgctxt "tabletextflowpage|splitrow"
msgid "Allow row to break a_cross pages and columns"
msgstr "Tastean dat rigen oer siden en _kolommen ôfbrutsen wurde"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:306
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:262
msgctxt "tabletextflowpage|keep"
msgid "_Keep with next paragraph"
msgstr "_Alinea's byienhâlde"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:328
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:284
msgctxt "tabletextflowpage|label40"
msgid "Text _orientation"
msgstr "Tekst _oriïntaasje"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:361
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:298
+msgctxt "tabletextflowpage|liststore1"
+msgid "Horizontal"
+msgstr "Horizontaal"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:299
+msgctxt "tabletextflowpage|liststore1"
+msgid "Vertical"
+msgstr "Fertikaal"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:300
+msgctxt "tabletextflowpage|liststore1"
+msgid "Use superordinate object settings"
+msgstr "De ynstellingen fan it hegere objekt brûke"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:321
msgctxt "tabletextflowpage|headline"
msgid "R_epeat heading"
msgstr "K_optekst werhelje"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:383
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:343
msgctxt "tabletextflowpage|label38"
msgid "The first "
msgstr "De earste "
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:396
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:356
msgctxt "tabletextflowpage|label39"
msgid "rows"
msgstr "rigen"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:434
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:395
msgctxt "tabletextflowpage|label35"
msgid "Text Flow"
msgstr "Tekst ferrin"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:467
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:428
msgctxt "tabletextflowpage|label41"
msgid "_Vertical alignment"
msgstr "_Fertikale rjochting"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:495
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:442
+msgctxt "tabletextflowpage|liststore2"
+msgid "Top"
+msgstr "Boppe"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:443
+msgctxt "tabletextflowpage|liststore2"
+msgid "Centered"
+msgstr "Sintrearre"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:444
+msgctxt "tabletextflowpage|liststore2"
+msgid "Bottom"
+msgstr "Under"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:460
msgctxt "tabletextflowpage|label36"
msgid "Alignment"
msgstr "Rjochting"
@@ -16878,8 +16883,8 @@ msgstr "Alfabetyske yndeks"
#: sw/uiconfig/swriter/ui/tocindexpage.ui:58
msgctxt "tocindexpage|liststore1"
-msgid "Illustration Index"
-msgstr "Yllustraasje register"
+msgid "Table of Figures"
+msgstr ""
#: sw/uiconfig/swriter/ui/tocindexpage.ui:62
msgctxt "tocindexpage|liststore1"
diff --git a/source/fy/swext/mediawiki/help.po b/source/fy/swext/mediawiki/help.po
index dcdd70bd252..d17ad98e5a6 100644
--- a/source/fy/swext/mediawiki/help.po
+++ b/source/fy/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: 2018-03-28 16:46+0200\n"
-"PO-Revision-Date: 2018-05-10 09:50+0000\n"
+"PO-Revision-Date: 2018-06-06 13:52+0000\n"
"Last-Translator: Berend Ytsma <berendy@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: fy\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1525945856.000000\n"
+"X-POOTLE-MTIME: 1528293154.000000\n"
#: help.tree
msgctxt ""
@@ -174,7 +174,7 @@ msgctxt ""
"par_id389416\n"
"help.text"
msgid "You can copy the URL from a web browser and paste it into the textbox."
-msgstr "Jo kinne it URL-adres út in web sneuper kopiearje en dy yn it tekstfak plakke."
+msgstr "Jo kinne it URL-adres út in websneuper kopiearje en dy yn it tekstfak plakke."
#: wiki.xhp
msgctxt ""
@@ -286,7 +286,7 @@ msgctxt ""
"par_id452284\n"
"help.text"
msgid "<emph>Show in web browser</emph>: Check this box to open your system web browser and show the uploaded wiki page."
-msgstr "<emph>Yn web sneuper sjen litte</emph>: Markearje dit fak om jo systeem web sneuper te iepenjen en de opladen wiki side sjen te litten."
+msgstr "<emph>Yn websneuper sjen litte</emph>: Markearje dit fak om jo systeem websneuper te iepenjen en de opladen wiki side sjen te litten."
#: wiki.xhp
msgctxt ""
@@ -358,7 +358,7 @@ msgctxt ""
"par_id3112582\n"
"help.text"
msgid "Enter the Internet address of a wiki server in a format like “http://wiki.documentfoundation.org” or copy the URL from a web browser."
-msgstr "Fier it ynternet adres yn fan in wiki tsjinner yn in formaat as “http://wiki.documentfoundation.org” of kopiearje it URL-adres fan út in web sneuper."
+msgstr "Fier it ynternet adres yn fan in wiki tsjinner yn in formaat as “http://wiki.documentfoundation.org” of kopiearje it URL-adres fan út in websneuper."
#: wikiaccount.xhp
msgctxt ""
@@ -662,7 +662,7 @@ msgctxt ""
"par_id6592913\n"
"help.text"
msgid "<emph>Show in web browser</emph>: <ahelp hid=\".\">Check this box to open your system web browser and show the uploaded wiki page.</ahelp>"
-msgstr "<emph>Yn web sneuper sjen litte</emph>: <ahelp hid=\".\">Markearje dit fak om jo systeem web sneuper te iepenjen en de opladen wiki side sjen te litten.</ahelp>"
+msgstr "<emph>Yn websneuper sjen litte</emph>: <ahelp hid=\".\">Markearje dit fak om jo systeem websneuper te iepenjen en de opladen wiki side sjen te litten.</ahelp>"
#: wikisettings.xhp
msgctxt ""
diff --git a/source/fy/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po b/source/fy/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po
index 7345b6679a4..b2c000b1b3b 100644
--- a/source/fy/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po
+++ b/source/fy/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.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: 2015-04-22 23:39+0200\n"
-"PO-Revision-Date: 2018-04-09 17:42+0000\n"
+"PO-Revision-Date: 2018-05-30 18:24+0000\n"
"Last-Translator: Berend Ytsma <berendy@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: fy\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1523295747.000000\n"
+"X-POOTLE-MTIME: 1527704661.000000\n"
#: WikiExtension.xcu
msgctxt ""
@@ -239,7 +239,7 @@ msgctxt ""
"Dlg_SendToMediaWiki_BrowserCheck\n"
"value.text"
msgid "Show in web ~browser"
-msgstr "Yn web ~sneuper sjen litte"
+msgstr "Yn web~sneuper sjen litte"
#: WikiExtension.xcu
msgctxt ""
diff --git a/source/fy/writerperfect/messages.po b/source/fy/writerperfect/messages.po
index aaed867273e..8e12662eb33 100644
--- a/source/fy/writerperfect/messages.po
+++ b/source/fy/writerperfect/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-16 16:54+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2018-05-10 18:32+0000\n"
"Last-Translator: Berend Ytsma <berendy@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -66,97 +66,97 @@ msgctxt "exportepub|generalft"
msgid "General"
msgstr "Algemien"
-#: writerperfect/uiconfig/ui/exportepub.ui:122
+#: writerperfect/uiconfig/ui/exportepub.ui:121
msgctxt "exportepub|versionft"
msgid "Version:"
msgstr "Ferzje:"
-#: writerperfect/uiconfig/ui/exportepub.ui:139
+#: writerperfect/uiconfig/ui/exportepub.ui:138
msgctxt "exportepub|epub3"
msgid "EPUB 3.0"
msgstr "EPUB 3.0"
-#: writerperfect/uiconfig/ui/exportepub.ui:140
+#: writerperfect/uiconfig/ui/exportepub.ui:139
msgctxt "exportepub|epub2"
msgid "EPUB 2.0"
msgstr "EPUB 2.0"
-#: writerperfect/uiconfig/ui/exportepub.ui:175
+#: writerperfect/uiconfig/ui/exportepub.ui:174
msgctxt "exportepub|splitft"
msgid "Split method:"
msgstr "Spjalt metoade:"
-#: writerperfect/uiconfig/ui/exportepub.ui:192
+#: writerperfect/uiconfig/ui/exportepub.ui:191
msgctxt "exportepub|splitpage"
msgid "Page break"
msgstr "Side ein"
-#: writerperfect/uiconfig/ui/exportepub.ui:193
+#: writerperfect/uiconfig/ui/exportepub.ui:192
msgctxt "exportepub|splitheading"
msgid "Heading"
msgstr "Koptekst"
-#: writerperfect/uiconfig/ui/exportepub.ui:228
+#: writerperfect/uiconfig/ui/exportepub.ui:227
msgctxt "exportepub|layoutft"
msgid "Layout method:"
msgstr "Opmaak metoade:"
-#: writerperfect/uiconfig/ui/exportepub.ui:245
+#: writerperfect/uiconfig/ui/exportepub.ui:244
msgctxt "exportepub|layoutreflowable"
msgid "Reflowable"
msgstr "Werposysjesette"
-#: writerperfect/uiconfig/ui/exportepub.ui:246
+#: writerperfect/uiconfig/ui/exportepub.ui:245
msgctxt "exportepub|layoutfixed"
msgid "Fixed"
msgstr "Fêst"
-#: writerperfect/uiconfig/ui/exportepub.ui:281
+#: writerperfect/uiconfig/ui/exportepub.ui:280
msgctxt "exportepub|coverimageft"
msgid "Custom cover image:"
msgstr "Oanpaste foarplaat:"
-#: writerperfect/uiconfig/ui/exportepub.ui:311
+#: writerperfect/uiconfig/ui/exportepub.ui:310
msgctxt "exportepub|coverbutton"
msgid "Browse..."
msgstr "Blêdzje..."
-#: writerperfect/uiconfig/ui/exportepub.ui:355
+#: writerperfect/uiconfig/ui/exportepub.ui:354
msgctxt "exportepub|mediadirft"
msgid "Custom media directory:"
msgstr "Oanpaste media map:"
-#: writerperfect/uiconfig/ui/exportepub.ui:385
+#: writerperfect/uiconfig/ui/exportepub.ui:384
msgctxt "exportepub|mediabutton"
msgid "Browse..."
msgstr "Blêdzje..."
-#: writerperfect/uiconfig/ui/exportepub.ui:429
+#: writerperfect/uiconfig/ui/exportepub.ui:428
msgctxt "exportepub|metadataft"
msgid "Metadata"
msgstr "Metagegevens"
-#: writerperfect/uiconfig/ui/exportepub.ui:470
+#: writerperfect/uiconfig/ui/exportepub.ui:468
msgctxt "exportepub|identifierft"
msgid "Identifier:"
msgstr "Identifikaasje:"
-#: writerperfect/uiconfig/ui/exportepub.ui:485
+#: writerperfect/uiconfig/ui/exportepub.ui:483
msgctxt "exportepub|titleft"
msgid "Title:"
msgstr "Titel:"
-#: writerperfect/uiconfig/ui/exportepub.ui:511
+#: writerperfect/uiconfig/ui/exportepub.ui:509
msgctxt "exportepub|authorft"
msgid "Author:"
msgstr "Skriuwer:"
-#: writerperfect/uiconfig/ui/exportepub.ui:537
+#: writerperfect/uiconfig/ui/exportepub.ui:535
msgctxt "exportepub|languageft"
msgid "Language:"
msgstr "Taal:"
-#: writerperfect/uiconfig/ui/exportepub.ui:563
+#: writerperfect/uiconfig/ui/exportepub.ui:561
msgctxt "exportepub|dateft"
msgid "Date:"
msgstr "Datum:"
diff --git a/source/fy/xmlsecurity/messages.po b/source/fy/xmlsecurity/messages.po
index 34da13a5e44..ee22c7617ae 100644
--- a/source/fy/xmlsecurity/messages.po
+++ b/source/fy/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: 2018-05-22 13:17+0200\n"
-"PO-Revision-Date: 2018-05-10 19:06+0000\n"
+"PO-Revision-Date: 2018-05-24 19:37+0000\n"
"Last-Translator: Berend Ytsma <berendy@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: fy\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1525979169.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1527190630.000000\n"
#: xmlsecurity/inc/strings.hrc:25
msgctxt "STR_CERTIFICATE_NOT_VALIDATED"
@@ -460,7 +460,7 @@ msgstr "Undertekenje"
#: xmlsecurity/uiconfig/ui/selectcertificatedialog.ui:194
msgctxt "selectcertificatedialog|str_selectsign"
msgid "Select"
-msgstr ""
+msgstr "Selektearje"
#: xmlsecurity/uiconfig/ui/selectcertificatedialog.ui:199
msgctxt "selectcertificatedialog|str_encrypt"
diff --git a/source/ga/cui/messages.po b/source/ga/cui/messages.po
index e4985073d34..8bf04d95aaf 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2018-05-15 17:35+0000\n"
"Last-Translator: Kevin Scannell <kscanne@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -9872,97 +9872,97 @@ msgctxt "positionsizedialog|PositionAndSizeDialog"
msgid "Position and Size"
msgstr "Ionad agus Méid"
-#: cui/uiconfig/ui/positionsizedialog.ui:107
+#: cui/uiconfig/ui/positionsizedialog.ui:136
msgctxt "positionsizedialog|RID_SVXPAGE_POSITION_SIZE"
msgid "Position and Size"
msgstr "Ionad agus Méid"
-#: cui/uiconfig/ui/positionsizedialog.ui:129
+#: cui/uiconfig/ui/positionsizedialog.ui:182
msgctxt "positionsizedialog|RID_SVXPAGE_SWPOSSIZE"
msgid "Position and Size"
msgstr "Ionad agus Méid"
-#: cui/uiconfig/ui/positionsizedialog.ui:152
+#: cui/uiconfig/ui/positionsizedialog.ui:229
msgctxt "positionsizedialog|RID_SVXPAGE_ANGLE"
msgid "Rotation"
msgstr "Rothlú"
-#: cui/uiconfig/ui/positionsizedialog.ui:175
+#: cui/uiconfig/ui/positionsizedialog.ui:276
msgctxt "positionsizedialog|RID_SVXPAGE_SLANT"
msgid "Slant & Corner Radius"
msgstr "Claon agus Ga na gCoirnéal"
-#: cui/uiconfig/ui/possizetabpage.ui:40
+#: cui/uiconfig/ui/possizetabpage.ui:61
msgctxt "possizetabpage|FT_POS_X"
msgid "Position _X:"
msgstr "Ionad _X:"
-#: cui/uiconfig/ui/possizetabpage.ui:56
+#: cui/uiconfig/ui/possizetabpage.ui:75
msgctxt "possizetabpage|FT_POS_Y"
msgid "Position _Y:"
msgstr "Ionad _Y:"
-#: cui/uiconfig/ui/possizetabpage.ui:110
+#: cui/uiconfig/ui/possizetabpage.ui:128
msgctxt "possizetabpage|FT_POSREFERENCE"
msgid "_Base point:"
msgstr "_Bunphointe:"
-#: cui/uiconfig/ui/possizetabpage.ui:148
+#: cui/uiconfig/ui/possizetabpage.ui:182
msgctxt "possizetabpage|label1"
msgid "Position"
msgstr "Ionad"
-#: cui/uiconfig/ui/possizetabpage.ui:190
+#: cui/uiconfig/ui/possizetabpage.ui:224
msgctxt "possizetabpage|FT_WIDTH"
msgid "Wi_dth:"
msgstr "Leithea_d:"
-#: cui/uiconfig/ui/possizetabpage.ui:206
+#: cui/uiconfig/ui/possizetabpage.ui:238
msgctxt "possizetabpage|FT_HEIGHT"
msgid "H_eight:"
msgstr "Aird_e:"
-#: cui/uiconfig/ui/possizetabpage.ui:247
+#: cui/uiconfig/ui/possizetabpage.ui:276
msgctxt "possizetabpage|CBX_SCALE"
msgid "_Keep ratio"
msgstr "_Coimeád an cóimheas"
-#: cui/uiconfig/ui/possizetabpage.ui:279
+#: cui/uiconfig/ui/possizetabpage.ui:307
msgctxt "possizetabpage|FT_SIZEREFERENCE"
msgid "Base _point:"
msgstr "Bun_phointe:"
-#: cui/uiconfig/ui/possizetabpage.ui:317
+#: cui/uiconfig/ui/possizetabpage.ui:361
msgctxt "possizetabpage|label2"
msgid "Size"
msgstr "Méid"
-#: cui/uiconfig/ui/possizetabpage.ui:356
+#: cui/uiconfig/ui/possizetabpage.ui:401
msgctxt "possizetabpage|TSB_POSPROTECT"
msgid "Positio_n"
msgstr "Io_nad"
-#: cui/uiconfig/ui/possizetabpage.ui:373
+#: cui/uiconfig/ui/possizetabpage.ui:418
msgctxt "possizetabpage|TSB_SIZEPROTECT"
msgid "_Size"
msgstr "_Méid"
-#: cui/uiconfig/ui/possizetabpage.ui:397
+#: cui/uiconfig/ui/possizetabpage.ui:441
msgctxt "possizetabpage|label3"
msgid "Protect"
msgstr "Cosain"
-#: cui/uiconfig/ui/possizetabpage.ui:430
+#: cui/uiconfig/ui/possizetabpage.ui:475
msgctxt "possizetabpage|TSB_AUTOGROW_WIDTH"
msgid "_Fit width to text"
msgstr "_Oiriúnaigh leithead don téacs"
-#: cui/uiconfig/ui/possizetabpage.ui:447
+#: cui/uiconfig/ui/possizetabpage.ui:492
msgctxt "possizetabpage|TSB_AUTOGROW_HEIGHT"
msgid "Fit _height to text"
msgstr "_Oiriúnaigh airde don téacs"
-#: cui/uiconfig/ui/possizetabpage.ui:471
+#: cui/uiconfig/ui/possizetabpage.ui:515
msgctxt "possizetabpage|label4"
msgid "Adapt"
msgstr "Oiriúnaigh"
@@ -10162,47 +10162,47 @@ msgctxt "recordnumberdialog|label2"
msgid "go to record"
msgstr "téigh go taifead"
-#: cui/uiconfig/ui/rotationtabpage.ui:52
+#: cui/uiconfig/ui/rotationtabpage.ui:56
msgctxt "rotationtabpage|FT_POS_X"
msgid "Position _X:"
msgstr "Ionad _X:"
-#: cui/uiconfig/ui/rotationtabpage.ui:66
+#: cui/uiconfig/ui/rotationtabpage.ui:70
msgctxt "rotationtabpage|FT_POS_Y"
msgid "Position _Y:"
msgstr "Ionad _Y:"
-#: cui/uiconfig/ui/rotationtabpage.ui:116
+#: cui/uiconfig/ui/rotationtabpage.ui:123
msgctxt "rotationtabpage|FT_POSPRESETS"
msgid "_Default settings:"
msgstr "_Réamhshocruithe:"
-#: cui/uiconfig/ui/rotationtabpage.ui:130
+#: cui/uiconfig/ui/rotationtabpage.ui:151
msgctxt "rotationtabpage|CTL_RECT|tooltip_text"
msgid "Rotation point"
msgstr "Pointe rothlaithe"
-#: cui/uiconfig/ui/rotationtabpage.ui:155
+#: cui/uiconfig/ui/rotationtabpage.ui:178
msgctxt "rotationtabpage|label1"
msgid "Pivot Point"
msgstr "Pointe Maighdeoige"
-#: cui/uiconfig/ui/rotationtabpage.ui:197
+#: cui/uiconfig/ui/rotationtabpage.ui:220
msgctxt "rotationtabpage|FT_ANGLE"
msgid "_Angle:"
msgstr "_Uillinn:"
-#: cui/uiconfig/ui/rotationtabpage.ui:238
+#: cui/uiconfig/ui/rotationtabpage.ui:263
msgctxt "rotationtabpage|FT_ANGLEPRESETS"
msgid "Default _settings:"
msgstr "Réamh_shocruithe:"
-#: cui/uiconfig/ui/rotationtabpage.ui:252
+#: cui/uiconfig/ui/rotationtabpage.ui:287
msgctxt "rotationtabpage|CTL_ANGLE|tooltip_text"
msgid "Rotation Angle"
msgstr "Uillinn Rothlaithe"
-#: cui/uiconfig/ui/rotationtabpage.ui:277
+#: cui/uiconfig/ui/rotationtabpage.ui:314
msgctxt "rotationtabpage|label2"
msgid "Rotation Angle"
msgstr "Uillinn Rothlaithe"
@@ -10582,52 +10582,52 @@ msgctxt "similaritysearchdialog|relaxbox"
msgid "_Combine"
msgstr "_Comhshnaidhm"
-#: cui/uiconfig/ui/slantcornertabpage.ui:50
+#: cui/uiconfig/ui/slantcornertabpage.ui:70
msgctxt "slantcornertabpage|label5"
msgid "_X:"
msgstr "_X:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:88
+#: cui/uiconfig/ui/slantcornertabpage.ui:110
msgctxt "slantcornertabpage|label6"
msgid "_Y:"
msgstr "_Y:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:125
+#: cui/uiconfig/ui/slantcornertabpage.ui:149
msgctxt "slantcornertabpage|label3"
msgid "Control Point 1"
msgstr "Pointe Rialúcháin 1"
-#: cui/uiconfig/ui/slantcornertabpage.ui:159
+#: cui/uiconfig/ui/slantcornertabpage.ui:183
msgctxt "slantcornertabpage|FT_RADIUS"
msgid "_Radius:"
msgstr "_Ga:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:189
+#: cui/uiconfig/ui/slantcornertabpage.ui:214
msgctxt "slantcornertabpage|label1"
msgid "Corner Radius"
msgstr "Ga na gCoirnéal"
-#: cui/uiconfig/ui/slantcornertabpage.ui:223
+#: cui/uiconfig/ui/slantcornertabpage.ui:248
msgctxt "slantcornertabpage|FT_ANGLE"
msgid "_Angle:"
msgstr "_Uillinn:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:253
+#: cui/uiconfig/ui/slantcornertabpage.ui:279
msgctxt "slantcornertabpage|label2"
msgid "Slant"
msgstr "Claon"
-#: cui/uiconfig/ui/slantcornertabpage.ui:294
+#: cui/uiconfig/ui/slantcornertabpage.ui:320
msgctxt "slantcornertabpage|label4"
msgid "_X:"
msgstr "_X:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:332
+#: cui/uiconfig/ui/slantcornertabpage.ui:360
msgctxt "slantcornertabpage|label7"
msgid "_Y:"
msgstr "_Y:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:369
+#: cui/uiconfig/ui/slantcornertabpage.ui:399
msgctxt "slantcornertabpage|label8"
msgid "Control Point 2"
msgstr "Pointe Rialúcháin 2"
@@ -10907,112 +10907,112 @@ msgctxt "storedwebconnectiondialog|change"
msgid "_Change Password..."
msgstr "_Athraigh Focal Faire..."
-#: cui/uiconfig/ui/swpossizepage.ui:74
+#: cui/uiconfig/ui/swpossizepage.ui:85
msgctxt "swpossizepage|widthft"
msgid "_Width:"
msgstr "_Leithead:"
-#: cui/uiconfig/ui/swpossizepage.ui:111
+#: cui/uiconfig/ui/swpossizepage.ui:123
msgctxt "swpossizepage|heightft"
msgid "H_eight:"
msgstr "Aird_e:"
-#: cui/uiconfig/ui/swpossizepage.ui:128
+#: cui/uiconfig/ui/swpossizepage.ui:141
msgctxt "swpossizepage|ratio"
msgid "_Keep ratio"
msgstr "_Coimeád an cóimheas"
-#: cui/uiconfig/ui/swpossizepage.ui:149
+#: cui/uiconfig/ui/swpossizepage.ui:162
msgctxt "swpossizepage|label2"
msgid "Size"
msgstr "Méid"
-#: cui/uiconfig/ui/swpossizepage.ui:205
+#: cui/uiconfig/ui/swpossizepage.ui:218
msgctxt "swpossizepage|topage"
msgid "To _page"
msgstr "Go _leathanach"
-#: cui/uiconfig/ui/swpossizepage.ui:222
+#: cui/uiconfig/ui/swpossizepage.ui:234
msgctxt "swpossizepage|topara"
msgid "To paragrap_h"
msgstr "Go _halt"
-#: cui/uiconfig/ui/swpossizepage.ui:238
+#: cui/uiconfig/ui/swpossizepage.ui:250
msgctxt "swpossizepage|tochar"
msgid "To cha_racter"
msgstr "Go ca_rachtar"
-#: cui/uiconfig/ui/swpossizepage.ui:254
+#: cui/uiconfig/ui/swpossizepage.ui:266
msgctxt "swpossizepage|aschar"
msgid "_As character"
msgstr "M_ar charachtar"
-#: cui/uiconfig/ui/swpossizepage.ui:270
+#: cui/uiconfig/ui/swpossizepage.ui:282
msgctxt "swpossizepage|toframe"
msgid "To _frame"
msgstr "Go _fráma"
-#: cui/uiconfig/ui/swpossizepage.ui:292
+#: cui/uiconfig/ui/swpossizepage.ui:304
msgctxt "swpossizepage|label1"
msgid "Anchor"
msgstr "Ancaire"
-#: cui/uiconfig/ui/swpossizepage.ui:333
+#: cui/uiconfig/ui/swpossizepage.ui:344
msgctxt "swpossizepage|horiposft"
msgid "Hori_zontal:"
msgstr "_Cothrománach:"
-#: cui/uiconfig/ui/swpossizepage.ui:347
+#: cui/uiconfig/ui/swpossizepage.ui:358
msgctxt "swpossizepage|horibyft"
msgid "b_y:"
msgstr "_le:"
-#: cui/uiconfig/ui/swpossizepage.ui:361
+#: cui/uiconfig/ui/swpossizepage.ui:372
msgctxt "swpossizepage|vertbyft"
msgid "_by:"
msgstr "l_e:"
-#: cui/uiconfig/ui/swpossizepage.ui:375
+#: cui/uiconfig/ui/swpossizepage.ui:386
msgctxt "swpossizepage|horitoft"
msgid "_to:"
msgstr "_go:"
-#: cui/uiconfig/ui/swpossizepage.ui:421
+#: cui/uiconfig/ui/swpossizepage.ui:433
msgctxt "swpossizepage|vertposft"
msgid "_Vertical:"
msgstr "_Ingearach:"
-#: cui/uiconfig/ui/swpossizepage.ui:457
+#: cui/uiconfig/ui/swpossizepage.ui:470
msgctxt "swpossizepage|verttoft"
msgid "t_o:"
msgstr "g_o:"
-#: cui/uiconfig/ui/swpossizepage.ui:478
+#: cui/uiconfig/ui/swpossizepage.ui:492
msgctxt "swpossizepage|mirror"
msgid "_Mirror on even pages"
msgstr "_Scáthánaigh ar leathanaigh chothroma"
-#: cui/uiconfig/ui/swpossizepage.ui:495
+#: cui/uiconfig/ui/swpossizepage.ui:509
msgctxt "swpossizepage|followtextflow"
msgid "Follow te_xt flow"
msgstr "Lean sruth an téa_cs"
-#: cui/uiconfig/ui/swpossizepage.ui:518
+#: cui/uiconfig/ui/swpossizepage.ui:532
msgctxt "swpossizepage|label11"
msgid "Position"
msgstr "Ionad"
-#: cui/uiconfig/ui/swpossizepage.ui:549
+#: cui/uiconfig/ui/swpossizepage.ui:563
msgctxt "swpossizepage|pos"
msgid "Positio_n"
msgstr "Io_nad"
-#: cui/uiconfig/ui/swpossizepage.ui:565
+#: cui/uiconfig/ui/swpossizepage.ui:579
msgctxt "swpossizepage|size"
msgid "_Size"
msgstr "_Méid"
-#: cui/uiconfig/ui/swpossizepage.ui:587
+#: cui/uiconfig/ui/swpossizepage.ui:601
msgctxt "swpossizepage|label3"
msgid "Protect"
msgstr "Cosain"
@@ -11202,12 +11202,12 @@ msgctxt "textattrtabpage|label2"
msgid "Spacing to Borders"
msgstr "Spásáil go hImlínte"
-#: cui/uiconfig/ui/textattrtabpage.ui:425
+#: cui/uiconfig/ui/textattrtabpage.ui:423
msgctxt "textattrtabpage|TSB_FULL_WIDTH"
msgid "Full _width"
msgstr "_Lánleithead"
-#: cui/uiconfig/ui/textattrtabpage.ui:448
+#: cui/uiconfig/ui/textattrtabpage.ui:446
msgctxt "textattrtabpage|label3"
msgid "Text Anchor"
msgstr "Ancaire Téacs"
diff --git a/source/ga/filter/source/config/fragments/filters.po b/source/ga/filter/source/config/fragments/filters.po
index 33a51cc232a..7e0d0803332 100644
--- a/source/ga/filter/source/config/fragments/filters.po
+++ b/source/ga/filter/source/config/fragments/filters.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LO\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-16 16:54+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2018-05-15 14:16+0000\n"
"Last-Translator: Kevin Scannell <kscanne@gmail.com>\n"
"Language-Team: \n"
@@ -463,8 +463,8 @@ msgctxt ""
"MS Word 2003 XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Word 2003 XML"
-msgstr "Microsoft Word 2003 XML"
+msgid "Word 2003 XML"
+msgstr ""
#: MS_Word_2007_XML.xcu
msgctxt ""
@@ -1282,8 +1282,8 @@ msgctxt ""
"Calc MS Excel 2007 VBA XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Excel 2007-2016 XML (macro enabled)"
-msgstr "Microsoft Excel 2007-2016 XML (macraí cumasaithe)"
+msgid "Excel 2007–2019 (macro-enabled)"
+msgstr ""
#: calc_MS_Excel_2007_XML.xcu
msgctxt ""
diff --git a/source/ga/filter/source/config/fragments/types.po b/source/ga/filter/source/config/fragments/types.po
index e9f6b2fa5f1..2ab99432c58 100644
--- a/source/ga/filter/source/config/fragments/types.po
+++ b/source/ga/filter/source/config/fragments/types.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LO\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-08 15:11+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2018-05-15 14:16+0000\n"
"Last-Translator: Kevin Scannell <kscanne@gmail.com>\n"
"Language-Team: \n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n==1 ? 0 : n==2 ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1526393791.000000\n"
#: MS_Excel_2007_Binary.xcu
@@ -292,8 +292,8 @@ msgctxt ""
"writer_MS_Word_2003_XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Word 2003 XML"
-msgstr "Microsoft Word 2003 XML"
+msgid "Word 2003 XML"
+msgstr ""
#: writer_MS_Word_2007_XML.xcu
msgctxt ""
diff --git a/source/ga/fpicker/messages.po b/source/ga/fpicker/messages.po
index 9476cfe9299..a5558a52418 100644
--- a/source/ga/fpicker/messages.po
+++ b/source/ga/fpicker/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2018-05-15 13:17+0000\n"
"Last-Translator: Kevin Scannell <kscanne@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -272,13 +272,13 @@ msgstr "Criptigh le heochair GPG"
#: fpicker/uiconfig/ui/foldernamedialog.ui:8
msgctxt "foldernamedialog|FolderNameDialog"
-msgid "Folder Name ?"
-msgstr "Ainm an Fhillteáin?"
+msgid "Folder Name"
+msgstr ""
#: fpicker/uiconfig/ui/foldernamedialog.ui:91
msgctxt "foldernamedialog|label2"
-msgid "Na_me"
-msgstr "Ain_m"
+msgid "Na_me:"
+msgstr ""
#: fpicker/uiconfig/ui/foldernamedialog.ui:122
msgctxt "foldernamedialog|label1"
diff --git a/source/ga/officecfg/registry/data/org/openoffice/Office/UI.po b/source/ga/officecfg/registry/data/org/openoffice/Office/UI.po
index c1aab0da7c3..f40676757f7 100644
--- a/source/ga/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/ga/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LO\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-22 13:17+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2018-05-15 17:42+0000\n"
"Last-Translator: Kevin Scannell <kscanne@gmail.com>\n"
"Language-Team: \n"
@@ -26520,8 +26520,8 @@ msgctxt ""
"..WriterCommands.UserInterface.Commands..uno:TextAttributes\n"
"Label\n"
"value.text"
-msgid "Text Attributes"
-msgstr "Tréithe Téacs"
+msgid "Text Attributes..."
+msgstr ""
#: WriterCommands.xcu
msgctxt ""
diff --git a/source/ga/readlicense_oo/docs.po b/source/ga/readlicense_oo/docs.po
index a849fbedd38..a055cf9fac5 100644
--- a/source/ga/readlicense_oo/docs.po
+++ b/source/ga/readlicense_oo/docs.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: LO\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-04-17 15:54+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2018-05-15 17:43+0000\n"
"Last-Translator: Kevin Scannell <kscanne@gmail.com>\n"
"Language-Team: \n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n==1 ? 0 : n==2 ? 1 : 2;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1526406216.000000\n"
#: readme.xrm
@@ -117,8 +117,8 @@ msgctxt ""
"readme.xrm\n"
"macxiOSX\n"
"readmeitem.text"
-msgid "MacOSX 10.8 (Mountain Lion) or higher"
-msgstr "MacOSX 10.8 (Mountain Lion) nó níos nuaí"
+msgid "MacOSX 10.9 (Mavericks) or higher"
+msgstr ""
#: readme.xrm
msgctxt ""
diff --git a/source/ga/sc/messages.po b/source/ga/sc/messages.po
index fe6a44d2085..3de3ca40f8e 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-12 14:40+0200\n"
"PO-Revision-Date: 2018-05-15 17:49+0000\n"
"Last-Translator: Kevin Scannell <kscanne@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1870,16 +1870,21 @@ msgid "Nested arrays are not supported."
msgstr "Ní thacaítear eagair neadaithe."
#: sc/inc/globstr.hrc:390
+msgctxt "STR_ERR_LONG_BAD_ARRAY_CONTENT"
+msgid "Unsupported inline array content."
+msgstr ""
+
+#: sc/inc/globstr.hrc:391
msgctxt "STR_UNDO_TEXTTOCOLUMNS"
msgid "Text to Columns"
msgstr "Téacs go Colúin"
-#: sc/inc/globstr.hrc:391
+#: sc/inc/globstr.hrc:392
msgctxt "STR_DOC_UPDATED"
msgid "Your spreadsheet has been updated with changes saved by other users."
msgstr "Nuashonraíodh do scarbhileog le hathruithe a shábháil úsáideoirí eile."
-#: sc/inc/globstr.hrc:392
+#: sc/inc/globstr.hrc:393
msgctxt "STR_DOC_WILLBESAVED"
msgid ""
"The spreadsheet must be saved now to activate sharing mode.\n"
@@ -1890,7 +1895,7 @@ msgstr ""
"\n"
"An bhfuil fonn ort leanúint ar aghaidh?"
-#: sc/inc/globstr.hrc:393
+#: sc/inc/globstr.hrc:394
msgctxt "STR_DOC_WILLNOTBESAVED"
msgid ""
"Already resolved merge conflicts will be lost and your changes to the shared spreadsheet will not be saved.\n"
@@ -1901,7 +1906,7 @@ msgstr ""
"\n"
"An bhfuil fonn ort leanúint ar aghaidh?"
-#: sc/inc/globstr.hrc:394
+#: sc/inc/globstr.hrc:395
msgctxt "STR_DOC_DISABLESHARED"
msgid ""
"Disabling shared mode of a spreadsheet hinders all other users of the shared spreadsheet to merge back their work.\n"
@@ -1912,7 +1917,7 @@ msgstr ""
"\n"
"An bhfuil fonn ort leanúint ar aghaidh?"
-#: sc/inc/globstr.hrc:395
+#: sc/inc/globstr.hrc:396
msgctxt "STR_DOC_NOLONGERSHARED"
msgid ""
"This spreadsheet is no longer in shared mode.\n"
@@ -1923,7 +1928,7 @@ msgstr ""
"\n"
"Sábháil do scarbhileog mar chomhad ar leith agus cumaisc isteach de láimh do chuid athruithe sa scarbhileog chomhroinnte."
-#: sc/inc/globstr.hrc:396
+#: sc/inc/globstr.hrc:397
msgctxt "STR_FILE_LOCKED_TRY_LATER"
msgid ""
"The shared spreadsheet file is locked due to a merge in progress by user: '%1'\n"
@@ -1934,7 +1939,7 @@ msgstr ""
"\n"
"Ní féidir an mód comhroinnte a dhíchumasú má tá comhad glasáilte i gceist. Déan athiarracht níos déanaí."
-#: sc/inc/globstr.hrc:397
+#: sc/inc/globstr.hrc:398
msgctxt "STR_FILE_LOCKED_SAVE_LATER"
msgid ""
"The shared spreadsheet file is locked due to a merge in progress by user: '%1'\n"
@@ -1945,147 +1950,147 @@ msgstr ""
"\n"
"Déan athiarracht níos déanaí chun do chuid athruithe a shábháil."
-#: sc/inc/globstr.hrc:398
+#: sc/inc/globstr.hrc:399
msgctxt "STR_UNKNOWN_USER"
msgid "Unknown User"
msgstr "Úsáideoir Anaithnid"
-#: sc/inc/globstr.hrc:399
+#: sc/inc/globstr.hrc:400
msgctxt "STR_SHAPE_AUTOSHAPE"
msgid "AutoShape"
msgstr "UathChruth"
-#: sc/inc/globstr.hrc:400
+#: sc/inc/globstr.hrc:401
msgctxt "STR_SHAPE_RECTANGLE"
msgid "Rectangle"
msgstr "Dronuilleog"
-#: sc/inc/globstr.hrc:401
+#: sc/inc/globstr.hrc:402
msgctxt "STR_SHAPE_LINE"
msgid "Line"
msgstr "Líne"
-#: sc/inc/globstr.hrc:402
+#: sc/inc/globstr.hrc:403
msgctxt "STR_SHAPE_OVAL"
msgid "Oval"
msgstr "Ubhchruth"
-#: sc/inc/globstr.hrc:403
+#: sc/inc/globstr.hrc:404
msgctxt "STR_FORM_BUTTON"
msgid "Button"
msgstr "Cnaipe"
-#: sc/inc/globstr.hrc:404
+#: sc/inc/globstr.hrc:405
msgctxt "STR_FORM_CHECKBOX"
msgid "Check Box"
msgstr "Ticbhosca"
-#: sc/inc/globstr.hrc:405
+#: sc/inc/globstr.hrc:406
msgctxt "STR_FORM_OPTIONBUTTON"
msgid "Option Button"
msgstr "Cnaipe Rogha"
-#: sc/inc/globstr.hrc:406
+#: sc/inc/globstr.hrc:407
msgctxt "STR_FORM_LABEL"
msgid "Label"
msgstr "Lipéad"
-#: sc/inc/globstr.hrc:407
+#: sc/inc/globstr.hrc:408
msgctxt "STR_FORM_LISTBOX"
msgid "List Box"
msgstr "Bosca Liosta"
-#: sc/inc/globstr.hrc:408
+#: sc/inc/globstr.hrc:409
msgctxt "STR_FORM_GROUPBOX"
msgid "Group Box"
msgstr "Bosca Grúpa"
-#: sc/inc/globstr.hrc:409
+#: sc/inc/globstr.hrc:410
msgctxt "STR_FORM_DROPDOWN"
msgid "Drop Down"
msgstr "Roghchlár Anuas"
-#: sc/inc/globstr.hrc:410
+#: sc/inc/globstr.hrc:411
msgctxt "STR_FORM_SPINNER"
msgid "Spinner"
msgstr "Rothlóir"
-#: sc/inc/globstr.hrc:411
+#: sc/inc/globstr.hrc:412
msgctxt "STR_FORM_SCROLLBAR"
msgid "Scroll Bar"
msgstr "Scrollbharra"
-#: sc/inc/globstr.hrc:412
+#: sc/inc/globstr.hrc:413
msgctxt "STR_STYLE_FAMILY_CELL"
msgid "Cell Styles"
msgstr "Stíleanna Ceall"
-#: sc/inc/globstr.hrc:413
+#: sc/inc/globstr.hrc:414
msgctxt "STR_STYLE_FAMILY_PAGE"
msgid "Page Styles"
msgstr "Stíleanna Leathanaigh"
-#: sc/inc/globstr.hrc:414
+#: sc/inc/globstr.hrc:415
msgctxt "STR_ERR_DATAPILOTSOURCE"
msgid "Pivot table source data is invalid."
msgstr "Tá na sonraí foinse sa tábla maighdeogach neamhbhailí."
-#: sc/inc/globstr.hrc:415
+#: sc/inc/globstr.hrc:416
msgctxt "STR_OPTIONS_WARN_SEPARATORS"
msgid "Because the current formula separator settings conflict with the locale, the formula separators have been reset to their default values."
msgstr "Toisc go bhfuil coimhlint ann idir an deighilteoir foirmle reatha agus an logchaighdeán, athshocraíodh na deighilteoirí foirmle go dtí a luachanna réamhshocraithe."
-#: sc/inc/globstr.hrc:416
+#: sc/inc/globstr.hrc:417
msgctxt "STR_UNDO_INSERT_CURRENT_DATE"
msgid "Insert Current Date"
msgstr "Cuir an Dáta Reatha Isteach"
-#: sc/inc/globstr.hrc:417
+#: sc/inc/globstr.hrc:418
msgctxt "STR_UNDO_INSERT_CURRENT_TIME"
msgid "Insert Current Time"
msgstr "Cuir an tAm Reatha Isteach"
-#: sc/inc/globstr.hrc:418
+#: sc/inc/globstr.hrc:419
msgctxt "STR_MANAGE_NAMES"
msgid "Manage Names..."
msgstr "Bainistigh Ainmneacha..."
-#: sc/inc/globstr.hrc:419
+#: sc/inc/globstr.hrc:420
msgctxt "STR_HEADER_NAME"
msgid "Name"
msgstr "Ainm"
-#: sc/inc/globstr.hrc:420
+#: sc/inc/globstr.hrc:421
msgctxt "STR_HEADER_RANGE_OR_EXPR"
msgid "Range or formula expression"
msgstr "Raon nó slonn foirmle"
-#: sc/inc/globstr.hrc:421
+#: sc/inc/globstr.hrc:422
msgctxt "STR_HEADER_SCOPE"
msgid "Scope"
msgstr "Scóip"
-#: sc/inc/globstr.hrc:422
+#: sc/inc/globstr.hrc:423
msgctxt "STR_MULTI_SELECT"
msgid "(multiple)"
msgstr "(iolra)"
-#: sc/inc/globstr.hrc:423
+#: sc/inc/globstr.hrc:424
msgctxt "STR_GLOBAL_SCOPE"
msgid "Document (Global)"
msgstr "Cáipéis (Comhchoiteann)"
-#: sc/inc/globstr.hrc:424
+#: sc/inc/globstr.hrc:425
msgctxt "STR_ERR_NAME_EXISTS"
msgid "Invalid name. Already in use for the selected scope."
msgstr "Ainm neamhbhailí. In úsáid cheana don scóip roghnaithe."
-#: sc/inc/globstr.hrc:425
+#: sc/inc/globstr.hrc:426
msgctxt "STR_ERR_NAME_INVALID"
msgid "Invalid name. Only use letters, numbers and underscore."
msgstr "Ainm neamhbhailí. Ní cheadaítear ach litreacha, uimhreacha, agus fostríoca."
-#: sc/inc/globstr.hrc:426
+#: sc/inc/globstr.hrc:427
msgctxt "STR_UNSAVED_EXT_REF"
msgid ""
"This Document contains external references to unsaved documents.\n"
@@ -2096,217 +2101,217 @@ msgstr ""
"\n"
"An bhfuil fonn ort dul ar aghaidh?"
-#: sc/inc/globstr.hrc:427
+#: sc/inc/globstr.hrc:428
msgctxt "STR_CLOSE_WITH_UNSAVED_REFS"
msgid "This Document is referenced by another document and not yet saved. Closing it without saving will result in data loss."
msgstr "Déanann cáipéis eile tagairt don cháipéis seo, agus níl sé sábháilte fós. Caillfidh tú sonraí má dhúnann tú é gan sábháil."
-#: sc/inc/globstr.hrc:428
+#: sc/inc/globstr.hrc:429
msgctxt "STR_HEADER_RANGE"
msgid "Range"
msgstr "Raon"
-#: sc/inc/globstr.hrc:429
+#: sc/inc/globstr.hrc:430
msgctxt "STR_HEADER_COND"
msgid "First Condition"
msgstr "An Chéad Choinníoll"
-#: sc/inc/globstr.hrc:430
+#: sc/inc/globstr.hrc:431
msgctxt "STR_COND_CONDITION"
msgid "Cell value is"
msgstr "Luach na cille:"
-#: sc/inc/globstr.hrc:431
+#: sc/inc/globstr.hrc:432
msgctxt "STR_COND_COLORSCALE"
msgid "ColorScale"
msgstr "Scála Datha"
-#: sc/inc/globstr.hrc:432
+#: sc/inc/globstr.hrc:433
msgctxt "STR_COND_DATABAR"
msgid "DataBar"
msgstr "Barra Sonraí"
-#: sc/inc/globstr.hrc:433
+#: sc/inc/globstr.hrc:434
msgctxt "STR_COND_ICONSET"
msgid "IconSet"
msgstr "Tacar Deilbhíní"
-#: sc/inc/globstr.hrc:434
+#: sc/inc/globstr.hrc:435
msgctxt "STR_COND_BETWEEN"
msgid "between"
msgstr "idir"
-#: sc/inc/globstr.hrc:435
+#: sc/inc/globstr.hrc:436
msgctxt "STR_COND_NOTBETWEEN"
msgid "not between"
msgstr "lasmuigh de"
-#: sc/inc/globstr.hrc:436
+#: sc/inc/globstr.hrc:437
msgctxt "STR_COND_UNIQUE"
msgid "unique"
msgstr "uathúil"
-#: sc/inc/globstr.hrc:437
+#: sc/inc/globstr.hrc:438
msgctxt "STR_COND_DUPLICATE"
msgid "duplicate"
msgstr "dúblach"
-#: sc/inc/globstr.hrc:438
+#: sc/inc/globstr.hrc:439
msgctxt "STR_COND_FORMULA"
msgid "Formula is"
msgstr "Foirmle:"
-#: sc/inc/globstr.hrc:439
+#: sc/inc/globstr.hrc:440
msgctxt "STR_COND_TOP10"
msgid "Top Elements"
msgstr "Barreilimintí"
-#: sc/inc/globstr.hrc:440
+#: sc/inc/globstr.hrc:441
msgctxt "STR_COND_BOTTOM10"
msgid "Bottom Elements"
msgstr "Buneilimintí"
-#: sc/inc/globstr.hrc:441
+#: sc/inc/globstr.hrc:442
msgctxt "STR_COND_TOP_PERCENT"
msgid "Top Percent"
msgstr "Barrchéadatán"
-#: sc/inc/globstr.hrc:442
+#: sc/inc/globstr.hrc:443
msgctxt "STR_COND_DATE"
msgid "Date is"
msgstr "An dáta:"
-#: sc/inc/globstr.hrc:443
+#: sc/inc/globstr.hrc:444
msgctxt "STR_COND_BOTTOM_PERCENT"
msgid "Bottom Percent"
msgstr "Bunchéatadán"
-#: sc/inc/globstr.hrc:444
+#: sc/inc/globstr.hrc:445
msgctxt "STR_COND_ABOVE_AVERAGE"
msgid "Above Average"
msgstr "Os cionn an mheáin"
-#: sc/inc/globstr.hrc:445
+#: sc/inc/globstr.hrc:446
msgctxt "STR_COND_BELOW_AVERAGE"
msgid "Below Average"
msgstr "Faoin Meán"
-#: sc/inc/globstr.hrc:446
+#: sc/inc/globstr.hrc:447
msgctxt "STR_COND_ABOVE_EQUAL_AVERAGE"
msgid "Above or equal Average"
msgstr "Cothrom le nó os cionn an mheáin"
-#: sc/inc/globstr.hrc:447
+#: sc/inc/globstr.hrc:448
msgctxt "STR_COND_BELOW_EQUAL_AVERAGE"
msgid "Below or equal Average"
msgstr "Cothrom le nó faoin Meán"
-#: sc/inc/globstr.hrc:448
+#: sc/inc/globstr.hrc:449
msgctxt "STR_COND_ERROR"
msgid "an Error code"
msgstr "Cód earráide"
-#: sc/inc/globstr.hrc:449
+#: sc/inc/globstr.hrc:450
msgctxt "STR_COND_NOERROR"
msgid "not an Error code"
msgstr "ní cód Earráid é"
-#: sc/inc/globstr.hrc:450
+#: sc/inc/globstr.hrc:451
msgctxt "STR_COND_BEGINS_WITH"
msgid "Begins with"
msgstr "Tosaíonn sé le"
-#: sc/inc/globstr.hrc:451
+#: sc/inc/globstr.hrc:452
msgctxt "STR_COND_ENDS_WITH"
msgid "Ends with"
msgstr "Críochnaíonn sé le"
-#: sc/inc/globstr.hrc:452
+#: sc/inc/globstr.hrc:453
msgctxt "STR_COND_CONTAINS"
msgid "Contains"
msgstr "Ina bhfuil"
-#: sc/inc/globstr.hrc:453
+#: sc/inc/globstr.hrc:454
msgctxt "STR_COND_NOT_CONTAINS"
msgid "Not Contains"
msgstr "Gan"
-#: sc/inc/globstr.hrc:454
+#: sc/inc/globstr.hrc:455
msgctxt "STR_COND_TODAY"
msgid "today"
msgstr "inniu"
-#: sc/inc/globstr.hrc:455
+#: sc/inc/globstr.hrc:456
msgctxt "STR_COND_YESTERDAY"
msgid "yesterday"
msgstr "inné"
-#: sc/inc/globstr.hrc:456
+#: sc/inc/globstr.hrc:457
msgctxt "STR_COND_TOMORROW"
msgid "tomorrow"
msgstr "amárach"
-#: sc/inc/globstr.hrc:457
+#: sc/inc/globstr.hrc:458
msgctxt "STR_COND_LAST7DAYS"
msgid "in the last 7 days"
msgstr "7 lá is déanaí"
-#: sc/inc/globstr.hrc:458
+#: sc/inc/globstr.hrc:459
msgctxt "STR_COND_THISWEEK"
msgid "this week"
msgstr "an tseachtain seo"
-#: sc/inc/globstr.hrc:459
+#: sc/inc/globstr.hrc:460
msgctxt "STR_COND_LASTWEEK"
msgid "last week"
msgstr "an tseachtain seo caite"
-#: sc/inc/globstr.hrc:460
+#: sc/inc/globstr.hrc:461
msgctxt "STR_COND_NEXTWEEK"
msgid "next week"
msgstr "an tseachtain seo chugainn"
-#: sc/inc/globstr.hrc:461
+#: sc/inc/globstr.hrc:462
msgctxt "STR_COND_THISMONTH"
msgid "this month"
msgstr "an mhí seo"
-#: sc/inc/globstr.hrc:462
+#: sc/inc/globstr.hrc:463
msgctxt "STR_COND_LASTMONTH"
msgid "last month"
msgstr "an mhí seo caite"
-#: sc/inc/globstr.hrc:463
+#: sc/inc/globstr.hrc:464
msgctxt "STR_COND_NEXTMONTH"
msgid "next month"
msgstr "an mhí seo chugainn"
-#: sc/inc/globstr.hrc:464
+#: sc/inc/globstr.hrc:465
msgctxt "STR_COND_THISYEAR"
msgid "this year"
msgstr "an bhliain seo"
-#: sc/inc/globstr.hrc:465
+#: sc/inc/globstr.hrc:466
msgctxt "STR_COND_LASTYEAR"
msgid "last year"
msgstr "anuraidh"
-#: sc/inc/globstr.hrc:466
+#: sc/inc/globstr.hrc:467
msgctxt "STR_COND_NEXTYEAR"
msgid "next year"
msgstr "an bhliain seo chugainn"
-#: sc/inc/globstr.hrc:467
+#: sc/inc/globstr.hrc:468
msgctxt "STR_COND_AND"
msgid "and"
msgstr "agus"
-#: sc/inc/globstr.hrc:468
+#: sc/inc/globstr.hrc:469
msgctxt "STR_ERR_CONDFORMAT_PROTECTED"
msgid "Conditional Formats can not be created, deleted or changed in protected sheets."
msgstr "Ní féidir formáidí coinníollacha a chruthú, a scriosadh, nó a athrú i mbileog cosanta."
-#: sc/inc/globstr.hrc:469
+#: sc/inc/globstr.hrc:470
msgctxt "STR_EDIT_EXISTING_COND_FORMATS"
msgid ""
"The selected cell already contains conditional formatting. You can either edit the existing conditional format or you define a new overlapping conditional format.\n"
@@ -2317,7 +2322,7 @@ msgstr ""
"\n"
" An bhfuil fonn ort an fhormáid choinníollach atá ann a chur in eagar?"
-#: sc/inc/globstr.hrc:470
+#: sc/inc/globstr.hrc:471
msgctxt "STR_QUERY_FORMULA_RECALC_ONLOAD_ODS"
msgid ""
"This document was last saved by an application other than %PRODUCTNAME. Some formula cells may produce different results when recalculated.\n"
@@ -2328,7 +2333,7 @@ msgstr ""
"\n"
"An bhfuil fonn ort atháireamh a dhéanamh ar gach foirmle sa cháipéis seo anois?"
-#: sc/inc/globstr.hrc:471
+#: sc/inc/globstr.hrc:472
msgctxt "STR_QUERY_FORMULA_RECALC_ONLOAD_XLS"
msgid ""
"This document was last saved by Excel. Some formula cells may produce different results when recalculated.\n"
@@ -2339,77 +2344,77 @@ msgstr ""
"\n"
"An bhfuil fonn ort atháireamh a dhéanamh ar gach foirmle anois?"
-#: sc/inc/globstr.hrc:472
+#: sc/inc/globstr.hrc:473
msgctxt "STR_NO_INSERT_DELETE_OVER_PIVOT_TABLE"
msgid "You cannot insert or delete cells when the affected range intersects with pivot table."
msgstr "Ní féidir leat cealla a chuir isteach nó a scriosadh nuair a fhorluíonn an raon atá i gceist le tábla maighdeogach."
-#: sc/inc/globstr.hrc:473
+#: sc/inc/globstr.hrc:474
msgctxt "STR_DPFIELD_GROUP_BY_SECONDS"
msgid "Seconds"
msgstr "Soicindí"
-#: sc/inc/globstr.hrc:474
+#: sc/inc/globstr.hrc:475
msgctxt "STR_DPFIELD_GROUP_BY_MINUTES"
msgid "Minutes"
msgstr "Nóiméid"
-#: sc/inc/globstr.hrc:475
+#: sc/inc/globstr.hrc:476
msgctxt "STR_DPFIELD_GROUP_BY_HOURS"
msgid "Hours"
msgstr "Uaireanta"
-#: sc/inc/globstr.hrc:476
+#: sc/inc/globstr.hrc:477
msgctxt "STR_DPFIELD_GROUP_BY_DAYS"
msgid "Days"
msgstr "Laethanta"
-#: sc/inc/globstr.hrc:477
+#: sc/inc/globstr.hrc:478
msgctxt "STR_DPFIELD_GROUP_BY_MONTHS"
msgid "Months"
msgstr "Míonna"
-#: sc/inc/globstr.hrc:478
+#: sc/inc/globstr.hrc:479
msgctxt "STR_DPFIELD_GROUP_BY_QUARTERS"
msgid "Quarters"
msgstr "Ráithí"
-#: sc/inc/globstr.hrc:479
+#: sc/inc/globstr.hrc:480
msgctxt "STR_DPFIELD_GROUP_BY_YEARS"
msgid "Years"
msgstr "Blianta"
-#: sc/inc/globstr.hrc:480
+#: sc/inc/globstr.hrc:481
msgctxt "STR_INVALIDVAL"
msgid "Invalid target value."
msgstr "Spriocluach neamhbhailí."
-#: sc/inc/globstr.hrc:481
+#: sc/inc/globstr.hrc:482
msgctxt "STR_INVALIDVAR"
msgid "Undefined name for variable cell."
msgstr "Ainm gan sainmhíniú ar chill athróige."
-#: sc/inc/globstr.hrc:482
+#: sc/inc/globstr.hrc:483
msgctxt "STR_INVALIDFORM"
msgid "Undefined name as formula cell."
msgstr "Ainm gan sainmhíniú mar chill fhoirmle."
-#: sc/inc/globstr.hrc:483
+#: sc/inc/globstr.hrc:484
msgctxt "STR_NOFORMULA"
msgid "Formula cell must contain a formula."
msgstr "Ní mór foirmle a bheith sa chill."
-#: sc/inc/globstr.hrc:484
+#: sc/inc/globstr.hrc:485
msgctxt "STR_INVALIDINPUT"
msgid "Invalid input."
msgstr "Ionchur neamhbhailí."
-#: sc/inc/globstr.hrc:485
+#: sc/inc/globstr.hrc:486
msgctxt "STR_INVALIDCONDITION"
msgid "Invalid condition."
msgstr "Coinníoll neamhbhailí."
-#: sc/inc/globstr.hrc:486
+#: sc/inc/globstr.hrc:487
msgctxt "STR_QUERYREMOVE"
msgid ""
"Should the entry\n"
@@ -2420,133 +2425,133 @@ msgstr ""
"#\n"
"a scriosadh?"
-#: sc/inc/globstr.hrc:487
+#: sc/inc/globstr.hrc:488
msgctxt "STR_COPYLIST"
msgid "Copy List"
msgstr "Cóipeáil Liosta"
-#: sc/inc/globstr.hrc:488
+#: sc/inc/globstr.hrc:489
msgctxt "STR_COPYFROM"
msgid "List from"
msgstr "Liosta ó"
-#: sc/inc/globstr.hrc:489
+#: sc/inc/globstr.hrc:490
msgctxt "STR_COPYERR"
msgid "Cells without text have been ignored."
msgstr "Rinneadh neamhshuim ar chealla gan téacs."
-#: sc/inc/globstr.hrc:490
+#: sc/inc/globstr.hrc:491
#, c-format
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%s-click to follow hyperlink:"
msgstr "%s+clic chun hipearnasc a leanúint:"
-#: sc/inc/globstr.hrc:491
+#: sc/inc/globstr.hrc:492
msgctxt "STR_CLICKHYPERLINK"
msgid "click to open hyperlink:"
msgstr "cliceáil chun hipearnasc a oscailt:"
-#: sc/inc/globstr.hrc:492
+#: sc/inc/globstr.hrc:493
msgctxt "STR_PRINT_PREVIEW_NODATA"
msgid "No Data"
msgstr "Gan Sonraí"
-#: sc/inc/globstr.hrc:493
+#: sc/inc/globstr.hrc:494
msgctxt "STR_PRINT_PREVIEW_EMPTY_RANGE"
msgid "Print Range Empty"
msgstr "Raon Priontála Folamh"
-#: sc/inc/globstr.hrc:494
+#: sc/inc/globstr.hrc:495
msgctxt "STR_UNDO_CONDFORMAT"
msgid "Conditional Format"
msgstr "Formáid Choinníollach"
-#: sc/inc/globstr.hrc:495
+#: sc/inc/globstr.hrc:496
msgctxt "STR_UNDO_CONDFORMAT_LIST"
msgid "Conditional Formats"
msgstr "Formáidí Coinníollacha"
-#: sc/inc/globstr.hrc:496
+#: sc/inc/globstr.hrc:497
msgctxt "STR_UNDO_FORMULA_TO_VALUE"
msgid "Convert Formula To Value"
msgstr "Tiontaigh foirmle go luach"
-#: sc/inc/globstr.hrc:497
+#: sc/inc/globstr.hrc:498
msgctxt "STR_UNQUOTED_STRING"
msgid "Strings without quotes are interpreted as column/row labels."
msgstr "Láimhseáiltear teaghráin gan chomharthaí athfhriotail mar lipéid ró/colúin."
-#: sc/inc/globstr.hrc:498
+#: sc/inc/globstr.hrc:499
msgctxt "STR_ENTER_VALUE"
msgid "Enter a value!"
msgstr "Iontráil luach!"
-#: sc/inc/globstr.hrc:499
+#: sc/inc/globstr.hrc:500
msgctxt "STR_TABLE_COUNT"
msgid "Sheet %1 of %2"
msgstr "Bileog %1 as %2"
-#: sc/inc/globstr.hrc:500
+#: sc/inc/globstr.hrc:501
msgctxt "STR_FUNCTIONS_FOUND"
msgid "%1 and %2 more"
msgstr "%1 agus %2 eile"
-#: sc/inc/globstr.hrc:501
+#: sc/inc/globstr.hrc:502
msgctxt "STR_GENERAL"
msgid "General"
msgstr "Ginearálta"
-#: sc/inc/globstr.hrc:502
+#: sc/inc/globstr.hrc:503
msgctxt "STR_NUMBER"
msgid "Number"
msgstr "Uimhir"
-#: sc/inc/globstr.hrc:503
+#: sc/inc/globstr.hrc:504
msgctxt "STR_PERCENT"
msgid "Percent"
msgstr "Céatadán"
-#: sc/inc/globstr.hrc:504
+#: sc/inc/globstr.hrc:505
msgctxt "STR_CURRENCY"
msgid "Currency"
msgstr "Airgead"
-#: sc/inc/globstr.hrc:505
+#: sc/inc/globstr.hrc:506
msgctxt "STR_DATE"
msgid "Date"
msgstr "Dáta"
-#: sc/inc/globstr.hrc:506
+#: sc/inc/globstr.hrc:507
msgctxt "STR_TIME"
msgid "Time"
msgstr "Am"
-#: sc/inc/globstr.hrc:507
+#: sc/inc/globstr.hrc:508
msgctxt "STR_SCIENTIFIC"
msgid "Scientific"
msgstr "Eolaíoch"
-#: sc/inc/globstr.hrc:508
+#: sc/inc/globstr.hrc:509
msgctxt "STR_FRACTION"
msgid "Fraction"
msgstr "Codán"
-#: sc/inc/globstr.hrc:509
+#: sc/inc/globstr.hrc:510
msgctxt "STR_BOOLEAN_VALUE"
msgid "Boolean Value"
msgstr "Luach Boole"
-#: sc/inc/globstr.hrc:510
+#: sc/inc/globstr.hrc:511
msgctxt "STR_TEXT"
msgid "Text"
msgstr "Téacs"
-#: sc/inc/globstr.hrc:511
+#: sc/inc/globstr.hrc:512
msgctxt "STR_QUERY_PIVOTTABLE_DELTAB"
msgid "The selected sheet(s) contain source data of related pivot tables that will be lost. Are you sure you want to delete the selected sheet(s)?"
msgstr "Tá sonraí foinse a bhaineann le táblaí maighdeogacha gaolta sa bhileog nó sna bileoga roghnaithe. Caillfear na sonraí seo má scriosann tú í/iad. An bhfuil tú cinnte gur mhaith leat an bhileog nó na bileoga roghnaithe a scriosadh?"
-#: sc/inc/globstr.hrc:512
+#: sc/inc/globstr.hrc:513
msgctxt "STR_ERR_NAME_INVALID_CELL_REF"
msgid "Invalid name. Reference to a cell, or a range of cells not allowed."
msgstr "Ainm neamhbhailí. Ní cheadaítear tagairt do chill ná do raon ceall."
@@ -10488,8 +10493,8 @@ msgstr "Mód"
#: sc/inc/scfuncs.hrc:3010
msgctxt "SC_OPCODE_T_TEST"
-msgid "Mode specifies the number of distribution tails to return. 1= one-tailed, 2 = two-tailed distribution"
-msgstr "Sainíonn an mód cé mhéad foirceann atá uait. 1 = aonfhoircneach, 2 = défhoircneach"
+msgid "Mode specifies the number of distribution tails to return. 1 = one-tailed, 2 = two-tailed distribution"
+msgstr ""
#: sc/inc/scfuncs.hrc:3011
msgctxt "SC_OPCODE_T_TEST"
@@ -10533,8 +10538,8 @@ msgstr "Mód"
#: sc/inc/scfuncs.hrc:3024
msgctxt "SC_OPCODE_T_TEST_MS"
-msgid "Mode specifies the number of distribution tails to return. 1= one-tailed, 2 = two-tailed distribution"
-msgstr "Sainíonn an mód cé mhéad foirceann atá uait. 1 = aonfhoircneach, 2 = défhoircneach"
+msgid "Mode specifies the number of distribution tails to return. 1 = one-tailed, 2 = two-tailed distribution"
+msgstr ""
#: sc/inc/scfuncs.hrc:3025
msgctxt "SC_OPCODE_T_TEST_MS"
@@ -18020,22 +18025,22 @@ msgctxt "mergecellsdialog|MergeCellsDialog"
msgid "Merge Cells"
msgstr "Cumaisc Cealla"
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:81
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:84
msgctxt "mergecellsdialog|label"
msgid "Some cells are not empty."
msgstr "Roinnt ceall nach bhfuil folamh."
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:96
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:99
msgctxt "mergecellsdialog|move-cells-radio"
msgid "Move the contents of the hidden cells into the first cell"
msgstr "Bog ábhar ó na cealla folaithe go dtí an chéad chill"
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:112
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:115
msgctxt "mergecellsdialog|empty-cells-radio"
msgid "Empty the contents of the hidden cells"
msgstr "Folmhaigh an t-ábhar ó na cealla folaithe"
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:128
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:131
msgctxt "mergecellsdialog|keep-content-radio"
msgid "Keep the contents of the hidden cells"
msgstr "Caomhnaigh an t-ábhar sna cealla folaithe"
diff --git a/source/ga/sd/messages.po b/source/ga/sd/messages.po
index 27711b263a6..383e9881262 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2018-05-15 14:19+0000\n"
"Last-Translator: Kevin Scannell <kscanne@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -16,167 +16,167 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1526393941.000000\n"
-#: sd/inc/DocumentRenderer.hrc:29
+#: sd/inc/DocumentRenderer.hrc:27
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Slides"
msgstr "Sleamhnáin"
-#: sd/inc/DocumentRenderer.hrc:30
+#: sd/inc/DocumentRenderer.hrc:28
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Handouts"
msgstr "Dáileáin"
-#: sd/inc/DocumentRenderer.hrc:31
+#: sd/inc/DocumentRenderer.hrc:29
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Notes"
msgstr "Nótaí"
-#: sd/inc/DocumentRenderer.hrc:32
+#: sd/inc/DocumentRenderer.hrc:30
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Outline"
msgstr "Imlíne"
-#: sd/inc/DocumentRenderer.hrc:37
+#: sd/inc/DocumentRenderer.hrc:35
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "According to layout"
msgstr "De réir an leagain amach"
-#: sd/inc/DocumentRenderer.hrc:38
+#: sd/inc/DocumentRenderer.hrc:36
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "1"
msgstr "1"
-#: sd/inc/DocumentRenderer.hrc:39
+#: sd/inc/DocumentRenderer.hrc:37
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "2"
msgstr "2"
-#: sd/inc/DocumentRenderer.hrc:40
+#: sd/inc/DocumentRenderer.hrc:38
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "3"
msgstr "3"
-#: sd/inc/DocumentRenderer.hrc:41
+#: sd/inc/DocumentRenderer.hrc:39
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "4"
msgstr "4"
-#: sd/inc/DocumentRenderer.hrc:42
+#: sd/inc/DocumentRenderer.hrc:40
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "6"
msgstr "6"
-#: sd/inc/DocumentRenderer.hrc:43
+#: sd/inc/DocumentRenderer.hrc:41
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "9"
msgstr "9"
-#: sd/inc/DocumentRenderer.hrc:48
+#: sd/inc/DocumentRenderer.hrc:46
msgctxt "STR_IMPRESS_PRINT_UI_ORDER_CHOICES"
msgid "Left to right, then down"
msgstr "Clé go deas, ansin síos"
-#: sd/inc/DocumentRenderer.hrc:49
+#: sd/inc/DocumentRenderer.hrc:47
msgctxt "STR_IMPRESS_PRINT_UI_ORDER_CHOICES"
msgid "Top to bottom, then right"
msgstr "Barr go bun, ansin ar dheis"
-#: sd/inc/DocumentRenderer.hrc:54
+#: sd/inc/DocumentRenderer.hrc:52
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Original colors"
msgstr "Bundathanna"
-#: sd/inc/DocumentRenderer.hrc:55
+#: sd/inc/DocumentRenderer.hrc:53
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Grayscale"
msgstr "Liathscála"
-#: sd/inc/DocumentRenderer.hrc:56
+#: sd/inc/DocumentRenderer.hrc:54
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Black & white"
msgstr "Dubh ⁊ bán"
-#: sd/inc/DocumentRenderer.hrc:61
+#: sd/inc/DocumentRenderer.hrc:59
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Original size"
msgstr "Bunmhéid"
-#: sd/inc/DocumentRenderer.hrc:62
+#: sd/inc/DocumentRenderer.hrc:60
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Fit to printable page"
msgstr "Laghdaigh go dtí an leathanach inphriontáilte"
-#: sd/inc/DocumentRenderer.hrc:63
+#: sd/inc/DocumentRenderer.hrc:61
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Distribute on multiple sheets of paper"
msgstr "Scaip ar níos mó ná bileog pháipéir amháin"
-#: sd/inc/DocumentRenderer.hrc:64
+#: sd/inc/DocumentRenderer.hrc:62
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Tile sheet of paper with repeated slides"
msgstr "Tíligh bileog pháipéir le sleamhnáin"
-#: sd/inc/DocumentRenderer.hrc:69
+#: sd/inc/DocumentRenderer.hrc:67
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Original size"
msgstr "Bunmhéid"
-#: sd/inc/DocumentRenderer.hrc:70
+#: sd/inc/DocumentRenderer.hrc:68
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Fit to printable page"
msgstr "Laghdaigh go dtí an leathanach inphriontáilte"
-#: sd/inc/DocumentRenderer.hrc:71
+#: sd/inc/DocumentRenderer.hrc:69
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Distribute on multiple sheets of paper"
msgstr "Scaip ar níos mó ná bileog pháipéir amháin"
-#: sd/inc/DocumentRenderer.hrc:72
+#: sd/inc/DocumentRenderer.hrc:70
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Tile sheet of paper with repeated pages"
msgstr "Tíligh bileog pháipéir le leathanaigh"
-#: sd/inc/DocumentRenderer.hrc:77
+#: sd/inc/DocumentRenderer.hrc:75
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "All pages"
msgstr "Gach leathanach"
-#: sd/inc/DocumentRenderer.hrc:78
+#: sd/inc/DocumentRenderer.hrc:76
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "Front sides / right pages"
msgstr "Taobhanna tosaigh / leathanaigh ar dheis"
-#: sd/inc/DocumentRenderer.hrc:79
+#: sd/inc/DocumentRenderer.hrc:77
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "Back sides / left pages"
msgstr "Taobhanna ar gcúl / leathanaigh ar chlé"
-#: sd/inc/DocumentRenderer.hrc:84
+#: sd/inc/DocumentRenderer.hrc:82
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~All slides"
msgstr "Gach ~sleamhnán"
-#: sd/inc/DocumentRenderer.hrc:85
+#: sd/inc/DocumentRenderer.hrc:83
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~Slides"
msgstr "~Sleamhnáin"
-#: sd/inc/DocumentRenderer.hrc:86
+#: sd/inc/DocumentRenderer.hrc:84
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Se~lection"
msgstr "R~oghnúchán"
-#: sd/inc/DocumentRenderer.hrc:91
+#: sd/inc/DocumentRenderer.hrc:89
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~All pages"
msgstr "G~ach leathanach"
-#: sd/inc/DocumentRenderer.hrc:92
+#: sd/inc/DocumentRenderer.hrc:90
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Pa~ges"
msgstr "Leathanai~gh"
-#: sd/inc/DocumentRenderer.hrc:93
+#: sd/inc/DocumentRenderer.hrc:91
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Se~lection"
msgstr "R~oghnúchán"
diff --git a/source/ga/svx/messages.po b/source/ga/svx/messages.po
index f7764990a92..4dda6b6862c 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: 2018-05-16 16:53+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2018-05-15 17:53+0000\n"
"Last-Translator: Kevin Scannell <kscanne@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5179,8 +5179,8 @@ msgstr "Is féidir leat codanna de do phróifíl úsáideora a chur san áireamh
#: svx/uiconfig/ui/safemodedialog.ui:432
msgctxt "safemodedialog|btn_create_zip"
-msgid "Create Zip Archive from User Profile"
-msgstr "Cruthaigh cartlann zip ón phróifíl úsáideora"
+msgid "Archive User Profile"
+msgstr ""
#: svx/uiconfig/ui/safemodedialog.ui:445
msgctxt "safemodedialog|linkbutton_profile"
@@ -8769,9 +8769,9 @@ msgid "Red"
msgstr "Dearg"
#: include/svx/strings.hrc:565
-msgctxt "RID_SVXSTR_COLOR_VIOLET"
-msgid "Violet"
-msgstr "Corcairghorm"
+msgctxt "RID_SVXSTR_COLOR_MAGENTA"
+msgid "Magenta"
+msgstr "Maigeanta"
#: include/svx/strings.hrc:566
msgctxt "RID_SVXSTR_COLOR_PURPLE"
@@ -8835,9 +8835,9 @@ msgid "Light Red"
msgstr "Bánrua"
#: include/svx/strings.hrc:579
-msgctxt "RID_SVXSTR_COLOR_LIGHTVIOLET"
-msgid "Light Violet"
-msgstr "Corcairghorm Éadrom"
+msgctxt "RID_SVXSTR_COLOR_LIGHTMAGENTA"
+msgid "Light Magenta"
+msgstr ""
#: include/svx/strings.hrc:580
msgctxt "RID_SVXSTR_COLOR_LIGHTPURPLE"
@@ -8901,9 +8901,9 @@ msgid "Dark Red"
msgstr "Dúrua"
#: include/svx/strings.hrc:593
-msgctxt "RID_SVXSTR_COLOR_DARKVIOLET1"
-msgid "Dark Violet"
-msgstr "Dúchorcairghorm"
+msgctxt "RID_SVXSTR_COLOR_DARKMAGENTA"
+msgid "Dark Magenta"
+msgstr ""
#: include/svx/strings.hrc:594
msgctxt "RID_SVXSTR_COLOR_DARKPURPLE"
@@ -8937,55 +8937,55 @@ msgstr "Líoma Dorcha"
#. Elements of the Tonal color palette
#: include/svx/strings.hrc:601
+msgctxt "RID_SVXSTR_COLOR_VIOLET"
+msgid "Violet"
+msgstr "Corcairghorm"
+
+#: include/svx/strings.hrc:602
msgctxt "RID_SVXSTR_COLOR_VIOLET_OUG"
msgid "Violet (Out of Gamut)"
msgstr "Corcairghorm (As an raon dathanna)"
-#: include/svx/strings.hrc:602
+#: include/svx/strings.hrc:603
msgctxt "RID_SVXSTR_COLOR_BLUE_OUG"
msgid "Blue (Out of Gamut)"
msgstr "Gorm (As an raon dathanna)"
-#: include/svx/strings.hrc:603
+#: include/svx/strings.hrc:604
msgctxt "RID_SVXSTR_COLOR_AZURE_OUG"
msgid "Azure (Out of Gamut)"
msgstr "Gormghlas (As an raon dathanna)"
-#: include/svx/strings.hrc:604
+#: include/svx/strings.hrc:605
msgctxt "RID_SVXSTR_COLOR_SPRINGGREEN_OUG"
msgid "Spring Green (Out of Gamut)"
msgstr "Glas an Earraigh (As an raon dathanna)"
-#: include/svx/strings.hrc:605
+#: include/svx/strings.hrc:606
msgctxt "RID_SVXSTR_COLOR_GREEN_OUG"
msgid "Green (Out of Gamut)"
msgstr "Uaine (As an raon dathanna)"
-#: include/svx/strings.hrc:606
+#: include/svx/strings.hrc:607
msgctxt "RID_SVXSTR_COLOR_CHARTREUSEGREEN_OUG"
msgid "Chartreuse Green (Out of Gamut)"
msgstr "Seártrús (As an raon dathanna)"
-#: include/svx/strings.hrc:607
+#: include/svx/strings.hrc:608
msgctxt "RID_SVXSTR_COLOR_ORANGE_OUG"
msgid "Orange (Out of Gamut)"
msgstr "Oráiste (As an raon dathanna)"
-#: include/svx/strings.hrc:608
+#: include/svx/strings.hrc:609
msgctxt "RID_SVXSTR_COLOR_RED_OUG"
msgid "Red (Out of Gamut)"
msgstr "Dearg (As an raon dathanna)"
-#: include/svx/strings.hrc:609
+#: include/svx/strings.hrc:610
msgctxt "RID_SVXSTR_COLOR_ROSE_OUG"
msgid "Rose (Out of Gamut)"
msgstr "Rós (As an raon dathanna)"
-#: include/svx/strings.hrc:610
-msgctxt "RID_SVXSTR_COLOR_MAGENTA"
-msgid "Magenta"
-msgstr "Maigeanta"
-
#: include/svx/strings.hrc:611
msgctxt "RID_SVXSTR_COLOR_AZURE"
msgid "Azure"
@@ -12091,13 +12091,13 @@ msgstr "Urchair le saighead i dtreo an deis"
#: include/svx/strings.hrc:1273
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_6"
-msgid "Check mark bullets"
-msgstr "Urchair na ticmharcanna"
+msgid "Cross mark bullets"
+msgstr ""
#: include/svx/strings.hrc:1274
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_7"
-msgid "Tick mark bullets"
-msgstr "Urchair na ticmharcanna"
+msgid "Check mark bullets"
+msgstr ""
#: include/svx/strings.hrc:1275
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_0"
diff --git a/source/ga/sw/messages.po b/source/ga/sw/messages.po
index 50c8630c542..487ff418fba 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: 2018-05-22 13:17+0200\n"
+"POT-Creation-Date: 2018-06-12 14:41+0200\n"
"PO-Revision-Date: 2018-05-15 17:55+0000\n"
"Last-Translator: Kevin Scannell <kscanne@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1180,13 +1180,13 @@ msgstr "Tagairt"
#: sw/inc/strings.hrc:172
msgctxt "STR_POOLCOLL_TOX_ILLUSH"
-msgid "Illustration Index Heading"
-msgstr "Ceannteideal Innéacs Léaráidí"
+msgid "Figure Index Heading"
+msgstr ""
#: sw/inc/strings.hrc:173
msgctxt "STR_POOLCOLL_TOX_ILLUS1"
-msgid "Illustration Index 1"
-msgstr "Innéacs Léaráidí 1"
+msgid "Figure Index 1"
+msgstr ""
#: sw/inc/strings.hrc:174
msgctxt "STR_POOLCOLL_TOX_OBJECTH"
@@ -3590,8 +3590,8 @@ msgstr "Innéacs na Réad"
#: sw/inc/strings.hrc:672
msgctxt "STR_TOX_ILL"
-msgid "Illustration Index"
-msgstr "Innéacs na Léaráidí"
+msgid "Table of Figures"
+msgstr ""
#: sw/inc/strings.hrc:673
#, c-format
@@ -9244,72 +9244,72 @@ msgctxt "footnotepage|label5"
msgid "Continuation Notice"
msgstr "Fógra Leanúna"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:49
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:55
msgctxt "footnotesendnotestabpage|ftnntnum"
msgid "_Restart numbering"
msgstr "_Atosaigh an t-uimhriú"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:91
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:93
msgctxt "footnotesendnotestabpage|ftnoffset_label"
msgid "_Start at:"
msgstr "To_saigh ag:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:112
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:111
msgctxt "footnotesendnotestabpage|ftnntnumfmt"
msgid "Custom _format"
msgstr "_Formáid saincheaptha"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:155
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:150
msgctxt "footnotesendnotestabpage|ftnsuffix_label"
msgid "Aft_er:"
msgstr "_Tar éis:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:199
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:188
msgctxt "footnotesendnotestabpage|ftnprefix_label"
msgid "Be_fore:"
msgstr "_Roimh:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:228
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:212
msgctxt "footnotesendnotestabpage|ftnntattextend"
msgid "Collec_t at end of text"
msgstr "Cnuasaigh ag deireadh an _téacs"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:252
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:234
msgctxt "footnotesendnotestabpage|label1"
msgid "Footnotes"
msgstr "Fonótaí"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:289
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:271
msgctxt "footnotesendnotestabpage|endntattextend"
msgid "C_ollect at end of section"
msgstr "C_nuasaigh ag deireadh an rannáin"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:315
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:295
msgctxt "footnotesendnotestabpage|endntnum"
msgid "_Restart numbering"
msgstr "_Atosaigh an t-uimhriú"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:357
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:333
msgctxt "footnotesendnotestabpage|endoffset_label"
msgid "_Start at:"
msgstr "To_saigh ag:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:378
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:351
msgctxt "footnotesendnotestabpage|endntnumfmt"
msgid "_Custom format"
msgstr "Formáid sain_cheaptha"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:421
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:390
msgctxt "footnotesendnotestabpage|endsuffix_label"
msgid "Aft_er:"
msgstr "_Tar éis:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:465
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:428
msgctxt "footnotesendnotestabpage|endprefix_label"
msgid "Be_fore:"
msgstr "_Roimh:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:500
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:458
msgctxt "footnotesendnotestabpage|label2"
msgid "Endnotes"
msgstr "Iarnótaí"
@@ -9339,27 +9339,27 @@ msgctxt "formatsectiondialog|notes"
msgid "Footnotes/Endnotes"
msgstr "Fonótaí/Iarnótaí"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:63
+#: sw/uiconfig/swriter/ui/formattablepage.ui:77
msgctxt "formattablepage|nameft"
msgid "_Name"
msgstr "Ai_nm"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:79
+#: sw/uiconfig/swriter/ui/formattablepage.ui:91
msgctxt "formattablepage|widthft"
msgid "W_idth"
msgstr "Le_ithead"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:110
+#: sw/uiconfig/swriter/ui/formattablepage.ui:120
msgctxt "formattablepage|relwidth"
msgid "Relati_ve"
msgstr "Coi_bhneasta"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:155
+#: sw/uiconfig/swriter/ui/formattablepage.ui:160
msgctxt "formattablepage|label45"
msgid "Properties"
msgstr "Airíonna"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:194
+#: sw/uiconfig/swriter/ui/formattablepage.ui:195
msgctxt "formattablepage|leftft"
msgid "Lef_t"
msgstr "Ar _Chlé"
@@ -9369,62 +9369,62 @@ msgctxt "formattablepage|rightft"
msgid "Ri_ght"
msgstr "Ar _Dheis"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:228
+#: sw/uiconfig/swriter/ui/formattablepage.ui:226
msgctxt "formattablepage|aboveft"
msgid "_Above"
msgstr "Thu_as"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:245
+#: sw/uiconfig/swriter/ui/formattablepage.ui:241
msgctxt "formattablepage|belowft"
msgid "_Below"
msgstr "_Thíos"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:320
+#: sw/uiconfig/swriter/ui/formattablepage.ui:311
msgctxt "formattablepage|label46"
msgid "Spacing"
msgstr "Spásáil"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:362
+#: sw/uiconfig/swriter/ui/formattablepage.ui:349
msgctxt "formattablepage|full"
msgid "A_utomatic"
msgstr "_Uathoibríoch"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:380
+#: sw/uiconfig/swriter/ui/formattablepage.ui:365
msgctxt "formattablepage|left"
msgid "_Left"
msgstr "Ar Ch_lé"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:398
+#: sw/uiconfig/swriter/ui/formattablepage.ui:381
msgctxt "formattablepage|fromleft"
msgid "_From left"
msgstr "Ó _chlé"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:416
+#: sw/uiconfig/swriter/ui/formattablepage.ui:397
msgctxt "formattablepage|right"
msgid "R_ight"
msgstr "Ar Dhe_is"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:435
+#: sw/uiconfig/swriter/ui/formattablepage.ui:413
msgctxt "formattablepage|center"
msgid "_Center"
msgstr "_Lár"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:453
+#: sw/uiconfig/swriter/ui/formattablepage.ui:429
msgctxt "formattablepage|free"
msgid "_Manual"
msgstr "_De Láimh"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:478
+#: sw/uiconfig/swriter/ui/formattablepage.ui:452
msgctxt "formattablepage|label43"
msgid "Alignment"
msgstr "Ailíniú"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:522
+#: sw/uiconfig/swriter/ui/formattablepage.ui:491
msgctxt "formattablepage|label53"
msgid "Text _direction"
msgstr "T_reo an téacs"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:553
+#: sw/uiconfig/swriter/ui/formattablepage.ui:519
msgctxt "formattablepage|label44"
msgid "Properties "
msgstr "Airíonna "
@@ -9779,22 +9779,27 @@ msgctxt "headerfootermenu|insert_pagenumber"
msgid "Insert Page Number"
msgstr "Ionsáigh Uimhir an Leathanaigh"
-#: sw/uiconfig/swriter/ui/indentpage.ui:52
+#: sw/uiconfig/swriter/ui/headerfootermenu.ui:42
+msgctxt "headerfootermenu|insert_pagecount"
+msgid "Insert Page Count"
+msgstr ""
+
+#: sw/uiconfig/swriter/ui/indentpage.ui:57
msgctxt "indentpage|label1"
msgid "_Before section"
msgstr "_Roimh an rannán"
-#: sw/uiconfig/swriter/ui/indentpage.ui:67
+#: sw/uiconfig/swriter/ui/indentpage.ui:71
msgctxt "indentpage|label3"
msgid "_After section"
msgstr "I ndi_aidh an rannáin"
-#: sw/uiconfig/swriter/ui/indentpage.ui:113
+#: sw/uiconfig/swriter/ui/indentpage.ui:115
msgctxt "indentpage|label2"
msgid "Indent"
msgstr "Eangaigh"
-#: sw/uiconfig/swriter/ui/indentpage.ui:142
+#: sw/uiconfig/swriter/ui/indentpage.ui:155
msgctxt "indentpage|preview-atkobject"
msgid "Example"
msgstr "Sampla"
@@ -13285,8 +13290,8 @@ msgstr "Cosain an fhoirm"
#: sw/uiconfig/swriter/ui/optcompatpage.ui:68
msgctxt "optcompatpage|format"
-msgid "MS Word-compatible trailing blanks"
-msgstr "Spásanna chun deiridh comhoiriúnach le MS Word"
+msgid "Word-compatible trailing blanks"
+msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:69
msgctxt "optcompatpage|format"
@@ -13295,7 +13300,7 @@ msgstr "Glac le línte bána i gcúlra leathanach PDF le bheith comhoiriúnach l
#: sw/uiconfig/swriter/ui/optcompatpage.ui:70
msgctxt "optcompatpage|format"
-msgid "A database field (e.g., MailMerge) with empty value hides its paragraph"
+msgid "Hide paragraphs of database fields (e.g., mail merge) with an empty value"
msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:71
@@ -15981,122 +15986,122 @@ msgctxt "tableproperties|background"
msgid "Background"
msgstr "Cúlra"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:25
-msgctxt "tabletextflowpage|liststore1"
-msgid "Horizontal"
-msgstr "Cothrománach"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:29
-msgctxt "tabletextflowpage|liststore1"
-msgid "Vertical"
-msgstr "Ingearach"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:33
-msgctxt "tabletextflowpage|liststore1"
-msgid "Use superordinate object settings"
-msgstr "Úsáid na socruithe ón réad uachtarach"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:47
-msgctxt "tabletextflowpage|liststore2"
-msgid "Top"
-msgstr "Barr"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:51
-msgctxt "tabletextflowpage|liststore2"
-msgid "Centered"
-msgstr "Láraithe"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:55
-msgctxt "tabletextflowpage|liststore2"
-msgid "Bottom"
-msgstr "Bun"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:97
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:53
msgctxt "tabletextflowpage|break"
msgid "_Break"
msgstr "_Briseadh"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:112
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:68
msgctxt "tabletextflowpage|page"
msgid "_Page"
msgstr "_Leathanach"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:132
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:87
msgctxt "tabletextflowpage|column"
msgid "Col_umn"
msgstr "_Colún"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:151
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:106
msgctxt "tabletextflowpage|before"
msgid "Be_fore"
msgstr "_Roimh"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:171
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:125
msgctxt "tabletextflowpage|after"
msgid "_After"
msgstr "T_ar éis"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:203
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:158
msgctxt "tabletextflowpage|pagestyle"
msgid "With Page St_yle"
msgstr "Le S_tíl Leathanaigh"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:224
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:177
msgctxt "tabletextflowpage|pagenoft"
msgid "Page _number"
msgstr "_Uimhir leathanaigh"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:257
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:213
msgctxt "tabletextflowpage|pagestylelb-atkobject"
msgid "With Page Style"
msgstr "Le Stíl Leathanaigh"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:274
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:230
msgctxt "tabletextflowpage|split"
msgid "Allow _table to split across pages and columns"
msgstr "Ceadaigh don _tábla briseadh thar leathanaigh agus colúin"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:289
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:245
msgctxt "tabletextflowpage|splitrow"
msgid "Allow row to break a_cross pages and columns"
msgstr "Ceadaigh don ró briseadh t_har leathanaigh agus colúin"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:306
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:262
msgctxt "tabletextflowpage|keep"
msgid "_Keep with next paragraph"
msgstr "_Coinnigh leis an chéad alt eile"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:328
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:284
msgctxt "tabletextflowpage|label40"
msgid "Text _orientation"
msgstr "Tre_oshuíomh téacs"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:361
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:298
+msgctxt "tabletextflowpage|liststore1"
+msgid "Horizontal"
+msgstr "Cothrománach"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:299
+msgctxt "tabletextflowpage|liststore1"
+msgid "Vertical"
+msgstr "Ingearach"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:300
+msgctxt "tabletextflowpage|liststore1"
+msgid "Use superordinate object settings"
+msgstr "Úsáid na socruithe ón réad uachtarach"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:321
msgctxt "tabletextflowpage|headline"
msgid "R_epeat heading"
msgstr "Ataisp_eáin an ceannteideal"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:383
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:343
msgctxt "tabletextflowpage|label38"
msgid "The first "
msgstr "An chéad "
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:396
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:356
msgctxt "tabletextflowpage|label39"
msgid "rows"
msgstr "rónna"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:434
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:395
msgctxt "tabletextflowpage|label35"
msgid "Text Flow"
msgstr "Sruth Téacs"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:467
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:428
msgctxt "tabletextflowpage|label41"
msgid "_Vertical alignment"
msgstr "Ailíniú _ingearach"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:495
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:442
+msgctxt "tabletextflowpage|liststore2"
+msgid "Top"
+msgstr "Barr"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:443
+msgctxt "tabletextflowpage|liststore2"
+msgid "Centered"
+msgstr "Láraithe"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:444
+msgctxt "tabletextflowpage|liststore2"
+msgid "Bottom"
+msgstr "Bun"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:460
msgctxt "tabletextflowpage|label36"
msgid "Alignment"
msgstr "Ailíniú"
@@ -16878,8 +16883,8 @@ msgstr "Innéacs Aibítreach"
#: sw/uiconfig/swriter/ui/tocindexpage.ui:58
msgctxt "tocindexpage|liststore1"
-msgid "Illustration Index"
-msgstr "Innéacs Léaráidí"
+msgid "Table of Figures"
+msgstr ""
#: sw/uiconfig/swriter/ui/tocindexpage.ui:62
msgctxt "tocindexpage|liststore1"
diff --git a/source/ga/writerperfect/messages.po b/source/ga/writerperfect/messages.po
index db7f02deddd..78efae5a251 100644
--- a/source/ga/writerperfect/messages.po
+++ b/source/ga/writerperfect/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-16 16:54+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2018-05-15 13:22+0000\n"
"Last-Translator: Kevin Scannell <kscanne@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -66,97 +66,97 @@ msgctxt "exportepub|generalft"
msgid "General"
msgstr "Ginearálta"
-#: writerperfect/uiconfig/ui/exportepub.ui:122
+#: writerperfect/uiconfig/ui/exportepub.ui:121
msgctxt "exportepub|versionft"
msgid "Version:"
msgstr "Leagan:"
-#: writerperfect/uiconfig/ui/exportepub.ui:139
+#: writerperfect/uiconfig/ui/exportepub.ui:138
msgctxt "exportepub|epub3"
msgid "EPUB 3.0"
msgstr "EPUB 3.0"
-#: writerperfect/uiconfig/ui/exportepub.ui:140
+#: writerperfect/uiconfig/ui/exportepub.ui:139
msgctxt "exportepub|epub2"
msgid "EPUB 2.0"
msgstr "EPUB 2.0"
-#: writerperfect/uiconfig/ui/exportepub.ui:175
+#: writerperfect/uiconfig/ui/exportepub.ui:174
msgctxt "exportepub|splitft"
msgid "Split method:"
msgstr "Modh scoilte:"
-#: writerperfect/uiconfig/ui/exportepub.ui:192
+#: writerperfect/uiconfig/ui/exportepub.ui:191
msgctxt "exportepub|splitpage"
msgid "Page break"
msgstr "Briseadh leathanaigh"
-#: writerperfect/uiconfig/ui/exportepub.ui:193
+#: writerperfect/uiconfig/ui/exportepub.ui:192
msgctxt "exportepub|splitheading"
msgid "Heading"
msgstr "Ceannteideal"
-#: writerperfect/uiconfig/ui/exportepub.ui:228
+#: writerperfect/uiconfig/ui/exportepub.ui:227
msgctxt "exportepub|layoutft"
msgid "Layout method:"
msgstr "Mód leagtha amach:"
-#: writerperfect/uiconfig/ui/exportepub.ui:245
+#: writerperfect/uiconfig/ui/exportepub.ui:244
msgctxt "exportepub|layoutreflowable"
msgid "Reflowable"
msgstr "In-athshreafa"
-#: writerperfect/uiconfig/ui/exportepub.ui:246
+#: writerperfect/uiconfig/ui/exportepub.ui:245
msgctxt "exportepub|layoutfixed"
msgid "Fixed"
msgstr "Seasta"
-#: writerperfect/uiconfig/ui/exportepub.ui:281
+#: writerperfect/uiconfig/ui/exportepub.ui:280
msgctxt "exportepub|coverimageft"
msgid "Custom cover image:"
msgstr "Pictiúr clúdaigh saincheaptha:"
-#: writerperfect/uiconfig/ui/exportepub.ui:311
+#: writerperfect/uiconfig/ui/exportepub.ui:310
msgctxt "exportepub|coverbutton"
msgid "Browse..."
msgstr "Brabhsáil..."
-#: writerperfect/uiconfig/ui/exportepub.ui:355
+#: writerperfect/uiconfig/ui/exportepub.ui:354
msgctxt "exportepub|mediadirft"
msgid "Custom media directory:"
msgstr "Comhadlann shaincheaptha meán:"
-#: writerperfect/uiconfig/ui/exportepub.ui:385
+#: writerperfect/uiconfig/ui/exportepub.ui:384
msgctxt "exportepub|mediabutton"
msgid "Browse..."
msgstr "Brabhsáil..."
-#: writerperfect/uiconfig/ui/exportepub.ui:429
+#: writerperfect/uiconfig/ui/exportepub.ui:428
msgctxt "exportepub|metadataft"
msgid "Metadata"
msgstr "Meiteashonraí"
-#: writerperfect/uiconfig/ui/exportepub.ui:470
+#: writerperfect/uiconfig/ui/exportepub.ui:468
msgctxt "exportepub|identifierft"
msgid "Identifier:"
msgstr "Aitheantóir:"
-#: writerperfect/uiconfig/ui/exportepub.ui:485
+#: writerperfect/uiconfig/ui/exportepub.ui:483
msgctxt "exportepub|titleft"
msgid "Title:"
msgstr "Teideal:"
-#: writerperfect/uiconfig/ui/exportepub.ui:511
+#: writerperfect/uiconfig/ui/exportepub.ui:509
msgctxt "exportepub|authorft"
msgid "Author:"
msgstr "Údar:"
-#: writerperfect/uiconfig/ui/exportepub.ui:537
+#: writerperfect/uiconfig/ui/exportepub.ui:535
msgctxt "exportepub|languageft"
msgid "Language:"
msgstr "Teanga:"
-#: writerperfect/uiconfig/ui/exportepub.ui:563
+#: writerperfect/uiconfig/ui/exportepub.ui:561
msgctxt "exportepub|dateft"
msgid "Date:"
msgstr "Dáta:"
diff --git a/source/gd/cui/messages.po b/source/gd/cui/messages.po
index 673945fa079..93012037c86 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2018-03-14 22:02+0000\n"
"Last-Translator: Michael Bauer <fios@akerbeltz.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -9872,97 +9872,97 @@ msgctxt "positionsizedialog|PositionAndSizeDialog"
msgid "Position and Size"
msgstr "Ionad is meud"
-#: cui/uiconfig/ui/positionsizedialog.ui:107
+#: cui/uiconfig/ui/positionsizedialog.ui:136
msgctxt "positionsizedialog|RID_SVXPAGE_POSITION_SIZE"
msgid "Position and Size"
msgstr "Ionad is meud"
-#: cui/uiconfig/ui/positionsizedialog.ui:129
+#: cui/uiconfig/ui/positionsizedialog.ui:182
msgctxt "positionsizedialog|RID_SVXPAGE_SWPOSSIZE"
msgid "Position and Size"
msgstr "Ionad is meud"
-#: cui/uiconfig/ui/positionsizedialog.ui:152
+#: cui/uiconfig/ui/positionsizedialog.ui:229
msgctxt "positionsizedialog|RID_SVXPAGE_ANGLE"
msgid "Rotation"
msgstr "Cuairteachadh"
-#: cui/uiconfig/ui/positionsizedialog.ui:175
+#: cui/uiconfig/ui/positionsizedialog.ui:276
msgctxt "positionsizedialog|RID_SVXPAGE_SLANT"
msgid "Slant & Corner Radius"
msgstr "Claonadh ⁊ rèideas a' cheàrna"
-#: cui/uiconfig/ui/possizetabpage.ui:40
+#: cui/uiconfig/ui/possizetabpage.ui:61
msgctxt "possizetabpage|FT_POS_X"
msgid "Position _X:"
msgstr "An t-ionad _x:"
-#: cui/uiconfig/ui/possizetabpage.ui:56
+#: cui/uiconfig/ui/possizetabpage.ui:75
msgctxt "possizetabpage|FT_POS_Y"
msgid "Position _Y:"
msgstr "An t-ionad _y:"
-#: cui/uiconfig/ui/possizetabpage.ui:110
+#: cui/uiconfig/ui/possizetabpage.ui:128
msgctxt "possizetabpage|FT_POSREFERENCE"
msgid "_Base point:"
msgstr "_Bun-phuing:"
-#: cui/uiconfig/ui/possizetabpage.ui:148
+#: cui/uiconfig/ui/possizetabpage.ui:182
msgctxt "possizetabpage|label1"
msgid "Position"
msgstr "Ionad"
-#: cui/uiconfig/ui/possizetabpage.ui:190
+#: cui/uiconfig/ui/possizetabpage.ui:224
msgctxt "possizetabpage|FT_WIDTH"
msgid "Wi_dth:"
msgstr "_Leud:"
-#: cui/uiconfig/ui/possizetabpage.ui:206
+#: cui/uiconfig/ui/possizetabpage.ui:238
msgctxt "possizetabpage|FT_HEIGHT"
msgid "H_eight:"
msgstr "Àird_e:"
-#: cui/uiconfig/ui/possizetabpage.ui:247
+#: cui/uiconfig/ui/possizetabpage.ui:276
msgctxt "possizetabpage|CBX_SCALE"
msgid "_Keep ratio"
msgstr "_Glèidh an co-mheas"
-#: cui/uiconfig/ui/possizetabpage.ui:279
+#: cui/uiconfig/ui/possizetabpage.ui:307
msgctxt "possizetabpage|FT_SIZEREFERENCE"
msgid "Base _point:"
msgstr "Bun-_phuing:"
-#: cui/uiconfig/ui/possizetabpage.ui:317
+#: cui/uiconfig/ui/possizetabpage.ui:361
msgctxt "possizetabpage|label2"
msgid "Size"
msgstr "Meud"
-#: cui/uiconfig/ui/possizetabpage.ui:356
+#: cui/uiconfig/ui/possizetabpage.ui:401
msgctxt "possizetabpage|TSB_POSPROTECT"
msgid "Positio_n"
msgstr "Io_nad"
-#: cui/uiconfig/ui/possizetabpage.ui:373
+#: cui/uiconfig/ui/possizetabpage.ui:418
msgctxt "possizetabpage|TSB_SIZEPROTECT"
msgid "_Size"
msgstr "_Meud"
-#: cui/uiconfig/ui/possizetabpage.ui:397
+#: cui/uiconfig/ui/possizetabpage.ui:441
msgctxt "possizetabpage|label3"
msgid "Protect"
msgstr "Dìon"
-#: cui/uiconfig/ui/possizetabpage.ui:430
+#: cui/uiconfig/ui/possizetabpage.ui:475
msgctxt "possizetabpage|TSB_AUTOGROW_WIDTH"
msgid "_Fit width to text"
msgstr "Co-_fhreagair an leud ris an teacsa"
-#: cui/uiconfig/ui/possizetabpage.ui:447
+#: cui/uiconfig/ui/possizetabpage.ui:492
msgctxt "possizetabpage|TSB_AUTOGROW_HEIGHT"
msgid "Fit _height to text"
msgstr "_Co-fhreagair an àirde ris an teacsa"
-#: cui/uiconfig/ui/possizetabpage.ui:471
+#: cui/uiconfig/ui/possizetabpage.ui:515
msgctxt "possizetabpage|label4"
msgid "Adapt"
msgstr "Freagarraich"
@@ -10162,47 +10162,47 @@ msgctxt "recordnumberdialog|label2"
msgid "go to record"
msgstr "rach dhan reacord"
-#: cui/uiconfig/ui/rotationtabpage.ui:52
+#: cui/uiconfig/ui/rotationtabpage.ui:56
msgctxt "rotationtabpage|FT_POS_X"
msgid "Position _X:"
msgstr "An t-ionad _x:"
-#: cui/uiconfig/ui/rotationtabpage.ui:66
+#: cui/uiconfig/ui/rotationtabpage.ui:70
msgctxt "rotationtabpage|FT_POS_Y"
msgid "Position _Y:"
msgstr "An t-ionad _y:"
-#: cui/uiconfig/ui/rotationtabpage.ui:116
+#: cui/uiconfig/ui/rotationtabpage.ui:123
msgctxt "rotationtabpage|FT_POSPRESETS"
msgid "_Default settings:"
msgstr "_Roghainnean bunaiteach:"
-#: cui/uiconfig/ui/rotationtabpage.ui:130
+#: cui/uiconfig/ui/rotationtabpage.ui:151
msgctxt "rotationtabpage|CTL_RECT|tooltip_text"
msgid "Rotation point"
msgstr "Puing cuairteachaidh"
-#: cui/uiconfig/ui/rotationtabpage.ui:155
+#: cui/uiconfig/ui/rotationtabpage.ui:178
msgctxt "rotationtabpage|label1"
msgid "Pivot Point"
msgstr "Puing maighdeige"
-#: cui/uiconfig/ui/rotationtabpage.ui:197
+#: cui/uiconfig/ui/rotationtabpage.ui:220
msgctxt "rotationtabpage|FT_ANGLE"
msgid "_Angle:"
msgstr "_Ceàrn:"
-#: cui/uiconfig/ui/rotationtabpage.ui:238
+#: cui/uiconfig/ui/rotationtabpage.ui:263
msgctxt "rotationtabpage|FT_ANGLEPRESETS"
msgid "Default _settings:"
msgstr "_Roghainnean bunaiteach:"
-#: cui/uiconfig/ui/rotationtabpage.ui:252
+#: cui/uiconfig/ui/rotationtabpage.ui:287
msgctxt "rotationtabpage|CTL_ANGLE|tooltip_text"
msgid "Rotation Angle"
msgstr "Ceàrn cuairteachaidh"
-#: cui/uiconfig/ui/rotationtabpage.ui:277
+#: cui/uiconfig/ui/rotationtabpage.ui:314
msgctxt "rotationtabpage|label2"
msgid "Rotation Angle"
msgstr "Ceàrn cuairteachaidh"
@@ -10582,52 +10582,52 @@ msgctxt "similaritysearchdialog|relaxbox"
msgid "_Combine"
msgstr "_Co-mheasgaich"
-#: cui/uiconfig/ui/slantcornertabpage.ui:50
+#: cui/uiconfig/ui/slantcornertabpage.ui:70
msgctxt "slantcornertabpage|label5"
msgid "_X:"
msgstr "_X:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:88
+#: cui/uiconfig/ui/slantcornertabpage.ui:110
msgctxt "slantcornertabpage|label6"
msgid "_Y:"
msgstr "_Y:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:125
+#: cui/uiconfig/ui/slantcornertabpage.ui:149
msgctxt "slantcornertabpage|label3"
msgid "Control Point 1"
msgstr "Puing-smachd 1"
-#: cui/uiconfig/ui/slantcornertabpage.ui:159
+#: cui/uiconfig/ui/slantcornertabpage.ui:183
msgctxt "slantcornertabpage|FT_RADIUS"
msgid "_Radius:"
msgstr "_Rèideas:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:189
+#: cui/uiconfig/ui/slantcornertabpage.ui:214
msgctxt "slantcornertabpage|label1"
msgid "Corner Radius"
msgstr "Rèideas an oisein"
-#: cui/uiconfig/ui/slantcornertabpage.ui:223
+#: cui/uiconfig/ui/slantcornertabpage.ui:248
msgctxt "slantcornertabpage|FT_ANGLE"
msgid "_Angle:"
msgstr "_Ceàrn:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:253
+#: cui/uiconfig/ui/slantcornertabpage.ui:279
msgctxt "slantcornertabpage|label2"
msgid "Slant"
msgstr "Claonadh"
-#: cui/uiconfig/ui/slantcornertabpage.ui:294
+#: cui/uiconfig/ui/slantcornertabpage.ui:320
msgctxt "slantcornertabpage|label4"
msgid "_X:"
msgstr "_X:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:332
+#: cui/uiconfig/ui/slantcornertabpage.ui:360
msgctxt "slantcornertabpage|label7"
msgid "_Y:"
msgstr "_Y:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:369
+#: cui/uiconfig/ui/slantcornertabpage.ui:399
msgctxt "slantcornertabpage|label8"
msgid "Control Point 2"
msgstr "Puing-smachd 2"
@@ -10907,112 +10907,112 @@ msgctxt "storedwebconnectiondialog|change"
msgid "_Change Password..."
msgstr "Atharrai_ch am facal-faire..."
-#: cui/uiconfig/ui/swpossizepage.ui:74
+#: cui/uiconfig/ui/swpossizepage.ui:85
msgctxt "swpossizepage|widthft"
msgid "_Width:"
msgstr "_Leud:"
-#: cui/uiconfig/ui/swpossizepage.ui:111
+#: cui/uiconfig/ui/swpossizepage.ui:123
msgctxt "swpossizepage|heightft"
msgid "H_eight:"
msgstr "Àird_e:"
-#: cui/uiconfig/ui/swpossizepage.ui:128
+#: cui/uiconfig/ui/swpossizepage.ui:141
msgctxt "swpossizepage|ratio"
msgid "_Keep ratio"
msgstr "_Glèidh an co-mheas"
-#: cui/uiconfig/ui/swpossizepage.ui:149
+#: cui/uiconfig/ui/swpossizepage.ui:162
msgctxt "swpossizepage|label2"
msgid "Size"
msgstr "Meud"
-#: cui/uiconfig/ui/swpossizepage.ui:205
+#: cui/uiconfig/ui/swpossizepage.ui:218
msgctxt "swpossizepage|topage"
msgid "To _page"
msgstr "Ris an duille_ag"
-#: cui/uiconfig/ui/swpossizepage.ui:222
+#: cui/uiconfig/ui/swpossizepage.ui:234
msgctxt "swpossizepage|topara"
msgid "To paragrap_h"
msgstr "Ris a' _pharagraf"
-#: cui/uiconfig/ui/swpossizepage.ui:238
+#: cui/uiconfig/ui/swpossizepage.ui:250
msgctxt "swpossizepage|tochar"
msgid "To cha_racter"
msgstr "Ris a' _charactar"
-#: cui/uiconfig/ui/swpossizepage.ui:254
+#: cui/uiconfig/ui/swpossizepage.ui:266
msgctxt "swpossizepage|aschar"
msgid "_As character"
msgstr "Mar c_haractar"
-#: cui/uiconfig/ui/swpossizepage.ui:270
+#: cui/uiconfig/ui/swpossizepage.ui:282
msgctxt "swpossizepage|toframe"
msgid "To _frame"
msgstr "Ris an _fhrèam"
-#: cui/uiconfig/ui/swpossizepage.ui:292
+#: cui/uiconfig/ui/swpossizepage.ui:304
msgctxt "swpossizepage|label1"
msgid "Anchor"
msgstr "Acair"
-#: cui/uiconfig/ui/swpossizepage.ui:333
+#: cui/uiconfig/ui/swpossizepage.ui:344
msgctxt "swpossizepage|horiposft"
msgid "Hori_zontal:"
msgstr "Air a' _chòmhnard:"
-#: cui/uiconfig/ui/swpossizepage.ui:347
+#: cui/uiconfig/ui/swpossizepage.ui:358
msgctxt "swpossizepage|horibyft"
msgid "b_y:"
msgstr "_le:"
-#: cui/uiconfig/ui/swpossizepage.ui:361
+#: cui/uiconfig/ui/swpossizepage.ui:372
msgctxt "swpossizepage|vertbyft"
msgid "_by:"
msgstr "_le:"
-#: cui/uiconfig/ui/swpossizepage.ui:375
+#: cui/uiconfig/ui/swpossizepage.ui:386
msgctxt "swpossizepage|horitoft"
msgid "_to:"
msgstr "_gu:"
-#: cui/uiconfig/ui/swpossizepage.ui:421
+#: cui/uiconfig/ui/swpossizepage.ui:433
msgctxt "swpossizepage|vertposft"
msgid "_Vertical:"
msgstr "Gu _h-inghearach:"
-#: cui/uiconfig/ui/swpossizepage.ui:457
+#: cui/uiconfig/ui/swpossizepage.ui:470
msgctxt "swpossizepage|verttoft"
msgid "t_o:"
msgstr "g_u:"
-#: cui/uiconfig/ui/swpossizepage.ui:478
+#: cui/uiconfig/ui/swpossizepage.ui:492
msgctxt "swpossizepage|mirror"
msgid "_Mirror on even pages"
msgstr "Sgàthanaich air duilleagan cothro_m"
-#: cui/uiconfig/ui/swpossizepage.ui:495
+#: cui/uiconfig/ui/swpossizepage.ui:509
msgctxt "swpossizepage|followtextflow"
msgid "Follow te_xt flow"
msgstr "Lean ri sruthadh an tea_csa"
-#: cui/uiconfig/ui/swpossizepage.ui:518
+#: cui/uiconfig/ui/swpossizepage.ui:532
msgctxt "swpossizepage|label11"
msgid "Position"
msgstr "Ionad"
-#: cui/uiconfig/ui/swpossizepage.ui:549
+#: cui/uiconfig/ui/swpossizepage.ui:563
msgctxt "swpossizepage|pos"
msgid "Positio_n"
msgstr "Io_nad"
-#: cui/uiconfig/ui/swpossizepage.ui:565
+#: cui/uiconfig/ui/swpossizepage.ui:579
msgctxt "swpossizepage|size"
msgid "_Size"
msgstr "_Meud"
-#: cui/uiconfig/ui/swpossizepage.ui:587
+#: cui/uiconfig/ui/swpossizepage.ui:601
msgctxt "swpossizepage|label3"
msgid "Protect"
msgstr "Dìon"
@@ -11202,12 +11202,12 @@ msgctxt "textattrtabpage|label2"
msgid "Spacing to Borders"
msgstr "Beàrnadh gu na h-iomaill"
-#: cui/uiconfig/ui/textattrtabpage.ui:425
+#: cui/uiconfig/ui/textattrtabpage.ui:423
msgctxt "textattrtabpage|TSB_FULL_WIDTH"
msgid "Full _width"
msgstr "Làn-_leud"
-#: cui/uiconfig/ui/textattrtabpage.ui:448
+#: cui/uiconfig/ui/textattrtabpage.ui:446
msgctxt "textattrtabpage|label3"
msgid "Text Anchor"
msgstr "Acair an teacsa"
diff --git a/source/gd/filter/source/config/fragments/filters.po b/source/gd/filter/source/config/fragments/filters.po
index 4ff183e6ddb..c9e10fc6ddf 100644
--- a/source/gd/filter/source/config/fragments/filters.po
+++ b/source/gd/filter/source/config/fragments/filters.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-16 16:54+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2018-03-10 22:48+0000\n"
"Last-Translator: Michael Bauer <fios@akerbeltz.org>\n"
"Language-Team: Akerbeltz\n"
@@ -464,8 +464,8 @@ msgctxt ""
"MS Word 2003 XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Word 2003 XML"
-msgstr "Microsoft Word 2003 XML"
+msgid "Word 2003 XML"
+msgstr ""
#: MS_Word_2007_XML.xcu
msgctxt ""
@@ -1283,8 +1283,8 @@ msgctxt ""
"Calc MS Excel 2007 VBA XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Excel 2007-2016 XML (macro enabled)"
-msgstr "Microsoft Excel 2007-2016 XML (leis na macrothan an comas)"
+msgid "Excel 2007–2019 (macro-enabled)"
+msgstr ""
#: calc_MS_Excel_2007_XML.xcu
msgctxt ""
diff --git a/source/gd/filter/source/config/fragments/types.po b/source/gd/filter/source/config/fragments/types.po
index 8534404507c..fb7dff2a8e1 100644
--- a/source/gd/filter/source/config/fragments/types.po
+++ b/source/gd/filter/source/config/fragments/types.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-08 15:11+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2017-11-07 12:32+0000\n"
"Last-Translator: Michael Bauer <fios@akerbeltz.org>\n"
"Language-Team: Akerbeltz\n"
@@ -293,8 +293,8 @@ msgctxt ""
"writer_MS_Word_2003_XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Word 2003 XML"
-msgstr "Microsoft Word 2003 XML"
+msgid "Word 2003 XML"
+msgstr ""
#: writer_MS_Word_2007_XML.xcu
msgctxt ""
diff --git a/source/gd/fpicker/messages.po b/source/gd/fpicker/messages.po
index 33b66b53400..8e8bd1b5812 100644
--- a/source/gd/fpicker/messages.po
+++ b/source/gd/fpicker/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2018-03-10 22:48+0000\n"
"Last-Translator: Michael Bauer <fios@akerbeltz.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -272,13 +272,13 @@ msgstr "Crioptaich le iuchair GPG"
#: fpicker/uiconfig/ui/foldernamedialog.ui:8
msgctxt "foldernamedialog|FolderNameDialog"
-msgid "Folder Name ?"
-msgstr "Ainm a' phasgain ?"
+msgid "Folder Name"
+msgstr ""
#: fpicker/uiconfig/ui/foldernamedialog.ui:91
msgctxt "foldernamedialog|label2"
-msgid "Na_me"
-msgstr "Ain_m"
+msgid "Na_me:"
+msgstr ""
#: fpicker/uiconfig/ui/foldernamedialog.ui:122
msgctxt "foldernamedialog|label1"
diff --git a/source/gd/officecfg/registry/data/org/openoffice/Office/UI.po b/source/gd/officecfg/registry/data/org/openoffice/Office/UI.po
index 9a3204a7eb8..b28ae83901b 100644
--- a/source/gd/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/gd/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-22 13:17+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2018-03-14 22:04+0000\n"
"Last-Translator: Michael Bauer <fios@akerbeltz.org>\n"
"Language-Team: Akerbeltz\n"
@@ -26521,8 +26521,8 @@ msgctxt ""
"..WriterCommands.UserInterface.Commands..uno:TextAttributes\n"
"Label\n"
"value.text"
-msgid "Text Attributes"
-msgstr "Buadhan an teacsa"
+msgid "Text Attributes..."
+msgstr ""
#: WriterCommands.xcu
msgctxt ""
diff --git a/source/gd/readlicense_oo/docs.po b/source/gd/readlicense_oo/docs.po
index 21d1c1341a6..fe2bf85bf40 100644
--- a/source/gd/readlicense_oo/docs.po
+++ b/source/gd/readlicense_oo/docs.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-04-17 15:54+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2018-03-11 16:17+0000\n"
"Last-Translator: Michael Bauer <fios@akerbeltz.org>\n"
"Language-Team: Akerbeltz\n"
@@ -117,8 +117,8 @@ msgctxt ""
"readme.xrm\n"
"macxiOSX\n"
"readmeitem.text"
-msgid "MacOSX 10.8 (Mountain Lion) or higher"
-msgstr "MacOSX 10.8 (Mountain Lion) no nas ùire"
+msgid "MacOSX 10.9 (Mavericks) or higher"
+msgstr ""
#: readme.xrm
msgctxt ""
diff --git a/source/gd/sc/messages.po b/source/gd/sc/messages.po
index 14f7e2d50a6..e205b570cd5 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-12 14:40+0200\n"
"PO-Revision-Date: 2018-03-14 22:04+0000\n"
"Last-Translator: Michael Bauer <fios@akerbeltz.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1870,16 +1870,21 @@ msgid "Nested arrays are not supported."
msgstr "Chan eil taic ann ri arraighean neadaichte."
#: sc/inc/globstr.hrc:390
+msgctxt "STR_ERR_LONG_BAD_ARRAY_CONTENT"
+msgid "Unsupported inline array content."
+msgstr ""
+
+#: sc/inc/globstr.hrc:391
msgctxt "STR_UNDO_TEXTTOCOLUMNS"
msgid "Text to Columns"
msgstr "Teacsa 'na cholbhan"
-#: sc/inc/globstr.hrc:391
+#: sc/inc/globstr.hrc:392
msgctxt "STR_DOC_UPDATED"
msgid "Your spreadsheet has been updated with changes saved by other users."
msgstr "Chaidh rudan ùra a shàbhaladh sa chliath-dhuilleag agad le cleachdaichean eile."
-#: sc/inc/globstr.hrc:392
+#: sc/inc/globstr.hrc:393
msgctxt "STR_DOC_WILLBESAVED"
msgid ""
"The spreadsheet must be saved now to activate sharing mode.\n"
@@ -1890,7 +1895,7 @@ msgstr ""
"\n"
"A bheil thu airson leantainn air adhart?"
-#: sc/inc/globstr.hrc:393
+#: sc/inc/globstr.hrc:394
msgctxt "STR_DOC_WILLNOTBESAVED"
msgid ""
"Already resolved merge conflicts will be lost and your changes to the shared spreadsheet will not be saved.\n"
@@ -1901,7 +1906,7 @@ msgstr ""
"\n"
"A bheil thu airson leantainn air adhart?"
-#: sc/inc/globstr.hrc:394
+#: sc/inc/globstr.hrc:395
msgctxt "STR_DOC_DISABLESHARED"
msgid ""
"Disabling shared mode of a spreadsheet hinders all other users of the shared spreadsheet to merge back their work.\n"
@@ -1912,7 +1917,7 @@ msgstr ""
"\n"
"A bheil thu airson leantainn air adhart?"
-#: sc/inc/globstr.hrc:395
+#: sc/inc/globstr.hrc:396
msgctxt "STR_DOC_NOLONGERSHARED"
msgid ""
"This spreadsheet is no longer in shared mode.\n"
@@ -1923,7 +1928,7 @@ msgstr ""
"\n"
"Sàbhail a' chliath-dhuilleag agad gu faidhle eile agus co-aonaich na dh'atharraich thu leis a' chliath-dhuilleag cho-aonaichte a làimh."
-#: sc/inc/globstr.hrc:396
+#: sc/inc/globstr.hrc:397
msgctxt "STR_FILE_LOCKED_TRY_LATER"
msgid ""
"The shared spreadsheet file is locked due to a merge in progress by user: '%1'\n"
@@ -1934,7 +1939,7 @@ msgstr ""
"\n"
"Chan urrainn dhut am modh co-roinnidh de dh'fhaidhle glaiste a chur à comas. Feuch ris a-rithist an ceann tàmaill."
-#: sc/inc/globstr.hrc:397
+#: sc/inc/globstr.hrc:398
msgctxt "STR_FILE_LOCKED_SAVE_LATER"
msgid ""
"The shared spreadsheet file is locked due to a merge in progress by user: '%1'\n"
@@ -1945,147 +1950,147 @@ msgstr ""
"\n"
"Feuch ris a-rithist an ceann tàmaill."
-#: sc/inc/globstr.hrc:398
+#: sc/inc/globstr.hrc:399
msgctxt "STR_UNKNOWN_USER"
msgid "Unknown User"
msgstr "Cleachdaiche neo-aithnichte"
-#: sc/inc/globstr.hrc:399
+#: sc/inc/globstr.hrc:400
msgctxt "STR_SHAPE_AUTOSHAPE"
msgid "AutoShape"
msgstr "Fèin-chruth"
-#: sc/inc/globstr.hrc:400
+#: sc/inc/globstr.hrc:401
msgctxt "STR_SHAPE_RECTANGLE"
msgid "Rectangle"
msgstr "Ceart-cheàrnach"
-#: sc/inc/globstr.hrc:401
+#: sc/inc/globstr.hrc:402
msgctxt "STR_SHAPE_LINE"
msgid "Line"
msgstr "Loidhne"
-#: sc/inc/globstr.hrc:402
+#: sc/inc/globstr.hrc:403
msgctxt "STR_SHAPE_OVAL"
msgid "Oval"
msgstr "Ugh-chruth"
-#: sc/inc/globstr.hrc:403
+#: sc/inc/globstr.hrc:404
msgctxt "STR_FORM_BUTTON"
msgid "Button"
msgstr "Putan"
-#: sc/inc/globstr.hrc:404
+#: sc/inc/globstr.hrc:405
msgctxt "STR_FORM_CHECKBOX"
msgid "Check Box"
msgstr "Bogsa dearbhaidh"
-#: sc/inc/globstr.hrc:405
+#: sc/inc/globstr.hrc:406
msgctxt "STR_FORM_OPTIONBUTTON"
msgid "Option Button"
msgstr "Putan roghainn"
-#: sc/inc/globstr.hrc:406
+#: sc/inc/globstr.hrc:407
msgctxt "STR_FORM_LABEL"
msgid "Label"
msgstr "Leubail"
-#: sc/inc/globstr.hrc:407
+#: sc/inc/globstr.hrc:408
msgctxt "STR_FORM_LISTBOX"
msgid "List Box"
msgstr "Bogsa liosta"
-#: sc/inc/globstr.hrc:408
+#: sc/inc/globstr.hrc:409
msgctxt "STR_FORM_GROUPBOX"
msgid "Group Box"
msgstr "Bogsa buidhinn"
-#: sc/inc/globstr.hrc:409
+#: sc/inc/globstr.hrc:410
msgctxt "STR_FORM_DROPDOWN"
msgid "Drop Down"
msgstr "Clàr-taice tèarnaidh"
-#: sc/inc/globstr.hrc:410
+#: sc/inc/globstr.hrc:411
msgctxt "STR_FORM_SPINNER"
msgid "Spinner"
msgstr "Snìomhadair"
-#: sc/inc/globstr.hrc:411
+#: sc/inc/globstr.hrc:412
msgctxt "STR_FORM_SCROLLBAR"
msgid "Scroll Bar"
msgstr "Bàr-sgrolaidh"
-#: sc/inc/globstr.hrc:412
+#: sc/inc/globstr.hrc:413
msgctxt "STR_STYLE_FAMILY_CELL"
msgid "Cell Styles"
msgstr "Stoidhlean cheallan"
-#: sc/inc/globstr.hrc:413
+#: sc/inc/globstr.hrc:414
msgctxt "STR_STYLE_FAMILY_PAGE"
msgid "Page Styles"
msgstr "Stoidhlean dhuilleagan"
-#: sc/inc/globstr.hrc:414
+#: sc/inc/globstr.hrc:415
msgctxt "STR_ERR_DATAPILOTSOURCE"
msgid "Pivot table source data is invalid."
msgstr "Tha dàta tùsail a' chlàir Pivot mì-dhligheach."
-#: sc/inc/globstr.hrc:415
+#: sc/inc/globstr.hrc:416
msgctxt "STR_OPTIONS_WARN_SEPARATORS"
msgid "Because the current formula separator settings conflict with the locale, the formula separators have been reset to their default values."
msgstr "A chionn 's gu bheil còmhstri eadar roghainnean sgaradair na foirmle agus an sgeama ionadail, chaidh sgaradairean na foirmle aiseag dha na luachan bunaiteach."
-#: sc/inc/globstr.hrc:416
+#: sc/inc/globstr.hrc:417
msgctxt "STR_UNDO_INSERT_CURRENT_DATE"
msgid "Insert Current Date"
msgstr "Cuir a-steach an ceann-là an-diugh"
-#: sc/inc/globstr.hrc:417
+#: sc/inc/globstr.hrc:418
msgctxt "STR_UNDO_INSERT_CURRENT_TIME"
msgid "Insert Current Time"
msgstr "Cuir a-steach an t-àm làithreach"
-#: sc/inc/globstr.hrc:418
+#: sc/inc/globstr.hrc:419
msgctxt "STR_MANAGE_NAMES"
msgid "Manage Names..."
msgstr "Rianaich na h-ainmean..."
-#: sc/inc/globstr.hrc:419
+#: sc/inc/globstr.hrc:420
msgctxt "STR_HEADER_NAME"
msgid "Name"
msgstr "Ainm"
-#: sc/inc/globstr.hrc:420
+#: sc/inc/globstr.hrc:421
msgctxt "STR_HEADER_RANGE_OR_EXPR"
msgid "Range or formula expression"
msgstr "Rainse air neo eas-preisean foirmle"
-#: sc/inc/globstr.hrc:421
+#: sc/inc/globstr.hrc:422
msgctxt "STR_HEADER_SCOPE"
msgid "Scope"
msgstr "Sgòp"
-#: sc/inc/globstr.hrc:422
+#: sc/inc/globstr.hrc:423
msgctxt "STR_MULTI_SELECT"
msgid "(multiple)"
msgstr "(iomadach)"
-#: sc/inc/globstr.hrc:423
+#: sc/inc/globstr.hrc:424
msgctxt "STR_GLOBAL_SCOPE"
msgid "Document (Global)"
msgstr "Sgrìobhainn (air fheadh)"
-#: sc/inc/globstr.hrc:424
+#: sc/inc/globstr.hrc:425
msgctxt "STR_ERR_NAME_EXISTS"
msgid "Invalid name. Already in use for the selected scope."
msgstr "Ainm mì-dhligheach. Tha e 'ga chleachdadh airson an sgòp a thagh thu mu thràth."
-#: sc/inc/globstr.hrc:425
+#: sc/inc/globstr.hrc:426
msgctxt "STR_ERR_NAME_INVALID"
msgid "Invalid name. Only use letters, numbers and underscore."
msgstr "Ainm mì-dhligheach. Na cleachd ach litrichean, àireamhan is fo-loidhnichean."
-#: sc/inc/globstr.hrc:426
+#: sc/inc/globstr.hrc:427
msgctxt "STR_UNSAVED_EXT_REF"
msgid ""
"This Document contains external references to unsaved documents.\n"
@@ -2096,217 +2101,217 @@ msgstr ""
"\n"
"A bheil thu airson leantainn air adhart?"
-#: sc/inc/globstr.hrc:427
+#: sc/inc/globstr.hrc:428
msgctxt "STR_CLOSE_WITH_UNSAVED_REFS"
msgid "This Document is referenced by another document and not yet saved. Closing it without saving will result in data loss."
msgstr "Tha reifreansan san sgrìobhainn eile dhan sgrìobhainn seo agus cha deach a shàbhaladh. Ma dhùineas tu e gun a shàbhaladh, caillidh tu dàta."
-#: sc/inc/globstr.hrc:428
+#: sc/inc/globstr.hrc:429
msgctxt "STR_HEADER_RANGE"
msgid "Range"
msgstr "Rainse"
-#: sc/inc/globstr.hrc:429
+#: sc/inc/globstr.hrc:430
msgctxt "STR_HEADER_COND"
msgid "First Condition"
msgstr "A' chiad chumha"
-#: sc/inc/globstr.hrc:430
+#: sc/inc/globstr.hrc:431
msgctxt "STR_COND_CONDITION"
msgid "Cell value is"
msgstr "Tha luach na cealla"
-#: sc/inc/globstr.hrc:431
+#: sc/inc/globstr.hrc:432
msgctxt "STR_COND_COLORSCALE"
msgid "ColorScale"
msgstr "Sgèile nan dathan"
-#: sc/inc/globstr.hrc:432
+#: sc/inc/globstr.hrc:433
msgctxt "STR_COND_DATABAR"
msgid "DataBar"
msgstr "Bàr an dàta"
-#: sc/inc/globstr.hrc:433
+#: sc/inc/globstr.hrc:434
msgctxt "STR_COND_ICONSET"
msgid "IconSet"
msgstr "IconSet"
-#: sc/inc/globstr.hrc:434
+#: sc/inc/globstr.hrc:435
msgctxt "STR_COND_BETWEEN"
msgid "between"
msgstr "eadar"
-#: sc/inc/globstr.hrc:435
+#: sc/inc/globstr.hrc:436
msgctxt "STR_COND_NOTBETWEEN"
msgid "not between"
msgstr "taobh a-muigh"
-#: sc/inc/globstr.hrc:436
+#: sc/inc/globstr.hrc:437
msgctxt "STR_COND_UNIQUE"
msgid "unique"
msgstr "àraidh"
-#: sc/inc/globstr.hrc:437
+#: sc/inc/globstr.hrc:438
msgctxt "STR_COND_DUPLICATE"
msgid "duplicate"
msgstr "dùblachadh"
-#: sc/inc/globstr.hrc:438
+#: sc/inc/globstr.hrc:439
msgctxt "STR_COND_FORMULA"
msgid "Formula is"
msgstr "Tha am foirmle"
-#: sc/inc/globstr.hrc:439
+#: sc/inc/globstr.hrc:440
msgctxt "STR_COND_TOP10"
msgid "Top Elements"
msgstr "eileamaidean as àirde"
-#: sc/inc/globstr.hrc:440
+#: sc/inc/globstr.hrc:441
msgctxt "STR_COND_BOTTOM10"
msgid "Bottom Elements"
msgstr "eileamaidean as ìsle"
-#: sc/inc/globstr.hrc:441
+#: sc/inc/globstr.hrc:442
msgctxt "STR_COND_TOP_PERCENT"
msgid "Top Percent"
msgstr "ceudad as àirde"
-#: sc/inc/globstr.hrc:442
+#: sc/inc/globstr.hrc:443
msgctxt "STR_COND_DATE"
msgid "Date is"
msgstr "Tha an ceann-là"
-#: sc/inc/globstr.hrc:443
+#: sc/inc/globstr.hrc:444
msgctxt "STR_COND_BOTTOM_PERCENT"
msgid "Bottom Percent"
msgstr "ceudad as ìsle"
-#: sc/inc/globstr.hrc:444
+#: sc/inc/globstr.hrc:445
msgctxt "STR_COND_ABOVE_AVERAGE"
msgid "Above Average"
msgstr "os cionn a' chuibheis"
-#: sc/inc/globstr.hrc:445
+#: sc/inc/globstr.hrc:446
msgctxt "STR_COND_BELOW_AVERAGE"
msgid "Below Average"
msgstr "Fon chuibheas"
-#: sc/inc/globstr.hrc:446
+#: sc/inc/globstr.hrc:447
msgctxt "STR_COND_ABOVE_EQUAL_AVERAGE"
msgid "Above or equal Average"
msgstr "Os cionn a' chuibheis no co-ionnann ris"
-#: sc/inc/globstr.hrc:447
+#: sc/inc/globstr.hrc:448
msgctxt "STR_COND_BELOW_EQUAL_AVERAGE"
msgid "Below or equal Average"
msgstr "Fon chuibheas no co-ionnann ris"
-#: sc/inc/globstr.hrc:448
+#: sc/inc/globstr.hrc:449
msgctxt "STR_COND_ERROR"
msgid "an Error code"
msgstr "còd mearachd"
-#: sc/inc/globstr.hrc:449
+#: sc/inc/globstr.hrc:450
msgctxt "STR_COND_NOERROR"
msgid "not an Error code"
msgstr "nach eil 'na chòd mearachd"
-#: sc/inc/globstr.hrc:450
+#: sc/inc/globstr.hrc:451
msgctxt "STR_COND_BEGINS_WITH"
msgid "Begins with"
msgstr "a tha a' tòiseachadh le"
-#: sc/inc/globstr.hrc:451
+#: sc/inc/globstr.hrc:452
msgctxt "STR_COND_ENDS_WITH"
msgid "Ends with"
msgstr "a tha a' crìochnachadh le"
-#: sc/inc/globstr.hrc:452
+#: sc/inc/globstr.hrc:453
msgctxt "STR_COND_CONTAINS"
msgid "Contains"
msgstr "a tha na leanas 'na bhroinn"
-#: sc/inc/globstr.hrc:453
+#: sc/inc/globstr.hrc:454
msgctxt "STR_COND_NOT_CONTAINS"
msgid "Not Contains"
msgstr "nach eil na leanas 'na bhroinn"
-#: sc/inc/globstr.hrc:454
+#: sc/inc/globstr.hrc:455
msgctxt "STR_COND_TODAY"
msgid "today"
msgstr "an-diugh"
-#: sc/inc/globstr.hrc:455
+#: sc/inc/globstr.hrc:456
msgctxt "STR_COND_YESTERDAY"
msgid "yesterday"
msgstr "an-dè"
-#: sc/inc/globstr.hrc:456
+#: sc/inc/globstr.hrc:457
msgctxt "STR_COND_TOMORROW"
msgid "tomorrow"
msgstr "a-màireach"
-#: sc/inc/globstr.hrc:457
+#: sc/inc/globstr.hrc:458
msgctxt "STR_COND_LAST7DAYS"
msgid "in the last 7 days"
msgstr "sna 7 làithean seo chaidh"
-#: sc/inc/globstr.hrc:458
+#: sc/inc/globstr.hrc:459
msgctxt "STR_COND_THISWEEK"
msgid "this week"
msgstr "an t-seachdain-sa"
-#: sc/inc/globstr.hrc:459
+#: sc/inc/globstr.hrc:460
msgctxt "STR_COND_LASTWEEK"
msgid "last week"
msgstr "an t-seachdain seo chaidh"
-#: sc/inc/globstr.hrc:460
+#: sc/inc/globstr.hrc:461
msgctxt "STR_COND_NEXTWEEK"
msgid "next week"
msgstr "an ath-sheachdain"
-#: sc/inc/globstr.hrc:461
+#: sc/inc/globstr.hrc:462
msgctxt "STR_COND_THISMONTH"
msgid "this month"
msgstr "am mìos seo"
-#: sc/inc/globstr.hrc:462
+#: sc/inc/globstr.hrc:463
msgctxt "STR_COND_LASTMONTH"
msgid "last month"
msgstr "am mìos seo chaidh"
-#: sc/inc/globstr.hrc:463
+#: sc/inc/globstr.hrc:464
msgctxt "STR_COND_NEXTMONTH"
msgid "next month"
msgstr "an ath-mhìos"
-#: sc/inc/globstr.hrc:464
+#: sc/inc/globstr.hrc:465
msgctxt "STR_COND_THISYEAR"
msgid "this year"
msgstr "am bliadhna"
-#: sc/inc/globstr.hrc:465
+#: sc/inc/globstr.hrc:466
msgctxt "STR_COND_LASTYEAR"
msgid "last year"
msgstr "an-uiridh"
-#: sc/inc/globstr.hrc:466
+#: sc/inc/globstr.hrc:467
msgctxt "STR_COND_NEXTYEAR"
msgid "next year"
msgstr "an ath-bhliadhna"
-#: sc/inc/globstr.hrc:467
+#: sc/inc/globstr.hrc:468
msgctxt "STR_COND_AND"
msgid "and"
msgstr "agus"
-#: sc/inc/globstr.hrc:468
+#: sc/inc/globstr.hrc:469
msgctxt "STR_ERR_CONDFORMAT_PROTECTED"
msgid "Conditional Formats can not be created, deleted or changed in protected sheets."
msgstr "Cha ghabh fòrmatan cumhach a chruthachadh, sguabadh às no atharrachadh ann an siotaichean dìonta."
-#: sc/inc/globstr.hrc:469
+#: sc/inc/globstr.hrc:470
msgctxt "STR_EDIT_EXISTING_COND_FORMATS"
msgid ""
"The selected cell already contains conditional formatting. You can either edit the existing conditional format or you define a new overlapping conditional format.\n"
@@ -2317,7 +2322,7 @@ msgstr ""
"\n"
" A bheil thu airson am fòrmatadh cumhach làithreach a dheasachadh?"
-#: sc/inc/globstr.hrc:470
+#: sc/inc/globstr.hrc:471
msgctxt "STR_QUERY_FORMULA_RECALC_ONLOAD_ODS"
msgid ""
"This document was last saved by an application other than %PRODUCTNAME. Some formula cells may produce different results when recalculated.\n"
@@ -2328,7 +2333,7 @@ msgstr ""
"\n"
"A bheil thu airson gach foirmle san sgrìobhainn seo ath-àireamhachadh an-dràsta?"
-#: sc/inc/globstr.hrc:471
+#: sc/inc/globstr.hrc:472
msgctxt "STR_QUERY_FORMULA_RECALC_ONLOAD_XLS"
msgid ""
"This document was last saved by Excel. Some formula cells may produce different results when recalculated.\n"
@@ -2339,77 +2344,77 @@ msgstr ""
"\n"
"A bheil thu airson gach foirmle san sgrìobhainn seo ath-àireamhachadh an-dràsta?"
-#: sc/inc/globstr.hrc:472
+#: sc/inc/globstr.hrc:473
msgctxt "STR_NO_INSERT_DELETE_OVER_PIVOT_TABLE"
msgid "You cannot insert or delete cells when the affected range intersects with pivot table."
msgstr "Chan urrainn dhut ceallan a chur a-steach no a sguabadh às ma tha an raon air a bheil buaidh a' dol a-steach air a' chlàr Pivot."
-#: sc/inc/globstr.hrc:473
+#: sc/inc/globstr.hrc:474
msgctxt "STR_DPFIELD_GROUP_BY_SECONDS"
msgid "Seconds"
msgstr "Diogan"
-#: sc/inc/globstr.hrc:474
+#: sc/inc/globstr.hrc:475
msgctxt "STR_DPFIELD_GROUP_BY_MINUTES"
msgid "Minutes"
msgstr "mionaid(ean)"
-#: sc/inc/globstr.hrc:475
+#: sc/inc/globstr.hrc:476
msgctxt "STR_DPFIELD_GROUP_BY_HOURS"
msgid "Hours"
msgstr "Uairean"
-#: sc/inc/globstr.hrc:476
+#: sc/inc/globstr.hrc:477
msgctxt "STR_DPFIELD_GROUP_BY_DAYS"
msgid "Days"
msgstr "Làithean"
-#: sc/inc/globstr.hrc:477
+#: sc/inc/globstr.hrc:478
msgctxt "STR_DPFIELD_GROUP_BY_MONTHS"
msgid "Months"
msgstr "Mìosan"
-#: sc/inc/globstr.hrc:478
+#: sc/inc/globstr.hrc:479
msgctxt "STR_DPFIELD_GROUP_BY_QUARTERS"
msgid "Quarters"
msgstr "Cairtealan"
-#: sc/inc/globstr.hrc:479
+#: sc/inc/globstr.hrc:480
msgctxt "STR_DPFIELD_GROUP_BY_YEARS"
msgid "Years"
msgstr "Bliadhna"
-#: sc/inc/globstr.hrc:480
+#: sc/inc/globstr.hrc:481
msgctxt "STR_INVALIDVAL"
msgid "Invalid target value."
msgstr "Luach targaide mì-dhligheach."
-#: sc/inc/globstr.hrc:481
+#: sc/inc/globstr.hrc:482
msgctxt "STR_INVALIDVAR"
msgid "Undefined name for variable cell."
msgstr "Ainm gun socrachadh aig cealla caochlaideach."
-#: sc/inc/globstr.hrc:482
+#: sc/inc/globstr.hrc:483
msgctxt "STR_INVALIDFORM"
msgid "Undefined name as formula cell."
msgstr "Ainm gun socrachadh mar cealla foirmle."
-#: sc/inc/globstr.hrc:483
+#: sc/inc/globstr.hrc:484
msgctxt "STR_NOFORMULA"
msgid "Formula cell must contain a formula."
msgstr "Feumaidh foirmle a bhith ann an cealla na foirmle."
-#: sc/inc/globstr.hrc:484
+#: sc/inc/globstr.hrc:485
msgctxt "STR_INVALIDINPUT"
msgid "Invalid input."
msgstr "Chuir thu a-steach rud mì-dhligheach."
-#: sc/inc/globstr.hrc:485
+#: sc/inc/globstr.hrc:486
msgctxt "STR_INVALIDCONDITION"
msgid "Invalid condition."
msgstr "Cumha mhì-dhligheach."
-#: sc/inc/globstr.hrc:486
+#: sc/inc/globstr.hrc:487
msgctxt "STR_QUERYREMOVE"
msgid ""
"Should the entry\n"
@@ -2420,133 +2425,133 @@ msgstr ""
"#\n"
"a sguabadh às?"
-#: sc/inc/globstr.hrc:487
+#: sc/inc/globstr.hrc:488
msgctxt "STR_COPYLIST"
msgid "Copy List"
msgstr "Dèan lethbhreac dhen liosta"
-#: sc/inc/globstr.hrc:488
+#: sc/inc/globstr.hrc:489
msgctxt "STR_COPYFROM"
msgid "List from"
msgstr "Liosta o"
-#: sc/inc/globstr.hrc:489
+#: sc/inc/globstr.hrc:490
msgctxt "STR_COPYERR"
msgid "Cells without text have been ignored."
msgstr "Chaidh ceallan gun teacsa a leigeil seachad."
-#: sc/inc/globstr.hrc:490
+#: sc/inc/globstr.hrc:491
#, c-format
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%s-click to follow hyperlink:"
msgstr "Dèan briogadh %s a leantainn a’ cheangail"
-#: sc/inc/globstr.hrc:491
+#: sc/inc/globstr.hrc:492
msgctxt "STR_CLICKHYPERLINK"
msgid "click to open hyperlink:"
msgstr "Briogadh gus ceangal-lìn fhosgladh:"
-#: sc/inc/globstr.hrc:492
+#: sc/inc/globstr.hrc:493
msgctxt "STR_PRINT_PREVIEW_NODATA"
msgid "No Data"
msgstr "Gun dàta"
-#: sc/inc/globstr.hrc:493
+#: sc/inc/globstr.hrc:494
msgctxt "STR_PRINT_PREVIEW_EMPTY_RANGE"
msgid "Print Range Empty"
msgstr "Tha rainse a' chlò-bhualaidh falamh"
-#: sc/inc/globstr.hrc:494
+#: sc/inc/globstr.hrc:495
msgctxt "STR_UNDO_CONDFORMAT"
msgid "Conditional Format"
msgstr "Fòrmatadh cumhach"
-#: sc/inc/globstr.hrc:495
+#: sc/inc/globstr.hrc:496
msgctxt "STR_UNDO_CONDFORMAT_LIST"
msgid "Conditional Formats"
msgstr "Fòrmatan cumhach"
-#: sc/inc/globstr.hrc:496
+#: sc/inc/globstr.hrc:497
msgctxt "STR_UNDO_FORMULA_TO_VALUE"
msgid "Convert Formula To Value"
msgstr "Dèan luach dhen fhoirmle"
-#: sc/inc/globstr.hrc:497
+#: sc/inc/globstr.hrc:498
msgctxt "STR_UNQUOTED_STRING"
msgid "Strings without quotes are interpreted as column/row labels."
msgstr "Thèid sreangan as aonais comharran-labhairt mun cuairt orra a làimhseachadh mar leubailean cholbhan/ràghan."
-#: sc/inc/globstr.hrc:498
+#: sc/inc/globstr.hrc:499
msgctxt "STR_ENTER_VALUE"
msgid "Enter a value!"
msgstr "Cuir a-steach luach!"
-#: sc/inc/globstr.hrc:499
+#: sc/inc/globstr.hrc:500
msgctxt "STR_TABLE_COUNT"
msgid "Sheet %1 of %2"
msgstr "Siota %1 de %2"
-#: sc/inc/globstr.hrc:500
+#: sc/inc/globstr.hrc:501
msgctxt "STR_FUNCTIONS_FOUND"
msgid "%1 and %2 more"
msgstr "%1 agus %2 a bharrachd"
-#: sc/inc/globstr.hrc:501
+#: sc/inc/globstr.hrc:502
msgctxt "STR_GENERAL"
msgid "General"
msgstr "Coitcheann"
-#: sc/inc/globstr.hrc:502
+#: sc/inc/globstr.hrc:503
msgctxt "STR_NUMBER"
msgid "Number"
msgstr "Àireamh"
-#: sc/inc/globstr.hrc:503
+#: sc/inc/globstr.hrc:504
msgctxt "STR_PERCENT"
msgid "Percent"
msgstr "Ceudad"
-#: sc/inc/globstr.hrc:504
+#: sc/inc/globstr.hrc:505
msgctxt "STR_CURRENCY"
msgid "Currency"
msgstr "Airgeadra"
-#: sc/inc/globstr.hrc:505
+#: sc/inc/globstr.hrc:506
msgctxt "STR_DATE"
msgid "Date"
msgstr "Ceann-là"
-#: sc/inc/globstr.hrc:506
+#: sc/inc/globstr.hrc:507
msgctxt "STR_TIME"
msgid "Time"
msgstr "Àm"
-#: sc/inc/globstr.hrc:507
+#: sc/inc/globstr.hrc:508
msgctxt "STR_SCIENTIFIC"
msgid "Scientific"
msgstr "Saidheansail"
-#: sc/inc/globstr.hrc:508
+#: sc/inc/globstr.hrc:509
msgctxt "STR_FRACTION"
msgid "Fraction"
msgstr "Bloigh"
-#: sc/inc/globstr.hrc:509
+#: sc/inc/globstr.hrc:510
msgctxt "STR_BOOLEAN_VALUE"
msgid "Boolean Value"
msgstr "Luach Boolean"
-#: sc/inc/globstr.hrc:510
+#: sc/inc/globstr.hrc:511
msgctxt "STR_TEXT"
msgid "Text"
msgstr "Teacsa"
-#: sc/inc/globstr.hrc:511
+#: sc/inc/globstr.hrc:512
msgctxt "STR_QUERY_PIVOTTABLE_DELTAB"
msgid "The selected sheet(s) contain source data of related pivot tables that will be lost. Are you sure you want to delete the selected sheet(s)?"
msgstr "Tha tùs-dàta de chlàran Pivot co-cheangailte sna siotaichean a thagh thu agus thèid iad air chall. A bheil thu cinnteach gu bheil thu airson na siotaichean a thagh thu a sguabadh às?"
-#: sc/inc/globstr.hrc:512
+#: sc/inc/globstr.hrc:513
msgctxt "STR_ERR_NAME_INVALID_CELL_REF"
msgid "Invalid name. Reference to a cell, or a range of cells not allowed."
msgstr "Ainm mì-dhligheach. Chan eil reifreans air cealla no rainse de cheallan ceadaichte."
@@ -10488,8 +10493,8 @@ msgstr "Modh"
#: sc/inc/scfuncs.hrc:3010
msgctxt "SC_OPCODE_T_TEST"
-msgid "Mode specifies the number of distribution tails to return. 1= one-tailed, 2 = two-tailed distribution"
-msgstr "Sònraichidh am modh àireamh nan earballan sgaoilidh a thèid a thilleadh. 1= sgaoileadh aon-earballach, 2= sgaoileadh dà-earballach"
+msgid "Mode specifies the number of distribution tails to return. 1 = one-tailed, 2 = two-tailed distribution"
+msgstr ""
#: sc/inc/scfuncs.hrc:3011
msgctxt "SC_OPCODE_T_TEST"
@@ -10533,8 +10538,8 @@ msgstr "Modh"
#: sc/inc/scfuncs.hrc:3024
msgctxt "SC_OPCODE_T_TEST_MS"
-msgid "Mode specifies the number of distribution tails to return. 1= one-tailed, 2 = two-tailed distribution"
-msgstr "Sònraichidh am modh àireamh nan earballan sgaoilidh a thèid a thilleadh. 1= sgaoileadh aon-earballach, 2= sgaoileadh dà-earballach"
+msgid "Mode specifies the number of distribution tails to return. 1 = one-tailed, 2 = two-tailed distribution"
+msgstr ""
#: sc/inc/scfuncs.hrc:3025
msgctxt "SC_OPCODE_T_TEST_MS"
@@ -18020,22 +18025,22 @@ msgctxt "mergecellsdialog|MergeCellsDialog"
msgid "Merge Cells"
msgstr "Co-aonaich na ceallan"
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:81
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:84
msgctxt "mergecellsdialog|label"
msgid "Some cells are not empty."
msgstr "Tha cuid a cheallan ann nach eil bàn."
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:96
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:99
msgctxt "mergecellsdialog|move-cells-radio"
msgid "Move the contents of the hidden cells into the first cell"
msgstr "Gluais susbaint nan ceallan falaichte dhan chiad chealla"
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:112
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:115
msgctxt "mergecellsdialog|empty-cells-radio"
msgid "Empty the contents of the hidden cells"
msgstr "Sguab às susbaint nan ceallan falaichte"
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:128
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:131
msgctxt "mergecellsdialog|keep-content-radio"
msgid "Keep the contents of the hidden cells"
msgstr "Glèidh susbaint nan ceallan falaichte"
diff --git a/source/gd/sd/messages.po b/source/gd/sd/messages.po
index 1138e23198f..8e15212dcc2 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2018-03-11 16:37+0000\n"
"Last-Translator: Michael Bauer <fios@akerbeltz.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -16,167 +16,167 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1520786245.000000\n"
-#: sd/inc/DocumentRenderer.hrc:29
+#: sd/inc/DocumentRenderer.hrc:27
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Slides"
msgstr "Sleamhnagan"
-#: sd/inc/DocumentRenderer.hrc:30
+#: sd/inc/DocumentRenderer.hrc:28
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Handouts"
msgstr "Duilleagan-làimhe"
-#: sd/inc/DocumentRenderer.hrc:31
+#: sd/inc/DocumentRenderer.hrc:29
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Notes"
msgstr "Nòtaichean"
-#: sd/inc/DocumentRenderer.hrc:32
+#: sd/inc/DocumentRenderer.hrc:30
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Outline"
msgstr "Oir-loidhne"
-#: sd/inc/DocumentRenderer.hrc:37
+#: sd/inc/DocumentRenderer.hrc:35
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "According to layout"
msgstr "A-rèir na co-dhealbhachd"
-#: sd/inc/DocumentRenderer.hrc:38
+#: sd/inc/DocumentRenderer.hrc:36
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "1"
msgstr "1"
-#: sd/inc/DocumentRenderer.hrc:39
+#: sd/inc/DocumentRenderer.hrc:37
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "2"
msgstr "2"
-#: sd/inc/DocumentRenderer.hrc:40
+#: sd/inc/DocumentRenderer.hrc:38
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "3"
msgstr "3"
-#: sd/inc/DocumentRenderer.hrc:41
+#: sd/inc/DocumentRenderer.hrc:39
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "4"
msgstr "4"
-#: sd/inc/DocumentRenderer.hrc:42
+#: sd/inc/DocumentRenderer.hrc:40
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "6"
msgstr "6"
-#: sd/inc/DocumentRenderer.hrc:43
+#: sd/inc/DocumentRenderer.hrc:41
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "9"
msgstr "9"
-#: sd/inc/DocumentRenderer.hrc:48
+#: sd/inc/DocumentRenderer.hrc:46
msgctxt "STR_IMPRESS_PRINT_UI_ORDER_CHOICES"
msgid "Left to right, then down"
msgstr "On taobh chlì gun taobh deas, sìos an uairsin"
-#: sd/inc/DocumentRenderer.hrc:49
+#: sd/inc/DocumentRenderer.hrc:47
msgctxt "STR_IMPRESS_PRINT_UI_ORDER_CHOICES"
msgid "Top to bottom, then right"
msgstr "On bharr gun bhonn, deas an uairsin"
-#: sd/inc/DocumentRenderer.hrc:54
+#: sd/inc/DocumentRenderer.hrc:52
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Original colors"
msgstr "Na dathan tùsail"
-#: sd/inc/DocumentRenderer.hrc:55
+#: sd/inc/DocumentRenderer.hrc:53
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Grayscale"
msgstr "Liath-sgèile"
-#: sd/inc/DocumentRenderer.hrc:56
+#: sd/inc/DocumentRenderer.hrc:54
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Black & white"
msgstr "Dubh ⁊ geal"
-#: sd/inc/DocumentRenderer.hrc:61
+#: sd/inc/DocumentRenderer.hrc:59
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Original size"
msgstr "Am meud tùsail"
-#: sd/inc/DocumentRenderer.hrc:62
+#: sd/inc/DocumentRenderer.hrc:60
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Fit to printable page"
msgstr "Co-fhreagair ri raon so-chlò-bhualaidh na duilleige"
-#: sd/inc/DocumentRenderer.hrc:63
+#: sd/inc/DocumentRenderer.hrc:61
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Distribute on multiple sheets of paper"
msgstr "Sgaoil eadar iomadh siota de phàipear"
-#: sd/inc/DocumentRenderer.hrc:64
+#: sd/inc/DocumentRenderer.hrc:62
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Tile sheet of paper with repeated slides"
msgstr "Leacaich siota de phàipear le sleamhnagan a nochdas iomadh turas"
-#: sd/inc/DocumentRenderer.hrc:69
+#: sd/inc/DocumentRenderer.hrc:67
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Original size"
msgstr "Am meud tùsail"
-#: sd/inc/DocumentRenderer.hrc:70
+#: sd/inc/DocumentRenderer.hrc:68
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Fit to printable page"
msgstr "Co-fhreagair ri raon so-chlò-bhualaidh na duilleige"
-#: sd/inc/DocumentRenderer.hrc:71
+#: sd/inc/DocumentRenderer.hrc:69
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Distribute on multiple sheets of paper"
msgstr "Sgaoil eadar iomadh siota de phàipear"
-#: sd/inc/DocumentRenderer.hrc:72
+#: sd/inc/DocumentRenderer.hrc:70
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Tile sheet of paper with repeated pages"
msgstr "Leacaich siota de phàipear le duilleagan a nochdas iomadh turas"
-#: sd/inc/DocumentRenderer.hrc:77
+#: sd/inc/DocumentRenderer.hrc:75
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "All pages"
msgstr "Gach duilleag"
-#: sd/inc/DocumentRenderer.hrc:78
+#: sd/inc/DocumentRenderer.hrc:76
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "Front sides / right pages"
msgstr "Duilleagan aghaidh / duilleagan deasa"
-#: sd/inc/DocumentRenderer.hrc:79
+#: sd/inc/DocumentRenderer.hrc:77
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "Back sides / left pages"
msgstr "Cùilean / duilleagan clì"
-#: sd/inc/DocumentRenderer.hrc:84
+#: sd/inc/DocumentRenderer.hrc:82
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~All slides"
msgstr "A h-uile ~sleamhnag"
-#: sd/inc/DocumentRenderer.hrc:85
+#: sd/inc/DocumentRenderer.hrc:83
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~Slides"
msgstr "~Sleamhnagan"
-#: sd/inc/DocumentRenderer.hrc:86
+#: sd/inc/DocumentRenderer.hrc:84
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Se~lection"
msgstr "An taghad~h"
-#: sd/inc/DocumentRenderer.hrc:91
+#: sd/inc/DocumentRenderer.hrc:89
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~All pages"
msgstr "Gach ~duilleag"
-#: sd/inc/DocumentRenderer.hrc:92
+#: sd/inc/DocumentRenderer.hrc:90
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Pa~ges"
msgstr "Duillea~gan"
-#: sd/inc/DocumentRenderer.hrc:93
+#: sd/inc/DocumentRenderer.hrc:91
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Se~lection"
msgstr "An taghad~h"
diff --git a/source/gd/svx/messages.po b/source/gd/svx/messages.po
index ead05b80dda..afdc3bfe8f4 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: 2018-05-16 16:53+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2018-03-14 22:08+0000\n"
"Last-Translator: Michael Bauer <fios@akerbeltz.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5179,8 +5179,8 @@ msgstr "’S urrainn dhut pìosan iomchaidh dhen phròifil agad a chur san aithi
#: svx/uiconfig/ui/safemodedialog.ui:432
msgctxt "safemodedialog|btn_create_zip"
-msgid "Create Zip Archive from User Profile"
-msgstr "Cruthaich tasg-lann zip de phròifil a’ chleachdaiche"
+msgid "Archive User Profile"
+msgstr ""
#: svx/uiconfig/ui/safemodedialog.ui:445
msgctxt "safemodedialog|linkbutton_profile"
@@ -8769,9 +8769,9 @@ msgid "Red"
msgstr "Dearg"
#: include/svx/strings.hrc:565
-msgctxt "RID_SVXSTR_COLOR_VIOLET"
-msgid "Violet"
-msgstr "Dath na fail-chuaiche"
+msgctxt "RID_SVXSTR_COLOR_MAGENTA"
+msgid "Magenta"
+msgstr "Magenta"
#: include/svx/strings.hrc:566
msgctxt "RID_SVXSTR_COLOR_PURPLE"
@@ -8835,9 +8835,9 @@ msgid "Light Red"
msgstr "Soilleir-dhearg"
#: include/svx/strings.hrc:579
-msgctxt "RID_SVXSTR_COLOR_LIGHTVIOLET"
-msgid "Light Violet"
-msgstr "Dath soilleir na fail-chuaiche"
+msgctxt "RID_SVXSTR_COLOR_LIGHTMAGENTA"
+msgid "Light Magenta"
+msgstr ""
#: include/svx/strings.hrc:580
msgctxt "RID_SVXSTR_COLOR_LIGHTPURPLE"
@@ -8901,9 +8901,9 @@ msgid "Dark Red"
msgstr "Dorch-dhearg"
#: include/svx/strings.hrc:593
-msgctxt "RID_SVXSTR_COLOR_DARKVIOLET1"
-msgid "Dark Violet"
-msgstr "Dath dorcha na fail-chuaiche"
+msgctxt "RID_SVXSTR_COLOR_DARKMAGENTA"
+msgid "Dark Magenta"
+msgstr ""
#: include/svx/strings.hrc:594
msgctxt "RID_SVXSTR_COLOR_DARKPURPLE"
@@ -8937,55 +8937,55 @@ msgstr "Dath dorcha liomaideige"
#. Elements of the Tonal color palette
#: include/svx/strings.hrc:601
+msgctxt "RID_SVXSTR_COLOR_VIOLET"
+msgid "Violet"
+msgstr "Dath na fail-chuaiche"
+
+#: include/svx/strings.hrc:602
msgctxt "RID_SVXSTR_COLOR_VIOLET_OUG"
msgid "Violet (Out of Gamut)"
msgstr "Purpaidh (taobh a-muigh a’ ghamut)"
-#: include/svx/strings.hrc:602
+#: include/svx/strings.hrc:603
msgctxt "RID_SVXSTR_COLOR_BLUE_OUG"
msgid "Blue (Out of Gamut)"
msgstr "Gorm (taobh a-muigh a’ ghamut)"
-#: include/svx/strings.hrc:603
+#: include/svx/strings.hrc:604
msgctxt "RID_SVXSTR_COLOR_AZURE_OUG"
msgid "Azure (Out of Gamut)"
msgstr "Speur-ghorm (taobh a-muigh a’ ghamut)"
-#: include/svx/strings.hrc:604
+#: include/svx/strings.hrc:605
msgctxt "RID_SVXSTR_COLOR_SPRINGGREEN_OUG"
msgid "Spring Green (Out of Gamut)"
msgstr "Uaine an earraich (taobh a-muigh a’ ghamut)"
-#: include/svx/strings.hrc:605
+#: include/svx/strings.hrc:606
msgctxt "RID_SVXSTR_COLOR_GREEN_OUG"
msgid "Green (Out of Gamut)"
msgstr "Uaine (taobh a-muigh a’ ghamut)"
-#: include/svx/strings.hrc:606
+#: include/svx/strings.hrc:607
msgctxt "RID_SVXSTR_COLOR_CHARTREUSEGREEN_OUG"
msgid "Chartreuse Green (Out of Gamut)"
msgstr "Uaine chartreuse (taobh a-muigh a’ ghamut)"
-#: include/svx/strings.hrc:607
+#: include/svx/strings.hrc:608
msgctxt "RID_SVXSTR_COLOR_ORANGE_OUG"
msgid "Orange (Out of Gamut)"
msgstr "Orains (taobh a-muigh a’ ghamut)"
-#: include/svx/strings.hrc:608
+#: include/svx/strings.hrc:609
msgctxt "RID_SVXSTR_COLOR_RED_OUG"
msgid "Red (Out of Gamut)"
msgstr "Dearg (taobh a-muigh a’ ghamut)"
-#: include/svx/strings.hrc:609
+#: include/svx/strings.hrc:610
msgctxt "RID_SVXSTR_COLOR_ROSE_OUG"
msgid "Rose (Out of Gamut)"
msgstr "Dath an ròis (taobh a-muigh a’ ghamut)"
-#: include/svx/strings.hrc:610
-msgctxt "RID_SVXSTR_COLOR_MAGENTA"
-msgid "Magenta"
-msgstr "Magenta"
-
#: include/svx/strings.hrc:611
msgctxt "RID_SVXSTR_COLOR_AZURE"
msgid "Azure"
@@ -12091,13 +12091,13 @@ msgstr "Peilearan de shaighdean deasa"
#: include/svx/strings.hrc:1273
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_6"
-msgid "Check mark bullets"
-msgstr "Peilearan de croisean"
+msgid "Cross mark bullets"
+msgstr ""
#: include/svx/strings.hrc:1274
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_7"
-msgid "Tick mark bullets"
-msgstr "Peilearan de chromagan"
+msgid "Check mark bullets"
+msgstr ""
#: include/svx/strings.hrc:1275
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_0"
diff --git a/source/gd/sw/messages.po b/source/gd/sw/messages.po
index f085f8a4079..5953e95678b 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: 2018-05-22 13:17+0200\n"
+"POT-Creation-Date: 2018-06-12 14:41+0200\n"
"PO-Revision-Date: 2018-03-14 22:10+0000\n"
"Last-Translator: Michael Bauer <fios@akerbeltz.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1180,13 +1180,13 @@ msgstr "Luaidh"
#: sw/inc/strings.hrc:172
msgctxt "STR_POOLCOLL_TOX_ILLUSH"
-msgid "Illustration Index Heading"
-msgstr "Ceann-sgrìobhadh clàr-amais nan dealbhan"
+msgid "Figure Index Heading"
+msgstr ""
#: sw/inc/strings.hrc:173
msgctxt "STR_POOLCOLL_TOX_ILLUS1"
-msgid "Illustration Index 1"
-msgstr "Clàr-amais nan dealbhan 1"
+msgid "Figure Index 1"
+msgstr ""
#: sw/inc/strings.hrc:174
msgctxt "STR_POOLCOLL_TOX_OBJECTH"
@@ -3590,8 +3590,8 @@ msgstr "Clàr nan oibseactan"
#: sw/inc/strings.hrc:672
msgctxt "STR_TOX_ILL"
-msgid "Illustration Index"
-msgstr "Clàr-amais nan dealbhan"
+msgid "Table of Figures"
+msgstr ""
#: sw/inc/strings.hrc:673
#, c-format
@@ -9244,72 +9244,72 @@ msgctxt "footnotepage|label5"
msgid "Continuation Notice"
msgstr "Sanas a thaobh bun-nòtaichean leantainneach"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:49
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:55
msgctxt "footnotesendnotestabpage|ftnntnum"
msgid "_Restart numbering"
msgstr "Ath-thòisich ai_r an àireamhachadh"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:91
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:93
msgctxt "footnotesendnotestabpage|ftnoffset_label"
msgid "_Start at:"
msgstr "Tòi_sich aig:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:112
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:111
msgctxt "footnotesendnotestabpage|ftnntnumfmt"
msgid "Custom _format"
msgstr "_Fòrmat gnàthaichte"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:155
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:150
msgctxt "footnotesendnotestabpage|ftnsuffix_label"
msgid "Aft_er:"
msgstr "'Na _dhèidh:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:199
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:188
msgctxt "footnotesendnotestabpage|ftnprefix_label"
msgid "Be_fore:"
msgstr "_Roimhe:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:228
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:212
msgctxt "footnotesendnotestabpage|ftnntattextend"
msgid "Collec_t at end of text"
msgstr "Cruinnich iad aig deireadh an _teacsa"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:252
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:234
msgctxt "footnotesendnotestabpage|label1"
msgid "Footnotes"
msgstr "Bun-nòtaichean"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:289
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:271
msgctxt "footnotesendnotestabpage|endntattextend"
msgid "C_ollect at end of section"
msgstr "Cruinnich iad aig deireadh na _h-earrainn"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:315
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:295
msgctxt "footnotesendnotestabpage|endntnum"
msgid "_Restart numbering"
msgstr "Ath-thòisich ai_r an àireamhachadh"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:357
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:333
msgctxt "footnotesendnotestabpage|endoffset_label"
msgid "_Start at:"
msgstr "Tòi_sich aig:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:378
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:351
msgctxt "footnotesendnotestabpage|endntnumfmt"
msgid "_Custom format"
msgstr "Fòrmat gnàthai_chte"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:421
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:390
msgctxt "footnotesendnotestabpage|endsuffix_label"
msgid "Aft_er:"
msgstr "'N_a dhèidh:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:465
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:428
msgctxt "footnotesendnotestabpage|endprefix_label"
msgid "Be_fore:"
msgstr "_Roimhe:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:500
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:458
msgctxt "footnotesendnotestabpage|label2"
msgid "Endnotes"
msgstr "Nòtaichean-deiridh"
@@ -9339,27 +9339,27 @@ msgctxt "formatsectiondialog|notes"
msgid "Footnotes/Endnotes"
msgstr "Bun-nòtaichean/Nòtaichean-deiridh"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:63
+#: sw/uiconfig/swriter/ui/formattablepage.ui:77
msgctxt "formattablepage|nameft"
msgid "_Name"
msgstr "Ai_nm"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:79
+#: sw/uiconfig/swriter/ui/formattablepage.ui:91
msgctxt "formattablepage|widthft"
msgid "W_idth"
msgstr "Leu_d"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:110
+#: sw/uiconfig/swriter/ui/formattablepage.ui:120
msgctxt "formattablepage|relwidth"
msgid "Relati_ve"
msgstr "Dà_imheach"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:155
+#: sw/uiconfig/swriter/ui/formattablepage.ui:160
msgctxt "formattablepage|label45"
msgid "Properties"
msgstr "Roghainnean"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:194
+#: sw/uiconfig/swriter/ui/formattablepage.ui:195
msgctxt "formattablepage|leftft"
msgid "Lef_t"
msgstr "_Clì"
@@ -9369,62 +9369,62 @@ msgctxt "formattablepage|rightft"
msgid "Ri_ght"
msgstr "D_eas"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:228
+#: sw/uiconfig/swriter/ui/formattablepage.ui:226
msgctxt "formattablepage|aboveft"
msgid "_Above"
msgstr "_Os a chionn"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:245
+#: sw/uiconfig/swriter/ui/formattablepage.ui:241
msgctxt "formattablepage|belowft"
msgid "_Below"
msgstr "_Foidhe"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:320
+#: sw/uiconfig/swriter/ui/formattablepage.ui:311
msgctxt "formattablepage|label46"
msgid "Spacing"
msgstr "Beàrnadh"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:362
+#: sw/uiconfig/swriter/ui/formattablepage.ui:349
msgctxt "formattablepage|full"
msgid "A_utomatic"
msgstr "Fèin-o_brachail"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:380
+#: sw/uiconfig/swriter/ui/formattablepage.ui:365
msgctxt "formattablepage|left"
msgid "_Left"
msgstr "C_lì"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:398
+#: sw/uiconfig/swriter/ui/formattablepage.ui:381
msgctxt "formattablepage|fromleft"
msgid "_From left"
msgstr "On taob_h chlì"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:416
+#: sw/uiconfig/swriter/ui/formattablepage.ui:397
msgctxt "formattablepage|right"
msgid "R_ight"
msgstr "Dea_s"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:435
+#: sw/uiconfig/swriter/ui/formattablepage.ui:413
msgctxt "formattablepage|center"
msgid "_Center"
msgstr "Meadha_n"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:453
+#: sw/uiconfig/swriter/ui/formattablepage.ui:429
msgctxt "formattablepage|free"
msgid "_Manual"
msgstr "De lài_mh"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:478
+#: sw/uiconfig/swriter/ui/formattablepage.ui:452
msgctxt "formattablepage|label43"
msgid "Alignment"
msgstr "Co-thaobhadh"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:522
+#: sw/uiconfig/swriter/ui/formattablepage.ui:491
msgctxt "formattablepage|label53"
msgid "Text _direction"
msgstr "Com_hair an teacsa"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:553
+#: sw/uiconfig/swriter/ui/formattablepage.ui:519
msgctxt "formattablepage|label44"
msgid "Properties "
msgstr "Roghainnean "
@@ -9779,22 +9779,27 @@ msgctxt "headerfootermenu|insert_pagenumber"
msgid "Insert Page Number"
msgstr "Cuir a-steach àireamh na duilleige"
-#: sw/uiconfig/swriter/ui/indentpage.ui:52
+#: sw/uiconfig/swriter/ui/headerfootermenu.ui:42
+msgctxt "headerfootermenu|insert_pagecount"
+msgid "Insert Page Count"
+msgstr ""
+
+#: sw/uiconfig/swriter/ui/indentpage.ui:57
msgctxt "indentpage|label1"
msgid "_Before section"
msgstr "_Ron earrann"
-#: sw/uiconfig/swriter/ui/indentpage.ui:67
+#: sw/uiconfig/swriter/ui/indentpage.ui:71
msgctxt "indentpage|label3"
msgid "_After section"
msgstr "_An dèidh na h-earrainn"
-#: sw/uiconfig/swriter/ui/indentpage.ui:113
+#: sw/uiconfig/swriter/ui/indentpage.ui:115
msgctxt "indentpage|label2"
msgid "Indent"
msgstr "Eag"
-#: sw/uiconfig/swriter/ui/indentpage.ui:142
+#: sw/uiconfig/swriter/ui/indentpage.ui:155
msgctxt "indentpage|preview-atkobject"
msgid "Example"
msgstr "Ball-eisimpleir"
@@ -13285,8 +13290,8 @@ msgstr "Dìon am foirm"
#: sw/uiconfig/swriter/ui/optcompatpage.ui:68
msgctxt "optcompatpage|format"
-msgid "MS Word-compatible trailing blanks"
-msgstr "Àitichean bàna aig an deireadh a tha co-chòrdail le MS Word"
+msgid "Word-compatible trailing blanks"
+msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:69
msgctxt "optcompatpage|format"
@@ -13295,7 +13300,7 @@ msgstr "Gabh ri loidhnichean geala ann an cùlaibhean PDF airson co-chòrdalachd
#: sw/uiconfig/swriter/ui/optcompatpage.ui:70
msgctxt "optcompatpage|format"
-msgid "A database field (e.g., MailMerge) with empty value hides its paragraph"
+msgid "Hide paragraphs of database fields (e.g., mail merge) with an empty value"
msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:71
@@ -15981,122 +15986,122 @@ msgctxt "tableproperties|background"
msgid "Background"
msgstr "Cùlaibh"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:25
-msgctxt "tabletextflowpage|liststore1"
-msgid "Horizontal"
-msgstr "Còmhnard"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:29
-msgctxt "tabletextflowpage|liststore1"
-msgid "Vertical"
-msgstr "Inghearach"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:33
-msgctxt "tabletextflowpage|liststore1"
-msgid "Use superordinate object settings"
-msgstr "Cleachd roghainnean an oibseict os-òrdanaichte"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:47
-msgctxt "tabletextflowpage|liststore2"
-msgid "Top"
-msgstr "Barr"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:51
-msgctxt "tabletextflowpage|liststore2"
-msgid "Centered"
-msgstr "Meadhanaichte"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:55
-msgctxt "tabletextflowpage|liststore2"
-msgid "Bottom"
-msgstr "Bonn"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:97
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:53
msgctxt "tabletextflowpage|break"
msgid "_Break"
msgstr "_Briseadh"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:112
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:68
msgctxt "tabletextflowpage|page"
msgid "_Page"
msgstr "Duille_ag"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:132
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:87
msgctxt "tabletextflowpage|column"
msgid "Col_umn"
msgstr "Col_bhan"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:151
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:106
msgctxt "tabletextflowpage|before"
msgid "Be_fore"
msgstr "_Roimhe"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:171
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:125
msgctxt "tabletextflowpage|after"
msgid "_After"
msgstr "'Na _dhèidh"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:203
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:158
msgctxt "tabletextflowpage|pagestyle"
msgid "With Page St_yle"
msgstr "Le _stoidhle na duilleige"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:224
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:177
msgctxt "tabletextflowpage|pagenoft"
msgid "Page _number"
msgstr "Àireamh _na duilleige"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:257
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:213
msgctxt "tabletextflowpage|pagestylelb-atkobject"
msgid "With Page Style"
msgstr "Le stoidhle na duilleige"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:274
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:230
msgctxt "tabletextflowpage|split"
msgid "Allow _table to split across pages and columns"
msgstr "Leig leis a' chlàr sgol_tadh thairis air duilleagan is colbhan"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:289
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:245
msgctxt "tabletextflowpage|splitrow"
msgid "Allow row to break a_cross pages and columns"
msgstr "_Leig leis an ràgh briseadh thairis air duilleagan is colbhan"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:306
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:262
msgctxt "tabletextflowpage|keep"
msgid "_Keep with next paragraph"
msgstr "C_um leis an ath-pharagraf"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:328
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:284
msgctxt "tabletextflowpage|label40"
msgid "Text _orientation"
msgstr "C_omhair an teacsa"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:361
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:298
+msgctxt "tabletextflowpage|liststore1"
+msgid "Horizontal"
+msgstr "Còmhnard"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:299
+msgctxt "tabletextflowpage|liststore1"
+msgid "Vertical"
+msgstr "Inghearach"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:300
+msgctxt "tabletextflowpage|liststore1"
+msgid "Use superordinate object settings"
+msgstr "Cleachd roghainnean an oibseict os-òrdanaichte"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:321
msgctxt "tabletextflowpage|headline"
msgid "R_epeat heading"
msgstr "Ath-nochd an c_eann-sgrìobhadh"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:383
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:343
msgctxt "tabletextflowpage|label38"
msgid "The first "
msgstr "A' chiad "
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:396
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:356
msgctxt "tabletextflowpage|label39"
msgid "rows"
msgstr "ràghan"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:434
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:395
msgctxt "tabletextflowpage|label35"
msgid "Text Flow"
msgstr "Sruthadh an teacsa"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:467
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:428
msgctxt "tabletextflowpage|label41"
msgid "_Vertical alignment"
msgstr "Co-t_haobhadh inghearach"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:495
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:442
+msgctxt "tabletextflowpage|liststore2"
+msgid "Top"
+msgstr "Barr"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:443
+msgctxt "tabletextflowpage|liststore2"
+msgid "Centered"
+msgstr "Meadhanaichte"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:444
+msgctxt "tabletextflowpage|liststore2"
+msgid "Bottom"
+msgstr "Bonn"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:460
msgctxt "tabletextflowpage|label36"
msgid "Alignment"
msgstr "Co-thaobhadh"
@@ -16878,8 +16883,8 @@ msgstr "Clàr-amais aibidileach"
#: sw/uiconfig/swriter/ui/tocindexpage.ui:58
msgctxt "tocindexpage|liststore1"
-msgid "Illustration Index"
-msgstr "Clàr-amais nan dealbhan"
+msgid "Table of Figures"
+msgstr ""
#: sw/uiconfig/swriter/ui/tocindexpage.ui:62
msgctxt "tocindexpage|liststore1"
diff --git a/source/gd/writerperfect/messages.po b/source/gd/writerperfect/messages.po
index 06ec1a9fef1..6c153943c2b 100644
--- a/source/gd/writerperfect/messages.po
+++ b/source/gd/writerperfect/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-16 16:54+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2018-03-11 23:20+0000\n"
"Last-Translator: Michael Bauer <fios@akerbeltz.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -66,97 +66,97 @@ msgctxt "exportepub|generalft"
msgid "General"
msgstr "Coitcheann"
-#: writerperfect/uiconfig/ui/exportepub.ui:122
+#: writerperfect/uiconfig/ui/exportepub.ui:121
msgctxt "exportepub|versionft"
msgid "Version:"
msgstr "Tionndadh:"
-#: writerperfect/uiconfig/ui/exportepub.ui:139
+#: writerperfect/uiconfig/ui/exportepub.ui:138
msgctxt "exportepub|epub3"
msgid "EPUB 3.0"
msgstr "EPUB 3.0"
-#: writerperfect/uiconfig/ui/exportepub.ui:140
+#: writerperfect/uiconfig/ui/exportepub.ui:139
msgctxt "exportepub|epub2"
msgid "EPUB 2.0"
msgstr "EPUB 2.0"
-#: writerperfect/uiconfig/ui/exportepub.ui:175
+#: writerperfect/uiconfig/ui/exportepub.ui:174
msgctxt "exportepub|splitft"
msgid "Split method:"
msgstr "Dòigh sgoltaidh:"
-#: writerperfect/uiconfig/ui/exportepub.ui:192
+#: writerperfect/uiconfig/ui/exportepub.ui:191
msgctxt "exportepub|splitpage"
msgid "Page break"
msgstr "Briseadh-duilleige"
-#: writerperfect/uiconfig/ui/exportepub.ui:193
+#: writerperfect/uiconfig/ui/exportepub.ui:192
msgctxt "exportepub|splitheading"
msgid "Heading"
msgstr "Ceann-sgrìobhadh"
-#: writerperfect/uiconfig/ui/exportepub.ui:228
+#: writerperfect/uiconfig/ui/exportepub.ui:227
msgctxt "exportepub|layoutft"
msgid "Layout method:"
msgstr "Dòigh na co-dhealbhachd:"
-#: writerperfect/uiconfig/ui/exportepub.ui:245
+#: writerperfect/uiconfig/ui/exportepub.ui:244
msgctxt "exportepub|layoutreflowable"
msgid "Reflowable"
msgstr "Gabhaidh ath-shruthaidh"
-#: writerperfect/uiconfig/ui/exportepub.ui:246
+#: writerperfect/uiconfig/ui/exportepub.ui:245
msgctxt "exportepub|layoutfixed"
msgid "Fixed"
msgstr "Socraichte"
-#: writerperfect/uiconfig/ui/exportepub.ui:281
+#: writerperfect/uiconfig/ui/exportepub.ui:280
msgctxt "exportepub|coverimageft"
msgid "Custom cover image:"
msgstr "Dealbh còmhdaich gnàthaichte:"
-#: writerperfect/uiconfig/ui/exportepub.ui:311
+#: writerperfect/uiconfig/ui/exportepub.ui:310
msgctxt "exportepub|coverbutton"
msgid "Browse..."
msgstr "Brabhsaich..."
-#: writerperfect/uiconfig/ui/exportepub.ui:355
+#: writerperfect/uiconfig/ui/exportepub.ui:354
msgctxt "exportepub|mediadirft"
msgid "Custom media directory:"
msgstr "Pasgan mheadhanan gnàthaichte:"
-#: writerperfect/uiconfig/ui/exportepub.ui:385
+#: writerperfect/uiconfig/ui/exportepub.ui:384
msgctxt "exportepub|mediabutton"
msgid "Browse..."
msgstr "Brabhsaich..."
-#: writerperfect/uiconfig/ui/exportepub.ui:429
+#: writerperfect/uiconfig/ui/exportepub.ui:428
msgctxt "exportepub|metadataft"
msgid "Metadata"
msgstr "Metadata"
-#: writerperfect/uiconfig/ui/exportepub.ui:470
+#: writerperfect/uiconfig/ui/exportepub.ui:468
msgctxt "exportepub|identifierft"
msgid "Identifier:"
msgstr "Aithnichear:"
-#: writerperfect/uiconfig/ui/exportepub.ui:485
+#: writerperfect/uiconfig/ui/exportepub.ui:483
msgctxt "exportepub|titleft"
msgid "Title:"
msgstr "Tiotal:"
-#: writerperfect/uiconfig/ui/exportepub.ui:511
+#: writerperfect/uiconfig/ui/exportepub.ui:509
msgctxt "exportepub|authorft"
msgid "Author:"
msgstr "Ùghdar:"
-#: writerperfect/uiconfig/ui/exportepub.ui:537
+#: writerperfect/uiconfig/ui/exportepub.ui:535
msgctxt "exportepub|languageft"
msgid "Language:"
msgstr "Cànan:"
-#: writerperfect/uiconfig/ui/exportepub.ui:563
+#: writerperfect/uiconfig/ui/exportepub.ui:561
msgctxt "exportepub|dateft"
msgid "Date:"
msgstr "Ceann-là:"
diff --git a/source/gl/basctl/messages.po b/source/gl/basctl/messages.po
index ee5b42192a3..f149d905583 100644
--- a/source/gl/basctl/messages.po
+++ b/source/gl/basctl/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2018-05-16 16:54+0200\n"
-"PO-Revision-Date: 2017-11-15 22:11+0000\n"
+"PO-Revision-Date: 2018-06-10 16:48+0000\n"
"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: gl\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1510783868.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1528649300.000000\n"
#: basctl/inc/strings.hrc:25
msgctxt "RID_STR_FILTER_ALLFILES"
@@ -511,7 +511,7 @@ msgstr "Extensión"
#: basctl/uiconfig/basicide/ui/basicmacrodialog.ui:9
msgctxt "basicmacrodialog|BasicMacroDialog"
msgid "%PRODUCTNAME Basic Macros"
-msgstr "Macros de %PRODUCTNAME Basic"
+msgstr "Macros no Basic de %PRODUCTNAME"
#: basctl/uiconfig/basicide/ui/basicmacrodialog.ui:25
msgctxt "basicmacrodialog|run"
@@ -811,7 +811,7 @@ msgstr "_Nome:"
#: basctl/uiconfig/basicide/ui/organizedialog.ui:8
msgctxt "organizedialog|OrganizeDialog"
msgid "%PRODUCTNAME Basic Macro Organizer"
-msgstr "Organizador de macros Basic de %PRODUCTNAME..."
+msgstr "Organizador de macros no Basic de %PRODUCTNAME"
#: basctl/uiconfig/basicide/ui/organizedialog.ui:78
msgctxt "organizedialog|modules"
diff --git a/source/gl/cui/messages.po b/source/gl/cui/messages.po
index d26daa8b154..c8681f7bfef 100644
--- a/source/gl/cui/messages.po
+++ b/source/gl/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: 2018-05-22 13:16+0200\n"
-"PO-Revision-Date: 2018-05-19 18:03+0000\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
+"PO-Revision-Date: 2018-06-11 10:05+0000\n"
"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: gl\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1526753014.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1528711527.000000\n"
#: cui/inc/personalization.hrc:31
msgctxt "RID_SVXSTR_PERSONA_CATEGORIES"
@@ -471,7 +471,7 @@ msgstr "Hanja"
#: cui/inc/strings.hrc:115
msgctxt "RID_SVXSTR_BASICMACROS"
msgid "BASIC Macros"
-msgstr "Macros de BASIC"
+msgstr "Macros en BASIC"
#: cui/inc/strings.hrc:116
msgctxt "RID_SVXSTR_GROUP_STYLES"
@@ -2408,7 +2408,7 @@ msgstr "Predeterminado"
#: cui/uiconfig/ui/applylocalizedpage.ui:197
msgctxt "applylocalizedpage|defaultsingle"
msgid "_Default"
-msgstr "Pre_definido"
+msgstr "Pre_determinado"
#: cui/uiconfig/ui/applylocalizedpage.ui:205
msgctxt "applylocalizedpage|defaultsingle-atkobject"
@@ -7392,7 +7392,7 @@ msgstr "Elementos da interface do usuario"
#: cui/uiconfig/ui/optappearancepage.ui:146
msgctxt "optappearancepage|colorsetting"
msgid "Color setting"
-msgstr "Configuración de cor"
+msgstr "Configuración da cor"
#: cui/uiconfig/ui/optappearancepage.ui:157
msgctxt "optappearancepage|on"
@@ -9069,7 +9069,7 @@ msgstr "Grande"
#: cui/uiconfig/ui/optviewpage.ui:454
msgctxt "optviewpage|label7"
msgid "_Notebookbar icon size:"
-msgstr "Tamaño das iconas barra de _notas:"
+msgstr "_Tamaño das iconas barra global:"
#: cui/uiconfig/ui/optviewpage.ui:468
msgctxt "optviewpage|notebookbariconsize"
@@ -9610,22 +9610,22 @@ msgstr "Estabelecer o contrasinal"
#: cui/uiconfig/ui/password.ui:92
msgctxt "password|label5"
msgid "Confirm password"
-msgstr "Confirmar o contrasinal"
+msgstr "Confirme o contrasinal"
#: cui/uiconfig/ui/password.ui:106
msgctxt "password|label4"
msgid "_Enter password to open"
-msgstr "_Escribir o contrasinal para abrir"
+msgstr "_Escriba o contrasinal para abrir"
#: cui/uiconfig/ui/password.ui:149
msgctxt "password|label1"
msgid "Note: After a password has been set, the document will only open with the password. Should you lose the password, there will be no way to recover the document. Please also note that this password is case-sensitive."
-msgstr "Nota: Despois de que se estabeleza o contrasinal, o documento soamente se abrirá co contrasinal. No caso de que perda o contrasinal non haberá maneira de recuperar o documento. Decátese tamén de que o contrasinal distingue maiúsculas de minúsculas."
+msgstr "Nota: Despois de estabelecer un contrasinal o documento soamente se abrirá con ese contrasinal. No caso de que perda o contrasinal non haberá maneira de recuperar o documento. Decátese tamén de que o contrasinal diferencia maiúsculas de minúsculas."
#: cui/uiconfig/ui/password.ui:183
msgctxt "password|readonly"
msgid "Open file read-only"
-msgstr "Abrir ficheiro que so permite lectura"
+msgstr "Abrir ficheiro que só permite lectura"
#: cui/uiconfig/ui/password.ui:200
msgctxt "password|label7"
@@ -9635,7 +9635,7 @@ msgstr "Escriba o contrasinal para que se permita editar"
#: cui/uiconfig/ui/password.ui:228
msgctxt "password|label8"
msgid "Confirm password"
-msgstr "Confirmar o contrasinal"
+msgstr "Confirme o contrasinal"
#: cui/uiconfig/ui/password.ui:260
msgctxt "password|label6"
@@ -9872,97 +9872,97 @@ msgctxt "positionsizedialog|PositionAndSizeDialog"
msgid "Position and Size"
msgstr "Posición e tamaño"
-#: cui/uiconfig/ui/positionsizedialog.ui:107
+#: cui/uiconfig/ui/positionsizedialog.ui:136
msgctxt "positionsizedialog|RID_SVXPAGE_POSITION_SIZE"
msgid "Position and Size"
msgstr "Posición e tamaño"
-#: cui/uiconfig/ui/positionsizedialog.ui:129
+#: cui/uiconfig/ui/positionsizedialog.ui:182
msgctxt "positionsizedialog|RID_SVXPAGE_SWPOSSIZE"
msgid "Position and Size"
msgstr "Posición e tamaño"
-#: cui/uiconfig/ui/positionsizedialog.ui:152
+#: cui/uiconfig/ui/positionsizedialog.ui:229
msgctxt "positionsizedialog|RID_SVXPAGE_ANGLE"
msgid "Rotation"
msgstr "Rotación"
-#: cui/uiconfig/ui/positionsizedialog.ui:175
+#: cui/uiconfig/ui/positionsizedialog.ui:276
msgctxt "positionsizedialog|RID_SVXPAGE_SLANT"
msgid "Slant & Corner Radius"
msgstr "Inclinación e raio do canto"
-#: cui/uiconfig/ui/possizetabpage.ui:40
+#: cui/uiconfig/ui/possizetabpage.ui:61
msgctxt "possizetabpage|FT_POS_X"
msgid "Position _X:"
msgstr "Posición _X:"
-#: cui/uiconfig/ui/possizetabpage.ui:56
+#: cui/uiconfig/ui/possizetabpage.ui:75
msgctxt "possizetabpage|FT_POS_Y"
msgid "Position _Y:"
msgstr "Posición _Y:"
-#: cui/uiconfig/ui/possizetabpage.ui:110
+#: cui/uiconfig/ui/possizetabpage.ui:128
msgctxt "possizetabpage|FT_POSREFERENCE"
msgid "_Base point:"
msgstr "Punto de _base:"
-#: cui/uiconfig/ui/possizetabpage.ui:148
+#: cui/uiconfig/ui/possizetabpage.ui:182
msgctxt "possizetabpage|label1"
msgid "Position"
msgstr "Posición"
-#: cui/uiconfig/ui/possizetabpage.ui:190
+#: cui/uiconfig/ui/possizetabpage.ui:224
msgctxt "possizetabpage|FT_WIDTH"
msgid "Wi_dth:"
msgstr "_Largura:"
-#: cui/uiconfig/ui/possizetabpage.ui:206
+#: cui/uiconfig/ui/possizetabpage.ui:238
msgctxt "possizetabpage|FT_HEIGHT"
msgid "H_eight:"
msgstr "Alt_ura:"
-#: cui/uiconfig/ui/possizetabpage.ui:247
+#: cui/uiconfig/ui/possizetabpage.ui:276
msgctxt "possizetabpage|CBX_SCALE"
msgid "_Keep ratio"
msgstr "_Manter a proporción"
-#: cui/uiconfig/ui/possizetabpage.ui:279
+#: cui/uiconfig/ui/possizetabpage.ui:307
msgctxt "possizetabpage|FT_SIZEREFERENCE"
msgid "Base _point:"
msgstr "_Punto de base:"
-#: cui/uiconfig/ui/possizetabpage.ui:317
+#: cui/uiconfig/ui/possizetabpage.ui:361
msgctxt "possizetabpage|label2"
msgid "Size"
msgstr "Tamaño"
-#: cui/uiconfig/ui/possizetabpage.ui:356
+#: cui/uiconfig/ui/possizetabpage.ui:401
msgctxt "possizetabpage|TSB_POSPROTECT"
msgid "Positio_n"
msgstr "Posició_n"
-#: cui/uiconfig/ui/possizetabpage.ui:373
+#: cui/uiconfig/ui/possizetabpage.ui:418
msgctxt "possizetabpage|TSB_SIZEPROTECT"
msgid "_Size"
msgstr "_Tamaño"
-#: cui/uiconfig/ui/possizetabpage.ui:397
+#: cui/uiconfig/ui/possizetabpage.ui:441
msgctxt "possizetabpage|label3"
msgid "Protect"
msgstr "Protexer"
-#: cui/uiconfig/ui/possizetabpage.ui:430
+#: cui/uiconfig/ui/possizetabpage.ui:475
msgctxt "possizetabpage|TSB_AUTOGROW_WIDTH"
msgid "_Fit width to text"
msgstr "Axustar _largura ao texto"
-#: cui/uiconfig/ui/possizetabpage.ui:447
+#: cui/uiconfig/ui/possizetabpage.ui:492
msgctxt "possizetabpage|TSB_AUTOGROW_HEIGHT"
msgid "Fit _height to text"
msgstr "Axustar _altura ao texto"
-#: cui/uiconfig/ui/possizetabpage.ui:471
+#: cui/uiconfig/ui/possizetabpage.ui:515
msgctxt "possizetabpage|label4"
msgid "Adapt"
msgstr "Adaptar"
@@ -10162,47 +10162,47 @@ msgctxt "recordnumberdialog|label2"
msgid "go to record"
msgstr "ir ao rexistro"
-#: cui/uiconfig/ui/rotationtabpage.ui:52
+#: cui/uiconfig/ui/rotationtabpage.ui:56
msgctxt "rotationtabpage|FT_POS_X"
msgid "Position _X:"
msgstr "Posición _X:"
-#: cui/uiconfig/ui/rotationtabpage.ui:66
+#: cui/uiconfig/ui/rotationtabpage.ui:70
msgctxt "rotationtabpage|FT_POS_Y"
msgid "Position _Y:"
msgstr "Posición _Y:"
-#: cui/uiconfig/ui/rotationtabpage.ui:116
+#: cui/uiconfig/ui/rotationtabpage.ui:123
msgctxt "rotationtabpage|FT_POSPRESETS"
msgid "_Default settings:"
msgstr "_Configuración predeterminada:"
-#: cui/uiconfig/ui/rotationtabpage.ui:130
+#: cui/uiconfig/ui/rotationtabpage.ui:151
msgctxt "rotationtabpage|CTL_RECT|tooltip_text"
msgid "Rotation point"
msgstr "Punto de rotación"
-#: cui/uiconfig/ui/rotationtabpage.ui:155
+#: cui/uiconfig/ui/rotationtabpage.ui:178
msgctxt "rotationtabpage|label1"
msgid "Pivot Point"
msgstr "Pivote"
-#: cui/uiconfig/ui/rotationtabpage.ui:197
+#: cui/uiconfig/ui/rotationtabpage.ui:220
msgctxt "rotationtabpage|FT_ANGLE"
msgid "_Angle:"
msgstr "_Ángulo:"
-#: cui/uiconfig/ui/rotationtabpage.ui:238
+#: cui/uiconfig/ui/rotationtabpage.ui:263
msgctxt "rotationtabpage|FT_ANGLEPRESETS"
msgid "Default _settings:"
msgstr "_Configuración predeterminada:"
-#: cui/uiconfig/ui/rotationtabpage.ui:252
+#: cui/uiconfig/ui/rotationtabpage.ui:287
msgctxt "rotationtabpage|CTL_ANGLE|tooltip_text"
msgid "Rotation Angle"
msgstr "Ángulo de rotación"
-#: cui/uiconfig/ui/rotationtabpage.ui:277
+#: cui/uiconfig/ui/rotationtabpage.ui:314
msgctxt "rotationtabpage|label2"
msgid "Rotation Angle"
msgstr "Ángulo de rotación"
@@ -10460,7 +10460,7 @@ msgstr "Rosalía de Castro"
#: cui/uiconfig/ui/signatureline.ui:124
msgctxt "signatureline|edit_title"
msgid "Director"
-msgstr "Director"
+msgstr "Directora"
#: cui/uiconfig/ui/signatureline.ui:137
msgctxt "signatureline|edit_email"
@@ -10582,52 +10582,52 @@ msgctxt "similaritysearchdialog|relaxbox"
msgid "_Combine"
msgstr "_Combinar"
-#: cui/uiconfig/ui/slantcornertabpage.ui:50
+#: cui/uiconfig/ui/slantcornertabpage.ui:70
msgctxt "slantcornertabpage|label5"
msgid "_X:"
msgstr "_X:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:88
+#: cui/uiconfig/ui/slantcornertabpage.ui:110
msgctxt "slantcornertabpage|label6"
msgid "_Y:"
msgstr "_Y:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:125
+#: cui/uiconfig/ui/slantcornertabpage.ui:149
msgctxt "slantcornertabpage|label3"
msgid "Control Point 1"
msgstr "Punto de control 1"
-#: cui/uiconfig/ui/slantcornertabpage.ui:159
+#: cui/uiconfig/ui/slantcornertabpage.ui:183
msgctxt "slantcornertabpage|FT_RADIUS"
msgid "_Radius:"
msgstr "_Raio:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:189
+#: cui/uiconfig/ui/slantcornertabpage.ui:214
msgctxt "slantcornertabpage|label1"
msgid "Corner Radius"
msgstr "Raio do canto"
-#: cui/uiconfig/ui/slantcornertabpage.ui:223
+#: cui/uiconfig/ui/slantcornertabpage.ui:248
msgctxt "slantcornertabpage|FT_ANGLE"
msgid "_Angle:"
msgstr "_Ángulo:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:253
+#: cui/uiconfig/ui/slantcornertabpage.ui:279
msgctxt "slantcornertabpage|label2"
msgid "Slant"
msgstr "Inclinación"
-#: cui/uiconfig/ui/slantcornertabpage.ui:294
+#: cui/uiconfig/ui/slantcornertabpage.ui:320
msgctxt "slantcornertabpage|label4"
msgid "_X:"
msgstr "_X:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:332
+#: cui/uiconfig/ui/slantcornertabpage.ui:360
msgctxt "slantcornertabpage|label7"
msgid "_Y:"
msgstr "_Y:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:369
+#: cui/uiconfig/ui/slantcornertabpage.ui:399
msgctxt "slantcornertabpage|label8"
msgid "Control Point 2"
msgstr "Punto de control 2"
@@ -10907,112 +10907,112 @@ msgctxt "storedwebconnectiondialog|change"
msgid "_Change Password..."
msgstr "_Cambiar o contrasinal..."
-#: cui/uiconfig/ui/swpossizepage.ui:74
+#: cui/uiconfig/ui/swpossizepage.ui:85
msgctxt "swpossizepage|widthft"
msgid "_Width:"
msgstr "_Largura:"
-#: cui/uiconfig/ui/swpossizepage.ui:111
+#: cui/uiconfig/ui/swpossizepage.ui:123
msgctxt "swpossizepage|heightft"
msgid "H_eight:"
msgstr "A_ltura:"
-#: cui/uiconfig/ui/swpossizepage.ui:128
+#: cui/uiconfig/ui/swpossizepage.ui:141
msgctxt "swpossizepage|ratio"
msgid "_Keep ratio"
msgstr "_Manter a proporción"
-#: cui/uiconfig/ui/swpossizepage.ui:149
+#: cui/uiconfig/ui/swpossizepage.ui:162
msgctxt "swpossizepage|label2"
msgid "Size"
msgstr "Tamaño"
-#: cui/uiconfig/ui/swpossizepage.ui:205
+#: cui/uiconfig/ui/swpossizepage.ui:218
msgctxt "swpossizepage|topage"
msgid "To _page"
msgstr "Á _páxina"
-#: cui/uiconfig/ui/swpossizepage.ui:222
+#: cui/uiconfig/ui/swpossizepage.ui:234
msgctxt "swpossizepage|topara"
msgid "To paragrap_h"
msgstr "Ao _parágrafo"
-#: cui/uiconfig/ui/swpossizepage.ui:238
+#: cui/uiconfig/ui/swpossizepage.ui:250
msgctxt "swpossizepage|tochar"
msgid "To cha_racter"
msgstr "Ao _carácter"
-#: cui/uiconfig/ui/swpossizepage.ui:254
+#: cui/uiconfig/ui/swpossizepage.ui:266
msgctxt "swpossizepage|aschar"
msgid "_As character"
msgstr "_Como carácter"
-#: cui/uiconfig/ui/swpossizepage.ui:270
+#: cui/uiconfig/ui/swpossizepage.ui:282
msgctxt "swpossizepage|toframe"
msgid "To _frame"
msgstr "Ao _marco"
-#: cui/uiconfig/ui/swpossizepage.ui:292
+#: cui/uiconfig/ui/swpossizepage.ui:304
msgctxt "swpossizepage|label1"
msgid "Anchor"
msgstr "Ancorar"
-#: cui/uiconfig/ui/swpossizepage.ui:333
+#: cui/uiconfig/ui/swpossizepage.ui:344
msgctxt "swpossizepage|horiposft"
msgid "Hori_zontal:"
msgstr "_Horizontal:"
-#: cui/uiconfig/ui/swpossizepage.ui:347
+#: cui/uiconfig/ui/swpossizepage.ui:358
msgctxt "swpossizepage|horibyft"
msgid "b_y:"
msgstr "_por:"
-#: cui/uiconfig/ui/swpossizepage.ui:361
+#: cui/uiconfig/ui/swpossizepage.ui:372
msgctxt "swpossizepage|vertbyft"
msgid "_by:"
msgstr "_por:"
-#: cui/uiconfig/ui/swpossizepage.ui:375
+#: cui/uiconfig/ui/swpossizepage.ui:386
msgctxt "swpossizepage|horitoft"
msgid "_to:"
msgstr "pa_ra:"
-#: cui/uiconfig/ui/swpossizepage.ui:421
+#: cui/uiconfig/ui/swpossizepage.ui:433
msgctxt "swpossizepage|vertposft"
msgid "_Vertical:"
msgstr "_Vertical:"
-#: cui/uiconfig/ui/swpossizepage.ui:457
+#: cui/uiconfig/ui/swpossizepage.ui:470
msgctxt "swpossizepage|verttoft"
msgid "t_o:"
msgstr "_para:"
-#: cui/uiconfig/ui/swpossizepage.ui:478
+#: cui/uiconfig/ui/swpossizepage.ui:492
msgctxt "swpossizepage|mirror"
msgid "_Mirror on even pages"
msgstr "_Reflectir nas páxinas pares"
-#: cui/uiconfig/ui/swpossizepage.ui:495
+#: cui/uiconfig/ui/swpossizepage.ui:509
msgctxt "swpossizepage|followtextflow"
msgid "Follow te_xt flow"
msgstr "Seguir o fluxo do te_xto"
-#: cui/uiconfig/ui/swpossizepage.ui:518
+#: cui/uiconfig/ui/swpossizepage.ui:532
msgctxt "swpossizepage|label11"
msgid "Position"
msgstr "Posición"
-#: cui/uiconfig/ui/swpossizepage.ui:549
+#: cui/uiconfig/ui/swpossizepage.ui:563
msgctxt "swpossizepage|pos"
msgid "Positio_n"
msgstr "Posició_n"
-#: cui/uiconfig/ui/swpossizepage.ui:565
+#: cui/uiconfig/ui/swpossizepage.ui:579
msgctxt "swpossizepage|size"
msgid "_Size"
msgstr "_Tamaño"
-#: cui/uiconfig/ui/swpossizepage.ui:587
+#: cui/uiconfig/ui/swpossizepage.ui:601
msgctxt "swpossizepage|label3"
msgid "Protect"
msgstr "Protexer"
@@ -11202,12 +11202,12 @@ msgctxt "textattrtabpage|label2"
msgid "Spacing to Borders"
msgstr "Espazamento até aos bordes"
-#: cui/uiconfig/ui/textattrtabpage.ui:425
+#: cui/uiconfig/ui/textattrtabpage.ui:423
msgctxt "textattrtabpage|TSB_FULL_WIDTH"
msgid "Full _width"
msgstr "Largura _completa"
-#: cui/uiconfig/ui/textattrtabpage.ui:448
+#: cui/uiconfig/ui/textattrtabpage.ui:446
msgctxt "textattrtabpage|label3"
msgid "Text Anchor"
msgstr "Áncora de texto"
diff --git a/source/gl/extensions/messages.po b/source/gl/extensions/messages.po
index ae334ce0313..3bdfd7d9ceb 100644
--- a/source/gl/extensions/messages.po
+++ b/source/gl/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: 2018-04-23 18:10+0200\n"
-"PO-Revision-Date: 2018-04-24 21:44+0000\n"
+"PO-Revision-Date: 2018-06-09 21:33+0000\n"
"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: gl\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1524606278.000000\n"
+"X-POOTLE-MTIME: 1528579997.000000\n"
#: extensions/inc/command.hrc:29
msgctxt "RID_RSC_ENUM_COMMAND_TYPE"
@@ -2321,7 +2321,7 @@ msgstr "Selección de táboa"
#: extensions/inc/strings.hrc:368
msgctxt "RID_STR_MANUAL_FIELD_MAPPING"
msgid "Field Assignment"
-msgstr "Asignación de campo"
+msgstr "Asignación de campos"
#: extensions/inc/strings.hrc:369
msgctxt "RID_STR_FINAL_CONFIRM"
@@ -2374,7 +2374,7 @@ msgstr "Comprobe a configuración feita para a fonte de datos."
#: extensions/inc/strings.hrc:377
msgctxt "RID_STR_FIELDDIALOGTITLE"
msgid "Address Data - Field Assignment"
-msgstr "Datos de enderezos - Asignación de campo"
+msgstr "Datos de enderezos - Asignación de campos"
#: extensions/inc/strings.hrc:378
msgctxt "RID_STR_NOFIELDSASSIGNED"
@@ -2564,7 +2564,7 @@ msgstr "Xa existe outra fonte de datos con este nome. Como os nomes das fontes d
#: extensions/uiconfig/sabpilot/ui/defaultfieldselectionpage.ui:18
msgctxt "defaultfieldselectionpage|label1"
msgid "Should one option field be selected as a default?"
-msgstr "Desexa seleccionar un campo de opción como predefinido?"
+msgstr "Desexa seleccionar un campo de opción como predeterminado?"
#: extensions/uiconfig/sabpilot/ui/defaultfieldselectionpage.ui:34
msgctxt "defaultfieldselectionpage|defaultselectionyes"
@@ -2594,7 +2594,7 @@ msgstr ""
#: extensions/uiconfig/sabpilot/ui/fieldassignpage.ui:33
msgctxt "fieldassignpage|assign"
msgid "Field Assignment"
-msgstr "Asignación de campo"
+msgstr "Asignación de campos"
#: extensions/uiconfig/sabpilot/ui/fieldlinkpage.ui:19
msgctxt "fieldlinkpage|desc"
diff --git a/source/gl/filter/messages.po b/source/gl/filter/messages.po
index d6697bc5e15..1548b11144f 100644
--- a/source/gl/filter/messages.po
+++ b/source/gl/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: 2018-04-23 18:11+0200\n"
-"PO-Revision-Date: 2018-03-21 22:20+0000\n"
+"PO-Revision-Date: 2018-06-10 16:35+0000\n"
"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: gl\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1521670856.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1528648508.000000\n"
#: filter/inc/strings.hrc:25
msgctxt "STR_COLUMN_HEADER_NAME"
@@ -50,19 +50,19 @@ msgstr "Filtro de exportación"
#, c-format
msgctxt "STR_WARN_DELETE"
msgid "Do you really want to delete the XML Filter '%s'? This action cannot be undone."
-msgstr "Está seguro de querer eliminar o filtro XML '%s'? Esa acción non se pode desfacer."
+msgstr "Confirma que desexa eliminar o filtro XML «%s»? Non é posíbel desfacer esta acción."
#: filter/inc/strings.hrc:32
#, c-format
msgctxt "STR_ERROR_FILTER_NAME_EXISTS"
msgid "An XML filter with the name '%s' already exists. Please enter a different name."
-msgstr "Xa existe un filtro XML co nome '%s'. Introduza un nome diferente."
+msgstr "Xa existe un filtro XML co nome «%s». Introduza un nome diferente."
#: filter/inc/strings.hrc:33
#, c-format
msgctxt "STR_ERROR_TYPE_NAME_EXISTS"
msgid "The name for the user interface '%s1' is already used by the XML filter '%s2'. Please enter a different name."
-msgstr "O filtro XML '%s2' xa usa este nome para a interface do usuario '%s1'. Escolla outro nome."
+msgstr "O filtro XML «%s2» xa usa este nome para a interface do usuario «%s1». Escolla outro nome."
#: filter/inc/strings.hrc:34
msgctxt "STR_ERROR_EXPORT_XSLT_NOT_FOUND"
@@ -98,13 +98,13 @@ msgstr "Filtro indefinido"
#, c-format
msgctxt "STR_FILTER_HAS_BEEN_SAVED"
msgid "The XML filter '%s' has been saved as package '%s'. "
-msgstr "O filtro XML '%s' gardouse como paquete '%s'. "
+msgstr "O filtro XML «%s» gardouse como paquete «%s». "
#: filter/inc/strings.hrc:41
#, c-format
msgctxt "STR_FILTERS_HAVE_BEEN_SAVED"
msgid "%s XML filters have been saved in the package '%s'."
-msgstr "Gardáronse %s filtros XML no paquete '%s'."
+msgstr "Gardáronse %s filtros XML no paquete «%s»."
#: filter/inc/strings.hrc:42
msgctxt "STR_FILTER_PACKAGE"
@@ -115,7 +115,7 @@ msgstr "Paquete de filtros XSLT"
#, c-format
msgctxt "STR_FILTER_INSTALLED"
msgid "The XML filter '%s' has been installed successfully."
-msgstr "O filtro XML '%s' instalouse correctamente."
+msgstr "O filtro XML «%s» foi instalado correctamente."
#: filter/inc/strings.hrc:44
#, c-format
@@ -1028,7 +1028,7 @@ msgstr "Producíronse os seguintes problemas na exportación do PDF:"
#: filter/uiconfig/ui/xmlfiltersettings.ui:9
msgctxt "xmlfiltersettings|XMLFilterSettingsDialog"
msgid "XML Filter Settings"
-msgstr "Configuración do filtro XML"
+msgstr "Configuración de filtros XML"
#: filter/uiconfig/ui/xmlfiltersettings.ui:24
msgctxt "xmlfiltersettings|new"
@@ -1058,7 +1058,7 @@ msgstr "_Gardar como paquete…"
#: filter/uiconfig/ui/xmlfiltersettings.ui:94
msgctxt "xmlfiltersettings|open"
msgid "_Open Package..."
-msgstr "_Abrir o paquete…"
+msgstr "_Abrir paquete…"
#: filter/uiconfig/ui/xmlfiltersettings.ui:151
msgctxt "xmlfiltersettings|filterlist-atkobject"
@@ -1133,7 +1133,7 @@ msgstr "O filtro precisa dun procesador de XSLT 2.0"
#: filter/uiconfig/ui/xsltfilterdialog.ui:8
msgctxt "xsltfilterdialog|XSLTFilterDialog"
msgid "XML Filter: %s"
-msgstr "Filtro de XML: %s"
+msgstr "Filtro XML: %s"
#: filter/uiconfig/ui/xsltfilterdialog.ui:119
msgctxt "xsltfilterdialog|general"
diff --git a/source/gl/filter/source/config/fragments/filters.po b/source/gl/filter/source/config/fragments/filters.po
index 45419ceb036..b74f5df12a7 100644
--- a/source/gl/filter/source/config/fragments/filters.po
+++ b/source/gl/filter/source/config/fragments/filters.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: 2018-05-16 16:54+0200\n"
-"PO-Revision-Date: 2018-05-19 18:11+0000\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
+"PO-Revision-Date: 2018-06-10 17:55+0000\n"
"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: gl\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1526753505.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1528653341.000000\n"
#: ADO_rowset_XML.xcu
msgctxt ""
@@ -212,7 +212,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "EPUB Document"
-msgstr "Documento EPub"
+msgstr "Documento EPUB"
#: FictionBook_2.xcu
msgctxt ""
@@ -463,8 +463,8 @@ msgctxt ""
"MS Word 2003 XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Word 2003 XML"
-msgstr "Microsoft Word 2003 XML"
+msgid "Word 2003 XML"
+msgstr "XML de Word 2003"
#: MS_Word_2007_XML.xcu
msgctxt ""
@@ -1282,8 +1282,8 @@ msgctxt ""
"Calc MS Excel 2007 VBA XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Excel 2007-2016 XML (macro enabled)"
-msgstr "XML do Microsoft Excel 2007/2010/2013 (con macros)"
+msgid "Excel 2007–2019 (macro-enabled)"
+msgstr "Excel 2007–2019 (macros activadas)"
#: calc_MS_Excel_2007_XML.xcu
msgctxt ""
diff --git a/source/gl/filter/source/config/fragments/types.po b/source/gl/filter/source/config/fragments/types.po
index fa1efe121c0..fe284f787d1 100644
--- a/source/gl/filter/source/config/fragments/types.po
+++ b/source/gl/filter/source/config/fragments/types.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: 2018-05-08 15:11+0200\n"
-"PO-Revision-Date: 2018-05-19 18:12+0000\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
+"PO-Revision-Date: 2018-06-04 19:21+0000\n"
"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: gl\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1526753543.000000\n"
+"X-POOTLE-MTIME: 1528140086.000000\n"
#: MS_Excel_2007_Binary.xcu
msgctxt ""
@@ -292,8 +292,8 @@ msgctxt ""
"writer_MS_Word_2003_XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Word 2003 XML"
-msgstr "XML do Microsoft Word 2003"
+msgid "Word 2003 XML"
+msgstr "XML de Word 2003"
#: writer_MS_Word_2007_XML.xcu
msgctxt ""
diff --git a/source/gl/fpicker/messages.po b/source/gl/fpicker/messages.po
index 6dd0c0b3759..d54502e6dc1 100644
--- a/source/gl/fpicker/messages.po
+++ b/source/gl/fpicker/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-22 13:16+0200\n"
-"PO-Revision-Date: 2018-03-23 12:37+0000\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
+"PO-Revision-Date: 2018-06-04 19:21+0000\n"
"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: gl\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1521808645.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1528140095.000000\n"
#: include/fpicker/strings.hrc:14
msgctxt "STR_SVT_FILEPICKER_AUTO_EXTENSION"
@@ -272,13 +272,13 @@ msgstr "Cifrar con chave GPG"
#: fpicker/uiconfig/ui/foldernamedialog.ui:8
msgctxt "foldernamedialog|FolderNameDialog"
-msgid "Folder Name ?"
-msgstr "Nome do cartafol?"
+msgid "Folder Name"
+msgstr "Nome do cartafol"
#: fpicker/uiconfig/ui/foldernamedialog.ui:91
msgctxt "foldernamedialog|label2"
-msgid "Na_me"
-msgstr "No_me"
+msgid "Na_me:"
+msgstr "No_me:"
#: fpicker/uiconfig/ui/foldernamedialog.ui:122
msgctxt "foldernamedialog|label1"
diff --git a/source/gl/helpcontent2/source/auxiliary.po b/source/gl/helpcontent2/source/auxiliary.po
index dee3286ab66..60a6c879013 100644
--- a/source/gl/helpcontent2/source/auxiliary.po
+++ b/source/gl/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: 2018-05-16 16:54+0200\n"
-"PO-Revision-Date: 2018-04-25 21:06+0000\n"
+"PO-Revision-Date: 2018-06-04 20:20+0000\n"
"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: gl\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1524690406.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1528143606.000000\n"
#: sbasic.tree
msgctxt ""
@@ -166,7 +166,7 @@ msgctxt ""
"08091\n"
"node.text"
msgid "Pivot Chart"
-msgstr ""
+msgstr "Gráfica dinámica"
#: scalc.tree
msgctxt ""
@@ -342,7 +342,7 @@ msgctxt ""
"10071\n"
"node.text"
msgid "Digital Signatures"
-msgstr ""
+msgstr "Sinaturas dixitais"
#: shared.tree
msgctxt ""
diff --git a/source/gl/helpcontent2/source/text/sbasic/guide.po b/source/gl/helpcontent2/source/text/sbasic/guide.po
index d5f88cd818f..11616aaa702 100644
--- a/source/gl/helpcontent2/source/text/sbasic/guide.po
+++ b/source/gl/helpcontent2/source/text/sbasic/guide.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: 2018-04-25 13:24+0200\n"
-"PO-Revision-Date: 2018-03-19 22:07+0000\n"
+"PO-Revision-Date: 2018-06-09 17:06+0000\n"
"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: Galician <kde-i18n-doc@kde.org>\n"
"Language: gl\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1521497267.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1528564000.000000\n"
#: access2base.xhp
msgctxt ""
@@ -30,7 +30,7 @@ msgctxt ""
"bm_idA2B001\n"
"help.text"
msgid "<bookmark_value>Access2Base</bookmark_value><bookmark_value>Microsoft Access; Access2Base</bookmark_value><bookmark_value>Access databases; run in Base</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Access2Base</bookmark_value><bookmark_value>Microsoft Access; Access2Base</bookmark_value><bookmark_value>bases de datos Access; executar en Base</bookmark_value>"
#: access2base.xhp
msgctxt ""
@@ -46,7 +46,7 @@ msgctxt ""
"hd_idA2B003\n"
"help.text"
msgid "What is Access2Base?"
-msgstr ""
+msgstr "Que é Access2Base?"
#: access2base.xhp
msgctxt ""
@@ -62,7 +62,7 @@ msgctxt ""
"par_idA2B005\n"
"help.text"
msgid "The functionalities provided by the implemented macros are all directly inspired by Microsoft Access. The macros are callable mainly from a LibreOffice <emph>Base</emph> application, but also from <emph>any</emph> LibreOffice document (Writer, Calc, ...) where access to data stored in a database makes sense."
-msgstr ""
+msgstr "As funcionalidades fornecidas polas macros incluídas están todas inspiradas directamente no Access da Microsoft. As macros poden ser chamadas principalmente desde un aplicativo <emph>Base</emph> do LibreOffice, mais tamén desde <emph>calquera</emph> documento do LibreOffice (Writer, Calc,..) no que teña sentido acceder a datos almacenados nunha base de datos."
#: access2base.xhp
msgctxt ""
@@ -78,7 +78,7 @@ msgctxt ""
"par_idA2B007\n"
"help.text"
msgid "<emph>The library is documented online on </emph><link href=\"http://www.access2base.com\" name=\"http://www.access2base.com\"><emph>http://www.access2base.com</emph></link>."
-msgstr ""
+msgstr "<emph>A biblioteca está documentada na rede en </emph><link href=\"http://www.access2base.com\" name=\"http://www.access2base.com\"><emph>http://www.access2base.com</emph></link>"
#: access2base.xhp
msgctxt ""
diff --git a/source/gl/helpcontent2/source/text/schart.po b/source/gl/helpcontent2/source/text/schart.po
index 5f309c73817..c9c91c24973 100644
--- a/source/gl/helpcontent2/source/text/schart.po
+++ b/source/gl/helpcontent2/source/text/schart.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: 2018-05-08 15:10+0200\n"
-"PO-Revision-Date: 2018-03-19 22:16+0000\n"
+"PO-Revision-Date: 2018-06-09 21:10+0000\n"
"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: gl\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1521497801.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1528578620.000000\n"
#: main0000.xhp
msgctxt ""
@@ -46,7 +46,7 @@ msgctxt ""
"par_id3154685\n"
"help.text"
msgid "<variable id=\"chart\">$[officename] lets you present data graphically in a chart, so that you can visually compare data series and view trends in the data. You can insert charts into spreadsheets, text documents, drawings, and presentations.</variable>"
-msgstr ""
+msgstr "<variable id=\"chart\">O $[officename] permite presentar datos en forma de gráfica para poder comparar visualmente series de datos e ver tendencias nos datos. Pódense inserir gráficas en follas de cálculo, documentos de texto, debuxos e presentacións.</variable>"
#: main0000.xhp
msgctxt ""
diff --git a/source/gl/helpcontent2/source/text/shared/00.po b/source/gl/helpcontent2/source/text/shared/00.po
index 8cec282e8d3..89d2957ae1f 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2017-10-14 19:45+0000\n"
"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: Galician <kde-i18n-doc@kde.org>\n"
@@ -397,16 +397,16 @@ msgctxt ""
"00000001.xhp\n"
"hd_id3149670\n"
"help.text"
-msgid "Back"
-msgstr "Volver"
+msgid "Reset"
+msgstr ""
#: 00000001.xhp
msgctxt ""
"00000001.xhp\n"
"par_id3145068\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optionsdialog/revert\">Resets modified values back to the $[officename] default values.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/optionsdialog/revert\">Restabelece os valores predefinidos de $[officename].</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optionsdialog/revert\">Resets changes made to the current tab to those applicable when this dialog was opened.</ahelp>"
+msgstr ""
#: 00000001.xhp
msgctxt ""
@@ -552,6 +552,54 @@ msgctxt ""
msgid "<variable id=\"ShiftF1\">Press Shift+F1 and point to a control to learn more about that control.</variable>"
msgstr "<variable id=\"ShiftF1\">Prema en MAIÚS+F1 e apunte a un control para coñecer máis sobre el. </variable>"
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"hd_id631527692833772\n"
+"help.text"
+msgid "Options dialog buttons"
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"hd_id831527692839432\n"
+"help.text"
+msgid "OK"
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"par_id471527692844934\n"
+"help.text"
+msgid "Save the changes in the page and close the Options dialog."
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"hd_id261527692850720\n"
+"help.text"
+msgid "Cancel"
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"par_id571527692855533\n"
+"help.text"
+msgid "Close the Options dialog and discard all changes done."
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"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 Options dialog."
+msgstr ""
+
#: 00000002.xhp
msgctxt ""
"00000002.xhp\n"
@@ -11126,16 +11174,16 @@ msgctxt ""
"00040502.xhp\n"
"par_id3151293\n"
"help.text"
-msgid "<variable id=\"linienstile\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Line Styles</emph> tab </variable>"
-msgstr "<variable id=\"linienstile\">Escolla <emph>Formato - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Obxecto - </emph></caseinline><caseinline select=\"CALC\"><emph>Gráfica - </emph></caseinline></switchinline><emph>Liña</emph> - separador <emph>Estilos de liña</emph> </variable>"
+msgid "<variable id=\"linienstile\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Line Styles</emph> tab</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3149317\n"
"help.text"
-msgid "<variable id=\"linienenden\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Arrow Styles</emph> tab </variable>"
-msgstr "<variable id=\"linienenden\">Escolla <emph>Formato - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Obxecto - </emph></caseinline><caseinline select=\"CALC\"><emph>Gráfica - </emph></caseinline></switchinline><emph>Liña</emph> - separador <emph>Estilos de frecha</emph></variable>"
+msgid "<variable id=\"linienenden\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Arrow Styles</emph> tab</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
@@ -11174,15 +11222,15 @@ msgctxt ""
"00040502.xhp\n"
"par_id3154948\n"
"help.text"
-msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Area</emph> tab"
-msgstr "Escolla <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Obxecto - </emph></caseinline><caseinline select=\"CALC\"><emph>Gráfica - </emph></caseinline></switchinline><emph>Área</emph> - separador <emph>Área</emph>"
+msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Area</emph> tab."
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3145607\n"
"help.text"
-msgid "Choose <emph>View - Styles</emph> - open context menu and choose <emph>Modify/New - Area</emph> tab (presentation documents)"
+msgid "Choose <emph>View - Styles</emph> - open context menu and choose <emph>Modify/New - Area</emph> tab (presentation documents)."
msgstr ""
#: 00040502.xhp
@@ -11190,47 +11238,47 @@ msgctxt ""
"00040502.xhp\n"
"par_id3152922\n"
"help.text"
-msgid "Choose <emph>Format - Title - Area</emph> tab (chart documents)"
-msgstr "Escolla <emph>Formato - Título</emph>, separador <emph>Área</emph> (documentos de gráfica)"
+msgid "Choose <emph>Format - Title - Area</emph> tab (chart documents)."
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3157894\n"
"help.text"
-msgid "Choose <emph>Format - Legend - Area</emph> tab (chart documents)"
-msgstr "Escolla <emph>Formato - Lenda</emph>, separador <emph>Área</emph> (documentos de gráfica)"
+msgid "Choose <emph>Format - Legend - Area</emph> tab (chart documents)."
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3144444\n"
"help.text"
-msgid "Choose <emph>Format - Chart Wall - Area</emph> tab (chart documents)"
-msgstr "Escolla <emph>Formato - Paredes da gráfica</emph>, separador <emph>Área</emph> (documentos de gráfica)"
+msgid "Choose <emph>Format - Chart Wall - Area</emph> tab (chart documents)."
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3156543\n"
"help.text"
-msgid "Choose <emph>Format - Chart Floor - Area</emph> tab (chart documents)"
-msgstr "Escolla <emph>Formato - Base da gráfica</emph>, separador <emph>Área</emph> (documentos de gráfica)"
+msgid "Choose <emph>Format - Chart Floor - Area</emph> tab (chart documents)."
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3150685\n"
"help.text"
-msgid "Choose <emph>Format - Chart Area - Area</emph> tab (chart documents)"
-msgstr "Escolla <emph>Formato - Área da gráfica</emph>, separador <emph>Área</emph> (documentos de gráfica)"
+msgid "Choose <emph>Format - Chart Area - Area</emph> tab (chart documents)."
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3149664\n"
"help.text"
-msgid "Choose <emph>Slide - Properties - Background</emph> tab (in $[officename] Impress)"
+msgid "Choose <emph>Slide - Properties - Background</emph> tab (in $[officename] Impress)."
msgstr ""
#: 00040502.xhp
@@ -11238,7 +11286,15 @@ msgctxt ""
"00040502.xhp\n"
"par_id9149694\n"
"help.text"
-msgid "Choose <emph>Page - Properties - Background</emph> tab (in $[officename] Draw)"
+msgid "Choose <emph>Page - Properties - Background</emph> tab (in $[officename] Draw)."
+msgstr ""
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id841527083135387\n"
+"help.text"
+msgid "Choose <emph>Table - Properties - Background</emph> tab."
msgstr ""
#: 00040502.xhp
@@ -11350,32 +11406,32 @@ msgctxt ""
"00040502.xhp\n"
"par_id3150011\n"
"help.text"
-msgid "<variable id=\"schatte\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Shadow</emph> tab </variable>"
-msgstr "<variable id=\"schatte\">Escolla <emph>Formato - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Obxecto - </emph></caseinline><caseinline select=\"CALC\"><emph>Gráfica - </emph></caseinline></switchinline><emph>Área</emph> - separador <emph>Sombra</emph></variable>"
+msgid "<variable id=\"schatte\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Shadow</emph> tab</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3147441\n"
"help.text"
-msgid "<variable id=\"verlauf\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Gradients</emph> tab </variable>"
-msgstr "<variable id=\"verlauf\">Escolla <emph>Formato - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Obxecto - </emph></caseinline><caseinline select=\"CALC\"><emph>Gráfica - </emph></caseinline></switchinline><emph>Área</emph> - separador <emph>Gradacións</emph></variable>"
+msgid "<variable id=\"verlauf\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Gradients</emph> tab</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3155308\n"
"help.text"
-msgid "<variable id=\"schraffur\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Hatching</emph> tab </variable>"
-msgstr "<variable id=\"schraffur\">Escolla <emph>Formato - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Obxecto - </emph></caseinline><caseinline select=\"CALC\"><emph>Gráfica - </emph></caseinline></switchinline><emph>Área</emph> - separador <emph>Trazado</emph></variable>"
+msgid "<variable id=\"schraffur\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Hatching</emph> tab</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3145800\n"
"help.text"
-msgid "<variable id=\"bitmap\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Bitmaps</emph> tab </variable>"
-msgstr "<variable id=\"bitmap\">Escolla <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Obxecto - </emph></caseinline><caseinline select=\"CALC\"><emph>Gráfica - </emph></caseinline></switchinline><emph>Área</emph> - separador <emph>Mapa de bits</emph></variable>"
+msgid "<variable id=\"bitmap\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Bitmaps</emph> tab</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
@@ -11414,8 +11470,8 @@ msgctxt ""
"00040502.xhp\n"
"par_id3156286\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F4 key </caseinline><caseinline select=\"IMPRESS\">F4 key </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"DRAW\">Tecla F4 </caseinline><caseinline select=\"IMPRESS\">Tecla F4 </caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F4 key</caseinline><caseinline select=\"IMPRESS\">F4 key</caseinline></switchinline>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
@@ -11454,8 +11510,8 @@ msgctxt ""
"00040502.xhp\n"
"par_id3153099\n"
"help.text"
-msgid "<variable id=\"position2\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Position and Size</emph> tab </variable>"
-msgstr "<variable id=\"position2\">Escolla <emph>Formato - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Obxecto - </emph></caseinline><caseinline select=\"CALC\"><emph>Gráfica - </emph></caseinline></switchinline><emph>Posición e tamaño</emph> - separador <emph>Posición e tamaño</emph></variable>"
+msgid "<variable id=\"position2\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Position and Size</emph> tab</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
@@ -11486,16 +11542,16 @@ msgctxt ""
"00040502.xhp\n"
"par_id3145666\n"
"help.text"
-msgid "<variable id=\"ecke\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Slant & Corner Radius</emph> tab </variable>"
-msgstr "<variable id=\"ecke\">Escolla <emph>Formato - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Obxecto - </emph></caseinline><caseinline select=\"CALC\"><emph>Gráfica - </emph></caseinline></switchinline><emph>Posición e tamaño</emph> - separador <emph>Inclinación e raio do canto</emph></variable>"
+msgid "<variable id=\"ecke\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Slant & Corner Radius</emph> tab</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3146081\n"
"help.text"
-msgid "<variable id=\"legende\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Callout</emph> tab (only for textbox callouts, not for custom shapes callouts) </variable>"
-msgstr "<variable id=\"ecke\">Escolla <emph>Formato - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Obxecto - </emph></caseinline><caseinline select=\"CALC\"><emph>Gráfica - </emph></caseinline></switchinline><emph>Posición e tamaño</emph> - separador <emph>Inclinación e raio do canto</emph></variable>"
+msgid "<variable id=\"legende\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Callout</emph> tab (only for textbox callouts, not for custom shapes callouts)</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
@@ -11518,8 +11574,8 @@ msgctxt ""
"00040502.xhp\n"
"par_id3149019\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F8 key </caseinline><caseinline select=\"IMPRESS\">F8 key </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"DRAW\">Tecla F8 </caseinline><caseinline select=\"IMPRESS\">Tecla F8 </caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F8 key</caseinline><caseinline select=\"IMPRESS\">F8 key</caseinline></switchinline>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
@@ -11806,8 +11862,8 @@ msgctxt ""
"00040502.xhp\n"
"par_id3153076\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Align Center Horizontally </caseinline><defaultinline>Centered</defaultinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Aliñamento horizontal centrado </caseinline><defaultinline>Centrado</defaultinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Align Center Horizontally</caseinline><defaultinline>Centered</defaultinline></switchinline>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
@@ -11846,8 +11902,8 @@ msgctxt ""
"00040502.xhp\n"
"par_id3150527\n"
"help.text"
-msgid "<variable id=\"font\">Click <emph>Fontwork</emph> icon on <emph>Drawing</emph> bar </variable>"
-msgstr "<variable id=\"font\">Prema a icona <emph>Fontwork</emph> na barra <emph>Debuxo</emph></variable>"
+msgid "<variable id=\"font\">Click <emph>Fontwork</emph> icon on <emph>Drawing</emph> bar</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
diff --git a/source/gl/helpcontent2/source/text/shared/01.po b/source/gl/helpcontent2/source/text/shared/01.po
index 020eaf10a3e..34f2331c71e 100644
--- a/source/gl/helpcontent2/source/text/shared/01.po
+++ b/source/gl/helpcontent2/source/text/shared/01.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-23 23:19+0200\n"
-"PO-Revision-Date: 2018-04-25 21:06+0000\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
+"PO-Revision-Date: 2018-06-13 21:39+0000\n"
"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: Galician <kde-i18n-doc@kde.org>\n"
"Language: gl\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1524690382.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1528925994.000000\n"
#: 01010000.xhp
msgctxt ""
@@ -1358,7 +1358,7 @@ msgctxt ""
"par_id3158442\n"
"help.text"
msgid "<ahelp visibility=\"visible\" hid=\"modules/swriter/ui/cardformatpage/treeview\">Select a business card category in <emph>AutoText - Section</emph> box, and then click a layout in the <emph>Content </emph>list.</ahelp>"
-msgstr "<ahelp visibility=\"\\ visible\" hid =\"modules/swriter/ui/cardformatpage/treeview\"> Seleccione unha categoría tarxeta de visita en <emph>AutoTexto - Sección </emph> e prema nun esquema no <emph>Índice </emph> lista.</ahelp>"
+msgstr "<ahelp visibility=\"visible\" hid=\"modules/swriter/ui/cardformatpage/treeview\">Seleccione unha categoría de tarxeta comercial en <emph>Texto automático - Sección</emph>e prema nun deseño na lista <emph>Contido </emph>.</ahelp>"
#: 01010302.xhp
msgctxt ""
@@ -23588,6 +23588,22 @@ msgstr ""
#: 05210100.xhp
msgctxt ""
"05210100.xhp\n"
+"hd_id471527077476052\n"
+"help.text"
+msgid "Cell, Row or Table background selector"
+msgstr ""
+
+#: 05210100.xhp
+msgctxt ""
+"05210100.xhp\n"
+"par_id661527077493366\n"
+"help.text"
+msgid "Select the table object which background area is to be filled."
+msgstr ""
+
+#: 05210100.xhp
+msgctxt ""
+"05210100.xhp\n"
"hd_id3147373\n"
"help.text"
msgid "None"
@@ -31207,24 +31223,24 @@ msgctxt ""
"06040100.xhp\n"
"hd_id3145072\n"
"help.text"
-msgid "Automatic *bold* and _underline_"
-msgstr "*Negra* e _subliñado_ automáticos"
+msgid "Automatic *bold*, /italic/, -strikeout- and _underline_"
+msgstr ""
#: 06040100.xhp
msgctxt ""
"06040100.xhp\n"
"par_id3153577\n"
"help.text"
-msgid "Automatically applies bold formatting to text enclosed by asterisks (*), and underline to text enclosed by underscores ( _ ), for example, *bold*. The asterisks and underscores are not displayed after the formatting is applied."
-msgstr "Aplícase automaticamente o formato en negra ao texto delimitado por asteriscos (*), e subliñar a texto delimitado por guións baixos (_), por exemplo, * negra *. Os asteriscos e guións baixos non aparecen despois de formatar é aplicada."
+msgid "Automatically applies bold, italic, strikethrough or underline formatting to text enclosed by asterisks (*), slashes (/), hyphens (-), and underscores (_), respectively. These characters disappear after the formatting is applied."
+msgstr ""
#: 06040100.xhp
msgctxt ""
"06040100.xhp\n"
"par_id3153127\n"
"help.text"
-msgid "This feature does not work if the formatting characters * or _ are entered with an <link href=\"text/shared/00/00000005.xhp#IME\" name=\"Input Method Editor\">Input Method Editor</link>."
-msgstr "Esta característica non funciona se os caracteres de formato * ou _ son incorporados cun <link href =\"text/shared/00/00000005.xhp# IME\" name =\"Input Method Editor\"> Input Method Editor </link>."
+msgid "This feature does not work if the formatting characters <item type=\"literal\">* / - _</item> are entered with an <link href=\"text/shared/00/00000005.xhp#IME\" name=\"Input Method Editor\">Input Method Editor</link>."
+msgstr ""
#: 06040100.xhp
msgctxt ""
diff --git a/source/gl/helpcontent2/source/text/shared/optionen.po b/source/gl/helpcontent2/source/text/shared/optionen.po
index 99597621bde..a20c86ddffb 100644
--- a/source/gl/helpcontent2/source/text/shared/optionen.po
+++ b/source/gl/helpcontent2/source/text/shared/optionen.po
@@ -3,9 +3,9 @@ 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: 2018-05-08 15:10+0200\n"
-"PO-Revision-Date: 2017-08-15 15:46+0000\n"
-"Last-Translator: Leandro Regueiro <leandro.regueiro@gmail.com>\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
+"PO-Revision-Date: 2018-06-09 21:12+0000\n"
+"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: Galician <kde-i18n-doc@kde.org>\n"
"Language: gl\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1502811960.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1528578743.000000\n"
#: 01000000.xhp
msgctxt ""
@@ -83,6 +83,22 @@ msgstr ""
#: 01000000.xhp
msgctxt ""
"01000000.xhp\n"
+"hd_id551527692881035\n"
+"help.text"
+msgid "Help"
+msgstr ""
+
+#: 01000000.xhp
+msgctxt ""
+"01000000.xhp\n"
+"par_id831527692885723\n"
+"help.text"
+msgid "Opens the help contents for the Options page displayed."
+msgstr ""
+
+#: 01000000.xhp
+msgctxt ""
+"01000000.xhp\n"
"hd_id3159149\n"
"help.text"
msgid "<link href=\"text/shared/optionen/01010000.xhp\" name=\"$[officename]\">%PRODUCTNAME</link>"
@@ -4565,8 +4581,8 @@ msgctxt ""
"01030300.xhp\n"
"par_idN10640\n"
"help.text"
-msgid "Options"
-msgstr "Opcións"
+msgid "Security Options and Warnings"
+msgstr ""
#: 01030300.xhp
msgctxt ""
@@ -4597,8 +4613,8 @@ msgctxt ""
"01030300.xhp\n"
"hd_id3168736\n"
"help.text"
-msgid "Persistently save passwords protected by a master password"
-msgstr "Gardar os contrasinais permanentemente protexidos por un contrasinal mestre."
+msgid "Persistently save passwords for web connections"
+msgstr ""
#: 01030300.xhp
msgctxt ""
@@ -4613,8 +4629,24 @@ msgctxt ""
"01030300.xhp\n"
"hd_id3901791\n"
"help.text"
+msgid "Protected by a master password (recommended)"
+msgstr ""
+
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"par_id31527711486980\n"
+"help.text"
+msgid "Check to enable all connections' passwords to be protected by a master password."
+msgstr ""
+
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"hd_id141527711343312\n"
+"help.text"
msgid "Master Password"
-msgstr "Contrasinal mestre"
+msgstr ""
#: 01030300.xhp
msgctxt ""
@@ -13734,8 +13766,8 @@ msgctxt ""
"java.xhp\n"
"hd_id3148618\n"
"help.text"
-msgid "Optional (unstable) options"
-msgstr "Opcións optativas (inestábeis)"
+msgid "Optional Features"
+msgstr ""
#: java.xhp
msgctxt ""
@@ -13750,7 +13782,7 @@ msgctxt ""
"java.xhp\n"
"par_id3156344\n"
"help.text"
-msgid "It enables features that are not yet complete or contain known bugs. The list of these features is different version by version, or even it can be empty."
+msgid "Enables features that are not yet complete or may contain known bugs. The list of these features is different version by version, or even it can be empty."
msgstr ""
#: java.xhp
@@ -13766,8 +13798,8 @@ msgctxt ""
"java.xhp\n"
"par_id3156345\n"
"help.text"
-msgid "It enables macro recording, so the <link href=\"text/shared/guide/macro_recording.xhp\" name=\"Tools - Macros - Record Macro\"><item type=\"menuitem\">Tools - Macros - Record Macro</item></link> menu item will be available."
-msgstr ""
+msgid "Enables macro recording. The <link href=\"text/shared/guide/macro_recording.xhp\" name=\"Tools - Macros - Record Macro\"><item type=\"menuitem\">Tools - Macros - Record Macro</item></link> menu item is available."
+msgstr "Activa a gravación de macros. Disponse do menú <link href=\"text/shared/guide/macro_recording.xhp\" name=\"Tools - Macros - Record Macro\"><item type=\"menuitem\">Ferramentas - Macros - Gravar macro</item></link>."
#: java.xhp
msgctxt ""
@@ -13775,7 +13807,7 @@ msgctxt ""
"hd_id0609201521211497\n"
"help.text"
msgid "<link href=\"text/shared/optionen/expertconfig.xhp\">Expert Configuration</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/optionen/expertconfig.xhp\">Configuración avanzada</link>"
#: java.xhp
msgctxt ""
@@ -13783,7 +13815,7 @@ msgctxt ""
"par_id0609201521444658\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/optadvancedpage/expertconfig\">Opens the Expert Configuration dialog for advanced settings and configuration of %PRODUCTNAME.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/optadvancedpage/expertconfig\">Abre o diálogo Configuración avanzada para opcións e configuración avanzados do %PRODUCTNAME.</ahelp>"
#: javaclasspath.xhp
msgctxt ""
diff --git a/source/gl/helpcontent2/source/text/swriter/guide.po b/source/gl/helpcontent2/source/text/swriter/guide.po
index 2bef83d81fc..68381920101 100644
--- a/source/gl/helpcontent2/source/text/swriter/guide.po
+++ b/source/gl/helpcontent2/source/text/swriter/guide.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: 2018-05-08 15:11+0200\n"
-"PO-Revision-Date: 2018-04-25 21:05+0000\n"
+"PO-Revision-Date: 2018-06-13 21:40+0000\n"
"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: Galician <kde-i18n-doc@kde.org>\n"
"Language: gl\n"
@@ -13,9 +13,9 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Pootle 2.8\n"
"X-Project-Style: openoffice\n"
-"X-POOTLE-MTIME: 1524690327.000000\n"
+"X-POOTLE-MTIME: 1528926013.000000\n"
#: anchor_object.xhp
msgctxt ""
@@ -239,7 +239,7 @@ msgctxt ""
"par_id3151238\n"
"help.text"
msgid "On the <emph>Navigator</emph>, click the <emph>Content View</emph> icon <image id=\"img_id3156338\" src=\"sw/res/sc20244.png\"><alt id=\"alt_id3156338\">Icon</alt></image>."
-msgstr ""
+msgstr "No <emph>Navegador </emph>, prema na icona <emph>Vista de contido</emph> <image id=\"img_id3156338\" src=\"sw/res/sc20244.png\"><alt id=\"alt_id3156338\">Icona</alt></image>."
#: arrange_chapters.xhp
msgctxt ""
@@ -263,7 +263,7 @@ msgctxt ""
"par_id3155139\n"
"help.text"
msgid "Click a heading in the <emph>Navigator</emph> list, and then click the <emph>Promote Chapter</emph> <image id=\"img_id4217546\" src=\"sw/res/sc20174.png\"><alt id=\"alt_id4217546\">Icon</alt></image> or <emph>Demote Chapter</emph> icon <image id=\"img_id6505788\" src=\"sw/res/sc20171.png\"><alt id=\"alt_id6505788\">Icon</alt></image>."
-msgstr ""
+msgstr "Prema nun título na lista do <emph>Navegador</emph> e a seguir prema na icona <emph>Subir un capítulo</emph> <image id=\"img_id4217546\" src=\"sw/res/sc20174.png\"><alt id=\"alt_id4217546\">Icona</alt></image> ou na icona <emph>Baixar un capítulo</emph> <image id=\"img_id6505788\" src=\"sw/res/sc20171.png\"><alt id=\"alt_id6505788\">Icona</alt></image>."
#: arrange_chapters.xhp
msgctxt ""
@@ -271,7 +271,7 @@ msgctxt ""
"par_id3145758\n"
"help.text"
msgid "To move the heading without the subordinate text, hold down <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> while you drag or click the <emph>Promote Chapter</emph> or <emph>Demote Chapter</emph> icons."
-msgstr ""
+msgstr "Para mover o título sen o texto subordinado, manteña premida a tecla <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> mentres arrastra ou preme as iconas <emph>Subir un capítulo</emph> ou <emph>Baixar un capítulo</emph>."
#: arrange_chapters.xhp
msgctxt ""
@@ -295,7 +295,7 @@ msgctxt ""
"par_idN1081C\n"
"help.text"
msgid "Click the <emph>Promote Level</emph> <image id=\"img_id5564488\" src=\"sw/res/sc20172.png\"><alt id=\"alt_id5564488\">Icon</alt></image> or <emph>Demote Level</emph> icon <image id=\"img_id3159363\" src=\"sw/res/sc20173.png\"><alt id=\"alt_id3159363\">Icon</alt></image>."
-msgstr ""
+msgstr "Prema a icona <emph>Subir un nivel</emph> <image id=\"img_id5564488\" src=\"sw/res/sc20172.png\"><alt id=\"alt_id5564488\">Icona</alt></image> ou <emph>Baixar un nivel</emph> <image id=\"img_id3159363\" src=\"sw/res/sc20173.png\"><alt id=\"alt_id3159363\">Icona</alt></image>."
#: arrange_chapters.xhp
msgctxt ""
@@ -311,7 +311,7 @@ msgctxt ""
"par_id3151352\n"
"help.text"
msgid "Click the <emph>Heading Levels Shown</emph> icon <image id=\"img_id3151310\" src=\"sw/res/sc20236.png\"><alt id=\"alt_id3151310\">Icon</alt></image>, and then select a number from the list."
-msgstr ""
+msgstr "Prema na icona <emph>Niveis de título mostrados</emph> <image id=\"img_id3151310\" src=\"sw/res/sc20236.png\"><alt id=\"alt_id3151310\">Icona</alt></image> e seleccione un número da lista."
#: auto_numbering.xhp
msgctxt ""
@@ -367,7 +367,7 @@ msgctxt ""
"par_id3152867\n"
"help.text"
msgid "Choose <emph>Tools - AutoCorrect</emph>, and ensure that <emph>While Typing</emph> is selected."
-msgstr ""
+msgstr "Escolla <emph>Ferramentas - Corrección automática</emph> e comprobe que ten seleccionado <emph>Ao teclear</emph>."
#: auto_numbering.xhp
msgctxt ""
@@ -471,7 +471,7 @@ msgctxt ""
"par_idN10846\n"
"help.text"
msgid "To turn off most AutoCorrect features, remove the check mark from the menu <emph>Tools - AutoCorrect - While Typing</emph>."
-msgstr ""
+msgstr "Para desactivar a maioría dos recursos de Corrección automática, elimine a marca de comprobación desde o menú <emph>Ferramentas - Corrección automática - Ao teclear</emph>."
#: auto_off.xhp
msgctxt ""
@@ -679,7 +679,7 @@ msgctxt ""
"par_id3147759\n"
"help.text"
msgid "If you choose a word from the <item type=\"menuitem\">AutoCorrect</item> submenu, the underlined word and the replacement word are automatically added to the AutoCorrect list for the current language. To view the AutoCorrect list, choose <item type=\"menuitem\">Tools - AutoCorrect - AutoCorrect Options</item>, and then click the <item type=\"menuitem\">Replace</item> tab."
-msgstr ""
+msgstr "Se escolle unha palabra do submenú <item type=\"menuitem\">Corrección automática</item>, a palabra subliñada e a súa substituta engádense automaticamente á lista de corrección automática do idioma actual. Para ver a lista de corrección automática, escolla <item type=\"menuitem\">Ferramentas - Corrección automática - Opcións de corrección automática</item> e prema na lapela <item type=\"menuitem\">Substituír</item>."
#: auto_spellcheck.xhp
msgctxt ""
@@ -719,7 +719,7 @@ msgctxt ""
"par_id3145602\n"
"help.text"
msgid "Choose \"None (Do not check spelling)\"."
-msgstr ""
+msgstr "Escolla «Ningún (Non comprobar ortografía»."
#: auto_spellcheck.xhp
msgctxt ""
@@ -767,7 +767,7 @@ msgctxt ""
"par_id3155576\n"
"help.text"
msgid "Choose <item type=\"menuitem\">Tools - AutoCorrect - AutoCorrect Options</item>, and then click the <item type=\"menuitem\">Exceptions</item> tab."
-msgstr ""
+msgstr "Escolla <item type=\"menuitem\">Ferramentas - Corrección automática - Opcións de corrección automática</item> e, a continuación, prema na lapela <item type=\"menuitem\">Excepcións</item>."
#: autocorr_except.xhp
msgctxt ""
@@ -815,7 +815,7 @@ msgctxt ""
"bm_id3155521\n"
"help.text"
msgid "<bookmark_value>AutoText</bookmark_value> <bookmark_value>networks and AutoText directories</bookmark_value> <bookmark_value>lists;AutoText shortcuts</bookmark_value> <bookmark_value>printing;AutoText shortcuts</bookmark_value> <bookmark_value>inserting;text blocks</bookmark_value> <bookmark_value>text blocks</bookmark_value> <bookmark_value>blocks of text</bookmark_value>"
-msgstr "<bookmark_value> AutoTexto </bookmark_value> <bookmark_value> redes e directorios de texto automático </bookmark_value> <bookmark_value> listas de atallos de texto automático; </bookmark_value> <bookmark_value> imprimir; atallos de texto automático </bookmark_value> <bookmark_value> inserción; bloques de texto </bookmark_value> <bookmark_value> bloques de texto </bookmark_value> <bookmark_value> bloques de texto </bookmark_value>"
+msgstr "<bookmark_value> Texto automático </bookmark_value> <bookmark_value> redes e directorios de texto automático </bookmark_value> <bookmark_value> listas de atallos de texto automático; </bookmark_value> <bookmark_value> imprimir; atallos de texto automático </bookmark_value> <bookmark_value> inserción; bloques de texto </bookmark_value> <bookmark_value> bloques de texto </bookmark_value> <bookmark_value> bloques de texto </bookmark_value>"
#: autotext.xhp
msgctxt ""
@@ -1895,7 +1895,7 @@ msgctxt ""
"par_id4194158\n"
"help.text"
msgid "<image id=\"img_id8221076\" src=\"media/helpimg/border_ca_5.png\" width=\"1.2209in\" height=\"0.2445in\"><alt id=\"alt_id8221076\">default icons for borders</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id8221076\" src=\"media/helpimg/border_ca_5.png\" width=\"1.2209in\" height=\"0.2445in\"><alt id=\"alt_id8221076\">iconas predeterminadas para os bordos</alt></image>"
#: borders.xhp
msgctxt ""
@@ -1991,7 +1991,7 @@ msgctxt ""
"par_id6485793\n"
"help.text"
msgid "<image id=\"img_id1237525\" src=\"media/helpimg/border_wr_6.png\" width=\"1.4071in\" height=\"1.2555in\"><alt id=\"alt_id1237525\">solid line for border</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id1237525\" src=\"media/helpimg/border_wr_6.png\" width=\"1.4071in\" height=\"1.2555in\"><alt id=\"alt_id1237525\">liña continua para o bordo</alt></image>"
#: borders.xhp
msgctxt ""
@@ -2015,7 +2015,7 @@ msgctxt ""
"par_id1239356\n"
"help.text"
msgid "<image id=\"img_id2688680\" src=\"media/helpimg/border_wr_7.png\" width=\"1.4071in\" height=\"1.2555in\"><alt id=\"alt_id2688680\">gray line for border</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id2688680\" src=\"media/helpimg/border_wr_7.png\" width=\"1.4071in\" height=\"1.2555in\"><alt id=\"alt_id2688680\">liña gris para o bordo</alt></image>"
#: borders.xhp
msgctxt ""
@@ -2039,7 +2039,7 @@ msgctxt ""
"par_id1681875\n"
"help.text"
msgid "<image id=\"img_id7340617\" src=\"media/helpimg/border_wr_8.png\" width=\"1.4071in\" height=\"1.2555in\"><alt id=\"alt_id7340617\">white line for border</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id7340617\" src=\"media/helpimg/border_wr_8.png\" width=\"1.4071in\" height=\"1.2555in\"><alt id=\"alt_id7340617\">liña branca para o bordo</alt></image>"
#: borders.xhp
msgctxt ""
@@ -2063,7 +2063,7 @@ msgctxt ""
"par_id5118564\n"
"help.text"
msgid "Select a single cell in a Writer table, then choose <emph>Table - Properties - Borders</emph>."
-msgstr ""
+msgstr "Seleccione unha única cela nunha táboa de Writer e escolla <emph>Táboa - Propiedades - Bordos</emph>."
#: borders.xhp
msgctxt ""
@@ -2087,7 +2087,7 @@ msgctxt ""
"par_id542313\n"
"help.text"
msgid "<image id=\"img_id4273506\" src=\"media/helpimg/border_wr_6.png\" width=\"1.4071in\" height=\"1.2555in\"><alt id=\"alt_id4273506\">setting thick lower border</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id4273506\" src=\"media/helpimg/border_wr_6.png\" width=\"1.4071in\" height=\"1.2555in\"><alt id=\"alt_id4273506\">configurar bordo inferior espeso</alt></image>"
#: borders.xhp
msgctxt ""
diff --git a/source/gl/officecfg/registry/data/org/openoffice/Office/UI.po b/source/gl/officecfg/registry/data/org/openoffice/Office/UI.po
index dfe4f026c43..b68f17a990a 100644
--- a/source/gl/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/gl/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-22 13:17+0200\n"
-"PO-Revision-Date: 2018-05-19 18:12+0000\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
+"PO-Revision-Date: 2018-06-11 10:06+0000\n"
"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: gl\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1526753559.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1528711569.000000\n"
#: BaseWindowState.xcu
msgctxt ""
@@ -149,7 +149,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Form Horizontal Scroll Bar"
-msgstr ""
+msgstr "Barra de desprazamento horizontal de formulario"
#: BasicIDECommands.xcu
msgctxt ""
@@ -4397,7 +4397,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Notebookbar"
-msgstr "Barra de notebook"
+msgstr "Barra global"
#: CalcWindowState.xcu
msgctxt ""
@@ -4793,7 +4793,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Notebookbar shortcuts"
-msgstr "Atallos da barra notebook"
+msgstr "Atallos da barra global"
#: ChartCommands.xcu
msgctxt ""
@@ -7601,7 +7601,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Page ~Count"
-msgstr "~Conta de páxinas"
+msgstr "~Cantidade de páxinas"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -19537,7 +19537,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Notebookbar"
-msgstr "Barra de notebook"
+msgstr "Barra global"
#: GenericCommands.xcu
msgctxt ""
@@ -21427,7 +21427,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Current Bullet List Type"
-msgstr "Tipo de lista de viñetas actual"
+msgstr "Tipo de lista con viñetas actual"
#: GenericCommands.xcu
msgctxt ""
@@ -22885,7 +22885,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "%PRODUCTNAME Basic Macro Organizer..."
-msgstr "Organizador de macros Basic de %PRODUCTNAME..."
+msgstr "Organizador de macros no Basic de %PRODUCTNAME..."
#: GenericCommands.xcu
msgctxt ""
@@ -23218,7 +23218,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Notebookbar"
-msgstr "Barra de notebook"
+msgstr "Barra global"
#: ImpressWindowState.xcu
msgctxt ""
@@ -23776,7 +23776,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Notebookbar shortcuts"
-msgstr "Atallos da barra notebook"
+msgstr "Atallos da barra global"
#: MathCommands.xcu
msgctxt ""
@@ -25342,7 +25342,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Tabbed"
-msgstr ""
+msgstr "Con lapelas"
#: ToolbarMode.xcu
msgctxt ""
@@ -25351,7 +25351,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Groupedbar Compact"
-msgstr ""
+msgstr "Barra agrupada compacta"
#: ToolbarMode.xcu
msgctxt ""
@@ -25360,7 +25360,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Groupedbar"
-msgstr ""
+msgstr "Barra agrupada"
#: ToolbarMode.xcu
msgctxt ""
@@ -26386,7 +26386,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Mail Merge Wi~zard..."
-msgstr "~Asistente de combinación de correo..."
+msgstr "~Asistente de combinación de correspondencia..."
#: WriterCommands.xcu
msgctxt ""
@@ -26520,8 +26520,8 @@ msgctxt ""
"..WriterCommands.UserInterface.Commands..uno:TextAttributes\n"
"Label\n"
"value.text"
-msgid "Text Attributes"
-msgstr "Atributos de texto"
+msgid "Text Attributes..."
+msgstr "Atributos de texto..."
#: WriterCommands.xcu
msgctxt ""
@@ -26629,7 +26629,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Page ~Count"
-msgstr "~Conta de páxinas"
+msgstr "~Cantidade de páxinas"
#: WriterCommands.xcu
msgctxt ""
@@ -30121,7 +30121,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Bullet List"
-msgstr "Lista de viñetas"
+msgstr "Lista con viñetas"
#: WriterCommands.xcu
msgctxt ""
@@ -32182,7 +32182,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Notebookbar"
-msgstr "Barra de notebook"
+msgstr "Barra global"
#: WriterWindowState.xcu
msgctxt ""
@@ -32236,7 +32236,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Notebookbar shortcuts"
-msgstr "Atallos da barra notebook"
+msgstr "Atallos da barra global"
#: WriterWindowState.xcu
msgctxt ""
@@ -32263,7 +32263,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Mail Merge"
-msgstr "Combinación de correo"
+msgstr "Combinación de correspondencia"
#: WriterWindowState.xcu
msgctxt ""
diff --git a/source/gl/readlicense_oo/docs.po b/source/gl/readlicense_oo/docs.po
index fcaf0fe4a7a..3e6988a27ee 100644
--- a/source/gl/readlicense_oo/docs.po
+++ b/source/gl/readlicense_oo/docs.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: 2018-04-17 15:54+0200\n"
-"PO-Revision-Date: 2018-04-24 21:52+0000\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
+"PO-Revision-Date: 2018-06-04 19:21+0000\n"
"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: gl\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1524606738.000000\n"
+"X-POOTLE-MTIME: 1528140117.000000\n"
#: readme.xrm
msgctxt ""
@@ -117,8 +117,8 @@ msgctxt ""
"readme.xrm\n"
"macxiOSX\n"
"readmeitem.text"
-msgid "MacOSX 10.8 (Mountain Lion) or higher"
-msgstr "MacOSX 10.8 (Mountain Lion) ou máis recente"
+msgid "MacOSX 10.9 (Mavericks) or higher"
+msgstr "MacOSX 10.9 (Mavericks) ou superior"
#: readme.xrm
msgctxt ""
diff --git a/source/gl/sc/messages.po b/source/gl/sc/messages.po
index 0d20c23a2fb..b8d93eb6d72 100644
--- a/source/gl/sc/messages.po
+++ b/source/gl/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: 2018-05-22 13:16+0200\n"
-"PO-Revision-Date: 2018-05-19 18:13+0000\n"
+"POT-Creation-Date: 2018-06-12 14:40+0200\n"
+"PO-Revision-Date: 2018-06-13 21:32+0000\n"
"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: gl\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1526753629.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1528925564.000000\n"
#: sc/inc/compiler.hrc:27
msgctxt "RID_FUNCTION_CATEGORIES"
@@ -1870,16 +1870,21 @@ msgid "Nested arrays are not supported."
msgstr "As matrices aniñadas non se admiten."
#: sc/inc/globstr.hrc:390
+msgctxt "STR_ERR_LONG_BAD_ARRAY_CONTENT"
+msgid "Unsupported inline array content."
+msgstr "Contido de matriz interna non admitido."
+
+#: sc/inc/globstr.hrc:391
msgctxt "STR_UNDO_TEXTTOCOLUMNS"
msgid "Text to Columns"
msgstr "Texto para columnas"
-#: sc/inc/globstr.hrc:391
+#: sc/inc/globstr.hrc:392
msgctxt "STR_DOC_UPDATED"
msgid "Your spreadsheet has been updated with changes saved by other users."
msgstr "A súa folla de cálculo actualizouse con cambios gardados por outros usuarios."
-#: sc/inc/globstr.hrc:392
+#: sc/inc/globstr.hrc:393
msgctxt "STR_DOC_WILLBESAVED"
msgid ""
"The spreadsheet must be saved now to activate sharing mode.\n"
@@ -1890,7 +1895,7 @@ msgstr ""
"\n"
"Quere continuar?"
-#: sc/inc/globstr.hrc:393
+#: sc/inc/globstr.hrc:394
msgctxt "STR_DOC_WILLNOTBESAVED"
msgid ""
"Already resolved merge conflicts will be lost and your changes to the shared spreadsheet will not be saved.\n"
@@ -1901,7 +1906,7 @@ msgstr ""
"\n"
"Quere continuar?"
-#: sc/inc/globstr.hrc:394
+#: sc/inc/globstr.hrc:395
msgctxt "STR_DOC_DISABLESHARED"
msgid ""
"Disabling shared mode of a spreadsheet hinders all other users of the shared spreadsheet to merge back their work.\n"
@@ -1912,7 +1917,7 @@ msgstr ""
"\n"
"Quere continuar?"
-#: sc/inc/globstr.hrc:395
+#: sc/inc/globstr.hrc:396
msgctxt "STR_DOC_NOLONGERSHARED"
msgid ""
"This spreadsheet is no longer in shared mode.\n"
@@ -1923,7 +1928,7 @@ msgstr ""
"\n"
"Garde a súa folla de cálculo nun ficheiro separado e combine manualmente os seus cambios na folla de cálculo compartida."
-#: sc/inc/globstr.hrc:396
+#: sc/inc/globstr.hrc:397
msgctxt "STR_FILE_LOCKED_TRY_LATER"
msgid ""
"The shared spreadsheet file is locked due to a merge in progress by user: '%1'\n"
@@ -1934,7 +1939,7 @@ msgstr ""
"\n"
"O modo compartido dun ficheiro bloqueado non se pode desactivar. Ténteo de novo máis adiante."
-#: sc/inc/globstr.hrc:397
+#: sc/inc/globstr.hrc:398
msgctxt "STR_FILE_LOCKED_SAVE_LATER"
msgid ""
"The shared spreadsheet file is locked due to a merge in progress by user: '%1'\n"
@@ -1945,147 +1950,147 @@ msgstr ""
"\n"
"Tente gardar de novo os seus cambios máis tarde."
-#: sc/inc/globstr.hrc:398
+#: sc/inc/globstr.hrc:399
msgctxt "STR_UNKNOWN_USER"
msgid "Unknown User"
msgstr "Usuario descoñecido"
-#: sc/inc/globstr.hrc:399
+#: sc/inc/globstr.hrc:400
msgctxt "STR_SHAPE_AUTOSHAPE"
msgid "AutoShape"
msgstr "Autoforma"
-#: sc/inc/globstr.hrc:400
+#: sc/inc/globstr.hrc:401
msgctxt "STR_SHAPE_RECTANGLE"
msgid "Rectangle"
msgstr "Rectángulo"
-#: sc/inc/globstr.hrc:401
+#: sc/inc/globstr.hrc:402
msgctxt "STR_SHAPE_LINE"
msgid "Line"
msgstr "Liña"
-#: sc/inc/globstr.hrc:402
+#: sc/inc/globstr.hrc:403
msgctxt "STR_SHAPE_OVAL"
msgid "Oval"
msgstr "Óvalo"
-#: sc/inc/globstr.hrc:403
+#: sc/inc/globstr.hrc:404
msgctxt "STR_FORM_BUTTON"
msgid "Button"
msgstr "Botón"
-#: sc/inc/globstr.hrc:404
+#: sc/inc/globstr.hrc:405
msgctxt "STR_FORM_CHECKBOX"
msgid "Check Box"
msgstr "Caixa de selección"
-#: sc/inc/globstr.hrc:405
+#: sc/inc/globstr.hrc:406
msgctxt "STR_FORM_OPTIONBUTTON"
msgid "Option Button"
msgstr "Botón de opción"
-#: sc/inc/globstr.hrc:406
+#: sc/inc/globstr.hrc:407
msgctxt "STR_FORM_LABEL"
msgid "Label"
msgstr "Etiqueta"
-#: sc/inc/globstr.hrc:407
+#: sc/inc/globstr.hrc:408
msgctxt "STR_FORM_LISTBOX"
msgid "List Box"
msgstr "Caixa de lista"
-#: sc/inc/globstr.hrc:408
+#: sc/inc/globstr.hrc:409
msgctxt "STR_FORM_GROUPBOX"
msgid "Group Box"
msgstr "Caixa de grupo"
-#: sc/inc/globstr.hrc:409
+#: sc/inc/globstr.hrc:410
msgctxt "STR_FORM_DROPDOWN"
msgid "Drop Down"
msgstr "Lista despregábel"
-#: sc/inc/globstr.hrc:410
+#: sc/inc/globstr.hrc:411
msgctxt "STR_FORM_SPINNER"
msgid "Spinner"
msgstr "Botón de selección"
-#: sc/inc/globstr.hrc:411
+#: sc/inc/globstr.hrc:412
msgctxt "STR_FORM_SCROLLBAR"
msgid "Scroll Bar"
msgstr "Barra de desprazamento"
-#: sc/inc/globstr.hrc:412
+#: sc/inc/globstr.hrc:413
msgctxt "STR_STYLE_FAMILY_CELL"
msgid "Cell Styles"
msgstr "Estilos de cela"
-#: sc/inc/globstr.hrc:413
+#: sc/inc/globstr.hrc:414
msgctxt "STR_STYLE_FAMILY_PAGE"
msgid "Page Styles"
msgstr "Estilos de páxina"
-#: sc/inc/globstr.hrc:414
+#: sc/inc/globstr.hrc:415
msgctxt "STR_ERR_DATAPILOTSOURCE"
msgid "Pivot table source data is invalid."
msgstr "A orixe dos datos da táboa dinámica non é correcta."
-#: sc/inc/globstr.hrc:415
+#: sc/inc/globstr.hrc:416
msgctxt "STR_OPTIONS_WARN_SEPARATORS"
msgid "Because the current formula separator settings conflict with the locale, the formula separators have been reset to their default values."
msgstr "Xa que a configuración actual do separador de fórmulas ten un conflito coa configuración do idioma local, os separadores de fórmula cambiáronse para retomar os valores predeterminados."
-#: sc/inc/globstr.hrc:416
+#: sc/inc/globstr.hrc:417
msgctxt "STR_UNDO_INSERT_CURRENT_DATE"
msgid "Insert Current Date"
msgstr "Inserir data actual"
-#: sc/inc/globstr.hrc:417
+#: sc/inc/globstr.hrc:418
msgctxt "STR_UNDO_INSERT_CURRENT_TIME"
msgid "Insert Current Time"
msgstr "Inserir hora actual"
-#: sc/inc/globstr.hrc:418
+#: sc/inc/globstr.hrc:419
msgctxt "STR_MANAGE_NAMES"
msgid "Manage Names..."
msgstr "Xestionar nomes..."
-#: sc/inc/globstr.hrc:419
+#: sc/inc/globstr.hrc:420
msgctxt "STR_HEADER_NAME"
msgid "Name"
msgstr "Nome"
-#: sc/inc/globstr.hrc:420
+#: sc/inc/globstr.hrc:421
msgctxt "STR_HEADER_RANGE_OR_EXPR"
msgid "Range or formula expression"
msgstr "Intervalo ou expresión de fórmula"
-#: sc/inc/globstr.hrc:421
+#: sc/inc/globstr.hrc:422
msgctxt "STR_HEADER_SCOPE"
msgid "Scope"
msgstr "Ámbito"
-#: sc/inc/globstr.hrc:422
+#: sc/inc/globstr.hrc:423
msgctxt "STR_MULTI_SELECT"
msgid "(multiple)"
msgstr "(múltiplo)"
-#: sc/inc/globstr.hrc:423
+#: sc/inc/globstr.hrc:424
msgctxt "STR_GLOBAL_SCOPE"
msgid "Document (Global)"
msgstr "Documento (global)"
-#: sc/inc/globstr.hrc:424
+#: sc/inc/globstr.hrc:425
msgctxt "STR_ERR_NAME_EXISTS"
msgid "Invalid name. Already in use for the selected scope."
msgstr "Nome incorrecto. Xa se usa na expresión seleccionada."
-#: sc/inc/globstr.hrc:425
+#: sc/inc/globstr.hrc:426
msgctxt "STR_ERR_NAME_INVALID"
msgid "Invalid name. Only use letters, numbers and underscore."
msgstr "Nome incorrecto. Use soamente letras, números e guión baixo."
-#: sc/inc/globstr.hrc:426
+#: sc/inc/globstr.hrc:427
msgctxt "STR_UNSAVED_EXT_REF"
msgid ""
"This Document contains external references to unsaved documents.\n"
@@ -2096,217 +2101,217 @@ msgstr ""
"\n"
"Quere continuar?"
-#: sc/inc/globstr.hrc:427
+#: sc/inc/globstr.hrc:428
msgctxt "STR_CLOSE_WITH_UNSAVED_REFS"
msgid "This Document is referenced by another document and not yet saved. Closing it without saving will result in data loss."
msgstr "Este documento referénciase desde outro documento e aínda non se gardou. Se o pecha sen gardar producirase unha perda de datos."
-#: sc/inc/globstr.hrc:428
+#: sc/inc/globstr.hrc:429
msgctxt "STR_HEADER_RANGE"
msgid "Range"
msgstr "Intervalo"
-#: sc/inc/globstr.hrc:429
+#: sc/inc/globstr.hrc:430
msgctxt "STR_HEADER_COND"
msgid "First Condition"
msgstr "Primeira condición"
-#: sc/inc/globstr.hrc:430
+#: sc/inc/globstr.hrc:431
msgctxt "STR_COND_CONDITION"
msgid "Cell value is"
msgstr "O valor da cela é"
-#: sc/inc/globstr.hrc:431
+#: sc/inc/globstr.hrc:432
msgctxt "STR_COND_COLORSCALE"
msgid "ColorScale"
msgstr "EscalaCor"
-#: sc/inc/globstr.hrc:432
+#: sc/inc/globstr.hrc:433
msgctxt "STR_COND_DATABAR"
msgid "DataBar"
msgstr "Barra de datos"
-#: sc/inc/globstr.hrc:433
+#: sc/inc/globstr.hrc:434
msgctxt "STR_COND_ICONSET"
msgid "IconSet"
msgstr "Conxunto de iconas"
-#: sc/inc/globstr.hrc:434
+#: sc/inc/globstr.hrc:435
msgctxt "STR_COND_BETWEEN"
msgid "between"
msgstr "entre"
-#: sc/inc/globstr.hrc:435
+#: sc/inc/globstr.hrc:436
msgctxt "STR_COND_NOTBETWEEN"
msgid "not between"
msgstr "non entre"
-#: sc/inc/globstr.hrc:436
+#: sc/inc/globstr.hrc:437
msgctxt "STR_COND_UNIQUE"
msgid "unique"
msgstr "único"
-#: sc/inc/globstr.hrc:437
+#: sc/inc/globstr.hrc:438
msgctxt "STR_COND_DUPLICATE"
msgid "duplicate"
msgstr "duplicado"
-#: sc/inc/globstr.hrc:438
+#: sc/inc/globstr.hrc:439
msgctxt "STR_COND_FORMULA"
msgid "Formula is"
msgstr "A fórmula é"
-#: sc/inc/globstr.hrc:439
+#: sc/inc/globstr.hrc:440
msgctxt "STR_COND_TOP10"
msgid "Top Elements"
msgstr "Elementos superiores"
-#: sc/inc/globstr.hrc:440
+#: sc/inc/globstr.hrc:441
msgctxt "STR_COND_BOTTOM10"
msgid "Bottom Elements"
msgstr "Elementos inferiores"
-#: sc/inc/globstr.hrc:441
+#: sc/inc/globstr.hrc:442
msgctxt "STR_COND_TOP_PERCENT"
msgid "Top Percent"
msgstr "Porcentaxe superior"
-#: sc/inc/globstr.hrc:442
+#: sc/inc/globstr.hrc:443
msgctxt "STR_COND_DATE"
msgid "Date is"
msgstr "A data é"
-#: sc/inc/globstr.hrc:443
+#: sc/inc/globstr.hrc:444
msgctxt "STR_COND_BOTTOM_PERCENT"
msgid "Bottom Percent"
msgstr "Porcentaxe inferior"
-#: sc/inc/globstr.hrc:444
+#: sc/inc/globstr.hrc:445
msgctxt "STR_COND_ABOVE_AVERAGE"
msgid "Above Average"
msgstr "Por riba da media"
-#: sc/inc/globstr.hrc:445
+#: sc/inc/globstr.hrc:446
msgctxt "STR_COND_BELOW_AVERAGE"
msgid "Below Average"
msgstr "Por baixo da media"
-#: sc/inc/globstr.hrc:446
+#: sc/inc/globstr.hrc:447
msgctxt "STR_COND_ABOVE_EQUAL_AVERAGE"
msgid "Above or equal Average"
msgstr "Igual ou superior á media"
-#: sc/inc/globstr.hrc:447
+#: sc/inc/globstr.hrc:448
msgctxt "STR_COND_BELOW_EQUAL_AVERAGE"
msgid "Below or equal Average"
msgstr "Igual ou inferior á media"
-#: sc/inc/globstr.hrc:448
+#: sc/inc/globstr.hrc:449
msgctxt "STR_COND_ERROR"
msgid "an Error code"
msgstr "un código de erro"
-#: sc/inc/globstr.hrc:449
+#: sc/inc/globstr.hrc:450
msgctxt "STR_COND_NOERROR"
msgid "not an Error code"
msgstr "non é un código de erro"
-#: sc/inc/globstr.hrc:450
+#: sc/inc/globstr.hrc:451
msgctxt "STR_COND_BEGINS_WITH"
msgid "Begins with"
msgstr "Comeza con"
-#: sc/inc/globstr.hrc:451
+#: sc/inc/globstr.hrc:452
msgctxt "STR_COND_ENDS_WITH"
msgid "Ends with"
msgstr "Remata con"
-#: sc/inc/globstr.hrc:452
+#: sc/inc/globstr.hrc:453
msgctxt "STR_COND_CONTAINS"
msgid "Contains"
msgstr "Contén"
-#: sc/inc/globstr.hrc:453
+#: sc/inc/globstr.hrc:454
msgctxt "STR_COND_NOT_CONTAINS"
msgid "Not Contains"
msgstr "Non contén"
-#: sc/inc/globstr.hrc:454
+#: sc/inc/globstr.hrc:455
msgctxt "STR_COND_TODAY"
msgid "today"
msgstr "hoxe"
-#: sc/inc/globstr.hrc:455
+#: sc/inc/globstr.hrc:456
msgctxt "STR_COND_YESTERDAY"
msgid "yesterday"
msgstr "onte"
-#: sc/inc/globstr.hrc:456
+#: sc/inc/globstr.hrc:457
msgctxt "STR_COND_TOMORROW"
msgid "tomorrow"
msgstr "mañá"
-#: sc/inc/globstr.hrc:457
+#: sc/inc/globstr.hrc:458
msgctxt "STR_COND_LAST7DAYS"
msgid "in the last 7 days"
msgstr "nos últimos 7 días"
-#: sc/inc/globstr.hrc:458
+#: sc/inc/globstr.hrc:459
msgctxt "STR_COND_THISWEEK"
msgid "this week"
msgstr "esta semana"
-#: sc/inc/globstr.hrc:459
+#: sc/inc/globstr.hrc:460
msgctxt "STR_COND_LASTWEEK"
msgid "last week"
msgstr "a semana pasada"
-#: sc/inc/globstr.hrc:460
+#: sc/inc/globstr.hrc:461
msgctxt "STR_COND_NEXTWEEK"
msgid "next week"
msgstr "a vindeira semana"
-#: sc/inc/globstr.hrc:461
+#: sc/inc/globstr.hrc:462
msgctxt "STR_COND_THISMONTH"
msgid "this month"
msgstr "este mes"
-#: sc/inc/globstr.hrc:462
+#: sc/inc/globstr.hrc:463
msgctxt "STR_COND_LASTMONTH"
msgid "last month"
msgstr "o mes pasado"
-#: sc/inc/globstr.hrc:463
+#: sc/inc/globstr.hrc:464
msgctxt "STR_COND_NEXTMONTH"
msgid "next month"
msgstr "o mes vindeiro"
-#: sc/inc/globstr.hrc:464
+#: sc/inc/globstr.hrc:465
msgctxt "STR_COND_THISYEAR"
msgid "this year"
msgstr "este ano"
-#: sc/inc/globstr.hrc:465
+#: sc/inc/globstr.hrc:466
msgctxt "STR_COND_LASTYEAR"
msgid "last year"
msgstr "o ano pasado"
-#: sc/inc/globstr.hrc:466
+#: sc/inc/globstr.hrc:467
msgctxt "STR_COND_NEXTYEAR"
msgid "next year"
msgstr "o ano vindeiro"
-#: sc/inc/globstr.hrc:467
+#: sc/inc/globstr.hrc:468
msgctxt "STR_COND_AND"
msgid "and"
msgstr "e"
-#: sc/inc/globstr.hrc:468
+#: sc/inc/globstr.hrc:469
msgctxt "STR_ERR_CONDFORMAT_PROTECTED"
msgid "Conditional Formats can not be created, deleted or changed in protected sheets."
msgstr "Non é posíbel crear, eliminar ou cambiar formatos condicionais en follas protexidas."
-#: sc/inc/globstr.hrc:469
+#: sc/inc/globstr.hrc:470
msgctxt "STR_EDIT_EXISTING_COND_FORMATS"
msgid ""
"The selected cell already contains conditional formatting. You can either edit the existing conditional format or you define a new overlapping conditional format.\n"
@@ -2317,7 +2322,7 @@ msgstr ""
"\n"
" Quere editar o formato condicional existente?"
-#: sc/inc/globstr.hrc:470
+#: sc/inc/globstr.hrc:471
msgctxt "STR_QUERY_FORMULA_RECALC_ONLOAD_ODS"
msgid ""
"This document was last saved by an application other than %PRODUCTNAME. Some formula cells may produce different results when recalculated.\n"
@@ -2328,7 +2333,7 @@ msgstr ""
"\n"
"Quere recalcular agora todas as celas con fórmula deste documento?"
-#: sc/inc/globstr.hrc:471
+#: sc/inc/globstr.hrc:472
msgctxt "STR_QUERY_FORMULA_RECALC_ONLOAD_XLS"
msgid ""
"This document was last saved by Excel. Some formula cells may produce different results when recalculated.\n"
@@ -2339,77 +2344,77 @@ msgstr ""
"\n"
"Quere recalcular agora todas as celas con fórmulas?"
-#: sc/inc/globstr.hrc:472
+#: sc/inc/globstr.hrc:473
msgctxt "STR_NO_INSERT_DELETE_OVER_PIVOT_TABLE"
msgid "You cannot insert or delete cells when the affected range intersects with pivot table."
msgstr "Non é posíbel inserir ou eliminar celas se o intervalo afectado interfire coa táboa dinámica."
-#: sc/inc/globstr.hrc:473
+#: sc/inc/globstr.hrc:474
msgctxt "STR_DPFIELD_GROUP_BY_SECONDS"
msgid "Seconds"
msgstr "Segundos"
-#: sc/inc/globstr.hrc:474
+#: sc/inc/globstr.hrc:475
msgctxt "STR_DPFIELD_GROUP_BY_MINUTES"
msgid "Minutes"
msgstr "Minutos"
-#: sc/inc/globstr.hrc:475
+#: sc/inc/globstr.hrc:476
msgctxt "STR_DPFIELD_GROUP_BY_HOURS"
msgid "Hours"
msgstr "Horas"
-#: sc/inc/globstr.hrc:476
+#: sc/inc/globstr.hrc:477
msgctxt "STR_DPFIELD_GROUP_BY_DAYS"
msgid "Days"
msgstr "Días"
-#: sc/inc/globstr.hrc:477
+#: sc/inc/globstr.hrc:478
msgctxt "STR_DPFIELD_GROUP_BY_MONTHS"
msgid "Months"
msgstr "Meses"
-#: sc/inc/globstr.hrc:478
+#: sc/inc/globstr.hrc:479
msgctxt "STR_DPFIELD_GROUP_BY_QUARTERS"
msgid "Quarters"
msgstr "Trimestre"
-#: sc/inc/globstr.hrc:479
+#: sc/inc/globstr.hrc:480
msgctxt "STR_DPFIELD_GROUP_BY_YEARS"
msgid "Years"
msgstr "Anos"
-#: sc/inc/globstr.hrc:480
+#: sc/inc/globstr.hrc:481
msgctxt "STR_INVALIDVAL"
msgid "Invalid target value."
msgstr "Valor de destino incorrecto."
-#: sc/inc/globstr.hrc:481
+#: sc/inc/globstr.hrc:482
msgctxt "STR_INVALIDVAR"
msgid "Undefined name for variable cell."
msgstr "Nome de cela variábel non definido."
-#: sc/inc/globstr.hrc:482
+#: sc/inc/globstr.hrc:483
msgctxt "STR_INVALIDFORM"
msgid "Undefined name as formula cell."
msgstr "Nome de cela de fórmula non definido."
-#: sc/inc/globstr.hrc:483
+#: sc/inc/globstr.hrc:484
msgctxt "STR_NOFORMULA"
msgid "Formula cell must contain a formula."
msgstr "A cela de fórmula debe conter unha fórmula."
-#: sc/inc/globstr.hrc:484
+#: sc/inc/globstr.hrc:485
msgctxt "STR_INVALIDINPUT"
msgid "Invalid input."
msgstr "Entrada incorrecta."
-#: sc/inc/globstr.hrc:485
+#: sc/inc/globstr.hrc:486
msgctxt "STR_INVALIDCONDITION"
msgid "Invalid condition."
msgstr "Condición incorrecta."
-#: sc/inc/globstr.hrc:486
+#: sc/inc/globstr.hrc:487
msgctxt "STR_QUERYREMOVE"
msgid ""
"Should the entry\n"
@@ -2420,133 +2425,133 @@ msgstr ""
"#\n"
"a entrada?"
-#: sc/inc/globstr.hrc:487
+#: sc/inc/globstr.hrc:488
msgctxt "STR_COPYLIST"
msgid "Copy List"
msgstr "Copiar lista"
-#: sc/inc/globstr.hrc:488
+#: sc/inc/globstr.hrc:489
msgctxt "STR_COPYFROM"
msgid "List from"
msgstr "Lista de"
-#: sc/inc/globstr.hrc:489
+#: sc/inc/globstr.hrc:490
msgctxt "STR_COPYERR"
msgid "Cells without text have been ignored."
msgstr "As celas sen texto foron ignoradas."
-#: sc/inc/globstr.hrc:490
+#: sc/inc/globstr.hrc:491
#, c-format
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%s-click to follow hyperlink:"
msgstr "%s+clic para abrir a ligazón:"
-#: sc/inc/globstr.hrc:491
+#: sc/inc/globstr.hrc:492
msgctxt "STR_CLICKHYPERLINK"
msgid "click to open hyperlink:"
msgstr "faga clic para abrir a hiperligazón:"
-#: sc/inc/globstr.hrc:492
+#: sc/inc/globstr.hrc:493
msgctxt "STR_PRINT_PREVIEW_NODATA"
msgid "No Data"
msgstr "Sen datos"
-#: sc/inc/globstr.hrc:493
+#: sc/inc/globstr.hrc:494
msgctxt "STR_PRINT_PREVIEW_EMPTY_RANGE"
msgid "Print Range Empty"
msgstr "Intervalo de impresión baleiro"
-#: sc/inc/globstr.hrc:494
+#: sc/inc/globstr.hrc:495
msgctxt "STR_UNDO_CONDFORMAT"
msgid "Conditional Format"
msgstr "Formato condicional"
-#: sc/inc/globstr.hrc:495
+#: sc/inc/globstr.hrc:496
msgctxt "STR_UNDO_CONDFORMAT_LIST"
msgid "Conditional Formats"
msgstr "Formatos condicionais"
-#: sc/inc/globstr.hrc:496
+#: sc/inc/globstr.hrc:497
msgctxt "STR_UNDO_FORMULA_TO_VALUE"
msgid "Convert Formula To Value"
msgstr "Converter fórmula en valor"
-#: sc/inc/globstr.hrc:497
+#: sc/inc/globstr.hrc:498
msgctxt "STR_UNQUOTED_STRING"
msgid "Strings without quotes are interpreted as column/row labels."
msgstr "As cadeas sen aspas interprétanse como etiquetas de columna/fila."
-#: sc/inc/globstr.hrc:498
+#: sc/inc/globstr.hrc:499
msgctxt "STR_ENTER_VALUE"
msgid "Enter a value!"
msgstr "Introduza un valor!"
-#: sc/inc/globstr.hrc:499
+#: sc/inc/globstr.hrc:500
msgctxt "STR_TABLE_COUNT"
msgid "Sheet %1 of %2"
msgstr "Folla %1 de %2"
-#: sc/inc/globstr.hrc:500
+#: sc/inc/globstr.hrc:501
msgctxt "STR_FUNCTIONS_FOUND"
msgid "%1 and %2 more"
msgstr "%1 e %2 máis"
-#: sc/inc/globstr.hrc:501
+#: sc/inc/globstr.hrc:502
msgctxt "STR_GENERAL"
msgid "General"
msgstr "Xeral"
-#: sc/inc/globstr.hrc:502
+#: sc/inc/globstr.hrc:503
msgctxt "STR_NUMBER"
msgid "Number"
msgstr "Número"
-#: sc/inc/globstr.hrc:503
+#: sc/inc/globstr.hrc:504
msgctxt "STR_PERCENT"
msgid "Percent"
msgstr "Porcentaxe"
-#: sc/inc/globstr.hrc:504
+#: sc/inc/globstr.hrc:505
msgctxt "STR_CURRENCY"
msgid "Currency"
msgstr "Moeda"
-#: sc/inc/globstr.hrc:505
+#: sc/inc/globstr.hrc:506
msgctxt "STR_DATE"
msgid "Date"
msgstr "Data"
-#: sc/inc/globstr.hrc:506
+#: sc/inc/globstr.hrc:507
msgctxt "STR_TIME"
msgid "Time"
msgstr "Tempo"
-#: sc/inc/globstr.hrc:507
+#: sc/inc/globstr.hrc:508
msgctxt "STR_SCIENTIFIC"
msgid "Scientific"
msgstr "Científico"
-#: sc/inc/globstr.hrc:508
+#: sc/inc/globstr.hrc:509
msgctxt "STR_FRACTION"
msgid "Fraction"
msgstr "Fracción"
-#: sc/inc/globstr.hrc:509
+#: sc/inc/globstr.hrc:510
msgctxt "STR_BOOLEAN_VALUE"
msgid "Boolean Value"
msgstr "Valor lóxico"
-#: sc/inc/globstr.hrc:510
+#: sc/inc/globstr.hrc:511
msgctxt "STR_TEXT"
msgid "Text"
msgstr "Texto"
-#: sc/inc/globstr.hrc:511
+#: sc/inc/globstr.hrc:512
msgctxt "STR_QUERY_PIVOTTABLE_DELTAB"
msgid "The selected sheet(s) contain source data of related pivot tables that will be lost. Are you sure you want to delete the selected sheet(s)?"
msgstr "A folla ou follas seleccionadas conteñen datos de orixe para táboas dinámicas relacionadas que se perderán. Confirma que quere eliminar a follas seleccionadas?"
-#: sc/inc/globstr.hrc:512
+#: sc/inc/globstr.hrc:513
msgctxt "STR_ERR_NAME_INVALID_CELL_REF"
msgid "Invalid name. Reference to a cell, or a range of cells not allowed."
msgstr "Nome incorrecto. A referencia a unha cela, ou rango delas, non está permitido"
@@ -10488,7 +10493,7 @@ msgstr "Modo"
#: sc/inc/scfuncs.hrc:3010
msgctxt "SC_OPCODE_T_TEST"
-msgid "Mode specifies the number of distribution tails to return. 1= one-tailed, 2 = two-tailed distribution"
+msgid "Mode specifies the number of distribution tails to return. 1 = one-tailed, 2 = two-tailed distribution"
msgstr "O modo especifica o número de lados da distribución que será devolvido. 1= distribución unilateral, 2 = bilateral"
#: sc/inc/scfuncs.hrc:3011
@@ -10533,8 +10538,8 @@ msgstr "Modo"
#: sc/inc/scfuncs.hrc:3024
msgctxt "SC_OPCODE_T_TEST_MS"
-msgid "Mode specifies the number of distribution tails to return. 1= one-tailed, 2 = two-tailed distribution"
-msgstr "O modo especifica o número de colas da distribución que se devolverán. 1= unha cola, 2 = dúas colas"
+msgid "Mode specifies the number of distribution tails to return. 1 = one-tailed, 2 = two-tailed distribution"
+msgstr "O modo especifica o número de lados da distribución que será devolvido. 1= distribución unilateral, 2 = bilateral"
#: sc/inc/scfuncs.hrc:3025
msgctxt "SC_OPCODE_T_TEST_MS"
@@ -13342,7 +13347,7 @@ msgstr "Subtraendo 1, subtraendo 2, ... son argumentos numéricos restados do mi
#: sc/inc/scfuncs.hrc:4063
msgctxt "SC_OPCODE_ROUNDSIG"
msgid "Rounds a number to predefined significant digits."
-msgstr "Arredonda un número ata os decimais significativos predefinidos."
+msgstr "Arredonda un número ata os decimais significativos predeterminados."
#: sc/inc/scfuncs.hrc:4064
msgctxt "SC_OPCODE_ROUNDSIG"
@@ -18020,22 +18025,22 @@ msgctxt "mergecellsdialog|MergeCellsDialog"
msgid "Merge Cells"
msgstr "Combinar as celas"
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:81
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:84
msgctxt "mergecellsdialog|label"
msgid "Some cells are not empty."
msgstr "Algunhas celas non están baleiras."
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:96
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:99
msgctxt "mergecellsdialog|move-cells-radio"
msgid "Move the contents of the hidden cells into the first cell"
msgstr "Mover o contido das celas agochadas para a primeira cela"
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:112
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:115
msgctxt "mergecellsdialog|empty-cells-radio"
msgid "Empty the contents of the hidden cells"
msgstr "Baleirar o contido das celas agochadas"
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:128
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:131
msgctxt "mergecellsdialog|keep-content-radio"
msgid "Keep the contents of the hidden cells"
msgstr "Gardar os contidos das celas agochadas"
@@ -18303,12 +18308,12 @@ msgstr "Bus_car actualizacións..."
#: sc/uiconfig/scalc/ui/notebookbar.ui:1952
msgctxt "notebookbar|FileLabel"
msgid "_File"
-msgstr ""
+msgstr "_Ficheiro"
#: sc/uiconfig/scalc/ui/notebookbar.ui:1971
msgctxt "notebookbar|HelpMenuButton"
msgid "_Help"
-msgstr ""
+msgstr "A_xuda"
#: sc/uiconfig/scalc/ui/notebookbar.ui:2769
msgctxt "notebookbar|FileLabel"
@@ -18334,7 +18339,7 @@ msgstr "Reducir o sangrado"
#: sc/uiconfig/scalc/ui/notebookbar.ui:4436
msgctxt "notebookbar|HomeMenuButton"
msgid "_Home"
-msgstr ""
+msgstr "_Inicio"
#: sc/uiconfig/scalc/ui/notebookbar.ui:4544
msgctxt "notebookbar|CalcLabel"
@@ -18344,12 +18349,12 @@ msgstr "Inicio"
#: sc/uiconfig/scalc/ui/notebookbar.ui:4991
msgctxt "notebookbar|FieldMenuButton"
msgid "Fiel_d"
-msgstr ""
+msgstr "Ca_mpo"
#: sc/uiconfig/scalc/ui/notebookbar.ui:5496
msgctxt "notebookbar|InsertMenuButton"
msgid "_Insert"
-msgstr ""
+msgstr "_Inserir"
#: sc/uiconfig/scalc/ui/notebookbar.ui:5581
msgctxt "notebookbar|InsertLabel"
@@ -18359,7 +18364,7 @@ msgstr "Inserir"
#: sc/uiconfig/scalc/ui/notebookbar.ui:5610
msgctxt "notebookbar|reviewb"
msgid "Pag_e"
-msgstr ""
+msgstr "Pá_xina"
#: sc/uiconfig/scalc/ui/notebookbar.ui:6335
msgctxt "notebookbar|PageLayoutLabel"
@@ -18374,7 +18379,7 @@ msgstr "E_statísticas"
#: sc/uiconfig/scalc/ui/notebookbar.ui:7304
msgctxt "notebookbar|DataMenuButton"
msgid "_Data"
-msgstr ""
+msgstr "_Datos"
#: sc/uiconfig/scalc/ui/notebookbar.ui:7412
msgctxt "notebookbar|DataLabel"
@@ -18384,7 +18389,7 @@ msgstr "Datos"
#: sc/uiconfig/scalc/ui/notebookbar.ui:8035
msgctxt "notebookbar|ReviewMenuButton"
msgid "_Review"
-msgstr ""
+msgstr "_Revisar"
#: sc/uiconfig/scalc/ui/notebookbar.ui:8120
msgctxt "notebookbar|ReviewLabel"
@@ -18394,7 +18399,7 @@ msgstr "Revisar"
#: sc/uiconfig/scalc/ui/notebookbar.ui:8896
msgctxt "notebookbar|ViewMenuButton"
msgid "_View"
-msgstr ""
+msgstr "_Ver"
#: sc/uiconfig/scalc/ui/notebookbar.ui:8981
msgctxt "notebookbar|ViewLabel"
@@ -18404,7 +18409,7 @@ msgstr "Ver"
#: sc/uiconfig/scalc/ui/notebookbar.ui:9008
msgctxt "notebookbar|GraphicMenuButton"
msgid "_Graphic"
-msgstr ""
+msgstr "_Gráfica"
#: sc/uiconfig/scalc/ui/notebookbar.ui:9949
msgctxt "notebookbar|ImageLabel"
@@ -18414,12 +18419,12 @@ msgstr "Imaxe"
#: sc/uiconfig/scalc/ui/notebookbar.ui:11228
msgctxt "notebookbar|DrawMenuButton"
msgid "D_raw"
-msgstr ""
+msgstr "Debuxa_r"
#: sc/uiconfig/scalc/ui/notebookbar.ui:11340
msgctxt "notebookbar|DrawLabel"
msgid "Draw"
-msgstr ""
+msgstr "Debuxar"
#: sc/uiconfig/scalc/ui/notebookbar.ui:11993
msgctxt "notebookbar|frame:MenuDraw"
@@ -18434,12 +18439,12 @@ msgstr "Obxecto"
#: sc/uiconfig/scalc/ui/notebookbar.ui:12113
msgctxt "notebookbar|ToolsMenuButton"
msgid "_Tools"
-msgstr ""
+msgstr "Ferramen_tas"
#: sc/uiconfig/scalc/ui/notebookbar.ui:13250
msgctxt "notebookbar|DevLabel"
msgid "Tools"
-msgstr ""
+msgstr "Ferramentas"
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:2945
msgctxt "notebookbar_groupedbar_compact|Menu"
@@ -22804,7 +22809,7 @@ msgstr "Números enteiros"
#: sc/uiconfig/scalc/ui/validationcriteriapage.ui:23
msgctxt "validationcriteriapage|liststore1"
msgid "Decimal"
-msgstr "Decimal"
+msgstr "Decimais"
#: sc/uiconfig/scalc/ui/validationcriteriapage.ui:27
msgctxt "validationcriteriapage|liststore1"
diff --git a/source/gl/scp2/source/ooo.po b/source/gl/scp2/source/ooo.po
index 96c01bdd146..6c64d41999c 100644
--- a/source/gl/scp2/source/ooo.po
+++ b/source/gl/scp2/source/ooo.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2018-05-23 23:20+0200\n"
-"PO-Revision-Date: 2018-03-05 22:39+0000\n"
+"PO-Revision-Date: 2018-05-29 16:15+0000\n"
"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: gl\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1520289596.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1527610544.000000\n"
#: folderitem_ooo.ulf
msgctxt ""
@@ -1886,7 +1886,7 @@ msgctxt ""
"STR_NAME_MODULE_LANGPACK_FY\n"
"LngText.text"
msgid "Frisian"
-msgstr ""
+msgstr "Frisón"
#: module_langpack.ulf
msgctxt ""
@@ -1894,7 +1894,7 @@ msgctxt ""
"STR_DESC_MODULE_LANGPACK_FY\n"
"LngText.text"
msgid "Installs the Frisian user interface"
-msgstr ""
+msgstr "Instala a interface de usuario en frisón"
#: module_langpack.ulf
msgctxt ""
diff --git a/source/gl/sd/messages.po b/source/gl/sd/messages.po
index 8f4955f552f..3b761ba8db4 100644
--- a/source/gl/sd/messages.po
+++ b/source/gl/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: 2018-05-22 13:16+0200\n"
-"PO-Revision-Date: 2018-05-22 08:11+0000\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
+"PO-Revision-Date: 2018-06-11 10:20+0000\n"
"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: gl\n"
@@ -13,170 +13,170 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1526976707.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1528712449.000000\n"
-#: sd/inc/DocumentRenderer.hrc:29
+#: sd/inc/DocumentRenderer.hrc:27
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Slides"
msgstr "Diapositivas"
-#: sd/inc/DocumentRenderer.hrc:30
+#: sd/inc/DocumentRenderer.hrc:28
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Handouts"
msgstr "Folletos"
-#: sd/inc/DocumentRenderer.hrc:31
+#: sd/inc/DocumentRenderer.hrc:29
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Notes"
msgstr "Notas"
-#: sd/inc/DocumentRenderer.hrc:32
+#: sd/inc/DocumentRenderer.hrc:30
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Outline"
msgstr "Esquema"
-#: sd/inc/DocumentRenderer.hrc:37
+#: sd/inc/DocumentRenderer.hrc:35
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "According to layout"
msgstr "Segundo o deseño"
-#: sd/inc/DocumentRenderer.hrc:38
+#: sd/inc/DocumentRenderer.hrc:36
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "1"
msgstr "1"
-#: sd/inc/DocumentRenderer.hrc:39
+#: sd/inc/DocumentRenderer.hrc:37
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "2"
msgstr "2"
-#: sd/inc/DocumentRenderer.hrc:40
+#: sd/inc/DocumentRenderer.hrc:38
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "3"
msgstr "3"
-#: sd/inc/DocumentRenderer.hrc:41
+#: sd/inc/DocumentRenderer.hrc:39
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "4"
msgstr "4"
-#: sd/inc/DocumentRenderer.hrc:42
+#: sd/inc/DocumentRenderer.hrc:40
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "6"
msgstr "6"
-#: sd/inc/DocumentRenderer.hrc:43
+#: sd/inc/DocumentRenderer.hrc:41
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "9"
msgstr "9"
-#: sd/inc/DocumentRenderer.hrc:48
+#: sd/inc/DocumentRenderer.hrc:46
msgctxt "STR_IMPRESS_PRINT_UI_ORDER_CHOICES"
msgid "Left to right, then down"
msgstr "De esquerda a dereita, e despois abaixo"
-#: sd/inc/DocumentRenderer.hrc:49
+#: sd/inc/DocumentRenderer.hrc:47
msgctxt "STR_IMPRESS_PRINT_UI_ORDER_CHOICES"
msgid "Top to bottom, then right"
msgstr "De arriba a abaixo, e despois á dereita"
-#: sd/inc/DocumentRenderer.hrc:54
+#: sd/inc/DocumentRenderer.hrc:52
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Original colors"
msgstr "Cores orixinais"
-#: sd/inc/DocumentRenderer.hrc:55
+#: sd/inc/DocumentRenderer.hrc:53
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Grayscale"
msgstr "Escala de grises"
-#: sd/inc/DocumentRenderer.hrc:56
+#: sd/inc/DocumentRenderer.hrc:54
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Black & white"
msgstr "Branco e negro"
-#: sd/inc/DocumentRenderer.hrc:61
+#: sd/inc/DocumentRenderer.hrc:59
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Original size"
msgstr "Tamaño orixinal"
-#: sd/inc/DocumentRenderer.hrc:62
+#: sd/inc/DocumentRenderer.hrc:60
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Fit to printable page"
msgstr "Axustar á páxina imprimíbel"
-#: sd/inc/DocumentRenderer.hrc:63
+#: sd/inc/DocumentRenderer.hrc:61
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Distribute on multiple sheets of paper"
msgstr "Distribuír en varias follas de papel"
-#: sd/inc/DocumentRenderer.hrc:64
+#: sd/inc/DocumentRenderer.hrc:62
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Tile sheet of paper with repeated slides"
msgstr "Folla mosaico de papel con diapositivas repetidas"
-#: sd/inc/DocumentRenderer.hrc:69
+#: sd/inc/DocumentRenderer.hrc:67
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Original size"
msgstr "Tamaño orixinal"
-#: sd/inc/DocumentRenderer.hrc:70
+#: sd/inc/DocumentRenderer.hrc:68
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Fit to printable page"
msgstr "Axustar á páxina imprimíbel"
-#: sd/inc/DocumentRenderer.hrc:71
+#: sd/inc/DocumentRenderer.hrc:69
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Distribute on multiple sheets of paper"
msgstr "Distribuír en varias follas de papel"
-#: sd/inc/DocumentRenderer.hrc:72
+#: sd/inc/DocumentRenderer.hrc:70
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Tile sheet of paper with repeated pages"
msgstr "Folla mosaico de papel con páxinas repetidas"
-#: sd/inc/DocumentRenderer.hrc:77
+#: sd/inc/DocumentRenderer.hrc:75
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "All pages"
msgstr "Todas as páxinas"
-#: sd/inc/DocumentRenderer.hrc:78
+#: sd/inc/DocumentRenderer.hrc:76
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "Front sides / right pages"
msgstr "Caras dianteiras / páxinas dereitas"
-#: sd/inc/DocumentRenderer.hrc:79
+#: sd/inc/DocumentRenderer.hrc:77
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "Back sides / left pages"
msgstr "Caras traseiras / páxinas esquerdas"
-#: sd/inc/DocumentRenderer.hrc:84
+#: sd/inc/DocumentRenderer.hrc:82
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~All slides"
msgstr "~Todas as diapositivas"
-#: sd/inc/DocumentRenderer.hrc:85
+#: sd/inc/DocumentRenderer.hrc:83
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~Slides"
msgstr "Diapo~sitivas"
-#: sd/inc/DocumentRenderer.hrc:86
+#: sd/inc/DocumentRenderer.hrc:84
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Se~lection"
msgstr "Se~lección"
-#: sd/inc/DocumentRenderer.hrc:91
+#: sd/inc/DocumentRenderer.hrc:89
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~All pages"
msgstr "~Todas as páxinas"
-#: sd/inc/DocumentRenderer.hrc:92
+#: sd/inc/DocumentRenderer.hrc:90
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Pa~ges"
msgstr "Pá~xinas"
-#: sd/inc/DocumentRenderer.hrc:93
+#: sd/inc/DocumentRenderer.hrc:91
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Se~lection"
msgstr "Se~lección"
@@ -1717,52 +1717,52 @@ msgstr "Obxecto sen recheo e sen liña"
#: sd/inc/strings.hrc:323
msgctxt "STR_POOLSHEET_FILLED"
msgid "Filled"
-msgstr ""
+msgstr "Cheo"
#: sd/inc/strings.hrc:324
msgctxt "STR_POOLSHEET_FILLED_BLUE"
msgid "Filled Blue"
-msgstr ""
+msgstr "Cheo azul"
#: sd/inc/strings.hrc:325
msgctxt "STR_POOLSHEET_FILLED_GREEN"
msgid "Filled Green"
-msgstr ""
+msgstr "Cheo verde"
#: sd/inc/strings.hrc:326
msgctxt "STR_POOLSHEET_FILLED_YELLOW"
msgid "Filled Yellow"
-msgstr ""
+msgstr "Cheo amarelo"
#: sd/inc/strings.hrc:327
msgctxt "STR_POOLSHEET_FILLED_RED"
msgid "Filled Red"
-msgstr ""
+msgstr "Cheo vermello"
#: sd/inc/strings.hrc:329
msgctxt "STR_POOLSHEET_OUTLINE"
msgid "Outlined"
-msgstr ""
+msgstr "Contorno"
#: sd/inc/strings.hrc:330
msgctxt "STR_POOLSHEET_OUTLINE_BLUE"
msgid "Outlined Blue"
-msgstr ""
+msgstr "Contorno azul"
#: sd/inc/strings.hrc:331
msgctxt "STR_POOLSHEET_OUTLINE_GREEN"
msgid "Outlined Green"
-msgstr ""
+msgstr "Contorno verde"
#: sd/inc/strings.hrc:332
msgctxt "STR_POOLSHEET_OUTLINE_YELLOW"
msgid "Outlined Yellow"
-msgstr ""
+msgstr "Contorno amarelo"
#: sd/inc/strings.hrc:333
msgctxt "STR_POOLSHEET_OUTLINE_RED"
msgid "Outlined Red"
-msgstr ""
+msgstr "Contorno vermello"
#: sd/inc/strings.hrc:335
msgctxt "STR_PSEUDOSHEET_TITLE"
@@ -3615,67 +3615,67 @@ msgstr "Bus_car actualizacións..."
#: sd/uiconfig/simpress/ui/notebookbar.ui:2422
msgctxt "notebookbar|FileLabel"
msgid "_File"
-msgstr ""
+msgstr "_Ficheiro"
#: sd/uiconfig/simpress/ui/notebookbar.ui:2441
msgctxt "notebookbar|HelpMenuButton"
msgid "_Help"
-msgstr ""
+msgstr "A_xuda"
#: sd/uiconfig/simpress/ui/notebookbar.ui:3230
msgctxt "notebookbar|FileLabel"
msgid "File"
-msgstr ""
+msgstr "Ficheiro"
#: sd/uiconfig/simpress/ui/notebookbar.ui:3389
msgctxt "notebookbar|HomeMenuButton"
msgid "_Home"
-msgstr ""
+msgstr "_Inicio"
#: sd/uiconfig/simpress/ui/notebookbar.ui:4846
msgctxt "notebookbar|HomeLabel"
msgid "Home"
-msgstr ""
+msgstr "Inicio"
#: sd/uiconfig/simpress/ui/notebookbar.ui:5293
msgctxt "notebookbar|FieldMenuButton"
msgid "Fiel_d"
-msgstr ""
+msgstr "Ca_mpo"
#: sd/uiconfig/simpress/ui/notebookbar.ui:5820
msgctxt "notebookbar|InsertMenuButton"
msgid "_Insert"
-msgstr ""
+msgstr "_Inserir"
#: sd/uiconfig/simpress/ui/notebookbar.ui:5905
msgctxt "notebookbar|InsertLabel"
msgid "Insert"
-msgstr ""
+msgstr "Inserir"
#: sd/uiconfig/simpress/ui/notebookbar.ui:5935
msgctxt "notebookbar|SlideMenuButton"
msgid "S_lide"
-msgstr ""
+msgstr "_Diapositiva"
#: sd/uiconfig/simpress/ui/notebookbar.ui:6688
msgctxt "notebookbar|LayoutLabel"
msgid "Slide"
-msgstr ""
+msgstr "Diapositiva"
#: sd/uiconfig/simpress/ui/notebookbar.ui:6716
msgctxt "notebookbar|SlideShowMenuButton"
msgid "_Slide Show"
-msgstr ""
+msgstr "Pre_sentación de diapositivas"
#: sd/uiconfig/simpress/ui/notebookbar.ui:7194
msgctxt "notebookbar|ReferencesLabel"
msgid "Slide Show"
-msgstr ""
+msgstr "Presentación de diapositivas"
#: sd/uiconfig/simpress/ui/notebookbar.ui:7222
msgctxt "notebookbar|ReviewMenuButton"
msgid "_Review"
-msgstr ""
+msgstr "_Revisar"
#: sd/uiconfig/simpress/ui/notebookbar.ui:7651
msgctxt "notebookbar|ReviewLabel"
@@ -3685,7 +3685,7 @@ msgstr "Revisar"
#: sd/uiconfig/simpress/ui/notebookbar.ui:7679
msgctxt "notebookbar|ViewMenuButton"
msgid "_View"
-msgstr ""
+msgstr "_Ver"
#: sd/uiconfig/simpress/ui/notebookbar.ui:8580
msgctxt "notebookbar|ViewLabel"
@@ -3695,7 +3695,7 @@ msgstr "Ver"
#: sd/uiconfig/simpress/ui/notebookbar.ui:9369
msgctxt "notebookbar|TableMenuButton"
msgid "T_able"
-msgstr ""
+msgstr "Tá_boa"
#: sd/uiconfig/simpress/ui/notebookbar.ui:9453
msgctxt "notebookbar|TableLabel"
@@ -3706,12 +3706,12 @@ msgstr "Táboa"
#: sd/uiconfig/simpress/ui/notebookbar.ui:11131
msgctxt "notebookbar|ConvertMenuButton"
msgid "Convert"
-msgstr ""
+msgstr "Converter"
#: sd/uiconfig/simpress/ui/notebookbar.ui:10335
msgctxt "notebookbar|GraphicMenuButton"
msgid "_Graphic"
-msgstr ""
+msgstr "_Gráfica"
#: sd/uiconfig/simpress/ui/notebookbar.ui:10447
msgctxt "notebookbar|ImageLabel"
@@ -3721,22 +3721,22 @@ msgstr "Imaxe"
#: sd/uiconfig/simpress/ui/notebookbar.ui:11658
msgctxt "notebookbar|DrawMenuButton"
msgid "D_raw"
-msgstr ""
+msgstr "Debuxa_r"
#: sd/uiconfig/simpress/ui/notebookbar.ui:11772
msgctxt "notebookbar|DrawLabel"
msgid "Draw"
-msgstr ""
+msgstr "Debuxar"
#: sd/uiconfig/simpress/ui/notebookbar.ui:11804
msgctxt "notebookbar|ToolsMenuButton"
msgid "_Tools"
-msgstr ""
+msgstr "Ferramen_tas"
#: sd/uiconfig/simpress/ui/notebookbar.ui:12758
msgctxt "notebookbar|DevLabel"
msgid "Tools"
-msgstr ""
+msgstr "Ferramentas"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:1922
msgctxt "notebookbar_groupedbar_compact|Menu"
@@ -5219,7 +5219,7 @@ msgstr "Estreita"
#: sd/uiconfig/simpress/ui/sidebarslidebackground.ui:247
msgctxt "sidebarslidebackground|marginLB"
msgid "Moderate"
-msgstr "Moderado"
+msgstr "Moderada"
#: sd/uiconfig/simpress/ui/sidebarslidebackground.ui:248
msgctxt "sidebarslidebackground|marginLB"
@@ -5239,7 +5239,7 @@ msgstr "Normal 3,175cm"
#: sd/uiconfig/simpress/ui/sidebarslidebackground.ui:251
msgctxt "sidebarslidebackground|marginLB"
msgid "Wide"
-msgstr "Amplo"
+msgstr "Ampla"
#: sd/uiconfig/simpress/ui/sidebarslidebackground.ui:264
msgctxt "sidebarslidebackground|labelmargin"
diff --git a/source/gl/svtools/messages.po b/source/gl/svtools/messages.po
index fabca950453..7cef7cc00f6 100644
--- a/source/gl/svtools/messages.po
+++ b/source/gl/svtools/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2018-05-16 16:53+0200\n"
-"PO-Revision-Date: 2018-05-19 18:16+0000\n"
+"PO-Revision-Date: 2018-06-09 21:35+0000\n"
"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: gl\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1526753797.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1528580114.000000\n"
#: svtools/inc/errtxt.hrc:30
msgctxt "RID_ERRCTX"
@@ -2596,7 +2596,7 @@ msgstr "Orixe da axenda de enderezos"
#: svtools/uiconfig/ui/addresstemplatedialog.ui:520
msgctxt "addresstemplatedialog|label23"
msgid "Field Assignment"
-msgstr "Asignación de campo"
+msgstr "Asignación de campos"
#: svtools/uiconfig/ui/fileviewmenu.ui:12
msgctxt "fileviewmenu|delete"
@@ -2986,7 +2986,7 @@ msgstr "Para que o entorno de execución de Java funcione correctamente, debe re
#: svtools/uiconfig/ui/restartdialog.ui:85
msgctxt "restartdialog|reason_mailmerge_install"
msgid "For mail merge to work properly, %PRODUCTNAME must be restarted."
-msgstr "Para que a combinación de correo funcione correctamente hai que reiniciar o %PRODUCTNAME."
+msgstr "Para que a combinación de correspondencia funcione correctamente hai que reiniciar o %PRODUCTNAME."
#: svtools/uiconfig/ui/restartdialog.ui:100
msgctxt "restartdialog|reason_pdf"
diff --git a/source/gl/svx/messages.po b/source/gl/svx/messages.po
index 1d02df531ae..ebf02b9b3cd 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: 2018-05-16 16:53+0200\n"
-"PO-Revision-Date: 2018-05-19 18:20+0000\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
+"PO-Revision-Date: 2018-06-09 17:05+0000\n"
"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: gl\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1526754024.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1528563954.000000\n"
#: svx/inc/fieldunit.hrc:30
msgctxt "RID_SVXSTR_FIELDUNIT_TABLE"
@@ -2643,7 +2643,7 @@ msgid ""
"Add detailed instructions on how to reproduce the crash and the shown crash ID into the crash report field.\n"
"Thank you for your help in improving %PRODUCTNAME."
msgstr ""
-"Comprobe, se quere, este informe e, se non hai ningún informe de fallo conectado aínda ao informe de fallo, abra un informe de fallo novo en bugs.documentfoundation.org.\n"
+"Comprobe, se quere, este informe e, se non hai ningún informe de fallo relacionado con este fallo, abra un informe de fallo novo en bugs.documentfoundation.org.\n"
"Engada instrucións detalladas sobre como reproducir o fallo e o identificador de fallo que aparece no campo do informe de fallo.\n"
"Moitísimas grazas por axudar a mellorar o %PRODUCTNAME."
@@ -5179,8 +5179,8 @@ msgstr "Tamén pode incluír as partes relevantes do seu perfil de usuario no in
#: svx/uiconfig/ui/safemodedialog.ui:432
msgctxt "safemodedialog|btn_create_zip"
-msgid "Create Zip Archive from User Profile"
-msgstr "Crear un arquivo zip do perfil do usuario"
+msgid "Archive User Profile"
+msgstr "Arquivar perfil do usuario"
#: svx/uiconfig/ui/safemodedialog.ui:445
msgctxt "safemodedialog|linkbutton_profile"
@@ -5710,7 +5710,7 @@ msgstr "Trocar por sangrado colgante"
#: svx/uiconfig/ui/sidebarparagraph.ui:522
msgctxt "sidebarparagraph|beforetextindent|tooltip_text"
msgid "Before Text Indent"
-msgstr "Antes do sangrado de texto"
+msgstr "Sangrado antes do texto"
#: svx/uiconfig/ui/sidebarparagraph.ui:528
msgctxt "sidebarparagraph|beforetextindent-atkobject"
@@ -5720,7 +5720,7 @@ msgstr "Sangrado antes do texto"
#: svx/uiconfig/ui/sidebarparagraph.ui:570
msgctxt "sidebarparagraph|aftertextindent|tooltip_text"
msgid "After Text Indent"
-msgstr "Despois do sangrado de texto"
+msgstr "Sangrado despois do texto"
#: svx/uiconfig/ui/sidebarparagraph.ui:576
msgctxt "sidebarparagraph|aftertextindent-atkobject"
@@ -8769,9 +8769,9 @@ msgid "Red"
msgstr "Vermello"
#: include/svx/strings.hrc:565
-msgctxt "RID_SVXSTR_COLOR_VIOLET"
-msgid "Violet"
-msgstr "Violeta"
+msgctxt "RID_SVXSTR_COLOR_MAGENTA"
+msgid "Magenta"
+msgstr "Maxenta"
#: include/svx/strings.hrc:566
msgctxt "RID_SVXSTR_COLOR_PURPLE"
@@ -8835,9 +8835,9 @@ msgid "Light Red"
msgstr "Vermello claro"
#: include/svx/strings.hrc:579
-msgctxt "RID_SVXSTR_COLOR_LIGHTVIOLET"
-msgid "Light Violet"
-msgstr "Violeta claro"
+msgctxt "RID_SVXSTR_COLOR_LIGHTMAGENTA"
+msgid "Light Magenta"
+msgstr "Maxenta claro"
#: include/svx/strings.hrc:580
msgctxt "RID_SVXSTR_COLOR_LIGHTPURPLE"
@@ -8901,9 +8901,9 @@ msgid "Dark Red"
msgstr "Vermello escuro"
#: include/svx/strings.hrc:593
-msgctxt "RID_SVXSTR_COLOR_DARKVIOLET1"
-msgid "Dark Violet"
-msgstr "Violeta escuro"
+msgctxt "RID_SVXSTR_COLOR_DARKMAGENTA"
+msgid "Dark Magenta"
+msgstr "Maxenta escuro"
#: include/svx/strings.hrc:594
msgctxt "RID_SVXSTR_COLOR_DARKPURPLE"
@@ -8937,55 +8937,55 @@ msgstr "Verde limón escuro"
#. Elements of the Tonal color palette
#: include/svx/strings.hrc:601
+msgctxt "RID_SVXSTR_COLOR_VIOLET"
+msgid "Violet"
+msgstr "Violeta"
+
+#: include/svx/strings.hrc:602
msgctxt "RID_SVXSTR_COLOR_VIOLET_OUG"
msgid "Violet (Out of Gamut)"
msgstr "Violeta (fóra da gama)"
-#: include/svx/strings.hrc:602
+#: include/svx/strings.hrc:603
msgctxt "RID_SVXSTR_COLOR_BLUE_OUG"
msgid "Blue (Out of Gamut)"
msgstr "Azul (fóra da gama)"
-#: include/svx/strings.hrc:603
+#: include/svx/strings.hrc:604
msgctxt "RID_SVXSTR_COLOR_AZURE_OUG"
msgid "Azure (Out of Gamut)"
msgstr "Azul celeste (fóra da gama)"
-#: include/svx/strings.hrc:604
+#: include/svx/strings.hrc:605
msgctxt "RID_SVXSTR_COLOR_SPRINGGREEN_OUG"
msgid "Spring Green (Out of Gamut)"
msgstr "Verde primavera (fóra da gama)"
-#: include/svx/strings.hrc:605
+#: include/svx/strings.hrc:606
msgctxt "RID_SVXSTR_COLOR_GREEN_OUG"
msgid "Green (Out of Gamut)"
msgstr "Verde (fóra da gama)"
-#: include/svx/strings.hrc:606
+#: include/svx/strings.hrc:607
msgctxt "RID_SVXSTR_COLOR_CHARTREUSEGREEN_OUG"
msgid "Chartreuse Green (Out of Gamut)"
msgstr "Verde licoroso (fóra da gama)"
-#: include/svx/strings.hrc:607
+#: include/svx/strings.hrc:608
msgctxt "RID_SVXSTR_COLOR_ORANGE_OUG"
msgid "Orange (Out of Gamut)"
msgstr "Laranxa (fóra da gama)"
-#: include/svx/strings.hrc:608
+#: include/svx/strings.hrc:609
msgctxt "RID_SVXSTR_COLOR_RED_OUG"
msgid "Red (Out of Gamut)"
msgstr "Vermello (fóra da gama)"
-#: include/svx/strings.hrc:609
+#: include/svx/strings.hrc:610
msgctxt "RID_SVXSTR_COLOR_ROSE_OUG"
msgid "Rose (Out of Gamut)"
msgstr "Rosa (fóra da gama)"
-#: include/svx/strings.hrc:610
-msgctxt "RID_SVXSTR_COLOR_MAGENTA"
-msgid "Magenta"
-msgstr "Maxenta"
-
#: include/svx/strings.hrc:611
msgctxt "RID_SVXSTR_COLOR_AZURE"
msgid "Azure"
@@ -12091,13 +12091,13 @@ msgstr "Viñetas de frecha á dereita"
#: include/svx/strings.hrc:1273
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_6"
-msgid "Check mark bullets"
-msgstr "Viñetas de marca de selección"
+msgid "Cross mark bullets"
+msgstr "Viñetas en forma de cruz"
#: include/svx/strings.hrc:1274
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_7"
-msgid "Tick mark bullets"
-msgstr "Viñetas de marca de tique"
+msgid "Check mark bullets"
+msgstr "Viñetas de marca de selección"
#: include/svx/strings.hrc:1275
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_0"
diff --git a/source/gl/sw/messages.po b/source/gl/sw/messages.po
index a79b91bb179..06509e0edd2 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: 2018-05-22 13:17+0200\n"
-"PO-Revision-Date: 2018-05-19 18:23+0000\n"
+"POT-Creation-Date: 2018-06-12 14:41+0200\n"
+"PO-Revision-Date: 2018-06-13 21:32+0000\n"
"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: gl\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1526754191.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1528925522.000000\n"
#: sw/inc/app.hrc:29
msgctxt "RID_PARAGRAPHSTYLEFAMILY"
@@ -1180,13 +1180,13 @@ msgstr "Cita"
#: sw/inc/strings.hrc:172
msgctxt "STR_POOLCOLL_TOX_ILLUSH"
-msgid "Illustration Index Heading"
-msgstr "Título do índice de ilustracións"
+msgid "Figure Index Heading"
+msgstr "Título do índice de figuras"
#: sw/inc/strings.hrc:173
msgctxt "STR_POOLCOLL_TOX_ILLUS1"
-msgid "Illustration Index 1"
-msgstr "Índice de ilustracións 1"
+msgid "Figure Index 1"
+msgstr "Índice de figuras 1"
#: sw/inc/strings.hrc:174
msgctxt "STR_POOLCOLL_TOX_OBJECTH"
@@ -3590,8 +3590,8 @@ msgstr "Índice de obxectos"
#: sw/inc/strings.hrc:672
msgctxt "STR_TOX_ILL"
-msgid "Illustration Index"
-msgstr "Índice de ilustracións"
+msgid "Table of Figures"
+msgstr "Táboa de figuras"
#: sw/inc/strings.hrc:673
#, c-format
@@ -9244,72 +9244,72 @@ msgctxt "footnotepage|label5"
msgid "Continuation Notice"
msgstr "Aviso de continuación"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:49
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:55
msgctxt "footnotesendnotestabpage|ftnntnum"
msgid "_Restart numbering"
msgstr "_Reiniciar a numeración"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:91
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:93
msgctxt "footnotesendnotestabpage|ftnoffset_label"
msgid "_Start at:"
msgstr "_Comezar en:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:112
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:111
msgctxt "footnotesendnotestabpage|ftnntnumfmt"
msgid "Custom _format"
msgstr "_Formato personalizado"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:155
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:150
msgctxt "footnotesendnotestabpage|ftnsuffix_label"
msgid "Aft_er:"
msgstr "D_espois de:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:199
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:188
msgctxt "footnotesendnotestabpage|ftnprefix_label"
msgid "Be_fore:"
msgstr "_Antes de:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:228
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:212
msgctxt "footnotesendnotestabpage|ftnntattextend"
msgid "Collec_t at end of text"
msgstr "Reco_ller no final do texto"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:252
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:234
msgctxt "footnotesendnotestabpage|label1"
msgid "Footnotes"
msgstr "Notas a rodapé"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:289
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:271
msgctxt "footnotesendnotestabpage|endntattextend"
msgid "C_ollect at end of section"
msgstr "Rec_oller no final da sección"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:315
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:295
msgctxt "footnotesendnotestabpage|endntnum"
msgid "_Restart numbering"
msgstr "_Reiniciar a numeración"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:357
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:333
msgctxt "footnotesendnotestabpage|endoffset_label"
msgid "_Start at:"
msgstr "_Comezar en:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:378
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:351
msgctxt "footnotesendnotestabpage|endntnumfmt"
msgid "_Custom format"
msgstr "Formato _personalizado"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:421
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:390
msgctxt "footnotesendnotestabpage|endsuffix_label"
msgid "Aft_er:"
msgstr "D_espois de:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:465
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:428
msgctxt "footnotesendnotestabpage|endprefix_label"
msgid "Be_fore:"
msgstr "_Antes de:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:500
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:458
msgctxt "footnotesendnotestabpage|label2"
msgid "Endnotes"
msgstr "Notas finais"
@@ -9339,27 +9339,27 @@ msgctxt "formatsectiondialog|notes"
msgid "Footnotes/Endnotes"
msgstr "Notas a rodapé/Notas ao final"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:63
+#: sw/uiconfig/swriter/ui/formattablepage.ui:77
msgctxt "formattablepage|nameft"
msgid "_Name"
msgstr "_Nome"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:79
+#: sw/uiconfig/swriter/ui/formattablepage.ui:91
msgctxt "formattablepage|widthft"
msgid "W_idth"
msgstr "_Largura"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:110
+#: sw/uiconfig/swriter/ui/formattablepage.ui:120
msgctxt "formattablepage|relwidth"
msgid "Relati_ve"
msgstr "Relati_vo"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:155
+#: sw/uiconfig/swriter/ui/formattablepage.ui:160
msgctxt "formattablepage|label45"
msgid "Properties"
msgstr "Propiedades"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:194
+#: sw/uiconfig/swriter/ui/formattablepage.ui:195
msgctxt "formattablepage|leftft"
msgid "Lef_t"
msgstr "Esq_uerda"
@@ -9369,62 +9369,62 @@ msgctxt "formattablepage|rightft"
msgid "Ri_ght"
msgstr "_Dereita"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:228
+#: sw/uiconfig/swriter/ui/formattablepage.ui:226
msgctxt "formattablepage|aboveft"
msgid "_Above"
msgstr "_Arriba"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:245
+#: sw/uiconfig/swriter/ui/formattablepage.ui:241
msgctxt "formattablepage|belowft"
msgid "_Below"
msgstr "A_baixo"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:320
+#: sw/uiconfig/swriter/ui/formattablepage.ui:311
msgctxt "formattablepage|label46"
msgid "Spacing"
msgstr "Espazamento"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:362
+#: sw/uiconfig/swriter/ui/formattablepage.ui:349
msgctxt "formattablepage|full"
msgid "A_utomatic"
msgstr "_Automático"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:380
+#: sw/uiconfig/swriter/ui/formattablepage.ui:365
msgctxt "formattablepage|left"
msgid "_Left"
msgstr "_Esquerda"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:398
+#: sw/uiconfig/swriter/ui/formattablepage.ui:381
msgctxt "formattablepage|fromleft"
msgid "_From left"
msgstr "_Desde a esq."
-#: sw/uiconfig/swriter/ui/formattablepage.ui:416
+#: sw/uiconfig/swriter/ui/formattablepage.ui:397
msgctxt "formattablepage|right"
msgid "R_ight"
msgstr "Derei_ta"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:435
+#: sw/uiconfig/swriter/ui/formattablepage.ui:413
msgctxt "formattablepage|center"
msgid "_Center"
msgstr "_Centro"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:453
+#: sw/uiconfig/swriter/ui/formattablepage.ui:429
msgctxt "formattablepage|free"
msgid "_Manual"
msgstr "_Manual"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:478
+#: sw/uiconfig/swriter/ui/formattablepage.ui:452
msgctxt "formattablepage|label43"
msgid "Alignment"
msgstr "Aliñamento"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:522
+#: sw/uiconfig/swriter/ui/formattablepage.ui:491
msgctxt "formattablepage|label53"
msgid "Text _direction"
msgstr "_Dirección do texto"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:553
+#: sw/uiconfig/swriter/ui/formattablepage.ui:519
msgctxt "formattablepage|label44"
msgid "Properties "
msgstr "Propiedades "
@@ -9779,22 +9779,27 @@ msgctxt "headerfootermenu|insert_pagenumber"
msgid "Insert Page Number"
msgstr "Inserir número de páxina"
-#: sw/uiconfig/swriter/ui/indentpage.ui:52
+#: sw/uiconfig/swriter/ui/headerfootermenu.ui:42
+msgctxt "headerfootermenu|insert_pagecount"
+msgid "Insert Page Count"
+msgstr "Inserir cantidade de páxinas"
+
+#: sw/uiconfig/swriter/ui/indentpage.ui:57
msgctxt "indentpage|label1"
msgid "_Before section"
msgstr "_Antes da sección"
-#: sw/uiconfig/swriter/ui/indentpage.ui:67
+#: sw/uiconfig/swriter/ui/indentpage.ui:71
msgctxt "indentpage|label3"
msgid "_After section"
msgstr "_Despois da sección"
-#: sw/uiconfig/swriter/ui/indentpage.ui:113
+#: sw/uiconfig/swriter/ui/indentpage.ui:115
msgctxt "indentpage|label2"
msgid "Indent"
msgstr "Sangrado"
-#: sw/uiconfig/swriter/ui/indentpage.ui:142
+#: sw/uiconfig/swriter/ui/indentpage.ui:155
msgctxt "indentpage|preview-atkobject"
msgid "Example"
msgstr "Exemplo"
@@ -11077,7 +11082,7 @@ msgstr "2."
#: sw/uiconfig/swriter/ui/mmaddressblockpage.ui:269
msgctxt "mmaddressblockpage|address"
msgid "_This document shall contain an address block"
-msgstr "Es_te documento debe de conter un bloque de enderezos"
+msgstr "Es_te documento debe conter un bloque de enderezos"
#: sw/uiconfig/swriter/ui/mmaddressblockpage.ui:307
msgctxt "mmaddressblockpage|settings"
@@ -11087,7 +11092,7 @@ msgstr "_Máis..."
#: sw/uiconfig/swriter/ui/mmaddressblockpage.ui:345
msgctxt "mmaddressblockpage|hideempty"
msgid "_Suppress lines with just empty fields"
-msgstr "_Suprimir liñas só con campos baleiros"
+msgstr "_Suprimir liñas con só campos baleiros"
#: sw/uiconfig/swriter/ui/mmaddressblockpage.ui:423
msgctxt "mmaddressblockpage|prev|tooltip_text"
@@ -11912,7 +11917,7 @@ msgstr "Bus_car actualizacións..."
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:2007
msgctxt "notebookbar_compact|FileMenuButton"
msgid "_File"
-msgstr ""
+msgstr "_Ficheiro"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:2721
msgctxt "notebookbar_compact|FileLabel"
@@ -11922,7 +11927,7 @@ msgstr "Ficheiro"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:2770
msgctxt "notebookbar_compact|HomeMenuButton"
msgid "_Menu"
-msgstr ""
+msgstr "_Menú"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3829
msgctxt "notebookbar_compact|HomeLabel"
@@ -11932,7 +11937,7 @@ msgstr "Inicio"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3882
msgctxt "notebookbar_compact|InsertMenuButton"
msgid "_Insert"
-msgstr ""
+msgstr "_Inserir"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4501
msgctxt "notebookbar_compact|InsertLabel"
@@ -11950,7 +11955,7 @@ msgstr "Axustar"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5221
msgctxt "notebookbar_compact|PageMenuButton"
msgid "Pag_e"
-msgstr ""
+msgstr "Pá_xina"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5273
msgctxt "notebookbar_compact|LayoutLabel"
@@ -11960,7 +11965,7 @@ msgstr "Disposición"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5320
msgctxt "notebookbar_compact|ReferencesMenuButton"
msgid "Reference_s"
-msgstr ""
+msgstr "Referencia_s"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5708
msgctxt "notebookbar_compact|ReferencesLabel"
@@ -11970,7 +11975,7 @@ msgstr "Referencias"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6204
msgctxt "notebookbar_compact|ReviewMenuButton"
msgid "_Review"
-msgstr ""
+msgstr "_Revisar"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6237
msgctxt "notebookbar_compact|ReviewLabel"
@@ -11980,7 +11985,7 @@ msgstr "Revisar"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6706
msgctxt "notebookbar_compact|ViewMenuButton"
msgid "_View"
-msgstr ""
+msgstr "_Ver"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6758
msgctxt "notebookbar_compact|ViewLabel"
@@ -11990,7 +11995,7 @@ msgstr "Ver"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6806
msgctxt "notebookbar_compact|TableMenuButton"
msgid "T_able"
-msgstr ""
+msgstr "Tá_boa"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7540
msgctxt "notebookbar_compact|TableLabel"
@@ -12007,7 +12012,7 @@ msgstr "A_liñar"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8291
msgctxt "notebookbar_compact|GraphicMenuButton"
msgid "_Graphic"
-msgstr ""
+msgstr "_Gráfica"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8324
msgctxt "notebookbar_compact|ImageLabel"
@@ -12017,7 +12022,7 @@ msgstr "Imaxe"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9070
msgctxt "notebookbar_compact|DrawMenuButton"
msgid "D_raw"
-msgstr ""
+msgstr "Debuxa_r"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9125
msgctxt "notebookbar_compact|ShapeLabel"
@@ -12027,7 +12032,7 @@ msgstr "Debuxar"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9651
msgctxt "notebookbar_compact|ObjectMenuButton:MenuDraw"
msgid "Object"
-msgstr ""
+msgstr "Obxecto"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9707
msgctxt "notebookbar_compact|FrameLabel"
@@ -12037,7 +12042,7 @@ msgstr "Obxecto"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9757
msgctxt "notebookbar_compact|ToolsMenuButton"
msgid "_Tools"
-msgstr ""
+msgstr "Ferramen_tas"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10600
msgctxt "notebookbar_compact|DevLabel"
@@ -13285,8 +13290,8 @@ msgstr "Protexer formulario"
#: sw/uiconfig/swriter/ui/optcompatpage.ui:68
msgctxt "optcompatpage|format"
-msgid "MS Word-compatible trailing blanks"
-msgstr "Espazos compatíbeis con MS Word"
+msgid "Word-compatible trailing blanks"
+msgstr "Espazos compatíbeis con Word"
#: sw/uiconfig/swriter/ui/optcompatpage.ui:69
msgctxt "optcompatpage|format"
@@ -13295,8 +13300,8 @@ msgstr "Tolerar liñas en branco nos fondos de páxina de PDF por compatibilidad
#: sw/uiconfig/swriter/ui/optcompatpage.ui:70
msgctxt "optcompatpage|format"
-msgid "A database field (e.g., MailMerge) with empty value hides its paragraph"
-msgstr ""
+msgid "Hide paragraphs of database fields (e.g., mail merge) with an empty value"
+msgstr "Agochar os parágrafos dos campos de base de datos (p.ex. fusión de correo) cun valor baleiro"
#: sw/uiconfig/swriter/ui/optcompatpage.ui:71
msgctxt "optcompatpage|format"
@@ -14220,7 +14225,7 @@ msgstr "Normal 3,175cm"
#: sw/uiconfig/swriter/ui/pageformatpanel.ui:149
msgctxt "pageformatpanel|marginLB"
msgid "Wide"
-msgstr "Amplo"
+msgstr "Ampla"
#: sw/uiconfig/swriter/ui/pageformatpanel.ui:150
msgctxt "pageformatpanel|marginLB"
@@ -15981,122 +15986,122 @@ msgctxt "tableproperties|background"
msgid "Background"
msgstr "Fondo"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:25
-msgctxt "tabletextflowpage|liststore1"
-msgid "Horizontal"
-msgstr "Horizontal"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:29
-msgctxt "tabletextflowpage|liststore1"
-msgid "Vertical"
-msgstr "Vertical"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:33
-msgctxt "tabletextflowpage|liststore1"
-msgid "Use superordinate object settings"
-msgstr "Utilizar configuración do obxecto superior"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:47
-msgctxt "tabletextflowpage|liststore2"
-msgid "Top"
-msgstr "Superior"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:51
-msgctxt "tabletextflowpage|liststore2"
-msgid "Centered"
-msgstr "Centrado"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:55
-msgctxt "tabletextflowpage|liststore2"
-msgid "Bottom"
-msgstr "Inferior"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:97
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:53
msgctxt "tabletextflowpage|break"
msgid "_Break"
msgstr "Que_brar"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:112
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:68
msgctxt "tabletextflowpage|page"
msgid "_Page"
msgstr "_Páxina"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:132
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:87
msgctxt "tabletextflowpage|column"
msgid "Col_umn"
msgstr "Col_umna"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:151
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:106
msgctxt "tabletextflowpage|before"
msgid "Be_fore"
msgstr "_Antes"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:171
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:125
msgctxt "tabletextflowpage|after"
msgid "_After"
msgstr "_Despois"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:203
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:158
msgctxt "tabletextflowpage|pagestyle"
msgid "With Page St_yle"
msgstr "_Con estilo de páxina"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:224
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:177
msgctxt "tabletextflowpage|pagenoft"
msgid "Page _number"
msgstr "_Núm. de páxina"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:257
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:213
msgctxt "tabletextflowpage|pagestylelb-atkobject"
msgid "With Page Style"
msgstr "Con estilo de páxina"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:274
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:230
msgctxt "tabletextflowpage|split"
msgid "Allow _table to split across pages and columns"
msgstr "Permitir que a _táboa se dividida en páxinas e columnas"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:289
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:245
msgctxt "tabletextflowpage|splitrow"
msgid "Allow row to break a_cross pages and columns"
msgstr "Permitir quebra de _fila en páxinas e columnas"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:306
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:262
msgctxt "tabletextflowpage|keep"
msgid "_Keep with next paragraph"
msgstr "_Manter co parágrafo seguinte"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:328
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:284
msgctxt "tabletextflowpage|label40"
msgid "Text _orientation"
msgstr "_Orientación do texto"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:361
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:298
+msgctxt "tabletextflowpage|liststore1"
+msgid "Horizontal"
+msgstr "Horizontal"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:299
+msgctxt "tabletextflowpage|liststore1"
+msgid "Vertical"
+msgstr "Vertical"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:300
+msgctxt "tabletextflowpage|liststore1"
+msgid "Use superordinate object settings"
+msgstr "Utilizar configuración do obxecto superior"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:321
msgctxt "tabletextflowpage|headline"
msgid "R_epeat heading"
msgstr "R_epetir título"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:383
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:343
msgctxt "tabletextflowpage|label38"
msgid "The first "
msgstr "As primeiras "
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:396
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:356
msgctxt "tabletextflowpage|label39"
msgid "rows"
msgstr "filas"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:434
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:395
msgctxt "tabletextflowpage|label35"
msgid "Text Flow"
msgstr "Fluxo de texto"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:467
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:428
msgctxt "tabletextflowpage|label41"
msgid "_Vertical alignment"
msgstr "Aliñamento _vertical"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:495
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:442
+msgctxt "tabletextflowpage|liststore2"
+msgid "Top"
+msgstr "Superior"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:443
+msgctxt "tabletextflowpage|liststore2"
+msgid "Centered"
+msgstr "Centrado"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:444
+msgctxt "tabletextflowpage|liststore2"
+msgid "Bottom"
+msgstr "Inferior"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:460
msgctxt "tabletextflowpage|label36"
msgid "Alignment"
msgstr "Aliñamento"
@@ -16878,8 +16883,8 @@ msgstr "Índice alfabético"
#: sw/uiconfig/swriter/ui/tocindexpage.ui:58
msgctxt "tocindexpage|liststore1"
-msgid "Illustration Index"
-msgstr "Índice de ilustracións"
+msgid "Table of Figures"
+msgstr "Táboa de figuras"
#: sw/uiconfig/swriter/ui/tocindexpage.ui:62
msgctxt "tocindexpage|liststore1"
diff --git a/source/gl/uui/messages.po b/source/gl/uui/messages.po
index bc9cbaeda7c..e4e7041196a 100644
--- a/source/gl/uui/messages.po
+++ b/source/gl/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: 2018-05-22 13:16+0200\n"
-"PO-Revision-Date: 2018-04-02 18:25+0000\n"
+"PO-Revision-Date: 2018-06-10 16:51+0000\n"
"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: gl\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1522693513.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1528649472.000000\n"
#: uui/inc/ids.hrc:27
msgctxt "RID_UUI_ERRHDL"
@@ -43,7 +43,7 @@ msgid ""
"$(ARG1)\n"
"which are too large to store in binary format. If you wish users that don't have access to the library password to be able to run macros in those module(s) you must split those modules into a number of smaller modules. Do you wish to continue to save/export this library?"
msgstr ""
-"Está a punto de gardar/exportar unha biblioteca básica protexida con contrasinal que contén módulo(s) \n"
+"Está a piques de gardar/exportar unha biblioteca básica protexida con contrasinal que contén módulo(s) \n"
"$(ARG1)\n"
"que son demasiado grandes para almacenalos en formato binario. Se quere que os usuarios que non teñan acceso ao contrasinal poidan executar macros nese módulo(s) debe dividilos nun número menor de módulos. Quere continuar a gardar/exportar esta biblioteca?"
@@ -313,7 +313,7 @@ msgid ""
"\n"
"Should %PRODUCTNAME repair the file?\n"
msgstr ""
-"O ficheiro «$(ARG1)» está corrupto e por esta razón non é posíbel abrilo. O %PRODUCTNAME pode tentar reparar o ficheiro.\n"
+"O ficheiro «$(ARG1)» está corrupto e por esta razón non é posíbel abrilo. O %PRODUCTNAME pode tentar reparalo.\n"
"\n"
"A corrupción podería ser o resultado dunha manipulación do documento ou dalgún dano estrutural debido á transmisión de datos.\n"
"\n"
@@ -712,7 +712,7 @@ msgstr "Forneza un nome de ficheiro diferente!"
#: uui/inc/strings.hrc:70
msgctxt "STR_ERROR_PASSWORD_TO_OPEN_WRONG"
msgid "The password is incorrect. The file cannot be opened."
-msgstr "O contrasinal é incorrecto. Non se pode abrir o documento."
+msgstr "O contrasinal é incorrecto. Non é posíbel abrir o documento."
#: uui/inc/strings.hrc:71
msgctxt "STR_ERROR_PASSWORD_TO_MODIFY_WRONG"
diff --git a/source/gl/writerperfect/messages.po b/source/gl/writerperfect/messages.po
index 5a151d56656..c6991d4d670 100644
--- a/source/gl/writerperfect/messages.po
+++ b/source/gl/writerperfect/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: 2018-05-16 16:54+0200\n"
-"PO-Revision-Date: 2018-05-19 18:14+0000\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
+"PO-Revision-Date: 2018-06-10 17:56+0000\n"
"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: gl\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1526753660.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1528653363.000000\n"
#: writerperfect/inc/strings.hrc:15
msgctxt "STR_ENCODING_DIALOG_TITLE"
@@ -59,104 +59,104 @@ msgstr "Importar un ficheiro de Quattro Pro"
#: writerperfect/uiconfig/ui/exportepub.ui:8
msgctxt "exportepub|EpubDialog"
msgid "EPUB Export"
-msgstr "Exportación de EPUB"
+msgstr "Exportación a EPUB"
#: writerperfect/uiconfig/ui/exportepub.ui:91
msgctxt "exportepub|generalft"
msgid "General"
msgstr "Xeral"
-#: writerperfect/uiconfig/ui/exportepub.ui:122
+#: writerperfect/uiconfig/ui/exportepub.ui:121
msgctxt "exportepub|versionft"
msgid "Version:"
msgstr "Versión:"
-#: writerperfect/uiconfig/ui/exportepub.ui:139
+#: writerperfect/uiconfig/ui/exportepub.ui:138
msgctxt "exportepub|epub3"
msgid "EPUB 3.0"
msgstr "EPUB 3.0"
-#: writerperfect/uiconfig/ui/exportepub.ui:140
+#: writerperfect/uiconfig/ui/exportepub.ui:139
msgctxt "exportepub|epub2"
msgid "EPUB 2.0"
msgstr "EPUB 2.0"
-#: writerperfect/uiconfig/ui/exportepub.ui:175
+#: writerperfect/uiconfig/ui/exportepub.ui:174
msgctxt "exportepub|splitft"
msgid "Split method:"
msgstr "Método de separación"
-#: writerperfect/uiconfig/ui/exportepub.ui:192
+#: writerperfect/uiconfig/ui/exportepub.ui:191
msgctxt "exportepub|splitpage"
msgid "Page break"
msgstr "Quebra de páxina"
-#: writerperfect/uiconfig/ui/exportepub.ui:193
+#: writerperfect/uiconfig/ui/exportepub.ui:192
msgctxt "exportepub|splitheading"
msgid "Heading"
msgstr "Título"
-#: writerperfect/uiconfig/ui/exportepub.ui:228
+#: writerperfect/uiconfig/ui/exportepub.ui:227
msgctxt "exportepub|layoutft"
msgid "Layout method:"
msgstr "Método de disposición:"
-#: writerperfect/uiconfig/ui/exportepub.ui:245
+#: writerperfect/uiconfig/ui/exportepub.ui:244
msgctxt "exportepub|layoutreflowable"
msgid "Reflowable"
msgstr "Axustábel"
-#: writerperfect/uiconfig/ui/exportepub.ui:246
+#: writerperfect/uiconfig/ui/exportepub.ui:245
msgctxt "exportepub|layoutfixed"
msgid "Fixed"
msgstr "Fixo"
-#: writerperfect/uiconfig/ui/exportepub.ui:281
+#: writerperfect/uiconfig/ui/exportepub.ui:280
msgctxt "exportepub|coverimageft"
msgid "Custom cover image:"
msgstr "Imaxe da cuberta personalizada:"
-#: writerperfect/uiconfig/ui/exportepub.ui:311
+#: writerperfect/uiconfig/ui/exportepub.ui:310
msgctxt "exportepub|coverbutton"
msgid "Browse..."
msgstr "Examinar…"
-#: writerperfect/uiconfig/ui/exportepub.ui:355
+#: writerperfect/uiconfig/ui/exportepub.ui:354
msgctxt "exportepub|mediadirft"
msgid "Custom media directory:"
msgstr "Directorio de multimedia personalizado:"
-#: writerperfect/uiconfig/ui/exportepub.ui:385
+#: writerperfect/uiconfig/ui/exportepub.ui:384
msgctxt "exportepub|mediabutton"
msgid "Browse..."
msgstr "Examinar…"
-#: writerperfect/uiconfig/ui/exportepub.ui:429
+#: writerperfect/uiconfig/ui/exportepub.ui:428
msgctxt "exportepub|metadataft"
msgid "Metadata"
msgstr "Metadatos"
-#: writerperfect/uiconfig/ui/exportepub.ui:470
+#: writerperfect/uiconfig/ui/exportepub.ui:468
msgctxt "exportepub|identifierft"
msgid "Identifier:"
msgstr "Identificador:"
-#: writerperfect/uiconfig/ui/exportepub.ui:485
+#: writerperfect/uiconfig/ui/exportepub.ui:483
msgctxt "exportepub|titleft"
msgid "Title:"
msgstr "Título:"
-#: writerperfect/uiconfig/ui/exportepub.ui:511
+#: writerperfect/uiconfig/ui/exportepub.ui:509
msgctxt "exportepub|authorft"
msgid "Author:"
msgstr "Autor:"
-#: writerperfect/uiconfig/ui/exportepub.ui:537
+#: writerperfect/uiconfig/ui/exportepub.ui:535
msgctxt "exportepub|languageft"
msgid "Language:"
msgstr "Idioma:"
-#: writerperfect/uiconfig/ui/exportepub.ui:563
+#: writerperfect/uiconfig/ui/exportepub.ui:561
msgctxt "exportepub|dateft"
msgid "Date:"
msgstr "Data:"
diff --git a/source/gl/xmlsecurity/messages.po b/source/gl/xmlsecurity/messages.po
index efd93add7a8..84b4f417876 100644
--- a/source/gl/xmlsecurity/messages.po
+++ b/source/gl/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: 2018-05-22 13:17+0200\n"
-"PO-Revision-Date: 2018-03-05 22:28+0000\n"
+"PO-Revision-Date: 2018-05-29 16:19+0000\n"
"Last-Translator: Xosé <xosecalvo@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: gl\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1520288886.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1527610751.000000\n"
#: xmlsecurity/inc/strings.hrc:25
msgctxt "STR_CERTIFICATE_NOT_VALIDATED"
@@ -460,7 +460,7 @@ msgstr "Asinar"
#: xmlsecurity/uiconfig/ui/selectcertificatedialog.ui:194
msgctxt "selectcertificatedialog|str_selectsign"
msgid "Select"
-msgstr ""
+msgstr "Seleccionar"
#: xmlsecurity/uiconfig/ui/selectcertificatedialog.ui:199
msgctxt "selectcertificatedialog|str_encrypt"
diff --git a/source/gu/cui/messages.po b/source/gu/cui/messages.po
index c2d6043f28a..caf61ee1073 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+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"
@@ -10326,97 +10326,97 @@ msgctxt "positionsizedialog|PositionAndSizeDialog"
msgid "Position and Size"
msgstr "સ્થાન અને માપ"
-#: cui/uiconfig/ui/positionsizedialog.ui:107
+#: cui/uiconfig/ui/positionsizedialog.ui:136
msgctxt "positionsizedialog|RID_SVXPAGE_POSITION_SIZE"
msgid "Position and Size"
msgstr "સ્થાન અને માપ"
-#: cui/uiconfig/ui/positionsizedialog.ui:129
+#: cui/uiconfig/ui/positionsizedialog.ui:182
msgctxt "positionsizedialog|RID_SVXPAGE_SWPOSSIZE"
msgid "Position and Size"
msgstr "સ્થાન અને માપ"
-#: cui/uiconfig/ui/positionsizedialog.ui:152
+#: cui/uiconfig/ui/positionsizedialog.ui:229
msgctxt "positionsizedialog|RID_SVXPAGE_ANGLE"
msgid "Rotation"
msgstr "ફેરવો"
-#: cui/uiconfig/ui/positionsizedialog.ui:175
+#: cui/uiconfig/ui/positionsizedialog.ui:276
msgctxt "positionsizedialog|RID_SVXPAGE_SLANT"
msgid "Slant & Corner Radius"
msgstr "ઢાળ અને ખૂણાની ત્રિજ્યા"
-#: cui/uiconfig/ui/possizetabpage.ui:40
+#: cui/uiconfig/ui/possizetabpage.ui:61
msgctxt "possizetabpage|FT_POS_X"
msgid "Position _X:"
msgstr "સ્થાન X (_X):"
-#: cui/uiconfig/ui/possizetabpage.ui:56
+#: cui/uiconfig/ui/possizetabpage.ui:75
msgctxt "possizetabpage|FT_POS_Y"
msgid "Position _Y:"
msgstr "સ્થાન Y (_Y):"
-#: cui/uiconfig/ui/possizetabpage.ui:110
+#: cui/uiconfig/ui/possizetabpage.ui:128
msgctxt "possizetabpage|FT_POSREFERENCE"
msgid "_Base point:"
msgstr "આધાર બિંદુ (_B):"
-#: cui/uiconfig/ui/possizetabpage.ui:148
+#: cui/uiconfig/ui/possizetabpage.ui:182
msgctxt "possizetabpage|label1"
msgid "Position"
msgstr "સ્થાન"
-#: cui/uiconfig/ui/possizetabpage.ui:190
+#: cui/uiconfig/ui/possizetabpage.ui:224
msgctxt "possizetabpage|FT_WIDTH"
msgid "Wi_dth:"
msgstr "પહોળાઇ (_d):"
-#: cui/uiconfig/ui/possizetabpage.ui:206
+#: cui/uiconfig/ui/possizetabpage.ui:238
msgctxt "possizetabpage|FT_HEIGHT"
msgid "H_eight:"
msgstr "ઊંચાઇ (_e):"
-#: cui/uiconfig/ui/possizetabpage.ui:247
+#: cui/uiconfig/ui/possizetabpage.ui:276
msgctxt "possizetabpage|CBX_SCALE"
msgid "_Keep ratio"
msgstr "ગુણોત્તર રાખો (_K)"
-#: cui/uiconfig/ui/possizetabpage.ui:279
+#: cui/uiconfig/ui/possizetabpage.ui:307
msgctxt "possizetabpage|FT_SIZEREFERENCE"
msgid "Base _point:"
msgstr "આધાર બિંદુ (_p):"
-#: cui/uiconfig/ui/possizetabpage.ui:317
+#: cui/uiconfig/ui/possizetabpage.ui:361
msgctxt "possizetabpage|label2"
msgid "Size"
msgstr "માપ"
-#: cui/uiconfig/ui/possizetabpage.ui:356
+#: cui/uiconfig/ui/possizetabpage.ui:401
msgctxt "possizetabpage|TSB_POSPROTECT"
msgid "Positio_n"
msgstr "સ્થાન (_n)"
-#: cui/uiconfig/ui/possizetabpage.ui:373
+#: cui/uiconfig/ui/possizetabpage.ui:418
msgctxt "possizetabpage|TSB_SIZEPROTECT"
msgid "_Size"
msgstr "માપ (_S)"
-#: cui/uiconfig/ui/possizetabpage.ui:397
+#: cui/uiconfig/ui/possizetabpage.ui:441
msgctxt "possizetabpage|label3"
msgid "Protect"
msgstr "સુરક્ષિત રાખો"
-#: cui/uiconfig/ui/possizetabpage.ui:430
+#: cui/uiconfig/ui/possizetabpage.ui:475
msgctxt "possizetabpage|TSB_AUTOGROW_WIDTH"
msgid "_Fit width to text"
msgstr "લખાણમાં પહોળાઇને બેસાડો (_F)"
-#: cui/uiconfig/ui/possizetabpage.ui:447
+#: cui/uiconfig/ui/possizetabpage.ui:492
msgctxt "possizetabpage|TSB_AUTOGROW_HEIGHT"
msgid "Fit _height to text"
msgstr "લખાણમાં ઊંચાઇને બેસાડો (_h)"
-#: cui/uiconfig/ui/possizetabpage.ui:471
+#: cui/uiconfig/ui/possizetabpage.ui:515
msgctxt "possizetabpage|label4"
msgid "Adapt"
msgstr ""
@@ -10627,51 +10627,51 @@ msgctxt "recordnumberdialog|label2"
msgid "go to record"
msgstr "રેકોર્ડ પર જાઓ"
-#: cui/uiconfig/ui/rotationtabpage.ui:52
+#: cui/uiconfig/ui/rotationtabpage.ui:56
msgctxt "rotationtabpage|FT_POS_X"
msgid "Position _X:"
msgstr "સ્થાન X (_X):"
-#: cui/uiconfig/ui/rotationtabpage.ui:66
+#: cui/uiconfig/ui/rotationtabpage.ui:70
msgctxt "rotationtabpage|FT_POS_Y"
msgid "Position _Y:"
msgstr "સ્થાન Y (_Y):"
-#: cui/uiconfig/ui/rotationtabpage.ui:116
+#: cui/uiconfig/ui/rotationtabpage.ui:123
#, fuzzy
msgctxt "rotationtabpage|FT_POSPRESETS"
msgid "_Default settings:"
msgstr "મૂળભૂત સુયોજનો (_D)"
-#: cui/uiconfig/ui/rotationtabpage.ui:130
+#: cui/uiconfig/ui/rotationtabpage.ui:151
msgctxt "rotationtabpage|CTL_RECT|tooltip_text"
msgid "Rotation point"
msgstr "ફેરવવાનું બિંદુ"
-#: cui/uiconfig/ui/rotationtabpage.ui:155
+#: cui/uiconfig/ui/rotationtabpage.ui:178
#, fuzzy
msgctxt "rotationtabpage|label1"
msgid "Pivot Point"
msgstr "પિવોટ બિંદુ"
-#: cui/uiconfig/ui/rotationtabpage.ui:197
+#: cui/uiconfig/ui/rotationtabpage.ui:220
#, fuzzy
msgctxt "rotationtabpage|FT_ANGLE"
msgid "_Angle:"
msgstr "ખુણો (_A)"
-#: cui/uiconfig/ui/rotationtabpage.ui:238
+#: cui/uiconfig/ui/rotationtabpage.ui:263
#, fuzzy
msgctxt "rotationtabpage|FT_ANGLEPRESETS"
msgid "Default _settings:"
msgstr "મૂળભૂત સુયોજનો (_s)"
-#: cui/uiconfig/ui/rotationtabpage.ui:252
+#: cui/uiconfig/ui/rotationtabpage.ui:287
msgctxt "rotationtabpage|CTL_ANGLE|tooltip_text"
msgid "Rotation Angle"
msgstr "ખૂણાને ફેરવો"
-#: cui/uiconfig/ui/rotationtabpage.ui:277
+#: cui/uiconfig/ui/rotationtabpage.ui:314
msgctxt "rotationtabpage|label2"
msgid "Rotation Angle"
msgstr "ખૂણાને ફેરવો"
@@ -11062,55 +11062,55 @@ msgctxt "similaritysearchdialog|relaxbox"
msgid "_Combine"
msgstr "સંયુક્ત કરો (_C)"
-#: cui/uiconfig/ui/slantcornertabpage.ui:50
+#: cui/uiconfig/ui/slantcornertabpage.ui:70
msgctxt "slantcornertabpage|label5"
msgid "_X:"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:88
+#: cui/uiconfig/ui/slantcornertabpage.ui:110
msgctxt "slantcornertabpage|label6"
msgid "_Y:"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:125
+#: cui/uiconfig/ui/slantcornertabpage.ui:149
msgctxt "slantcornertabpage|label3"
msgid "Control Point 1"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:159
+#: cui/uiconfig/ui/slantcornertabpage.ui:183
#, fuzzy
msgctxt "slantcornertabpage|FT_RADIUS"
msgid "_Radius:"
msgstr "ત્રિજ્યા (_R)"
-#: cui/uiconfig/ui/slantcornertabpage.ui:189
+#: cui/uiconfig/ui/slantcornertabpage.ui:214
#, fuzzy
msgctxt "slantcornertabpage|label1"
msgid "Corner Radius"
msgstr "ખૂણો ત્રિજ્યા"
-#: cui/uiconfig/ui/slantcornertabpage.ui:223
+#: cui/uiconfig/ui/slantcornertabpage.ui:248
#, fuzzy
msgctxt "slantcornertabpage|FT_ANGLE"
msgid "_Angle:"
msgstr "ખુણો (_A)"
-#: cui/uiconfig/ui/slantcornertabpage.ui:253
+#: cui/uiconfig/ui/slantcornertabpage.ui:279
msgctxt "slantcornertabpage|label2"
msgid "Slant"
msgstr "ત્રાંસું"
-#: cui/uiconfig/ui/slantcornertabpage.ui:294
+#: cui/uiconfig/ui/slantcornertabpage.ui:320
msgctxt "slantcornertabpage|label4"
msgid "_X:"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:332
+#: cui/uiconfig/ui/slantcornertabpage.ui:360
msgctxt "slantcornertabpage|label7"
msgid "_Y:"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:369
+#: cui/uiconfig/ui/slantcornertabpage.ui:399
msgctxt "slantcornertabpage|label8"
msgid "Control Point 2"
msgstr ""
@@ -11403,118 +11403,118 @@ msgctxt "storedwebconnectiondialog|change"
msgid "_Change Password..."
msgstr "પાસવર્ડને બદલો (_C)..."
-#: cui/uiconfig/ui/swpossizepage.ui:74
+#: cui/uiconfig/ui/swpossizepage.ui:85
msgctxt "swpossizepage|widthft"
msgid "_Width:"
msgstr "પહોળાઈ (_W):"
-#: cui/uiconfig/ui/swpossizepage.ui:111
+#: cui/uiconfig/ui/swpossizepage.ui:123
msgctxt "swpossizepage|heightft"
msgid "H_eight:"
msgstr "ઊંચાઇ (_e):"
-#: cui/uiconfig/ui/swpossizepage.ui:128
+#: cui/uiconfig/ui/swpossizepage.ui:141
msgctxt "swpossizepage|ratio"
msgid "_Keep ratio"
msgstr "ગુણોત્તર રાખો (_K)"
-#: cui/uiconfig/ui/swpossizepage.ui:149
+#: cui/uiconfig/ui/swpossizepage.ui:162
msgctxt "swpossizepage|label2"
msgid "Size"
msgstr "માપ"
-#: cui/uiconfig/ui/swpossizepage.ui:205
+#: cui/uiconfig/ui/swpossizepage.ui:218
msgctxt "swpossizepage|topage"
msgid "To _page"
msgstr "પાનાં માં (_p)"
-#: cui/uiconfig/ui/swpossizepage.ui:222
+#: cui/uiconfig/ui/swpossizepage.ui:234
msgctxt "swpossizepage|topara"
msgid "To paragrap_h"
msgstr "ફકરા ને (_h)"
-#: cui/uiconfig/ui/swpossizepage.ui:238
+#: cui/uiconfig/ui/swpossizepage.ui:250
#, fuzzy
msgctxt "swpossizepage|tochar"
msgid "To cha_racter"
msgstr "અક્ષર માં"
-#: cui/uiconfig/ui/swpossizepage.ui:254
+#: cui/uiconfig/ui/swpossizepage.ui:266
msgctxt "swpossizepage|aschar"
msgid "_As character"
msgstr "અક્ષર તરીકે (_A)"
-#: cui/uiconfig/ui/swpossizepage.ui:270
+#: cui/uiconfig/ui/swpossizepage.ui:282
msgctxt "swpossizepage|toframe"
msgid "To _frame"
msgstr "ફ્રેમમાં (_f)"
-#: cui/uiconfig/ui/swpossizepage.ui:292
+#: cui/uiconfig/ui/swpossizepage.ui:304
msgctxt "swpossizepage|label1"
msgid "Anchor"
msgstr "એન્કર"
-#: cui/uiconfig/ui/swpossizepage.ui:333
+#: cui/uiconfig/ui/swpossizepage.ui:344
#, fuzzy
msgctxt "swpossizepage|horiposft"
msgid "Hori_zontal:"
msgstr "આડું (_z)"
-#: cui/uiconfig/ui/swpossizepage.ui:347
+#: cui/uiconfig/ui/swpossizepage.ui:358
#, fuzzy
msgctxt "swpossizepage|horibyft"
msgid "b_y:"
msgstr "દ્દારા (_y)"
-#: cui/uiconfig/ui/swpossizepage.ui:361
+#: cui/uiconfig/ui/swpossizepage.ui:372
#, fuzzy
msgctxt "swpossizepage|vertbyft"
msgid "_by:"
msgstr "દ્દારા (_b)"
-#: cui/uiconfig/ui/swpossizepage.ui:375
+#: cui/uiconfig/ui/swpossizepage.ui:386
#, fuzzy
msgctxt "swpossizepage|horitoft"
msgid "_to:"
msgstr "પ્રતિ (_T)"
-#: cui/uiconfig/ui/swpossizepage.ui:421
+#: cui/uiconfig/ui/swpossizepage.ui:433
#, fuzzy
msgctxt "swpossizepage|vertposft"
msgid "_Vertical:"
msgstr "ઉભુ (_V)"
-#: cui/uiconfig/ui/swpossizepage.ui:457
+#: cui/uiconfig/ui/swpossizepage.ui:470
msgctxt "swpossizepage|verttoft"
msgid "t_o:"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:478
+#: cui/uiconfig/ui/swpossizepage.ui:492
msgctxt "swpossizepage|mirror"
msgid "_Mirror on even pages"
msgstr "બેકી પાનાં પર મિરર (_M)"
-#: cui/uiconfig/ui/swpossizepage.ui:495
+#: cui/uiconfig/ui/swpossizepage.ui:509
msgctxt "swpossizepage|followtextflow"
msgid "Follow te_xt flow"
msgstr "લખાણ પ્રવાહને અનુસરો (_x)"
-#: cui/uiconfig/ui/swpossizepage.ui:518
+#: cui/uiconfig/ui/swpossizepage.ui:532
msgctxt "swpossizepage|label11"
msgid "Position"
msgstr "સ્થાન"
-#: cui/uiconfig/ui/swpossizepage.ui:549
+#: cui/uiconfig/ui/swpossizepage.ui:563
msgctxt "swpossizepage|pos"
msgid "Positio_n"
msgstr "સ્થાન (_n)"
-#: cui/uiconfig/ui/swpossizepage.ui:565
+#: cui/uiconfig/ui/swpossizepage.ui:579
msgctxt "swpossizepage|size"
msgid "_Size"
msgstr "માપ (_S)"
-#: cui/uiconfig/ui/swpossizepage.ui:587
+#: cui/uiconfig/ui/swpossizepage.ui:601
msgctxt "swpossizepage|label3"
msgid "Protect"
msgstr "સુરક્ષિત રાખો"
@@ -11711,12 +11711,12 @@ msgctxt "textattrtabpage|label2"
msgid "Spacing to Borders"
msgstr "કિનારી ઓ વચ્ચે અંતર રાખી રહ્યા છે"
-#: cui/uiconfig/ui/textattrtabpage.ui:425
+#: cui/uiconfig/ui/textattrtabpage.ui:423
msgctxt "textattrtabpage|TSB_FULL_WIDTH"
msgid "Full _width"
msgstr "સંપૂર્ણ પહોળાઇ (_w)"
-#: cui/uiconfig/ui/textattrtabpage.ui:448
+#: cui/uiconfig/ui/textattrtabpage.ui:446
#, fuzzy
msgctxt "textattrtabpage|label3"
msgid "Text Anchor"
diff --git a/source/gu/filter/source/config/fragments/filters.po b/source/gu/filter/source/config/fragments/filters.po
index b2dc0ea5b07..29f69c2c6d9 100644
--- a/source/gu/filter/source/config/fragments/filters.po
+++ b/source/gu/filter/source/config/fragments/filters.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: 2018-05-16 16:54+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2016-07-04 22:00+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: gu_IN <kde-i18n-doc@kde.org>\n"
@@ -465,8 +465,8 @@ msgctxt ""
"MS Word 2003 XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Word 2003 XML"
-msgstr "માઇક્રોસોફ્ટ વર્ડ ૨૦૦૩ XML"
+msgid "Word 2003 XML"
+msgstr ""
#: MS_Word_2007_XML.xcu
msgctxt ""
@@ -1290,7 +1290,7 @@ msgctxt ""
"Calc MS Excel 2007 VBA XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Excel 2007-2016 XML (macro enabled)"
+msgid "Excel 2007–2019 (macro-enabled)"
msgstr ""
#: calc_MS_Excel_2007_XML.xcu
diff --git a/source/gu/filter/source/config/fragments/types.po b/source/gu/filter/source/config/fragments/types.po
index 4b766bf86c7..1df0d4510d2 100644
--- a/source/gu/filter/source/config/fragments/types.po
+++ b/source/gu/filter/source/config/fragments/types.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: 2018-05-08 15:11+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2016-07-04 22:00+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: gu_IN <kde-i18n-doc@kde.org>\n"
@@ -295,8 +295,8 @@ msgctxt ""
"writer_MS_Word_2003_XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Word 2003 XML"
-msgstr "Microsoft Word 2003 XML"
+msgid "Word 2003 XML"
+msgstr ""
#: writer_MS_Word_2007_XML.xcu
msgctxt ""
diff --git a/source/gu/fpicker/messages.po b/source/gu/fpicker/messages.po
index 3e1ce4d69ef..e6aca94f9db 100644
--- a/source/gu/fpicker/messages.po
+++ b/source/gu/fpicker/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+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"
@@ -281,13 +281,13 @@ msgstr ""
#: fpicker/uiconfig/ui/foldernamedialog.ui:8
msgctxt "foldernamedialog|FolderNameDialog"
-msgid "Folder Name ?"
-msgstr "ફોલ્ડર નામ?"
+msgid "Folder Name"
+msgstr ""
#: fpicker/uiconfig/ui/foldernamedialog.ui:91
msgctxt "foldernamedialog|label2"
-msgid "Na_me"
-msgstr "નામ (_m)"
+msgid "Na_me:"
+msgstr ""
#: fpicker/uiconfig/ui/foldernamedialog.ui:122
#, fuzzy
diff --git a/source/gu/helpcontent2/source/text/shared/00.po b/source/gu/helpcontent2/source/text/shared/00.po
index a8b51684c74..e8f97bcf171 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2016-05-24 11:38+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -397,16 +397,16 @@ msgctxt ""
"00000001.xhp\n"
"hd_id3149670\n"
"help.text"
-msgid "Back"
-msgstr "પાછા"
+msgid "Reset"
+msgstr ""
#: 00000001.xhp
msgctxt ""
"00000001.xhp\n"
"par_id3145068\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optionsdialog/revert\">Resets modified values back to the $[officename] default values.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/optionsdialog/revert\">Resets modified values back to the $[officename] default values.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optionsdialog/revert\">Resets changes made to the current tab to those applicable when this dialog was opened.</ahelp>"
+msgstr ""
#: 00000001.xhp
msgctxt ""
@@ -552,6 +552,54 @@ msgctxt ""
msgid "<variable id=\"ShiftF1\">Press Shift+F1 and point to a control to learn more about that control.</variable>"
msgstr ""
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"hd_id631527692833772\n"
+"help.text"
+msgid "Options dialog buttons"
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"hd_id831527692839432\n"
+"help.text"
+msgid "OK"
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"par_id471527692844934\n"
+"help.text"
+msgid "Save the changes in the page and close the Options dialog."
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"hd_id261527692850720\n"
+"help.text"
+msgid "Cancel"
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"par_id571527692855533\n"
+"help.text"
+msgid "Close the Options dialog and discard all changes done."
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"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 Options dialog."
+msgstr ""
+
#: 00000002.xhp
msgctxt ""
"00000002.xhp\n"
@@ -11125,16 +11173,16 @@ msgctxt ""
"00040502.xhp\n"
"par_id3151293\n"
"help.text"
-msgid "<variable id=\"linienstile\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Line Styles</emph> tab </variable>"
-msgstr "<variable id=\"linienstile\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Line Styles</emph> tab </variable>"
+msgid "<variable id=\"linienstile\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Line Styles</emph> tab</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3149317\n"
"help.text"
-msgid "<variable id=\"linienenden\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Arrow Styles</emph> tab </variable>"
-msgstr "<variable id=\"linienenden\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Arrow Styles</emph> tab </variable>"
+msgid "<variable id=\"linienenden\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Arrow Styles</emph> tab</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
@@ -11173,15 +11221,15 @@ msgctxt ""
"00040502.xhp\n"
"par_id3154948\n"
"help.text"
-msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Area</emph> tab"
-msgstr "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Area</emph> tab"
+msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Area</emph> tab."
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3145607\n"
"help.text"
-msgid "Choose <emph>View - Styles</emph> - open context menu and choose <emph>Modify/New - Area</emph> tab (presentation documents)"
+msgid "Choose <emph>View - Styles</emph> - open context menu and choose <emph>Modify/New - Area</emph> tab (presentation documents)."
msgstr ""
#: 00040502.xhp
@@ -11189,47 +11237,47 @@ msgctxt ""
"00040502.xhp\n"
"par_id3152922\n"
"help.text"
-msgid "Choose <emph>Format - Title - Area</emph> tab (chart documents)"
-msgstr "Choose <emph>Format - Title - Area</emph> tab (chart documents)"
+msgid "Choose <emph>Format - Title - Area</emph> tab (chart documents)."
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3157894\n"
"help.text"
-msgid "Choose <emph>Format - Legend - Area</emph> tab (chart documents)"
-msgstr "Choose <emph>Format - Legend - Area</emph> tab (chart documents)"
+msgid "Choose <emph>Format - Legend - Area</emph> tab (chart documents)."
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3144444\n"
"help.text"
-msgid "Choose <emph>Format - Chart Wall - Area</emph> tab (chart documents)"
-msgstr "Choose <emph>Format - Chart Wall - Area</emph> tab (chart documents)"
+msgid "Choose <emph>Format - Chart Wall - Area</emph> tab (chart documents)."
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3156543\n"
"help.text"
-msgid "Choose <emph>Format - Chart Floor - Area</emph> tab (chart documents)"
-msgstr "Choose <emph>Format - Chart Floor - Area</emph> tab (chart documents)"
+msgid "Choose <emph>Format - Chart Floor - Area</emph> tab (chart documents)."
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3150685\n"
"help.text"
-msgid "Choose <emph>Format - Chart Area - Area</emph> tab (chart documents)"
-msgstr "Choose <emph>Format - Chart Area - Area</emph> tab (chart documents)"
+msgid "Choose <emph>Format - Chart Area - Area</emph> tab (chart documents)."
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3149664\n"
"help.text"
-msgid "Choose <emph>Slide - Properties - Background</emph> tab (in $[officename] Impress)"
+msgid "Choose <emph>Slide - Properties - Background</emph> tab (in $[officename] Impress)."
msgstr ""
#: 00040502.xhp
@@ -11237,7 +11285,15 @@ msgctxt ""
"00040502.xhp\n"
"par_id9149694\n"
"help.text"
-msgid "Choose <emph>Page - Properties - Background</emph> tab (in $[officename] Draw)"
+msgid "Choose <emph>Page - Properties - Background</emph> tab (in $[officename] Draw)."
+msgstr ""
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id841527083135387\n"
+"help.text"
+msgid "Choose <emph>Table - Properties - Background</emph> tab."
msgstr ""
#: 00040502.xhp
@@ -11349,32 +11405,32 @@ msgctxt ""
"00040502.xhp\n"
"par_id3150011\n"
"help.text"
-msgid "<variable id=\"schatte\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Shadow</emph> tab </variable>"
-msgstr "<variable id=\"schatte\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Shadow</emph> tab </variable>"
+msgid "<variable id=\"schatte\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Shadow</emph> tab</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3147441\n"
"help.text"
-msgid "<variable id=\"verlauf\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Gradients</emph> tab </variable>"
-msgstr "<variable id=\"verlauf\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Gradients</emph> tab </variable>"
+msgid "<variable id=\"verlauf\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Gradients</emph> tab</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3155308\n"
"help.text"
-msgid "<variable id=\"schraffur\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Hatching</emph> tab </variable>"
-msgstr "<variable id=\"schraffur\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Hatching</emph> tab </variable>"
+msgid "<variable id=\"schraffur\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Hatching</emph> tab</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3145800\n"
"help.text"
-msgid "<variable id=\"bitmap\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Bitmaps</emph> tab </variable>"
-msgstr "<variable id=\"bitmap\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Bitmaps</emph> tab </variable>"
+msgid "<variable id=\"bitmap\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Bitmaps</emph> tab</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
@@ -11413,8 +11469,8 @@ msgctxt ""
"00040502.xhp\n"
"par_id3156286\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F4 key </caseinline><caseinline select=\"IMPRESS\">F4 key </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F4 key </caseinline><caseinline select=\"IMPRESS\">F4 key </caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F4 key</caseinline><caseinline select=\"IMPRESS\">F4 key</caseinline></switchinline>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
@@ -11453,8 +11509,8 @@ msgctxt ""
"00040502.xhp\n"
"par_id3153099\n"
"help.text"
-msgid "<variable id=\"position2\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Position and Size</emph> tab </variable>"
-msgstr "<variable id=\"position2\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Position and Size</emph> tab </variable>"
+msgid "<variable id=\"position2\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Position and Size</emph> tab</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
@@ -11485,16 +11541,16 @@ msgctxt ""
"00040502.xhp\n"
"par_id3145666\n"
"help.text"
-msgid "<variable id=\"ecke\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Slant & Corner Radius</emph> tab </variable>"
-msgstr "<variable id=\"ecke\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Slant & Corner Radius</emph> tab </variable>"
+msgid "<variable id=\"ecke\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Slant & Corner Radius</emph> tab</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3146081\n"
"help.text"
-msgid "<variable id=\"legende\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Callout</emph> tab (only for textbox callouts, not for custom shapes callouts) </variable>"
-msgstr "<variable id=\"ecke\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Slant & Corner Radius</emph> tab </variable>"
+msgid "<variable id=\"legende\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Callout</emph> tab (only for textbox callouts, not for custom shapes callouts)</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
@@ -11517,8 +11573,8 @@ msgctxt ""
"00040502.xhp\n"
"par_id3149019\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F8 key </caseinline><caseinline select=\"IMPRESS\">F8 key </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F8 key </caseinline><caseinline select=\"IMPRESS\">F8 key </caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F8 key</caseinline><caseinline select=\"IMPRESS\">F8 key</caseinline></switchinline>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
@@ -11805,8 +11861,8 @@ msgctxt ""
"00040502.xhp\n"
"par_id3153076\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Align Center Horizontally </caseinline><defaultinline>Centered</defaultinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Align Center Horizontally </caseinline><defaultinline>Centered</defaultinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Align Center Horizontally</caseinline><defaultinline>Centered</defaultinline></switchinline>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
@@ -11845,8 +11901,8 @@ msgctxt ""
"00040502.xhp\n"
"par_id3150527\n"
"help.text"
-msgid "<variable id=\"font\">Click <emph>Fontwork</emph> icon on <emph>Drawing</emph> bar </variable>"
-msgstr "<variable id=\"font\">Click <emph>Fontwork</emph> icon on <emph>Drawing</emph> bar </variable>"
+msgid "<variable id=\"font\">Click <emph>Fontwork</emph> icon on <emph>Drawing</emph> bar</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
diff --git a/source/gu/helpcontent2/source/text/shared/01.po b/source/gu/helpcontent2/source/text/shared/01.po
index 3908049b2f3..ec886f242c4 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: 2018-05-23 23:19+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2016-07-06 01:55+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -23587,6 +23587,22 @@ msgstr ""
#: 05210100.xhp
msgctxt ""
"05210100.xhp\n"
+"hd_id471527077476052\n"
+"help.text"
+msgid "Cell, Row or Table background selector"
+msgstr ""
+
+#: 05210100.xhp
+msgctxt ""
+"05210100.xhp\n"
+"par_id661527077493366\n"
+"help.text"
+msgid "Select the table object which background area is to be filled."
+msgstr ""
+
+#: 05210100.xhp
+msgctxt ""
+"05210100.xhp\n"
"hd_id3147373\n"
"help.text"
msgid "None"
@@ -31205,15 +31221,15 @@ msgctxt ""
"06040100.xhp\n"
"hd_id3145072\n"
"help.text"
-msgid "Automatic *bold* and _underline_"
-msgstr "Automatic *bold* and _underline_"
+msgid "Automatic *bold*, /italic/, -strikeout- and _underline_"
+msgstr ""
#: 06040100.xhp
msgctxt ""
"06040100.xhp\n"
"par_id3153577\n"
"help.text"
-msgid "Automatically applies bold formatting to text enclosed by asterisks (*), and underline to text enclosed by underscores ( _ ), for example, *bold*. The asterisks and underscores are not displayed after the formatting is applied."
+msgid "Automatically applies bold, italic, strikethrough or underline formatting to text enclosed by asterisks (*), slashes (/), hyphens (-), and underscores (_), respectively. These characters disappear after the formatting is applied."
msgstr ""
#: 06040100.xhp
@@ -31221,8 +31237,8 @@ msgctxt ""
"06040100.xhp\n"
"par_id3153127\n"
"help.text"
-msgid "This feature does not work if the formatting characters * or _ are entered with an <link href=\"text/shared/00/00000005.xhp#IME\" name=\"Input Method Editor\">Input Method Editor</link>."
-msgstr "This feature does not work if the formatting characters * or _ are entered with an <link href=\"text/shared/00/00000005.xhp#IME\" name=\"Input Method Editor\">Input Method Editor</link>."
+msgid "This feature does not work if the formatting characters <item type=\"literal\">* / - _</item> are entered with an <link href=\"text/shared/00/00000005.xhp#IME\" name=\"Input Method Editor\">Input Method Editor</link>."
+msgstr ""
#: 06040100.xhp
msgctxt ""
diff --git a/source/gu/helpcontent2/source/text/shared/optionen.po b/source/gu/helpcontent2/source/text/shared/optionen.po
index dbf5f1aded3..7061adb3ff4 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: 2018-05-08 15:10+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2016-07-06 02:14+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -83,6 +83,22 @@ msgstr ""
#: 01000000.xhp
msgctxt ""
"01000000.xhp\n"
+"hd_id551527692881035\n"
+"help.text"
+msgid "Help"
+msgstr ""
+
+#: 01000000.xhp
+msgctxt ""
+"01000000.xhp\n"
+"par_id831527692885723\n"
+"help.text"
+msgid "Opens the help contents for the Options page displayed."
+msgstr ""
+
+#: 01000000.xhp
+msgctxt ""
+"01000000.xhp\n"
"hd_id3159149\n"
"help.text"
msgid "<link href=\"text/shared/optionen/01010000.xhp\" name=\"$[officename]\">%PRODUCTNAME</link>"
@@ -4565,8 +4581,8 @@ msgctxt ""
"01030300.xhp\n"
"par_idN10640\n"
"help.text"
-msgid "Options"
-msgstr "વિકલ્પો"
+msgid "Security Options and Warnings"
+msgstr ""
#: 01030300.xhp
msgctxt ""
@@ -4597,7 +4613,7 @@ msgctxt ""
"01030300.xhp\n"
"hd_id3168736\n"
"help.text"
-msgid "Persistently save passwords protected by a master password"
+msgid "Persistently save passwords for web connections"
msgstr ""
#: 01030300.xhp
@@ -4613,6 +4629,22 @@ msgctxt ""
"01030300.xhp\n"
"hd_id3901791\n"
"help.text"
+msgid "Protected by a master password (recommended)"
+msgstr ""
+
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"par_id31527711486980\n"
+"help.text"
+msgid "Check to enable all connections' passwords to be protected by a master password."
+msgstr ""
+
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"hd_id141527711343312\n"
+"help.text"
msgid "Master Password"
msgstr ""
@@ -13733,7 +13765,7 @@ msgctxt ""
"java.xhp\n"
"hd_id3148618\n"
"help.text"
-msgid "Optional (unstable) options"
+msgid "Optional Features"
msgstr ""
#: java.xhp
@@ -13749,7 +13781,7 @@ msgctxt ""
"java.xhp\n"
"par_id3156344\n"
"help.text"
-msgid "It enables features that are not yet complete or contain known bugs. The list of these features is different version by version, or even it can be empty."
+msgid "Enables features that are not yet complete or may contain known bugs. The list of these features is different version by version, or even it can be empty."
msgstr ""
#: java.xhp
@@ -13765,7 +13797,7 @@ msgctxt ""
"java.xhp\n"
"par_id3156345\n"
"help.text"
-msgid "It enables macro recording, so the <link href=\"text/shared/guide/macro_recording.xhp\" name=\"Tools - Macros - Record Macro\"><item type=\"menuitem\">Tools - Macros - Record Macro</item></link> menu item will be available."
+msgid "Enables macro recording. The <link href=\"text/shared/guide/macro_recording.xhp\" name=\"Tools - Macros - Record Macro\"><item type=\"menuitem\">Tools - Macros - Record Macro</item></link> menu item is available."
msgstr ""
#: java.xhp
diff --git a/source/gu/officecfg/registry/data/org/openoffice/Office/UI.po b/source/gu/officecfg/registry/data/org/openoffice/Office/UI.po
index cacfe5f3aeb..66d485fb5db 100644
--- a/source/gu/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/gu/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-22 13:17+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2016-07-04 22:34+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Gujarati <>\n"
@@ -26938,8 +26938,8 @@ msgctxt ""
"..WriterCommands.UserInterface.Commands..uno:TextAttributes\n"
"Label\n"
"value.text"
-msgid "Text Attributes"
-msgstr "લખાણના લક્ષણો"
+msgid "Text Attributes..."
+msgstr ""
#: WriterCommands.xcu
msgctxt ""
diff --git a/source/gu/readlicense_oo/docs.po b/source/gu/readlicense_oo/docs.po
index fbdf75a1b53..f38f5ec40e4 100644
--- a/source/gu/readlicense_oo/docs.po
+++ b/source/gu/readlicense_oo/docs.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: 2018-04-17 15:54+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2016-07-04 22:34+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: gu_IN <kde-i18n-doc@kde.org>\n"
@@ -117,7 +117,7 @@ msgctxt ""
"readme.xrm\n"
"macxiOSX\n"
"readmeitem.text"
-msgid "MacOSX 10.8 (Mountain Lion) or higher"
+msgid "MacOSX 10.9 (Mavericks) or higher"
msgstr ""
#: readme.xrm
diff --git a/source/gu/sc/messages.po b/source/gu/sc/messages.po
index 158d9d1433c..4a166758f56 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-12 14:40+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"
@@ -1871,16 +1871,21 @@ msgid "Nested arrays are not supported."
msgstr "પુનરાવર્તિત એરે આધારભૂત નથી."
#: sc/inc/globstr.hrc:390
+msgctxt "STR_ERR_LONG_BAD_ARRAY_CONTENT"
+msgid "Unsupported inline array content."
+msgstr ""
+
+#: sc/inc/globstr.hrc:391
msgctxt "STR_UNDO_TEXTTOCOLUMNS"
msgid "Text to Columns"
msgstr "સ્તંભોનું લખાણ"
-#: sc/inc/globstr.hrc:391
+#: sc/inc/globstr.hrc:392
msgctxt "STR_DOC_UPDATED"
msgid "Your spreadsheet has been updated with changes saved by other users."
msgstr "તમારી સ્પ્રેડશીટ એ બીજા વપરાશકર્તાઓ દ્દારા સંગ્રહ થયેલ બદલાવો સાથે સુધારી દેવામાં આવી છે."
-#: sc/inc/globstr.hrc:392
+#: sc/inc/globstr.hrc:393
msgctxt "STR_DOC_WILLBESAVED"
msgid ""
"The spreadsheet must be saved now to activate sharing mode.\n"
@@ -1891,7 +1896,7 @@ msgstr ""
"\n"
"શું તમે એને ચાલુ રાખવા માંગો છો?"
-#: sc/inc/globstr.hrc:393
+#: sc/inc/globstr.hrc:394
msgctxt "STR_DOC_WILLNOTBESAVED"
msgid ""
"Already resolved merge conflicts will be lost and your changes to the shared spreadsheet will not be saved.\n"
@@ -1902,7 +1907,7 @@ msgstr ""
"\n"
"શું તમે ચાલુ રાખવા માંગો છો?"
-#: sc/inc/globstr.hrc:394
+#: sc/inc/globstr.hrc:395
msgctxt "STR_DOC_DISABLESHARED"
msgid ""
"Disabling shared mode of a spreadsheet hinders all other users of the shared spreadsheet to merge back their work.\n"
@@ -1913,7 +1918,7 @@ msgstr ""
"\n"
"શું તમે ચાલુ રાખવા માંગો છો?"
-#: sc/inc/globstr.hrc:395
+#: sc/inc/globstr.hrc:396
msgctxt "STR_DOC_NOLONGERSHARED"
msgid ""
"This spreadsheet is no longer in shared mode.\n"
@@ -1924,7 +1929,7 @@ msgstr ""
"\n"
"અલગ ફાઇલમાં તમારી સ્પ્રેડશીટને સંગ્રહ કરો અને જાતે વહેંચાયેલ સ્પ્રેડશીટમાં તમારા બદલાવો ને ભેગા કરો."
-#: sc/inc/globstr.hrc:396
+#: sc/inc/globstr.hrc:397
msgctxt "STR_FILE_LOCKED_TRY_LATER"
msgid ""
"The shared spreadsheet file is locked due to a merge in progress by user: '%1'\n"
@@ -1935,7 +1940,7 @@ msgstr ""
"\n"
"તાળુ મરાયેલ ફાઇલની વહેંચણી સ્થિતિ ને નિષ્ક્રિય કરી શકાતી નથી. પછીથી ફરીથી પ્રયત્ન કરો."
-#: sc/inc/globstr.hrc:397
+#: sc/inc/globstr.hrc:398
msgctxt "STR_FILE_LOCKED_SAVE_LATER"
msgid ""
"The shared spreadsheet file is locked due to a merge in progress by user: '%1'\n"
@@ -1946,147 +1951,147 @@ msgstr ""
"\n"
"તમારા બદલાવો ને સંગ્રહ કરવા માચે પછીથી ફરી પ્રયત્ન કરો."
-#: sc/inc/globstr.hrc:398
+#: sc/inc/globstr.hrc:399
msgctxt "STR_UNKNOWN_USER"
msgid "Unknown User"
msgstr "અજ્ઞાત વપરાશકર્તા"
-#: sc/inc/globstr.hrc:399
+#: sc/inc/globstr.hrc:400
msgctxt "STR_SHAPE_AUTOSHAPE"
msgid "AutoShape"
msgstr "સ્વયંઆકાર"
-#: sc/inc/globstr.hrc:400
+#: sc/inc/globstr.hrc:401
msgctxt "STR_SHAPE_RECTANGLE"
msgid "Rectangle"
msgstr "લંબચોરસ"
-#: sc/inc/globstr.hrc:401
+#: sc/inc/globstr.hrc:402
msgctxt "STR_SHAPE_LINE"
msgid "Line"
msgstr "લીટી"
-#: sc/inc/globstr.hrc:402
+#: sc/inc/globstr.hrc:403
msgctxt "STR_SHAPE_OVAL"
msgid "Oval"
msgstr "અંડાકાર"
-#: sc/inc/globstr.hrc:403
+#: sc/inc/globstr.hrc:404
msgctxt "STR_FORM_BUTTON"
msgid "Button"
msgstr "બટન"
-#: sc/inc/globstr.hrc:404
+#: sc/inc/globstr.hrc:405
msgctxt "STR_FORM_CHECKBOX"
msgid "Check Box"
msgstr "ચકાસણી બોક્સ"
-#: sc/inc/globstr.hrc:405
+#: sc/inc/globstr.hrc:406
msgctxt "STR_FORM_OPTIONBUTTON"
msgid "Option Button"
msgstr "વિકલ્પ બટન"
-#: sc/inc/globstr.hrc:406
+#: sc/inc/globstr.hrc:407
msgctxt "STR_FORM_LABEL"
msgid "Label"
msgstr "લેબલ"
-#: sc/inc/globstr.hrc:407
+#: sc/inc/globstr.hrc:408
msgctxt "STR_FORM_LISTBOX"
msgid "List Box"
msgstr "યાદી બોક્સ"
-#: sc/inc/globstr.hrc:408
+#: sc/inc/globstr.hrc:409
msgctxt "STR_FORM_GROUPBOX"
msgid "Group Box"
msgstr "જૂથ બોક્સ"
-#: sc/inc/globstr.hrc:409
+#: sc/inc/globstr.hrc:410
msgctxt "STR_FORM_DROPDOWN"
msgid "Drop Down"
msgstr "નીચે ખેંચો"
-#: sc/inc/globstr.hrc:410
+#: sc/inc/globstr.hrc:411
msgctxt "STR_FORM_SPINNER"
msgid "Spinner"
msgstr "સ્પીનર"
-#: sc/inc/globstr.hrc:411
+#: sc/inc/globstr.hrc:412
msgctxt "STR_FORM_SCROLLBAR"
msgid "Scroll Bar"
msgstr "સરકપટ્ટી"
-#: sc/inc/globstr.hrc:412
+#: sc/inc/globstr.hrc:413
msgctxt "STR_STYLE_FAMILY_CELL"
msgid "Cell Styles"
msgstr "ખાનાં શૈલીઓ"
-#: sc/inc/globstr.hrc:413
+#: sc/inc/globstr.hrc:414
msgctxt "STR_STYLE_FAMILY_PAGE"
msgid "Page Styles"
msgstr "પાનાંની શૈલીઓ"
-#: sc/inc/globstr.hrc:414
+#: sc/inc/globstr.hrc:415
msgctxt "STR_ERR_DATAPILOTSOURCE"
msgid "Pivot table source data is invalid."
msgstr "પિવોટ કોષ્ટક સ્ત્રોત માહિતી અયોગ્ય છે."
-#: sc/inc/globstr.hrc:415
+#: sc/inc/globstr.hrc:416
msgctxt "STR_OPTIONS_WARN_SEPARATORS"
msgid "Because the current formula separator settings conflict with the locale, the formula separators have been reset to their default values."
msgstr "કારણ કે હાલનું સૂત્ર વિભાજક સુયોજનો લૉકેલ સાથે બંધબેસતુ નથી, સૂત્ર વિભાજકોને તેની મૂળભૂત કિંમતો માટે પુન:સુયોજિત કરી દેવામાં આવ્યુ છે."
-#: sc/inc/globstr.hrc:416
+#: sc/inc/globstr.hrc:417
msgctxt "STR_UNDO_INSERT_CURRENT_DATE"
msgid "Insert Current Date"
msgstr "હાલની તારીખને દાખલ કરો"
-#: sc/inc/globstr.hrc:417
+#: sc/inc/globstr.hrc:418
msgctxt "STR_UNDO_INSERT_CURRENT_TIME"
msgid "Insert Current Time"
msgstr "હાલનાં સમયને દાખલ કરો"
-#: sc/inc/globstr.hrc:418
+#: sc/inc/globstr.hrc:419
msgctxt "STR_MANAGE_NAMES"
msgid "Manage Names..."
msgstr "નામ સંચાલિત કરો..."
-#: sc/inc/globstr.hrc:419
+#: sc/inc/globstr.hrc:420
msgctxt "STR_HEADER_NAME"
msgid "Name"
msgstr "નામ"
-#: sc/inc/globstr.hrc:420
+#: sc/inc/globstr.hrc:421
msgctxt "STR_HEADER_RANGE_OR_EXPR"
msgid "Range or formula expression"
msgstr ""
-#: sc/inc/globstr.hrc:421
+#: sc/inc/globstr.hrc:422
msgctxt "STR_HEADER_SCOPE"
msgid "Scope"
msgstr "તક"
-#: sc/inc/globstr.hrc:422
+#: sc/inc/globstr.hrc:423
msgctxt "STR_MULTI_SELECT"
msgid "(multiple)"
msgstr "(ઘણી)"
-#: sc/inc/globstr.hrc:423
+#: sc/inc/globstr.hrc:424
msgctxt "STR_GLOBAL_SCOPE"
msgid "Document (Global)"
msgstr "દસ્તાવેજ (વૈશ્ર્વિક)"
-#: sc/inc/globstr.hrc:424
+#: sc/inc/globstr.hrc:425
msgctxt "STR_ERR_NAME_EXISTS"
msgid "Invalid name. Already in use for the selected scope."
msgstr "અમાન્ય નામ. પસંદ થયેલ તક માટે પહેલેથી જ વપરાશમાં છે."
-#: sc/inc/globstr.hrc:425
+#: sc/inc/globstr.hrc:426
msgctxt "STR_ERR_NAME_INVALID"
msgid "Invalid name. Only use letters, numbers and underscore."
msgstr "અમાન્ય નામ. ફક્ત અક્ષરો, સંખ્યા અને અધોરેખાને વાપરો."
-#: sc/inc/globstr.hrc:426
+#: sc/inc/globstr.hrc:427
msgctxt "STR_UNSAVED_EXT_REF"
msgid ""
"This Document contains external references to unsaved documents.\n"
@@ -2097,217 +2102,217 @@ msgstr ""
"\n"
"શું તમે ચાલુ રાખવા માંગો છો?"
-#: sc/inc/globstr.hrc:427
+#: sc/inc/globstr.hrc:428
msgctxt "STR_CLOSE_WITH_UNSAVED_REFS"
msgid "This Document is referenced by another document and not yet saved. Closing it without saving will result in data loss."
msgstr "આ દસ્તાવેજ બીજા દસ્તાવેજ દ્દારા સંદર્ભ થયેલ છે અને હજુ સંગ્રહ થયેલ નથી. સંગ્રહ કર્યા વગર બંધ કરવાથી માહિતી નુકશાનમાં પરિણમશે."
-#: sc/inc/globstr.hrc:428
+#: sc/inc/globstr.hrc:429
msgctxt "STR_HEADER_RANGE"
msgid "Range"
msgstr "વિસ્તાર"
-#: sc/inc/globstr.hrc:429
+#: sc/inc/globstr.hrc:430
msgctxt "STR_HEADER_COND"
msgid "First Condition"
msgstr "પ્રથમ શરત"
-#: sc/inc/globstr.hrc:430
+#: sc/inc/globstr.hrc:431
msgctxt "STR_COND_CONDITION"
msgid "Cell value is"
msgstr "ખાનાં કિંમત છે"
-#: sc/inc/globstr.hrc:431
+#: sc/inc/globstr.hrc:432
msgctxt "STR_COND_COLORSCALE"
msgid "ColorScale"
msgstr "ColorScale"
-#: sc/inc/globstr.hrc:432
+#: sc/inc/globstr.hrc:433
msgctxt "STR_COND_DATABAR"
msgid "DataBar"
msgstr "DataBar"
-#: sc/inc/globstr.hrc:433
+#: sc/inc/globstr.hrc:434
msgctxt "STR_COND_ICONSET"
msgid "IconSet"
msgstr "IconSet"
-#: sc/inc/globstr.hrc:434
+#: sc/inc/globstr.hrc:435
msgctxt "STR_COND_BETWEEN"
msgid "between"
msgstr "વચ્ચે"
-#: sc/inc/globstr.hrc:435
+#: sc/inc/globstr.hrc:436
msgctxt "STR_COND_NOTBETWEEN"
msgid "not between"
msgstr "વચ્ચે નથી"
-#: sc/inc/globstr.hrc:436
+#: sc/inc/globstr.hrc:437
msgctxt "STR_COND_UNIQUE"
msgid "unique"
msgstr "અનન્ય"
-#: sc/inc/globstr.hrc:437
+#: sc/inc/globstr.hrc:438
msgctxt "STR_COND_DUPLICATE"
msgid "duplicate"
msgstr "નકલી"
-#: sc/inc/globstr.hrc:438
+#: sc/inc/globstr.hrc:439
msgctxt "STR_COND_FORMULA"
msgid "Formula is"
msgstr "સૂત્ર છે"
-#: sc/inc/globstr.hrc:439
+#: sc/inc/globstr.hrc:440
msgctxt "STR_COND_TOP10"
msgid "Top Elements"
msgstr "ઉપરનાં ઘટકો"
-#: sc/inc/globstr.hrc:440
+#: sc/inc/globstr.hrc:441
msgctxt "STR_COND_BOTTOM10"
msgid "Bottom Elements"
msgstr "નીચેનાં ઘટકો"
-#: sc/inc/globstr.hrc:441
+#: sc/inc/globstr.hrc:442
msgctxt "STR_COND_TOP_PERCENT"
msgid "Top Percent"
msgstr "ઉચ્ચ ટકાવારી"
-#: sc/inc/globstr.hrc:442
+#: sc/inc/globstr.hrc:443
msgctxt "STR_COND_DATE"
msgid "Date is"
msgstr "તારીખ છે"
-#: sc/inc/globstr.hrc:443
+#: sc/inc/globstr.hrc:444
msgctxt "STR_COND_BOTTOM_PERCENT"
msgid "Bottom Percent"
msgstr "નીચેની ટકાવારી"
-#: sc/inc/globstr.hrc:444
+#: sc/inc/globstr.hrc:445
msgctxt "STR_COND_ABOVE_AVERAGE"
msgid "Above Average"
msgstr "સરેરાશ ઉપર"
-#: sc/inc/globstr.hrc:445
+#: sc/inc/globstr.hrc:446
msgctxt "STR_COND_BELOW_AVERAGE"
msgid "Below Average"
msgstr "સરેરાશ નીચે"
-#: sc/inc/globstr.hrc:446
+#: sc/inc/globstr.hrc:447
msgctxt "STR_COND_ABOVE_EQUAL_AVERAGE"
msgid "Above or equal Average"
msgstr "ઉપર અથવા સમાન સરેરાશ"
-#: sc/inc/globstr.hrc:447
+#: sc/inc/globstr.hrc:448
msgctxt "STR_COND_BELOW_EQUAL_AVERAGE"
msgid "Below or equal Average"
msgstr "નીચે અથવા સમાન સરેરાશ"
-#: sc/inc/globstr.hrc:448
+#: sc/inc/globstr.hrc:449
msgctxt "STR_COND_ERROR"
msgid "an Error code"
msgstr "ભૂલ કોડ"
-#: sc/inc/globstr.hrc:449
+#: sc/inc/globstr.hrc:450
msgctxt "STR_COND_NOERROR"
msgid "not an Error code"
msgstr "ભૂલ કોડ નથી"
-#: sc/inc/globstr.hrc:450
+#: sc/inc/globstr.hrc:451
msgctxt "STR_COND_BEGINS_WITH"
msgid "Begins with"
msgstr "ની સાથે શરૂ કરો"
-#: sc/inc/globstr.hrc:451
+#: sc/inc/globstr.hrc:452
msgctxt "STR_COND_ENDS_WITH"
msgid "Ends with"
msgstr "ની સાથે અંત કરો"
-#: sc/inc/globstr.hrc:452
+#: sc/inc/globstr.hrc:453
msgctxt "STR_COND_CONTAINS"
msgid "Contains"
msgstr "સમાવે છે"
-#: sc/inc/globstr.hrc:453
+#: sc/inc/globstr.hrc:454
msgctxt "STR_COND_NOT_CONTAINS"
msgid "Not Contains"
msgstr "સમાવતુ નથી"
-#: sc/inc/globstr.hrc:454
+#: sc/inc/globstr.hrc:455
msgctxt "STR_COND_TODAY"
msgid "today"
msgstr "આજે"
-#: sc/inc/globstr.hrc:455
+#: sc/inc/globstr.hrc:456
msgctxt "STR_COND_YESTERDAY"
msgid "yesterday"
msgstr "ગઇ કાલે"
-#: sc/inc/globstr.hrc:456
+#: sc/inc/globstr.hrc:457
msgctxt "STR_COND_TOMORROW"
msgid "tomorrow"
msgstr "આવતી કાલે"
-#: sc/inc/globstr.hrc:457
+#: sc/inc/globstr.hrc:458
msgctxt "STR_COND_LAST7DAYS"
msgid "in the last 7 days"
msgstr "છેલ્લા ૭ દિવસોમાં"
-#: sc/inc/globstr.hrc:458
+#: sc/inc/globstr.hrc:459
msgctxt "STR_COND_THISWEEK"
msgid "this week"
msgstr "આ અઠવાડિયું"
-#: sc/inc/globstr.hrc:459
+#: sc/inc/globstr.hrc:460
msgctxt "STR_COND_LASTWEEK"
msgid "last week"
msgstr "ગયું અઠવાડિયું"
-#: sc/inc/globstr.hrc:460
+#: sc/inc/globstr.hrc:461
msgctxt "STR_COND_NEXTWEEK"
msgid "next week"
msgstr "આગળનું અઠવાડિયું"
-#: sc/inc/globstr.hrc:461
+#: sc/inc/globstr.hrc:462
msgctxt "STR_COND_THISMONTH"
msgid "this month"
msgstr "આ મહિનો"
-#: sc/inc/globstr.hrc:462
+#: sc/inc/globstr.hrc:463
msgctxt "STR_COND_LASTMONTH"
msgid "last month"
msgstr "ગયો મહિનો"
-#: sc/inc/globstr.hrc:463
+#: sc/inc/globstr.hrc:464
msgctxt "STR_COND_NEXTMONTH"
msgid "next month"
msgstr "આગળનો મહિનો"
-#: sc/inc/globstr.hrc:464
+#: sc/inc/globstr.hrc:465
msgctxt "STR_COND_THISYEAR"
msgid "this year"
msgstr "આ વર્ષ"
-#: sc/inc/globstr.hrc:465
+#: sc/inc/globstr.hrc:466
msgctxt "STR_COND_LASTYEAR"
msgid "last year"
msgstr "ગયું વર્ષ"
-#: sc/inc/globstr.hrc:466
+#: sc/inc/globstr.hrc:467
msgctxt "STR_COND_NEXTYEAR"
msgid "next year"
msgstr "આગળનું વર્ષ"
-#: sc/inc/globstr.hrc:467
+#: sc/inc/globstr.hrc:468
msgctxt "STR_COND_AND"
msgid "and"
msgstr "અને"
-#: sc/inc/globstr.hrc:468
+#: sc/inc/globstr.hrc:469
msgctxt "STR_ERR_CONDFORMAT_PROTECTED"
msgid "Conditional Formats can not be created, deleted or changed in protected sheets."
msgstr ""
-#: sc/inc/globstr.hrc:469
+#: sc/inc/globstr.hrc:470
msgctxt "STR_EDIT_EXISTING_COND_FORMATS"
msgid ""
"The selected cell already contains conditional formatting. You can either edit the existing conditional format or you define a new overlapping conditional format.\n"
@@ -2318,7 +2323,7 @@ msgstr ""
"\n"
"શું તમે હાલનાં શરતી બંધારણમાં ફેરફાર કરવા માંગો છો?"
-#: sc/inc/globstr.hrc:470
+#: sc/inc/globstr.hrc:471
msgctxt "STR_QUERY_FORMULA_RECALC_ONLOAD_ODS"
msgid ""
"This document was last saved by an application other than %PRODUCTNAME. Some formula cells may produce different results when recalculated.\n"
@@ -2329,7 +2334,7 @@ msgstr ""
"થયેલ હોય.\n"
"શું તમે હવે આ દસ્તાવેજમાં બધા સૂત્ર સેલને ફરી ગણતરી કરવા માંગો છો?"
-#: sc/inc/globstr.hrc:471
+#: sc/inc/globstr.hrc:472
msgctxt "STR_QUERY_FORMULA_RECALC_ONLOAD_XLS"
msgid ""
"This document was last saved by Excel. Some formula cells may produce different results when recalculated.\n"
@@ -2340,77 +2345,77 @@ msgstr ""
"\n"
"શું તમે હવે બધા સૂત્ર ખાનાંની ફરી ગણતરી કરવા માંગો છો?"
-#: sc/inc/globstr.hrc:472
+#: sc/inc/globstr.hrc:473
msgctxt "STR_NO_INSERT_DELETE_OVER_PIVOT_TABLE"
msgid "You cannot insert or delete cells when the affected range intersects with pivot table."
msgstr "તમે સેલને દાખલ અથવા કાઢી શકતી નથી જ્યારે અસર થયેલ સીમા પિવોટ કોષ્ટક સાથે સંપર્ક કરે."
-#: sc/inc/globstr.hrc:473
+#: sc/inc/globstr.hrc:474
msgctxt "STR_DPFIELD_GROUP_BY_SECONDS"
msgid "Seconds"
msgstr "સેકન્ડો"
-#: sc/inc/globstr.hrc:474
+#: sc/inc/globstr.hrc:475
msgctxt "STR_DPFIELD_GROUP_BY_MINUTES"
msgid "Minutes"
msgstr "મિનિટો"
-#: sc/inc/globstr.hrc:475
+#: sc/inc/globstr.hrc:476
msgctxt "STR_DPFIELD_GROUP_BY_HOURS"
msgid "Hours"
msgstr "કલાકો"
-#: sc/inc/globstr.hrc:476
+#: sc/inc/globstr.hrc:477
msgctxt "STR_DPFIELD_GROUP_BY_DAYS"
msgid "Days"
msgstr "દિવસો"
-#: sc/inc/globstr.hrc:477
+#: sc/inc/globstr.hrc:478
msgctxt "STR_DPFIELD_GROUP_BY_MONTHS"
msgid "Months"
msgstr "મહિનાઓ"
-#: sc/inc/globstr.hrc:478
+#: sc/inc/globstr.hrc:479
msgctxt "STR_DPFIELD_GROUP_BY_QUARTERS"
msgid "Quarters"
msgstr "ચતુર્થાંશ"
-#: sc/inc/globstr.hrc:479
+#: sc/inc/globstr.hrc:480
msgctxt "STR_DPFIELD_GROUP_BY_YEARS"
msgid "Years"
msgstr "વર્ષો"
-#: sc/inc/globstr.hrc:480
+#: sc/inc/globstr.hrc:481
msgctxt "STR_INVALIDVAL"
msgid "Invalid target value."
msgstr "અયોગ્ય લક્ષ્ય કિંમત."
-#: sc/inc/globstr.hrc:481
+#: sc/inc/globstr.hrc:482
msgctxt "STR_INVALIDVAR"
msgid "Undefined name for variable cell."
msgstr "નક્કી ન કરેલ નામ ચલ ખાના તરીકે."
-#: sc/inc/globstr.hrc:482
+#: sc/inc/globstr.hrc:483
msgctxt "STR_INVALIDFORM"
msgid "Undefined name as formula cell."
msgstr "નક્કી ન કરેલ નામ સૂત્ર તરીકે."
-#: sc/inc/globstr.hrc:483
+#: sc/inc/globstr.hrc:484
msgctxt "STR_NOFORMULA"
msgid "Formula cell must contain a formula."
msgstr "સૂત્રનાં ખાનાએ સૂત્રને સમાવવુ જ જોઇએ."
-#: sc/inc/globstr.hrc:484
+#: sc/inc/globstr.hrc:485
msgctxt "STR_INVALIDINPUT"
msgid "Invalid input."
msgstr "અયોગ્ય ઇનપુટ."
-#: sc/inc/globstr.hrc:485
+#: sc/inc/globstr.hrc:486
msgctxt "STR_INVALIDCONDITION"
msgid "Invalid condition."
msgstr "અયોગ્ય શરત."
-#: sc/inc/globstr.hrc:486
+#: sc/inc/globstr.hrc:487
msgctxt "STR_QUERYREMOVE"
msgid ""
"Should the entry\n"
@@ -2421,137 +2426,137 @@ msgstr ""
"#\n"
"આવવો જોઈએ?"
-#: sc/inc/globstr.hrc:487
+#: sc/inc/globstr.hrc:488
msgctxt "STR_COPYLIST"
msgid "Copy List"
msgstr "યાદી નકલ કરો"
-#: sc/inc/globstr.hrc:488
+#: sc/inc/globstr.hrc:489
msgctxt "STR_COPYFROM"
msgid "List from"
msgstr "માંથી યાદી"
-#: sc/inc/globstr.hrc:489
+#: sc/inc/globstr.hrc:490
msgctxt "STR_COPYERR"
msgid "Cells without text have been ignored."
msgstr "લખાણ વિનાના ખાનાંઓ અવગણવામાં આવશે."
-#: sc/inc/globstr.hrc:490
+#: sc/inc/globstr.hrc:491
#, c-format
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%s-click to follow hyperlink:"
msgstr ""
-#: sc/inc/globstr.hrc:491
+#: sc/inc/globstr.hrc:492
msgctxt "STR_CLICKHYPERLINK"
msgid "click to open hyperlink:"
msgstr "હાઇપરલિંક ને ખોલવા માટે ક્લિક કરો:"
-#: sc/inc/globstr.hrc:492
+#: sc/inc/globstr.hrc:493
msgctxt "STR_PRINT_PREVIEW_NODATA"
msgid "No Data"
msgstr "કોઈ માહિતી નથી"
-#: sc/inc/globstr.hrc:493
+#: sc/inc/globstr.hrc:494
msgctxt "STR_PRINT_PREVIEW_EMPTY_RANGE"
msgid "Print Range Empty"
msgstr "છાપન સીમા ખાલી"
-#: sc/inc/globstr.hrc:494
+#: sc/inc/globstr.hrc:495
msgctxt "STR_UNDO_CONDFORMAT"
msgid "Conditional Format"
msgstr "શરતી બંધારણ"
-#: sc/inc/globstr.hrc:495
+#: sc/inc/globstr.hrc:496
#, fuzzy
msgctxt "STR_UNDO_CONDFORMAT_LIST"
msgid "Conditional Formats"
msgstr "શરતી બંધારણ"
-#: sc/inc/globstr.hrc:496
+#: sc/inc/globstr.hrc:497
msgctxt "STR_UNDO_FORMULA_TO_VALUE"
msgid "Convert Formula To Value"
msgstr ""
-#: sc/inc/globstr.hrc:497
+#: sc/inc/globstr.hrc:498
msgctxt "STR_UNQUOTED_STRING"
msgid "Strings without quotes are interpreted as column/row labels."
msgstr ""
-#: sc/inc/globstr.hrc:498
+#: sc/inc/globstr.hrc:499
msgctxt "STR_ENTER_VALUE"
msgid "Enter a value!"
msgstr ""
-#: sc/inc/globstr.hrc:499
+#: sc/inc/globstr.hrc:500
msgctxt "STR_TABLE_COUNT"
msgid "Sheet %1 of %2"
msgstr ""
-#: sc/inc/globstr.hrc:500
+#: sc/inc/globstr.hrc:501
msgctxt "STR_FUNCTIONS_FOUND"
msgid "%1 and %2 more"
msgstr ""
-#: sc/inc/globstr.hrc:501
+#: sc/inc/globstr.hrc:502
msgctxt "STR_GENERAL"
msgid "General"
msgstr "સામાન્ય"
-#: sc/inc/globstr.hrc:502
+#: sc/inc/globstr.hrc:503
#, fuzzy
msgctxt "STR_NUMBER"
msgid "Number"
msgstr "નંબર"
-#: sc/inc/globstr.hrc:503
+#: sc/inc/globstr.hrc:504
#, fuzzy
msgctxt "STR_PERCENT"
msgid "Percent"
msgstr "ટકા"
-#: sc/inc/globstr.hrc:504
+#: sc/inc/globstr.hrc:505
msgctxt "STR_CURRENCY"
msgid "Currency"
msgstr "ચલણ"
-#: sc/inc/globstr.hrc:505
+#: sc/inc/globstr.hrc:506
msgctxt "STR_DATE"
msgid "Date"
msgstr "તારીખ"
-#: sc/inc/globstr.hrc:506
+#: sc/inc/globstr.hrc:507
msgctxt "STR_TIME"
msgid "Time"
msgstr "સમય"
-#: sc/inc/globstr.hrc:507
+#: sc/inc/globstr.hrc:508
msgctxt "STR_SCIENTIFIC"
msgid "Scientific"
msgstr "વૈજ્ઞાનિક"
-#: sc/inc/globstr.hrc:508
+#: sc/inc/globstr.hrc:509
#, fuzzy
msgctxt "STR_FRACTION"
msgid "Fraction"
msgstr "વિધેય"
-#: sc/inc/globstr.hrc:509
+#: sc/inc/globstr.hrc:510
msgctxt "STR_BOOLEAN_VALUE"
msgid "Boolean Value"
msgstr "બુલિયન કિંમત"
-#: sc/inc/globstr.hrc:510
+#: sc/inc/globstr.hrc:511
msgctxt "STR_TEXT"
msgid "Text"
msgstr "લખાણ"
-#: sc/inc/globstr.hrc:511
+#: sc/inc/globstr.hrc:512
msgctxt "STR_QUERY_PIVOTTABLE_DELTAB"
msgid "The selected sheet(s) contain source data of related pivot tables that will be lost. Are you sure you want to delete the selected sheet(s)?"
msgstr ""
-#: sc/inc/globstr.hrc:512
+#: sc/inc/globstr.hrc:513
msgctxt "STR_ERR_NAME_INVALID_CELL_REF"
msgid "Invalid name. Reference to a cell, or a range of cells not allowed."
msgstr ""
@@ -10737,8 +10742,8 @@ msgstr "સ્થિતિ"
#: sc/inc/scfuncs.hrc:3010
msgctxt "SC_OPCODE_T_TEST"
-msgid "Mode specifies the number of distribution tails to return. 1= one-tailed, 2 = two-tailed distribution"
-msgstr "આપવા માટે સ્થિતિ વિતરણઓ સ્પષ્ટ કરે છે. ૧ = એક ટેઈલ, ૨ = બે ટેઈલ વિતરણ"
+msgid "Mode specifies the number of distribution tails to return. 1 = one-tailed, 2 = two-tailed distribution"
+msgstr ""
#: sc/inc/scfuncs.hrc:3011
msgctxt "SC_OPCODE_T_TEST"
@@ -10784,8 +10789,8 @@ msgstr "સ્થિતિ"
#: sc/inc/scfuncs.hrc:3024
msgctxt "SC_OPCODE_T_TEST_MS"
-msgid "Mode specifies the number of distribution tails to return. 1= one-tailed, 2 = two-tailed distribution"
-msgstr "આપવા માટે સ્થિતિ વિતરણઓ સ્પષ્ટ કરે છે. 1 = એક ટેઈલ, 2 = બે ટેઈલ વિતરણ"
+msgid "Mode specifies the number of distribution tails to return. 1 = one-tailed, 2 = two-tailed distribution"
+msgstr ""
#: sc/inc/scfuncs.hrc:3025
msgctxt "SC_OPCODE_T_TEST_MS"
@@ -18534,22 +18539,22 @@ msgctxt "mergecellsdialog|MergeCellsDialog"
msgid "Merge Cells"
msgstr "ખાનાંઓ ભેગા કરો"
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:81
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:84
msgctxt "mergecellsdialog|label"
msgid "Some cells are not empty."
msgstr ""
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:96
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:99
msgctxt "mergecellsdialog|move-cells-radio"
msgid "Move the contents of the hidden cells into the first cell"
msgstr ""
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:112
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:115
msgctxt "mergecellsdialog|empty-cells-radio"
msgid "Empty the contents of the hidden cells"
msgstr ""
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:128
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:131
msgctxt "mergecellsdialog|keep-content-radio"
msgid "Keep the contents of the hidden cells"
msgstr ""
diff --git a/source/gu/sd/messages.po b/source/gu/sd/messages.po
index 75705085689..2ae364c8f05 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+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"
@@ -13,177 +13,177 @@ msgstr ""
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-#: sd/inc/DocumentRenderer.hrc:29
+#: sd/inc/DocumentRenderer.hrc:27
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Slides"
msgstr "સ્લાઈડો"
-#: sd/inc/DocumentRenderer.hrc:30
+#: sd/inc/DocumentRenderer.hrc:28
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Handouts"
msgstr "હાથના લખાણો"
-#: sd/inc/DocumentRenderer.hrc:31
+#: sd/inc/DocumentRenderer.hrc:29
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Notes"
msgstr "નોંધો"
-#: sd/inc/DocumentRenderer.hrc:32
+#: sd/inc/DocumentRenderer.hrc:30
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Outline"
msgstr "બાહ્ય કિનારી"
-#: sd/inc/DocumentRenderer.hrc:37
+#: sd/inc/DocumentRenderer.hrc:35
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "According to layout"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:38
+#: sd/inc/DocumentRenderer.hrc:36
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "1"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:39
+#: sd/inc/DocumentRenderer.hrc:37
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "2"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:40
+#: sd/inc/DocumentRenderer.hrc:38
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "3"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:41
+#: sd/inc/DocumentRenderer.hrc:39
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "4"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:42
+#: sd/inc/DocumentRenderer.hrc:40
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "6"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:43
+#: sd/inc/DocumentRenderer.hrc:41
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "9"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:48
+#: sd/inc/DocumentRenderer.hrc:46
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_ORDER_CHOICES"
msgid "Left to right, then down"
msgstr "ડાબેથી જમણે, પછી તળિયે"
-#: sd/inc/DocumentRenderer.hrc:49
+#: sd/inc/DocumentRenderer.hrc:47
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_ORDER_CHOICES"
msgid "Top to bottom, then right"
msgstr "ટોચથી તળિયે. પછી જમણે"
-#: sd/inc/DocumentRenderer.hrc:54
+#: sd/inc/DocumentRenderer.hrc:52
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Original colors"
msgstr "મૂળભૂત રંગો"
-#: sd/inc/DocumentRenderer.hrc:55
+#: sd/inc/DocumentRenderer.hrc:53
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Grayscale"
msgstr "ગ્રેસ્કેલ"
-#: sd/inc/DocumentRenderer.hrc:56
+#: sd/inc/DocumentRenderer.hrc:54
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Black & white"
msgstr "કાળુ અને સફેદ"
-#: sd/inc/DocumentRenderer.hrc:61
+#: sd/inc/DocumentRenderer.hrc:59
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Original size"
msgstr "મૂળભૂત માપ"
-#: sd/inc/DocumentRenderer.hrc:62
+#: sd/inc/DocumentRenderer.hrc:60
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Fit to printable page"
msgstr "છાપી શકાય તેવા પાનામાં બંધબેસાડો"
-#: sd/inc/DocumentRenderer.hrc:63
+#: sd/inc/DocumentRenderer.hrc:61
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Distribute on multiple sheets of paper"
msgstr "પેપરની ઘણીબધી શીટોને વહેંચો"
-#: sd/inc/DocumentRenderer.hrc:64
+#: sd/inc/DocumentRenderer.hrc:62
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Tile sheet of paper with repeated slides"
msgstr "વારંવાર આવતી સ્લાઇડો સાથે પેપરની તકતી શીટ"
-#: sd/inc/DocumentRenderer.hrc:69
+#: sd/inc/DocumentRenderer.hrc:67
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Original size"
msgstr "મૂળભૂત માપ"
-#: sd/inc/DocumentRenderer.hrc:70
+#: sd/inc/DocumentRenderer.hrc:68
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Fit to printable page"
msgstr "છાપી શકાય તેવા પાનામાં બંધબેસાડો"
-#: sd/inc/DocumentRenderer.hrc:71
+#: sd/inc/DocumentRenderer.hrc:69
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Distribute on multiple sheets of paper"
msgstr "પેપરની ઘણીબધી શીટોને વહેંચો"
-#: sd/inc/DocumentRenderer.hrc:72
+#: sd/inc/DocumentRenderer.hrc:70
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Tile sheet of paper with repeated pages"
msgstr "વારંવાર આવતા પાનાં સાથે પેપરની તકતી શીટ"
-#: sd/inc/DocumentRenderer.hrc:77
+#: sd/inc/DocumentRenderer.hrc:75
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "All pages"
msgstr "બધા પાનાં"
-#: sd/inc/DocumentRenderer.hrc:78
+#: sd/inc/DocumentRenderer.hrc:76
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "Front sides / right pages"
msgstr "આગળની બાજુઓ / જમણી બાજુનાં પાનાં"
-#: sd/inc/DocumentRenderer.hrc:79
+#: sd/inc/DocumentRenderer.hrc:77
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "Back sides / left pages"
msgstr "પાછળની બાજુઓ/ ડાબી બાજુનાં પાનાં"
-#: sd/inc/DocumentRenderer.hrc:84
+#: sd/inc/DocumentRenderer.hrc:82
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~All slides"
msgstr "બધી સ્લાઇડો (_s)"
-#: sd/inc/DocumentRenderer.hrc:85
+#: sd/inc/DocumentRenderer.hrc:83
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~Slides"
msgstr "સ્લાઈડો"
-#: sd/inc/DocumentRenderer.hrc:86
+#: sd/inc/DocumentRenderer.hrc:84
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Se~lection"
msgstr "પસંદગી (~l)"
-#: sd/inc/DocumentRenderer.hrc:91
+#: sd/inc/DocumentRenderer.hrc:89
#, fuzzy
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~All pages"
msgstr "બધા પાનાં (~A)"
-#: sd/inc/DocumentRenderer.hrc:92
+#: sd/inc/DocumentRenderer.hrc:90
#, fuzzy
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Pa~ges"
msgstr "પાનાંઓ"
-#: sd/inc/DocumentRenderer.hrc:93
+#: sd/inc/DocumentRenderer.hrc:91
#, fuzzy
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Se~lection"
diff --git a/source/gu/svx/messages.po b/source/gu/svx/messages.po
index 1c61c9ce815..634d526e61e 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: 2018-05-16 16:53+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+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"
@@ -5512,7 +5512,7 @@ msgstr ""
#: svx/uiconfig/ui/safemodedialog.ui:432
msgctxt "safemodedialog|btn_create_zip"
-msgid "Create Zip Archive from User Profile"
+msgid "Archive User Profile"
msgstr ""
#: svx/uiconfig/ui/safemodedialog.ui:445
@@ -9165,8 +9165,8 @@ msgid "Red"
msgstr "લાલ"
#: include/svx/strings.hrc:565
-msgctxt "RID_SVXSTR_COLOR_VIOLET"
-msgid "Violet"
+msgctxt "RID_SVXSTR_COLOR_MAGENTA"
+msgid "Magenta"
msgstr "જાંબલી"
#: include/svx/strings.hrc:566
@@ -9234,8 +9234,8 @@ msgid "Light Red"
msgstr "આછો લાલ"
#: include/svx/strings.hrc:579
-msgctxt "RID_SVXSTR_COLOR_LIGHTVIOLET"
-msgid "Light Violet"
+msgctxt "RID_SVXSTR_COLOR_LIGHTMAGENTA"
+msgid "Light Magenta"
msgstr ""
#: include/svx/strings.hrc:580
@@ -9301,10 +9301,9 @@ msgid "Dark Red"
msgstr "ઘાટો લાલ"
#: include/svx/strings.hrc:593
-#, fuzzy
-msgctxt "RID_SVXSTR_COLOR_DARKVIOLET1"
-msgid "Dark Violet"
-msgstr "ઘાટ્ટો જાંબલી"
+msgctxt "RID_SVXSTR_COLOR_DARKMAGENTA"
+msgid "Dark Magenta"
+msgstr ""
#: include/svx/strings.hrc:594
msgctxt "RID_SVXSTR_COLOR_DARKPURPLE"
@@ -9338,55 +9337,55 @@ msgstr ""
#. Elements of the Tonal color palette
#: include/svx/strings.hrc:601
+msgctxt "RID_SVXSTR_COLOR_VIOLET"
+msgid "Violet"
+msgstr "જાંબલી"
+
+#: include/svx/strings.hrc:602
msgctxt "RID_SVXSTR_COLOR_VIOLET_OUG"
msgid "Violet (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:602
+#: include/svx/strings.hrc:603
msgctxt "RID_SVXSTR_COLOR_BLUE_OUG"
msgid "Blue (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:603
+#: include/svx/strings.hrc:604
msgctxt "RID_SVXSTR_COLOR_AZURE_OUG"
msgid "Azure (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:604
+#: include/svx/strings.hrc:605
msgctxt "RID_SVXSTR_COLOR_SPRINGGREEN_OUG"
msgid "Spring Green (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:605
+#: include/svx/strings.hrc:606
msgctxt "RID_SVXSTR_COLOR_GREEN_OUG"
msgid "Green (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:606
+#: include/svx/strings.hrc:607
msgctxt "RID_SVXSTR_COLOR_CHARTREUSEGREEN_OUG"
msgid "Chartreuse Green (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:607
+#: include/svx/strings.hrc:608
msgctxt "RID_SVXSTR_COLOR_ORANGE_OUG"
msgid "Orange (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:608
+#: include/svx/strings.hrc:609
msgctxt "RID_SVXSTR_COLOR_RED_OUG"
msgid "Red (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:609
+#: include/svx/strings.hrc:610
msgctxt "RID_SVXSTR_COLOR_ROSE_OUG"
msgid "Rose (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:610
-msgctxt "RID_SVXSTR_COLOR_MAGENTA"
-msgid "Magenta"
-msgstr "જાંબલી"
-
#: include/svx/strings.hrc:611
msgctxt "RID_SVXSTR_COLOR_AZURE"
msgid "Azure"
@@ -12533,13 +12532,13 @@ msgstr "જમણી બાજુ નિશાની કરતા તીર બ
#: include/svx/strings.hrc:1273
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_6"
-msgid "Check mark bullets"
-msgstr "ચિહ્ન બુલેટો ચકાસો"
+msgid "Cross mark bullets"
+msgstr ""
#: include/svx/strings.hrc:1274
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_7"
-msgid "Tick mark bullets"
-msgstr "નિશાની(✓) બુલેટો"
+msgid "Check mark bullets"
+msgstr ""
#: include/svx/strings.hrc:1275
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_0"
diff --git a/source/gu/sw/messages.po b/source/gu/sw/messages.po
index d315bffda73..754dbce0ae5 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: 2018-05-22 13:17+0200\n"
+"POT-Creation-Date: 2018-06-12 14:41+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"
@@ -1218,13 +1218,13 @@ msgstr "સાઈટેશન"
#: sw/inc/strings.hrc:172
msgctxt "STR_POOLCOLL_TOX_ILLUSH"
-msgid "Illustration Index Heading"
-msgstr "ઉદાહરણના અનુક્રમાંકનુ મથાળું"
+msgid "Figure Index Heading"
+msgstr ""
#: sw/inc/strings.hrc:173
msgctxt "STR_POOLCOLL_TOX_ILLUS1"
-msgid "Illustration Index 1"
-msgstr "ઉદાહરણ અનુક્રમાંક ૧"
+msgid "Figure Index 1"
+msgstr ""
#: sw/inc/strings.hrc:174
msgctxt "STR_POOLCOLL_TOX_OBJECTH"
@@ -3708,8 +3708,8 @@ msgstr "વસ્તુઓનુ કોષ્ટક"
#: sw/inc/strings.hrc:672
msgctxt "STR_TOX_ILL"
-msgid "Illustration Index"
-msgstr "દ્રષ્ટાંત અનુક્રમ"
+msgid "Table of Figures"
+msgstr ""
#: sw/inc/strings.hrc:673
#, c-format
@@ -9574,72 +9574,72 @@ msgctxt "footnotepage|label5"
msgid "Continuation Notice"
msgstr "સૂચના ને ચાલુ રાખો"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:49
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:55
msgctxt "footnotesendnotestabpage|ftnntnum"
msgid "_Restart numbering"
msgstr "ક્રમાંક પુનઃશરૂ કરો (_R)"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:91
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:93
msgctxt "footnotesendnotestabpage|ftnoffset_label"
msgid "_Start at:"
msgstr "અહીંંથી શરૂ કરો (_S):"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:112
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:111
msgctxt "footnotesendnotestabpage|ftnntnumfmt"
msgid "Custom _format"
msgstr "વૈવિધ્ય બંધારણ (_f)"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:155
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:150
msgctxt "footnotesendnotestabpage|ftnsuffix_label"
msgid "Aft_er:"
msgstr "પછી (_e):"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:199
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:188
msgctxt "footnotesendnotestabpage|ftnprefix_label"
msgid "Be_fore:"
msgstr "પહેલાં (_f):"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:228
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:212
msgctxt "footnotesendnotestabpage|ftnntattextend"
msgid "Collec_t at end of text"
msgstr "લખાણના અંતે ભેગુ કરો (_t)"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:252
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:234
msgctxt "footnotesendnotestabpage|label1"
msgid "Footnotes"
msgstr "ફૂટનોંધો"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:289
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:271
msgctxt "footnotesendnotestabpage|endntattextend"
msgid "C_ollect at end of section"
msgstr "વિભાગના અંતે ભેગુ કરો (_o)"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:315
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:295
msgctxt "footnotesendnotestabpage|endntnum"
msgid "_Restart numbering"
msgstr "ક્રમાંક પુનઃશરૂ કરો (_R)"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:357
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:333
msgctxt "footnotesendnotestabpage|endoffset_label"
msgid "_Start at:"
msgstr "અહીંંથી શરૂ કરો (_S):"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:378
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:351
msgctxt "footnotesendnotestabpage|endntnumfmt"
msgid "_Custom format"
msgstr "વૈવિધ્ય બંધારણ (_C)"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:421
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:390
msgctxt "footnotesendnotestabpage|endsuffix_label"
msgid "Aft_er:"
msgstr "પછી (_e):"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:465
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:428
msgctxt "footnotesendnotestabpage|endprefix_label"
msgid "Be_fore:"
msgstr "પહેલાં (_f):"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:500
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:458
msgctxt "footnotesendnotestabpage|label2"
msgid "Endnotes"
msgstr "અંતનોંધો"
@@ -9669,27 +9669,27 @@ msgctxt "formatsectiondialog|notes"
msgid "Footnotes/Endnotes"
msgstr "ફુટનોંધો/અંતની નોંધો"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:63
+#: sw/uiconfig/swriter/ui/formattablepage.ui:77
msgctxt "formattablepage|nameft"
msgid "_Name"
msgstr "નામ (_N)"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:79
+#: sw/uiconfig/swriter/ui/formattablepage.ui:91
msgctxt "formattablepage|widthft"
msgid "W_idth"
msgstr "પહોળાઈ (_i)"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:110
+#: sw/uiconfig/swriter/ui/formattablepage.ui:120
msgctxt "formattablepage|relwidth"
msgid "Relati_ve"
msgstr "સંબંધિત(_v)"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:155
+#: sw/uiconfig/swriter/ui/formattablepage.ui:160
msgctxt "formattablepage|label45"
msgid "Properties"
msgstr "ગુણધર્મો"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:194
+#: sw/uiconfig/swriter/ui/formattablepage.ui:195
msgctxt "formattablepage|leftft"
msgid "Lef_t"
msgstr "ડાબેથી(_t)"
@@ -9699,62 +9699,62 @@ msgctxt "formattablepage|rightft"
msgid "Ri_ght"
msgstr "જમણું(_g)"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:228
+#: sw/uiconfig/swriter/ui/formattablepage.ui:226
msgctxt "formattablepage|aboveft"
msgid "_Above"
msgstr "ઉપર(_A)"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:245
+#: sw/uiconfig/swriter/ui/formattablepage.ui:241
msgctxt "formattablepage|belowft"
msgid "_Below"
msgstr "નીચે(_B)"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:320
+#: sw/uiconfig/swriter/ui/formattablepage.ui:311
msgctxt "formattablepage|label46"
msgid "Spacing"
msgstr "જગ્યા"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:362
+#: sw/uiconfig/swriter/ui/formattablepage.ui:349
msgctxt "formattablepage|full"
msgid "A_utomatic"
msgstr "આપમેળે (_u)"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:380
+#: sw/uiconfig/swriter/ui/formattablepage.ui:365
msgctxt "formattablepage|left"
msgid "_Left"
msgstr "ડાબું (_L)"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:398
+#: sw/uiconfig/swriter/ui/formattablepage.ui:381
msgctxt "formattablepage|fromleft"
msgid "_From left"
msgstr "ડાબી બાજુથી(_F)"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:416
+#: sw/uiconfig/swriter/ui/formattablepage.ui:397
msgctxt "formattablepage|right"
msgid "R_ight"
msgstr "જમણી (_i)"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:435
+#: sw/uiconfig/swriter/ui/formattablepage.ui:413
msgctxt "formattablepage|center"
msgid "_Center"
msgstr "કેન્દ્ર(_C)"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:453
+#: sw/uiconfig/swriter/ui/formattablepage.ui:429
msgctxt "formattablepage|free"
msgid "_Manual"
msgstr "જાતે(_M)"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:478
+#: sw/uiconfig/swriter/ui/formattablepage.ui:452
msgctxt "formattablepage|label43"
msgid "Alignment"
msgstr "ગોઠવણી"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:522
+#: sw/uiconfig/swriter/ui/formattablepage.ui:491
msgctxt "formattablepage|label53"
msgid "Text _direction"
msgstr "લખાણની દિશા(_d)"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:553
+#: sw/uiconfig/swriter/ui/formattablepage.ui:519
msgctxt "formattablepage|label44"
msgid "Properties "
msgstr "ગુણધર્મો "
@@ -10114,22 +10114,27 @@ msgctxt "headerfootermenu|insert_pagenumber"
msgid "Insert Page Number"
msgstr ""
-#: sw/uiconfig/swriter/ui/indentpage.ui:52
+#: sw/uiconfig/swriter/ui/headerfootermenu.ui:42
+msgctxt "headerfootermenu|insert_pagecount"
+msgid "Insert Page Count"
+msgstr ""
+
+#: sw/uiconfig/swriter/ui/indentpage.ui:57
msgctxt "indentpage|label1"
msgid "_Before section"
msgstr "વિભાગ પહેલા (_B)"
-#: sw/uiconfig/swriter/ui/indentpage.ui:67
+#: sw/uiconfig/swriter/ui/indentpage.ui:71
msgctxt "indentpage|label3"
msgid "_After section"
msgstr "વિભાગ પછી (_A)"
-#: sw/uiconfig/swriter/ui/indentpage.ui:113
+#: sw/uiconfig/swriter/ui/indentpage.ui:115
msgctxt "indentpage|label2"
msgid "Indent"
msgstr "હાંસ્યોથી અંતર"
-#: sw/uiconfig/swriter/ui/indentpage.ui:142
+#: sw/uiconfig/swriter/ui/indentpage.ui:155
msgctxt "indentpage|preview-atkobject"
msgid "Example"
msgstr "ઉદાહરણ"
@@ -13849,7 +13854,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:68
msgctxt "optcompatpage|format"
-msgid "MS Word-compatible trailing blanks"
+msgid "Word-compatible trailing blanks"
msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:69
@@ -13859,7 +13864,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:70
msgctxt "optcompatpage|format"
-msgid "A database field (e.g., MailMerge) with empty value hides its paragraph"
+msgid "Hide paragraphs of database fields (e.g., mail merge) with an empty value"
msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:71
@@ -16678,123 +16683,123 @@ msgctxt "tableproperties|background"
msgid "Background"
msgstr "પાશ્વભાગ"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:25
-msgctxt "tabletextflowpage|liststore1"
-msgid "Horizontal"
-msgstr "આડું"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:29
-msgctxt "tabletextflowpage|liststore1"
-msgid "Vertical"
-msgstr "ઊભું"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:33
-msgctxt "tabletextflowpage|liststore1"
-msgid "Use superordinate object settings"
-msgstr "ઊંચીગુણવત્તા ઓબ્જેક્ટ સુયોજનો ને વાપરો"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:47
-msgctxt "tabletextflowpage|liststore2"
-msgid "Top"
-msgstr "ઊંચે"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:51
-msgctxt "tabletextflowpage|liststore2"
-msgid "Centered"
-msgstr "કેન્દ્રિત"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:55
-msgctxt "tabletextflowpage|liststore2"
-msgid "Bottom"
-msgstr "નીચે"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:97
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:53
msgctxt "tabletextflowpage|break"
msgid "_Break"
msgstr "વિભાજક (_B)"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:112
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:68
msgctxt "tabletextflowpage|page"
msgid "_Page"
msgstr "પાનું (_P)"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:132
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:87
msgctxt "tabletextflowpage|column"
msgid "Col_umn"
msgstr "સ્તંભ (_u)"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:151
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:106
msgctxt "tabletextflowpage|before"
msgid "Be_fore"
msgstr "પહેલાં (_f)"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:171
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:125
msgctxt "tabletextflowpage|after"
msgid "_After"
msgstr "પછી(_A)"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:203
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:158
msgctxt "tabletextflowpage|pagestyle"
msgid "With Page St_yle"
msgstr "પાનાની શૈલી વડે(_y)"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:224
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:177
msgctxt "tabletextflowpage|pagenoft"
msgid "Page _number"
msgstr "પાનાનો ક્રમાંક(_n)"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:257
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:213
#, fuzzy
msgctxt "tabletextflowpage|pagestylelb-atkobject"
msgid "With Page Style"
msgstr "પાનાની શૈલી વડે(_y)"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:274
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:230
msgctxt "tabletextflowpage|split"
msgid "Allow _table to split across pages and columns"
msgstr "કોષ્ટકને પાનાંઓ અને સ્તંભો વચ્ચે વહેંચવાની પરવાનગી આપો (_t)"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:289
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:245
msgctxt "tabletextflowpage|splitrow"
msgid "Allow row to break a_cross pages and columns"
msgstr "હરોળને પાનાંઓ અને સ્તંભો વચ્ચે ભાગમાં વહેંચવાની પરવાનગી આપો (_c)"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:306
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:262
msgctxt "tabletextflowpage|keep"
msgid "_Keep with next paragraph"
msgstr "પછીનાં ફકરા સાથે રાખો(_K)"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:328
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:284
msgctxt "tabletextflowpage|label40"
msgid "Text _orientation"
msgstr "લખાણની દિશા (_o)"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:361
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:298
+msgctxt "tabletextflowpage|liststore1"
+msgid "Horizontal"
+msgstr "આડું"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:299
+msgctxt "tabletextflowpage|liststore1"
+msgid "Vertical"
+msgstr "ઊભું"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:300
+msgctxt "tabletextflowpage|liststore1"
+msgid "Use superordinate object settings"
+msgstr "ઊંચીગુણવત્તા ઓબ્જેક્ટ સુયોજનો ને વાપરો"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:321
msgctxt "tabletextflowpage|headline"
msgid "R_epeat heading"
msgstr "શીર્ષકનું પુનરાવર્તન કરો (_e)"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:383
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:343
msgctxt "tabletextflowpage|label38"
msgid "The first "
msgstr "પ્રથમ "
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:396
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:356
msgctxt "tabletextflowpage|label39"
msgid "rows"
msgstr "હરોળો"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:434
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:395
msgctxt "tabletextflowpage|label35"
msgid "Text Flow"
msgstr "લખાણ પ્રવાહ"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:467
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:428
msgctxt "tabletextflowpage|label41"
msgid "_Vertical alignment"
msgstr "ઊભી ગોઠવણી (_V)"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:495
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:442
+msgctxt "tabletextflowpage|liststore2"
+msgid "Top"
+msgstr "ઊંચે"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:443
+msgctxt "tabletextflowpage|liststore2"
+msgid "Centered"
+msgstr "કેન્દ્રિત"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:444
+msgctxt "tabletextflowpage|liststore2"
+msgid "Bottom"
+msgstr "નીચે"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:460
msgctxt "tabletextflowpage|label36"
msgid "Alignment"
msgstr "ગોઠવણી"
@@ -17594,8 +17599,8 @@ msgstr "બારાખડી પ્રમાણે અનુક્રમણિ
#: sw/uiconfig/swriter/ui/tocindexpage.ui:58
msgctxt "tocindexpage|liststore1"
-msgid "Illustration Index"
-msgstr "દ્રષ્ટાંત અનુક્રમ"
+msgid "Table of Figures"
+msgstr ""
#: sw/uiconfig/swriter/ui/tocindexpage.ui:62
msgctxt "tocindexpage|liststore1"
diff --git a/source/gu/writerperfect/messages.po b/source/gu/writerperfect/messages.po
index 20818e354d4..672fee44131 100644
--- a/source/gu/writerperfect/messages.po
+++ b/source/gu/writerperfect/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-16 16:54+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+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"
@@ -65,99 +65,99 @@ msgctxt "exportepub|generalft"
msgid "General"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:122
+#: writerperfect/uiconfig/ui/exportepub.ui:121
#, fuzzy
msgctxt "exportepub|versionft"
msgid "Version:"
msgstr "આવૃત્તિ (~V):"
-#: writerperfect/uiconfig/ui/exportepub.ui:139
+#: writerperfect/uiconfig/ui/exportepub.ui:138
msgctxt "exportepub|epub3"
msgid "EPUB 3.0"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:140
+#: writerperfect/uiconfig/ui/exportepub.ui:139
msgctxt "exportepub|epub2"
msgid "EPUB 2.0"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:175
+#: writerperfect/uiconfig/ui/exportepub.ui:174
msgctxt "exportepub|splitft"
msgid "Split method:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:192
+#: writerperfect/uiconfig/ui/exportepub.ui:191
msgctxt "exportepub|splitpage"
msgid "Page break"
msgstr "પાનું અટકણ"
-#: writerperfect/uiconfig/ui/exportepub.ui:193
+#: writerperfect/uiconfig/ui/exportepub.ui:192
#, fuzzy
msgctxt "exportepub|splitheading"
msgid "Heading"
msgstr "મથાળું"
-#: writerperfect/uiconfig/ui/exportepub.ui:228
+#: writerperfect/uiconfig/ui/exportepub.ui:227
msgctxt "exportepub|layoutft"
msgid "Layout method:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:245
+#: writerperfect/uiconfig/ui/exportepub.ui:244
msgctxt "exportepub|layoutreflowable"
msgid "Reflowable"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:246
+#: writerperfect/uiconfig/ui/exportepub.ui:245
msgctxt "exportepub|layoutfixed"
msgid "Fixed"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:281
+#: writerperfect/uiconfig/ui/exportepub.ui:280
msgctxt "exportepub|coverimageft"
msgid "Custom cover image:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:311
+#: writerperfect/uiconfig/ui/exportepub.ui:310
msgctxt "exportepub|coverbutton"
msgid "Browse..."
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:355
+#: writerperfect/uiconfig/ui/exportepub.ui:354
msgctxt "exportepub|mediadirft"
msgid "Custom media directory:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:385
+#: writerperfect/uiconfig/ui/exportepub.ui:384
msgctxt "exportepub|mediabutton"
msgid "Browse..."
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:429
+#: writerperfect/uiconfig/ui/exportepub.ui:428
msgctxt "exportepub|metadataft"
msgid "Metadata"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:470
+#: writerperfect/uiconfig/ui/exportepub.ui:468
msgctxt "exportepub|identifierft"
msgid "Identifier:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:485
+#: writerperfect/uiconfig/ui/exportepub.ui:483
msgctxt "exportepub|titleft"
msgid "Title:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:511
+#: writerperfect/uiconfig/ui/exportepub.ui:509
msgctxt "exportepub|authorft"
msgid "Author:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:537
+#: writerperfect/uiconfig/ui/exportepub.ui:535
msgctxt "exportepub|languageft"
msgid "Language:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:563
+#: writerperfect/uiconfig/ui/exportepub.ui:561
msgctxt "exportepub|dateft"
msgid "Date:"
msgstr ""
diff --git a/source/gug/cui/messages.po b/source/gug/cui/messages.po
index 8c608e9b8f9..7114a2fc723 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+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"
@@ -9912,97 +9912,97 @@ msgctxt "positionsizedialog|PositionAndSizeDialog"
msgid "Position and Size"
msgstr "Ñemohenda ha Tamaño"
-#: cui/uiconfig/ui/positionsizedialog.ui:107
+#: cui/uiconfig/ui/positionsizedialog.ui:136
msgctxt "positionsizedialog|RID_SVXPAGE_POSITION_SIZE"
msgid "Position and Size"
msgstr "Ñemohenda ha Tamaño"
-#: cui/uiconfig/ui/positionsizedialog.ui:129
+#: cui/uiconfig/ui/positionsizedialog.ui:182
msgctxt "positionsizedialog|RID_SVXPAGE_SWPOSSIZE"
msgid "Position and Size"
msgstr "Ñemohenda ha Tamaño"
-#: cui/uiconfig/ui/positionsizedialog.ui:152
+#: cui/uiconfig/ui/positionsizedialog.ui:229
msgctxt "positionsizedialog|RID_SVXPAGE_ANGLE"
msgid "Rotation"
msgstr "Ojapajeréi"
-#: cui/uiconfig/ui/positionsizedialog.ui:175
+#: cui/uiconfig/ui/positionsizedialog.ui:276
msgctxt "positionsizedialog|RID_SVXPAGE_SLANT"
msgid "Slant & Corner Radius"
msgstr "Jyke ha Radio Esquinapegua"
-#: cui/uiconfig/ui/possizetabpage.ui:40
+#: cui/uiconfig/ui/possizetabpage.ui:61
msgctxt "possizetabpage|FT_POS_X"
msgid "Position _X:"
msgstr "Ñemohenda _X:"
-#: cui/uiconfig/ui/possizetabpage.ui:56
+#: cui/uiconfig/ui/possizetabpage.ui:75
msgctxt "possizetabpage|FT_POS_Y"
msgid "Position _Y:"
msgstr "Ñemohenda _Y:"
-#: cui/uiconfig/ui/possizetabpage.ui:110
+#: cui/uiconfig/ui/possizetabpage.ui:128
msgctxt "possizetabpage|FT_POSREFERENCE"
msgid "_Base point:"
msgstr "Kyta de _base:"
-#: cui/uiconfig/ui/possizetabpage.ui:148
+#: cui/uiconfig/ui/possizetabpage.ui:182
msgctxt "possizetabpage|label1"
msgid "Position"
msgstr "Ñemohenda"
-#: cui/uiconfig/ui/possizetabpage.ui:190
+#: cui/uiconfig/ui/possizetabpage.ui:224
msgctxt "possizetabpage|FT_WIDTH"
msgid "Wi_dth:"
msgstr "Ip_e:"
-#: cui/uiconfig/ui/possizetabpage.ui:206
+#: cui/uiconfig/ui/possizetabpage.ui:238
msgctxt "possizetabpage|FT_HEIGHT"
msgid "H_eight:"
msgstr "Y_vatekue:"
-#: cui/uiconfig/ui/possizetabpage.ui:247
+#: cui/uiconfig/ui/possizetabpage.ui:276
msgctxt "possizetabpage|CBX_SCALE"
msgid "_Keep ratio"
msgstr "_Mantener las proporciones"
-#: cui/uiconfig/ui/possizetabpage.ui:279
+#: cui/uiconfig/ui/possizetabpage.ui:307
msgctxt "possizetabpage|FT_SIZEREFERENCE"
msgid "Base _point:"
msgstr "_Kyta de base:"
-#: cui/uiconfig/ui/possizetabpage.ui:317
+#: cui/uiconfig/ui/possizetabpage.ui:361
msgctxt "possizetabpage|label2"
msgid "Size"
msgstr "Tamaño"
-#: cui/uiconfig/ui/possizetabpage.ui:356
+#: cui/uiconfig/ui/possizetabpage.ui:401
msgctxt "possizetabpage|TSB_POSPROTECT"
msgid "Positio_n"
msgstr "Ñemohend_a"
-#: cui/uiconfig/ui/possizetabpage.ui:373
+#: cui/uiconfig/ui/possizetabpage.ui:418
msgctxt "possizetabpage|TSB_SIZEPROTECT"
msgid "_Size"
msgstr "_Tamaño"
-#: cui/uiconfig/ui/possizetabpage.ui:397
+#: cui/uiconfig/ui/possizetabpage.ui:441
msgctxt "possizetabpage|label3"
msgid "Protect"
msgstr "Ñangareko"
-#: cui/uiconfig/ui/possizetabpage.ui:430
+#: cui/uiconfig/ui/possizetabpage.ui:475
msgctxt "possizetabpage|TSB_AUTOGROW_WIDTH"
msgid "_Fit width to text"
msgstr "Ojeahusta ip_e moñe'ẽrãpe"
-#: cui/uiconfig/ui/possizetabpage.ui:447
+#: cui/uiconfig/ui/possizetabpage.ui:492
msgctxt "possizetabpage|TSB_AUTOGROW_HEIGHT"
msgid "Fit _height to text"
msgstr "Ojeahusta _yvatekue al moñe'ẽrã"
-#: cui/uiconfig/ui/possizetabpage.ui:471
+#: cui/uiconfig/ui/possizetabpage.ui:515
msgctxt "possizetabpage|label4"
msgid "Adapt"
msgstr "Adaptar"
@@ -10202,47 +10202,47 @@ msgctxt "recordnumberdialog|label2"
msgid "go to record"
msgstr "jeho regristrope"
-#: cui/uiconfig/ui/rotationtabpage.ui:52
+#: cui/uiconfig/ui/rotationtabpage.ui:56
msgctxt "rotationtabpage|FT_POS_X"
msgid "Position _X:"
msgstr "Ñemohenda _X:"
-#: cui/uiconfig/ui/rotationtabpage.ui:66
+#: cui/uiconfig/ui/rotationtabpage.ui:70
msgctxt "rotationtabpage|FT_POS_Y"
msgid "Position _Y:"
msgstr "Ñemohenda _Y:"
-#: cui/uiconfig/ui/rotationtabpage.ui:116
+#: cui/uiconfig/ui/rotationtabpage.ui:123
msgctxt "rotationtabpage|FT_POSPRESETS"
msgid "_Default settings:"
msgstr "Configuración _default:"
-#: cui/uiconfig/ui/rotationtabpage.ui:130
+#: cui/uiconfig/ui/rotationtabpage.ui:151
msgctxt "rotationtabpage|CTL_RECT|tooltip_text"
msgid "Rotation point"
msgstr "Kyta jerégui"
-#: cui/uiconfig/ui/rotationtabpage.ui:155
+#: cui/uiconfig/ui/rotationtabpage.ui:178
msgctxt "rotationtabpage|label1"
msgid "Pivot Point"
msgstr "Kyta Kyre'ỹ"
-#: cui/uiconfig/ui/rotationtabpage.ui:197
+#: cui/uiconfig/ui/rotationtabpage.ui:220
msgctxt "rotationtabpage|FT_ANGLE"
msgid "_Angle:"
msgstr "Án_gulo:"
-#: cui/uiconfig/ui/rotationtabpage.ui:238
+#: cui/uiconfig/ui/rotationtabpage.ui:263
msgctxt "rotationtabpage|FT_ANGLEPRESETS"
msgid "Default _settings:"
msgstr "Configuración _default:"
-#: cui/uiconfig/ui/rotationtabpage.ui:252
+#: cui/uiconfig/ui/rotationtabpage.ui:287
msgctxt "rotationtabpage|CTL_ANGLE|tooltip_text"
msgid "Rotation Angle"
msgstr "Ángulo jerégui"
-#: cui/uiconfig/ui/rotationtabpage.ui:277
+#: cui/uiconfig/ui/rotationtabpage.ui:314
msgctxt "rotationtabpage|label2"
msgid "Rotation Angle"
msgstr "Ángulo jerégui"
@@ -10623,52 +10623,52 @@ msgctxt "similaritysearchdialog|relaxbox"
msgid "_Combine"
msgstr "_Mbojoaju"
-#: cui/uiconfig/ui/slantcornertabpage.ui:50
+#: cui/uiconfig/ui/slantcornertabpage.ui:70
msgctxt "slantcornertabpage|label5"
msgid "_X:"
msgstr "_X:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:88
+#: cui/uiconfig/ui/slantcornertabpage.ui:110
msgctxt "slantcornertabpage|label6"
msgid "_Y:"
msgstr "_Y:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:125
+#: cui/uiconfig/ui/slantcornertabpage.ui:149
msgctxt "slantcornertabpage|label3"
msgid "Control Point 1"
msgstr "Kyta Ñemaña 1"
-#: cui/uiconfig/ui/slantcornertabpage.ui:159
+#: cui/uiconfig/ui/slantcornertabpage.ui:183
msgctxt "slantcornertabpage|FT_RADIUS"
msgid "_Radius:"
msgstr "_Radio:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:189
+#: cui/uiconfig/ui/slantcornertabpage.ui:214
msgctxt "slantcornertabpage|label1"
msgid "Corner Radius"
msgstr "Radio de Ángulo"
-#: cui/uiconfig/ui/slantcornertabpage.ui:223
+#: cui/uiconfig/ui/slantcornertabpage.ui:248
msgctxt "slantcornertabpage|FT_ANGLE"
msgid "_Angle:"
msgstr "Án_gulo:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:253
+#: cui/uiconfig/ui/slantcornertabpage.ui:279
msgctxt "slantcornertabpage|label2"
msgid "Slant"
msgstr "Jyke"
-#: cui/uiconfig/ui/slantcornertabpage.ui:294
+#: cui/uiconfig/ui/slantcornertabpage.ui:320
msgctxt "slantcornertabpage|label4"
msgid "_X:"
msgstr "_X:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:332
+#: cui/uiconfig/ui/slantcornertabpage.ui:360
msgctxt "slantcornertabpage|label7"
msgid "_Y:"
msgstr "_Y:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:369
+#: cui/uiconfig/ui/slantcornertabpage.ui:399
msgctxt "slantcornertabpage|label8"
msgid "Control Point 2"
msgstr "Kyta Ñemaña 2"
@@ -10949,112 +10949,112 @@ msgctxt "storedwebconnectiondialog|change"
msgid "_Change Password..."
msgstr "_Moambue Password..."
-#: cui/uiconfig/ui/swpossizepage.ui:74
+#: cui/uiconfig/ui/swpossizepage.ui:85
msgctxt "swpossizepage|widthft"
msgid "_Width:"
msgstr "_Ipe:"
-#: cui/uiconfig/ui/swpossizepage.ui:111
+#: cui/uiconfig/ui/swpossizepage.ui:123
msgctxt "swpossizepage|heightft"
msgid "H_eight:"
msgstr "Y_vatekue"
-#: cui/uiconfig/ui/swpossizepage.ui:128
+#: cui/uiconfig/ui/swpossizepage.ui:141
msgctxt "swpossizepage|ratio"
msgid "_Keep ratio"
msgstr "_Mantener las proporciones"
-#: cui/uiconfig/ui/swpossizepage.ui:149
+#: cui/uiconfig/ui/swpossizepage.ui:162
msgctxt "swpossizepage|label2"
msgid "Size"
msgstr "Tamaño"
-#: cui/uiconfig/ui/swpossizepage.ui:205
+#: cui/uiconfig/ui/swpossizepage.ui:218
msgctxt "swpossizepage|topage"
msgid "To _page"
msgstr "Jeho _rogue"
-#: cui/uiconfig/ui/swpossizepage.ui:222
+#: cui/uiconfig/ui/swpossizepage.ui:234
msgctxt "swpossizepage|topara"
msgid "To paragrap_h"
msgstr "Al párra_fo"
-#: cui/uiconfig/ui/swpossizepage.ui:238
+#: cui/uiconfig/ui/swpossizepage.ui:250
msgctxt "swpossizepage|tochar"
msgid "To cha_racter"
msgstr "Jeho ca_rácter"
-#: cui/uiconfig/ui/swpossizepage.ui:254
+#: cui/uiconfig/ui/swpossizepage.ui:266
msgctxt "swpossizepage|aschar"
msgid "_As character"
msgstr "_Carácter icha"
-#: cui/uiconfig/ui/swpossizepage.ui:270
+#: cui/uiconfig/ui/swpossizepage.ui:282
msgctxt "swpossizepage|toframe"
msgid "To _frame"
msgstr "Al _marco"
-#: cui/uiconfig/ui/swpossizepage.ui:292
+#: cui/uiconfig/ui/swpossizepage.ui:304
msgctxt "swpossizepage|label1"
msgid "Anchor"
msgstr "Jokoha"
-#: cui/uiconfig/ui/swpossizepage.ui:333
+#: cui/uiconfig/ui/swpossizepage.ui:344
msgctxt "swpossizepage|horiposft"
msgid "Hori_zontal:"
msgstr "Oñe_nóva:"
-#: cui/uiconfig/ui/swpossizepage.ui:347
+#: cui/uiconfig/ui/swpossizepage.ui:358
msgctxt "swpossizepage|horibyft"
msgid "b_y:"
msgstr "_rehe:"
-#: cui/uiconfig/ui/swpossizepage.ui:361
+#: cui/uiconfig/ui/swpossizepage.ui:372
msgctxt "swpossizepage|vertbyft"
msgid "_by:"
msgstr "_rehe:"
-#: cui/uiconfig/ui/swpossizepage.ui:375
+#: cui/uiconfig/ui/swpossizepage.ui:386
msgctxt "swpossizepage|horitoft"
msgid "_to:"
msgstr "_a:"
-#: cui/uiconfig/ui/swpossizepage.ui:421
+#: cui/uiconfig/ui/swpossizepage.ui:433
msgctxt "swpossizepage|vertposft"
msgid "_Vertical:"
msgstr "_Oñembo'ýva:"
-#: cui/uiconfig/ui/swpossizepage.ui:457
+#: cui/uiconfig/ui/swpossizepage.ui:470
msgctxt "swpossizepage|verttoft"
msgid "t_o:"
msgstr "_a:"
-#: cui/uiconfig/ui/swpossizepage.ui:478
+#: cui/uiconfig/ui/swpossizepage.ui:492
msgctxt "swpossizepage|mirror"
msgid "_Mirror on even pages"
msgstr "_Jehechaha roguépe kuéra pares"
-#: cui/uiconfig/ui/swpossizepage.ui:495
+#: cui/uiconfig/ui/swpossizepage.ui:509
msgctxt "swpossizepage|followtextflow"
msgid "Follow te_xt flow"
msgstr "Muña syry mo_ñe'ẽrãgui"
-#: cui/uiconfig/ui/swpossizepage.ui:518
+#: cui/uiconfig/ui/swpossizepage.ui:532
msgctxt "swpossizepage|label11"
msgid "Position"
msgstr "Ñemohenda"
-#: cui/uiconfig/ui/swpossizepage.ui:549
+#: cui/uiconfig/ui/swpossizepage.ui:563
msgctxt "swpossizepage|pos"
msgid "Positio_n"
msgstr "Ñemohend_a"
-#: cui/uiconfig/ui/swpossizepage.ui:565
+#: cui/uiconfig/ui/swpossizepage.ui:579
msgctxt "swpossizepage|size"
msgid "_Size"
msgstr "_Tamaño"
-#: cui/uiconfig/ui/swpossizepage.ui:587
+#: cui/uiconfig/ui/swpossizepage.ui:601
msgctxt "swpossizepage|label3"
msgid "Protect"
msgstr "Ñangareko"
@@ -11245,12 +11245,12 @@ msgctxt "textattrtabpage|label2"
msgid "Spacing to Borders"
msgstr "Pa'ũ Borde pe"
-#: cui/uiconfig/ui/textattrtabpage.ui:425
+#: cui/uiconfig/ui/textattrtabpage.ui:423
msgctxt "textattrtabpage|TSB_FULL_WIDTH"
msgid "Full _width"
msgstr "Ipe _oĩmbáva"
-#: cui/uiconfig/ui/textattrtabpage.ui:448
+#: cui/uiconfig/ui/textattrtabpage.ui:446
msgctxt "textattrtabpage|label3"
msgid "Text Anchor"
msgstr "Jokoha Moñe'ẽrã"
diff --git a/source/gug/filter/source/config/fragments/filters.po b/source/gug/filter/source/config/fragments/filters.po
index c1bce8e56a4..4cf317ab13f 100644
--- a/source/gug/filter/source/config/fragments/filters.po
+++ b/source/gug/filter/source/config/fragments/filters.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-16 16:54+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2016-12-02 14:50+0000\n"
"Last-Translator: Giovanni Caligaris <giovannicaligaris@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -465,8 +465,8 @@ msgctxt ""
"MS Word 2003 XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Word 2003 XML"
-msgstr "Microsoft Word 2003 XML"
+msgid "Word 2003 XML"
+msgstr ""
#: MS_Word_2007_XML.xcu
msgctxt ""
@@ -1284,7 +1284,7 @@ msgctxt ""
"Calc MS Excel 2007 VBA XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Excel 2007-2016 XML (macro enabled)"
+msgid "Excel 2007–2019 (macro-enabled)"
msgstr ""
#: calc_MS_Excel_2007_XML.xcu
diff --git a/source/gug/filter/source/config/fragments/types.po b/source/gug/filter/source/config/fragments/types.po
index fa888fdafed..b4d0d2f4f8c 100644
--- a/source/gug/filter/source/config/fragments/types.po
+++ b/source/gug/filter/source/config/fragments/types.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-08 15:11+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2016-06-23 14:37+0000\n"
"Last-Translator: Giovanni Caligaris <giovannicaligaris@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -292,8 +292,8 @@ msgctxt ""
"writer_MS_Word_2003_XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Word 2003 XML"
-msgstr "Microsoft Word 2003 XML"
+msgid "Word 2003 XML"
+msgstr ""
#: writer_MS_Word_2007_XML.xcu
msgctxt ""
diff --git a/source/gug/fpicker/messages.po b/source/gug/fpicker/messages.po
index 9d1f9ef9d1e..9fead891548 100644
--- a/source/gug/fpicker/messages.po
+++ b/source/gug/fpicker/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+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"
@@ -270,13 +270,13 @@ msgstr ""
#: fpicker/uiconfig/ui/foldernamedialog.ui:8
msgctxt "foldernamedialog|FolderNameDialog"
-msgid "Folder Name ?"
-msgstr "Téra Carpetagui?"
+msgid "Folder Name"
+msgstr ""
#: fpicker/uiconfig/ui/foldernamedialog.ui:91
msgctxt "foldernamedialog|label2"
-msgid "Na_me"
-msgstr "Té_ra"
+msgid "Na_me:"
+msgstr ""
#: fpicker/uiconfig/ui/foldernamedialog.ui:122
msgctxt "foldernamedialog|label1"
diff --git a/source/gug/officecfg/registry/data/org/openoffice/Office/UI.po b/source/gug/officecfg/registry/data/org/openoffice/Office/UI.po
index 79d6629ef9d..9c85fda78bf 100644
--- a/source/gug/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/gug/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-22 13:17+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2017-07-15 10:53+0000\n"
"Last-Translator: Giovanni Caligaris <giovannicaligaris@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -26684,8 +26684,8 @@ msgctxt ""
"..WriterCommands.UserInterface.Commands..uno:TextAttributes\n"
"Label\n"
"value.text"
-msgid "Text Attributes"
-msgstr "Atributo Moñe'ẽrã"
+msgid "Text Attributes..."
+msgstr ""
#: WriterCommands.xcu
msgctxt ""
diff --git a/source/gug/readlicense_oo/docs.po b/source/gug/readlicense_oo/docs.po
index a9a5e816ce4..80c46adfc6d 100644
--- a/source/gug/readlicense_oo/docs.po
+++ b/source/gug/readlicense_oo/docs.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-04-17 15:54+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2016-03-11 05:35+0000\n"
"Last-Translator: Giovanni Caligaris <giovannicaligaris@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -117,7 +117,7 @@ msgctxt ""
"readme.xrm\n"
"macxiOSX\n"
"readmeitem.text"
-msgid "MacOSX 10.8 (Mountain Lion) or higher"
+msgid "MacOSX 10.9 (Mavericks) or higher"
msgstr ""
#: readme.xrm
diff --git a/source/gug/sc/messages.po b/source/gug/sc/messages.po
index f2e16f8d198..2495ab29ef1 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-12 14:40+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"
@@ -1858,16 +1858,21 @@ msgid "Nested arrays are not supported."
msgstr "Las matrices oñeñangareko va'ekue ndojeomoneĩ."
#: sc/inc/globstr.hrc:390
+msgctxt "STR_ERR_LONG_BAD_ARRAY_CONTENT"
+msgid "Unsupported inline array content."
+msgstr ""
+
+#: sc/inc/globstr.hrc:391
msgctxt "STR_UNDO_TEXTTOCOLUMNS"
msgid "Text to Columns"
msgstr "Moñe'ẽrã columna pe"
-#: sc/inc/globstr.hrc:391
+#: sc/inc/globstr.hrc:392
msgctxt "STR_DOC_UPDATED"
msgid "Your spreadsheet has been updated with changes saved by other users."
msgstr "Nde Kuatia Kálkulo Peguarã oñemoĩ al día moambuendi oñongatu va'ekue ambue usuarios rehe."
-#: sc/inc/globstr.hrc:392
+#: sc/inc/globstr.hrc:393
msgctxt "STR_DOC_WILLBESAVED"
msgid ""
"The spreadsheet must be saved now to activate sharing mode.\n"
@@ -1878,7 +1883,7 @@ msgstr ""
"\n"
"¿Reseguisépa?"
-#: sc/inc/globstr.hrc:393
+#: sc/inc/globstr.hrc:394
msgctxt "STR_DOC_WILLNOTBESAVED"
msgid ""
"Already resolved merge conflicts will be lost and your changes to the shared spreadsheet will not be saved.\n"
@@ -1889,7 +1894,7 @@ msgstr ""
"\n"
"¿Reseguisépa?"
-#: sc/inc/globstr.hrc:394
+#: sc/inc/globstr.hrc:395
msgctxt "STR_DOC_DISABLESHARED"
msgid ""
"Disabling shared mode of a spreadsheet hinders all other users of the shared spreadsheet to merge back their work.\n"
@@ -1900,7 +1905,7 @@ msgstr ""
"\n"
"¿Reseguisépa?"
-#: sc/inc/globstr.hrc:395
+#: sc/inc/globstr.hrc:396
msgctxt "STR_DOC_NOLONGERSHARED"
msgid ""
"This spreadsheet is no longer in shared mode.\n"
@@ -1911,7 +1916,7 @@ msgstr ""
"\n"
"Ñongatu nde Kuatia Kálkulo Peguarã peteĩ ñongatuha peguarã jei ha mbojoaju imoambue kuéra roguépe compatido pópe ojejapóva."
-#: sc/inc/globstr.hrc:396
+#: sc/inc/globstr.hrc:397
msgctxt "STR_FILE_LOCKED_TRY_LATER"
msgid ""
"The shared spreadsheet file is locked due to a merge in progress by user: '%1'\n"
@@ -1922,7 +1927,7 @@ msgstr ""
"\n"
"Nikatúi mbogue el modo compartido peteĩ ñongatuhágui oñemboty. Eñeha'a jey ángamiẽ."
-#: sc/inc/globstr.hrc:397
+#: sc/inc/globstr.hrc:398
msgctxt "STR_FILE_LOCKED_SAVE_LATER"
msgid ""
"The shared spreadsheet file is locked due to a merge in progress by user: '%1'\n"
@@ -1933,147 +1938,147 @@ msgstr ""
"\n"
"Eñeha'a jey ángamiẽ ñongatuha imoambue kuéra."
-#: sc/inc/globstr.hrc:398
+#: sc/inc/globstr.hrc:399
msgctxt "STR_UNKNOWN_USER"
msgid "Unknown User"
msgstr "Usuario Jekuaa'ỹva"
-#: sc/inc/globstr.hrc:399
+#: sc/inc/globstr.hrc:400
msgctxt "STR_SHAPE_AUTOSHAPE"
msgid "AutoShape"
msgstr "AutoForma"
-#: sc/inc/globstr.hrc:400
+#: sc/inc/globstr.hrc:401
msgctxt "STR_SHAPE_RECTANGLE"
msgid "Rectangle"
msgstr "Rectángulo"
-#: sc/inc/globstr.hrc:401
+#: sc/inc/globstr.hrc:402
msgctxt "STR_SHAPE_LINE"
msgid "Line"
msgstr "Línea"
-#: sc/inc/globstr.hrc:402
+#: sc/inc/globstr.hrc:403
msgctxt "STR_SHAPE_OVAL"
msgid "Oval"
msgstr "Óvalo"
-#: sc/inc/globstr.hrc:403
+#: sc/inc/globstr.hrc:404
msgctxt "STR_FORM_BUTTON"
msgid "Button"
msgstr "Votõ"
-#: sc/inc/globstr.hrc:404
+#: sc/inc/globstr.hrc:405
msgctxt "STR_FORM_CHECKBOX"
msgid "Check Box"
msgstr "Puntea Ryru'i"
-#: sc/inc/globstr.hrc:405
+#: sc/inc/globstr.hrc:406
msgctxt "STR_FORM_OPTIONBUTTON"
msgid "Option Button"
msgstr "Votõ Opcionáke"
-#: sc/inc/globstr.hrc:406
+#: sc/inc/globstr.hrc:407
msgctxt "STR_FORM_LABEL"
msgid "Label"
msgstr "Etiqueta"
-#: sc/inc/globstr.hrc:407
+#: sc/inc/globstr.hrc:408
msgctxt "STR_FORM_LISTBOX"
msgid "List Box"
msgstr "Lista Ryru"
-#: sc/inc/globstr.hrc:408
+#: sc/inc/globstr.hrc:409
msgctxt "STR_FORM_GROUPBOX"
msgid "Group Box"
msgstr "Aty Ryru"
-#: sc/inc/globstr.hrc:409
+#: sc/inc/globstr.hrc:410
msgctxt "STR_FORM_DROPDOWN"
msgid "Drop Down"
msgstr "Reipyso"
-#: sc/inc/globstr.hrc:410
+#: sc/inc/globstr.hrc:411
msgctxt "STR_FORM_SPINNER"
msgid "Spinner"
msgstr "Selector"
-#: sc/inc/globstr.hrc:411
+#: sc/inc/globstr.hrc:412
msgctxt "STR_FORM_SCROLLBAR"
msgid "Scroll Bar"
msgstr "Barra Oñemongu'e"
-#: sc/inc/globstr.hrc:412
+#: sc/inc/globstr.hrc:413
msgctxt "STR_STYLE_FAMILY_CELL"
msgid "Cell Styles"
msgstr "Estilos Koty'i"
-#: sc/inc/globstr.hrc:413
+#: sc/inc/globstr.hrc:414
msgctxt "STR_STYLE_FAMILY_PAGE"
msgid "Page Styles"
msgstr "Estilo Rogue"
-#: sc/inc/globstr.hrc:414
+#: sc/inc/globstr.hrc:415
msgctxt "STR_ERR_DATAPILOTSOURCE"
msgid "Pivot table source data is invalid."
msgstr "Los datos moógui ou para la tabla kyre'ỹ no valéi."
-#: sc/inc/globstr.hrc:415
+#: sc/inc/globstr.hrc:416
msgctxt "STR_OPTIONS_WARN_SEPARATORS"
msgid "Because the current formula separator settings conflict with the locale, the formula separators have been reset to their default values."
msgstr "Jeíkuéra de fórmula ojemoĩ jey ivalorpe 'oĩhaguéicha voi' por culpa a que la ojeguatyrõ ko'ãgagua jeígui de fórmula oike en conflicto con la ojeguatyrõ regional."
-#: sc/inc/globstr.hrc:416
+#: sc/inc/globstr.hrc:417
msgctxt "STR_UNDO_INSERT_CURRENT_DATE"
msgid "Insert Current Date"
msgstr "Moinge Arange Ko'ãgagua"
-#: sc/inc/globstr.hrc:417
+#: sc/inc/globstr.hrc:418
msgctxt "STR_UNDO_INSERT_CURRENT_TIME"
msgid "Insert Current Time"
msgstr "Moinge Aravo Ko'ãgagua"
-#: sc/inc/globstr.hrc:418
+#: sc/inc/globstr.hrc:419
msgctxt "STR_MANAGE_NAMES"
msgid "Manage Names..."
msgstr "Sambyhy Téra kuéra..."
-#: sc/inc/globstr.hrc:419
+#: sc/inc/globstr.hrc:420
msgctxt "STR_HEADER_NAME"
msgid "Name"
msgstr "Téra"
-#: sc/inc/globstr.hrc:420
+#: sc/inc/globstr.hrc:421
msgctxt "STR_HEADER_RANGE_OR_EXPR"
msgid "Range or formula expression"
msgstr "Mopa'ũ térã isajaite je'egua"
-#: sc/inc/globstr.hrc:421
+#: sc/inc/globstr.hrc:422
msgctxt "STR_HEADER_SCOPE"
msgid "Scope"
msgstr "Arapytu"
-#: sc/inc/globstr.hrc:422
+#: sc/inc/globstr.hrc:423
msgctxt "STR_MULTI_SELECT"
msgid "(multiple)"
msgstr "(hetaichagua)"
-#: sc/inc/globstr.hrc:423
+#: sc/inc/globstr.hrc:424
msgctxt "STR_GLOBAL_SCOPE"
msgid "Document (Global)"
msgstr "Documento (Global)"
-#: sc/inc/globstr.hrc:424
+#: sc/inc/globstr.hrc:425
msgctxt "STR_ERR_NAME_EXISTS"
msgid "Invalid name. Already in use for the selected scope."
msgstr "Téra no valéi. Ojepurúma arapytu ojeporavo va'ekuépe."
-#: sc/inc/globstr.hrc:425
+#: sc/inc/globstr.hrc:426
msgctxt "STR_ERR_NAME_INVALID"
msgid "Invalid name. Only use letters, numbers and underscore."
msgstr "Téra no valéi. Puru año letras, papapy, ha guiones karape."
-#: sc/inc/globstr.hrc:426
+#: sc/inc/globstr.hrc:427
msgctxt "STR_UNSAVED_EXT_REF"
msgid ""
"This Document contains external references to unsaved documents.\n"
@@ -2084,217 +2089,217 @@ msgstr ""
"\n"
"¿Reseguisépa?"
-#: sc/inc/globstr.hrc:427
+#: sc/inc/globstr.hrc:428
msgctxt "STR_CLOSE_WITH_UNSAVED_REFS"
msgid "This Document is referenced by another document and not yet saved. Closing it without saving will result in data loss."
msgstr "Ko documento ojapo referencia ambue documentope oñeñongatu'ỹ. Rembotyrõ reñongatu'ỹre okañypáta los datos."
-#: sc/inc/globstr.hrc:428
+#: sc/inc/globstr.hrc:429
msgctxt "STR_HEADER_RANGE"
msgid "Range"
msgstr "Área"
-#: sc/inc/globstr.hrc:429
+#: sc/inc/globstr.hrc:430
msgctxt "STR_HEADER_COND"
msgid "First Condition"
msgstr "Peteĩha Condición"
-#: sc/inc/globstr.hrc:430
+#: sc/inc/globstr.hrc:431
msgctxt "STR_COND_CONDITION"
msgid "Cell value is"
msgstr "El valor koty'ígui ha'e"
-#: sc/inc/globstr.hrc:431
+#: sc/inc/globstr.hrc:432
msgctxt "STR_COND_COLORSCALE"
msgid "ColorScale"
msgstr "EscalaSa'y"
-#: sc/inc/globstr.hrc:432
+#: sc/inc/globstr.hrc:433
msgctxt "STR_COND_DATABAR"
msgid "DataBar"
msgstr "BarraDatosgui"
-#: sc/inc/globstr.hrc:433
+#: sc/inc/globstr.hrc:434
msgctxt "STR_COND_ICONSET"
msgid "IconSet"
msgstr "AtyIconosgui"
-#: sc/inc/globstr.hrc:434
+#: sc/inc/globstr.hrc:435
msgctxt "STR_COND_BETWEEN"
msgid "between"
msgstr "mbytepe"
-#: sc/inc/globstr.hrc:435
+#: sc/inc/globstr.hrc:436
msgctxt "STR_COND_NOTBETWEEN"
msgid "not between"
msgstr "mbytepe'ỹre"
-#: sc/inc/globstr.hrc:436
+#: sc/inc/globstr.hrc:437
msgctxt "STR_COND_UNIQUE"
msgid "unique"
msgstr "único"
-#: sc/inc/globstr.hrc:437
+#: sc/inc/globstr.hrc:438
msgctxt "STR_COND_DUPLICATE"
msgid "duplicate"
msgstr "mokõijey"
-#: sc/inc/globstr.hrc:438
+#: sc/inc/globstr.hrc:439
msgctxt "STR_COND_FORMULA"
msgid "Formula is"
msgstr "La fórmula ha'e"
-#: sc/inc/globstr.hrc:439
+#: sc/inc/globstr.hrc:440
msgctxt "STR_COND_TOP10"
msgid "Top Elements"
msgstr "Elemento Yvategua"
-#: sc/inc/globstr.hrc:440
+#: sc/inc/globstr.hrc:441
msgctxt "STR_COND_BOTTOM10"
msgid "Bottom Elements"
msgstr "Elemento Yvýpegua"
-#: sc/inc/globstr.hrc:441
+#: sc/inc/globstr.hrc:442
msgctxt "STR_COND_TOP_PERCENT"
msgid "Top Percent"
msgstr "Porcentage Yvategua"
-#: sc/inc/globstr.hrc:442
+#: sc/inc/globstr.hrc:443
msgctxt "STR_COND_DATE"
msgid "Date is"
msgstr "Arange ha'e"
-#: sc/inc/globstr.hrc:443
+#: sc/inc/globstr.hrc:444
msgctxt "STR_COND_BOTTOM_PERCENT"
msgid "Bottom Percent"
msgstr "Porcentage Yvýpegua"
-#: sc/inc/globstr.hrc:444
+#: sc/inc/globstr.hrc:445
msgctxt "STR_COND_ABOVE_AVERAGE"
msgid "Above Average"
msgstr "Promedio Ári"
-#: sc/inc/globstr.hrc:445
+#: sc/inc/globstr.hrc:446
msgctxt "STR_COND_BELOW_AVERAGE"
msgid "Below Average"
msgstr "Promedio Výpe"
-#: sc/inc/globstr.hrc:446
+#: sc/inc/globstr.hrc:447
msgctxt "STR_COND_ABOVE_EQUAL_AVERAGE"
msgid "Above or equal Average"
msgstr "Promedio ári o ha'ete"
-#: sc/inc/globstr.hrc:447
+#: sc/inc/globstr.hrc:448
msgctxt "STR_COND_BELOW_EQUAL_AVERAGE"
msgid "Below or equal Average"
msgstr "Promedio výpe o ha'ete"
-#: sc/inc/globstr.hrc:448
+#: sc/inc/globstr.hrc:449
msgctxt "STR_COND_ERROR"
msgid "an Error code"
msgstr "peteĩ Jejavy de código"
-#: sc/inc/globstr.hrc:449
+#: sc/inc/globstr.hrc:450
msgctxt "STR_COND_NOERROR"
msgid "not an Error code"
msgstr "nahaéi Código jejavýgui"
-#: sc/inc/globstr.hrc:450
+#: sc/inc/globstr.hrc:451
msgctxt "STR_COND_BEGINS_WITH"
msgid "Begins with"
msgstr "Oñepyrũ con"
-#: sc/inc/globstr.hrc:451
+#: sc/inc/globstr.hrc:452
msgctxt "STR_COND_ENDS_WITH"
msgid "Ends with"
msgstr "Opa con"
-#: sc/inc/globstr.hrc:452
+#: sc/inc/globstr.hrc:453
msgctxt "STR_COND_CONTAINS"
msgid "Contains"
msgstr "Oguereko"
-#: sc/inc/globstr.hrc:453
+#: sc/inc/globstr.hrc:454
msgctxt "STR_COND_NOT_CONTAINS"
msgid "Not Contains"
msgstr "Oguereko'ỹ"
-#: sc/inc/globstr.hrc:454
+#: sc/inc/globstr.hrc:455
msgctxt "STR_COND_TODAY"
msgid "today"
msgstr "ko ára"
-#: sc/inc/globstr.hrc:455
+#: sc/inc/globstr.hrc:456
msgctxt "STR_COND_YESTERDAY"
msgid "yesterday"
msgstr "kuehe"
-#: sc/inc/globstr.hrc:456
+#: sc/inc/globstr.hrc:457
msgctxt "STR_COND_TOMORROW"
msgid "tomorrow"
msgstr "ko ẽrõ"
-#: sc/inc/globstr.hrc:457
+#: sc/inc/globstr.hrc:458
msgctxt "STR_COND_LAST7DAYS"
msgid "in the last 7 days"
msgstr "7 días pahápe"
-#: sc/inc/globstr.hrc:458
+#: sc/inc/globstr.hrc:459
msgctxt "STR_COND_THISWEEK"
msgid "this week"
msgstr "ko semana"
-#: sc/inc/globstr.hrc:459
+#: sc/inc/globstr.hrc:460
msgctxt "STR_COND_LASTWEEK"
msgid "last week"
msgstr "semana ohasa va'ekue"
-#: sc/inc/globstr.hrc:460
+#: sc/inc/globstr.hrc:461
msgctxt "STR_COND_NEXTWEEK"
msgid "next week"
msgstr "semana oútaha"
-#: sc/inc/globstr.hrc:461
+#: sc/inc/globstr.hrc:462
msgctxt "STR_COND_THISMONTH"
msgid "this month"
msgstr "ko jasy"
-#: sc/inc/globstr.hrc:462
+#: sc/inc/globstr.hrc:463
msgctxt "STR_COND_LASTMONTH"
msgid "last month"
msgstr "jasy ohasa va'ekue"
-#: sc/inc/globstr.hrc:463
+#: sc/inc/globstr.hrc:464
msgctxt "STR_COND_NEXTMONTH"
msgid "next month"
msgstr "jasy oútaha"
-#: sc/inc/globstr.hrc:464
+#: sc/inc/globstr.hrc:465
msgctxt "STR_COND_THISYEAR"
msgid "this year"
msgstr "ko ára"
-#: sc/inc/globstr.hrc:465
+#: sc/inc/globstr.hrc:466
msgctxt "STR_COND_LASTYEAR"
msgid "last year"
msgstr "ára ohasa va'ekue"
-#: sc/inc/globstr.hrc:466
+#: sc/inc/globstr.hrc:467
msgctxt "STR_COND_NEXTYEAR"
msgid "next year"
msgstr "ára oútaha"
-#: sc/inc/globstr.hrc:467
+#: sc/inc/globstr.hrc:468
msgctxt "STR_COND_AND"
msgid "and"
msgstr "ha"
-#: sc/inc/globstr.hrc:468
+#: sc/inc/globstr.hrc:469
msgctxt "STR_ERR_CONDFORMAT_PROTECTED"
msgid "Conditional Formats can not be created, deleted or changed in protected sheets."
msgstr ""
-#: sc/inc/globstr.hrc:469
+#: sc/inc/globstr.hrc:470
msgctxt "STR_EDIT_EXISTING_COND_FORMATS"
msgid ""
"The selected cell already contains conditional formatting. You can either edit the existing conditional format or you define a new overlapping conditional format.\n"
@@ -2305,7 +2310,7 @@ msgstr ""
"\n"
"¿Re'editasépa el formato condicional oĩa?"
-#: sc/inc/globstr.hrc:470
+#: sc/inc/globstr.hrc:471
msgctxt "STR_QUERY_FORMULA_RECALC_ONLOAD_ODS"
msgid ""
"This document was last saved by an application other than %PRODUCTNAME. Some formula cells may produce different results when recalculated.\n"
@@ -2316,7 +2321,7 @@ msgstr ""
"\n"
"¿Re'recalulasépa ko'ãga opavave koty'i kuéra con fórmulas ko documento?"
-#: sc/inc/globstr.hrc:471
+#: sc/inc/globstr.hrc:472
msgctxt "STR_QUERY_FORMULA_RECALC_ONLOAD_XLS"
msgid ""
"This document was last saved by Excel. Some formula cells may produce different results when recalculated.\n"
@@ -2327,77 +2332,77 @@ msgstr ""
"\n"
"¿Recalculásépa opavave koty'i kuéra con fórmulas ko'ãnga?"
-#: sc/inc/globstr.hrc:472
+#: sc/inc/globstr.hrc:473
msgctxt "STR_NO_INSERT_DELETE_OVER_PIVOT_TABLE"
msgid "You cannot insert or delete cells when the affected range intersects with pivot table."
msgstr "Nikatúi moinge o jukase koty'i kuéra área afectada jave ohasa peteĩ tabla kyre'ỹ."
-#: sc/inc/globstr.hrc:473
+#: sc/inc/globstr.hrc:474
msgctxt "STR_DPFIELD_GROUP_BY_SECONDS"
msgid "Seconds"
msgstr "Aravo’ive"
-#: sc/inc/globstr.hrc:474
+#: sc/inc/globstr.hrc:475
msgctxt "STR_DPFIELD_GROUP_BY_MINUTES"
msgid "Minutes"
msgstr "Aravo’i"
-#: sc/inc/globstr.hrc:475
+#: sc/inc/globstr.hrc:476
msgctxt "STR_DPFIELD_GROUP_BY_HOURS"
msgid "Hours"
msgstr "Hora kuéra"
-#: sc/inc/globstr.hrc:476
+#: sc/inc/globstr.hrc:477
msgctxt "STR_DPFIELD_GROUP_BY_DAYS"
msgid "Days"
msgstr "Días"
-#: sc/inc/globstr.hrc:477
+#: sc/inc/globstr.hrc:478
msgctxt "STR_DPFIELD_GROUP_BY_MONTHS"
msgid "Months"
msgstr "Jasy kuéra"
-#: sc/inc/globstr.hrc:478
+#: sc/inc/globstr.hrc:479
msgctxt "STR_DPFIELD_GROUP_BY_QUARTERS"
msgid "Quarters"
msgstr "Trimestres"
-#: sc/inc/globstr.hrc:479
+#: sc/inc/globstr.hrc:480
msgctxt "STR_DPFIELD_GROUP_BY_YEARS"
msgid "Years"
msgstr "Ára"
-#: sc/inc/globstr.hrc:480
+#: sc/inc/globstr.hrc:481
msgctxt "STR_INVALIDVAL"
msgid "Invalid target value."
msgstr "Valor poravígui no valéi."
-#: sc/inc/globstr.hrc:481
+#: sc/inc/globstr.hrc:482
msgctxt "STR_INVALIDVAR"
msgid "Undefined name for variable cell."
msgstr "Nojemyesakãi téra koty'ígui variable."
-#: sc/inc/globstr.hrc:482
+#: sc/inc/globstr.hrc:483
msgctxt "STR_INVALIDFORM"
msgid "Undefined name as formula cell."
msgstr "Téra nojemyesakãi koty'i de fórmula háicha."
-#: sc/inc/globstr.hrc:483
+#: sc/inc/globstr.hrc:484
msgctxt "STR_NOFORMULA"
msgid "Formula cell must contain a formula."
msgstr "Koty'i de fórmula oguereko arã peteĩ fórmula."
-#: sc/inc/globstr.hrc:484
+#: sc/inc/globstr.hrc:485
msgctxt "STR_INVALIDINPUT"
msgid "Invalid input."
msgstr "Jeikeha no valéi."
-#: sc/inc/globstr.hrc:485
+#: sc/inc/globstr.hrc:486
msgctxt "STR_INVALIDCONDITION"
msgid "Invalid condition."
msgstr "Codición no valéia."
-#: sc/inc/globstr.hrc:486
+#: sc/inc/globstr.hrc:487
msgctxt "STR_QUERYREMOVE"
msgid ""
"Should the entry\n"
@@ -2408,133 +2413,133 @@ msgstr ""
"#\n"
" "
-#: sc/inc/globstr.hrc:487
+#: sc/inc/globstr.hrc:488
msgctxt "STR_COPYLIST"
msgid "Copy List"
msgstr "Kopia Lista"
-#: sc/inc/globstr.hrc:488
+#: sc/inc/globstr.hrc:489
msgctxt "STR_COPYFROM"
msgid "List from"
msgstr "Lista de"
-#: sc/inc/globstr.hrc:489
+#: sc/inc/globstr.hrc:490
msgctxt "STR_COPYERR"
msgid "Cells without text have been ignored."
msgstr "Se ignoraron koty'i kuéra moñe'ẽrã simple'ỹre."
-#: sc/inc/globstr.hrc:490
+#: sc/inc/globstr.hrc:491
#, fuzzy, c-format
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%s-click to follow hyperlink:"
msgstr "Clic %s osegui haguã link"
-#: sc/inc/globstr.hrc:491
+#: sc/inc/globstr.hrc:492
msgctxt "STR_CLICKHYPERLINK"
msgid "click to open hyperlink:"
msgstr "clic ojeavri haguã el hiperenlance:"
-#: sc/inc/globstr.hrc:492
+#: sc/inc/globstr.hrc:493
msgctxt "STR_PRINT_PREVIEW_NODATA"
msgid "No Data"
msgstr "Datos'ỹre"
-#: sc/inc/globstr.hrc:493
+#: sc/inc/globstr.hrc:494
msgctxt "STR_PRINT_PREVIEW_EMPTY_RANGE"
msgid "Print Range Empty"
msgstr "Intervalo de impresión nandi"
-#: sc/inc/globstr.hrc:494
+#: sc/inc/globstr.hrc:495
msgctxt "STR_UNDO_CONDFORMAT"
msgid "Conditional Format"
msgstr "Formato Condicional"
-#: sc/inc/globstr.hrc:495
+#: sc/inc/globstr.hrc:496
msgctxt "STR_UNDO_CONDFORMAT_LIST"
msgid "Conditional Formats"
msgstr "Formatos Condicionales"
-#: sc/inc/globstr.hrc:496
+#: sc/inc/globstr.hrc:497
msgctxt "STR_UNDO_FORMULA_TO_VALUE"
msgid "Convert Formula To Value"
msgstr "Convertir fórmula en valor"
-#: sc/inc/globstr.hrc:497
+#: sc/inc/globstr.hrc:498
msgctxt "STR_UNQUOTED_STRING"
msgid "Strings without quotes are interpreted as column/row labels."
msgstr "Umi joajuha ndahaikõiva oñeikumby yta/tysýi teramoĩháramo."
-#: sc/inc/globstr.hrc:498
+#: sc/inc/globstr.hrc:499
msgctxt "STR_ENTER_VALUE"
msgid "Enter a value!"
msgstr "¡Oje'especifica peteĩ valor!"
-#: sc/inc/globstr.hrc:499
+#: sc/inc/globstr.hrc:500
msgctxt "STR_TABLE_COUNT"
msgid "Sheet %1 of %2"
msgstr "Kuatia %1 de %2"
-#: sc/inc/globstr.hrc:500
+#: sc/inc/globstr.hrc:501
msgctxt "STR_FUNCTIONS_FOUND"
msgid "%1 and %2 more"
msgstr "%1 ha %2 ve"
-#: sc/inc/globstr.hrc:501
+#: sc/inc/globstr.hrc:502
msgctxt "STR_GENERAL"
msgid "General"
msgstr "General"
-#: sc/inc/globstr.hrc:502
+#: sc/inc/globstr.hrc:503
msgctxt "STR_NUMBER"
msgid "Number"
msgstr "Papapy"
-#: sc/inc/globstr.hrc:503
+#: sc/inc/globstr.hrc:504
msgctxt "STR_PERCENT"
msgid "Percent"
msgstr "Porcentaje"
-#: sc/inc/globstr.hrc:504
+#: sc/inc/globstr.hrc:505
msgctxt "STR_CURRENCY"
msgid "Currency"
msgstr "Pirapire"
-#: sc/inc/globstr.hrc:505
+#: sc/inc/globstr.hrc:506
msgctxt "STR_DATE"
msgid "Date"
msgstr "Arange"
-#: sc/inc/globstr.hrc:506
+#: sc/inc/globstr.hrc:507
msgctxt "STR_TIME"
msgid "Time"
msgstr "Aravo"
-#: sc/inc/globstr.hrc:507
+#: sc/inc/globstr.hrc:508
msgctxt "STR_SCIENTIFIC"
msgid "Scientific"
msgstr "Científico"
-#: sc/inc/globstr.hrc:508
+#: sc/inc/globstr.hrc:509
msgctxt "STR_FRACTION"
msgid "Fraction"
msgstr "Fracción"
-#: sc/inc/globstr.hrc:509
+#: sc/inc/globstr.hrc:510
msgctxt "STR_BOOLEAN_VALUE"
msgid "Boolean Value"
msgstr "Valor Booleano"
-#: sc/inc/globstr.hrc:510
+#: sc/inc/globstr.hrc:511
msgctxt "STR_TEXT"
msgid "Text"
msgstr "Moñe'ẽrã"
-#: sc/inc/globstr.hrc:511
+#: sc/inc/globstr.hrc:512
msgctxt "STR_QUERY_PIVOTTABLE_DELTAB"
msgid "The selected sheet(s) contain source data of related pivot tables that will be lost. Are you sure you want to delete the selected sheet(s)?"
msgstr ""
-#: sc/inc/globstr.hrc:512
+#: sc/inc/globstr.hrc:513
msgctxt "STR_ERR_NAME_INVALID_CELL_REF"
msgid "Invalid name. Reference to a cell, or a range of cells not allowed."
msgstr ""
@@ -10676,8 +10681,8 @@ msgstr "Modo"
#: sc/inc/scfuncs.hrc:3010
msgctxt "SC_OPCODE_T_TEST"
-msgid "Mode specifies the number of distribution tails to return. 1= one-tailed, 2 = two-tailed distribution"
-msgstr "El modo especifica papapy de colas de distribución ejujey. 1=peteĩ cola, 2=distribución de cola kõi"
+msgid "Mode specifies the number of distribution tails to return. 1 = one-tailed, 2 = two-tailed distribution"
+msgstr ""
#: sc/inc/scfuncs.hrc:3011
msgctxt "SC_OPCODE_T_TEST"
@@ -10723,8 +10728,8 @@ msgstr "Modo"
#: sc/inc/scfuncs.hrc:3024
msgctxt "SC_OPCODE_T_TEST_MS"
-msgid "Mode specifies the number of distribution tails to return. 1= one-tailed, 2 = two-tailed distribution"
-msgstr "El modo especifica papapy de colas de distribución ejujey. 1=unilateral, 2=bilateral"
+msgid "Mode specifies the number of distribution tails to return. 1 = one-tailed, 2 = two-tailed distribution"
+msgstr ""
#: sc/inc/scfuncs.hrc:3025
msgctxt "SC_OPCODE_T_TEST_MS"
@@ -18367,22 +18372,22 @@ msgctxt "mergecellsdialog|MergeCellsDialog"
msgid "Merge Cells"
msgstr "Mbojoaju Koty'i"
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:81
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:84
msgctxt "mergecellsdialog|label"
msgid "Some cells are not empty."
msgstr "Oĩ tenda'iete inandi'ỹva."
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:96
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:99
msgctxt "mergecellsdialog|move-cells-radio"
msgid "Move the contents of the hidden cells into the first cell"
msgstr "Egueraha tenda'iete kañyguáva retepy tenda'iete peteĩháme"
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:112
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:115
msgctxt "mergecellsdialog|empty-cells-radio"
msgid "Empty the contents of the hidden cells"
msgstr "Emonandi tenda'iete kañyguáva retepy"
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:128
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:131
msgctxt "mergecellsdialog|keep-content-radio"
msgid "Keep the contents of the hidden cells"
msgstr "Emombyta tenda'iete kañyguáva retepy"
diff --git a/source/gug/sd/messages.po b/source/gug/sd/messages.po
index b2ff3e16956..9654f9de91e 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+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"
@@ -13,176 +13,176 @@ msgstr ""
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-#: sd/inc/DocumentRenderer.hrc:29
+#: sd/inc/DocumentRenderer.hrc:27
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Slides"
msgstr "Diapositivas"
-#: sd/inc/DocumentRenderer.hrc:30
+#: sd/inc/DocumentRenderer.hrc:28
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Handouts"
msgstr "Folletos"
-#: sd/inc/DocumentRenderer.hrc:31
+#: sd/inc/DocumentRenderer.hrc:29
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Notes"
msgstr "Notas"
-#: sd/inc/DocumentRenderer.hrc:32
+#: sd/inc/DocumentRenderer.hrc:30
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Outline"
msgstr "Trazado"
-#: sd/inc/DocumentRenderer.hrc:37
+#: sd/inc/DocumentRenderer.hrc:35
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "According to layout"
msgstr "Moha'anga he'iháicha"
-#: sd/inc/DocumentRenderer.hrc:38
+#: sd/inc/DocumentRenderer.hrc:36
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "1"
msgstr "1"
-#: sd/inc/DocumentRenderer.hrc:39
+#: sd/inc/DocumentRenderer.hrc:37
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "2"
msgstr "2"
-#: sd/inc/DocumentRenderer.hrc:40
+#: sd/inc/DocumentRenderer.hrc:38
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "3"
msgstr "3"
-#: sd/inc/DocumentRenderer.hrc:41
+#: sd/inc/DocumentRenderer.hrc:39
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "4"
msgstr "4"
-#: sd/inc/DocumentRenderer.hrc:42
+#: sd/inc/DocumentRenderer.hrc:40
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "6"
msgstr "6"
-#: sd/inc/DocumentRenderer.hrc:43
+#: sd/inc/DocumentRenderer.hrc:41
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "9"
msgstr "9"
-#: sd/inc/DocumentRenderer.hrc:48
+#: sd/inc/DocumentRenderer.hrc:46
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_ORDER_CHOICES"
msgid "Left to right, then down"
msgstr "Asúgui akatúavo ha yvy gotyo"
-#: sd/inc/DocumentRenderer.hrc:49
+#: sd/inc/DocumentRenderer.hrc:47
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_ORDER_CHOICES"
msgid "Top to bottom, then right"
msgstr "Yvatégui yvy gotyo ha upéi akatúape"
-#: sd/inc/DocumentRenderer.hrc:54
+#: sd/inc/DocumentRenderer.hrc:52
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Original colors"
msgstr "Sa'y kuéra originales"
-#: sd/inc/DocumentRenderer.hrc:55
+#: sd/inc/DocumentRenderer.hrc:53
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Grayscale"
msgstr "Escala hũndy"
-#: sd/inc/DocumentRenderer.hrc:56
+#: sd/inc/DocumentRenderer.hrc:54
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Black & white"
msgstr "Hũ ha morotĩ"
-#: sd/inc/DocumentRenderer.hrc:61
+#: sd/inc/DocumentRenderer.hrc:59
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Original size"
msgstr "Tamaño original"
-#: sd/inc/DocumentRenderer.hrc:62
+#: sd/inc/DocumentRenderer.hrc:60
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Fit to printable page"
msgstr "Ojeahusta a la zona de impresión"
-#: sd/inc/DocumentRenderer.hrc:63
+#: sd/inc/DocumentRenderer.hrc:61
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Distribute on multiple sheets of paper"
msgstr "Me'e heta rogue kuatiágui"
-#: sd/inc/DocumentRenderer.hrc:64
+#: sd/inc/DocumentRenderer.hrc:62
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Tile sheet of paper with repeated slides"
msgstr "Mosaicos diapositivasndi ojerepetí va'ekue"
-#: sd/inc/DocumentRenderer.hrc:69
+#: sd/inc/DocumentRenderer.hrc:67
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Original size"
msgstr "Tamaño original"
-#: sd/inc/DocumentRenderer.hrc:70
+#: sd/inc/DocumentRenderer.hrc:68
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Fit to printable page"
msgstr "Ojeahusta a la zona de impresión"
-#: sd/inc/DocumentRenderer.hrc:71
+#: sd/inc/DocumentRenderer.hrc:69
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Distribute on multiple sheets of paper"
msgstr "Me'e heta rogue kuatiágui"
-#: sd/inc/DocumentRenderer.hrc:72
+#: sd/inc/DocumentRenderer.hrc:70
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Tile sheet of paper with repeated pages"
msgstr "Mosaicos diapositivasndi ojerepetí va'ekue"
-#: sd/inc/DocumentRenderer.hrc:77
+#: sd/inc/DocumentRenderer.hrc:75
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "All pages"
msgstr "Opavave rogue kuéra"
-#: sd/inc/DocumentRenderer.hrc:78
+#: sd/inc/DocumentRenderer.hrc:76
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "Front sides / right pages"
msgstr "Anversos / rogue akatúa"
-#: sd/inc/DocumentRenderer.hrc:79
+#: sd/inc/DocumentRenderer.hrc:77
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "Back sides / left pages"
msgstr "Reversos / rogue asúpe"
-#: sd/inc/DocumentRenderer.hrc:84
+#: sd/inc/DocumentRenderer.hrc:82
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~All slides"
msgstr "_Opavave rogue kuéra"
-#: sd/inc/DocumentRenderer.hrc:85
+#: sd/inc/DocumentRenderer.hrc:83
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~Slides"
msgstr "~Diapositivas"
-#: sd/inc/DocumentRenderer.hrc:86
+#: sd/inc/DocumentRenderer.hrc:84
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Se~lection"
msgstr "Je~poravo"
-#: sd/inc/DocumentRenderer.hrc:91
+#: sd/inc/DocumentRenderer.hrc:89
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~All pages"
msgstr "~Opavave rogue kuéra"
-#: sd/inc/DocumentRenderer.hrc:92
+#: sd/inc/DocumentRenderer.hrc:90
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Pa~ges"
msgstr "Ro~gue kuéra"
-#: sd/inc/DocumentRenderer.hrc:93
+#: sd/inc/DocumentRenderer.hrc:91
#, fuzzy
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Se~lection"
diff --git a/source/gug/svx/messages.po b/source/gug/svx/messages.po
index 045a61de459..3d1407e18bd 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: 2018-05-16 16:53+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+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"
@@ -5360,7 +5360,7 @@ msgstr ""
#: svx/uiconfig/ui/safemodedialog.ui:432
msgctxt "safemodedialog|btn_create_zip"
-msgid "Create Zip Archive from User Profile"
+msgid "Archive User Profile"
msgstr ""
#: svx/uiconfig/ui/safemodedialog.ui:445
@@ -9044,9 +9044,9 @@ msgid "Red"
msgstr "Pytã"
#: include/svx/strings.hrc:565
-msgctxt "RID_SVXSTR_COLOR_VIOLET"
-msgid "Violet"
-msgstr "Violeta"
+msgctxt "RID_SVXSTR_COLOR_MAGENTA"
+msgid "Magenta"
+msgstr "Magenta"
#: include/svx/strings.hrc:566
#, fuzzy
@@ -9113,8 +9113,8 @@ msgid "Light Red"
msgstr ""
#: include/svx/strings.hrc:579
-msgctxt "RID_SVXSTR_COLOR_LIGHTVIOLET"
-msgid "Light Violet"
+msgctxt "RID_SVXSTR_COLOR_LIGHTMAGENTA"
+msgid "Light Magenta"
msgstr ""
#: include/svx/strings.hrc:580
@@ -9181,8 +9181,8 @@ msgid "Dark Red"
msgstr "Granate"
#: include/svx/strings.hrc:593
-msgctxt "RID_SVXSTR_COLOR_DARKVIOLET1"
-msgid "Dark Violet"
+msgctxt "RID_SVXSTR_COLOR_DARKMAGENTA"
+msgid "Dark Magenta"
msgstr ""
#: include/svx/strings.hrc:594
@@ -9217,55 +9217,55 @@ msgstr ""
#. Elements of the Tonal color palette
#: include/svx/strings.hrc:601
+msgctxt "RID_SVXSTR_COLOR_VIOLET"
+msgid "Violet"
+msgstr "Violeta"
+
+#: include/svx/strings.hrc:602
msgctxt "RID_SVXSTR_COLOR_VIOLET_OUG"
msgid "Violet (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:602
+#: include/svx/strings.hrc:603
msgctxt "RID_SVXSTR_COLOR_BLUE_OUG"
msgid "Blue (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:603
+#: include/svx/strings.hrc:604
msgctxt "RID_SVXSTR_COLOR_AZURE_OUG"
msgid "Azure (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:604
+#: include/svx/strings.hrc:605
msgctxt "RID_SVXSTR_COLOR_SPRINGGREEN_OUG"
msgid "Spring Green (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:605
+#: include/svx/strings.hrc:606
msgctxt "RID_SVXSTR_COLOR_GREEN_OUG"
msgid "Green (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:606
+#: include/svx/strings.hrc:607
msgctxt "RID_SVXSTR_COLOR_CHARTREUSEGREEN_OUG"
msgid "Chartreuse Green (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:607
+#: include/svx/strings.hrc:608
msgctxt "RID_SVXSTR_COLOR_ORANGE_OUG"
msgid "Orange (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:608
+#: include/svx/strings.hrc:609
msgctxt "RID_SVXSTR_COLOR_RED_OUG"
msgid "Red (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:609
+#: include/svx/strings.hrc:610
msgctxt "RID_SVXSTR_COLOR_ROSE_OUG"
msgid "Rose (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:610
-msgctxt "RID_SVXSTR_COLOR_MAGENTA"
-msgid "Magenta"
-msgstr "Magenta"
-
#: include/svx/strings.hrc:611
msgctxt "RID_SVXSTR_COLOR_AZURE"
msgid "Azure"
@@ -12423,12 +12423,12 @@ msgstr ""
#: include/svx/strings.hrc:1273
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_6"
-msgid "Check mark bullets"
+msgid "Cross mark bullets"
msgstr ""
#: include/svx/strings.hrc:1274
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_7"
-msgid "Tick mark bullets"
+msgid "Check mark bullets"
msgstr ""
#: include/svx/strings.hrc:1275
diff --git a/source/gug/sw/messages.po b/source/gug/sw/messages.po
index ba363a1a364..a0650d241ec 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: 2018-05-22 13:17+0200\n"
+"POT-Creation-Date: 2018-06-12 14:41+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"
@@ -1195,13 +1195,13 @@ msgstr "Referencia"
#: sw/inc/strings.hrc:172
msgctxt "STR_POOLCOLL_TOX_ILLUSH"
-msgid "Illustration Index Heading"
-msgstr "Oñemoakãva índice ilustraciongui"
+msgid "Figure Index Heading"
+msgstr ""
#: sw/inc/strings.hrc:173
msgctxt "STR_POOLCOLL_TOX_ILLUS1"
-msgid "Illustration Index 1"
-msgstr "Índicie Ilustraciongui 1"
+msgid "Figure Index 1"
+msgstr ""
#: sw/inc/strings.hrc:174
msgctxt "STR_POOLCOLL_TOX_OBJECTH"
@@ -3617,8 +3617,8 @@ msgstr "Tabla Mba'e kuéra"
#: sw/inc/strings.hrc:672
msgctxt "STR_TOX_ILL"
-msgid "Illustration Index"
-msgstr "Índice Ilustraciongui"
+msgid "Table of Figures"
+msgstr ""
#: sw/inc/strings.hrc:673
#, fuzzy, c-format
@@ -9311,72 +9311,72 @@ msgctxt "footnotepage|label5"
msgid "Continuation Notice"
msgstr "Marandu uperireguágui"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:49
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:55
msgctxt "footnotesendnotestabpage|ftnntnum"
msgid "_Restart numbering"
msgstr "_Ñepyrũ jey numeración"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:91
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:93
msgctxt "footnotesendnotestabpage|ftnoffset_label"
msgid "_Start at:"
msgstr "_Oñepyrũ en:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:112
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:111
msgctxt "footnotesendnotestabpage|ftnntnumfmt"
msgid "Custom _format"
msgstr "_Formato myatyrõ ndegustaháicha"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:155
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:150
msgctxt "footnotesendnotestabpage|ftnsuffix_label"
msgid "Aft_er:"
msgstr "U_péi:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:199
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:188
msgctxt "footnotesendnotestabpage|ftnprefix_label"
msgid "Be_fore:"
msgstr "Mb_oyve:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:228
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:212
msgctxt "footnotesendnotestabpage|ftnntattextend"
msgid "Collec_t at end of text"
msgstr "Mb_yaty moñe'ẽrã paha"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:252
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:234
msgctxt "footnotesendnotestabpage|label1"
msgid "Footnotes"
msgstr "Notas"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:289
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:271
msgctxt "footnotesendnotestabpage|endntattextend"
msgid "C_ollect at end of section"
msgstr "Mby_aty pehẽ paha"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:315
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:295
msgctxt "footnotesendnotestabpage|endntnum"
msgid "_Restart numbering"
msgstr "Ñepyrũ jey numeración"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:357
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:333
msgctxt "footnotesendnotestabpage|endoffset_label"
msgid "_Start at:"
msgstr "_Oñepyrũ en:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:378
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:351
msgctxt "footnotesendnotestabpage|endntnumfmt"
msgid "_Custom format"
msgstr "_Formato myatyrõ ndegustaháicha"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:421
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:390
msgctxt "footnotesendnotestabpage|endsuffix_label"
msgid "Aft_er:"
msgstr "U_péi:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:465
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:428
msgctxt "footnotesendnotestabpage|endprefix_label"
msgid "Be_fore:"
msgstr "Mb_oyve:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:500
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:458
msgctxt "footnotesendnotestabpage|label2"
msgid "Endnotes"
msgstr "Nota Paha kuéra"
@@ -9406,27 +9406,27 @@ msgctxt "formatsectiondialog|notes"
msgid "Footnotes/Endnotes"
msgstr "Notas/Nota Paha kuéra"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:63
+#: sw/uiconfig/swriter/ui/formattablepage.ui:77
msgctxt "formattablepage|nameft"
msgid "_Name"
msgstr "_Téra"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:79
+#: sw/uiconfig/swriter/ui/formattablepage.ui:91
msgctxt "formattablepage|widthft"
msgid "W_idth"
msgstr "Ip_e"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:110
+#: sw/uiconfig/swriter/ui/formattablepage.ui:120
msgctxt "formattablepage|relwidth"
msgid "Relati_ve"
msgstr "Relati_vo"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:155
+#: sw/uiconfig/swriter/ui/formattablepage.ui:160
msgctxt "formattablepage|label45"
msgid "Properties"
msgstr "Mba'e Tee kuéra"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:194
+#: sw/uiconfig/swriter/ui/formattablepage.ui:195
msgctxt "formattablepage|leftft"
msgid "Lef_t"
msgstr "Asú_pe"
@@ -9436,62 +9436,62 @@ msgctxt "formattablepage|rightft"
msgid "Ri_ght"
msgstr "Aka_túa"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:228
+#: sw/uiconfig/swriter/ui/formattablepage.ui:226
msgctxt "formattablepage|aboveft"
msgid "_Above"
msgstr "_Hi'ári"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:245
+#: sw/uiconfig/swriter/ui/formattablepage.ui:241
msgctxt "formattablepage|belowft"
msgid "_Below"
msgstr "_Yvýpe"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:320
+#: sw/uiconfig/swriter/ui/formattablepage.ui:311
msgctxt "formattablepage|label46"
msgid "Spacing"
msgstr "Pa'ũ"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:362
+#: sw/uiconfig/swriter/ui/formattablepage.ui:349
msgctxt "formattablepage|full"
msgid "A_utomatic"
msgstr "Au_tomática"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:380
+#: sw/uiconfig/swriter/ui/formattablepage.ui:365
msgctxt "formattablepage|left"
msgid "_Left"
msgstr "_Asúpe"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:398
+#: sw/uiconfig/swriter/ui/formattablepage.ui:381
msgctxt "formattablepage|fromleft"
msgid "_From left"
msgstr "_Asúpegui"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:416
+#: sw/uiconfig/swriter/ui/formattablepage.ui:397
msgctxt "formattablepage|right"
msgid "R_ight"
msgstr "_Akatúa"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:435
+#: sw/uiconfig/swriter/ui/formattablepage.ui:413
msgctxt "formattablepage|center"
msgid "_Center"
msgstr "_Mbyte"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:453
+#: sw/uiconfig/swriter/ui/formattablepage.ui:429
msgctxt "formattablepage|free"
msgid "_Manual"
msgstr "_Manual"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:478
+#: sw/uiconfig/swriter/ui/formattablepage.ui:452
msgctxt "formattablepage|label43"
msgid "Alignment"
msgstr "Alineación"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:522
+#: sw/uiconfig/swriter/ui/formattablepage.ui:491
msgctxt "formattablepage|label53"
msgid "Text _direction"
msgstr "_Sambyhy ojehai va'ekue"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:553
+#: sw/uiconfig/swriter/ui/formattablepage.ui:519
msgctxt "formattablepage|label44"
msgid "Properties "
msgstr "Mba'e Tee kuéra "
@@ -9846,22 +9846,27 @@ msgctxt "headerfootermenu|insert_pagenumber"
msgid "Insert Page Number"
msgstr ""
-#: sw/uiconfig/swriter/ui/indentpage.ui:52
+#: sw/uiconfig/swriter/ui/headerfootermenu.ui:42
+msgctxt "headerfootermenu|insert_pagecount"
+msgid "Insert Page Count"
+msgstr ""
+
+#: sw/uiconfig/swriter/ui/indentpage.ui:57
msgctxt "indentpage|label1"
msgid "_Before section"
msgstr "_Pehẽ mboyve"
-#: sw/uiconfig/swriter/ui/indentpage.ui:67
+#: sw/uiconfig/swriter/ui/indentpage.ui:71
msgctxt "indentpage|label3"
msgid "_After section"
msgstr "_Pehẽ upéi"
-#: sw/uiconfig/swriter/ui/indentpage.ui:113
+#: sw/uiconfig/swriter/ui/indentpage.ui:115
msgctxt "indentpage|label2"
msgid "Indent"
msgstr "Sangría"
-#: sw/uiconfig/swriter/ui/indentpage.ui:142
+#: sw/uiconfig/swriter/ui/indentpage.ui:155
msgctxt "indentpage|preview-atkobject"
msgid "Example"
msgstr "Techapyrã"
@@ -13402,7 +13407,7 @@ msgstr "Myanyhẽha ñemo'ã"
#: sw/uiconfig/swriter/ui/optcompatpage.ui:68
msgctxt "optcompatpage|format"
-msgid "MS Word-compatible trailing blanks"
+msgid "Word-compatible trailing blanks"
msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:69
@@ -13412,7 +13417,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:70
msgctxt "optcompatpage|format"
-msgid "A database field (e.g., MailMerge) with empty value hides its paragraph"
+msgid "Hide paragraphs of database fields (e.g., mail merge) with an empty value"
msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:71
@@ -16122,122 +16127,122 @@ msgctxt "tableproperties|background"
msgid "Background"
msgstr "Hapykuegua"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:25
-msgctxt "tabletextflowpage|liststore1"
-msgid "Horizontal"
-msgstr "Oñenóva"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:29
-msgctxt "tabletextflowpage|liststore1"
-msgid "Vertical"
-msgstr "Oñembo'yva"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:33
-msgctxt "tabletextflowpage|liststore1"
-msgid "Use superordinate object settings"
-msgstr "Puru la configuración mba'égui iporãvéa"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:47
-msgctxt "tabletextflowpage|liststore2"
-msgid "Top"
-msgstr "Yvate"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:51
-msgctxt "tabletextflowpage|liststore2"
-msgid "Centered"
-msgstr "Mombyte"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:55
-msgctxt "tabletextflowpage|liststore2"
-msgid "Bottom"
-msgstr "Yvýpe"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:97
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:53
msgctxt "tabletextflowpage|break"
msgid "_Break"
msgstr "_Mope"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:112
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:68
msgctxt "tabletextflowpage|page"
msgid "_Page"
msgstr "_Togue"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:132
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:87
msgctxt "tabletextflowpage|column"
msgid "Col_umn"
msgstr "Col_umna"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:151
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:106
msgctxt "tabletextflowpage|before"
msgid "Be_fore"
msgstr "Mbo_yve"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:171
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:125
msgctxt "tabletextflowpage|after"
msgid "_After"
msgstr "_Upéi"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:203
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:158
msgctxt "tabletextflowpage|pagestyle"
msgid "With Page St_yle"
msgstr "Con _estilo roguégui"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:224
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:177
msgctxt "tabletextflowpage|pagenoft"
msgid "Page _number"
msgstr "Papapy _rogue"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:257
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:213
msgctxt "tabletextflowpage|pagestylelb-atkobject"
msgid "With Page Style"
msgstr "Kuatiarogue mbohekoha"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:274
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:230
msgctxt "tabletextflowpage|split"
msgid "Allow _table to split across pages and columns"
msgstr "Ojepermiti _división tabla gui rogue ha columna pe"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:289
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:245
msgctxt "tabletextflowpage|splitrow"
msgid "Allow row to break a_cross pages and columns"
msgstr "Ojepermiti _división tabla gui rogue ha columna pe"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:306
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:262
msgctxt "tabletextflowpage|keep"
msgid "_Keep with next paragraph"
msgstr "_Ñongatu párrafos oseguíandi"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:328
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:284
msgctxt "tabletextflowpage|label40"
msgid "Text _orientation"
msgstr "_Mbohape moñe'ẽrã"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:361
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:298
+msgctxt "tabletextflowpage|liststore1"
+msgid "Horizontal"
+msgstr "Oñenóva"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:299
+msgctxt "tabletextflowpage|liststore1"
+msgid "Vertical"
+msgstr "Oñembo'yva"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:300
+msgctxt "tabletextflowpage|liststore1"
+msgid "Use superordinate object settings"
+msgstr "Puru la configuración mba'égui iporãvéa"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:321
msgctxt "tabletextflowpage|headline"
msgid "R_epeat heading"
msgstr "H_a'ejevy oñemoakãva"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:383
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:343
msgctxt "tabletextflowpage|label38"
msgid "The first "
msgstr "Peteĩha "
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:396
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:356
msgctxt "tabletextflowpage|label39"
msgid "rows"
msgstr "tysỹi kuéra"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:434
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:395
msgctxt "tabletextflowpage|label35"
msgid "Text Flow"
msgstr "Syry Moñe'ẽrã"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:467
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:428
msgctxt "tabletextflowpage|label41"
msgid "_Vertical alignment"
msgstr "_Alineación Oñembo'yva"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:495
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:442
+msgctxt "tabletextflowpage|liststore2"
+msgid "Top"
+msgstr "Yvate"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:443
+msgctxt "tabletextflowpage|liststore2"
+msgid "Centered"
+msgstr "Mombyte"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:444
+msgctxt "tabletextflowpage|liststore2"
+msgid "Bottom"
+msgstr "Yvýpe"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:460
msgctxt "tabletextflowpage|label36"
msgid "Alignment"
msgstr "Alineación"
@@ -17019,8 +17024,8 @@ msgstr "Índice alfabético"
#: sw/uiconfig/swriter/ui/tocindexpage.ui:58
msgctxt "tocindexpage|liststore1"
-msgid "Illustration Index"
-msgstr "Índice Ilustraciongui"
+msgid "Table of Figures"
+msgstr ""
#: sw/uiconfig/swriter/ui/tocindexpage.ui:62
msgctxt "tocindexpage|liststore1"
diff --git a/source/gug/writerperfect/messages.po b/source/gug/writerperfect/messages.po
index 1d3bf89cad5..1b02dffb9b5 100644
--- a/source/gug/writerperfect/messages.po
+++ b/source/gug/writerperfect/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-16 16:54+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+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"
@@ -65,97 +65,97 @@ msgctxt "exportepub|generalft"
msgid "General"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:122
+#: writerperfect/uiconfig/ui/exportepub.ui:121
msgctxt "exportepub|versionft"
msgid "Version:"
msgstr "Versión:"
-#: writerperfect/uiconfig/ui/exportepub.ui:139
+#: writerperfect/uiconfig/ui/exportepub.ui:138
msgctxt "exportepub|epub3"
msgid "EPUB 3.0"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:140
+#: writerperfect/uiconfig/ui/exportepub.ui:139
msgctxt "exportepub|epub2"
msgid "EPUB 2.0"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:175
+#: writerperfect/uiconfig/ui/exportepub.ui:174
msgctxt "exportepub|splitft"
msgid "Split method:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:192
+#: writerperfect/uiconfig/ui/exportepub.ui:191
msgctxt "exportepub|splitpage"
msgid "Page break"
msgstr "Kytĩ rogue"
-#: writerperfect/uiconfig/ui/exportepub.ui:193
+#: writerperfect/uiconfig/ui/exportepub.ui:192
msgctxt "exportepub|splitheading"
msgid "Heading"
msgstr "Oñemoakãva"
-#: writerperfect/uiconfig/ui/exportepub.ui:228
+#: writerperfect/uiconfig/ui/exportepub.ui:227
msgctxt "exportepub|layoutft"
msgid "Layout method:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:245
+#: writerperfect/uiconfig/ui/exportepub.ui:244
msgctxt "exportepub|layoutreflowable"
msgid "Reflowable"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:246
+#: writerperfect/uiconfig/ui/exportepub.ui:245
msgctxt "exportepub|layoutfixed"
msgid "Fixed"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:281
+#: writerperfect/uiconfig/ui/exportepub.ui:280
msgctxt "exportepub|coverimageft"
msgid "Custom cover image:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:311
+#: writerperfect/uiconfig/ui/exportepub.ui:310
msgctxt "exportepub|coverbutton"
msgid "Browse..."
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:355
+#: writerperfect/uiconfig/ui/exportepub.ui:354
msgctxt "exportepub|mediadirft"
msgid "Custom media directory:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:385
+#: writerperfect/uiconfig/ui/exportepub.ui:384
msgctxt "exportepub|mediabutton"
msgid "Browse..."
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:429
+#: writerperfect/uiconfig/ui/exportepub.ui:428
msgctxt "exportepub|metadataft"
msgid "Metadata"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:470
+#: writerperfect/uiconfig/ui/exportepub.ui:468
msgctxt "exportepub|identifierft"
msgid "Identifier:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:485
+#: writerperfect/uiconfig/ui/exportepub.ui:483
msgctxt "exportepub|titleft"
msgid "Title:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:511
+#: writerperfect/uiconfig/ui/exportepub.ui:509
msgctxt "exportepub|authorft"
msgid "Author:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:537
+#: writerperfect/uiconfig/ui/exportepub.ui:535
msgctxt "exportepub|languageft"
msgid "Language:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:563
+#: writerperfect/uiconfig/ui/exportepub.ui:561
msgctxt "exportepub|dateft"
msgid "Date:"
msgstr ""
diff --git a/source/he/cui/messages.po b/source/he/cui/messages.po
index 32e0c3b190c..0f7c8f52864 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2018-04-30 07:59+0000\n"
"Last-Translator: Yaron Shahrabani <sh.yaron@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -10292,99 +10292,99 @@ msgctxt "positionsizedialog|PositionAndSizeDialog"
msgid "Position and Size"
msgstr "מיקום וגודל"
-#: cui/uiconfig/ui/positionsizedialog.ui:107
+#: cui/uiconfig/ui/positionsizedialog.ui:136
msgctxt "positionsizedialog|RID_SVXPAGE_POSITION_SIZE"
msgid "Position and Size"
msgstr "מיקום וגודל"
-#: cui/uiconfig/ui/positionsizedialog.ui:129
+#: cui/uiconfig/ui/positionsizedialog.ui:182
msgctxt "positionsizedialog|RID_SVXPAGE_SWPOSSIZE"
msgid "Position and Size"
msgstr "מיקום וגודל"
-#: cui/uiconfig/ui/positionsizedialog.ui:152
+#: cui/uiconfig/ui/positionsizedialog.ui:229
msgctxt "positionsizedialog|RID_SVXPAGE_ANGLE"
msgid "Rotation"
msgstr "סיבוב"
-#: cui/uiconfig/ui/positionsizedialog.ui:175
+#: cui/uiconfig/ui/positionsizedialog.ui:276
msgctxt "positionsizedialog|RID_SVXPAGE_SLANT"
msgid "Slant & Corner Radius"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:40
+#: cui/uiconfig/ui/possizetabpage.ui:61
#, fuzzy
msgctxt "possizetabpage|FT_POS_X"
msgid "Position _X:"
msgstr "מיקום"
-#: cui/uiconfig/ui/possizetabpage.ui:56
+#: cui/uiconfig/ui/possizetabpage.ui:75
#, fuzzy
msgctxt "possizetabpage|FT_POS_Y"
msgid "Position _Y:"
msgstr "מיקום"
-#: cui/uiconfig/ui/possizetabpage.ui:110
+#: cui/uiconfig/ui/possizetabpage.ui:128
msgctxt "possizetabpage|FT_POSREFERENCE"
msgid "_Base point:"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:148
+#: cui/uiconfig/ui/possizetabpage.ui:182
msgctxt "possizetabpage|label1"
msgid "Position"
msgstr "מיקום"
-#: cui/uiconfig/ui/possizetabpage.ui:190
+#: cui/uiconfig/ui/possizetabpage.ui:224
msgctxt "possizetabpage|FT_WIDTH"
msgid "Wi_dth:"
msgstr "_רוחב:"
-#: cui/uiconfig/ui/possizetabpage.ui:206
+#: cui/uiconfig/ui/possizetabpage.ui:238
msgctxt "possizetabpage|FT_HEIGHT"
msgid "H_eight:"
msgstr "_גובה:"
-#: cui/uiconfig/ui/possizetabpage.ui:247
+#: cui/uiconfig/ui/possizetabpage.ui:276
msgctxt "possizetabpage|CBX_SCALE"
msgid "_Keep ratio"
msgstr "שמירת י_חס"
-#: cui/uiconfig/ui/possizetabpage.ui:279
+#: cui/uiconfig/ui/possizetabpage.ui:307
msgctxt "possizetabpage|FT_SIZEREFERENCE"
msgid "Base _point:"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:317
+#: cui/uiconfig/ui/possizetabpage.ui:361
msgctxt "possizetabpage|label2"
msgid "Size"
msgstr "גודל"
-#: cui/uiconfig/ui/possizetabpage.ui:356
+#: cui/uiconfig/ui/possizetabpage.ui:401
msgctxt "possizetabpage|TSB_POSPROTECT"
msgid "Positio_n"
msgstr "מי_קום"
-#: cui/uiconfig/ui/possizetabpage.ui:373
+#: cui/uiconfig/ui/possizetabpage.ui:418
msgctxt "possizetabpage|TSB_SIZEPROTECT"
msgid "_Size"
msgstr "גודל"
-#: cui/uiconfig/ui/possizetabpage.ui:397
+#: cui/uiconfig/ui/possizetabpage.ui:441
msgctxt "possizetabpage|label3"
msgid "Protect"
msgstr "הגנה"
-#: cui/uiconfig/ui/possizetabpage.ui:430
+#: cui/uiconfig/ui/possizetabpage.ui:475
msgctxt "possizetabpage|TSB_AUTOGROW_WIDTH"
msgid "_Fit width to text"
msgstr "התאמת ה_רוחב לטקסט"
-#: cui/uiconfig/ui/possizetabpage.ui:447
+#: cui/uiconfig/ui/possizetabpage.ui:492
msgctxt "possizetabpage|TSB_AUTOGROW_HEIGHT"
msgid "Fit _height to text"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:471
+#: cui/uiconfig/ui/possizetabpage.ui:515
msgctxt "possizetabpage|label4"
msgid "Adapt"
msgstr ""
@@ -10596,52 +10596,52 @@ msgctxt "recordnumberdialog|label2"
msgid "go to record"
msgstr ""
-#: cui/uiconfig/ui/rotationtabpage.ui:52
+#: cui/uiconfig/ui/rotationtabpage.ui:56
#, fuzzy
msgctxt "rotationtabpage|FT_POS_X"
msgid "Position _X:"
msgstr "מיקום"
-#: cui/uiconfig/ui/rotationtabpage.ui:66
+#: cui/uiconfig/ui/rotationtabpage.ui:70
#, fuzzy
msgctxt "rotationtabpage|FT_POS_Y"
msgid "Position _Y:"
msgstr "מיקום"
-#: cui/uiconfig/ui/rotationtabpage.ui:116
+#: cui/uiconfig/ui/rotationtabpage.ui:123
#, fuzzy
msgctxt "rotationtabpage|FT_POSPRESETS"
msgid "_Default settings:"
msgstr "הגדרות בררת מחדל"
-#: cui/uiconfig/ui/rotationtabpage.ui:130
+#: cui/uiconfig/ui/rotationtabpage.ui:151
msgctxt "rotationtabpage|CTL_RECT|tooltip_text"
msgid "Rotation point"
msgstr ""
-#: cui/uiconfig/ui/rotationtabpage.ui:155
+#: cui/uiconfig/ui/rotationtabpage.ui:178
msgctxt "rotationtabpage|label1"
msgid "Pivot Point"
msgstr ""
-#: cui/uiconfig/ui/rotationtabpage.ui:197
+#: cui/uiconfig/ui/rotationtabpage.ui:220
#, fuzzy
msgctxt "rotationtabpage|FT_ANGLE"
msgid "_Angle:"
msgstr "זווית"
-#: cui/uiconfig/ui/rotationtabpage.ui:238
+#: cui/uiconfig/ui/rotationtabpage.ui:263
#, fuzzy
msgctxt "rotationtabpage|FT_ANGLEPRESETS"
msgid "Default _settings:"
msgstr "הגדרות בררת מחדל"
-#: cui/uiconfig/ui/rotationtabpage.ui:252
+#: cui/uiconfig/ui/rotationtabpage.ui:287
msgctxt "rotationtabpage|CTL_ANGLE|tooltip_text"
msgid "Rotation Angle"
msgstr "זווית סיבוב"
-#: cui/uiconfig/ui/rotationtabpage.ui:277
+#: cui/uiconfig/ui/rotationtabpage.ui:314
msgctxt "rotationtabpage|label2"
msgid "Rotation Angle"
msgstr "זווית סיבוב"
@@ -11034,56 +11034,56 @@ msgctxt "similaritysearchdialog|relaxbox"
msgid "_Combine"
msgstr "שילוב"
-#: cui/uiconfig/ui/slantcornertabpage.ui:50
+#: cui/uiconfig/ui/slantcornertabpage.ui:70
msgctxt "slantcornertabpage|label5"
msgid "_X:"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:88
+#: cui/uiconfig/ui/slantcornertabpage.ui:110
msgctxt "slantcornertabpage|label6"
msgid "_Y:"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:125
+#: cui/uiconfig/ui/slantcornertabpage.ui:149
msgctxt "slantcornertabpage|label3"
msgid "Control Point 1"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:159
+#: cui/uiconfig/ui/slantcornertabpage.ui:183
#, fuzzy
msgctxt "slantcornertabpage|FT_RADIUS"
msgid "_Radius:"
msgstr "רדיוס"
-#: cui/uiconfig/ui/slantcornertabpage.ui:189
+#: cui/uiconfig/ui/slantcornertabpage.ui:214
#, fuzzy
msgctxt "slantcornertabpage|label1"
msgid "Corner Radius"
msgstr "רדיוס פינה"
-#: cui/uiconfig/ui/slantcornertabpage.ui:223
+#: cui/uiconfig/ui/slantcornertabpage.ui:248
#, fuzzy
msgctxt "slantcornertabpage|FT_ANGLE"
msgid "_Angle:"
msgstr "זווית"
-#: cui/uiconfig/ui/slantcornertabpage.ui:253
+#: cui/uiconfig/ui/slantcornertabpage.ui:279
#, fuzzy
msgctxt "slantcornertabpage|label2"
msgid "Slant"
msgstr "הטייה"
-#: cui/uiconfig/ui/slantcornertabpage.ui:294
+#: cui/uiconfig/ui/slantcornertabpage.ui:320
msgctxt "slantcornertabpage|label4"
msgid "_X:"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:332
+#: cui/uiconfig/ui/slantcornertabpage.ui:360
msgctxt "slantcornertabpage|label7"
msgid "_Y:"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:369
+#: cui/uiconfig/ui/slantcornertabpage.ui:399
msgctxt "slantcornertabpage|label8"
msgid "Control Point 2"
msgstr ""
@@ -11372,117 +11372,117 @@ msgctxt "storedwebconnectiondialog|change"
msgid "_Change Password..."
msgstr "ה_חלפת הססמה…"
-#: cui/uiconfig/ui/swpossizepage.ui:74
+#: cui/uiconfig/ui/swpossizepage.ui:85
msgctxt "swpossizepage|widthft"
msgid "_Width:"
msgstr "רוחב"
-#: cui/uiconfig/ui/swpossizepage.ui:111
+#: cui/uiconfig/ui/swpossizepage.ui:123
msgctxt "swpossizepage|heightft"
msgid "H_eight:"
msgstr "_גובה:"
-#: cui/uiconfig/ui/swpossizepage.ui:128
+#: cui/uiconfig/ui/swpossizepage.ui:141
#, fuzzy
msgctxt "swpossizepage|ratio"
msgid "_Keep ratio"
msgstr "שמירת יחס"
-#: cui/uiconfig/ui/swpossizepage.ui:149
+#: cui/uiconfig/ui/swpossizepage.ui:162
msgctxt "swpossizepage|label2"
msgid "Size"
msgstr "גודל"
-#: cui/uiconfig/ui/swpossizepage.ui:205
+#: cui/uiconfig/ui/swpossizepage.ui:218
msgctxt "swpossizepage|topage"
msgid "To _page"
msgstr "ל_עמוד"
-#: cui/uiconfig/ui/swpossizepage.ui:222
+#: cui/uiconfig/ui/swpossizepage.ui:234
msgctxt "swpossizepage|topara"
msgid "To paragrap_h"
msgstr "ל_פסקה"
-#: cui/uiconfig/ui/swpossizepage.ui:238
+#: cui/uiconfig/ui/swpossizepage.ui:250
msgctxt "swpossizepage|tochar"
msgid "To cha_racter"
msgstr "ל_תו"
-#: cui/uiconfig/ui/swpossizepage.ui:254
+#: cui/uiconfig/ui/swpossizepage.ui:266
msgctxt "swpossizepage|aschar"
msgid "_As character"
msgstr "כ_תו"
-#: cui/uiconfig/ui/swpossizepage.ui:270
+#: cui/uiconfig/ui/swpossizepage.ui:282
msgctxt "swpossizepage|toframe"
msgid "To _frame"
msgstr "למ_סגרת"
-#: cui/uiconfig/ui/swpossizepage.ui:292
+#: cui/uiconfig/ui/swpossizepage.ui:304
msgctxt "swpossizepage|label1"
msgid "Anchor"
msgstr "עוגן"
-#: cui/uiconfig/ui/swpossizepage.ui:333
+#: cui/uiconfig/ui/swpossizepage.ui:344
#, fuzzy
msgctxt "swpossizepage|horiposft"
msgid "Hori_zontal:"
msgstr "אופקי"
-#: cui/uiconfig/ui/swpossizepage.ui:347
+#: cui/uiconfig/ui/swpossizepage.ui:358
msgctxt "swpossizepage|horibyft"
msgid "b_y:"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:361
+#: cui/uiconfig/ui/swpossizepage.ui:372
msgctxt "swpossizepage|vertbyft"
msgid "_by:"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:375
+#: cui/uiconfig/ui/swpossizepage.ui:386
#, fuzzy
msgctxt "swpossizepage|horitoft"
msgid "_to:"
msgstr "לכבוד"
-#: cui/uiconfig/ui/swpossizepage.ui:421
+#: cui/uiconfig/ui/swpossizepage.ui:433
#, fuzzy
msgctxt "swpossizepage|vertposft"
msgid "_Vertical:"
msgstr "אנכי"
-#: cui/uiconfig/ui/swpossizepage.ui:457
+#: cui/uiconfig/ui/swpossizepage.ui:470
msgctxt "swpossizepage|verttoft"
msgid "t_o:"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:478
+#: cui/uiconfig/ui/swpossizepage.ui:492
msgctxt "swpossizepage|mirror"
msgid "_Mirror on even pages"
msgstr "_שיקוף בעמודים זוגיים"
-#: cui/uiconfig/ui/swpossizepage.ui:495
+#: cui/uiconfig/ui/swpossizepage.ui:509
#, fuzzy
msgctxt "swpossizepage|followtextflow"
msgid "Follow te_xt flow"
msgstr "לפי זרימת הטקסט"
-#: cui/uiconfig/ui/swpossizepage.ui:518
+#: cui/uiconfig/ui/swpossizepage.ui:532
msgctxt "swpossizepage|label11"
msgid "Position"
msgstr "מיקום"
-#: cui/uiconfig/ui/swpossizepage.ui:549
+#: cui/uiconfig/ui/swpossizepage.ui:563
msgctxt "swpossizepage|pos"
msgid "Positio_n"
msgstr "מי_קום"
-#: cui/uiconfig/ui/swpossizepage.ui:565
+#: cui/uiconfig/ui/swpossizepage.ui:579
msgctxt "swpossizepage|size"
msgid "_Size"
msgstr "גודל"
-#: cui/uiconfig/ui/swpossizepage.ui:587
+#: cui/uiconfig/ui/swpossizepage.ui:601
msgctxt "swpossizepage|label3"
msgid "Protect"
msgstr "הגנה"
@@ -11685,13 +11685,13 @@ msgctxt "textattrtabpage|label2"
msgid "Spacing to Borders"
msgstr ""
-#: cui/uiconfig/ui/textattrtabpage.ui:425
+#: cui/uiconfig/ui/textattrtabpage.ui:423
#, fuzzy
msgctxt "textattrtabpage|TSB_FULL_WIDTH"
msgid "Full _width"
msgstr "רוחב מלא"
-#: cui/uiconfig/ui/textattrtabpage.ui:448
+#: cui/uiconfig/ui/textattrtabpage.ui:446
msgctxt "textattrtabpage|label3"
msgid "Text Anchor"
msgstr "עוגן טקסט"
diff --git a/source/he/filter/source/config/fragments/filters.po b/source/he/filter/source/config/fragments/filters.po
index 927f139cec9..2e891367bce 100644
--- a/source/he/filter/source/config/fragments/filters.po
+++ b/source/he/filter/source/config/fragments/filters.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-16 16:54+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2017-10-26 14:54+0000\n"
"Last-Translator: Yaron Shahrabani <sh.yaron@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -465,8 +465,8 @@ msgctxt ""
"MS Word 2003 XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Word 2003 XML"
-msgstr "‏‪Microsoft Word 2003 XML"
+msgid "Word 2003 XML"
+msgstr ""
#: MS_Word_2007_XML.xcu
msgctxt ""
@@ -1293,7 +1293,7 @@ msgctxt ""
"Calc MS Excel 2007 VBA XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Excel 2007-2016 XML (macro enabled)"
+msgid "Excel 2007–2019 (macro-enabled)"
msgstr ""
#: calc_MS_Excel_2007_XML.xcu
diff --git a/source/he/filter/source/config/fragments/types.po b/source/he/filter/source/config/fragments/types.po
index 242009f8523..86f91aeaf3e 100644
--- a/source/he/filter/source/config/fragments/types.po
+++ b/source/he/filter/source/config/fragments/types.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-08 15:11+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2017-10-26 15:02+0000\n"
"Last-Translator: Yaron Shahrabani <sh.yaron@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -294,8 +294,8 @@ msgctxt ""
"writer_MS_Word_2003_XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Word 2003 XML"
-msgstr "Microsoft Word 2003 XML"
+msgid "Word 2003 XML"
+msgstr ""
#: writer_MS_Word_2007_XML.xcu
msgctxt ""
diff --git a/source/he/fpicker/messages.po b/source/he/fpicker/messages.po
index bf45180589b..c21aceeded8 100644
--- a/source/he/fpicker/messages.po
+++ b/source/he/fpicker/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2017-10-26 11:42+0000\n"
"Last-Translator: Yaron Shahrabani <sh.yaron@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -273,13 +273,13 @@ msgstr "הצפנה עם מפתח GPG"
#: fpicker/uiconfig/ui/foldernamedialog.ui:8
msgctxt "foldernamedialog|FolderNameDialog"
-msgid "Folder Name ?"
-msgstr "שם התיקייה ?"
+msgid "Folder Name"
+msgstr ""
#: fpicker/uiconfig/ui/foldernamedialog.ui:91
msgctxt "foldernamedialog|label2"
-msgid "Na_me"
-msgstr "_שם"
+msgid "Na_me:"
+msgstr ""
#: fpicker/uiconfig/ui/foldernamedialog.ui:122
msgctxt "foldernamedialog|label1"
diff --git a/source/he/helpcontent2/source/text/shared/00.po b/source/he/helpcontent2/source/text/shared/00.po
index 5f8126e584b..dd73a92bb24 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2016-05-24 11:55+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -397,15 +397,15 @@ msgctxt ""
"00000001.xhp\n"
"hd_id3149670\n"
"help.text"
-msgid "Back"
-msgstr "Back"
+msgid "Reset"
+msgstr ""
#: 00000001.xhp
msgctxt ""
"00000001.xhp\n"
"par_id3145068\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optionsdialog/revert\">Resets modified values back to the $[officename] default values.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optionsdialog/revert\">Resets changes made to the current tab to those applicable when this dialog was opened.</ahelp>"
msgstr ""
#: 00000001.xhp
@@ -552,6 +552,54 @@ msgctxt ""
msgid "<variable id=\"ShiftF1\">Press Shift+F1 and point to a control to learn more about that control.</variable>"
msgstr ""
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"hd_id631527692833772\n"
+"help.text"
+msgid "Options dialog buttons"
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"hd_id831527692839432\n"
+"help.text"
+msgid "OK"
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"par_id471527692844934\n"
+"help.text"
+msgid "Save the changes in the page and close the Options dialog."
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"hd_id261527692850720\n"
+"help.text"
+msgid "Cancel"
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"par_id571527692855533\n"
+"help.text"
+msgid "Close the Options dialog and discard all changes done."
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"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 Options dialog."
+msgstr ""
+
#: 00000002.xhp
msgctxt ""
"00000002.xhp\n"
@@ -11125,7 +11173,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3151293\n"
"help.text"
-msgid "<variable id=\"linienstile\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Line Styles</emph> tab </variable>"
+msgid "<variable id=\"linienstile\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Line Styles</emph> tab</variable>"
msgstr ""
#: 00040502.xhp
@@ -11133,7 +11181,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3149317\n"
"help.text"
-msgid "<variable id=\"linienenden\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Arrow Styles</emph> tab </variable>"
+msgid "<variable id=\"linienenden\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Arrow Styles</emph> tab</variable>"
msgstr ""
#: 00040502.xhp
@@ -11173,7 +11221,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3154948\n"
"help.text"
-msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Area</emph> tab"
+msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Area</emph> tab."
msgstr ""
#: 00040502.xhp
@@ -11181,7 +11229,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3145607\n"
"help.text"
-msgid "Choose <emph>View - Styles</emph> - open context menu and choose <emph>Modify/New - Area</emph> tab (presentation documents)"
+msgid "Choose <emph>View - Styles</emph> - open context menu and choose <emph>Modify/New - Area</emph> tab (presentation documents)."
msgstr ""
#: 00040502.xhp
@@ -11189,47 +11237,47 @@ msgctxt ""
"00040502.xhp\n"
"par_id3152922\n"
"help.text"
-msgid "Choose <emph>Format - Title - Area</emph> tab (chart documents)"
-msgstr "Choose \\<emph\\>Format - Title - Area\\</emph\\> tab (chart documents)"
+msgid "Choose <emph>Format - Title - Area</emph> tab (chart documents)."
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3157894\n"
"help.text"
-msgid "Choose <emph>Format - Legend - Area</emph> tab (chart documents)"
-msgstr "Choose \\<emph\\>Format - Legend - Area\\</emph\\> tab (chart documents)"
+msgid "Choose <emph>Format - Legend - Area</emph> tab (chart documents)."
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3144444\n"
"help.text"
-msgid "Choose <emph>Format - Chart Wall - Area</emph> tab (chart documents)"
-msgstr "Choose \\<emph\\>Format - Chart Wall - Area\\</emph\\> tab (chart documents)"
+msgid "Choose <emph>Format - Chart Wall - Area</emph> tab (chart documents)."
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3156543\n"
"help.text"
-msgid "Choose <emph>Format - Chart Floor - Area</emph> tab (chart documents)"
-msgstr "Choose \\<emph\\>Format - Chart Floor - Area\\</emph\\> tab (chart documents)"
+msgid "Choose <emph>Format - Chart Floor - Area</emph> tab (chart documents)."
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3150685\n"
"help.text"
-msgid "Choose <emph>Format - Chart Area - Area</emph> tab (chart documents)"
-msgstr "Choose \\<emph\\>Format - Chart Area - Area\\</emph\\> tab (chart documents)"
+msgid "Choose <emph>Format - Chart Area - Area</emph> tab (chart documents)."
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3149664\n"
"help.text"
-msgid "Choose <emph>Slide - Properties - Background</emph> tab (in $[officename] Impress)"
+msgid "Choose <emph>Slide - Properties - Background</emph> tab (in $[officename] Impress)."
msgstr ""
#: 00040502.xhp
@@ -11237,7 +11285,15 @@ msgctxt ""
"00040502.xhp\n"
"par_id9149694\n"
"help.text"
-msgid "Choose <emph>Page - Properties - Background</emph> tab (in $[officename] Draw)"
+msgid "Choose <emph>Page - Properties - Background</emph> tab (in $[officename] Draw)."
+msgstr ""
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id841527083135387\n"
+"help.text"
+msgid "Choose <emph>Table - Properties - Background</emph> tab."
msgstr ""
#: 00040502.xhp
@@ -11349,7 +11405,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3150011\n"
"help.text"
-msgid "<variable id=\"schatte\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Shadow</emph> tab </variable>"
+msgid "<variable id=\"schatte\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Shadow</emph> tab</variable>"
msgstr ""
#: 00040502.xhp
@@ -11357,7 +11413,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3147441\n"
"help.text"
-msgid "<variable id=\"verlauf\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Gradients</emph> tab </variable>"
+msgid "<variable id=\"verlauf\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Gradients</emph> tab</variable>"
msgstr ""
#: 00040502.xhp
@@ -11365,7 +11421,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3155308\n"
"help.text"
-msgid "<variable id=\"schraffur\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Hatching</emph> tab </variable>"
+msgid "<variable id=\"schraffur\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Hatching</emph> tab</variable>"
msgstr ""
#: 00040502.xhp
@@ -11373,7 +11429,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3145800\n"
"help.text"
-msgid "<variable id=\"bitmap\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Bitmaps</emph> tab </variable>"
+msgid "<variable id=\"bitmap\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Bitmaps</emph> tab</variable>"
msgstr ""
#: 00040502.xhp
@@ -11413,7 +11469,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3156286\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F4 key </caseinline><caseinline select=\"IMPRESS\">F4 key </caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F4 key</caseinline><caseinline select=\"IMPRESS\">F4 key</caseinline></switchinline>"
msgstr ""
#: 00040502.xhp
@@ -11453,7 +11509,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3153099\n"
"help.text"
-msgid "<variable id=\"position2\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Position and Size</emph> tab </variable>"
+msgid "<variable id=\"position2\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Position and Size</emph> tab</variable>"
msgstr ""
#: 00040502.xhp
@@ -11485,7 +11541,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3145666\n"
"help.text"
-msgid "<variable id=\"ecke\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Slant & Corner Radius</emph> tab </variable>"
+msgid "<variable id=\"ecke\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Slant & Corner Radius</emph> tab</variable>"
msgstr ""
#: 00040502.xhp
@@ -11493,7 +11549,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3146081\n"
"help.text"
-msgid "<variable id=\"legende\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Callout</emph> tab (only for textbox callouts, not for custom shapes callouts) </variable>"
+msgid "<variable id=\"legende\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Callout</emph> tab (only for textbox callouts, not for custom shapes callouts)</variable>"
msgstr ""
#: 00040502.xhp
@@ -11517,7 +11573,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3149019\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F8 key </caseinline><caseinline select=\"IMPRESS\">F8 key </caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F8 key</caseinline><caseinline select=\"IMPRESS\">F8 key</caseinline></switchinline>"
msgstr ""
#: 00040502.xhp
@@ -11805,7 +11861,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3153076\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Align Center Horizontally </caseinline><defaultinline>Centered</defaultinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Align Center Horizontally</caseinline><defaultinline>Centered</defaultinline></switchinline>"
msgstr ""
#: 00040502.xhp
@@ -11845,7 +11901,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3150527\n"
"help.text"
-msgid "<variable id=\"font\">Click <emph>Fontwork</emph> icon on <emph>Drawing</emph> bar </variable>"
+msgid "<variable id=\"font\">Click <emph>Fontwork</emph> icon on <emph>Drawing</emph> bar</variable>"
msgstr ""
#: 00040502.xhp
diff --git a/source/he/helpcontent2/source/text/shared/01.po b/source/he/helpcontent2/source/text/shared/01.po
index 1292d044818..1d398093787 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: 2018-05-23 23:19+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2016-12-22 18:13+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -23587,6 +23587,22 @@ msgstr ""
#: 05210100.xhp
msgctxt ""
"05210100.xhp\n"
+"hd_id471527077476052\n"
+"help.text"
+msgid "Cell, Row or Table background selector"
+msgstr ""
+
+#: 05210100.xhp
+msgctxt ""
+"05210100.xhp\n"
+"par_id661527077493366\n"
+"help.text"
+msgid "Select the table object which background area is to be filled."
+msgstr ""
+
+#: 05210100.xhp
+msgctxt ""
+"05210100.xhp\n"
"hd_id3147373\n"
"help.text"
msgid "None"
@@ -31205,23 +31221,23 @@ msgctxt ""
"06040100.xhp\n"
"hd_id3145072\n"
"help.text"
-msgid "Automatic *bold* and _underline_"
-msgstr "Automatic *bold* and _underline_"
+msgid "Automatic *bold*, /italic/, -strikeout- and _underline_"
+msgstr ""
#: 06040100.xhp
msgctxt ""
"06040100.xhp\n"
"par_id3153577\n"
"help.text"
-msgid "Automatically applies bold formatting to text enclosed by asterisks (*), and underline to text enclosed by underscores ( _ ), for example, *bold*. The asterisks and underscores are not displayed after the formatting is applied."
-msgstr "Automatically applies bold formatting to text enclosed by asterisks (*), and underline to text enclosed by underscores ( _ ), for example, *bold*. The asterisks and underscores are not displayed after the formatting is applied."
+msgid "Automatically applies bold, italic, strikethrough or underline formatting to text enclosed by asterisks (*), slashes (/), hyphens (-), and underscores (_), respectively. These characters disappear after the formatting is applied."
+msgstr ""
#: 06040100.xhp
msgctxt ""
"06040100.xhp\n"
"par_id3153127\n"
"help.text"
-msgid "This feature does not work if the formatting characters * or _ are entered with an <link href=\"text/shared/00/00000005.xhp#IME\" name=\"Input Method Editor\">Input Method Editor</link>."
+msgid "This feature does not work if the formatting characters <item type=\"literal\">* / - _</item> are entered with an <link href=\"text/shared/00/00000005.xhp#IME\" name=\"Input Method Editor\">Input Method Editor</link>."
msgstr ""
#: 06040100.xhp
diff --git a/source/he/helpcontent2/source/text/shared/optionen.po b/source/he/helpcontent2/source/text/shared/optionen.po
index bba27f6e6e6..8684ac4214a 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: 2018-05-08 15:10+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2016-07-06 02:30+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -83,6 +83,22 @@ msgstr ""
#: 01000000.xhp
msgctxt ""
"01000000.xhp\n"
+"hd_id551527692881035\n"
+"help.text"
+msgid "Help"
+msgstr ""
+
+#: 01000000.xhp
+msgctxt ""
+"01000000.xhp\n"
+"par_id831527692885723\n"
+"help.text"
+msgid "Opens the help contents for the Options page displayed."
+msgstr ""
+
+#: 01000000.xhp
+msgctxt ""
+"01000000.xhp\n"
"hd_id3159149\n"
"help.text"
msgid "<link href=\"text/shared/optionen/01010000.xhp\" name=\"$[officename]\">%PRODUCTNAME</link>"
@@ -4565,8 +4581,8 @@ msgctxt ""
"01030300.xhp\n"
"par_idN10640\n"
"help.text"
-msgid "Options"
-msgstr "Options"
+msgid "Security Options and Warnings"
+msgstr ""
#: 01030300.xhp
msgctxt ""
@@ -4597,7 +4613,7 @@ msgctxt ""
"01030300.xhp\n"
"hd_id3168736\n"
"help.text"
-msgid "Persistently save passwords protected by a master password"
+msgid "Persistently save passwords for web connections"
msgstr ""
#: 01030300.xhp
@@ -4613,6 +4629,22 @@ msgctxt ""
"01030300.xhp\n"
"hd_id3901791\n"
"help.text"
+msgid "Protected by a master password (recommended)"
+msgstr ""
+
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"par_id31527711486980\n"
+"help.text"
+msgid "Check to enable all connections' passwords to be protected by a master password."
+msgstr ""
+
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"hd_id141527711343312\n"
+"help.text"
msgid "Master Password"
msgstr ""
@@ -13733,7 +13765,7 @@ msgctxt ""
"java.xhp\n"
"hd_id3148618\n"
"help.text"
-msgid "Optional (unstable) options"
+msgid "Optional Features"
msgstr ""
#: java.xhp
@@ -13749,7 +13781,7 @@ msgctxt ""
"java.xhp\n"
"par_id3156344\n"
"help.text"
-msgid "It enables features that are not yet complete or contain known bugs. The list of these features is different version by version, or even it can be empty."
+msgid "Enables features that are not yet complete or may contain known bugs. The list of these features is different version by version, or even it can be empty."
msgstr ""
#: java.xhp
@@ -13765,7 +13797,7 @@ msgctxt ""
"java.xhp\n"
"par_id3156345\n"
"help.text"
-msgid "It enables macro recording, so the <link href=\"text/shared/guide/macro_recording.xhp\" name=\"Tools - Macros - Record Macro\"><item type=\"menuitem\">Tools - Macros - Record Macro</item></link> menu item will be available."
+msgid "Enables macro recording. The <link href=\"text/shared/guide/macro_recording.xhp\" name=\"Tools - Macros - Record Macro\"><item type=\"menuitem\">Tools - Macros - Record Macro</item></link> menu item is available."
msgstr ""
#: java.xhp
diff --git a/source/he/officecfg/registry/data/org/openoffice/Office/UI.po b/source/he/officecfg/registry/data/org/openoffice/Office/UI.po
index 53554ca2c8e..cee7ac74ebf 100644
--- a/source/he/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/he/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-22 13:17+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2017-10-26 14:57+0000\n"
"Last-Translator: Yaron Shahrabani <sh.yaron@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -26868,8 +26868,8 @@ msgctxt ""
"..WriterCommands.UserInterface.Commands..uno:TextAttributes\n"
"Label\n"
"value.text"
-msgid "Text Attributes"
-msgstr "מאפייני טקסט"
+msgid "Text Attributes..."
+msgstr ""
#: WriterCommands.xcu
msgctxt ""
diff --git a/source/he/readlicense_oo/docs.po b/source/he/readlicense_oo/docs.po
index aabf0444072..74484e042e7 100644
--- a/source/he/readlicense_oo/docs.po
+++ b/source/he/readlicense_oo/docs.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-04-17 15:54+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2017-10-26 11:23+0000\n"
"Last-Translator: Yaron Shahrabani <sh.yaron@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -117,8 +117,8 @@ msgctxt ""
"readme.xrm\n"
"macxiOSX\n"
"readmeitem.text"
-msgid "MacOSX 10.8 (Mountain Lion) or higher"
-msgstr "MacOSX 10.8 (Mountain Lion) ומעלה"
+msgid "MacOSX 10.9 (Mavericks) or higher"
+msgstr ""
#: readme.xrm
msgctxt ""
diff --git a/source/he/sc/messages.po b/source/he/sc/messages.po
index c3392f40bd3..6ccf03a2904 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-12 14:40+0200\n"
"PO-Revision-Date: 2017-10-26 14:59+0000\n"
"Last-Translator: Yaron Shahrabani <sh.yaron@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1872,17 +1872,22 @@ msgid "Nested arrays are not supported."
msgstr "מערכים מקוננים לא נתמכים."
#: sc/inc/globstr.hrc:390
+msgctxt "STR_ERR_LONG_BAD_ARRAY_CONTENT"
+msgid "Unsupported inline array content."
+msgstr ""
+
+#: sc/inc/globstr.hrc:391
#, fuzzy
msgctxt "STR_UNDO_TEXTTOCOLUMNS"
msgid "Text to Columns"
msgstr "מטקסט לעמודות"
-#: sc/inc/globstr.hrc:391
+#: sc/inc/globstr.hrc:392
msgctxt "STR_DOC_UPDATED"
msgid "Your spreadsheet has been updated with changes saved by other users."
msgstr "הגיליון האלקטרוני עודכן עם השינויים של השותפים האחרים למסמך."
-#: sc/inc/globstr.hrc:392
+#: sc/inc/globstr.hrc:393
msgctxt "STR_DOC_WILLBESAVED"
msgid ""
"The spreadsheet must be saved now to activate sharing mode.\n"
@@ -1893,7 +1898,7 @@ msgstr ""
"\n"
"האם להמשיך?"
-#: sc/inc/globstr.hrc:393
+#: sc/inc/globstr.hrc:394
msgctxt "STR_DOC_WILLNOTBESAVED"
msgid ""
"Already resolved merge conflicts will be lost and your changes to the shared spreadsheet will not be saved.\n"
@@ -1904,7 +1909,7 @@ msgstr ""
"\n"
"האם להמשיך?"
-#: sc/inc/globstr.hrc:394
+#: sc/inc/globstr.hrc:395
msgctxt "STR_DOC_DISABLESHARED"
msgid ""
"Disabling shared mode of a spreadsheet hinders all other users of the shared spreadsheet to merge back their work.\n"
@@ -1915,7 +1920,7 @@ msgstr ""
"\n"
"האם להמשיך?"
-#: sc/inc/globstr.hrc:395
+#: sc/inc/globstr.hrc:396
msgctxt "STR_DOC_NOLONGERSHARED"
msgid ""
"This spreadsheet is no longer in shared mode.\n"
@@ -1926,7 +1931,7 @@ msgstr ""
"\n"
"יש לשמור את הגיליון אהלקטרוני לקובץ חדש ולמזג את שינוייך לגיליון אלקטרוני באופן ידני."
-#: sc/inc/globstr.hrc:396
+#: sc/inc/globstr.hrc:397
msgctxt "STR_FILE_LOCKED_TRY_LATER"
msgid ""
"The shared spreadsheet file is locked due to a merge in progress by user: '%1'\n"
@@ -1937,7 +1942,7 @@ msgstr ""
"\n"
"אין אפשרות הוציא את הגיליון האלקטרוני משיתוף. תנסה לשמור מאוחר יותר."
-#: sc/inc/globstr.hrc:397
+#: sc/inc/globstr.hrc:398
msgctxt "STR_FILE_LOCKED_SAVE_LATER"
msgid ""
"The shared spreadsheet file is locked due to a merge in progress by user: '%1'\n"
@@ -1948,147 +1953,147 @@ msgstr ""
"\n"
"תנסה לשמור מאוחר יותר."
-#: sc/inc/globstr.hrc:398
+#: sc/inc/globstr.hrc:399
msgctxt "STR_UNKNOWN_USER"
msgid "Unknown User"
msgstr "משתמש לא מזוהה"
-#: sc/inc/globstr.hrc:399
+#: sc/inc/globstr.hrc:400
msgctxt "STR_SHAPE_AUTOSHAPE"
msgid "AutoShape"
msgstr "צורה אוטומטית"
-#: sc/inc/globstr.hrc:400
+#: sc/inc/globstr.hrc:401
msgctxt "STR_SHAPE_RECTANGLE"
msgid "Rectangle"
msgstr "מרובע"
-#: sc/inc/globstr.hrc:401
+#: sc/inc/globstr.hrc:402
msgctxt "STR_SHAPE_LINE"
msgid "Line"
msgstr "קו"
-#: sc/inc/globstr.hrc:402
+#: sc/inc/globstr.hrc:403
msgctxt "STR_SHAPE_OVAL"
msgid "Oval"
msgstr "מעגל"
-#: sc/inc/globstr.hrc:403
+#: sc/inc/globstr.hrc:404
msgctxt "STR_FORM_BUTTON"
msgid "Button"
msgstr "כפתור"
-#: sc/inc/globstr.hrc:404
+#: sc/inc/globstr.hrc:405
msgctxt "STR_FORM_CHECKBOX"
msgid "Check Box"
msgstr "תיבת סימון"
-#: sc/inc/globstr.hrc:405
+#: sc/inc/globstr.hrc:406
msgctxt "STR_FORM_OPTIONBUTTON"
msgid "Option Button"
msgstr "כפתור בחירה"
-#: sc/inc/globstr.hrc:406
+#: sc/inc/globstr.hrc:407
msgctxt "STR_FORM_LABEL"
msgid "Label"
msgstr "תווית"
-#: sc/inc/globstr.hrc:407
+#: sc/inc/globstr.hrc:408
msgctxt "STR_FORM_LISTBOX"
msgid "List Box"
msgstr "תיבת רשימה"
-#: sc/inc/globstr.hrc:408
+#: sc/inc/globstr.hrc:409
msgctxt "STR_FORM_GROUPBOX"
msgid "Group Box"
msgstr "תיבת קיבוץ"
-#: sc/inc/globstr.hrc:409
+#: sc/inc/globstr.hrc:410
msgctxt "STR_FORM_DROPDOWN"
msgid "Drop Down"
msgstr "רשימה נגללת"
-#: sc/inc/globstr.hrc:410
+#: sc/inc/globstr.hrc:411
msgctxt "STR_FORM_SPINNER"
msgid "Spinner"
msgstr "גלגל המתנה"
-#: sc/inc/globstr.hrc:411
+#: sc/inc/globstr.hrc:412
msgctxt "STR_FORM_SCROLLBAR"
msgid "Scroll Bar"
msgstr "סרגל גלילה"
-#: sc/inc/globstr.hrc:412
+#: sc/inc/globstr.hrc:413
msgctxt "STR_STYLE_FAMILY_CELL"
msgid "Cell Styles"
msgstr "סגנון תא"
-#: sc/inc/globstr.hrc:413
+#: sc/inc/globstr.hrc:414
msgctxt "STR_STYLE_FAMILY_PAGE"
msgid "Page Styles"
msgstr "סגנונות עמוד"
-#: sc/inc/globstr.hrc:414
+#: sc/inc/globstr.hrc:415
msgctxt "STR_ERR_DATAPILOTSOURCE"
msgid "Pivot table source data is invalid."
msgstr "מקור הנתונים של טבלת הצר אינו חוקי."
-#: sc/inc/globstr.hrc:415
+#: sc/inc/globstr.hrc:416
msgctxt "STR_OPTIONS_WARN_SEPARATORS"
msgid "Because the current formula separator settings conflict with the locale, the formula separators have been reset to their default values."
msgstr "כיוון שהגדרות הפרדת הנוסחאות הנוכחיות מתנגשות עם ההגדרות האזוריות, מפרידי הנוסחאות אופסו לערכי בררת המחדל שלהם."
-#: sc/inc/globstr.hrc:416
+#: sc/inc/globstr.hrc:417
msgctxt "STR_UNDO_INSERT_CURRENT_DATE"
msgid "Insert Current Date"
msgstr "הוספת התאריך הנוכחי"
-#: sc/inc/globstr.hrc:417
+#: sc/inc/globstr.hrc:418
msgctxt "STR_UNDO_INSERT_CURRENT_TIME"
msgid "Insert Current Time"
msgstr "הוספת השעה הנוכחית"
-#: sc/inc/globstr.hrc:418
+#: sc/inc/globstr.hrc:419
msgctxt "STR_MANAGE_NAMES"
msgid "Manage Names..."
msgstr "ניהול שמות..."
-#: sc/inc/globstr.hrc:419
+#: sc/inc/globstr.hrc:420
msgctxt "STR_HEADER_NAME"
msgid "Name"
msgstr "שם"
-#: sc/inc/globstr.hrc:420
+#: sc/inc/globstr.hrc:421
msgctxt "STR_HEADER_RANGE_OR_EXPR"
msgid "Range or formula expression"
msgstr "טווח או ביטוי נוסחה"
-#: sc/inc/globstr.hrc:421
+#: sc/inc/globstr.hrc:422
msgctxt "STR_HEADER_SCOPE"
msgid "Scope"
msgstr "היקף"
-#: sc/inc/globstr.hrc:422
+#: sc/inc/globstr.hrc:423
msgctxt "STR_MULTI_SELECT"
msgid "(multiple)"
msgstr "(מרובה)"
-#: sc/inc/globstr.hrc:423
+#: sc/inc/globstr.hrc:424
msgctxt "STR_GLOBAL_SCOPE"
msgid "Document (Global)"
msgstr "מסמך (גלובלי)"
-#: sc/inc/globstr.hrc:424
+#: sc/inc/globstr.hrc:425
msgctxt "STR_ERR_NAME_EXISTS"
msgid "Invalid name. Already in use for the selected scope."
msgstr "שם לא חוקי. כבר נמצא בשימוש לטווח הנבחר."
-#: sc/inc/globstr.hrc:425
+#: sc/inc/globstr.hrc:426
msgctxt "STR_ERR_NAME_INVALID"
msgid "Invalid name. Only use letters, numbers and underscore."
msgstr "שם לא חוקי. יש להשתמש רק באותיות, מספרים וקו תחתון."
-#: sc/inc/globstr.hrc:426
+#: sc/inc/globstr.hrc:427
msgctxt "STR_UNSAVED_EXT_REF"
msgid ""
"This Document contains external references to unsaved documents.\n"
@@ -2099,217 +2104,217 @@ msgstr ""
"\n"
"האם להמשיך?"
-#: sc/inc/globstr.hrc:427
+#: sc/inc/globstr.hrc:428
msgctxt "STR_CLOSE_WITH_UNSAVED_REFS"
msgid "This Document is referenced by another document and not yet saved. Closing it without saving will result in data loss."
msgstr "מסמך אחר מפנה למסמך זה שעוד לא נשמר. סגירתו ללא שמירה תוביל לאובדן מידע."
-#: sc/inc/globstr.hrc:428
+#: sc/inc/globstr.hrc:429
msgctxt "STR_HEADER_RANGE"
msgid "Range"
msgstr "טווח"
-#: sc/inc/globstr.hrc:429
+#: sc/inc/globstr.hrc:430
msgctxt "STR_HEADER_COND"
msgid "First Condition"
msgstr "תנאי ראשון"
-#: sc/inc/globstr.hrc:430
+#: sc/inc/globstr.hrc:431
msgctxt "STR_COND_CONDITION"
msgid "Cell value is"
msgstr "ערך התא"
-#: sc/inc/globstr.hrc:431
+#: sc/inc/globstr.hrc:432
msgctxt "STR_COND_COLORSCALE"
msgid "ColorScale"
msgstr "הדרגת צבע"
-#: sc/inc/globstr.hrc:432
+#: sc/inc/globstr.hrc:433
msgctxt "STR_COND_DATABAR"
msgid "DataBar"
msgstr "עמודת נתונים"
-#: sc/inc/globstr.hrc:433
+#: sc/inc/globstr.hrc:434
msgctxt "STR_COND_ICONSET"
msgid "IconSet"
msgstr "ערכת סמלים"
-#: sc/inc/globstr.hrc:434
+#: sc/inc/globstr.hrc:435
msgctxt "STR_COND_BETWEEN"
msgid "between"
msgstr "בין"
-#: sc/inc/globstr.hrc:435
+#: sc/inc/globstr.hrc:436
msgctxt "STR_COND_NOTBETWEEN"
msgid "not between"
msgstr "לא בין"
-#: sc/inc/globstr.hrc:436
+#: sc/inc/globstr.hrc:437
msgctxt "STR_COND_UNIQUE"
msgid "unique"
msgstr "ייחודי"
-#: sc/inc/globstr.hrc:437
+#: sc/inc/globstr.hrc:438
msgctxt "STR_COND_DUPLICATE"
msgid "duplicate"
msgstr "כפול"
-#: sc/inc/globstr.hrc:438
+#: sc/inc/globstr.hrc:439
msgctxt "STR_COND_FORMULA"
msgid "Formula is"
msgstr "הנוסחה היא"
-#: sc/inc/globstr.hrc:439
+#: sc/inc/globstr.hrc:440
msgctxt "STR_COND_TOP10"
msgid "Top Elements"
msgstr "פריטים עליונים"
-#: sc/inc/globstr.hrc:440
+#: sc/inc/globstr.hrc:441
msgctxt "STR_COND_BOTTOM10"
msgid "Bottom Elements"
msgstr "פריטים תחתונים"
-#: sc/inc/globstr.hrc:441
+#: sc/inc/globstr.hrc:442
msgctxt "STR_COND_TOP_PERCENT"
msgid "Top Percent"
msgstr "האחוז העליון"
-#: sc/inc/globstr.hrc:442
+#: sc/inc/globstr.hrc:443
msgctxt "STR_COND_DATE"
msgid "Date is"
msgstr "התאריך הוא"
-#: sc/inc/globstr.hrc:443
+#: sc/inc/globstr.hrc:444
msgctxt "STR_COND_BOTTOM_PERCENT"
msgid "Bottom Percent"
msgstr "האחוז התחתון"
-#: sc/inc/globstr.hrc:444
+#: sc/inc/globstr.hrc:445
msgctxt "STR_COND_ABOVE_AVERAGE"
msgid "Above Average"
msgstr "מעל לממוצע"
-#: sc/inc/globstr.hrc:445
+#: sc/inc/globstr.hrc:446
msgctxt "STR_COND_BELOW_AVERAGE"
msgid "Below Average"
msgstr "מתחת לממוצע"
-#: sc/inc/globstr.hrc:446
+#: sc/inc/globstr.hrc:447
msgctxt "STR_COND_ABOVE_EQUAL_AVERAGE"
msgid "Above or equal Average"
msgstr "מעל או שווה לממוצע"
-#: sc/inc/globstr.hrc:447
+#: sc/inc/globstr.hrc:448
msgctxt "STR_COND_BELOW_EQUAL_AVERAGE"
msgid "Below or equal Average"
msgstr "מתחת או שווה לממוצע"
-#: sc/inc/globstr.hrc:448
+#: sc/inc/globstr.hrc:449
msgctxt "STR_COND_ERROR"
msgid "an Error code"
msgstr "קוד שגיאה"
-#: sc/inc/globstr.hrc:449
+#: sc/inc/globstr.hrc:450
msgctxt "STR_COND_NOERROR"
msgid "not an Error code"
msgstr "אין קוד שגיאה"
-#: sc/inc/globstr.hrc:450
+#: sc/inc/globstr.hrc:451
msgctxt "STR_COND_BEGINS_WITH"
msgid "Begins with"
msgstr "מתחיל עם"
-#: sc/inc/globstr.hrc:451
+#: sc/inc/globstr.hrc:452
msgctxt "STR_COND_ENDS_WITH"
msgid "Ends with"
msgstr "מסתיים עם"
-#: sc/inc/globstr.hrc:452
+#: sc/inc/globstr.hrc:453
msgctxt "STR_COND_CONTAINS"
msgid "Contains"
msgstr "מכיל"
-#: sc/inc/globstr.hrc:453
+#: sc/inc/globstr.hrc:454
msgctxt "STR_COND_NOT_CONTAINS"
msgid "Not Contains"
msgstr "לא מכיל"
-#: sc/inc/globstr.hrc:454
+#: sc/inc/globstr.hrc:455
msgctxt "STR_COND_TODAY"
msgid "today"
msgstr "היום"
-#: sc/inc/globstr.hrc:455
+#: sc/inc/globstr.hrc:456
msgctxt "STR_COND_YESTERDAY"
msgid "yesterday"
msgstr "אתמול"
-#: sc/inc/globstr.hrc:456
+#: sc/inc/globstr.hrc:457
msgctxt "STR_COND_TOMORROW"
msgid "tomorrow"
msgstr "מחר"
-#: sc/inc/globstr.hrc:457
+#: sc/inc/globstr.hrc:458
msgctxt "STR_COND_LAST7DAYS"
msgid "in the last 7 days"
msgstr "בשבוע החולף"
-#: sc/inc/globstr.hrc:458
+#: sc/inc/globstr.hrc:459
msgctxt "STR_COND_THISWEEK"
msgid "this week"
msgstr "השבוע"
-#: sc/inc/globstr.hrc:459
+#: sc/inc/globstr.hrc:460
msgctxt "STR_COND_LASTWEEK"
msgid "last week"
msgstr "שבוע שעבר"
-#: sc/inc/globstr.hrc:460
+#: sc/inc/globstr.hrc:461
msgctxt "STR_COND_NEXTWEEK"
msgid "next week"
msgstr "השבוע הבא"
-#: sc/inc/globstr.hrc:461
+#: sc/inc/globstr.hrc:462
msgctxt "STR_COND_THISMONTH"
msgid "this month"
msgstr "החודש"
-#: sc/inc/globstr.hrc:462
+#: sc/inc/globstr.hrc:463
msgctxt "STR_COND_LASTMONTH"
msgid "last month"
msgstr "חודש שעבר"
-#: sc/inc/globstr.hrc:463
+#: sc/inc/globstr.hrc:464
msgctxt "STR_COND_NEXTMONTH"
msgid "next month"
msgstr "החודש הבא"
-#: sc/inc/globstr.hrc:464
+#: sc/inc/globstr.hrc:465
msgctxt "STR_COND_THISYEAR"
msgid "this year"
msgstr "השנה"
-#: sc/inc/globstr.hrc:465
+#: sc/inc/globstr.hrc:466
msgctxt "STR_COND_LASTYEAR"
msgid "last year"
msgstr "שנה שעברה"
-#: sc/inc/globstr.hrc:466
+#: sc/inc/globstr.hrc:467
msgctxt "STR_COND_NEXTYEAR"
msgid "next year"
msgstr "השנה הבאה"
-#: sc/inc/globstr.hrc:467
+#: sc/inc/globstr.hrc:468
msgctxt "STR_COND_AND"
msgid "and"
msgstr "וגם"
-#: sc/inc/globstr.hrc:468
+#: sc/inc/globstr.hrc:469
msgctxt "STR_ERR_CONDFORMAT_PROTECTED"
msgid "Conditional Formats can not be created, deleted or changed in protected sheets."
msgstr ""
-#: sc/inc/globstr.hrc:469
+#: sc/inc/globstr.hrc:470
msgctxt "STR_EDIT_EXISTING_COND_FORMATS"
msgid ""
"The selected cell already contains conditional formatting. You can either edit the existing conditional format or you define a new overlapping conditional format.\n"
@@ -2320,7 +2325,7 @@ msgstr ""
"\n"
"האם ברצונך לערוך את העיצוב המותנה הנוכחי?"
-#: sc/inc/globstr.hrc:470
+#: sc/inc/globstr.hrc:471
msgctxt "STR_QUERY_FORMULA_RECALC_ONLOAD_ODS"
msgid ""
"This document was last saved by an application other than %PRODUCTNAME. Some formula cells may produce different results when recalculated.\n"
@@ -2331,7 +2336,7 @@ msgstr ""
"\n"
"האם לחשב מחדש את כל הנוסחאות שבתאים במסמך זה כעת?"
-#: sc/inc/globstr.hrc:471
+#: sc/inc/globstr.hrc:472
msgctxt "STR_QUERY_FORMULA_RECALC_ONLOAD_XLS"
msgid ""
"This document was last saved by Excel. Some formula cells may produce different results when recalculated.\n"
@@ -2342,77 +2347,77 @@ msgstr ""
"\n"
"האם ברצונך לחשב מחדש את כל תאי הנוסחאות במסמך זה כעת?"
-#: sc/inc/globstr.hrc:472
+#: sc/inc/globstr.hrc:473
msgctxt "STR_NO_INSERT_DELETE_OVER_PIVOT_TABLE"
msgid "You cannot insert or delete cells when the affected range intersects with pivot table."
msgstr "לא ניתן להוסיף או למחוק תאים כאשר הטווח המושפע מצטלב עם טבלת ציר."
-#: sc/inc/globstr.hrc:473
+#: sc/inc/globstr.hrc:474
msgctxt "STR_DPFIELD_GROUP_BY_SECONDS"
msgid "Seconds"
msgstr "שניות"
-#: sc/inc/globstr.hrc:474
+#: sc/inc/globstr.hrc:475
msgctxt "STR_DPFIELD_GROUP_BY_MINUTES"
msgid "Minutes"
msgstr "דקות"
-#: sc/inc/globstr.hrc:475
+#: sc/inc/globstr.hrc:476
msgctxt "STR_DPFIELD_GROUP_BY_HOURS"
msgid "Hours"
msgstr "שעות"
-#: sc/inc/globstr.hrc:476
+#: sc/inc/globstr.hrc:477
msgctxt "STR_DPFIELD_GROUP_BY_DAYS"
msgid "Days"
msgstr "ימים"
-#: sc/inc/globstr.hrc:477
+#: sc/inc/globstr.hrc:478
msgctxt "STR_DPFIELD_GROUP_BY_MONTHS"
msgid "Months"
msgstr "חודשים"
-#: sc/inc/globstr.hrc:478
+#: sc/inc/globstr.hrc:479
msgctxt "STR_DPFIELD_GROUP_BY_QUARTERS"
msgid "Quarters"
msgstr "רבעונים"
-#: sc/inc/globstr.hrc:479
+#: sc/inc/globstr.hrc:480
msgctxt "STR_DPFIELD_GROUP_BY_YEARS"
msgid "Years"
msgstr "שנים"
-#: sc/inc/globstr.hrc:480
+#: sc/inc/globstr.hrc:481
msgctxt "STR_INVALIDVAL"
msgid "Invalid target value."
msgstr "ערך יעד בלתי חוקי."
-#: sc/inc/globstr.hrc:481
+#: sc/inc/globstr.hrc:482
msgctxt "STR_INVALIDVAR"
msgid "Undefined name for variable cell."
msgstr "לא הוגדר שם עבור תא המשתנה.‏"
-#: sc/inc/globstr.hrc:482
+#: sc/inc/globstr.hrc:483
msgctxt "STR_INVALIDFORM"
msgid "Undefined name as formula cell."
msgstr "שם בלתי מוגדר כתא נוסחה.‏"
-#: sc/inc/globstr.hrc:483
+#: sc/inc/globstr.hrc:484
msgctxt "STR_NOFORMULA"
msgid "Formula cell must contain a formula."
msgstr "תא הנוסחה חייב להכיל נוסחה."
-#: sc/inc/globstr.hrc:484
+#: sc/inc/globstr.hrc:485
msgctxt "STR_INVALIDINPUT"
msgid "Invalid input."
msgstr "קלט לא חוקי"
-#: sc/inc/globstr.hrc:485
+#: sc/inc/globstr.hrc:486
msgctxt "STR_INVALIDCONDITION"
msgid "Invalid condition."
msgstr "תנאי לא חוקי"
-#: sc/inc/globstr.hrc:486
+#: sc/inc/globstr.hrc:487
msgctxt "STR_QUERYREMOVE"
msgid ""
"Should the entry\n"
@@ -2423,134 +2428,134 @@ msgstr ""
"את הרשומה\n"
"#?"
-#: sc/inc/globstr.hrc:487
+#: sc/inc/globstr.hrc:488
msgctxt "STR_COPYLIST"
msgid "Copy List"
msgstr "העתקת רשימה"
-#: sc/inc/globstr.hrc:488
+#: sc/inc/globstr.hrc:489
msgctxt "STR_COPYFROM"
msgid "List from"
msgstr "הצגה מ־"
-#: sc/inc/globstr.hrc:489
+#: sc/inc/globstr.hrc:490
msgctxt "STR_COPYERR"
msgid "Cells without text have been ignored."
msgstr "תאים ללא טקסט לא נכללו."
-#: sc/inc/globstr.hrc:490
+#: sc/inc/globstr.hrc:491
#, c-format
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%s-click to follow hyperlink:"
msgstr ""
-#: sc/inc/globstr.hrc:491
+#: sc/inc/globstr.hrc:492
msgctxt "STR_CLICKHYPERLINK"
msgid "click to open hyperlink:"
msgstr "יש ללחוץ כדי לפתוח את הקישור:"
-#: sc/inc/globstr.hrc:492
+#: sc/inc/globstr.hrc:493
msgctxt "STR_PRINT_PREVIEW_NODATA"
msgid "No Data"
msgstr "אין נתונים"
-#: sc/inc/globstr.hrc:493
+#: sc/inc/globstr.hrc:494
msgctxt "STR_PRINT_PREVIEW_EMPTY_RANGE"
msgid "Print Range Empty"
msgstr "טווח ההדפסה ריק"
-#: sc/inc/globstr.hrc:494
+#: sc/inc/globstr.hrc:495
msgctxt "STR_UNDO_CONDFORMAT"
msgid "Conditional Format"
msgstr "עיצוב מותנה"
-#: sc/inc/globstr.hrc:495
+#: sc/inc/globstr.hrc:496
#, fuzzy
msgctxt "STR_UNDO_CONDFORMAT_LIST"
msgid "Conditional Formats"
msgstr "עיצוב מותנה"
-#: sc/inc/globstr.hrc:496
+#: sc/inc/globstr.hrc:497
msgctxt "STR_UNDO_FORMULA_TO_VALUE"
msgid "Convert Formula To Value"
msgstr "המרת נוסחה לערך"
-#: sc/inc/globstr.hrc:497
+#: sc/inc/globstr.hrc:498
msgctxt "STR_UNQUOTED_STRING"
msgid "Strings without quotes are interpreted as column/row labels."
msgstr "מחרוזות ללא מירכאות מפוענחות כתוויות לשורה/עמודה."
-#: sc/inc/globstr.hrc:498
+#: sc/inc/globstr.hrc:499
msgctxt "STR_ENTER_VALUE"
msgid "Enter a value!"
msgstr "יש להזין ערך!"
-#: sc/inc/globstr.hrc:499
+#: sc/inc/globstr.hrc:500
msgctxt "STR_TABLE_COUNT"
msgid "Sheet %1 of %2"
msgstr "גיליון %1 מתוך %2"
-#: sc/inc/globstr.hrc:500
+#: sc/inc/globstr.hrc:501
msgctxt "STR_FUNCTIONS_FOUND"
msgid "%1 and %2 more"
msgstr ""
-#: sc/inc/globstr.hrc:501
+#: sc/inc/globstr.hrc:502
msgctxt "STR_GENERAL"
msgid "General"
msgstr "כללי"
-#: sc/inc/globstr.hrc:502
+#: sc/inc/globstr.hrc:503
msgctxt "STR_NUMBER"
msgid "Number"
msgstr "מספר"
-#: sc/inc/globstr.hrc:503
+#: sc/inc/globstr.hrc:504
msgctxt "STR_PERCENT"
msgid "Percent"
msgstr "אחוז"
-#: sc/inc/globstr.hrc:504
+#: sc/inc/globstr.hrc:505
msgctxt "STR_CURRENCY"
msgid "Currency"
msgstr "מטבע"
-#: sc/inc/globstr.hrc:505
+#: sc/inc/globstr.hrc:506
msgctxt "STR_DATE"
msgid "Date"
msgstr "תאריך"
-#: sc/inc/globstr.hrc:506
+#: sc/inc/globstr.hrc:507
msgctxt "STR_TIME"
msgid "Time"
msgstr "שעה"
-#: sc/inc/globstr.hrc:507
+#: sc/inc/globstr.hrc:508
msgctxt "STR_SCIENTIFIC"
msgid "Scientific"
msgstr "מדעי"
-#: sc/inc/globstr.hrc:508
+#: sc/inc/globstr.hrc:509
msgctxt "STR_FRACTION"
msgid "Fraction"
msgstr "שבר"
-#: sc/inc/globstr.hrc:509
+#: sc/inc/globstr.hrc:510
msgctxt "STR_BOOLEAN_VALUE"
msgid "Boolean Value"
msgstr "ערך בוליאני"
-#: sc/inc/globstr.hrc:510
+#: sc/inc/globstr.hrc:511
msgctxt "STR_TEXT"
msgid "Text"
msgstr "טקסט"
-#: sc/inc/globstr.hrc:511
+#: sc/inc/globstr.hrc:512
msgctxt "STR_QUERY_PIVOTTABLE_DELTAB"
msgid "The selected sheet(s) contain source data of related pivot tables that will be lost. Are you sure you want to delete the selected sheet(s)?"
msgstr ""
-#: sc/inc/globstr.hrc:512
+#: sc/inc/globstr.hrc:513
msgctxt "STR_ERR_NAME_INVALID_CELL_REF"
msgid "Invalid name. Reference to a cell, or a range of cells not allowed."
msgstr ""
@@ -10707,8 +10712,8 @@ msgstr "מצב"
#: sc/inc/scfuncs.hrc:3010
msgctxt "SC_OPCODE_T_TEST"
-msgid "Mode specifies the number of distribution tails to return. 1= one-tailed, 2 = two-tailed distribution"
-msgstr "‫השכיח קובע את מספר זנבות ההתפלגות שיש להחזיר. 1=חד-זנבית, 2=התפלגות דו-זנבית"
+msgid "Mode specifies the number of distribution tails to return. 1 = one-tailed, 2 = two-tailed distribution"
+msgstr ""
#: sc/inc/scfuncs.hrc:3011
msgctxt "SC_OPCODE_T_TEST"
@@ -10754,8 +10759,8 @@ msgstr "מצב"
#: sc/inc/scfuncs.hrc:3024
msgctxt "SC_OPCODE_T_TEST_MS"
-msgid "Mode specifies the number of distribution tails to return. 1= one-tailed, 2 = two-tailed distribution"
-msgstr "‫השכיח קובע את מספר זנבות ההתפלגות שיש להחזיר. 1=חד-זנבית, 2=התפלגות דו-זנבית"
+msgid "Mode specifies the number of distribution tails to return. 1 = one-tailed, 2 = two-tailed distribution"
+msgstr ""
#: sc/inc/scfuncs.hrc:3025
msgctxt "SC_OPCODE_T_TEST_MS"
@@ -18562,22 +18567,22 @@ msgctxt "mergecellsdialog|MergeCellsDialog"
msgid "Merge Cells"
msgstr "מיזוג תאים"
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:81
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:84
msgctxt "mergecellsdialog|label"
msgid "Some cells are not empty."
msgstr ""
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:96
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:99
msgctxt "mergecellsdialog|move-cells-radio"
msgid "Move the contents of the hidden cells into the first cell"
msgstr ""
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:112
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:115
msgctxt "mergecellsdialog|empty-cells-radio"
msgid "Empty the contents of the hidden cells"
msgstr ""
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:128
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:131
msgctxt "mergecellsdialog|keep-content-radio"
msgid "Keep the contents of the hidden cells"
msgstr ""
diff --git a/source/he/sd/messages.po b/source/he/sd/messages.po
index 8a697fa8cdb..51fdab0a80e 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2017-10-26 14:59+0000\n"
"Last-Translator: Yaron Shahrabani <sh.yaron@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -16,177 +16,177 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1509029976.000000\n"
-#: sd/inc/DocumentRenderer.hrc:29
+#: sd/inc/DocumentRenderer.hrc:27
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Slides"
msgstr "שקופיות"
-#: sd/inc/DocumentRenderer.hrc:30
+#: sd/inc/DocumentRenderer.hrc:28
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Handouts"
msgstr "עלונים"
-#: sd/inc/DocumentRenderer.hrc:31
+#: sd/inc/DocumentRenderer.hrc:29
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Notes"
msgstr "הערות"
-#: sd/inc/DocumentRenderer.hrc:32
+#: sd/inc/DocumentRenderer.hrc:30
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Outline"
msgstr "מתאר"
-#: sd/inc/DocumentRenderer.hrc:37
+#: sd/inc/DocumentRenderer.hrc:35
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "According to layout"
msgstr "בהתאם לפריסה"
-#: sd/inc/DocumentRenderer.hrc:38
+#: sd/inc/DocumentRenderer.hrc:36
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "1"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:39
+#: sd/inc/DocumentRenderer.hrc:37
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "2"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:40
+#: sd/inc/DocumentRenderer.hrc:38
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "3"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:41
+#: sd/inc/DocumentRenderer.hrc:39
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "4"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:42
+#: sd/inc/DocumentRenderer.hrc:40
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "6"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:43
+#: sd/inc/DocumentRenderer.hrc:41
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "9"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:48
+#: sd/inc/DocumentRenderer.hrc:46
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_ORDER_CHOICES"
msgid "Left to right, then down"
msgstr "משמאל לימין ואז למטה"
-#: sd/inc/DocumentRenderer.hrc:49
+#: sd/inc/DocumentRenderer.hrc:47
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_ORDER_CHOICES"
msgid "Top to bottom, then right"
msgstr "מלמעלה למטה ואז ימינה"
-#: sd/inc/DocumentRenderer.hrc:54
+#: sd/inc/DocumentRenderer.hrc:52
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Original colors"
msgstr "צבעים מקוריים"
-#: sd/inc/DocumentRenderer.hrc:55
+#: sd/inc/DocumentRenderer.hrc:53
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Grayscale"
msgstr "גווני אפור"
-#: sd/inc/DocumentRenderer.hrc:56
+#: sd/inc/DocumentRenderer.hrc:54
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Black & white"
msgstr "שחור ולבן"
-#: sd/inc/DocumentRenderer.hrc:61
+#: sd/inc/DocumentRenderer.hrc:59
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Original size"
msgstr "גודל מקורי"
-#: sd/inc/DocumentRenderer.hrc:62
+#: sd/inc/DocumentRenderer.hrc:60
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Fit to printable page"
msgstr "התאמה לגודל עמוד הניתן להדפסה"
-#: sd/inc/DocumentRenderer.hrc:63
+#: sd/inc/DocumentRenderer.hrc:61
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Distribute on multiple sheets of paper"
msgstr "הפצה על מספר גליונות של נייר"
-#: sd/inc/DocumentRenderer.hrc:64
+#: sd/inc/DocumentRenderer.hrc:62
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Tile sheet of paper with repeated slides"
msgstr "רצוף גיליון נייר בשקפים חוזרים"
-#: sd/inc/DocumentRenderer.hrc:69
+#: sd/inc/DocumentRenderer.hrc:67
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Original size"
msgstr "גודל מקורי"
-#: sd/inc/DocumentRenderer.hrc:70
+#: sd/inc/DocumentRenderer.hrc:68
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Fit to printable page"
msgstr "התאמה לגודל עמוד הניתן להדפסה"
-#: sd/inc/DocumentRenderer.hrc:71
+#: sd/inc/DocumentRenderer.hrc:69
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Distribute on multiple sheets of paper"
msgstr "הפצה על מספר גליונות של נייר"
-#: sd/inc/DocumentRenderer.hrc:72
+#: sd/inc/DocumentRenderer.hrc:70
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Tile sheet of paper with repeated pages"
msgstr "רצוף גיליון נייר בעמודים חוזרים"
-#: sd/inc/DocumentRenderer.hrc:77
+#: sd/inc/DocumentRenderer.hrc:75
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "All pages"
msgstr "כל העמודים"
-#: sd/inc/DocumentRenderer.hrc:78
+#: sd/inc/DocumentRenderer.hrc:76
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "Front sides / right pages"
msgstr "שקופיות חזית / עמודים ימניים"
-#: sd/inc/DocumentRenderer.hrc:79
+#: sd/inc/DocumentRenderer.hrc:77
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "Back sides / left pages"
msgstr "שקופית אחורית / עמודים שמאליים"
-#: sd/inc/DocumentRenderer.hrc:84
+#: sd/inc/DocumentRenderer.hrc:82
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~All slides"
msgstr "כל השקופיות"
-#: sd/inc/DocumentRenderer.hrc:85
+#: sd/inc/DocumentRenderer.hrc:83
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~Slides"
msgstr "שקופיות"
-#: sd/inc/DocumentRenderer.hrc:86
+#: sd/inc/DocumentRenderer.hrc:84
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Se~lection"
msgstr "~בחירה"
-#: sd/inc/DocumentRenderer.hrc:91
+#: sd/inc/DocumentRenderer.hrc:89
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~All pages"
msgstr "~כל העמודים"
-#: sd/inc/DocumentRenderer.hrc:92
+#: sd/inc/DocumentRenderer.hrc:90
#, fuzzy
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Pa~ges"
msgstr "עמודים"
-#: sd/inc/DocumentRenderer.hrc:93
+#: sd/inc/DocumentRenderer.hrc:91
#, fuzzy
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Se~lection"
diff --git a/source/he/svx/messages.po b/source/he/svx/messages.po
index 5249c4c15ce..c2052c624ef 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: 2018-05-16 16:53+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2018-02-23 09:08+0000\n"
"Last-Translator: Yaron Shahrabani <sh.yaron@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5461,7 +5461,7 @@ msgstr ""
#: svx/uiconfig/ui/safemodedialog.ui:432
msgctxt "safemodedialog|btn_create_zip"
-msgid "Create Zip Archive from User Profile"
+msgid "Archive User Profile"
msgstr ""
#: svx/uiconfig/ui/safemodedialog.ui:445
@@ -9132,9 +9132,9 @@ msgid "Red"
msgstr "אדום"
#: include/svx/strings.hrc:565
-msgctxt "RID_SVXSTR_COLOR_VIOLET"
-msgid "Violet"
-msgstr "סגול"
+msgctxt "RID_SVXSTR_COLOR_MAGENTA"
+msgid "Magenta"
+msgstr "אדום ארגמן"
#: include/svx/strings.hrc:566
msgctxt "RID_SVXSTR_COLOR_PURPLE"
@@ -9200,8 +9200,8 @@ msgid "Light Red"
msgstr "אדום בהיר"
#: include/svx/strings.hrc:579
-msgctxt "RID_SVXSTR_COLOR_LIGHTVIOLET"
-msgid "Light Violet"
+msgctxt "RID_SVXSTR_COLOR_LIGHTMAGENTA"
+msgid "Light Magenta"
msgstr ""
#: include/svx/strings.hrc:580
@@ -9267,10 +9267,9 @@ msgid "Dark Red"
msgstr "אדום כהה"
#: include/svx/strings.hrc:593
-#, fuzzy
-msgctxt "RID_SVXSTR_COLOR_DARKVIOLET1"
-msgid "Dark Violet"
-msgstr "סגול כהה"
+msgctxt "RID_SVXSTR_COLOR_DARKMAGENTA"
+msgid "Dark Magenta"
+msgstr ""
#: include/svx/strings.hrc:594
msgctxt "RID_SVXSTR_COLOR_DARKPURPLE"
@@ -9304,55 +9303,55 @@ msgstr ""
#. Elements of the Tonal color palette
#: include/svx/strings.hrc:601
+msgctxt "RID_SVXSTR_COLOR_VIOLET"
+msgid "Violet"
+msgstr "סגול"
+
+#: include/svx/strings.hrc:602
msgctxt "RID_SVXSTR_COLOR_VIOLET_OUG"
msgid "Violet (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:602
+#: include/svx/strings.hrc:603
msgctxt "RID_SVXSTR_COLOR_BLUE_OUG"
msgid "Blue (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:603
+#: include/svx/strings.hrc:604
msgctxt "RID_SVXSTR_COLOR_AZURE_OUG"
msgid "Azure (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:604
+#: include/svx/strings.hrc:605
msgctxt "RID_SVXSTR_COLOR_SPRINGGREEN_OUG"
msgid "Spring Green (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:605
+#: include/svx/strings.hrc:606
msgctxt "RID_SVXSTR_COLOR_GREEN_OUG"
msgid "Green (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:606
+#: include/svx/strings.hrc:607
msgctxt "RID_SVXSTR_COLOR_CHARTREUSEGREEN_OUG"
msgid "Chartreuse Green (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:607
+#: include/svx/strings.hrc:608
msgctxt "RID_SVXSTR_COLOR_ORANGE_OUG"
msgid "Orange (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:608
+#: include/svx/strings.hrc:609
msgctxt "RID_SVXSTR_COLOR_RED_OUG"
msgid "Red (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:609
+#: include/svx/strings.hrc:610
msgctxt "RID_SVXSTR_COLOR_ROSE_OUG"
msgid "Rose (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:610
-msgctxt "RID_SVXSTR_COLOR_MAGENTA"
-msgid "Magenta"
-msgstr "אדום ארגמן"
-
#: include/svx/strings.hrc:611
msgctxt "RID_SVXSTR_COLOR_AZURE"
msgid "Azure"
@@ -12498,13 +12497,13 @@ msgstr "תבליטי חץ ימניים"
#: include/svx/strings.hrc:1273
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_6"
-msgid "Check mark bullets"
-msgstr "תבליטי תיוג"
+msgid "Cross mark bullets"
+msgstr ""
#: include/svx/strings.hrc:1274
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_7"
-msgid "Tick mark bullets"
-msgstr "תבליטי סימון"
+msgid "Check mark bullets"
+msgstr ""
#: include/svx/strings.hrc:1275
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_0"
diff --git a/source/he/sw/messages.po b/source/he/sw/messages.po
index 2731f80e8c4..7ebef68920a 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: 2018-05-22 13:17+0200\n"
+"POT-Creation-Date: 2018-06-12 14:41+0200\n"
"PO-Revision-Date: 2018-02-23 09:10+0000\n"
"Last-Translator: yehoda goldberg <hvusvd@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1207,13 +1207,13 @@ msgstr "ציטוט"
#: sw/inc/strings.hrc:172
msgctxt "STR_POOLCOLL_TOX_ILLUSH"
-msgid "Illustration Index Heading"
-msgstr "כותרת מפתח איורים"
+msgid "Figure Index Heading"
+msgstr ""
#: sw/inc/strings.hrc:173
msgctxt "STR_POOLCOLL_TOX_ILLUS1"
-msgid "Illustration Index 1"
-msgstr "מפתחות איורים 1‏"
+msgid "Figure Index 1"
+msgstr ""
#: sw/inc/strings.hrc:174
msgctxt "STR_POOLCOLL_TOX_OBJECTH"
@@ -3670,10 +3670,9 @@ msgid "Table of Objects"
msgstr ""
#: sw/inc/strings.hrc:672
-#, fuzzy
msgctxt "STR_TOX_ILL"
-msgid "Illustration Index"
-msgstr "מפתחות איורים 1‏"
+msgid "Table of Figures"
+msgstr ""
#: sw/inc/strings.hrc:673
#, c-format
@@ -9535,81 +9534,81 @@ msgctxt "footnotepage|label5"
msgid "Continuation Notice"
msgstr "הודעת המשך"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:49
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:55
#, fuzzy
msgctxt "footnotesendnotestabpage|ftnntnum"
msgid "_Restart numbering"
msgstr "התחלת מספור מחדש"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:91
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:93
#, fuzzy
msgctxt "footnotesendnotestabpage|ftnoffset_label"
msgid "_Start at:"
msgstr "התחלה ב־"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:112
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:111
msgctxt "footnotesendnotestabpage|ftnntnumfmt"
msgid "Custom _format"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:155
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:150
#, fuzzy
msgctxt "footnotesendnotestabpage|ftnsuffix_label"
msgid "Aft_er:"
msgstr "אחרי"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:199
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:188
#, fuzzy
msgctxt "footnotesendnotestabpage|ftnprefix_label"
msgid "Be_fore:"
msgstr "לפני"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:228
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:212
msgctxt "footnotesendnotestabpage|ftnntattextend"
msgid "Collec_t at end of text"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:252
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:234
#, fuzzy
msgctxt "footnotesendnotestabpage|label1"
msgid "Footnotes"
msgstr "הערת שוליים"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:289
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:271
msgctxt "footnotesendnotestabpage|endntattextend"
msgid "C_ollect at end of section"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:315
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:295
#, fuzzy
msgctxt "footnotesendnotestabpage|endntnum"
msgid "_Restart numbering"
msgstr "התחלת מספור מחדש"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:357
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:333
#, fuzzy
msgctxt "footnotesendnotestabpage|endoffset_label"
msgid "_Start at:"
msgstr "התחלה ב־"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:378
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:351
msgctxt "footnotesendnotestabpage|endntnumfmt"
msgid "_Custom format"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:421
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:390
#, fuzzy
msgctxt "footnotesendnotestabpage|endsuffix_label"
msgid "Aft_er:"
msgstr "אחרי"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:465
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:428
#, fuzzy
msgctxt "footnotesendnotestabpage|endprefix_label"
msgid "Be_fore:"
msgstr "לפני"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:500
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:458
#, fuzzy
msgctxt "footnotesendnotestabpage|label2"
msgid "Endnotes"
@@ -9642,27 +9641,27 @@ msgctxt "formatsectiondialog|notes"
msgid "Footnotes/Endnotes"
msgstr "הערות שוליים...‏"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:63
+#: sw/uiconfig/swriter/ui/formattablepage.ui:77
msgctxt "formattablepage|nameft"
msgid "_Name"
msgstr "שם"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:79
+#: sw/uiconfig/swriter/ui/formattablepage.ui:91
msgctxt "formattablepage|widthft"
msgid "W_idth"
msgstr "רוחב"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:110
+#: sw/uiconfig/swriter/ui/formattablepage.ui:120
msgctxt "formattablepage|relwidth"
msgid "Relati_ve"
msgstr "יחסי"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:155
+#: sw/uiconfig/swriter/ui/formattablepage.ui:160
msgctxt "formattablepage|label45"
msgid "Properties"
msgstr "מאפיינים"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:194
+#: sw/uiconfig/swriter/ui/formattablepage.ui:195
msgctxt "formattablepage|leftft"
msgid "Lef_t"
msgstr "לשמאל"
@@ -9672,62 +9671,62 @@ msgctxt "formattablepage|rightft"
msgid "Ri_ght"
msgstr "לימין"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:228
+#: sw/uiconfig/swriter/ui/formattablepage.ui:226
msgctxt "formattablepage|aboveft"
msgid "_Above"
msgstr "למעלה"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:245
+#: sw/uiconfig/swriter/ui/formattablepage.ui:241
msgctxt "formattablepage|belowft"
msgid "_Below"
msgstr "למטה"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:320
+#: sw/uiconfig/swriter/ui/formattablepage.ui:311
msgctxt "formattablepage|label46"
msgid "Spacing"
msgstr "ריווח"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:362
+#: sw/uiconfig/swriter/ui/formattablepage.ui:349
msgctxt "formattablepage|full"
msgid "A_utomatic"
msgstr "אוטומטי"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:380
+#: sw/uiconfig/swriter/ui/formattablepage.ui:365
msgctxt "formattablepage|left"
msgid "_Left"
msgstr "לשמאל"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:398
+#: sw/uiconfig/swriter/ui/formattablepage.ui:381
msgctxt "formattablepage|fromleft"
msgid "_From left"
msgstr "משמאל"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:416
+#: sw/uiconfig/swriter/ui/formattablepage.ui:397
msgctxt "formattablepage|right"
msgid "R_ight"
msgstr "ימין"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:435
+#: sw/uiconfig/swriter/ui/formattablepage.ui:413
msgctxt "formattablepage|center"
msgid "_Center"
msgstr "מרכז"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:453
+#: sw/uiconfig/swriter/ui/formattablepage.ui:429
msgctxt "formattablepage|free"
msgid "_Manual"
msgstr "ידני"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:478
+#: sw/uiconfig/swriter/ui/formattablepage.ui:452
msgctxt "formattablepage|label43"
msgid "Alignment"
msgstr "יישור"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:522
+#: sw/uiconfig/swriter/ui/formattablepage.ui:491
msgctxt "formattablepage|label53"
msgid "Text _direction"
msgstr "_כיוון הטקסט"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:553
+#: sw/uiconfig/swriter/ui/formattablepage.ui:519
msgctxt "formattablepage|label44"
msgid "Properties "
msgstr "מאפיינים "
@@ -10092,22 +10091,27 @@ msgctxt "headerfootermenu|insert_pagenumber"
msgid "Insert Page Number"
msgstr ""
-#: sw/uiconfig/swriter/ui/indentpage.ui:52
+#: sw/uiconfig/swriter/ui/headerfootermenu.ui:42
+msgctxt "headerfootermenu|insert_pagecount"
+msgid "Insert Page Count"
+msgstr ""
+
+#: sw/uiconfig/swriter/ui/indentpage.ui:57
msgctxt "indentpage|label1"
msgid "_Before section"
msgstr "_לפני המקטע"
-#: sw/uiconfig/swriter/ui/indentpage.ui:67
+#: sw/uiconfig/swriter/ui/indentpage.ui:71
msgctxt "indentpage|label3"
msgid "_After section"
msgstr "_אחרי המקטע"
-#: sw/uiconfig/swriter/ui/indentpage.ui:113
+#: sw/uiconfig/swriter/ui/indentpage.ui:115
msgctxt "indentpage|label2"
msgid "Indent"
msgstr "הזחה"
-#: sw/uiconfig/swriter/ui/indentpage.ui:142
+#: sw/uiconfig/swriter/ui/indentpage.ui:155
msgctxt "indentpage|preview-atkobject"
msgid "Example"
msgstr "דוגמה"
@@ -13849,7 +13853,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:68
msgctxt "optcompatpage|format"
-msgid "MS Word-compatible trailing blanks"
+msgid "Word-compatible trailing blanks"
msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:69
@@ -13859,7 +13863,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:70
msgctxt "optcompatpage|format"
-msgid "A database field (e.g., MailMerge) with empty value hides its paragraph"
+msgid "Hide paragraphs of database fields (e.g., mail merge) with an empty value"
msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:71
@@ -16701,123 +16705,123 @@ msgctxt "tableproperties|background"
msgid "Background"
msgstr "רקע"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:25
-msgctxt "tabletextflowpage|liststore1"
-msgid "Horizontal"
-msgstr "אופקי"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:29
-msgctxt "tabletextflowpage|liststore1"
-msgid "Vertical"
-msgstr "אנכי"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:33
-msgctxt "tabletextflowpage|liststore1"
-msgid "Use superordinate object settings"
-msgstr "שימוש בהגדרות אובייקט ברמת העל"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:47
-msgctxt "tabletextflowpage|liststore2"
-msgid "Top"
-msgstr "למעלה"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:51
-msgctxt "tabletextflowpage|liststore2"
-msgid "Centered"
-msgstr "ממורכז"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:55
-msgctxt "tabletextflowpage|liststore2"
-msgid "Bottom"
-msgstr "למטה"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:97
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:53
msgctxt "tabletextflowpage|break"
msgid "_Break"
msgstr "מעבר"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:112
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:68
msgctxt "tabletextflowpage|page"
msgid "_Page"
msgstr "עמוד"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:132
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:87
msgctxt "tabletextflowpage|column"
msgid "Col_umn"
msgstr "עמודה"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:151
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:106
msgctxt "tabletextflowpage|before"
msgid "Be_fore"
msgstr "לפני"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:171
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:125
msgctxt "tabletextflowpage|after"
msgid "_After"
msgstr "אחרי"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:203
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:158
msgctxt "tabletextflowpage|pagestyle"
msgid "With Page St_yle"
msgstr "עם סגנון עמוד"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:224
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:177
msgctxt "tabletextflowpage|pagenoft"
msgid "Page _number"
msgstr "מספר עמוד"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:257
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:213
#, fuzzy
msgctxt "tabletextflowpage|pagestylelb-atkobject"
msgid "With Page Style"
msgstr "עם סגנון עמוד"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:274
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:230
msgctxt "tabletextflowpage|split"
msgid "Allow _table to split across pages and columns"
msgstr "לאפשר _פיצול טבלה לאורך עמודים ועמודות"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:289
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:245
msgctxt "tabletextflowpage|splitrow"
msgid "Allow row to break a_cross pages and columns"
msgstr "לאפשר פיצול שורה לאורך עמודות ועמודים"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:306
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:262
msgctxt "tabletextflowpage|keep"
msgid "_Keep with next paragraph"
msgstr "שמירה עם הפסקה הבאה"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:328
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:284
msgctxt "tabletextflowpage|label40"
msgid "Text _orientation"
msgstr "_כיוון הטקסט"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:361
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:298
+msgctxt "tabletextflowpage|liststore1"
+msgid "Horizontal"
+msgstr "אופקי"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:299
+msgctxt "tabletextflowpage|liststore1"
+msgid "Vertical"
+msgstr "אנכי"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:300
+msgctxt "tabletextflowpage|liststore1"
+msgid "Use superordinate object settings"
+msgstr "שימוש בהגדרות אובייקט ברמת העל"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:321
msgctxt "tabletextflowpage|headline"
msgid "R_epeat heading"
msgstr "חזרה על הכותרת"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:383
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:343
msgctxt "tabletextflowpage|label38"
msgid "The first "
msgstr "הראשון "
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:396
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:356
msgctxt "tabletextflowpage|label39"
msgid "rows"
msgstr "שורות"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:434
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:395
msgctxt "tabletextflowpage|label35"
msgid "Text Flow"
msgstr "זרימת טקסט"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:467
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:428
msgctxt "tabletextflowpage|label41"
msgid "_Vertical alignment"
msgstr "יישור אנכי"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:495
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:442
+msgctxt "tabletextflowpage|liststore2"
+msgid "Top"
+msgstr "למעלה"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:443
+msgctxt "tabletextflowpage|liststore2"
+msgid "Centered"
+msgstr "ממורכז"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:444
+msgctxt "tabletextflowpage|liststore2"
+msgid "Bottom"
+msgstr "למטה"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:460
msgctxt "tabletextflowpage|label36"
msgid "Alignment"
msgstr "יישור"
@@ -17635,10 +17639,9 @@ msgid "Alphabetical Index"
msgstr ""
#: sw/uiconfig/swriter/ui/tocindexpage.ui:58
-#, fuzzy
msgctxt "tocindexpage|liststore1"
-msgid "Illustration Index"
-msgstr "מפתחות איורים 1‏"
+msgid "Table of Figures"
+msgstr ""
#: sw/uiconfig/swriter/ui/tocindexpage.ui:62
msgctxt "tocindexpage|liststore1"
diff --git a/source/he/writerperfect/messages.po b/source/he/writerperfect/messages.po
index 1193016bb6b..1e8f1fc748f 100644
--- a/source/he/writerperfect/messages.po
+++ b/source/he/writerperfect/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-16 16:54+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2017-10-23 06:50+0000\n"
"Last-Translator: Yaron Shahrabani <sh.yaron@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -66,97 +66,97 @@ msgctxt "exportepub|generalft"
msgid "General"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:122
+#: writerperfect/uiconfig/ui/exportepub.ui:121
msgctxt "exportepub|versionft"
msgid "Version:"
msgstr "גרסה:"
-#: writerperfect/uiconfig/ui/exportepub.ui:139
+#: writerperfect/uiconfig/ui/exportepub.ui:138
msgctxt "exportepub|epub3"
msgid "EPUB 3.0"
msgstr "EPUB 3.0"
-#: writerperfect/uiconfig/ui/exportepub.ui:140
+#: writerperfect/uiconfig/ui/exportepub.ui:139
msgctxt "exportepub|epub2"
msgid "EPUB 2.0"
msgstr "EPUB 2.0"
-#: writerperfect/uiconfig/ui/exportepub.ui:175
+#: writerperfect/uiconfig/ui/exportepub.ui:174
msgctxt "exportepub|splitft"
msgid "Split method:"
msgstr "שיטת פיצול:"
-#: writerperfect/uiconfig/ui/exportepub.ui:192
+#: writerperfect/uiconfig/ui/exportepub.ui:191
msgctxt "exportepub|splitpage"
msgid "Page break"
msgstr "מעבר עמוד"
-#: writerperfect/uiconfig/ui/exportepub.ui:193
+#: writerperfect/uiconfig/ui/exportepub.ui:192
msgctxt "exportepub|splitheading"
msgid "Heading"
msgstr "כותרת עליונה"
-#: writerperfect/uiconfig/ui/exportepub.ui:228
+#: writerperfect/uiconfig/ui/exportepub.ui:227
msgctxt "exportepub|layoutft"
msgid "Layout method:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:245
+#: writerperfect/uiconfig/ui/exportepub.ui:244
msgctxt "exportepub|layoutreflowable"
msgid "Reflowable"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:246
+#: writerperfect/uiconfig/ui/exportepub.ui:245
msgctxt "exportepub|layoutfixed"
msgid "Fixed"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:281
+#: writerperfect/uiconfig/ui/exportepub.ui:280
msgctxt "exportepub|coverimageft"
msgid "Custom cover image:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:311
+#: writerperfect/uiconfig/ui/exportepub.ui:310
msgctxt "exportepub|coverbutton"
msgid "Browse..."
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:355
+#: writerperfect/uiconfig/ui/exportepub.ui:354
msgctxt "exportepub|mediadirft"
msgid "Custom media directory:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:385
+#: writerperfect/uiconfig/ui/exportepub.ui:384
msgctxt "exportepub|mediabutton"
msgid "Browse..."
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:429
+#: writerperfect/uiconfig/ui/exportepub.ui:428
msgctxt "exportepub|metadataft"
msgid "Metadata"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:470
+#: writerperfect/uiconfig/ui/exportepub.ui:468
msgctxt "exportepub|identifierft"
msgid "Identifier:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:485
+#: writerperfect/uiconfig/ui/exportepub.ui:483
msgctxt "exportepub|titleft"
msgid "Title:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:511
+#: writerperfect/uiconfig/ui/exportepub.ui:509
msgctxt "exportepub|authorft"
msgid "Author:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:537
+#: writerperfect/uiconfig/ui/exportepub.ui:535
msgctxt "exportepub|languageft"
msgid "Language:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:563
+#: writerperfect/uiconfig/ui/exportepub.ui:561
msgctxt "exportepub|dateft"
msgid "Date:"
msgstr ""
diff --git a/source/hi/cui/messages.po b/source/hi/cui/messages.po
index 9638fb592e3..456d45e9a2a 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+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"
@@ -10394,106 +10394,106 @@ msgctxt "positionsizedialog|PositionAndSizeDialog"
msgid "Position and Size"
msgstr "स्थिति और अंतरण"
-#: cui/uiconfig/ui/positionsizedialog.ui:107
+#: cui/uiconfig/ui/positionsizedialog.ui:136
#, fuzzy
msgctxt "positionsizedialog|RID_SVXPAGE_POSITION_SIZE"
msgid "Position and Size"
msgstr "स्थिति और अंतरण"
-#: cui/uiconfig/ui/positionsizedialog.ui:129
+#: cui/uiconfig/ui/positionsizedialog.ui:182
#, fuzzy
msgctxt "positionsizedialog|RID_SVXPAGE_SWPOSSIZE"
msgid "Position and Size"
msgstr "स्थिति और अंतरण"
-#: cui/uiconfig/ui/positionsizedialog.ui:152
+#: cui/uiconfig/ui/positionsizedialog.ui:229
msgctxt "positionsizedialog|RID_SVXPAGE_ANGLE"
msgid "Rotation"
msgstr "परिक्रमण"
-#: cui/uiconfig/ui/positionsizedialog.ui:175
+#: cui/uiconfig/ui/positionsizedialog.ui:276
msgctxt "positionsizedialog|RID_SVXPAGE_SLANT"
msgid "Slant & Corner Radius"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:40
+#: cui/uiconfig/ui/possizetabpage.ui:61
#, fuzzy
msgctxt "possizetabpage|FT_POS_X"
msgid "Position _X:"
msgstr "स्थिति"
-#: cui/uiconfig/ui/possizetabpage.ui:56
+#: cui/uiconfig/ui/possizetabpage.ui:75
#, fuzzy
msgctxt "possizetabpage|FT_POS_Y"
msgid "Position _Y:"
msgstr "स्थिति"
-#: cui/uiconfig/ui/possizetabpage.ui:110
+#: cui/uiconfig/ui/possizetabpage.ui:128
msgctxt "possizetabpage|FT_POSREFERENCE"
msgid "_Base point:"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:148
+#: cui/uiconfig/ui/possizetabpage.ui:182
msgctxt "possizetabpage|label1"
msgid "Position"
msgstr "स्थिति"
-#: cui/uiconfig/ui/possizetabpage.ui:190
+#: cui/uiconfig/ui/possizetabpage.ui:224
#, fuzzy
msgctxt "possizetabpage|FT_WIDTH"
msgid "Wi_dth:"
msgstr "चौड़ाई (_W):"
-#: cui/uiconfig/ui/possizetabpage.ui:206
+#: cui/uiconfig/ui/possizetabpage.ui:238
#, fuzzy
msgctxt "possizetabpage|FT_HEIGHT"
msgid "H_eight:"
msgstr "ऊंचाई"
-#: cui/uiconfig/ui/possizetabpage.ui:247
+#: cui/uiconfig/ui/possizetabpage.ui:276
#, fuzzy
msgctxt "possizetabpage|CBX_SCALE"
msgid "_Keep ratio"
msgstr "अनुपात बनाए रखें"
-#: cui/uiconfig/ui/possizetabpage.ui:279
+#: cui/uiconfig/ui/possizetabpage.ui:307
msgctxt "possizetabpage|FT_SIZEREFERENCE"
msgid "Base _point:"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:317
+#: cui/uiconfig/ui/possizetabpage.ui:361
msgctxt "possizetabpage|label2"
msgid "Size"
msgstr "आकार"
-#: cui/uiconfig/ui/possizetabpage.ui:356
+#: cui/uiconfig/ui/possizetabpage.ui:401
#, fuzzy
msgctxt "possizetabpage|TSB_POSPROTECT"
msgid "Positio_n"
msgstr "स्थिति"
-#: cui/uiconfig/ui/possizetabpage.ui:373
+#: cui/uiconfig/ui/possizetabpage.ui:418
#, fuzzy
msgctxt "possizetabpage|TSB_SIZEPROTECT"
msgid "_Size"
msgstr "आकार"
-#: cui/uiconfig/ui/possizetabpage.ui:397
+#: cui/uiconfig/ui/possizetabpage.ui:441
msgctxt "possizetabpage|label3"
msgid "Protect"
msgstr "सुरक्षा करें"
-#: cui/uiconfig/ui/possizetabpage.ui:430
+#: cui/uiconfig/ui/possizetabpage.ui:475
msgctxt "possizetabpage|TSB_AUTOGROW_WIDTH"
msgid "_Fit width to text"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:447
+#: cui/uiconfig/ui/possizetabpage.ui:492
msgctxt "possizetabpage|TSB_AUTOGROW_HEIGHT"
msgid "Fit _height to text"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:471
+#: cui/uiconfig/ui/possizetabpage.ui:515
msgctxt "possizetabpage|label4"
msgid "Adapt"
msgstr ""
@@ -10706,52 +10706,52 @@ msgctxt "recordnumberdialog|label2"
msgid "go to record"
msgstr ""
-#: cui/uiconfig/ui/rotationtabpage.ui:52
+#: cui/uiconfig/ui/rotationtabpage.ui:56
#, fuzzy
msgctxt "rotationtabpage|FT_POS_X"
msgid "Position _X:"
msgstr "स्थिति"
-#: cui/uiconfig/ui/rotationtabpage.ui:66
+#: cui/uiconfig/ui/rotationtabpage.ui:70
#, fuzzy
msgctxt "rotationtabpage|FT_POS_Y"
msgid "Position _Y:"
msgstr "स्थिति"
-#: cui/uiconfig/ui/rotationtabpage.ui:116
+#: cui/uiconfig/ui/rotationtabpage.ui:123
#, fuzzy
msgctxt "rotationtabpage|FT_POSPRESETS"
msgid "_Default settings:"
msgstr "तयशुदा सेटिंग"
-#: cui/uiconfig/ui/rotationtabpage.ui:130
+#: cui/uiconfig/ui/rotationtabpage.ui:151
msgctxt "rotationtabpage|CTL_RECT|tooltip_text"
msgid "Rotation point"
msgstr ""
-#: cui/uiconfig/ui/rotationtabpage.ui:155
+#: cui/uiconfig/ui/rotationtabpage.ui:178
msgctxt "rotationtabpage|label1"
msgid "Pivot Point"
msgstr ""
-#: cui/uiconfig/ui/rotationtabpage.ui:197
+#: cui/uiconfig/ui/rotationtabpage.ui:220
#, fuzzy
msgctxt "rotationtabpage|FT_ANGLE"
msgid "_Angle:"
msgstr "कोण (_A)"
-#: cui/uiconfig/ui/rotationtabpage.ui:238
+#: cui/uiconfig/ui/rotationtabpage.ui:263
#, fuzzy
msgctxt "rotationtabpage|FT_ANGLEPRESETS"
msgid "Default _settings:"
msgstr "तयशुदा सेटिंग"
-#: cui/uiconfig/ui/rotationtabpage.ui:252
+#: cui/uiconfig/ui/rotationtabpage.ui:287
msgctxt "rotationtabpage|CTL_ANGLE|tooltip_text"
msgid "Rotation Angle"
msgstr "घुमाव कोण"
-#: cui/uiconfig/ui/rotationtabpage.ui:277
+#: cui/uiconfig/ui/rotationtabpage.ui:314
msgctxt "rotationtabpage|label2"
msgid "Rotation Angle"
msgstr "घुमाव कोण"
@@ -11143,56 +11143,56 @@ msgctxt "similaritysearchdialog|relaxbox"
msgid "_Combine"
msgstr "मिलाएँ (~i)"
-#: cui/uiconfig/ui/slantcornertabpage.ui:50
+#: cui/uiconfig/ui/slantcornertabpage.ui:70
msgctxt "slantcornertabpage|label5"
msgid "_X:"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:88
+#: cui/uiconfig/ui/slantcornertabpage.ui:110
msgctxt "slantcornertabpage|label6"
msgid "_Y:"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:125
+#: cui/uiconfig/ui/slantcornertabpage.ui:149
msgctxt "slantcornertabpage|label3"
msgid "Control Point 1"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:159
+#: cui/uiconfig/ui/slantcornertabpage.ui:183
#, fuzzy
msgctxt "slantcornertabpage|FT_RADIUS"
msgid "_Radius:"
msgstr "त्रिज्या"
-#: cui/uiconfig/ui/slantcornertabpage.ui:189
+#: cui/uiconfig/ui/slantcornertabpage.ui:214
#, fuzzy
msgctxt "slantcornertabpage|label1"
msgid "Corner Radius"
msgstr "कोना त्रिज्या"
-#: cui/uiconfig/ui/slantcornertabpage.ui:223
+#: cui/uiconfig/ui/slantcornertabpage.ui:248
#, fuzzy
msgctxt "slantcornertabpage|FT_ANGLE"
msgid "_Angle:"
msgstr "कोण (_A)"
-#: cui/uiconfig/ui/slantcornertabpage.ui:253
+#: cui/uiconfig/ui/slantcornertabpage.ui:279
#, fuzzy
msgctxt "slantcornertabpage|label2"
msgid "Slant"
msgstr "तिरछा"
-#: cui/uiconfig/ui/slantcornertabpage.ui:294
+#: cui/uiconfig/ui/slantcornertabpage.ui:320
msgctxt "slantcornertabpage|label4"
msgid "_X:"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:332
+#: cui/uiconfig/ui/slantcornertabpage.ui:360
msgctxt "slantcornertabpage|label7"
msgid "_Y:"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:369
+#: cui/uiconfig/ui/slantcornertabpage.ui:399
msgctxt "slantcornertabpage|label8"
msgid "Control Point 2"
msgstr ""
@@ -11483,126 +11483,126 @@ msgctxt "storedwebconnectiondialog|change"
msgid "_Change Password..."
msgstr "कूटशब्द बदलें (_C)..."
-#: cui/uiconfig/ui/swpossizepage.ui:74
+#: cui/uiconfig/ui/swpossizepage.ui:85
msgctxt "swpossizepage|widthft"
msgid "_Width:"
msgstr "चौड़ाई (_W):"
-#: cui/uiconfig/ui/swpossizepage.ui:111
+#: cui/uiconfig/ui/swpossizepage.ui:123
#, fuzzy
msgctxt "swpossizepage|heightft"
msgid "H_eight:"
msgstr "ऊंचाई"
-#: cui/uiconfig/ui/swpossizepage.ui:128
+#: cui/uiconfig/ui/swpossizepage.ui:141
#, fuzzy
msgctxt "swpossizepage|ratio"
msgid "_Keep ratio"
msgstr "अनुपात बनाए रखें"
-#: cui/uiconfig/ui/swpossizepage.ui:149
+#: cui/uiconfig/ui/swpossizepage.ui:162
msgctxt "swpossizepage|label2"
msgid "Size"
msgstr "आकार"
-#: cui/uiconfig/ui/swpossizepage.ui:205
+#: cui/uiconfig/ui/swpossizepage.ui:218
#, fuzzy
msgctxt "swpossizepage|topage"
msgid "To _page"
msgstr "पृष्ठ में"
-#: cui/uiconfig/ui/swpossizepage.ui:222
+#: cui/uiconfig/ui/swpossizepage.ui:234
#, fuzzy
msgctxt "swpossizepage|topara"
msgid "To paragrap_h"
msgstr "अनुच्छेद में"
-#: cui/uiconfig/ui/swpossizepage.ui:238
+#: cui/uiconfig/ui/swpossizepage.ui:250
#, fuzzy
msgctxt "swpossizepage|tochar"
msgid "To cha_racter"
msgstr "वर्ण में"
-#: cui/uiconfig/ui/swpossizepage.ui:254
+#: cui/uiconfig/ui/swpossizepage.ui:266
#, fuzzy
msgctxt "swpossizepage|aschar"
msgid "_As character"
msgstr "बतौर वर्ण"
-#: cui/uiconfig/ui/swpossizepage.ui:270
+#: cui/uiconfig/ui/swpossizepage.ui:282
#, fuzzy
msgctxt "swpossizepage|toframe"
msgid "To _frame"
msgstr "ढाँचा में"
-#: cui/uiconfig/ui/swpossizepage.ui:292
+#: cui/uiconfig/ui/swpossizepage.ui:304
msgctxt "swpossizepage|label1"
msgid "Anchor"
msgstr "लंगर"
-#: cui/uiconfig/ui/swpossizepage.ui:333
+#: cui/uiconfig/ui/swpossizepage.ui:344
#, fuzzy
msgctxt "swpossizepage|horiposft"
msgid "Hori_zontal:"
msgstr "क्षैतिज (_z)"
-#: cui/uiconfig/ui/swpossizepage.ui:347
+#: cui/uiconfig/ui/swpossizepage.ui:358
msgctxt "swpossizepage|horibyft"
msgid "b_y:"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:361
+#: cui/uiconfig/ui/swpossizepage.ui:372
msgctxt "swpossizepage|vertbyft"
msgid "_by:"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:375
+#: cui/uiconfig/ui/swpossizepage.ui:386
#, fuzzy
msgctxt "swpossizepage|horitoft"
msgid "_to:"
msgstr "प्रति (_T)"
-#: cui/uiconfig/ui/swpossizepage.ui:421
+#: cui/uiconfig/ui/swpossizepage.ui:433
#, fuzzy
msgctxt "swpossizepage|vertposft"
msgid "_Vertical:"
msgstr "लंबवत (_V)"
-#: cui/uiconfig/ui/swpossizepage.ui:457
+#: cui/uiconfig/ui/swpossizepage.ui:470
#, fuzzy
msgctxt "swpossizepage|verttoft"
msgid "t_o:"
msgstr "प्रति: (_o)"
-#: cui/uiconfig/ui/swpossizepage.ui:478
+#: cui/uiconfig/ui/swpossizepage.ui:492
msgctxt "swpossizepage|mirror"
msgid "_Mirror on even pages"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:495
+#: cui/uiconfig/ui/swpossizepage.ui:509
#, fuzzy
msgctxt "swpossizepage|followtextflow"
msgid "Follow te_xt flow"
msgstr "पाठ प्रवाह का अनुसरण करें"
-#: cui/uiconfig/ui/swpossizepage.ui:518
+#: cui/uiconfig/ui/swpossizepage.ui:532
msgctxt "swpossizepage|label11"
msgid "Position"
msgstr "स्थिति"
-#: cui/uiconfig/ui/swpossizepage.ui:549
+#: cui/uiconfig/ui/swpossizepage.ui:563
#, fuzzy
msgctxt "swpossizepage|pos"
msgid "Positio_n"
msgstr "स्थिति"
-#: cui/uiconfig/ui/swpossizepage.ui:565
+#: cui/uiconfig/ui/swpossizepage.ui:579
#, fuzzy
msgctxt "swpossizepage|size"
msgid "_Size"
msgstr "आकार"
-#: cui/uiconfig/ui/swpossizepage.ui:587
+#: cui/uiconfig/ui/swpossizepage.ui:601
msgctxt "swpossizepage|label3"
msgid "Protect"
msgstr "सुरक्षा करें"
@@ -11804,13 +11804,13 @@ msgctxt "textattrtabpage|label2"
msgid "Spacing to Borders"
msgstr ""
-#: cui/uiconfig/ui/textattrtabpage.ui:425
+#: cui/uiconfig/ui/textattrtabpage.ui:423
#, fuzzy
msgctxt "textattrtabpage|TSB_FULL_WIDTH"
msgid "Full _width"
msgstr "पूर्ण-चौड़ाई"
-#: cui/uiconfig/ui/textattrtabpage.ui:448
+#: cui/uiconfig/ui/textattrtabpage.ui:446
msgctxt "textattrtabpage|label3"
msgid "Text Anchor"
msgstr ""
diff --git a/source/hi/filter/source/config/fragments/filters.po b/source/hi/filter/source/config/fragments/filters.po
index e6a0a309381..454a0fdc598 100644
--- a/source/hi/filter/source/config/fragments/filters.po
+++ b/source/hi/filter/source/config/fragments/filters.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: 2018-05-16 16:54+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2016-12-02 15:31+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Hindi <hindi>\n"
@@ -465,8 +465,8 @@ msgctxt ""
"MS Word 2003 XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Word 2003 XML"
-msgstr "माइक्रोसॉफ्ट वर्ड 2003 XML"
+msgid "Word 2003 XML"
+msgstr ""
#: MS_Word_2007_XML.xcu
msgctxt ""
@@ -1290,7 +1290,7 @@ msgctxt ""
"Calc MS Excel 2007 VBA XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Excel 2007-2016 XML (macro enabled)"
+msgid "Excel 2007–2019 (macro-enabled)"
msgstr ""
#: calc_MS_Excel_2007_XML.xcu
diff --git a/source/hi/filter/source/config/fragments/types.po b/source/hi/filter/source/config/fragments/types.po
index 4e1039ac31b..11de3f89b06 100644
--- a/source/hi/filter/source/config/fragments/types.po
+++ b/source/hi/filter/source/config/fragments/types.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: 2018-05-08 15:11+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2015-11-11 20:50+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Hindi <hindi>\n"
@@ -295,8 +295,8 @@ msgctxt ""
"writer_MS_Word_2003_XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Word 2003 XML"
-msgstr "माइक्रोसॉफ़्ट वर्ड 2003 XML"
+msgid "Word 2003 XML"
+msgstr ""
#: writer_MS_Word_2007_XML.xcu
msgctxt ""
diff --git a/source/hi/fpicker/messages.po b/source/hi/fpicker/messages.po
index a47c45ef181..665ca751e00 100644
--- a/source/hi/fpicker/messages.po
+++ b/source/hi/fpicker/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+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"
@@ -280,13 +280,13 @@ msgstr ""
#: fpicker/uiconfig/ui/foldernamedialog.ui:8
msgctxt "foldernamedialog|FolderNameDialog"
-msgid "Folder Name ?"
+msgid "Folder Name"
msgstr ""
#: fpicker/uiconfig/ui/foldernamedialog.ui:91
msgctxt "foldernamedialog|label2"
-msgid "Na_me"
-msgstr "नाम (_m)"
+msgid "Na_me:"
+msgstr ""
#: fpicker/uiconfig/ui/foldernamedialog.ui:122
#, fuzzy
diff --git a/source/hi/helpcontent2/source/text/shared/00.po b/source/hi/helpcontent2/source/text/shared/00.po
index 4e239040e18..10c1dc797fb 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2016-12-22 23:20+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -397,15 +397,15 @@ msgctxt ""
"00000001.xhp\n"
"hd_id3149670\n"
"help.text"
-msgid "Back"
-msgstr "पीछे"
+msgid "Reset"
+msgstr ""
#: 00000001.xhp
msgctxt ""
"00000001.xhp\n"
"par_id3145068\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optionsdialog/revert\">Resets modified values back to the $[officename] default values.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optionsdialog/revert\">Resets changes made to the current tab to those applicable when this dialog was opened.</ahelp>"
msgstr ""
#: 00000001.xhp
@@ -552,6 +552,54 @@ msgctxt ""
msgid "<variable id=\"ShiftF1\">Press Shift+F1 and point to a control to learn more about that control.</variable>"
msgstr ""
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"hd_id631527692833772\n"
+"help.text"
+msgid "Options dialog buttons"
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"hd_id831527692839432\n"
+"help.text"
+msgid "OK"
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"par_id471527692844934\n"
+"help.text"
+msgid "Save the changes in the page and close the Options dialog."
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"hd_id261527692850720\n"
+"help.text"
+msgid "Cancel"
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"par_id571527692855533\n"
+"help.text"
+msgid "Close the Options dialog and discard all changes done."
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"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 Options dialog."
+msgstr ""
+
#: 00000002.xhp
msgctxt ""
"00000002.xhp\n"
@@ -11125,7 +11173,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3151293\n"
"help.text"
-msgid "<variable id=\"linienstile\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Line Styles</emph> tab </variable>"
+msgid "<variable id=\"linienstile\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Line Styles</emph> tab</variable>"
msgstr ""
#: 00040502.xhp
@@ -11133,7 +11181,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3149317\n"
"help.text"
-msgid "<variable id=\"linienenden\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Arrow Styles</emph> tab </variable>"
+msgid "<variable id=\"linienenden\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Arrow Styles</emph> tab</variable>"
msgstr ""
#: 00040502.xhp
@@ -11173,7 +11221,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3154948\n"
"help.text"
-msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Area</emph> tab"
+msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Area</emph> tab."
msgstr ""
#: 00040502.xhp
@@ -11181,7 +11229,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3145607\n"
"help.text"
-msgid "Choose <emph>View - Styles</emph> - open context menu and choose <emph>Modify/New - Area</emph> tab (presentation documents)"
+msgid "Choose <emph>View - Styles</emph> - open context menu and choose <emph>Modify/New - Area</emph> tab (presentation documents)."
msgstr ""
#: 00040502.xhp
@@ -11189,7 +11237,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3152922\n"
"help.text"
-msgid "Choose <emph>Format - Title - Area</emph> tab (chart documents)"
+msgid "Choose <emph>Format - Title - Area</emph> tab (chart documents)."
msgstr ""
#: 00040502.xhp
@@ -11197,7 +11245,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3157894\n"
"help.text"
-msgid "Choose <emph>Format - Legend - Area</emph> tab (chart documents)"
+msgid "Choose <emph>Format - Legend - Area</emph> tab (chart documents)."
msgstr ""
#: 00040502.xhp
@@ -11205,7 +11253,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3144444\n"
"help.text"
-msgid "Choose <emph>Format - Chart Wall - Area</emph> tab (chart documents)"
+msgid "Choose <emph>Format - Chart Wall - Area</emph> tab (chart documents)."
msgstr ""
#: 00040502.xhp
@@ -11213,7 +11261,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3156543\n"
"help.text"
-msgid "Choose <emph>Format - Chart Floor - Area</emph> tab (chart documents)"
+msgid "Choose <emph>Format - Chart Floor - Area</emph> tab (chart documents)."
msgstr ""
#: 00040502.xhp
@@ -11221,7 +11269,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3150685\n"
"help.text"
-msgid "Choose <emph>Format - Chart Area - Area</emph> tab (chart documents)"
+msgid "Choose <emph>Format - Chart Area - Area</emph> tab (chart documents)."
msgstr ""
#: 00040502.xhp
@@ -11229,7 +11277,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3149664\n"
"help.text"
-msgid "Choose <emph>Slide - Properties - Background</emph> tab (in $[officename] Impress)"
+msgid "Choose <emph>Slide - Properties - Background</emph> tab (in $[officename] Impress)."
msgstr ""
#: 00040502.xhp
@@ -11237,7 +11285,15 @@ msgctxt ""
"00040502.xhp\n"
"par_id9149694\n"
"help.text"
-msgid "Choose <emph>Page - Properties - Background</emph> tab (in $[officename] Draw)"
+msgid "Choose <emph>Page - Properties - Background</emph> tab (in $[officename] Draw)."
+msgstr ""
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id841527083135387\n"
+"help.text"
+msgid "Choose <emph>Table - Properties - Background</emph> tab."
msgstr ""
#: 00040502.xhp
@@ -11349,7 +11405,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3150011\n"
"help.text"
-msgid "<variable id=\"schatte\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Shadow</emph> tab </variable>"
+msgid "<variable id=\"schatte\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Shadow</emph> tab</variable>"
msgstr ""
#: 00040502.xhp
@@ -11357,7 +11413,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3147441\n"
"help.text"
-msgid "<variable id=\"verlauf\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Gradients</emph> tab </variable>"
+msgid "<variable id=\"verlauf\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Gradients</emph> tab</variable>"
msgstr ""
#: 00040502.xhp
@@ -11365,7 +11421,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3155308\n"
"help.text"
-msgid "<variable id=\"schraffur\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Hatching</emph> tab </variable>"
+msgid "<variable id=\"schraffur\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Hatching</emph> tab</variable>"
msgstr ""
#: 00040502.xhp
@@ -11373,7 +11429,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3145800\n"
"help.text"
-msgid "<variable id=\"bitmap\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Bitmaps</emph> tab </variable>"
+msgid "<variable id=\"bitmap\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Bitmaps</emph> tab</variable>"
msgstr ""
#: 00040502.xhp
@@ -11413,7 +11469,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3156286\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F4 key </caseinline><caseinline select=\"IMPRESS\">F4 key </caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F4 key</caseinline><caseinline select=\"IMPRESS\">F4 key</caseinline></switchinline>"
msgstr ""
#: 00040502.xhp
@@ -11453,7 +11509,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3153099\n"
"help.text"
-msgid "<variable id=\"position2\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Position and Size</emph> tab </variable>"
+msgid "<variable id=\"position2\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Position and Size</emph> tab</variable>"
msgstr ""
#: 00040502.xhp
@@ -11485,7 +11541,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3145666\n"
"help.text"
-msgid "<variable id=\"ecke\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Slant & Corner Radius</emph> tab </variable>"
+msgid "<variable id=\"ecke\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Slant & Corner Radius</emph> tab</variable>"
msgstr ""
#: 00040502.xhp
@@ -11493,7 +11549,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3146081\n"
"help.text"
-msgid "<variable id=\"legende\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Callout</emph> tab (only for textbox callouts, not for custom shapes callouts) </variable>"
+msgid "<variable id=\"legende\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Callout</emph> tab (only for textbox callouts, not for custom shapes callouts)</variable>"
msgstr ""
#: 00040502.xhp
@@ -11517,7 +11573,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3149019\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F8 key </caseinline><caseinline select=\"IMPRESS\">F8 key </caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F8 key</caseinline><caseinline select=\"IMPRESS\">F8 key</caseinline></switchinline>"
msgstr ""
#: 00040502.xhp
@@ -11805,7 +11861,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3153076\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Align Center Horizontally </caseinline><defaultinline>Centered</defaultinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Align Center Horizontally</caseinline><defaultinline>Centered</defaultinline></switchinline>"
msgstr ""
#: 00040502.xhp
@@ -11845,7 +11901,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3150527\n"
"help.text"
-msgid "<variable id=\"font\">Click <emph>Fontwork</emph> icon on <emph>Drawing</emph> bar </variable>"
+msgid "<variable id=\"font\">Click <emph>Fontwork</emph> icon on <emph>Drawing</emph> bar</variable>"
msgstr ""
#: 00040502.xhp
diff --git a/source/hi/helpcontent2/source/text/shared/01.po b/source/hi/helpcontent2/source/text/shared/01.po
index 1a69982c1a1..cdde50c2e86 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: 2018-05-23 23:19+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2016-12-24 14:07+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -23587,6 +23587,22 @@ msgstr ""
#: 05210100.xhp
msgctxt ""
"05210100.xhp\n"
+"hd_id471527077476052\n"
+"help.text"
+msgid "Cell, Row or Table background selector"
+msgstr ""
+
+#: 05210100.xhp
+msgctxt ""
+"05210100.xhp\n"
+"par_id661527077493366\n"
+"help.text"
+msgid "Select the table object which background area is to be filled."
+msgstr ""
+
+#: 05210100.xhp
+msgctxt ""
+"05210100.xhp\n"
"hd_id3147373\n"
"help.text"
msgid "None"
@@ -31205,15 +31221,15 @@ msgctxt ""
"06040100.xhp\n"
"hd_id3145072\n"
"help.text"
-msgid "Automatic *bold* and _underline_"
-msgstr "स्वचालित *गाढ़ा* और _रेखांकित_"
+msgid "Automatic *bold*, /italic/, -strikeout- and _underline_"
+msgstr ""
#: 06040100.xhp
msgctxt ""
"06040100.xhp\n"
"par_id3153577\n"
"help.text"
-msgid "Automatically applies bold formatting to text enclosed by asterisks (*), and underline to text enclosed by underscores ( _ ), for example, *bold*. The asterisks and underscores are not displayed after the formatting is applied."
+msgid "Automatically applies bold, italic, strikethrough or underline formatting to text enclosed by asterisks (*), slashes (/), hyphens (-), and underscores (_), respectively. These characters disappear after the formatting is applied."
msgstr ""
#: 06040100.xhp
@@ -31221,7 +31237,7 @@ msgctxt ""
"06040100.xhp\n"
"par_id3153127\n"
"help.text"
-msgid "This feature does not work if the formatting characters * or _ are entered with an <link href=\"text/shared/00/00000005.xhp#IME\" name=\"Input Method Editor\">Input Method Editor</link>."
+msgid "This feature does not work if the formatting characters <item type=\"literal\">* / - _</item> are entered with an <link href=\"text/shared/00/00000005.xhp#IME\" name=\"Input Method Editor\">Input Method Editor</link>."
msgstr ""
#: 06040100.xhp
diff --git a/source/hi/helpcontent2/source/text/shared/optionen.po b/source/hi/helpcontent2/source/text/shared/optionen.po
index c78ec523d0e..b98bf5068b7 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: 2018-05-08 15:10+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2016-07-06 05:46+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -83,6 +83,22 @@ msgstr ""
#: 01000000.xhp
msgctxt ""
"01000000.xhp\n"
+"hd_id551527692881035\n"
+"help.text"
+msgid "Help"
+msgstr ""
+
+#: 01000000.xhp
+msgctxt ""
+"01000000.xhp\n"
+"par_id831527692885723\n"
+"help.text"
+msgid "Opens the help contents for the Options page displayed."
+msgstr ""
+
+#: 01000000.xhp
+msgctxt ""
+"01000000.xhp\n"
"hd_id3159149\n"
"help.text"
msgid "<link href=\"text/shared/optionen/01010000.xhp\" name=\"$[officename]\">%PRODUCTNAME</link>"
@@ -4565,8 +4581,8 @@ msgctxt ""
"01030300.xhp\n"
"par_idN10640\n"
"help.text"
-msgid "Options"
-msgstr "विकल्प"
+msgid "Security Options and Warnings"
+msgstr ""
#: 01030300.xhp
msgctxt ""
@@ -4597,7 +4613,7 @@ msgctxt ""
"01030300.xhp\n"
"hd_id3168736\n"
"help.text"
-msgid "Persistently save passwords protected by a master password"
+msgid "Persistently save passwords for web connections"
msgstr ""
#: 01030300.xhp
@@ -4613,6 +4629,22 @@ msgctxt ""
"01030300.xhp\n"
"hd_id3901791\n"
"help.text"
+msgid "Protected by a master password (recommended)"
+msgstr ""
+
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"par_id31527711486980\n"
+"help.text"
+msgid "Check to enable all connections' passwords to be protected by a master password."
+msgstr ""
+
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"hd_id141527711343312\n"
+"help.text"
msgid "Master Password"
msgstr ""
@@ -13733,7 +13765,7 @@ msgctxt ""
"java.xhp\n"
"hd_id3148618\n"
"help.text"
-msgid "Optional (unstable) options"
+msgid "Optional Features"
msgstr ""
#: java.xhp
@@ -13749,7 +13781,7 @@ msgctxt ""
"java.xhp\n"
"par_id3156344\n"
"help.text"
-msgid "It enables features that are not yet complete or contain known bugs. The list of these features is different version by version, or even it can be empty."
+msgid "Enables features that are not yet complete or may contain known bugs. The list of these features is different version by version, or even it can be empty."
msgstr ""
#: java.xhp
@@ -13765,7 +13797,7 @@ msgctxt ""
"java.xhp\n"
"par_id3156345\n"
"help.text"
-msgid "It enables macro recording, so the <link href=\"text/shared/guide/macro_recording.xhp\" name=\"Tools - Macros - Record Macro\"><item type=\"menuitem\">Tools - Macros - Record Macro</item></link> menu item will be available."
+msgid "Enables macro recording. The <link href=\"text/shared/guide/macro_recording.xhp\" name=\"Tools - Macros - Record Macro\"><item type=\"menuitem\">Tools - Macros - Record Macro</item></link> menu item is available."
msgstr ""
#: java.xhp
diff --git a/source/hi/officecfg/registry/data/org/openoffice/Office/UI.po b/source/hi/officecfg/registry/data/org/openoffice/Office/UI.po
index 5440363499c..c48d34c87ed 100644
--- a/source/hi/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/hi/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-22 13:17+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2016-12-02 21:57+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Hindi <hindi>\n"
@@ -26923,8 +26923,8 @@ msgctxt ""
"..WriterCommands.UserInterface.Commands..uno:TextAttributes\n"
"Label\n"
"value.text"
-msgid "Text Attributes"
-msgstr "पाठ गुण"
+msgid "Text Attributes..."
+msgstr ""
#: WriterCommands.xcu
msgctxt ""
diff --git a/source/hi/readlicense_oo/docs.po b/source/hi/readlicense_oo/docs.po
index ccb241e7b95..ab9bb6d31a9 100644
--- a/source/hi/readlicense_oo/docs.po
+++ b/source/hi/readlicense_oo/docs.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: 2018-04-17 15:54+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2016-03-11 07:34+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Hindi <hindi>\n"
@@ -117,7 +117,7 @@ msgctxt ""
"readme.xrm\n"
"macxiOSX\n"
"readmeitem.text"
-msgid "MacOSX 10.8 (Mountain Lion) or higher"
+msgid "MacOSX 10.9 (Mavericks) or higher"
msgstr ""
#: readme.xrm
diff --git a/source/hi/sc/messages.po b/source/hi/sc/messages.po
index ca103f259e6..a478d8a0fd3 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-12 14:40+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"
@@ -1867,16 +1867,21 @@ msgid "Nested arrays are not supported."
msgstr "संजालित सरणी समर्थित नहीं."
#: sc/inc/globstr.hrc:390
+msgctxt "STR_ERR_LONG_BAD_ARRAY_CONTENT"
+msgid "Unsupported inline array content."
+msgstr ""
+
+#: sc/inc/globstr.hrc:391
msgctxt "STR_UNDO_TEXTTOCOLUMNS"
msgid "Text to Columns"
msgstr "कालम से पाठ"
-#: sc/inc/globstr.hrc:391
+#: sc/inc/globstr.hrc:392
msgctxt "STR_DOC_UPDATED"
msgid "Your spreadsheet has been updated with changes saved by other users."
msgstr "आपके स्प्रेडशीट को दूसरे उपयोक्ताओं के द्वारा सहेजे गए परिवर्तनों के लिए अद्यतन किया जा रहा है."
-#: sc/inc/globstr.hrc:392
+#: sc/inc/globstr.hrc:393
msgctxt "STR_DOC_WILLBESAVED"
msgid ""
"The spreadsheet must be saved now to activate sharing mode.\n"
@@ -1887,7 +1892,7 @@ msgstr ""
"\n"
"क्या आप जारी रखना चाहते हैं?"
-#: sc/inc/globstr.hrc:393
+#: sc/inc/globstr.hrc:394
msgctxt "STR_DOC_WILLNOTBESAVED"
msgid ""
"Already resolved merge conflicts will be lost and your changes to the shared spreadsheet will not be saved.\n"
@@ -1898,7 +1903,7 @@ msgstr ""
"\n"
"क्या आप जारी रखना चाहते हैं?"
-#: sc/inc/globstr.hrc:394
+#: sc/inc/globstr.hrc:395
msgctxt "STR_DOC_DISABLESHARED"
msgid ""
"Disabling shared mode of a spreadsheet hinders all other users of the shared spreadsheet to merge back their work.\n"
@@ -1909,7 +1914,7 @@ msgstr ""
"\n"
"क्या आप जारी रखना चाहते हैं?"
-#: sc/inc/globstr.hrc:395
+#: sc/inc/globstr.hrc:396
msgctxt "STR_DOC_NOLONGERSHARED"
msgid ""
"This spreadsheet is no longer in shared mode.\n"
@@ -1920,7 +1925,7 @@ msgstr ""
"\n"
"किसी भिन्न फ़ाइल में अपने स्प्रेडशीट सहेजें और अपने परिवर्तनों को दस्ती रूप से साझा स्प्रेडशीट में मिलाएँ."
-#: sc/inc/globstr.hrc:396
+#: sc/inc/globstr.hrc:397
msgctxt "STR_FILE_LOCKED_TRY_LATER"
msgid ""
"The shared spreadsheet file is locked due to a merge in progress by user: '%1'\n"
@@ -1931,7 +1936,7 @@ msgstr ""
"\n"
"लॉक किए फ़ाइल का साझा मोड निष्क्रिय नहीं किया जा सकता है. बाद में फिर कोशिश करें."
-#: sc/inc/globstr.hrc:397
+#: sc/inc/globstr.hrc:398
msgctxt "STR_FILE_LOCKED_SAVE_LATER"
msgid ""
"The shared spreadsheet file is locked due to a merge in progress by user: '%1'\n"
@@ -1942,147 +1947,147 @@ msgstr ""
"\n"
"अपने परिवर्तनों को सहेजने के लिए बाद में फिर कोशिश करें."
-#: sc/inc/globstr.hrc:398
+#: sc/inc/globstr.hrc:399
msgctxt "STR_UNKNOWN_USER"
msgid "Unknown User"
msgstr "अज्ञात उपयोक्ता"
-#: sc/inc/globstr.hrc:399
+#: sc/inc/globstr.hrc:400
msgctxt "STR_SHAPE_AUTOSHAPE"
msgid "AutoShape"
msgstr "स्वचालित आकार"
-#: sc/inc/globstr.hrc:400
+#: sc/inc/globstr.hrc:401
msgctxt "STR_SHAPE_RECTANGLE"
msgid "Rectangle"
msgstr "आयत"
-#: sc/inc/globstr.hrc:401
+#: sc/inc/globstr.hrc:402
msgctxt "STR_SHAPE_LINE"
msgid "Line"
msgstr "रेखा"
-#: sc/inc/globstr.hrc:402
+#: sc/inc/globstr.hrc:403
msgctxt "STR_SHAPE_OVAL"
msgid "Oval"
msgstr "अंडाकार"
-#: sc/inc/globstr.hrc:403
+#: sc/inc/globstr.hrc:404
msgctxt "STR_FORM_BUTTON"
msgid "Button"
msgstr "बटन"
-#: sc/inc/globstr.hrc:404
+#: sc/inc/globstr.hrc:405
msgctxt "STR_FORM_CHECKBOX"
msgid "Check Box"
msgstr "जाँच पेटी"
-#: sc/inc/globstr.hrc:405
+#: sc/inc/globstr.hrc:406
msgctxt "STR_FORM_OPTIONBUTTON"
msgid "Option Button"
msgstr "विकल्प बटन"
-#: sc/inc/globstr.hrc:406
+#: sc/inc/globstr.hrc:407
msgctxt "STR_FORM_LABEL"
msgid "Label"
msgstr "लेबल"
-#: sc/inc/globstr.hrc:407
+#: sc/inc/globstr.hrc:408
msgctxt "STR_FORM_LISTBOX"
msgid "List Box"
msgstr "सूची बॉक्स"
-#: sc/inc/globstr.hrc:408
+#: sc/inc/globstr.hrc:409
msgctxt "STR_FORM_GROUPBOX"
msgid "Group Box"
msgstr "समूह बॉक्स"
-#: sc/inc/globstr.hrc:409
+#: sc/inc/globstr.hrc:410
msgctxt "STR_FORM_DROPDOWN"
msgid "Drop Down"
msgstr "नीचे जाएं"
-#: sc/inc/globstr.hrc:410
+#: sc/inc/globstr.hrc:411
msgctxt "STR_FORM_SPINNER"
msgid "Spinner"
msgstr "स्पिनर"
-#: sc/inc/globstr.hrc:411
+#: sc/inc/globstr.hrc:412
msgctxt "STR_FORM_SCROLLBAR"
msgid "Scroll Bar"
msgstr "स्क्रॉल पट्टी"
-#: sc/inc/globstr.hrc:412
+#: sc/inc/globstr.hrc:413
msgctxt "STR_STYLE_FAMILY_CELL"
msgid "Cell Styles"
msgstr "कोष्ठ शैली"
-#: sc/inc/globstr.hrc:413
+#: sc/inc/globstr.hrc:414
msgctxt "STR_STYLE_FAMILY_PAGE"
msgid "Page Styles"
msgstr "पृष्ठ शैली"
-#: sc/inc/globstr.hrc:414
+#: sc/inc/globstr.hrc:415
msgctxt "STR_ERR_DATAPILOTSOURCE"
msgid "Pivot table source data is invalid."
msgstr "पाइवट सारणी स्रोत आँकड़ा अमान्य है."
-#: sc/inc/globstr.hrc:415
+#: sc/inc/globstr.hrc:416
msgctxt "STR_OPTIONS_WARN_SEPARATORS"
msgid "Because the current formula separator settings conflict with the locale, the formula separators have been reset to their default values."
msgstr "क्योंकि मौजूदा सूत्र पृथक्कारक सेटिंग लोकेल के साथ विरोध में रहता है, सूत्र पृथक्कारक को उनके मानों के साथ फिर सेट किया जाना चाहिए."
-#: sc/inc/globstr.hrc:416
+#: sc/inc/globstr.hrc:417
msgctxt "STR_UNDO_INSERT_CURRENT_DATE"
msgid "Insert Current Date"
msgstr "आज की तारीख भरो "
-#: sc/inc/globstr.hrc:417
+#: sc/inc/globstr.hrc:418
msgctxt "STR_UNDO_INSERT_CURRENT_TIME"
msgid "Insert Current Time"
msgstr "इस समय के टाइम को भरो"
-#: sc/inc/globstr.hrc:418
+#: sc/inc/globstr.hrc:419
msgctxt "STR_MANAGE_NAMES"
msgid "Manage Names..."
msgstr "नाम प्रबंधित करें..."
-#: sc/inc/globstr.hrc:419
+#: sc/inc/globstr.hrc:420
msgctxt "STR_HEADER_NAME"
msgid "Name"
msgstr "नाम"
-#: sc/inc/globstr.hrc:420
+#: sc/inc/globstr.hrc:421
msgctxt "STR_HEADER_RANGE_OR_EXPR"
msgid "Range or formula expression"
msgstr ""
-#: sc/inc/globstr.hrc:421
+#: sc/inc/globstr.hrc:422
msgctxt "STR_HEADER_SCOPE"
msgid "Scope"
msgstr "स्कोप"
-#: sc/inc/globstr.hrc:422
+#: sc/inc/globstr.hrc:423
msgctxt "STR_MULTI_SELECT"
msgid "(multiple)"
msgstr "(विविध)"
-#: sc/inc/globstr.hrc:423
+#: sc/inc/globstr.hrc:424
msgctxt "STR_GLOBAL_SCOPE"
msgid "Document (Global)"
msgstr "दस्तावेज़ (वैश्विक)"
-#: sc/inc/globstr.hrc:424
+#: sc/inc/globstr.hrc:425
msgctxt "STR_ERR_NAME_EXISTS"
msgid "Invalid name. Already in use for the selected scope."
msgstr "अवैध नाम. चुने गए स्कोप के लिए पहले से प्रयुक्त."
-#: sc/inc/globstr.hrc:425
+#: sc/inc/globstr.hrc:426
msgctxt "STR_ERR_NAME_INVALID"
msgid "Invalid name. Only use letters, numbers and underscore."
msgstr "अमान्य नाम. केवल अक्षर, संख्या और अंडरस्कोर का उपयोग करें."
-#: sc/inc/globstr.hrc:426
+#: sc/inc/globstr.hrc:427
msgctxt "STR_UNSAVED_EXT_REF"
msgid ""
"This Document contains external references to unsaved documents.\n"
@@ -2093,217 +2098,217 @@ msgstr ""
"\n"
"क्या आप जारी रखना चाहते हैं?"
-#: sc/inc/globstr.hrc:427
+#: sc/inc/globstr.hrc:428
msgctxt "STR_CLOSE_WITH_UNSAVED_REFS"
msgid "This Document is referenced by another document and not yet saved. Closing it without saving will result in data loss."
msgstr "यह दस्तावेज़ दूसरे दस्तावेज़ों द्वारा संदर्भित है और अभी तक सहेजा गया नहीं है. इसे बिना सहेजे बंद करना आँकड़ा क्षति का कारण बनेगा."
-#: sc/inc/globstr.hrc:428
+#: sc/inc/globstr.hrc:429
msgctxt "STR_HEADER_RANGE"
msgid "Range"
msgstr "दायरा"
-#: sc/inc/globstr.hrc:429
+#: sc/inc/globstr.hrc:430
msgctxt "STR_HEADER_COND"
msgid "First Condition"
msgstr "प्रथम शर्त"
-#: sc/inc/globstr.hrc:430
+#: sc/inc/globstr.hrc:431
msgctxt "STR_COND_CONDITION"
msgid "Cell value is"
msgstr "कोष्ठ मान है"
-#: sc/inc/globstr.hrc:431
+#: sc/inc/globstr.hrc:432
msgctxt "STR_COND_COLORSCALE"
msgid "ColorScale"
msgstr "रंगस्केल"
-#: sc/inc/globstr.hrc:432
+#: sc/inc/globstr.hrc:433
msgctxt "STR_COND_DATABAR"
msgid "DataBar"
msgstr "डेटापट्टी"
-#: sc/inc/globstr.hrc:433
+#: sc/inc/globstr.hrc:434
msgctxt "STR_COND_ICONSET"
msgid "IconSet"
msgstr "IconSet"
-#: sc/inc/globstr.hrc:434
+#: sc/inc/globstr.hrc:435
msgctxt "STR_COND_BETWEEN"
msgid "between"
msgstr "बीच में"
-#: sc/inc/globstr.hrc:435
+#: sc/inc/globstr.hrc:436
msgctxt "STR_COND_NOTBETWEEN"
msgid "not between"
msgstr "बीच में नहीं"
-#: sc/inc/globstr.hrc:436
+#: sc/inc/globstr.hrc:437
msgctxt "STR_COND_UNIQUE"
msgid "unique"
msgstr "अद्वितीय"
-#: sc/inc/globstr.hrc:437
+#: sc/inc/globstr.hrc:438
msgctxt "STR_COND_DUPLICATE"
msgid "duplicate"
msgstr "अनुकृति"
-#: sc/inc/globstr.hrc:438
+#: sc/inc/globstr.hrc:439
msgctxt "STR_COND_FORMULA"
msgid "Formula is"
msgstr "सूत्र है"
-#: sc/inc/globstr.hrc:439
+#: sc/inc/globstr.hrc:440
msgctxt "STR_COND_TOP10"
msgid "Top Elements"
msgstr "शीर्ष तत्व"
-#: sc/inc/globstr.hrc:440
+#: sc/inc/globstr.hrc:441
msgctxt "STR_COND_BOTTOM10"
msgid "Bottom Elements"
msgstr "निचला तत्व"
-#: sc/inc/globstr.hrc:441
+#: sc/inc/globstr.hrc:442
msgctxt "STR_COND_TOP_PERCENT"
msgid "Top Percent"
msgstr "शीर्ष प्रतिशत"
-#: sc/inc/globstr.hrc:442
+#: sc/inc/globstr.hrc:443
msgctxt "STR_COND_DATE"
msgid "Date is"
msgstr "तिथि है"
-#: sc/inc/globstr.hrc:443
+#: sc/inc/globstr.hrc:444
msgctxt "STR_COND_BOTTOM_PERCENT"
msgid "Bottom Percent"
msgstr "तल प्रतिशत"
-#: sc/inc/globstr.hrc:444
+#: sc/inc/globstr.hrc:445
msgctxt "STR_COND_ABOVE_AVERAGE"
msgid "Above Average"
msgstr "औसत से अधिक"
-#: sc/inc/globstr.hrc:445
+#: sc/inc/globstr.hrc:446
msgctxt "STR_COND_BELOW_AVERAGE"
msgid "Below Average"
msgstr "औसत से नीचे"
-#: sc/inc/globstr.hrc:446
+#: sc/inc/globstr.hrc:447
msgctxt "STR_COND_ABOVE_EQUAL_AVERAGE"
msgid "Above or equal Average"
msgstr ""
-#: sc/inc/globstr.hrc:447
+#: sc/inc/globstr.hrc:448
msgctxt "STR_COND_BELOW_EQUAL_AVERAGE"
msgid "Below or equal Average"
msgstr ""
-#: sc/inc/globstr.hrc:448
+#: sc/inc/globstr.hrc:449
msgctxt "STR_COND_ERROR"
msgid "an Error code"
msgstr "त्रुटि कोड"
-#: sc/inc/globstr.hrc:449
+#: sc/inc/globstr.hrc:450
msgctxt "STR_COND_NOERROR"
msgid "not an Error code"
msgstr "कोई त्रुटि कोड नहीं"
-#: sc/inc/globstr.hrc:450
+#: sc/inc/globstr.hrc:451
msgctxt "STR_COND_BEGINS_WITH"
msgid "Begins with"
msgstr "इससे शुरू होता है"
-#: sc/inc/globstr.hrc:451
+#: sc/inc/globstr.hrc:452
msgctxt "STR_COND_ENDS_WITH"
msgid "Ends with"
msgstr "इससे समाप्त होता है"
-#: sc/inc/globstr.hrc:452
+#: sc/inc/globstr.hrc:453
msgctxt "STR_COND_CONTAINS"
msgid "Contains"
msgstr "समाहित करता है"
-#: sc/inc/globstr.hrc:453
+#: sc/inc/globstr.hrc:454
msgctxt "STR_COND_NOT_CONTAINS"
msgid "Not Contains"
msgstr "समाहित नहीं करता है"
-#: sc/inc/globstr.hrc:454
+#: sc/inc/globstr.hrc:455
msgctxt "STR_COND_TODAY"
msgid "today"
msgstr "आज"
-#: sc/inc/globstr.hrc:455
+#: sc/inc/globstr.hrc:456
msgctxt "STR_COND_YESTERDAY"
msgid "yesterday"
msgstr "कल"
-#: sc/inc/globstr.hrc:456
+#: sc/inc/globstr.hrc:457
msgctxt "STR_COND_TOMORROW"
msgid "tomorrow"
msgstr "कल"
-#: sc/inc/globstr.hrc:457
+#: sc/inc/globstr.hrc:458
msgctxt "STR_COND_LAST7DAYS"
msgid "in the last 7 days"
msgstr ""
-#: sc/inc/globstr.hrc:458
+#: sc/inc/globstr.hrc:459
msgctxt "STR_COND_THISWEEK"
msgid "this week"
msgstr "इस सप्ताह"
-#: sc/inc/globstr.hrc:459
+#: sc/inc/globstr.hrc:460
msgctxt "STR_COND_LASTWEEK"
msgid "last week"
msgstr "अंतिम सप्ताह"
-#: sc/inc/globstr.hrc:460
+#: sc/inc/globstr.hrc:461
msgctxt "STR_COND_NEXTWEEK"
msgid "next week"
msgstr "अगला सप्ताह"
-#: sc/inc/globstr.hrc:461
+#: sc/inc/globstr.hrc:462
msgctxt "STR_COND_THISMONTH"
msgid "this month"
msgstr "इस महीने"
-#: sc/inc/globstr.hrc:462
+#: sc/inc/globstr.hrc:463
msgctxt "STR_COND_LASTMONTH"
msgid "last month"
msgstr "पिछले माह"
-#: sc/inc/globstr.hrc:463
+#: sc/inc/globstr.hrc:464
msgctxt "STR_COND_NEXTMONTH"
msgid "next month"
msgstr "अगला माह"
-#: sc/inc/globstr.hrc:464
+#: sc/inc/globstr.hrc:465
msgctxt "STR_COND_THISYEAR"
msgid "this year"
msgstr "इस वर्ष"
-#: sc/inc/globstr.hrc:465
+#: sc/inc/globstr.hrc:466
msgctxt "STR_COND_LASTYEAR"
msgid "last year"
msgstr "पिछले साल"
-#: sc/inc/globstr.hrc:466
+#: sc/inc/globstr.hrc:467
msgctxt "STR_COND_NEXTYEAR"
msgid "next year"
msgstr "अगला वर्ष"
-#: sc/inc/globstr.hrc:467
+#: sc/inc/globstr.hrc:468
msgctxt "STR_COND_AND"
msgid "and"
msgstr "और"
-#: sc/inc/globstr.hrc:468
+#: sc/inc/globstr.hrc:469
msgctxt "STR_ERR_CONDFORMAT_PROTECTED"
msgid "Conditional Formats can not be created, deleted or changed in protected sheets."
msgstr ""
-#: sc/inc/globstr.hrc:469
+#: sc/inc/globstr.hrc:470
msgctxt "STR_EDIT_EXISTING_COND_FORMATS"
msgid ""
"The selected cell already contains conditional formatting. You can either edit the existing conditional format or you define a new overlapping conditional format.\n"
@@ -2314,7 +2319,7 @@ msgstr ""
"\n"
" क्या आप मौजूदा सशर्त प्रारूप को संपादित करना चाहते हैं?"
-#: sc/inc/globstr.hrc:470
+#: sc/inc/globstr.hrc:471
msgctxt "STR_QUERY_FORMULA_RECALC_ONLOAD_ODS"
msgid ""
"This document was last saved by an application other than %PRODUCTNAME. Some formula cells may produce different results when recalculated.\n"
@@ -2325,7 +2330,7 @@ msgstr ""
"\n"
"क्या आप इस दस्तावेज़ में अब सभी सूत्र कोष्ठ के लिए फिर गणना करना चाहते हैं?"
-#: sc/inc/globstr.hrc:471
+#: sc/inc/globstr.hrc:472
msgctxt "STR_QUERY_FORMULA_RECALC_ONLOAD_XLS"
msgid ""
"This document was last saved by Excel. Some formula cells may produce different results when recalculated.\n"
@@ -2336,77 +2341,77 @@ msgstr ""
"\n"
"क्या आप अब सभी सूत्र कोष्ठ के लिए फिर गणना करना चाहते हैं?"
-#: sc/inc/globstr.hrc:472
+#: sc/inc/globstr.hrc:473
msgctxt "STR_NO_INSERT_DELETE_OVER_PIVOT_TABLE"
msgid "You cannot insert or delete cells when the affected range intersects with pivot table."
msgstr ""
-#: sc/inc/globstr.hrc:473
+#: sc/inc/globstr.hrc:474
msgctxt "STR_DPFIELD_GROUP_BY_SECONDS"
msgid "Seconds"
msgstr "सेकेंड"
-#: sc/inc/globstr.hrc:474
+#: sc/inc/globstr.hrc:475
msgctxt "STR_DPFIELD_GROUP_BY_MINUTES"
msgid "Minutes"
msgstr "मिनट"
-#: sc/inc/globstr.hrc:475
+#: sc/inc/globstr.hrc:476
msgctxt "STR_DPFIELD_GROUP_BY_HOURS"
msgid "Hours"
msgstr "घंटा"
-#: sc/inc/globstr.hrc:476
+#: sc/inc/globstr.hrc:477
msgctxt "STR_DPFIELD_GROUP_BY_DAYS"
msgid "Days"
msgstr "दिन"
-#: sc/inc/globstr.hrc:477
+#: sc/inc/globstr.hrc:478
msgctxt "STR_DPFIELD_GROUP_BY_MONTHS"
msgid "Months"
msgstr "महीना"
-#: sc/inc/globstr.hrc:478
+#: sc/inc/globstr.hrc:479
msgctxt "STR_DPFIELD_GROUP_BY_QUARTERS"
msgid "Quarters"
msgstr "त्रैमासिकी"
-#: sc/inc/globstr.hrc:479
+#: sc/inc/globstr.hrc:480
msgctxt "STR_DPFIELD_GROUP_BY_YEARS"
msgid "Years"
msgstr "वर्ष"
-#: sc/inc/globstr.hrc:480
+#: sc/inc/globstr.hrc:481
msgctxt "STR_INVALIDVAL"
msgid "Invalid target value."
msgstr "लक्ष्य मान अवैध है."
-#: sc/inc/globstr.hrc:481
+#: sc/inc/globstr.hrc:482
msgctxt "STR_INVALIDVAR"
msgid "Undefined name for variable cell."
msgstr "चर कोष्ठ के लिए अपरिभाषित नाम."
-#: sc/inc/globstr.hrc:482
+#: sc/inc/globstr.hrc:483
msgctxt "STR_INVALIDFORM"
msgid "Undefined name as formula cell."
msgstr "सूत्र कोष्ठ के लिए अपरिभाषित नाम."
-#: sc/inc/globstr.hrc:483
+#: sc/inc/globstr.hrc:484
msgctxt "STR_NOFORMULA"
msgid "Formula cell must contain a formula."
msgstr ""
-#: sc/inc/globstr.hrc:484
+#: sc/inc/globstr.hrc:485
msgctxt "STR_INVALIDINPUT"
msgid "Invalid input."
msgstr "अवैध इनपुट."
-#: sc/inc/globstr.hrc:485
+#: sc/inc/globstr.hrc:486
msgctxt "STR_INVALIDCONDITION"
msgid "Invalid condition."
msgstr "अवैध स्थिति."
-#: sc/inc/globstr.hrc:486
+#: sc/inc/globstr.hrc:487
msgctxt "STR_QUERYREMOVE"
msgid ""
"Should the entry\n"
@@ -2414,136 +2419,136 @@ msgid ""
"be deleted?"
msgstr ""
-#: sc/inc/globstr.hrc:487
+#: sc/inc/globstr.hrc:488
msgctxt "STR_COPYLIST"
msgid "Copy List"
msgstr ""
-#: sc/inc/globstr.hrc:488
+#: sc/inc/globstr.hrc:489
msgctxt "STR_COPYFROM"
msgid "List from"
msgstr ""
-#: sc/inc/globstr.hrc:489
+#: sc/inc/globstr.hrc:490
msgctxt "STR_COPYERR"
msgid "Cells without text have been ignored."
msgstr ""
-#: sc/inc/globstr.hrc:490
+#: sc/inc/globstr.hrc:491
#, c-format
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%s-click to follow hyperlink:"
msgstr ""
-#: sc/inc/globstr.hrc:491
+#: sc/inc/globstr.hrc:492
msgctxt "STR_CLICKHYPERLINK"
msgid "click to open hyperlink:"
msgstr ""
-#: sc/inc/globstr.hrc:492
+#: sc/inc/globstr.hrc:493
msgctxt "STR_PRINT_PREVIEW_NODATA"
msgid "No Data"
msgstr ""
-#: sc/inc/globstr.hrc:493
+#: sc/inc/globstr.hrc:494
msgctxt "STR_PRINT_PREVIEW_EMPTY_RANGE"
msgid "Print Range Empty"
msgstr ""
-#: sc/inc/globstr.hrc:494
+#: sc/inc/globstr.hrc:495
#, fuzzy
msgctxt "STR_UNDO_CONDFORMAT"
msgid "Conditional Format"
msgstr "सशर्त प्रारूपण"
-#: sc/inc/globstr.hrc:495
+#: sc/inc/globstr.hrc:496
#, fuzzy
msgctxt "STR_UNDO_CONDFORMAT_LIST"
msgid "Conditional Formats"
msgstr "सशर्त प्रारूपण"
-#: sc/inc/globstr.hrc:496
+#: sc/inc/globstr.hrc:497
msgctxt "STR_UNDO_FORMULA_TO_VALUE"
msgid "Convert Formula To Value"
msgstr ""
-#: sc/inc/globstr.hrc:497
+#: sc/inc/globstr.hrc:498
msgctxt "STR_UNQUOTED_STRING"
msgid "Strings without quotes are interpreted as column/row labels."
msgstr ""
-#: sc/inc/globstr.hrc:498
+#: sc/inc/globstr.hrc:499
msgctxt "STR_ENTER_VALUE"
msgid "Enter a value!"
msgstr ""
-#: sc/inc/globstr.hrc:499
+#: sc/inc/globstr.hrc:500
msgctxt "STR_TABLE_COUNT"
msgid "Sheet %1 of %2"
msgstr ""
-#: sc/inc/globstr.hrc:500
+#: sc/inc/globstr.hrc:501
msgctxt "STR_FUNCTIONS_FOUND"
msgid "%1 and %2 more"
msgstr ""
-#: sc/inc/globstr.hrc:501
+#: sc/inc/globstr.hrc:502
msgctxt "STR_GENERAL"
msgid "General"
msgstr "सामान्य"
-#: sc/inc/globstr.hrc:502
+#: sc/inc/globstr.hrc:503
msgctxt "STR_NUMBER"
msgid "Number"
msgstr "संख्या"
-#: sc/inc/globstr.hrc:503
+#: sc/inc/globstr.hrc:504
msgctxt "STR_PERCENT"
msgid "Percent"
msgstr "प्रतिशत"
-#: sc/inc/globstr.hrc:504
+#: sc/inc/globstr.hrc:505
msgctxt "STR_CURRENCY"
msgid "Currency"
msgstr "मुद्रा"
-#: sc/inc/globstr.hrc:505
+#: sc/inc/globstr.hrc:506
msgctxt "STR_DATE"
msgid "Date"
msgstr "दिनांक"
-#: sc/inc/globstr.hrc:506
+#: sc/inc/globstr.hrc:507
msgctxt "STR_TIME"
msgid "Time"
msgstr "समय"
-#: sc/inc/globstr.hrc:507
+#: sc/inc/globstr.hrc:508
msgctxt "STR_SCIENTIFIC"
msgid "Scientific"
msgstr "वैज्ञानिक"
-#: sc/inc/globstr.hrc:508
+#: sc/inc/globstr.hrc:509
#, fuzzy
msgctxt "STR_FRACTION"
msgid "Fraction"
msgstr "प्रकार्य"
-#: sc/inc/globstr.hrc:509
+#: sc/inc/globstr.hrc:510
msgctxt "STR_BOOLEAN_VALUE"
msgid "Boolean Value"
msgstr "बूलिये मान"
-#: sc/inc/globstr.hrc:510
+#: sc/inc/globstr.hrc:511
msgctxt "STR_TEXT"
msgid "Text"
msgstr "पाठ"
-#: sc/inc/globstr.hrc:511
+#: sc/inc/globstr.hrc:512
msgctxt "STR_QUERY_PIVOTTABLE_DELTAB"
msgid "The selected sheet(s) contain source data of related pivot tables that will be lost. Are you sure you want to delete the selected sheet(s)?"
msgstr ""
-#: sc/inc/globstr.hrc:512
+#: sc/inc/globstr.hrc:513
msgctxt "STR_ERR_NAME_INVALID_CELL_REF"
msgid "Invalid name. Reference to a cell, or a range of cells not allowed."
msgstr ""
@@ -10673,8 +10678,8 @@ msgstr "प्रकार"
#: sc/inc/scfuncs.hrc:3010
msgctxt "SC_OPCODE_T_TEST"
-msgid "Mode specifies the number of distribution tails to return. 1= one-tailed, 2 = two-tailed distribution"
-msgstr "प्रकार वापस की जानेवाला वितरण टैल्स की संख्या को निर्दिष्ट करता है. 1= अकेला टैल्स किया, 2 = दो-टैल वितरण"
+msgid "Mode specifies the number of distribution tails to return. 1 = one-tailed, 2 = two-tailed distribution"
+msgstr ""
#: sc/inc/scfuncs.hrc:3011
msgctxt "SC_OPCODE_T_TEST"
@@ -10720,8 +10725,8 @@ msgstr "प्रकार"
#: sc/inc/scfuncs.hrc:3024
msgctxt "SC_OPCODE_T_TEST_MS"
-msgid "Mode specifies the number of distribution tails to return. 1= one-tailed, 2 = two-tailed distribution"
-msgstr "प्रकार वापस की जानेवाला वितरण टैल्स की संख्या को निर्दिष्ट करता है. 1= अकेला टैल्स किया, 2 = दो-टैल वितरण"
+msgid "Mode specifies the number of distribution tails to return. 1 = one-tailed, 2 = two-tailed distribution"
+msgstr ""
#: sc/inc/scfuncs.hrc:3025
msgctxt "SC_OPCODE_T_TEST_MS"
@@ -18507,22 +18512,22 @@ msgctxt "mergecellsdialog|MergeCellsDialog"
msgid "Merge Cells"
msgstr "कोष्ठ मिलाएँ"
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:81
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:84
msgctxt "mergecellsdialog|label"
msgid "Some cells are not empty."
msgstr ""
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:96
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:99
msgctxt "mergecellsdialog|move-cells-radio"
msgid "Move the contents of the hidden cells into the first cell"
msgstr ""
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:112
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:115
msgctxt "mergecellsdialog|empty-cells-radio"
msgid "Empty the contents of the hidden cells"
msgstr ""
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:128
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:131
msgctxt "mergecellsdialog|keep-content-radio"
msgid "Keep the contents of the hidden cells"
msgstr ""
diff --git a/source/hi/sd/messages.po b/source/hi/sd/messages.po
index 82f677bd092..7b4a47db667 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+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"
@@ -13,178 +13,178 @@ msgstr ""
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-#: sd/inc/DocumentRenderer.hrc:29
+#: sd/inc/DocumentRenderer.hrc:27
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Slides"
msgstr "स्लाइड"
-#: sd/inc/DocumentRenderer.hrc:30
+#: sd/inc/DocumentRenderer.hrc:28
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Handouts"
msgstr "परचा"
-#: sd/inc/DocumentRenderer.hrc:31
+#: sd/inc/DocumentRenderer.hrc:29
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Notes"
msgstr "टिप्पणी"
-#: sd/inc/DocumentRenderer.hrc:32
+#: sd/inc/DocumentRenderer.hrc:30
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Outline"
msgstr "रूपरेखा"
-#: sd/inc/DocumentRenderer.hrc:37
+#: sd/inc/DocumentRenderer.hrc:35
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "According to layout"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:38
+#: sd/inc/DocumentRenderer.hrc:36
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "1"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:39
+#: sd/inc/DocumentRenderer.hrc:37
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "2"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:40
+#: sd/inc/DocumentRenderer.hrc:38
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "3"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:41
+#: sd/inc/DocumentRenderer.hrc:39
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "4"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:42
+#: sd/inc/DocumentRenderer.hrc:40
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "6"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:43
+#: sd/inc/DocumentRenderer.hrc:41
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "9"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:48
+#: sd/inc/DocumentRenderer.hrc:46
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_ORDER_CHOICES"
msgid "Left to right, then down"
msgstr "बायाँ से दायाँ फिर नीचे"
-#: sd/inc/DocumentRenderer.hrc:49
+#: sd/inc/DocumentRenderer.hrc:47
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_ORDER_CHOICES"
msgid "Top to bottom, then right"
msgstr "ऊपर से नीचे, फिर दाएँ"
-#: sd/inc/DocumentRenderer.hrc:54
+#: sd/inc/DocumentRenderer.hrc:52
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Original colors"
msgstr "मौलिक रंग"
-#: sd/inc/DocumentRenderer.hrc:55
+#: sd/inc/DocumentRenderer.hrc:53
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Grayscale"
msgstr "धूसर"
-#: sd/inc/DocumentRenderer.hrc:56
+#: sd/inc/DocumentRenderer.hrc:54
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Black & white"
msgstr "काला व सफेद"
-#: sd/inc/DocumentRenderer.hrc:61
+#: sd/inc/DocumentRenderer.hrc:59
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Original size"
msgstr "मूल आकार"
-#: sd/inc/DocumentRenderer.hrc:62
+#: sd/inc/DocumentRenderer.hrc:60
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Fit to printable page"
msgstr "छापने योग्य पृष्ठ में बैठाएँ"
-#: sd/inc/DocumentRenderer.hrc:63
+#: sd/inc/DocumentRenderer.hrc:61
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Distribute on multiple sheets of paper"
msgstr "कागज के बहुल शीट पर वितरित करें"
-#: sd/inc/DocumentRenderer.hrc:64
+#: sd/inc/DocumentRenderer.hrc:62
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Tile sheet of paper with repeated slides"
msgstr "दुहराए गए स्लाइड के साथ कागज का शीट"
-#: sd/inc/DocumentRenderer.hrc:69
+#: sd/inc/DocumentRenderer.hrc:67
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Original size"
msgstr "मूल आकार"
-#: sd/inc/DocumentRenderer.hrc:70
+#: sd/inc/DocumentRenderer.hrc:68
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Fit to printable page"
msgstr "छापने योग्य पृष्ठ में बैठाएँ"
-#: sd/inc/DocumentRenderer.hrc:71
+#: sd/inc/DocumentRenderer.hrc:69
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Distribute on multiple sheets of paper"
msgstr "कागज के बहुल शीट पर वितरित करें"
-#: sd/inc/DocumentRenderer.hrc:72
+#: sd/inc/DocumentRenderer.hrc:70
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Tile sheet of paper with repeated pages"
msgstr "दुहराए गए पृष्ठों के साथ कागज का शीट"
-#: sd/inc/DocumentRenderer.hrc:77
+#: sd/inc/DocumentRenderer.hrc:75
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "All pages"
msgstr "सभी पृष्ठ"
-#: sd/inc/DocumentRenderer.hrc:78
+#: sd/inc/DocumentRenderer.hrc:76
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "Front sides / right pages"
msgstr "अग्र भाग / दाहिना पृष्ठ"
-#: sd/inc/DocumentRenderer.hrc:79
+#: sd/inc/DocumentRenderer.hrc:77
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "Back sides / left pages"
msgstr "पिछला किनारा / बायाँ पृष्ठ"
-#: sd/inc/DocumentRenderer.hrc:84
+#: sd/inc/DocumentRenderer.hrc:82
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~All slides"
msgstr "सभी स्लाइड (_s)"
-#: sd/inc/DocumentRenderer.hrc:85
+#: sd/inc/DocumentRenderer.hrc:83
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~Slides"
msgstr "स्लाइड"
-#: sd/inc/DocumentRenderer.hrc:86
+#: sd/inc/DocumentRenderer.hrc:84
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Se~lection"
msgstr "चयन (~l)"
-#: sd/inc/DocumentRenderer.hrc:91
+#: sd/inc/DocumentRenderer.hrc:89
#, fuzzy
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~All pages"
msgstr "सभी पृष्ठ"
-#: sd/inc/DocumentRenderer.hrc:92
+#: sd/inc/DocumentRenderer.hrc:90
#, fuzzy
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Pa~ges"
msgstr "पृष्ठ"
-#: sd/inc/DocumentRenderer.hrc:93
+#: sd/inc/DocumentRenderer.hrc:91
#, fuzzy
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Se~lection"
diff --git a/source/hi/svx/messages.po b/source/hi/svx/messages.po
index 448833b966f..29e1e87ac9a 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: 2018-05-16 16:53+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+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"
@@ -5513,7 +5513,7 @@ msgstr ""
#: svx/uiconfig/ui/safemodedialog.ui:432
msgctxt "safemodedialog|btn_create_zip"
-msgid "Create Zip Archive from User Profile"
+msgid "Archive User Profile"
msgstr ""
#: svx/uiconfig/ui/safemodedialog.ui:445
@@ -9175,9 +9175,9 @@ msgid "Red"
msgstr "लाल"
#: include/svx/strings.hrc:565
-msgctxt "RID_SVXSTR_COLOR_VIOLET"
-msgid "Violet"
-msgstr "बैंगनी"
+msgctxt "RID_SVXSTR_COLOR_MAGENTA"
+msgid "Magenta"
+msgstr "मैजेन्टा"
#: include/svx/strings.hrc:566
#, fuzzy
@@ -9244,8 +9244,8 @@ msgid "Light Red"
msgstr "हल्का लाल"
#: include/svx/strings.hrc:579
-msgctxt "RID_SVXSTR_COLOR_LIGHTVIOLET"
-msgid "Light Violet"
+msgctxt "RID_SVXSTR_COLOR_LIGHTMAGENTA"
+msgid "Light Magenta"
msgstr ""
#: include/svx/strings.hrc:580
@@ -9311,8 +9311,8 @@ msgid "Dark Red"
msgstr "गहरा लाल"
#: include/svx/strings.hrc:593
-msgctxt "RID_SVXSTR_COLOR_DARKVIOLET1"
-msgid "Dark Violet"
+msgctxt "RID_SVXSTR_COLOR_DARKMAGENTA"
+msgid "Dark Magenta"
msgstr ""
#: include/svx/strings.hrc:594
@@ -9347,55 +9347,55 @@ msgstr ""
#. Elements of the Tonal color palette
#: include/svx/strings.hrc:601
+msgctxt "RID_SVXSTR_COLOR_VIOLET"
+msgid "Violet"
+msgstr "बैंगनी"
+
+#: include/svx/strings.hrc:602
msgctxt "RID_SVXSTR_COLOR_VIOLET_OUG"
msgid "Violet (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:602
+#: include/svx/strings.hrc:603
msgctxt "RID_SVXSTR_COLOR_BLUE_OUG"
msgid "Blue (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:603
+#: include/svx/strings.hrc:604
msgctxt "RID_SVXSTR_COLOR_AZURE_OUG"
msgid "Azure (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:604
+#: include/svx/strings.hrc:605
msgctxt "RID_SVXSTR_COLOR_SPRINGGREEN_OUG"
msgid "Spring Green (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:605
+#: include/svx/strings.hrc:606
msgctxt "RID_SVXSTR_COLOR_GREEN_OUG"
msgid "Green (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:606
+#: include/svx/strings.hrc:607
msgctxt "RID_SVXSTR_COLOR_CHARTREUSEGREEN_OUG"
msgid "Chartreuse Green (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:607
+#: include/svx/strings.hrc:608
msgctxt "RID_SVXSTR_COLOR_ORANGE_OUG"
msgid "Orange (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:608
+#: include/svx/strings.hrc:609
msgctxt "RID_SVXSTR_COLOR_RED_OUG"
msgid "Red (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:609
+#: include/svx/strings.hrc:610
msgctxt "RID_SVXSTR_COLOR_ROSE_OUG"
msgid "Rose (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:610
-msgctxt "RID_SVXSTR_COLOR_MAGENTA"
-msgid "Magenta"
-msgstr "मैजेन्टा"
-
#: include/svx/strings.hrc:611
msgctxt "RID_SVXSTR_COLOR_AZURE"
msgid "Azure"
@@ -12554,13 +12554,13 @@ msgstr "दाहिना बिंदु तीर बुलेट"
#: include/svx/strings.hrc:1273
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_6"
-msgid "Check mark bullets"
-msgstr "चेक मार्क बुलेट"
+msgid "Cross mark bullets"
+msgstr ""
#: include/svx/strings.hrc:1274
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_7"
-msgid "Tick mark bullets"
-msgstr "टिक मार्क बुलेट"
+msgid "Check mark bullets"
+msgstr ""
#: include/svx/strings.hrc:1275
#, fuzzy
diff --git a/source/hi/sw/messages.po b/source/hi/sw/messages.po
index 52e03afd37f..d821e4f5e22 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: 2018-05-22 13:17+0200\n"
+"POT-Creation-Date: 2018-06-12 14:41+0200\n"
"PO-Revision-Date: 2018-02-20 18:06+0000\n"
"Last-Translator: pranavk <pranav913@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1221,13 +1221,13 @@ msgstr "उद्धरण"
#: sw/inc/strings.hrc:172
msgctxt "STR_POOLCOLL_TOX_ILLUSH"
-msgid "Illustration Index Heading"
-msgstr "चित्र सूची शीर्षक"
+msgid "Figure Index Heading"
+msgstr ""
#: sw/inc/strings.hrc:173
msgctxt "STR_POOLCOLL_TOX_ILLUS1"
-msgid "Illustration Index 1"
-msgstr "चित्र सूची 1"
+msgid "Figure Index 1"
+msgstr ""
#: sw/inc/strings.hrc:174
msgctxt "STR_POOLCOLL_TOX_OBJECTH"
@@ -3707,8 +3707,8 @@ msgstr "वस्तु सूची"
#: sw/inc/strings.hrc:672
msgctxt "STR_TOX_ILL"
-msgid "Illustration Index"
-msgstr "चित्र सूची"
+msgid "Table of Figures"
+msgstr ""
#: sw/inc/strings.hrc:673
#, c-format
@@ -9593,79 +9593,79 @@ msgctxt "footnotepage|label5"
msgid "Continuation Notice"
msgstr "पुनरारंभ सूचना"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:49
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:55
#, fuzzy
msgctxt "footnotesendnotestabpage|ftnntnum"
msgid "_Restart numbering"
msgstr "क्रमांकण फिर प्रारंभ करें"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:91
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:93
#, fuzzy
msgctxt "footnotesendnotestabpage|ftnoffset_label"
msgid "_Start at:"
msgstr "पर प्रारंभ करें"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:112
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:111
msgctxt "footnotesendnotestabpage|ftnntnumfmt"
msgid "Custom _format"
msgstr "पसंदीदा प्रारूप (_f):"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:155
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:150
#, fuzzy
msgctxt "footnotesendnotestabpage|ftnsuffix_label"
msgid "Aft_er:"
msgstr "बाद"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:199
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:188
msgctxt "footnotesendnotestabpage|ftnprefix_label"
msgid "Be_fore:"
msgstr "पहले (_f):"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:228
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:212
msgctxt "footnotesendnotestabpage|ftnntattextend"
msgid "Collec_t at end of text"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:252
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:234
msgctxt "footnotesendnotestabpage|label1"
msgid "Footnotes"
msgstr "पाद टीका"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:289
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:271
msgctxt "footnotesendnotestabpage|endntattextend"
msgid "C_ollect at end of section"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:315
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:295
#, fuzzy
msgctxt "footnotesendnotestabpage|endntnum"
msgid "_Restart numbering"
msgstr "क्रमांकण फिर प्रारंभ करें"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:357
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:333
#, fuzzy
msgctxt "footnotesendnotestabpage|endoffset_label"
msgid "_Start at:"
msgstr "पर प्रारंभ करें"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:378
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:351
#, fuzzy
msgctxt "footnotesendnotestabpage|endntnumfmt"
msgid "_Custom format"
msgstr "पसंदीदा प्रारूप (_f):"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:421
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:390
#, fuzzy
msgctxt "footnotesendnotestabpage|endsuffix_label"
msgid "Aft_er:"
msgstr "बाद"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:465
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:428
msgctxt "footnotesendnotestabpage|endprefix_label"
msgid "Be_fore:"
msgstr "पहले (_f):"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:500
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:458
msgctxt "footnotesendnotestabpage|label2"
msgid "Endnotes"
msgstr "अंत टीका"
@@ -9695,27 +9695,27 @@ msgctxt "formatsectiondialog|notes"
msgid "Footnotes/Endnotes"
msgstr "पाद टीका/अंतिम टीका"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:63
+#: sw/uiconfig/swriter/ui/formattablepage.ui:77
msgctxt "formattablepage|nameft"
msgid "_Name"
msgstr "नाम (_N)"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:79
+#: sw/uiconfig/swriter/ui/formattablepage.ui:91
msgctxt "formattablepage|widthft"
msgid "W_idth"
msgstr "चौड़ाई (_i)"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:110
+#: sw/uiconfig/swriter/ui/formattablepage.ui:120
msgctxt "formattablepage|relwidth"
msgid "Relati_ve"
msgstr "सम्बन्धित (_v)"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:155
+#: sw/uiconfig/swriter/ui/formattablepage.ui:160
msgctxt "formattablepage|label45"
msgid "Properties"
msgstr "गुण"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:194
+#: sw/uiconfig/swriter/ui/formattablepage.ui:195
msgctxt "formattablepage|leftft"
msgid "Lef_t"
msgstr "बायाँ (_t)"
@@ -9725,62 +9725,62 @@ msgctxt "formattablepage|rightft"
msgid "Ri_ght"
msgstr "दाहिना (_g)"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:228
+#: sw/uiconfig/swriter/ui/formattablepage.ui:226
msgctxt "formattablepage|aboveft"
msgid "_Above"
msgstr "ऊपरी (_A)"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:245
+#: sw/uiconfig/swriter/ui/formattablepage.ui:241
msgctxt "formattablepage|belowft"
msgid "_Below"
msgstr "नीचे (_B)"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:320
+#: sw/uiconfig/swriter/ui/formattablepage.ui:311
msgctxt "formattablepage|label46"
msgid "Spacing"
msgstr "अंतरण"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:362
+#: sw/uiconfig/swriter/ui/formattablepage.ui:349
msgctxt "formattablepage|full"
msgid "A_utomatic"
msgstr "स्वचालित (_u)"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:380
+#: sw/uiconfig/swriter/ui/formattablepage.ui:365
msgctxt "formattablepage|left"
msgid "_Left"
msgstr "बायां (_L)"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:398
+#: sw/uiconfig/swriter/ui/formattablepage.ui:381
msgctxt "formattablepage|fromleft"
msgid "_From left"
msgstr "बायीं ओर से (_F)"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:416
+#: sw/uiconfig/swriter/ui/formattablepage.ui:397
msgctxt "formattablepage|right"
msgid "R_ight"
msgstr "दाहिना (_i)"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:435
+#: sw/uiconfig/swriter/ui/formattablepage.ui:413
msgctxt "formattablepage|center"
msgid "_Center"
msgstr "केन्द्रित (_C)"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:453
+#: sw/uiconfig/swriter/ui/formattablepage.ui:429
msgctxt "formattablepage|free"
msgid "_Manual"
msgstr "दस्ती (_M)"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:478
+#: sw/uiconfig/swriter/ui/formattablepage.ui:452
msgctxt "formattablepage|label43"
msgid "Alignment"
msgstr "संरेखण"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:522
+#: sw/uiconfig/swriter/ui/formattablepage.ui:491
msgctxt "formattablepage|label53"
msgid "Text _direction"
msgstr "पाठ दिशा (_d)"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:553
+#: sw/uiconfig/swriter/ui/formattablepage.ui:519
msgctxt "formattablepage|label44"
msgid "Properties "
msgstr "गुण"
@@ -10153,24 +10153,29 @@ msgctxt "headerfootermenu|insert_pagenumber"
msgid "Insert Page Number"
msgstr ""
-#: sw/uiconfig/swriter/ui/indentpage.ui:52
+#: sw/uiconfig/swriter/ui/headerfootermenu.ui:42
+msgctxt "headerfootermenu|insert_pagecount"
+msgid "Insert Page Count"
+msgstr ""
+
+#: sw/uiconfig/swriter/ui/indentpage.ui:57
#, fuzzy
msgctxt "indentpage|label1"
msgid "_Before section"
msgstr "खंड के पहले"
-#: sw/uiconfig/swriter/ui/indentpage.ui:67
+#: sw/uiconfig/swriter/ui/indentpage.ui:71
#, fuzzy
msgctxt "indentpage|label3"
msgid "_After section"
msgstr "खंड के बाद"
-#: sw/uiconfig/swriter/ui/indentpage.ui:113
+#: sw/uiconfig/swriter/ui/indentpage.ui:115
msgctxt "indentpage|label2"
msgid "Indent"
msgstr "हाशिया"
-#: sw/uiconfig/swriter/ui/indentpage.ui:142
+#: sw/uiconfig/swriter/ui/indentpage.ui:155
msgctxt "indentpage|preview-atkobject"
msgid "Example"
msgstr "उदाहरण"
@@ -13888,7 +13893,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:68
msgctxt "optcompatpage|format"
-msgid "MS Word-compatible trailing blanks"
+msgid "Word-compatible trailing blanks"
msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:69
@@ -13898,7 +13903,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:70
msgctxt "optcompatpage|format"
-msgid "A database field (e.g., MailMerge) with empty value hides its paragraph"
+msgid "Hide paragraphs of database fields (e.g., mail merge) with an empty value"
msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:71
@@ -16725,123 +16730,123 @@ msgctxt "tableproperties|background"
msgid "Background"
msgstr "पृष्ठभूमि"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:25
-msgctxt "tabletextflowpage|liststore1"
-msgid "Horizontal"
-msgstr "क्षैतिज"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:29
-msgctxt "tabletextflowpage|liststore1"
-msgid "Vertical"
-msgstr "लम्बवत"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:33
-msgctxt "tabletextflowpage|liststore1"
-msgid "Use superordinate object settings"
-msgstr "अधिस्थ वस्तु सेटिंग प्रयोग करें"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:47
-msgctxt "tabletextflowpage|liststore2"
-msgid "Top"
-msgstr "ऊपर"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:51
-msgctxt "tabletextflowpage|liststore2"
-msgid "Centered"
-msgstr "केन्द्रित"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:55
-msgctxt "tabletextflowpage|liststore2"
-msgid "Bottom"
-msgstr "नीचे"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:97
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:53
msgctxt "tabletextflowpage|break"
msgid "_Break"
msgstr "अंतराल (_B)"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:112
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:68
msgctxt "tabletextflowpage|page"
msgid "_Page"
msgstr "पृष्ठ (_P)"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:132
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:87
msgctxt "tabletextflowpage|column"
msgid "Col_umn"
msgstr "स्तंभ (_u)"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:151
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:106
msgctxt "tabletextflowpage|before"
msgid "Be_fore"
msgstr "पहले (_f)"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:171
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:125
msgctxt "tabletextflowpage|after"
msgid "_After"
msgstr "पश्चात (_A)"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:203
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:158
msgctxt "tabletextflowpage|pagestyle"
msgid "With Page St_yle"
msgstr "पृष्ठ शैली सहित (_y)"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:224
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:177
msgctxt "tabletextflowpage|pagenoft"
msgid "Page _number"
msgstr "पृष्ठ संख्या (_N)"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:257
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:213
#, fuzzy
msgctxt "tabletextflowpage|pagestylelb-atkobject"
msgid "With Page Style"
msgstr "पृष्ठ शैली सहित (_y)"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:274
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:230
msgctxt "tabletextflowpage|split"
msgid "Allow _table to split across pages and columns"
msgstr "पृष्ठ व स्तंभ के आरपार तोड़ने के लिए सारणी को अनुमति दें (_t)"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:289
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:245
msgctxt "tabletextflowpage|splitrow"
msgid "Allow row to break a_cross pages and columns"
msgstr "पृष्ठ व स्तंभ के आरपार तोड़ने के लिए पंक्ति को अनुमति दें (_c)"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:306
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:262
msgctxt "tabletextflowpage|keep"
msgid "_Keep with next paragraph"
msgstr "अगले अनुच्छेद में रखें (_K)"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:328
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:284
msgctxt "tabletextflowpage|label40"
msgid "Text _orientation"
msgstr "पाठ अभिमुखन (_o)"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:361
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:298
+msgctxt "tabletextflowpage|liststore1"
+msgid "Horizontal"
+msgstr "क्षैतिज"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:299
+msgctxt "tabletextflowpage|liststore1"
+msgid "Vertical"
+msgstr "लम्बवत"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:300
+msgctxt "tabletextflowpage|liststore1"
+msgid "Use superordinate object settings"
+msgstr "अधिस्थ वस्तु सेटिंग प्रयोग करें"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:321
msgctxt "tabletextflowpage|headline"
msgid "R_epeat heading"
msgstr "शीर्षक दुहराएँ (_e)"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:383
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:343
msgctxt "tabletextflowpage|label38"
msgid "The first "
msgstr "पहला"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:396
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:356
msgctxt "tabletextflowpage|label39"
msgid "rows"
msgstr "पंक्तियाँ"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:434
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:395
msgctxt "tabletextflowpage|label35"
msgid "Text Flow"
msgstr "पाठ बहाव"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:467
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:428
msgctxt "tabletextflowpage|label41"
msgid "_Vertical alignment"
msgstr "लंबवत संरेखण (_V)"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:495
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:442
+msgctxt "tabletextflowpage|liststore2"
+msgid "Top"
+msgstr "ऊपर"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:443
+msgctxt "tabletextflowpage|liststore2"
+msgid "Centered"
+msgstr "केन्द्रित"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:444
+msgctxt "tabletextflowpage|liststore2"
+msgid "Bottom"
+msgstr "नीचे"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:460
msgctxt "tabletextflowpage|label36"
msgid "Alignment"
msgstr "संरेखण"
@@ -17646,8 +17651,8 @@ msgstr "अकारादि सूची"
#: sw/uiconfig/swriter/ui/tocindexpage.ui:58
msgctxt "tocindexpage|liststore1"
-msgid "Illustration Index"
-msgstr "चित्र सूची"
+msgid "Table of Figures"
+msgstr ""
#: sw/uiconfig/swriter/ui/tocindexpage.ui:62
msgctxt "tocindexpage|liststore1"
diff --git a/source/hi/writerperfect/messages.po b/source/hi/writerperfect/messages.po
index fd9045a3882..cdbe0a14a1d 100644
--- a/source/hi/writerperfect/messages.po
+++ b/source/hi/writerperfect/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-16 16:54+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+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"
@@ -65,98 +65,98 @@ msgctxt "exportepub|generalft"
msgid "General"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:122
+#: writerperfect/uiconfig/ui/exportepub.ui:121
#, fuzzy
msgctxt "exportepub|versionft"
msgid "Version:"
msgstr "संस्करण (~V):"
-#: writerperfect/uiconfig/ui/exportepub.ui:139
+#: writerperfect/uiconfig/ui/exportepub.ui:138
msgctxt "exportepub|epub3"
msgid "EPUB 3.0"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:140
+#: writerperfect/uiconfig/ui/exportepub.ui:139
msgctxt "exportepub|epub2"
msgid "EPUB 2.0"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:175
+#: writerperfect/uiconfig/ui/exportepub.ui:174
msgctxt "exportepub|splitft"
msgid "Split method:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:192
+#: writerperfect/uiconfig/ui/exportepub.ui:191
msgctxt "exportepub|splitpage"
msgid "Page break"
msgstr "पृष्ठ अंतराल"
-#: writerperfect/uiconfig/ui/exportepub.ui:193
+#: writerperfect/uiconfig/ui/exportepub.ui:192
msgctxt "exportepub|splitheading"
msgid "Heading"
msgstr "शीर्षक"
-#: writerperfect/uiconfig/ui/exportepub.ui:228
+#: writerperfect/uiconfig/ui/exportepub.ui:227
msgctxt "exportepub|layoutft"
msgid "Layout method:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:245
+#: writerperfect/uiconfig/ui/exportepub.ui:244
msgctxt "exportepub|layoutreflowable"
msgid "Reflowable"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:246
+#: writerperfect/uiconfig/ui/exportepub.ui:245
msgctxt "exportepub|layoutfixed"
msgid "Fixed"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:281
+#: writerperfect/uiconfig/ui/exportepub.ui:280
msgctxt "exportepub|coverimageft"
msgid "Custom cover image:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:311
+#: writerperfect/uiconfig/ui/exportepub.ui:310
msgctxt "exportepub|coverbutton"
msgid "Browse..."
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:355
+#: writerperfect/uiconfig/ui/exportepub.ui:354
msgctxt "exportepub|mediadirft"
msgid "Custom media directory:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:385
+#: writerperfect/uiconfig/ui/exportepub.ui:384
msgctxt "exportepub|mediabutton"
msgid "Browse..."
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:429
+#: writerperfect/uiconfig/ui/exportepub.ui:428
msgctxt "exportepub|metadataft"
msgid "Metadata"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:470
+#: writerperfect/uiconfig/ui/exportepub.ui:468
msgctxt "exportepub|identifierft"
msgid "Identifier:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:485
+#: writerperfect/uiconfig/ui/exportepub.ui:483
msgctxt "exportepub|titleft"
msgid "Title:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:511
+#: writerperfect/uiconfig/ui/exportepub.ui:509
msgctxt "exportepub|authorft"
msgid "Author:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:537
+#: writerperfect/uiconfig/ui/exportepub.ui:535
msgctxt "exportepub|languageft"
msgid "Language:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:563
+#: writerperfect/uiconfig/ui/exportepub.ui:561
msgctxt "exportepub|dateft"
msgid "Date:"
msgstr ""
diff --git a/source/hr/cui/messages.po b/source/hr/cui/messages.po
index 509a5b36b18..1c5b9a91b59 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2018-04-25 09:42+0000\n"
"Last-Translator: Kruno <ksebetic@gmx.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -9872,97 +9872,97 @@ msgctxt "positionsizedialog|PositionAndSizeDialog"
msgid "Position and Size"
msgstr "Položaj i veličina"
-#: cui/uiconfig/ui/positionsizedialog.ui:107
+#: cui/uiconfig/ui/positionsizedialog.ui:136
msgctxt "positionsizedialog|RID_SVXPAGE_POSITION_SIZE"
msgid "Position and Size"
msgstr "Položaj i veličina"
-#: cui/uiconfig/ui/positionsizedialog.ui:129
+#: cui/uiconfig/ui/positionsizedialog.ui:182
msgctxt "positionsizedialog|RID_SVXPAGE_SWPOSSIZE"
msgid "Position and Size"
msgstr "Položaj i veličina"
-#: cui/uiconfig/ui/positionsizedialog.ui:152
+#: cui/uiconfig/ui/positionsizedialog.ui:229
msgctxt "positionsizedialog|RID_SVXPAGE_ANGLE"
msgid "Rotation"
msgstr "Rotacija"
-#: cui/uiconfig/ui/positionsizedialog.ui:175
+#: cui/uiconfig/ui/positionsizedialog.ui:276
msgctxt "positionsizedialog|RID_SVXPAGE_SLANT"
msgid "Slant & Corner Radius"
msgstr "Nagib i radijus kuta"
-#: cui/uiconfig/ui/possizetabpage.ui:40
+#: cui/uiconfig/ui/possizetabpage.ui:61
msgctxt "possizetabpage|FT_POS_X"
msgid "Position _X:"
msgstr "Položaj _X:"
-#: cui/uiconfig/ui/possizetabpage.ui:56
+#: cui/uiconfig/ui/possizetabpage.ui:75
msgctxt "possizetabpage|FT_POS_Y"
msgid "Position _Y:"
msgstr "Položaj _Y:"
-#: cui/uiconfig/ui/possizetabpage.ui:110
+#: cui/uiconfig/ui/possizetabpage.ui:128
msgctxt "possizetabpage|FT_POSREFERENCE"
msgid "_Base point:"
msgstr "_Osnovna točka:"
-#: cui/uiconfig/ui/possizetabpage.ui:148
+#: cui/uiconfig/ui/possizetabpage.ui:182
msgctxt "possizetabpage|label1"
msgid "Position"
msgstr "Položaj"
-#: cui/uiconfig/ui/possizetabpage.ui:190
+#: cui/uiconfig/ui/possizetabpage.ui:224
msgctxt "possizetabpage|FT_WIDTH"
msgid "Wi_dth:"
msgstr "Ši_rina:"
-#: cui/uiconfig/ui/possizetabpage.ui:206
+#: cui/uiconfig/ui/possizetabpage.ui:238
msgctxt "possizetabpage|FT_HEIGHT"
msgid "H_eight:"
msgstr "Visi_na:"
-#: cui/uiconfig/ui/possizetabpage.ui:247
+#: cui/uiconfig/ui/possizetabpage.ui:276
msgctxt "possizetabpage|CBX_SCALE"
msgid "_Keep ratio"
msgstr "S_ačuvaj odnos"
-#: cui/uiconfig/ui/possizetabpage.ui:279
+#: cui/uiconfig/ui/possizetabpage.ui:307
msgctxt "possizetabpage|FT_SIZEREFERENCE"
msgid "Base _point:"
msgstr "Osnovna _točka:"
-#: cui/uiconfig/ui/possizetabpage.ui:317
+#: cui/uiconfig/ui/possizetabpage.ui:361
msgctxt "possizetabpage|label2"
msgid "Size"
msgstr "Veličina"
-#: cui/uiconfig/ui/possizetabpage.ui:356
+#: cui/uiconfig/ui/possizetabpage.ui:401
msgctxt "possizetabpage|TSB_POSPROTECT"
msgid "Positio_n"
msgstr "Pol_ožaj"
-#: cui/uiconfig/ui/possizetabpage.ui:373
+#: cui/uiconfig/ui/possizetabpage.ui:418
msgctxt "possizetabpage|TSB_SIZEPROTECT"
msgid "_Size"
msgstr "_Veličina"
-#: cui/uiconfig/ui/possizetabpage.ui:397
+#: cui/uiconfig/ui/possizetabpage.ui:441
msgctxt "possizetabpage|label3"
msgid "Protect"
msgstr "Zaštiti"
-#: cui/uiconfig/ui/possizetabpage.ui:430
+#: cui/uiconfig/ui/possizetabpage.ui:475
msgctxt "possizetabpage|TSB_AUTOGROW_WIDTH"
msgid "_Fit width to text"
msgstr "P_rilagodi širinu tekstu"
-#: cui/uiconfig/ui/possizetabpage.ui:447
+#: cui/uiconfig/ui/possizetabpage.ui:492
msgctxt "possizetabpage|TSB_AUTOGROW_HEIGHT"
msgid "Fit _height to text"
msgstr "Prilagodi visi_nu tekstu"
-#: cui/uiconfig/ui/possizetabpage.ui:471
+#: cui/uiconfig/ui/possizetabpage.ui:515
msgctxt "possizetabpage|label4"
msgid "Adapt"
msgstr "Prilagodi"
@@ -10162,47 +10162,47 @@ msgctxt "recordnumberdialog|label2"
msgid "go to record"
msgstr "idi na zapis"
-#: cui/uiconfig/ui/rotationtabpage.ui:52
+#: cui/uiconfig/ui/rotationtabpage.ui:56
msgctxt "rotationtabpage|FT_POS_X"
msgid "Position _X:"
msgstr "Položaj _X:"
-#: cui/uiconfig/ui/rotationtabpage.ui:66
+#: cui/uiconfig/ui/rotationtabpage.ui:70
msgctxt "rotationtabpage|FT_POS_Y"
msgid "Position _Y:"
msgstr "Položaj _Y:"
-#: cui/uiconfig/ui/rotationtabpage.ui:116
+#: cui/uiconfig/ui/rotationtabpage.ui:123
msgctxt "rotationtabpage|FT_POSPRESETS"
msgid "_Default settings:"
msgstr "Za_dane postavke:"
-#: cui/uiconfig/ui/rotationtabpage.ui:130
+#: cui/uiconfig/ui/rotationtabpage.ui:151
msgctxt "rotationtabpage|CTL_RECT|tooltip_text"
msgid "Rotation point"
msgstr "Točka rotacije"
-#: cui/uiconfig/ui/rotationtabpage.ui:155
+#: cui/uiconfig/ui/rotationtabpage.ui:178
msgctxt "rotationtabpage|label1"
msgid "Pivot Point"
msgstr "Pivot točka"
-#: cui/uiconfig/ui/rotationtabpage.ui:197
+#: cui/uiconfig/ui/rotationtabpage.ui:220
msgctxt "rotationtabpage|FT_ANGLE"
msgid "_Angle:"
msgstr "_Kut:"
-#: cui/uiconfig/ui/rotationtabpage.ui:238
+#: cui/uiconfig/ui/rotationtabpage.ui:263
msgctxt "rotationtabpage|FT_ANGLEPRESETS"
msgid "Default _settings:"
msgstr "Zadane po_stavke:"
-#: cui/uiconfig/ui/rotationtabpage.ui:252
+#: cui/uiconfig/ui/rotationtabpage.ui:287
msgctxt "rotationtabpage|CTL_ANGLE|tooltip_text"
msgid "Rotation Angle"
msgstr "Kut rotacije"
-#: cui/uiconfig/ui/rotationtabpage.ui:277
+#: cui/uiconfig/ui/rotationtabpage.ui:314
msgctxt "rotationtabpage|label2"
msgid "Rotation Angle"
msgstr "Kut rotacije"
@@ -10582,52 +10582,52 @@ msgctxt "similaritysearchdialog|relaxbox"
msgid "_Combine"
msgstr "Z_druži"
-#: cui/uiconfig/ui/slantcornertabpage.ui:50
+#: cui/uiconfig/ui/slantcornertabpage.ui:70
msgctxt "slantcornertabpage|label5"
msgid "_X:"
msgstr "_X:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:88
+#: cui/uiconfig/ui/slantcornertabpage.ui:110
msgctxt "slantcornertabpage|label6"
msgid "_Y:"
msgstr "_Y:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:125
+#: cui/uiconfig/ui/slantcornertabpage.ui:149
msgctxt "slantcornertabpage|label3"
msgid "Control Point 1"
msgstr "Kontrolna točka 1"
-#: cui/uiconfig/ui/slantcornertabpage.ui:159
+#: cui/uiconfig/ui/slantcornertabpage.ui:183
msgctxt "slantcornertabpage|FT_RADIUS"
msgid "_Radius:"
msgstr "_Radijus:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:189
+#: cui/uiconfig/ui/slantcornertabpage.ui:214
msgctxt "slantcornertabpage|label1"
msgid "Corner Radius"
msgstr "Radijus kuta"
-#: cui/uiconfig/ui/slantcornertabpage.ui:223
+#: cui/uiconfig/ui/slantcornertabpage.ui:248
msgctxt "slantcornertabpage|FT_ANGLE"
msgid "_Angle:"
msgstr "_Kut:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:253
+#: cui/uiconfig/ui/slantcornertabpage.ui:279
msgctxt "slantcornertabpage|label2"
msgid "Slant"
msgstr "Nagib"
-#: cui/uiconfig/ui/slantcornertabpage.ui:294
+#: cui/uiconfig/ui/slantcornertabpage.ui:320
msgctxt "slantcornertabpage|label4"
msgid "_X:"
msgstr "_X:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:332
+#: cui/uiconfig/ui/slantcornertabpage.ui:360
msgctxt "slantcornertabpage|label7"
msgid "_Y:"
msgstr "_Y:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:369
+#: cui/uiconfig/ui/slantcornertabpage.ui:399
msgctxt "slantcornertabpage|label8"
msgid "Control Point 2"
msgstr "Kontrolna točka 2"
@@ -10907,112 +10907,112 @@ msgctxt "storedwebconnectiondialog|change"
msgid "_Change Password..."
msgstr "_Promijeni lozinku..."
-#: cui/uiconfig/ui/swpossizepage.ui:74
+#: cui/uiconfig/ui/swpossizepage.ui:85
msgctxt "swpossizepage|widthft"
msgid "_Width:"
msgstr "Š_irina:"
-#: cui/uiconfig/ui/swpossizepage.ui:111
+#: cui/uiconfig/ui/swpossizepage.ui:123
msgctxt "swpossizepage|heightft"
msgid "H_eight:"
msgstr "Visi_na:"
-#: cui/uiconfig/ui/swpossizepage.ui:128
+#: cui/uiconfig/ui/swpossizepage.ui:141
msgctxt "swpossizepage|ratio"
msgid "_Keep ratio"
msgstr "S_ačuvaj odnos"
-#: cui/uiconfig/ui/swpossizepage.ui:149
+#: cui/uiconfig/ui/swpossizepage.ui:162
msgctxt "swpossizepage|label2"
msgid "Size"
msgstr "Veličina"
-#: cui/uiconfig/ui/swpossizepage.ui:205
+#: cui/uiconfig/ui/swpossizepage.ui:218
msgctxt "swpossizepage|topage"
msgid "To _page"
msgstr "Na s_tranicu"
-#: cui/uiconfig/ui/swpossizepage.ui:222
+#: cui/uiconfig/ui/swpossizepage.ui:234
msgctxt "swpossizepage|topara"
msgid "To paragrap_h"
msgstr "Na od_lomak"
-#: cui/uiconfig/ui/swpossizepage.ui:238
+#: cui/uiconfig/ui/swpossizepage.ui:250
msgctxt "swpossizepage|tochar"
msgid "To cha_racter"
msgstr "Na zna_k"
-#: cui/uiconfig/ui/swpossizepage.ui:254
+#: cui/uiconfig/ui/swpossizepage.ui:266
msgctxt "swpossizepage|aschar"
msgid "_As character"
msgstr "_Kao znak"
-#: cui/uiconfig/ui/swpossizepage.ui:270
+#: cui/uiconfig/ui/swpossizepage.ui:282
msgctxt "swpossizepage|toframe"
msgid "To _frame"
msgstr "Na _okvir"
-#: cui/uiconfig/ui/swpossizepage.ui:292
+#: cui/uiconfig/ui/swpossizepage.ui:304
msgctxt "swpossizepage|label1"
msgid "Anchor"
msgstr "Sidro"
-#: cui/uiconfig/ui/swpossizepage.ui:333
+#: cui/uiconfig/ui/swpossizepage.ui:344
msgctxt "swpossizepage|horiposft"
msgid "Hori_zontal:"
msgstr "_Vodoravno:"
-#: cui/uiconfig/ui/swpossizepage.ui:347
+#: cui/uiconfig/ui/swpossizepage.ui:358
msgctxt "swpossizepage|horibyft"
msgid "b_y:"
msgstr "o_d:"
-#: cui/uiconfig/ui/swpossizepage.ui:361
+#: cui/uiconfig/ui/swpossizepage.ui:372
msgctxt "swpossizepage|vertbyft"
msgid "_by:"
msgstr "_od:"
-#: cui/uiconfig/ui/swpossizepage.ui:375
+#: cui/uiconfig/ui/swpossizepage.ui:386
msgctxt "swpossizepage|horitoft"
msgid "_to:"
msgstr "_na:"
-#: cui/uiconfig/ui/swpossizepage.ui:421
+#: cui/uiconfig/ui/swpossizepage.ui:433
msgctxt "swpossizepage|vertposft"
msgid "_Vertical:"
msgstr "_Okomito:"
-#: cui/uiconfig/ui/swpossizepage.ui:457
+#: cui/uiconfig/ui/swpossizepage.ui:470
msgctxt "swpossizepage|verttoft"
msgid "t_o:"
msgstr "n_a:"
-#: cui/uiconfig/ui/swpossizepage.ui:478
+#: cui/uiconfig/ui/swpossizepage.ui:492
msgctxt "swpossizepage|mirror"
msgid "_Mirror on even pages"
msgstr "_Preslikaj na parne stranice"
-#: cui/uiconfig/ui/swpossizepage.ui:495
+#: cui/uiconfig/ui/swpossizepage.ui:509
msgctxt "swpossizepage|followtextflow"
msgid "Follow te_xt flow"
msgstr "Prati tijek _teksta"
-#: cui/uiconfig/ui/swpossizepage.ui:518
+#: cui/uiconfig/ui/swpossizepage.ui:532
msgctxt "swpossizepage|label11"
msgid "Position"
msgstr "Položaj"
-#: cui/uiconfig/ui/swpossizepage.ui:549
+#: cui/uiconfig/ui/swpossizepage.ui:563
msgctxt "swpossizepage|pos"
msgid "Positio_n"
msgstr "Polož_aj"
-#: cui/uiconfig/ui/swpossizepage.ui:565
+#: cui/uiconfig/ui/swpossizepage.ui:579
msgctxt "swpossizepage|size"
msgid "_Size"
msgstr "_Veličina"
-#: cui/uiconfig/ui/swpossizepage.ui:587
+#: cui/uiconfig/ui/swpossizepage.ui:601
msgctxt "swpossizepage|label3"
msgid "Protect"
msgstr "Zaštiti"
@@ -11202,12 +11202,12 @@ msgctxt "textattrtabpage|label2"
msgid "Spacing to Borders"
msgstr "Razmak do obruba"
-#: cui/uiconfig/ui/textattrtabpage.ui:425
+#: cui/uiconfig/ui/textattrtabpage.ui:423
msgctxt "textattrtabpage|TSB_FULL_WIDTH"
msgid "Full _width"
msgstr "_Puna širina"
-#: cui/uiconfig/ui/textattrtabpage.ui:448
+#: cui/uiconfig/ui/textattrtabpage.ui:446
msgctxt "textattrtabpage|label3"
msgid "Text Anchor"
msgstr "Sidro teksta"
diff --git a/source/hr/filter/source/config/fragments/filters.po b/source/hr/filter/source/config/fragments/filters.po
index 440739b5ecb..068546b75e2 100644
--- a/source/hr/filter/source/config/fragments/filters.po
+++ b/source/hr/filter/source/config/fragments/filters.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: 2018-05-16 16:54+0200\n"
-"PO-Revision-Date: 2018-05-12 12:24+0000\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
+"PO-Revision-Date: 2018-06-07 16:47+0000\n"
"Last-Translator: Kruno <ksebetic@gmx.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: hr\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 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-POOTLE-MTIME: 1526127860.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1528390032.000000\n"
#: ADO_rowset_XML.xcu
msgctxt ""
@@ -392,7 +392,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Excel 97–2003"
-msgstr ""
+msgstr "Excel 97–2003"
#: MS_Excel_97_Vorlage_Template.xcu
msgctxt ""
@@ -401,7 +401,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Excel 97–2003 Template"
-msgstr ""
+msgstr "Excel 97–2003 predložak"
#: MS_Multiplan.xcu
msgctxt ""
@@ -419,7 +419,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "PowerPoint 97–2003"
-msgstr ""
+msgstr "PowerPoint 97–2003"
#: MS_PowerPoint_97_AutoPlay.xcu
msgctxt ""
@@ -428,7 +428,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "PowerPoint 97–2003 AutoPlay"
-msgstr ""
+msgstr "PowerPoint 97–2003 automatsko pokretanje"
#: MS_PowerPoint_97_Vorlage.xcu
msgctxt ""
@@ -437,7 +437,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "PowerPoint 97–2003 Template"
-msgstr ""
+msgstr "PowerPoint 97–2003 predložak"
#: MS_WinWord_5.xcu
msgctxt ""
@@ -463,8 +463,8 @@ msgctxt ""
"MS Word 2003 XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Word 2003 XML"
-msgstr "Microsoft Word 2003 XML"
+msgid "Word 2003 XML"
+msgstr "Word 2003 XML"
#: MS_Word_2007_XML.xcu
msgctxt ""
@@ -518,7 +518,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Word 97–2003"
-msgstr ""
+msgstr "Word 97–2003"
#: MS_Word_97_Vorlage.xcu
msgctxt ""
@@ -527,7 +527,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Word 97–2003 Template"
-msgstr ""
+msgstr "Word 97–2003 predložak"
#: MS_Works.xcu
msgctxt ""
@@ -1282,8 +1282,8 @@ msgctxt ""
"Calc MS Excel 2007 VBA XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Excel 2007-2016 XML (macro enabled)"
-msgstr "Microsoft Excel 2007-2016 XML (makronaredbe omogućene)"
+msgid "Excel 2007–2019 (macro-enabled)"
+msgstr "Excel 2007–2019 (omogućene makronaredbe)"
#: calc_MS_Excel_2007_XML.xcu
msgctxt ""
diff --git a/source/hr/filter/source/config/fragments/types.po b/source/hr/filter/source/config/fragments/types.po
index 3b5c96cadd9..69b59bed936 100644
--- a/source/hr/filter/source/config/fragments/types.po
+++ b/source/hr/filter/source/config/fragments/types.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: 2018-05-08 15:11+0200\n"
-"PO-Revision-Date: 2018-05-08 14:03+0000\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
+"PO-Revision-Date: 2018-06-07 16:48+0000\n"
"Last-Translator: Kruno <ksebetic@gmx.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: hr\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1525788211.000000\n"
+"X-POOTLE-MTIME: 1528390091.000000\n"
#: MS_Excel_2007_Binary.xcu
msgctxt ""
@@ -292,8 +292,8 @@ msgctxt ""
"writer_MS_Word_2003_XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Word 2003 XML"
-msgstr "Microsoft Word 2003 XML"
+msgid "Word 2003 XML"
+msgstr "Word 2003 XML"
#: writer_MS_Word_2007_XML.xcu
msgctxt ""
diff --git a/source/hr/fpicker/messages.po b/source/hr/fpicker/messages.po
index 1a38e0832fc..74c4ab37285 100644
--- a/source/hr/fpicker/messages.po
+++ b/source/hr/fpicker/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-22 13:16+0200\n"
-"PO-Revision-Date: 2018-03-09 11:27+0000\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
+"PO-Revision-Date: 2018-06-07 16:48+0000\n"
"Last-Translator: Kruno <ksebetic@gmx.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: hr\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 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-POOTLE-MTIME: 1520594842.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1528390104.000000\n"
#: include/fpicker/strings.hrc:14
msgctxt "STR_SVT_FILEPICKER_AUTO_EXTENSION"
@@ -272,13 +272,13 @@ msgstr "Enkriptiraj sa ključem GPG"
#: fpicker/uiconfig/ui/foldernamedialog.ui:8
msgctxt "foldernamedialog|FolderNameDialog"
-msgid "Folder Name ?"
-msgstr "Naziv mape?"
+msgid "Folder Name"
+msgstr "Naziv mape"
#: fpicker/uiconfig/ui/foldernamedialog.ui:91
msgctxt "foldernamedialog|label2"
-msgid "Na_me"
-msgstr "Na_ziv"
+msgid "Na_me:"
+msgstr "_Naziv:"
#: fpicker/uiconfig/ui/foldernamedialog.ui:122
msgctxt "foldernamedialog|label1"
diff --git a/source/hr/helpcontent2/source/text/shared/00.po b/source/hr/helpcontent2/source/text/shared/00.po
index b5f1575d4f3..a3684544353 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2016-05-24 12:58+0000\n"
"Last-Translator: Kruno <ksebetic@gmx.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -397,15 +397,15 @@ msgctxt ""
"00000001.xhp\n"
"hd_id3149670\n"
"help.text"
-msgid "Back"
-msgstr "Natrag"
+msgid "Reset"
+msgstr ""
#: 00000001.xhp
msgctxt ""
"00000001.xhp\n"
"par_id3145068\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optionsdialog/revert\">Resets modified values back to the $[officename] default values.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optionsdialog/revert\">Resets changes made to the current tab to those applicable when this dialog was opened.</ahelp>"
msgstr ""
#: 00000001.xhp
@@ -552,6 +552,54 @@ msgctxt ""
msgid "<variable id=\"ShiftF1\">Press Shift+F1 and point to a control to learn more about that control.</variable>"
msgstr ""
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"hd_id631527692833772\n"
+"help.text"
+msgid "Options dialog buttons"
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"hd_id831527692839432\n"
+"help.text"
+msgid "OK"
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"par_id471527692844934\n"
+"help.text"
+msgid "Save the changes in the page and close the Options dialog."
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"hd_id261527692850720\n"
+"help.text"
+msgid "Cancel"
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"par_id571527692855533\n"
+"help.text"
+msgid "Close the Options dialog and discard all changes done."
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"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 Options dialog."
+msgstr ""
+
#: 00000002.xhp
msgctxt ""
"00000002.xhp\n"
@@ -11125,7 +11173,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3151293\n"
"help.text"
-msgid "<variable id=\"linienstile\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Line Styles</emph> tab </variable>"
+msgid "<variable id=\"linienstile\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Line Styles</emph> tab</variable>"
msgstr ""
#: 00040502.xhp
@@ -11133,7 +11181,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3149317\n"
"help.text"
-msgid "<variable id=\"linienenden\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Arrow Styles</emph> tab </variable>"
+msgid "<variable id=\"linienenden\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Arrow Styles</emph> tab</variable>"
msgstr ""
#: 00040502.xhp
@@ -11173,7 +11221,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3154948\n"
"help.text"
-msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Area</emph> tab"
+msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Area</emph> tab."
msgstr ""
#: 00040502.xhp
@@ -11181,7 +11229,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3145607\n"
"help.text"
-msgid "Choose <emph>View - Styles</emph> - open context menu and choose <emph>Modify/New - Area</emph> tab (presentation documents)"
+msgid "Choose <emph>View - Styles</emph> - open context menu and choose <emph>Modify/New - Area</emph> tab (presentation documents)."
msgstr ""
#: 00040502.xhp
@@ -11189,7 +11237,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3152922\n"
"help.text"
-msgid "Choose <emph>Format - Title - Area</emph> tab (chart documents)"
+msgid "Choose <emph>Format - Title - Area</emph> tab (chart documents)."
msgstr ""
#: 00040502.xhp
@@ -11197,7 +11245,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3157894\n"
"help.text"
-msgid "Choose <emph>Format - Legend - Area</emph> tab (chart documents)"
+msgid "Choose <emph>Format - Legend - Area</emph> tab (chart documents)."
msgstr ""
#: 00040502.xhp
@@ -11205,7 +11253,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3144444\n"
"help.text"
-msgid "Choose <emph>Format - Chart Wall - Area</emph> tab (chart documents)"
+msgid "Choose <emph>Format - Chart Wall - Area</emph> tab (chart documents)."
msgstr ""
#: 00040502.xhp
@@ -11213,7 +11261,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3156543\n"
"help.text"
-msgid "Choose <emph>Format - Chart Floor - Area</emph> tab (chart documents)"
+msgid "Choose <emph>Format - Chart Floor - Area</emph> tab (chart documents)."
msgstr ""
#: 00040502.xhp
@@ -11221,7 +11269,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3150685\n"
"help.text"
-msgid "Choose <emph>Format - Chart Area - Area</emph> tab (chart documents)"
+msgid "Choose <emph>Format - Chart Area - Area</emph> tab (chart documents)."
msgstr ""
#: 00040502.xhp
@@ -11229,7 +11277,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3149664\n"
"help.text"
-msgid "Choose <emph>Slide - Properties - Background</emph> tab (in $[officename] Impress)"
+msgid "Choose <emph>Slide - Properties - Background</emph> tab (in $[officename] Impress)."
msgstr ""
#: 00040502.xhp
@@ -11237,7 +11285,15 @@ msgctxt ""
"00040502.xhp\n"
"par_id9149694\n"
"help.text"
-msgid "Choose <emph>Page - Properties - Background</emph> tab (in $[officename] Draw)"
+msgid "Choose <emph>Page - Properties - Background</emph> tab (in $[officename] Draw)."
+msgstr ""
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id841527083135387\n"
+"help.text"
+msgid "Choose <emph>Table - Properties - Background</emph> tab."
msgstr ""
#: 00040502.xhp
@@ -11349,7 +11405,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3150011\n"
"help.text"
-msgid "<variable id=\"schatte\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Shadow</emph> tab </variable>"
+msgid "<variable id=\"schatte\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Shadow</emph> tab</variable>"
msgstr ""
#: 00040502.xhp
@@ -11357,7 +11413,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3147441\n"
"help.text"
-msgid "<variable id=\"verlauf\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Gradients</emph> tab </variable>"
+msgid "<variable id=\"verlauf\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Gradients</emph> tab</variable>"
msgstr ""
#: 00040502.xhp
@@ -11365,7 +11421,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3155308\n"
"help.text"
-msgid "<variable id=\"schraffur\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Hatching</emph> tab </variable>"
+msgid "<variable id=\"schraffur\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Hatching</emph> tab</variable>"
msgstr ""
#: 00040502.xhp
@@ -11373,7 +11429,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3145800\n"
"help.text"
-msgid "<variable id=\"bitmap\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Bitmaps</emph> tab </variable>"
+msgid "<variable id=\"bitmap\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Bitmaps</emph> tab</variable>"
msgstr ""
#: 00040502.xhp
@@ -11413,7 +11469,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3156286\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F4 key </caseinline><caseinline select=\"IMPRESS\">F4 key </caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F4 key</caseinline><caseinline select=\"IMPRESS\">F4 key</caseinline></switchinline>"
msgstr ""
#: 00040502.xhp
@@ -11453,7 +11509,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3153099\n"
"help.text"
-msgid "<variable id=\"position2\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Position and Size</emph> tab </variable>"
+msgid "<variable id=\"position2\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Position and Size</emph> tab</variable>"
msgstr ""
#: 00040502.xhp
@@ -11485,7 +11541,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3145666\n"
"help.text"
-msgid "<variable id=\"ecke\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Slant & Corner Radius</emph> tab </variable>"
+msgid "<variable id=\"ecke\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Slant & Corner Radius</emph> tab</variable>"
msgstr ""
#: 00040502.xhp
@@ -11493,7 +11549,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3146081\n"
"help.text"
-msgid "<variable id=\"legende\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Callout</emph> tab (only for textbox callouts, not for custom shapes callouts) </variable>"
+msgid "<variable id=\"legende\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Callout</emph> tab (only for textbox callouts, not for custom shapes callouts)</variable>"
msgstr ""
#: 00040502.xhp
@@ -11517,7 +11573,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3149019\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F8 key </caseinline><caseinline select=\"IMPRESS\">F8 key </caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F8 key</caseinline><caseinline select=\"IMPRESS\">F8 key</caseinline></switchinline>"
msgstr ""
#: 00040502.xhp
@@ -11805,7 +11861,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3153076\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Align Center Horizontally </caseinline><defaultinline>Centered</defaultinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Align Center Horizontally</caseinline><defaultinline>Centered</defaultinline></switchinline>"
msgstr ""
#: 00040502.xhp
@@ -11845,7 +11901,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3150527\n"
"help.text"
-msgid "<variable id=\"font\">Click <emph>Fontwork</emph> icon on <emph>Drawing</emph> bar </variable>"
+msgid "<variable id=\"font\">Click <emph>Fontwork</emph> icon on <emph>Drawing</emph> bar</variable>"
msgstr ""
#: 00040502.xhp
diff --git a/source/hr/helpcontent2/source/text/shared/01.po b/source/hr/helpcontent2/source/text/shared/01.po
index c03687b76cf..5ee4b1406ea 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: 2018-05-23 23:19+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2016-12-23 07:31+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -23587,6 +23587,22 @@ msgstr ""
#: 05210100.xhp
msgctxt ""
"05210100.xhp\n"
+"hd_id471527077476052\n"
+"help.text"
+msgid "Cell, Row or Table background selector"
+msgstr ""
+
+#: 05210100.xhp
+msgctxt ""
+"05210100.xhp\n"
+"par_id661527077493366\n"
+"help.text"
+msgid "Select the table object which background area is to be filled."
+msgstr ""
+
+#: 05210100.xhp
+msgctxt ""
+"05210100.xhp\n"
"hd_id3147373\n"
"help.text"
msgid "None"
@@ -31205,15 +31221,15 @@ msgctxt ""
"06040100.xhp\n"
"hd_id3145072\n"
"help.text"
-msgid "Automatic *bold* and _underline_"
-msgstr "Automatski *masno* i _podvuci_"
+msgid "Automatic *bold*, /italic/, -strikeout- and _underline_"
+msgstr ""
#: 06040100.xhp
msgctxt ""
"06040100.xhp\n"
"par_id3153577\n"
"help.text"
-msgid "Automatically applies bold formatting to text enclosed by asterisks (*), and underline to text enclosed by underscores ( _ ), for example, *bold*. The asterisks and underscores are not displayed after the formatting is applied."
+msgid "Automatically applies bold, italic, strikethrough or underline formatting to text enclosed by asterisks (*), slashes (/), hyphens (-), and underscores (_), respectively. These characters disappear after the formatting is applied."
msgstr ""
#: 06040100.xhp
@@ -31221,7 +31237,7 @@ msgctxt ""
"06040100.xhp\n"
"par_id3153127\n"
"help.text"
-msgid "This feature does not work if the formatting characters * or _ are entered with an <link href=\"text/shared/00/00000005.xhp#IME\" name=\"Input Method Editor\">Input Method Editor</link>."
+msgid "This feature does not work if the formatting characters <item type=\"literal\">* / - _</item> are entered with an <link href=\"text/shared/00/00000005.xhp#IME\" name=\"Input Method Editor\">Input Method Editor</link>."
msgstr ""
#: 06040100.xhp
diff --git a/source/hr/helpcontent2/source/text/shared/optionen.po b/source/hr/helpcontent2/source/text/shared/optionen.po
index fd96b5ca0ea..18632c9dd4c 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: 2018-05-08 15:10+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2016-07-06 06:12+0000\n"
"Last-Translator: Kruno <ksebetic@gmx.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -83,6 +83,22 @@ msgstr ""
#: 01000000.xhp
msgctxt ""
"01000000.xhp\n"
+"hd_id551527692881035\n"
+"help.text"
+msgid "Help"
+msgstr ""
+
+#: 01000000.xhp
+msgctxt ""
+"01000000.xhp\n"
+"par_id831527692885723\n"
+"help.text"
+msgid "Opens the help contents for the Options page displayed."
+msgstr ""
+
+#: 01000000.xhp
+msgctxt ""
+"01000000.xhp\n"
"hd_id3159149\n"
"help.text"
msgid "<link href=\"text/shared/optionen/01010000.xhp\" name=\"$[officename]\">%PRODUCTNAME</link>"
@@ -4565,8 +4581,8 @@ msgctxt ""
"01030300.xhp\n"
"par_idN10640\n"
"help.text"
-msgid "Options"
-msgstr "Odrednice"
+msgid "Security Options and Warnings"
+msgstr ""
#: 01030300.xhp
msgctxt ""
@@ -4597,8 +4613,8 @@ msgctxt ""
"01030300.xhp\n"
"hd_id3168736\n"
"help.text"
-msgid "Persistently save passwords protected by a master password"
-msgstr "Trajno spremaj zaporke zaštićene glavnom zaporkom"
+msgid "Persistently save passwords for web connections"
+msgstr ""
#: 01030300.xhp
msgctxt ""
@@ -4613,8 +4629,24 @@ msgctxt ""
"01030300.xhp\n"
"hd_id3901791\n"
"help.text"
+msgid "Protected by a master password (recommended)"
+msgstr ""
+
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"par_id31527711486980\n"
+"help.text"
+msgid "Check to enable all connections' passwords to be protected by a master password."
+msgstr ""
+
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"hd_id141527711343312\n"
+"help.text"
msgid "Master Password"
-msgstr "Glavna lozinka"
+msgstr ""
#: 01030300.xhp
msgctxt ""
@@ -13733,7 +13765,7 @@ msgctxt ""
"java.xhp\n"
"hd_id3148618\n"
"help.text"
-msgid "Optional (unstable) options"
+msgid "Optional Features"
msgstr ""
#: java.xhp
@@ -13749,7 +13781,7 @@ msgctxt ""
"java.xhp\n"
"par_id3156344\n"
"help.text"
-msgid "It enables features that are not yet complete or contain known bugs. The list of these features is different version by version, or even it can be empty."
+msgid "Enables features that are not yet complete or may contain known bugs. The list of these features is different version by version, or even it can be empty."
msgstr ""
#: java.xhp
@@ -13765,7 +13797,7 @@ msgctxt ""
"java.xhp\n"
"par_id3156345\n"
"help.text"
-msgid "It enables macro recording, so the <link href=\"text/shared/guide/macro_recording.xhp\" name=\"Tools - Macros - Record Macro\"><item type=\"menuitem\">Tools - Macros - Record Macro</item></link> menu item will be available."
+msgid "Enables macro recording. The <link href=\"text/shared/guide/macro_recording.xhp\" name=\"Tools - Macros - Record Macro\"><item type=\"menuitem\">Tools - Macros - Record Macro</item></link> menu item is available."
msgstr ""
#: java.xhp
diff --git a/source/hr/officecfg/registry/data/org/openoffice/Office/UI.po b/source/hr/officecfg/registry/data/org/openoffice/Office/UI.po
index f74aaeed610..c301a264055 100644
--- a/source/hr/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/hr/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-22 13:17+0200\n"
-"PO-Revision-Date: 2018-05-08 14:03+0000\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
+"PO-Revision-Date: 2018-06-07 16:49+0000\n"
"Last-Translator: Kruno <ksebetic@gmx.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: hr\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 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-POOTLE-MTIME: 1525788224.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1528390159.000000\n"
#: BaseWindowState.xcu
msgctxt ""
@@ -149,7 +149,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Form Horizontal Scroll Bar"
-msgstr ""
+msgstr "Od vodoravne klizne trake"
#: BasicIDECommands.xcu
msgctxt ""
@@ -25342,7 +25342,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Tabbed"
-msgstr ""
+msgstr "Kartično"
#: ToolbarMode.xcu
msgctxt ""
@@ -25351,7 +25351,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Groupedbar Compact"
-msgstr ""
+msgstr "Grupna traka kompaktno"
#: ToolbarMode.xcu
msgctxt ""
@@ -25360,7 +25360,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Groupedbar"
-msgstr ""
+msgstr "Grupna traka"
#: ToolbarMode.xcu
msgctxt ""
@@ -26520,8 +26520,8 @@ msgctxt ""
"..WriterCommands.UserInterface.Commands..uno:TextAttributes\n"
"Label\n"
"value.text"
-msgid "Text Attributes"
-msgstr "Svojstva teksta"
+msgid "Text Attributes..."
+msgstr "Atributi teksta..."
#: WriterCommands.xcu
msgctxt ""
diff --git a/source/hr/readlicense_oo/docs.po b/source/hr/readlicense_oo/docs.po
index 4aad72a7463..43621fd390b 100644
--- a/source/hr/readlicense_oo/docs.po
+++ b/source/hr/readlicense_oo/docs.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: 2018-04-17 15:54+0200\n"
-"PO-Revision-Date: 2018-04-22 12:47+0000\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
+"PO-Revision-Date: 2018-06-07 16:49+0000\n"
"Last-Translator: Kruno <ksebetic@gmx.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: hr\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1524401240.000000\n"
+"X-POOTLE-MTIME: 1528390172.000000\n"
#: readme.xrm
msgctxt ""
@@ -117,8 +117,8 @@ msgctxt ""
"readme.xrm\n"
"macxiOSX\n"
"readmeitem.text"
-msgid "MacOSX 10.8 (Mountain Lion) or higher"
-msgstr "MacOSX 10.8 (Mountain Lion) ili noviji"
+msgid "MacOSX 10.9 (Mavericks) or higher"
+msgstr "MacOSX 10.9 (Mavericks) ili novije"
#: readme.xrm
msgctxt ""
diff --git a/source/hr/sc/messages.po b/source/hr/sc/messages.po
index 867cda97b5b..05baef88c96 100644
--- a/source/hr/sc/messages.po
+++ b/source/hr/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: 2018-05-22 13:16+0200\n"
-"PO-Revision-Date: 2018-05-02 19:03+0000\n"
+"POT-Creation-Date: 2018-06-12 14:40+0200\n"
+"PO-Revision-Date: 2018-06-09 06:15+0000\n"
"Last-Translator: Kruno <ksebetic@gmx.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: hr\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 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-POOTLE-MTIME: 1525287838.000000\n"
+"X-POOTLE-MTIME: 1528524945.000000\n"
#: sc/inc/compiler.hrc:27
msgctxt "RID_FUNCTION_CATEGORIES"
@@ -1870,16 +1870,21 @@ msgid "Nested arrays are not supported."
msgstr "Ugnježđeni nizovi nisu podržani."
#: sc/inc/globstr.hrc:390
+msgctxt "STR_ERR_LONG_BAD_ARRAY_CONTENT"
+msgid "Unsupported inline array content."
+msgstr ""
+
+#: sc/inc/globstr.hrc:391
msgctxt "STR_UNDO_TEXTTOCOLUMNS"
msgid "Text to Columns"
msgstr "Tekst u stupce"
-#: sc/inc/globstr.hrc:391
+#: sc/inc/globstr.hrc:392
msgctxt "STR_DOC_UPDATED"
msgid "Your spreadsheet has been updated with changes saved by other users."
msgstr "Vaša proračunska tablica je ažurirana promjenama napravljenim od strane drugih korisnika."
-#: sc/inc/globstr.hrc:392
+#: sc/inc/globstr.hrc:393
msgctxt "STR_DOC_WILLBESAVED"
msgid ""
"The spreadsheet must be saved now to activate sharing mode.\n"
@@ -1890,7 +1895,7 @@ msgstr ""
"\n"
"Želite li nastaviti?"
-#: sc/inc/globstr.hrc:393
+#: sc/inc/globstr.hrc:394
msgctxt "STR_DOC_WILLNOTBESAVED"
msgid ""
"Already resolved merge conflicts will be lost and your changes to the shared spreadsheet will not be saved.\n"
@@ -1901,7 +1906,7 @@ msgstr ""
"\n"
"Želite li nastaviti?"
-#: sc/inc/globstr.hrc:394
+#: sc/inc/globstr.hrc:395
msgctxt "STR_DOC_DISABLESHARED"
msgid ""
"Disabling shared mode of a spreadsheet hinders all other users of the shared spreadsheet to merge back their work.\n"
@@ -1912,7 +1917,7 @@ msgstr ""
"\n"
"Želite li nastaviti?"
-#: sc/inc/globstr.hrc:395
+#: sc/inc/globstr.hrc:396
msgctxt "STR_DOC_NOLONGERSHARED"
msgid ""
"This spreadsheet is no longer in shared mode.\n"
@@ -1923,7 +1928,7 @@ msgstr ""
"\n"
"Spremite vašu tablicu u odvojenu datoteku i ručno spojite promjene sa dijeljenom tablicom."
-#: sc/inc/globstr.hrc:396
+#: sc/inc/globstr.hrc:397
msgctxt "STR_FILE_LOCKED_TRY_LATER"
msgid ""
"The shared spreadsheet file is locked due to a merge in progress by user: '%1'\n"
@@ -1934,7 +1939,7 @@ msgstr ""
"\n"
"Dijeljenje se ne može onemogućiti nad zaključanom datotekom. Pokušajte kasnije."
-#: sc/inc/globstr.hrc:397
+#: sc/inc/globstr.hrc:398
msgctxt "STR_FILE_LOCKED_SAVE_LATER"
msgid ""
"The shared spreadsheet file is locked due to a merge in progress by user: '%1'\n"
@@ -1945,147 +1950,147 @@ msgstr ""
"\n"
"Pokušajte kasnije spremiti svoje promjene."
-#: sc/inc/globstr.hrc:398
+#: sc/inc/globstr.hrc:399
msgctxt "STR_UNKNOWN_USER"
msgid "Unknown User"
msgstr "Nepoznati korisnik"
-#: sc/inc/globstr.hrc:399
+#: sc/inc/globstr.hrc:400
msgctxt "STR_SHAPE_AUTOSHAPE"
msgid "AutoShape"
msgstr "Automatsko oblikovanje"
-#: sc/inc/globstr.hrc:400
+#: sc/inc/globstr.hrc:401
msgctxt "STR_SHAPE_RECTANGLE"
msgid "Rectangle"
msgstr "Pravokutnik"
-#: sc/inc/globstr.hrc:401
+#: sc/inc/globstr.hrc:402
msgctxt "STR_SHAPE_LINE"
msgid "Line"
msgstr "Linija"
-#: sc/inc/globstr.hrc:402
+#: sc/inc/globstr.hrc:403
msgctxt "STR_SHAPE_OVAL"
msgid "Oval"
msgstr "Ovalan oblik"
-#: sc/inc/globstr.hrc:403
+#: sc/inc/globstr.hrc:404
msgctxt "STR_FORM_BUTTON"
msgid "Button"
msgstr "Gumb"
-#: sc/inc/globstr.hrc:404
+#: sc/inc/globstr.hrc:405
msgctxt "STR_FORM_CHECKBOX"
msgid "Check Box"
msgstr "Kvadratić"
-#: sc/inc/globstr.hrc:405
+#: sc/inc/globstr.hrc:406
msgctxt "STR_FORM_OPTIONBUTTON"
msgid "Option Button"
msgstr "Gumb mogućnosti"
-#: sc/inc/globstr.hrc:406
+#: sc/inc/globstr.hrc:407
msgctxt "STR_FORM_LABEL"
msgid "Label"
msgstr "Oznaka"
-#: sc/inc/globstr.hrc:407
+#: sc/inc/globstr.hrc:408
msgctxt "STR_FORM_LISTBOX"
msgid "List Box"
msgstr "Okvir popisa"
-#: sc/inc/globstr.hrc:408
+#: sc/inc/globstr.hrc:409
msgctxt "STR_FORM_GROUPBOX"
msgid "Group Box"
msgstr "Okvir grupe"
-#: sc/inc/globstr.hrc:409
+#: sc/inc/globstr.hrc:410
msgctxt "STR_FORM_DROPDOWN"
msgid "Drop Down"
msgstr "Ispustiti"
-#: sc/inc/globstr.hrc:410
+#: sc/inc/globstr.hrc:411
msgctxt "STR_FORM_SPINNER"
msgid "Spinner"
msgstr "Traka odabira"
-#: sc/inc/globstr.hrc:411
+#: sc/inc/globstr.hrc:412
msgctxt "STR_FORM_SCROLLBAR"
msgid "Scroll Bar"
msgstr "Klizač"
-#: sc/inc/globstr.hrc:412
+#: sc/inc/globstr.hrc:413
msgctxt "STR_STYLE_FAMILY_CELL"
msgid "Cell Styles"
msgstr "Stilovi ćelije"
-#: sc/inc/globstr.hrc:413
+#: sc/inc/globstr.hrc:414
msgctxt "STR_STYLE_FAMILY_PAGE"
msgid "Page Styles"
msgstr "Stilovi stranice"
-#: sc/inc/globstr.hrc:414
+#: sc/inc/globstr.hrc:415
msgctxt "STR_ERR_DATAPILOTSOURCE"
msgid "Pivot table source data is invalid."
msgstr "Neispravni izvor podataka za pivot tablicu."
-#: sc/inc/globstr.hrc:415
+#: sc/inc/globstr.hrc:416
msgctxt "STR_OPTIONS_WARN_SEPARATORS"
msgid "Because the current formula separator settings conflict with the locale, the formula separators have been reset to their default values."
msgstr "Zato što su postavke trenutnog razdjelnika formula u sukobu s onim u lokalizacijskoj datoteci, razdjelnici formula će biti postavljeni na zadane vrijednosti."
-#: sc/inc/globstr.hrc:416
+#: sc/inc/globstr.hrc:417
msgctxt "STR_UNDO_INSERT_CURRENT_DATE"
msgid "Insert Current Date"
msgstr "Umetni trenutni datum"
-#: sc/inc/globstr.hrc:417
+#: sc/inc/globstr.hrc:418
msgctxt "STR_UNDO_INSERT_CURRENT_TIME"
msgid "Insert Current Time"
msgstr "Umetni trenutno vrijeme"
-#: sc/inc/globstr.hrc:418
+#: sc/inc/globstr.hrc:419
msgctxt "STR_MANAGE_NAMES"
msgid "Manage Names..."
msgstr "Upravljanje nazivima..."
-#: sc/inc/globstr.hrc:419
+#: sc/inc/globstr.hrc:420
msgctxt "STR_HEADER_NAME"
msgid "Name"
msgstr "Naziv"
-#: sc/inc/globstr.hrc:420
+#: sc/inc/globstr.hrc:421
msgctxt "STR_HEADER_RANGE_OR_EXPR"
msgid "Range or formula expression"
msgstr "Raspon ili formula izraz"
-#: sc/inc/globstr.hrc:421
+#: sc/inc/globstr.hrc:422
msgctxt "STR_HEADER_SCOPE"
msgid "Scope"
msgstr "Opseg"
-#: sc/inc/globstr.hrc:422
+#: sc/inc/globstr.hrc:423
msgctxt "STR_MULTI_SELECT"
msgid "(multiple)"
msgstr "(više)"
-#: sc/inc/globstr.hrc:423
+#: sc/inc/globstr.hrc:424
msgctxt "STR_GLOBAL_SCOPE"
msgid "Document (Global)"
msgstr "Dokument (globalno)"
-#: sc/inc/globstr.hrc:424
+#: sc/inc/globstr.hrc:425
msgctxt "STR_ERR_NAME_EXISTS"
msgid "Invalid name. Already in use for the selected scope."
msgstr "Neispravni naziv. Već je u uporabi u odabranom području."
-#: sc/inc/globstr.hrc:425
+#: sc/inc/globstr.hrc:426
msgctxt "STR_ERR_NAME_INVALID"
msgid "Invalid name. Only use letters, numbers and underscore."
msgstr "Neispravni naziv. Koristite samo slova, brojeve i donju crticu."
-#: sc/inc/globstr.hrc:426
+#: sc/inc/globstr.hrc:427
msgctxt "STR_UNSAVED_EXT_REF"
msgid ""
"This Document contains external references to unsaved documents.\n"
@@ -2096,217 +2101,217 @@ msgstr ""
"\n"
"Želite li nastaviti?"
-#: sc/inc/globstr.hrc:427
+#: sc/inc/globstr.hrc:428
msgctxt "STR_CLOSE_WITH_UNSAVED_REFS"
msgid "This Document is referenced by another document and not yet saved. Closing it without saving will result in data loss."
msgstr "Ovaj dokumet nije spremljen, a na njega se poziva drugi dokument. Zatvaranje ovog dokumenta bez spremanja rezultirat će gubitkom podataka."
-#: sc/inc/globstr.hrc:428
+#: sc/inc/globstr.hrc:429
msgctxt "STR_HEADER_RANGE"
msgid "Range"
msgstr "Raspon"
-#: sc/inc/globstr.hrc:429
+#: sc/inc/globstr.hrc:430
msgctxt "STR_HEADER_COND"
msgid "First Condition"
msgstr "Prvi uvjet"
-#: sc/inc/globstr.hrc:430
+#: sc/inc/globstr.hrc:431
msgctxt "STR_COND_CONDITION"
msgid "Cell value is"
msgstr "Vrijednost ćelije je"
-#: sc/inc/globstr.hrc:431
+#: sc/inc/globstr.hrc:432
msgctxt "STR_COND_COLORSCALE"
msgid "ColorScale"
msgstr "Skala boja"
-#: sc/inc/globstr.hrc:432
+#: sc/inc/globstr.hrc:433
msgctxt "STR_COND_DATABAR"
msgid "DataBar"
msgstr "Traka podataka"
-#: sc/inc/globstr.hrc:433
+#: sc/inc/globstr.hrc:434
msgctxt "STR_COND_ICONSET"
msgid "IconSet"
msgstr "Grupa ikona"
-#: sc/inc/globstr.hrc:434
+#: sc/inc/globstr.hrc:435
msgctxt "STR_COND_BETWEEN"
msgid "between"
msgstr "između"
-#: sc/inc/globstr.hrc:435
+#: sc/inc/globstr.hrc:436
msgctxt "STR_COND_NOTBETWEEN"
msgid "not between"
msgstr "nije između"
-#: sc/inc/globstr.hrc:436
+#: sc/inc/globstr.hrc:437
msgctxt "STR_COND_UNIQUE"
msgid "unique"
msgstr "jedinstven"
-#: sc/inc/globstr.hrc:437
+#: sc/inc/globstr.hrc:438
msgctxt "STR_COND_DUPLICATE"
msgid "duplicate"
msgstr "udvostruči"
-#: sc/inc/globstr.hrc:438
+#: sc/inc/globstr.hrc:439
msgctxt "STR_COND_FORMULA"
msgid "Formula is"
msgstr "Formula je"
-#: sc/inc/globstr.hrc:439
+#: sc/inc/globstr.hrc:440
msgctxt "STR_COND_TOP10"
msgid "Top Elements"
msgstr "Najbolji elementi"
-#: sc/inc/globstr.hrc:440
+#: sc/inc/globstr.hrc:441
msgctxt "STR_COND_BOTTOM10"
msgid "Bottom Elements"
msgstr "Najlošiji elementi"
-#: sc/inc/globstr.hrc:441
+#: sc/inc/globstr.hrc:442
msgctxt "STR_COND_TOP_PERCENT"
msgid "Top Percent"
msgstr "Postotak najboljih"
-#: sc/inc/globstr.hrc:442
+#: sc/inc/globstr.hrc:443
msgctxt "STR_COND_DATE"
msgid "Date is"
msgstr "Datum je"
-#: sc/inc/globstr.hrc:443
+#: sc/inc/globstr.hrc:444
msgctxt "STR_COND_BOTTOM_PERCENT"
msgid "Bottom Percent"
msgstr "Postotak najlošijih"
-#: sc/inc/globstr.hrc:444
+#: sc/inc/globstr.hrc:445
msgctxt "STR_COND_ABOVE_AVERAGE"
msgid "Above Average"
msgstr "Iznad prosjeka"
-#: sc/inc/globstr.hrc:445
+#: sc/inc/globstr.hrc:446
msgctxt "STR_COND_BELOW_AVERAGE"
msgid "Below Average"
msgstr "Ispod prosjeka"
-#: sc/inc/globstr.hrc:446
+#: sc/inc/globstr.hrc:447
msgctxt "STR_COND_ABOVE_EQUAL_AVERAGE"
msgid "Above or equal Average"
msgstr "Veći ili jednak prosjek"
-#: sc/inc/globstr.hrc:447
+#: sc/inc/globstr.hrc:448
msgctxt "STR_COND_BELOW_EQUAL_AVERAGE"
msgid "Below or equal Average"
msgstr "Manji ili jednak prosjek"
-#: sc/inc/globstr.hrc:448
+#: sc/inc/globstr.hrc:449
msgctxt "STR_COND_ERROR"
msgid "an Error code"
msgstr "kôd greške"
-#: sc/inc/globstr.hrc:449
+#: sc/inc/globstr.hrc:450
msgctxt "STR_COND_NOERROR"
msgid "not an Error code"
msgstr "nije kôd greške"
-#: sc/inc/globstr.hrc:450
+#: sc/inc/globstr.hrc:451
msgctxt "STR_COND_BEGINS_WITH"
msgid "Begins with"
msgstr "Počinje sa"
-#: sc/inc/globstr.hrc:451
+#: sc/inc/globstr.hrc:452
msgctxt "STR_COND_ENDS_WITH"
msgid "Ends with"
msgstr "Završava sa"
-#: sc/inc/globstr.hrc:452
+#: sc/inc/globstr.hrc:453
msgctxt "STR_COND_CONTAINS"
msgid "Contains"
msgstr "Sadrži"
-#: sc/inc/globstr.hrc:453
+#: sc/inc/globstr.hrc:454
msgctxt "STR_COND_NOT_CONTAINS"
msgid "Not Contains"
msgstr "Ne sadrži"
-#: sc/inc/globstr.hrc:454
+#: sc/inc/globstr.hrc:455
msgctxt "STR_COND_TODAY"
msgid "today"
msgstr "danas"
-#: sc/inc/globstr.hrc:455
+#: sc/inc/globstr.hrc:456
msgctxt "STR_COND_YESTERDAY"
msgid "yesterday"
msgstr "jučer"
-#: sc/inc/globstr.hrc:456
+#: sc/inc/globstr.hrc:457
msgctxt "STR_COND_TOMORROW"
msgid "tomorrow"
msgstr "sutra"
-#: sc/inc/globstr.hrc:457
+#: sc/inc/globstr.hrc:458
msgctxt "STR_COND_LAST7DAYS"
msgid "in the last 7 days"
msgstr "u zadnjih 7 dana"
-#: sc/inc/globstr.hrc:458
+#: sc/inc/globstr.hrc:459
msgctxt "STR_COND_THISWEEK"
msgid "this week"
msgstr "ovaj tjedan"
-#: sc/inc/globstr.hrc:459
+#: sc/inc/globstr.hrc:460
msgctxt "STR_COND_LASTWEEK"
msgid "last week"
msgstr "prošli tjedan"
-#: sc/inc/globstr.hrc:460
+#: sc/inc/globstr.hrc:461
msgctxt "STR_COND_NEXTWEEK"
msgid "next week"
msgstr "sljedeći tjedan"
-#: sc/inc/globstr.hrc:461
+#: sc/inc/globstr.hrc:462
msgctxt "STR_COND_THISMONTH"
msgid "this month"
msgstr "ovaj mjesec"
-#: sc/inc/globstr.hrc:462
+#: sc/inc/globstr.hrc:463
msgctxt "STR_COND_LASTMONTH"
msgid "last month"
msgstr "prošli mjesec"
-#: sc/inc/globstr.hrc:463
+#: sc/inc/globstr.hrc:464
msgctxt "STR_COND_NEXTMONTH"
msgid "next month"
msgstr "sljedeći mjesec"
-#: sc/inc/globstr.hrc:464
+#: sc/inc/globstr.hrc:465
msgctxt "STR_COND_THISYEAR"
msgid "this year"
msgstr "ova godina"
-#: sc/inc/globstr.hrc:465
+#: sc/inc/globstr.hrc:466
msgctxt "STR_COND_LASTYEAR"
msgid "last year"
msgstr "prošla godina"
-#: sc/inc/globstr.hrc:466
+#: sc/inc/globstr.hrc:467
msgctxt "STR_COND_NEXTYEAR"
msgid "next year"
msgstr "sljedeća godina"
-#: sc/inc/globstr.hrc:467
+#: sc/inc/globstr.hrc:468
msgctxt "STR_COND_AND"
msgid "and"
msgstr "i"
-#: sc/inc/globstr.hrc:468
+#: sc/inc/globstr.hrc:469
msgctxt "STR_ERR_CONDFORMAT_PROTECTED"
msgid "Conditional Formats can not be created, deleted or changed in protected sheets."
msgstr "Na zaštićenome listu uvjetno oblikovanje ne može biti stvoreno, obrisano ili izmijenjeno."
-#: sc/inc/globstr.hrc:469
+#: sc/inc/globstr.hrc:470
msgctxt "STR_EDIT_EXISTING_COND_FORMATS"
msgid ""
"The selected cell already contains conditional formatting. You can either edit the existing conditional format or you define a new overlapping conditional format.\n"
@@ -2317,7 +2322,7 @@ msgstr ""
"\n"
" Želite li urediti postojeće uvjetno oblikovanje?"
-#: sc/inc/globstr.hrc:470
+#: sc/inc/globstr.hrc:471
msgctxt "STR_QUERY_FORMULA_RECALC_ONLOAD_ODS"
msgid ""
"This document was last saved by an application other than %PRODUCTNAME. Some formula cells may produce different results when recalculated.\n"
@@ -2328,7 +2333,7 @@ msgstr ""
"\n"
"Želite li sada ponoviti izračun svih formula u dokumentu?"
-#: sc/inc/globstr.hrc:471
+#: sc/inc/globstr.hrc:472
msgctxt "STR_QUERY_FORMULA_RECALC_ONLOAD_XLS"
msgid ""
"This document was last saved by Excel. Some formula cells may produce different results when recalculated.\n"
@@ -2339,77 +2344,77 @@ msgstr ""
"\n"
"Želite li sada ponovno izračunati sve ćelije s formulama?"
-#: sc/inc/globstr.hrc:472
+#: sc/inc/globstr.hrc:473
msgctxt "STR_NO_INSERT_DELETE_OVER_PIVOT_TABLE"
msgid "You cannot insert or delete cells when the affected range intersects with pivot table."
msgstr "Ne možete umetati ili brisati ćelije kada se obrađivani raspon preklapa s pivot tablicom."
-#: sc/inc/globstr.hrc:473
+#: sc/inc/globstr.hrc:474
msgctxt "STR_DPFIELD_GROUP_BY_SECONDS"
msgid "Seconds"
msgstr "Sekunde"
-#: sc/inc/globstr.hrc:474
+#: sc/inc/globstr.hrc:475
msgctxt "STR_DPFIELD_GROUP_BY_MINUTES"
msgid "Minutes"
msgstr "Minute"
-#: sc/inc/globstr.hrc:475
+#: sc/inc/globstr.hrc:476
msgctxt "STR_DPFIELD_GROUP_BY_HOURS"
msgid "Hours"
msgstr "Sati"
-#: sc/inc/globstr.hrc:476
+#: sc/inc/globstr.hrc:477
msgctxt "STR_DPFIELD_GROUP_BY_DAYS"
msgid "Days"
msgstr "Dani"
-#: sc/inc/globstr.hrc:477
+#: sc/inc/globstr.hrc:478
msgctxt "STR_DPFIELD_GROUP_BY_MONTHS"
msgid "Months"
msgstr "Mjeseci"
-#: sc/inc/globstr.hrc:478
+#: sc/inc/globstr.hrc:479
msgctxt "STR_DPFIELD_GROUP_BY_QUARTERS"
msgid "Quarters"
msgstr "Kvartali"
-#: sc/inc/globstr.hrc:479
+#: sc/inc/globstr.hrc:480
msgctxt "STR_DPFIELD_GROUP_BY_YEARS"
msgid "Years"
msgstr "Godine"
-#: sc/inc/globstr.hrc:480
+#: sc/inc/globstr.hrc:481
msgctxt "STR_INVALIDVAL"
msgid "Invalid target value."
msgstr "Neispravna odredišna vrijednost."
-#: sc/inc/globstr.hrc:481
+#: sc/inc/globstr.hrc:482
msgctxt "STR_INVALIDVAR"
msgid "Undefined name for variable cell."
msgstr "Nedefinirano ime za ćeliju varijable."
-#: sc/inc/globstr.hrc:482
+#: sc/inc/globstr.hrc:483
msgctxt "STR_INVALIDFORM"
msgid "Undefined name as formula cell."
msgstr "Nedefinirano ime ćelije formule."
-#: sc/inc/globstr.hrc:483
+#: sc/inc/globstr.hrc:484
msgctxt "STR_NOFORMULA"
msgid "Formula cell must contain a formula."
msgstr "Ćelija formule mora sadržavati formulu."
-#: sc/inc/globstr.hrc:484
+#: sc/inc/globstr.hrc:485
msgctxt "STR_INVALIDINPUT"
msgid "Invalid input."
msgstr "Neispravan unos."
-#: sc/inc/globstr.hrc:485
+#: sc/inc/globstr.hrc:486
msgctxt "STR_INVALIDCONDITION"
msgid "Invalid condition."
msgstr "Neispravan uvjet."
-#: sc/inc/globstr.hrc:486
+#: sc/inc/globstr.hrc:487
msgctxt "STR_QUERYREMOVE"
msgid ""
"Should the entry\n"
@@ -2420,133 +2425,133 @@ msgstr ""
"#\n"
" biti obrisan?"
-#: sc/inc/globstr.hrc:487
+#: sc/inc/globstr.hrc:488
msgctxt "STR_COPYLIST"
msgid "Copy List"
msgstr "Kopiraj popis"
-#: sc/inc/globstr.hrc:488
+#: sc/inc/globstr.hrc:489
msgctxt "STR_COPYFROM"
msgid "List from"
msgstr "Izlistaj iz"
-#: sc/inc/globstr.hrc:489
+#: sc/inc/globstr.hrc:490
msgctxt "STR_COPYERR"
msgid "Cells without text have been ignored."
msgstr "Ćelije bez teksta su ignorirane."
-#: sc/inc/globstr.hrc:490
+#: sc/inc/globstr.hrc:491
#, c-format
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%s-click to follow hyperlink:"
msgstr "%s-klik za praćenje poveznice:"
-#: sc/inc/globstr.hrc:491
+#: sc/inc/globstr.hrc:492
msgctxt "STR_CLICKHYPERLINK"
msgid "click to open hyperlink:"
msgstr "klik za otvaranje poveznice:"
-#: sc/inc/globstr.hrc:492
+#: sc/inc/globstr.hrc:493
msgctxt "STR_PRINT_PREVIEW_NODATA"
msgid "No Data"
msgstr "Nema podataka"
-#: sc/inc/globstr.hrc:493
+#: sc/inc/globstr.hrc:494
msgctxt "STR_PRINT_PREVIEW_EMPTY_RANGE"
msgid "Print Range Empty"
msgstr "Raspon ispisa je prazan"
-#: sc/inc/globstr.hrc:494
+#: sc/inc/globstr.hrc:495
msgctxt "STR_UNDO_CONDFORMAT"
msgid "Conditional Format"
msgstr "Uvjetno oblikovanje"
-#: sc/inc/globstr.hrc:495
+#: sc/inc/globstr.hrc:496
msgctxt "STR_UNDO_CONDFORMAT_LIST"
msgid "Conditional Formats"
msgstr "Uvjetni oblici"
-#: sc/inc/globstr.hrc:496
+#: sc/inc/globstr.hrc:497
msgctxt "STR_UNDO_FORMULA_TO_VALUE"
msgid "Convert Formula To Value"
msgstr "Pretvori formulu u vrijednost"
-#: sc/inc/globstr.hrc:497
+#: sc/inc/globstr.hrc:498
msgctxt "STR_UNQUOTED_STRING"
msgid "Strings without quotes are interpreted as column/row labels."
msgstr "Znakovni nizovi bez navodnika se tumače kao naslovi stupaca/redaka."
-#: sc/inc/globstr.hrc:498
+#: sc/inc/globstr.hrc:499
msgctxt "STR_ENTER_VALUE"
msgid "Enter a value!"
msgstr "Unesite vrijednost!"
-#: sc/inc/globstr.hrc:499
+#: sc/inc/globstr.hrc:500
msgctxt "STR_TABLE_COUNT"
msgid "Sheet %1 of %2"
msgstr "List %1 od %2"
-#: sc/inc/globstr.hrc:500
+#: sc/inc/globstr.hrc:501
msgctxt "STR_FUNCTIONS_FOUND"
msgid "%1 and %2 more"
msgstr "%1 i %2 više"
-#: sc/inc/globstr.hrc:501
+#: sc/inc/globstr.hrc:502
msgctxt "STR_GENERAL"
msgid "General"
msgstr "Općenito"
-#: sc/inc/globstr.hrc:502
+#: sc/inc/globstr.hrc:503
msgctxt "STR_NUMBER"
msgid "Number"
msgstr "Broj"
-#: sc/inc/globstr.hrc:503
+#: sc/inc/globstr.hrc:504
msgctxt "STR_PERCENT"
msgid "Percent"
msgstr "Postotak"
-#: sc/inc/globstr.hrc:504
+#: sc/inc/globstr.hrc:505
msgctxt "STR_CURRENCY"
msgid "Currency"
msgstr "Valuta"
-#: sc/inc/globstr.hrc:505
+#: sc/inc/globstr.hrc:506
msgctxt "STR_DATE"
msgid "Date"
msgstr "Datum"
-#: sc/inc/globstr.hrc:506
+#: sc/inc/globstr.hrc:507
msgctxt "STR_TIME"
msgid "Time"
msgstr "Vrijeme"
-#: sc/inc/globstr.hrc:507
+#: sc/inc/globstr.hrc:508
msgctxt "STR_SCIENTIFIC"
msgid "Scientific"
msgstr "Znanstveno"
-#: sc/inc/globstr.hrc:508
+#: sc/inc/globstr.hrc:509
msgctxt "STR_FRACTION"
msgid "Fraction"
msgstr "Razlomak"
-#: sc/inc/globstr.hrc:509
+#: sc/inc/globstr.hrc:510
msgctxt "STR_BOOLEAN_VALUE"
msgid "Boolean Value"
msgstr "Boolean vrijednost"
-#: sc/inc/globstr.hrc:510
+#: sc/inc/globstr.hrc:511
msgctxt "STR_TEXT"
msgid "Text"
msgstr "Tekst"
-#: sc/inc/globstr.hrc:511
+#: sc/inc/globstr.hrc:512
msgctxt "STR_QUERY_PIVOTTABLE_DELTAB"
msgid "The selected sheet(s) contain source data of related pivot tables that will be lost. Are you sure you want to delete the selected sheet(s)?"
msgstr "Odabrani radni list/ovi sadrži/e služe kao izvor podataka za povezane pivot-tablice, koje će biti izgubljene. Jeste li sigurni da želite obrisati odabrani/e list/ove?"
-#: sc/inc/globstr.hrc:512
+#: sc/inc/globstr.hrc:513
msgctxt "STR_ERR_NAME_INVALID_CELL_REF"
msgid "Invalid name. Reference to a cell, or a range of cells not allowed."
msgstr "Neispravni naziv. Nedopuštena referencija na ćeliju ili na raspon ćelija."
@@ -10488,8 +10493,8 @@ msgstr "Način rada"
#: sc/inc/scfuncs.hrc:3010
msgctxt "SC_OPCODE_T_TEST"
-msgid "Mode specifies the number of distribution tails to return. 1= one-tailed, 2 = two-tailed distribution"
-msgstr "Način specificira broj razdiobnih strana za vratiti. 1= jednostrana, 2= dvostrana razdioba"
+msgid "Mode specifies the number of distribution tails to return. 1 = one-tailed, 2 = two-tailed distribution"
+msgstr "Modifikator određuje broj repova raspodjele za vratiti. 1 = jednostrana, 2 = dvostrana distribucija."
#: sc/inc/scfuncs.hrc:3011
msgctxt "SC_OPCODE_T_TEST"
@@ -10533,8 +10538,8 @@ msgstr "Način rada"
#: sc/inc/scfuncs.hrc:3024
msgctxt "SC_OPCODE_T_TEST_MS"
-msgid "Mode specifies the number of distribution tails to return. 1= one-tailed, 2 = two-tailed distribution"
-msgstr "Način specificira broj razdiobnih strana za vratiti. 1= jednostrana, 2= dvostrana razdioba"
+msgid "Mode specifies the number of distribution tails to return. 1 = one-tailed, 2 = two-tailed distribution"
+msgstr "Modifikator određuje broj repova raspodjele za vratiti. 1 = jednostrana, 2 = dvostrana distribucija."
#: sc/inc/scfuncs.hrc:3025
msgctxt "SC_OPCODE_T_TEST_MS"
@@ -18020,22 +18025,22 @@ msgctxt "mergecellsdialog|MergeCellsDialog"
msgid "Merge Cells"
msgstr "Spoji ćelije"
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:81
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:84
msgctxt "mergecellsdialog|label"
msgid "Some cells are not empty."
msgstr "Neke ćelije nisu prazne."
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:96
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:99
msgctxt "mergecellsdialog|move-cells-radio"
msgid "Move the contents of the hidden cells into the first cell"
msgstr "Premjesti sadržaj skrivenih ćelija u prvu ćeliju"
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:112
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:115
msgctxt "mergecellsdialog|empty-cells-radio"
msgid "Empty the contents of the hidden cells"
msgstr "Isprazni sadržaj skrivenih ćelija"
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:128
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:131
msgctxt "mergecellsdialog|keep-content-radio"
msgid "Keep the contents of the hidden cells"
msgstr "Zadrži sadržaj skrivenih ćelija"
@@ -18293,22 +18298,22 @@ msgstr "Rješenje nije pronađeno."
#: sc/uiconfig/scalc/ui/notebookbar.ui:857
msgctxt "notebookbar|Help"
msgid "_Check for Updates..."
-msgstr ""
+msgstr "Provjera ažurira_nja..."
#: sc/uiconfig/scalc/ui/notebookbar.ui:1678
msgctxt "notebookbar|Tools"
msgid "_Check for Updates..."
-msgstr ""
+msgstr "Provjera ažurira_nja..."
#: sc/uiconfig/scalc/ui/notebookbar.ui:1952
msgctxt "notebookbar|FileLabel"
msgid "_File"
-msgstr ""
+msgstr "_Datoteka"
#: sc/uiconfig/scalc/ui/notebookbar.ui:1971
msgctxt "notebookbar|HelpMenuButton"
msgid "_Help"
-msgstr ""
+msgstr "_Pomoć"
#: sc/uiconfig/scalc/ui/notebookbar.ui:2769
msgctxt "notebookbar|FileLabel"
@@ -18334,7 +18339,7 @@ msgstr "Smanji uvlaku"
#: sc/uiconfig/scalc/ui/notebookbar.ui:4436
msgctxt "notebookbar|HomeMenuButton"
msgid "_Home"
-msgstr ""
+msgstr "_Osobna mapa"
#: sc/uiconfig/scalc/ui/notebookbar.ui:4544
msgctxt "notebookbar|CalcLabel"
@@ -18344,12 +18349,12 @@ msgstr "Početna"
#: sc/uiconfig/scalc/ui/notebookbar.ui:4991
msgctxt "notebookbar|FieldMenuButton"
msgid "Fiel_d"
-msgstr ""
+msgstr "Polj_e"
#: sc/uiconfig/scalc/ui/notebookbar.ui:5496
msgctxt "notebookbar|InsertMenuButton"
msgid "_Insert"
-msgstr ""
+msgstr "_Umetni"
#: sc/uiconfig/scalc/ui/notebookbar.ui:5581
msgctxt "notebookbar|InsertLabel"
@@ -18359,7 +18364,7 @@ msgstr "Umetni"
#: sc/uiconfig/scalc/ui/notebookbar.ui:5610
msgctxt "notebookbar|reviewb"
msgid "Pag_e"
-msgstr ""
+msgstr "Stranic_e"
#: sc/uiconfig/scalc/ui/notebookbar.ui:6335
msgctxt "notebookbar|PageLayoutLabel"
@@ -18374,7 +18379,7 @@ msgstr "_Statistički podaci"
#: sc/uiconfig/scalc/ui/notebookbar.ui:7304
msgctxt "notebookbar|DataMenuButton"
msgid "_Data"
-msgstr ""
+msgstr "Po_daci"
#: sc/uiconfig/scalc/ui/notebookbar.ui:7412
msgctxt "notebookbar|DataLabel"
@@ -18384,7 +18389,7 @@ msgstr "Podaci"
#: sc/uiconfig/scalc/ui/notebookbar.ui:8035
msgctxt "notebookbar|ReviewMenuButton"
msgid "_Review"
-msgstr ""
+msgstr "Provje_ra"
#: sc/uiconfig/scalc/ui/notebookbar.ui:8120
msgctxt "notebookbar|ReviewLabel"
@@ -18394,7 +18399,7 @@ msgstr "Pregled"
#: sc/uiconfig/scalc/ui/notebookbar.ui:8896
msgctxt "notebookbar|ViewMenuButton"
msgid "_View"
-msgstr ""
+msgstr "Po_gled"
#: sc/uiconfig/scalc/ui/notebookbar.ui:8981
msgctxt "notebookbar|ViewLabel"
@@ -18404,7 +18409,7 @@ msgstr "Pogled"
#: sc/uiconfig/scalc/ui/notebookbar.ui:9008
msgctxt "notebookbar|GraphicMenuButton"
msgid "_Graphic"
-msgstr ""
+msgstr "_Grafika"
#: sc/uiconfig/scalc/ui/notebookbar.ui:9949
msgctxt "notebookbar|ImageLabel"
@@ -18414,12 +18419,12 @@ msgstr "Slika"
#: sc/uiconfig/scalc/ui/notebookbar.ui:11228
msgctxt "notebookbar|DrawMenuButton"
msgid "D_raw"
-msgstr ""
+msgstr "C_rtanje"
#: sc/uiconfig/scalc/ui/notebookbar.ui:11340
msgctxt "notebookbar|DrawLabel"
msgid "Draw"
-msgstr ""
+msgstr "Crtanje"
#: sc/uiconfig/scalc/ui/notebookbar.ui:11993
msgctxt "notebookbar|frame:MenuDraw"
@@ -18434,17 +18439,17 @@ msgstr "Objekt"
#: sc/uiconfig/scalc/ui/notebookbar.ui:12113
msgctxt "notebookbar|ToolsMenuButton"
msgid "_Tools"
-msgstr ""
+msgstr "Ala_ti"
#: sc/uiconfig/scalc/ui/notebookbar.ui:13250
msgctxt "notebookbar|DevLabel"
msgid "Tools"
-msgstr ""
+msgstr "Alati"
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:2945
msgctxt "notebookbar_groupedbar_compact|Menu"
msgid "_Check for Updates..."
-msgstr ""
+msgstr "Provjera ažurira_nja..."
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:2977
msgctxt "notebookbar_groupedbar_compact|defaultD"
@@ -18514,7 +18519,7 @@ msgstr "Bilješka"
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:3336
msgctxt "notebookbar_groupedbar_compact|Tools"
msgid "_Check for Updates..."
-msgstr ""
+msgstr "Provjera ažurira_nja..."
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:3630
msgctxt "notebookbar_groupedbar_compact|menub"
@@ -18704,12 +18709,12 @@ msgstr "_Pogled"
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:1950
msgctxt "notebookbar_groupedbar_full|Help"
msgid "_Check for Updates..."
-msgstr ""
+msgstr "Provjera ažurira_nja..."
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2945
msgctxt "notebookbar_groupedbar_full|Menu"
msgid "_Check for Updates..."
-msgstr ""
+msgstr "Provjera ažurira_nja..."
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2977
msgctxt "notebookbar_groupedbar_full|defaultD"
@@ -18779,7 +18784,7 @@ msgstr "Bilješka"
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:3336
msgctxt "notebookbar_groupedbar_full|Tools"
msgid "_Check for Updates..."
-msgstr ""
+msgstr "Provjera ažurira_nja..."
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:3635
msgctxt "notebookbar_groupedbar_full|menub"
diff --git a/source/hr/scp2/source/ooo.po b/source/hr/scp2/source/ooo.po
index 6ef5be8ff1f..4e1c8d235d6 100644
--- a/source/hr/scp2/source/ooo.po
+++ b/source/hr/scp2/source/ooo.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2018-05-23 23:20+0200\n"
-"PO-Revision-Date: 2018-01-03 21:44+0000\n"
+"PO-Revision-Date: 2018-06-09 06:01+0000\n"
"Last-Translator: Kruno <ksebetic@gmx.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: hr\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 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-POOTLE-MTIME: 1515015898.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1528524104.000000\n"
#: folderitem_ooo.ulf
msgctxt ""
@@ -1886,7 +1886,7 @@ msgctxt ""
"STR_NAME_MODULE_LANGPACK_FY\n"
"LngText.text"
msgid "Frisian"
-msgstr ""
+msgstr "Frizijski"
#: module_langpack.ulf
msgctxt ""
@@ -1894,7 +1894,7 @@ msgctxt ""
"STR_DESC_MODULE_LANGPACK_FY\n"
"LngText.text"
msgid "Installs the Frisian user interface"
-msgstr ""
+msgstr "Instaliranje korisničkoga sučelja na frizijskome jeziku"
#: module_langpack.ulf
msgctxt ""
diff --git a/source/hr/sd/messages.po b/source/hr/sd/messages.po
index a614c793ff2..50f84597e5b 100644
--- a/source/hr/sd/messages.po
+++ b/source/hr/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: 2018-05-22 13:16+0200\n"
-"PO-Revision-Date: 2018-05-08 14:03+0000\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
+"PO-Revision-Date: 2018-06-09 06:16+0000\n"
"Last-Translator: Kruno <ksebetic@gmx.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: hr\n"
@@ -13,170 +13,170 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 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-POOTLE-MTIME: 1525788236.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1528524993.000000\n"
-#: sd/inc/DocumentRenderer.hrc:29
+#: sd/inc/DocumentRenderer.hrc:27
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Slides"
msgstr "Slajdovi"
-#: sd/inc/DocumentRenderer.hrc:30
+#: sd/inc/DocumentRenderer.hrc:28
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Handouts"
msgstr "Uručak"
-#: sd/inc/DocumentRenderer.hrc:31
+#: sd/inc/DocumentRenderer.hrc:29
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Notes"
msgstr "Bilješke"
-#: sd/inc/DocumentRenderer.hrc:32
+#: sd/inc/DocumentRenderer.hrc:30
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Outline"
msgstr "Kontura"
-#: sd/inc/DocumentRenderer.hrc:37
+#: sd/inc/DocumentRenderer.hrc:35
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "According to layout"
msgstr "Prema razmještaju"
-#: sd/inc/DocumentRenderer.hrc:38
+#: sd/inc/DocumentRenderer.hrc:36
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "1"
msgstr "1"
-#: sd/inc/DocumentRenderer.hrc:39
+#: sd/inc/DocumentRenderer.hrc:37
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "2"
msgstr "2"
-#: sd/inc/DocumentRenderer.hrc:40
+#: sd/inc/DocumentRenderer.hrc:38
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "3"
msgstr "3"
-#: sd/inc/DocumentRenderer.hrc:41
+#: sd/inc/DocumentRenderer.hrc:39
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "4"
msgstr "4"
-#: sd/inc/DocumentRenderer.hrc:42
+#: sd/inc/DocumentRenderer.hrc:40
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "6"
msgstr "6"
-#: sd/inc/DocumentRenderer.hrc:43
+#: sd/inc/DocumentRenderer.hrc:41
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "9"
msgstr "9"
-#: sd/inc/DocumentRenderer.hrc:48
+#: sd/inc/DocumentRenderer.hrc:46
msgctxt "STR_IMPRESS_PRINT_UI_ORDER_CHOICES"
msgid "Left to right, then down"
msgstr "Slijeva nadesno, zatim dolje"
-#: sd/inc/DocumentRenderer.hrc:49
+#: sd/inc/DocumentRenderer.hrc:47
msgctxt "STR_IMPRESS_PRINT_UI_ORDER_CHOICES"
msgid "Top to bottom, then right"
msgstr "Odozgo prema dolje pa na desno"
-#: sd/inc/DocumentRenderer.hrc:54
+#: sd/inc/DocumentRenderer.hrc:52
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Original colors"
msgstr "Izvorne boje"
-#: sd/inc/DocumentRenderer.hrc:55
+#: sd/inc/DocumentRenderer.hrc:53
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Grayscale"
msgstr "Sivi tonovi"
-#: sd/inc/DocumentRenderer.hrc:56
+#: sd/inc/DocumentRenderer.hrc:54
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Black & white"
msgstr "Crno-bijelo"
-#: sd/inc/DocumentRenderer.hrc:61
+#: sd/inc/DocumentRenderer.hrc:59
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Original size"
msgstr "Izvorna veličina"
-#: sd/inc/DocumentRenderer.hrc:62
+#: sd/inc/DocumentRenderer.hrc:60
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Fit to printable page"
msgstr "Prilagodi stranici ispisa"
-#: sd/inc/DocumentRenderer.hrc:63
+#: sd/inc/DocumentRenderer.hrc:61
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Distribute on multiple sheets of paper"
msgstr "Raspodijeli na više listova papira"
-#: sd/inc/DocumentRenderer.hrc:64
+#: sd/inc/DocumentRenderer.hrc:62
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Tile sheet of paper with repeated slides"
msgstr "Preklopi list papira s ponavljajućim slajdovima"
-#: sd/inc/DocumentRenderer.hrc:69
+#: sd/inc/DocumentRenderer.hrc:67
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Original size"
msgstr "Izvorna veličina"
-#: sd/inc/DocumentRenderer.hrc:70
+#: sd/inc/DocumentRenderer.hrc:68
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Fit to printable page"
msgstr "Prilagodi stranici ispisa"
-#: sd/inc/DocumentRenderer.hrc:71
+#: sd/inc/DocumentRenderer.hrc:69
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Distribute on multiple sheets of paper"
msgstr "Raspodijeli na više listova papira"
-#: sd/inc/DocumentRenderer.hrc:72
+#: sd/inc/DocumentRenderer.hrc:70
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Tile sheet of paper with repeated pages"
msgstr "Preklopi list papira s ponavljajućim stranicama"
-#: sd/inc/DocumentRenderer.hrc:77
+#: sd/inc/DocumentRenderer.hrc:75
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "All pages"
msgstr "Sve stranice"
-#: sd/inc/DocumentRenderer.hrc:78
+#: sd/inc/DocumentRenderer.hrc:76
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "Front sides / right pages"
msgstr "Lica stranica / desne stranice"
-#: sd/inc/DocumentRenderer.hrc:79
+#: sd/inc/DocumentRenderer.hrc:77
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "Back sides / left pages"
msgstr "Naličja stranica / lijeve stranice"
-#: sd/inc/DocumentRenderer.hrc:84
+#: sd/inc/DocumentRenderer.hrc:82
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~All slides"
msgstr "Svi sl~ajdovi"
-#: sd/inc/DocumentRenderer.hrc:85
+#: sd/inc/DocumentRenderer.hrc:83
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~Slides"
msgstr "~Slajdovi"
-#: sd/inc/DocumentRenderer.hrc:86
+#: sd/inc/DocumentRenderer.hrc:84
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Se~lection"
msgstr "~Odabir"
-#: sd/inc/DocumentRenderer.hrc:91
+#: sd/inc/DocumentRenderer.hrc:89
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~All pages"
msgstr "Sve str~anice"
-#: sd/inc/DocumentRenderer.hrc:92
+#: sd/inc/DocumentRenderer.hrc:90
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Pa~ges"
msgstr "Str~anice"
-#: sd/inc/DocumentRenderer.hrc:93
+#: sd/inc/DocumentRenderer.hrc:91
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Se~lection"
msgstr "~Odabir"
@@ -1717,52 +1717,52 @@ msgstr "Objekt bez ispune i linije"
#: sd/inc/strings.hrc:323
msgctxt "STR_POOLSHEET_FILLED"
msgid "Filled"
-msgstr ""
+msgstr "Popunjeno"
#: sd/inc/strings.hrc:324
msgctxt "STR_POOLSHEET_FILLED_BLUE"
msgid "Filled Blue"
-msgstr ""
+msgstr "Ispunjeno plavom"
#: sd/inc/strings.hrc:325
msgctxt "STR_POOLSHEET_FILLED_GREEN"
msgid "Filled Green"
-msgstr ""
+msgstr "Ispunjeno zelenom"
#: sd/inc/strings.hrc:326
msgctxt "STR_POOLSHEET_FILLED_YELLOW"
msgid "Filled Yellow"
-msgstr ""
+msgstr "Ispunjeno žutom"
#: sd/inc/strings.hrc:327
msgctxt "STR_POOLSHEET_FILLED_RED"
msgid "Filled Red"
-msgstr ""
+msgstr "Ispunjeno crvenom"
#: sd/inc/strings.hrc:329
msgctxt "STR_POOLSHEET_OUTLINE"
msgid "Outlined"
-msgstr ""
+msgstr "Obrub"
#: sd/inc/strings.hrc:330
msgctxt "STR_POOLSHEET_OUTLINE_BLUE"
msgid "Outlined Blue"
-msgstr ""
+msgstr "Obrubljeno plavom"
#: sd/inc/strings.hrc:331
msgctxt "STR_POOLSHEET_OUTLINE_GREEN"
msgid "Outlined Green"
-msgstr ""
+msgstr "Obrubljeno zelenom"
#: sd/inc/strings.hrc:332
msgctxt "STR_POOLSHEET_OUTLINE_YELLOW"
msgid "Outlined Yellow"
-msgstr ""
+msgstr "Obrubljeno žutom"
#: sd/inc/strings.hrc:333
msgctxt "STR_POOLSHEET_OUTLINE_RED"
msgid "Outlined Red"
-msgstr ""
+msgstr "Obrubljeno crvenom"
#: sd/inc/strings.hrc:335
msgctxt "STR_PSEUDOSHEET_TITLE"
@@ -3605,37 +3605,37 @@ msgstr "Prikaz oblika"
#: sd/uiconfig/simpress/ui/notebookbar.ui:967
msgctxt "notebookbar|Help"
msgid "_Check for Updates..."
-msgstr ""
+msgstr "Provjera ažurira_nja..."
#: sd/uiconfig/simpress/ui/notebookbar.ui:2096
msgctxt "notebookbar|Tools"
msgid "_Check for Updates..."
-msgstr ""
+msgstr "Provjera ažurira_nja..."
#: sd/uiconfig/simpress/ui/notebookbar.ui:2422
msgctxt "notebookbar|FileLabel"
msgid "_File"
-msgstr ""
+msgstr "_Datoteka"
#: sd/uiconfig/simpress/ui/notebookbar.ui:2441
msgctxt "notebookbar|HelpMenuButton"
msgid "_Help"
-msgstr ""
+msgstr "_Pomoć"
#: sd/uiconfig/simpress/ui/notebookbar.ui:3230
msgctxt "notebookbar|FileLabel"
msgid "File"
-msgstr ""
+msgstr "Datoteka"
#: sd/uiconfig/simpress/ui/notebookbar.ui:3389
msgctxt "notebookbar|HomeMenuButton"
msgid "_Home"
-msgstr ""
+msgstr "_Polazno"
#: sd/uiconfig/simpress/ui/notebookbar.ui:4846
msgctxt "notebookbar|HomeLabel"
msgid "Home"
-msgstr ""
+msgstr "Polazno"
#: sd/uiconfig/simpress/ui/notebookbar.ui:5293
msgctxt "notebookbar|FieldMenuButton"
@@ -3645,37 +3645,37 @@ msgstr ""
#: sd/uiconfig/simpress/ui/notebookbar.ui:5820
msgctxt "notebookbar|InsertMenuButton"
msgid "_Insert"
-msgstr ""
+msgstr "_Umetni"
#: sd/uiconfig/simpress/ui/notebookbar.ui:5905
msgctxt "notebookbar|InsertLabel"
msgid "Insert"
-msgstr ""
+msgstr "Umetni"
#: sd/uiconfig/simpress/ui/notebookbar.ui:5935
msgctxt "notebookbar|SlideMenuButton"
msgid "S_lide"
-msgstr ""
+msgstr "S_lajd"
#: sd/uiconfig/simpress/ui/notebookbar.ui:6688
msgctxt "notebookbar|LayoutLabel"
msgid "Slide"
-msgstr ""
+msgstr "Slajd"
#: sd/uiconfig/simpress/ui/notebookbar.ui:6716
msgctxt "notebookbar|SlideShowMenuButton"
msgid "_Slide Show"
-msgstr ""
+msgstr "Prika_z prezentacije"
#: sd/uiconfig/simpress/ui/notebookbar.ui:7194
msgctxt "notebookbar|ReferencesLabel"
msgid "Slide Show"
-msgstr ""
+msgstr "Prikaz prezentacije"
#: sd/uiconfig/simpress/ui/notebookbar.ui:7222
msgctxt "notebookbar|ReviewMenuButton"
msgid "_Review"
-msgstr ""
+msgstr "Provje_ra"
#: sd/uiconfig/simpress/ui/notebookbar.ui:7651
msgctxt "notebookbar|ReviewLabel"
@@ -3685,7 +3685,7 @@ msgstr "Provjera"
#: sd/uiconfig/simpress/ui/notebookbar.ui:7679
msgctxt "notebookbar|ViewMenuButton"
msgid "_View"
-msgstr ""
+msgstr "_Pogled"
#: sd/uiconfig/simpress/ui/notebookbar.ui:8580
msgctxt "notebookbar|ViewLabel"
@@ -3695,7 +3695,7 @@ msgstr "Pogled"
#: sd/uiconfig/simpress/ui/notebookbar.ui:9369
msgctxt "notebookbar|TableMenuButton"
msgid "T_able"
-msgstr ""
+msgstr "T_ablica"
#: sd/uiconfig/simpress/ui/notebookbar.ui:9453
msgctxt "notebookbar|TableLabel"
@@ -3706,12 +3706,12 @@ msgstr "Tablica"
#: sd/uiconfig/simpress/ui/notebookbar.ui:11131
msgctxt "notebookbar|ConvertMenuButton"
msgid "Convert"
-msgstr ""
+msgstr "Pretvaranje"
#: sd/uiconfig/simpress/ui/notebookbar.ui:10335
msgctxt "notebookbar|GraphicMenuButton"
msgid "_Graphic"
-msgstr ""
+msgstr "_Grafika"
#: sd/uiconfig/simpress/ui/notebookbar.ui:10447
msgctxt "notebookbar|ImageLabel"
@@ -3721,32 +3721,32 @@ msgstr "Slika"
#: sd/uiconfig/simpress/ui/notebookbar.ui:11658
msgctxt "notebookbar|DrawMenuButton"
msgid "D_raw"
-msgstr ""
+msgstr "C_rtanje"
#: sd/uiconfig/simpress/ui/notebookbar.ui:11772
msgctxt "notebookbar|DrawLabel"
msgid "Draw"
-msgstr ""
+msgstr "Crtanje"
#: sd/uiconfig/simpress/ui/notebookbar.ui:11804
msgctxt "notebookbar|ToolsMenuButton"
msgid "_Tools"
-msgstr ""
+msgstr "Ala_ti"
#: sd/uiconfig/simpress/ui/notebookbar.ui:12758
msgctxt "notebookbar|DevLabel"
msgid "Tools"
-msgstr ""
+msgstr "Alati"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:1922
msgctxt "notebookbar_groupedbar_compact|Menu"
msgid "_Check for Updates..."
-msgstr ""
+msgstr "Provjera ažurira_nja..."
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:2328
msgctxt "notebookbar_groupedbar_compact|Tools"
msgid "_Check for Updates..."
-msgstr ""
+msgstr "Provjera ažurira_nja..."
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:2589
msgctxt "notebookbar_groupedbar_compact|menub"
@@ -3920,17 +3920,17 @@ msgstr "Pog_led"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:1421
msgctxt "notebookbar_groupedbar_full|Help"
msgid "_Check for Updates..."
-msgstr ""
+msgstr "Provjera ažurira_nja..."
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:2115
msgctxt "notebookbar_groupedbar_full|Menu"
msgid "_Check for Updates..."
-msgstr ""
+msgstr "Provjera ažurira_nja..."
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:2599
msgctxt "notebookbar_groupedbar_full|Tools"
msgid "_Check for Updates..."
-msgstr ""
+msgstr "Provjera ažurira_nja..."
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:2865
msgctxt "notebookbar_groupedbar_full|menub"
diff --git a/source/hr/svtools/messages.po b/source/hr/svtools/messages.po
index 38352c47a32..f566223f8a3 100644
--- a/source/hr/svtools/messages.po
+++ b/source/hr/svtools/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2018-05-16 16:53+0200\n"
-"PO-Revision-Date: 2018-05-08 14:05+0000\n"
+"PO-Revision-Date: 2018-06-09 06:06+0000\n"
"Last-Translator: Kruno <ksebetic@gmx.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: hr\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 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-POOTLE-MTIME: 1525788324.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1528524389.000000\n"
#: svtools/inc/errtxt.hrc:30
msgctxt "RID_ERRCTX"
@@ -2496,17 +2496,17 @@ msgstr "Malezijska arabica (Brunej Darussalam)"
#: svtools/inc/langtab.hrc:416
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Juǀ’hoan"
-msgstr ""
+msgstr "Juǀ’hoan"
#: svtools/inc/langtab.hrc:417
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Naro"
-msgstr ""
+msgstr "Naro"
#: svtools/inc/langtab.hrc:418
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Iloko"
-msgstr ""
+msgstr "Iloko"
#: svtools/inc/templwin.hrc:42
msgctxt "STRARY_SVT_DOCINFO"
diff --git a/source/hr/svx/messages.po b/source/hr/svx/messages.po
index 0de515cfe0b..01e2507905d 100644
--- a/source/hr/svx/messages.po
+++ b/source/hr/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: 2018-05-16 16:53+0200\n"
-"PO-Revision-Date: 2018-05-08 14:05+0000\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
+"PO-Revision-Date: 2018-06-09 06:11+0000\n"
"Last-Translator: Kruno <ksebetic@gmx.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: hr\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 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-POOTLE-MTIME: 1525788356.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1528524685.000000\n"
#: svx/inc/fieldunit.hrc:30
msgctxt "RID_SVXSTR_FIELDUNIT_TABLE"
@@ -5179,8 +5179,8 @@ msgstr "Možete uključiti i relevantne dijelove vašega korisničkoga profila u
#: svx/uiconfig/ui/safemodedialog.ui:432
msgctxt "safemodedialog|btn_create_zip"
-msgid "Create Zip Archive from User Profile"
-msgstr "Stvori Zip arhivu iz korisničkoga profila"
+msgid "Archive User Profile"
+msgstr "Arhiviranje korisničkoga profila"
#: svx/uiconfig/ui/safemodedialog.ui:445
msgctxt "safemodedialog|linkbutton_profile"
@@ -8769,9 +8769,9 @@ msgid "Red"
msgstr "Crvena"
#: include/svx/strings.hrc:565
-msgctxt "RID_SVXSTR_COLOR_VIOLET"
-msgid "Violet"
-msgstr "Ljubičasta"
+msgctxt "RID_SVXSTR_COLOR_MAGENTA"
+msgid "Magenta"
+msgstr "Ružičasta"
#: include/svx/strings.hrc:566
msgctxt "RID_SVXSTR_COLOR_PURPLE"
@@ -8835,9 +8835,9 @@ msgid "Light Red"
msgstr "Svijetlocrveno"
#: include/svx/strings.hrc:579
-msgctxt "RID_SVXSTR_COLOR_LIGHTVIOLET"
-msgid "Light Violet"
-msgstr "Svjetloljubičasta"
+msgctxt "RID_SVXSTR_COLOR_LIGHTMAGENTA"
+msgid "Light Magenta"
+msgstr ""
#: include/svx/strings.hrc:580
msgctxt "RID_SVXSTR_COLOR_LIGHTPURPLE"
@@ -8901,9 +8901,9 @@ msgid "Dark Red"
msgstr "Tamnocrvena"
#: include/svx/strings.hrc:593
-msgctxt "RID_SVXSTR_COLOR_DARKVIOLET1"
-msgid "Dark Violet"
-msgstr "Tamnoljubičasta"
+msgctxt "RID_SVXSTR_COLOR_DARKMAGENTA"
+msgid "Dark Magenta"
+msgstr ""
#: include/svx/strings.hrc:594
msgctxt "RID_SVXSTR_COLOR_DARKPURPLE"
@@ -8937,55 +8937,55 @@ msgstr "Tamnolimeta"
#. Elements of the Tonal color palette
#: include/svx/strings.hrc:601
+msgctxt "RID_SVXSTR_COLOR_VIOLET"
+msgid "Violet"
+msgstr "Ljubičasta"
+
+#: include/svx/strings.hrc:602
msgctxt "RID_SVXSTR_COLOR_VIOLET_OUG"
msgid "Violet (Out of Gamut)"
msgstr "Ljubičasto (izvan raspona)"
-#: include/svx/strings.hrc:602
+#: include/svx/strings.hrc:603
msgctxt "RID_SVXSTR_COLOR_BLUE_OUG"
msgid "Blue (Out of Gamut)"
msgstr "Plava (izvan raspona)"
-#: include/svx/strings.hrc:603
+#: include/svx/strings.hrc:604
msgctxt "RID_SVXSTR_COLOR_AZURE_OUG"
msgid "Azure (Out of Gamut)"
msgstr "Plavozelena (izvan raspona)"
-#: include/svx/strings.hrc:604
+#: include/svx/strings.hrc:605
msgctxt "RID_SVXSTR_COLOR_SPRINGGREEN_OUG"
msgid "Spring Green (Out of Gamut)"
msgstr "Proljetno zelena (izvan raspona)"
-#: include/svx/strings.hrc:605
+#: include/svx/strings.hrc:606
msgctxt "RID_SVXSTR_COLOR_GREEN_OUG"
msgid "Green (Out of Gamut)"
msgstr "Zelena (izvan raspona)"
-#: include/svx/strings.hrc:606
+#: include/svx/strings.hrc:607
msgctxt "RID_SVXSTR_COLOR_CHARTREUSEGREEN_OUG"
msgid "Chartreuse Green (Out of Gamut)"
msgstr "Šartrez zelena (izvan raspona)"
-#: include/svx/strings.hrc:607
+#: include/svx/strings.hrc:608
msgctxt "RID_SVXSTR_COLOR_ORANGE_OUG"
msgid "Orange (Out of Gamut)"
msgstr "Narančasta (izvan raspona)"
-#: include/svx/strings.hrc:608
+#: include/svx/strings.hrc:609
msgctxt "RID_SVXSTR_COLOR_RED_OUG"
msgid "Red (Out of Gamut)"
msgstr "Crvena (izvan raspona)"
-#: include/svx/strings.hrc:609
+#: include/svx/strings.hrc:610
msgctxt "RID_SVXSTR_COLOR_ROSE_OUG"
msgid "Rose (Out of Gamut)"
msgstr "Ružičasta (izvan raspona)"
-#: include/svx/strings.hrc:610
-msgctxt "RID_SVXSTR_COLOR_MAGENTA"
-msgid "Magenta"
-msgstr "Ružičasta"
-
#: include/svx/strings.hrc:611
msgctxt "RID_SVXSTR_COLOR_AZURE"
msgid "Azure"
@@ -9608,32 +9608,32 @@ msgstr "Zeleni gradijent"
#: include/svx/strings.hrc:746
msgctxt "RID_SVXSTR_GRDT70"
msgid "Pastel Bouquet"
-msgstr ""
+msgstr "Pastelni buket"
#: include/svx/strings.hrc:747
msgctxt "RID_SVXSTR_GRDT71"
msgid "Pastel Dream"
-msgstr ""
+msgstr "Pastelni san"
#: include/svx/strings.hrc:748
msgctxt "RID_SVXSTR_GRDT72"
msgid "Blue Touch"
-msgstr ""
+msgstr "Plavi dodir"
#: include/svx/strings.hrc:749
msgctxt "RID_SVXSTR_GRDT73"
msgid "Blank with Gray"
-msgstr ""
+msgstr "Prozirno i sivo"
#: include/svx/strings.hrc:750
msgctxt "RID_SVXSTR_GRDT74"
msgid "Spotted Gray"
-msgstr ""
+msgstr "Točkasto sivo"
#: include/svx/strings.hrc:751
msgctxt "RID_SVXSTR_GRDT75"
msgid "London Mist"
-msgstr ""
+msgstr "Londonska izmaglica"
#: include/svx/strings.hrc:752
msgctxt "RID_SVXSTR_GRDT76"
@@ -9643,42 +9643,42 @@ msgstr ""
#: include/svx/strings.hrc:753
msgctxt "RID_SVXSTR_GRDT77"
msgid "Midnight"
-msgstr ""
+msgstr "Ponoć"
#: include/svx/strings.hrc:754
msgctxt "RID_SVXSTR_GRDT78"
msgid "Deep Ocean"
-msgstr ""
+msgstr "Duboki ocean"
#: include/svx/strings.hrc:755
msgctxt "RID_SVXSTR_GRDT79"
msgid "Submarine"
-msgstr ""
+msgstr "Podmornica"
#: include/svx/strings.hrc:756
msgctxt "RID_SVXSTR_GRDT80"
msgid "Green Grass"
-msgstr ""
+msgstr "Zelena trava"
#: include/svx/strings.hrc:757
msgctxt "RID_SVXSTR_GRDT81"
msgid "Neon Light"
-msgstr ""
+msgstr "Neonsko svjetlo"
#: include/svx/strings.hrc:758
msgctxt "RID_SVXSTR_GRDT82"
msgid "Sunshine"
-msgstr ""
+msgstr "Sunčeve zrake"
#: include/svx/strings.hrc:759
msgctxt "RID_SVXSTR_GRDT83"
msgid "Present"
-msgstr ""
+msgstr "Poklon"
#: include/svx/strings.hrc:760
msgctxt "RID_SVXSTR_GRDT84"
msgid "Mahagoni"
-msgstr ""
+msgstr "Mahagonij"
#. /gradients
#: include/svx/strings.hrc:762
@@ -12091,13 +12091,13 @@ msgstr "Grafička oznaka strelice koja pokazuje u desno"
#: include/svx/strings.hrc:1273
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_6"
-msgid "Check mark bullets"
-msgstr "Grafička oznaka kvačice"
+msgid "Cross mark bullets"
+msgstr "Križići kao grafičke oznake"
#: include/svx/strings.hrc:1274
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_7"
-msgid "Tick mark bullets"
-msgstr "Tanke grafičke oznake"
+msgid "Check mark bullets"
+msgstr "Kvačice kao grafičke oznake"
#: include/svx/strings.hrc:1275
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_0"
diff --git a/source/hr/sw/messages.po b/source/hr/sw/messages.po
index 2fc6b76d504..870a9c21838 100644
--- a/source/hr/sw/messages.po
+++ b/source/hr/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: 2018-05-22 13:17+0200\n"
-"PO-Revision-Date: 2018-05-08 14:06+0000\n"
+"POT-Creation-Date: 2018-06-12 14:41+0200\n"
+"PO-Revision-Date: 2018-06-09 06:15+0000\n"
"Last-Translator: Kruno <ksebetic@gmx.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: hr\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 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-POOTLE-MTIME: 1525788395.000000\n"
+"X-POOTLE-MTIME: 1528524905.000000\n"
#: sw/inc/app.hrc:29
msgctxt "RID_PARAGRAPHSTYLEFAMILY"
@@ -1180,13 +1180,13 @@ msgstr "Citat"
#: sw/inc/strings.hrc:172
msgctxt "STR_POOLCOLL_TOX_ILLUSH"
-msgid "Illustration Index Heading"
-msgstr "Naslov indeksa ilustracija"
+msgid "Figure Index Heading"
+msgstr ""
#: sw/inc/strings.hrc:173
msgctxt "STR_POOLCOLL_TOX_ILLUS1"
-msgid "Illustration Index 1"
-msgstr "Indeks ilustracija 1"
+msgid "Figure Index 1"
+msgstr ""
#: sw/inc/strings.hrc:174
msgctxt "STR_POOLCOLL_TOX_OBJECTH"
@@ -3590,8 +3590,8 @@ msgstr "Tablica objekata"
#: sw/inc/strings.hrc:672
msgctxt "STR_TOX_ILL"
-msgid "Illustration Index"
-msgstr "Indeks ilustracija"
+msgid "Table of Figures"
+msgstr ""
#: sw/inc/strings.hrc:673
#, c-format
@@ -9244,72 +9244,72 @@ msgctxt "footnotepage|label5"
msgid "Continuation Notice"
msgstr "Poruka o nastavku slijeda"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:49
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:55
msgctxt "footnotesendnotestabpage|ftnntnum"
msgid "_Restart numbering"
msgstr "K_reni s numeriranjem otpočetka"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:91
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:93
msgctxt "footnotesendnotestabpage|ftnoffset_label"
msgid "_Start at:"
msgstr "Poč_ni od:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:112
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:111
msgctxt "footnotesendnotestabpage|ftnntnumfmt"
msgid "Custom _format"
msgstr "Prilagođeni o_blik"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:155
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:150
msgctxt "footnotesendnotestabpage|ftnsuffix_label"
msgid "Aft_er:"
msgstr "Nako_n:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:199
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:188
msgctxt "footnotesendnotestabpage|ftnprefix_label"
msgid "Be_fore:"
msgstr "Pri_je:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:228
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:212
msgctxt "footnotesendnotestabpage|ftnntattextend"
msgid "Collec_t at end of text"
msgstr "Skupi na kraju _teksta"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:252
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:234
msgctxt "footnotesendnotestabpage|label1"
msgid "Footnotes"
msgstr "Fusnote"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:289
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:271
msgctxt "footnotesendnotestabpage|endntattextend"
msgid "C_ollect at end of section"
msgstr "Skupi na kraju _odjeljka"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:315
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:295
msgctxt "footnotesendnotestabpage|endntnum"
msgid "_Restart numbering"
msgstr "K_reni s numeriranjem otpočetka"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:357
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:333
msgctxt "footnotesendnotestabpage|endoffset_label"
msgid "_Start at:"
msgstr "Poč_ni od:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:378
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:351
msgctxt "footnotesendnotestabpage|endntnumfmt"
msgid "_Custom format"
msgstr "Prilagođeni o_blik"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:421
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:390
msgctxt "footnotesendnotestabpage|endsuffix_label"
msgid "Aft_er:"
msgstr "Na_kon:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:465
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:428
msgctxt "footnotesendnotestabpage|endprefix_label"
msgid "Be_fore:"
msgstr "Pri_je:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:500
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:458
msgctxt "footnotesendnotestabpage|label2"
msgid "Endnotes"
msgstr "Završne bilješke"
@@ -9339,27 +9339,27 @@ msgctxt "formatsectiondialog|notes"
msgid "Footnotes/Endnotes"
msgstr "Fusnote/završne bilješke"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:63
+#: sw/uiconfig/swriter/ui/formattablepage.ui:77
msgctxt "formattablepage|nameft"
msgid "_Name"
msgstr "_Ime"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:79
+#: sw/uiconfig/swriter/ui/formattablepage.ui:91
msgctxt "formattablepage|widthft"
msgid "W_idth"
msgstr "Š_irina"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:110
+#: sw/uiconfig/swriter/ui/formattablepage.ui:120
msgctxt "formattablepage|relwidth"
msgid "Relati_ve"
msgstr "_Relativno"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:155
+#: sw/uiconfig/swriter/ui/formattablepage.ui:160
msgctxt "formattablepage|label45"
msgid "Properties"
msgstr "Svojstva"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:194
+#: sw/uiconfig/swriter/ui/formattablepage.ui:195
msgctxt "formattablepage|leftft"
msgid "Lef_t"
msgstr "_Lijevo"
@@ -9369,62 +9369,62 @@ msgctxt "formattablepage|rightft"
msgid "Ri_ght"
msgstr "_Desno"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:228
+#: sw/uiconfig/swriter/ui/formattablepage.ui:226
msgctxt "formattablepage|aboveft"
msgid "_Above"
msgstr "_Iznad"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:245
+#: sw/uiconfig/swriter/ui/formattablepage.ui:241
msgctxt "formattablepage|belowft"
msgid "_Below"
msgstr "_Ispod"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:320
+#: sw/uiconfig/swriter/ui/formattablepage.ui:311
msgctxt "formattablepage|label46"
msgid "Spacing"
msgstr "Prored"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:362
+#: sw/uiconfig/swriter/ui/formattablepage.ui:349
msgctxt "formattablepage|full"
msgid "A_utomatic"
msgstr "_Automatski"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:380
+#: sw/uiconfig/swriter/ui/formattablepage.ui:365
msgctxt "formattablepage|left"
msgid "_Left"
msgstr "_Lijevo"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:398
+#: sw/uiconfig/swriter/ui/formattablepage.ui:381
msgctxt "formattablepage|fromleft"
msgid "_From left"
msgstr "_S lijeva"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:416
+#: sw/uiconfig/swriter/ui/formattablepage.ui:397
msgctxt "formattablepage|right"
msgid "R_ight"
msgstr "_Desno"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:435
+#: sw/uiconfig/swriter/ui/formattablepage.ui:413
msgctxt "formattablepage|center"
msgid "_Center"
msgstr "_Sredina"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:453
+#: sw/uiconfig/swriter/ui/formattablepage.ui:429
msgctxt "formattablepage|free"
msgid "_Manual"
msgstr "_Ručno"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:478
+#: sw/uiconfig/swriter/ui/formattablepage.ui:452
msgctxt "formattablepage|label43"
msgid "Alignment"
msgstr "Poravnanje"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:522
+#: sw/uiconfig/swriter/ui/formattablepage.ui:491
msgctxt "formattablepage|label53"
msgid "Text _direction"
msgstr "_Smjer teksta"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:553
+#: sw/uiconfig/swriter/ui/formattablepage.ui:519
msgctxt "formattablepage|label44"
msgid "Properties "
msgstr "Svojstva "
@@ -9779,22 +9779,27 @@ msgctxt "headerfootermenu|insert_pagenumber"
msgid "Insert Page Number"
msgstr "Umetanje broja stranice"
-#: sw/uiconfig/swriter/ui/indentpage.ui:52
+#: sw/uiconfig/swriter/ui/headerfootermenu.ui:42
+msgctxt "headerfootermenu|insert_pagecount"
+msgid "Insert Page Count"
+msgstr "Umetanje ukupnoga broja stranica"
+
+#: sw/uiconfig/swriter/ui/indentpage.ui:57
msgctxt "indentpage|label1"
msgid "_Before section"
msgstr "P_rije odjeljka"
-#: sw/uiconfig/swriter/ui/indentpage.ui:67
+#: sw/uiconfig/swriter/ui/indentpage.ui:71
msgctxt "indentpage|label3"
msgid "_After section"
msgstr "Poslije odjeljk_a"
-#: sw/uiconfig/swriter/ui/indentpage.ui:113
+#: sw/uiconfig/swriter/ui/indentpage.ui:115
msgctxt "indentpage|label2"
msgid "Indent"
msgstr "Uvučeno"
-#: sw/uiconfig/swriter/ui/indentpage.ui:142
+#: sw/uiconfig/swriter/ui/indentpage.ui:155
msgctxt "indentpage|preview-atkobject"
msgid "Example"
msgstr "Primjer"
@@ -11772,22 +11777,22 @@ msgstr "Indeks novog korisnika"
#: sw/uiconfig/swriter/ui/notebookbar.ui:537
msgctxt "notebookbar|Help"
msgid "_Check for Updates..."
-msgstr ""
+msgstr "Provjera ažurira_nja..."
#: sw/uiconfig/swriter/ui/notebookbar.ui:1581
msgctxt "notebookbar|Tools"
msgid "_Check for Updates..."
-msgstr ""
+msgstr "Provjera ažurira_nja..."
#: sw/uiconfig/swriter/ui/notebookbar.ui:1851
msgctxt "notebookbar|FileMenuButton"
msgid "_File"
-msgstr ""
+msgstr "_Datoteka"
#: sw/uiconfig/swriter/ui/notebookbar.ui:1870
msgctxt "notebookbar|HelpMenuButton"
msgid "_Help"
-msgstr ""
+msgstr "_Pomoć"
#: sw/uiconfig/swriter/ui/notebookbar.ui:2658
msgctxt "notebookbar|FileLabel"
@@ -11797,7 +11802,7 @@ msgstr "Datoteka"
#: sw/uiconfig/swriter/ui/notebookbar.ui:2817
msgctxt "notebookbar|HomeMenuButton"
msgid "_Home"
-msgstr ""
+msgstr "_Polazno"
#: sw/uiconfig/swriter/ui/notebookbar.ui:4203
msgctxt "notebookbar|HomeLabel"
@@ -11807,7 +11812,7 @@ msgstr "Početna"
#: sw/uiconfig/swriter/ui/notebookbar.ui:5273
msgctxt "notebookbar|InsertMenuButton"
msgid "_Insert"
-msgstr ""
+msgstr "_Umetni"
#: sw/uiconfig/swriter/ui/notebookbar.ui:5358
msgctxt "notebookbar|InsertLabel"
@@ -11817,7 +11822,7 @@ msgstr "Umetni"
#: sw/uiconfig/swriter/ui/notebookbar.ui:5388
msgctxt "notebookbar|PageMenuButton"
msgid "Pag_e"
-msgstr ""
+msgstr "S_tranica"
#: sw/uiconfig/swriter/ui/notebookbar.ui:6307
msgctxt "notebookbar|LayoutLabel"
@@ -11827,7 +11832,7 @@ msgstr "Izgled"
#: sw/uiconfig/swriter/ui/notebookbar.ui:6335
msgctxt "notebookbar|ReferencesMenuButton"
msgid "Reference_s"
-msgstr ""
+msgstr "Referen_ce"
#: sw/uiconfig/swriter/ui/notebookbar.ui:6914
msgctxt "notebookbar|ReferencesLabel"
@@ -11837,7 +11842,7 @@ msgstr "Reference"
#: sw/uiconfig/swriter/ui/notebookbar.ui:7586
msgctxt "notebookbar|ReviewMenuButton"
msgid "_Review"
-msgstr ""
+msgstr "Provje_ra"
#: sw/uiconfig/swriter/ui/notebookbar.ui:7671
msgctxt "notebookbar|ReviewLabel"
@@ -11847,7 +11852,7 @@ msgstr "Provjera"
#: sw/uiconfig/swriter/ui/notebookbar.ui:8285
msgctxt "notebookbar|ViewMenuButton"
msgid "_View"
-msgstr ""
+msgstr "_Pogled"
#: sw/uiconfig/swriter/ui/notebookbar.ui:8370
msgctxt "notebookbar|ViewLabel"
@@ -11857,7 +11862,7 @@ msgstr "Pogled"
#: sw/uiconfig/swriter/ui/notebookbar.ui:9451
msgctxt "notebookbar|TableMenuButton"
msgid "T_able"
-msgstr ""
+msgstr "T_ablica"
#: sw/uiconfig/swriter/ui/notebookbar.ui:9535
msgctxt "notebookbar|TableLabel"
@@ -11867,7 +11872,7 @@ msgstr "Tablica"
#: sw/uiconfig/swriter/ui/notebookbar.ui:10586
msgctxt "notebookbar|GraphicMenuButton"
msgid "_Graphic"
-msgstr ""
+msgstr "_Grafika"
#: sw/uiconfig/swriter/ui/notebookbar.ui:10685
msgctxt "notebookbar|ImageLabel"
@@ -11877,7 +11882,7 @@ msgstr "Slika"
#: sw/uiconfig/swriter/ui/notebookbar.ui:12035
msgctxt "notebookbar|DrawMenuButton"
msgid "D_raw"
-msgstr ""
+msgstr "C_rtanje"
#: sw/uiconfig/swriter/ui/notebookbar.ui:12147
msgctxt "notebookbar|ShapeLabel"
@@ -11887,17 +11892,17 @@ msgstr "Draw"
#: sw/uiconfig/swriter/ui/notebookbar.ui:13000
msgctxt "notebookbar|ObjectMenuButton:MenuDraw"
msgid "Object"
-msgstr ""
+msgstr "Objekt"
#: sw/uiconfig/swriter/ui/notebookbar.ui:13089
msgctxt "notebookbar|ObjectLabel"
msgid "Object"
-msgstr ""
+msgstr "Objekt"
#: sw/uiconfig/swriter/ui/notebookbar.ui:13120
msgctxt "notebookbar|ToolsMenuButton"
msgid "_Tools"
-msgstr ""
+msgstr "Ala_ti"
#: sw/uiconfig/swriter/ui/notebookbar.ui:14074
msgctxt "notebookbar|DevLabel"
@@ -11907,12 +11912,12 @@ msgstr "Alati"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:1697
msgctxt "notebookbar_compact|Update"
msgid "_Check for Updates..."
-msgstr ""
+msgstr "Provjera ažurira_nja..."
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:2007
msgctxt "notebookbar_compact|FileMenuButton"
msgid "_File"
-msgstr ""
+msgstr "_Datoteka"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:2721
msgctxt "notebookbar_compact|FileLabel"
@@ -11922,7 +11927,7 @@ msgstr "Datoteka"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:2770
msgctxt "notebookbar_compact|HomeMenuButton"
msgid "_Menu"
-msgstr ""
+msgstr "_Izbornik"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3829
msgctxt "notebookbar_compact|HomeLabel"
@@ -11932,7 +11937,7 @@ msgstr "Početna stranica"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3882
msgctxt "notebookbar_compact|InsertMenuButton"
msgid "_Insert"
-msgstr ""
+msgstr "_Umetni"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4501
msgctxt "notebookbar_compact|InsertLabel"
@@ -11950,7 +11955,7 @@ msgstr "Omatanje"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5221
msgctxt "notebookbar_compact|PageMenuButton"
msgid "Pag_e"
-msgstr ""
+msgstr "Str_anica"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5273
msgctxt "notebookbar_compact|LayoutLabel"
@@ -11960,7 +11965,7 @@ msgstr "Izgled"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5320
msgctxt "notebookbar_compact|ReferencesMenuButton"
msgid "Reference_s"
-msgstr ""
+msgstr "Referen_ce"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5708
msgctxt "notebookbar_compact|ReferencesLabel"
@@ -11970,7 +11975,7 @@ msgstr "Reference"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6204
msgctxt "notebookbar_compact|ReviewMenuButton"
msgid "_Review"
-msgstr ""
+msgstr "Provje_ra"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6237
msgctxt "notebookbar_compact|ReviewLabel"
@@ -11980,7 +11985,7 @@ msgstr "Provjera"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6706
msgctxt "notebookbar_compact|ViewMenuButton"
msgid "_View"
-msgstr ""
+msgstr "_Pogled"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6758
msgctxt "notebookbar_compact|ViewLabel"
@@ -11990,7 +11995,7 @@ msgstr "Pogled"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6806
msgctxt "notebookbar_compact|TableMenuButton"
msgid "T_able"
-msgstr ""
+msgstr "T_ablica"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7540
msgctxt "notebookbar_compact|TableLabel"
@@ -12007,7 +12012,7 @@ msgstr "P_oravnanje"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8291
msgctxt "notebookbar_compact|GraphicMenuButton"
msgid "_Graphic"
-msgstr ""
+msgstr "_Grafika"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8324
msgctxt "notebookbar_compact|ImageLabel"
@@ -12017,7 +12022,7 @@ msgstr "Slika"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9070
msgctxt "notebookbar_compact|DrawMenuButton"
msgid "D_raw"
-msgstr ""
+msgstr "C_rtanje"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9125
msgctxt "notebookbar_compact|ShapeLabel"
@@ -12027,7 +12032,7 @@ msgstr "Draw"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9651
msgctxt "notebookbar_compact|ObjectMenuButton:MenuDraw"
msgid "Object"
-msgstr ""
+msgstr "Objekt"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9707
msgctxt "notebookbar_compact|FrameLabel"
@@ -12037,7 +12042,7 @@ msgstr "Objekt"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9757
msgctxt "notebookbar_compact|ToolsMenuButton"
msgid "_Tools"
-msgstr ""
+msgstr "Ala_ti"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10600
msgctxt "notebookbar_compact|DevLabel"
@@ -12052,7 +12057,7 @@ msgstr "Traka izbornika"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:2516
msgctxt "notebookbar_groupedbar_compact|Menu"
msgid "_Check for Updates..."
-msgstr ""
+msgstr "Provjera ažurira_nja..."
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:2651
msgctxt "notebookbar_groupedbar_compact|Quotation2"
@@ -12062,7 +12067,7 @@ msgstr "Citat"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:2945
msgctxt "notebookbar_groupedbar_compact|Tools"
msgid "_Check for Updates..."
-msgstr ""
+msgstr "Provjera ažurira_nja..."
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:3246
msgctxt "notebookbar_groupedbar_compact|menub"
@@ -12277,12 +12282,12 @@ msgstr "_Pogled"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:1486
msgctxt "notebookbar_groupedbar_full|Help"
msgid "_Check for Updates..."
-msgstr ""
+msgstr "Provjera ažurira_nja..."
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:2555
msgctxt "notebookbar_groupedbar_full|Menu"
msgid "_Check for Updates..."
-msgstr ""
+msgstr "Provjera ažurira_nja..."
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:2690
msgctxt "notebookbar_groupedbar_full|Quotation2"
@@ -12292,7 +12297,7 @@ msgstr "Citat"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:2984
msgctxt "notebookbar_groupedbar_full|Tools"
msgid "_Check for Updates..."
-msgstr ""
+msgstr "Provjera ažurira_nja..."
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:3289
msgctxt "notebookbar_groupedbar_full|menub"
@@ -13285,7 +13290,7 @@ msgstr "Obrazac zaštite"
#: sw/uiconfig/swriter/ui/optcompatpage.ui:68
msgctxt "optcompatpage|format"
-msgid "MS Word-compatible trailing blanks"
+msgid "Word-compatible trailing blanks"
msgstr "Prateći razmaci kompatibilni s MS Wordom"
#: sw/uiconfig/swriter/ui/optcompatpage.ui:69
@@ -13295,8 +13300,8 @@ msgstr "Toleriraj prazne retke kao pozadinu stranica u PDF-u radi kompatibilnost
#: sw/uiconfig/swriter/ui/optcompatpage.ui:70
msgctxt "optcompatpage|format"
-msgid "A database field (e.g., MailMerge) with empty value hides its paragraph"
-msgstr ""
+msgid "Hide paragraphs of database fields (e.g., mail merge) with an empty value"
+msgstr "Sakrij odlomke polja baza podataka (npr. cirkularna pošta) zamjenjujući ih praznim vrijednostima"
#: sw/uiconfig/swriter/ui/optcompatpage.ui:71
msgctxt "optcompatpage|format"
@@ -15981,122 +15986,122 @@ msgctxt "tableproperties|background"
msgid "Background"
msgstr "Pozadina"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:25
-msgctxt "tabletextflowpage|liststore1"
-msgid "Horizontal"
-msgstr "Vodoravno"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:29
-msgctxt "tabletextflowpage|liststore1"
-msgid "Vertical"
-msgstr "Okomito"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:33
-msgctxt "tabletextflowpage|liststore1"
-msgid "Use superordinate object settings"
-msgstr "Koristi postavke nadređenog objekta"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:47
-msgctxt "tabletextflowpage|liststore2"
-msgid "Top"
-msgstr "Vrh"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:51
-msgctxt "tabletextflowpage|liststore2"
-msgid "Centered"
-msgstr "Centrirano"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:55
-msgctxt "tabletextflowpage|liststore2"
-msgid "Bottom"
-msgstr "Dno"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:97
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:53
msgctxt "tabletextflowpage|break"
msgid "_Break"
msgstr "P_rekid"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:112
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:68
msgctxt "tabletextflowpage|page"
msgid "_Page"
msgstr "_Stranica"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:132
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:87
msgctxt "tabletextflowpage|column"
msgid "Col_umn"
msgstr "_Stupac"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:151
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:106
msgctxt "tabletextflowpage|before"
msgid "Be_fore"
msgstr "Pri_je"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:171
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:125
msgctxt "tabletextflowpage|after"
msgid "_After"
msgstr "_Nakon"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:203
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:158
msgctxt "tabletextflowpage|pagestyle"
msgid "With Page St_yle"
msgstr "Sa stilom stran_ice"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:224
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:177
msgctxt "tabletextflowpage|pagenoft"
msgid "Page _number"
msgstr "_Broj stranice"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:257
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:213
msgctxt "tabletextflowpage|pagestylelb-atkobject"
msgid "With Page Style"
msgstr "Sa stilom stranice"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:274
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:230
msgctxt "tabletextflowpage|split"
msgid "Allow _table to split across pages and columns"
msgstr "Dozvoli _tablicama prelamanje preko stranica i stupaca"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:289
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:245
msgctxt "tabletextflowpage|splitrow"
msgid "Allow row to break a_cross pages and columns"
msgstr "Dozvoli redcima da se prelamaju preko strani_ca i odlomaka"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:306
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:262
msgctxt "tabletextflowpage|keep"
msgid "_Keep with next paragraph"
msgstr "Drži sa sljedećim odlom_kom"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:328
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:284
msgctxt "tabletextflowpage|label40"
msgid "Text _orientation"
msgstr "U_smjerenje teksta"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:361
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:298
+msgctxt "tabletextflowpage|liststore1"
+msgid "Horizontal"
+msgstr "Vodoravno"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:299
+msgctxt "tabletextflowpage|liststore1"
+msgid "Vertical"
+msgstr "Okomito"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:300
+msgctxt "tabletextflowpage|liststore1"
+msgid "Use superordinate object settings"
+msgstr "Koristi postavke nadređenog objekta"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:321
msgctxt "tabletextflowpage|headline"
msgid "R_epeat heading"
msgstr "Ponavljanj_e naslova"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:383
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:343
msgctxt "tabletextflowpage|label38"
msgid "The first "
msgstr "Prvi "
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:396
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:356
msgctxt "tabletextflowpage|label39"
msgid "rows"
msgstr "redci"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:434
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:395
msgctxt "tabletextflowpage|label35"
msgid "Text Flow"
msgstr "Tijek teksta"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:467
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:428
msgctxt "tabletextflowpage|label41"
msgid "_Vertical alignment"
msgstr "_Okomito poravnanje"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:495
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:442
+msgctxt "tabletextflowpage|liststore2"
+msgid "Top"
+msgstr "Vrh"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:443
+msgctxt "tabletextflowpage|liststore2"
+msgid "Centered"
+msgstr "Centrirano"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:444
+msgctxt "tabletextflowpage|liststore2"
+msgid "Bottom"
+msgstr "Dno"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:460
msgctxt "tabletextflowpage|label36"
msgid "Alignment"
msgstr "Poravnanje"
@@ -16878,8 +16883,8 @@ msgstr "Abecedni indeks"
#: sw/uiconfig/swriter/ui/tocindexpage.ui:58
msgctxt "tocindexpage|liststore1"
-msgid "Illustration Index"
-msgstr "Indeks ilustracija"
+msgid "Table of Figures"
+msgstr ""
#: sw/uiconfig/swriter/ui/tocindexpage.ui:62
msgctxt "tocindexpage|liststore1"
diff --git a/source/hr/writerperfect/messages.po b/source/hr/writerperfect/messages.po
index 715ea90b97e..c39b1bf0d94 100644
--- a/source/hr/writerperfect/messages.po
+++ b/source/hr/writerperfect/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-16 16:54+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2018-05-08 14:08+0000\n"
"Last-Translator: Kruno <ksebetic@gmx.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -66,97 +66,97 @@ msgctxt "exportepub|generalft"
msgid "General"
msgstr "Općenito"
-#: writerperfect/uiconfig/ui/exportepub.ui:122
+#: writerperfect/uiconfig/ui/exportepub.ui:121
msgctxt "exportepub|versionft"
msgid "Version:"
msgstr "Inačica:"
-#: writerperfect/uiconfig/ui/exportepub.ui:139
+#: writerperfect/uiconfig/ui/exportepub.ui:138
msgctxt "exportepub|epub3"
msgid "EPUB 3.0"
msgstr "EPUB 3.0"
-#: writerperfect/uiconfig/ui/exportepub.ui:140
+#: writerperfect/uiconfig/ui/exportepub.ui:139
msgctxt "exportepub|epub2"
msgid "EPUB 2.0"
msgstr "EPUB 2.0"
-#: writerperfect/uiconfig/ui/exportepub.ui:175
+#: writerperfect/uiconfig/ui/exportepub.ui:174
msgctxt "exportepub|splitft"
msgid "Split method:"
msgstr "Način dijeljenja:"
-#: writerperfect/uiconfig/ui/exportepub.ui:192
+#: writerperfect/uiconfig/ui/exportepub.ui:191
msgctxt "exportepub|splitpage"
msgid "Page break"
msgstr "Prijelom stranice"
-#: writerperfect/uiconfig/ui/exportepub.ui:193
+#: writerperfect/uiconfig/ui/exportepub.ui:192
msgctxt "exportepub|splitheading"
msgid "Heading"
msgstr "Naslov"
-#: writerperfect/uiconfig/ui/exportepub.ui:228
+#: writerperfect/uiconfig/ui/exportepub.ui:227
msgctxt "exportepub|layoutft"
msgid "Layout method:"
msgstr "Način raspoređivanja elemenata:"
-#: writerperfect/uiconfig/ui/exportepub.ui:245
+#: writerperfect/uiconfig/ui/exportepub.ui:244
msgctxt "exportepub|layoutreflowable"
msgid "Reflowable"
msgstr "Pomično"
-#: writerperfect/uiconfig/ui/exportepub.ui:246
+#: writerperfect/uiconfig/ui/exportepub.ui:245
msgctxt "exportepub|layoutfixed"
msgid "Fixed"
msgstr "Nepomično"
-#: writerperfect/uiconfig/ui/exportepub.ui:281
+#: writerperfect/uiconfig/ui/exportepub.ui:280
msgctxt "exportepub|coverimageft"
msgid "Custom cover image:"
msgstr "Korisnički postavljena naslovna slika:"
-#: writerperfect/uiconfig/ui/exportepub.ui:311
+#: writerperfect/uiconfig/ui/exportepub.ui:310
msgctxt "exportepub|coverbutton"
msgid "Browse..."
msgstr "Pretraživanje..."
-#: writerperfect/uiconfig/ui/exportepub.ui:355
+#: writerperfect/uiconfig/ui/exportepub.ui:354
msgctxt "exportepub|mediadirft"
msgid "Custom media directory:"
msgstr "Korisnički postavljena mapa medijskih datoteka:"
-#: writerperfect/uiconfig/ui/exportepub.ui:385
+#: writerperfect/uiconfig/ui/exportepub.ui:384
msgctxt "exportepub|mediabutton"
msgid "Browse..."
msgstr "Pretraživanje..."
-#: writerperfect/uiconfig/ui/exportepub.ui:429
+#: writerperfect/uiconfig/ui/exportepub.ui:428
msgctxt "exportepub|metadataft"
msgid "Metadata"
msgstr "Metapodaci"
-#: writerperfect/uiconfig/ui/exportepub.ui:470
+#: writerperfect/uiconfig/ui/exportepub.ui:468
msgctxt "exportepub|identifierft"
msgid "Identifier:"
msgstr "Identifikator:"
-#: writerperfect/uiconfig/ui/exportepub.ui:485
+#: writerperfect/uiconfig/ui/exportepub.ui:483
msgctxt "exportepub|titleft"
msgid "Title:"
msgstr "Naslov:"
-#: writerperfect/uiconfig/ui/exportepub.ui:511
+#: writerperfect/uiconfig/ui/exportepub.ui:509
msgctxt "exportepub|authorft"
msgid "Author:"
msgstr "Autor:"
-#: writerperfect/uiconfig/ui/exportepub.ui:537
+#: writerperfect/uiconfig/ui/exportepub.ui:535
msgctxt "exportepub|languageft"
msgid "Language:"
msgstr "Jezik:"
-#: writerperfect/uiconfig/ui/exportepub.ui:563
+#: writerperfect/uiconfig/ui/exportepub.ui:561
msgctxt "exportepub|dateft"
msgid "Date:"
msgstr "Datum:"
diff --git a/source/hr/xmlsecurity/messages.po b/source/hr/xmlsecurity/messages.po
index 0016800e9af..eb13a4cea11 100644
--- a/source/hr/xmlsecurity/messages.po
+++ b/source/hr/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: 2018-05-22 13:17+0200\n"
-"PO-Revision-Date: 2018-03-09 11:27+0000\n"
+"PO-Revision-Date: 2018-06-09 06:17+0000\n"
"Last-Translator: Kruno <ksebetic@gmx.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: hr\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 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-POOTLE-MTIME: 1520594867.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1528525068.000000\n"
#: xmlsecurity/inc/strings.hrc:25
msgctxt "STR_CERTIFICATE_NOT_VALIDATED"
@@ -460,7 +460,7 @@ msgstr "Potpiši"
#: xmlsecurity/uiconfig/ui/selectcertificatedialog.ui:194
msgctxt "selectcertificatedialog|str_selectsign"
msgid "Select"
-msgstr ""
+msgstr "Odaberi"
#: xmlsecurity/uiconfig/ui/selectcertificatedialog.ui:199
msgctxt "selectcertificatedialog|str_encrypt"
diff --git a/source/hsb/cui/messages.po b/source/hsb/cui/messages.po
index c7c574ce115..ae2d08271ed 100644
--- a/source/hsb/cui/messages.po
+++ b/source/hsb/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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2018-05-13 14:19+0000\n"
"Last-Translator: Michael Wolf <milupo@sorbzilla.de>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -9871,97 +9871,97 @@ msgctxt "positionsizedialog|PositionAndSizeDialog"
msgid "Position and Size"
msgstr "Pozicija a wulkosć"
-#: cui/uiconfig/ui/positionsizedialog.ui:107
+#: cui/uiconfig/ui/positionsizedialog.ui:136
msgctxt "positionsizedialog|RID_SVXPAGE_POSITION_SIZE"
msgid "Position and Size"
msgstr "Pozicija a wulkosć"
-#: cui/uiconfig/ui/positionsizedialog.ui:129
+#: cui/uiconfig/ui/positionsizedialog.ui:182
msgctxt "positionsizedialog|RID_SVXPAGE_SWPOSSIZE"
msgid "Position and Size"
msgstr "Pozicija a wulkosć"
-#: cui/uiconfig/ui/positionsizedialog.ui:152
+#: cui/uiconfig/ui/positionsizedialog.ui:229
msgctxt "positionsizedialog|RID_SVXPAGE_ANGLE"
msgid "Rotation"
msgstr "Wjerćenje"
-#: cui/uiconfig/ui/positionsizedialog.ui:175
+#: cui/uiconfig/ui/positionsizedialog.ui:276
msgctxt "positionsizedialog|RID_SVXPAGE_SLANT"
msgid "Slant & Corner Radius"
msgstr "Nachilić a róžkowy přeměr"
-#: cui/uiconfig/ui/possizetabpage.ui:40
+#: cui/uiconfig/ui/possizetabpage.ui:61
msgctxt "possizetabpage|FT_POS_X"
msgid "Position _X:"
msgstr "Pozicija _X:"
-#: cui/uiconfig/ui/possizetabpage.ui:56
+#: cui/uiconfig/ui/possizetabpage.ui:75
msgctxt "possizetabpage|FT_POS_Y"
msgid "Position _Y:"
msgstr "Pozicija _Y:"
-#: cui/uiconfig/ui/possizetabpage.ui:110
+#: cui/uiconfig/ui/possizetabpage.ui:128
msgctxt "possizetabpage|FT_POSREFERENCE"
msgid "_Base point:"
msgstr "_Bazowy dypk:"
-#: cui/uiconfig/ui/possizetabpage.ui:148
+#: cui/uiconfig/ui/possizetabpage.ui:182
msgctxt "possizetabpage|label1"
msgid "Position"
msgstr "Pozicija"
-#: cui/uiconfig/ui/possizetabpage.ui:190
+#: cui/uiconfig/ui/possizetabpage.ui:224
msgctxt "possizetabpage|FT_WIDTH"
msgid "Wi_dth:"
msgstr "Šě_rokosć:"
-#: cui/uiconfig/ui/possizetabpage.ui:206
+#: cui/uiconfig/ui/possizetabpage.ui:238
msgctxt "possizetabpage|FT_HEIGHT"
msgid "H_eight:"
msgstr "Wys_okosć:"
-#: cui/uiconfig/ui/possizetabpage.ui:247
+#: cui/uiconfig/ui/possizetabpage.ui:276
msgctxt "possizetabpage|CBX_SCALE"
msgid "_Keep ratio"
msgstr "_Poměr bokow wobchować"
-#: cui/uiconfig/ui/possizetabpage.ui:279
+#: cui/uiconfig/ui/possizetabpage.ui:307
msgctxt "possizetabpage|FT_SIZEREFERENCE"
msgid "Base _point:"
msgstr "Bazowy _dypk:"
-#: cui/uiconfig/ui/possizetabpage.ui:317
+#: cui/uiconfig/ui/possizetabpage.ui:361
msgctxt "possizetabpage|label2"
msgid "Size"
msgstr "Wulkosć"
-#: cui/uiconfig/ui/possizetabpage.ui:356
+#: cui/uiconfig/ui/possizetabpage.ui:401
msgctxt "possizetabpage|TSB_POSPROTECT"
msgid "Positio_n"
msgstr "_Pozicija"
-#: cui/uiconfig/ui/possizetabpage.ui:373
+#: cui/uiconfig/ui/possizetabpage.ui:418
msgctxt "possizetabpage|TSB_SIZEPROTECT"
msgid "_Size"
msgstr "W_ulkosć"
-#: cui/uiconfig/ui/possizetabpage.ui:397
+#: cui/uiconfig/ui/possizetabpage.ui:441
msgctxt "possizetabpage|label3"
msgid "Protect"
msgstr "Škitać"
-#: cui/uiconfig/ui/possizetabpage.ui:430
+#: cui/uiconfig/ui/possizetabpage.ui:475
msgctxt "possizetabpage|TSB_AUTOGROW_WIDTH"
msgid "_Fit width to text"
msgstr "Šěrokosć _tekstej přiměrić"
-#: cui/uiconfig/ui/possizetabpage.ui:447
+#: cui/uiconfig/ui/possizetabpage.ui:492
msgctxt "possizetabpage|TSB_AUTOGROW_HEIGHT"
msgid "Fit _height to text"
msgstr "Wy_sokosć tekstej přiměrić"
-#: cui/uiconfig/ui/possizetabpage.ui:471
+#: cui/uiconfig/ui/possizetabpage.ui:515
msgctxt "possizetabpage|label4"
msgid "Adapt"
msgstr "Přiměrić"
@@ -10161,47 +10161,47 @@ msgctxt "recordnumberdialog|label2"
msgid "go to record"
msgstr "dźiće k datowej sadźbje"
-#: cui/uiconfig/ui/rotationtabpage.ui:52
+#: cui/uiconfig/ui/rotationtabpage.ui:56
msgctxt "rotationtabpage|FT_POS_X"
msgid "Position _X:"
msgstr "Pozicija _X:"
-#: cui/uiconfig/ui/rotationtabpage.ui:66
+#: cui/uiconfig/ui/rotationtabpage.ui:70
msgctxt "rotationtabpage|FT_POS_Y"
msgid "Position _Y:"
msgstr "Pozicija _Y:"
-#: cui/uiconfig/ui/rotationtabpage.ui:116
+#: cui/uiconfig/ui/rotationtabpage.ui:123
msgctxt "rotationtabpage|FT_POSPRESETS"
msgid "_Default settings:"
msgstr "_Standardne nastajenja:"
-#: cui/uiconfig/ui/rotationtabpage.ui:130
+#: cui/uiconfig/ui/rotationtabpage.ui:151
msgctxt "rotationtabpage|CTL_RECT|tooltip_text"
msgid "Rotation point"
msgstr "Wjerćenski dypk"
-#: cui/uiconfig/ui/rotationtabpage.ui:155
+#: cui/uiconfig/ui/rotationtabpage.ui:178
msgctxt "rotationtabpage|label1"
msgid "Pivot Point"
msgstr "Pivotowy dypk"
-#: cui/uiconfig/ui/rotationtabpage.ui:197
+#: cui/uiconfig/ui/rotationtabpage.ui:220
msgctxt "rotationtabpage|FT_ANGLE"
msgid "_Angle:"
msgstr "_Nuhel:"
-#: cui/uiconfig/ui/rotationtabpage.ui:238
+#: cui/uiconfig/ui/rotationtabpage.ui:263
msgctxt "rotationtabpage|FT_ANGLEPRESETS"
msgid "Default _settings:"
msgstr "Sta_ndardne nastajenja:"
-#: cui/uiconfig/ui/rotationtabpage.ui:252
+#: cui/uiconfig/ui/rotationtabpage.ui:287
msgctxt "rotationtabpage|CTL_ANGLE|tooltip_text"
msgid "Rotation Angle"
msgstr "Wjerćenski nuhel"
-#: cui/uiconfig/ui/rotationtabpage.ui:277
+#: cui/uiconfig/ui/rotationtabpage.ui:314
msgctxt "rotationtabpage|label2"
msgid "Rotation Angle"
msgstr "Wjerćenski nuhel"
@@ -10581,52 +10581,52 @@ msgctxt "similaritysearchdialog|relaxbox"
msgid "_Combine"
msgstr "_Kombinować"
-#: cui/uiconfig/ui/slantcornertabpage.ui:50
+#: cui/uiconfig/ui/slantcornertabpage.ui:70
msgctxt "slantcornertabpage|label5"
msgid "_X:"
msgstr "_X:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:88
+#: cui/uiconfig/ui/slantcornertabpage.ui:110
msgctxt "slantcornertabpage|label6"
msgid "_Y:"
msgstr "_Y:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:125
+#: cui/uiconfig/ui/slantcornertabpage.ui:149
msgctxt "slantcornertabpage|label3"
msgid "Control Point 1"
msgstr "Kontrolny dypk 1"
-#: cui/uiconfig/ui/slantcornertabpage.ui:159
+#: cui/uiconfig/ui/slantcornertabpage.ui:183
msgctxt "slantcornertabpage|FT_RADIUS"
msgid "_Radius:"
msgstr "_Radius:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:189
+#: cui/uiconfig/ui/slantcornertabpage.ui:214
msgctxt "slantcornertabpage|label1"
msgid "Corner Radius"
msgstr "Róžkowy radius"
-#: cui/uiconfig/ui/slantcornertabpage.ui:223
+#: cui/uiconfig/ui/slantcornertabpage.ui:248
msgctxt "slantcornertabpage|FT_ANGLE"
msgid "_Angle:"
msgstr "_Nuhel:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:253
+#: cui/uiconfig/ui/slantcornertabpage.ui:279
msgctxt "slantcornertabpage|label2"
msgid "Slant"
msgstr "Nachilić"
-#: cui/uiconfig/ui/slantcornertabpage.ui:294
+#: cui/uiconfig/ui/slantcornertabpage.ui:320
msgctxt "slantcornertabpage|label4"
msgid "_X:"
msgstr "_X:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:332
+#: cui/uiconfig/ui/slantcornertabpage.ui:360
msgctxt "slantcornertabpage|label7"
msgid "_Y:"
msgstr "_Y:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:369
+#: cui/uiconfig/ui/slantcornertabpage.ui:399
msgctxt "slantcornertabpage|label8"
msgid "Control Point 2"
msgstr "Kontrolny dypk 2"
@@ -10906,112 +10906,112 @@ msgctxt "storedwebconnectiondialog|change"
msgid "_Change Password..."
msgstr "_Hesło změnić..."
-#: cui/uiconfig/ui/swpossizepage.ui:74
+#: cui/uiconfig/ui/swpossizepage.ui:85
msgctxt "swpossizepage|widthft"
msgid "_Width:"
msgstr "Šě_rokosć:"
-#: cui/uiconfig/ui/swpossizepage.ui:111
+#: cui/uiconfig/ui/swpossizepage.ui:123
msgctxt "swpossizepage|heightft"
msgid "H_eight:"
msgstr "Wy_sokosć:"
-#: cui/uiconfig/ui/swpossizepage.ui:128
+#: cui/uiconfig/ui/swpossizepage.ui:141
msgctxt "swpossizepage|ratio"
msgid "_Keep ratio"
msgstr "_Poměr bokow wobchować"
-#: cui/uiconfig/ui/swpossizepage.ui:149
+#: cui/uiconfig/ui/swpossizepage.ui:162
msgctxt "swpossizepage|label2"
msgid "Size"
msgstr "Wulkosć"
-#: cui/uiconfig/ui/swpossizepage.ui:205
+#: cui/uiconfig/ui/swpossizepage.ui:218
msgctxt "swpossizepage|topage"
msgid "To _page"
msgstr "K _stronje"
-#: cui/uiconfig/ui/swpossizepage.ui:222
+#: cui/uiconfig/ui/swpossizepage.ui:234
msgctxt "swpossizepage|topara"
msgid "To paragrap_h"
msgstr "K wo_tstawkej"
-#: cui/uiconfig/ui/swpossizepage.ui:238
+#: cui/uiconfig/ui/swpossizepage.ui:250
msgctxt "swpossizepage|tochar"
msgid "To cha_racter"
msgstr "K _znamješku"
-#: cui/uiconfig/ui/swpossizepage.ui:254
+#: cui/uiconfig/ui/swpossizepage.ui:266
msgctxt "swpossizepage|aschar"
msgid "_As character"
msgstr "_Jako znamješko"
-#: cui/uiconfig/ui/swpossizepage.ui:270
+#: cui/uiconfig/ui/swpossizepage.ui:282
msgctxt "swpossizepage|toframe"
msgid "To _frame"
msgstr "K wo_błukej"
-#: cui/uiconfig/ui/swpossizepage.ui:292
+#: cui/uiconfig/ui/swpossizepage.ui:304
msgctxt "swpossizepage|label1"
msgid "Anchor"
msgstr "Kótwička"
-#: cui/uiconfig/ui/swpossizepage.ui:333
+#: cui/uiconfig/ui/swpossizepage.ui:344
msgctxt "swpossizepage|horiposft"
msgid "Hori_zontal:"
msgstr "Wo_doruny:"
-#: cui/uiconfig/ui/swpossizepage.ui:347
+#: cui/uiconfig/ui/swpossizepage.ui:358
msgctxt "swpossizepage|horibyft"
msgid "b_y:"
msgstr "w_o:"
-#: cui/uiconfig/ui/swpossizepage.ui:361
+#: cui/uiconfig/ui/swpossizepage.ui:372
msgctxt "swpossizepage|vertbyft"
msgid "_by:"
msgstr "_wo:"
-#: cui/uiconfig/ui/swpossizepage.ui:375
+#: cui/uiconfig/ui/swpossizepage.ui:386
msgctxt "swpossizepage|horitoft"
msgid "_to:"
msgstr "_k:"
-#: cui/uiconfig/ui/swpossizepage.ui:421
+#: cui/uiconfig/ui/swpossizepage.ui:433
msgctxt "swpossizepage|vertposft"
msgid "_Vertical:"
msgstr "_Padoruny:"
-#: cui/uiconfig/ui/swpossizepage.ui:457
+#: cui/uiconfig/ui/swpossizepage.ui:470
msgctxt "swpossizepage|verttoft"
msgid "t_o:"
msgstr "_k:"
-#: cui/uiconfig/ui/swpossizepage.ui:478
+#: cui/uiconfig/ui/swpossizepage.ui:492
msgctxt "swpossizepage|mirror"
msgid "_Mirror on even pages"
msgstr "Na r_unych stronach špihelować"
-#: cui/uiconfig/ui/swpossizepage.ui:495
+#: cui/uiconfig/ui/swpossizepage.ui:509
msgctxt "swpossizepage|followtextflow"
msgid "Follow te_xt flow"
msgstr "_Tekstowemu běhej slědować"
-#: cui/uiconfig/ui/swpossizepage.ui:518
+#: cui/uiconfig/ui/swpossizepage.ui:532
msgctxt "swpossizepage|label11"
msgid "Position"
msgstr "Pozicija"
-#: cui/uiconfig/ui/swpossizepage.ui:549
+#: cui/uiconfig/ui/swpossizepage.ui:563
msgctxt "swpossizepage|pos"
msgid "Positio_n"
msgstr "_Pozicija"
-#: cui/uiconfig/ui/swpossizepage.ui:565
+#: cui/uiconfig/ui/swpossizepage.ui:579
msgctxt "swpossizepage|size"
msgid "_Size"
msgstr "Wu_lkosć"
-#: cui/uiconfig/ui/swpossizepage.ui:587
+#: cui/uiconfig/ui/swpossizepage.ui:601
msgctxt "swpossizepage|label3"
msgid "Protect"
msgstr "Škitać"
@@ -11201,12 +11201,12 @@ msgctxt "textattrtabpage|label2"
msgid "Spacing to Borders"
msgstr "Wotstup k ramikam"
-#: cui/uiconfig/ui/textattrtabpage.ui:425
+#: cui/uiconfig/ui/textattrtabpage.ui:423
msgctxt "textattrtabpage|TSB_FULL_WIDTH"
msgid "Full _width"
msgstr "_Cyła šěrokosć"
-#: cui/uiconfig/ui/textattrtabpage.ui:448
+#: cui/uiconfig/ui/textattrtabpage.ui:446
msgctxt "textattrtabpage|label3"
msgid "Text Anchor"
msgstr "Tekstowa kótwička"
diff --git a/source/hsb/filter/source/config/fragments/filters.po b/source/hsb/filter/source/config/fragments/filters.po
index 20b1557ddf5..7aedb133ffb 100644
--- a/source/hsb/filter/source/config/fragments/filters.po
+++ b/source/hsb/filter/source/config/fragments/filters.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: 2018-05-16 16:54+0200\n"
-"PO-Revision-Date: 2018-05-16 19:46+0000\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
+"PO-Revision-Date: 2018-06-06 21:09+0000\n"
"Last-Translator: Michael Wolf <milupo@sorbzilla.de>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: hsb\n"
@@ -12,8 +12,8 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1526499989.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1528319346.000000\n"
#: ADO_rowset_XML.xcu
msgctxt ""
@@ -462,8 +462,8 @@ msgctxt ""
"MS Word 2003 XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Word 2003 XML"
-msgstr "Microsoft Word 2003 XML"
+msgid "Word 2003 XML"
+msgstr "Word 2003 XML"
#: MS_Word_2007_XML.xcu
msgctxt ""
@@ -1281,8 +1281,8 @@ msgctxt ""
"Calc MS Excel 2007 VBA XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Excel 2007-2016 XML (macro enabled)"
-msgstr "Microsoft Excel 2007-2016 XML (makra zmóžnjene)"
+msgid "Excel 2007–2019 (macro-enabled)"
+msgstr "Excel 2007–2019 (ze zmóžnjenymi makrami)"
#: calc_MS_Excel_2007_XML.xcu
msgctxt ""
diff --git a/source/hsb/filter/source/config/fragments/types.po b/source/hsb/filter/source/config/fragments/types.po
index 390b04edd95..ece965b2523 100644
--- a/source/hsb/filter/source/config/fragments/types.po
+++ b/source/hsb/filter/source/config/fragments/types.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: 2018-05-08 15:11+0200\n"
-"PO-Revision-Date: 2018-05-08 19:05+0000\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
+"PO-Revision-Date: 2018-06-06 21:09+0000\n"
"Last-Translator: Michael Wolf <milupo@sorbzilla.de>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: hsb\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1525806350.000000\n"
+"X-POOTLE-MTIME: 1528319350.000000\n"
#: MS_Excel_2007_Binary.xcu
msgctxt ""
@@ -291,8 +291,8 @@ msgctxt ""
"writer_MS_Word_2003_XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Word 2003 XML"
-msgstr "Microsoft Word 2003 XML"
+msgid "Word 2003 XML"
+msgstr "Word 2003 XML"
#: writer_MS_Word_2007_XML.xcu
msgctxt ""
diff --git a/source/hsb/fpicker/messages.po b/source/hsb/fpicker/messages.po
index 0f304e79079..bb8771e1488 100644
--- a/source/hsb/fpicker/messages.po
+++ b/source/hsb/fpicker/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-22 13:16+0200\n"
-"PO-Revision-Date: 2018-03-04 17:18+0000\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
+"PO-Revision-Date: 2018-06-06 21:08+0000\n"
"Last-Translator: Michael Wolf <milupo@sorbzilla.de>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: hsb\n"
@@ -12,8 +12,8 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1520183911.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1528319308.000000\n"
#: include/fpicker/strings.hrc:14
msgctxt "STR_SVT_FILEPICKER_AUTO_EXTENSION"
@@ -271,13 +271,13 @@ msgstr "Z GPG-klučom zaklučować"
#: fpicker/uiconfig/ui/foldernamedialog.ui:8
msgctxt "foldernamedialog|FolderNameDialog"
-msgid "Folder Name ?"
-msgstr "Mjeno rjadowaka?"
+msgid "Folder Name"
+msgstr "Mjeno rjadowaka"
#: fpicker/uiconfig/ui/foldernamedialog.ui:91
msgctxt "foldernamedialog|label2"
-msgid "Na_me"
-msgstr "_Mjeno"
+msgid "Na_me:"
+msgstr "_Mjeno:"
#: fpicker/uiconfig/ui/foldernamedialog.ui:122
msgctxt "foldernamedialog|label1"
diff --git a/source/hsb/officecfg/registry/data/org/openoffice/Office.po b/source/hsb/officecfg/registry/data/org/openoffice/Office.po
index 46085ee85f1..279b04ddd3f 100644
--- a/source/hsb/officecfg/registry/data/org/openoffice/Office.po
+++ b/source/hsb/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: 2018-02-27 13:56+0100\n"
-"PO-Revision-Date: 2018-03-04 20:42+0000\n"
+"PO-Revision-Date: 2018-05-26 08:59+0000\n"
"Last-Translator: Michael Wolf <milupo@sorbzilla.de>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: hsb\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1520196176.000000\n"
+"X-POOTLE-MTIME: 1527325168.000000\n"
#: Addons.xcu
msgctxt ""
@@ -9454,7 +9454,7 @@ msgctxt ""
"Name\n"
"value.text"
msgid "PrintSize"
-msgstr "ČisćerskaWulkosć"
+msgstr "ĆisćerskaWulkosć"
#: TableWizard.xcu
msgctxt ""
@@ -9463,7 +9463,7 @@ msgctxt ""
"ShortName\n"
"value.text"
msgid "PrintSize"
-msgstr "ČisćerskaWulkosć"
+msgstr "ĆisćerskaWulkosć"
#: TableWizard.xcu
msgctxt ""
diff --git a/source/hsb/officecfg/registry/data/org/openoffice/Office/UI.po b/source/hsb/officecfg/registry/data/org/openoffice/Office/UI.po
index c35dc58532b..85c2a82bfd2 100644
--- a/source/hsb/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/hsb/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-22 13:17+0200\n"
-"PO-Revision-Date: 2018-05-08 19:06+0000\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
+"PO-Revision-Date: 2018-06-06 21:07+0000\n"
"Last-Translator: Michael Wolf <milupo@sorbzilla.de>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: hsb\n"
@@ -12,8 +12,8 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1525806413.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1528319247.000000\n"
#: BaseWindowState.xcu
msgctxt ""
@@ -148,7 +148,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Form Horizontal Scroll Bar"
-msgstr ""
+msgstr "Wodoruna suwanska lajsta"
#: BasicIDECommands.xcu
msgctxt ""
@@ -21489,7 +21489,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Print Pr~eview"
-msgstr "Čišćerski pře~hlad"
+msgstr "Ćišćerski pře~hlad"
#: GenericCommands.xcu
msgctxt ""
@@ -25341,7 +25341,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Tabbed"
-msgstr ""
+msgstr "W rajtarkach"
#: ToolbarMode.xcu
msgctxt ""
@@ -25350,7 +25350,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Groupedbar Compact"
-msgstr ""
+msgstr "Kompaktnje zeskupjeny"
#: ToolbarMode.xcu
msgctxt ""
@@ -25359,7 +25359,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Groupedbar"
-msgstr ""
+msgstr "Zeskupjeny"
#: ToolbarMode.xcu
msgctxt ""
@@ -26519,8 +26519,8 @@ msgctxt ""
"..WriterCommands.UserInterface.Commands..uno:TextAttributes\n"
"Label\n"
"value.text"
-msgid "Text Attributes"
-msgstr "Tekstowe atributy"
+msgid "Text Attributes..."
+msgstr "Tekstowe atributy..."
#: WriterCommands.xcu
msgctxt ""
diff --git a/source/hsb/readlicense_oo/docs.po b/source/hsb/readlicense_oo/docs.po
index 27a76595ab6..165e465f19f 100644
--- a/source/hsb/readlicense_oo/docs.po
+++ b/source/hsb/readlicense_oo/docs.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: 2018-04-17 15:54+0200\n"
-"PO-Revision-Date: 2018-04-19 07:25+0000\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
+"PO-Revision-Date: 2018-06-06 21:08+0000\n"
"Last-Translator: Michael Wolf <milupo@sorbzilla.de>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: hsb\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1524122751.000000\n"
+"X-POOTLE-MTIME: 1528319283.000000\n"
#: readme.xrm
msgctxt ""
@@ -116,8 +116,8 @@ msgctxt ""
"readme.xrm\n"
"macxiOSX\n"
"readmeitem.text"
-msgid "MacOSX 10.8 (Mountain Lion) or higher"
-msgstr "MacOSX 10.8 (Mountain Lion) abo nowše"
+msgid "MacOSX 10.9 (Mavericks) or higher"
+msgstr "MacOSX 10.9 (Mavericks) abo wyši"
#: readme.xrm
msgctxt ""
diff --git a/source/hsb/sc/messages.po b/source/hsb/sc/messages.po
index 820dfed208c..33b53c43be5 100644
--- a/source/hsb/sc/messages.po
+++ b/source/hsb/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: 2018-05-22 13:16+0200\n"
-"PO-Revision-Date: 2018-05-16 19:48+0000\n"
+"POT-Creation-Date: 2018-06-12 14:40+0200\n"
+"PO-Revision-Date: 2018-06-12 20:19+0000\n"
"Last-Translator: Michael Wolf <milupo@sorbzilla.de>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: hsb\n"
@@ -12,8 +12,8 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1526500099.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1528834775.000000\n"
#: sc/inc/compiler.hrc:27
msgctxt "RID_FUNCTION_CATEGORIES"
@@ -1869,16 +1869,21 @@ msgid "Nested arrays are not supported."
msgstr "Zakašćikowane matriksy so njepodpěruja."
#: sc/inc/globstr.hrc:390
+msgctxt "STR_ERR_LONG_BAD_ARRAY_CONTENT"
+msgid "Unsupported inline array content."
+msgstr "Njepodpěrany wobsah nutřkowneje pólneje wariable."
+
+#: sc/inc/globstr.hrc:391
msgctxt "STR_UNDO_TEXTTOCOLUMNS"
msgid "Text to Columns"
msgstr "Tekst do špaltow"
-#: sc/inc/globstr.hrc:391
+#: sc/inc/globstr.hrc:392
msgctxt "STR_DOC_UPDATED"
msgid "Your spreadsheet has been updated with changes saved by other users."
msgstr "Waš tabelowy dokument su so ze změnami składowanymi wot druhich wužiwarjow zaktualizowali."
-#: sc/inc/globstr.hrc:392
+#: sc/inc/globstr.hrc:393
msgctxt "STR_DOC_WILLBESAVED"
msgid ""
"The spreadsheet must be saved now to activate sharing mode.\n"
@@ -1889,7 +1894,7 @@ msgstr ""
"\n"
"Chceće pokročować?"
-#: sc/inc/globstr.hrc:393
+#: sc/inc/globstr.hrc:394
msgctxt "STR_DOC_WILLNOTBESAVED"
msgid ""
"Already resolved merge conflicts will be lost and your changes to the shared spreadsheet will not be saved.\n"
@@ -1900,7 +1905,7 @@ msgstr ""
"\n"
"Chceće pokročować?"
-#: sc/inc/globstr.hrc:394
+#: sc/inc/globstr.hrc:395
msgctxt "STR_DOC_DISABLESHARED"
msgid ""
"Disabling shared mode of a spreadsheet hinders all other users of the shared spreadsheet to merge back their work.\n"
@@ -1911,7 +1916,7 @@ msgstr ""
"\n"
"Chceće pokročować?"
-#: sc/inc/globstr.hrc:395
+#: sc/inc/globstr.hrc:396
msgctxt "STR_DOC_NOLONGERSHARED"
msgid ""
"This spreadsheet is no longer in shared mode.\n"
@@ -1922,7 +1927,7 @@ msgstr ""
"\n"
"Składujće swój tabelowy dokuement do druheje dataje a přewzmiće swoje změny manuelnje do swojeho tabeloweho dokumenta."
-#: sc/inc/globstr.hrc:396
+#: sc/inc/globstr.hrc:397
msgctxt "STR_FILE_LOCKED_TRY_LATER"
msgid ""
"The shared spreadsheet file is locked due to a merge in progress by user: '%1'\n"
@@ -1933,7 +1938,7 @@ msgstr ""
"\n"
"Dźěleny modus zawrjeneje dataje njeda so znjemóžnić. Spytajće pozdźišo hišće raz."
-#: sc/inc/globstr.hrc:397
+#: sc/inc/globstr.hrc:398
msgctxt "STR_FILE_LOCKED_SAVE_LATER"
msgid ""
"The shared spreadsheet file is locked due to a merge in progress by user: '%1'\n"
@@ -1944,147 +1949,147 @@ msgstr ""
"\n"
"Spytajće pozdźišo hišće raz, zo byšće swoje změny składował."
-#: sc/inc/globstr.hrc:398
+#: sc/inc/globstr.hrc:399
msgctxt "STR_UNKNOWN_USER"
msgid "Unknown User"
msgstr "Njeznaty wužiwar"
-#: sc/inc/globstr.hrc:399
+#: sc/inc/globstr.hrc:400
msgctxt "STR_SHAPE_AUTOSHAPE"
msgid "AutoShape"
msgstr "Awtomatiski twar"
-#: sc/inc/globstr.hrc:400
+#: sc/inc/globstr.hrc:401
msgctxt "STR_SHAPE_RECTANGLE"
msgid "Rectangle"
msgstr "Praworóžk"
-#: sc/inc/globstr.hrc:401
+#: sc/inc/globstr.hrc:402
msgctxt "STR_SHAPE_LINE"
msgid "Line"
msgstr "Linija"
-#: sc/inc/globstr.hrc:402
+#: sc/inc/globstr.hrc:403
msgctxt "STR_SHAPE_OVAL"
msgid "Oval"
msgstr "Elipsa"
-#: sc/inc/globstr.hrc:403
+#: sc/inc/globstr.hrc:404
msgctxt "STR_FORM_BUTTON"
msgid "Button"
msgstr "Tłóčatko"
-#: sc/inc/globstr.hrc:404
+#: sc/inc/globstr.hrc:405
msgctxt "STR_FORM_CHECKBOX"
msgid "Check Box"
msgstr "Kontrolny kašćik"
-#: sc/inc/globstr.hrc:405
+#: sc/inc/globstr.hrc:406
msgctxt "STR_FORM_OPTIONBUTTON"
msgid "Option Button"
msgstr "Opciske tłóčatko"
-#: sc/inc/globstr.hrc:406
+#: sc/inc/globstr.hrc:407
msgctxt "STR_FORM_LABEL"
msgid "Label"
msgstr "Popis"
-#: sc/inc/globstr.hrc:407
+#: sc/inc/globstr.hrc:408
msgctxt "STR_FORM_LISTBOX"
msgid "List Box"
msgstr "Lisćinowe polo"
-#: sc/inc/globstr.hrc:408
+#: sc/inc/globstr.hrc:409
msgctxt "STR_FORM_GROUPBOX"
msgid "Group Box"
msgstr "Zeskupjenske polo"
-#: sc/inc/globstr.hrc:409
+#: sc/inc/globstr.hrc:410
msgctxt "STR_FORM_DROPDOWN"
msgid "Drop Down"
msgstr "Dele spušćić"
-#: sc/inc/globstr.hrc:410
+#: sc/inc/globstr.hrc:411
msgctxt "STR_FORM_SPINNER"
msgid "Spinner"
msgstr "Wjerćite tłóčatko"
-#: sc/inc/globstr.hrc:411
+#: sc/inc/globstr.hrc:412
msgctxt "STR_FORM_SCROLLBAR"
msgid "Scroll Bar"
msgstr "Suwanska lajsta"
-#: sc/inc/globstr.hrc:412
+#: sc/inc/globstr.hrc:413
msgctxt "STR_STYLE_FAMILY_CELL"
msgid "Cell Styles"
msgstr "Celowe předłohi"
-#: sc/inc/globstr.hrc:413
+#: sc/inc/globstr.hrc:414
msgctxt "STR_STYLE_FAMILY_PAGE"
msgid "Page Styles"
msgstr "Předłohi strony"
-#: sc/inc/globstr.hrc:414
+#: sc/inc/globstr.hrc:415
msgctxt "STR_ERR_DATAPILOTSOURCE"
msgid "Pivot table source data is invalid."
msgstr "Žórłowe daty pivotoweje tabele su njepłaćiwe."
-#: sc/inc/globstr.hrc:415
+#: sc/inc/globstr.hrc:416
msgctxt "STR_OPTIONS_WARN_SEPARATORS"
msgid "Because the current formula separator settings conflict with the locale, the formula separators have been reset to their default values."
msgstr "Dokelž nastajenja dźělatka aktualneje formle su w konflikće z lokalu, su so formlowe dźělatka na swoje standardne hódnoty wróćo stajili."
-#: sc/inc/globstr.hrc:416
+#: sc/inc/globstr.hrc:417
msgctxt "STR_UNDO_INSERT_CURRENT_DATE"
msgid "Insert Current Date"
msgstr "Aktualny datum zasadźić"
-#: sc/inc/globstr.hrc:417
+#: sc/inc/globstr.hrc:418
msgctxt "STR_UNDO_INSERT_CURRENT_TIME"
msgid "Insert Current Time"
msgstr "Aktualny čas zasadźić"
-#: sc/inc/globstr.hrc:418
+#: sc/inc/globstr.hrc:419
msgctxt "STR_MANAGE_NAMES"
msgid "Manage Names..."
msgstr "Mjena rjadować..."
-#: sc/inc/globstr.hrc:419
+#: sc/inc/globstr.hrc:420
msgctxt "STR_HEADER_NAME"
msgid "Name"
msgstr "Mjeno"
-#: sc/inc/globstr.hrc:420
+#: sc/inc/globstr.hrc:421
msgctxt "STR_HEADER_RANGE_OR_EXPR"
msgid "Range or formula expression"
msgstr "Wobłuk abo formlowy wuraz"
-#: sc/inc/globstr.hrc:421
+#: sc/inc/globstr.hrc:422
msgctxt "STR_HEADER_SCOPE"
msgid "Scope"
msgstr "Wobwod płaćiwosće"
-#: sc/inc/globstr.hrc:422
+#: sc/inc/globstr.hrc:423
msgctxt "STR_MULTI_SELECT"
msgid "(multiple)"
msgstr "(wjacore)"
-#: sc/inc/globstr.hrc:423
+#: sc/inc/globstr.hrc:424
msgctxt "STR_GLOBAL_SCOPE"
msgid "Document (Global)"
msgstr "Dokument (globalny)"
-#: sc/inc/globstr.hrc:424
+#: sc/inc/globstr.hrc:425
msgctxt "STR_ERR_NAME_EXISTS"
msgid "Invalid name. Already in use for the selected scope."
msgstr "Njepłaćiwe mjeno. Wužiwa so hižo za wubrany wobwod."
-#: sc/inc/globstr.hrc:425
+#: sc/inc/globstr.hrc:426
msgctxt "STR_ERR_NAME_INVALID"
msgid "Invalid name. Only use letters, numbers and underscore."
msgstr "Njepłaćiwe mjeno. Wužiwajće jenož pismiki, ličby a podsmužku."
-#: sc/inc/globstr.hrc:426
+#: sc/inc/globstr.hrc:427
msgctxt "STR_UNSAVED_EXT_REF"
msgid ""
"This Document contains external references to unsaved documents.\n"
@@ -2095,217 +2100,217 @@ msgstr ""
"\n"
"Chceće pokročować?"
-#: sc/inc/globstr.hrc:427
+#: sc/inc/globstr.hrc:428
msgctxt "STR_CLOSE_WITH_UNSAVED_REFS"
msgid "This Document is referenced by another document and not yet saved. Closing it without saving will result in data loss."
msgstr "Druhi hišće njeskładowany dokument na tutón dokument wotkazuje. Hdyž jón začinjeće bjeztoho, zo byšće jón składował, so daty zhubja."
-#: sc/inc/globstr.hrc:428
+#: sc/inc/globstr.hrc:429
msgctxt "STR_HEADER_RANGE"
msgid "Range"
msgstr "Wobłuk"
-#: sc/inc/globstr.hrc:429
+#: sc/inc/globstr.hrc:430
msgctxt "STR_HEADER_COND"
msgid "First Condition"
msgstr "Prěnje wuměnjenje"
-#: sc/inc/globstr.hrc:430
+#: sc/inc/globstr.hrc:431
msgctxt "STR_COND_CONDITION"
msgid "Cell value is"
msgstr "Celowa hódnota je"
-#: sc/inc/globstr.hrc:431
+#: sc/inc/globstr.hrc:432
msgctxt "STR_COND_COLORSCALE"
msgid "ColorScale"
msgstr "Barbowa skala"
-#: sc/inc/globstr.hrc:432
+#: sc/inc/globstr.hrc:433
msgctxt "STR_COND_DATABAR"
msgid "DataBar"
msgstr "Datowa hrjada"
-#: sc/inc/globstr.hrc:433
+#: sc/inc/globstr.hrc:434
msgctxt "STR_COND_ICONSET"
msgid "IconSet"
msgstr "Symbolowa sadźba"
-#: sc/inc/globstr.hrc:434
+#: sc/inc/globstr.hrc:435
msgctxt "STR_COND_BETWEEN"
msgid "between"
msgstr "mjez"
-#: sc/inc/globstr.hrc:435
+#: sc/inc/globstr.hrc:436
msgctxt "STR_COND_NOTBETWEEN"
msgid "not between"
msgstr "nic mjez"
-#: sc/inc/globstr.hrc:436
+#: sc/inc/globstr.hrc:437
msgctxt "STR_COND_UNIQUE"
msgid "unique"
msgstr "jónkróćny"
-#: sc/inc/globstr.hrc:437
+#: sc/inc/globstr.hrc:438
msgctxt "STR_COND_DUPLICATE"
msgid "duplicate"
msgstr "Duplikat"
-#: sc/inc/globstr.hrc:438
+#: sc/inc/globstr.hrc:439
msgctxt "STR_COND_FORMULA"
msgid "Formula is"
msgstr "Formla je"
-#: sc/inc/globstr.hrc:439
+#: sc/inc/globstr.hrc:440
msgctxt "STR_COND_TOP10"
msgid "Top Elements"
msgstr "Hornje elementy"
-#: sc/inc/globstr.hrc:440
+#: sc/inc/globstr.hrc:441
msgctxt "STR_COND_BOTTOM10"
msgid "Bottom Elements"
msgstr "Delnje elementy"
-#: sc/inc/globstr.hrc:441
+#: sc/inc/globstr.hrc:442
msgctxt "STR_COND_TOP_PERCENT"
msgid "Top Percent"
msgstr "Najwyša procentowa sadźba"
-#: sc/inc/globstr.hrc:442
+#: sc/inc/globstr.hrc:443
msgctxt "STR_COND_DATE"
msgid "Date is"
msgstr "Datum je"
-#: sc/inc/globstr.hrc:443
+#: sc/inc/globstr.hrc:444
msgctxt "STR_COND_BOTTOM_PERCENT"
msgid "Bottom Percent"
msgstr "Delnja procentowa sadźba"
-#: sc/inc/globstr.hrc:444
+#: sc/inc/globstr.hrc:445
msgctxt "STR_COND_ABOVE_AVERAGE"
msgid "Above Average"
msgstr "Nadpřerězny"
-#: sc/inc/globstr.hrc:445
+#: sc/inc/globstr.hrc:446
msgctxt "STR_COND_BELOW_AVERAGE"
msgid "Below Average"
msgstr "Podpřerězny"
-#: sc/inc/globstr.hrc:446
+#: sc/inc/globstr.hrc:447
msgctxt "STR_COND_ABOVE_EQUAL_AVERAGE"
msgid "Above or equal Average"
msgstr "Nad přerězkom abo runja přerězkej"
-#: sc/inc/globstr.hrc:447
+#: sc/inc/globstr.hrc:448
msgctxt "STR_COND_BELOW_EQUAL_AVERAGE"
msgid "Below or equal Average"
msgstr "Pod přerězkom abo runja přerězkej"
-#: sc/inc/globstr.hrc:448
+#: sc/inc/globstr.hrc:449
msgctxt "STR_COND_ERROR"
msgid "an Error code"
msgstr "zmylkowy kod"
-#: sc/inc/globstr.hrc:449
+#: sc/inc/globstr.hrc:450
msgctxt "STR_COND_NOERROR"
msgid "not an Error code"
msgstr "žadyn zmylkowy kod"
-#: sc/inc/globstr.hrc:450
+#: sc/inc/globstr.hrc:451
msgctxt "STR_COND_BEGINS_WITH"
msgid "Begins with"
msgstr "Započina so z"
-#: sc/inc/globstr.hrc:451
+#: sc/inc/globstr.hrc:452
msgctxt "STR_COND_ENDS_WITH"
msgid "Ends with"
msgstr "Kónči so z"
-#: sc/inc/globstr.hrc:452
+#: sc/inc/globstr.hrc:453
msgctxt "STR_COND_CONTAINS"
msgid "Contains"
msgstr "Wobsahuje"
-#: sc/inc/globstr.hrc:453
+#: sc/inc/globstr.hrc:454
msgctxt "STR_COND_NOT_CONTAINS"
msgid "Not Contains"
msgstr "Njewobsahuje"
-#: sc/inc/globstr.hrc:454
+#: sc/inc/globstr.hrc:455
msgctxt "STR_COND_TODAY"
msgid "today"
msgstr "dźensa"
-#: sc/inc/globstr.hrc:455
+#: sc/inc/globstr.hrc:456
msgctxt "STR_COND_YESTERDAY"
msgid "yesterday"
msgstr "wčera"
-#: sc/inc/globstr.hrc:456
+#: sc/inc/globstr.hrc:457
msgctxt "STR_COND_TOMORROW"
msgid "tomorrow"
msgstr "jutře"
-#: sc/inc/globstr.hrc:457
+#: sc/inc/globstr.hrc:458
msgctxt "STR_COND_LAST7DAYS"
msgid "in the last 7 days"
msgstr "w poslednich 7 dnjach"
-#: sc/inc/globstr.hrc:458
+#: sc/inc/globstr.hrc:459
msgctxt "STR_COND_THISWEEK"
msgid "this week"
msgstr "tutón tydźeń"
-#: sc/inc/globstr.hrc:459
+#: sc/inc/globstr.hrc:460
msgctxt "STR_COND_LASTWEEK"
msgid "last week"
msgstr "zańdźeny tydźeń"
-#: sc/inc/globstr.hrc:460
+#: sc/inc/globstr.hrc:461
msgctxt "STR_COND_NEXTWEEK"
msgid "next week"
msgstr "na nowy tydźeń"
-#: sc/inc/globstr.hrc:461
+#: sc/inc/globstr.hrc:462
msgctxt "STR_COND_THISMONTH"
msgid "this month"
msgstr "tutón měsac"
-#: sc/inc/globstr.hrc:462
+#: sc/inc/globstr.hrc:463
msgctxt "STR_COND_LASTMONTH"
msgid "last month"
msgstr "zańdźeny měsac"
-#: sc/inc/globstr.hrc:463
+#: sc/inc/globstr.hrc:464
msgctxt "STR_COND_NEXTMONTH"
msgid "next month"
msgstr "přichodny měsac"
-#: sc/inc/globstr.hrc:464
+#: sc/inc/globstr.hrc:465
msgctxt "STR_COND_THISYEAR"
msgid "this year"
msgstr "lětsa"
-#: sc/inc/globstr.hrc:465
+#: sc/inc/globstr.hrc:466
msgctxt "STR_COND_LASTYEAR"
msgid "last year"
msgstr "loni"
-#: sc/inc/globstr.hrc:466
+#: sc/inc/globstr.hrc:467
msgctxt "STR_COND_NEXTYEAR"
msgid "next year"
msgstr "klětu"
-#: sc/inc/globstr.hrc:467
+#: sc/inc/globstr.hrc:468
msgctxt "STR_COND_AND"
msgid "and"
msgstr "a"
-#: sc/inc/globstr.hrc:468
+#: sc/inc/globstr.hrc:469
msgctxt "STR_ERR_CONDFORMAT_PROTECTED"
msgid "Conditional Formats can not be created, deleted or changed in protected sheets."
msgstr "Wuměnjene formaty njedadźa so w škitanych tabelach wutworić, zhašeć abo změnić."
-#: sc/inc/globstr.hrc:469
+#: sc/inc/globstr.hrc:470
msgctxt "STR_EDIT_EXISTING_COND_FORMATS"
msgid ""
"The selected cell already contains conditional formatting. You can either edit the existing conditional format or you define a new overlapping conditional format.\n"
@@ -2316,7 +2321,7 @@ msgstr ""
"\n"
" Chceće eksistowacy wuměnjeny format wobdźěłać?"
-#: sc/inc/globstr.hrc:470
+#: sc/inc/globstr.hrc:471
msgctxt "STR_QUERY_FORMULA_RECALC_ONLOAD_ODS"
msgid ""
"This document was last saved by an application other than %PRODUCTNAME. Some formula cells may produce different results when recalculated.\n"
@@ -2327,7 +2332,7 @@ msgstr ""
"\n"
"Chceće wšě formlowe cele w tutym dokumenće nětko znowa wobličeć?"
-#: sc/inc/globstr.hrc:471
+#: sc/inc/globstr.hrc:472
msgctxt "STR_QUERY_FORMULA_RECALC_ONLOAD_XLS"
msgid ""
"This document was last saved by Excel. Some formula cells may produce different results when recalculated.\n"
@@ -2338,77 +2343,77 @@ msgstr ""
"\n"
"Chceće wšě formlowe cele nětko znowa wobličeć?"
-#: sc/inc/globstr.hrc:472
+#: sc/inc/globstr.hrc:473
msgctxt "STR_NO_INSERT_DELETE_OVER_PIVOT_TABLE"
msgid "You cannot insert or delete cells when the affected range intersects with pivot table."
msgstr "Njemóžeće cele zasadźić abo zhašeć, hdyž potrjecheny wobłuk do pivotoweje tabele saha."
-#: sc/inc/globstr.hrc:473
+#: sc/inc/globstr.hrc:474
msgctxt "STR_DPFIELD_GROUP_BY_SECONDS"
msgid "Seconds"
msgstr "Sekundy"
-#: sc/inc/globstr.hrc:474
+#: sc/inc/globstr.hrc:475
msgctxt "STR_DPFIELD_GROUP_BY_MINUTES"
msgid "Minutes"
msgstr "Mjeńšiny"
-#: sc/inc/globstr.hrc:475
+#: sc/inc/globstr.hrc:476
msgctxt "STR_DPFIELD_GROUP_BY_HOURS"
msgid "Hours"
msgstr "Hodźiny"
-#: sc/inc/globstr.hrc:476
+#: sc/inc/globstr.hrc:477
msgctxt "STR_DPFIELD_GROUP_BY_DAYS"
msgid "Days"
msgstr "Dny"
-#: sc/inc/globstr.hrc:477
+#: sc/inc/globstr.hrc:478
msgctxt "STR_DPFIELD_GROUP_BY_MONTHS"
msgid "Months"
msgstr "Měsacy"
-#: sc/inc/globstr.hrc:478
+#: sc/inc/globstr.hrc:479
msgctxt "STR_DPFIELD_GROUP_BY_QUARTERS"
msgid "Quarters"
msgstr "Kwartale"
-#: sc/inc/globstr.hrc:479
+#: sc/inc/globstr.hrc:480
msgctxt "STR_DPFIELD_GROUP_BY_YEARS"
msgid "Years"
msgstr "Lěta"
-#: sc/inc/globstr.hrc:480
+#: sc/inc/globstr.hrc:481
msgctxt "STR_INVALIDVAL"
msgid "Invalid target value."
msgstr "Njepłaćiwa cilowa hódnota."
-#: sc/inc/globstr.hrc:481
+#: sc/inc/globstr.hrc:482
msgctxt "STR_INVALIDVAR"
msgid "Undefined name for variable cell."
msgstr "Njedefinowane mjeno za přeměnjatu celu."
-#: sc/inc/globstr.hrc:482
+#: sc/inc/globstr.hrc:483
msgctxt "STR_INVALIDFORM"
msgid "Undefined name as formula cell."
msgstr "Njedfinowane mjeno jako formlowa cela."
-#: sc/inc/globstr.hrc:483
+#: sc/inc/globstr.hrc:484
msgctxt "STR_NOFORMULA"
msgid "Formula cell must contain a formula."
msgstr "Formlowa cela dyrbi formlu wobsahować."
-#: sc/inc/globstr.hrc:484
+#: sc/inc/globstr.hrc:485
msgctxt "STR_INVALIDINPUT"
msgid "Invalid input."
msgstr "Njepłaćiwe zapodaće."
-#: sc/inc/globstr.hrc:485
+#: sc/inc/globstr.hrc:486
msgctxt "STR_INVALIDCONDITION"
msgid "Invalid condition."
msgstr "Njepłaćiwe wuměnjenje."
-#: sc/inc/globstr.hrc:486
+#: sc/inc/globstr.hrc:487
msgctxt "STR_QUERYREMOVE"
msgid ""
"Should the entry\n"
@@ -2419,133 +2424,133 @@ msgstr ""
"#\n"
"zhašeć?"
-#: sc/inc/globstr.hrc:487
+#: sc/inc/globstr.hrc:488
msgctxt "STR_COPYLIST"
msgid "Copy List"
msgstr "Lisćinu kopěrować"
-#: sc/inc/globstr.hrc:488
+#: sc/inc/globstr.hrc:489
msgctxt "STR_COPYFROM"
msgid "List from"
msgstr "Lisćina z"
-#: sc/inc/globstr.hrc:489
+#: sc/inc/globstr.hrc:490
msgctxt "STR_COPYERR"
msgid "Cells without text have been ignored."
msgstr "Cele bjez teksta buchu ignorowane."
-#: sc/inc/globstr.hrc:490
+#: sc/inc/globstr.hrc:491
#, c-format
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%s-click to follow hyperlink:"
msgstr "%s+kliknjenje, zo byšće wotkazej slědował:"
-#: sc/inc/globstr.hrc:491
+#: sc/inc/globstr.hrc:492
msgctxt "STR_CLICKHYPERLINK"
msgid "click to open hyperlink:"
msgstr "klikńće, zo byšće wotkaz wočinił:"
-#: sc/inc/globstr.hrc:492
+#: sc/inc/globstr.hrc:493
msgctxt "STR_PRINT_PREVIEW_NODATA"
msgid "No Data"
msgstr "Žane daty"
-#: sc/inc/globstr.hrc:493
+#: sc/inc/globstr.hrc:494
msgctxt "STR_PRINT_PREVIEW_EMPTY_RANGE"
msgid "Print Range Empty"
msgstr "Prózdny ćišćerski wobłuk"
-#: sc/inc/globstr.hrc:494
+#: sc/inc/globstr.hrc:495
msgctxt "STR_UNDO_CONDFORMAT"
msgid "Conditional Format"
msgstr "Wuměnjene formatowanje"
-#: sc/inc/globstr.hrc:495
+#: sc/inc/globstr.hrc:496
msgctxt "STR_UNDO_CONDFORMAT_LIST"
msgid "Conditional Formats"
msgstr "Wuměnjene formatowanja"
-#: sc/inc/globstr.hrc:496
+#: sc/inc/globstr.hrc:497
msgctxt "STR_UNDO_FORMULA_TO_VALUE"
msgid "Convert Formula To Value"
msgstr "Formlu do hódnoty konwertować"
-#: sc/inc/globstr.hrc:497
+#: sc/inc/globstr.hrc:498
msgctxt "STR_UNQUOTED_STRING"
msgid "Strings without quotes are interpreted as column/row labels."
msgstr "Znamješkowe rjećazki bjez pazorkow so jako popisy špaltow/linkow interpretuja."
-#: sc/inc/globstr.hrc:498
+#: sc/inc/globstr.hrc:499
msgctxt "STR_ENTER_VALUE"
msgid "Enter a value!"
msgstr "Zapodajće hódnotu!"
-#: sc/inc/globstr.hrc:499
+#: sc/inc/globstr.hrc:500
msgctxt "STR_TABLE_COUNT"
msgid "Sheet %1 of %2"
msgstr "Tabela %1 z %2"
-#: sc/inc/globstr.hrc:500
+#: sc/inc/globstr.hrc:501
msgctxt "STR_FUNCTIONS_FOUND"
msgid "%1 and %2 more"
msgstr "%1 a %2 wjace"
-#: sc/inc/globstr.hrc:501
+#: sc/inc/globstr.hrc:502
msgctxt "STR_GENERAL"
msgid "General"
msgstr "Powšitkowny"
-#: sc/inc/globstr.hrc:502
+#: sc/inc/globstr.hrc:503
msgctxt "STR_NUMBER"
msgid "Number"
msgstr "Ličba"
-#: sc/inc/globstr.hrc:503
+#: sc/inc/globstr.hrc:504
msgctxt "STR_PERCENT"
msgid "Percent"
msgstr "Procent"
-#: sc/inc/globstr.hrc:504
+#: sc/inc/globstr.hrc:505
msgctxt "STR_CURRENCY"
msgid "Currency"
msgstr "Měna"
-#: sc/inc/globstr.hrc:505
+#: sc/inc/globstr.hrc:506
msgctxt "STR_DATE"
msgid "Date"
msgstr "Datum"
-#: sc/inc/globstr.hrc:506
+#: sc/inc/globstr.hrc:507
msgctxt "STR_TIME"
msgid "Time"
msgstr "Čas"
-#: sc/inc/globstr.hrc:507
+#: sc/inc/globstr.hrc:508
msgctxt "STR_SCIENTIFIC"
msgid "Scientific"
msgstr "Wědomostny"
-#: sc/inc/globstr.hrc:508
+#: sc/inc/globstr.hrc:509
msgctxt "STR_FRACTION"
msgid "Fraction"
msgstr "Łamk"
-#: sc/inc/globstr.hrc:509
+#: sc/inc/globstr.hrc:510
msgctxt "STR_BOOLEAN_VALUE"
msgid "Boolean Value"
msgstr "Wěrnostna hódnota"
-#: sc/inc/globstr.hrc:510
+#: sc/inc/globstr.hrc:511
msgctxt "STR_TEXT"
msgid "Text"
msgstr "Tekst"
-#: sc/inc/globstr.hrc:511
+#: sc/inc/globstr.hrc:512
msgctxt "STR_QUERY_PIVOTTABLE_DELTAB"
msgid "The selected sheet(s) contain source data of related pivot tables that will be lost. Are you sure you want to delete the selected sheet(s)?"
msgstr "Wubrane tabele žórłowe daty přisłušnych pivotowych tabelow wobsahuja, kotrež so zhubja. Chceće wubrane tabele woprawdźe zhašeć?"
-#: sc/inc/globstr.hrc:512
+#: sc/inc/globstr.hrc:513
msgctxt "STR_ERR_NAME_INVALID_CELL_REF"
msgid "Invalid name. Reference to a cell, or a range of cells not allowed."
msgstr "Njepłaćiwe mjeno. Poćah k celi abo wobłukej celow dowolene njeje."
@@ -10487,8 +10492,8 @@ msgstr "Modus"
#: sc/inc/scfuncs.hrc:3010
msgctxt "SC_OPCODE_T_TEST"
-msgid "Mode specifies the number of distribution tails to return. 1= one-tailed, 2 = two-tailed distribution"
-msgstr "Modus podawa ličbu rozdźělenskich bokow. kotryž so ma wróćić. 1 = jednobóčne, 2= dwubóčne rozdźělenje"
+msgid "Mode specifies the number of distribution tails to return. 1 = one-tailed, 2 = two-tailed distribution"
+msgstr "Modus podawa ličbu rozdźělenskich bokow, kotryž so ma wróćić. 1 = jednobóčne, 2= dwubóčne rozdźělenje"
#: sc/inc/scfuncs.hrc:3011
msgctxt "SC_OPCODE_T_TEST"
@@ -10532,8 +10537,8 @@ msgstr "Modus"
#: sc/inc/scfuncs.hrc:3024
msgctxt "SC_OPCODE_T_TEST_MS"
-msgid "Mode specifies the number of distribution tails to return. 1= one-tailed, 2 = two-tailed distribution"
-msgstr "Modus podawa ličbu rozdźělenskich bokow. kotryž so ma wróćić. 1 = jednobóčne, 2= dwubóčne rozdźělenje"
+msgid "Mode specifies the number of distribution tails to return. 1 = one-tailed, 2 = two-tailed distribution"
+msgstr "Modus podawa ličbu rozdźělenskich bokow, kotryž so ma wróćić. 1 = jednobóčne, 2= dwubóčne rozdźělenje"
#: sc/inc/scfuncs.hrc:3025
msgctxt "SC_OPCODE_T_TEST_MS"
@@ -18019,22 +18024,22 @@ msgctxt "mergecellsdialog|MergeCellsDialog"
msgid "Merge Cells"
msgstr "Cele zwjazać"
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:81
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:84
msgctxt "mergecellsdialog|label"
msgid "Some cells are not empty."
msgstr "Někotre cele prózdne njejsu."
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:96
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:99
msgctxt "mergecellsdialog|move-cells-radio"
msgid "Move the contents of the hidden cells into the first cell"
msgstr "Wobsah schowanych celow do prěnjeje cele přesunyć"
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:112
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:115
msgctxt "mergecellsdialog|empty-cells-radio"
msgid "Empty the contents of the hidden cells"
msgstr "Wobsah schowanych celow zhašeć"
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:128
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:131
msgctxt "mergecellsdialog|keep-content-radio"
msgid "Keep the contents of the hidden cells"
msgstr "Wobsah schowanych celow wobchować"
@@ -18302,12 +18307,12 @@ msgstr "_Aktualizacije pytać..."
#: sc/uiconfig/scalc/ui/notebookbar.ui:1952
msgctxt "notebookbar|FileLabel"
msgid "_File"
-msgstr ""
+msgstr "_Dataja"
#: sc/uiconfig/scalc/ui/notebookbar.ui:1971
msgctxt "notebookbar|HelpMenuButton"
msgid "_Help"
-msgstr ""
+msgstr "_Pomoc"
#: sc/uiconfig/scalc/ui/notebookbar.ui:2769
msgctxt "notebookbar|FileLabel"
@@ -18333,7 +18338,7 @@ msgstr "Zasunjenje pomjeńšić"
#: sc/uiconfig/scalc/ui/notebookbar.ui:4436
msgctxt "notebookbar|HomeMenuButton"
msgid "_Home"
-msgstr ""
+msgstr "_Start"
#: sc/uiconfig/scalc/ui/notebookbar.ui:4544
msgctxt "notebookbar|CalcLabel"
@@ -18343,12 +18348,12 @@ msgstr "Start"
#: sc/uiconfig/scalc/ui/notebookbar.ui:4991
msgctxt "notebookbar|FieldMenuButton"
msgid "Fiel_d"
-msgstr ""
+msgstr "Po_lo"
#: sc/uiconfig/scalc/ui/notebookbar.ui:5496
msgctxt "notebookbar|InsertMenuButton"
msgid "_Insert"
-msgstr ""
+msgstr "_Zasadźić"
#: sc/uiconfig/scalc/ui/notebookbar.ui:5581
msgctxt "notebookbar|InsertLabel"
@@ -18358,7 +18363,7 @@ msgstr "Zasadźić"
#: sc/uiconfig/scalc/ui/notebookbar.ui:5610
msgctxt "notebookbar|reviewb"
msgid "Pag_e"
-msgstr ""
+msgstr "S_trona"
#: sc/uiconfig/scalc/ui/notebookbar.ui:6335
msgctxt "notebookbar|PageLayoutLabel"
@@ -18373,7 +18378,7 @@ msgstr "_Statistika"
#: sc/uiconfig/scalc/ui/notebookbar.ui:7304
msgctxt "notebookbar|DataMenuButton"
msgid "_Data"
-msgstr ""
+msgstr "_Daty"
#: sc/uiconfig/scalc/ui/notebookbar.ui:7412
msgctxt "notebookbar|DataLabel"
@@ -18383,7 +18388,7 @@ msgstr "Daty"
#: sc/uiconfig/scalc/ui/notebookbar.ui:8035
msgctxt "notebookbar|ReviewMenuButton"
msgid "_Review"
-msgstr ""
+msgstr "_Wersija"
#: sc/uiconfig/scalc/ui/notebookbar.ui:8120
msgctxt "notebookbar|ReviewLabel"
@@ -18393,7 +18398,7 @@ msgstr "Přepruwować"
#: sc/uiconfig/scalc/ui/notebookbar.ui:8896
msgctxt "notebookbar|ViewMenuButton"
msgid "_View"
-msgstr ""
+msgstr "_Napohlad"
#: sc/uiconfig/scalc/ui/notebookbar.ui:8981
msgctxt "notebookbar|ViewLabel"
@@ -18403,7 +18408,7 @@ msgstr "Napohlad"
#: sc/uiconfig/scalc/ui/notebookbar.ui:9008
msgctxt "notebookbar|GraphicMenuButton"
msgid "_Graphic"
-msgstr ""
+msgstr "_Grafika"
#: sc/uiconfig/scalc/ui/notebookbar.ui:9949
msgctxt "notebookbar|ImageLabel"
@@ -18413,12 +18418,12 @@ msgstr "Wobraz"
#: sc/uiconfig/scalc/ui/notebookbar.ui:11228
msgctxt "notebookbar|DrawMenuButton"
msgid "D_raw"
-msgstr ""
+msgstr "_Rysować"
#: sc/uiconfig/scalc/ui/notebookbar.ui:11340
msgctxt "notebookbar|DrawLabel"
msgid "Draw"
-msgstr ""
+msgstr "Rysować"
#: sc/uiconfig/scalc/ui/notebookbar.ui:11993
msgctxt "notebookbar|frame:MenuDraw"
@@ -18433,12 +18438,12 @@ msgstr "Objekt"
#: sc/uiconfig/scalc/ui/notebookbar.ui:12113
msgctxt "notebookbar|ToolsMenuButton"
msgid "_Tools"
-msgstr ""
+msgstr "_Nastroje"
#: sc/uiconfig/scalc/ui/notebookbar.ui:13250
msgctxt "notebookbar|DevLabel"
msgid "Tools"
-msgstr ""
+msgstr "Nastroje"
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:2945
msgctxt "notebookbar_groupedbar_compact|Menu"
diff --git a/source/hsb/scp2/source/ooo.po b/source/hsb/scp2/source/ooo.po
index 6ff88c64e13..70bfcc1b5f5 100644
--- a/source/hsb/scp2/source/ooo.po
+++ b/source/hsb/scp2/source/ooo.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2018-05-23 23:20+0200\n"
-"PO-Revision-Date: 2018-01-15 15:50+0000\n"
+"PO-Revision-Date: 2018-05-24 20:23+0000\n"
"Last-Translator: Michael Wolf <milupo@sorbzilla.de>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: hsb\n"
@@ -12,8 +12,8 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1516031415.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1527193413.000000\n"
#: folderitem_ooo.ulf
msgctxt ""
@@ -1885,7 +1885,7 @@ msgctxt ""
"STR_NAME_MODULE_LANGPACK_FY\n"
"LngText.text"
msgid "Frisian"
-msgstr ""
+msgstr "Frizišćina"
#: module_langpack.ulf
msgctxt ""
@@ -1893,7 +1893,7 @@ msgctxt ""
"STR_DESC_MODULE_LANGPACK_FY\n"
"LngText.text"
msgid "Installs the Frisian user interface"
-msgstr ""
+msgstr "Instaluje friziski wužiwarski powjerch"
#: module_langpack.ulf
msgctxt ""
diff --git a/source/hsb/sd/messages.po b/source/hsb/sd/messages.po
index c456070b495..7612169a356 100644
--- a/source/hsb/sd/messages.po
+++ b/source/hsb/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: 2018-05-22 13:16+0200\n"
-"PO-Revision-Date: 2018-05-16 19:47+0000\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
+"PO-Revision-Date: 2018-05-26 08:44+0000\n"
"Last-Translator: Michael Wolf <milupo@sorbzilla.de>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: hsb\n"
@@ -13,169 +13,169 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1526500061.000000\n"
+"X-POOTLE-MTIME: 1527324284.000000\n"
-#: sd/inc/DocumentRenderer.hrc:29
+#: sd/inc/DocumentRenderer.hrc:27
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Slides"
msgstr "Folije"
-#: sd/inc/DocumentRenderer.hrc:30
+#: sd/inc/DocumentRenderer.hrc:28
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Handouts"
msgstr "Cedle do ruki"
-#: sd/inc/DocumentRenderer.hrc:31
+#: sd/inc/DocumentRenderer.hrc:29
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Notes"
msgstr "Noticy"
-#: sd/inc/DocumentRenderer.hrc:32
+#: sd/inc/DocumentRenderer.hrc:30
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Outline"
msgstr "Rozrjad"
-#: sd/inc/DocumentRenderer.hrc:37
+#: sd/inc/DocumentRenderer.hrc:35
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "According to layout"
msgstr "Po wuhotowanju"
-#: sd/inc/DocumentRenderer.hrc:38
+#: sd/inc/DocumentRenderer.hrc:36
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "1"
msgstr "1"
-#: sd/inc/DocumentRenderer.hrc:39
+#: sd/inc/DocumentRenderer.hrc:37
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "2"
msgstr "2"
-#: sd/inc/DocumentRenderer.hrc:40
+#: sd/inc/DocumentRenderer.hrc:38
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "3"
msgstr "3"
-#: sd/inc/DocumentRenderer.hrc:41
+#: sd/inc/DocumentRenderer.hrc:39
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "4"
msgstr "4"
-#: sd/inc/DocumentRenderer.hrc:42
+#: sd/inc/DocumentRenderer.hrc:40
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "6"
msgstr "6"
-#: sd/inc/DocumentRenderer.hrc:43
+#: sd/inc/DocumentRenderer.hrc:41
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "9"
msgstr "9"
-#: sd/inc/DocumentRenderer.hrc:48
+#: sd/inc/DocumentRenderer.hrc:46
msgctxt "STR_IMPRESS_PRINT_UI_ORDER_CHOICES"
msgid "Left to right, then down"
msgstr "Wotlěwa doprawa, potom dele"
-#: sd/inc/DocumentRenderer.hrc:49
+#: sd/inc/DocumentRenderer.hrc:47
msgctxt "STR_IMPRESS_PRINT_UI_ORDER_CHOICES"
msgid "Top to bottom, then right"
msgstr "Wot horjeka do deleka, potom naprawo"
-#: sd/inc/DocumentRenderer.hrc:54
+#: sd/inc/DocumentRenderer.hrc:52
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Original colors"
msgstr "Originalne barby"
-#: sd/inc/DocumentRenderer.hrc:55
+#: sd/inc/DocumentRenderer.hrc:53
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Grayscale"
msgstr "Stopnje šěrje"
-#: sd/inc/DocumentRenderer.hrc:56
+#: sd/inc/DocumentRenderer.hrc:54
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Black & white"
msgstr "Čorny a běły"
-#: sd/inc/DocumentRenderer.hrc:61
+#: sd/inc/DocumentRenderer.hrc:59
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Original size"
msgstr "Originalna wulkosć"
-#: sd/inc/DocumentRenderer.hrc:62
+#: sd/inc/DocumentRenderer.hrc:60
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Fit to printable page"
msgstr "Ćišćomnej stronje přiměrić"
-#: sd/inc/DocumentRenderer.hrc:63
+#: sd/inc/DocumentRenderer.hrc:61
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Distribute on multiple sheets of paper"
msgstr "Na wjacore łopjena papjery rozdźělić"
-#: sd/inc/DocumentRenderer.hrc:64
+#: sd/inc/DocumentRenderer.hrc:62
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Tile sheet of paper with repeated slides"
msgstr "Łopjeno papjery z wospjetowanymi folijemi pjelnić"
-#: sd/inc/DocumentRenderer.hrc:69
+#: sd/inc/DocumentRenderer.hrc:67
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Original size"
msgstr "Originalna wulkosć"
-#: sd/inc/DocumentRenderer.hrc:70
+#: sd/inc/DocumentRenderer.hrc:68
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Fit to printable page"
msgstr "Ćišćomnej stronje přiměrić"
-#: sd/inc/DocumentRenderer.hrc:71
+#: sd/inc/DocumentRenderer.hrc:69
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Distribute on multiple sheets of paper"
msgstr "Na wjacore łopjena papjery rozdźělić"
-#: sd/inc/DocumentRenderer.hrc:72
+#: sd/inc/DocumentRenderer.hrc:70
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Tile sheet of paper with repeated pages"
msgstr "Łopjeno papjery z wospjetowanymi stronami pjelnić"
-#: sd/inc/DocumentRenderer.hrc:77
+#: sd/inc/DocumentRenderer.hrc:75
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "All pages"
msgstr "Wšě strony"
-#: sd/inc/DocumentRenderer.hrc:78
+#: sd/inc/DocumentRenderer.hrc:76
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "Front sides / right pages"
msgstr "Prědnje boki / prawe strony"
-#: sd/inc/DocumentRenderer.hrc:79
+#: sd/inc/DocumentRenderer.hrc:77
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "Back sides / left pages"
msgstr "Zadnje boki / lěwe strony"
-#: sd/inc/DocumentRenderer.hrc:84
+#: sd/inc/DocumentRenderer.hrc:82
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~All slides"
msgstr "~Wšě folije"
-#: sd/inc/DocumentRenderer.hrc:85
+#: sd/inc/DocumentRenderer.hrc:83
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~Slides"
msgstr "~Folije"
-#: sd/inc/DocumentRenderer.hrc:86
+#: sd/inc/DocumentRenderer.hrc:84
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Se~lection"
msgstr "Wu~běr"
-#: sd/inc/DocumentRenderer.hrc:91
+#: sd/inc/DocumentRenderer.hrc:89
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~All pages"
msgstr "Wšě ~strony"
-#: sd/inc/DocumentRenderer.hrc:92
+#: sd/inc/DocumentRenderer.hrc:90
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Pa~ges"
msgstr "S~trony"
-#: sd/inc/DocumentRenderer.hrc:93
+#: sd/inc/DocumentRenderer.hrc:91
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Se~lection"
msgstr "Wu~běr"
@@ -1716,52 +1716,52 @@ msgstr "Objekt bjez pjelnjenki a wobrysa"
#: sd/inc/strings.hrc:323
msgctxt "STR_POOLSHEET_FILLED"
msgid "Filled"
-msgstr ""
+msgstr "Wupjelnjeny"
#: sd/inc/strings.hrc:324
msgctxt "STR_POOLSHEET_FILLED_BLUE"
msgid "Filled Blue"
-msgstr ""
+msgstr "Wupjelnjeny módry"
#: sd/inc/strings.hrc:325
msgctxt "STR_POOLSHEET_FILLED_GREEN"
msgid "Filled Green"
-msgstr ""
+msgstr "Wupjelnjeny zeleny"
#: sd/inc/strings.hrc:326
msgctxt "STR_POOLSHEET_FILLED_YELLOW"
msgid "Filled Yellow"
-msgstr ""
+msgstr "Wupjelnjeny žołty"
#: sd/inc/strings.hrc:327
msgctxt "STR_POOLSHEET_FILLED_RED"
msgid "Filled Red"
-msgstr ""
+msgstr "Wupjelnjeny čerwjeny"
#: sd/inc/strings.hrc:329
msgctxt "STR_POOLSHEET_OUTLINE"
msgid "Outlined"
-msgstr ""
+msgstr "Wobrys"
#: sd/inc/strings.hrc:330
msgctxt "STR_POOLSHEET_OUTLINE_BLUE"
msgid "Outlined Blue"
-msgstr ""
+msgstr "Wobrysowany módry"
#: sd/inc/strings.hrc:331
msgctxt "STR_POOLSHEET_OUTLINE_GREEN"
msgid "Outlined Green"
-msgstr ""
+msgstr "Wobrysowany zeleny"
#: sd/inc/strings.hrc:332
msgctxt "STR_POOLSHEET_OUTLINE_YELLOW"
msgid "Outlined Yellow"
-msgstr ""
+msgstr "Wobrysowany žołty"
#: sd/inc/strings.hrc:333
msgctxt "STR_POOLSHEET_OUTLINE_RED"
msgid "Outlined Red"
-msgstr ""
+msgstr "Wobrysowany čerwjeny"
#: sd/inc/strings.hrc:335
msgctxt "STR_PSEUDOSHEET_TITLE"
@@ -3614,67 +3614,67 @@ msgstr "_Aktualizacije pytać..."
#: sd/uiconfig/simpress/ui/notebookbar.ui:2422
msgctxt "notebookbar|FileLabel"
msgid "_File"
-msgstr ""
+msgstr "_Dataja"
#: sd/uiconfig/simpress/ui/notebookbar.ui:2441
msgctxt "notebookbar|HelpMenuButton"
msgid "_Help"
-msgstr ""
+msgstr "_Pomoc"
#: sd/uiconfig/simpress/ui/notebookbar.ui:3230
msgctxt "notebookbar|FileLabel"
msgid "File"
-msgstr ""
+msgstr "Dataja"
#: sd/uiconfig/simpress/ui/notebookbar.ui:3389
msgctxt "notebookbar|HomeMenuButton"
msgid "_Home"
-msgstr ""
+msgstr "_Start"
#: sd/uiconfig/simpress/ui/notebookbar.ui:4846
msgctxt "notebookbar|HomeLabel"
msgid "Home"
-msgstr ""
+msgstr "Start"
#: sd/uiconfig/simpress/ui/notebookbar.ui:5293
msgctxt "notebookbar|FieldMenuButton"
msgid "Fiel_d"
-msgstr ""
+msgstr "Po_lo"
#: sd/uiconfig/simpress/ui/notebookbar.ui:5820
msgctxt "notebookbar|InsertMenuButton"
msgid "_Insert"
-msgstr ""
+msgstr "_Zasadźić"
#: sd/uiconfig/simpress/ui/notebookbar.ui:5905
msgctxt "notebookbar|InsertLabel"
msgid "Insert"
-msgstr ""
+msgstr "Zasadźić"
#: sd/uiconfig/simpress/ui/notebookbar.ui:5935
msgctxt "notebookbar|SlideMenuButton"
msgid "S_lide"
-msgstr ""
+msgstr "_Folija"
#: sd/uiconfig/simpress/ui/notebookbar.ui:6688
msgctxt "notebookbar|LayoutLabel"
msgid "Slide"
-msgstr ""
+msgstr "Folija"
#: sd/uiconfig/simpress/ui/notebookbar.ui:6716
msgctxt "notebookbar|SlideShowMenuButton"
msgid "_Slide Show"
-msgstr ""
+msgstr "_Prezentacija"
#: sd/uiconfig/simpress/ui/notebookbar.ui:7194
msgctxt "notebookbar|ReferencesLabel"
msgid "Slide Show"
-msgstr ""
+msgstr "Prezentacija"
#: sd/uiconfig/simpress/ui/notebookbar.ui:7222
msgctxt "notebookbar|ReviewMenuButton"
msgid "_Review"
-msgstr ""
+msgstr "_Wersija"
#: sd/uiconfig/simpress/ui/notebookbar.ui:7651
msgctxt "notebookbar|ReviewLabel"
@@ -3684,7 +3684,7 @@ msgstr "Přepruwować"
#: sd/uiconfig/simpress/ui/notebookbar.ui:7679
msgctxt "notebookbar|ViewMenuButton"
msgid "_View"
-msgstr ""
+msgstr "_Napohlad"
#: sd/uiconfig/simpress/ui/notebookbar.ui:8580
msgctxt "notebookbar|ViewLabel"
@@ -3694,7 +3694,7 @@ msgstr "Napohlad"
#: sd/uiconfig/simpress/ui/notebookbar.ui:9369
msgctxt "notebookbar|TableMenuButton"
msgid "T_able"
-msgstr ""
+msgstr "T_abela"
#: sd/uiconfig/simpress/ui/notebookbar.ui:9453
msgctxt "notebookbar|TableLabel"
@@ -3705,12 +3705,12 @@ msgstr "Tabela"
#: sd/uiconfig/simpress/ui/notebookbar.ui:11131
msgctxt "notebookbar|ConvertMenuButton"
msgid "Convert"
-msgstr ""
+msgstr "Konwertować"
#: sd/uiconfig/simpress/ui/notebookbar.ui:10335
msgctxt "notebookbar|GraphicMenuButton"
msgid "_Graphic"
-msgstr ""
+msgstr "_Grafika"
#: sd/uiconfig/simpress/ui/notebookbar.ui:10447
msgctxt "notebookbar|ImageLabel"
@@ -3720,22 +3720,22 @@ msgstr "Wobraz"
#: sd/uiconfig/simpress/ui/notebookbar.ui:11658
msgctxt "notebookbar|DrawMenuButton"
msgid "D_raw"
-msgstr ""
+msgstr "_Rysować"
#: sd/uiconfig/simpress/ui/notebookbar.ui:11772
msgctxt "notebookbar|DrawLabel"
msgid "Draw"
-msgstr ""
+msgstr "Rysować"
#: sd/uiconfig/simpress/ui/notebookbar.ui:11804
msgctxt "notebookbar|ToolsMenuButton"
msgid "_Tools"
-msgstr ""
+msgstr "_Nastroje"
#: sd/uiconfig/simpress/ui/notebookbar.ui:12758
msgctxt "notebookbar|DevLabel"
msgid "Tools"
-msgstr ""
+msgstr "Nastroje"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:1922
msgctxt "notebookbar_groupedbar_compact|Menu"
@@ -5233,7 +5233,7 @@ msgstr "Normalny 1\""
#: sd/uiconfig/simpress/ui/sidebarslidebackground.ui:250
msgctxt "sidebarslidebackground|marginLB"
msgid "Normal 1.25\""
-msgstr "Normalny 1.25\""
+msgstr "Normalny 1,25\""
#: sd/uiconfig/simpress/ui/sidebarslidebackground.ui:251
msgctxt "sidebarslidebackground|marginLB"
diff --git a/source/hsb/sfx2/messages.po b/source/hsb/sfx2/messages.po
index 100f92f15ff..f7d4e835862 100644
--- a/source/hsb/sfx2/messages.po
+++ b/source/hsb/sfx2/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: 2018-05-22 13:16+0200\n"
-"PO-Revision-Date: 2018-04-06 18:53+0000\n"
+"PO-Revision-Date: 2018-06-06 21:25+0000\n"
"Last-Translator: Michael Wolf <milupo@sorbzilla.de>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: hsb\n"
@@ -12,8 +12,8 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1523040804.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1528320347.000000\n"
#: include/sfx2/strings.hrc:25
msgctxt "STR_TEMPLATE_FILTER"
@@ -167,7 +167,7 @@ msgstr " (dźěleny)"
#: include/sfx2/strings.hrc:54
msgctxt "STR_XMLSEC_ODF12_EXPECTED"
msgid "The document format version is set to ODF 1.1 (OpenOffice.org 2.x) in Tools-Options-Load/Save-General. Signing documents requires ODF 1.2 (OpenOffice.org 3.x)."
-msgstr "Wersija dokumentoweho formata je pod Nastroje - Nastajenja... - Začitać/Składować - Powšitkowny na ODF 1.1 (OpenOffice.org 2.x) nastajena. signowanje dokumentow sej ODF 1.2 (OpenOffice.org 3.x) wužaduje."
+msgstr "Wersija dokumentoweho formata je pod Nastroje - Nastajenja... - Začitać/Składować - Powšitkowny na ODF 1.1 (OpenOffice.org 2.x) nastajena. Signowanje dokumentow sej ODF 1.2 (OpenOffice.org 3.x) wužaduje."
#: include/sfx2/strings.hrc:55
msgctxt "STR_XMLSEC_QUERY_SAVESIGNEDBEFORESIGN"
@@ -654,7 +654,7 @@ msgid ""
"Would you like to change the document, and update all links\n"
"to get the most recent data?"
msgstr ""
-"Tutón dokument wobsahuje jedyn wotkaz abo wjace na eksterne daty.\n"
+"Tutón dokument jedyn wotkaz abo wjace wotkazow na eksterne daty wobsahuje.\n"
"\n"
"Chceće dokument změnić a wšě wotkazy aktualizować, zo byšće\n"
"najnowše daty dóstał?"
@@ -684,7 +684,7 @@ msgid ""
"Saving will remove all existing signatures.\n"
"Do you want to continue saving the document?"
msgstr ""
-"Składowanje wšě eksistowace signature wotstroni.\n"
+"Składowanje wšě eksistowace signatury wotstroni.\n"
"Chceće w składowanju dokumenta pokročować?"
#: include/sfx2/strings.hrc:151
@@ -1013,7 +1013,7 @@ msgstr "Přehlady pokazać"
#: include/sfx2/strings.hrc:214
msgctxt "STR_VIEWVERSIONCOMMENT"
msgid "View Version Comment"
-msgstr "Wersjowy komentar pokazać"
+msgstr "Wersijowy komentar pokazać"
#: include/sfx2/strings.hrc:215
msgctxt "STR_NO_NAME_SET"
diff --git a/source/hsb/svx/messages.po b/source/hsb/svx/messages.po
index 5b2cb49a818..b79416d4c53 100644
--- a/source/hsb/svx/messages.po
+++ b/source/hsb/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: 2018-05-16 16:53+0200\n"
-"PO-Revision-Date: 2018-05-16 19:53+0000\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
+"PO-Revision-Date: 2018-06-06 21:10+0000\n"
"Last-Translator: Michael Wolf <milupo@sorbzilla.de>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: hsb\n"
@@ -12,8 +12,8 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1526500393.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1528319459.000000\n"
#: svx/inc/fieldunit.hrc:30
msgctxt "RID_SVXSTR_FIELDUNIT_TABLE"
@@ -5178,8 +5178,8 @@ msgstr "Móžeće tež relewantne dźěle swojeho wužiwarskeho profila do zmylk
#: svx/uiconfig/ui/safemodedialog.ui:432
msgctxt "safemodedialog|btn_create_zip"
-msgid "Create Zip Archive from User Profile"
-msgstr "Zip-archiw z wužiwarskeho profila wutworić"
+msgid "Archive User Profile"
+msgstr "Archiwowy wužiwarski profil"
#: svx/uiconfig/ui/safemodedialog.ui:445
msgctxt "safemodedialog|linkbutton_profile"
@@ -8768,9 +8768,9 @@ msgid "Red"
msgstr "Čerwjeny"
#: include/svx/strings.hrc:565
-msgctxt "RID_SVXSTR_COLOR_VIOLET"
-msgid "Violet"
-msgstr "Fijałkojty"
+msgctxt "RID_SVXSTR_COLOR_MAGENTA"
+msgid "Magenta"
+msgstr "Magenta"
#: include/svx/strings.hrc:566
msgctxt "RID_SVXSTR_COLOR_PURPLE"
@@ -8834,9 +8834,9 @@ msgid "Light Red"
msgstr "Swětłočerwjeny"
#: include/svx/strings.hrc:579
-msgctxt "RID_SVXSTR_COLOR_LIGHTVIOLET"
-msgid "Light Violet"
-msgstr "Swětłowioletny"
+msgctxt "RID_SVXSTR_COLOR_LIGHTMAGENTA"
+msgid "Light Magenta"
+msgstr "Swětłomagenta"
#: include/svx/strings.hrc:580
msgctxt "RID_SVXSTR_COLOR_LIGHTPURPLE"
@@ -8900,9 +8900,9 @@ msgid "Dark Red"
msgstr "Ćmowočerwjeny"
#: include/svx/strings.hrc:593
-msgctxt "RID_SVXSTR_COLOR_DARKVIOLET1"
-msgid "Dark Violet"
-msgstr "Ćmowofijałkojty"
+msgctxt "RID_SVXSTR_COLOR_DARKMAGENTA"
+msgid "Dark Magenta"
+msgstr "Ćmowomagenta"
#: include/svx/strings.hrc:594
msgctxt "RID_SVXSTR_COLOR_DARKPURPLE"
@@ -8936,55 +8936,55 @@ msgstr "Ćmowožołtozeleny"
#. Elements of the Tonal color palette
#: include/svx/strings.hrc:601
+msgctxt "RID_SVXSTR_COLOR_VIOLET"
+msgid "Violet"
+msgstr "Fijałkojty"
+
+#: include/svx/strings.hrc:602
msgctxt "RID_SVXSTR_COLOR_VIOLET_OUG"
msgid "Violet (Out of Gamut)"
msgstr "Wioletny (zwonka gamuta)"
-#: include/svx/strings.hrc:602
+#: include/svx/strings.hrc:603
msgctxt "RID_SVXSTR_COLOR_BLUE_OUG"
msgid "Blue (Out of Gamut)"
msgstr "Módry (zwonka gamuta)"
-#: include/svx/strings.hrc:603
+#: include/svx/strings.hrc:604
msgctxt "RID_SVXSTR_COLOR_AZURE_OUG"
msgid "Azure (Out of Gamut)"
msgstr "Acuromódry (zwonka gamuta)"
-#: include/svx/strings.hrc:604
+#: include/svx/strings.hrc:605
msgctxt "RID_SVXSTR_COLOR_SPRINGGREEN_OUG"
msgid "Spring Green (Out of Gamut)"
msgstr "Nalětnja zeleń (zwonka gamuta)"
-#: include/svx/strings.hrc:605
+#: include/svx/strings.hrc:606
msgctxt "RID_SVXSTR_COLOR_GREEN_OUG"
msgid "Green (Out of Gamut)"
msgstr "Zeleny (zwonka gamuta)"
-#: include/svx/strings.hrc:606
+#: include/svx/strings.hrc:607
msgctxt "RID_SVXSTR_COLOR_CHARTREUSEGREEN_OUG"
msgid "Chartreuse Green (Out of Gamut)"
msgstr "Swětłozeleny (zwonka gamuta)"
-#: include/svx/strings.hrc:607
+#: include/svx/strings.hrc:608
msgctxt "RID_SVXSTR_COLOR_ORANGE_OUG"
msgid "Orange (Out of Gamut)"
msgstr "Oranžowy (zwonka gamuta)"
-#: include/svx/strings.hrc:608
+#: include/svx/strings.hrc:609
msgctxt "RID_SVXSTR_COLOR_RED_OUG"
msgid "Red (Out of Gamut)"
msgstr "Čerwjeny (zwonka gamuta)"
-#: include/svx/strings.hrc:609
+#: include/svx/strings.hrc:610
msgctxt "RID_SVXSTR_COLOR_ROSE_OUG"
msgid "Rose (Out of Gamut)"
msgstr "Róžowy (zwonka gamuta)"
-#: include/svx/strings.hrc:610
-msgctxt "RID_SVXSTR_COLOR_MAGENTA"
-msgid "Magenta"
-msgstr "Magenta"
-
#: include/svx/strings.hrc:611
msgctxt "RID_SVXSTR_COLOR_AZURE"
msgid "Azure"
@@ -12090,13 +12090,13 @@ msgstr "Doprawa pokazowace šipki za naličenja"
#: include/svx/strings.hrc:1273
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_6"
-msgid "Check mark bullets"
+msgid "Cross mark bullets"
msgstr "Křižki za naličenja"
#: include/svx/strings.hrc:1274
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_7"
-msgid "Tick mark bullets"
-msgstr "Hóčki za naličenja"
+msgid "Check mark bullets"
+msgstr "Křižki za naličenja"
#: include/svx/strings.hrc:1275
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_0"
diff --git a/source/hsb/sw/messages.po b/source/hsb/sw/messages.po
index f4c74ce70fe..4aec8a773b4 100644
--- a/source/hsb/sw/messages.po
+++ b/source/hsb/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: 2018-05-22 13:17+0200\n"
-"PO-Revision-Date: 2018-05-21 19:38+0000\n"
+"POT-Creation-Date: 2018-06-12 14:41+0200\n"
+"PO-Revision-Date: 2018-06-12 20:23+0000\n"
"Last-Translator: Michael Wolf <milupo@sorbzilla.de>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: hsb\n"
@@ -12,8 +12,8 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1526931539.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1528835006.000000\n"
#: sw/inc/app.hrc:29
msgctxt "RID_PARAGRAPHSTYLEFAMILY"
@@ -1179,13 +1179,13 @@ msgstr "Citat"
#: sw/inc/strings.hrc:172
msgctxt "STR_POOLCOLL_TOX_ILLUSH"
-msgid "Illustration Index Heading"
-msgstr "Nadpismo zapisa zwobraznjenjow"
+msgid "Figure Index Heading"
+msgstr "Nadpismo zapisa wobrazow"
#: sw/inc/strings.hrc:173
msgctxt "STR_POOLCOLL_TOX_ILLUS1"
-msgid "Illustration Index 1"
-msgstr "Zapis zwobraznjenjow 1"
+msgid "Figure Index 1"
+msgstr "Zapis wobrazow 1"
#: sw/inc/strings.hrc:174
msgctxt "STR_POOLCOLL_TOX_OBJECTH"
@@ -3589,8 +3589,8 @@ msgstr "Tabela objektow"
#: sw/inc/strings.hrc:672
msgctxt "STR_TOX_ILL"
-msgid "Illustration Index"
-msgstr "Zapis zwobraznjenjow"
+msgid "Table of Figures"
+msgstr "Zapis wobrazow"
#: sw/inc/strings.hrc:673
#, c-format
@@ -9243,72 +9243,72 @@ msgctxt "footnotepage|label5"
msgid "Continuation Notice"
msgstr "Pokročowanska pokazka"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:49
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:55
msgctxt "footnotesendnotestabpage|ftnntnum"
msgid "_Restart numbering"
msgstr "Čisłowanje _znowa započeć"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:91
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:93
msgctxt "footnotesendnotestabpage|ftnoffset_label"
msgid "_Start at:"
msgstr "Započeć _wot:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:112
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:111
msgctxt "footnotesendnotestabpage|ftnntnumfmt"
msgid "Custom _format"
msgstr "Swójski _format"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:155
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:150
msgctxt "footnotesendnotestabpage|ftnsuffix_label"
msgid "Aft_er:"
msgstr "_Za tym:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:199
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:188
msgctxt "footnotesendnotestabpage|ftnprefix_label"
msgid "Be_fore:"
msgstr "_Před tym:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:228
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:212
msgctxt "footnotesendnotestabpage|ftnntattextend"
msgid "Collec_t at end of text"
msgstr "Na kóncu _teksta zhromadźić"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:252
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:234
msgctxt "footnotesendnotestabpage|label1"
msgid "Footnotes"
msgstr "Nóžki"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:289
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:271
msgctxt "footnotesendnotestabpage|endntattextend"
msgid "C_ollect at end of section"
msgstr "Na kóncu wot_rězka zhromadźić"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:315
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:295
msgctxt "footnotesendnotestabpage|endntnum"
msgid "_Restart numbering"
msgstr "Čisłowanje _znowa započeć"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:357
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:333
msgctxt "footnotesendnotestabpage|endoffset_label"
msgid "_Start at:"
msgstr "Započeć _wot:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:378
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:351
msgctxt "footnotesendnotestabpage|endntnumfmt"
msgid "_Custom format"
msgstr "Swójski _format"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:421
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:390
msgctxt "footnotesendnotestabpage|endsuffix_label"
msgid "Aft_er:"
msgstr "_Za tym:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:465
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:428
msgctxt "footnotesendnotestabpage|endprefix_label"
msgid "Be_fore:"
msgstr "_Před tym:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:500
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:458
msgctxt "footnotesendnotestabpage|label2"
msgid "Endnotes"
msgstr "Kónčne nóžki"
@@ -9338,27 +9338,27 @@ msgctxt "formatsectiondialog|notes"
msgid "Footnotes/Endnotes"
msgstr "Nóžki/Kónčne nóžki"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:63
+#: sw/uiconfig/swriter/ui/formattablepage.ui:77
msgctxt "formattablepage|nameft"
msgid "_Name"
msgstr "_Mjeno"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:79
+#: sw/uiconfig/swriter/ui/formattablepage.ui:91
msgctxt "formattablepage|widthft"
msgid "W_idth"
msgstr "Šě_rokosć"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:110
+#: sw/uiconfig/swriter/ui/formattablepage.ui:120
msgctxt "formattablepage|relwidth"
msgid "Relati_ve"
msgstr "Re_latiwny"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:155
+#: sw/uiconfig/swriter/ui/formattablepage.ui:160
msgctxt "formattablepage|label45"
msgid "Properties"
msgstr "Kajkosće"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:194
+#: sw/uiconfig/swriter/ui/formattablepage.ui:195
msgctxt "formattablepage|leftft"
msgid "Lef_t"
msgstr "Na_lěwo"
@@ -9368,62 +9368,62 @@ msgctxt "formattablepage|rightft"
msgid "Ri_ght"
msgstr "Nap_rawo"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:228
+#: sw/uiconfig/swriter/ui/formattablepage.ui:226
msgctxt "formattablepage|aboveft"
msgid "_Above"
msgstr "_Horjeka"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:245
+#: sw/uiconfig/swriter/ui/formattablepage.ui:241
msgctxt "formattablepage|belowft"
msgid "_Below"
msgstr "_Deleka"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:320
+#: sw/uiconfig/swriter/ui/formattablepage.ui:311
msgctxt "formattablepage|label46"
msgid "Spacing"
msgstr "Wotstup"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:362
+#: sw/uiconfig/swriter/ui/formattablepage.ui:349
msgctxt "formattablepage|full"
msgid "A_utomatic"
msgstr "Aw_tomatiski"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:380
+#: sw/uiconfig/swriter/ui/formattablepage.ui:365
msgctxt "formattablepage|left"
msgid "_Left"
msgstr "Na_lěwo"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:398
+#: sw/uiconfig/swriter/ui/formattablepage.ui:381
msgctxt "formattablepage|fromleft"
msgid "_From left"
msgstr "W_otlěwa"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:416
+#: sw/uiconfig/swriter/ui/formattablepage.ui:397
msgctxt "formattablepage|right"
msgid "R_ight"
msgstr "Nap_rawo"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:435
+#: sw/uiconfig/swriter/ui/formattablepage.ui:413
msgctxt "formattablepage|center"
msgid "_Center"
msgstr "_Srjedźizna"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:453
+#: sw/uiconfig/swriter/ui/formattablepage.ui:429
msgctxt "formattablepage|free"
msgid "_Manual"
msgstr "_Manuelny"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:478
+#: sw/uiconfig/swriter/ui/formattablepage.ui:452
msgctxt "formattablepage|label43"
msgid "Alignment"
msgstr "Wusměrjenje"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:522
+#: sw/uiconfig/swriter/ui/formattablepage.ui:491
msgctxt "formattablepage|label53"
msgid "Text _direction"
msgstr "Tekstowy _směr"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:553
+#: sw/uiconfig/swriter/ui/formattablepage.ui:519
msgctxt "formattablepage|label44"
msgid "Properties "
msgstr "Kajkosće "
@@ -9778,22 +9778,27 @@ msgctxt "headerfootermenu|insert_pagenumber"
msgid "Insert Page Number"
msgstr "Čisło strony zasadźić"
-#: sw/uiconfig/swriter/ui/indentpage.ui:52
+#: sw/uiconfig/swriter/ui/headerfootermenu.ui:42
+msgctxt "headerfootermenu|insert_pagecount"
+msgid "Insert Page Count"
+msgstr "Ličbu stronow zasadźić"
+
+#: sw/uiconfig/swriter/ui/indentpage.ui:57
msgctxt "indentpage|label1"
msgid "_Before section"
msgstr "_Před wotrězkom"
-#: sw/uiconfig/swriter/ui/indentpage.ui:67
+#: sw/uiconfig/swriter/ui/indentpage.ui:71
msgctxt "indentpage|label3"
msgid "_After section"
msgstr "_Za wotrězkom"
-#: sw/uiconfig/swriter/ui/indentpage.ui:113
+#: sw/uiconfig/swriter/ui/indentpage.ui:115
msgctxt "indentpage|label2"
msgid "Indent"
msgstr "Zasunjenje"
-#: sw/uiconfig/swriter/ui/indentpage.ui:142
+#: sw/uiconfig/swriter/ui/indentpage.ui:155
msgctxt "indentpage|preview-atkobject"
msgid "Example"
msgstr "Přikład"
@@ -11911,7 +11916,7 @@ msgstr "_Aktualizacije pytać..."
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:2007
msgctxt "notebookbar_compact|FileMenuButton"
msgid "_File"
-msgstr ""
+msgstr "_Dataja"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:2721
msgctxt "notebookbar_compact|FileLabel"
@@ -11921,7 +11926,7 @@ msgstr "Dataja"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:2770
msgctxt "notebookbar_compact|HomeMenuButton"
msgid "_Menu"
-msgstr ""
+msgstr "_Meni"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3829
msgctxt "notebookbar_compact|HomeLabel"
@@ -11931,7 +11936,7 @@ msgstr "Start"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3882
msgctxt "notebookbar_compact|InsertMenuButton"
msgid "_Insert"
-msgstr ""
+msgstr "_Zasadźić"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4501
msgctxt "notebookbar_compact|InsertLabel"
@@ -11949,7 +11954,7 @@ msgstr "Wobběh"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5221
msgctxt "notebookbar_compact|PageMenuButton"
msgid "Pag_e"
-msgstr ""
+msgstr "S_trona"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5273
msgctxt "notebookbar_compact|LayoutLabel"
@@ -11959,7 +11964,7 @@ msgstr "Wuhotowanje"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5320
msgctxt "notebookbar_compact|ReferencesMenuButton"
msgid "Reference_s"
-msgstr ""
+msgstr "Referen_cy"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5708
msgctxt "notebookbar_compact|ReferencesLabel"
@@ -11969,7 +11974,7 @@ msgstr "Referency"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6204
msgctxt "notebookbar_compact|ReviewMenuButton"
msgid "_Review"
-msgstr ""
+msgstr "_Wersija"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6237
msgctxt "notebookbar_compact|ReviewLabel"
@@ -11979,7 +11984,7 @@ msgstr "Přepruwować"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6706
msgctxt "notebookbar_compact|ViewMenuButton"
msgid "_View"
-msgstr ""
+msgstr "_Napohlad"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6758
msgctxt "notebookbar_compact|ViewLabel"
@@ -11989,7 +11994,7 @@ msgstr "Napohlad"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6806
msgctxt "notebookbar_compact|TableMenuButton"
msgid "T_able"
-msgstr ""
+msgstr "T_abela"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7540
msgctxt "notebookbar_compact|TableLabel"
@@ -12006,7 +12011,7 @@ msgstr "Wus_měrić"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8291
msgctxt "notebookbar_compact|GraphicMenuButton"
msgid "_Graphic"
-msgstr ""
+msgstr "_Grafika"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8324
msgctxt "notebookbar_compact|ImageLabel"
@@ -12016,7 +12021,7 @@ msgstr "Wobraz"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9070
msgctxt "notebookbar_compact|DrawMenuButton"
msgid "D_raw"
-msgstr ""
+msgstr "_Rysować"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9125
msgctxt "notebookbar_compact|ShapeLabel"
@@ -12026,7 +12031,7 @@ msgstr "Rysować"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9651
msgctxt "notebookbar_compact|ObjectMenuButton:MenuDraw"
msgid "Object"
-msgstr ""
+msgstr "Objekt"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9707
msgctxt "notebookbar_compact|FrameLabel"
@@ -12036,7 +12041,7 @@ msgstr "Objekt"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9757
msgctxt "notebookbar_compact|ToolsMenuButton"
msgid "_Tools"
-msgstr ""
+msgstr "_Nastroje"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10600
msgctxt "notebookbar_compact|DevLabel"
@@ -13284,8 +13289,8 @@ msgstr "Formular škitać"
#: sw/uiconfig/swriter/ui/optcompatpage.ui:68
msgctxt "optcompatpage|format"
-msgid "MS Word-compatible trailing blanks"
-msgstr "Přewisowace mjezoty kompatibelne z MS Word"
+msgid "Word-compatible trailing blanks"
+msgstr "Přewisowace mjezoty kompatibelne z Word"
#: sw/uiconfig/swriter/ui/optcompatpage.ui:69
msgctxt "optcompatpage|format"
@@ -13294,8 +13299,8 @@ msgstr "Běłe linije pozadkow PDF-stronow za kompatibelnosć ze starymi dokumen
#: sw/uiconfig/swriter/ui/optcompatpage.ui:70
msgctxt "optcompatpage|format"
-msgid "A database field (e.g., MailMerge) with empty value hides its paragraph"
-msgstr ""
+msgid "Hide paragraphs of database fields (e.g., mail merge) with an empty value"
+msgstr "Wotstawki datowych polow (na př. serijowy list) z pródznej hódnotu"
#: sw/uiconfig/swriter/ui/optcompatpage.ui:71
msgctxt "optcompatpage|format"
@@ -13615,7 +13620,7 @@ msgstr "Pozadkowa barba"
#: sw/uiconfig/swriter/ui/optredlinepage.ui:94
msgctxt "optredlinepage|insertcolor-atkobject"
msgid "Color of Insertions"
-msgstr "Barba za zasadźenjow"
+msgstr "Barba za zasadźenja"
#: sw/uiconfig/swriter/ui/optredlinepage.ui:124
msgctxt "optredlinepage|label2"
@@ -14214,7 +14219,7 @@ msgstr "Normalny 1\""
#: sw/uiconfig/swriter/ui/pageformatpanel.ui:148
msgctxt "pageformatpanel|marginLB"
msgid "Normal 1.25\""
-msgstr "Normalny 1.25\""
+msgstr "Normalny 1,25\""
#: sw/uiconfig/swriter/ui/pageformatpanel.ui:149
msgctxt "pageformatpanel|marginLB"
@@ -14679,7 +14684,7 @@ msgstr "Waš dokument pola adresoweje datoweje banki wobsahuje. Chceće serijowy
#: sw/uiconfig/swriter/ui/printmonitordialog.ui:8
msgctxt "printmonitordialog|PrintMonitorDialog"
msgid "Print monitor"
-msgstr "Čišćerski monitor"
+msgstr "Ćišćerski monitor"
#: sw/uiconfig/swriter/ui/printmonitordialog.ui:70
msgctxt "printmonitordialog|printing"
@@ -14934,7 +14939,7 @@ msgstr "Na spočatku pokročować?"
#: sw/uiconfig/swriter/ui/querycontinuebegindialog.ui:14
msgctxt "querycontinuebegindialog|QueryContinueBeginDialog"
msgid "Do you want to continue at the beginning?"
-msgstr "Chceće na spočatku porkočować?"
+msgstr "Chceće na spočatku pokročować?"
#: sw/uiconfig/swriter/ui/querycontinuebegindialog.ui:15
msgctxt "querycontinuebegindialog|QueryContinueBeginDialog"
@@ -14944,7 +14949,7 @@ msgstr "%PRODUCTNAME Writer je hač do kónca dokumenta pytał."
#: sw/uiconfig/swriter/ui/querycontinueenddialog.ui:7
msgctxt "querycontinueenddialog|QueryContinueEndDialog"
msgid "Continue at the end?"
-msgstr "Na kóncu zasadźić?"
+msgstr "Na kóncu pokročować?"
#: sw/uiconfig/swriter/ui/querycontinueenddialog.ui:14
msgctxt "querycontinueenddialog|QueryContinueEndDialog"
@@ -14987,8 +14992,8 @@ msgid ""
"You can accept or reject all changes,\n"
"or accept or reject particular changes."
msgstr ""
-"Móžeće wšě změny přiwzać abo zaćisnyć,\n"
-"abo jednotliwe změny přiwzać abo zaćisnyć."
+"Móžeće wšě změny akceptować abo wotpokazać,\n"
+"abo jednotliwe změny akceptować abo wotpokazać."
#: sw/uiconfig/swriter/ui/queryredlinedialog.ui:26
msgctxt "queryredlinedialog|cancel"
@@ -15353,7 +15358,7 @@ msgstr "Wubjerće adresowu lisćinu. Klikńće na '%1', zo byšće přijimarjow
#: sw/uiconfig/swriter/ui/selectaddressdialog.ui:108
msgctxt "selectaddressdialog|label2"
msgid "Your recipients are currently selected from:"
-msgstr "Waši přijimarjo su tuchwilu wubrani z:"
+msgstr "Waši přijimarjo so tuchwilu wuběraja z:"
#: sw/uiconfig/swriter/ui/selectaddressdialog.ui:125
msgctxt "selectaddressdialog|add"
@@ -15573,7 +15578,7 @@ msgstr "Konturu zmóžnić"
#: sw/uiconfig/swriter/ui/sidebarwrap.ui:186
msgctxt "sidebarwrap|enablecontour|tooltip_text"
msgid "Click to automatically trim unnecessary parts of the image"
-msgstr "Klikńće, zo byšće njetrěbne dźěle wobraza wottřihać"
+msgstr "Klikńće, zo byšće njetrěbne dźěle wobraza wottřihał"
#: sw/uiconfig/swriter/ui/sidebarwrap.ui:198
msgctxt "sidebarwrap|editcontour"
@@ -15980,122 +15985,122 @@ msgctxt "tableproperties|background"
msgid "Background"
msgstr "Pozadk"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:25
-msgctxt "tabletextflowpage|liststore1"
-msgid "Horizontal"
-msgstr "Wodoruny"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:29
-msgctxt "tabletextflowpage|liststore1"
-msgid "Vertical"
-msgstr "Wertikalny"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:33
-msgctxt "tabletextflowpage|liststore1"
-msgid "Use superordinate object settings"
-msgstr "Nastajenja nadrjadowaneho objekta wužiwać"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:47
-msgctxt "tabletextflowpage|liststore2"
-msgid "Top"
-msgstr "Horjeka"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:51
-msgctxt "tabletextflowpage|liststore2"
-msgid "Centered"
-msgstr "Centrowano"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:55
-msgctxt "tabletextflowpage|liststore2"
-msgid "Bottom"
-msgstr "Deleka"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:97
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:53
msgctxt "tabletextflowpage|break"
msgid "_Break"
msgstr "Ła_mać"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:112
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:68
msgctxt "tabletextflowpage|page"
msgid "_Page"
msgstr "_Strona"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:132
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:87
msgctxt "tabletextflowpage|column"
msgid "Col_umn"
msgstr "Špa_lta"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:151
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:106
msgctxt "tabletextflowpage|before"
msgid "Be_fore"
msgstr "Př_ed"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:171
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:125
msgctxt "tabletextflowpage|after"
msgid "_After"
msgstr "_Za"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:203
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:158
msgctxt "tabletextflowpage|pagestyle"
msgid "With Page St_yle"
msgstr "Z předło_hu strony"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:224
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:177
msgctxt "tabletextflowpage|pagenoft"
msgid "Page _number"
msgstr "Č_isło strony"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:257
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:213
msgctxt "tabletextflowpage|pagestylelb-atkobject"
msgid "With Page Style"
msgstr "Z předłohu strony"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:274
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:230
msgctxt "tabletextflowpage|split"
msgid "Allow _table to split across pages and columns"
msgstr "Rozdźělenje tabele přez strony a špalty dowolić"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:289
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:245
msgctxt "tabletextflowpage|splitrow"
msgid "Allow row to break a_cross pages and columns"
msgstr "Linkowe łamanje přez strony a špalty dowolić"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:306
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:262
msgctxt "tabletextflowpage|keep"
msgid "_Keep with next paragraph"
msgstr "Z při_chodnym wotstawkom hromadźe dźeržeć"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:328
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:284
msgctxt "tabletextflowpage|label40"
msgid "Text _orientation"
msgstr "_Tekstowe wusměrjenje"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:361
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:298
+msgctxt "tabletextflowpage|liststore1"
+msgid "Horizontal"
+msgstr "Wodoruny"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:299
+msgctxt "tabletextflowpage|liststore1"
+msgid "Vertical"
+msgstr "Wertikalny"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:300
+msgctxt "tabletextflowpage|liststore1"
+msgid "Use superordinate object settings"
+msgstr "Nastajenja nadrjadowaneho objekta wužiwać"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:321
msgctxt "tabletextflowpage|headline"
msgid "R_epeat heading"
msgstr "Nadpismo wospj_etować"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:383
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:343
msgctxt "tabletextflowpage|label38"
msgid "The first "
msgstr "Prěnje "
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:396
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:356
msgctxt "tabletextflowpage|label39"
msgid "rows"
msgstr "linkow"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:434
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:395
msgctxt "tabletextflowpage|label35"
msgid "Text Flow"
msgstr "Tekstowy běh"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:467
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:428
msgctxt "tabletextflowpage|label41"
msgid "_Vertical alignment"
msgstr "_Padorune wusměrjenje"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:495
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:442
+msgctxt "tabletextflowpage|liststore2"
+msgid "Top"
+msgstr "Horjeka"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:443
+msgctxt "tabletextflowpage|liststore2"
+msgid "Centered"
+msgstr "Centrowano"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:444
+msgctxt "tabletextflowpage|liststore2"
+msgid "Bottom"
+msgstr "Deleka"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:460
msgctxt "tabletextflowpage|label36"
msgid "Alignment"
msgstr "Wusměrjenje"
@@ -16877,8 +16882,8 @@ msgstr "Hesłar"
#: sw/uiconfig/swriter/ui/tocindexpage.ui:58
msgctxt "tocindexpage|liststore1"
-msgid "Illustration Index"
-msgstr "Zapis zwobraznjenjow"
+msgid "Table of Figures"
+msgstr "Zapis wobrazow"
#: sw/uiconfig/swriter/ui/tocindexpage.ui:62
msgctxt "tocindexpage|liststore1"
diff --git a/source/hsb/writerperfect/messages.po b/source/hsb/writerperfect/messages.po
index ae4cb43500b..b86085af00f 100644
--- a/source/hsb/writerperfect/messages.po
+++ b/source/hsb/writerperfect/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-16 16:54+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2018-05-08 19:11+0000\n"
"Last-Translator: Michael Wolf <milupo@sorbzilla.de>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -65,97 +65,97 @@ msgctxt "exportepub|generalft"
msgid "General"
msgstr "Powšitkowne"
-#: writerperfect/uiconfig/ui/exportepub.ui:122
+#: writerperfect/uiconfig/ui/exportepub.ui:121
msgctxt "exportepub|versionft"
msgid "Version:"
msgstr "Wersija:"
-#: writerperfect/uiconfig/ui/exportepub.ui:139
+#: writerperfect/uiconfig/ui/exportepub.ui:138
msgctxt "exportepub|epub3"
msgid "EPUB 3.0"
msgstr "EPUB 3.0"
-#: writerperfect/uiconfig/ui/exportepub.ui:140
+#: writerperfect/uiconfig/ui/exportepub.ui:139
msgctxt "exportepub|epub2"
msgid "EPUB 2.0"
msgstr "EPUB 2.0"
-#: writerperfect/uiconfig/ui/exportepub.ui:175
+#: writerperfect/uiconfig/ui/exportepub.ui:174
msgctxt "exportepub|splitft"
msgid "Split method:"
msgstr "Dźělenska metoda:"
-#: writerperfect/uiconfig/ui/exportepub.ui:192
+#: writerperfect/uiconfig/ui/exportepub.ui:191
msgctxt "exportepub|splitpage"
msgid "Page break"
msgstr "Łamanje strony"
-#: writerperfect/uiconfig/ui/exportepub.ui:193
+#: writerperfect/uiconfig/ui/exportepub.ui:192
msgctxt "exportepub|splitheading"
msgid "Heading"
msgstr "Nadpismo"
-#: writerperfect/uiconfig/ui/exportepub.ui:228
+#: writerperfect/uiconfig/ui/exportepub.ui:227
msgctxt "exportepub|layoutft"
msgid "Layout method:"
msgstr "Metoda wuhotowanja:"
-#: writerperfect/uiconfig/ui/exportepub.ui:245
+#: writerperfect/uiconfig/ui/exportepub.ui:244
msgctxt "exportepub|layoutreflowable"
msgid "Reflowable"
msgstr "Sobuběžaty"
-#: writerperfect/uiconfig/ui/exportepub.ui:246
+#: writerperfect/uiconfig/ui/exportepub.ui:245
msgctxt "exportepub|layoutfixed"
msgid "Fixed"
msgstr "Njezměnity"
-#: writerperfect/uiconfig/ui/exportepub.ui:281
+#: writerperfect/uiconfig/ui/exportepub.ui:280
msgctxt "exportepub|coverimageft"
msgid "Custom cover image:"
msgstr "Swójski krywny wobraz:"
-#: writerperfect/uiconfig/ui/exportepub.ui:311
+#: writerperfect/uiconfig/ui/exportepub.ui:310
msgctxt "exportepub|coverbutton"
msgid "Browse..."
msgstr "Přepytać..."
-#: writerperfect/uiconfig/ui/exportepub.ui:355
+#: writerperfect/uiconfig/ui/exportepub.ui:354
msgctxt "exportepub|mediadirft"
msgid "Custom media directory:"
msgstr "Swójski medijowy zapis:"
-#: writerperfect/uiconfig/ui/exportepub.ui:385
+#: writerperfect/uiconfig/ui/exportepub.ui:384
msgctxt "exportepub|mediabutton"
msgid "Browse..."
msgstr "Přepytać..."
-#: writerperfect/uiconfig/ui/exportepub.ui:429
+#: writerperfect/uiconfig/ui/exportepub.ui:428
msgctxt "exportepub|metadataft"
msgid "Metadata"
msgstr "Metadaty"
-#: writerperfect/uiconfig/ui/exportepub.ui:470
+#: writerperfect/uiconfig/ui/exportepub.ui:468
msgctxt "exportepub|identifierft"
msgid "Identifier:"
msgstr "Identifikator:"
-#: writerperfect/uiconfig/ui/exportepub.ui:485
+#: writerperfect/uiconfig/ui/exportepub.ui:483
msgctxt "exportepub|titleft"
msgid "Title:"
msgstr "Titul:"
-#: writerperfect/uiconfig/ui/exportepub.ui:511
+#: writerperfect/uiconfig/ui/exportepub.ui:509
msgctxt "exportepub|authorft"
msgid "Author:"
msgstr "Awtor:"
-#: writerperfect/uiconfig/ui/exportepub.ui:537
+#: writerperfect/uiconfig/ui/exportepub.ui:535
msgctxt "exportepub|languageft"
msgid "Language:"
msgstr "Rěč:"
-#: writerperfect/uiconfig/ui/exportepub.ui:563
+#: writerperfect/uiconfig/ui/exportepub.ui:561
msgctxt "exportepub|dateft"
msgid "Date:"
msgstr "Datum:"
diff --git a/source/hsb/xmlsecurity/messages.po b/source/hsb/xmlsecurity/messages.po
index e6df2c51795..0d40e06911e 100644
--- a/source/hsb/xmlsecurity/messages.po
+++ b/source/hsb/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: 2018-05-22 13:17+0200\n"
-"PO-Revision-Date: 2018-03-04 17:19+0000\n"
+"PO-Revision-Date: 2018-05-24 20:22+0000\n"
"Last-Translator: Michael Wolf <milupo@sorbzilla.de>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: hsb\n"
@@ -12,8 +12,8 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1520183940.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1527193356.000000\n"
#: xmlsecurity/inc/strings.hrc:25
msgctxt "STR_CERTIFICATE_NOT_VALIDATED"
@@ -459,7 +459,7 @@ msgstr "Signować"
#: xmlsecurity/uiconfig/ui/selectcertificatedialog.ui:194
msgctxt "selectcertificatedialog|str_selectsign"
msgid "Select"
-msgstr ""
+msgstr "Wubrać"
#: xmlsecurity/uiconfig/ui/selectcertificatedialog.ui:199
msgctxt "selectcertificatedialog|str_encrypt"
diff --git a/source/hu/cui/messages.po b/source/hu/cui/messages.po
index db663b177f2..594b399f8eb 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2018-02-18 08:06+0000\n"
"Last-Translator: Gábor Kelemen <kelemeng@gnome.hu>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -9873,97 +9873,97 @@ msgctxt "positionsizedialog|PositionAndSizeDialog"
msgid "Position and Size"
msgstr "Pozíció és méret"
-#: cui/uiconfig/ui/positionsizedialog.ui:107
+#: cui/uiconfig/ui/positionsizedialog.ui:136
msgctxt "positionsizedialog|RID_SVXPAGE_POSITION_SIZE"
msgid "Position and Size"
msgstr "Pozíció és méret"
-#: cui/uiconfig/ui/positionsizedialog.ui:129
+#: cui/uiconfig/ui/positionsizedialog.ui:182
msgctxt "positionsizedialog|RID_SVXPAGE_SWPOSSIZE"
msgid "Position and Size"
msgstr "Pozíció és méret"
-#: cui/uiconfig/ui/positionsizedialog.ui:152
+#: cui/uiconfig/ui/positionsizedialog.ui:229
msgctxt "positionsizedialog|RID_SVXPAGE_ANGLE"
msgid "Rotation"
msgstr "Elforgatás"
-#: cui/uiconfig/ui/positionsizedialog.ui:175
+#: cui/uiconfig/ui/positionsizedialog.ui:276
msgctxt "positionsizedialog|RID_SVXPAGE_SLANT"
msgid "Slant & Corner Radius"
msgstr "Dőlés és sarok sugara"
-#: cui/uiconfig/ui/possizetabpage.ui:40
+#: cui/uiconfig/ui/possizetabpage.ui:61
msgctxt "possizetabpage|FT_POS_X"
msgid "Position _X:"
msgstr "_X pozíció:"
-#: cui/uiconfig/ui/possizetabpage.ui:56
+#: cui/uiconfig/ui/possizetabpage.ui:75
msgctxt "possizetabpage|FT_POS_Y"
msgid "Position _Y:"
msgstr "_Y pozíció:"
-#: cui/uiconfig/ui/possizetabpage.ui:110
+#: cui/uiconfig/ui/possizetabpage.ui:128
msgctxt "possizetabpage|FT_POSREFERENCE"
msgid "_Base point:"
msgstr "_Alappont:"
-#: cui/uiconfig/ui/possizetabpage.ui:148
+#: cui/uiconfig/ui/possizetabpage.ui:182
msgctxt "possizetabpage|label1"
msgid "Position"
msgstr "Pozíció"
-#: cui/uiconfig/ui/possizetabpage.ui:190
+#: cui/uiconfig/ui/possizetabpage.ui:224
msgctxt "possizetabpage|FT_WIDTH"
msgid "Wi_dth:"
msgstr "S_zélesség:"
-#: cui/uiconfig/ui/possizetabpage.ui:206
+#: cui/uiconfig/ui/possizetabpage.ui:238
msgctxt "possizetabpage|FT_HEIGHT"
msgid "H_eight:"
msgstr "_Magasság:"
-#: cui/uiconfig/ui/possizetabpage.ui:247
+#: cui/uiconfig/ui/possizetabpage.ui:276
msgctxt "possizetabpage|CBX_SCALE"
msgid "_Keep ratio"
msgstr "_Rögzített méretarány"
-#: cui/uiconfig/ui/possizetabpage.ui:279
+#: cui/uiconfig/ui/possizetabpage.ui:307
msgctxt "possizetabpage|FT_SIZEREFERENCE"
msgid "Base _point:"
msgstr "_Alappont:"
-#: cui/uiconfig/ui/possizetabpage.ui:317
+#: cui/uiconfig/ui/possizetabpage.ui:361
msgctxt "possizetabpage|label2"
msgid "Size"
msgstr "Méret"
-#: cui/uiconfig/ui/possizetabpage.ui:356
+#: cui/uiconfig/ui/possizetabpage.ui:401
msgctxt "possizetabpage|TSB_POSPROTECT"
msgid "Positio_n"
msgstr "Po_zíció"
-#: cui/uiconfig/ui/possizetabpage.ui:373
+#: cui/uiconfig/ui/possizetabpage.ui:418
msgctxt "possizetabpage|TSB_SIZEPROTECT"
msgid "_Size"
msgstr "_Méret"
-#: cui/uiconfig/ui/possizetabpage.ui:397
+#: cui/uiconfig/ui/possizetabpage.ui:441
msgctxt "possizetabpage|label3"
msgid "Protect"
msgstr "Védelem"
-#: cui/uiconfig/ui/possizetabpage.ui:430
+#: cui/uiconfig/ui/possizetabpage.ui:475
msgctxt "possizetabpage|TSB_AUTOGROW_WIDTH"
msgid "_Fit width to text"
msgstr "_Szélesség igazítása a szöveghez"
-#: cui/uiconfig/ui/possizetabpage.ui:447
+#: cui/uiconfig/ui/possizetabpage.ui:492
msgctxt "possizetabpage|TSB_AUTOGROW_HEIGHT"
msgid "Fit _height to text"
msgstr "_Magasság igazítása a szöveghez"
-#: cui/uiconfig/ui/possizetabpage.ui:471
+#: cui/uiconfig/ui/possizetabpage.ui:515
msgctxt "possizetabpage|label4"
msgid "Adapt"
msgstr "Hozzáigazítás"
@@ -10163,47 +10163,47 @@ msgctxt "recordnumberdialog|label2"
msgid "go to record"
msgstr "ugrás a rekordhoz"
-#: cui/uiconfig/ui/rotationtabpage.ui:52
+#: cui/uiconfig/ui/rotationtabpage.ui:56
msgctxt "rotationtabpage|FT_POS_X"
msgid "Position _X:"
msgstr "_X pozíció:"
-#: cui/uiconfig/ui/rotationtabpage.ui:66
+#: cui/uiconfig/ui/rotationtabpage.ui:70
msgctxt "rotationtabpage|FT_POS_Y"
msgid "Position _Y:"
msgstr "_Y pozíció:"
-#: cui/uiconfig/ui/rotationtabpage.ui:116
+#: cui/uiconfig/ui/rotationtabpage.ui:123
msgctxt "rotationtabpage|FT_POSPRESETS"
msgid "_Default settings:"
msgstr "_Alapbeállítások:"
-#: cui/uiconfig/ui/rotationtabpage.ui:130
+#: cui/uiconfig/ui/rotationtabpage.ui:151
msgctxt "rotationtabpage|CTL_RECT|tooltip_text"
msgid "Rotation point"
msgstr "Forgatás középpontja"
-#: cui/uiconfig/ui/rotationtabpage.ui:155
+#: cui/uiconfig/ui/rotationtabpage.ui:178
msgctxt "rotationtabpage|label1"
msgid "Pivot Point"
msgstr "Forgatási pont"
-#: cui/uiconfig/ui/rotationtabpage.ui:197
+#: cui/uiconfig/ui/rotationtabpage.ui:220
msgctxt "rotationtabpage|FT_ANGLE"
msgid "_Angle:"
msgstr "S_zög:"
-#: cui/uiconfig/ui/rotationtabpage.ui:238
+#: cui/uiconfig/ui/rotationtabpage.ui:263
msgctxt "rotationtabpage|FT_ANGLEPRESETS"
msgid "Default _settings:"
msgstr "Alap_beállítások:"
-#: cui/uiconfig/ui/rotationtabpage.ui:252
+#: cui/uiconfig/ui/rotationtabpage.ui:287
msgctxt "rotationtabpage|CTL_ANGLE|tooltip_text"
msgid "Rotation Angle"
msgstr "Forgatási szög"
-#: cui/uiconfig/ui/rotationtabpage.ui:277
+#: cui/uiconfig/ui/rotationtabpage.ui:314
msgctxt "rotationtabpage|label2"
msgid "Rotation Angle"
msgstr "Forgatási szög"
@@ -10583,52 +10583,52 @@ msgctxt "similaritysearchdialog|relaxbox"
msgid "_Combine"
msgstr "Össze_vonás"
-#: cui/uiconfig/ui/slantcornertabpage.ui:50
+#: cui/uiconfig/ui/slantcornertabpage.ui:70
msgctxt "slantcornertabpage|label5"
msgid "_X:"
msgstr "_X:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:88
+#: cui/uiconfig/ui/slantcornertabpage.ui:110
msgctxt "slantcornertabpage|label6"
msgid "_Y:"
msgstr "_Y:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:125
+#: cui/uiconfig/ui/slantcornertabpage.ui:149
msgctxt "slantcornertabpage|label3"
msgid "Control Point 1"
msgstr "1. vezérlőpont"
-#: cui/uiconfig/ui/slantcornertabpage.ui:159
+#: cui/uiconfig/ui/slantcornertabpage.ui:183
msgctxt "slantcornertabpage|FT_RADIUS"
msgid "_Radius:"
msgstr "_Sugár:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:189
+#: cui/uiconfig/ui/slantcornertabpage.ui:214
msgctxt "slantcornertabpage|label1"
msgid "Corner Radius"
msgstr "Sarok sugara"
-#: cui/uiconfig/ui/slantcornertabpage.ui:223
+#: cui/uiconfig/ui/slantcornertabpage.ui:248
msgctxt "slantcornertabpage|FT_ANGLE"
msgid "_Angle:"
msgstr "S_zög:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:253
+#: cui/uiconfig/ui/slantcornertabpage.ui:279
msgctxt "slantcornertabpage|label2"
msgid "Slant"
msgstr "Dőlés"
-#: cui/uiconfig/ui/slantcornertabpage.ui:294
+#: cui/uiconfig/ui/slantcornertabpage.ui:320
msgctxt "slantcornertabpage|label4"
msgid "_X:"
msgstr "_X:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:332
+#: cui/uiconfig/ui/slantcornertabpage.ui:360
msgctxt "slantcornertabpage|label7"
msgid "_Y:"
msgstr "_Y:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:369
+#: cui/uiconfig/ui/slantcornertabpage.ui:399
msgctxt "slantcornertabpage|label8"
msgid "Control Point 2"
msgstr "2. vezérlőpont"
@@ -10908,112 +10908,112 @@ msgctxt "storedwebconnectiondialog|change"
msgid "_Change Password..."
msgstr "_Jelszó megváltoztatása…"
-#: cui/uiconfig/ui/swpossizepage.ui:74
+#: cui/uiconfig/ui/swpossizepage.ui:85
msgctxt "swpossizepage|widthft"
msgid "_Width:"
msgstr "_Szélesség:"
-#: cui/uiconfig/ui/swpossizepage.ui:111
+#: cui/uiconfig/ui/swpossizepage.ui:123
msgctxt "swpossizepage|heightft"
msgid "H_eight:"
msgstr "_Magasság:"
-#: cui/uiconfig/ui/swpossizepage.ui:128
+#: cui/uiconfig/ui/swpossizepage.ui:141
msgctxt "swpossizepage|ratio"
msgid "_Keep ratio"
msgstr "_Rögzített méretarány"
-#: cui/uiconfig/ui/swpossizepage.ui:149
+#: cui/uiconfig/ui/swpossizepage.ui:162
msgctxt "swpossizepage|label2"
msgid "Size"
msgstr "Méret"
-#: cui/uiconfig/ui/swpossizepage.ui:205
+#: cui/uiconfig/ui/swpossizepage.ui:218
msgctxt "swpossizepage|topage"
msgid "To _page"
msgstr "_Oldalhoz"
-#: cui/uiconfig/ui/swpossizepage.ui:222
+#: cui/uiconfig/ui/swpossizepage.ui:234
msgctxt "swpossizepage|topara"
msgid "To paragrap_h"
msgstr "_Bekezdéshez"
-#: cui/uiconfig/ui/swpossizepage.ui:238
+#: cui/uiconfig/ui/swpossizepage.ui:250
msgctxt "swpossizepage|tochar"
msgid "To cha_racter"
msgstr "_Karakterhez"
-#: cui/uiconfig/ui/swpossizepage.ui:254
+#: cui/uiconfig/ui/swpossizepage.ui:266
msgctxt "swpossizepage|aschar"
msgid "_As character"
msgstr "Ka_rakterként"
-#: cui/uiconfig/ui/swpossizepage.ui:270
+#: cui/uiconfig/ui/swpossizepage.ui:282
msgctxt "swpossizepage|toframe"
msgid "To _frame"
msgstr "_Keretre"
-#: cui/uiconfig/ui/swpossizepage.ui:292
+#: cui/uiconfig/ui/swpossizepage.ui:304
msgctxt "swpossizepage|label1"
msgid "Anchor"
msgstr "Horgony"
-#: cui/uiconfig/ui/swpossizepage.ui:333
+#: cui/uiconfig/ui/swpossizepage.ui:344
msgctxt "swpossizepage|horiposft"
msgid "Hori_zontal:"
msgstr "Ví_zszintes:"
-#: cui/uiconfig/ui/swpossizepage.ui:347
+#: cui/uiconfig/ui/swpossizepage.ui:358
msgctxt "swpossizepage|horibyft"
msgid "b_y:"
msgstr "mé_rték:"
-#: cui/uiconfig/ui/swpossizepage.ui:361
+#: cui/uiconfig/ui/swpossizepage.ui:372
msgctxt "swpossizepage|vertbyft"
msgid "_by:"
msgstr "mér_ték:"
-#: cui/uiconfig/ui/swpossizepage.ui:375
+#: cui/uiconfig/ui/swpossizepage.ui:386
msgctxt "swpossizepage|horitoft"
msgid "_to:"
msgstr "_cél:"
-#: cui/uiconfig/ui/swpossizepage.ui:421
+#: cui/uiconfig/ui/swpossizepage.ui:433
msgctxt "swpossizepage|vertposft"
msgid "_Vertical:"
msgstr "_Függőleges:"
-#: cui/uiconfig/ui/swpossizepage.ui:457
+#: cui/uiconfig/ui/swpossizepage.ui:470
msgctxt "swpossizepage|verttoft"
msgid "t_o:"
msgstr "cé_l:"
-#: cui/uiconfig/ui/swpossizepage.ui:478
+#: cui/uiconfig/ui/swpossizepage.ui:492
msgctxt "swpossizepage|mirror"
msgid "_Mirror on even pages"
msgstr "_Páros oldalakon tükrözés"
-#: cui/uiconfig/ui/swpossizepage.ui:495
+#: cui/uiconfig/ui/swpossizepage.ui:509
msgctxt "swpossizepage|followtextflow"
msgid "Follow te_xt flow"
msgstr "Szö_vegbeosztás követése"
-#: cui/uiconfig/ui/swpossizepage.ui:518
+#: cui/uiconfig/ui/swpossizepage.ui:532
msgctxt "swpossizepage|label11"
msgid "Position"
msgstr "Pozíció"
-#: cui/uiconfig/ui/swpossizepage.ui:549
+#: cui/uiconfig/ui/swpossizepage.ui:563
msgctxt "swpossizepage|pos"
msgid "Positio_n"
msgstr "P_ozíció"
-#: cui/uiconfig/ui/swpossizepage.ui:565
+#: cui/uiconfig/ui/swpossizepage.ui:579
msgctxt "swpossizepage|size"
msgid "_Size"
msgstr "_Méret"
-#: cui/uiconfig/ui/swpossizepage.ui:587
+#: cui/uiconfig/ui/swpossizepage.ui:601
msgctxt "swpossizepage|label3"
msgid "Protect"
msgstr "Védelem"
@@ -11203,12 +11203,12 @@ msgctxt "textattrtabpage|label2"
msgid "Spacing to Borders"
msgstr "Távolság a szegélyektől"
-#: cui/uiconfig/ui/textattrtabpage.ui:425
+#: cui/uiconfig/ui/textattrtabpage.ui:423
msgctxt "textattrtabpage|TSB_FULL_WIDTH"
msgid "Full _width"
msgstr "Teljes _szélesség"
-#: cui/uiconfig/ui/textattrtabpage.ui:448
+#: cui/uiconfig/ui/textattrtabpage.ui:446
msgctxt "textattrtabpage|label3"
msgid "Text Anchor"
msgstr "Szöveghorgonypont"
diff --git a/source/hu/filter/source/config/fragments/filters.po b/source/hu/filter/source/config/fragments/filters.po
index a9ea8512e77..64ff86546ea 100644
--- a/source/hu/filter/source/config/fragments/filters.po
+++ b/source/hu/filter/source/config/fragments/filters.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: 2018-05-16 16:54+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2018-01-10 18:42+0000\n"
"Last-Translator: Gábor Kelemen <kelemeng@gnome.hu>\n"
"Language-Team: Magyar <gnome-hu-list at gnome dot org>\n"
@@ -463,8 +463,8 @@ msgctxt ""
"MS Word 2003 XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Word 2003 XML"
-msgstr "Microsoft Word 2003 XML"
+msgid "Word 2003 XML"
+msgstr ""
#: MS_Word_2007_XML.xcu
msgctxt ""
@@ -1282,8 +1282,8 @@ msgctxt ""
"Calc MS Excel 2007 VBA XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Excel 2007-2016 XML (macro enabled)"
-msgstr "Microsoft Excel 2007-2016 XML (makróbarát)"
+msgid "Excel 2007–2019 (macro-enabled)"
+msgstr ""
#: calc_MS_Excel_2007_XML.xcu
msgctxt ""
diff --git a/source/hu/filter/source/config/fragments/types.po b/source/hu/filter/source/config/fragments/types.po
index 76cc82cfca2..87db2a0eea4 100644
--- a/source/hu/filter/source/config/fragments/types.po
+++ b/source/hu/filter/source/config/fragments/types.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-08 15:11+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2017-12-03 22:36+0000\n"
"Last-Translator: Gábor Kelemen <kelemeng@gnome.hu>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -292,8 +292,8 @@ msgctxt ""
"writer_MS_Word_2003_XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Word 2003 XML"
-msgstr "Microsoft Word 2003 XML"
+msgid "Word 2003 XML"
+msgstr ""
#: writer_MS_Word_2007_XML.xcu
msgctxt ""
diff --git a/source/hu/fpicker/messages.po b/source/hu/fpicker/messages.po
index e0e7f9fd76d..4cfaeada295 100644
--- a/source/hu/fpicker/messages.po
+++ b/source/hu/fpicker/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2017-12-03 22:24+0000\n"
"Last-Translator: Gábor Kelemen <kelemeng@gnome.hu>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -272,13 +272,13 @@ msgstr "Titkosítás GPG kulccsal"
#: fpicker/uiconfig/ui/foldernamedialog.ui:8
msgctxt "foldernamedialog|FolderNameDialog"
-msgid "Folder Name ?"
-msgstr "Mappa neve?"
+msgid "Folder Name"
+msgstr ""
#: fpicker/uiconfig/ui/foldernamedialog.ui:91
msgctxt "foldernamedialog|label2"
-msgid "Na_me"
-msgstr "_Név"
+msgid "Na_me:"
+msgstr ""
#: fpicker/uiconfig/ui/foldernamedialog.ui:122
msgctxt "foldernamedialog|label1"
diff --git a/source/hu/helpcontent2/source/text/shared/00.po b/source/hu/helpcontent2/source/text/shared/00.po
index bd3b38c2612..7ce89bd07b6 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2017-03-16 23:37+0000\n"
"Last-Translator: Gábor Kelemen <kelemeng@gnome.hu>\n"
"Language-Team: Magyar <gnome-hu-list at gnome dot org>\n"
@@ -397,16 +397,16 @@ msgctxt ""
"00000001.xhp\n"
"hd_id3149670\n"
"help.text"
-msgid "Back"
-msgstr "Vissza"
+msgid "Reset"
+msgstr ""
#: 00000001.xhp
msgctxt ""
"00000001.xhp\n"
"par_id3145068\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optionsdialog/revert\">Resets modified values back to the $[officename] default values.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/optionsdialog/revert\">Visszaállítja a módosított értékeket a $[officename] alapértelmezett értékeire.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optionsdialog/revert\">Resets changes made to the current tab to those applicable when this dialog was opened.</ahelp>"
+msgstr ""
#: 00000001.xhp
msgctxt ""
@@ -552,6 +552,54 @@ msgctxt ""
msgid "<variable id=\"ShiftF1\">Press Shift+F1 and point to a control to learn more about that control.</variable>"
msgstr "<variable id=\"ShiftF1\">Nyomja meg a Shift+F1 billentyűkombinációt, és vigye az egérmutatót a vezérlőelemre a részletes tipp megjelenítéséhez.</variable>"
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"hd_id631527692833772\n"
+"help.text"
+msgid "Options dialog buttons"
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"hd_id831527692839432\n"
+"help.text"
+msgid "OK"
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"par_id471527692844934\n"
+"help.text"
+msgid "Save the changes in the page and close the Options dialog."
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"hd_id261527692850720\n"
+"help.text"
+msgid "Cancel"
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"par_id571527692855533\n"
+"help.text"
+msgid "Close the Options dialog and discard all changes done."
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"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 Options dialog."
+msgstr ""
+
#: 00000002.xhp
msgctxt ""
"00000002.xhp\n"
@@ -11125,16 +11173,16 @@ msgctxt ""
"00040502.xhp\n"
"par_id3151293\n"
"help.text"
-msgid "<variable id=\"linienstile\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Line Styles</emph> tab </variable>"
-msgstr "<variable id=\"linienstile\">Válassza a <emph>Formátum - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Objektum - </emph></caseinline><caseinline select=\"CALC\"><emph>Kép - </emph></caseinline></switchinline><emph>Vonal - Vonalstílusok</emph> fület. </variable>"
+msgid "<variable id=\"linienstile\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Line Styles</emph> tab</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3149317\n"
"help.text"
-msgid "<variable id=\"linienenden\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Arrow Styles</emph> tab </variable>"
-msgstr "<variable id=\"linienenden\">Válassza a <emph>Formátum - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Objektum - </emph></caseinline><caseinline select=\"CALC\"><emph>Kép - </emph></caseinline></switchinline><emph>Vonal - Nyílstílusok</emph> fület. </variable>"
+msgid "<variable id=\"linienenden\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Arrow Styles</emph> tab</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
@@ -11173,15 +11221,15 @@ msgctxt ""
"00040502.xhp\n"
"par_id3154948\n"
"help.text"
-msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Area</emph> tab"
-msgstr "Válassza a <emph>Formátum - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Objektum - </emph></caseinline><caseinline select=\"CALC\"><emph>Kép - </emph></caseinline></switchinline><emph>Terület - Terület</emph> fület."
+msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Area</emph> tab."
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3145607\n"
"help.text"
-msgid "Choose <emph>View - Styles</emph> - open context menu and choose <emph>Modify/New - Area</emph> tab (presentation documents)"
+msgid "Choose <emph>View - Styles</emph> - open context menu and choose <emph>Modify/New - Area</emph> tab (presentation documents)."
msgstr ""
#: 00040502.xhp
@@ -11189,47 +11237,47 @@ msgctxt ""
"00040502.xhp\n"
"par_id3152922\n"
"help.text"
-msgid "Choose <emph>Format - Title - Area</emph> tab (chart documents)"
-msgstr "Válassza a <emph>Formátum - Cím - Terület</emph> fület (diagram-dokumentumoknál)"
+msgid "Choose <emph>Format - Title - Area</emph> tab (chart documents)."
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3157894\n"
"help.text"
-msgid "Choose <emph>Format - Legend - Area</emph> tab (chart documents)"
-msgstr "Válassza a <emph>Formátum - Jelmagyarázat - Terület</emph> fület (diagram-dokumentumoknál)"
+msgid "Choose <emph>Format - Legend - Area</emph> tab (chart documents)."
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3144444\n"
"help.text"
-msgid "Choose <emph>Format - Chart Wall - Area</emph> tab (chart documents)"
-msgstr "Válassza a <emph>Formátum - Diagramháttér - Terület</emph> fület (diagram-dokumentumoknál)"
+msgid "Choose <emph>Format - Chart Wall - Area</emph> tab (chart documents)."
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3156543\n"
"help.text"
-msgid "Choose <emph>Format - Chart Floor - Area</emph> tab (chart documents)"
-msgstr "Válassza a <emph>Formátum - Diagram alapsíkja - Terület</emph> fület (diagram-dokumentumoknál)"
+msgid "Choose <emph>Format - Chart Floor - Area</emph> tab (chart documents)."
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3150685\n"
"help.text"
-msgid "Choose <emph>Format - Chart Area - Area</emph> tab (chart documents)"
-msgstr "Válassza a <emph>Formátum - Diagramterület - Terület</emph> fület (diagram-dokumentumoknál)"
+msgid "Choose <emph>Format - Chart Area - Area</emph> tab (chart documents)."
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3149664\n"
"help.text"
-msgid "Choose <emph>Slide - Properties - Background</emph> tab (in $[officename] Impress)"
+msgid "Choose <emph>Slide - Properties - Background</emph> tab (in $[officename] Impress)."
msgstr ""
#: 00040502.xhp
@@ -11237,7 +11285,15 @@ msgctxt ""
"00040502.xhp\n"
"par_id9149694\n"
"help.text"
-msgid "Choose <emph>Page - Properties - Background</emph> tab (in $[officename] Draw)"
+msgid "Choose <emph>Page - Properties - Background</emph> tab (in $[officename] Draw)."
+msgstr ""
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id841527083135387\n"
+"help.text"
+msgid "Choose <emph>Table - Properties - Background</emph> tab."
msgstr ""
#: 00040502.xhp
@@ -11349,32 +11405,32 @@ msgctxt ""
"00040502.xhp\n"
"par_id3150011\n"
"help.text"
-msgid "<variable id=\"schatte\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Shadow</emph> tab </variable>"
-msgstr "<variable id=\"schatte\">Válassza a <emph>Formátum - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Objektum - </emph></caseinline><caseinline select=\"CALC\"><emph>Kép - </emph></caseinline></switchinline><emph>Terület - Árnyékok</emph> fület. </variable>"
+msgid "<variable id=\"schatte\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Shadow</emph> tab</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3147441\n"
"help.text"
-msgid "<variable id=\"verlauf\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Gradients</emph> tab </variable>"
-msgstr "<variable id=\"verlauf\">Válassza a <emph>Formátum - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Objektum - </emph></caseinline><caseinline select=\"CALC\"><emph>Kép - </emph></caseinline></switchinline><emph>Terület - Színátmenetek</emph> fület. </variable>"
+msgid "<variable id=\"verlauf\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Gradients</emph> tab</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3155308\n"
"help.text"
-msgid "<variable id=\"schraffur\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Hatching</emph> tab </variable>"
-msgstr "<variable id=\"schraffur\">Válassza a <emph>Formátum - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Objektum - </emph></caseinline><caseinline select=\"CALC\"><emph>Kép - </emph></caseinline></switchinline><emph>Terület - Vonalkázás</emph> fület. </variable>"
+msgid "<variable id=\"schraffur\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Hatching</emph> tab</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3145800\n"
"help.text"
-msgid "<variable id=\"bitmap\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Bitmaps</emph> tab </variable>"
-msgstr "<variable id=\"bitmap\">Válassza a <emph>Formátum - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Objektum - </emph></caseinline><caseinline select=\"CALC\"><emph>Kép - </emph></caseinline></switchinline><emph>Terület - Bitképek</emph> fület. </variable>"
+msgid "<variable id=\"bitmap\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Bitmaps</emph> tab</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
@@ -11413,8 +11469,8 @@ msgctxt ""
"00040502.xhp\n"
"par_id3156286\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F4 key </caseinline><caseinline select=\"IMPRESS\">F4 key </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F4 billentyű</caseinline><caseinline select=\"IMPRESS\">F4 billentyű</caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F4 key</caseinline><caseinline select=\"IMPRESS\">F4 key</caseinline></switchinline>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
@@ -11453,8 +11509,8 @@ msgctxt ""
"00040502.xhp\n"
"par_id3153099\n"
"help.text"
-msgid "<variable id=\"position2\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Position and Size</emph> tab </variable>"
-msgstr "<variable id=\"position2\">Válassza a <emph>Formátum - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Objektum - </emph></caseinline><caseinline select=\"CALC\"><emph>Kép - </emph></caseinline></switchinline><emph>Pozíció és méret - Pozíció és méret</emph> fület. </variable>"
+msgid "<variable id=\"position2\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Position and Size</emph> tab</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
@@ -11485,16 +11541,16 @@ msgctxt ""
"00040502.xhp\n"
"par_id3145666\n"
"help.text"
-msgid "<variable id=\"ecke\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Slant & Corner Radius</emph> tab </variable>"
-msgstr "<variable id=\"ecke\">Válassza a <emph>Formátum - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Objektum - </emph></caseinline><caseinline select=\"CALC\"><emph>Kép - </emph></caseinline></switchinline><emph>Pozíció és méret - Dőlés és sarok sugara</emph> fület. </variable>"
+msgid "<variable id=\"ecke\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Slant & Corner Radius</emph> tab</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3146081\n"
"help.text"
-msgid "<variable id=\"legende\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Callout</emph> tab (only for textbox callouts, not for custom shapes callouts) </variable>"
-msgstr "<variable id=\"legende\">Válassza a <emph>Formátum - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Objektum - </emph></caseinline><caseinline select=\"CALC\"><emph>Kép - </emph></caseinline></switchinline><emph>Pozíció és méret - Ábrafelirat</emph> fület (csak a szövegdobozos ábrafeliratoknál, az egyéni alakzatok feliratainál nem).</variable>"
+msgid "<variable id=\"legende\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Callout</emph> tab (only for textbox callouts, not for custom shapes callouts)</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
@@ -11517,8 +11573,8 @@ msgctxt ""
"00040502.xhp\n"
"par_id3149019\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F8 key </caseinline><caseinline select=\"IMPRESS\">F8 key </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F8 billentyű</caseinline><caseinline select=\"IMPRESS\">F8 billentyű</caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F8 key</caseinline><caseinline select=\"IMPRESS\">F8 key</caseinline></switchinline>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
@@ -11805,8 +11861,8 @@ msgctxt ""
"00040502.xhp\n"
"par_id3153076\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Align Center Horizontally </caseinline><defaultinline>Centered</defaultinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Vízszintesen középre igazítás</caseinline><defaultinline>Középre</defaultinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Align Center Horizontally</caseinline><defaultinline>Centered</defaultinline></switchinline>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
@@ -11845,8 +11901,8 @@ msgctxt ""
"00040502.xhp\n"
"par_id3150527\n"
"help.text"
-msgid "<variable id=\"font\">Click <emph>Fontwork</emph> icon on <emph>Drawing</emph> bar </variable>"
-msgstr "<variable id=\"font\">Kattintson a <emph>Betűbűvész</emph> ikonra a <emph>Rajz</emph> eszköztáron </variable>"
+msgid "<variable id=\"font\">Click <emph>Fontwork</emph> icon on <emph>Drawing</emph> bar</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
diff --git a/source/hu/helpcontent2/source/text/shared/01.po b/source/hu/helpcontent2/source/text/shared/01.po
index f9b4b404e7d..e81530cd494 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: 2018-05-23 23:19+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2018-02-18 08:08+0000\n"
"Last-Translator: Gábor Kelemen <kelemeng@gnome.hu>\n"
"Language-Team: Hungarian <gnome-hu-list at gnome dot org>\n"
@@ -23587,6 +23587,22 @@ msgstr ""
#: 05210100.xhp
msgctxt ""
"05210100.xhp\n"
+"hd_id471527077476052\n"
+"help.text"
+msgid "Cell, Row or Table background selector"
+msgstr ""
+
+#: 05210100.xhp
+msgctxt ""
+"05210100.xhp\n"
+"par_id661527077493366\n"
+"help.text"
+msgid "Select the table object which background area is to be filled."
+msgstr ""
+
+#: 05210100.xhp
+msgctxt ""
+"05210100.xhp\n"
"hd_id3147373\n"
"help.text"
msgid "None"
@@ -31205,24 +31221,24 @@ msgctxt ""
"06040100.xhp\n"
"hd_id3145072\n"
"help.text"
-msgid "Automatic *bold* and _underline_"
-msgstr "Automatikus *félkövér* és _aláhúzott_"
+msgid "Automatic *bold*, /italic/, -strikeout- and _underline_"
+msgstr ""
#: 06040100.xhp
msgctxt ""
"06040100.xhp\n"
"par_id3153577\n"
"help.text"
-msgid "Automatically applies bold formatting to text enclosed by asterisks (*), and underline to text enclosed by underscores ( _ ), for example, *bold*. The asterisks and underscores are not displayed after the formatting is applied."
-msgstr "Automatikusan félkövér formázást érvényesít a csillagok (*) közé zárt szövegre, és aláhúzottat az aláhúzásjelek ( _ ) közé zártra. Például: *félkövér*. A csillagok és az aláhúzásjelek a formázás alkalmazása után nem látszanak."
+msgid "Automatically applies bold, italic, strikethrough or underline formatting to text enclosed by asterisks (*), slashes (/), hyphens (-), and underscores (_), respectively. These characters disappear after the formatting is applied."
+msgstr ""
#: 06040100.xhp
msgctxt ""
"06040100.xhp\n"
"par_id3153127\n"
"help.text"
-msgid "This feature does not work if the formatting characters * or _ are entered with an <link href=\"text/shared/00/00000005.xhp#IME\" name=\"Input Method Editor\">Input Method Editor</link>."
-msgstr "Ez a funkció nem működik, ha a * vagy _ formázókarakterek egy <link href=\"text/shared/00/00000005.xhp#IME\" name=\"Bevitelieljárás-szerkesztőben\">Bevitelieljárás-szerkesztőben</link> kerülnek bevitelre."
+msgid "This feature does not work if the formatting characters <item type=\"literal\">* / - _</item> are entered with an <link href=\"text/shared/00/00000005.xhp#IME\" name=\"Input Method Editor\">Input Method Editor</link>."
+msgstr ""
#: 06040100.xhp
msgctxt ""
diff --git a/source/hu/helpcontent2/source/text/shared/optionen.po b/source/hu/helpcontent2/source/text/shared/optionen.po
index e19b38fc8b7..e0be7249006 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: 2018-05-08 15:10+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2018-01-18 19:32+0000\n"
"Last-Translator: Gábor Kelemen <kelemeng@gnome.hu>\n"
"Language-Team: Hungarian <openscope at gmail dot com>\n"
@@ -83,6 +83,22 @@ msgstr ""
#: 01000000.xhp
msgctxt ""
"01000000.xhp\n"
+"hd_id551527692881035\n"
+"help.text"
+msgid "Help"
+msgstr ""
+
+#: 01000000.xhp
+msgctxt ""
+"01000000.xhp\n"
+"par_id831527692885723\n"
+"help.text"
+msgid "Opens the help contents for the Options page displayed."
+msgstr ""
+
+#: 01000000.xhp
+msgctxt ""
+"01000000.xhp\n"
"hd_id3159149\n"
"help.text"
msgid "<link href=\"text/shared/optionen/01010000.xhp\" name=\"$[officename]\">%PRODUCTNAME</link>"
@@ -4565,8 +4581,8 @@ msgctxt ""
"01030300.xhp\n"
"par_idN10640\n"
"help.text"
-msgid "Options"
-msgstr "Beállítások"
+msgid "Security Options and Warnings"
+msgstr ""
#: 01030300.xhp
msgctxt ""
@@ -4597,8 +4613,8 @@ msgctxt ""
"01030300.xhp\n"
"hd_id3168736\n"
"help.text"
-msgid "Persistently save passwords protected by a master password"
-msgstr "Jelszavak végleges mentése és azok védelme mesterjelszóval"
+msgid "Persistently save passwords for web connections"
+msgstr ""
#: 01030300.xhp
msgctxt ""
@@ -4613,8 +4629,24 @@ msgctxt ""
"01030300.xhp\n"
"hd_id3901791\n"
"help.text"
+msgid "Protected by a master password (recommended)"
+msgstr ""
+
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"par_id31527711486980\n"
+"help.text"
+msgid "Check to enable all connections' passwords to be protected by a master password."
+msgstr ""
+
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"hd_id141527711343312\n"
+"help.text"
msgid "Master Password"
-msgstr "Mesterjelszó"
+msgstr ""
#: 01030300.xhp
msgctxt ""
@@ -13733,8 +13765,8 @@ msgctxt ""
"java.xhp\n"
"hd_id3148618\n"
"help.text"
-msgid "Optional (unstable) options"
-msgstr "Opcionális (instabil) beállítások"
+msgid "Optional Features"
+msgstr ""
#: java.xhp
msgctxt ""
@@ -13749,8 +13781,8 @@ msgctxt ""
"java.xhp\n"
"par_id3156344\n"
"help.text"
-msgid "It enables features that are not yet complete or contain known bugs. The list of these features is different version by version, or even it can be empty."
-msgstr "Engedélyezi a még nem teljes, vagy ismert hibákat tartalmazó funkciókat. Ezen funkciók listája kiadásról kiadásra eltér, vagy akár üres is lehet."
+msgid "Enables features that are not yet complete or may contain known bugs. The list of these features is different version by version, or even it can be empty."
+msgstr ""
#: java.xhp
msgctxt ""
@@ -13765,8 +13797,8 @@ msgctxt ""
"java.xhp\n"
"par_id3156345\n"
"help.text"
-msgid "It enables macro recording, so the <link href=\"text/shared/guide/macro_recording.xhp\" name=\"Tools - Macros - Record Macro\"><item type=\"menuitem\">Tools - Macros - Record Macro</item></link> menu item will be available."
-msgstr "Engedélyezi a makrórögzítést, így a <link href=\"text/shared/guide/macro_recording.xhp\" name=\"Eszközök - Makrók - Makró rögzítése\"><item type=\"menuitem\">Eszközök - Makrók - Makró rögzítése</item></link> menüparancs elérhető lesz."
+msgid "Enables macro recording. The <link href=\"text/shared/guide/macro_recording.xhp\" name=\"Tools - Macros - Record Macro\"><item type=\"menuitem\">Tools - Macros - Record Macro</item></link> menu item is available."
+msgstr ""
#: java.xhp
msgctxt ""
diff --git a/source/hu/officecfg/registry/data/org/openoffice/Office/UI.po b/source/hu/officecfg/registry/data/org/openoffice/Office/UI.po
index d457822ee36..b3bd4da5210 100644
--- a/source/hu/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/hu/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-22 13:17+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2018-02-13 23:30+0000\n"
"Last-Translator: Gábor Kelemen <kelemeng@gnome.hu>\n"
"Language-Team: Hungarian <gnome-hu-list at gnome dot org>\n"
@@ -26520,8 +26520,8 @@ msgctxt ""
"..WriterCommands.UserInterface.Commands..uno:TextAttributes\n"
"Label\n"
"value.text"
-msgid "Text Attributes"
-msgstr "Szövegjellemzők"
+msgid "Text Attributes..."
+msgstr ""
#: WriterCommands.xcu
msgctxt ""
diff --git a/source/hu/readlicense_oo/docs.po b/source/hu/readlicense_oo/docs.po
index a7ff70a41c6..921100b420b 100644
--- a/source/hu/readlicense_oo/docs.po
+++ b/source/hu/readlicense_oo/docs.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: 2018-04-17 15:54+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2017-12-03 22:30+0000\n"
"Last-Translator: Gábor Kelemen <kelemeng@gnome.hu>\n"
"Language-Team: Magyar <gnome-hu-list at gnome dot org>\n"
@@ -117,8 +117,8 @@ msgctxt ""
"readme.xrm\n"
"macxiOSX\n"
"readmeitem.text"
-msgid "MacOSX 10.8 (Mountain Lion) or higher"
-msgstr "MacOSX 10.8 (Mountain Lion) vagy újabb"
+msgid "MacOSX 10.9 (Mavericks) or higher"
+msgstr ""
#: readme.xrm
msgctxt ""
diff --git a/source/hu/sc/messages.po b/source/hu/sc/messages.po
index 1dc5d922687..4879de44c14 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-12 14:40+0200\n"
"PO-Revision-Date: 2018-02-13 23:30+0000\n"
"Last-Translator: kami911 <kami911@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1869,16 +1869,21 @@ msgid "Nested arrays are not supported."
msgstr "Egymásba ágyazott tömbök nem támogatottak."
#: sc/inc/globstr.hrc:390
+msgctxt "STR_ERR_LONG_BAD_ARRAY_CONTENT"
+msgid "Unsupported inline array content."
+msgstr ""
+
+#: sc/inc/globstr.hrc:391
msgctxt "STR_UNDO_TEXTTOCOLUMNS"
msgid "Text to Columns"
msgstr "Szöveg oszlopokba"
-#: sc/inc/globstr.hrc:391
+#: sc/inc/globstr.hrc:392
msgctxt "STR_DOC_UPDATED"
msgid "Your spreadsheet has been updated with changes saved by other users."
msgstr "Az Ön munkafüzetét a rendszer más felhasználók által elmentett módosításokkal frissítette."
-#: sc/inc/globstr.hrc:392
+#: sc/inc/globstr.hrc:393
msgctxt "STR_DOC_WILLBESAVED"
msgid ""
"The spreadsheet must be saved now to activate sharing mode.\n"
@@ -1889,7 +1894,7 @@ msgstr ""
"\n"
"Kívánja folytatni?"
-#: sc/inc/globstr.hrc:393
+#: sc/inc/globstr.hrc:394
msgctxt "STR_DOC_WILLNOTBESAVED"
msgid ""
"Already resolved merge conflicts will be lost and your changes to the shared spreadsheet will not be saved.\n"
@@ -1900,7 +1905,7 @@ msgstr ""
"\n"
"Kívánja folytatni?"
-#: sc/inc/globstr.hrc:394
+#: sc/inc/globstr.hrc:395
msgctxt "STR_DOC_DISABLESHARED"
msgid ""
"Disabling shared mode of a spreadsheet hinders all other users of the shared spreadsheet to merge back their work.\n"
@@ -1911,7 +1916,7 @@ msgstr ""
"\n"
"Kívánja folytatni?"
-#: sc/inc/globstr.hrc:395
+#: sc/inc/globstr.hrc:396
msgctxt "STR_DOC_NOLONGERSHARED"
msgid ""
"This spreadsheet is no longer in shared mode.\n"
@@ -1922,7 +1927,7 @@ msgstr ""
"\n"
"A munkafüzetét mentse különálló fájlba, és a módosításait manuálisan vigye át a megosztott munkafüzetbe."
-#: sc/inc/globstr.hrc:396
+#: sc/inc/globstr.hrc:397
msgctxt "STR_FILE_LOCKED_TRY_LATER"
msgid ""
"The shared spreadsheet file is locked due to a merge in progress by user: '%1'\n"
@@ -1933,7 +1938,7 @@ msgstr ""
"\n"
"Zárolt fájl megosztott üzemmódja nem tiltható le. Próbálkozzon később."
-#: sc/inc/globstr.hrc:397
+#: sc/inc/globstr.hrc:398
msgctxt "STR_FILE_LOCKED_SAVE_LATER"
msgid ""
"The shared spreadsheet file is locked due to a merge in progress by user: '%1'\n"
@@ -1944,147 +1949,147 @@ msgstr ""
"\n"
"A módosításainak mentésével próbálkozzon később."
-#: sc/inc/globstr.hrc:398
+#: sc/inc/globstr.hrc:399
msgctxt "STR_UNKNOWN_USER"
msgid "Unknown User"
msgstr "Ismeretlen felhasználó"
-#: sc/inc/globstr.hrc:399
+#: sc/inc/globstr.hrc:400
msgctxt "STR_SHAPE_AUTOSHAPE"
msgid "AutoShape"
msgstr "Alakzat"
-#: sc/inc/globstr.hrc:400
+#: sc/inc/globstr.hrc:401
msgctxt "STR_SHAPE_RECTANGLE"
msgid "Rectangle"
msgstr "Téglalap"
-#: sc/inc/globstr.hrc:401
+#: sc/inc/globstr.hrc:402
msgctxt "STR_SHAPE_LINE"
msgid "Line"
msgstr "Vonal"
-#: sc/inc/globstr.hrc:402
+#: sc/inc/globstr.hrc:403
msgctxt "STR_SHAPE_OVAL"
msgid "Oval"
msgstr "Ellipszis"
-#: sc/inc/globstr.hrc:403
+#: sc/inc/globstr.hrc:404
msgctxt "STR_FORM_BUTTON"
msgid "Button"
msgstr "Gomb"
-#: sc/inc/globstr.hrc:404
+#: sc/inc/globstr.hrc:405
msgctxt "STR_FORM_CHECKBOX"
msgid "Check Box"
msgstr "Jelölőnégyzet"
-#: sc/inc/globstr.hrc:405
+#: sc/inc/globstr.hrc:406
msgctxt "STR_FORM_OPTIONBUTTON"
msgid "Option Button"
msgstr "Rádiógomb"
-#: sc/inc/globstr.hrc:406
+#: sc/inc/globstr.hrc:407
msgctxt "STR_FORM_LABEL"
msgid "Label"
msgstr "Címke"
-#: sc/inc/globstr.hrc:407
+#: sc/inc/globstr.hrc:408
msgctxt "STR_FORM_LISTBOX"
msgid "List Box"
msgstr "Lista"
-#: sc/inc/globstr.hrc:408
+#: sc/inc/globstr.hrc:409
msgctxt "STR_FORM_GROUPBOX"
msgid "Group Box"
msgstr "Csoportpanel"
-#: sc/inc/globstr.hrc:409
+#: sc/inc/globstr.hrc:410
msgctxt "STR_FORM_DROPDOWN"
msgid "Drop Down"
msgstr "Legördülő"
-#: sc/inc/globstr.hrc:410
+#: sc/inc/globstr.hrc:411
msgctxt "STR_FORM_SPINNER"
msgid "Spinner"
msgstr "Léptető"
-#: sc/inc/globstr.hrc:411
+#: sc/inc/globstr.hrc:412
msgctxt "STR_FORM_SCROLLBAR"
msgid "Scroll Bar"
msgstr "Görgetősáv"
-#: sc/inc/globstr.hrc:412
+#: sc/inc/globstr.hrc:413
msgctxt "STR_STYLE_FAMILY_CELL"
msgid "Cell Styles"
msgstr "Cellastílusok"
-#: sc/inc/globstr.hrc:413
+#: sc/inc/globstr.hrc:414
msgctxt "STR_STYLE_FAMILY_PAGE"
msgid "Page Styles"
msgstr "Oldalstílusok"
-#: sc/inc/globstr.hrc:414
+#: sc/inc/globstr.hrc:415
msgctxt "STR_ERR_DATAPILOTSOURCE"
msgid "Pivot table source data is invalid."
msgstr "A kimutatástábla forrásadatai érvénytelenek."
-#: sc/inc/globstr.hrc:415
+#: sc/inc/globstr.hrc:416
msgctxt "STR_OPTIONS_WARN_SEPARATORS"
msgid "Because the current formula separator settings conflict with the locale, the formula separators have been reset to their default values."
msgstr "Az aktuális képletelválasztó-beállítás ütközik a területi beállítással, ezért a képletelválasztó beállítása az alapértékre lett visszaállítva."
-#: sc/inc/globstr.hrc:416
+#: sc/inc/globstr.hrc:417
msgctxt "STR_UNDO_INSERT_CURRENT_DATE"
msgid "Insert Current Date"
msgstr "Aktuális dátum beszúrása"
-#: sc/inc/globstr.hrc:417
+#: sc/inc/globstr.hrc:418
msgctxt "STR_UNDO_INSERT_CURRENT_TIME"
msgid "Insert Current Time"
msgstr "Aktuális idő beszúrása"
-#: sc/inc/globstr.hrc:418
+#: sc/inc/globstr.hrc:419
msgctxt "STR_MANAGE_NAMES"
msgid "Manage Names..."
msgstr "Nevek kezelése..."
-#: sc/inc/globstr.hrc:419
+#: sc/inc/globstr.hrc:420
msgctxt "STR_HEADER_NAME"
msgid "Name"
msgstr "Név"
-#: sc/inc/globstr.hrc:420
+#: sc/inc/globstr.hrc:421
msgctxt "STR_HEADER_RANGE_OR_EXPR"
msgid "Range or formula expression"
msgstr "Tartomány- vagy képletkifejezés"
-#: sc/inc/globstr.hrc:421
+#: sc/inc/globstr.hrc:422
msgctxt "STR_HEADER_SCOPE"
msgid "Scope"
msgstr "Hatókör"
-#: sc/inc/globstr.hrc:422
+#: sc/inc/globstr.hrc:423
msgctxt "STR_MULTI_SELECT"
msgid "(multiple)"
msgstr "(többszörös)"
-#: sc/inc/globstr.hrc:423
+#: sc/inc/globstr.hrc:424
msgctxt "STR_GLOBAL_SCOPE"
msgid "Document (Global)"
msgstr "Dokumentum (globális)"
-#: sc/inc/globstr.hrc:424
+#: sc/inc/globstr.hrc:425
msgctxt "STR_ERR_NAME_EXISTS"
msgid "Invalid name. Already in use for the selected scope."
msgstr "Érvénytelen név. Ez a név már használatban van ebben a hatókörben."
-#: sc/inc/globstr.hrc:425
+#: sc/inc/globstr.hrc:426
msgctxt "STR_ERR_NAME_INVALID"
msgid "Invalid name. Only use letters, numbers and underscore."
msgstr "Érvénytelen név. Csak betűk, számok és aláhúzás lehet a nevekben."
-#: sc/inc/globstr.hrc:426
+#: sc/inc/globstr.hrc:427
msgctxt "STR_UNSAVED_EXT_REF"
msgid ""
"This Document contains external references to unsaved documents.\n"
@@ -2095,217 +2100,217 @@ msgstr ""
"\n"
"Folytatja?"
-#: sc/inc/globstr.hrc:427
+#: sc/inc/globstr.hrc:428
msgctxt "STR_CLOSE_WITH_UNSAVED_REFS"
msgid "This Document is referenced by another document and not yet saved. Closing it without saving will result in data loss."
msgstr "Ezt a dokumentumot egy másik dokumentum hivatkozza, és még nincs mentve. A mentés nélküli bezárás adatvesztést eredményez."
-#: sc/inc/globstr.hrc:428
+#: sc/inc/globstr.hrc:429
msgctxt "STR_HEADER_RANGE"
msgid "Range"
msgstr "Tartomány"
-#: sc/inc/globstr.hrc:429
+#: sc/inc/globstr.hrc:430
msgctxt "STR_HEADER_COND"
msgid "First Condition"
msgstr "Első feltétel"
-#: sc/inc/globstr.hrc:430
+#: sc/inc/globstr.hrc:431
msgctxt "STR_COND_CONDITION"
msgid "Cell value is"
msgstr "A cella értéke"
-#: sc/inc/globstr.hrc:431
+#: sc/inc/globstr.hrc:432
msgctxt "STR_COND_COLORSCALE"
msgid "ColorScale"
msgstr "Színskála"
-#: sc/inc/globstr.hrc:432
+#: sc/inc/globstr.hrc:433
msgctxt "STR_COND_DATABAR"
msgid "DataBar"
msgstr "Adatsáv"
-#: sc/inc/globstr.hrc:433
+#: sc/inc/globstr.hrc:434
msgctxt "STR_COND_ICONSET"
msgid "IconSet"
msgstr "Ikonhalmaz"
-#: sc/inc/globstr.hrc:434
+#: sc/inc/globstr.hrc:435
msgctxt "STR_COND_BETWEEN"
msgid "between"
msgstr "között"
-#: sc/inc/globstr.hrc:435
+#: sc/inc/globstr.hrc:436
msgctxt "STR_COND_NOTBETWEEN"
msgid "not between"
msgstr "nincs közötte"
-#: sc/inc/globstr.hrc:436
+#: sc/inc/globstr.hrc:437
msgctxt "STR_COND_UNIQUE"
msgid "unique"
msgstr "egyedi"
-#: sc/inc/globstr.hrc:437
+#: sc/inc/globstr.hrc:438
msgctxt "STR_COND_DUPLICATE"
msgid "duplicate"
msgstr "kettőzött"
-#: sc/inc/globstr.hrc:438
+#: sc/inc/globstr.hrc:439
msgctxt "STR_COND_FORMULA"
msgid "Formula is"
msgstr "A képlet"
-#: sc/inc/globstr.hrc:439
+#: sc/inc/globstr.hrc:440
msgctxt "STR_COND_TOP10"
msgid "Top Elements"
msgstr "Felső elemek"
-#: sc/inc/globstr.hrc:440
+#: sc/inc/globstr.hrc:441
msgctxt "STR_COND_BOTTOM10"
msgid "Bottom Elements"
msgstr "Alsó elemek"
-#: sc/inc/globstr.hrc:441
+#: sc/inc/globstr.hrc:442
msgctxt "STR_COND_TOP_PERCENT"
msgid "Top Percent"
msgstr "Felső százalék"
-#: sc/inc/globstr.hrc:442
+#: sc/inc/globstr.hrc:443
msgctxt "STR_COND_DATE"
msgid "Date is"
msgstr "A dátum"
-#: sc/inc/globstr.hrc:443
+#: sc/inc/globstr.hrc:444
msgctxt "STR_COND_BOTTOM_PERCENT"
msgid "Bottom Percent"
msgstr "Alsó százalék"
-#: sc/inc/globstr.hrc:444
+#: sc/inc/globstr.hrc:445
msgctxt "STR_COND_ABOVE_AVERAGE"
msgid "Above Average"
msgstr "Átlag fölött"
-#: sc/inc/globstr.hrc:445
+#: sc/inc/globstr.hrc:446
msgctxt "STR_COND_BELOW_AVERAGE"
msgid "Below Average"
msgstr "Átlag alatt"
-#: sc/inc/globstr.hrc:446
+#: sc/inc/globstr.hrc:447
msgctxt "STR_COND_ABOVE_EQUAL_AVERAGE"
msgid "Above or equal Average"
msgstr "Átlag fölött vagy azzal egyenlő"
-#: sc/inc/globstr.hrc:447
+#: sc/inc/globstr.hrc:448
msgctxt "STR_COND_BELOW_EQUAL_AVERAGE"
msgid "Below or equal Average"
msgstr "Átlag alatt vagy azzal egyenlő"
-#: sc/inc/globstr.hrc:448
+#: sc/inc/globstr.hrc:449
msgctxt "STR_COND_ERROR"
msgid "an Error code"
msgstr "hibakód"
-#: sc/inc/globstr.hrc:449
+#: sc/inc/globstr.hrc:450
msgctxt "STR_COND_NOERROR"
msgid "not an Error code"
msgstr "nem hibakód"
-#: sc/inc/globstr.hrc:450
+#: sc/inc/globstr.hrc:451
msgctxt "STR_COND_BEGINS_WITH"
msgid "Begins with"
msgstr "Kezdete ez"
-#: sc/inc/globstr.hrc:451
+#: sc/inc/globstr.hrc:452
msgctxt "STR_COND_ENDS_WITH"
msgid "Ends with"
msgstr "Vége ez"
-#: sc/inc/globstr.hrc:452
+#: sc/inc/globstr.hrc:453
msgctxt "STR_COND_CONTAINS"
msgid "Contains"
msgstr "Tartalmazza"
-#: sc/inc/globstr.hrc:453
+#: sc/inc/globstr.hrc:454
msgctxt "STR_COND_NOT_CONTAINS"
msgid "Not Contains"
msgstr "Nem tartalmazza"
-#: sc/inc/globstr.hrc:454
+#: sc/inc/globstr.hrc:455
msgctxt "STR_COND_TODAY"
msgid "today"
msgstr "ma"
-#: sc/inc/globstr.hrc:455
+#: sc/inc/globstr.hrc:456
msgctxt "STR_COND_YESTERDAY"
msgid "yesterday"
msgstr "tegnap"
-#: sc/inc/globstr.hrc:456
+#: sc/inc/globstr.hrc:457
msgctxt "STR_COND_TOMORROW"
msgid "tomorrow"
msgstr "holnap"
-#: sc/inc/globstr.hrc:457
+#: sc/inc/globstr.hrc:458
msgctxt "STR_COND_LAST7DAYS"
msgid "in the last 7 days"
msgstr "az elmúlt 7 nap"
-#: sc/inc/globstr.hrc:458
+#: sc/inc/globstr.hrc:459
msgctxt "STR_COND_THISWEEK"
msgid "this week"
msgstr "ez a hét"
-#: sc/inc/globstr.hrc:459
+#: sc/inc/globstr.hrc:460
msgctxt "STR_COND_LASTWEEK"
msgid "last week"
msgstr "múlt hét"
-#: sc/inc/globstr.hrc:460
+#: sc/inc/globstr.hrc:461
msgctxt "STR_COND_NEXTWEEK"
msgid "next week"
msgstr "jövő hét"
-#: sc/inc/globstr.hrc:461
+#: sc/inc/globstr.hrc:462
msgctxt "STR_COND_THISMONTH"
msgid "this month"
msgstr "ez a hónap"
-#: sc/inc/globstr.hrc:462
+#: sc/inc/globstr.hrc:463
msgctxt "STR_COND_LASTMONTH"
msgid "last month"
msgstr "múlt hónap"
-#: sc/inc/globstr.hrc:463
+#: sc/inc/globstr.hrc:464
msgctxt "STR_COND_NEXTMONTH"
msgid "next month"
msgstr "jövő hónap"
-#: sc/inc/globstr.hrc:464
+#: sc/inc/globstr.hrc:465
msgctxt "STR_COND_THISYEAR"
msgid "this year"
msgstr "ez az év"
-#: sc/inc/globstr.hrc:465
+#: sc/inc/globstr.hrc:466
msgctxt "STR_COND_LASTYEAR"
msgid "last year"
msgstr "elmúlt év"
-#: sc/inc/globstr.hrc:466
+#: sc/inc/globstr.hrc:467
msgctxt "STR_COND_NEXTYEAR"
msgid "next year"
msgstr "következő év"
-#: sc/inc/globstr.hrc:467
+#: sc/inc/globstr.hrc:468
msgctxt "STR_COND_AND"
msgid "and"
msgstr "és"
-#: sc/inc/globstr.hrc:468
+#: sc/inc/globstr.hrc:469
msgctxt "STR_ERR_CONDFORMAT_PROTECTED"
msgid "Conditional Formats can not be created, deleted or changed in protected sheets."
msgstr ""
-#: sc/inc/globstr.hrc:469
+#: sc/inc/globstr.hrc:470
msgctxt "STR_EDIT_EXISTING_COND_FORMATS"
msgid ""
"The selected cell already contains conditional formatting. You can either edit the existing conditional format or you define a new overlapping conditional format.\n"
@@ -2316,7 +2321,7 @@ msgstr ""
"\n"
"Szeretné szerkeszteni a meglévő feltételes formázást?"
-#: sc/inc/globstr.hrc:470
+#: sc/inc/globstr.hrc:471
msgctxt "STR_QUERY_FORMULA_RECALC_ONLOAD_ODS"
msgid ""
"This document was last saved by an application other than %PRODUCTNAME. Some formula cells may produce different results when recalculated.\n"
@@ -2327,7 +2332,7 @@ msgstr ""
"\n"
"Szeretné most újraszámolni az összes képletcellát a dokumentumban?"
-#: sc/inc/globstr.hrc:471
+#: sc/inc/globstr.hrc:472
msgctxt "STR_QUERY_FORMULA_RECALC_ONLOAD_XLS"
msgid ""
"This document was last saved by Excel. Some formula cells may produce different results when recalculated.\n"
@@ -2338,77 +2343,77 @@ msgstr ""
"\n"
"Szeretné most újraszámolni az összes képletcellát?"
-#: sc/inc/globstr.hrc:472
+#: sc/inc/globstr.hrc:473
msgctxt "STR_NO_INSERT_DELETE_OVER_PIVOT_TABLE"
msgid "You cannot insert or delete cells when the affected range intersects with pivot table."
msgstr "Nem szúrhat be vagy törölhet cellákat, ha az érintett tartomány metsz egy kimutatástáblát."
-#: sc/inc/globstr.hrc:473
+#: sc/inc/globstr.hrc:474
msgctxt "STR_DPFIELD_GROUP_BY_SECONDS"
msgid "Seconds"
msgstr "Másodperc"
-#: sc/inc/globstr.hrc:474
+#: sc/inc/globstr.hrc:475
msgctxt "STR_DPFIELD_GROUP_BY_MINUTES"
msgid "Minutes"
msgstr "Perc"
-#: sc/inc/globstr.hrc:475
+#: sc/inc/globstr.hrc:476
msgctxt "STR_DPFIELD_GROUP_BY_HOURS"
msgid "Hours"
msgstr "Óra"
-#: sc/inc/globstr.hrc:476
+#: sc/inc/globstr.hrc:477
msgctxt "STR_DPFIELD_GROUP_BY_DAYS"
msgid "Days"
msgstr "Nap"
-#: sc/inc/globstr.hrc:477
+#: sc/inc/globstr.hrc:478
msgctxt "STR_DPFIELD_GROUP_BY_MONTHS"
msgid "Months"
msgstr "Hónap"
-#: sc/inc/globstr.hrc:478
+#: sc/inc/globstr.hrc:479
msgctxt "STR_DPFIELD_GROUP_BY_QUARTERS"
msgid "Quarters"
msgstr "Negyedév"
-#: sc/inc/globstr.hrc:479
+#: sc/inc/globstr.hrc:480
msgctxt "STR_DPFIELD_GROUP_BY_YEARS"
msgid "Years"
msgstr "Év"
-#: sc/inc/globstr.hrc:480
+#: sc/inc/globstr.hrc:481
msgctxt "STR_INVALIDVAL"
msgid "Invalid target value."
msgstr "Érvénytelen célérték."
-#: sc/inc/globstr.hrc:481
+#: sc/inc/globstr.hrc:482
msgctxt "STR_INVALIDVAR"
msgid "Undefined name for variable cell."
msgstr "A változót tartalmazó cella neve nem definiált."
-#: sc/inc/globstr.hrc:482
+#: sc/inc/globstr.hrc:483
msgctxt "STR_INVALIDFORM"
msgid "Undefined name as formula cell."
msgstr "A képletet tartalmazó cella neve nem definiált."
-#: sc/inc/globstr.hrc:483
+#: sc/inc/globstr.hrc:484
msgctxt "STR_NOFORMULA"
msgid "Formula cell must contain a formula."
msgstr "A képletcellának képletet kell tartalmaznia."
-#: sc/inc/globstr.hrc:484
+#: sc/inc/globstr.hrc:485
msgctxt "STR_INVALIDINPUT"
msgid "Invalid input."
msgstr "Érvénytelen bemenet."
-#: sc/inc/globstr.hrc:485
+#: sc/inc/globstr.hrc:486
msgctxt "STR_INVALIDCONDITION"
msgid "Invalid condition."
msgstr "Hibás feltétel."
-#: sc/inc/globstr.hrc:486
+#: sc/inc/globstr.hrc:487
msgctxt "STR_QUERYREMOVE"
msgid ""
"Should the entry\n"
@@ -2419,133 +2424,133 @@ msgstr ""
"#\n"
"bejegyzést?"
-#: sc/inc/globstr.hrc:487
+#: sc/inc/globstr.hrc:488
msgctxt "STR_COPYLIST"
msgid "Copy List"
msgstr "Lista másolása"
-#: sc/inc/globstr.hrc:488
+#: sc/inc/globstr.hrc:489
msgctxt "STR_COPYFROM"
msgid "List from"
msgstr "Lista innen:"
-#: sc/inc/globstr.hrc:489
+#: sc/inc/globstr.hrc:490
msgctxt "STR_COPYERR"
msgid "Cells without text have been ignored."
msgstr "Üres cellák mellőzve."
-#: sc/inc/globstr.hrc:490
+#: sc/inc/globstr.hrc:491
#, c-format
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%s-click to follow hyperlink:"
msgstr "%s-kattintás a hiperhivatkozás megnyitásához:"
-#: sc/inc/globstr.hrc:491
+#: sc/inc/globstr.hrc:492
msgctxt "STR_CLICKHYPERLINK"
msgid "click to open hyperlink:"
msgstr "Kattintás a hiperhivatkozás megnyitásához:"
-#: sc/inc/globstr.hrc:492
+#: sc/inc/globstr.hrc:493
msgctxt "STR_PRINT_PREVIEW_NODATA"
msgid "No Data"
msgstr "Nincs adat"
-#: sc/inc/globstr.hrc:493
+#: sc/inc/globstr.hrc:494
msgctxt "STR_PRINT_PREVIEW_EMPTY_RANGE"
msgid "Print Range Empty"
msgstr "A nyomtatási tartomány üres"
-#: sc/inc/globstr.hrc:494
+#: sc/inc/globstr.hrc:495
msgctxt "STR_UNDO_CONDFORMAT"
msgid "Conditional Format"
msgstr "Feltételes formázás"
-#: sc/inc/globstr.hrc:495
+#: sc/inc/globstr.hrc:496
msgctxt "STR_UNDO_CONDFORMAT_LIST"
msgid "Conditional Formats"
msgstr "Feltételes formázások"
-#: sc/inc/globstr.hrc:496
+#: sc/inc/globstr.hrc:497
msgctxt "STR_UNDO_FORMULA_TO_VALUE"
msgid "Convert Formula To Value"
msgstr "Képlet értékké alakítása"
-#: sc/inc/globstr.hrc:497
+#: sc/inc/globstr.hrc:498
msgctxt "STR_UNQUOTED_STRING"
msgid "Strings without quotes are interpreted as column/row labels."
msgstr "Az idézőjelek nélküli szövegek oszlop/sorcímkeként lesznek értelmezve."
-#: sc/inc/globstr.hrc:498
+#: sc/inc/globstr.hrc:499
msgctxt "STR_ENTER_VALUE"
msgid "Enter a value!"
msgstr "Írjon be egy értéket!"
-#: sc/inc/globstr.hrc:499
+#: sc/inc/globstr.hrc:500
msgctxt "STR_TABLE_COUNT"
msgid "Sheet %1 of %2"
msgstr "%1. munkalap, összesen %2"
-#: sc/inc/globstr.hrc:500
+#: sc/inc/globstr.hrc:501
msgctxt "STR_FUNCTIONS_FOUND"
msgid "%1 and %2 more"
msgstr "%1 és még %2"
-#: sc/inc/globstr.hrc:501
+#: sc/inc/globstr.hrc:502
msgctxt "STR_GENERAL"
msgid "General"
msgstr "Általános"
-#: sc/inc/globstr.hrc:502
+#: sc/inc/globstr.hrc:503
msgctxt "STR_NUMBER"
msgid "Number"
msgstr "Szám"
-#: sc/inc/globstr.hrc:503
+#: sc/inc/globstr.hrc:504
msgctxt "STR_PERCENT"
msgid "Percent"
msgstr "Százalék"
-#: sc/inc/globstr.hrc:504
+#: sc/inc/globstr.hrc:505
msgctxt "STR_CURRENCY"
msgid "Currency"
msgstr "Pénznem"
-#: sc/inc/globstr.hrc:505
+#: sc/inc/globstr.hrc:506
msgctxt "STR_DATE"
msgid "Date"
msgstr "Dátum"
-#: sc/inc/globstr.hrc:506
+#: sc/inc/globstr.hrc:507
msgctxt "STR_TIME"
msgid "Time"
msgstr "Idő"
-#: sc/inc/globstr.hrc:507
+#: sc/inc/globstr.hrc:508
msgctxt "STR_SCIENTIFIC"
msgid "Scientific"
msgstr "Tudományos"
-#: sc/inc/globstr.hrc:508
+#: sc/inc/globstr.hrc:509
msgctxt "STR_FRACTION"
msgid "Fraction"
msgstr "Tört"
-#: sc/inc/globstr.hrc:509
+#: sc/inc/globstr.hrc:510
msgctxt "STR_BOOLEAN_VALUE"
msgid "Boolean Value"
msgstr "Logikai érték"
-#: sc/inc/globstr.hrc:510
+#: sc/inc/globstr.hrc:511
msgctxt "STR_TEXT"
msgid "Text"
msgstr "Szöveg"
-#: sc/inc/globstr.hrc:511
+#: sc/inc/globstr.hrc:512
msgctxt "STR_QUERY_PIVOTTABLE_DELTAB"
msgid "The selected sheet(s) contain source data of related pivot tables that will be lost. Are you sure you want to delete the selected sheet(s)?"
msgstr "A kijelölt munkalapok a kapcsolódó kimutatástábla forrásadatait tartalmazzák, ezek el fognak veszni. Biztosan törölni kívánja a kijelölt munkalapokat?"
-#: sc/inc/globstr.hrc:512
+#: sc/inc/globstr.hrc:513
msgctxt "STR_ERR_NAME_INVALID_CELL_REF"
msgid "Invalid name. Reference to a cell, or a range of cells not allowed."
msgstr "Érvénytelen név. Cellahivatkozás vagy cellatartomány-hivatkozás nem engedélyezett."
@@ -10487,8 +10492,8 @@ msgstr "Mód"
#: sc/inc/scfuncs.hrc:3010
msgctxt "SC_OPCODE_T_TEST"
-msgid "Mode specifies the number of distribution tails to return. 1= one-tailed, 2 = two-tailed distribution"
-msgstr "A mód meghatározza az eredményként adott eloszlás végét. 1=egyoldalas, 2=kétoldalas eloszlás."
+msgid "Mode specifies the number of distribution tails to return. 1 = one-tailed, 2 = two-tailed distribution"
+msgstr ""
#: sc/inc/scfuncs.hrc:3011
msgctxt "SC_OPCODE_T_TEST"
@@ -10532,8 +10537,8 @@ msgstr "Mód"
#: sc/inc/scfuncs.hrc:3024
msgctxt "SC_OPCODE_T_TEST_MS"
-msgid "Mode specifies the number of distribution tails to return. 1= one-tailed, 2 = two-tailed distribution"
-msgstr "A mód meghatározza az eredményként adott eloszlás végét. 1=egyoldalas, 2=kétoldalas eloszlás."
+msgid "Mode specifies the number of distribution tails to return. 1 = one-tailed, 2 = two-tailed distribution"
+msgstr ""
#: sc/inc/scfuncs.hrc:3025
msgctxt "SC_OPCODE_T_TEST_MS"
@@ -18019,22 +18024,22 @@ msgctxt "mergecellsdialog|MergeCellsDialog"
msgid "Merge Cells"
msgstr "Cellák egyesítése"
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:81
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:84
msgctxt "mergecellsdialog|label"
msgid "Some cells are not empty."
msgstr "Néhány cella nem üres"
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:96
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:99
msgctxt "mergecellsdialog|move-cells-radio"
msgid "Move the contents of the hidden cells into the first cell"
msgstr "Rejtett cellák tartalmának áthelyezése az első cellába"
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:112
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:115
msgctxt "mergecellsdialog|empty-cells-radio"
msgid "Empty the contents of the hidden cells"
msgstr "Rejtett cellák tartalmának törlése"
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:128
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:131
msgctxt "mergecellsdialog|keep-content-radio"
msgid "Keep the contents of the hidden cells"
msgstr "Rejtett cellák tartalmának megtartása"
diff --git a/source/hu/sd/messages.po b/source/hu/sd/messages.po
index de7094a2f6f..e75b8568ba4 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2018-02-01 18:18+0000\n"
"Last-Translator: Gábor Kelemen <kelemeng@gnome.hu>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -16,167 +16,167 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1517509094.000000\n"
-#: sd/inc/DocumentRenderer.hrc:29
+#: sd/inc/DocumentRenderer.hrc:27
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Slides"
msgstr "Diák"
-#: sd/inc/DocumentRenderer.hrc:30
+#: sd/inc/DocumentRenderer.hrc:28
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Handouts"
msgstr "Emlékeztetők"
-#: sd/inc/DocumentRenderer.hrc:31
+#: sd/inc/DocumentRenderer.hrc:29
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Notes"
msgstr "Jegyzetek"
-#: sd/inc/DocumentRenderer.hrc:32
+#: sd/inc/DocumentRenderer.hrc:30
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Outline"
msgstr "Vázlat"
-#: sd/inc/DocumentRenderer.hrc:37
+#: sd/inc/DocumentRenderer.hrc:35
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "According to layout"
msgstr "Elrendezés szerint"
-#: sd/inc/DocumentRenderer.hrc:38
+#: sd/inc/DocumentRenderer.hrc:36
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "1"
msgstr "1"
-#: sd/inc/DocumentRenderer.hrc:39
+#: sd/inc/DocumentRenderer.hrc:37
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "2"
msgstr "2"
-#: sd/inc/DocumentRenderer.hrc:40
+#: sd/inc/DocumentRenderer.hrc:38
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "3"
msgstr "3"
-#: sd/inc/DocumentRenderer.hrc:41
+#: sd/inc/DocumentRenderer.hrc:39
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "4"
msgstr "4"
-#: sd/inc/DocumentRenderer.hrc:42
+#: sd/inc/DocumentRenderer.hrc:40
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "6"
msgstr "6"
-#: sd/inc/DocumentRenderer.hrc:43
+#: sd/inc/DocumentRenderer.hrc:41
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "9"
msgstr "9"
-#: sd/inc/DocumentRenderer.hrc:48
+#: sd/inc/DocumentRenderer.hrc:46
msgctxt "STR_IMPRESS_PRINT_UI_ORDER_CHOICES"
msgid "Left to right, then down"
msgstr "Balról jobbra, majd le"
-#: sd/inc/DocumentRenderer.hrc:49
+#: sd/inc/DocumentRenderer.hrc:47
msgctxt "STR_IMPRESS_PRINT_UI_ORDER_CHOICES"
msgid "Top to bottom, then right"
msgstr "Fentről lefelé, majd jobbra"
-#: sd/inc/DocumentRenderer.hrc:54
+#: sd/inc/DocumentRenderer.hrc:52
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Original colors"
msgstr "Eredeti színek"
-#: sd/inc/DocumentRenderer.hrc:55
+#: sd/inc/DocumentRenderer.hrc:53
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Grayscale"
msgstr "Szürkeárnyalatos"
-#: sd/inc/DocumentRenderer.hrc:56
+#: sd/inc/DocumentRenderer.hrc:54
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Black & white"
msgstr "Fekete-fehér"
-#: sd/inc/DocumentRenderer.hrc:61
+#: sd/inc/DocumentRenderer.hrc:59
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Original size"
msgstr "Eredeti méret"
-#: sd/inc/DocumentRenderer.hrc:62
+#: sd/inc/DocumentRenderer.hrc:60
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Fit to printable page"
msgstr "Igazítás az oldal méretéhez"
-#: sd/inc/DocumentRenderer.hrc:63
+#: sd/inc/DocumentRenderer.hrc:61
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Distribute on multiple sheets of paper"
msgstr "Elosztás több papírlapra"
-#: sd/inc/DocumentRenderer.hrc:64
+#: sd/inc/DocumentRenderer.hrc:62
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Tile sheet of paper with repeated slides"
msgstr "Diák mozaikelrendezése a papírlapon"
-#: sd/inc/DocumentRenderer.hrc:69
+#: sd/inc/DocumentRenderer.hrc:67
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Original size"
msgstr "Eredeti méret"
-#: sd/inc/DocumentRenderer.hrc:70
+#: sd/inc/DocumentRenderer.hrc:68
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Fit to printable page"
msgstr "Igazítás az oldal méretéhez"
-#: sd/inc/DocumentRenderer.hrc:71
+#: sd/inc/DocumentRenderer.hrc:69
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Distribute on multiple sheets of paper"
msgstr "Elosztás több papírlapra"
-#: sd/inc/DocumentRenderer.hrc:72
+#: sd/inc/DocumentRenderer.hrc:70
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Tile sheet of paper with repeated pages"
msgstr "Oldalak mozaikelrendezése a papírlapon"
-#: sd/inc/DocumentRenderer.hrc:77
+#: sd/inc/DocumentRenderer.hrc:75
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "All pages"
msgstr "Összes oldal"
-#: sd/inc/DocumentRenderer.hrc:78
+#: sd/inc/DocumentRenderer.hrc:76
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "Front sides / right pages"
msgstr "Előoldalak / páratlan oldalak"
-#: sd/inc/DocumentRenderer.hrc:79
+#: sd/inc/DocumentRenderer.hrc:77
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "Back sides / left pages"
msgstr "Hátoldalak / páros oldalak"
-#: sd/inc/DocumentRenderer.hrc:84
+#: sd/inc/DocumentRenderer.hrc:82
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~All slides"
msgstr "Ö~sszes dia"
-#: sd/inc/DocumentRenderer.hrc:85
+#: sd/inc/DocumentRenderer.hrc:83
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~Slides"
msgstr "~Diák"
-#: sd/inc/DocumentRenderer.hrc:86
+#: sd/inc/DocumentRenderer.hrc:84
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Se~lection"
msgstr "~Kijelölés"
-#: sd/inc/DocumentRenderer.hrc:91
+#: sd/inc/DocumentRenderer.hrc:89
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~All pages"
msgstr "Ö~sszes oldal"
-#: sd/inc/DocumentRenderer.hrc:92
+#: sd/inc/DocumentRenderer.hrc:90
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Pa~ges"
msgstr "Ol~dalak"
-#: sd/inc/DocumentRenderer.hrc:93
+#: sd/inc/DocumentRenderer.hrc:91
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Se~lection"
msgstr "~Kijelölés"
diff --git a/source/hu/svx/messages.po b/source/hu/svx/messages.po
index 05c786876f0..bc0b0eb551b 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: 2018-05-16 16:53+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2018-02-09 22:08+0000\n"
"Last-Translator: Gábor Kelemen <kelemeng@gnome.hu>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5179,8 +5179,8 @@ msgstr "A hibajelentéshez csatolhatja a felhasználói profilja releváns rész
#: svx/uiconfig/ui/safemodedialog.ui:432
msgctxt "safemodedialog|btn_create_zip"
-msgid "Create Zip Archive from User Profile"
-msgstr "Felhasználói profil archiválása zip formátumba"
+msgid "Archive User Profile"
+msgstr ""
#: svx/uiconfig/ui/safemodedialog.ui:445
msgctxt "safemodedialog|linkbutton_profile"
@@ -8769,9 +8769,9 @@ msgid "Red"
msgstr "Vörös"
#: include/svx/strings.hrc:565
-msgctxt "RID_SVXSTR_COLOR_VIOLET"
-msgid "Violet"
-msgstr "Ibolya"
+msgctxt "RID_SVXSTR_COLOR_MAGENTA"
+msgid "Magenta"
+msgstr "Bíbor"
#: include/svx/strings.hrc:566
msgctxt "RID_SVXSTR_COLOR_PURPLE"
@@ -8835,9 +8835,9 @@ msgid "Light Red"
msgstr "Világospiros"
#: include/svx/strings.hrc:579
-msgctxt "RID_SVXSTR_COLOR_LIGHTVIOLET"
-msgid "Light Violet"
-msgstr "Világos ibolya"
+msgctxt "RID_SVXSTR_COLOR_LIGHTMAGENTA"
+msgid "Light Magenta"
+msgstr ""
#: include/svx/strings.hrc:580
msgctxt "RID_SVXSTR_COLOR_LIGHTPURPLE"
@@ -8901,9 +8901,9 @@ msgid "Dark Red"
msgstr "Sötétvörös"
#: include/svx/strings.hrc:593
-msgctxt "RID_SVXSTR_COLOR_DARKVIOLET1"
-msgid "Dark Violet"
-msgstr "Sötétlila"
+msgctxt "RID_SVXSTR_COLOR_DARKMAGENTA"
+msgid "Dark Magenta"
+msgstr ""
#: include/svx/strings.hrc:594
msgctxt "RID_SVXSTR_COLOR_DARKPURPLE"
@@ -8937,55 +8937,55 @@ msgstr "Sötét zöldcitrom"
#. Elements of the Tonal color palette
#: include/svx/strings.hrc:601
+msgctxt "RID_SVXSTR_COLOR_VIOLET"
+msgid "Violet"
+msgstr "Ibolya"
+
+#: include/svx/strings.hrc:602
msgctxt "RID_SVXSTR_COLOR_VIOLET_OUG"
msgid "Violet (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:602
+#: include/svx/strings.hrc:603
msgctxt "RID_SVXSTR_COLOR_BLUE_OUG"
msgid "Blue (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:603
+#: include/svx/strings.hrc:604
msgctxt "RID_SVXSTR_COLOR_AZURE_OUG"
msgid "Azure (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:604
+#: include/svx/strings.hrc:605
msgctxt "RID_SVXSTR_COLOR_SPRINGGREEN_OUG"
msgid "Spring Green (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:605
+#: include/svx/strings.hrc:606
msgctxt "RID_SVXSTR_COLOR_GREEN_OUG"
msgid "Green (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:606
+#: include/svx/strings.hrc:607
msgctxt "RID_SVXSTR_COLOR_CHARTREUSEGREEN_OUG"
msgid "Chartreuse Green (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:607
+#: include/svx/strings.hrc:608
msgctxt "RID_SVXSTR_COLOR_ORANGE_OUG"
msgid "Orange (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:608
+#: include/svx/strings.hrc:609
msgctxt "RID_SVXSTR_COLOR_RED_OUG"
msgid "Red (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:609
+#: include/svx/strings.hrc:610
msgctxt "RID_SVXSTR_COLOR_ROSE_OUG"
msgid "Rose (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:610
-msgctxt "RID_SVXSTR_COLOR_MAGENTA"
-msgid "Magenta"
-msgstr "Bíbor"
-
#: include/svx/strings.hrc:611
msgctxt "RID_SVXSTR_COLOR_AZURE"
msgid "Azure"
@@ -12099,13 +12099,13 @@ msgstr "Jobbra mutató nyílhegy alakú felsorolásjel"
#: include/svx/strings.hrc:1273
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_6"
-msgid "Check mark bullets"
-msgstr "Iksz alakú felsorolásjel"
+msgid "Cross mark bullets"
+msgstr ""
#: include/svx/strings.hrc:1274
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_7"
-msgid "Tick mark bullets"
-msgstr "Pipa alakú felsorolásjel"
+msgid "Check mark bullets"
+msgstr ""
#: include/svx/strings.hrc:1275
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_0"
diff --git a/source/hu/sw/messages.po b/source/hu/sw/messages.po
index c0625ec5246..cd6ffda562d 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: 2018-05-22 13:17+0200\n"
+"POT-Creation-Date: 2018-06-12 14:41+0200\n"
"PO-Revision-Date: 2018-02-10 00:00+0000\n"
"Last-Translator: Gábor Kelemen <kelemeng@gnome.hu>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1180,13 +1180,13 @@ msgstr "Idézet"
#: sw/inc/strings.hrc:172
msgctxt "STR_POOLCOLL_TOX_ILLUSH"
-msgid "Illustration Index Heading"
-msgstr "Ábrajegyzék fejléce"
+msgid "Figure Index Heading"
+msgstr ""
#: sw/inc/strings.hrc:173
msgctxt "STR_POOLCOLL_TOX_ILLUS1"
-msgid "Illustration Index 1"
-msgstr "1. ábrajegyzék"
+msgid "Figure Index 1"
+msgstr ""
#: sw/inc/strings.hrc:174
msgctxt "STR_POOLCOLL_TOX_OBJECTH"
@@ -3590,8 +3590,8 @@ msgstr "Objektumjegyzék"
#: sw/inc/strings.hrc:672
msgctxt "STR_TOX_ILL"
-msgid "Illustration Index"
-msgstr "Ábrajegyzék"
+msgid "Table of Figures"
+msgstr ""
#: sw/inc/strings.hrc:673
#, c-format
@@ -9244,72 +9244,72 @@ msgctxt "footnotepage|label5"
msgid "Continuation Notice"
msgstr "Figyelmeztető üzenet a hely túllépése esetén"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:49
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:55
msgctxt "footnotesendnotestabpage|ftnntnum"
msgid "_Restart numbering"
msgstr "S_zámozás újrakezdése"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:91
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:93
msgctxt "footnotesendnotestabpage|ftnoffset_label"
msgid "_Start at:"
msgstr "_Kezdőérték:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:112
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:111
msgctxt "footnotesendnotestabpage|ftnntnumfmt"
msgid "Custom _format"
msgstr "Egyedi _formátum"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:155
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:150
msgctxt "footnotesendnotestabpage|ftnsuffix_label"
msgid "Aft_er:"
msgstr "_Utána:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:199
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:188
msgctxt "footnotesendnotestabpage|ftnprefix_label"
msgid "Be_fore:"
msgstr "_Előtte:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:228
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:212
msgctxt "footnotesendnotestabpage|ftnntattextend"
msgid "Collec_t at end of text"
msgstr "_Gyűjtés a szöveg végén"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:252
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:234
msgctxt "footnotesendnotestabpage|label1"
msgid "Footnotes"
msgstr "Lábjegyzetek"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:289
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:271
msgctxt "footnotesendnotestabpage|endntattextend"
msgid "C_ollect at end of section"
msgstr "Gyűjtés a szakasz _végén"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:315
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:295
msgctxt "footnotesendnotestabpage|endntnum"
msgid "_Restart numbering"
msgstr "S_zámozás újrakezdése"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:357
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:333
msgctxt "footnotesendnotestabpage|endoffset_label"
msgid "_Start at:"
msgstr "_Kezdőérték:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:378
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:351
msgctxt "footnotesendnotestabpage|endntnumfmt"
msgid "_Custom format"
msgstr "Egyedi f_ormátum"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:421
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:390
msgctxt "footnotesendnotestabpage|endsuffix_label"
msgid "Aft_er:"
msgstr "_Utána:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:465
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:428
msgctxt "footnotesendnotestabpage|endprefix_label"
msgid "Be_fore:"
msgstr "_Előtte:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:500
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:458
msgctxt "footnotesendnotestabpage|label2"
msgid "Endnotes"
msgstr "Végjegyzetek"
@@ -9339,27 +9339,27 @@ msgctxt "formatsectiondialog|notes"
msgid "Footnotes/Endnotes"
msgstr "Lábjegyzetek és végjegyzetek"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:63
+#: sw/uiconfig/swriter/ui/formattablepage.ui:77
msgctxt "formattablepage|nameft"
msgid "_Name"
msgstr "_Név"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:79
+#: sw/uiconfig/swriter/ui/formattablepage.ui:91
msgctxt "formattablepage|widthft"
msgid "W_idth"
msgstr "_Szélesség"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:110
+#: sw/uiconfig/swriter/ui/formattablepage.ui:120
msgctxt "formattablepage|relwidth"
msgid "Relati_ve"
msgstr "_Viszonylagos"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:155
+#: sw/uiconfig/swriter/ui/formattablepage.ui:160
msgctxt "formattablepage|label45"
msgid "Properties"
msgstr "Tulajdonságok"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:194
+#: sw/uiconfig/swriter/ui/formattablepage.ui:195
msgctxt "formattablepage|leftft"
msgid "Lef_t"
msgstr "_Balra"
@@ -9369,62 +9369,62 @@ msgctxt "formattablepage|rightft"
msgid "Ri_ght"
msgstr "_Jobbra"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:228
+#: sw/uiconfig/swriter/ui/formattablepage.ui:226
msgctxt "formattablepage|aboveft"
msgid "_Above"
msgstr "_Felett"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:245
+#: sw/uiconfig/swriter/ui/formattablepage.ui:241
msgctxt "formattablepage|belowft"
msgid "_Below"
msgstr "_Alatt"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:320
+#: sw/uiconfig/swriter/ui/formattablepage.ui:311
msgctxt "formattablepage|label46"
msgid "Spacing"
msgstr "Térköz"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:362
+#: sw/uiconfig/swriter/ui/formattablepage.ui:349
msgctxt "formattablepage|full"
msgid "A_utomatic"
msgstr "A_utomatikus"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:380
+#: sw/uiconfig/swriter/ui/formattablepage.ui:365
msgctxt "formattablepage|left"
msgid "_Left"
msgstr "_Balra zárt"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:398
+#: sw/uiconfig/swriter/ui/formattablepage.ui:381
msgctxt "formattablepage|fromleft"
msgid "_From left"
msgstr "_Balról"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:416
+#: sw/uiconfig/swriter/ui/formattablepage.ui:397
msgctxt "formattablepage|right"
msgid "R_ight"
msgstr "_Jobbra"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:435
+#: sw/uiconfig/swriter/ui/formattablepage.ui:413
msgctxt "formattablepage|center"
msgid "_Center"
msgstr "_Középre"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:453
+#: sw/uiconfig/swriter/ui/formattablepage.ui:429
msgctxt "formattablepage|free"
msgid "_Manual"
msgstr "_Kézi"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:478
+#: sw/uiconfig/swriter/ui/formattablepage.ui:452
msgctxt "formattablepage|label43"
msgid "Alignment"
msgstr "Igazítás"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:522
+#: sw/uiconfig/swriter/ui/formattablepage.ui:491
msgctxt "formattablepage|label53"
msgid "Text _direction"
msgstr "Szöveg_irány"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:553
+#: sw/uiconfig/swriter/ui/formattablepage.ui:519
msgctxt "formattablepage|label44"
msgid "Properties "
msgstr "Tulajdonságok"
@@ -9779,22 +9779,27 @@ msgctxt "headerfootermenu|insert_pagenumber"
msgid "Insert Page Number"
msgstr ""
-#: sw/uiconfig/swriter/ui/indentpage.ui:52
+#: sw/uiconfig/swriter/ui/headerfootermenu.ui:42
+msgctxt "headerfootermenu|insert_pagecount"
+msgid "Insert Page Count"
+msgstr ""
+
+#: sw/uiconfig/swriter/ui/indentpage.ui:57
msgctxt "indentpage|label1"
msgid "_Before section"
msgstr "_Bal szélen"
-#: sw/uiconfig/swriter/ui/indentpage.ui:67
+#: sw/uiconfig/swriter/ui/indentpage.ui:71
msgctxt "indentpage|label3"
msgid "_After section"
msgstr "_Jobb szélen"
-#: sw/uiconfig/swriter/ui/indentpage.ui:113
+#: sw/uiconfig/swriter/ui/indentpage.ui:115
msgctxt "indentpage|label2"
msgid "Indent"
msgstr "Behúzás"
-#: sw/uiconfig/swriter/ui/indentpage.ui:142
+#: sw/uiconfig/swriter/ui/indentpage.ui:155
msgctxt "indentpage|preview-atkobject"
msgid "Example"
msgstr "Példa"
@@ -13285,8 +13290,8 @@ msgstr "Űrlap védelme"
#: sw/uiconfig/swriter/ui/optcompatpage.ui:68
msgctxt "optcompatpage|format"
-msgid "MS Word-compatible trailing blanks"
-msgstr "MS Word kompatibilis záró üres helyek"
+msgid "Word-compatible trailing blanks"
+msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:69
msgctxt "optcompatpage|format"
@@ -13295,7 +13300,7 @@ msgstr "PDF oldalhátterek fehér vonalainak tolerálása régi dokumentumokkal
#: sw/uiconfig/swriter/ui/optcompatpage.ui:70
msgctxt "optcompatpage|format"
-msgid "A database field (e.g., MailMerge) with empty value hides its paragraph"
+msgid "Hide paragraphs of database fields (e.g., mail merge) with an empty value"
msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:71
@@ -15979,122 +15984,122 @@ msgctxt "tableproperties|background"
msgid "Background"
msgstr "Háttér"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:25
-msgctxt "tabletextflowpage|liststore1"
-msgid "Horizontal"
-msgstr "Vízszintes"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:29
-msgctxt "tabletextflowpage|liststore1"
-msgid "Vertical"
-msgstr "Függőleges"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:33
-msgctxt "tabletextflowpage|liststore1"
-msgid "Use superordinate object settings"
-msgstr "Szülőobjektum beállításainak használata"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:47
-msgctxt "tabletextflowpage|liststore2"
-msgid "Top"
-msgstr "Fel"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:51
-msgctxt "tabletextflowpage|liststore2"
-msgid "Centered"
-msgstr "Középre"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:55
-msgctxt "tabletextflowpage|liststore2"
-msgid "Bottom"
-msgstr "Le"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:97
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:53
msgctxt "tabletextflowpage|break"
msgid "_Break"
msgstr "Tö_rés"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:112
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:68
msgctxt "tabletextflowpage|page"
msgid "_Page"
msgstr "_Oldal"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:132
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:87
msgctxt "tabletextflowpage|column"
msgid "Col_umn"
msgstr "_Hasáb"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:151
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:106
msgctxt "tabletextflowpage|before"
msgid "Be_fore"
msgstr "_Előtte"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:171
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:125
msgctxt "tabletextflowpage|after"
msgid "_After"
msgstr "_Utána"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:203
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:158
msgctxt "tabletextflowpage|pagestyle"
msgid "With Page St_yle"
msgstr "_Oldalstílussal"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:224
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:177
msgctxt "tabletextflowpage|pagenoft"
msgid "Page _number"
msgstr "_Oldalszám"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:257
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:213
msgctxt "tabletextflowpage|pagestylelb-atkobject"
msgid "With Page Style"
msgstr "Oldalstílussal"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:274
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:230
msgctxt "tabletextflowpage|split"
msgid "Allow _table to split across pages and columns"
msgstr "A _táblázatok megtörhetnek oldalak és hasábok között"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:289
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:245
msgctxt "tabletextflowpage|splitrow"
msgid "Allow row to break a_cross pages and columns"
msgstr "A _sorok megtörhetnek oldalak és hasábok között"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:306
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:262
msgctxt "tabletextflowpage|keep"
msgid "_Keep with next paragraph"
msgstr "_Együtt a következővel"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:328
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:284
msgctxt "tabletextflowpage|label40"
msgid "Text _orientation"
msgstr "Szöveg_irány"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:361
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:298
+msgctxt "tabletextflowpage|liststore1"
+msgid "Horizontal"
+msgstr "Vízszintes"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:299
+msgctxt "tabletextflowpage|liststore1"
+msgid "Vertical"
+msgstr "Függőleges"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:300
+msgctxt "tabletextflowpage|liststore1"
+msgid "Use superordinate object settings"
+msgstr "Szülőobjektum beállításainak használata"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:321
msgctxt "tabletextflowpage|headline"
msgid "R_epeat heading"
msgstr "Fejléc ismétlés_e"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:383
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:343
msgctxt "tabletextflowpage|label38"
msgid "The first "
msgstr "Az első "
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:396
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:356
msgctxt "tabletextflowpage|label39"
msgid "rows"
msgstr "sor"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:434
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:395
msgctxt "tabletextflowpage|label35"
msgid "Text Flow"
msgstr "Szövegbeosztás"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:467
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:428
msgctxt "tabletextflowpage|label41"
msgid "_Vertical alignment"
msgstr "_Függőleges igazítás"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:495
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:442
+msgctxt "tabletextflowpage|liststore2"
+msgid "Top"
+msgstr "Fel"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:443
+msgctxt "tabletextflowpage|liststore2"
+msgid "Centered"
+msgstr "Középre"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:444
+msgctxt "tabletextflowpage|liststore2"
+msgid "Bottom"
+msgstr "Le"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:460
msgctxt "tabletextflowpage|label36"
msgid "Alignment"
msgstr "Igazítás"
@@ -16876,8 +16881,8 @@ msgstr "Betűrendes tárgymutató"
#: sw/uiconfig/swriter/ui/tocindexpage.ui:58
msgctxt "tocindexpage|liststore1"
-msgid "Illustration Index"
-msgstr "Ábrajegyzék"
+msgid "Table of Figures"
+msgstr ""
#: sw/uiconfig/swriter/ui/tocindexpage.ui:62
msgctxt "tocindexpage|liststore1"
diff --git a/source/hu/writerperfect/messages.po b/source/hu/writerperfect/messages.po
index 5632adb62e3..611c790d873 100644
--- a/source/hu/writerperfect/messages.po
+++ b/source/hu/writerperfect/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-16 16:54+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2017-12-03 19:58+0000\n"
"Last-Translator: Gábor Kelemen <kelemeng@gnome.hu>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -66,97 +66,97 @@ msgctxt "exportepub|generalft"
msgid "General"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:122
+#: writerperfect/uiconfig/ui/exportepub.ui:121
msgctxt "exportepub|versionft"
msgid "Version:"
msgstr "Verzió:"
-#: writerperfect/uiconfig/ui/exportepub.ui:139
+#: writerperfect/uiconfig/ui/exportepub.ui:138
msgctxt "exportepub|epub3"
msgid "EPUB 3.0"
msgstr "EPUB 3.0"
-#: writerperfect/uiconfig/ui/exportepub.ui:140
+#: writerperfect/uiconfig/ui/exportepub.ui:139
msgctxt "exportepub|epub2"
msgid "EPUB 2.0"
msgstr "EPUB 2.0"
-#: writerperfect/uiconfig/ui/exportepub.ui:175
+#: writerperfect/uiconfig/ui/exportepub.ui:174
msgctxt "exportepub|splitft"
msgid "Split method:"
msgstr "Felosztási mód:"
-#: writerperfect/uiconfig/ui/exportepub.ui:192
+#: writerperfect/uiconfig/ui/exportepub.ui:191
msgctxt "exportepub|splitpage"
msgid "Page break"
msgstr "Oldaltörés"
-#: writerperfect/uiconfig/ui/exportepub.ui:193
+#: writerperfect/uiconfig/ui/exportepub.ui:192
msgctxt "exportepub|splitheading"
msgid "Heading"
msgstr "Címsor"
-#: writerperfect/uiconfig/ui/exportepub.ui:228
+#: writerperfect/uiconfig/ui/exportepub.ui:227
msgctxt "exportepub|layoutft"
msgid "Layout method:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:245
+#: writerperfect/uiconfig/ui/exportepub.ui:244
msgctxt "exportepub|layoutreflowable"
msgid "Reflowable"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:246
+#: writerperfect/uiconfig/ui/exportepub.ui:245
msgctxt "exportepub|layoutfixed"
msgid "Fixed"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:281
+#: writerperfect/uiconfig/ui/exportepub.ui:280
msgctxt "exportepub|coverimageft"
msgid "Custom cover image:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:311
+#: writerperfect/uiconfig/ui/exportepub.ui:310
msgctxt "exportepub|coverbutton"
msgid "Browse..."
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:355
+#: writerperfect/uiconfig/ui/exportepub.ui:354
msgctxt "exportepub|mediadirft"
msgid "Custom media directory:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:385
+#: writerperfect/uiconfig/ui/exportepub.ui:384
msgctxt "exportepub|mediabutton"
msgid "Browse..."
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:429
+#: writerperfect/uiconfig/ui/exportepub.ui:428
msgctxt "exportepub|metadataft"
msgid "Metadata"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:470
+#: writerperfect/uiconfig/ui/exportepub.ui:468
msgctxt "exportepub|identifierft"
msgid "Identifier:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:485
+#: writerperfect/uiconfig/ui/exportepub.ui:483
msgctxt "exportepub|titleft"
msgid "Title:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:511
+#: writerperfect/uiconfig/ui/exportepub.ui:509
msgctxt "exportepub|authorft"
msgid "Author:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:537
+#: writerperfect/uiconfig/ui/exportepub.ui:535
msgctxt "exportepub|languageft"
msgid "Language:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:563
+#: writerperfect/uiconfig/ui/exportepub.ui:561
msgctxt "exportepub|dateft"
msgid "Date:"
msgstr ""
diff --git a/source/id/cui/messages.po b/source/id/cui/messages.po
index 66c9d7ec72d..3c31f391e6c 100644
--- a/source/id/cui/messages.po
+++ b/source/id/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: 2018-05-22 13:16+0200\n"
-"PO-Revision-Date: 2018-05-05 11:24+0000\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
+"PO-Revision-Date: 2018-06-02 11:43+0000\n"
"Last-Translator: Andika Triwidada <andika@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: id\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1525519492.000000\n"
+"X-POOTLE-MTIME: 1527939781.000000\n"
#: cui/inc/personalization.hrc:31
msgctxt "RID_SVXSTR_PERSONA_CATEGORIES"
@@ -400,7 +400,7 @@ msgstr "Hapus dari Favorit"
#: cui/inc/strings.hrc:100
msgctxt "RID_SVXSTR_MISSING_GLYPH"
msgid "Missing Glyph"
-msgstr ""
+msgstr "Glif Hilang"
#: cui/inc/strings.hrc:101
msgctxt "RID_SVXSTR_ADD_FAVORITES"
@@ -9872,97 +9872,97 @@ msgctxt "positionsizedialog|PositionAndSizeDialog"
msgid "Position and Size"
msgstr "Posisi dan Ukuran"
-#: cui/uiconfig/ui/positionsizedialog.ui:107
+#: cui/uiconfig/ui/positionsizedialog.ui:136
msgctxt "positionsizedialog|RID_SVXPAGE_POSITION_SIZE"
msgid "Position and Size"
msgstr "Posisi dan Ukuran"
-#: cui/uiconfig/ui/positionsizedialog.ui:129
+#: cui/uiconfig/ui/positionsizedialog.ui:182
msgctxt "positionsizedialog|RID_SVXPAGE_SWPOSSIZE"
msgid "Position and Size"
msgstr "Posisi dan Ukuran"
-#: cui/uiconfig/ui/positionsizedialog.ui:152
+#: cui/uiconfig/ui/positionsizedialog.ui:229
msgctxt "positionsizedialog|RID_SVXPAGE_ANGLE"
msgid "Rotation"
msgstr "Rotasi"
-#: cui/uiconfig/ui/positionsizedialog.ui:175
+#: cui/uiconfig/ui/positionsizedialog.ui:276
msgctxt "positionsizedialog|RID_SVXPAGE_SLANT"
msgid "Slant & Corner Radius"
msgstr "Radius Slant & Pojok"
-#: cui/uiconfig/ui/possizetabpage.ui:40
+#: cui/uiconfig/ui/possizetabpage.ui:61
msgctxt "possizetabpage|FT_POS_X"
msgid "Position _X:"
msgstr "Posisi _X:"
-#: cui/uiconfig/ui/possizetabpage.ui:56
+#: cui/uiconfig/ui/possizetabpage.ui:75
msgctxt "possizetabpage|FT_POS_Y"
msgid "Position _Y:"
msgstr "Posisi _Y:"
-#: cui/uiconfig/ui/possizetabpage.ui:110
+#: cui/uiconfig/ui/possizetabpage.ui:128
msgctxt "possizetabpage|FT_POSREFERENCE"
msgid "_Base point:"
msgstr "Titik _basis:"
-#: cui/uiconfig/ui/possizetabpage.ui:148
+#: cui/uiconfig/ui/possizetabpage.ui:182
msgctxt "possizetabpage|label1"
msgid "Position"
msgstr "Posisi"
-#: cui/uiconfig/ui/possizetabpage.ui:190
+#: cui/uiconfig/ui/possizetabpage.ui:224
msgctxt "possizetabpage|FT_WIDTH"
msgid "Wi_dth:"
msgstr "_Lebar:"
-#: cui/uiconfig/ui/possizetabpage.ui:206
+#: cui/uiconfig/ui/possizetabpage.ui:238
msgctxt "possizetabpage|FT_HEIGHT"
msgid "H_eight:"
msgstr "_Tinggi:"
-#: cui/uiconfig/ui/possizetabpage.ui:247
+#: cui/uiconfig/ui/possizetabpage.ui:276
msgctxt "possizetabpage|CBX_SCALE"
msgid "_Keep ratio"
msgstr "_Jaga rasio"
-#: cui/uiconfig/ui/possizetabpage.ui:279
+#: cui/uiconfig/ui/possizetabpage.ui:307
msgctxt "possizetabpage|FT_SIZEREFERENCE"
msgid "Base _point:"
msgstr "_Titik basis:"
-#: cui/uiconfig/ui/possizetabpage.ui:317
+#: cui/uiconfig/ui/possizetabpage.ui:361
msgctxt "possizetabpage|label2"
msgid "Size"
msgstr "Ukuran"
-#: cui/uiconfig/ui/possizetabpage.ui:356
+#: cui/uiconfig/ui/possizetabpage.ui:401
msgctxt "possizetabpage|TSB_POSPROTECT"
msgid "Positio_n"
msgstr "_Posisi"
-#: cui/uiconfig/ui/possizetabpage.ui:373
+#: cui/uiconfig/ui/possizetabpage.ui:418
msgctxt "possizetabpage|TSB_SIZEPROTECT"
msgid "_Size"
msgstr "_Ukuran"
-#: cui/uiconfig/ui/possizetabpage.ui:397
+#: cui/uiconfig/ui/possizetabpage.ui:441
msgctxt "possizetabpage|label3"
msgid "Protect"
msgstr "Proteksi"
-#: cui/uiconfig/ui/possizetabpage.ui:430
+#: cui/uiconfig/ui/possizetabpage.ui:475
msgctxt "possizetabpage|TSB_AUTOGROW_WIDTH"
msgid "_Fit width to text"
msgstr "_Paskan lebar ke teks"
-#: cui/uiconfig/ui/possizetabpage.ui:447
+#: cui/uiconfig/ui/possizetabpage.ui:492
msgctxt "possizetabpage|TSB_AUTOGROW_HEIGHT"
msgid "Fit _height to text"
msgstr "Paskan tin_ggi ke teks"
-#: cui/uiconfig/ui/possizetabpage.ui:471
+#: cui/uiconfig/ui/possizetabpage.ui:515
msgctxt "possizetabpage|label4"
msgid "Adapt"
msgstr "Sesuaikan"
@@ -10162,47 +10162,47 @@ msgctxt "recordnumberdialog|label2"
msgid "go to record"
msgstr "ke rekaman"
-#: cui/uiconfig/ui/rotationtabpage.ui:52
+#: cui/uiconfig/ui/rotationtabpage.ui:56
msgctxt "rotationtabpage|FT_POS_X"
msgid "Position _X:"
msgstr "Posisi _X:"
-#: cui/uiconfig/ui/rotationtabpage.ui:66
+#: cui/uiconfig/ui/rotationtabpage.ui:70
msgctxt "rotationtabpage|FT_POS_Y"
msgid "Position _Y:"
msgstr "Posisi _Y:"
-#: cui/uiconfig/ui/rotationtabpage.ui:116
+#: cui/uiconfig/ui/rotationtabpage.ui:123
msgctxt "rotationtabpage|FT_POSPRESETS"
msgid "_Default settings:"
msgstr "_Pengaturan baku:"
-#: cui/uiconfig/ui/rotationtabpage.ui:130
+#: cui/uiconfig/ui/rotationtabpage.ui:151
msgctxt "rotationtabpage|CTL_RECT|tooltip_text"
msgid "Rotation point"
msgstr "Titik rotasi"
-#: cui/uiconfig/ui/rotationtabpage.ui:155
+#: cui/uiconfig/ui/rotationtabpage.ui:178
msgctxt "rotationtabpage|label1"
msgid "Pivot Point"
msgstr "Titik Pivot"
-#: cui/uiconfig/ui/rotationtabpage.ui:197
+#: cui/uiconfig/ui/rotationtabpage.ui:220
msgctxt "rotationtabpage|FT_ANGLE"
msgid "_Angle:"
msgstr "_Sudut:"
-#: cui/uiconfig/ui/rotationtabpage.ui:238
+#: cui/uiconfig/ui/rotationtabpage.ui:263
msgctxt "rotationtabpage|FT_ANGLEPRESETS"
msgid "Default _settings:"
msgstr "_Pengaturan baku:"
-#: cui/uiconfig/ui/rotationtabpage.ui:252
+#: cui/uiconfig/ui/rotationtabpage.ui:287
msgctxt "rotationtabpage|CTL_ANGLE|tooltip_text"
msgid "Rotation Angle"
msgstr "Sudut Rotasi"
-#: cui/uiconfig/ui/rotationtabpage.ui:277
+#: cui/uiconfig/ui/rotationtabpage.ui:314
msgctxt "rotationtabpage|label2"
msgid "Rotation Angle"
msgstr "Sudut Rotasi"
@@ -10582,52 +10582,52 @@ msgctxt "similaritysearchdialog|relaxbox"
msgid "_Combine"
msgstr "_Gabungkan"
-#: cui/uiconfig/ui/slantcornertabpage.ui:50
+#: cui/uiconfig/ui/slantcornertabpage.ui:70
msgctxt "slantcornertabpage|label5"
msgid "_X:"
msgstr "_X:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:88
+#: cui/uiconfig/ui/slantcornertabpage.ui:110
msgctxt "slantcornertabpage|label6"
msgid "_Y:"
msgstr "_Y:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:125
+#: cui/uiconfig/ui/slantcornertabpage.ui:149
msgctxt "slantcornertabpage|label3"
msgid "Control Point 1"
msgstr "Titik Kendali 1"
-#: cui/uiconfig/ui/slantcornertabpage.ui:159
+#: cui/uiconfig/ui/slantcornertabpage.ui:183
msgctxt "slantcornertabpage|FT_RADIUS"
msgid "_Radius:"
msgstr "Jeja_ri:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:189
+#: cui/uiconfig/ui/slantcornertabpage.ui:214
msgctxt "slantcornertabpage|label1"
msgid "Corner Radius"
msgstr "Radius Pojok"
-#: cui/uiconfig/ui/slantcornertabpage.ui:223
+#: cui/uiconfig/ui/slantcornertabpage.ui:248
msgctxt "slantcornertabpage|FT_ANGLE"
msgid "_Angle:"
msgstr "_Sudut:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:253
+#: cui/uiconfig/ui/slantcornertabpage.ui:279
msgctxt "slantcornertabpage|label2"
msgid "Slant"
msgstr "Slant"
-#: cui/uiconfig/ui/slantcornertabpage.ui:294
+#: cui/uiconfig/ui/slantcornertabpage.ui:320
msgctxt "slantcornertabpage|label4"
msgid "_X:"
msgstr "_X:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:332
+#: cui/uiconfig/ui/slantcornertabpage.ui:360
msgctxt "slantcornertabpage|label7"
msgid "_Y:"
msgstr "_Y:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:369
+#: cui/uiconfig/ui/slantcornertabpage.ui:399
msgctxt "slantcornertabpage|label8"
msgid "Control Point 2"
msgstr "Titik Kendali 2"
@@ -10907,112 +10907,112 @@ msgctxt "storedwebconnectiondialog|change"
msgid "_Change Password..."
msgstr "_Ubah Sandi..."
-#: cui/uiconfig/ui/swpossizepage.ui:74
+#: cui/uiconfig/ui/swpossizepage.ui:85
msgctxt "swpossizepage|widthft"
msgid "_Width:"
msgstr "_Lebar:"
-#: cui/uiconfig/ui/swpossizepage.ui:111
+#: cui/uiconfig/ui/swpossizepage.ui:123
msgctxt "swpossizepage|heightft"
msgid "H_eight:"
msgstr "_Tinggi:"
-#: cui/uiconfig/ui/swpossizepage.ui:128
+#: cui/uiconfig/ui/swpossizepage.ui:141
msgctxt "swpossizepage|ratio"
msgid "_Keep ratio"
msgstr "_Jaga rasio"
-#: cui/uiconfig/ui/swpossizepage.ui:149
+#: cui/uiconfig/ui/swpossizepage.ui:162
msgctxt "swpossizepage|label2"
msgid "Size"
msgstr "Ukuran"
-#: cui/uiconfig/ui/swpossizepage.ui:205
+#: cui/uiconfig/ui/swpossizepage.ui:218
msgctxt "swpossizepage|topage"
msgid "To _page"
msgstr "Ke _halaman"
-#: cui/uiconfig/ui/swpossizepage.ui:222
+#: cui/uiconfig/ui/swpossizepage.ui:234
msgctxt "swpossizepage|topara"
msgid "To paragrap_h"
msgstr "Ke para_graf"
-#: cui/uiconfig/ui/swpossizepage.ui:238
+#: cui/uiconfig/ui/swpossizepage.ui:250
msgctxt "swpossizepage|tochar"
msgid "To cha_racter"
msgstr "Ke ka_rakter"
-#: cui/uiconfig/ui/swpossizepage.ui:254
+#: cui/uiconfig/ui/swpossizepage.ui:266
msgctxt "swpossizepage|aschar"
msgid "_As character"
msgstr "Seb_agai karakter"
-#: cui/uiconfig/ui/swpossizepage.ui:270
+#: cui/uiconfig/ui/swpossizepage.ui:282
msgctxt "swpossizepage|toframe"
msgid "To _frame"
msgstr "Ke _bingkai"
-#: cui/uiconfig/ui/swpossizepage.ui:292
+#: cui/uiconfig/ui/swpossizepage.ui:304
msgctxt "swpossizepage|label1"
msgid "Anchor"
msgstr "Jangkar"
-#: cui/uiconfig/ui/swpossizepage.ui:333
+#: cui/uiconfig/ui/swpossizepage.ui:344
msgctxt "swpossizepage|horiposft"
msgid "Hori_zontal:"
msgstr "Hori_sontal:"
-#: cui/uiconfig/ui/swpossizepage.ui:347
+#: cui/uiconfig/ui/swpossizepage.ui:358
msgctxt "swpossizepage|horibyft"
msgid "b_y:"
msgstr "seban_yak:"
-#: cui/uiconfig/ui/swpossizepage.ui:361
+#: cui/uiconfig/ui/swpossizepage.ui:372
msgctxt "swpossizepage|vertbyft"
msgid "_by:"
msgstr "se_banyak:"
-#: cui/uiconfig/ui/swpossizepage.ui:375
+#: cui/uiconfig/ui/swpossizepage.ui:386
msgctxt "swpossizepage|horitoft"
msgid "_to:"
msgstr "_sampai:"
-#: cui/uiconfig/ui/swpossizepage.ui:421
+#: cui/uiconfig/ui/swpossizepage.ui:433
msgctxt "swpossizepage|vertposft"
msgid "_Vertical:"
msgstr "_Vertikal:"
-#: cui/uiconfig/ui/swpossizepage.ui:457
+#: cui/uiconfig/ui/swpossizepage.ui:470
msgctxt "swpossizepage|verttoft"
msgid "t_o:"
msgstr "s_ampai:"
-#: cui/uiconfig/ui/swpossizepage.ui:478
+#: cui/uiconfig/ui/swpossizepage.ui:492
msgctxt "swpossizepage|mirror"
msgid "_Mirror on even pages"
msgstr "Cer_minkan pada halaman genap"
-#: cui/uiconfig/ui/swpossizepage.ui:495
+#: cui/uiconfig/ui/swpossizepage.ui:509
msgctxt "swpossizepage|followtextflow"
msgid "Follow te_xt flow"
msgstr "Ikuti aliran te_ks"
-#: cui/uiconfig/ui/swpossizepage.ui:518
+#: cui/uiconfig/ui/swpossizepage.ui:532
msgctxt "swpossizepage|label11"
msgid "Position"
msgstr "Posisi"
-#: cui/uiconfig/ui/swpossizepage.ui:549
+#: cui/uiconfig/ui/swpossizepage.ui:563
msgctxt "swpossizepage|pos"
msgid "Positio_n"
msgstr "_Posisi"
-#: cui/uiconfig/ui/swpossizepage.ui:565
+#: cui/uiconfig/ui/swpossizepage.ui:579
msgctxt "swpossizepage|size"
msgid "_Size"
msgstr "_Ukuran"
-#: cui/uiconfig/ui/swpossizepage.ui:587
+#: cui/uiconfig/ui/swpossizepage.ui:601
msgctxt "swpossizepage|label3"
msgid "Protect"
msgstr "Lindungi"
@@ -11202,12 +11202,12 @@ msgctxt "textattrtabpage|label2"
msgid "Spacing to Borders"
msgstr "Spasi ke Tepi"
-#: cui/uiconfig/ui/textattrtabpage.ui:425
+#: cui/uiconfig/ui/textattrtabpage.ui:423
msgctxt "textattrtabpage|TSB_FULL_WIDTH"
msgid "Full _width"
msgstr "_Lebar penuh"
-#: cui/uiconfig/ui/textattrtabpage.ui:448
+#: cui/uiconfig/ui/textattrtabpage.ui:446
msgctxt "textattrtabpage|label3"
msgid "Text Anchor"
msgstr "Jangkar Teks"
diff --git a/source/id/filter/source/config/fragments/filters.po b/source/id/filter/source/config/fragments/filters.po
index 918b7d985ee..7f36fc1aff5 100644
--- a/source/id/filter/source/config/fragments/filters.po
+++ b/source/id/filter/source/config/fragments/filters.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-16 16:54+0200\n"
-"PO-Revision-Date: 2018-03-08 15:46+0000\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
+"PO-Revision-Date: 2018-06-02 11:45+0000\n"
"Last-Translator: Andika Triwidada <andika@gmail.com>\n"
"Language-Team: Indonesian <>\n"
"Language: id\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1520524016.000000\n"
+"X-POOTLE-MTIME: 1527939946.000000\n"
#: ADO_rowset_XML.xcu
msgctxt ""
@@ -41,7 +41,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Apple Keynote"
-msgstr ""
+msgstr "Apple Keynote"
#: AppleNumbers.xcu
msgctxt ""
@@ -50,7 +50,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Apple Numbers"
-msgstr ""
+msgstr "Apple Numbers"
#: ApplePages.xcu
msgctxt ""
@@ -59,7 +59,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Apple Pages"
-msgstr ""
+msgstr "Apple Pages"
#: BMP___MS_Windows.xcu
msgctxt ""
@@ -392,7 +392,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Excel 97–2003"
-msgstr ""
+msgstr "Excel 97–2003"
#: MS_Excel_97_Vorlage_Template.xcu
msgctxt ""
@@ -401,7 +401,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Excel 97–2003 Template"
-msgstr ""
+msgstr "Templat Excel 97–2003"
#: MS_Multiplan.xcu
msgctxt ""
@@ -410,7 +410,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Microsoft Multiplan"
-msgstr ""
+msgstr "Microsoft Multiplan"
#: MS_PowerPoint_97.xcu
msgctxt ""
@@ -419,7 +419,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "PowerPoint 97–2003"
-msgstr ""
+msgstr "PowerPoint 97–2003"
#: MS_PowerPoint_97_AutoPlay.xcu
msgctxt ""
@@ -428,7 +428,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "PowerPoint 97–2003 AutoPlay"
-msgstr ""
+msgstr "PowerPoint 97–2003 AutoPlay"
#: MS_PowerPoint_97_Vorlage.xcu
msgctxt ""
@@ -437,7 +437,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "PowerPoint 97–2003 Template"
-msgstr ""
+msgstr "Templat PowerPoint 97–2003"
#: MS_WinWord_5.xcu
msgctxt ""
@@ -463,8 +463,8 @@ msgctxt ""
"MS Word 2003 XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Word 2003 XML"
-msgstr "XML Microsoft Word 2003"
+msgid "Word 2003 XML"
+msgstr ""
#: MS_Word_2007_XML.xcu
msgctxt ""
@@ -473,7 +473,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Word 2007–2019"
-msgstr ""
+msgstr "Word 2007–2019"
#: MS_Word_2007_XML_Template.xcu
msgctxt ""
@@ -482,7 +482,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Word 2007–2019 Template"
-msgstr ""
+msgstr "Templat Word 2007–2019"
#: MS_Word_2007_XML_VBA.xcu
msgctxt ""
@@ -491,7 +491,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Word 2007–2019 VBA"
-msgstr ""
+msgstr "VBA Word 2007–2019"
#: MS_Word_95.xcu
msgctxt ""
@@ -518,7 +518,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Word 97–2003"
-msgstr ""
+msgstr "Word 97–2003"
#: MS_Word_97_Vorlage.xcu
msgctxt ""
@@ -527,7 +527,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Word 97–2003 Template"
-msgstr ""
+msgstr "Templat Word 97–2003"
#: MS_Works.xcu
msgctxt ""
@@ -1282,8 +1282,8 @@ msgctxt ""
"Calc MS Excel 2007 VBA XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Excel 2007-2016 XML (macro enabled)"
-msgstr "Microsoft Excel 2007-2016 XML (makro difungsikan)"
+msgid "Excel 2007–2019 (macro-enabled)"
+msgstr ""
#: calc_MS_Excel_2007_XML.xcu
msgctxt ""
@@ -1292,7 +1292,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Excel 2007–2019"
-msgstr ""
+msgstr "Excel 2007–2019"
#: calc_MS_Excel_2007_XML_Template.xcu
msgctxt ""
@@ -1301,7 +1301,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Excel 2007–2019 Template"
-msgstr ""
+msgstr "Templat Excel 2007–2019"
#: calc_OOXML.xcu
msgctxt ""
@@ -1571,7 +1571,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "PowerPoint 2007–2019"
-msgstr ""
+msgstr "PowerPoint 2007–2019"
#: impress_MS_PowerPoint_2007_XML_AutoPlay.xcu
msgctxt ""
@@ -1580,7 +1580,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "PowerPoint 2007–2019 AutoPlay"
-msgstr ""
+msgstr "PowerPoint 2007–2019 AutoPlay"
#: impress_MS_PowerPoint_2007_XML_Template.xcu
msgctxt ""
@@ -1589,7 +1589,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "PowerPoint 2007–2019 Template"
-msgstr ""
+msgstr "Templat PowerPoint 2007–2019"
#: impress_MS_PowerPoint_2007_XML_VBA.xcu
msgctxt ""
@@ -1598,7 +1598,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "PowerPoint 2007–2019 VBA"
-msgstr ""
+msgstr "VBA PowerPoint 2007–2019"
#: impress_OOXML.xcu
msgctxt ""
diff --git a/source/id/filter/source/config/fragments/types.po b/source/id/filter/source/config/fragments/types.po
index 0d0ca2e5955..7d8ea7e3d27 100644
--- a/source/id/filter/source/config/fragments/types.po
+++ b/source/id/filter/source/config/fragments/types.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-08 15:11+0200\n"
-"PO-Revision-Date: 2017-10-27 10:24+0000\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
+"PO-Revision-Date: 2018-06-02 11:46+0000\n"
"Last-Translator: Andika Triwidada <andika@gmail.com>\n"
"Language-Team: Indonesian <>\n"
"Language: id\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1509099854.000000\n"
+"X-POOTLE-MTIME: 1527939981.000000\n"
#: MS_Excel_2007_Binary.xcu
msgctxt ""
@@ -41,7 +41,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Excel 2007–2019"
-msgstr ""
+msgstr "Excel 2007–2019"
#: MS_Excel_2007_XML_Template.xcu
msgctxt ""
@@ -50,7 +50,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Excel 2007–2019 Template"
-msgstr ""
+msgstr "Templat Excel 2007–2019"
#: MS_PowerPoint_2007_XML.xcu
msgctxt ""
@@ -59,7 +59,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "PowerPoint 2007–2019"
-msgstr ""
+msgstr "PowerPoint 2007–2019"
#: MS_PowerPoint_2007_XML_AutoPlay.xcu
msgctxt ""
@@ -68,7 +68,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "PowerPoint 2007–2019"
-msgstr ""
+msgstr "PowerPoint 2007–2019"
#: MS_PowerPoint_2007_XML_Template.xcu
msgctxt ""
@@ -77,7 +77,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "PowerPoint 2007–2019 Template"
-msgstr ""
+msgstr "Templat PowerPoint 2007–2019"
#: MS_PowerPoint_2007_XML_VBA.xcu
msgctxt ""
@@ -86,7 +86,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "PowerPoint 2007–2019 VBA"
-msgstr ""
+msgstr "VBA PowerPoint 2007–2019"
#: StarBase.xcu
msgctxt ""
@@ -292,8 +292,8 @@ msgctxt ""
"writer_MS_Word_2003_XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Word 2003 XML"
-msgstr "Microsoft Word 2003 XML"
+msgid "Word 2003 XML"
+msgstr ""
#: writer_MS_Word_2007_XML.xcu
msgctxt ""
@@ -302,7 +302,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Word 2007–2019"
-msgstr ""
+msgstr "Word 2007–2019"
#: writer_MS_Word_2007_XML_Template.xcu
msgctxt ""
@@ -311,7 +311,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Word 2007–2019 Template"
-msgstr ""
+msgstr "Templat Word 2007–2019"
#: writer_MS_Word_2007_XML_VBA.xcu
msgctxt ""
@@ -320,7 +320,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Word 2007–2019 VBA"
-msgstr ""
+msgstr "VBA Word 2007–2019"
#: writer_ODT_FlatXML.xcu
msgctxt ""
diff --git a/source/id/fpicker/messages.po b/source/id/fpicker/messages.po
index 20315b68bc6..6bfde557a11 100644
--- a/source/id/fpicker/messages.po
+++ b/source/id/fpicker/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2018-03-08 15:46+0000\n"
"Last-Translator: Andika Triwidada <andika@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -272,13 +272,13 @@ msgstr "Enkripsikan dengan kunci GPG"
#: fpicker/uiconfig/ui/foldernamedialog.ui:8
msgctxt "foldernamedialog|FolderNameDialog"
-msgid "Folder Name ?"
-msgstr "Nama Folder?"
+msgid "Folder Name"
+msgstr ""
#: fpicker/uiconfig/ui/foldernamedialog.ui:91
msgctxt "foldernamedialog|label2"
-msgid "Na_me"
-msgstr "Na_ma"
+msgid "Na_me:"
+msgstr ""
#: fpicker/uiconfig/ui/foldernamedialog.ui:122
msgctxt "foldernamedialog|label1"
diff --git a/source/id/helpcontent2/source/text/shared/00.po b/source/id/helpcontent2/source/text/shared/00.po
index c09ed69e26d..8537bab3cba 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2016-07-14 15:01+0000\n"
"Last-Translator: Andika Triwidada <andika@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -397,15 +397,15 @@ msgctxt ""
"00000001.xhp\n"
"hd_id3149670\n"
"help.text"
-msgid "Back"
-msgstr "Balik"
+msgid "Reset"
+msgstr ""
#: 00000001.xhp
msgctxt ""
"00000001.xhp\n"
"par_id3145068\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optionsdialog/revert\">Resets modified values back to the $[officename] default values.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optionsdialog/revert\">Resets changes made to the current tab to those applicable when this dialog was opened.</ahelp>"
msgstr ""
#: 00000001.xhp
@@ -552,6 +552,54 @@ msgctxt ""
msgid "<variable id=\"ShiftF1\">Press Shift+F1 and point to a control to learn more about that control.</variable>"
msgstr ""
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"hd_id631527692833772\n"
+"help.text"
+msgid "Options dialog buttons"
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"hd_id831527692839432\n"
+"help.text"
+msgid "OK"
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"par_id471527692844934\n"
+"help.text"
+msgid "Save the changes in the page and close the Options dialog."
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"hd_id261527692850720\n"
+"help.text"
+msgid "Cancel"
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"par_id571527692855533\n"
+"help.text"
+msgid "Close the Options dialog and discard all changes done."
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"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 Options dialog."
+msgstr ""
+
#: 00000002.xhp
msgctxt ""
"00000002.xhp\n"
@@ -11125,7 +11173,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3151293\n"
"help.text"
-msgid "<variable id=\"linienstile\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Line Styles</emph> tab </variable>"
+msgid "<variable id=\"linienstile\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Line Styles</emph> tab</variable>"
msgstr ""
#: 00040502.xhp
@@ -11133,7 +11181,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3149317\n"
"help.text"
-msgid "<variable id=\"linienenden\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Arrow Styles</emph> tab </variable>"
+msgid "<variable id=\"linienenden\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Arrow Styles</emph> tab</variable>"
msgstr ""
#: 00040502.xhp
@@ -11173,7 +11221,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3154948\n"
"help.text"
-msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Area</emph> tab"
+msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Area</emph> tab."
msgstr ""
#: 00040502.xhp
@@ -11181,7 +11229,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3145607\n"
"help.text"
-msgid "Choose <emph>View - Styles</emph> - open context menu and choose <emph>Modify/New - Area</emph> tab (presentation documents)"
+msgid "Choose <emph>View - Styles</emph> - open context menu and choose <emph>Modify/New - Area</emph> tab (presentation documents)."
msgstr ""
#: 00040502.xhp
@@ -11189,47 +11237,47 @@ msgctxt ""
"00040502.xhp\n"
"par_id3152922\n"
"help.text"
-msgid "Choose <emph>Format - Title - Area</emph> tab (chart documents)"
-msgstr "Pilih tab <emph>Format - Sumbu - Sumbu Y - Angka</emph> (Dokumen Bagan)"
+msgid "Choose <emph>Format - Title - Area</emph> tab (chart documents)."
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3157894\n"
"help.text"
-msgid "Choose <emph>Format - Legend - Area</emph> tab (chart documents)"
-msgstr "Pilih tab <emph>Format - Sumbu - Sumbu Y - Angka</emph> (Dokumen Bagan)"
+msgid "Choose <emph>Format - Legend - Area</emph> tab (chart documents)."
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3144444\n"
"help.text"
-msgid "Choose <emph>Format - Chart Wall - Area</emph> tab (chart documents)"
-msgstr "Pilih tab <emph>Format - Sumbu - Sumbu Y - Angka</emph> (Dokumen Bagan)"
+msgid "Choose <emph>Format - Chart Wall - Area</emph> tab (chart documents)."
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3156543\n"
"help.text"
-msgid "Choose <emph>Format - Chart Floor - Area</emph> tab (chart documents)"
-msgstr "Pilih tab <emph>Format - Sumbu - Sumbu Y - Angka</emph> (Dokumen Bagan)"
+msgid "Choose <emph>Format - Chart Floor - Area</emph> tab (chart documents)."
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3150685\n"
"help.text"
-msgid "Choose <emph>Format - Chart Area - Area</emph> tab (chart documents)"
-msgstr "Pilih tab <emph>Format - Sumbu - Sumbu Y - Angka</emph> (Dokumen Bagan)"
+msgid "Choose <emph>Format - Chart Area - Area</emph> tab (chart documents)."
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3149664\n"
"help.text"
-msgid "Choose <emph>Slide - Properties - Background</emph> tab (in $[officename] Impress)"
+msgid "Choose <emph>Slide - Properties - Background</emph> tab (in $[officename] Impress)."
msgstr ""
#: 00040502.xhp
@@ -11237,7 +11285,15 @@ msgctxt ""
"00040502.xhp\n"
"par_id9149694\n"
"help.text"
-msgid "Choose <emph>Page - Properties - Background</emph> tab (in $[officename] Draw)"
+msgid "Choose <emph>Page - Properties - Background</emph> tab (in $[officename] Draw)."
+msgstr ""
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id841527083135387\n"
+"help.text"
+msgid "Choose <emph>Table - Properties - Background</emph> tab."
msgstr ""
#: 00040502.xhp
@@ -11349,7 +11405,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3150011\n"
"help.text"
-msgid "<variable id=\"schatte\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Shadow</emph> tab </variable>"
+msgid "<variable id=\"schatte\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Shadow</emph> tab</variable>"
msgstr ""
#: 00040502.xhp
@@ -11357,7 +11413,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3147441\n"
"help.text"
-msgid "<variable id=\"verlauf\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Gradients</emph> tab </variable>"
+msgid "<variable id=\"verlauf\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Gradients</emph> tab</variable>"
msgstr ""
#: 00040502.xhp
@@ -11365,7 +11421,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3155308\n"
"help.text"
-msgid "<variable id=\"schraffur\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Hatching</emph> tab </variable>"
+msgid "<variable id=\"schraffur\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Hatching</emph> tab</variable>"
msgstr ""
#: 00040502.xhp
@@ -11373,7 +11429,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3145800\n"
"help.text"
-msgid "<variable id=\"bitmap\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Bitmaps</emph> tab </variable>"
+msgid "<variable id=\"bitmap\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Bitmaps</emph> tab</variable>"
msgstr ""
#: 00040502.xhp
@@ -11413,7 +11469,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3156286\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F4 key </caseinline><caseinline select=\"IMPRESS\">F4 key </caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F4 key</caseinline><caseinline select=\"IMPRESS\">F4 key</caseinline></switchinline>"
msgstr ""
#: 00040502.xhp
@@ -11453,7 +11509,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3153099\n"
"help.text"
-msgid "<variable id=\"position2\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Position and Size</emph> tab </variable>"
+msgid "<variable id=\"position2\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Position and Size</emph> tab</variable>"
msgstr ""
#: 00040502.xhp
@@ -11485,7 +11541,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3145666\n"
"help.text"
-msgid "<variable id=\"ecke\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Slant & Corner Radius</emph> tab </variable>"
+msgid "<variable id=\"ecke\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Slant & Corner Radius</emph> tab</variable>"
msgstr ""
#: 00040502.xhp
@@ -11493,7 +11549,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3146081\n"
"help.text"
-msgid "<variable id=\"legende\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Callout</emph> tab (only for textbox callouts, not for custom shapes callouts) </variable>"
+msgid "<variable id=\"legende\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Callout</emph> tab (only for textbox callouts, not for custom shapes callouts)</variable>"
msgstr ""
#: 00040502.xhp
@@ -11517,7 +11573,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3149019\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F8 key </caseinline><caseinline select=\"IMPRESS\">F8 key </caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F8 key</caseinline><caseinline select=\"IMPRESS\">F8 key</caseinline></switchinline>"
msgstr ""
#: 00040502.xhp
@@ -11805,7 +11861,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3153076\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Align Center Horizontally </caseinline><defaultinline>Centered</defaultinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Align Center Horizontally</caseinline><defaultinline>Centered</defaultinline></switchinline>"
msgstr ""
#: 00040502.xhp
@@ -11845,7 +11901,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3150527\n"
"help.text"
-msgid "<variable id=\"font\">Click <emph>Fontwork</emph> icon on <emph>Drawing</emph> bar </variable>"
+msgid "<variable id=\"font\">Click <emph>Fontwork</emph> icon on <emph>Drawing</emph> bar</variable>"
msgstr ""
#: 00040502.xhp
diff --git a/source/id/helpcontent2/source/text/shared/01.po b/source/id/helpcontent2/source/text/shared/01.po
index 8a523c59225..5f8775261a4 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: 2018-05-23 23:19+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2017-08-30 09:47+0000\n"
"Last-Translator: Andika Triwidada <andika@gmail.com>\n"
"Language-Team: Indonesian <id@li.org>\n"
@@ -23587,6 +23587,22 @@ msgstr ""
#: 05210100.xhp
msgctxt ""
"05210100.xhp\n"
+"hd_id471527077476052\n"
+"help.text"
+msgid "Cell, Row or Table background selector"
+msgstr ""
+
+#: 05210100.xhp
+msgctxt ""
+"05210100.xhp\n"
+"par_id661527077493366\n"
+"help.text"
+msgid "Select the table object which background area is to be filled."
+msgstr ""
+
+#: 05210100.xhp
+msgctxt ""
+"05210100.xhp\n"
"hd_id3147373\n"
"help.text"
msgid "None"
@@ -31205,15 +31221,15 @@ msgctxt ""
"06040100.xhp\n"
"hd_id3145072\n"
"help.text"
-msgid "Automatic *bold* and _underline_"
-msgstr "Otomatis *tebal* dan _garis_bawah_"
+msgid "Automatic *bold*, /italic/, -strikeout- and _underline_"
+msgstr ""
#: 06040100.xhp
msgctxt ""
"06040100.xhp\n"
"par_id3153577\n"
"help.text"
-msgid "Automatically applies bold formatting to text enclosed by asterisks (*), and underline to text enclosed by underscores ( _ ), for example, *bold*. The asterisks and underscores are not displayed after the formatting is applied."
+msgid "Automatically applies bold, italic, strikethrough or underline formatting to text enclosed by asterisks (*), slashes (/), hyphens (-), and underscores (_), respectively. These characters disappear after the formatting is applied."
msgstr ""
#: 06040100.xhp
@@ -31221,7 +31237,7 @@ msgctxt ""
"06040100.xhp\n"
"par_id3153127\n"
"help.text"
-msgid "This feature does not work if the formatting characters * or _ are entered with an <link href=\"text/shared/00/00000005.xhp#IME\" name=\"Input Method Editor\">Input Method Editor</link>."
+msgid "This feature does not work if the formatting characters <item type=\"literal\">* / - _</item> are entered with an <link href=\"text/shared/00/00000005.xhp#IME\" name=\"Input Method Editor\">Input Method Editor</link>."
msgstr ""
#: 06040100.xhp
diff --git a/source/id/helpcontent2/source/text/shared/optionen.po b/source/id/helpcontent2/source/text/shared/optionen.po
index 850040eaf03..a631ee34daa 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: 2018-05-08 15:10+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2016-09-03 02:45+0000\n"
"Last-Translator: Andika Triwidada <andika@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -83,6 +83,22 @@ msgstr ""
#: 01000000.xhp
msgctxt ""
"01000000.xhp\n"
+"hd_id551527692881035\n"
+"help.text"
+msgid "Help"
+msgstr ""
+
+#: 01000000.xhp
+msgctxt ""
+"01000000.xhp\n"
+"par_id831527692885723\n"
+"help.text"
+msgid "Opens the help contents for the Options page displayed."
+msgstr ""
+
+#: 01000000.xhp
+msgctxt ""
+"01000000.xhp\n"
"hd_id3159149\n"
"help.text"
msgid "<link href=\"text/shared/optionen/01010000.xhp\" name=\"$[officename]\">%PRODUCTNAME</link>"
@@ -4565,8 +4581,8 @@ msgctxt ""
"01030300.xhp\n"
"par_idN10640\n"
"help.text"
-msgid "Options"
-msgstr "Pilihan"
+msgid "Security Options and Warnings"
+msgstr ""
#: 01030300.xhp
msgctxt ""
@@ -4597,7 +4613,7 @@ msgctxt ""
"01030300.xhp\n"
"hd_id3168736\n"
"help.text"
-msgid "Persistently save passwords protected by a master password"
+msgid "Persistently save passwords for web connections"
msgstr ""
#: 01030300.xhp
@@ -4613,6 +4629,22 @@ msgctxt ""
"01030300.xhp\n"
"hd_id3901791\n"
"help.text"
+msgid "Protected by a master password (recommended)"
+msgstr ""
+
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"par_id31527711486980\n"
+"help.text"
+msgid "Check to enable all connections' passwords to be protected by a master password."
+msgstr ""
+
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"hd_id141527711343312\n"
+"help.text"
msgid "Master Password"
msgstr ""
@@ -13733,7 +13765,7 @@ msgctxt ""
"java.xhp\n"
"hd_id3148618\n"
"help.text"
-msgid "Optional (unstable) options"
+msgid "Optional Features"
msgstr ""
#: java.xhp
@@ -13749,7 +13781,7 @@ msgctxt ""
"java.xhp\n"
"par_id3156344\n"
"help.text"
-msgid "It enables features that are not yet complete or contain known bugs. The list of these features is different version by version, or even it can be empty."
+msgid "Enables features that are not yet complete or may contain known bugs. The list of these features is different version by version, or even it can be empty."
msgstr ""
#: java.xhp
@@ -13765,7 +13797,7 @@ msgctxt ""
"java.xhp\n"
"par_id3156345\n"
"help.text"
-msgid "It enables macro recording, so the <link href=\"text/shared/guide/macro_recording.xhp\" name=\"Tools - Macros - Record Macro\"><item type=\"menuitem\">Tools - Macros - Record Macro</item></link> menu item will be available."
+msgid "Enables macro recording. The <link href=\"text/shared/guide/macro_recording.xhp\" name=\"Tools - Macros - Record Macro\"><item type=\"menuitem\">Tools - Macros - Record Macro</item></link> menu item is available."
msgstr ""
#: java.xhp
diff --git a/source/id/officecfg/registry/data/org/openoffice/Office/UI.po b/source/id/officecfg/registry/data/org/openoffice/Office/UI.po
index 9f6f2e7ea26..c92a9731ca6 100644
--- a/source/id/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/id/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-22 13:17+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2018-04-06 12:01+0000\n"
"Last-Translator: imron.rosyadi <imron.rosyadi@unida.gontor.ac.id>\n"
"Language-Team: Indonesian <>\n"
@@ -26543,8 +26543,8 @@ msgctxt ""
"..WriterCommands.UserInterface.Commands..uno:TextAttributes\n"
"Label\n"
"value.text"
-msgid "Text Attributes"
-msgstr "Atribut Teks"
+msgid "Text Attributes..."
+msgstr ""
#: WriterCommands.xcu
msgctxt ""
diff --git a/source/id/readlicense_oo/docs.po b/source/id/readlicense_oo/docs.po
index 6f3e4489afb..95d5ed7c0ea 100644
--- a/source/id/readlicense_oo/docs.po
+++ b/source/id/readlicense_oo/docs.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: 2018-04-17 15:54+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2017-10-27 10:21+0000\n"
"Last-Translator: Andika Triwidada <andika@gmail.com>\n"
"Language-Team: Indonesian <>\n"
@@ -117,8 +117,8 @@ msgctxt ""
"readme.xrm\n"
"macxiOSX\n"
"readmeitem.text"
-msgid "MacOSX 10.8 (Mountain Lion) or higher"
-msgstr "MacOSX 10.8 (Mountain Lion) atau lebih tinggi"
+msgid "MacOSX 10.9 (Mavericks) or higher"
+msgstr ""
#: readme.xrm
msgctxt ""
diff --git a/source/id/sc/messages.po b/source/id/sc/messages.po
index 5ae0a1f2ef6..7634c93a819 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-12 14:40+0200\n"
"PO-Revision-Date: 2018-04-06 12:11+0000\n"
"Last-Translator: Harry Suryapambagya <harsxv@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1871,16 +1871,21 @@ msgid "Nested arrays are not supported."
msgstr "Larik bersarang tidak didukung."
#: sc/inc/globstr.hrc:390
+msgctxt "STR_ERR_LONG_BAD_ARRAY_CONTENT"
+msgid "Unsupported inline array content."
+msgstr ""
+
+#: sc/inc/globstr.hrc:391
msgctxt "STR_UNDO_TEXTTOCOLUMNS"
msgid "Text to Columns"
msgstr "Teks ke Kolom"
-#: sc/inc/globstr.hrc:391
+#: sc/inc/globstr.hrc:392
msgctxt "STR_DOC_UPDATED"
msgid "Your spreadsheet has been updated with changes saved by other users."
msgstr "Lembar kerja Anda telah diperbaharui dengan perubahan yang disimpan oleh pengguna lain."
-#: sc/inc/globstr.hrc:392
+#: sc/inc/globstr.hrc:393
msgctxt "STR_DOC_WILLBESAVED"
msgid ""
"The spreadsheet must be saved now to activate sharing mode.\n"
@@ -1891,7 +1896,7 @@ msgstr ""
"\n"
"Lanjut?"
-#: sc/inc/globstr.hrc:393
+#: sc/inc/globstr.hrc:394
msgctxt "STR_DOC_WILLNOTBESAVED"
msgid ""
"Already resolved merge conflicts will be lost and your changes to the shared spreadsheet will not be saved.\n"
@@ -1902,7 +1907,7 @@ msgstr ""
"\n"
"Apakah Anda hendak melanjutkan?"
-#: sc/inc/globstr.hrc:394
+#: sc/inc/globstr.hrc:395
msgctxt "STR_DOC_DISABLESHARED"
msgid ""
"Disabling shared mode of a spreadsheet hinders all other users of the shared spreadsheet to merge back their work.\n"
@@ -1913,7 +1918,7 @@ msgstr ""
"\n"
"Apakah Anda hendak melanjutkan?"
-#: sc/inc/globstr.hrc:395
+#: sc/inc/globstr.hrc:396
msgctxt "STR_DOC_NOLONGERSHARED"
msgid ""
"This spreadsheet is no longer in shared mode.\n"
@@ -1924,7 +1929,7 @@ msgstr ""
"\n"
"Simpan spreadsheet Anda pada berkas yang terpisah dan gabungkan perubahan Anda dengan spreadsheet yang dipakai bersama secara manual."
-#: sc/inc/globstr.hrc:396
+#: sc/inc/globstr.hrc:397
msgctxt "STR_FILE_LOCKED_TRY_LATER"
msgid ""
"The shared spreadsheet file is locked due to a merge in progress by user: '%1'\n"
@@ -1935,7 +1940,7 @@ msgstr ""
"\n"
"Modus berbagi dari berkas yang dikunci tak dapat dinonaktifkan. Silahkan coba lagi nanti."
-#: sc/inc/globstr.hrc:397
+#: sc/inc/globstr.hrc:398
msgctxt "STR_FILE_LOCKED_SAVE_LATER"
msgid ""
"The shared spreadsheet file is locked due to a merge in progress by user: '%1'\n"
@@ -1946,147 +1951,147 @@ msgstr ""
"\n"
"Coba kembali nanti untuk menyimpan perubahan Anda."
-#: sc/inc/globstr.hrc:398
+#: sc/inc/globstr.hrc:399
msgctxt "STR_UNKNOWN_USER"
msgid "Unknown User"
msgstr "Pengguna Tak Dikenal"
-#: sc/inc/globstr.hrc:399
+#: sc/inc/globstr.hrc:400
msgctxt "STR_SHAPE_AUTOSHAPE"
msgid "AutoShape"
msgstr "AutoShape"
-#: sc/inc/globstr.hrc:400
+#: sc/inc/globstr.hrc:401
msgctxt "STR_SHAPE_RECTANGLE"
msgid "Rectangle"
msgstr "Persegi Panjang"
-#: sc/inc/globstr.hrc:401
+#: sc/inc/globstr.hrc:402
msgctxt "STR_SHAPE_LINE"
msgid "Line"
msgstr "Garis"
-#: sc/inc/globstr.hrc:402
+#: sc/inc/globstr.hrc:403
msgctxt "STR_SHAPE_OVAL"
msgid "Oval"
msgstr "Oval"
-#: sc/inc/globstr.hrc:403
+#: sc/inc/globstr.hrc:404
msgctxt "STR_FORM_BUTTON"
msgid "Button"
msgstr "Tombol"
-#: sc/inc/globstr.hrc:404
+#: sc/inc/globstr.hrc:405
msgctxt "STR_FORM_CHECKBOX"
msgid "Check Box"
msgstr "Kotak Cek"
-#: sc/inc/globstr.hrc:405
+#: sc/inc/globstr.hrc:406
msgctxt "STR_FORM_OPTIONBUTTON"
msgid "Option Button"
msgstr "Tombol Opsi"
-#: sc/inc/globstr.hrc:406
+#: sc/inc/globstr.hrc:407
msgctxt "STR_FORM_LABEL"
msgid "Label"
msgstr "Label"
-#: sc/inc/globstr.hrc:407
+#: sc/inc/globstr.hrc:408
msgctxt "STR_FORM_LISTBOX"
msgid "List Box"
msgstr "Kotak Senarai"
-#: sc/inc/globstr.hrc:408
+#: sc/inc/globstr.hrc:409
msgctxt "STR_FORM_GROUPBOX"
msgid "Group Box"
msgstr "Kotak Kelompok"
-#: sc/inc/globstr.hrc:409
+#: sc/inc/globstr.hrc:410
msgctxt "STR_FORM_DROPDOWN"
msgid "Drop Down"
msgstr "Luruh"
-#: sc/inc/globstr.hrc:410
+#: sc/inc/globstr.hrc:411
msgctxt "STR_FORM_SPINNER"
msgid "Spinner"
msgstr "Pemintal"
-#: sc/inc/globstr.hrc:411
+#: sc/inc/globstr.hrc:412
msgctxt "STR_FORM_SCROLLBAR"
msgid "Scroll Bar"
msgstr "Batang Penggulung"
-#: sc/inc/globstr.hrc:412
+#: sc/inc/globstr.hrc:413
msgctxt "STR_STYLE_FAMILY_CELL"
msgid "Cell Styles"
msgstr "Gaya Sel"
-#: sc/inc/globstr.hrc:413
+#: sc/inc/globstr.hrc:414
msgctxt "STR_STYLE_FAMILY_PAGE"
msgid "Page Styles"
msgstr "Gaya Halaman"
-#: sc/inc/globstr.hrc:414
+#: sc/inc/globstr.hrc:415
msgctxt "STR_ERR_DATAPILOTSOURCE"
msgid "Pivot table source data is invalid."
msgstr "Data sumber tabel pivot tidak valid."
-#: sc/inc/globstr.hrc:415
+#: sc/inc/globstr.hrc:416
msgctxt "STR_OPTIONS_WARN_SEPARATORS"
msgid "Because the current formula separator settings conflict with the locale, the formula separators have been reset to their default values."
msgstr "Karena pemisah rumus saat ini konflik dengan locale, pemisah rumus telah direset ke nilai bawaan."
-#: sc/inc/globstr.hrc:416
+#: sc/inc/globstr.hrc:417
msgctxt "STR_UNDO_INSERT_CURRENT_DATE"
msgid "Insert Current Date"
msgstr "Masukkan Tanggal Sekarang"
-#: sc/inc/globstr.hrc:417
+#: sc/inc/globstr.hrc:418
msgctxt "STR_UNDO_INSERT_CURRENT_TIME"
msgid "Insert Current Time"
msgstr "Masukkan Waktu Sekarang"
-#: sc/inc/globstr.hrc:418
+#: sc/inc/globstr.hrc:419
msgctxt "STR_MANAGE_NAMES"
msgid "Manage Names..."
msgstr "Kelola Nama..."
-#: sc/inc/globstr.hrc:419
+#: sc/inc/globstr.hrc:420
msgctxt "STR_HEADER_NAME"
msgid "Name"
msgstr "Nama"
-#: sc/inc/globstr.hrc:420
+#: sc/inc/globstr.hrc:421
msgctxt "STR_HEADER_RANGE_OR_EXPR"
msgid "Range or formula expression"
msgstr "Ekspresi rumus atau rentang"
-#: sc/inc/globstr.hrc:421
+#: sc/inc/globstr.hrc:422
msgctxt "STR_HEADER_SCOPE"
msgid "Scope"
msgstr "Cakupan"
-#: sc/inc/globstr.hrc:422
+#: sc/inc/globstr.hrc:423
msgctxt "STR_MULTI_SELECT"
msgid "(multiple)"
msgstr "(berganda)"
-#: sc/inc/globstr.hrc:423
+#: sc/inc/globstr.hrc:424
msgctxt "STR_GLOBAL_SCOPE"
msgid "Document (Global)"
msgstr "Dokumen (Global)"
-#: sc/inc/globstr.hrc:424
+#: sc/inc/globstr.hrc:425
msgctxt "STR_ERR_NAME_EXISTS"
msgid "Invalid name. Already in use for the selected scope."
msgstr "Nama tak valid. Telah dipakai bagi cakupan yang dipilih."
-#: sc/inc/globstr.hrc:425
+#: sc/inc/globstr.hrc:426
msgctxt "STR_ERR_NAME_INVALID"
msgid "Invalid name. Only use letters, numbers and underscore."
msgstr "Nama tak valid. Gunakan hanya huruf, angka, dan garis bawah."
-#: sc/inc/globstr.hrc:426
+#: sc/inc/globstr.hrc:427
msgctxt "STR_UNSAVED_EXT_REF"
msgid ""
"This Document contains external references to unsaved documents.\n"
@@ -2097,217 +2102,217 @@ msgstr ""
"\n"
"Apakah Anda hendak melanjutkan?"
-#: sc/inc/globstr.hrc:427
+#: sc/inc/globstr.hrc:428
msgctxt "STR_CLOSE_WITH_UNSAVED_REFS"
msgid "This Document is referenced by another document and not yet saved. Closing it without saving will result in data loss."
msgstr "Dokumen ini diacu oleh dokumen lain dan belum disimpan. Menutupnya tanpa menyimpan akan menyebabkan kehilangan data."
-#: sc/inc/globstr.hrc:428
+#: sc/inc/globstr.hrc:429
msgctxt "STR_HEADER_RANGE"
msgid "Range"
msgstr "Jangkauan"
-#: sc/inc/globstr.hrc:429
+#: sc/inc/globstr.hrc:430
msgctxt "STR_HEADER_COND"
msgid "First Condition"
msgstr "Syarat Pertama"
-#: sc/inc/globstr.hrc:430
+#: sc/inc/globstr.hrc:431
msgctxt "STR_COND_CONDITION"
msgid "Cell value is"
msgstr "Nilai sel adalah"
-#: sc/inc/globstr.hrc:431
+#: sc/inc/globstr.hrc:432
msgctxt "STR_COND_COLORSCALE"
msgid "ColorScale"
msgstr "SkalaWarna"
-#: sc/inc/globstr.hrc:432
+#: sc/inc/globstr.hrc:433
msgctxt "STR_COND_DATABAR"
msgid "DataBar"
msgstr "BilahData"
-#: sc/inc/globstr.hrc:433
+#: sc/inc/globstr.hrc:434
msgctxt "STR_COND_ICONSET"
msgid "IconSet"
msgstr "SetIkon"
-#: sc/inc/globstr.hrc:434
+#: sc/inc/globstr.hrc:435
msgctxt "STR_COND_BETWEEN"
msgid "between"
msgstr "di antara"
-#: sc/inc/globstr.hrc:435
+#: sc/inc/globstr.hrc:436
msgctxt "STR_COND_NOTBETWEEN"
msgid "not between"
msgstr "bukan di antara"
-#: sc/inc/globstr.hrc:436
+#: sc/inc/globstr.hrc:437
msgctxt "STR_COND_UNIQUE"
msgid "unique"
msgstr "unik"
-#: sc/inc/globstr.hrc:437
+#: sc/inc/globstr.hrc:438
msgctxt "STR_COND_DUPLICATE"
msgid "duplicate"
msgstr "duplikat"
-#: sc/inc/globstr.hrc:438
+#: sc/inc/globstr.hrc:439
msgctxt "STR_COND_FORMULA"
msgid "Formula is"
msgstr "Rumus adalah"
-#: sc/inc/globstr.hrc:439
+#: sc/inc/globstr.hrc:440
msgctxt "STR_COND_TOP10"
msgid "Top Elements"
msgstr "Elemen Puncak"
-#: sc/inc/globstr.hrc:440
+#: sc/inc/globstr.hrc:441
msgctxt "STR_COND_BOTTOM10"
msgid "Bottom Elements"
msgstr "Elemen Bawah"
-#: sc/inc/globstr.hrc:441
+#: sc/inc/globstr.hrc:442
msgctxt "STR_COND_TOP_PERCENT"
msgid "Top Percent"
msgstr "Persen Teratas"
-#: sc/inc/globstr.hrc:442
+#: sc/inc/globstr.hrc:443
msgctxt "STR_COND_DATE"
msgid "Date is"
msgstr "Sekarang tanggal"
-#: sc/inc/globstr.hrc:443
+#: sc/inc/globstr.hrc:444
msgctxt "STR_COND_BOTTOM_PERCENT"
msgid "Bottom Percent"
msgstr "Persen Terbawah"
-#: sc/inc/globstr.hrc:444
+#: sc/inc/globstr.hrc:445
msgctxt "STR_COND_ABOVE_AVERAGE"
msgid "Above Average"
msgstr "Di Atas Rata-rata"
-#: sc/inc/globstr.hrc:445
+#: sc/inc/globstr.hrc:446
msgctxt "STR_COND_BELOW_AVERAGE"
msgid "Below Average"
msgstr "Di Bawah Rata-rata"
-#: sc/inc/globstr.hrc:446
+#: sc/inc/globstr.hrc:447
msgctxt "STR_COND_ABOVE_EQUAL_AVERAGE"
msgid "Above or equal Average"
msgstr "Di atas atau sama dengan Rata-rata"
-#: sc/inc/globstr.hrc:447
+#: sc/inc/globstr.hrc:448
msgctxt "STR_COND_BELOW_EQUAL_AVERAGE"
msgid "Below or equal Average"
msgstr "Di bawah atau sama dengan Rata-rata"
-#: sc/inc/globstr.hrc:448
+#: sc/inc/globstr.hrc:449
msgctxt "STR_COND_ERROR"
msgid "an Error code"
msgstr "kode kesalahan"
-#: sc/inc/globstr.hrc:449
+#: sc/inc/globstr.hrc:450
msgctxt "STR_COND_NOERROR"
msgid "not an Error code"
msgstr "bukan kode kesalahan"
-#: sc/inc/globstr.hrc:450
+#: sc/inc/globstr.hrc:451
msgctxt "STR_COND_BEGINS_WITH"
msgid "Begins with"
msgstr "Diawali dengan"
-#: sc/inc/globstr.hrc:451
+#: sc/inc/globstr.hrc:452
msgctxt "STR_COND_ENDS_WITH"
msgid "Ends with"
msgstr "Diakhiri dengan"
-#: sc/inc/globstr.hrc:452
+#: sc/inc/globstr.hrc:453
msgctxt "STR_COND_CONTAINS"
msgid "Contains"
msgstr "Mengandung"
-#: sc/inc/globstr.hrc:453
+#: sc/inc/globstr.hrc:454
msgctxt "STR_COND_NOT_CONTAINS"
msgid "Not Contains"
msgstr "Tidak Mengandung"
-#: sc/inc/globstr.hrc:454
+#: sc/inc/globstr.hrc:455
msgctxt "STR_COND_TODAY"
msgid "today"
msgstr "hari ini"
-#: sc/inc/globstr.hrc:455
+#: sc/inc/globstr.hrc:456
msgctxt "STR_COND_YESTERDAY"
msgid "yesterday"
msgstr "kemarin"
-#: sc/inc/globstr.hrc:456
+#: sc/inc/globstr.hrc:457
msgctxt "STR_COND_TOMORROW"
msgid "tomorrow"
msgstr "besok"
-#: sc/inc/globstr.hrc:457
+#: sc/inc/globstr.hrc:458
msgctxt "STR_COND_LAST7DAYS"
msgid "in the last 7 days"
msgstr "dalam 7 hari terakhir"
-#: sc/inc/globstr.hrc:458
+#: sc/inc/globstr.hrc:459
msgctxt "STR_COND_THISWEEK"
msgid "this week"
msgstr "minggu ini"
-#: sc/inc/globstr.hrc:459
+#: sc/inc/globstr.hrc:460
msgctxt "STR_COND_LASTWEEK"
msgid "last week"
msgstr "minggu lalu"
-#: sc/inc/globstr.hrc:460
+#: sc/inc/globstr.hrc:461
msgctxt "STR_COND_NEXTWEEK"
msgid "next week"
msgstr "minggu depan"
-#: sc/inc/globstr.hrc:461
+#: sc/inc/globstr.hrc:462
msgctxt "STR_COND_THISMONTH"
msgid "this month"
msgstr "bulan ini"
-#: sc/inc/globstr.hrc:462
+#: sc/inc/globstr.hrc:463
msgctxt "STR_COND_LASTMONTH"
msgid "last month"
msgstr "bulan lalu"
-#: sc/inc/globstr.hrc:463
+#: sc/inc/globstr.hrc:464
msgctxt "STR_COND_NEXTMONTH"
msgid "next month"
msgstr "bulan depan"
-#: sc/inc/globstr.hrc:464
+#: sc/inc/globstr.hrc:465
msgctxt "STR_COND_THISYEAR"
msgid "this year"
msgstr "tahun ini"
-#: sc/inc/globstr.hrc:465
+#: sc/inc/globstr.hrc:466
msgctxt "STR_COND_LASTYEAR"
msgid "last year"
msgstr "tahun lalu"
-#: sc/inc/globstr.hrc:466
+#: sc/inc/globstr.hrc:467
msgctxt "STR_COND_NEXTYEAR"
msgid "next year"
msgstr "tahun depan"
-#: sc/inc/globstr.hrc:467
+#: sc/inc/globstr.hrc:468
msgctxt "STR_COND_AND"
msgid "and"
msgstr "dan"
-#: sc/inc/globstr.hrc:468
+#: sc/inc/globstr.hrc:469
msgctxt "STR_ERR_CONDFORMAT_PROTECTED"
msgid "Conditional Formats can not be created, deleted or changed in protected sheets."
msgstr "Format bersyarat tidak bisa dibuat, dihapus, atau diubah di lembar yang terproteksi."
-#: sc/inc/globstr.hrc:469
+#: sc/inc/globstr.hrc:470
msgctxt "STR_EDIT_EXISTING_COND_FORMATS"
msgid ""
"The selected cell already contains conditional formatting. You can either edit the existing conditional format or you define a new overlapping conditional format.\n"
@@ -2318,7 +2323,7 @@ msgstr ""
"\n"
" Apakah Anda ingin menyunting format bersyarat yang ada?"
-#: sc/inc/globstr.hrc:470
+#: sc/inc/globstr.hrc:471
msgctxt "STR_QUERY_FORMULA_RECALC_ONLOAD_ODS"
msgid ""
"This document was last saved by an application other than %PRODUCTNAME. Some formula cells may produce different results when recalculated.\n"
@@ -2329,7 +2334,7 @@ msgstr ""
"\n"
"Apakah Anda ingin menghitung ulang semua sel rumus dalam dokumen ini sekarang?"
-#: sc/inc/globstr.hrc:471
+#: sc/inc/globstr.hrc:472
msgctxt "STR_QUERY_FORMULA_RECALC_ONLOAD_XLS"
msgid ""
"This document was last saved by Excel. Some formula cells may produce different results when recalculated.\n"
@@ -2340,77 +2345,77 @@ msgstr ""
"\n"
"Apakah Anda ingin menghitung ulang semua sel rumus sekarang?"
-#: sc/inc/globstr.hrc:472
+#: sc/inc/globstr.hrc:473
msgctxt "STR_NO_INSERT_DELETE_OVER_PIVOT_TABLE"
msgid "You cannot insert or delete cells when the affected range intersects with pivot table."
msgstr "Anda tak bisa sisipkan atau hapus sel ketika jangkauan yang terpengaruh beririsan dengan tabel pivot."
-#: sc/inc/globstr.hrc:473
+#: sc/inc/globstr.hrc:474
msgctxt "STR_DPFIELD_GROUP_BY_SECONDS"
msgid "Seconds"
msgstr "Detik"
-#: sc/inc/globstr.hrc:474
+#: sc/inc/globstr.hrc:475
msgctxt "STR_DPFIELD_GROUP_BY_MINUTES"
msgid "Minutes"
msgstr "Menit"
-#: sc/inc/globstr.hrc:475
+#: sc/inc/globstr.hrc:476
msgctxt "STR_DPFIELD_GROUP_BY_HOURS"
msgid "Hours"
msgstr "Jam"
-#: sc/inc/globstr.hrc:476
+#: sc/inc/globstr.hrc:477
msgctxt "STR_DPFIELD_GROUP_BY_DAYS"
msgid "Days"
msgstr "Hari"
-#: sc/inc/globstr.hrc:477
+#: sc/inc/globstr.hrc:478
msgctxt "STR_DPFIELD_GROUP_BY_MONTHS"
msgid "Months"
msgstr "Bulan"
-#: sc/inc/globstr.hrc:478
+#: sc/inc/globstr.hrc:479
msgctxt "STR_DPFIELD_GROUP_BY_QUARTERS"
msgid "Quarters"
msgstr "Kuartal"
-#: sc/inc/globstr.hrc:479
+#: sc/inc/globstr.hrc:480
msgctxt "STR_DPFIELD_GROUP_BY_YEARS"
msgid "Years"
msgstr "Tahun"
-#: sc/inc/globstr.hrc:480
+#: sc/inc/globstr.hrc:481
msgctxt "STR_INVALIDVAL"
msgid "Invalid target value."
msgstr "Nilai target tidak sah."
-#: sc/inc/globstr.hrc:481
+#: sc/inc/globstr.hrc:482
msgctxt "STR_INVALIDVAR"
msgid "Undefined name for variable cell."
msgstr "Nama belum diberikan untuk sel variabel."
-#: sc/inc/globstr.hrc:482
+#: sc/inc/globstr.hrc:483
msgctxt "STR_INVALIDFORM"
msgid "Undefined name as formula cell."
msgstr "Nama belum diberikan untuk sel rumus."
-#: sc/inc/globstr.hrc:483
+#: sc/inc/globstr.hrc:484
msgctxt "STR_NOFORMULA"
msgid "Formula cell must contain a formula."
msgstr "Sel rumus mesti memuat suatu rumus."
-#: sc/inc/globstr.hrc:484
+#: sc/inc/globstr.hrc:485
msgctxt "STR_INVALIDINPUT"
msgid "Invalid input."
msgstr "Masukan tidak sah."
-#: sc/inc/globstr.hrc:485
+#: sc/inc/globstr.hrc:486
msgctxt "STR_INVALIDCONDITION"
msgid "Invalid condition."
msgstr "Kondisi tidak sah."
-#: sc/inc/globstr.hrc:486
+#: sc/inc/globstr.hrc:487
msgctxt "STR_QUERYREMOVE"
msgid ""
"Should the entry\n"
@@ -2421,133 +2426,133 @@ msgstr ""
"#\n"
"ingin dihapus?"
-#: sc/inc/globstr.hrc:487
+#: sc/inc/globstr.hrc:488
msgctxt "STR_COPYLIST"
msgid "Copy List"
msgstr "Salin Senarai"
-#: sc/inc/globstr.hrc:488
+#: sc/inc/globstr.hrc:489
msgctxt "STR_COPYFROM"
msgid "List from"
msgstr "Senarai dari"
-#: sc/inc/globstr.hrc:489
+#: sc/inc/globstr.hrc:490
msgctxt "STR_COPYERR"
msgid "Cells without text have been ignored."
msgstr "Sel tanpa teks telah diabaikan."
-#: sc/inc/globstr.hrc:490
+#: sc/inc/globstr.hrc:491
#, c-format
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%s-click to follow hyperlink:"
msgstr "Klik-%s untuk mengikuti tautan:"
-#: sc/inc/globstr.hrc:491
+#: sc/inc/globstr.hrc:492
msgctxt "STR_CLICKHYPERLINK"
msgid "click to open hyperlink:"
msgstr "klik untuk membuka hyperlink:"
-#: sc/inc/globstr.hrc:492
+#: sc/inc/globstr.hrc:493
msgctxt "STR_PRINT_PREVIEW_NODATA"
msgid "No Data"
msgstr "Tiada Data"
-#: sc/inc/globstr.hrc:493
+#: sc/inc/globstr.hrc:494
msgctxt "STR_PRINT_PREVIEW_EMPTY_RANGE"
msgid "Print Range Empty"
msgstr "Jangkauan Cetak Kosong"
-#: sc/inc/globstr.hrc:494
+#: sc/inc/globstr.hrc:495
msgctxt "STR_UNDO_CONDFORMAT"
msgid "Conditional Format"
msgstr "Format Bersyarat"
-#: sc/inc/globstr.hrc:495
+#: sc/inc/globstr.hrc:496
msgctxt "STR_UNDO_CONDFORMAT_LIST"
msgid "Conditional Formats"
msgstr "Format Bersyarat"
-#: sc/inc/globstr.hrc:496
+#: sc/inc/globstr.hrc:497
msgctxt "STR_UNDO_FORMULA_TO_VALUE"
msgid "Convert Formula To Value"
msgstr "Konversikan Rumus Ke Nilai"
-#: sc/inc/globstr.hrc:497
+#: sc/inc/globstr.hrc:498
msgctxt "STR_UNQUOTED_STRING"
msgid "Strings without quotes are interpreted as column/row labels."
msgstr "Kalimat tanpa kutip diinterpretasikan sebagai label kolom/baris."
-#: sc/inc/globstr.hrc:498
+#: sc/inc/globstr.hrc:499
msgctxt "STR_ENTER_VALUE"
msgid "Enter a value!"
msgstr "Masukkan nilai!"
-#: sc/inc/globstr.hrc:499
+#: sc/inc/globstr.hrc:500
msgctxt "STR_TABLE_COUNT"
msgid "Sheet %1 of %2"
msgstr "Lembar %1 dari %2"
-#: sc/inc/globstr.hrc:500
+#: sc/inc/globstr.hrc:501
msgctxt "STR_FUNCTIONS_FOUND"
msgid "%1 and %2 more"
msgstr "%1 dan %2 lagi"
-#: sc/inc/globstr.hrc:501
+#: sc/inc/globstr.hrc:502
msgctxt "STR_GENERAL"
msgid "General"
msgstr "Umum"
-#: sc/inc/globstr.hrc:502
+#: sc/inc/globstr.hrc:503
msgctxt "STR_NUMBER"
msgid "Number"
msgstr "Angka"
-#: sc/inc/globstr.hrc:503
+#: sc/inc/globstr.hrc:504
msgctxt "STR_PERCENT"
msgid "Percent"
msgstr "Persen"
-#: sc/inc/globstr.hrc:504
+#: sc/inc/globstr.hrc:505
msgctxt "STR_CURRENCY"
msgid "Currency"
msgstr "Mata Uang"
-#: sc/inc/globstr.hrc:505
+#: sc/inc/globstr.hrc:506
msgctxt "STR_DATE"
msgid "Date"
msgstr "Tanggal"
-#: sc/inc/globstr.hrc:506
+#: sc/inc/globstr.hrc:507
msgctxt "STR_TIME"
msgid "Time"
msgstr "Waktu"
-#: sc/inc/globstr.hrc:507
+#: sc/inc/globstr.hrc:508
msgctxt "STR_SCIENTIFIC"
msgid "Scientific"
msgstr "Ilmiah"
-#: sc/inc/globstr.hrc:508
+#: sc/inc/globstr.hrc:509
msgctxt "STR_FRACTION"
msgid "Fraction"
msgstr "Pecahan"
-#: sc/inc/globstr.hrc:509
+#: sc/inc/globstr.hrc:510
msgctxt "STR_BOOLEAN_VALUE"
msgid "Boolean Value"
msgstr "Nilai Boolean"
-#: sc/inc/globstr.hrc:510
+#: sc/inc/globstr.hrc:511
msgctxt "STR_TEXT"
msgid "Text"
msgstr "Teks"
-#: sc/inc/globstr.hrc:511
+#: sc/inc/globstr.hrc:512
msgctxt "STR_QUERY_PIVOTTABLE_DELTAB"
msgid "The selected sheet(s) contain source data of related pivot tables that will be lost. Are you sure you want to delete the selected sheet(s)?"
msgstr "Lembar yang dipilih mengandung data sumber dari tabel pivot terkait yang akan hilang. Anda yakin hendak menghapus lembar yang dipilih?"
-#: sc/inc/globstr.hrc:512
+#: sc/inc/globstr.hrc:513
msgctxt "STR_ERR_NAME_INVALID_CELL_REF"
msgid "Invalid name. Reference to a cell, or a range of cells not allowed."
msgstr "Nama tidak valid. Acuan ke suatu sel, atau rentang dari sel tidak diizinkan."
@@ -10667,8 +10672,8 @@ msgstr "Modus"
#: sc/inc/scfuncs.hrc:3010
msgctxt "SC_OPCODE_T_TEST"
-msgid "Mode specifies the number of distribution tails to return. 1= one-tailed, 2 = two-tailed distribution"
-msgstr "Modus menentukan jumlah tail distribusi: 1 = distribusi satu tail, 2 = dua tail."
+msgid "Mode specifies the number of distribution tails to return. 1 = one-tailed, 2 = two-tailed distribution"
+msgstr ""
#: sc/inc/scfuncs.hrc:3011
msgctxt "SC_OPCODE_T_TEST"
@@ -10715,8 +10720,8 @@ msgstr "Modus"
#: sc/inc/scfuncs.hrc:3024
msgctxt "SC_OPCODE_T_TEST_MS"
-msgid "Mode specifies the number of distribution tails to return. 1= one-tailed, 2 = two-tailed distribution"
-msgstr "Mode menyatakan banyaknya ekor distribusi yang akan dikembalikan. 1 = distribusi ekor tunggal, 2 = distribusi ekor ganda"
+msgid "Mode specifies the number of distribution tails to return. 1 = one-tailed, 2 = two-tailed distribution"
+msgstr ""
#: sc/inc/scfuncs.hrc:3025
msgctxt "SC_OPCODE_T_TEST_MS"
@@ -18320,22 +18325,22 @@ msgctxt "mergecellsdialog|MergeCellsDialog"
msgid "Merge Cells"
msgstr "Gabungkan Sel"
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:81
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:84
msgctxt "mergecellsdialog|label"
msgid "Some cells are not empty."
msgstr "Beberapa sel tidak kosong."
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:96
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:99
msgctxt "mergecellsdialog|move-cells-radio"
msgid "Move the contents of the hidden cells into the first cell"
msgstr "Pindahkan isi sel-sel tersembunyi ke dalam sel pertama"
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:112
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:115
msgctxt "mergecellsdialog|empty-cells-radio"
msgid "Empty the contents of the hidden cells"
msgstr "Kosongkan isi sel-sel tersembunyi"
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:128
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:131
msgctxt "mergecellsdialog|keep-content-radio"
msgid "Keep the contents of the hidden cells"
msgstr "Pertahankan isi sel-sel tersembunyi"
diff --git a/source/id/scp2/source/ooo.po b/source/id/scp2/source/ooo.po
index 2bc81c95e74..99689421f84 100644
--- a/source/id/scp2/source/ooo.po
+++ b/source/id/scp2/source/ooo.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2018-05-23 23:20+0200\n"
-"PO-Revision-Date: 2017-11-26 05:45+0000\n"
+"PO-Revision-Date: 2018-06-02 11:42+0000\n"
"Last-Translator: Andika Triwidada <andika@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: id\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1511675111.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1527939756.000000\n"
#: folderitem_ooo.ulf
msgctxt ""
@@ -1886,7 +1886,7 @@ msgctxt ""
"STR_NAME_MODULE_LANGPACK_FY\n"
"LngText.text"
msgid "Frisian"
-msgstr ""
+msgstr "Frisia"
#: module_langpack.ulf
msgctxt ""
@@ -1894,7 +1894,7 @@ msgctxt ""
"STR_DESC_MODULE_LANGPACK_FY\n"
"LngText.text"
msgid "Installs the Frisian user interface"
-msgstr ""
+msgstr "Pasang antarmuka pengguna bahasa Frisia"
#: module_langpack.ulf
msgctxt ""
diff --git a/source/id/sd/messages.po b/source/id/sd/messages.po
index 89d2e356712..bc883a83163 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2018-03-08 16:01+0000\n"
"Last-Translator: Andika Triwidada <andika@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -16,167 +16,167 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1520524897.000000\n"
-#: sd/inc/DocumentRenderer.hrc:29
+#: sd/inc/DocumentRenderer.hrc:27
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Slides"
msgstr "Salindia"
-#: sd/inc/DocumentRenderer.hrc:30
+#: sd/inc/DocumentRenderer.hrc:28
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Handouts"
msgstr "Handout"
-#: sd/inc/DocumentRenderer.hrc:31
+#: sd/inc/DocumentRenderer.hrc:29
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Notes"
msgstr "Catatan"
-#: sd/inc/DocumentRenderer.hrc:32
+#: sd/inc/DocumentRenderer.hrc:30
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Outline"
msgstr "Kerangka"
-#: sd/inc/DocumentRenderer.hrc:37
+#: sd/inc/DocumentRenderer.hrc:35
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "According to layout"
msgstr "Menurut tata letak"
-#: sd/inc/DocumentRenderer.hrc:38
+#: sd/inc/DocumentRenderer.hrc:36
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "1"
msgstr "1"
-#: sd/inc/DocumentRenderer.hrc:39
+#: sd/inc/DocumentRenderer.hrc:37
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "2"
msgstr "2"
-#: sd/inc/DocumentRenderer.hrc:40
+#: sd/inc/DocumentRenderer.hrc:38
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "3"
msgstr "3"
-#: sd/inc/DocumentRenderer.hrc:41
+#: sd/inc/DocumentRenderer.hrc:39
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "4"
msgstr "4"
-#: sd/inc/DocumentRenderer.hrc:42
+#: sd/inc/DocumentRenderer.hrc:40
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "6"
msgstr "6"
-#: sd/inc/DocumentRenderer.hrc:43
+#: sd/inc/DocumentRenderer.hrc:41
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "9"
msgstr "9"
-#: sd/inc/DocumentRenderer.hrc:48
+#: sd/inc/DocumentRenderer.hrc:46
msgctxt "STR_IMPRESS_PRINT_UI_ORDER_CHOICES"
msgid "Left to right, then down"
msgstr "Kiri ke kanan, lalu turun"
-#: sd/inc/DocumentRenderer.hrc:49
+#: sd/inc/DocumentRenderer.hrc:47
msgctxt "STR_IMPRESS_PRINT_UI_ORDER_CHOICES"
msgid "Top to bottom, then right"
msgstr "Atas ke bawah, lalu kanan"
-#: sd/inc/DocumentRenderer.hrc:54
+#: sd/inc/DocumentRenderer.hrc:52
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Original colors"
msgstr "Warna asli"
-#: sd/inc/DocumentRenderer.hrc:55
+#: sd/inc/DocumentRenderer.hrc:53
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Grayscale"
msgstr "Skala abu-abu"
-#: sd/inc/DocumentRenderer.hrc:56
+#: sd/inc/DocumentRenderer.hrc:54
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Black & white"
msgstr "Hitam & putih"
-#: sd/inc/DocumentRenderer.hrc:61
+#: sd/inc/DocumentRenderer.hrc:59
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Original size"
msgstr "Ukuran asli"
-#: sd/inc/DocumentRenderer.hrc:62
+#: sd/inc/DocumentRenderer.hrc:60
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Fit to printable page"
msgstr "Paskan ke halaman yang dapat dicetak"
-#: sd/inc/DocumentRenderer.hrc:63
+#: sd/inc/DocumentRenderer.hrc:61
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Distribute on multiple sheets of paper"
msgstr "Sebarkan pada sejumlah lembar kertas"
-#: sd/inc/DocumentRenderer.hrc:64
+#: sd/inc/DocumentRenderer.hrc:62
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Tile sheet of paper with repeated slides"
msgstr "Jajaran lembaran kertas dengan salindia yang diulang"
-#: sd/inc/DocumentRenderer.hrc:69
+#: sd/inc/DocumentRenderer.hrc:67
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Original size"
msgstr "Ukuran asli"
-#: sd/inc/DocumentRenderer.hrc:70
+#: sd/inc/DocumentRenderer.hrc:68
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Fit to printable page"
msgstr "Paskan ke halaman yang dapat dicetak"
-#: sd/inc/DocumentRenderer.hrc:71
+#: sd/inc/DocumentRenderer.hrc:69
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Distribute on multiple sheets of paper"
msgstr "Sebarkan pada sejumlah lembar kertas"
-#: sd/inc/DocumentRenderer.hrc:72
+#: sd/inc/DocumentRenderer.hrc:70
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Tile sheet of paper with repeated pages"
msgstr "Jajaran lembaran kertas dengan halaman yang diulang"
-#: sd/inc/DocumentRenderer.hrc:77
+#: sd/inc/DocumentRenderer.hrc:75
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "All pages"
msgstr "Semua halaman"
-#: sd/inc/DocumentRenderer.hrc:78
+#: sd/inc/DocumentRenderer.hrc:76
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "Front sides / right pages"
msgstr "Sisi depan / halaman kanan"
-#: sd/inc/DocumentRenderer.hrc:79
+#: sd/inc/DocumentRenderer.hrc:77
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "Back sides / left pages"
msgstr "Sisi belakang / halaman kiri"
-#: sd/inc/DocumentRenderer.hrc:84
+#: sd/inc/DocumentRenderer.hrc:82
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~All slides"
msgstr "Semu~a salindia"
-#: sd/inc/DocumentRenderer.hrc:85
+#: sd/inc/DocumentRenderer.hrc:83
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~Slides"
msgstr "~Salindia"
-#: sd/inc/DocumentRenderer.hrc:86
+#: sd/inc/DocumentRenderer.hrc:84
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Se~lection"
msgstr "Se~leksi"
-#: sd/inc/DocumentRenderer.hrc:91
+#: sd/inc/DocumentRenderer.hrc:89
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~All pages"
msgstr "Semu~a halaman"
-#: sd/inc/DocumentRenderer.hrc:92
+#: sd/inc/DocumentRenderer.hrc:90
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Pa~ges"
msgstr "~Halaman"
-#: sd/inc/DocumentRenderer.hrc:93
+#: sd/inc/DocumentRenderer.hrc:91
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Se~lection"
msgstr "Se~leksi"
diff --git a/source/id/svx/messages.po b/source/id/svx/messages.po
index 565b25bb77b..9f66410590a 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: 2018-05-16 16:53+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2018-02-10 07:54+0000\n"
"Last-Translator: Andika Triwidada <andika@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5185,8 +5185,8 @@ msgstr "Anda juga dapat menyertakan bagian-bagian yang relevan dari profil pengg
#: svx/uiconfig/ui/safemodedialog.ui:432
msgctxt "safemodedialog|btn_create_zip"
-msgid "Create Zip Archive from User Profile"
-msgstr "Buat Arsip Zip dari Profil Pengguna"
+msgid "Archive User Profile"
+msgstr ""
#: svx/uiconfig/ui/safemodedialog.ui:445
msgctxt "safemodedialog|linkbutton_profile"
@@ -8776,9 +8776,9 @@ msgid "Red"
msgstr "Merah"
#: include/svx/strings.hrc:565
-msgctxt "RID_SVXSTR_COLOR_VIOLET"
-msgid "Violet"
-msgstr "Lembayung"
+msgctxt "RID_SVXSTR_COLOR_MAGENTA"
+msgid "Magenta"
+msgstr "Magenta"
#: include/svx/strings.hrc:566
msgctxt "RID_SVXSTR_COLOR_PURPLE"
@@ -8845,8 +8845,8 @@ msgid "Light Red"
msgstr "Merah Terang"
#: include/svx/strings.hrc:579
-msgctxt "RID_SVXSTR_COLOR_LIGHTVIOLET"
-msgid "Light Violet"
+msgctxt "RID_SVXSTR_COLOR_LIGHTMAGENTA"
+msgid "Light Magenta"
msgstr ""
#: include/svx/strings.hrc:580
@@ -8912,10 +8912,9 @@ msgid "Dark Red"
msgstr "Merah Gelap"
#: include/svx/strings.hrc:593
-#, fuzzy
-msgctxt "RID_SVXSTR_COLOR_DARKVIOLET1"
-msgid "Dark Violet"
-msgstr "Lembayung tua"
+msgctxt "RID_SVXSTR_COLOR_DARKMAGENTA"
+msgid "Dark Magenta"
+msgstr ""
#: include/svx/strings.hrc:594
msgctxt "RID_SVXSTR_COLOR_DARKPURPLE"
@@ -8949,55 +8948,55 @@ msgstr ""
#. Elements of the Tonal color palette
#: include/svx/strings.hrc:601
+msgctxt "RID_SVXSTR_COLOR_VIOLET"
+msgid "Violet"
+msgstr "Lembayung"
+
+#: include/svx/strings.hrc:602
msgctxt "RID_SVXSTR_COLOR_VIOLET_OUG"
msgid "Violet (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:602
+#: include/svx/strings.hrc:603
msgctxt "RID_SVXSTR_COLOR_BLUE_OUG"
msgid "Blue (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:603
+#: include/svx/strings.hrc:604
msgctxt "RID_SVXSTR_COLOR_AZURE_OUG"
msgid "Azure (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:604
+#: include/svx/strings.hrc:605
msgctxt "RID_SVXSTR_COLOR_SPRINGGREEN_OUG"
msgid "Spring Green (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:605
+#: include/svx/strings.hrc:606
msgctxt "RID_SVXSTR_COLOR_GREEN_OUG"
msgid "Green (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:606
+#: include/svx/strings.hrc:607
msgctxt "RID_SVXSTR_COLOR_CHARTREUSEGREEN_OUG"
msgid "Chartreuse Green (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:607
+#: include/svx/strings.hrc:608
msgctxt "RID_SVXSTR_COLOR_ORANGE_OUG"
msgid "Orange (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:608
+#: include/svx/strings.hrc:609
msgctxt "RID_SVXSTR_COLOR_RED_OUG"
msgid "Red (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:609
+#: include/svx/strings.hrc:610
msgctxt "RID_SVXSTR_COLOR_ROSE_OUG"
msgid "Rose (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:610
-msgctxt "RID_SVXSTR_COLOR_MAGENTA"
-msgid "Magenta"
-msgstr "Magenta"
-
#: include/svx/strings.hrc:611
msgctxt "RID_SVXSTR_COLOR_AZURE"
msgid "Azure"
@@ -12114,13 +12113,13 @@ msgstr "Bulatan panah kanan"
#: include/svx/strings.hrc:1273
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_6"
-msgid "Check mark bullets"
-msgstr "Bulatan tanda silang"
+msgid "Cross mark bullets"
+msgstr ""
#: include/svx/strings.hrc:1274
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_7"
-msgid "Tick mark bullets"
-msgstr "Bulatan tanda ceklis"
+msgid "Check mark bullets"
+msgstr ""
#: include/svx/strings.hrc:1275
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_0"
diff --git a/source/id/sw/messages.po b/source/id/sw/messages.po
index aa5bab0b632..8ce3ae7f23c 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: 2018-05-22 13:17+0200\n"
+"POT-Creation-Date: 2018-06-12 14:41+0200\n"
"PO-Revision-Date: 2018-02-04 13:35+0000\n"
"Last-Translator: Andika Triwidada <andika@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1180,13 +1180,13 @@ msgstr "Sitasi"
#: sw/inc/strings.hrc:172
msgctxt "STR_POOLCOLL_TOX_ILLUSH"
-msgid "Illustration Index Heading"
-msgstr "Tajuk Indeks Ilustrasi"
+msgid "Figure Index Heading"
+msgstr ""
#: sw/inc/strings.hrc:173
msgctxt "STR_POOLCOLL_TOX_ILLUS1"
-msgid "Illustration Index 1"
-msgstr "Indeks Ilustrasi 1"
+msgid "Figure Index 1"
+msgstr ""
#: sw/inc/strings.hrc:174
msgctxt "STR_POOLCOLL_TOX_OBJECTH"
@@ -3591,8 +3591,8 @@ msgstr "Tabel Objek"
#: sw/inc/strings.hrc:672
msgctxt "STR_TOX_ILL"
-msgid "Illustration Index"
-msgstr "Daftar Gambar"
+msgid "Table of Figures"
+msgstr ""
#: sw/inc/strings.hrc:673
#, c-format
@@ -9247,72 +9247,72 @@ msgctxt "footnotepage|label5"
msgid "Continuation Notice"
msgstr "Pemberitahuan Keberlanjutan"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:49
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:55
msgctxt "footnotesendnotestabpage|ftnntnum"
msgid "_Restart numbering"
msgstr "Mulai ulang penomo_ran"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:91
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:93
msgctxt "footnotesendnotestabpage|ftnoffset_label"
msgid "_Start at:"
msgstr "_Mulai dari:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:112
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:111
msgctxt "footnotesendnotestabpage|ftnntnumfmt"
msgid "Custom _format"
msgstr "_Format ubahan"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:155
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:150
msgctxt "footnotesendnotestabpage|ftnsuffix_label"
msgid "Aft_er:"
msgstr "S_etelah:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:199
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:188
msgctxt "footnotesendnotestabpage|ftnprefix_label"
msgid "Be_fore:"
msgstr "Se_belum:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:228
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:212
msgctxt "footnotesendnotestabpage|ftnntattextend"
msgid "Collec_t at end of text"
msgstr "Kumpulkan di akhir _teks"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:252
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:234
msgctxt "footnotesendnotestabpage|label1"
msgid "Footnotes"
msgstr "Catatan kaki"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:289
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:271
msgctxt "footnotesendnotestabpage|endntattextend"
msgid "C_ollect at end of section"
msgstr "Kumpulkan di akhir _seksi"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:315
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:295
msgctxt "footnotesendnotestabpage|endntnum"
msgid "_Restart numbering"
msgstr "Mulai ulang penomo_ran"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:357
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:333
msgctxt "footnotesendnotestabpage|endoffset_label"
msgid "_Start at:"
msgstr "_Mulai pada:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:378
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:351
msgctxt "footnotesendnotestabpage|endntnumfmt"
msgid "_Custom format"
msgstr "Format _ubahan"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:421
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:390
msgctxt "footnotesendnotestabpage|endsuffix_label"
msgid "Aft_er:"
msgstr "S_etelah:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:465
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:428
msgctxt "footnotesendnotestabpage|endprefix_label"
msgid "Be_fore:"
msgstr "_Sebelum:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:500
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:458
msgctxt "footnotesendnotestabpage|label2"
msgid "Endnotes"
msgstr "Catatan akhir"
@@ -9342,27 +9342,27 @@ msgctxt "formatsectiondialog|notes"
msgid "Footnotes/Endnotes"
msgstr "Catatan kaki/catatan akhir"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:63
+#: sw/uiconfig/swriter/ui/formattablepage.ui:77
msgctxt "formattablepage|nameft"
msgid "_Name"
msgstr "_Nama"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:79
+#: sw/uiconfig/swriter/ui/formattablepage.ui:91
msgctxt "formattablepage|widthft"
msgid "W_idth"
msgstr "_Lebar"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:110
+#: sw/uiconfig/swriter/ui/formattablepage.ui:120
msgctxt "formattablepage|relwidth"
msgid "Relati_ve"
msgstr "Relati_f"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:155
+#: sw/uiconfig/swriter/ui/formattablepage.ui:160
msgctxt "formattablepage|label45"
msgid "Properties"
msgstr "Properti"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:194
+#: sw/uiconfig/swriter/ui/formattablepage.ui:195
msgctxt "formattablepage|leftft"
msgid "Lef_t"
msgstr "Ki_ri"
@@ -9372,62 +9372,62 @@ msgctxt "formattablepage|rightft"
msgid "Ri_ght"
msgstr "Kana_n"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:228
+#: sw/uiconfig/swriter/ui/formattablepage.ui:226
msgctxt "formattablepage|aboveft"
msgid "_Above"
msgstr "_Atas"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:245
+#: sw/uiconfig/swriter/ui/formattablepage.ui:241
msgctxt "formattablepage|belowft"
msgid "_Below"
msgstr "_Bawah"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:320
+#: sw/uiconfig/swriter/ui/formattablepage.ui:311
msgctxt "formattablepage|label46"
msgid "Spacing"
msgstr "Jarak"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:362
+#: sw/uiconfig/swriter/ui/formattablepage.ui:349
msgctxt "formattablepage|full"
msgid "A_utomatic"
msgstr "Otomat_is"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:380
+#: sw/uiconfig/swriter/ui/formattablepage.ui:365
msgctxt "formattablepage|left"
msgid "_Left"
msgstr "_Kiri"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:398
+#: sw/uiconfig/swriter/ui/formattablepage.ui:381
msgctxt "formattablepage|fromleft"
msgid "_From left"
msgstr "_Dari kiri"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:416
+#: sw/uiconfig/swriter/ui/formattablepage.ui:397
msgctxt "formattablepage|right"
msgid "R_ight"
msgstr "K_anan"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:435
+#: sw/uiconfig/swriter/ui/formattablepage.ui:413
msgctxt "formattablepage|center"
msgid "_Center"
msgstr "Ten_gah"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:453
+#: sw/uiconfig/swriter/ui/formattablepage.ui:429
msgctxt "formattablepage|free"
msgid "_Manual"
msgstr "_Manual"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:478
+#: sw/uiconfig/swriter/ui/formattablepage.ui:452
msgctxt "formattablepage|label43"
msgid "Alignment"
msgstr "Perataan"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:522
+#: sw/uiconfig/swriter/ui/formattablepage.ui:491
msgctxt "formattablepage|label53"
msgid "Text _direction"
msgstr "Arah te_ks"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:553
+#: sw/uiconfig/swriter/ui/formattablepage.ui:519
msgctxt "formattablepage|label44"
msgid "Properties "
msgstr "Properti "
@@ -9782,22 +9782,27 @@ msgctxt "headerfootermenu|insert_pagenumber"
msgid "Insert Page Number"
msgstr ""
-#: sw/uiconfig/swriter/ui/indentpage.ui:52
+#: sw/uiconfig/swriter/ui/headerfootermenu.ui:42
+msgctxt "headerfootermenu|insert_pagecount"
+msgid "Insert Page Count"
+msgstr ""
+
+#: sw/uiconfig/swriter/ui/indentpage.ui:57
msgctxt "indentpage|label1"
msgid "_Before section"
msgstr "Se_belum seksi"
-#: sw/uiconfig/swriter/ui/indentpage.ui:67
+#: sw/uiconfig/swriter/ui/indentpage.ui:71
msgctxt "indentpage|label3"
msgid "_After section"
msgstr "Setel_ah seksi"
-#: sw/uiconfig/swriter/ui/indentpage.ui:113
+#: sw/uiconfig/swriter/ui/indentpage.ui:115
msgctxt "indentpage|label2"
msgid "Indent"
msgstr "Indentasi"
-#: sw/uiconfig/swriter/ui/indentpage.ui:142
+#: sw/uiconfig/swriter/ui/indentpage.ui:155
msgctxt "indentpage|preview-atkobject"
msgid "Example"
msgstr "Contoh"
@@ -13308,7 +13313,7 @@ msgstr "Lindungi dari"
#: sw/uiconfig/swriter/ui/optcompatpage.ui:68
msgctxt "optcompatpage|format"
-msgid "MS Word-compatible trailing blanks"
+msgid "Word-compatible trailing blanks"
msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:69
@@ -13318,7 +13323,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:70
msgctxt "optcompatpage|format"
-msgid "A database field (e.g., MailMerge) with empty value hides its paragraph"
+msgid "Hide paragraphs of database fields (e.g., mail merge) with an empty value"
msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:71
@@ -16007,122 +16012,122 @@ msgctxt "tableproperties|background"
msgid "Background"
msgstr "Latar Belakang"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:25
-msgctxt "tabletextflowpage|liststore1"
-msgid "Horizontal"
-msgstr "Horisontal"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:29
-msgctxt "tabletextflowpage|liststore1"
-msgid "Vertical"
-msgstr "Vertikal"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:33
-msgctxt "tabletextflowpage|liststore1"
-msgid "Use superordinate object settings"
-msgstr "Pakai setelan objek superordinat"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:47
-msgctxt "tabletextflowpage|liststore2"
-msgid "Top"
-msgstr "Atas"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:51
-msgctxt "tabletextflowpage|liststore2"
-msgid "Centered"
-msgstr "Di Tengah"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:55
-msgctxt "tabletextflowpage|liststore2"
-msgid "Bottom"
-msgstr "Bawah"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:97
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:53
msgctxt "tabletextflowpage|break"
msgid "_Break"
msgstr "_Putus"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:112
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:68
msgctxt "tabletextflowpage|page"
msgid "_Page"
msgstr "_Halaman"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:132
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:87
msgctxt "tabletextflowpage|column"
msgid "Col_umn"
msgstr "Kol_om"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:151
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:106
msgctxt "tabletextflowpage|before"
msgid "Be_fore"
msgstr "_Sebelum"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:171
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:125
msgctxt "tabletextflowpage|after"
msgid "_After"
msgstr "Sesud_ah"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:203
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:158
msgctxt "tabletextflowpage|pagestyle"
msgid "With Page St_yle"
msgstr "Dengan Ga_ya Halaman"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:224
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:177
msgctxt "tabletextflowpage|pagenoft"
msgid "Page _number"
msgstr "_Nomor halaman"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:257
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:213
msgctxt "tabletextflowpage|pagestylelb-atkobject"
msgid "With Page Style"
msgstr "Dengan Gaya Halaman"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:274
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:230
msgctxt "tabletextflowpage|split"
msgid "Allow _table to split across pages and columns"
msgstr "Biarkan _tabel terbagi melewati halaman dan kolom"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:289
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:245
msgctxt "tabletextflowpage|splitrow"
msgid "Allow row to break a_cross pages and columns"
msgstr "Biarkan baris _terputus melewati halaman dan kolom"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:306
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:262
msgctxt "tabletextflowpage|keep"
msgid "_Keep with next paragraph"
msgstr "Re_katkan dengan paragraf selanjutnya"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:328
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:284
msgctxt "tabletextflowpage|label40"
msgid "Text _orientation"
msgstr "_Orientasi teks"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:361
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:298
+msgctxt "tabletextflowpage|liststore1"
+msgid "Horizontal"
+msgstr "Horisontal"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:299
+msgctxt "tabletextflowpage|liststore1"
+msgid "Vertical"
+msgstr "Vertikal"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:300
+msgctxt "tabletextflowpage|liststore1"
+msgid "Use superordinate object settings"
+msgstr "Pakai setelan objek superordinat"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:321
msgctxt "tabletextflowpage|headline"
msgid "R_epeat heading"
msgstr "U_langi tajuk"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:383
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:343
msgctxt "tabletextflowpage|label38"
msgid "The first "
msgstr "Pertama"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:396
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:356
msgctxt "tabletextflowpage|label39"
msgid "rows"
msgstr "baris"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:434
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:395
msgctxt "tabletextflowpage|label35"
msgid "Text Flow"
msgstr "Alur Teks"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:467
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:428
msgctxt "tabletextflowpage|label41"
msgid "_Vertical alignment"
msgstr "Perataan _vertikal"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:495
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:442
+msgctxt "tabletextflowpage|liststore2"
+msgid "Top"
+msgstr "Atas"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:443
+msgctxt "tabletextflowpage|liststore2"
+msgid "Centered"
+msgstr "Di Tengah"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:444
+msgctxt "tabletextflowpage|liststore2"
+msgid "Bottom"
+msgstr "Bawah"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:460
msgctxt "tabletextflowpage|label36"
msgid "Alignment"
msgstr "Perataan"
@@ -16904,8 +16909,8 @@ msgstr "Indeks Alfabetis"
#: sw/uiconfig/swriter/ui/tocindexpage.ui:58
msgctxt "tocindexpage|liststore1"
-msgid "Illustration Index"
-msgstr "Indeks Ilustrasi"
+msgid "Table of Figures"
+msgstr ""
#: sw/uiconfig/swriter/ui/tocindexpage.ui:62
msgctxt "tocindexpage|liststore1"
diff --git a/source/id/vcl/messages.po b/source/id/vcl/messages.po
index f7f085c548d..c9f1305bc90 100644
--- a/source/id/vcl/messages.po
+++ b/source/id/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: 2018-05-08 15:10+0200\n"
-"PO-Revision-Date: 2018-03-08 15:47+0000\n"
+"PO-Revision-Date: 2018-06-02 11:42+0000\n"
"Last-Translator: Andika Triwidada <andika@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: id\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1520524068.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1527939723.000000\n"
#. To translators: This is the first entry of a sequence of paper size names
#: vcl/inc/print.hrc:28
@@ -1239,7 +1239,7 @@ msgstr "Tata Letak Halaman"
#: vcl/uiconfig/ui/printdialog.ui:1457
msgctxt "printdialog|singleprintjob"
msgid "Create separate print jobs for collated output"
-msgstr ""
+msgstr "Buat tugas pencetakan terpisah untuk keluaran yang terkolasi"
#: vcl/uiconfig/ui/printdialog.ui:1472
msgctxt "printdialog|printpaperfromsetup"
diff --git a/source/id/writerperfect/messages.po b/source/id/writerperfect/messages.po
index 091e90c6889..02c2060a690 100644
--- a/source/id/writerperfect/messages.po
+++ b/source/id/writerperfect/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: 2018-05-16 16:54+0200\n"
-"PO-Revision-Date: 2018-03-08 15:54+0000\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
+"PO-Revision-Date: 2018-06-02 11:41+0000\n"
"Last-Translator: Andika Triwidada <andika@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: id\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1520524454.000000\n"
+"X-POOTLE-MTIME: 1527939683.000000\n"
#: writerperfect/inc/strings.hrc:15
msgctxt "STR_ENCODING_DIALOG_TITLE"
@@ -24,7 +24,7 @@ msgstr "Impor berkas"
#: writerperfect/inc/strings.hrc:16
msgctxt "STR_ENCODING_DIALOG_TITLE_MSMULTIPLAN"
msgid "Import MS Multiplan for DOS file"
-msgstr ""
+msgstr "Impor berkas MS Multiplan for DOS"
#: writerperfect/inc/strings.hrc:17
msgctxt "STR_ENCODING_DIALOG_TITLE_MSWORKS"
@@ -66,97 +66,97 @@ msgctxt "exportepub|generalft"
msgid "General"
msgstr "Umum"
-#: writerperfect/uiconfig/ui/exportepub.ui:122
+#: writerperfect/uiconfig/ui/exportepub.ui:121
msgctxt "exportepub|versionft"
msgid "Version:"
msgstr "Versi:"
-#: writerperfect/uiconfig/ui/exportepub.ui:139
+#: writerperfect/uiconfig/ui/exportepub.ui:138
msgctxt "exportepub|epub3"
msgid "EPUB 3.0"
msgstr "EPUB 3.0"
-#: writerperfect/uiconfig/ui/exportepub.ui:140
+#: writerperfect/uiconfig/ui/exportepub.ui:139
msgctxt "exportepub|epub2"
msgid "EPUB 2.0"
msgstr "EPUB 2.0"
-#: writerperfect/uiconfig/ui/exportepub.ui:175
+#: writerperfect/uiconfig/ui/exportepub.ui:174
msgctxt "exportepub|splitft"
msgid "Split method:"
msgstr "Metode belah:"
-#: writerperfect/uiconfig/ui/exportepub.ui:192
+#: writerperfect/uiconfig/ui/exportepub.ui:191
msgctxt "exportepub|splitpage"
msgid "Page break"
msgstr "Pemutus halaman"
-#: writerperfect/uiconfig/ui/exportepub.ui:193
+#: writerperfect/uiconfig/ui/exportepub.ui:192
msgctxt "exportepub|splitheading"
msgid "Heading"
msgstr "Tajuk"
-#: writerperfect/uiconfig/ui/exportepub.ui:228
+#: writerperfect/uiconfig/ui/exportepub.ui:227
msgctxt "exportepub|layoutft"
msgid "Layout method:"
msgstr "Metode tata letak:"
-#: writerperfect/uiconfig/ui/exportepub.ui:245
+#: writerperfect/uiconfig/ui/exportepub.ui:244
msgctxt "exportepub|layoutreflowable"
msgid "Reflowable"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:246
+#: writerperfect/uiconfig/ui/exportepub.ui:245
msgctxt "exportepub|layoutfixed"
msgid "Fixed"
msgstr "Tetap"
-#: writerperfect/uiconfig/ui/exportepub.ui:281
+#: writerperfect/uiconfig/ui/exportepub.ui:280
msgctxt "exportepub|coverimageft"
msgid "Custom cover image:"
msgstr "Citra sampul ubahan:"
-#: writerperfect/uiconfig/ui/exportepub.ui:311
+#: writerperfect/uiconfig/ui/exportepub.ui:310
msgctxt "exportepub|coverbutton"
msgid "Browse..."
msgstr "Ramban..."
-#: writerperfect/uiconfig/ui/exportepub.ui:355
+#: writerperfect/uiconfig/ui/exportepub.ui:354
msgctxt "exportepub|mediadirft"
msgid "Custom media directory:"
msgstr "Direktori media ubahan:"
-#: writerperfect/uiconfig/ui/exportepub.ui:385
+#: writerperfect/uiconfig/ui/exportepub.ui:384
msgctxt "exportepub|mediabutton"
msgid "Browse..."
msgstr "Ramban..."
-#: writerperfect/uiconfig/ui/exportepub.ui:429
+#: writerperfect/uiconfig/ui/exportepub.ui:428
msgctxt "exportepub|metadataft"
msgid "Metadata"
msgstr "Metadata"
-#: writerperfect/uiconfig/ui/exportepub.ui:470
+#: writerperfect/uiconfig/ui/exportepub.ui:468
msgctxt "exportepub|identifierft"
msgid "Identifier:"
msgstr "Identifier:"
-#: writerperfect/uiconfig/ui/exportepub.ui:485
+#: writerperfect/uiconfig/ui/exportepub.ui:483
msgctxt "exportepub|titleft"
msgid "Title:"
msgstr "Judul:"
-#: writerperfect/uiconfig/ui/exportepub.ui:511
+#: writerperfect/uiconfig/ui/exportepub.ui:509
msgctxt "exportepub|authorft"
msgid "Author:"
msgstr "Pengarang"
-#: writerperfect/uiconfig/ui/exportepub.ui:537
+#: writerperfect/uiconfig/ui/exportepub.ui:535
msgctxt "exportepub|languageft"
msgid "Language:"
msgstr "Bahasa:"
-#: writerperfect/uiconfig/ui/exportepub.ui:563
+#: writerperfect/uiconfig/ui/exportepub.ui:561
msgctxt "exportepub|dateft"
msgid "Date:"
msgstr "Tanggal:"
diff --git a/source/id/xmlsecurity/messages.po b/source/id/xmlsecurity/messages.po
index 9cf8396c738..cf3c3bc92b3 100644
--- a/source/id/xmlsecurity/messages.po
+++ b/source/id/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: 2018-05-22 13:17+0200\n"
-"PO-Revision-Date: 2018-03-08 15:46+0000\n"
+"PO-Revision-Date: 2018-06-02 11:40+0000\n"
"Last-Translator: Andika Triwidada <andika@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: id\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1520524003.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1527939657.000000\n"
#: xmlsecurity/inc/strings.hrc:25
msgctxt "STR_CERTIFICATE_NOT_VALIDATED"
@@ -460,7 +460,7 @@ msgstr "Tanda Tangan"
#: xmlsecurity/uiconfig/ui/selectcertificatedialog.ui:194
msgctxt "selectcertificatedialog|str_selectsign"
msgid "Select"
-msgstr ""
+msgstr "Pilih"
#: xmlsecurity/uiconfig/ui/selectcertificatedialog.ui:199
msgctxt "selectcertificatedialog|str_encrypt"
diff --git a/source/is/chart2/messages.po b/source/is/chart2/messages.po
index dbfafe12bf4..37e71d1206a 100644
--- a/source/is/chart2/messages.po
+++ b/source/is/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: 2018-05-22 13:16+0200\n"
-"PO-Revision-Date: 2017-10-06 07:32+0000\n"
+"PO-Revision-Date: 2018-05-29 08:37+0000\n"
"Last-Translator: Sveinn í Felli <sv1@fellsnet.is>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: is\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1507275166.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1527583072.000000\n"
#: chart2/inc/strings.hrc:24
msgctxt "STR_DLG_CHART_WIZARD"
@@ -34,7 +34,7 @@ msgstr "Stallaðar línur"
#: chart2/inc/strings.hrc:27
msgctxt "STR_DLG_REMOVE_DATA_TABLE"
msgid "This chart currently contains an internal data table. Do you want to proceed, deleting the internal data table, and set a new data range?"
-msgstr ""
+msgstr "Þetta graf inniheldur innri gagnatöflu. Viltu halda áfram, eyða þessari innri gagnatöflu og setja nýtt gagnasvið?"
#: chart2/inc/strings.hrc:28
msgctxt "STR_PAGE_CHARTTYPE"
diff --git a/source/is/cui/messages.po b/source/is/cui/messages.po
index f20025809a7..681bd5986c3 100644
--- a/source/is/cui/messages.po
+++ b/source/is/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: 2018-05-22 13:16+0200\n"
-"PO-Revision-Date: 2018-04-25 13:24+0000\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
+"PO-Revision-Date: 2018-05-31 10:51+0000\n"
"Last-Translator: Sveinn í Felli <sv1@fellsnet.is>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: is\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1524662667.000000\n"
+"X-POOTLE-MTIME: 1527763906.000000\n"
#: cui/inc/personalization.hrc:31
msgctxt "RID_SVXSTR_PERSONA_CATEGORIES"
@@ -400,7 +400,7 @@ msgstr "Fjarlægja úr Eftirlæti"
#: cui/inc/strings.hrc:100
msgctxt "RID_SVXSTR_MISSING_GLYPH"
msgid "Missing Glyph"
-msgstr ""
+msgstr "Vantar staftákn"
#: cui/inc/strings.hrc:101
msgctxt "RID_SVXSTR_ADD_FAVORITES"
@@ -1693,7 +1693,7 @@ msgstr "Varpa skugga efst til vinstri"
#: cui/inc/strings.hrc:386
msgctxt "RID_SVXSTR_SIGNATURELINE_SIGNED_BY"
msgid "Signed by: %1"
-msgstr ""
+msgstr "Undirritað af: %1"
#: cui/inc/treeopt.hrc:30
msgctxt "SID_GENERAL_OPTIONS_RES"
@@ -2188,7 +2188,7 @@ msgstr "%PRODUCTNAME er hópur nútímalegra, auðveldra, frjálsra framleiðnia
#: cui/uiconfig/ui/aboutdialog.ui:214
msgctxt "aboutdialog|copyright"
msgid "Copyright © 2000–2018 LibreOffice contributors."
-msgstr ""
+msgstr "Höfundarréttur © 2000 - 2018, þátttakendur í LibreOffice."
#: cui/uiconfig/ui/aboutdialog.ui:228
msgctxt "aboutdialog|libreoffice"
@@ -2508,17 +2508,17 @@ msgstr "Gegnsæi"
#: cui/uiconfig/ui/areatabpage.ui:32
msgctxt "areatabpage|tablelb"
msgid "Cell"
-msgstr ""
+msgstr "Reitur"
#: cui/uiconfig/ui/areatabpage.ui:33
msgctxt "areatabpage|tablelb"
msgid "Row"
-msgstr ""
+msgstr "Röð"
#: cui/uiconfig/ui/areatabpage.ui:34
msgctxt "areatabpage|tablelb"
msgid "Table"
-msgstr ""
+msgstr "Tafla"
#: cui/uiconfig/ui/areatabpage.ui:45
msgctxt "areatabpage|btnnone"
@@ -2563,7 +2563,7 @@ msgstr "Leyfa hangandi greinarmerkjasetningu"
#: cui/uiconfig/ui/asiantypography.ui:59
msgctxt "asiantypography|checkApplySpacing"
msgid "Apply spacing between Asian and non-Asian text"
-msgstr ""
+msgstr "Setja bil á milli asísks og ekki-asísks texta"
#: cui/uiconfig/ui/asiantypography.ui:82
msgctxt "asiantypography|labelLineChange"
@@ -2808,7 +2808,7 @@ msgstr "Stíll:"
#: cui/uiconfig/ui/bitmaptabpage.ui:126
msgctxt "bitmaptabpage|bitmapstyle"
msgid "Custom position/size"
-msgstr ""
+msgstr "Sérsniðin staða/stærð"
#: cui/uiconfig/ui/bitmaptabpage.ui:127
msgctxt "bitmaptabpage|bitmapstyle"
@@ -3703,22 +3703,22 @@ msgstr "Bakgrunnur minnispunkta"
#: cui/uiconfig/ui/colorconfigwin.ui:816
msgctxt "colorconfigwin|values"
msgid "Values"
-msgstr ""
+msgstr "Gildi"
#: cui/uiconfig/ui/colorconfigwin.ui:839
msgctxt "colorconfigwin|formulas"
msgid "Formulas"
-msgstr ""
+msgstr "Formúlur"
#: cui/uiconfig/ui/colorconfigwin.ui:862
msgctxt "colorconfigwin|text"
msgid "Text"
-msgstr ""
+msgstr "Texti"
#: cui/uiconfig/ui/colorconfigwin.ui:885
msgctxt "colorconfigwin|protectedcells"
msgid "Protected cells background"
-msgstr ""
+msgstr "Velja bakgrunn reita"
#: cui/uiconfig/ui/colorconfigwin.ui:897
msgctxt "colorconfigwin|draw"
@@ -6518,37 +6518,37 @@ msgstr "Lýsing"
#: cui/uiconfig/ui/menuassignpage.ui:13
msgctxt "menuassignpage|gear_add"
msgid "_Add..."
-msgstr ""
+msgstr "Bæt_a við..."
#: cui/uiconfig/ui/menuassignpage.ui:21
msgctxt "menuassignpage|gear_delete"
msgid "_Delete"
-msgstr ""
+msgstr "_Eyða"
#: cui/uiconfig/ui/menuassignpage.ui:29
msgctxt "menuassignpage|gear_rename"
msgid "_Rename..."
-msgstr ""
+msgstr "_Endurnefna..."
#: cui/uiconfig/ui/menuassignpage.ui:37
msgctxt "menuassignpage|gear_move"
msgid "_Move..."
-msgstr ""
+msgstr "_Færa:"
#: cui/uiconfig/ui/menuassignpage.ui:51
msgctxt "menuassignpage|gear_iconAndText"
msgid "_Icon and text"
-msgstr ""
+msgstr "Táknmynd og text_i"
#: cui/uiconfig/ui/menuassignpage.ui:59
msgctxt "menuassignpage|gear_iconOnly"
msgid "Icon _only"
-msgstr ""
+msgstr "Einungis táknm_ynd"
#: cui/uiconfig/ui/menuassignpage.ui:67
msgctxt "menuassignpage|gear_textOnly"
msgid "_Text only"
-msgstr ""
+msgstr "E_inungis texti"
#: cui/uiconfig/ui/menuassignpage.ui:119
msgctxt "menuassignpage|contentslabel"
@@ -6563,7 +6563,7 @@ msgstr "Hjálpin er ekki uppsett á tölvunni."
#: cui/uiconfig/ui/menuassignpage.ui:157
msgctxt "menuassignpage|label33"
msgid "D_escription"
-msgstr ""
+msgstr "Lýsin_g"
#: cui/uiconfig/ui/menuassignpage.ui:191
msgctxt "menuassignpage|contentslabel"
@@ -6613,7 +6613,7 @@ msgstr "Sjálf_gefin gildi"
#: cui/uiconfig/ui/menuassignpage.ui:417
msgctxt "menuassignpage|defaultsbtn"
msgid "Resets the selected toolbar, menu, or context menu to its default state."
-msgstr ""
+msgstr "Endurstillir valda verkfærastiku, valmynd eða samhengisvalmynd á upphafleg sjálfgefin gildi."
#: cui/uiconfig/ui/menuassignpage.ui:451
msgctxt "menuassignpage|add"
@@ -6628,32 +6628,32 @@ msgstr "Fjarlægja atriði"
#: cui/uiconfig/ui/menuassignpage.ui:518
msgctxt "menuassignpage|moveupbtn"
msgid "Move up"
-msgstr ""
+msgstr "Færa upp"
#: cui/uiconfig/ui/menuassignpage.ui:531
msgctxt "menuassignpage|movedownbtn"
msgid "Move down"
-msgstr ""
+msgstr "Færa niður"
#: cui/uiconfig/ui/menuassignpage.ui:550
msgctxt "menuassignpage|scopelabel"
msgid "S_cope"
-msgstr ""
+msgstr "Um_fang"
#: cui/uiconfig/ui/menuassignpage.ui:563
msgctxt "menuassignpage|targetlabel"
msgid "_Target"
-msgstr ""
+msgstr "_Markmið"
#: cui/uiconfig/ui/menuassignpage.ui:576
msgctxt "menuassignpage|functionlabel"
msgid "F_unction"
-msgstr ""
+msgstr "Fa_ll"
#: cui/uiconfig/ui/menuassignpage.ui:589
msgctxt "menuassignpage|customizelabel"
msgid "_Customize"
-msgstr ""
+msgstr "_Sérsníða"
#: cui/uiconfig/ui/menuassignpage.ui:671
msgctxt "menuassignpage|insertseparator"
@@ -6903,7 +6903,7 @@ msgstr "Fjarlægja"
#: cui/uiconfig/ui/numberingformatpage.ui:180
msgctxt "numberingformatpage|commented|tooltip_text"
msgid "Comment"
-msgstr ""
+msgstr "Athugasemd"
#: cui/uiconfig/ui/numberingformatpage.ui:196
msgctxt "numberingformatpage|formatf"
@@ -9872,97 +9872,97 @@ msgctxt "positionsizedialog|PositionAndSizeDialog"
msgid "Position and Size"
msgstr "Staða og stærð"
-#: cui/uiconfig/ui/positionsizedialog.ui:107
+#: cui/uiconfig/ui/positionsizedialog.ui:136
msgctxt "positionsizedialog|RID_SVXPAGE_POSITION_SIZE"
msgid "Position and Size"
msgstr "Staða og stærð"
-#: cui/uiconfig/ui/positionsizedialog.ui:129
+#: cui/uiconfig/ui/positionsizedialog.ui:182
msgctxt "positionsizedialog|RID_SVXPAGE_SWPOSSIZE"
msgid "Position and Size"
msgstr "Staða og stærð"
-#: cui/uiconfig/ui/positionsizedialog.ui:152
+#: cui/uiconfig/ui/positionsizedialog.ui:229
msgctxt "positionsizedialog|RID_SVXPAGE_ANGLE"
msgid "Rotation"
msgstr "Snúningur"
-#: cui/uiconfig/ui/positionsizedialog.ui:175
+#: cui/uiconfig/ui/positionsizedialog.ui:276
msgctxt "positionsizedialog|RID_SVXPAGE_SLANT"
msgid "Slant & Corner Radius"
msgstr "Skekkja og hornradíus"
-#: cui/uiconfig/ui/possizetabpage.ui:40
+#: cui/uiconfig/ui/possizetabpage.ui:61
msgctxt "possizetabpage|FT_POS_X"
msgid "Position _X:"
msgstr "Staðsetning _X:"
-#: cui/uiconfig/ui/possizetabpage.ui:56
+#: cui/uiconfig/ui/possizetabpage.ui:75
msgctxt "possizetabpage|FT_POS_Y"
msgid "Position _Y:"
msgstr "Staðsetning _Y:"
-#: cui/uiconfig/ui/possizetabpage.ui:110
+#: cui/uiconfig/ui/possizetabpage.ui:128
msgctxt "possizetabpage|FT_POSREFERENCE"
msgid "_Base point:"
msgstr "_Grunnpunktur:"
-#: cui/uiconfig/ui/possizetabpage.ui:148
+#: cui/uiconfig/ui/possizetabpage.ui:182
msgctxt "possizetabpage|label1"
msgid "Position"
msgstr "Staðsetning"
-#: cui/uiconfig/ui/possizetabpage.ui:190
+#: cui/uiconfig/ui/possizetabpage.ui:224
msgctxt "possizetabpage|FT_WIDTH"
msgid "Wi_dth:"
msgstr "_Breidd:"
-#: cui/uiconfig/ui/possizetabpage.ui:206
+#: cui/uiconfig/ui/possizetabpage.ui:238
msgctxt "possizetabpage|FT_HEIGHT"
msgid "H_eight:"
msgstr "_Hæð:"
-#: cui/uiconfig/ui/possizetabpage.ui:247
+#: cui/uiconfig/ui/possizetabpage.ui:276
msgctxt "possizetabpage|CBX_SCALE"
msgid "_Keep ratio"
msgstr "Hal_da hlutföllum"
-#: cui/uiconfig/ui/possizetabpage.ui:279
+#: cui/uiconfig/ui/possizetabpage.ui:307
msgctxt "possizetabpage|FT_SIZEREFERENCE"
msgid "Base _point:"
msgstr "Grunn_punktur:"
-#: cui/uiconfig/ui/possizetabpage.ui:317
+#: cui/uiconfig/ui/possizetabpage.ui:361
msgctxt "possizetabpage|label2"
msgid "Size"
msgstr "Stærð"
-#: cui/uiconfig/ui/possizetabpage.ui:356
+#: cui/uiconfig/ui/possizetabpage.ui:401
msgctxt "possizetabpage|TSB_POSPROTECT"
msgid "Positio_n"
msgstr "Staðset_ning"
-#: cui/uiconfig/ui/possizetabpage.ui:373
+#: cui/uiconfig/ui/possizetabpage.ui:418
msgctxt "possizetabpage|TSB_SIZEPROTECT"
msgid "_Size"
msgstr "_Stærð"
-#: cui/uiconfig/ui/possizetabpage.ui:397
+#: cui/uiconfig/ui/possizetabpage.ui:441
msgctxt "possizetabpage|label3"
msgid "Protect"
msgstr "Vernda"
-#: cui/uiconfig/ui/possizetabpage.ui:430
+#: cui/uiconfig/ui/possizetabpage.ui:475
msgctxt "possizetabpage|TSB_AUTOGROW_WIDTH"
msgid "_Fit width to text"
msgstr "Aðlaga _breidd að texta"
-#: cui/uiconfig/ui/possizetabpage.ui:447
+#: cui/uiconfig/ui/possizetabpage.ui:492
msgctxt "possizetabpage|TSB_AUTOGROW_HEIGHT"
msgid "Fit _height to text"
msgstr "Aðlaga _hæð að texta"
-#: cui/uiconfig/ui/possizetabpage.ui:471
+#: cui/uiconfig/ui/possizetabpage.ui:515
msgctxt "possizetabpage|label4"
msgid "Adapt"
msgstr "Aðlaga"
@@ -10162,47 +10162,47 @@ msgctxt "recordnumberdialog|label2"
msgid "go to record"
msgstr "fara á færslu"
-#: cui/uiconfig/ui/rotationtabpage.ui:52
+#: cui/uiconfig/ui/rotationtabpage.ui:56
msgctxt "rotationtabpage|FT_POS_X"
msgid "Position _X:"
msgstr "Staðsetning _X:"
-#: cui/uiconfig/ui/rotationtabpage.ui:66
+#: cui/uiconfig/ui/rotationtabpage.ui:70
msgctxt "rotationtabpage|FT_POS_Y"
msgid "Position _Y:"
msgstr "Staðsetning _Y:"
-#: cui/uiconfig/ui/rotationtabpage.ui:116
+#: cui/uiconfig/ui/rotationtabpage.ui:123
msgctxt "rotationtabpage|FT_POSPRESETS"
msgid "_Default settings:"
msgstr "Sjálf_gefnar stillingar:"
-#: cui/uiconfig/ui/rotationtabpage.ui:130
+#: cui/uiconfig/ui/rotationtabpage.ui:151
msgctxt "rotationtabpage|CTL_RECT|tooltip_text"
msgid "Rotation point"
msgstr "Snúningspunktur"
-#: cui/uiconfig/ui/rotationtabpage.ui:155
+#: cui/uiconfig/ui/rotationtabpage.ui:178
msgctxt "rotationtabpage|label1"
msgid "Pivot Point"
msgstr "Veltipunktur"
-#: cui/uiconfig/ui/rotationtabpage.ui:197
+#: cui/uiconfig/ui/rotationtabpage.ui:220
msgctxt "rotationtabpage|FT_ANGLE"
msgid "_Angle:"
msgstr "H_orn:"
-#: cui/uiconfig/ui/rotationtabpage.ui:238
+#: cui/uiconfig/ui/rotationtabpage.ui:263
msgctxt "rotationtabpage|FT_ANGLEPRESETS"
msgid "Default _settings:"
msgstr "_Sjálfgefnar stillingar:"
-#: cui/uiconfig/ui/rotationtabpage.ui:252
+#: cui/uiconfig/ui/rotationtabpage.ui:287
msgctxt "rotationtabpage|CTL_ANGLE|tooltip_text"
msgid "Rotation Angle"
msgstr "Snúningshorn"
-#: cui/uiconfig/ui/rotationtabpage.ui:277
+#: cui/uiconfig/ui/rotationtabpage.ui:314
msgctxt "rotationtabpage|label2"
msgid "Rotation Angle"
msgstr "Snúningshorn"
@@ -10450,112 +10450,112 @@ msgstr "Eftirtaldir dálkar eru faldir. Merktu við þau svæði sem þú vilt b
#: cui/uiconfig/ui/signatureline.ui:8
msgctxt "signatureline|SignatureLineDialog"
msgid "Signature Line"
-msgstr ""
+msgstr "Undirskriftarlína"
#: cui/uiconfig/ui/signatureline.ui:111
msgctxt "signatureline|edit_name"
msgid "John Doe"
-msgstr ""
+msgstr "Jón Jónsson"
#: cui/uiconfig/ui/signatureline.ui:124
msgctxt "signatureline|edit_title"
msgid "Director"
-msgstr ""
+msgstr "Leikstjóri"
#: cui/uiconfig/ui/signatureline.ui:137
msgctxt "signatureline|edit_email"
msgid "john.doe@example.org"
-msgstr ""
+msgstr "notandi@vefur.is"
#. Suggested Signer Name
#: cui/uiconfig/ui/signatureline.ui:149
msgctxt "signatureline|label_name"
msgid "Name:"
-msgstr ""
+msgstr "Nafn:"
#. Suggested Signer Title
#: cui/uiconfig/ui/signatureline.ui:163
msgctxt "signatureline|label_title"
msgid "Title:"
-msgstr ""
+msgstr "Titill:"
#. Suggested Signer email
#: cui/uiconfig/ui/signatureline.ui:177
msgctxt "signatureline|label_email"
msgid "Email:"
-msgstr ""
+msgstr "Tölvupóstfang:"
#: cui/uiconfig/ui/signatureline.ui:194
msgctxt "signatureline|label_suggestedsigner"
msgid "Suggested Signer"
-msgstr ""
+msgstr "Tillaga að því hver undirriti"
#: cui/uiconfig/ui/signatureline.ui:228
msgctxt "signatureline|checkbox_can_add_comments"
msgid "Signer can add comments"
-msgstr ""
+msgstr "Undirritari getur bætt við athugasemdum"
#: cui/uiconfig/ui/signatureline.ui:243
msgctxt "signatureline|checkbox_show_sign_date"
msgid "Show sign date in signature line"
-msgstr ""
+msgstr "Sýna dagsetningu undirritunar í undirskriftarlínu"
#: cui/uiconfig/ui/signatureline.ui:261
msgctxt "signatureline|label_instructions"
msgid "Instructions to the signer:"
-msgstr ""
+msgstr "Leiðbeiningar til undirritara:"
#: cui/uiconfig/ui/signatureline.ui:300
msgctxt "signatureline|label_more"
msgid "More"
-msgstr ""
+msgstr "Meira"
#: cui/uiconfig/ui/signsignatureline.ui:8
msgctxt "signsignatureline|SignSignatureLineDialog"
msgid "Sign Signature Line"
-msgstr ""
+msgstr "Undirrita undirskriftarlínu"
#: cui/uiconfig/ui/signsignatureline.ui:113
msgctxt "signsignatureline|edit_name"
msgid "Type your name here"
-msgstr ""
+msgstr "Skrifaðu nafnið þitt hér"
#. Name of the signer
#: cui/uiconfig/ui/signsignatureline.ui:125
msgctxt "signsignatureline|label_name"
msgid "Your Name:"
-msgstr ""
+msgstr "Nafnið þitt:"
#. Certificate to be used for signing
#: cui/uiconfig/ui/signsignatureline.ui:139
msgctxt "signsignatureline|label_certificate"
msgid "Certificate:"
-msgstr ""
+msgstr "Skilríki:"
#: cui/uiconfig/ui/signsignatureline.ui:150
msgctxt "signsignatureline|btn_select_certificate"
msgid "Select Certificate"
-msgstr ""
+msgstr "Veldu skilríki"
#: cui/uiconfig/ui/signsignatureline.ui:168
msgctxt "signsignatureline|label_sign"
msgid "Sign"
-msgstr ""
+msgstr "Undirritun"
#: cui/uiconfig/ui/signsignatureline.ui:205
msgctxt "signsignatureline|label_add_comment"
msgid "Add comment:"
-msgstr ""
+msgstr "Bæta við athugasemd:"
#: cui/uiconfig/ui/signsignatureline.ui:241
msgctxt "signsignatureline|label_hint"
msgid "Instructions from the document creator:"
-msgstr ""
+msgstr "Leiðbeiningar frá höfundi skjalsins:"
#: cui/uiconfig/ui/signsignatureline.ui:274
msgctxt "signsignatureline|label_more"
msgid "More"
-msgstr ""
+msgstr "Meira"
#: cui/uiconfig/ui/similaritysearchdialog.ui:26
msgctxt "similaritysearchdialog|SimilaritySearchDialog"
@@ -10582,52 +10582,52 @@ msgctxt "similaritysearchdialog|relaxbox"
msgid "_Combine"
msgstr "Sa_meina"
-#: cui/uiconfig/ui/slantcornertabpage.ui:50
+#: cui/uiconfig/ui/slantcornertabpage.ui:70
msgctxt "slantcornertabpage|label5"
msgid "_X:"
msgstr "_X:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:88
+#: cui/uiconfig/ui/slantcornertabpage.ui:110
msgctxt "slantcornertabpage|label6"
msgid "_Y:"
msgstr "_Y:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:125
+#: cui/uiconfig/ui/slantcornertabpage.ui:149
msgctxt "slantcornertabpage|label3"
msgid "Control Point 1"
msgstr "Stýripunktur 1"
-#: cui/uiconfig/ui/slantcornertabpage.ui:159
+#: cui/uiconfig/ui/slantcornertabpage.ui:183
msgctxt "slantcornertabpage|FT_RADIUS"
msgid "_Radius:"
msgstr "_Radíus:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:189
+#: cui/uiconfig/ui/slantcornertabpage.ui:214
msgctxt "slantcornertabpage|label1"
msgid "Corner Radius"
msgstr "Radíus horns"
-#: cui/uiconfig/ui/slantcornertabpage.ui:223
+#: cui/uiconfig/ui/slantcornertabpage.ui:248
msgctxt "slantcornertabpage|FT_ANGLE"
msgid "_Angle:"
msgstr "H_orn:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:253
+#: cui/uiconfig/ui/slantcornertabpage.ui:279
msgctxt "slantcornertabpage|label2"
msgid "Slant"
msgstr "Hallandi"
-#: cui/uiconfig/ui/slantcornertabpage.ui:294
+#: cui/uiconfig/ui/slantcornertabpage.ui:320
msgctxt "slantcornertabpage|label4"
msgid "_X:"
msgstr "_X:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:332
+#: cui/uiconfig/ui/slantcornertabpage.ui:360
msgctxt "slantcornertabpage|label7"
msgid "_Y:"
msgstr "_Y:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:369
+#: cui/uiconfig/ui/slantcornertabpage.ui:399
msgctxt "slantcornertabpage|label8"
msgid "Control Point 2"
msgstr "Stýripunktur 2"
@@ -10907,112 +10907,112 @@ msgctxt "storedwebconnectiondialog|change"
msgid "_Change Password..."
msgstr "_Breyta lykilorði..."
-#: cui/uiconfig/ui/swpossizepage.ui:74
+#: cui/uiconfig/ui/swpossizepage.ui:85
msgctxt "swpossizepage|widthft"
msgid "_Width:"
msgstr "_Breidd:"
-#: cui/uiconfig/ui/swpossizepage.ui:111
+#: cui/uiconfig/ui/swpossizepage.ui:123
msgctxt "swpossizepage|heightft"
msgid "H_eight:"
msgstr "_Hæð:"
-#: cui/uiconfig/ui/swpossizepage.ui:128
+#: cui/uiconfig/ui/swpossizepage.ui:141
msgctxt "swpossizepage|ratio"
msgid "_Keep ratio"
msgstr "Hal_da hlutföllum"
-#: cui/uiconfig/ui/swpossizepage.ui:149
+#: cui/uiconfig/ui/swpossizepage.ui:162
msgctxt "swpossizepage|label2"
msgid "Size"
msgstr "Stærð"
-#: cui/uiconfig/ui/swpossizepage.ui:205
+#: cui/uiconfig/ui/swpossizepage.ui:218
msgctxt "swpossizepage|topage"
msgid "To _page"
msgstr "Að _síðu"
-#: cui/uiconfig/ui/swpossizepage.ui:222
+#: cui/uiconfig/ui/swpossizepage.ui:234
msgctxt "swpossizepage|topara"
msgid "To paragrap_h"
msgstr "Í _málsgrein"
-#: cui/uiconfig/ui/swpossizepage.ui:238
+#: cui/uiconfig/ui/swpossizepage.ui:250
msgctxt "swpossizepage|tochar"
msgid "To cha_racter"
msgstr "Á sta_f"
-#: cui/uiconfig/ui/swpossizepage.ui:254
+#: cui/uiconfig/ui/swpossizepage.ui:266
msgctxt "swpossizepage|aschar"
msgid "_As character"
msgstr "Sem st_afur"
-#: cui/uiconfig/ui/swpossizepage.ui:270
+#: cui/uiconfig/ui/swpossizepage.ui:282
msgctxt "swpossizepage|toframe"
msgid "To _frame"
msgstr "Að ra_mma"
-#: cui/uiconfig/ui/swpossizepage.ui:292
+#: cui/uiconfig/ui/swpossizepage.ui:304
msgctxt "swpossizepage|label1"
msgid "Anchor"
msgstr "Festipunktur"
-#: cui/uiconfig/ui/swpossizepage.ui:333
+#: cui/uiconfig/ui/swpossizepage.ui:344
msgctxt "swpossizepage|horiposft"
msgid "Hori_zontal:"
msgstr "_Lárétt:"
-#: cui/uiconfig/ui/swpossizepage.ui:347
+#: cui/uiconfig/ui/swpossizepage.ui:358
msgctxt "swpossizepage|horibyft"
msgid "b_y:"
msgstr "u_m:"
-#: cui/uiconfig/ui/swpossizepage.ui:361
+#: cui/uiconfig/ui/swpossizepage.ui:372
msgctxt "swpossizepage|vertbyft"
msgid "_by:"
msgstr "_um:"
-#: cui/uiconfig/ui/swpossizepage.ui:375
+#: cui/uiconfig/ui/swpossizepage.ui:386
msgctxt "swpossizepage|horitoft"
msgid "_to:"
msgstr "_til:"
-#: cui/uiconfig/ui/swpossizepage.ui:421
+#: cui/uiconfig/ui/swpossizepage.ui:433
msgctxt "swpossizepage|vertposft"
msgid "_Vertical:"
msgstr "Lóð_rétt:"
-#: cui/uiconfig/ui/swpossizepage.ui:457
+#: cui/uiconfig/ui/swpossizepage.ui:470
msgctxt "swpossizepage|verttoft"
msgid "t_o:"
msgstr "t_il:"
-#: cui/uiconfig/ui/swpossizepage.ui:478
+#: cui/uiconfig/ui/swpossizepage.ui:492
msgctxt "swpossizepage|mirror"
msgid "_Mirror on even pages"
msgstr "Spegla á _jafntölusíðum"
-#: cui/uiconfig/ui/swpossizepage.ui:495
+#: cui/uiconfig/ui/swpossizepage.ui:509
msgctxt "swpossizepage|followtextflow"
msgid "Follow te_xt flow"
msgstr "Fylgja te_xtaflæði"
-#: cui/uiconfig/ui/swpossizepage.ui:518
+#: cui/uiconfig/ui/swpossizepage.ui:532
msgctxt "swpossizepage|label11"
msgid "Position"
msgstr "Staðsetning"
-#: cui/uiconfig/ui/swpossizepage.ui:549
+#: cui/uiconfig/ui/swpossizepage.ui:563
msgctxt "swpossizepage|pos"
msgid "Positio_n"
msgstr "Staðset_ning"
-#: cui/uiconfig/ui/swpossizepage.ui:565
+#: cui/uiconfig/ui/swpossizepage.ui:579
msgctxt "swpossizepage|size"
msgid "_Size"
msgstr "_Stærð"
-#: cui/uiconfig/ui/swpossizepage.ui:587
+#: cui/uiconfig/ui/swpossizepage.ui:601
msgctxt "swpossizepage|label3"
msgid "Protect"
msgstr "Vernda"
@@ -11202,12 +11202,12 @@ msgctxt "textattrtabpage|label2"
msgid "Spacing to Borders"
msgstr "Bil að jöðrum"
-#: cui/uiconfig/ui/textattrtabpage.ui:425
+#: cui/uiconfig/ui/textattrtabpage.ui:423
msgctxt "textattrtabpage|TSB_FULL_WIDTH"
msgid "Full _width"
msgstr "_Fullbreidd"
-#: cui/uiconfig/ui/textattrtabpage.ui:448
+#: cui/uiconfig/ui/textattrtabpage.ui:446
msgctxt "textattrtabpage|label3"
msgid "Text Anchor"
msgstr "Textafesting"
diff --git a/source/is/dbaccess/messages.po b/source/is/dbaccess/messages.po
index 50f47aed85c..4342f32d55f 100644
--- a/source/is/dbaccess/messages.po
+++ b/source/is/dbaccess/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2018-04-23 18:10+0200\n"
-"PO-Revision-Date: 2017-10-10 12:16+0000\n"
+"PO-Revision-Date: 2018-05-31 10:34+0000\n"
"Last-Translator: Sveinn í Felli <sv1@fellsnet.is>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: is\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1507637816.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1527762893.000000\n"
#: dbaccess/inc/query.hrc:26
msgctxt "RSC_QUERY_OBJECT_TYPE"
@@ -1652,7 +1652,7 @@ msgstr ""
#: dbaccess/inc/strings.hrc:352
msgctxt "RID_STR_EXTENSION_NOT_PRESENT"
msgid "The report, \"$file$\", requires the Report Builder feature."
-msgstr ""
+msgstr "Skýrslan, \"$file$\", þarfnast skýrslugerðarviðbótarinnar."
#: dbaccess/inc/strings.hrc:354
msgctxt "STR_COULDNOTCREATE_DRIVERMANAGER"
@@ -1773,7 +1773,7 @@ msgstr "Ekki þarf meira af upplýsingum. Til að athuga hvort tengingin virki,
#: dbaccess/inc/strings.hrc:379
msgctxt "STR_COMMONURL"
msgid "Datasource URL (e.g. host=$host:$port dbname=$database)"
-msgstr ""
+msgstr "Slóð á gagnagjafa (t.d. host=$host:$port dbname=$database)"
#: dbaccess/inc/strings.hrc:380
msgctxt "STR_HOSTNAME"
@@ -3214,22 +3214,22 @@ msgstr "Núverandi hlutur:"
#: dbaccess/uiconfig/ui/migrwarndlg.ui:7
msgctxt "migrationwarndialog|MigrationWarnDialog"
msgid "Confirm Migration"
-msgstr ""
+msgstr "Staðfesta yfirfærslu"
#: dbaccess/uiconfig/ui/migrwarndlg.ui:11
msgctxt "migrationwarndialog|MigrationWarnDialog"
msgid "The document contains embedded HSQL data, which is deprecated."
-msgstr ""
+msgstr "Skjalið inniheldur ívafin HSQL-gögn, sem er úrelt."
#: dbaccess/uiconfig/ui/migrwarndlg.ui:12
msgctxt "migrationwarndialog|MigrationWarnDialog"
msgid "Would you like to migrate to Firebird now?"
-msgstr ""
+msgstr "Viltu færa yfir í Firebird núna?"
#: dbaccess/uiconfig/ui/migrwarndlg.ui:37
msgctxt "migrationwarndialog|later"
msgid "_Later"
-msgstr ""
+msgstr "_Síðar"
#: dbaccess/uiconfig/ui/mysqlnativepage.ui:48
msgctxt "mysqlnativepage|connectionheader"
@@ -3613,7 +3613,7 @@ msgstr "_Uppfæra keðjuverkun"
#: dbaccess/uiconfig/ui/relationdialog.ui:244
msgctxt "relationdialog|addnull"
msgid "_Set NULL"
-msgstr ""
+msgstr "_Setja sem núll"
#: dbaccess/uiconfig/ui/relationdialog.ui:260
msgctxt "relationdialog|adddefault"
@@ -3638,7 +3638,7 @@ msgstr "Eyða _keðjuverkun"
#: dbaccess/uiconfig/ui/relationdialog.ui:346
msgctxt "relationdialog|delnull"
msgid "_Set NULL"
-msgstr ""
+msgstr "_Setja sem núll"
#: dbaccess/uiconfig/ui/relationdialog.ui:361
msgctxt "relationdialog|deldefault"
diff --git a/source/is/extensions/messages.po b/source/is/extensions/messages.po
index 64651cbb8bc..70daca71301 100644
--- a/source/is/extensions/messages.po
+++ b/source/is/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: 2018-04-23 18:10+0200\n"
-"PO-Revision-Date: 2017-12-17 17:20+0000\n"
+"PO-Revision-Date: 2018-05-29 08:39+0000\n"
"Last-Translator: Sveinn í Felli <sv1@fellsnet.is>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: is\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1513531202.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1527583169.000000\n"
#: extensions/inc/command.hrc:29
msgctxt "RID_RSC_ENUM_COMMAND_TYPE"
@@ -2814,12 +2814,12 @@ msgstr "Evolution LDAP"
#: extensions/uiconfig/sabpilot/ui/selecttypepage.ui:83
msgctxt "selecttypepage|firefox"
msgid "Firefox"
-msgstr ""
+msgstr "Firefox"
#: extensions/uiconfig/sabpilot/ui/selecttypepage.ui:99
msgctxt "selecttypepage|thunderbird"
msgid "Thunderbird"
-msgstr ""
+msgstr "Thunderbird"
#: extensions/uiconfig/sabpilot/ui/selecttypepage.ui:115
msgctxt "selecttypepage|kde"
@@ -2839,7 +2839,7 @@ msgstr "Aðrir utanaðkomandi gagnagjafar"
#: extensions/uiconfig/sabpilot/ui/selecttypepage.ui:165
msgctxt "selecttypepage|label1"
msgid "Select the type of your external address book:"
-msgstr ""
+msgstr "Veldu tegund ytri tengiliðaskrár:"
#: extensions/uiconfig/sabpilot/ui/tableselectionpage.ui:42
msgctxt "tableselectionpage|label3"
@@ -3211,7 +3211,7 @@ msgstr "Nöfn dálka"
#: extensions/uiconfig/sbibliography/ui/querydialog.ui:30
msgctxt "querydialog|ask"
msgid "Do not show this question again."
-msgstr ""
+msgstr "Ekki sýna þessa spurningu aftur."
#: extensions/uiconfig/sbibliography/ui/toolbar.ui:14
msgctxt "toolbar|TBC_FT_SOURCE"
diff --git a/source/is/filter/source/config/fragments/filters.po b/source/is/filter/source/config/fragments/filters.po
index 081f5a0e99b..45948677be9 100644
--- a/source/is/filter/source/config/fragments/filters.po
+++ b/source/is/filter/source/config/fragments/filters.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: filters\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-16 16:54+0200\n"
-"PO-Revision-Date: 2017-12-16 12:38+0000\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
+"PO-Revision-Date: 2018-05-29 08:43+0000\n"
"Last-Translator: Sveinn í Felli <sv1@fellsnet.is>\n"
"Language-Team: Icelandic <openoffice@openoffice.is>\n"
"Language: is\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1513427937.000000\n"
+"X-POOTLE-MTIME: 1527583411.000000\n"
#: ADO_rowset_XML.xcu
msgctxt ""
@@ -41,7 +41,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Apple Keynote"
-msgstr ""
+msgstr "Apple Keynote"
#: AppleNumbers.xcu
msgctxt ""
@@ -50,7 +50,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Apple Numbers"
-msgstr ""
+msgstr "Apple Numbers"
#: ApplePages.xcu
msgctxt ""
@@ -59,7 +59,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Apple Pages"
-msgstr ""
+msgstr "Apple Pages"
#: BMP___MS_Windows.xcu
msgctxt ""
@@ -68,7 +68,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "BMP - Windows Bitmap"
-msgstr "BMP - Windows Bitmap"
+msgstr "BMP - Windows Bitmap bitamynd"
#: BroadBand_eBook.xcu
msgctxt ""
@@ -329,7 +329,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Microsoft Excel 2003 XML"
-msgstr ""
+msgstr "Microsoft Excel 2003 XML"
#: MS_Excel_4_0.xcu
msgctxt ""
@@ -392,7 +392,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Excel 97–2003"
-msgstr ""
+msgstr "Excel 97–2003"
#: MS_Excel_97_Vorlage_Template.xcu
msgctxt ""
@@ -401,7 +401,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Excel 97–2003 Template"
-msgstr ""
+msgstr "Excel 97–2003 sniðmát"
#: MS_Multiplan.xcu
msgctxt ""
@@ -410,7 +410,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Microsoft Multiplan"
-msgstr ""
+msgstr "Microsoft Multiplan"
#: MS_PowerPoint_97.xcu
msgctxt ""
@@ -419,7 +419,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "PowerPoint 97–2003"
-msgstr ""
+msgstr "PowerPoint 97–2003"
#: MS_PowerPoint_97_AutoPlay.xcu
msgctxt ""
@@ -428,7 +428,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "PowerPoint 97–2003 AutoPlay"
-msgstr ""
+msgstr "PowerPoint 97–2003 sjálfspilandi"
#: MS_PowerPoint_97_Vorlage.xcu
msgctxt ""
@@ -437,7 +437,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "PowerPoint 97–2003 Template"
-msgstr ""
+msgstr "PowerPoint 97–2003 sniðmát"
#: MS_WinWord_5.xcu
msgctxt ""
@@ -463,8 +463,8 @@ msgctxt ""
"MS Word 2003 XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Word 2003 XML"
-msgstr "Microsoft Word 2003 XML"
+msgid "Word 2003 XML"
+msgstr ""
#: MS_Word_2007_XML.xcu
msgctxt ""
@@ -473,7 +473,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Word 2007–2019"
-msgstr ""
+msgstr "Word 2007–2019"
#: MS_Word_2007_XML_Template.xcu
msgctxt ""
@@ -482,7 +482,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Word 2007–2019 Template"
-msgstr ""
+msgstr "Word 2007–2019 sniðmát"
#: MS_Word_2007_XML_VBA.xcu
msgctxt ""
@@ -491,7 +491,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Word 2007–2019 VBA"
-msgstr ""
+msgstr "Word 2007–2019 VBA"
#: MS_Word_95.xcu
msgctxt ""
@@ -518,7 +518,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Word 97–2003"
-msgstr ""
+msgstr "Word 97–2003"
#: MS_Word_97_Vorlage.xcu
msgctxt ""
@@ -527,7 +527,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Word 97–2003 Template"
-msgstr ""
+msgstr "Word 97–2003 sniðmát"
#: MS_Works.xcu
msgctxt ""
@@ -1282,8 +1282,8 @@ msgctxt ""
"Calc MS Excel 2007 VBA XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Excel 2007-2016 XML (macro enabled)"
-msgstr "Microsoft Excel 2007-2016 XML (fjölvar virkir)"
+msgid "Excel 2007–2019 (macro-enabled)"
+msgstr ""
#: calc_MS_Excel_2007_XML.xcu
msgctxt ""
@@ -1292,7 +1292,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Excel 2007–2019"
-msgstr ""
+msgstr "Excel 2007–2019"
#: calc_MS_Excel_2007_XML_Template.xcu
msgctxt ""
@@ -1301,7 +1301,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Excel 2007–2019 Template"
-msgstr ""
+msgstr "Excel 2007–2019 sniðmát"
#: calc_OOXML.xcu
msgctxt ""
@@ -1571,7 +1571,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "PowerPoint 2007–2019"
-msgstr ""
+msgstr "PowerPoint 2007–2019"
#: impress_MS_PowerPoint_2007_XML_AutoPlay.xcu
msgctxt ""
@@ -1580,7 +1580,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "PowerPoint 2007–2019 AutoPlay"
-msgstr ""
+msgstr "PowerPoint 2007–2019 sjálfspilandi"
#: impress_MS_PowerPoint_2007_XML_Template.xcu
msgctxt ""
@@ -1589,7 +1589,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "PowerPoint 2007–2019 Template"
-msgstr ""
+msgstr "PowerPoint 2007–2019 sniðmát"
#: impress_MS_PowerPoint_2007_XML_VBA.xcu
msgctxt ""
@@ -1598,7 +1598,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "PowerPoint 2007–2019 VBA"
-msgstr ""
+msgstr "PowerPoint 2007–2019 VBA"
#: impress_OOXML.xcu
msgctxt ""
diff --git a/source/is/filter/source/config/fragments/types.po b/source/is/filter/source/config/fragments/types.po
index 25a679b3508..7058cfb746b 100644
--- a/source/is/filter/source/config/fragments/types.po
+++ b/source/is/filter/source/config/fragments/types.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: types\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-08 15:11+0200\n"
-"PO-Revision-Date: 2017-10-10 12:23+0000\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
+"PO-Revision-Date: 2018-05-29 08:43+0000\n"
"Last-Translator: Sveinn í Felli <sv1@fellsnet.is>\n"
"Language-Team: Icelandic <openoffice@openoffice.is>\n"
"Language: is\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1507638235.000000\n"
+"X-POOTLE-MTIME: 1527583416.000000\n"
#: MS_Excel_2007_Binary.xcu
msgctxt ""
@@ -41,7 +41,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Excel 2007–2019"
-msgstr ""
+msgstr "Excel 2007–2019"
#: MS_Excel_2007_XML_Template.xcu
msgctxt ""
@@ -50,7 +50,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Excel 2007–2019 Template"
-msgstr ""
+msgstr "Excel 2007–2019 sniðmát"
#: MS_PowerPoint_2007_XML.xcu
msgctxt ""
@@ -59,7 +59,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "PowerPoint 2007–2019"
-msgstr ""
+msgstr "PowerPoint 2007–2019"
#: MS_PowerPoint_2007_XML_AutoPlay.xcu
msgctxt ""
@@ -68,7 +68,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "PowerPoint 2007–2019"
-msgstr ""
+msgstr "PowerPoint 2007–2019"
#: MS_PowerPoint_2007_XML_Template.xcu
msgctxt ""
@@ -77,7 +77,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "PowerPoint 2007–2019 Template"
-msgstr ""
+msgstr "PowerPoint 2007–2019 sniðmát"
#: MS_PowerPoint_2007_XML_VBA.xcu
msgctxt ""
@@ -86,7 +86,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "PowerPoint 2007–2019 VBA"
-msgstr ""
+msgstr "PowerPoint 2007–2019 VBA"
#: StarBase.xcu
msgctxt ""
@@ -292,8 +292,8 @@ msgctxt ""
"writer_MS_Word_2003_XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Word 2003 XML"
-msgstr "Microsoft Word 2003 XML"
+msgid "Word 2003 XML"
+msgstr ""
#: writer_MS_Word_2007_XML.xcu
msgctxt ""
@@ -302,7 +302,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Word 2007–2019"
-msgstr ""
+msgstr "Word 2007–2019"
#: writer_MS_Word_2007_XML_Template.xcu
msgctxt ""
@@ -311,7 +311,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Word 2007–2019 Template"
-msgstr ""
+msgstr "Word 2007–2019 sniðmát"
#: writer_MS_Word_2007_XML_VBA.xcu
msgctxt ""
@@ -320,7 +320,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Word 2007–2019 VBA"
-msgstr ""
+msgstr "Word 2007–2019 VBA"
#: writer_ODT_FlatXML.xcu
msgctxt ""
diff --git a/source/is/fpicker/messages.po b/source/is/fpicker/messages.po
index 780682a0f08..6fd4ad987d1 100644
--- a/source/is/fpicker/messages.po
+++ b/source/is/fpicker/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2018-04-25 13:20+0000\n"
"Last-Translator: Sveinn í Felli <sv1@fellsnet.is>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -272,13 +272,13 @@ msgstr "Dulrita með GPG-lykli"
#: fpicker/uiconfig/ui/foldernamedialog.ui:8
msgctxt "foldernamedialog|FolderNameDialog"
-msgid "Folder Name ?"
-msgstr "Möppuheiti ?"
+msgid "Folder Name"
+msgstr ""
#: fpicker/uiconfig/ui/foldernamedialog.ui:91
msgctxt "foldernamedialog|label2"
-msgid "Na_me"
-msgstr "_Heiti"
+msgid "Na_me:"
+msgstr ""
#: fpicker/uiconfig/ui/foldernamedialog.ui:122
msgctxt "foldernamedialog|label1"
diff --git a/source/is/helpcontent2/source/text/shared/00.po b/source/is/helpcontent2/source/text/shared/00.po
index e4f12ef622a..b3fc167708a 100644
--- a/source/is/helpcontent2/source/text/shared/00.po
+++ b/source/is/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: 2018-05-22 13:16+0200\n"
-"PO-Revision-Date: 2017-08-29 16:37+0000\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
+"PO-Revision-Date: 2018-05-29 06:44+0000\n"
"Last-Translator: Sveinn í Felli <sv1@fellsnet.is>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: is\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1504024648.000000\n"
+"X-POOTLE-MTIME: 1527576279.000000\n"
#: 00000001.xhp
msgctxt ""
@@ -397,15 +397,15 @@ msgctxt ""
"00000001.xhp\n"
"hd_id3149670\n"
"help.text"
-msgid "Back"
-msgstr "Til baka"
+msgid "Reset"
+msgstr ""
#: 00000001.xhp
msgctxt ""
"00000001.xhp\n"
"par_id3145068\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optionsdialog/revert\">Resets modified values back to the $[officename] default values.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optionsdialog/revert\">Resets changes made to the current tab to those applicable when this dialog was opened.</ahelp>"
msgstr ""
#: 00000001.xhp
@@ -552,6 +552,54 @@ msgctxt ""
msgid "<variable id=\"ShiftF1\">Press Shift+F1 and point to a control to learn more about that control.</variable>"
msgstr ""
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"hd_id631527692833772\n"
+"help.text"
+msgid "Options dialog buttons"
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"hd_id831527692839432\n"
+"help.text"
+msgid "OK"
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"par_id471527692844934\n"
+"help.text"
+msgid "Save the changes in the page and close the Options dialog."
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"hd_id261527692850720\n"
+"help.text"
+msgid "Cancel"
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"par_id571527692855533\n"
+"help.text"
+msgid "Close the Options dialog and discard all changes done."
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"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 Options dialog."
+msgstr ""
+
#: 00000002.xhp
msgctxt ""
"00000002.xhp\n"
@@ -4758,7 +4806,7 @@ msgctxt ""
"hd_id314847411\n"
"help.text"
msgid "Format quoted field as text"
-msgstr ""
+msgstr "Sníða tilvísað gagnasvið sem te_xta"
#: 00000208.xhp
msgctxt ""
@@ -11125,7 +11173,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3151293\n"
"help.text"
-msgid "<variable id=\"linienstile\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Line Styles</emph> tab </variable>"
+msgid "<variable id=\"linienstile\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Line Styles</emph> tab</variable>"
msgstr ""
#: 00040502.xhp
@@ -11133,7 +11181,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3149317\n"
"help.text"
-msgid "<variable id=\"linienenden\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Arrow Styles</emph> tab </variable>"
+msgid "<variable id=\"linienenden\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Arrow Styles</emph> tab</variable>"
msgstr ""
#: 00040502.xhp
@@ -11173,7 +11221,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3154948\n"
"help.text"
-msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Area</emph> tab"
+msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Area</emph> tab."
msgstr ""
#: 00040502.xhp
@@ -11181,7 +11229,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3145607\n"
"help.text"
-msgid "Choose <emph>View - Styles</emph> - open context menu and choose <emph>Modify/New - Area</emph> tab (presentation documents)"
+msgid "Choose <emph>View - Styles</emph> - open context menu and choose <emph>Modify/New - Area</emph> tab (presentation documents)."
msgstr ""
#: 00040502.xhp
@@ -11189,7 +11237,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3152922\n"
"help.text"
-msgid "Choose <emph>Format - Title - Area</emph> tab (chart documents)"
+msgid "Choose <emph>Format - Title - Area</emph> tab (chart documents)."
msgstr ""
#: 00040502.xhp
@@ -11197,7 +11245,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3157894\n"
"help.text"
-msgid "Choose <emph>Format - Legend - Area</emph> tab (chart documents)"
+msgid "Choose <emph>Format - Legend - Area</emph> tab (chart documents)."
msgstr ""
#: 00040502.xhp
@@ -11205,7 +11253,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3144444\n"
"help.text"
-msgid "Choose <emph>Format - Chart Wall - Area</emph> tab (chart documents)"
+msgid "Choose <emph>Format - Chart Wall - Area</emph> tab (chart documents)."
msgstr ""
#: 00040502.xhp
@@ -11213,7 +11261,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3156543\n"
"help.text"
-msgid "Choose <emph>Format - Chart Floor - Area</emph> tab (chart documents)"
+msgid "Choose <emph>Format - Chart Floor - Area</emph> tab (chart documents)."
msgstr ""
#: 00040502.xhp
@@ -11221,7 +11269,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3150685\n"
"help.text"
-msgid "Choose <emph>Format - Chart Area - Area</emph> tab (chart documents)"
+msgid "Choose <emph>Format - Chart Area - Area</emph> tab (chart documents)."
msgstr ""
#: 00040502.xhp
@@ -11229,7 +11277,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3149664\n"
"help.text"
-msgid "Choose <emph>Slide - Properties - Background</emph> tab (in $[officename] Impress)"
+msgid "Choose <emph>Slide - Properties - Background</emph> tab (in $[officename] Impress)."
msgstr ""
#: 00040502.xhp
@@ -11237,7 +11285,15 @@ msgctxt ""
"00040502.xhp\n"
"par_id9149694\n"
"help.text"
-msgid "Choose <emph>Page - Properties - Background</emph> tab (in $[officename] Draw)"
+msgid "Choose <emph>Page - Properties - Background</emph> tab (in $[officename] Draw)."
+msgstr ""
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id841527083135387\n"
+"help.text"
+msgid "Choose <emph>Table - Properties - Background</emph> tab."
msgstr ""
#: 00040502.xhp
@@ -11349,7 +11405,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3150011\n"
"help.text"
-msgid "<variable id=\"schatte\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Shadow</emph> tab </variable>"
+msgid "<variable id=\"schatte\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Shadow</emph> tab</variable>"
msgstr ""
#: 00040502.xhp
@@ -11357,7 +11413,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3147441\n"
"help.text"
-msgid "<variable id=\"verlauf\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Gradients</emph> tab </variable>"
+msgid "<variable id=\"verlauf\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Gradients</emph> tab</variable>"
msgstr ""
#: 00040502.xhp
@@ -11365,7 +11421,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3155308\n"
"help.text"
-msgid "<variable id=\"schraffur\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Hatching</emph> tab </variable>"
+msgid "<variable id=\"schraffur\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Hatching</emph> tab</variable>"
msgstr ""
#: 00040502.xhp
@@ -11373,7 +11429,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3145800\n"
"help.text"
-msgid "<variable id=\"bitmap\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Bitmaps</emph> tab </variable>"
+msgid "<variable id=\"bitmap\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Bitmaps</emph> tab</variable>"
msgstr ""
#: 00040502.xhp
@@ -11413,8 +11469,8 @@ msgctxt ""
"00040502.xhp\n"
"par_id3156286\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F4 key </caseinline><caseinline select=\"IMPRESS\">F4 key </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F4 lykill</caseinline><caseinline select=\"IMPRESS\">F4 lykill</caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F4 key</caseinline><caseinline select=\"IMPRESS\">F4 key</caseinline></switchinline>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
@@ -11453,7 +11509,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3153099\n"
"help.text"
-msgid "<variable id=\"position2\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Position and Size</emph> tab </variable>"
+msgid "<variable id=\"position2\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Position and Size</emph> tab</variable>"
msgstr ""
#: 00040502.xhp
@@ -11485,7 +11541,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3145666\n"
"help.text"
-msgid "<variable id=\"ecke\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Slant & Corner Radius</emph> tab </variable>"
+msgid "<variable id=\"ecke\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Slant & Corner Radius</emph> tab</variable>"
msgstr ""
#: 00040502.xhp
@@ -11493,7 +11549,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3146081\n"
"help.text"
-msgid "<variable id=\"legende\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Callout</emph> tab (only for textbox callouts, not for custom shapes callouts) </variable>"
+msgid "<variable id=\"legende\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Callout</emph> tab (only for textbox callouts, not for custom shapes callouts)</variable>"
msgstr ""
#: 00040502.xhp
@@ -11517,8 +11573,8 @@ msgctxt ""
"00040502.xhp\n"
"par_id3149019\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F8 key </caseinline><caseinline select=\"IMPRESS\">F8 key </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F4 lykill</caseinline><caseinline select=\"IMPRESS\">F4 lykill</caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F8 key</caseinline><caseinline select=\"IMPRESS\">F8 key</caseinline></switchinline>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
@@ -11805,8 +11861,8 @@ msgctxt ""
"00040502.xhp\n"
"par_id3153076\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Align Center Horizontally </caseinline><defaultinline>Centered</defaultinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Jafna lárétt miðju</caseinline><defaultinline>Miðjað</defaultinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Align Center Horizontally</caseinline><defaultinline>Centered</defaultinline></switchinline>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
@@ -11845,7 +11901,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3150527\n"
"help.text"
-msgid "<variable id=\"font\">Click <emph>Fontwork</emph> icon on <emph>Drawing</emph> bar </variable>"
+msgid "<variable id=\"font\">Click <emph>Fontwork</emph> icon on <emph>Drawing</emph> bar</variable>"
msgstr ""
#: 00040502.xhp
diff --git a/source/is/helpcontent2/source/text/shared/01.po b/source/is/helpcontent2/source/text/shared/01.po
index f0b417ec10a..c4b8e9b9739 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: 2018-05-23 23:19+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2017-08-30 07:45+0000\n"
"Last-Translator: Sveinn í Felli <sv1@fellsnet.is>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -23587,6 +23587,22 @@ msgstr ""
#: 05210100.xhp
msgctxt ""
"05210100.xhp\n"
+"hd_id471527077476052\n"
+"help.text"
+msgid "Cell, Row or Table background selector"
+msgstr ""
+
+#: 05210100.xhp
+msgctxt ""
+"05210100.xhp\n"
+"par_id661527077493366\n"
+"help.text"
+msgid "Select the table object which background area is to be filled."
+msgstr ""
+
+#: 05210100.xhp
+msgctxt ""
+"05210100.xhp\n"
"hd_id3147373\n"
"help.text"
msgid "None"
@@ -31205,23 +31221,23 @@ msgctxt ""
"06040100.xhp\n"
"hd_id3145072\n"
"help.text"
-msgid "Automatic *bold* and _underline_"
-msgstr "Sjálfvirk *feitletrun* og _undirstrikun_"
+msgid "Automatic *bold*, /italic/, -strikeout- and _underline_"
+msgstr ""
#: 06040100.xhp
msgctxt ""
"06040100.xhp\n"
"par_id3153577\n"
"help.text"
-msgid "Automatically applies bold formatting to text enclosed by asterisks (*), and underline to text enclosed by underscores ( _ ), for example, *bold*. The asterisks and underscores are not displayed after the formatting is applied."
-msgstr "Setur sjálfkrafa feitletrun á texta sem umlukinn er margfeldistáknum (*) og undirstrikar texta sem umlukinn er undirstrikum ( _ ), til að mynda *feitt* eða _u-strik_. Viðkomandi tákn (* og _) eru ekki sýnileg eftir aðgerðina."
+msgid "Automatically applies bold, italic, strikethrough or underline formatting to text enclosed by asterisks (*), slashes (/), hyphens (-), and underscores (_), respectively. These characters disappear after the formatting is applied."
+msgstr ""
#: 06040100.xhp
msgctxt ""
"06040100.xhp\n"
"par_id3153127\n"
"help.text"
-msgid "This feature does not work if the formatting characters * or _ are entered with an <link href=\"text/shared/00/00000005.xhp#IME\" name=\"Input Method Editor\">Input Method Editor</link>."
+msgid "This feature does not work if the formatting characters <item type=\"literal\">* / - _</item> are entered with an <link href=\"text/shared/00/00000005.xhp#IME\" name=\"Input Method Editor\">Input Method Editor</link>."
msgstr ""
#: 06040100.xhp
diff --git a/source/is/helpcontent2/source/text/shared/optionen.po b/source/is/helpcontent2/source/text/shared/optionen.po
index 5d0774df425..019f72596d5 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: 2018-05-08 15:10+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2017-08-30 07:48+0000\n"
"Last-Translator: Sveinn í Felli <sv1@fellsnet.is>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -83,6 +83,22 @@ msgstr ""
#: 01000000.xhp
msgctxt ""
"01000000.xhp\n"
+"hd_id551527692881035\n"
+"help.text"
+msgid "Help"
+msgstr ""
+
+#: 01000000.xhp
+msgctxt ""
+"01000000.xhp\n"
+"par_id831527692885723\n"
+"help.text"
+msgid "Opens the help contents for the Options page displayed."
+msgstr ""
+
+#: 01000000.xhp
+msgctxt ""
+"01000000.xhp\n"
"hd_id3159149\n"
"help.text"
msgid "<link href=\"text/shared/optionen/01010000.xhp\" name=\"$[officename]\">%PRODUCTNAME</link>"
@@ -4565,8 +4581,8 @@ msgctxt ""
"01030300.xhp\n"
"par_idN10640\n"
"help.text"
-msgid "Options"
-msgstr "Valkostir"
+msgid "Security Options and Warnings"
+msgstr ""
#: 01030300.xhp
msgctxt ""
@@ -4597,7 +4613,7 @@ msgctxt ""
"01030300.xhp\n"
"hd_id3168736\n"
"help.text"
-msgid "Persistently save passwords protected by a master password"
+msgid "Persistently save passwords for web connections"
msgstr ""
#: 01030300.xhp
@@ -4613,8 +4629,24 @@ msgctxt ""
"01030300.xhp\n"
"hd_id3901791\n"
"help.text"
+msgid "Protected by a master password (recommended)"
+msgstr ""
+
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"par_id31527711486980\n"
+"help.text"
+msgid "Check to enable all connections' passwords to be protected by a master password."
+msgstr ""
+
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"hd_id141527711343312\n"
+"help.text"
msgid "Master Password"
-msgstr "Aðal lykilorð"
+msgstr ""
#: 01030300.xhp
msgctxt ""
@@ -13733,7 +13765,7 @@ msgctxt ""
"java.xhp\n"
"hd_id3148618\n"
"help.text"
-msgid "Optional (unstable) options"
+msgid "Optional Features"
msgstr ""
#: java.xhp
@@ -13749,7 +13781,7 @@ msgctxt ""
"java.xhp\n"
"par_id3156344\n"
"help.text"
-msgid "It enables features that are not yet complete or contain known bugs. The list of these features is different version by version, or even it can be empty."
+msgid "Enables features that are not yet complete or may contain known bugs. The list of these features is different version by version, or even it can be empty."
msgstr ""
#: java.xhp
@@ -13765,7 +13797,7 @@ msgctxt ""
"java.xhp\n"
"par_id3156345\n"
"help.text"
-msgid "It enables macro recording, so the <link href=\"text/shared/guide/macro_recording.xhp\" name=\"Tools - Macros - Record Macro\"><item type=\"menuitem\">Tools - Macros - Record Macro</item></link> menu item will be available."
+msgid "Enables macro recording. The <link href=\"text/shared/guide/macro_recording.xhp\" name=\"Tools - Macros - Record Macro\"><item type=\"menuitem\">Tools - Macros - Record Macro</item></link> menu item is available."
msgstr ""
#: java.xhp
diff --git a/source/is/instsetoo_native/inc_openoffice/windows/msi_languages.po b/source/is/instsetoo_native/inc_openoffice/windows/msi_languages.po
index 5d5af777918..d440e0dcecb 100644
--- a/source/is/instsetoo_native/inc_openoffice/windows/msi_languages.po
+++ b/source/is/instsetoo_native/inc_openoffice/windows/msi_languages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: msi_languages\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2018-04-17 15:54+0200\n"
-"PO-Revision-Date: 2018-04-25 13:32+0000\n"
+"PO-Revision-Date: 2018-05-29 08:35+0000\n"
"Last-Translator: Sveinn í Felli <sv1@fellsnet.is>\n"
"Language-Team: Icelandic <translation-team-is@lists.sourceforge.net>\n"
"Language: is\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1524663163.000000\n"
+"X-POOTLE-MTIME: 1527582937.000000\n"
#: ActionTe.ulf
msgctxt ""
@@ -3878,7 +3878,7 @@ msgctxt ""
"OOO_LAUNCH_3\n"
"LngText.text"
msgid "To install [ProductName] on Windows 8.1, at least April 2014 update rollup (MS KB 2919355) must be installed."
-msgstr ""
+msgstr "Til að setja upp [ProductName] á Windows 8.1, þarf að hafa sett inn a.m.k. uppfærsluvöndulinn frá því í apríl 2014 (MS KB 2919355)."
#: Property.ulf
msgctxt ""
diff --git a/source/is/officecfg/registry/data/org/openoffice.po b/source/is/officecfg/registry/data/org/openoffice.po
index d6aec73f8b5..c0f203fa127 100644
--- a/source/is/officecfg/registry/data/org/openoffice.po
+++ b/source/is/officecfg/registry/data/org/openoffice.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: 2018-02-27 13:56+0100\n"
-"PO-Revision-Date: 2014-02-27 08:17+0000\n"
+"PO-Revision-Date: 2018-05-29 09:03+0000\n"
"Last-Translator: Sveinn í Felli <sv1@fellsnet.is>\n"
"Language-Team: Icelandic <translation-team-is@lists.sourceforge.net>\n"
"Language: is\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1393489022.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1527584588.000000\n"
#: Setup.xcu
msgctxt ""
@@ -95,4 +95,4 @@ msgctxt ""
"ooSetupFactoryUIName\n"
"value.text"
msgid "Base: Report Builder"
-msgstr ""
+msgstr "Base: skýrslugerðartól"
diff --git a/source/is/officecfg/registry/data/org/openoffice/Office.po b/source/is/officecfg/registry/data/org/openoffice/Office.po
index 7554535bf10..e8a486690ec 100644
--- a/source/is/officecfg/registry/data/org/openoffice/Office.po
+++ b/source/is/officecfg/registry/data/org/openoffice/Office.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: Office\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2018-02-27 13:56+0100\n"
-"PO-Revision-Date: 2017-12-17 17:09+0000\n"
+"PO-Revision-Date: 2018-05-29 09:03+0000\n"
"Last-Translator: Sveinn í Felli <sv1@fellsnet.is>\n"
"Language-Team: Icelandic <translation-team-is@lists.sourceforge.net>\n"
"Language: is\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1513530541.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1527584598.000000\n"
#: Addons.xcu
msgctxt ""
@@ -716,7 +716,7 @@ msgctxt ""
"DisplayName\n"
"value.text"
msgid "Report Builder"
-msgstr ""
+msgstr "Skýrslugerðartól"
#: ExtendedColorScheme.xcu
msgctxt ""
diff --git a/source/is/officecfg/registry/data/org/openoffice/Office/UI.po b/source/is/officecfg/registry/data/org/openoffice/Office/UI.po
index 5926d0d0d73..6674cc49f4b 100644
--- a/source/is/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/is/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: UI\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-22 13:17+0200\n"
-"PO-Revision-Date: 2018-01-16 08:03+0000\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
+"PO-Revision-Date: 2018-05-29 09:03+0000\n"
"Last-Translator: Sveinn í Felli <sv1@fellsnet.is>\n"
"Language-Team: Icelandic <translation-team-is@lists.sourceforge.net>\n"
"Language: is\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1516089821.000000\n"
+"X-POOTLE-MTIME: 1527584611.000000\n"
#: BaseWindowState.xcu
msgctxt ""
@@ -86,7 +86,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Repeat Search"
-msgstr ""
+msgstr "Endurtaka leit"
#: BasicIDECommands.xcu
msgctxt ""
@@ -149,7 +149,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Form Horizontal Scroll Bar"
-msgstr ""
+msgstr "Lárétt skrunslá fyrir eyðublöð"
#: BasicIDECommands.xcu
msgctxt ""
@@ -446,7 +446,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Clear"
-msgstr ""
+msgstr "Hreinsa"
#: CalcCommands.xcu
msgctxt ""
@@ -455,7 +455,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Clear ~Direct Formatting"
-msgstr ""
+msgstr "~Hreinsa handvirk snið"
#: CalcCommands.xcu
msgctxt ""
@@ -464,7 +464,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Clear Direct Formatting"
-msgstr ""
+msgstr "Hreinsa handvirk snið"
#: CalcCommands.xcu
msgctxt ""
@@ -1166,7 +1166,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "C~onditional"
-msgstr ""
+msgstr "Skilyrt"
#: CalcCommands.xcu
msgctxt ""
@@ -1193,7 +1193,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Conditional Formatting..."
-msgstr ""
+msgstr "Skilyrt forsníðing..."
#: CalcCommands.xcu
msgctxt ""
@@ -1283,7 +1283,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Manage Conditional Formatting..."
-msgstr ""
+msgstr "Sýsla með skilyrt snið..."
#: CalcCommands.xcu
msgctxt ""
@@ -1850,7 +1850,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Data ~Validation..."
-msgstr ""
+msgstr "Sann~prófun gagna..."
#: CalcCommands.xcu
msgctxt ""
@@ -1895,7 +1895,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Record"
-msgstr ""
+msgstr "Sk~rá"
#: CalcCommands.xcu
msgctxt ""
@@ -1904,7 +1904,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Record Track Changes"
-msgstr ""
+msgstr "Skrá raktar breytingar"
#: CalcCommands.xcu
msgctxt ""
@@ -1913,7 +1913,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Show..."
-msgstr ""
+msgstr "~Sýna..."
#: CalcCommands.xcu
msgctxt ""
@@ -1922,7 +1922,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Show Track Changes"
-msgstr ""
+msgstr "Birta rakningu á breytingum"
#: CalcCommands.xcu
msgctxt ""
@@ -2039,7 +2039,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "View Headers"
-msgstr ""
+msgstr "Skoða fyrirsagnir"
#: CalcCommands.xcu
msgctxt ""
@@ -2147,7 +2147,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Manage..."
-msgstr ""
+msgstr "Sýsla ~með..."
#: CalcCommands.xcu
msgctxt ""
@@ -2156,7 +2156,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Manage Track Changes"
-msgstr ""
+msgstr "Sýsla með raktar breytingar"
#: CalcCommands.xcu
msgctxt ""
@@ -2165,7 +2165,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Comment..."
-msgstr ""
+msgstr "~Athugasemd..."
#: CalcCommands.xcu
msgctxt ""
@@ -2174,7 +2174,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Insert Track Change Comment"
-msgstr ""
+msgstr "Setja inn athugasemd við rakta breytingu"
#: CalcCommands.xcu
msgctxt ""
@@ -2552,7 +2552,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Manage Names..."
-msgstr ""
+msgstr "Sýsla ~með nöfn..."
#: CalcCommands.xcu
msgctxt ""
@@ -3056,7 +3056,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Define Range..."
-msgstr ""
+msgstr "Skil~greina svið..."
#: CalcCommands.xcu
msgctxt ""
@@ -3065,7 +3065,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Select ~Range..."
-msgstr ""
+msgstr "Velja gagnas~við..."
#: CalcCommands.xcu
msgctxt ""
@@ -3335,7 +3335,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Align Center"
-msgstr ""
+msgstr "Jafna við miðju"
#: CalcCommands.xcu
msgctxt ""
@@ -3578,7 +3578,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Thousands Separator"
-msgstr ""
+msgstr "Þúsundatákn"
#: CalcCommands.xcu
msgctxt ""
@@ -3641,7 +3641,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Anchor to p~age"
-msgstr ""
+msgstr "Festa við ~síðu"
#: CalcCommands.xcu
msgctxt ""
@@ -3668,7 +3668,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Anchor to ~cell (move with cell)"
-msgstr ""
+msgstr "~Festa við reit (færa með reit)"
#: CalcCommands.xcu
msgctxt ""
@@ -3677,7 +3677,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Anchor: To Cell (~resize with cell)"
-msgstr ""
+msgstr "Festing: við ~reit (breyta stæ~rð með reit)"
#: CalcCommands.xcu
msgctxt ""
@@ -3686,7 +3686,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "To Cell (~resize with cell)"
-msgstr ""
+msgstr "Að reit (breyta stæ~rð með reit)"
#: CalcCommands.xcu
msgctxt ""
@@ -3695,7 +3695,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Anchor to cell (move and ~resize with cell)"
-msgstr ""
+msgstr "Festa við reit (breyta stæ~rð með reit)"
#: CalcCommands.xcu
msgctxt ""
@@ -3731,7 +3731,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "View Grid Lines"
-msgstr ""
+msgstr "Sýna hnitalínur"
#: CalcCommands.xcu
msgctxt ""
@@ -4370,7 +4370,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Formula Bar"
-msgstr ""
+msgstr "Formúlustika"
#: CalcWindowState.xcu
msgctxt ""
@@ -6953,7 +6953,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Page"
-msgstr ""
+msgstr "Síð~a"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -6962,7 +6962,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Shape"
-msgstr ""
+msgstr "Lö~gun"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7790,7 +7790,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Properties..."
-msgstr ""
+msgstr "Eiginleikar..."
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7916,7 +7916,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Insert Page from File..."
-msgstr ""
+msgstr "Setja inn síðu úr skrá..."
#: DrawImpressCommands.xcu
msgctxt ""
@@ -8222,7 +8222,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Master Page..."
-msgstr ""
+msgstr "Yfirsíða..."
#: DrawImpressCommands.xcu
msgctxt ""
@@ -16034,7 +16034,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Double Underline"
-msgstr ""
+msgstr "Tvöföld undirstrikun"
#: GenericCommands.xcu
msgctxt ""
@@ -16259,7 +16259,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Align Center"
-msgstr ""
+msgstr "Jafna við miðju"
#: GenericCommands.xcu
msgctxt ""
@@ -16862,7 +16862,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Fit to Cell Size"
-msgstr ""
+msgstr "~Laga að stærð reits"
#: GenericCommands.xcu
msgctxt ""
@@ -17503,7 +17503,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Cycle Case"
-msgstr ""
+msgstr "Skipta stafstöðu"
#: GenericCommands.xcu
msgctxt ""
@@ -17512,7 +17512,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Cycle Case (Title Case, Sentence case, UPPERCASE, lowercase)"
-msgstr ""
+msgstr "Skipta stafstöðu (Hástafir Í Upphafi Orða, Hástafir í upphafi málsgreina, HÁSTAFIR, lágstafir)"
#: GenericCommands.xcu
msgctxt ""
@@ -17773,7 +17773,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Read Only Mode"
-msgstr ""
+msgstr "Skrifvarið"
#: GenericCommands.xcu
msgctxt ""
@@ -17782,7 +17782,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Toggle Read Only Mode"
-msgstr ""
+msgstr "Víxla lesham/skrifham af/á"
#: GenericCommands.xcu
msgctxt ""
@@ -18664,7 +18664,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Fo~rm"
-msgstr ""
+msgstr "Eyðu~blað"
#: GenericCommands.xcu
msgctxt ""
@@ -20005,7 +20005,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Protect..."
-msgstr ""
+msgstr "Vern~da..."
#: GenericCommands.xcu
msgctxt ""
@@ -20014,7 +20014,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Protect Track Changes"
-msgstr ""
+msgstr "Vernda raktar breytingar"
#: GenericCommands.xcu
msgctxt ""
@@ -20212,7 +20212,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Clear"
-msgstr ""
+msgstr "Hreinsa"
#: GenericCommands.xcu
msgctxt ""
@@ -20221,7 +20221,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Clear ~Direct Formatting"
-msgstr ""
+msgstr "~Hreinsa handvirk snið"
#: GenericCommands.xcu
msgctxt ""
@@ -20230,7 +20230,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Clear Direct Formatting"
-msgstr ""
+msgstr "Hreinsa handvirk snið"
#: GenericCommands.xcu
msgctxt ""
@@ -22075,7 +22075,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "User ~Interface"
-msgstr ""
+msgstr "Notandav~iðmót"
#: GenericCommands.xcu
msgctxt ""
@@ -22336,7 +22336,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Sum"
-msgstr ""
+msgstr "Samtals"
#: GenericCommands.xcu
msgctxt ""
@@ -22948,7 +22948,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Apply document classification"
-msgstr ""
+msgstr "Virkja flokkun skjals"
#: GenericCommands.xcu
msgctxt ""
@@ -22957,7 +22957,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Manage document classification"
-msgstr ""
+msgstr "Sýsla með flokkun skjals"
#: GenericCommands.xcu
msgctxt ""
@@ -22966,7 +22966,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Manage paragraph classification"
-msgstr ""
+msgstr "Sýsla með flokkun málsgreina"
#: GenericCommands.xcu
msgctxt ""
@@ -23038,7 +23038,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "More Breaks"
-msgstr ""
+msgstr "Fleiri skil"
#: GenericCommands.xcu
msgctxt ""
@@ -23047,7 +23047,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Signatu~re Line..."
-msgstr ""
+msgstr "Undi~rskriftarlína..."
#: GenericCommands.xcu
msgctxt ""
@@ -23056,7 +23056,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Edit Signature ~Line..."
-msgstr ""
+msgstr "Breyta undirskriftar~línu..."
#: GenericCommands.xcu
msgctxt ""
@@ -23065,7 +23065,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Sign Signature Line..."
-msgstr ""
+msgstr "~Undirrita undirskriftarlínu..."
#: ImpressWindowState.xcu
msgctxt ""
@@ -25135,7 +25135,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Standard Toolbar"
-msgstr ""
+msgstr "Stöðluð verkfærastika"
#: ToolbarMode.xcu
msgctxt ""
@@ -25162,7 +25162,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Contextual groups"
-msgstr ""
+msgstr "Samhengislegir hópar"
#: ToolbarMode.xcu
msgctxt ""
@@ -25171,7 +25171,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Contextual Single"
-msgstr ""
+msgstr "Samhengislegt einfalt"
#: ToolbarMode.xcu
msgctxt ""
@@ -25180,7 +25180,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Tabbed"
-msgstr ""
+msgstr "Með flipum"
#: ToolbarMode.xcu
msgctxt ""
@@ -25189,7 +25189,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Tabbed Compact"
-msgstr ""
+msgstr "Þjappað með flipum"
#: ToolbarMode.xcu
msgctxt ""
@@ -25198,7 +25198,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Groupedbar Compact"
-msgstr ""
+msgstr "Hópunarstika þjöppuð"
#: ToolbarMode.xcu
msgctxt ""
@@ -25207,7 +25207,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Groupedbar"
-msgstr ""
+msgstr "Hópunarstika"
#: ToolbarMode.xcu
msgctxt ""
@@ -25216,7 +25216,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Standard Toolbar"
-msgstr ""
+msgstr "Stöðluð verkfærastika"
#: ToolbarMode.xcu
msgctxt ""
@@ -25243,7 +25243,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Contextual groups"
-msgstr ""
+msgstr "Samhengislegir hópar"
#: ToolbarMode.xcu
msgctxt ""
@@ -25252,7 +25252,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Tabbed"
-msgstr ""
+msgstr "Með flipum"
#: ToolbarMode.xcu
msgctxt ""
@@ -25261,7 +25261,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Groupedbar Compact"
-msgstr ""
+msgstr "Hópunarstika þjöppuð"
#: ToolbarMode.xcu
msgctxt ""
@@ -25270,7 +25270,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Groupedbar"
-msgstr ""
+msgstr "Hópunarstika"
#: ToolbarMode.xcu
msgctxt ""
@@ -25279,7 +25279,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Standard Toolbar"
-msgstr ""
+msgstr "Stöðluð verkfærastika"
#: ToolbarMode.xcu
msgctxt ""
@@ -25297,7 +25297,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Contextual groups"
-msgstr ""
+msgstr "Samhengislegir hópar"
#: ToolbarMode.xcu
msgctxt ""
@@ -25306,7 +25306,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Tabbed"
-msgstr ""
+msgstr "Með flipum"
#: ToolbarMode.xcu
msgctxt ""
@@ -25315,7 +25315,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Groupedbar Compact"
-msgstr ""
+msgstr "Hópunarstika þjöppuð"
#: ToolbarMode.xcu
msgctxt ""
@@ -25324,7 +25324,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Groupedbar"
-msgstr ""
+msgstr "Hópunarstika"
#: ToolbarMode.xcu
msgctxt ""
@@ -25333,7 +25333,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Standard Toolbar"
-msgstr ""
+msgstr "Stöðluð verkfærastika"
#: ToolbarMode.xcu
msgctxt ""
@@ -25342,7 +25342,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Tabbed"
-msgstr ""
+msgstr "Með flipum"
#: ToolbarMode.xcu
msgctxt ""
@@ -25351,7 +25351,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Groupedbar Compact"
-msgstr ""
+msgstr "Hópunarstika þjöppuð"
#: ToolbarMode.xcu
msgctxt ""
@@ -25360,7 +25360,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Groupedbar"
-msgstr ""
+msgstr "Hópunarstika"
#: ToolbarMode.xcu
msgctxt ""
@@ -25369,7 +25369,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Standard Toolbar"
-msgstr ""
+msgstr "Stöðluð verkfærastika"
#: ToolbarMode.xcu
msgctxt ""
@@ -25378,7 +25378,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Standard Toolbar"
-msgstr ""
+msgstr "Stöðluð verkfærastika"
#: WriterCommands.xcu
msgctxt ""
@@ -25918,7 +25918,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "T~ooltips"
-msgstr ""
+msgstr "Vís~bendingar"
#: WriterCommands.xcu
msgctxt ""
@@ -25927,7 +25927,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Show change authorship in tooltips"
-msgstr ""
+msgstr "Sýna breytingar á höfundum í vísbendingum verkfæra"
#: WriterCommands.xcu
msgctxt ""
@@ -25936,7 +25936,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Go t~o Page..."
-msgstr ""
+msgstr "F~ara á síðu..."
#: WriterCommands.xcu
msgctxt ""
@@ -26520,8 +26520,8 @@ msgctxt ""
"..WriterCommands.UserInterface.Commands..uno:TextAttributes\n"
"Label\n"
"value.text"
-msgid "Text Attributes"
-msgstr "Eigindi texta"
+msgid "Text Attributes..."
+msgstr ""
#: WriterCommands.xcu
msgctxt ""
@@ -26656,7 +26656,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "First ~Author"
-msgstr ""
+msgstr "Fyrsti ~höfundur"
#: WriterCommands.xcu
msgctxt ""
@@ -27412,7 +27412,7 @@ msgctxt ""
"PopupLabel\n"
"value.text"
msgid "Edit F~ields..."
-msgstr ""
+msgstr "Breyta gagnasv~iðum..."
#: WriterCommands.xcu
msgctxt ""
@@ -29410,7 +29410,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Clone"
-msgstr ""
+msgstr "Klóna"
#: WriterCommands.xcu
msgctxt ""
@@ -29419,7 +29419,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Clone Formatting"
-msgstr ""
+msgstr "Klóna snið"
#: WriterCommands.xcu
msgctxt ""
@@ -29428,7 +29428,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Clone Formatting (double click and Ctrl or Cmd to alter behavior)"
-msgstr ""
+msgstr "Klóna snið (tvísmella og nota Ctrl/Cmd til að breyta hegðun)"
#: WriterCommands.xcu
msgctxt ""
@@ -29527,7 +29527,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Word Count..."
-msgstr ""
+msgstr "~Fjöldi orða"
#: WriterCommands.xcu
msgctxt ""
diff --git a/source/is/readlicense_oo/docs.po b/source/is/readlicense_oo/docs.po
index a5767f9b816..8b8f99444b5 100644
--- a/source/is/readlicense_oo/docs.po
+++ b/source/is/readlicense_oo/docs.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: docs\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-04-17 15:54+0200\n"
-"PO-Revision-Date: 2017-10-06 07:58+0000\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
+"PO-Revision-Date: 2018-05-29 14:27+0000\n"
"Last-Translator: Sveinn í Felli <sv1@fellsnet.is>\n"
"Language-Team: Icelandic <translation-team-is@lists.sourceforge.net>\n"
"Language: is\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1507276680.000000\n"
+"X-POOTLE-MTIME: 1527604027.000000\n"
#: readme.xrm
msgctxt ""
@@ -30,7 +30,7 @@ msgctxt ""
"LatestUpdates\n"
"readmeitem.text"
msgid "For the latest updates to this readme file, see <a href=\"https://www.libreoffice.org/welcome/readme.html\">https://www.libreoffice.org/welcome/readme.html</a>"
-msgstr ""
+msgstr "Til að sjá allra nýjustu uppfærslur við þetta skjal, er hægt að skoða <a href=\"https://www.libreoffice.org/welcome/readme.html\">https://www.libreoffice.org/welcome/readme.html</a>"
#: readme.xrm
msgctxt ""
@@ -46,7 +46,7 @@ msgctxt ""
"A7\n"
"readmeitem.text"
msgid "The ${PRODUCTNAME} community is responsible for the development of this product, and invites you to consider participating as a community member. If you are a new user, you can visit the ${PRODUCTNAME} site, where you will find lots of information about the ${PRODUCTNAME} project and the communities that exist around it. Go to <a href=\"https://www.libreoffice.org/\">https://www.libreoffice.org/</a>."
-msgstr ""
+msgstr "${PRODUCTNAME} samfélagið er ábyrgt fyrir þróun þessa hugbúnaðar, við bjóðum þér að taka þátt í þessu með okkur - ef þú hefur áhuga. Sértu alveg nýr notandi geturðu heimsótt ${PRODUCTNAME} vefinn, þar geturðu fundið mikið af upplýsingum um ${PRODUCTNAME} verkefnið og samfélagið í kringum það. Farðu á <a href=\"https://www.libreoffice.org/\">https://www.libreoffice.org/</a>."
#: readme.xrm
msgctxt ""
@@ -86,7 +86,7 @@ msgctxt ""
"A13b\n"
"readmeitem.text"
msgid "If you appreciate their efforts, and would like to ensure that ${PRODUCTNAME} continues to be available far into the future, please consider contributing to the project - see <a href=\"https://www.documentfoundation.org/contribution/\">https://www.documentfoundation.org/contribution/</a> for details. Everyone can make a contribution of some kind."
-msgstr ""
+msgstr "Ef þú kannt að meta þessa vinnu og vilt tryggja að ${PRODUCTNAME} haldi áfram að vera fáanlegt í framtíðinni, endilega íhugaðu að taka þátt og gefa af þér til verkefnisins - skoðaðu til dæmis <a href=\"https://www.documentfoundation.org/contribution/\">https://www.documentfoundation.org/contribution/</a> fyrir nánari upplýsingar. Allir geta gefið eitthvað í púkkið."
#: readme.xrm
msgctxt ""
@@ -117,8 +117,8 @@ msgctxt ""
"readme.xrm\n"
"macxiOSX\n"
"readmeitem.text"
-msgid "MacOSX 10.8 (Mountain Lion) or higher"
-msgstr "MacOSX 10.8 (Mountain Lion) eða hærri"
+msgid "MacOSX 10.9 (Mavericks) or higher"
+msgstr ""
#: readme.xrm
msgctxt ""
@@ -126,7 +126,7 @@ msgctxt ""
"s2s3sdf21\n"
"readmeitem.text"
msgid "Microsoft Windows 7 SP1, 8, 8.1 Update (S14) or 10"
-msgstr ""
+msgstr "Microsoft Windows 7 SP1, 8, 8.1 uppfærsla (S14) eða 10"
#: readme.xrm
msgctxt ""
@@ -406,7 +406,7 @@ msgctxt ""
"otherinstall2\n"
"readmeitem.text"
msgid "The RPMS (or DEBS, respectively) directory also contains a package named libreoffice${PRODUCTVERSION}-freedesktop-menus-${PRODUCTVERSION}.0.1-1.noarch.rpm (or libreoffice${PRODUCTVERSION}-debian-menus_${PRODUCTVERSION}.0.1-1_all.deb, respectively, or similar). This is a package for all Linux distributions that support the Freedesktop.org specifications/recommendations (<a href=\"https://en.wikipedia.org/wiki/Freedesktop.org\">https://en.wikipedia.org/wiki/Freedesktop.org</a>), and is provided for installation on other Linux distributions not covered in the aforementioned instructions."
-msgstr ""
+msgstr "Mappan RPMS (eða DEBS) inniheldur einnig pakka sem kallast libreoffice${PRODUCTVERSION}-freedesktop-menus-${PRODUCTVERSION}.0.1-1.noarch.rpm (eða libreoffice${PRODUCTVERSION}-debian-menus_${PRODUCTVERSION}.0.1-1_all.deb, eða álíka). Þetta er uppsetningarpakki fyrir allar þær Linux dreifingar sem styðja Freedesktop.org skilgreiningar/staðla (<a href=\"https://en.wikipedia.org/wiki/Freedesktop.org\">https://en.wikipedia.org/wiki/Freedesktop.org</a>), og er þessi pakki notaður til uppsetningar á þeim Linux dreifingum sem ekki er minnst á í leiðbeiningunum hér að ofan."
#: readme.xrm
msgctxt ""
@@ -646,7 +646,7 @@ msgctxt ""
"pji76w1\n"
"readmeitem.text"
msgid "When sending a document via 'File - Send - Document as E-mail' or 'Document as PDF Attachment' problems might occur (program crashes or hangs). This is due to the Windows system file \"Mapi\" (Messaging Application Programming Interface) which causes problems in some file versions. Unfortunately, the problem cannot be narrowed down to a certain version number. For more information visit <a href=\"https://www.microsoft.com\">https://www.microsoft.com</a> to search the Microsoft Knowledge Base for \"mapi dll\"."
-msgstr ""
+msgstr "Þegar skjal er sent með 'Skrá - Senda - Skjal sem tölvupóst' eða 'Skjal sem PDF-viðhengi' (File - Send - Document as E-mail' eða 'Document as PDF Attachment) þá geta komið upp vandamál (forritið hrynur eða hangir). Þetta er um að kenna Windows-kerfisskránni \"Mapi\" (Messaging Application Programming Interface) sem veldur vandamálum í sumum útgáfum skráa. Því miður hefur ekki verið hægt að þrengja ástæðurnar niður í einhverja ákveðna útgáfu. Til að nálgast ítarlegri upplýsingar er hægt að heimsækja <a href=\"https://www.microsoft.com\">https://www.microsoft.com</a> og leita í Microsoft Knowledge Base eftir \"mapi dll\"."
#: readme.xrm
msgctxt ""
@@ -662,7 +662,7 @@ msgctxt ""
"access7\n"
"readmeitem.text"
msgid "For more information on the accessibility features in ${PRODUCTNAME}, see <a href=\"https://www.libreoffice.org/accessibility/\">https://www.libreoffice.org/accessibility/</a>"
-msgstr ""
+msgstr "Fyrir upplýsingar um aðgengismál í ${PRODUCTNAME}, skoðaðu <a href=\"https://www.libreoffice.org/accessibility/\">https://www.libreoffice.org/accessibility/</a>"
#: readme.xrm
msgctxt ""
@@ -678,7 +678,7 @@ msgctxt ""
"support1\n"
"readmeitem.text"
msgid "The <a href=\"https://www.libreoffice.org/get-help/community-support/\">main support page</a> offers various possibilities for help with ${PRODUCTNAME}. Your question may have already been answered - check the Community Forum at <a href=\"https://www.documentfoundation.org/nabble/\">https://www.documentfoundation.org/nabble/</a> or search the archives of the 'users@libreoffice.org' mailing list at <a href=\"https://www.libreoffice.org/lists/users/\">https://www.libreoffice.org/lists/users/</a>. Alternatively, you can send in your questions to <a href=\"mailto:users@libreoffice.org\">users@libreoffice.org</a>. If you like to subscribe to the list (to get email responses), send an empty mail to: <a href=\"mailto:users+subscribe@libreoffice.org\">users+subscribe@libreoffice.org</a>."
-msgstr ""
+msgstr "<a href=\"https://www.libreoffice.org/get-help/community-support/\">Aðal stuðningssíðan</a> býður upp á margvíslega hjálp varðandi ${PRODUCTNAME}. Hugsanlegt er að spurningunni þinni hafi þegar verið svarað - skoðaðu það á samfélagssvæðinu (Community Forum): <a href=\"https://www.documentfoundation.org/nabble/\">https://www.documentfoundation.org/nabble/</a> eða skoðaðu póstlistayfirlitin fyrir 'users@libreoffice.org' póstlistann hérna: <a href=\"https://www.libreoffice.org/lists/users/\">https://www.libreoffice.org/lists/users/</a>. . Einnig gætirðu sent in spurningar á <a href=\"mailto:users@libreoffice.org\">users@libreoffice.org</a>. Ef þú hefur áhuga geturðu gerst áskrifandi að póstlistanum (færð svör í tölvupósti) sendu þá auðan póst á: <a href=\"mailto:users+subscribe@libreoffice.org\">users+subscribe@libreoffice.org</a>."
#: readme.xrm
msgctxt ""
@@ -686,7 +686,7 @@ msgctxt ""
"faq\n"
"readmeitem.text"
msgid "Also check the FAQ section at <a href=\"https://www.libreoffice.org/get-help/frequently-asked-questions/\">the LibreOffice website</a>."
-msgstr ""
+msgstr "Skoðaðu líka algengar spurningar (FAQ) á <a href=\"https://www.libreoffice.org/get-help/frequently-asked-questions/\">vefsvæði LibreOffice</a>."
#: readme.xrm
msgctxt ""
@@ -702,7 +702,7 @@ msgctxt ""
"reportbugs1\n"
"readmeitem.text"
msgid "Our system for reporting, tracking and solving bugs is currently Bugzilla, hosted at <a href=\"http://bugs.documentfoundation.org/\">http://bugs.documentfoundation.org/</a>. We encourage all users to feel entitled and welcome to report bugs that may arise on your particular platform. Energetic reporting of bugs is one of the most important contributions that the user community can make to the ongoing development and improvement of ${PRODUCTNAME}."
-msgstr ""
+msgstr "Kerfið sem við notum fyrir villuskýrslur, eftirfylgni og lausn á göllum er þessa stundina BugZilla, sem er hýst hjá <a href=\"http://bugs.documentfoundation.org/\">http://bugs.documentfoundation.org/</a>. Við hvetjum alla notendur til að finnast þeir velkomnir við að tilkynna um hverskyns villur og galla sem fundist gætu við notkun. Virkt flæði tilkynninga um það sem betur mætti fara er eitt mikilvægasta framlagið sem notendur geta gefið af sér til áframhaldandi þróunar og bætingar á ${PRODUCTNAME} hugbúnaðinum."
#: readme.xrm
msgctxt ""
@@ -726,7 +726,7 @@ msgctxt ""
"gettingimvolved3\n"
"readmeitem.text"
msgid "As a user, you are already a valuable part of the suite's development process and we would like to encourage you to take an even more active role with a view to being a long-term contributor to the community. Please join and check out the contributing page at <a href=\"https://www.libreoffice.org/community/get-involved/\">the LibreOffice website</a>."
-msgstr ""
+msgstr "Sem notandi ertu nú þegar orðin/n mikilvægur hluti í þróunarferli hugbúnaðarins, við viljum hvetja þig til að taka enn virkari þátt í samfélaginu Endilega skráðu þig og skoðaðu <a href=\"https://www.libreoffice.org/community/get-involved/\">vefsvæði LibreOffice</a> þar sem fram kemur hvernig þú getur komið að enn meira gagni."
#: readme.xrm
msgctxt ""
@@ -742,7 +742,7 @@ msgctxt ""
"howtostart1\n"
"readmeitem.text"
msgid "The best way to start contributing is to subscribe to one or more of the mailing lists, lurk for a while, and gradually use the mail archives to familiarize yourself with many of the topics covered since the ${PRODUCTNAME} source code was released back in October 2000. When you're comfortable, all you need to do is send an email self-introduction and jump right in. If you are familiar with Open Source Projects, check out our To-Dos list and see if there is anything you would like to help with at <a href=\"https://www.libreoffice.org/community/developers/\">the LibreOffice website</a>."
-msgstr ""
+msgstr "Besta leiðin til að taka þátt er að gerast áskrifandi að einum eða fleiri póstlistum, fylgjast með því sem fram fer um stund auk þess að fletta í eldri pósti til að kynnast því sem áður hefur farið fram á listunum síðan grunnkóði${PRODUCTNAME} var gefinn frjáls í október árið 2000 Þegar þér finnst tími til kominn, er gott að senda fyrst dálítinn kynningarpóst um sjálfa/n.þig og hoppa síðan í djúpu laugina Ef þú ert þegar búin/n að kynna þér út á hvað opinn og frjáls hugbúnaður gengur (Open Source Projects), skoðaðu þá <a href=\"https://www.libreoffice.org/community/developers/\">verkefnalista LibreOffice</a> (To-Dos) og athugaðu hvort þar er eitthvað sem þú gætir hjálpað til við að framkvæma."
#: readme.xrm
msgctxt ""
@@ -758,7 +758,7 @@ msgctxt ""
"subscribe1\n"
"readmeitem.text"
msgid "Here are a few of the mailing lists to which you can subscribe at <a href=\"https://www.libreoffice.org/get-help/mailing-lists/\">https://www.libreoffice.org/get-help/mailing-lists/</a>"
-msgstr ""
+msgstr "Hér eru nokkrir af póstlistum verkefnisins sem þú getur gerst áskrifandi að á <a href=\"https://www.libreoffice.org/get-help/mailing-lists/\">https://www.libreoffice.org/get-help/mailing-lists/</a>"
#: readme.xrm
msgctxt ""
diff --git a/source/is/sc/messages.po b/source/is/sc/messages.po
index 2af93d5ed65..43022671764 100644
--- a/source/is/sc/messages.po
+++ b/source/is/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: 2018-05-22 13:16+0200\n"
-"PO-Revision-Date: 2018-04-25 13:29+0000\n"
+"POT-Creation-Date: 2018-06-12 14:40+0200\n"
+"PO-Revision-Date: 2018-05-29 08:23+0000\n"
"Last-Translator: Sveinn í Felli <sv1@fellsnet.is>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: is\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1524662990.000000\n"
+"X-POOTLE-MTIME: 1527582213.000000\n"
#: sc/inc/compiler.hrc:27
msgctxt "RID_FUNCTION_CATEGORIES"
@@ -390,7 +390,7 @@ msgstr "Upprunaleg stærð"
#: sc/inc/globstr.hrc:96
msgctxt "STR_UNDO_FITCELLSIZE"
msgid "Fit to Cell Size"
-msgstr ""
+msgstr "Laga að stærð reits"
#: sc/inc/globstr.hrc:97
msgctxt "STR_UNDO_UPDATELINK"
@@ -627,7 +627,6 @@ msgid ") into the variable cell anyway?"
msgstr ") inn í breytureitinn?"
#: sc/inc/globstr.hrc:141
-#, fuzzy
msgctxt "STR_TABLE_GRAND"
msgid "Grand"
msgstr "Heildarniðurstaða"
@@ -1869,16 +1868,21 @@ msgid "Nested arrays are not supported."
msgstr "Földuð fylki eru ekki studd."
#: sc/inc/globstr.hrc:390
+msgctxt "STR_ERR_LONG_BAD_ARRAY_CONTENT"
+msgid "Unsupported inline array content."
+msgstr ""
+
+#: sc/inc/globstr.hrc:391
msgctxt "STR_UNDO_TEXTTOCOLUMNS"
msgid "Text to Columns"
msgstr "Texta í dálka"
-#: sc/inc/globstr.hrc:391
+#: sc/inc/globstr.hrc:392
msgctxt "STR_DOC_UPDATED"
msgid "Your spreadsheet has been updated with changes saved by other users."
msgstr "Búið er að uppfæra töflureikninn með vistuðum breytingum frá öðrum notendum."
-#: sc/inc/globstr.hrc:392
+#: sc/inc/globstr.hrc:393
msgctxt "STR_DOC_WILLBESAVED"
msgid ""
"The spreadsheet must be saved now to activate sharing mode.\n"
@@ -1889,7 +1893,7 @@ msgstr ""
"\n"
"Viltu halda áfram?"
-#: sc/inc/globstr.hrc:393
+#: sc/inc/globstr.hrc:394
msgctxt "STR_DOC_WILLNOTBESAVED"
msgid ""
"Already resolved merge conflicts will be lost and your changes to the shared spreadsheet will not be saved.\n"
@@ -1900,7 +1904,7 @@ msgstr ""
"\n"
"Viltu halda áfram?"
-#: sc/inc/globstr.hrc:394
+#: sc/inc/globstr.hrc:395
msgctxt "STR_DOC_DISABLESHARED"
msgid ""
"Disabling shared mode of a spreadsheet hinders all other users of the shared spreadsheet to merge back their work.\n"
@@ -1911,7 +1915,7 @@ msgstr ""
"\n"
"Viltu halda áfram?"
-#: sc/inc/globstr.hrc:395
+#: sc/inc/globstr.hrc:396
msgctxt "STR_DOC_NOLONGERSHARED"
msgid ""
"This spreadsheet is no longer in shared mode.\n"
@@ -1922,7 +1926,7 @@ msgstr ""
"\n"
"Vistaðu töflureikninn í aðra skrá og sameinaðu þínar breytingar handvirkt yfir í töflureikninn sem verið er að deila."
-#: sc/inc/globstr.hrc:396
+#: sc/inc/globstr.hrc:397
msgctxt "STR_FILE_LOCKED_TRY_LATER"
msgid ""
"The shared spreadsheet file is locked due to a merge in progress by user: '%1'\n"
@@ -1933,7 +1937,7 @@ msgstr ""
"\n"
"Ekki er hægt að taka sameignarham af læstri skrá. Reyndu aftur seinna."
-#: sc/inc/globstr.hrc:397
+#: sc/inc/globstr.hrc:398
msgctxt "STR_FILE_LOCKED_SAVE_LATER"
msgid ""
"The shared spreadsheet file is locked due to a merge in progress by user: '%1'\n"
@@ -1944,147 +1948,147 @@ msgstr ""
"\n"
"Reyndu aftur seinna að vista breytingar."
-#: sc/inc/globstr.hrc:398
+#: sc/inc/globstr.hrc:399
msgctxt "STR_UNKNOWN_USER"
msgid "Unknown User"
msgstr "Óþekktur notandi"
-#: sc/inc/globstr.hrc:399
+#: sc/inc/globstr.hrc:400
msgctxt "STR_SHAPE_AUTOSHAPE"
msgid "AutoShape"
msgstr "SjálfvirkForm"
-#: sc/inc/globstr.hrc:400
+#: sc/inc/globstr.hrc:401
msgctxt "STR_SHAPE_RECTANGLE"
msgid "Rectangle"
msgstr "Rétthyrningur"
-#: sc/inc/globstr.hrc:401
+#: sc/inc/globstr.hrc:402
msgctxt "STR_SHAPE_LINE"
msgid "Line"
msgstr "Lína"
-#: sc/inc/globstr.hrc:402
+#: sc/inc/globstr.hrc:403
msgctxt "STR_SHAPE_OVAL"
msgid "Oval"
msgstr "Sporöskjulaga"
-#: sc/inc/globstr.hrc:403
+#: sc/inc/globstr.hrc:404
msgctxt "STR_FORM_BUTTON"
msgid "Button"
msgstr "Hnappur"
-#: sc/inc/globstr.hrc:404
+#: sc/inc/globstr.hrc:405
msgctxt "STR_FORM_CHECKBOX"
msgid "Check Box"
msgstr "Hakreitur"
-#: sc/inc/globstr.hrc:405
+#: sc/inc/globstr.hrc:406
msgctxt "STR_FORM_OPTIONBUTTON"
msgid "Option Button"
msgstr "Valhnappur"
-#: sc/inc/globstr.hrc:406
+#: sc/inc/globstr.hrc:407
msgctxt "STR_FORM_LABEL"
msgid "Label"
msgstr "Skýring"
-#: sc/inc/globstr.hrc:407
+#: sc/inc/globstr.hrc:408
msgctxt "STR_FORM_LISTBOX"
msgid "List Box"
msgstr "Listareitur"
-#: sc/inc/globstr.hrc:408
+#: sc/inc/globstr.hrc:409
msgctxt "STR_FORM_GROUPBOX"
msgid "Group Box"
msgstr "Hóprammi"
-#: sc/inc/globstr.hrc:409
+#: sc/inc/globstr.hrc:410
msgctxt "STR_FORM_DROPDOWN"
msgid "Drop Down"
msgstr "Fellilisti"
-#: sc/inc/globstr.hrc:410
+#: sc/inc/globstr.hrc:411
msgctxt "STR_FORM_SPINNER"
msgid "Spinner"
msgstr "Snúningsreitur"
-#: sc/inc/globstr.hrc:411
+#: sc/inc/globstr.hrc:412
msgctxt "STR_FORM_SCROLLBAR"
msgid "Scroll Bar"
msgstr "Skrunslá"
-#: sc/inc/globstr.hrc:412
+#: sc/inc/globstr.hrc:413
msgctxt "STR_STYLE_FAMILY_CELL"
msgid "Cell Styles"
msgstr "Stílar reita"
-#: sc/inc/globstr.hrc:413
+#: sc/inc/globstr.hrc:414
msgctxt "STR_STYLE_FAMILY_PAGE"
msgid "Page Styles"
msgstr "Síðustílar"
-#: sc/inc/globstr.hrc:414
+#: sc/inc/globstr.hrc:415
msgctxt "STR_ERR_DATAPILOTSOURCE"
msgid "Pivot table source data is invalid."
msgstr "Frumgögn veltitöflu eru ógild."
-#: sc/inc/globstr.hrc:415
+#: sc/inc/globstr.hrc:416
msgctxt "STR_OPTIONS_WARN_SEPARATORS"
msgid "Because the current formula separator settings conflict with the locale, the formula separators have been reset to their default values."
msgstr "Þar sem stillingar á aðgreina í formúlum eru í mótsögn við stillingar í staðfærslu, þá hafa þessir aðgreinar verið endurstilltir á upprunalegu sjálfgefnu gildin."
-#: sc/inc/globstr.hrc:416
+#: sc/inc/globstr.hrc:417
msgctxt "STR_UNDO_INSERT_CURRENT_DATE"
msgid "Insert Current Date"
msgstr "Setja inn núverandi dagsetningu"
-#: sc/inc/globstr.hrc:417
+#: sc/inc/globstr.hrc:418
msgctxt "STR_UNDO_INSERT_CURRENT_TIME"
msgid "Insert Current Time"
msgstr "Setja inn núverandi tíma"
-#: sc/inc/globstr.hrc:418
+#: sc/inc/globstr.hrc:419
msgctxt "STR_MANAGE_NAMES"
msgid "Manage Names..."
msgstr "Sýsla með heiti..."
-#: sc/inc/globstr.hrc:419
+#: sc/inc/globstr.hrc:420
msgctxt "STR_HEADER_NAME"
msgid "Name"
msgstr "Heiti"
-#: sc/inc/globstr.hrc:420
+#: sc/inc/globstr.hrc:421
msgctxt "STR_HEADER_RANGE_OR_EXPR"
msgid "Range or formula expression"
msgstr "Gagnasvið eða segð formúlu"
-#: sc/inc/globstr.hrc:421
+#: sc/inc/globstr.hrc:422
msgctxt "STR_HEADER_SCOPE"
msgid "Scope"
msgstr "Umfang"
-#: sc/inc/globstr.hrc:422
+#: sc/inc/globstr.hrc:423
msgctxt "STR_MULTI_SELECT"
msgid "(multiple)"
msgstr "(margir)"
-#: sc/inc/globstr.hrc:423
+#: sc/inc/globstr.hrc:424
msgctxt "STR_GLOBAL_SCOPE"
msgid "Document (Global)"
msgstr "Skjal (víðvært)"
-#: sc/inc/globstr.hrc:424
+#: sc/inc/globstr.hrc:425
msgctxt "STR_ERR_NAME_EXISTS"
msgid "Invalid name. Already in use for the selected scope."
msgstr "Ógildt heiti. Þegar í notkun í viðkomandi efni."
-#: sc/inc/globstr.hrc:425
+#: sc/inc/globstr.hrc:426
msgctxt "STR_ERR_NAME_INVALID"
msgid "Invalid name. Only use letters, numbers and underscore."
msgstr "Ógildt heiti. Notaðu einungis stafi, tölur og undirstrik."
-#: sc/inc/globstr.hrc:426
+#: sc/inc/globstr.hrc:427
msgctxt "STR_UNSAVED_EXT_REF"
msgid ""
"This Document contains external references to unsaved documents.\n"
@@ -2095,217 +2099,217 @@ msgstr ""
"\n"
"Viltu halda áfram?"
-#: sc/inc/globstr.hrc:427
+#: sc/inc/globstr.hrc:428
msgctxt "STR_CLOSE_WITH_UNSAVED_REFS"
msgid "This Document is referenced by another document and not yet saved. Closing it without saving will result in data loss."
msgstr "Vísað er í þetta skjal í öðru skjali, en þetta skjal hefur enn ekki verið vistað. Ef því er lokað án þess að það sé vistað gætu gögn tapast."
-#: sc/inc/globstr.hrc:428
+#: sc/inc/globstr.hrc:429
msgctxt "STR_HEADER_RANGE"
msgid "Range"
msgstr "Svið"
-#: sc/inc/globstr.hrc:429
+#: sc/inc/globstr.hrc:430
msgctxt "STR_HEADER_COND"
msgid "First Condition"
msgstr "Fyrsta skilyrði"
-#: sc/inc/globstr.hrc:430
+#: sc/inc/globstr.hrc:431
msgctxt "STR_COND_CONDITION"
msgid "Cell value is"
msgstr "Gildi reits er"
-#: sc/inc/globstr.hrc:431
+#: sc/inc/globstr.hrc:432
msgctxt "STR_COND_COLORSCALE"
msgid "ColorScale"
msgstr "LitaSkali"
-#: sc/inc/globstr.hrc:432
+#: sc/inc/globstr.hrc:433
msgctxt "STR_COND_DATABAR"
msgid "DataBar"
msgstr "GagnaStöpull"
-#: sc/inc/globstr.hrc:433
+#: sc/inc/globstr.hrc:434
msgctxt "STR_COND_ICONSET"
msgid "IconSet"
msgstr "TáknmyndaSett"
-#: sc/inc/globstr.hrc:434
+#: sc/inc/globstr.hrc:435
msgctxt "STR_COND_BETWEEN"
msgid "between"
msgstr "milli"
-#: sc/inc/globstr.hrc:435
+#: sc/inc/globstr.hrc:436
msgctxt "STR_COND_NOTBETWEEN"
msgid "not between"
msgstr "er ekki á milli"
-#: sc/inc/globstr.hrc:436
+#: sc/inc/globstr.hrc:437
msgctxt "STR_COND_UNIQUE"
msgid "unique"
msgstr "einstakt"
-#: sc/inc/globstr.hrc:437
+#: sc/inc/globstr.hrc:438
msgctxt "STR_COND_DUPLICATE"
msgid "duplicate"
msgstr "tvítak"
-#: sc/inc/globstr.hrc:438
+#: sc/inc/globstr.hrc:439
msgctxt "STR_COND_FORMULA"
msgid "Formula is"
msgstr "Formúla er"
-#: sc/inc/globstr.hrc:439
+#: sc/inc/globstr.hrc:440
msgctxt "STR_COND_TOP10"
msgid "Top Elements"
msgstr "Efstu stök"
-#: sc/inc/globstr.hrc:440
+#: sc/inc/globstr.hrc:441
msgctxt "STR_COND_BOTTOM10"
msgid "Bottom Elements"
msgstr "Neðstu stök"
-#: sc/inc/globstr.hrc:441
+#: sc/inc/globstr.hrc:442
msgctxt "STR_COND_TOP_PERCENT"
msgid "Top Percent"
msgstr "Efstu prósent"
-#: sc/inc/globstr.hrc:442
+#: sc/inc/globstr.hrc:443
msgctxt "STR_COND_DATE"
msgid "Date is"
msgstr "Dagsetning er"
-#: sc/inc/globstr.hrc:443
+#: sc/inc/globstr.hrc:444
msgctxt "STR_COND_BOTTOM_PERCENT"
msgid "Bottom Percent"
msgstr "Neðstu prósent"
-#: sc/inc/globstr.hrc:444
+#: sc/inc/globstr.hrc:445
msgctxt "STR_COND_ABOVE_AVERAGE"
msgid "Above Average"
msgstr "Yfir meðaltali"
-#: sc/inc/globstr.hrc:445
+#: sc/inc/globstr.hrc:446
msgctxt "STR_COND_BELOW_AVERAGE"
msgid "Below Average"
msgstr "Undir meðaltali"
-#: sc/inc/globstr.hrc:446
+#: sc/inc/globstr.hrc:447
msgctxt "STR_COND_ABOVE_EQUAL_AVERAGE"
msgid "Above or equal Average"
msgstr "Yfir eða jafnt meðaltali"
-#: sc/inc/globstr.hrc:447
+#: sc/inc/globstr.hrc:448
msgctxt "STR_COND_BELOW_EQUAL_AVERAGE"
msgid "Below or equal Average"
msgstr "Undir eða jafnt meðaltali"
-#: sc/inc/globstr.hrc:448
+#: sc/inc/globstr.hrc:449
msgctxt "STR_COND_ERROR"
msgid "an Error code"
msgstr "villukóði"
-#: sc/inc/globstr.hrc:449
+#: sc/inc/globstr.hrc:450
msgctxt "STR_COND_NOERROR"
msgid "not an Error code"
msgstr "er ekki villukóði"
-#: sc/inc/globstr.hrc:450
+#: sc/inc/globstr.hrc:451
msgctxt "STR_COND_BEGINS_WITH"
msgid "Begins with"
msgstr "Byrjar á"
-#: sc/inc/globstr.hrc:451
+#: sc/inc/globstr.hrc:452
msgctxt "STR_COND_ENDS_WITH"
msgid "Ends with"
msgstr "Endar á"
-#: sc/inc/globstr.hrc:452
+#: sc/inc/globstr.hrc:453
msgctxt "STR_COND_CONTAINS"
msgid "Contains"
msgstr "Inniheldur"
-#: sc/inc/globstr.hrc:453
+#: sc/inc/globstr.hrc:454
msgctxt "STR_COND_NOT_CONTAINS"
msgid "Not Contains"
msgstr "Inniheldur ekki"
-#: sc/inc/globstr.hrc:454
+#: sc/inc/globstr.hrc:455
msgctxt "STR_COND_TODAY"
msgid "today"
msgstr "í dag"
-#: sc/inc/globstr.hrc:455
+#: sc/inc/globstr.hrc:456
msgctxt "STR_COND_YESTERDAY"
msgid "yesterday"
msgstr "í gær"
-#: sc/inc/globstr.hrc:456
+#: sc/inc/globstr.hrc:457
msgctxt "STR_COND_TOMORROW"
msgid "tomorrow"
msgstr "á morgun"
-#: sc/inc/globstr.hrc:457
+#: sc/inc/globstr.hrc:458
msgctxt "STR_COND_LAST7DAYS"
msgid "in the last 7 days"
msgstr "síðustu 7 daga"
-#: sc/inc/globstr.hrc:458
+#: sc/inc/globstr.hrc:459
msgctxt "STR_COND_THISWEEK"
msgid "this week"
msgstr "í þessari viku"
-#: sc/inc/globstr.hrc:459
+#: sc/inc/globstr.hrc:460
msgctxt "STR_COND_LASTWEEK"
msgid "last week"
msgstr "í síðustu viku"
-#: sc/inc/globstr.hrc:460
+#: sc/inc/globstr.hrc:461
msgctxt "STR_COND_NEXTWEEK"
msgid "next week"
msgstr "Í næstu viku"
-#: sc/inc/globstr.hrc:461
+#: sc/inc/globstr.hrc:462
msgctxt "STR_COND_THISMONTH"
msgid "this month"
msgstr "í þessum mánuði"
-#: sc/inc/globstr.hrc:462
+#: sc/inc/globstr.hrc:463
msgctxt "STR_COND_LASTMONTH"
msgid "last month"
msgstr "í síðasta mánuði"
-#: sc/inc/globstr.hrc:463
+#: sc/inc/globstr.hrc:464
msgctxt "STR_COND_NEXTMONTH"
msgid "next month"
msgstr "Í næsta mánuði"
-#: sc/inc/globstr.hrc:464
+#: sc/inc/globstr.hrc:465
msgctxt "STR_COND_THISYEAR"
msgid "this year"
msgstr "á þessu ári"
-#: sc/inc/globstr.hrc:465
+#: sc/inc/globstr.hrc:466
msgctxt "STR_COND_LASTYEAR"
msgid "last year"
msgstr "á síðasta ári"
-#: sc/inc/globstr.hrc:466
+#: sc/inc/globstr.hrc:467
msgctxt "STR_COND_NEXTYEAR"
msgid "next year"
msgstr "Næsta ár"
-#: sc/inc/globstr.hrc:467
+#: sc/inc/globstr.hrc:468
msgctxt "STR_COND_AND"
msgid "and"
msgstr "og"
-#: sc/inc/globstr.hrc:468
+#: sc/inc/globstr.hrc:469
msgctxt "STR_ERR_CONDFORMAT_PROTECTED"
msgid "Conditional Formats can not be created, deleted or changed in protected sheets."
msgstr ""
-#: sc/inc/globstr.hrc:469
+#: sc/inc/globstr.hrc:470
msgctxt "STR_EDIT_EXISTING_COND_FORMATS"
msgid ""
"The selected cell already contains conditional formatting. You can either edit the existing conditional format or you define a new overlapping conditional format.\n"
@@ -2313,7 +2317,7 @@ msgid ""
" Do you want to edit the existing conditional format?"
msgstr ""
-#: sc/inc/globstr.hrc:470
+#: sc/inc/globstr.hrc:471
msgctxt "STR_QUERY_FORMULA_RECALC_ONLOAD_ODS"
msgid ""
"This document was last saved by an application other than %PRODUCTNAME. Some formula cells may produce different results when recalculated.\n"
@@ -2324,7 +2328,7 @@ msgstr ""
"\n"
"Viltu endurreikna formúlur í öllum reitum í þessu skjali núna?"
-#: sc/inc/globstr.hrc:471
+#: sc/inc/globstr.hrc:472
msgctxt "STR_QUERY_FORMULA_RECALC_ONLOAD_XLS"
msgid ""
"This document was last saved by Excel. Some formula cells may produce different results when recalculated.\n"
@@ -2335,77 +2339,77 @@ msgstr ""
"\n"
"Viltu endurreikna formúlur í öllum reitum núna?"
-#: sc/inc/globstr.hrc:472
+#: sc/inc/globstr.hrc:473
msgctxt "STR_NO_INSERT_DELETE_OVER_PIVOT_TABLE"
msgid "You cannot insert or delete cells when the affected range intersects with pivot table."
msgstr ""
-#: sc/inc/globstr.hrc:473
+#: sc/inc/globstr.hrc:474
msgctxt "STR_DPFIELD_GROUP_BY_SECONDS"
msgid "Seconds"
msgstr "Sekúndur"
-#: sc/inc/globstr.hrc:474
+#: sc/inc/globstr.hrc:475
msgctxt "STR_DPFIELD_GROUP_BY_MINUTES"
msgid "Minutes"
msgstr "Mínútur"
-#: sc/inc/globstr.hrc:475
+#: sc/inc/globstr.hrc:476
msgctxt "STR_DPFIELD_GROUP_BY_HOURS"
msgid "Hours"
msgstr "Klukkustundir"
-#: sc/inc/globstr.hrc:476
+#: sc/inc/globstr.hrc:477
msgctxt "STR_DPFIELD_GROUP_BY_DAYS"
msgid "Days"
msgstr "Dagar"
-#: sc/inc/globstr.hrc:477
+#: sc/inc/globstr.hrc:478
msgctxt "STR_DPFIELD_GROUP_BY_MONTHS"
msgid "Months"
msgstr "Mánuðir"
-#: sc/inc/globstr.hrc:478
+#: sc/inc/globstr.hrc:479
msgctxt "STR_DPFIELD_GROUP_BY_QUARTERS"
msgid "Quarters"
msgstr "Ársfjórðungar"
-#: sc/inc/globstr.hrc:479
+#: sc/inc/globstr.hrc:480
msgctxt "STR_DPFIELD_GROUP_BY_YEARS"
msgid "Years"
msgstr "Ár"
-#: sc/inc/globstr.hrc:480
+#: sc/inc/globstr.hrc:481
msgctxt "STR_INVALIDVAL"
msgid "Invalid target value."
msgstr "Ógilt markgildi."
-#: sc/inc/globstr.hrc:481
+#: sc/inc/globstr.hrc:482
msgctxt "STR_INVALIDVAR"
msgid "Undefined name for variable cell."
msgstr "Óskilgreint heiti á breytureit."
-#: sc/inc/globstr.hrc:482
+#: sc/inc/globstr.hrc:483
msgctxt "STR_INVALIDFORM"
msgid "Undefined name as formula cell."
msgstr "Óskilgreint heiti á formúlureit."
-#: sc/inc/globstr.hrc:483
+#: sc/inc/globstr.hrc:484
msgctxt "STR_NOFORMULA"
msgid "Formula cell must contain a formula."
msgstr "Formúlureitur verður að innihalda formúlu."
-#: sc/inc/globstr.hrc:484
+#: sc/inc/globstr.hrc:485
msgctxt "STR_INVALIDINPUT"
msgid "Invalid input."
msgstr "Rangt inntak."
-#: sc/inc/globstr.hrc:485
+#: sc/inc/globstr.hrc:486
msgctxt "STR_INVALIDCONDITION"
msgid "Invalid condition."
msgstr "Ógilt skilyrði."
-#: sc/inc/globstr.hrc:486
+#: sc/inc/globstr.hrc:487
msgctxt "STR_QUERYREMOVE"
msgid ""
"Should the entry\n"
@@ -2416,133 +2420,133 @@ msgstr ""
"#\n"
"færslunni?"
-#: sc/inc/globstr.hrc:487
+#: sc/inc/globstr.hrc:488
msgctxt "STR_COPYLIST"
msgid "Copy List"
msgstr "Afrita lista"
-#: sc/inc/globstr.hrc:488
+#: sc/inc/globstr.hrc:489
msgctxt "STR_COPYFROM"
msgid "List from"
msgstr "Listi frá"
-#: sc/inc/globstr.hrc:489
+#: sc/inc/globstr.hrc:490
msgctxt "STR_COPYERR"
msgid "Cells without text have been ignored."
msgstr "Reitir án texta hafa verið hunsaðir."
-#: sc/inc/globstr.hrc:490
+#: sc/inc/globstr.hrc:491
#, c-format
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%s-click to follow hyperlink:"
msgstr "%s-smella til að opna veftengla:"
-#: sc/inc/globstr.hrc:491
+#: sc/inc/globstr.hrc:492
msgctxt "STR_CLICKHYPERLINK"
msgid "click to open hyperlink:"
msgstr "smella til að opna veftengla:"
-#: sc/inc/globstr.hrc:492
+#: sc/inc/globstr.hrc:493
msgctxt "STR_PRINT_PREVIEW_NODATA"
msgid "No Data"
msgstr "Engin gögn"
-#: sc/inc/globstr.hrc:493
+#: sc/inc/globstr.hrc:494
msgctxt "STR_PRINT_PREVIEW_EMPTY_RANGE"
msgid "Print Range Empty"
msgstr "Prentbil autt"
-#: sc/inc/globstr.hrc:494
+#: sc/inc/globstr.hrc:495
msgctxt "STR_UNDO_CONDFORMAT"
msgid "Conditional Format"
msgstr "Skilyrt snið"
-#: sc/inc/globstr.hrc:495
+#: sc/inc/globstr.hrc:496
msgctxt "STR_UNDO_CONDFORMAT_LIST"
msgid "Conditional Formats"
msgstr "Skilyrt snið"
-#: sc/inc/globstr.hrc:496
+#: sc/inc/globstr.hrc:497
msgctxt "STR_UNDO_FORMULA_TO_VALUE"
msgid "Convert Formula To Value"
msgstr "Umbreyta formúlu í gildi"
-#: sc/inc/globstr.hrc:497
+#: sc/inc/globstr.hrc:498
msgctxt "STR_UNQUOTED_STRING"
msgid "Strings without quotes are interpreted as column/row labels."
msgstr "Strengir án gæsalappa eru túlkaðir sem fyrirsagnir dálka/raða."
-#: sc/inc/globstr.hrc:498
+#: sc/inc/globstr.hrc:499
msgctxt "STR_ENTER_VALUE"
msgid "Enter a value!"
msgstr "Settu inn gildi!"
-#: sc/inc/globstr.hrc:499
+#: sc/inc/globstr.hrc:500
msgctxt "STR_TABLE_COUNT"
msgid "Sheet %1 of %2"
msgstr "Blað %1 af %2"
-#: sc/inc/globstr.hrc:500
+#: sc/inc/globstr.hrc:501
msgctxt "STR_FUNCTIONS_FOUND"
msgid "%1 and %2 more"
msgstr "%1 og %2 til viðbótar"
-#: sc/inc/globstr.hrc:501
+#: sc/inc/globstr.hrc:502
msgctxt "STR_GENERAL"
msgid "General"
msgstr "Almennt"
-#: sc/inc/globstr.hrc:502
+#: sc/inc/globstr.hrc:503
msgctxt "STR_NUMBER"
msgid "Number"
msgstr "Tala"
-#: sc/inc/globstr.hrc:503
+#: sc/inc/globstr.hrc:504
msgctxt "STR_PERCENT"
msgid "Percent"
msgstr "Prósenta"
-#: sc/inc/globstr.hrc:504
+#: sc/inc/globstr.hrc:505
msgctxt "STR_CURRENCY"
msgid "Currency"
msgstr "Gjaldmiðill"
-#: sc/inc/globstr.hrc:505
+#: sc/inc/globstr.hrc:506
msgctxt "STR_DATE"
msgid "Date"
msgstr "Dagsetning"
-#: sc/inc/globstr.hrc:506
+#: sc/inc/globstr.hrc:507
msgctxt "STR_TIME"
msgid "Time"
msgstr "Tími"
-#: sc/inc/globstr.hrc:507
+#: sc/inc/globstr.hrc:508
msgctxt "STR_SCIENTIFIC"
msgid "Scientific"
msgstr "Vísindalegt"
-#: sc/inc/globstr.hrc:508
+#: sc/inc/globstr.hrc:509
msgctxt "STR_FRACTION"
msgid "Fraction"
msgstr "Tugabrot"
-#: sc/inc/globstr.hrc:509
+#: sc/inc/globstr.hrc:510
msgctxt "STR_BOOLEAN_VALUE"
msgid "Boolean Value"
msgstr "Boole-gildi"
-#: sc/inc/globstr.hrc:510
+#: sc/inc/globstr.hrc:511
msgctxt "STR_TEXT"
msgid "Text"
msgstr "Texti"
-#: sc/inc/globstr.hrc:511
+#: sc/inc/globstr.hrc:512
msgctxt "STR_QUERY_PIVOTTABLE_DELTAB"
msgid "The selected sheet(s) contain source data of related pivot tables that will be lost. Are you sure you want to delete the selected sheet(s)?"
msgstr ""
-#: sc/inc/globstr.hrc:512
+#: sc/inc/globstr.hrc:513
msgctxt "STR_ERR_NAME_INVALID_CELL_REF"
msgid "Invalid name. Reference to a cell, or a range of cells not allowed."
msgstr ""
@@ -4188,7 +4192,6 @@ msgid "Type = 1 denotes due at the beginning of the period, = 0 at the end."
msgstr "Tegund = 1 er í byrjun tímabilsins, = 0 er í enda tímabilsins."
#: sc/inc/scfuncs.hrc:520
-#, fuzzy
msgctxt "SC_OPCODE_CUM_PRINC"
msgid "Cumulative capital. Calculates the total amount of the repayment share in a period for an investment with constant interest rate."
msgstr "Skilar uppsöfnuðum greiðslum af höfuðstóli láns milli tveggja tímabila."
@@ -4655,10 +4658,9 @@ msgid "Value "
msgstr "Gildi "
#: sc/inc/scfuncs.hrc:658
-#, fuzzy
msgctxt "SC_OPCODE_NPV"
msgid "Value 1, value 2,... are arguments representing payments and income."
-msgstr "Gildi 1, gildi 2, ... eru 1 til 30 greiðslur afborgana og tekna."
+msgstr "Gildi 1, gildi 2, ... eru gildi sem standa fyrir greiðslur afborgana og tekjur."
#: sc/inc/scfuncs.hrc:664
msgctxt "SC_OPCODE_IRR"
@@ -4717,7 +4719,6 @@ msgid "Reinvest rate"
msgstr "vaxtaprósenta"
#: sc/inc/scfuncs.hrc:680
-#, fuzzy
msgctxt "SC_OPCODE_MIRR"
msgid "Interest rate for reinvestments (the positive values in the array)."
msgstr "Er vaxtaprósentan sem er greidd af fénu (neikvæðar tölur í fylkinu)."
@@ -4748,10 +4749,9 @@ msgid "Number of amortization periods for the calculation of the interest."
msgstr "Tímabil sem finna á vextina fyrir."
#: sc/inc/scfuncs.hrc:691
-#, fuzzy
msgctxt "SC_OPCODE_ISPMT"
msgid "Total periods"
-msgstr "heilarfjöldi_tímabila"
+msgstr "Heilarfjöldi tímabila"
#: sc/inc/scfuncs.hrc:692
msgctxt "SC_OPCODE_ISPMT"
@@ -4809,10 +4809,9 @@ msgid "Interest. Calculates the interest rate which represents the rate of retur
msgstr "Vextir. Reiknar út vexti af verðbréfi."
#: sc/inc/scfuncs.hrc:713
-#, fuzzy
msgctxt "SC_OPCODE_RRI"
msgid "Periods"
-msgstr "Tímabil"
+msgstr "Tímabilin"
#: sc/inc/scfuncs.hrc:714
msgctxt "SC_OPCODE_RRI"
@@ -5190,10 +5189,9 @@ msgid "Logical value "
msgstr "Rökgildi "
#: sc/inc/scfuncs.hrc:904
-#, fuzzy
msgctxt "SC_OPCODE_OR"
msgid "Logical value 1, logical value 2,... are conditions to be tested and which return either TRUE or FALSE."
-msgstr "Rökgildi 1, rökgildi 2,... frá 1 til 30 skilyrði sem á að prófa og skila annaðhvort SATT eða ÓSATT."
+msgstr "Rökgildi 1, rökgildi 2,... eru skilyrði sem á að prófa og skila annaðhvort SATT eða ÓSATT."
#: sc/inc/scfuncs.hrc:910
msgctxt "SC_OPCODE_XOR"
@@ -5330,16 +5328,14 @@ msgid "Number "
msgstr "Tala "
#: sc/inc/scfuncs.hrc:976
-#, fuzzy
msgctxt "SC_OPCODE_PRODUCT"
msgid "Number 1, number 2, ... are arguments to be multiplied and a result returned."
-msgstr "Talan 1, talan 2, ... eru 1 til 30 tölur sem á að margfalda og skila niðurstöðu."
+msgstr "Talan 1, talan 2, ... eru tölur sem á að margfalda og skila niðurstöðu."
#: sc/inc/scfuncs.hrc:982
-#, fuzzy
msgctxt "SC_OPCODE_SUM_IF"
msgid "Totals the arguments that meet the condition."
-msgstr "Tekur meðaltal af þeim viðföngum sem passa við skilyrðin."
+msgstr "Leggur saman alla reitina sem passa við skilyrðin."
#: sc/inc/scfuncs.hrc:983
msgctxt "SC_OPCODE_SUM_IF"
@@ -6643,10 +6639,9 @@ msgid "Array multiplication. Returns the product of two arrays."
msgstr "Fylkismargfeldi. Skilar fylkismargfeldi tveggja fylkja."
#: sc/inc/scfuncs.hrc:1556
-#, fuzzy
msgctxt "SC_OPCODE_MAT_MULT"
msgid "Array 1"
-msgstr "Fylki "
+msgstr "Fylki 1"
#: sc/inc/scfuncs.hrc:1557
msgctxt "SC_OPCODE_MAT_MULT"
@@ -6654,10 +6649,9 @@ msgid "The first array for the array product."
msgstr "Fyrsta fylkið fyrir fylkismargfeldið."
#: sc/inc/scfuncs.hrc:1558
-#, fuzzy
msgctxt "SC_OPCODE_MAT_MULT"
msgid "Array 2"
-msgstr "Fylki "
+msgstr "Fylki 2"
#: sc/inc/scfuncs.hrc:1559
msgctxt "SC_OPCODE_MAT_MULT"
@@ -6731,10 +6725,9 @@ msgid "Returns the sum of the difference of squares of two arrays."
msgstr "Leggur saman mismuninn á kvaðrarót í tveimur samsvarandi svæðum eða fylkjum."
#: sc/inc/scfuncs.hrc:1598
-#, fuzzy
msgctxt "SC_OPCODE_SUM_X2MY2"
msgid "Array X"
-msgstr "Fylki "
+msgstr "Fylki X"
#: sc/inc/scfuncs.hrc:1599
msgctxt "SC_OPCODE_SUM_X2MY2"
@@ -6742,10 +6735,9 @@ msgid "First array where the square of the arguments are totalled."
msgstr "Fyrsta fylkið þar sem kvaðrarót gildana eru lögð saman."
#: sc/inc/scfuncs.hrc:1600
-#, fuzzy
msgctxt "SC_OPCODE_SUM_X2MY2"
msgid "Array Y"
-msgstr "Fylki "
+msgstr "Fylki Y"
#: sc/inc/scfuncs.hrc:1601
msgctxt "SC_OPCODE_SUM_X2MY2"
@@ -6758,10 +6750,9 @@ msgid "Returns the total of the square sum of two arrays."
msgstr "Skilar heildarsamtölu samlagningarinnar á kvaðrarót í tveimur samsvarandi fylkjum."
#: sc/inc/scfuncs.hrc:1608
-#, fuzzy
msgctxt "SC_OPCODE_SUM_X2DY2"
msgid "Array X"
-msgstr "Fylki "
+msgstr "Fylki X"
#: sc/inc/scfuncs.hrc:1609
msgctxt "SC_OPCODE_SUM_X2DY2"
@@ -6769,10 +6760,9 @@ msgid "First array where the square of the arguments are totalled."
msgstr "Fyrsta fylkið þar sem kvaðrarót gildana eru lögð saman."
#: sc/inc/scfuncs.hrc:1610
-#, fuzzy
msgctxt "SC_OPCODE_SUM_X2DY2"
msgid "Array Y"
-msgstr "Fylki "
+msgstr "Fylki Y"
#: sc/inc/scfuncs.hrc:1611
msgctxt "SC_OPCODE_SUM_X2DY2"
@@ -6785,10 +6775,9 @@ msgid "Returns the sum of squares of differences of two arrays."
msgstr "Leggur saman kvaðrarót mismunarins í tveimur samsvarandi fylkjum."
#: sc/inc/scfuncs.hrc:1618
-#, fuzzy
msgctxt "SC_OPCODE_SUM_XMY2"
msgid "Array X"
-msgstr "Fylki "
+msgstr "Fylki X"
#: sc/inc/scfuncs.hrc:1619
msgctxt "SC_OPCODE_SUM_XMY2"
@@ -6796,10 +6785,9 @@ msgid "First array for forming argument differences."
msgstr "Fyrsta fylkið þar sem á að leggja saman kvaðrarót mismunarins."
#: sc/inc/scfuncs.hrc:1620
-#, fuzzy
msgctxt "SC_OPCODE_SUM_XMY2"
msgid "Array Y"
-msgstr "Fylki "
+msgstr "Fylki Y"
#: sc/inc/scfuncs.hrc:1621
msgctxt "SC_OPCODE_SUM_XMY2"
@@ -6822,10 +6810,9 @@ msgid "The array of the data."
msgstr "Fylki af gögnum úr úrtakinu."
#: sc/inc/scfuncs.hrc:1630
-#, fuzzy
msgctxt "SC_OPCODE_FREQUENCY"
msgid "Classes"
-msgstr "klasar"
+msgstr "Klasar"
#: sc/inc/scfuncs.hrc:1631
msgctxt "SC_OPCODE_FREQUENCY"
@@ -6838,10 +6825,9 @@ msgid "Calculates parameters of the linear regression as an array."
msgstr "Skilar tölugögnum sem lýsa línulegri leitni þekktra gagnapunkta."
#: sc/inc/scfuncs.hrc:1638
-#, fuzzy
msgctxt "SC_OPCODE_LINEST"
msgid "Data Y"
-msgstr "Gagnastöpull"
+msgstr "Gögn Y"
#: sc/inc/scfuncs.hrc:1639
msgctxt "SC_OPCODE_LINEST"
@@ -6849,10 +6835,9 @@ msgid "The Y data array."
msgstr "Y gagnafylkið."
#: sc/inc/scfuncs.hrc:1640
-#, fuzzy
msgctxt "SC_OPCODE_LINEST"
msgid "Data X"
-msgstr "Gagnastöpull"
+msgstr "Gögn X"
#: sc/inc/scfuncs.hrc:1641
msgctxt "SC_OPCODE_LINEST"
@@ -6860,10 +6845,9 @@ msgid "The X data array."
msgstr "X gagnafylkið."
#: sc/inc/scfuncs.hrc:1642
-#, fuzzy
msgctxt "SC_OPCODE_LINEST"
msgid "Linear type"
-msgstr "Línuleg_tegund"
+msgstr "Línuleg tegund"
#: sc/inc/scfuncs.hrc:1643
msgctxt "SC_OPCODE_LINEST"
@@ -6871,10 +6855,9 @@ msgid "If type = 0 the linears will be calculated through the zero point, or els
msgstr "Ef tegund = 0 er línulega leitnin reiknuð í gegnum núllpunktinn, annars ekki."
#: sc/inc/scfuncs.hrc:1644
-#, fuzzy
msgctxt "SC_OPCODE_LINEST"
msgid "Stats"
-msgstr "Staða"
+msgstr "Tölfræði"
#: sc/inc/scfuncs.hrc:1645
msgctxt "SC_OPCODE_LINEST"
@@ -6887,10 +6870,9 @@ msgid "Calculates the parameters of the exponential regression curve as an array
msgstr "Skilar tölugögnum sem lýsa veldisvísaferli sem samsvarar þekktum gagnapunktum."
#: sc/inc/scfuncs.hrc:1652
-#, fuzzy
msgctxt "SC_OPCODE_LOGEST"
msgid "Data Y"
-msgstr "Gagnastöpull"
+msgstr "Gögn Y"
#: sc/inc/scfuncs.hrc:1653
msgctxt "SC_OPCODE_LOGEST"
@@ -6898,10 +6880,9 @@ msgid "The Y data array."
msgstr "Y gagnafylkið."
#: sc/inc/scfuncs.hrc:1654
-#, fuzzy
msgctxt "SC_OPCODE_LOGEST"
msgid "Data X"
-msgstr "Gagnastöpull"
+msgstr "Gögn X"
#: sc/inc/scfuncs.hrc:1655
msgctxt "SC_OPCODE_LOGEST"
@@ -6909,10 +6890,9 @@ msgid "The X data array."
msgstr "X gagnafylkið."
#: sc/inc/scfuncs.hrc:1656
-#, fuzzy
msgctxt "SC_OPCODE_LOGEST"
msgid "Function type"
-msgstr "Fall_tegund"
+msgstr "Fall tegund"
#: sc/inc/scfuncs.hrc:1657
msgctxt "SC_OPCODE_LOGEST"
@@ -6920,10 +6900,9 @@ msgid "If type = 0 then the functions will be calculated in the form of y=m^x, o
msgstr "Ef tegund = 0 eru föllin reiknuð á forminu y=m^x, eða einnig föll y=b*m^x."
#: sc/inc/scfuncs.hrc:1658
-#, fuzzy
msgctxt "SC_OPCODE_LOGEST"
msgid "Stats"
-msgstr "Staða"
+msgstr "Tölfræði"
#: sc/inc/scfuncs.hrc:1659
msgctxt "SC_OPCODE_LOGEST"
@@ -6936,10 +6915,9 @@ msgid "Calculates points along a regression line."
msgstr "Skilar tölum í línulegri leitni þekktra gagnapunkta."
#: sc/inc/scfuncs.hrc:1666
-#, fuzzy
msgctxt "SC_OPCODE_TREND"
msgid "Data Y"
-msgstr "Gagnastöpull"
+msgstr "Gögn Y"
#: sc/inc/scfuncs.hrc:1667
msgctxt "SC_OPCODE_TREND"
@@ -6947,10 +6925,9 @@ msgid "The Y data array."
msgstr "Y gagnafylkið."
#: sc/inc/scfuncs.hrc:1668
-#, fuzzy
msgctxt "SC_OPCODE_TREND"
msgid "Data X"
-msgstr "Gagnastöpull"
+msgstr "Gögn X"
#: sc/inc/scfuncs.hrc:1669
msgctxt "SC_OPCODE_TREND"
@@ -6958,10 +6935,9 @@ msgid "The X data array as the basis for the regression."
msgstr "Fylki X-gilda sem er grunnurinn fyrir línulega leitni."
#: sc/inc/scfuncs.hrc:1670
-#, fuzzy
msgctxt "SC_OPCODE_TREND"
msgid "New data X"
-msgstr "ný gögn_X"
+msgstr "Ný gögn X"
#: sc/inc/scfuncs.hrc:1671
msgctxt "SC_OPCODE_TREND"
@@ -6969,10 +6945,9 @@ msgid "The array of X data for recalculating the values."
msgstr "Fylki nýrra X-gilda sem endureikna á gildi fyrir."
#: sc/inc/scfuncs.hrc:1672
-#, fuzzy
msgctxt "SC_OPCODE_TREND"
msgid "Linear type"
-msgstr "Línuleg_tegund"
+msgstr "Línuleg tegund"
#: sc/inc/scfuncs.hrc:1673
msgctxt "SC_OPCODE_TREND"
@@ -6985,10 +6960,9 @@ msgid "Calculates points on the exponential regression function."
msgstr "Skilar tölum í veldisvísisleitni vaxtar sem samsvara þekktum gagnapunktum."
#: sc/inc/scfuncs.hrc:1680
-#, fuzzy
msgctxt "SC_OPCODE_GROWTH"
msgid "Data Y"
-msgstr "Gagnastöpull"
+msgstr "Gögn Y"
#: sc/inc/scfuncs.hrc:1681
msgctxt "SC_OPCODE_GROWTH"
@@ -6996,10 +6970,9 @@ msgid "The Y data array."
msgstr "Y gagnafylkið."
#: sc/inc/scfuncs.hrc:1682
-#, fuzzy
msgctxt "SC_OPCODE_GROWTH"
msgid "Data X"
-msgstr "Gagnastöpull"
+msgstr "Gögn X"
#: sc/inc/scfuncs.hrc:1683
msgctxt "SC_OPCODE_GROWTH"
@@ -7007,10 +6980,9 @@ msgid "The X data array as the basis for the regression."
msgstr "Fylki X-gilda sem er grunnurinn fyrir línulega leitni."
#: sc/inc/scfuncs.hrc:1684
-#, fuzzy
msgctxt "SC_OPCODE_GROWTH"
msgid "New data X"
-msgstr "ný gögn_X"
+msgstr "Ný gögn X"
#: sc/inc/scfuncs.hrc:1685
msgctxt "SC_OPCODE_GROWTH"
@@ -7018,10 +6990,9 @@ msgid "The array of X data for recalculating the values."
msgstr "Fylki nýrra X-gilda sem endureikna á gildi fyrir."
#: sc/inc/scfuncs.hrc:1686
-#, fuzzy
msgctxt "SC_OPCODE_GROWTH"
msgid "Function type"
-msgstr "Fall_tegund"
+msgstr "Fall tegund"
#: sc/inc/scfuncs.hrc:1687
msgctxt "SC_OPCODE_GROWTH"
@@ -7684,10 +7655,9 @@ msgid "The array of the data in the sample."
msgstr "Fylki af gildum fyrir gagnasafnið."
#: sc/inc/scfuncs.hrc:2004
-#, fuzzy
msgctxt "SC_OPCODE_LARGE"
msgid "Rank c"
-msgstr "Röðun_c"
+msgstr "Röðun c"
#: sc/inc/scfuncs.hrc:2005
msgctxt "SC_OPCODE_LARGE"
@@ -7710,10 +7680,9 @@ msgid "The array of the data in the sample."
msgstr "Fylki af gildum fyrir gagnasafnið."
#: sc/inc/scfuncs.hrc:2014
-#, fuzzy
msgctxt "SC_OPCODE_SMALL"
msgid "Rank c"
-msgstr "Röðun_c"
+msgstr "Röðun c"
#: sc/inc/scfuncs.hrc:2015
msgctxt "SC_OPCODE_SMALL"
@@ -7746,10 +7715,9 @@ msgid "The value for which percentage ranking is to be determined."
msgstr "Gildið sem skila á prósentuhlutfall fyrir."
#: sc/inc/scfuncs.hrc:2026
-#, fuzzy
msgctxt "SC_OPCODE_PERCENT_RANK"
msgid "Significance"
-msgstr "Marktækir"
+msgstr "Marktækni"
#: sc/inc/scfuncs.hrc:2027
msgctxt "SC_OPCODE_PERCENT_RANK"
@@ -7782,10 +7750,9 @@ msgid "The value for which percentage ranking is to be determined."
msgstr "Gildið sem skila á prósentuhlutfall fyrir."
#: sc/inc/scfuncs.hrc:2038
-#, fuzzy
msgctxt "SC_OPCODE_PERCENT_RANK_EXC"
msgid "Significance"
-msgstr "Marktækir"
+msgstr "Marktækni"
#: sc/inc/scfuncs.hrc:2039
msgctxt "SC_OPCODE_PERCENT_RANK_EXC"
@@ -7818,10 +7785,9 @@ msgid "The value for which percentage ranking is to be determined."
msgstr "Gildið sem skila á prósentuhlutfall fyrir."
#: sc/inc/scfuncs.hrc:2050
-#, fuzzy
msgctxt "SC_OPCODE_PERCENT_RANK_INC"
msgid "Significance"
-msgstr "Marktækir"
+msgstr "Marktækni"
#: sc/inc/scfuncs.hrc:2051
msgctxt "SC_OPCODE_PERCENT_RANK_INC"
@@ -8009,10 +7975,9 @@ msgid "Returns the probability of a trial result using binomial distribution."
msgstr "Skilar tvíhliða dreifingarlíkindum fyrir stakan lið."
#: sc/inc/scfuncs.hrc:2118
-#, fuzzy
msgctxt "SC_OPCODE_B"
msgid "Trials"
-msgstr "prófanir"
+msgstr "Prófanir"
#: sc/inc/scfuncs.hrc:2119
msgctxt "SC_OPCODE_B"
@@ -8032,7 +7997,7 @@ msgstr "Líkur á velgengni í hverri tilraun."
#: sc/inc/scfuncs.hrc:2122
msgctxt "SC_OPCODE_B"
msgid "T 1"
-msgstr ""
+msgstr "T 1"
#: sc/inc/scfuncs.hrc:2123
msgctxt "SC_OPCODE_B"
@@ -8042,7 +8007,7 @@ msgstr "Neðri mörk fyrir fjölda tilrauna."
#: sc/inc/scfuncs.hrc:2124
msgctxt "SC_OPCODE_B"
msgid "T 2"
-msgstr ""
+msgstr "T 2"
#: sc/inc/scfuncs.hrc:2125
msgctxt "SC_OPCODE_B"
@@ -8125,10 +8090,9 @@ msgid "The number of successes in a series of trials."
msgstr "Fjöldi jákvæðra atburða í röð tilrauna."
#: sc/inc/scfuncs.hrc:2166
-#, fuzzy
msgctxt "SC_OPCODE_BINOM_DIST"
msgid "Trials"
-msgstr "prófanir"
+msgstr "Prófanir"
#: sc/inc/scfuncs.hrc:2167
msgctxt "SC_OPCODE_BINOM_DIST"
@@ -8171,10 +8135,9 @@ msgid "The number of successes in a series of trials."
msgstr "Fjöldi jákvæðra atburða í röð tilrauna."
#: sc/inc/scfuncs.hrc:2180
-#, fuzzy
msgctxt "SC_OPCODE_BINOM_DIST_MS"
msgid "Trials"
-msgstr "prófanir"
+msgstr "Prófanir"
#: sc/inc/scfuncs.hrc:2181
msgctxt "SC_OPCODE_BINOM_DIST_MS"
@@ -8287,10 +8250,9 @@ msgid "Returns the smallest value for which the cumulative binomial distribution
msgstr ""
#: sc/inc/scfuncs.hrc:2218
-#, fuzzy
msgctxt "SC_OPCODE_CRIT_BINOM"
msgid "Trials"
-msgstr "prófanir"
+msgstr "Prófanir"
#: sc/inc/scfuncs.hrc:2219
msgctxt "SC_OPCODE_CRIT_BINOM"
@@ -8323,10 +8285,9 @@ msgid "Returns the smallest value for which the cumulative binomial distribution
msgstr ""
#: sc/inc/scfuncs.hrc:2230
-#, fuzzy
msgctxt "SC_OPCODE_BINOM_INV"
msgid "Trials"
-msgstr "prófanir"
+msgstr "Prófanir"
#: sc/inc/scfuncs.hrc:2231
msgctxt "SC_OPCODE_BINOM_INV"
@@ -8599,10 +8560,9 @@ msgid "The value for which the standard normal distribution is to be calculated.
msgstr "Gildið sem reikna á normaluppsöfnunardreifinguna fyrir."
#: sc/inc/scfuncs.hrc:2325
-#, fuzzy
msgctxt "SC_OPCODE_STD_NORM_DIST_MS"
msgid "The values of the standard normal distribution."
-msgstr "Skilar uppsafnaðri normaldreifingu."
+msgstr "Skilar staðlaðri normaldreifingu."
#: sc/inc/scfuncs.hrc:2326
msgctxt "SC_OPCODE_STD_NORM_DIST_MS"
@@ -9435,10 +9395,9 @@ msgid "The number of successes in the sample."
msgstr "Fjöldi jákvæðra atburða í úrtaki."
#: sc/inc/scfuncs.hrc:2604
-#, fuzzy
msgctxt "SC_OPCODE_HYP_GEOM_DIST"
msgid "N sample"
-msgstr "n_úrtak"
+msgstr "N úrtak"
#: sc/inc/scfuncs.hrc:2605
msgctxt "SC_OPCODE_HYP_GEOM_DIST"
@@ -9457,10 +9416,9 @@ msgid "The number of successes in the population."
msgstr "Fjöldi jákvæðra atburða í þýði."
#: sc/inc/scfuncs.hrc:2608
-#, fuzzy
msgctxt "SC_OPCODE_HYP_GEOM_DIST"
msgid "N population"
-msgstr "n_þýði"
+msgstr "N þýði"
#: sc/inc/scfuncs.hrc:2609
msgctxt "SC_OPCODE_HYP_GEOM_DIST"
@@ -9493,10 +9451,9 @@ msgid "The number of successes in the sample."
msgstr "Fjöldi jákvæðra atburða í úrtaki."
#: sc/inc/scfuncs.hrc:2620
-#, fuzzy
msgctxt "SC_OPCODE_HYP_GEOM_DIST_MS"
msgid "N sample"
-msgstr "n_úrtak"
+msgstr "N úrtak"
#: sc/inc/scfuncs.hrc:2621
msgctxt "SC_OPCODE_HYP_GEOM_DIST_MS"
@@ -9515,10 +9472,9 @@ msgid "The number of successes in the population."
msgstr "Fjöldi jákvæðra atburða í þýði."
#: sc/inc/scfuncs.hrc:2624
-#, fuzzy
msgctxt "SC_OPCODE_HYP_GEOM_DIST_MS"
msgid "N population"
-msgstr "n_þýði"
+msgstr "N þýði"
#: sc/inc/scfuncs.hrc:2625
msgctxt "SC_OPCODE_HYP_GEOM_DIST_MS"
@@ -9551,7 +9507,6 @@ msgid "The value for which the T distribution is to be calculated."
msgstr "Gildið sem reikna á T dreifingu fyrir."
#: sc/inc/scfuncs.hrc:2636
-#, fuzzy
msgctxt "SC_OPCODE_T_DIST"
msgid "Degrees freedom"
msgstr "Svigrúmsgráður"
@@ -9587,7 +9542,6 @@ msgid "The value for which the T distribution is to be calculated."
msgstr "Gildið sem reikna á T dreifingu fyrir."
#: sc/inc/scfuncs.hrc:2648
-#, fuzzy
msgctxt "SC_OPCODE_T_DIST_2T"
msgid "Degrees freedom"
msgstr "Svigrúmsgráður"
@@ -9613,7 +9567,6 @@ msgid "The value for which the T distribution is to be calculated."
msgstr "Gildið sem reikna á T dreifingu fyrir."
#: sc/inc/scfuncs.hrc:2658
-#, fuzzy
msgctxt "SC_OPCODE_T_DIST_MS"
msgid "Degrees freedom"
msgstr "Svigrúmsgráður"
@@ -9649,7 +9602,6 @@ msgid "The value for which the T distribution is to be calculated."
msgstr "Gildið sem reikna á T dreifingu fyrir."
#: sc/inc/scfuncs.hrc:2670
-#, fuzzy
msgctxt "SC_OPCODE_T_DIST_RT"
msgid "Degrees freedom"
msgstr "Svigrúmsgráður"
@@ -9675,7 +9627,6 @@ msgid "The probability value for which the inverse T distribution is to be calcu
msgstr "Líkindi sem reikna á tvíhliða t-dreifingu fyrir."
#: sc/inc/scfuncs.hrc:2680
-#, fuzzy
msgctxt "SC_OPCODE_T_INV"
msgid "Degrees freedom"
msgstr "Svigrúmsgráður"
@@ -9702,7 +9653,6 @@ msgid "The probability value for which the inverse T distribution is to be calcu
msgstr "Líkindi sem reikna á tvíhliða t-dreifingu fyrir."
#: sc/inc/scfuncs.hrc:2690
-#, fuzzy
msgctxt "SC_OPCODE_T_INV_MS"
msgid "Degrees freedom"
msgstr "Svigrúmsgráður"
@@ -9729,7 +9679,6 @@ msgid "The probability value for which the inverse T distribution is to be calcu
msgstr "Líkindi sem reikna á tvíhliða t-dreifingu fyrir."
#: sc/inc/scfuncs.hrc:2700
-#, fuzzy
msgctxt "SC_OPCODE_T_INV_2T"
msgid "Degrees freedom"
msgstr "Svigrúmsgráður"
@@ -9755,10 +9704,9 @@ msgid "The value for which the F distribution is to be calculated."
msgstr "Gildið sem reikna á F dreifingu fyrir."
#: sc/inc/scfuncs.hrc:2710
-#, fuzzy
msgctxt "SC_OPCODE_F_DIST"
msgid "Degrees freedom 1"
-msgstr "Svigrúmsgráður"
+msgstr "Svigrúmsgráður 1"
#: sc/inc/scfuncs.hrc:2711
msgctxt "SC_OPCODE_F_DIST"
@@ -9766,10 +9714,9 @@ msgid "The degrees of freedom in the numerator of the F distribution."
msgstr "Svigrúmsgráður teljarans fyrir F-líkindadreifinguna."
#: sc/inc/scfuncs.hrc:2712
-#, fuzzy
msgctxt "SC_OPCODE_F_DIST"
msgid "Degrees freedom 2"
-msgstr "Svigrúmsgráður"
+msgstr "Svigrúmsgráður 2"
#: sc/inc/scfuncs.hrc:2713
msgctxt "SC_OPCODE_F_DIST"
@@ -9793,10 +9740,9 @@ msgid "The value for which the F distribution is to be calculated."
msgstr "Gildið sem reikna á F dreifingu fyrir."
#: sc/inc/scfuncs.hrc:2722
-#, fuzzy
msgctxt "SC_OPCODE_F_DIST_LT"
msgid "Degrees freedom 1"
-msgstr "Svigrúmsgráður"
+msgstr "Svigrúmsgráður 1"
#: sc/inc/scfuncs.hrc:2723
msgctxt "SC_OPCODE_F_DIST_LT"
@@ -9804,10 +9750,9 @@ msgid "The degrees of freedom in the numerator of the F distribution."
msgstr "Svigrúmsgráður teljarans fyrir F-líkindadreifinguna."
#: sc/inc/scfuncs.hrc:2724
-#, fuzzy
msgctxt "SC_OPCODE_F_DIST_LT"
msgid "Degrees freedom 2"
-msgstr "Svigrúmsgráður"
+msgstr "Svigrúmsgráður 2"
#: sc/inc/scfuncs.hrc:2725
msgctxt "SC_OPCODE_F_DIST_LT"
@@ -9841,10 +9786,9 @@ msgid "The value for which the F distribution is to be calculated."
msgstr "Gildið sem reikna á F dreifingu fyrir."
#: sc/inc/scfuncs.hrc:2736
-#, fuzzy
msgctxt "SC_OPCODE_F_DIST_RT"
msgid "Degrees freedom 1"
-msgstr "Svigrúmsgráður"
+msgstr "Svigrúmsgráður 1"
#: sc/inc/scfuncs.hrc:2737
msgctxt "SC_OPCODE_F_DIST_RT"
@@ -9852,10 +9796,9 @@ msgid "The degrees of freedom in the numerator of the F distribution."
msgstr "Svigrúmsgráður teljarans fyrir F-líkindadreifinguna."
#: sc/inc/scfuncs.hrc:2738
-#, fuzzy
msgctxt "SC_OPCODE_F_DIST_RT"
msgid "Degrees freedom 2"
-msgstr "Svigrúmsgráður"
+msgstr "Svigrúmsgráður 2"
#: sc/inc/scfuncs.hrc:2739
msgctxt "SC_OPCODE_F_DIST_RT"
@@ -9878,10 +9821,9 @@ msgid "The probability value for which the inverse F distribution is to be calcu
msgstr "Líkindin þar sem reikna á andhverju F-líkindadreifinguna fyrir."
#: sc/inc/scfuncs.hrc:2748
-#, fuzzy
msgctxt "SC_OPCODE_F_INV"
msgid "Degrees freedom 1"
-msgstr "Svigrúmsgráður"
+msgstr "Svigrúmsgráður 1"
#: sc/inc/scfuncs.hrc:2749
msgctxt "SC_OPCODE_F_INV"
@@ -9889,10 +9831,9 @@ msgid "The degrees of freedom in the numerator of the F distribution."
msgstr "Svigrúmsgráður teljarans fyrir F-líkindadreifinguna."
#: sc/inc/scfuncs.hrc:2750
-#, fuzzy
msgctxt "SC_OPCODE_F_INV"
msgid "Degrees freedom 2"
-msgstr "Svigrúmsgráður"
+msgstr "Svigrúmsgráður 2"
#: sc/inc/scfuncs.hrc:2751
msgctxt "SC_OPCODE_F_INV"
@@ -9916,10 +9857,9 @@ msgid "The probability value for which the inverse F distribution is to be calcu
msgstr "Líkindin þar sem reikna á andhverju F-líkindadreifinguna fyrir."
#: sc/inc/scfuncs.hrc:2760
-#, fuzzy
msgctxt "SC_OPCODE_F_INV_LT"
msgid "Degrees freedom 1"
-msgstr "Svigrúmsgráður"
+msgstr "Svigrúmsgráður 1"
#: sc/inc/scfuncs.hrc:2761
msgctxt "SC_OPCODE_F_INV_LT"
@@ -9927,10 +9867,9 @@ msgid "The degrees of freedom in the numerator of the F distribution."
msgstr "Svigrúmsgráður teljarans fyrir F-líkindadreifinguna."
#: sc/inc/scfuncs.hrc:2762
-#, fuzzy
msgctxt "SC_OPCODE_F_INV_LT"
msgid "Degrees freedom 2"
-msgstr "Svigrúmsgráður"
+msgstr "Svigrúmsgráður 2"
#: sc/inc/scfuncs.hrc:2763
msgctxt "SC_OPCODE_F_INV_LT"
@@ -9953,10 +9892,9 @@ msgid "The probability value for which the inverse F distribution is to be calcu
msgstr "Líkindin þar sem reikna á andhverju F-líkindadreifinguna fyrir."
#: sc/inc/scfuncs.hrc:2772
-#, fuzzy
msgctxt "SC_OPCODE_F_INV_RT"
msgid "Degrees freedom 1"
-msgstr "Svigrúmsgráður"
+msgstr "Svigrúmsgráður 1"
#: sc/inc/scfuncs.hrc:2773
msgctxt "SC_OPCODE_F_INV_RT"
@@ -9964,10 +9902,9 @@ msgid "The degrees of freedom in the numerator of the F distribution."
msgstr "Svigrúmsgráður teljarans fyrir F-líkindadreifinguna."
#: sc/inc/scfuncs.hrc:2774
-#, fuzzy
msgctxt "SC_OPCODE_F_INV_RT"
msgid "Degrees freedom 2"
-msgstr "Svigrúmsgráður"
+msgstr "Svigrúmsgráður 2"
#: sc/inc/scfuncs.hrc:2775
msgctxt "SC_OPCODE_F_INV_RT"
@@ -9990,7 +9927,6 @@ msgid "The value for which the chi square distribution is to be calculated."
msgstr "Gildið sem reikna á kí-kvaðratdreifinguna fyrir."
#: sc/inc/scfuncs.hrc:2784
-#, fuzzy
msgctxt "SC_OPCODE_CHI_DIST"
msgid "Degrees freedom"
msgstr "Svigrúmsgráður"
@@ -10016,7 +9952,6 @@ msgid "The value for which the chi square distribution is to be calculated."
msgstr "Gildið sem reikna á kí-kvaðratdreifinguna fyrir."
#: sc/inc/scfuncs.hrc:2794
-#, fuzzy
msgctxt "SC_OPCODE_CHI_DIST_MS"
msgid "Degrees freedom"
msgstr "Svigrúmsgráður"
@@ -10112,7 +10047,6 @@ msgid "The probability value for which the inverse chi square distribution is to
msgstr "Líkindagildið sem reikna á andhverfu einhliða líkinda fyrir kí-kvaðrat dreifinguna."
#: sc/inc/scfuncs.hrc:2831
-#, fuzzy
msgctxt "SC_OPCODE_CHI_INV"
msgid "Degrees freedom"
msgstr "Svigrúmsgráður"
@@ -10138,7 +10072,6 @@ msgid "The probability value for which the inverse chi square distribution is to
msgstr "Líkindagildið sem reikna á andhverfu einhliða líkinda fyrir kí-kvaðrat dreifinguna."
#: sc/inc/scfuncs.hrc:2842
-#, fuzzy
msgctxt "SC_OPCODE_CHI_INV_MS"
msgid "Degrees freedom"
msgstr "Svigrúmsgráður"
@@ -10239,10 +10172,9 @@ msgid "Returns the number of permutations for a given number of elements without
msgstr "Skilar fjölda uppstokkana fyrir uppgefinn fjölda hluta sem hægt er að velja úr öllum hlutum."
#: sc/inc/scfuncs.hrc:2885
-#, fuzzy
msgctxt "SC_OPCODE_PERMUT"
msgid "Count 1"
-msgstr "Fjöldi_1"
+msgstr "Fjöldi 1"
#: sc/inc/scfuncs.hrc:2886
msgctxt "SC_OPCODE_PERMUT"
@@ -10250,10 +10182,9 @@ msgid "The total number of elements."
msgstr "Heildarfjöldi hluta."
#: sc/inc/scfuncs.hrc:2887
-#, fuzzy
msgctxt "SC_OPCODE_PERMUT"
msgid "Count 2"
-msgstr "Fjöldi_2"
+msgstr "Fjöldi 2"
#: sc/inc/scfuncs.hrc:2888
msgctxt "SC_OPCODE_PERMUT"
@@ -10266,10 +10197,9 @@ msgid "Returns the number of permutations for a given number of objects (repetit
msgstr "Skilar fjölda uppstokkana fyrir uppgefinn fjölda hluta sem hægt er að velja úr öllum hlutum (endurtekningar leyfðar)."
#: sc/inc/scfuncs.hrc:2895
-#, fuzzy
msgctxt "SC_OPCODE_PERMUTATION_A"
msgid "Count 1"
-msgstr "Fjöldi_1"
+msgstr "Fjöldi 1"
#: sc/inc/scfuncs.hrc:2896
msgctxt "SC_OPCODE_PERMUTATION_A"
@@ -10277,10 +10207,9 @@ msgid "The total number of elements."
msgstr "Heildarfjöldi hluta."
#: sc/inc/scfuncs.hrc:2897
-#, fuzzy
msgctxt "SC_OPCODE_PERMUTATION_A"
msgid "Count 2"
-msgstr "Fjöldi_2"
+msgstr "Fjöldi 2"
#: sc/inc/scfuncs.hrc:2898
msgctxt "SC_OPCODE_PERMUTATION_A"
@@ -10471,10 +10400,9 @@ msgid "Returns the chi square independence test."
msgstr "Skilar prófi á óhæði. Gildinu úr kí-kvaðratdreifingu talnagagnanna."
#: sc/inc/scfuncs.hrc:2965
-#, fuzzy
msgctxt "SC_OPCODE_CHI_TEST"
msgid "Data B"
-msgstr "Gagnastöpull"
+msgstr "Gögn B"
#: sc/inc/scfuncs.hrc:2966
msgctxt "SC_OPCODE_CHI_TEST"
@@ -10482,10 +10410,9 @@ msgid "The observed data array."
msgstr "Gagnasvæðið sem inniheldur athugunina."
#: sc/inc/scfuncs.hrc:2967
-#, fuzzy
msgctxt "SC_OPCODE_CHI_TEST"
msgid "Data E"
-msgstr "Gagnastöpull"
+msgstr "Gögn E"
#: sc/inc/scfuncs.hrc:2968
msgctxt "SC_OPCODE_CHI_TEST"
@@ -10498,10 +10425,9 @@ msgid "Returns the chi square independence test."
msgstr "Skilar prófi á óhæði gildis úr kí-kvaðratdreifingu."
#: sc/inc/scfuncs.hrc:2975
-#, fuzzy
msgctxt "SC_OPCODE_CHI_TEST_MS"
msgid "Data B"
-msgstr "Gagnastöpull"
+msgstr "Gögn B"
#: sc/inc/scfuncs.hrc:2976
msgctxt "SC_OPCODE_CHI_TEST_MS"
@@ -10509,10 +10435,9 @@ msgid "The observed data array."
msgstr "Gagnafylkið sem inniheldur athugunina."
#: sc/inc/scfuncs.hrc:2977
-#, fuzzy
msgctxt "SC_OPCODE_CHI_TEST_MS"
msgid "Data E"
-msgstr "Gagnastöpull"
+msgstr "Gögn E"
#: sc/inc/scfuncs.hrc:2978
msgctxt "SC_OPCODE_CHI_TEST_MS"
@@ -10525,10 +10450,9 @@ msgid "Calculates the F test."
msgstr "Skilar niðurstöðu F-prófunar."
#: sc/inc/scfuncs.hrc:2985
-#, fuzzy
msgctxt "SC_OPCODE_F_TEST"
msgid "Data 1"
-msgstr "Dagsetning 1"
+msgstr "Gögn 1"
#: sc/inc/scfuncs.hrc:2986
msgctxt "SC_OPCODE_F_TEST"
@@ -10536,10 +10460,9 @@ msgid "The first record array."
msgstr "Fyrsta færslufylkið."
#: sc/inc/scfuncs.hrc:2987
-#, fuzzy
msgctxt "SC_OPCODE_F_TEST"
msgid "Data 2"
-msgstr "Dagsetning 2"
+msgstr "Gögn 2"
#: sc/inc/scfuncs.hrc:2988
msgctxt "SC_OPCODE_F_TEST"
@@ -10552,10 +10475,9 @@ msgid "Calculates the F test."
msgstr "Skilar niðurstöðu F-prófunar."
#: sc/inc/scfuncs.hrc:2995
-#, fuzzy
msgctxt "SC_OPCODE_F_TEST_MS"
msgid "Data 1"
-msgstr "Dagsetning 1"
+msgstr "Gögn 1"
#: sc/inc/scfuncs.hrc:2996
msgctxt "SC_OPCODE_F_TEST_MS"
@@ -10563,10 +10485,9 @@ msgid "The first record array."
msgstr "Fyrsta færslufylkið."
#: sc/inc/scfuncs.hrc:2997
-#, fuzzy
msgctxt "SC_OPCODE_F_TEST_MS"
msgid "Data 2"
-msgstr "Dagsetning 2"
+msgstr "Gögn 2"
#: sc/inc/scfuncs.hrc:2998
msgctxt "SC_OPCODE_F_TEST_MS"
@@ -10579,10 +10500,9 @@ msgid "Calculates the T test."
msgstr "Skilar líkindum sem tengjast t-prófi."
#: sc/inc/scfuncs.hrc:3005
-#, fuzzy
msgctxt "SC_OPCODE_T_TEST"
msgid "Data 1"
-msgstr "Dagsetning 1"
+msgstr "Gögn 1"
#: sc/inc/scfuncs.hrc:3006
msgctxt "SC_OPCODE_T_TEST"
@@ -10590,10 +10510,9 @@ msgid "The first record array."
msgstr "Fyrsta færslufylkið."
#: sc/inc/scfuncs.hrc:3007
-#, fuzzy
msgctxt "SC_OPCODE_T_TEST"
msgid "Data 2"
-msgstr "Dagsetning 2"
+msgstr "Gögn 2"
#: sc/inc/scfuncs.hrc:3008
msgctxt "SC_OPCODE_T_TEST"
@@ -10607,8 +10526,8 @@ msgstr "Hamur"
#: sc/inc/scfuncs.hrc:3010
msgctxt "SC_OPCODE_T_TEST"
-msgid "Mode specifies the number of distribution tails to return. 1= one-tailed, 2 = two-tailed distribution"
-msgstr "Tilgreinir fjölda drefingarhliða sem á að skila. 1= einhliða dreifing, 2 = tvíhliða dreifing"
+msgid "Mode specifies the number of distribution tails to return. 1 = one-tailed, 2 = two-tailed distribution"
+msgstr ""
#: sc/inc/scfuncs.hrc:3011
msgctxt "SC_OPCODE_T_TEST"
@@ -10626,10 +10545,9 @@ msgid "Calculates the T test."
msgstr "Skilar líkindum sem tengjast t-prófi."
#: sc/inc/scfuncs.hrc:3019
-#, fuzzy
msgctxt "SC_OPCODE_T_TEST_MS"
msgid "Data 1"
-msgstr "Dagsetning 1"
+msgstr "Gögn 1"
#: sc/inc/scfuncs.hrc:3020
msgctxt "SC_OPCODE_T_TEST_MS"
@@ -10637,10 +10555,9 @@ msgid "The first record array."
msgstr "Fyrsta færslufylkið."
#: sc/inc/scfuncs.hrc:3021
-#, fuzzy
msgctxt "SC_OPCODE_T_TEST_MS"
msgid "Data 2"
-msgstr "Dagsetning 2"
+msgstr "Gögn 2"
#: sc/inc/scfuncs.hrc:3022
msgctxt "SC_OPCODE_T_TEST_MS"
@@ -10654,8 +10571,8 @@ msgstr "Hamur"
#: sc/inc/scfuncs.hrc:3024
msgctxt "SC_OPCODE_T_TEST_MS"
-msgid "Mode specifies the number of distribution tails to return. 1= one-tailed, 2 = two-tailed distribution"
-msgstr "Tilgreinir fjölda drefingarhliða sem á að skila. 1= einhliða dreifing, 2 = tvíhliða dreifing"
+msgid "Mode specifies the number of distribution tails to return. 1 = one-tailed, 2 = two-tailed distribution"
+msgstr ""
#: sc/inc/scfuncs.hrc:3025
msgctxt "SC_OPCODE_T_TEST_MS"
@@ -10673,10 +10590,9 @@ msgid "Returns the square of the Pearson product moment correlation coefficient.
msgstr "Skilar tvíveldi af Persons-fylgnistuðlinum (product moment correlation coefficient)."
#: sc/inc/scfuncs.hrc:3033
-#, fuzzy
msgctxt "SC_OPCODE_RSQ"
msgid "Data Y"
-msgstr "Gagnastöpull"
+msgstr "Gögn Y"
#: sc/inc/scfuncs.hrc:3034
msgctxt "SC_OPCODE_RSQ"
@@ -10684,10 +10600,9 @@ msgid "The Y data array."
msgstr "Y gagnafylkið."
#: sc/inc/scfuncs.hrc:3035
-#, fuzzy
msgctxt "SC_OPCODE_RSQ"
msgid "Data X"
-msgstr "Gagnastöpull"
+msgstr "Gögn X"
#: sc/inc/scfuncs.hrc:3036
msgctxt "SC_OPCODE_RSQ"
@@ -10700,10 +10615,9 @@ msgid "Returns the intercept of the linear regression line and the Y axis."
msgstr "Reiknar út punkt þar sem lína skarast við y-ásinn með því að nota aðhvarfslínu."
#: sc/inc/scfuncs.hrc:3043
-#, fuzzy
msgctxt "SC_OPCODE_INTERCEPT"
msgid "Data Y"
-msgstr "Gagnastöpull"
+msgstr "Gögn Y"
#: sc/inc/scfuncs.hrc:3044
msgctxt "SC_OPCODE_INTERCEPT"
@@ -10711,10 +10625,9 @@ msgid "The Y data array."
msgstr "Y gagnafylkið."
#: sc/inc/scfuncs.hrc:3045
-#, fuzzy
msgctxt "SC_OPCODE_INTERCEPT"
msgid "Data X"
-msgstr "Gagnastöpull"
+msgstr "Gögn X"
#: sc/inc/scfuncs.hrc:3046
msgctxt "SC_OPCODE_INTERCEPT"
@@ -10727,10 +10640,9 @@ msgid "Returns the slope of the linear regression line."
msgstr "Skilar hallatölu línulegrar aðhvarfslínu."
#: sc/inc/scfuncs.hrc:3053
-#, fuzzy
msgctxt "SC_OPCODE_SLOPE"
msgid "Data Y"
-msgstr "Gagnastöpull"
+msgstr "Gögn Y"
#: sc/inc/scfuncs.hrc:3054
msgctxt "SC_OPCODE_SLOPE"
@@ -10738,10 +10650,9 @@ msgid "The Y data array."
msgstr "Y gagnafylkið."
#: sc/inc/scfuncs.hrc:3055
-#, fuzzy
msgctxt "SC_OPCODE_SLOPE"
msgid "Data X"
-msgstr "Gagnastöpull"
+msgstr "Gögn X"
#: sc/inc/scfuncs.hrc:3056
msgctxt "SC_OPCODE_SLOPE"
@@ -10754,10 +10665,9 @@ msgid "Returns the standard error of the linear regression."
msgstr "Skilar staðalvillu y-gildisins sem var spáð fyrir hvert x í aðhvarfi."
#: sc/inc/scfuncs.hrc:3063
-#, fuzzy
msgctxt "SC_OPCODE_STEYX"
msgid "Data Y"
-msgstr "Gagnastöpull"
+msgstr "Gögn Y"
#: sc/inc/scfuncs.hrc:3064
msgctxt "SC_OPCODE_STEYX"
@@ -10765,10 +10675,9 @@ msgid "The Y data array."
msgstr "Y gagnafylkið."
#: sc/inc/scfuncs.hrc:3065
-#, fuzzy
msgctxt "SC_OPCODE_STEYX"
msgid "Data X"
-msgstr "Gagnastöpull"
+msgstr "Gögn X"
#: sc/inc/scfuncs.hrc:3066
msgctxt "SC_OPCODE_STEYX"
@@ -10781,10 +10690,9 @@ msgid "Returns the Pearson product moment correlation coefficient."
msgstr "Skilar fylgnistuðli Pearsons-margfeldisvægisins."
#: sc/inc/scfuncs.hrc:3073
-#, fuzzy
msgctxt "SC_OPCODE_PEARSON"
msgid "Data 1"
-msgstr "Dagsetning 1"
+msgstr "Gögn 1"
#: sc/inc/scfuncs.hrc:3074
msgctxt "SC_OPCODE_PEARSON"
@@ -10792,10 +10700,9 @@ msgid "The first record array."
msgstr "Fyrsta færslufylkið."
#: sc/inc/scfuncs.hrc:3075
-#, fuzzy
msgctxt "SC_OPCODE_PEARSON"
msgid "Data 2"
-msgstr "Dagsetning 2"
+msgstr "Gögn 2"
#: sc/inc/scfuncs.hrc:3076
msgctxt "SC_OPCODE_PEARSON"
@@ -10808,10 +10715,9 @@ msgid "Returns the correlation coefficient."
msgstr "Skilar fylgnistuðli."
#: sc/inc/scfuncs.hrc:3083
-#, fuzzy
msgctxt "SC_OPCODE_CORREL"
msgid "Data 1"
-msgstr "Dagsetning 1"
+msgstr "Gögn 1"
#: sc/inc/scfuncs.hrc:3084
msgctxt "SC_OPCODE_CORREL"
@@ -10819,10 +10725,9 @@ msgid "The first record array."
msgstr "Fyrsta færslufylkið."
#: sc/inc/scfuncs.hrc:3085
-#, fuzzy
msgctxt "SC_OPCODE_CORREL"
msgid "Data 2"
-msgstr "Dagsetning 2"
+msgstr "Gögn 2"
#: sc/inc/scfuncs.hrc:3086
msgctxt "SC_OPCODE_CORREL"
@@ -10835,10 +10740,9 @@ msgid "Calculates the population covariance."
msgstr "Skilar samfylgni þýðisins."
#: sc/inc/scfuncs.hrc:3093
-#, fuzzy
msgctxt "SC_OPCODE_COVAR"
msgid "Data 1"
-msgstr "Dagsetning 1"
+msgstr "Gögn 1"
#: sc/inc/scfuncs.hrc:3094
msgctxt "SC_OPCODE_COVAR"
@@ -10846,10 +10750,9 @@ msgid "The first record array."
msgstr "Fyrsta færslufylkið."
#: sc/inc/scfuncs.hrc:3095
-#, fuzzy
msgctxt "SC_OPCODE_COVAR"
msgid "Data 2"
-msgstr "Dagsetning 2"
+msgstr "Gögn 2"
#: sc/inc/scfuncs.hrc:3096
msgctxt "SC_OPCODE_COVAR"
@@ -10862,10 +10765,9 @@ msgid "Calculates the population covariance."
msgstr "Skilar samfylgni þýðisins."
#: sc/inc/scfuncs.hrc:3103
-#, fuzzy
msgctxt "SC_OPCODE_COVARIANCE_P"
msgid "Data 1"
-msgstr "Dagsetning 1"
+msgstr "Gögn 1"
#: sc/inc/scfuncs.hrc:3104
msgctxt "SC_OPCODE_COVARIANCE_P"
@@ -10873,10 +10775,9 @@ msgid "The first record array."
msgstr "Fyrsta færslufylkið."
#: sc/inc/scfuncs.hrc:3105
-#, fuzzy
msgctxt "SC_OPCODE_COVARIANCE_P"
msgid "Data 2"
-msgstr "Dagsetning 2"
+msgstr "Gögn 2"
#: sc/inc/scfuncs.hrc:3106
msgctxt "SC_OPCODE_COVARIANCE_P"
@@ -10889,10 +10790,9 @@ msgid "Calculates the sample covariance."
msgstr "Skilar samfylgni úrtaksins."
#: sc/inc/scfuncs.hrc:3113
-#, fuzzy
msgctxt "SC_OPCODE_COVARIANCE_S"
msgid "Data 1"
-msgstr "Dagsetning 1"
+msgstr "Gögn 1"
#: sc/inc/scfuncs.hrc:3114
msgctxt "SC_OPCODE_COVARIANCE_S"
@@ -10900,10 +10800,9 @@ msgid "The first record array."
msgstr "Fyrsta færslufylkið."
#: sc/inc/scfuncs.hrc:3115
-#, fuzzy
msgctxt "SC_OPCODE_COVARIANCE_S"
msgid "Data 2"
-msgstr "Dagsetning 2"
+msgstr "Gögn 2"
#: sc/inc/scfuncs.hrc:3116
msgctxt "SC_OPCODE_COVARIANCE_S"
@@ -10926,10 +10825,9 @@ msgid "The X value for which the Y value on the regression linear is to be calcu
msgstr "X er gagnapunkturin sem á að spá um gildi fyrir."
#: sc/inc/scfuncs.hrc:3125
-#, fuzzy
msgctxt "SC_OPCODE_FORECAST"
msgid "Data Y"
-msgstr "Gagnastöpull"
+msgstr "Gögn Y"
#: sc/inc/scfuncs.hrc:3126
msgctxt "SC_OPCODE_FORECAST"
@@ -10937,10 +10835,9 @@ msgid "The Y data array."
msgstr "Y gagnafylkið."
#: sc/inc/scfuncs.hrc:3127
-#, fuzzy
msgctxt "SC_OPCODE_FORECAST"
msgid "Data X"
-msgstr "Gagnastöpull"
+msgstr "Gögn X"
#: sc/inc/scfuncs.hrc:3128
msgctxt "SC_OPCODE_FORECAST"
@@ -10973,10 +10870,9 @@ msgid "The data array from which you want to forecast."
msgstr ""
#: sc/inc/scfuncs.hrc:3139
-#, fuzzy
msgctxt "SC_OPCODE_FORECAST_ETS_ADD"
msgid "Timeline"
-msgstr "tímalína"
+msgstr "Tímalína"
#: sc/inc/scfuncs.hrc:3140
msgctxt "SC_OPCODE_FORECAST_ETS_ADD"
@@ -10984,10 +10880,9 @@ msgid "The date or numeric array; a consistent step between values is needed."
msgstr ""
#: sc/inc/scfuncs.hrc:3141
-#, fuzzy
msgctxt "SC_OPCODE_FORECAST_ETS_ADD"
msgid "Period length"
-msgstr "lengd tímabils"
+msgstr "Lengd tímabils"
#: sc/inc/scfuncs.hrc:3142
msgctxt "SC_OPCODE_FORECAST_ETS_ADD"
@@ -10997,18 +10892,17 @@ msgstr ""
#: sc/inc/scfuncs.hrc:3143
msgctxt "SC_OPCODE_FORECAST_ETS_ADD"
msgid "Data completion"
-msgstr ""
+msgstr "Klárun gagna"
#: sc/inc/scfuncs.hrc:3144
msgctxt "SC_OPCODE_FORECAST_ETS_ADD"
msgid "Data completion (default 1); 0 treats missing points as zero, 1 interpolates."
-msgstr ""
+msgstr "Klárun gagna (sjálfgefið 1); 0 álítur punkta sem vantar sem núll, 1 brúar bilið."
#: sc/inc/scfuncs.hrc:3145
-#, fuzzy
msgctxt "SC_OPCODE_FORECAST_ETS_ADD"
msgid "Aggregation"
-msgstr "samsöfnun"
+msgstr "Samsöfnun"
#: sc/inc/scfuncs.hrc:3146
msgctxt "SC_OPCODE_FORECAST_ETS_ADD"
@@ -11041,10 +10935,9 @@ msgid "The data array from which you want to forecast."
msgstr ""
#: sc/inc/scfuncs.hrc:3157
-#, fuzzy
msgctxt "SC_OPCODE_FORECAST_ETS_MUL"
msgid "Timeline"
-msgstr "tímalína"
+msgstr "Tímalína"
#: sc/inc/scfuncs.hrc:3158
msgctxt "SC_OPCODE_FORECAST_ETS_MUL"
@@ -11052,10 +10945,9 @@ msgid "The date or numeric array; a consistent step between values is needed."
msgstr ""
#: sc/inc/scfuncs.hrc:3159
-#, fuzzy
msgctxt "SC_OPCODE_FORECAST_ETS_MUL"
msgid "Period length"
-msgstr "lengd tímabils"
+msgstr "Lengd tímabils"
#: sc/inc/scfuncs.hrc:3160
msgctxt "SC_OPCODE_FORECAST_ETS_MUL"
@@ -11065,18 +10957,17 @@ msgstr ""
#: sc/inc/scfuncs.hrc:3161
msgctxt "SC_OPCODE_FORECAST_ETS_MUL"
msgid "Data completion"
-msgstr ""
+msgstr "Klárun gagna"
#: sc/inc/scfuncs.hrc:3162
msgctxt "SC_OPCODE_FORECAST_ETS_MUL"
msgid "Data completion (default 1); 0 treats missing points as zero, 1 interpolates."
-msgstr ""
+msgstr "Klárun gagna (sjálfgefið 1); 0 álítur punkta sem vantar sem núll, 1 brúar bilið."
#: sc/inc/scfuncs.hrc:3163
-#, fuzzy
msgctxt "SC_OPCODE_FORECAST_ETS_MUL"
msgid "Aggregation"
-msgstr "samsöfnun"
+msgstr "Samsöfnun"
#: sc/inc/scfuncs.hrc:3164
msgctxt "SC_OPCODE_FORECAST_ETS_MUL"
@@ -11109,10 +11000,9 @@ msgid "The data array from which you want to forecast."
msgstr ""
#: sc/inc/scfuncs.hrc:3175
-#, fuzzy
msgctxt "SC_OPCODE_FORECAST_ETS_PIA"
msgid "Timeline"
-msgstr "tímalína"
+msgstr "Tímalína"
#: sc/inc/scfuncs.hrc:3176
msgctxt "SC_OPCODE_FORECAST_ETS_PIA"
@@ -11120,10 +11010,9 @@ msgid "The date or numeric array; a consistent step between values is needed."
msgstr ""
#: sc/inc/scfuncs.hrc:3177
-#, fuzzy
msgctxt "SC_OPCODE_FORECAST_ETS_PIA"
msgid "Confidence level"
-msgstr "stig áreiðanleika"
+msgstr "Stig áreiðanleika"
#: sc/inc/scfuncs.hrc:3178
#, c-format
@@ -11132,10 +11021,9 @@ msgid "Confidence level (default 0.95); value 0 to 1 (exclusive) for 0 to 100% c
msgstr ""
#: sc/inc/scfuncs.hrc:3179
-#, fuzzy
msgctxt "SC_OPCODE_FORECAST_ETS_PIA"
msgid "Period length"
-msgstr "lengd tímabils"
+msgstr "Lengd tímabils"
#: sc/inc/scfuncs.hrc:3180
msgctxt "SC_OPCODE_FORECAST_ETS_PIA"
@@ -11145,18 +11033,17 @@ msgstr ""
#: sc/inc/scfuncs.hrc:3181
msgctxt "SC_OPCODE_FORECAST_ETS_PIA"
msgid "Data completion"
-msgstr ""
+msgstr "Klárun gagna"
#: sc/inc/scfuncs.hrc:3182
msgctxt "SC_OPCODE_FORECAST_ETS_PIA"
msgid "Data completion (default 1); 0 treats missing points as zero, 1 interpolates."
-msgstr ""
+msgstr "Klárun gagna (sjálfgefið 1); 0 álítur punkta sem vantar sem núll, 1 brúar bilið."
#: sc/inc/scfuncs.hrc:3183
-#, fuzzy
msgctxt "SC_OPCODE_FORECAST_ETS_PIA"
msgid "Aggregation"
-msgstr "samsöfnun"
+msgstr "Samsöfnun"
#: sc/inc/scfuncs.hrc:3184
msgctxt "SC_OPCODE_FORECAST_ETS_PIA"
@@ -11189,10 +11076,9 @@ msgid "The data array from which you want to forecast."
msgstr ""
#: sc/inc/scfuncs.hrc:3195
-#, fuzzy
msgctxt "SC_OPCODE_FORECAST_ETS_PIM"
msgid "Timeline"
-msgstr "tímalína"
+msgstr "Tímalína"
#: sc/inc/scfuncs.hrc:3196
msgctxt "SC_OPCODE_FORECAST_ETS_PIM"
@@ -11200,10 +11086,9 @@ msgid "The date or numeric array; a consistent step between values is needed."
msgstr ""
#: sc/inc/scfuncs.hrc:3197
-#, fuzzy
msgctxt "SC_OPCODE_FORECAST_ETS_PIM"
msgid "Confidence level"
-msgstr "stig áreiðanleika"
+msgstr "Stig áreiðanleika"
#: sc/inc/scfuncs.hrc:3198
#, c-format
@@ -11212,10 +11097,9 @@ msgid "Confidence level (default 0.95); value 0 to 1 (exclusive) for 0 to 100% c
msgstr ""
#: sc/inc/scfuncs.hrc:3199
-#, fuzzy
msgctxt "SC_OPCODE_FORECAST_ETS_PIM"
msgid "Period length"
-msgstr "lengd tímabils"
+msgstr "Lengd tímabils"
#: sc/inc/scfuncs.hrc:3200
msgctxt "SC_OPCODE_FORECAST_ETS_PIM"
@@ -11225,18 +11109,17 @@ msgstr ""
#: sc/inc/scfuncs.hrc:3201
msgctxt "SC_OPCODE_FORECAST_ETS_PIM"
msgid "Data completion"
-msgstr ""
+msgstr "Klárun gagna"
#: sc/inc/scfuncs.hrc:3202
msgctxt "SC_OPCODE_FORECAST_ETS_PIM"
msgid "Data completion (default 1); 0 treats missing points as zero, 1 interpolates."
-msgstr ""
+msgstr "Klárun gagna (sjálfgefið 1); 0 álítur punkta sem vantar sem núll, 1 brúar bilið."
#: sc/inc/scfuncs.hrc:3203
-#, fuzzy
msgctxt "SC_OPCODE_FORECAST_ETS_PIM"
msgid "Aggregation"
-msgstr "samsöfnun"
+msgstr "Samsöfnun"
#: sc/inc/scfuncs.hrc:3204
msgctxt "SC_OPCODE_FORECAST_ETS_PIM"
@@ -11259,10 +11142,9 @@ msgid "The data array from which you want to forecast."
msgstr ""
#: sc/inc/scfuncs.hrc:3213
-#, fuzzy
msgctxt "SC_OPCODE_FORECAST_ETS_SEA"
msgid "Timeline"
-msgstr "tímalína"
+msgstr "Tímalína"
#: sc/inc/scfuncs.hrc:3214
msgctxt "SC_OPCODE_FORECAST_ETS_SEA"
@@ -11272,18 +11154,17 @@ msgstr ""
#: sc/inc/scfuncs.hrc:3215
msgctxt "SC_OPCODE_FORECAST_ETS_SEA"
msgid "Data completion"
-msgstr ""
+msgstr "Klárun gagna"
#: sc/inc/scfuncs.hrc:3216
msgctxt "SC_OPCODE_FORECAST_ETS_SEA"
msgid "Data completion (default 1); 0 treats missing points as zero, 1 interpolates."
-msgstr ""
+msgstr "Klárun gagna (sjálfgefið 1); 0 álítur punkta sem vantar sem núll, 1 brúar bilið."
#: sc/inc/scfuncs.hrc:3217
-#, fuzzy
msgctxt "SC_OPCODE_FORECAST_ETS_SEA"
msgid "Aggregation"
-msgstr "samsöfnun"
+msgstr "Samsöfnun"
#: sc/inc/scfuncs.hrc:3218
msgctxt "SC_OPCODE_FORECAST_ETS_SEA"
@@ -11306,10 +11187,9 @@ msgid "The data array from which you want to forecast."
msgstr ""
#: sc/inc/scfuncs.hrc:3227
-#, fuzzy
msgctxt "SC_OPCODE_FORECAST_ETS_STA"
msgid "Timeline"
-msgstr "tímalína"
+msgstr "Tímalína"
#: sc/inc/scfuncs.hrc:3228
msgctxt "SC_OPCODE_FORECAST_ETS_STA"
@@ -11319,7 +11199,7 @@ msgstr ""
#: sc/inc/scfuncs.hrc:3229
msgctxt "SC_OPCODE_FORECAST_ETS_STA"
msgid "Statistic type"
-msgstr ""
+msgstr "Tegund tölfræði"
#: sc/inc/scfuncs.hrc:3230
msgctxt "SC_OPCODE_FORECAST_ETS_STA"
@@ -11327,10 +11207,9 @@ msgid "Value (1-9) or array of values, indicating which statistic will be return
msgstr ""
#: sc/inc/scfuncs.hrc:3231
-#, fuzzy
msgctxt "SC_OPCODE_FORECAST_ETS_STA"
msgid "Period length"
-msgstr "lengd tímabils"
+msgstr "Lengd tímabils"
#: sc/inc/scfuncs.hrc:3232
msgctxt "SC_OPCODE_FORECAST_ETS_STA"
@@ -11340,18 +11219,17 @@ msgstr ""
#: sc/inc/scfuncs.hrc:3233
msgctxt "SC_OPCODE_FORECAST_ETS_STA"
msgid "Data completion"
-msgstr ""
+msgstr "Klárun gagna"
#: sc/inc/scfuncs.hrc:3234
msgctxt "SC_OPCODE_FORECAST_ETS_STA"
msgid "Data completion (default 1); 0 treats missing points as zero, 1 interpolates."
-msgstr ""
+msgstr "Klárun gagna (sjálfgefið 1); 0 álítur punkta sem vantar sem núll, 1 brúar bilið."
#: sc/inc/scfuncs.hrc:3235
-#, fuzzy
msgctxt "SC_OPCODE_FORECAST_ETS_STA"
msgid "Aggregation"
-msgstr "samsöfnun"
+msgstr "Samsöfnun"
#: sc/inc/scfuncs.hrc:3236
msgctxt "SC_OPCODE_FORECAST_ETS_STA"
@@ -11374,10 +11252,9 @@ msgid "The data array from which you want to forecast."
msgstr ""
#: sc/inc/scfuncs.hrc:3245
-#, fuzzy
msgctxt "SC_OPCODE_FORECAST_ETS_STM"
msgid "Timeline"
-msgstr "tímalína"
+msgstr "Tímalína"
#: sc/inc/scfuncs.hrc:3246
msgctxt "SC_OPCODE_FORECAST_ETS_STM"
@@ -11387,7 +11264,7 @@ msgstr ""
#: sc/inc/scfuncs.hrc:3247
msgctxt "SC_OPCODE_FORECAST_ETS_STM"
msgid "Statistic type"
-msgstr ""
+msgstr "Tegund tölfræði"
#: sc/inc/scfuncs.hrc:3248
msgctxt "SC_OPCODE_FORECAST_ETS_STM"
@@ -11395,10 +11272,9 @@ msgid "Value (1-9) or array of values, indicating which statistic will be return
msgstr ""
#: sc/inc/scfuncs.hrc:3249
-#, fuzzy
msgctxt "SC_OPCODE_FORECAST_ETS_STM"
msgid "Period length"
-msgstr "lengd tímabils"
+msgstr "Lengd tímabils"
#: sc/inc/scfuncs.hrc:3250
msgctxt "SC_OPCODE_FORECAST_ETS_STM"
@@ -11408,18 +11284,17 @@ msgstr ""
#: sc/inc/scfuncs.hrc:3251
msgctxt "SC_OPCODE_FORECAST_ETS_STM"
msgid "Data completion"
-msgstr ""
+msgstr "Klárun gagna"
#: sc/inc/scfuncs.hrc:3252
msgctxt "SC_OPCODE_FORECAST_ETS_STM"
msgid "Data completion (default 1); 0 treats missing points as zero, 1 interpolates."
-msgstr ""
+msgstr "Klárun gagna (sjálfgefið 1); 0 álítur punkta sem vantar sem núll, 1 brúar bilið."
#: sc/inc/scfuncs.hrc:3253
-#, fuzzy
msgctxt "SC_OPCODE_FORECAST_ETS_STM"
msgid "Aggregation"
-msgstr "samsöfnun"
+msgstr "Samsöfnun"
#: sc/inc/scfuncs.hrc:3254
msgctxt "SC_OPCODE_FORECAST_ETS_STM"
@@ -11442,10 +11317,9 @@ msgid "The X value for which the Y value on the regression linear is to be calcu
msgstr "X er gagnapunkturin sem á að spá um gildi fyrir."
#: sc/inc/scfuncs.hrc:3263
-#, fuzzy
msgctxt "SC_OPCODE_FORECAST_LIN"
msgid "Data Y"
-msgstr "Gagnastöpull"
+msgstr "Gögn Y"
#: sc/inc/scfuncs.hrc:3264
msgctxt "SC_OPCODE_FORECAST_LIN"
@@ -11453,10 +11327,9 @@ msgid "The Y data array."
msgstr "Y gagnafylkið."
#: sc/inc/scfuncs.hrc:3265
-#, fuzzy
msgctxt "SC_OPCODE_FORECAST_LIN"
msgid "Data X"
-msgstr "Gagnastöpull"
+msgstr "Gögn X"
#: sc/inc/scfuncs.hrc:3266
msgctxt "SC_OPCODE_FORECAST_LIN"
@@ -11684,10 +11557,9 @@ msgid "The row index in the array."
msgstr "Númer raða fyrir fylkið."
#: sc/inc/scfuncs.hrc:3361
-#, fuzzy
msgctxt "SC_OPCODE_H_LOOKUP"
msgid "Sorted"
-msgstr "raðað"
+msgstr "Raðað"
#: sc/inc/scfuncs.hrc:3362
msgctxt "SC_OPCODE_H_LOOKUP"
@@ -11846,7 +11718,6 @@ msgid "The vector (row or range) from which the value is to be determined."
msgstr "Fylkið (röð eða svið) þar sem finna á gildið."
#: sc/inc/scfuncs.hrc:3418
-#, fuzzy
msgctxt "SC_OPCODE_MATCH"
msgid "Defines a position in an array after comparing values."
msgstr "Skilar afstæðri stöðu atriðis í fylki sem samsvarar tilteknu gildi í tiltekinni röð."
@@ -11862,10 +11733,9 @@ msgid "The value to be used for comparison."
msgstr "Er gildið sem notað er til að bera saman við."
#: sc/inc/scfuncs.hrc:3421
-#, fuzzy
msgctxt "SC_OPCODE_MATCH"
msgid "Lookup array"
-msgstr "uppfletti_fylki"
+msgstr "Uppflettifylki"
#: sc/inc/scfuncs.hrc:3422
msgctxt "SC_OPCODE_MATCH"
@@ -11878,7 +11748,6 @@ msgid "Type"
msgstr "Tegund"
#: sc/inc/scfuncs.hrc:3424
-#, fuzzy
msgctxt "SC_OPCODE_MATCH"
msgid "Type can take the value 1, 0 or -1 and determines the criteria to be used for comparison purposes."
msgstr "Tegund getur verið 1, 0 eða -1 og sem tilgreinir hvaða skilyrði á að nota fyirr samanburð."
@@ -11959,10 +11828,9 @@ msgid "Returns a number corresponding to one of the error values or #N/A if no e
msgstr ""
#: sc/inc/scfuncs.hrc:3455
-#, fuzzy
msgctxt "SC_OPCODE_ERROR_TYPE_ODF"
msgid "Expression"
-msgstr "Segð1"
+msgstr "Segð"
#: sc/inc/scfuncs.hrc:3456
msgctxt "SC_OPCODE_ERROR_TYPE_ODF"
@@ -12000,7 +11868,6 @@ msgid "Style 2"
msgstr "Stíll 2"
#: sc/inc/scfuncs.hrc:3468
-#, fuzzy
msgctxt "SC_OPCODE_STYLE"
msgid "The style to be applied after time expires."
msgstr "Stíllinn sem á að beita eftir að tíminn rennur út."
@@ -12011,7 +11878,6 @@ msgid "Result of a DDE link."
msgstr "Skilar niðurstöðu DDE tengingu."
#: sc/inc/scfuncs.hrc:3475
-#, fuzzy
msgctxt "SC_OPCODE_DDE"
msgid "Server"
msgstr "Netþjónn"
@@ -12037,10 +11903,9 @@ msgid "Item/range"
msgstr "Atriði/svið"
#: sc/inc/scfuncs.hrc:3480
-#, fuzzy
msgctxt "SC_OPCODE_DDE"
msgid "The item or range from which data is to be taken."
-msgstr "Sviðið þar sem ná í gögnin."
+msgstr "Atriði eða svið þar sem á að ná í gögnin."
#: sc/inc/scfuncs.hrc:3481
msgctxt "SC_OPCODE_DDE"
@@ -12075,7 +11940,7 @@ msgstr "Texti reits"
#: sc/inc/scfuncs.hrc:3492
msgctxt "SC_OPCODE_HYPERLINK"
msgid "The cell text to be displayed."
-msgstr ""
+msgstr "Texti reits sem á að birta."
#: sc/inc/scfuncs.hrc:3498
msgctxt "SC_OPCODE_GET_PIVOT_DATA"
@@ -12093,7 +11958,6 @@ msgid "The name of the pivot table field to extract."
msgstr "Nafn gagnasviðs þar sem ná í gögn veltitöflu."
#: sc/inc/scfuncs.hrc:3501
-#, fuzzy
msgctxt "SC_OPCODE_GET_PIVOT_DATA"
msgid "Pivot table"
msgstr "Veltitafla"
@@ -12104,7 +11968,6 @@ msgid "A reference to a cell or range in the pivot table."
msgstr "Tilvísun í reit eða svið í veltitöflunni."
#: sc/inc/scfuncs.hrc:3503
-#, fuzzy
msgctxt "SC_OPCODE_GET_PIVOT_DATA"
msgid "Field name / item"
msgstr "Heiti gagnasviðs / atriði"
@@ -12275,10 +12138,9 @@ msgid "Text string to be used as delimiter."
msgstr ""
#: sc/inc/scfuncs.hrc:3587
-#, fuzzy
msgctxt "SC_OPCODE_TEXTJOIN_MS"
msgid "Skip empty cells"
-msgstr "S_leppa auðum reitum"
+msgstr "Sleppa auðum reitum"
#: sc/inc/scfuncs.hrc:3588
msgctxt "SC_OPCODE_TEXTJOIN_MS"
@@ -12326,10 +12188,9 @@ msgid "Checks 1 or more values and returns a result corresponding to the first v
msgstr ""
#: sc/inc/scfuncs.hrc:3607
-#, fuzzy
msgctxt "SC_OPCODE_SWITCH_MS"
msgid "Expression"
-msgstr "Segð1"
+msgstr "Segð"
#: sc/inc/scfuncs.hrc:3608
msgctxt "SC_OPCODE_SWITCH_MS"
@@ -12662,10 +12523,9 @@ msgid "The character position from which text is to be replaced."
msgstr "Staða stafsins í textanum sem á að skipta út fyrir nýjan texta."
#: sc/inc/scfuncs.hrc:3737
-#, fuzzy
msgctxt "SC_OPCODE_REPLACE"
msgid "Length"
-msgstr "Stærð"
+msgstr "Lengd"
#: sc/inc/scfuncs.hrc:3738
msgctxt "SC_OPCODE_REPLACE"
@@ -12798,7 +12658,6 @@ msgid "The text in which partial words are to be determined."
msgstr "Textinn sem á að skila hlutstreng úr."
#: sc/inc/scfuncs.hrc:3789
-#, fuzzy
msgctxt "SC_OPCODE_MID"
msgid "Start"
msgstr "Upphaf"
@@ -12879,10 +12738,9 @@ msgid "The text which is to replace the text string."
msgstr "Er textinn sem á að setja inn í stað leitartextans."
#: sc/inc/scfuncs.hrc:3815
-#, fuzzy
msgctxt "SC_OPCODE_SUBSTITUTE"
msgid "Occurrence"
-msgstr "tilvik"
+msgstr "Tilvik"
#: sc/inc/scfuncs.hrc:3816
msgctxt "SC_OPCODE_SUBSTITUTE"
@@ -12905,10 +12763,9 @@ msgid "The number to be converted."
msgstr "Talan sem á að breyta."
#: sc/inc/scfuncs.hrc:3825
-#, fuzzy
msgctxt "SC_OPCODE_BASE"
msgid "Radix"
-msgstr "radix"
+msgstr "Radix"
#: sc/inc/scfuncs.hrc:3826
msgctxt "SC_OPCODE_BASE"
@@ -12941,10 +12798,9 @@ msgid "The text to be converted."
msgstr "Textinn sem á að umbreyta."
#: sc/inc/scfuncs.hrc:3837
-#, fuzzy
msgctxt "SC_OPCODE_DECIMAL"
msgid "Radix"
-msgstr "radix"
+msgstr "Radix"
#: sc/inc/scfuncs.hrc:3838
msgctxt "SC_OPCODE_DECIMAL"
@@ -13082,10 +12938,9 @@ msgid "The value to be converted."
msgstr "Gildið sem á að breyta."
#: sc/inc/scfuncs.hrc:3897
-#, fuzzy
msgctxt "SC_OPCODE_EUROCONVERT"
msgid "From currency"
-msgstr "frá_gjaldmiðill"
+msgstr "Úr gjaldmiðli"
#: sc/inc/scfuncs.hrc:3898
msgctxt "SC_OPCODE_EUROCONVERT"
@@ -13093,10 +12948,9 @@ msgid "ISO 4217 code of the currency from which is converted, case-sensitive."
msgstr "ISO 4217 gildið fyrir gjaldmiðilinn sem á að breyta, þarf að passa við stafstöðu."
#: sc/inc/scfuncs.hrc:3899
-#, fuzzy
msgctxt "SC_OPCODE_EUROCONVERT"
msgid "To currency"
-msgstr "í_gjaldmiðil"
+msgstr "Í gjaldmiðil"
#: sc/inc/scfuncs.hrc:3900
msgctxt "SC_OPCODE_EUROCONVERT"
@@ -13104,22 +12958,19 @@ msgid "ISO 4217 code of the currency into which is converted, case-sensitive."
msgstr "ISO 4217 gildið fyrir gjaldmiðilinn sem á að breyta í, þarf að passa við stafstöðu."
#: sc/inc/scfuncs.hrc:3901
-#, fuzzy
msgctxt "SC_OPCODE_EUROCONVERT"
msgid "Full precision"
-msgstr "full_nákvæmni"
+msgstr "Full nákvæmni"
#: sc/inc/scfuncs.hrc:3902
-#, fuzzy
msgctxt "SC_OPCODE_EUROCONVERT"
msgid "If omitted or 0 or FALSE, the result is rounded to the decimals of To_currency. Else the result is not rounded."
msgstr "Ef sleppt eða 0 eða ÓSATT, er niðurstaðan rúnnuð í tugabrot af í_gjaldmiðil. Annars er niðurstaðan ekki rúnnuð."
#: sc/inc/scfuncs.hrc:3903
-#, fuzzy
msgctxt "SC_OPCODE_EUROCONVERT"
msgid "Triangulation precision"
-msgstr "þríhyrndar_nákvæmni"
+msgstr "Þríhyrndarnákvæmni"
#. This description uses almost all available space in the dialog, make sure translations fit in size
#: sc/inc/scfuncs.hrc:3905
@@ -13143,7 +12994,6 @@ msgid "The text to be converted to a number."
msgstr "Textinn sem breyta á yfir í tölu."
#: sc/inc/scfuncs.hrc:3913
-#, fuzzy
msgctxt "SC_OPCODE_NUMBERVALUE"
msgid "Decimal separator"
msgstr "Tugabrotstákn"
@@ -13154,10 +13004,9 @@ msgid "Defines the character used as the decimal separator."
msgstr "Skilgreinir stafinn sem notaður er til að aðgreina tugabrot."
#: sc/inc/scfuncs.hrc:3915
-#, fuzzy
msgctxt "SC_OPCODE_NUMBERVALUE"
msgid "Group separator"
-msgstr "hópaaðgreinir"
+msgstr "Hópaaðgreinir"
#: sc/inc/scfuncs.hrc:3916
msgctxt "SC_OPCODE_NUMBERVALUE"
@@ -13355,7 +13204,6 @@ msgid "The text in which partial words are to be determined."
msgstr "Textinn sem á að skila hlutstreng úr."
#: sc/inc/scfuncs.hrc:3995
-#, fuzzy
msgctxt "SC_OPCODE_MIDB"
msgid "Start"
msgstr "Upphaf"
@@ -13546,10 +13394,9 @@ msgid "The number to be rounded."
msgstr "Talan sem á að slétta."
#: sc/inc/scfuncs.hrc:4066
-#, fuzzy
msgctxt "SC_OPCODE_ROUNDSIG"
msgid "Digits"
-msgstr "tölustafir"
+msgstr "Tölustafir"
#: sc/inc/scfuncs.hrc:4067
msgctxt "SC_OPCODE_ROUNDSIG"
@@ -13557,10 +13404,9 @@ msgid "The number of significant digits to which value is to be rounded."
msgstr ""
#: sc/inc/scfuncs.hrc:4072
-#, fuzzy
msgctxt "SC_OPCODE_REPLACEB"
msgid "Replaces characters within a text string with a different text string, with DBCS."
-msgstr "Skiptir um stafi úr textastreng með öðrum textastreng."
+msgstr "Skiptir um stafi úr textastreng með öðrum textastreng, með DBCS."
#: sc/inc/scfuncs.hrc:4073
msgctxt "SC_OPCODE_REPLACEB"
@@ -13583,10 +13429,9 @@ msgid "The character position from which text is to be replaced."
msgstr "Staða stafsins í textanum sem á að skipta út fyrir nýjan texta."
#: sc/inc/scfuncs.hrc:4077
-#, fuzzy
msgctxt "SC_OPCODE_REPLACEB"
msgid "Length"
-msgstr "Stærð"
+msgstr "Lengd"
#: sc/inc/scfuncs.hrc:4078
msgctxt "SC_OPCODE_REPLACEB"
@@ -13712,7 +13557,7 @@ msgstr "Sérsniðnir stílar"
#: sc/inc/strings.hrc:27
msgctxt "SCSTR_LONG_SCDOC_NAME"
msgid "%PRODUCTNAME Spreadsheet format (calc6)"
-msgstr ""
+msgstr "%PRODUCTNAME töflureiknisnið (calc6)"
#: sc/inc/strings.hrc:28
msgctxt "SCSTR_LONG_SCDOC_NAME"
@@ -13824,7 +13669,7 @@ msgstr "Setja inn mynd"
#: sc/inc/strings.hrc:51
msgctxt "STR_QUERYROTATION"
msgid "This image is rotated. Would you like to rotate it into standard orientation?"
-msgstr ""
+msgstr "Þessari mynd hefur verið snúið. Viltu snúa henni yfir á staðlaða stefnu?"
#: sc/inc/strings.hrc:52
msgctxt "SCSTR_TOTAL"
@@ -14653,7 +14498,7 @@ msgstr "MS"
#: sc/inc/strings.hrc:229
msgctxt "STR_ANOVA_LABEL_F"
msgid "F"
-msgstr ""
+msgstr "F"
#: sc/inc/strings.hrc:230
msgctxt "STR_ANOVA_LABEL_P_VALUE"
@@ -14889,12 +14734,12 @@ msgstr "F-próf"
#: sc/inc/strings.hrc:281
msgctxt "STR_TTEST"
msgid "Paired t-test"
-msgstr ""
+msgstr "Parað t-próf"
#: sc/inc/strings.hrc:282
msgctxt "STR_TTEST_UNDO_NAME"
msgid "Paired t-test"
-msgstr ""
+msgstr "Parað t-próf"
#: sc/inc/strings.hrc:283
msgctxt "STR_ZTEST"
@@ -14980,7 +14825,7 @@ msgstr ""
#: sc/inc/strings.hrc:300
msgctxt "STR_TEST_STATISTIC_LABEL"
msgid "Test Statistic"
-msgstr ""
+msgstr "Tölfræði prófunar"
#. RegressionDialog
#: sc/inc/strings.hrc:302
@@ -15009,16 +14854,14 @@ msgid "R^2"
msgstr "R^2"
#: sc/inc/strings.hrc:307
-#, fuzzy
msgctxt "STR_LABEL_SLOPE"
msgid "Slope"
-msgstr "Umfang"
+msgstr "Hallatala"
#: sc/inc/strings.hrc:308
-#, fuzzy
msgctxt "STR_LABEL_INTERCEPT"
msgid "Intercept"
-msgstr "Internet"
+msgstr "Skurðpunktur"
#. F Test
#: sc/inc/strings.hrc:310
@@ -15128,17 +14971,17 @@ msgstr ""
#: sc/inc/strings.hrc:334
msgctxt "STR_ANCHOR_TO_CELL"
msgid "To cell"
-msgstr ""
+msgstr "Að reit"
#: sc/inc/strings.hrc:335
msgctxt "STR_ANCHOR_TO_CELL_RESIZE"
msgid "To cell (resize with cell)"
-msgstr ""
+msgstr "Að reit (breyta stærð með reit)"
#: sc/inc/strings.hrc:336
msgctxt "STR_ANCHOR_TO_PAGE"
msgid "To page"
-msgstr ""
+msgstr "Að síðu"
#: sc/inc/units.hrc:27
msgctxt "SCSTR_UNIT"
@@ -15489,12 +15332,12 @@ msgstr ""
#: sc/uiconfig/scalc/ui/checkwarningdialog.ui:12
msgctxt "checkwarningdialog|CheckWarningDialog"
msgid "Do you really want to overwrite the existing data?"
-msgstr ""
+msgstr "Viltu virkilega skrifa yfir fyrirliggjandi gögn?"
#: sc/uiconfig/scalc/ui/checkwarningdialog.ui:76
msgctxt "checkwarningdialog|ask"
msgid "Warn me about this in the future."
-msgstr ""
+msgstr "Vara mig við þessu héðan í frá."
#: sc/uiconfig/scalc/ui/chisquaretestdialog.ui:9
msgctxt "chisquaretestdialog|ChiSquareTestDialog"
@@ -16842,7 +16685,6 @@ msgid "ID:"
msgstr "ID:"
#: sc/uiconfig/scalc/ui/dataproviderentry.ui:68
-#, fuzzy
msgctxt "dataproviderentry|provider"
msgid "Data Provider:"
msgstr "Gagnamiðlari:"
@@ -17075,12 +16917,12 @@ msgstr "Val"
#: sc/uiconfig/scalc/ui/deletecolumnentry.ui:21
msgctxt "deletecolumnentry|name"
msgid "Delete Columns Action"
-msgstr ""
+msgstr "Aðgerð við eyðingu dálka"
#: sc/uiconfig/scalc/ui/deletecolumnentry.ui:37
msgctxt "deletecolumnentry|separator"
msgid "Columns (List of ';' separated columns)"
-msgstr ""
+msgstr "Dálkar (listi yfir dálka, aðgreint með ';')"
#: sc/uiconfig/scalc/ui/deletecontents.ui:8
msgctxt "deletecontents|DeleteContentsDialog"
@@ -18000,7 +17842,7 @@ msgstr "A_fmörkun gagnasviða:"
#: sc/uiconfig/scalc/ui/imoptdialog.ui:124
msgctxt "imoptdialog|textft"
msgid "Strin_g delimiter:"
-msgstr ""
+msgstr "Afmarkari stren_gja:"
#: sc/uiconfig/scalc/ui/imoptdialog.ui:135
msgctxt "imoptdialog|asshown"
@@ -18217,22 +18059,22 @@ msgctxt "mergecellsdialog|MergeCellsDialog"
msgid "Merge Cells"
msgstr "Sameina reiti"
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:81
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:84
msgctxt "mergecellsdialog|label"
msgid "Some cells are not empty."
msgstr "Sumir reitir eru ekki tómir."
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:96
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:99
msgctxt "mergecellsdialog|move-cells-radio"
msgid "Move the contents of the hidden cells into the first cell"
msgstr "Færa innihald földu reitana yfir í fyrsta reitinn"
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:112
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:115
msgctxt "mergecellsdialog|empty-cells-radio"
msgid "Empty the contents of the hidden cells"
msgstr "Tæma innihald földu reitana"
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:128
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:131
msgctxt "mergecellsdialog|keep-content-radio"
msgid "Keep the contents of the hidden cells"
msgstr "Halda innihaldi földu reitana"
@@ -18240,17 +18082,17 @@ msgstr "Halda innihaldi földu reitana"
#: sc/uiconfig/scalc/ui/mergecolumnentry.ui:21
msgctxt "mergecolumnentry|name"
msgid "Merge Column Action"
-msgstr ""
+msgstr "Aðgerð við sameiningu dálka"
#: sc/uiconfig/scalc/ui/mergecolumnentry.ui:37
msgctxt "mergecolumnentry|separator"
msgid "Separator:"
-msgstr ""
+msgstr "Aðgreinir:"
#: sc/uiconfig/scalc/ui/mergecolumnentry.ui:58
msgctxt "mergecolumnentry|columns"
msgid "Columns:"
-msgstr ""
+msgstr "Dálkar:"
#: sc/uiconfig/scalc/ui/movecopysheet.ui:16
msgctxt "movecopysheet|MoveCopySheetDialog"
@@ -18490,22 +18332,22 @@ msgstr "Engin lausn fannst."
#: sc/uiconfig/scalc/ui/notebookbar.ui:857
msgctxt "notebookbar|Help"
msgid "_Check for Updates..."
-msgstr ""
+msgstr "At_huga með uppfærslur..."
#: sc/uiconfig/scalc/ui/notebookbar.ui:1678
msgctxt "notebookbar|Tools"
msgid "_Check for Updates..."
-msgstr ""
+msgstr "At_huga með uppfærslur..."
#: sc/uiconfig/scalc/ui/notebookbar.ui:1952
msgctxt "notebookbar|FileLabel"
msgid "_File"
-msgstr ""
+msgstr "S_krá"
#: sc/uiconfig/scalc/ui/notebookbar.ui:1971
msgctxt "notebookbar|HelpMenuButton"
msgid "_Help"
-msgstr ""
+msgstr "_Hjálp"
#: sc/uiconfig/scalc/ui/notebookbar.ui:2769
msgctxt "notebookbar|FileLabel"
@@ -18531,7 +18373,7 @@ msgstr "Minnka inndrátt"
#: sc/uiconfig/scalc/ui/notebookbar.ui:4436
msgctxt "notebookbar|HomeMenuButton"
msgid "_Home"
-msgstr ""
+msgstr "_Upphaf"
#: sc/uiconfig/scalc/ui/notebookbar.ui:4544
msgctxt "notebookbar|CalcLabel"
@@ -18541,12 +18383,12 @@ msgstr "Heim"
#: sc/uiconfig/scalc/ui/notebookbar.ui:4991
msgctxt "notebookbar|FieldMenuButton"
msgid "Fiel_d"
-msgstr ""
+msgstr "_Gagnasvið"
#: sc/uiconfig/scalc/ui/notebookbar.ui:5496
msgctxt "notebookbar|InsertMenuButton"
msgid "_Insert"
-msgstr ""
+msgstr "Setja _inn"
#: sc/uiconfig/scalc/ui/notebookbar.ui:5581
msgctxt "notebookbar|InsertLabel"
@@ -18556,22 +18398,22 @@ msgstr "Setja inn"
#: sc/uiconfig/scalc/ui/notebookbar.ui:5610
msgctxt "notebookbar|reviewb"
msgid "Pag_e"
-msgstr ""
+msgstr "Síð_a"
#: sc/uiconfig/scalc/ui/notebookbar.ui:6335
msgctxt "notebookbar|PageLayoutLabel"
msgid "Layout"
-msgstr ""
+msgstr "Útlit"
#: sc/uiconfig/scalc/ui/notebookbar.ui:7236
msgctxt "notebookbar|Statistics"
msgid "_Statistics"
-msgstr ""
+msgstr "_Tölfræði"
#: sc/uiconfig/scalc/ui/notebookbar.ui:7304
msgctxt "notebookbar|DataMenuButton"
msgid "_Data"
-msgstr ""
+msgstr "_Gögn"
#: sc/uiconfig/scalc/ui/notebookbar.ui:7412
msgctxt "notebookbar|DataLabel"
@@ -18581,7 +18423,7 @@ msgstr "Gögn"
#: sc/uiconfig/scalc/ui/notebookbar.ui:8035
msgctxt "notebookbar|ReviewMenuButton"
msgid "_Review"
-msgstr ""
+msgstr "Yfi_rfara"
#: sc/uiconfig/scalc/ui/notebookbar.ui:8120
msgctxt "notebookbar|ReviewLabel"
@@ -18591,7 +18433,7 @@ msgstr "Yfirferð"
#: sc/uiconfig/scalc/ui/notebookbar.ui:8896
msgctxt "notebookbar|ViewMenuButton"
msgid "_View"
-msgstr ""
+msgstr "S_koða"
#: sc/uiconfig/scalc/ui/notebookbar.ui:8981
msgctxt "notebookbar|ViewLabel"
@@ -18601,7 +18443,7 @@ msgstr "Skoða"
#: sc/uiconfig/scalc/ui/notebookbar.ui:9008
msgctxt "notebookbar|GraphicMenuButton"
msgid "_Graphic"
-msgstr ""
+msgstr "Mynde_fni"
#: sc/uiconfig/scalc/ui/notebookbar.ui:9949
msgctxt "notebookbar|ImageLabel"
@@ -18611,37 +18453,37 @@ msgstr "Mynd"
#: sc/uiconfig/scalc/ui/notebookbar.ui:11228
msgctxt "notebookbar|DrawMenuButton"
msgid "D_raw"
-msgstr ""
+msgstr "D_raw"
#: sc/uiconfig/scalc/ui/notebookbar.ui:11340
msgctxt "notebookbar|DrawLabel"
msgid "Draw"
-msgstr ""
+msgstr "Draw"
#: sc/uiconfig/scalc/ui/notebookbar.ui:11993
msgctxt "notebookbar|frame:MenuDraw"
msgid "Object"
-msgstr ""
+msgstr "Hlutur"
#: sc/uiconfig/scalc/ui/notebookbar.ui:12082
msgctxt "notebookbar|FrameLabel"
msgid "Object"
-msgstr ""
+msgstr "Hlutur"
#: sc/uiconfig/scalc/ui/notebookbar.ui:12113
msgctxt "notebookbar|ToolsMenuButton"
msgid "_Tools"
-msgstr ""
+msgstr "_Verkfæri"
#: sc/uiconfig/scalc/ui/notebookbar.ui:13250
msgctxt "notebookbar|DevLabel"
msgid "Tools"
-msgstr ""
+msgstr "Verkfæri"
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:2945
msgctxt "notebookbar_groupedbar_compact|Menu"
msgid "_Check for Updates..."
-msgstr ""
+msgstr "At_huga með uppfærslur..."
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:2977
msgctxt "notebookbar_groupedbar_compact|defaultD"
@@ -18711,7 +18553,7 @@ msgstr "Minnispunktur"
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:3336
msgctxt "notebookbar_groupedbar_compact|Tools"
msgid "_Check for Updates..."
-msgstr ""
+msgstr "At_huga með uppfærslur..."
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:3630
msgctxt "notebookbar_groupedbar_compact|menub"
@@ -18901,12 +18743,12 @@ msgstr "S_koða"
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:1950
msgctxt "notebookbar_groupedbar_full|Help"
msgid "_Check for Updates..."
-msgstr ""
+msgstr "At_huga með uppfærslur..."
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2945
msgctxt "notebookbar_groupedbar_full|Menu"
msgid "_Check for Updates..."
-msgstr ""
+msgstr "At_huga með uppfærslur..."
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:2977
msgctxt "notebookbar_groupedbar_full|defaultD"
@@ -18976,7 +18818,7 @@ msgstr "Minnispunktur"
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:3336
msgctxt "notebookbar_groupedbar_full|Tools"
msgid "_Check for Updates..."
-msgstr ""
+msgstr "At_huga með uppfærslur..."
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_full.ui:3635
msgctxt "notebookbar_groupedbar_full|menub"
@@ -19451,17 +19293,17 @@ msgstr "Breyta útjaðri"
#: sc/uiconfig/scalc/ui/optcalculatepage.ui:48
msgctxt "optcalculatepage|threadingenabled"
msgid "Enable multi-threaded calculation"
-msgstr ""
+msgstr "Virkja marg-þráða útreikning"
#: sc/uiconfig/scalc/ui/optcalculatepage.ui:52
msgctxt "optcalculatepage|threadingenabled|tooltip_text"
msgid "Enable multi-threaded calculation of formula-groups"
-msgstr ""
+msgstr "Virkja marg-þráða útreikning á förmúluhópum"
#: sc/uiconfig/scalc/ui/optcalculatepage.ui:71
msgctxt "optcalculatepage|label4"
msgid "CPU threading settings"
-msgstr ""
+msgstr "Stillingar örgjörvaþráða"
#: sc/uiconfig/scalc/ui/optcalculatepage.ui:107
msgctxt "optcalculatepage|case"
@@ -20576,7 +20418,7 @@ msgstr "Valkostir"
#: sc/uiconfig/scalc/ui/recalcquerydialog.ui:30
msgctxt "recalcquerydialog|ask"
msgid "Always perform this without prompt in the future."
-msgstr ""
+msgstr "Alltaf framkvæma þetta án staðfestingar héðan í frá."
#: sc/uiconfig/scalc/ui/regressiondialog.ui:9
msgctxt "regressiondialog|RegressionDialog"
@@ -20871,7 +20713,7 @@ msgstr "Uppfæra tengla við opnun"
#: sc/uiconfig/scalc/ui/scgeneralpage.ui:156
msgctxt "scgeneralpage|alwaysrb"
msgid "_Always (from trusted locations)"
-msgstr ""
+msgstr "_Alltaf (frá treystum staðsetningum)"
#: sc/uiconfig/scalc/ui/scgeneralpage.ui:174
msgctxt "scgeneralpage|requestrb"
@@ -21141,12 +20983,12 @@ msgstr ""
#: sc/uiconfig/scalc/ui/sharedwarningdialog.ui:13
msgctxt "sharedwarningdialog|SharedWarningDialog"
msgid "Changes to formatting attributes like fonts, colors, and number formats will not be saved and some functionalities like editing charts and drawing objects are not available in shared mode. Turn off shared mode to get exclusive access needed for those changes and functionalities."
-msgstr ""
+msgstr "Breytingar á ýmsum sniðeiginleikum eins og fyrir letur, liti og tölur verða ekki vistaðar og sumar aðgerðir á borð við breytingar á línuritum og teikningum eru ekki í boði þegar unnið er í sameiginlegum skjölum. Slökktu á sameignarhamnum til að fá einkarétt til slíkra breytinga og aðgerða."
#: sc/uiconfig/scalc/ui/sharedwarningdialog.ui:32
msgctxt "sharedwarningdialog|ask"
msgid "Do not show warning again."
-msgstr ""
+msgstr "Ekki sýna aðvörun aftur."
#: sc/uiconfig/scalc/ui/sheetprintpage.ui:63
msgctxt "sheetprintpage|radioBTN_TOPDOWN"
@@ -22026,18 +21868,17 @@ msgstr "Ábending: Hægt er að ákvarða röðunarsvæði sjálfvirkt. Setti be
#: sc/uiconfig/scalc/ui/splitcolumnentry.ui:21
msgctxt "splitcolumnentry|name"
msgid "Split Column Action"
-msgstr ""
+msgstr "Aðgerð við uppskiptingu dálka"
#: sc/uiconfig/scalc/ui/splitcolumnentry.ui:37
-#, fuzzy
msgctxt "splitcolumnentry|separator"
msgid "Separator:"
-msgstr "Aðgreinar"
+msgstr "Aðgreinir:"
#: sc/uiconfig/scalc/ui/splitcolumnentry.ui:48
msgctxt "splitcolumnentry|max_num_columns"
msgid "Maximum Number of Columns"
-msgstr ""
+msgstr "Hámarks fjöldi dálka"
#: sc/uiconfig/scalc/ui/standardfilterdialog.ui:9
msgctxt "standardfilterdialog|StandardFilterDialog"
@@ -22657,7 +22498,7 @@ msgstr "Sameina _aðskiljara"
#: sc/uiconfig/scalc/ui/textimportcsv.ui:319
msgctxt "textimportcsv|removespace"
msgid "Tr_im spaces"
-msgstr ""
+msgstr "Skera af b_il"
#: sc/uiconfig/scalc/ui/textimportcsv.ui:337
msgctxt "textimportcsv|comma"
@@ -22687,7 +22528,7 @@ msgstr "Annað"
#: sc/uiconfig/scalc/ui/textimportcsv.ui:444
msgctxt "textimportcsv|texttextdelimiter"
msgid "Strin_g delimiter:"
-msgstr ""
+msgstr "Afmarkari stren_gja:"
#: sc/uiconfig/scalc/ui/textimportcsv.ui:494
msgctxt "textimportcsv|separatoroptions"
@@ -22697,7 +22538,7 @@ msgstr "Stillingar aðgreina"
#: sc/uiconfig/scalc/ui/textimportcsv.ui:528
msgctxt "textimportcsv|quotedfieldastext"
msgid "F_ormat quoted field as text"
-msgstr ""
+msgstr "Sníða tilvísað gagnasvið sem te_xta"
#: sc/uiconfig/scalc/ui/textimportcsv.ui:544
msgctxt "textimportcsv|detectspecialnumbers"
@@ -22707,7 +22548,7 @@ msgstr "Sk_ynja sértölur"
#: sc/uiconfig/scalc/ui/textimportcsv.ui:560
msgctxt "textimportcsv|skipemptycells"
msgid "S_kip empty cells"
-msgstr ""
+msgstr "S_leppa auðum reitum"
#: sc/uiconfig/scalc/ui/textimportcsv.ui:564
msgctxt "textimportcsv|skipemptycells"
diff --git a/source/is/scp2/source/ooo.po b/source/is/scp2/source/ooo.po
index 53c965368e2..c0eab867cd3 100644
--- a/source/is/scp2/source/ooo.po
+++ b/source/is/scp2/source/ooo.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: ooo\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2018-05-23 23:20+0200\n"
-"PO-Revision-Date: 2017-12-16 12:46+0000\n"
+"PO-Revision-Date: 2018-05-31 09:30+0000\n"
"Last-Translator: Sveinn í Felli <sv1@fellsnet.is>\n"
"Language-Team: Icelandic <translation-team-is@lists.sourceforge.net>\n"
"Language: is\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1513428392.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1527759054.000000\n"
#: folderitem_ooo.ulf
msgctxt ""
@@ -1886,7 +1886,7 @@ msgctxt ""
"STR_NAME_MODULE_LANGPACK_FY\n"
"LngText.text"
msgid "Frisian"
-msgstr ""
+msgstr "Frísneska"
#: module_langpack.ulf
msgctxt ""
@@ -1894,7 +1894,7 @@ msgctxt ""
"STR_DESC_MODULE_LANGPACK_FY\n"
"LngText.text"
msgid "Installs the Frisian user interface"
-msgstr ""
+msgstr "Setur upp notendaviðmót á frísnesku"
#: module_langpack.ulf
msgctxt ""
diff --git a/source/is/sd/messages.po b/source/is/sd/messages.po
index 20e2a351e08..d32cc7353eb 100644
--- a/source/is/sd/messages.po
+++ b/source/is/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: 2018-05-22 13:16+0200\n"
-"PO-Revision-Date: 2018-04-25 13:28+0000\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
+"PO-Revision-Date: 2018-05-31 10:29+0000\n"
"Last-Translator: Sveinn í Felli <sv1@fellsnet.is>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: is\n"
@@ -14,169 +14,169 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1524662920.000000\n"
+"X-POOTLE-MTIME: 1527762587.000000\n"
-#: sd/inc/DocumentRenderer.hrc:29
+#: sd/inc/DocumentRenderer.hrc:27
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Slides"
msgstr "Skyggnur"
-#: sd/inc/DocumentRenderer.hrc:30
+#: sd/inc/DocumentRenderer.hrc:28
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Handouts"
msgstr "Dreifiblöð"
-#: sd/inc/DocumentRenderer.hrc:31
+#: sd/inc/DocumentRenderer.hrc:29
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Notes"
msgstr "Minnispunktar"
-#: sd/inc/DocumentRenderer.hrc:32
+#: sd/inc/DocumentRenderer.hrc:30
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Outline"
msgstr "Efnisskipan"
-#: sd/inc/DocumentRenderer.hrc:37
+#: sd/inc/DocumentRenderer.hrc:35
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "According to layout"
msgstr "Samkvæmt framsetningu"
-#: sd/inc/DocumentRenderer.hrc:38
+#: sd/inc/DocumentRenderer.hrc:36
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "1"
msgstr "1"
-#: sd/inc/DocumentRenderer.hrc:39
+#: sd/inc/DocumentRenderer.hrc:37
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "2"
msgstr "2"
-#: sd/inc/DocumentRenderer.hrc:40
+#: sd/inc/DocumentRenderer.hrc:38
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "3"
msgstr "3"
-#: sd/inc/DocumentRenderer.hrc:41
+#: sd/inc/DocumentRenderer.hrc:39
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "4"
msgstr "4"
-#: sd/inc/DocumentRenderer.hrc:42
+#: sd/inc/DocumentRenderer.hrc:40
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "6"
msgstr "6"
-#: sd/inc/DocumentRenderer.hrc:43
+#: sd/inc/DocumentRenderer.hrc:41
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "9"
msgstr "9"
-#: sd/inc/DocumentRenderer.hrc:48
+#: sd/inc/DocumentRenderer.hrc:46
msgctxt "STR_IMPRESS_PRINT_UI_ORDER_CHOICES"
msgid "Left to right, then down"
msgstr "Vinstri til hægri, síðan niður"
-#: sd/inc/DocumentRenderer.hrc:49
+#: sd/inc/DocumentRenderer.hrc:47
msgctxt "STR_IMPRESS_PRINT_UI_ORDER_CHOICES"
msgid "Top to bottom, then right"
msgstr "Ofan og niður, síðan til hægri"
-#: sd/inc/DocumentRenderer.hrc:54
+#: sd/inc/DocumentRenderer.hrc:52
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Original colors"
msgstr "Upprunalegir litir"
-#: sd/inc/DocumentRenderer.hrc:55
+#: sd/inc/DocumentRenderer.hrc:53
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Grayscale"
msgstr "Grátóna"
-#: sd/inc/DocumentRenderer.hrc:56
+#: sd/inc/DocumentRenderer.hrc:54
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Black & white"
msgstr "Svarthvítt"
-#: sd/inc/DocumentRenderer.hrc:61
+#: sd/inc/DocumentRenderer.hrc:59
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Original size"
msgstr "Upprunaleg stærð"
-#: sd/inc/DocumentRenderer.hrc:62
+#: sd/inc/DocumentRenderer.hrc:60
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Fit to printable page"
msgstr "Aðlaga á prentanlega síðu"
-#: sd/inc/DocumentRenderer.hrc:63
+#: sd/inc/DocumentRenderer.hrc:61
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Distribute on multiple sheets of paper"
msgstr "Dreifa á mörgum blöðum"
-#: sd/inc/DocumentRenderer.hrc:64
+#: sd/inc/DocumentRenderer.hrc:62
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Tile sheet of paper with repeated slides"
msgstr "Flísaleggja síðu með endurteknum skyggnum"
-#: sd/inc/DocumentRenderer.hrc:69
+#: sd/inc/DocumentRenderer.hrc:67
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Original size"
msgstr "Upprunaleg stærð"
-#: sd/inc/DocumentRenderer.hrc:70
+#: sd/inc/DocumentRenderer.hrc:68
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Fit to printable page"
msgstr "Aðlaga á prentanlega síðu"
-#: sd/inc/DocumentRenderer.hrc:71
+#: sd/inc/DocumentRenderer.hrc:69
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Distribute on multiple sheets of paper"
msgstr "Dreifa á mörgum blöðum"
-#: sd/inc/DocumentRenderer.hrc:72
+#: sd/inc/DocumentRenderer.hrc:70
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Tile sheet of paper with repeated pages"
msgstr "Flísaleggja síðu með endurteknum síðum"
-#: sd/inc/DocumentRenderer.hrc:77
+#: sd/inc/DocumentRenderer.hrc:75
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "All pages"
msgstr "Allar síður"
-#: sd/inc/DocumentRenderer.hrc:78
+#: sd/inc/DocumentRenderer.hrc:76
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "Front sides / right pages"
msgstr "Framhliðar / hægri síður"
-#: sd/inc/DocumentRenderer.hrc:79
+#: sd/inc/DocumentRenderer.hrc:77
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "Back sides / left pages"
msgstr "Bakhliðar / vinstri síður"
-#: sd/inc/DocumentRenderer.hrc:84
+#: sd/inc/DocumentRenderer.hrc:82
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~All slides"
msgstr "~Allar skyggnur"
-#: sd/inc/DocumentRenderer.hrc:85
+#: sd/inc/DocumentRenderer.hrc:83
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~Slides"
msgstr "~Skyggnur"
-#: sd/inc/DocumentRenderer.hrc:86
+#: sd/inc/DocumentRenderer.hrc:84
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Se~lection"
msgstr "Va~lið"
-#: sd/inc/DocumentRenderer.hrc:91
+#: sd/inc/DocumentRenderer.hrc:89
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~All pages"
msgstr "~Allar síður"
-#: sd/inc/DocumentRenderer.hrc:92
+#: sd/inc/DocumentRenderer.hrc:90
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Pa~ges"
msgstr "Síð~ur"
-#: sd/inc/DocumentRenderer.hrc:93
+#: sd/inc/DocumentRenderer.hrc:91
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Se~lection"
msgstr "Va~lið"
@@ -1717,52 +1717,52 @@ msgstr "Hlutur með engri fyllingu og engri útlínu"
#: sd/inc/strings.hrc:323
msgctxt "STR_POOLSHEET_FILLED"
msgid "Filled"
-msgstr ""
+msgstr "Fyllt"
#: sd/inc/strings.hrc:324
msgctxt "STR_POOLSHEET_FILLED_BLUE"
msgid "Filled Blue"
-msgstr ""
+msgstr "Fyllt blátt"
#: sd/inc/strings.hrc:325
msgctxt "STR_POOLSHEET_FILLED_GREEN"
msgid "Filled Green"
-msgstr ""
+msgstr "Fyllt grænt"
#: sd/inc/strings.hrc:326
msgctxt "STR_POOLSHEET_FILLED_YELLOW"
msgid "Filled Yellow"
-msgstr ""
+msgstr "Fyllt gult"
#: sd/inc/strings.hrc:327
msgctxt "STR_POOLSHEET_FILLED_RED"
msgid "Filled Red"
-msgstr ""
+msgstr "Fyllt rautt"
#: sd/inc/strings.hrc:329
msgctxt "STR_POOLSHEET_OUTLINE"
msgid "Outlined"
-msgstr ""
+msgstr "Útlínur"
#: sd/inc/strings.hrc:330
msgctxt "STR_POOLSHEET_OUTLINE_BLUE"
msgid "Outlined Blue"
-msgstr ""
+msgstr "Bláar útlínur"
#: sd/inc/strings.hrc:331
msgctxt "STR_POOLSHEET_OUTLINE_GREEN"
msgid "Outlined Green"
-msgstr ""
+msgstr "Grænar útlínur"
#: sd/inc/strings.hrc:332
msgctxt "STR_POOLSHEET_OUTLINE_YELLOW"
msgid "Outlined Yellow"
-msgstr ""
+msgstr "Gular útlínur"
#: sd/inc/strings.hrc:333
msgctxt "STR_POOLSHEET_OUTLINE_RED"
msgid "Outlined Red"
-msgstr ""
+msgstr "Rauðar útlínur"
#: sd/inc/strings.hrc:335
msgctxt "STR_PSEUDOSHEET_TITLE"
@@ -3605,77 +3605,77 @@ msgstr "Sýna form"
#: sd/uiconfig/simpress/ui/notebookbar.ui:967
msgctxt "notebookbar|Help"
msgid "_Check for Updates..."
-msgstr ""
+msgstr "At_huga með uppfærslur..."
#: sd/uiconfig/simpress/ui/notebookbar.ui:2096
msgctxt "notebookbar|Tools"
msgid "_Check for Updates..."
-msgstr ""
+msgstr "At_huga með uppfærslur..."
#: sd/uiconfig/simpress/ui/notebookbar.ui:2422
msgctxt "notebookbar|FileLabel"
msgid "_File"
-msgstr ""
+msgstr "S_krá"
#: sd/uiconfig/simpress/ui/notebookbar.ui:2441
msgctxt "notebookbar|HelpMenuButton"
msgid "_Help"
-msgstr ""
+msgstr "_Hjálp"
#: sd/uiconfig/simpress/ui/notebookbar.ui:3230
msgctxt "notebookbar|FileLabel"
msgid "File"
-msgstr ""
+msgstr "Skrá"
#: sd/uiconfig/simpress/ui/notebookbar.ui:3389
msgctxt "notebookbar|HomeMenuButton"
msgid "_Home"
-msgstr ""
+msgstr "_Upphaf"
#: sd/uiconfig/simpress/ui/notebookbar.ui:4846
msgctxt "notebookbar|HomeLabel"
msgid "Home"
-msgstr ""
+msgstr "Upphaf"
#: sd/uiconfig/simpress/ui/notebookbar.ui:5293
msgctxt "notebookbar|FieldMenuButton"
msgid "Fiel_d"
-msgstr ""
+msgstr "_Gagnasvið"
#: sd/uiconfig/simpress/ui/notebookbar.ui:5820
msgctxt "notebookbar|InsertMenuButton"
msgid "_Insert"
-msgstr ""
+msgstr "Setja _inn"
#: sd/uiconfig/simpress/ui/notebookbar.ui:5905
msgctxt "notebookbar|InsertLabel"
msgid "Insert"
-msgstr ""
+msgstr "Setja inn"
#: sd/uiconfig/simpress/ui/notebookbar.ui:5935
msgctxt "notebookbar|SlideMenuButton"
msgid "S_lide"
-msgstr ""
+msgstr "S_kyggna"
#: sd/uiconfig/simpress/ui/notebookbar.ui:6688
msgctxt "notebookbar|LayoutLabel"
msgid "Slide"
-msgstr ""
+msgstr "Skyggna"
#: sd/uiconfig/simpress/ui/notebookbar.ui:6716
msgctxt "notebookbar|SlideShowMenuButton"
msgid "_Slide Show"
-msgstr ""
+msgstr "_Skyggnusýning"
#: sd/uiconfig/simpress/ui/notebookbar.ui:7194
msgctxt "notebookbar|ReferencesLabel"
msgid "Slide Show"
-msgstr ""
+msgstr "Skyggnusýning"
#: sd/uiconfig/simpress/ui/notebookbar.ui:7222
msgctxt "notebookbar|ReviewMenuButton"
msgid "_Review"
-msgstr ""
+msgstr "Yfi_rfara"
#: sd/uiconfig/simpress/ui/notebookbar.ui:7651
msgctxt "notebookbar|ReviewLabel"
@@ -3685,7 +3685,7 @@ msgstr "Yfirferð"
#: sd/uiconfig/simpress/ui/notebookbar.ui:7679
msgctxt "notebookbar|ViewMenuButton"
msgid "_View"
-msgstr ""
+msgstr "S_koða"
#: sd/uiconfig/simpress/ui/notebookbar.ui:8580
msgctxt "notebookbar|ViewLabel"
@@ -3695,7 +3695,7 @@ msgstr "Skoða"
#: sd/uiconfig/simpress/ui/notebookbar.ui:9369
msgctxt "notebookbar|TableMenuButton"
msgid "T_able"
-msgstr ""
+msgstr "Ta_fla"
#: sd/uiconfig/simpress/ui/notebookbar.ui:9453
msgctxt "notebookbar|TableLabel"
@@ -3706,12 +3706,12 @@ msgstr "Tafla"
#: sd/uiconfig/simpress/ui/notebookbar.ui:11131
msgctxt "notebookbar|ConvertMenuButton"
msgid "Convert"
-msgstr ""
+msgstr "Umbreyta"
#: sd/uiconfig/simpress/ui/notebookbar.ui:10335
msgctxt "notebookbar|GraphicMenuButton"
msgid "_Graphic"
-msgstr ""
+msgstr "Mynde_fni"
#: sd/uiconfig/simpress/ui/notebookbar.ui:10447
msgctxt "notebookbar|ImageLabel"
@@ -3721,32 +3721,32 @@ msgstr "Mynd"
#: sd/uiconfig/simpress/ui/notebookbar.ui:11658
msgctxt "notebookbar|DrawMenuButton"
msgid "D_raw"
-msgstr ""
+msgstr "_Teikna"
#: sd/uiconfig/simpress/ui/notebookbar.ui:11772
msgctxt "notebookbar|DrawLabel"
msgid "Draw"
-msgstr ""
+msgstr "Teikna"
#: sd/uiconfig/simpress/ui/notebookbar.ui:11804
msgctxt "notebookbar|ToolsMenuButton"
msgid "_Tools"
-msgstr ""
+msgstr "_Verkfæri"
#: sd/uiconfig/simpress/ui/notebookbar.ui:12758
msgctxt "notebookbar|DevLabel"
msgid "Tools"
-msgstr ""
+msgstr "Verkfæri"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:1922
msgctxt "notebookbar_groupedbar_compact|Menu"
msgid "_Check for Updates..."
-msgstr ""
+msgstr "At_huga með uppfærslur..."
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:2328
msgctxt "notebookbar_groupedbar_compact|Tools"
msgid "_Check for Updates..."
-msgstr ""
+msgstr "At_huga með uppfærslur..."
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:2589
msgctxt "notebookbar_groupedbar_compact|menub"
@@ -3920,17 +3920,17 @@ msgstr "S_koða"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:1421
msgctxt "notebookbar_groupedbar_full|Help"
msgid "_Check for Updates..."
-msgstr ""
+msgstr "At_huga með uppfærslur..."
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:2115
msgctxt "notebookbar_groupedbar_full|Menu"
msgid "_Check for Updates..."
-msgstr ""
+msgstr "At_huga með uppfærslur..."
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:2599
msgctxt "notebookbar_groupedbar_full|Tools"
msgid "_Check for Updates..."
-msgstr ""
+msgstr "At_huga með uppfærslur..."
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_full.ui:2865
msgctxt "notebookbar_groupedbar_full|menub"
diff --git a/source/is/sfx2/messages.po b/source/is/sfx2/messages.po
index a9c223df672..0b1e902a43b 100644
--- a/source/is/sfx2/messages.po
+++ b/source/is/sfx2/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: 2018-05-22 13:16+0200\n"
-"PO-Revision-Date: 2018-01-16 08:23+0000\n"
+"PO-Revision-Date: 2018-05-31 09:57+0000\n"
"Last-Translator: Sveinn í Felli <sv1@fellsnet.is>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: is\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1516091003.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1527760635.000000\n"
#: include/sfx2/strings.hrc:25
msgctxt "STR_TEMPLATE_FILTER"
@@ -1148,11 +1148,14 @@ msgid ""
"\n"
"Error code is $1"
msgstr ""
+"Villa kom upp við að senda skilaboðin. Hugsanlegar ástæður gætu verið að það vanti notandaaðgang eða að uppsetningin sé gölluð.\n"
+"\n"
+"Villukóðinn var: $1"
#: include/sfx2/strings.hrc:239
msgctxt "STR_ERROR_SEND_MAIL_HEADER"
msgid "Error sending mail"
-msgstr ""
+msgstr "Villa við að senda póst"
#: include/sfx2/strings.hrc:240
msgctxt "STR_QUERY_OPENASTEMPLATE"
@@ -1166,16 +1169,19 @@ msgid ""
"\n"
"You can also try to ignore the lock and open the file for editing."
msgstr ""
+"Ekki er hægt að breyta þessu skjali, því það er læst í annarri setu. Viltu vinna með afrit af skjalinu?\n"
+"\n"
+"Þú getur líka reynt að hunsa læsinguna og opnað skrána til að breyta henni."
#: include/sfx2/strings.hrc:242
msgctxt "STR_QUERY_OPENASTEMPLATE_OPENCOPY_BTN"
msgid "Open ~Copy"
-msgstr ""
+msgstr "O~pna afrit"
#: include/sfx2/strings.hrc:243
msgctxt "STR_QUERY_OPENASTEMPLATE_OPEN_BTN"
msgid "~Open"
-msgstr ""
+msgstr "~Opna"
#: include/sfx2/strings.hrc:244
msgctxt "STR_REPAIREDDOCUMENT"
@@ -1215,7 +1221,7 @@ msgstr "Þetta skjal er með lægra flokkunarstig en klippispjaldið."
#: include/sfx2/strings.hrc:251
msgctxt "STR_CLASSIFIED_INTELLECTUAL_PROPERTY"
msgid "Level"
-msgstr ""
+msgstr "Stig"
#: include/sfx2/strings.hrc:252
msgctxt "STR_CLASSIFIED_NATIONAL_SECURITY"
@@ -1482,12 +1488,12 @@ msgstr "Hreinsa allt"
#: include/sfx2/strings.hrc:311
msgctxt "STR_PASSWORD_LEN"
msgid "Password length"
-msgstr ""
+msgstr "Lengd lykilorðs"
#: include/sfx2/strings.hrc:312
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 ""
+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."
#: sfx2/inc/dinfdlg.hrc:27
msgctxt "SFX_CB_PROPERTY_STRINGARRAY"
@@ -1807,12 +1813,12 @@ msgstr "Fleiri stafir…"
#: sfx2/uiconfig/ui/charviewmenu.ui:12
msgctxt "charviewmenu|clearchar"
msgid "Remove"
-msgstr ""
+msgstr "Fjarlægja"
#: sfx2/uiconfig/ui/charviewmenu.ui:20
msgctxt "charviewmenu|clearallchar"
msgid "Clear All"
-msgstr ""
+msgstr "Hreinsa allt"
#: sfx2/uiconfig/ui/checkin.ui:8
msgctxt "checkin|CheckinDialog"
@@ -2167,7 +2173,7 @@ msgstr "%PRODUCTNAME hjálpin er ekki uppsett"
#: sfx2/uiconfig/ui/helpmanual.ui:12
msgctxt "helpmanual|onlinehelpmanual"
msgid "The %PRODUCTNAME built-in help for current UI language ($UILOCALE) is not installed on your computer."
-msgstr ""
+msgstr "Innbyggða %PRODUCTNAME hjálpin fyrir núverandi tungumál viðmóts ($UILOCALE) er ekki uppsett á tölvunni þinni."
#: sfx2/uiconfig/ui/helpmanual.ui:13
msgctxt "helpmanual|onlinehelpmanual"
@@ -2227,6 +2233,15 @@ msgid ""
"\n"
"This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details."
msgstr ""
+"%PRODUCTNAME er í boði undir skilmálum Mozilla Public License, útg. 2.0. notkunarleyfisins. Hægt er að skoða afrit af MPL leyfinu á síðunni http://mozilla.org/MPL/2.0/.\n"
+"\n"
+"Ýmis aukaleg ákvæði vegna höfundarréttar og notkunarskilmála á kóða af hálfu annarra aðila, sem átt geta við hluta af þessum hugbúnaði, má lesa um í skjalinu LICENSE.html, veldu 'Birta notkunarskilmála' til að sjá nánari útlistun á ensku.\n"
+"\n"
+"Öll vörumerki og skrásett vörumerki eru eign eigenda hvers þeirra um sig.\n"
+"\n"
+"Höfundarréttur © 2000-2018, þátttakendur í LibreOffice og tengdir aðilar. Öll réttindi áskilin.\n"
+"\n"
+"Þessi hugbúnaður var gerður af %OOOVENDOR, byggður á OpenOffice.org, sem aftur er undir klausunni 'Höfundarréttur 2000, 2011 Oracle og/eða tengdir aðilar'. %OOOVENDOR þakkar öllum þátttakendum í verkefninu, endilega skoðaðu http://www.libreoffice.org/ til að fá nánari upplýsingar."
#: sfx2/uiconfig/ui/linkeditdialog.ui:105
msgctxt "linkeditdialog|label2"
diff --git a/source/is/svtools/messages.po b/source/is/svtools/messages.po
index 957f4012e4a..87e53bd327a 100644
--- a/source/is/svtools/messages.po
+++ b/source/is/svtools/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2018-05-16 16:53+0200\n"
-"PO-Revision-Date: 2018-04-25 13:33+0000\n"
+"PO-Revision-Date: 2018-05-31 09:06+0000\n"
"Last-Translator: Sveinn í Felli <sv1@fellsnet.is>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: is\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1524663188.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1527757604.000000\n"
#: svtools/inc/errtxt.hrc:30
msgctxt "RID_ERRCTX"
@@ -536,7 +536,7 @@ msgstr "Skráarsniðsvilla fannst í $(ARG1)(röð,dálkur)."
#: svtools/inc/errtxt.hrc:134
msgctxt "RID_ERRHDL"
msgid "The filter for this file format is disabled in configuration. Please contact your systems administrator."
-msgstr ""
+msgstr "Sían fyrir þetta skráasnið er ekki virk í uppsetningunni. Hafðu samband við kerfisstjóra."
#: svtools/inc/errtxt.hrc:140
msgctxt "RID_ERRHDL"
@@ -726,7 +726,7 @@ msgstr "Aragónska"
#: svtools/inc/langtab.hrc:62
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Armenian, Eastern (Armenia)"
-msgstr ""
+msgstr "Armenska, austur (Armenía)"
#: svtools/inc/langtab.hrc:63
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
@@ -2466,47 +2466,47 @@ msgstr "Plautdietsch"
#: svtools/inc/langtab.hrc:410
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Armenian, Eastern (Russia)"
-msgstr ""
+msgstr "Armenska, austur (Rússland)"
#: svtools/inc/langtab.hrc:411
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Armenian, Eastern (Iran)"
-msgstr ""
+msgstr "Armenska, austur (Íran)"
#: svtools/inc/langtab.hrc:412
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Armenian, Western (Armenia)"
-msgstr ""
+msgstr "Armenska, vestur (Armenía)"
#: svtools/inc/langtab.hrc:413
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Armenian, Classic (Armenia)"
-msgstr ""
+msgstr "Armenska, klassísk (Armenía)"
#: svtools/inc/langtab.hrc:414
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Malay Arabic (Malaysia)"
-msgstr ""
+msgstr "Malaísk arabíska (Malasía)"
#: svtools/inc/langtab.hrc:415
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Malay Arabic (Brunei Darussalam)"
-msgstr ""
+msgstr "Malaísk arabíska (Brúnei Darusalam)"
#: svtools/inc/langtab.hrc:416
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Juǀ’hoan"
-msgstr ""
+msgstr "Juǀ’hoan"
#: svtools/inc/langtab.hrc:417
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Naro"
-msgstr ""
+msgstr "Naro"
#: svtools/inc/langtab.hrc:418
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Iloko"
-msgstr ""
+msgstr "Iloko"
#: svtools/inc/templwin.hrc:42
msgctxt "STRARY_SVT_DOCINFO"
@@ -3061,37 +3061,37 @@ msgstr "Hreinn texti"
#: include/svtools/strings.hrc:30
msgctxt "STR_FORMAT_ID_STRING_TSVC"
msgid "Unformatted text (TSV-Calc)"
-msgstr ""
+msgstr "Ósniðinn texti (TSV-Calc)"
#: include/svtools/strings.hrc:31
msgctxt "STR_FORMAT_BITMAP"
msgid "Bitmap Image (BMP)"
-msgstr ""
+msgstr "Bitamynd (BMP)"
#: include/svtools/strings.hrc:32
msgctxt "STR_FORMAT_GDIMETAFILE"
msgid "Graphics Device Interface metafile (GDI)"
-msgstr ""
+msgstr "Graphics Device Interface lýsiskrá (GDI)"
#: include/svtools/strings.hrc:33
msgctxt "STR_FORMAT_RTF"
msgid "Rich text formatting (RTF)"
-msgstr ""
+msgstr "Sniðinn texti (RichText - RTF)"
#: include/svtools/strings.hrc:34
msgctxt "STR_FORMAT_ID_RICHTEXT"
msgid "Rich text formatting (Richtext)"
-msgstr ""
+msgstr "Sniðinn texti (RichText - RTF)"
#: include/svtools/strings.hrc:35
msgctxt "STR_FORMAT_ID_DRAWING"
msgid "%PRODUCTNAME drawing format"
-msgstr ""
+msgstr "%PRODUCTNAME teikningasnið"
#: include/svtools/strings.hrc:36
msgctxt "STR_FORMAT_ID_SVXB"
msgid "StarView bitmap/animation (SVXB)"
-msgstr ""
+msgstr "StarView bitamynd/myndskeið (SVXB)"
#: include/svtools/strings.hrc:37
msgctxt "STR_FORMAT_ID_INTERNALLINK_STATE"
@@ -3101,7 +3101,7 @@ msgstr "Stöðuupplýsingar frá SVX innri tengli"
#: include/svtools/strings.hrc:38
msgctxt "STR_FORMAT_ID_SOLK"
msgid "%PRODUCTNAME Link (SOLK)"
-msgstr ""
+msgstr "%PRODUCTNAME tengill (SOLK)"
#: include/svtools/strings.hrc:39
msgctxt "STR_FORMAT_ID_NETSCAPE_BOOKMARK"
@@ -3251,22 +3251,22 @@ msgstr "StarObject Paint hlutur"
#: include/svtools/strings.hrc:68
msgctxt "STR_FORMAT_ID_HTML"
msgid "HyperText Markup Language (HTML)"
-msgstr ""
+msgstr "HyperText Markup Language (HTML)"
#: include/svtools/strings.hrc:69
msgctxt "STR_FORMAT_ID_HTML_SIMPLE"
msgid "Stripped HyperText Markup Language (Simple HTML)"
-msgstr ""
+msgstr "Strípuð HyperText Markup Language (einfalt HTML)"
#: include/svtools/strings.hrc:70
msgctxt "STR_FORMAT_ID_BIFF_5"
msgid "Microsoft Excel Binary Interchange Format 5.0/95 (Biff5)"
-msgstr ""
+msgstr "Microsoft Excel Binary Interchange Format 5.0/95 (Biff5)"
#: include/svtools/strings.hrc:71
msgctxt "STR_FORMAT_ID_BIFF_8"
msgid "Microsoft Excel Binary Interchange Format 97/2000/XP/2003 (Biff8)"
-msgstr ""
+msgstr "Microsoft Excel Binary Interchange Format 97/2000/XP/2003 (Biff8)"
#: include/svtools/strings.hrc:72
msgctxt "STR_FORMAT_ID_SYLK"
@@ -3276,12 +3276,12 @@ msgstr "Sylk"
#: include/svtools/strings.hrc:73
msgctxt "STR_FORMAT_ID_LINK"
msgid "Dynamic Data Exchange (DDE link)"
-msgstr ""
+msgstr "Dynamic Data Exchange (breytilegur DDE tengill)"
#: include/svtools/strings.hrc:74
msgctxt "STR_FORMAT_ID_DIF"
msgid "Data Interchange Format (DIF)"
-msgstr ""
+msgstr "Data Interchange Format (DIF)"
#: include/svtools/strings.hrc:75
msgctxt "STR_FORMAT_ID_MSWORD_DOC"
@@ -3396,7 +3396,7 @@ msgstr "HTML-snið án athugasemda"
#: include/svtools/strings.hrc:97
msgctxt "STR_FORMAT_ID_PNG_BITMAP"
msgid "Portable Network Graphic (PNG)"
-msgstr ""
+msgstr "Portable Network Graphic (PNG-myndskrá)"
#: include/svtools/strings.hrc:99
#, c-format
@@ -4192,7 +4192,7 @@ msgstr "%PRODUCTNAME krefst Java keyrsluumhverfis (JRE) til að framkvæma þett
#: include/svtools/strings.hrc:285
msgctxt "STR_WARNING_JAVANOTFOUND_WIN"
msgid "%PRODUCTNAME requires a %BITNESS-bit Java runtime environment (JRE) to perform this task. Please install a JRE and restart %PRODUCTNAME."
-msgstr ""
+msgstr "%PRODUCTNAME krefst %BITNESS-bita Java keyrsluumhverfis (JRE) til að framkvæma þetta verk. Settu upp JRE og endurræstu %PRODUCTNAME."
#: include/svtools/strings.hrc:286
msgctxt "STR_WARNING_JAVANOTFOUND_MAC"
diff --git a/source/is/svx/messages.po b/source/is/svx/messages.po
index 5598acac6a5..0439b1ca3e1 100644
--- a/source/is/svx/messages.po
+++ b/source/is/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: 2018-05-16 16:53+0200\n"
-"PO-Revision-Date: 2017-12-17 18:17+0000\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
+"PO-Revision-Date: 2018-05-31 10:26+0000\n"
"Last-Translator: Sveinn í Felli <sv1@fellsnet.is>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: is\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1513534648.000000\n"
+"X-POOTLE-MTIME: 1527762378.000000\n"
#: svx/inc/fieldunit.hrc:30
msgctxt "RID_SVXSTR_FIELDUNIT_TABLE"
@@ -338,19 +338,19 @@ msgstr "i, ii, iii, ..."
#: svx/inc/numberingtype.hrc:38
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "1st, 2nd, 3rd, ..."
-msgstr ""
+msgstr "1., 2., 3., ..."
#. TEXT_NUMBER
#: svx/inc/numberingtype.hrc:39
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "One, Two, Three, ..."
-msgstr ""
+msgstr "Einn, Tveir, Þrír, ..."
#. TEXT_CARDINAL
#: svx/inc/numberingtype.hrc:40
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "First, Second, Third, ..."
-msgstr ""
+msgstr "Fyrsta, Annað, Þriðja, ..."
#. TEXT_ORDINAL
#: svx/inc/numberingtype.hrc:41
@@ -470,19 +470,19 @@ msgstr "א...ת, אא...תת, ..."
#: svx/inc/numberingtype.hrc:60
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "١, ٢, ٣, ٤, ... (Arabic)"
-msgstr ""
+msgstr "١, ٢, ٣, ٤, ... (Arabíska)"
#. NUMBER_ARABIC_INDIC
#: svx/inc/numberingtype.hrc:61
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "۱, ۲, ۳, ۴, ... (Farsi)"
-msgstr ""
+msgstr "۱, ۲, ۳, ۴, ... (Farsí)"
#. NUMBER_EAST_ARABIC_INDIC
#: svx/inc/numberingtype.hrc:62
msgctxt "RID_SVXSTRARY_NUMBERINGTYPE"
msgid "१, २, ३, ..."
-msgstr ""
+msgstr "१, २, ३, ..."
#: svx/inc/samecontent.hrc:18
msgctxt "RID_SVXSTRARY_SAMECONTENT"
@@ -1962,7 +1962,7 @@ msgstr "Neðst"
#: svx/uiconfig/ui/asianphoneticguidedialog.ui:354
msgctxt "asianphoneticguidedialog|positionlb"
msgid "Right"
-msgstr ""
+msgstr "Hægri"
#: svx/uiconfig/ui/asianphoneticguidedialog.ui:377
msgctxt "asianphoneticguidedialog|label1"
@@ -1977,22 +1977,22 @@ msgstr "_Afrita"
#: svx/uiconfig/ui/charsetmenu.ui:12
msgctxt "charviewmenu|STR_CLEAR_CHAR"
msgid "Insert into document"
-msgstr ""
+msgstr "Setja inn skjal"
#: svx/uiconfig/ui/charsetmenu.ui:20
msgctxt "charviewmenu|STR_CLEAR_ALL_CHAR"
msgid "Add to favorites"
-msgstr ""
+msgstr "Bæta í eftirlæti"
#: svx/uiconfig/ui/charsetmenu.ui:28
msgctxt "charviewmenu|STR_CLEAR_ALL_CHAR"
msgid "Remove from favorites"
-msgstr ""
+msgstr "Fjarlægja úr eftirlætum"
#: svx/uiconfig/ui/charsetmenu.ui:36
msgctxt "charviewmenu|STR_CLEAR_ALL_CHAR"
msgid "Copy to clipboard"
-msgstr ""
+msgstr "Afrita á klippispjald"
#: svx/uiconfig/ui/chineseconversiondialog.ui:8
msgctxt "chineseconversiondialog|ChineseConversionDialog"
@@ -2147,7 +2147,7 @@ msgstr "_Laga"
#: svx/uiconfig/ui/classificationdialog.ui:9
msgctxt "classificationdialog|dialogname"
msgid "Classification"
-msgstr ""
+msgstr "Flokkun"
#: svx/uiconfig/ui/classificationdialog.ui:89
msgctxt "classificationdialog|label-Classification"
@@ -2197,7 +2197,7 @@ msgstr "Bæta við"
#: svx/uiconfig/ui/classificationdialog.ui:326
msgctxt "classificationdialog|label-PartNumber"
msgid "License:"
-msgstr ""
+msgstr "Notkunarleyfi:"
#: svx/uiconfig/ui/classificationdialog.ui:373
msgctxt "classificationdialog|label-IntellectualProperty"
@@ -5179,8 +5179,8 @@ msgstr "Þú getur líka haft með í villuskýrslunni viðeigandi hluta úr not
#: svx/uiconfig/ui/safemodedialog.ui:432
msgctxt "safemodedialog|btn_create_zip"
-msgid "Create Zip Archive from User Profile"
-msgstr "Búa til ZIP-safnskrá með notandasniði"
+msgid "Archive User Profile"
+msgstr ""
#: svx/uiconfig/ui/safemodedialog.ui:445
msgctxt "safemodedialog|linkbutton_profile"
@@ -8769,9 +8769,9 @@ msgid "Red"
msgstr "Rautt"
#: include/svx/strings.hrc:565
-msgctxt "RID_SVXSTR_COLOR_VIOLET"
-msgid "Violet"
-msgstr "Fjólublátt"
+msgctxt "RID_SVXSTR_COLOR_MAGENTA"
+msgid "Magenta"
+msgstr "Blárautt"
#: include/svx/strings.hrc:566
msgctxt "RID_SVXSTR_COLOR_PURPLE"
@@ -8835,9 +8835,9 @@ msgid "Light Red"
msgstr "Ljósrautt"
#: include/svx/strings.hrc:579
-msgctxt "RID_SVXSTR_COLOR_LIGHTVIOLET"
-msgid "Light Violet"
-msgstr "Ljósfjólublátt"
+msgctxt "RID_SVXSTR_COLOR_LIGHTMAGENTA"
+msgid "Light Magenta"
+msgstr ""
#: include/svx/strings.hrc:580
msgctxt "RID_SVXSTR_COLOR_LIGHTPURPLE"
@@ -8901,9 +8901,9 @@ msgid "Dark Red"
msgstr "Dökkrautt"
#: include/svx/strings.hrc:593
-msgctxt "RID_SVXSTR_COLOR_DARKVIOLET1"
-msgid "Dark Violet"
-msgstr "Dökkfjólublátt"
+msgctxt "RID_SVXSTR_COLOR_DARKMAGENTA"
+msgid "Dark Magenta"
+msgstr ""
#: include/svx/strings.hrc:594
msgctxt "RID_SVXSTR_COLOR_DARKPURPLE"
@@ -8937,59 +8937,59 @@ msgstr "Dökk-límónu"
#. Elements of the Tonal color palette
#: include/svx/strings.hrc:601
+msgctxt "RID_SVXSTR_COLOR_VIOLET"
+msgid "Violet"
+msgstr "Fjólublátt"
+
+#: include/svx/strings.hrc:602
msgctxt "RID_SVXSTR_COLOR_VIOLET_OUG"
msgid "Violet (Out of Gamut)"
-msgstr ""
+msgstr "Fjólublátt (utan litrófs)"
-#: include/svx/strings.hrc:602
+#: include/svx/strings.hrc:603
msgctxt "RID_SVXSTR_COLOR_BLUE_OUG"
msgid "Blue (Out of Gamut)"
-msgstr ""
+msgstr "Blátt (utan litrófs)"
-#: include/svx/strings.hrc:603
+#: include/svx/strings.hrc:604
msgctxt "RID_SVXSTR_COLOR_AZURE_OUG"
msgid "Azure (Out of Gamut)"
-msgstr ""
+msgstr "Azúrblátt (utan litrófs)"
-#: include/svx/strings.hrc:604
+#: include/svx/strings.hrc:605
msgctxt "RID_SVXSTR_COLOR_SPRINGGREEN_OUG"
msgid "Spring Green (Out of Gamut)"
-msgstr ""
+msgstr "Vorgrænt (utan litrófs)"
-#: include/svx/strings.hrc:605
+#: include/svx/strings.hrc:606
msgctxt "RID_SVXSTR_COLOR_GREEN_OUG"
msgid "Green (Out of Gamut)"
-msgstr ""
+msgstr "Grænt (utan litrófs)"
-#: include/svx/strings.hrc:606
+#: include/svx/strings.hrc:607
msgctxt "RID_SVXSTR_COLOR_CHARTREUSEGREEN_OUG"
msgid "Chartreuse Green (Out of Gamut)"
-msgstr ""
+msgstr "Chartreuse-grænt (utan litrófs)"
-#: include/svx/strings.hrc:607
+#: include/svx/strings.hrc:608
msgctxt "RID_SVXSTR_COLOR_ORANGE_OUG"
msgid "Orange (Out of Gamut)"
-msgstr ""
+msgstr "Appelsínugult (utan litrófs)"
-#: include/svx/strings.hrc:608
+#: include/svx/strings.hrc:609
msgctxt "RID_SVXSTR_COLOR_RED_OUG"
msgid "Red (Out of Gamut)"
-msgstr ""
+msgstr "Rautt (utan litrófs)"
-#: include/svx/strings.hrc:609
+#: include/svx/strings.hrc:610
msgctxt "RID_SVXSTR_COLOR_ROSE_OUG"
msgid "Rose (Out of Gamut)"
-msgstr ""
-
-#: include/svx/strings.hrc:610
-msgctxt "RID_SVXSTR_COLOR_MAGENTA"
-msgid "Magenta"
-msgstr "Blárautt"
+msgstr "Rósrautt (utan litrófs)"
#: include/svx/strings.hrc:611
msgctxt "RID_SVXSTR_COLOR_AZURE"
msgid "Azure"
-msgstr ""
+msgstr "Azúrblátt"
#: include/svx/strings.hrc:612
msgctxt "RID_SVXSTR_COLOR_CYAN"
@@ -8999,17 +8999,17 @@ msgstr "Blágrænt"
#: include/svx/strings.hrc:613
msgctxt "RID_SVXSTR_COLOR_SPRINGGREEN"
msgid "Spring Green"
-msgstr ""
+msgstr "Vorgrænt"
#: include/svx/strings.hrc:614
msgctxt "RID_SVXSTR_COLOR_CHARTREUSEGREEN"
msgid "Chartreuse Green"
-msgstr ""
+msgstr "Chartreuse-grænt"
#: include/svx/strings.hrc:615
msgctxt "RID_SVXSTR_COLOR_ROSE"
msgid "Rose"
-msgstr ""
+msgstr "Rósrautt"
#. Old default color names, probably often used in saved files
#: include/svx/strings.hrc:617
@@ -9608,77 +9608,77 @@ msgstr "Grænn litstigull"
#: include/svx/strings.hrc:746
msgctxt "RID_SVXSTR_GRDT70"
msgid "Pastel Bouquet"
-msgstr ""
+msgstr "Pastel-blómvöndur"
#: include/svx/strings.hrc:747
msgctxt "RID_SVXSTR_GRDT71"
msgid "Pastel Dream"
-msgstr ""
+msgstr "Pasteldraumur"
#: include/svx/strings.hrc:748
msgctxt "RID_SVXSTR_GRDT72"
msgid "Blue Touch"
-msgstr ""
+msgstr "Bláleitt"
#: include/svx/strings.hrc:749
msgctxt "RID_SVXSTR_GRDT73"
msgid "Blank with Gray"
-msgstr ""
+msgstr "Tómt með gráu"
#: include/svx/strings.hrc:750
msgctxt "RID_SVXSTR_GRDT74"
msgid "Spotted Gray"
-msgstr ""
+msgstr "Doppótt grátt"
#: include/svx/strings.hrc:751
msgctxt "RID_SVXSTR_GRDT75"
msgid "London Mist"
-msgstr ""
+msgstr "Lundúnaþoka"
#: include/svx/strings.hrc:752
msgctxt "RID_SVXSTR_GRDT76"
msgid "Teal to Blue"
-msgstr ""
+msgstr "Djúp-blágrænt yfir í blátt"
#: include/svx/strings.hrc:753
msgctxt "RID_SVXSTR_GRDT77"
msgid "Midnight"
-msgstr ""
+msgstr "Miðnætti"
#: include/svx/strings.hrc:754
msgctxt "RID_SVXSTR_GRDT78"
msgid "Deep Ocean"
-msgstr ""
+msgstr "Djúphaf"
#: include/svx/strings.hrc:755
msgctxt "RID_SVXSTR_GRDT79"
msgid "Submarine"
-msgstr ""
+msgstr "Neðansjávar"
#: include/svx/strings.hrc:756
msgctxt "RID_SVXSTR_GRDT80"
msgid "Green Grass"
-msgstr ""
+msgstr "Grasgrænt"
#: include/svx/strings.hrc:757
msgctxt "RID_SVXSTR_GRDT81"
msgid "Neon Light"
-msgstr ""
+msgstr "Neonljós"
#: include/svx/strings.hrc:758
msgctxt "RID_SVXSTR_GRDT82"
msgid "Sunshine"
-msgstr ""
+msgstr "Sólskin"
#: include/svx/strings.hrc:759
msgctxt "RID_SVXSTR_GRDT83"
msgid "Present"
-msgstr ""
+msgstr "Gjöf"
#: include/svx/strings.hrc:760
msgctxt "RID_SVXSTR_GRDT84"
msgid "Mahagoni"
-msgstr ""
+msgstr "Mahóní"
#. /gradients
#: include/svx/strings.hrc:762
@@ -9744,87 +9744,87 @@ msgstr "Tómt"
#: include/svx/strings.hrc:774
msgctxt "RID_SVXSTR_BMP1"
msgid "Painted White"
-msgstr ""
+msgstr "Hvítmálað"
#: include/svx/strings.hrc:775
msgctxt "RID_SVXSTR_BMP2"
msgid "Paper Texture"
-msgstr ""
+msgstr "Pappírsáferð"
#: include/svx/strings.hrc:776
msgctxt "RID_SVXSTR_BMP3"
msgid "Paper Crumpled"
-msgstr ""
+msgstr "Krumpaður pappír"
#: include/svx/strings.hrc:777
msgctxt "RID_SVXSTR_BMP4"
msgid "Paper Graph"
-msgstr ""
+msgstr "Rúðustrikað"
#: include/svx/strings.hrc:778
msgctxt "RID_SVXSTR_BMP5"
msgid "Parchment Paper"
-msgstr ""
+msgstr "Skinnblað"
#: include/svx/strings.hrc:779
msgctxt "RID_SVXSTR_BMP6"
msgid "Fence"
-msgstr ""
+msgstr "Girðing"
#: include/svx/strings.hrc:780
msgctxt "RID_SVXSTR_BMP7"
msgid "Wooden Board"
-msgstr ""
+msgstr "Viðarplanki"
#: include/svx/strings.hrc:781
msgctxt "RID_SVXSTR_BMP8"
msgid "Maple Leaves"
-msgstr ""
+msgstr "Hlynlauf"
#: include/svx/strings.hrc:782
msgctxt "RID_SVXSTR_BMP9"
msgid "Lawn"
-msgstr ""
+msgstr "Grasflöt"
#: include/svx/strings.hrc:783
msgctxt "RID_SVXSTR_BMP10"
msgid "Colorful Pebbles"
-msgstr ""
+msgstr "Litaglaðar steinvölur"
#: include/svx/strings.hrc:784
msgctxt "RID_SVXSTR_BMP11"
msgid "Coffee Beans"
-msgstr ""
+msgstr "Kaffibaunir"
#: include/svx/strings.hrc:785
msgctxt "RID_SVXSTR_BMP12"
msgid "Little Clouds"
-msgstr ""
+msgstr "Smáský"
#: include/svx/strings.hrc:786
msgctxt "RID_SVXSTR_BMP13"
msgid "Bathroom Tiles"
-msgstr ""
+msgstr "Baðherbergisflísar"
#: include/svx/strings.hrc:787
msgctxt "RID_SVXSTR_BMP14"
msgid "Wall of Rock"
-msgstr ""
+msgstr "Grjótveggur"
#: include/svx/strings.hrc:788
msgctxt "RID_SVXSTR_BMP15"
msgid "Zebra"
-msgstr ""
+msgstr "Sebrarendur"
#: include/svx/strings.hrc:789
msgctxt "RID_SVXSTR_BMP16"
msgid "Color Stripes"
-msgstr ""
+msgstr "Litarendur"
#: include/svx/strings.hrc:790
msgctxt "RID_SVXSTR_BMP17"
msgid "Gravel"
-msgstr ""
+msgstr "Möl"
#: include/svx/strings.hrc:791
msgctxt "RID_SVXSTR_BMP18"
@@ -9834,12 +9834,12 @@ msgstr ""
#: include/svx/strings.hrc:792
msgctxt "RID_SVXSTR_BMP19"
msgid "Night Sky"
-msgstr ""
+msgstr "Næturhiminn"
#: include/svx/strings.hrc:793
msgctxt "RID_SVXSTR_BMP20"
msgid "Pool"
-msgstr ""
+msgstr "Vöktun"
#: include/svx/strings.hrc:794
msgctxt "RID_SVXSTR_BMP21"
@@ -10184,7 +10184,7 @@ msgstr "Línustíll"
#: include/svx/strings.hrc:862
msgctxt "RID_SVXSTR_IMAP_ALL_FILTER"
msgid "All formats"
-msgstr ""
+msgstr "Öll skráasnið"
#: include/svx/strings.hrc:863
msgctxt "RID_SVXSTR_LEND0"
@@ -12002,12 +12002,12 @@ msgstr "Reita~stílar"
#: include/svx/strings.hrc:1252
msgctxt "RID_SVXSTR_SEARCH"
msgid "Search for formatting"
-msgstr ""
+msgstr "Leita að sniði"
#: include/svx/strings.hrc:1253
msgctxt "RID_SVXSTR_REPLACE"
msgid "Replace with formatting"
-msgstr ""
+msgstr "Skipta út með sniði"
#: include/svx/strings.hrc:1254
msgctxt "RID_SVXSTR_SEARCH_END"
@@ -12017,7 +12017,7 @@ msgstr "Náði enda skjalsins"
#: include/svx/strings.hrc:1255
msgctxt "RID_SVXSTR_SEARCH_END_WRAPPED"
msgid "Reached the end of the document, continued from the beginning"
-msgstr ""
+msgstr "Náði enda skjalsins, haldið áfram frá upphafinu"
#: include/svx/strings.hrc:1256
msgctxt "RID_SVXSTR_SEARCH_END_SHEET"
@@ -12032,7 +12032,7 @@ msgstr "Leitarlykill fannst ekki"
#: include/svx/strings.hrc:1258
msgctxt "RID_SVXSTR_SEARCH_NAV_ELEMENT_NOT_FOUND"
msgid "Navigation Element not found"
-msgstr ""
+msgstr "Stak uppbyggingar fannst ekki"
#: include/svx/strings.hrc:1259
msgctxt "RID_SVXSTR_SEARCH_START"
@@ -12042,7 +12042,7 @@ msgstr "Náði á upphaf skjalsins"
#: include/svx/strings.hrc:1260
msgctxt "RID_SVXSTR_SEARCH_START_WRAPPED"
msgid "Reached the beginning of the document, continued from the end"
-msgstr ""
+msgstr "Náði á upphaf skjalsins, haldið áfram frá endanum"
#: include/svx/strings.hrc:1262
msgctxt "RID_SVXDLG_BMPMASK_STR_PALETTE"
@@ -12091,13 +12091,13 @@ msgstr "Hægri-örvalaga áherslumerki"
#: include/svx/strings.hrc:1273
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_6"
-msgid "Check mark bullets"
-msgstr "Gátmerki"
+msgid "Cross mark bullets"
+msgstr ""
#: include/svx/strings.hrc:1274
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_7"
-msgid "Tick mark bullets"
-msgstr "Gátmerki"
+msgid "Check mark bullets"
+msgstr ""
#: include/svx/strings.hrc:1275
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_0"
@@ -12476,6 +12476,8 @@ msgid ""
"The image has been modified. By default the original image will be saved.\n"
"Do you want to save the modified version instead?"
msgstr ""
+"Myndinni hefur verið breytt. Sjálfgefið er að vista upprunalegu myndina\n"
+"Viltu frekar vista breyttu útgáfuna?"
#: include/svx/strings.hrc:1362
msgctxt "RID_SUBSETMAP"
@@ -13885,38 +13887,38 @@ msgstr "Zanabazar ferkantað"
#: include/svx/strings.hrc:1644
msgctxt "RID_SVXSTR_FRAMEDIR_LTR"
msgid "Left-to-right (LTR)"
-msgstr ""
+msgstr "Vinstri til hægri (LTR)"
#: include/svx/strings.hrc:1645
msgctxt "RID_SVXSTR_FRAMEDIR_RTL"
msgid "Right-to-left (RTL)"
-msgstr ""
+msgstr "Hægri til vinstri (RTL)"
#: include/svx/strings.hrc:1646
msgctxt "RID_SVXSTR_FRAMEDIR_SUPER"
msgid "Use superordinate object settings"
-msgstr ""
+msgstr "Nota víðari/æðri stillingar hluta"
#. page direction
#: include/svx/strings.hrc:1648
msgctxt "RID_SVXSTR_PAGEDIR_LTR_HORI"
msgid "Left-to-right (horizontal)"
-msgstr ""
+msgstr "Vinstri-til-hægri (lárétt)"
#: include/svx/strings.hrc:1649
msgctxt "RID_SVXSTR_PAGEDIR_RTL_HORI"
msgid "Right-to-left (horizontal)"
-msgstr ""
+msgstr "Hægri-til-vinstri (lárétt)"
#: include/svx/strings.hrc:1650
msgctxt "RID_SVXSTR_PAGEDIR_RTL_VERT"
msgid "Right-to-left (vertical)"
-msgstr ""
+msgstr "Hægri-til-vinstri (lóðrétt)"
#: include/svx/strings.hrc:1651
msgctxt "RID_SVXSTR_PAGEDIR_LTR_VERT"
msgid "Left-to-right (vertical)"
-msgstr ""
+msgstr "Vinstri-til-hægri (lóðrétt)"
#: include/svx/svxitems.hrc:33
msgctxt "RID_ATTR_NAMES"
diff --git a/source/is/sw/messages.po b/source/is/sw/messages.po
index 02ee1d08f8d..142c8d43c20 100644
--- a/source/is/sw/messages.po
+++ b/source/is/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: 2018-05-22 13:17+0200\n"
-"PO-Revision-Date: 2018-04-25 13:30+0000\n"
+"POT-Creation-Date: 2018-06-12 14:41+0200\n"
+"PO-Revision-Date: 2018-05-31 09:17+0000\n"
"Last-Translator: Sveinn í Felli <sv1@fellsnet.is>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: is\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1524663042.000000\n"
+"X-POOTLE-MTIME: 1527758252.000000\n"
#: sw/inc/app.hrc:29
msgctxt "RID_PARAGRAPHSTYLEFAMILY"
@@ -1026,7 +1026,7 @@ msgstr "Teikning"
#: sw/inc/strings.hrc:141
msgctxt "STR_POOLCOLL_LABEL_FIGURE"
msgid "Figure"
-msgstr ""
+msgstr "Skýringamynd"
#: sw/inc/strings.hrc:142
msgctxt "STR_POOLCOLL_JAKETADRESS"
@@ -1180,13 +1180,13 @@ msgstr "Tilvitnun"
#: sw/inc/strings.hrc:172
msgctxt "STR_POOLCOLL_TOX_ILLUSH"
-msgid "Illustration Index Heading"
-msgstr "Fyrirsögn skýringamyndayfirlits"
+msgid "Figure Index Heading"
+msgstr ""
#: sw/inc/strings.hrc:173
msgctxt "STR_POOLCOLL_TOX_ILLUS1"
-msgid "Illustration Index 1"
-msgstr "Skýringamyndayfirlit 1"
+msgid "Figure Index 1"
+msgstr ""
#: sw/inc/strings.hrc:174
msgctxt "STR_POOLCOLL_TOX_OBJECTH"
@@ -1677,7 +1677,7 @@ msgstr "Asískur texti: "
#: sw/inc/strings.hrc:277
msgctxt "STR_CTL_FONT"
msgid "CTL text: "
-msgstr ""
+msgstr "CTL texti: "
#: sw/inc/strings.hrc:278
msgctxt "STR_REDLINE_UNKNOWN_AUTHOR"
@@ -3105,7 +3105,7 @@ msgstr "Bak~grunnur síðu"
#: sw/inc/strings.hrc:570
msgctxt "STR_PRINTOPTUI_PICTURES"
msgid "~Images and other graphic objects"
-msgstr ""
+msgstr "Mynd~ir og annað myndefni"
#: sw/inc/strings.hrc:571
msgctxt "STR_PRINTOPTUI_HIDDEN"
@@ -3590,8 +3590,8 @@ msgstr "Tafla yfir hluti"
#: sw/inc/strings.hrc:672
msgctxt "STR_TOX_ILL"
-msgid "Illustration Index"
-msgstr "Myndaskrá"
+msgid "Table of Figures"
+msgstr ""
#: sw/inc/strings.hrc:673
#, c-format
@@ -4028,22 +4028,22 @@ msgstr "Umbeðið klippispjaldssnið er ekki tiltækt."
#: sw/inc/strings.hrc:764
msgctxt "STR_PRIVATETEXT"
msgid "%PRODUCTNAME %PRODUCTVERSION Text Document"
-msgstr ""
+msgstr "%PRODUCTNAME %PRODUCTVERSION textaskjal"
#: sw/inc/strings.hrc:765
msgctxt "STR_PRIVATEGRAPHIC"
msgid "Image (%PRODUCTNAME %PRODUCTVERSION Text Document)"
-msgstr ""
+msgstr "Mynd (%PRODUCTNAME %PRODUCTVERSION textaskjal)"
#: sw/inc/strings.hrc:766
msgctxt "STR_PRIVATEOLE"
msgid "Object (%PRODUCTNAME %PRODUCTVERSION Text Document)"
-msgstr ""
+msgstr "Hlutur (%PRODUCTNAME %PRODUCTVERSION textaskjal)"
#: sw/inc/strings.hrc:767
msgctxt "STR_DDEFORMAT"
msgid "Dynamic Data Exchange (DDE link)"
-msgstr ""
+msgstr "Dynamic Data Exchange (breytilegur DDE tengill)"
#: sw/inc/strings.hrc:769
msgctxt "STR_DELETE_ALL_NOTES"
@@ -4928,12 +4928,12 @@ msgstr "Númer (fullt samhengi)"
#: sw/inc/strings.hrc:983
msgctxt "FMT_REF_WITH_LOWERCASE_HU_ARTICLE"
msgid "Article a/az + "
-msgstr ""
+msgstr "Grein a/az + "
#: sw/inc/strings.hrc:984
msgctxt "FMT_REF_WITH_UPPERCASE_HU_ARTICLE"
msgid "Article A/Az + "
-msgstr ""
+msgstr "Grein A/Az + "
#. --------------------------------------------------------------------
#. Description: placeholder
@@ -5094,12 +5094,12 @@ msgstr "Bókarsýn"
#: sw/inc/strings.hrc:1025
msgctxt "STR_BOOKCTRL_HINT"
msgid "Page number in document. Click to open Go to Page dialog or right-click for bookmark list."
-msgstr ""
+msgstr "Blaðsíðunúmer í skjali. Smelltu til að opna 'Fara á síðu' glugga eða hægrismelltu til að fá lista yfir bókamerki."
#: sw/inc/strings.hrc:1026
msgctxt "STR_BOOKCTRL_HINT_EXTENDED"
msgid "Page number in document (Page number on printed document). Click to open Go to Page dialog."
-msgstr ""
+msgstr "Blaðsíðunúmer í skjali (blaðsíðunúmer á prentuðu skjali). Smelltu til að opna 'Fara á síðu' glugga."
#: sw/inc/strings.hrc:1027
msgctxt "STR_TMPLCTRL_HINT"
@@ -6688,7 +6688,7 @@ msgstr "Vistaðu skjalið undir einhverju öðru heiti."
#: sw/uiconfig/swriter/ui/alreadyexistsdialog.ui:81
msgctxt "alreadyexistsdialog|label1"
msgid "Subject:"
-msgstr ""
+msgstr "Efni:"
#: sw/uiconfig/swriter/ui/annotationmenu.ui:12
msgctxt "annotationmenu|reply"
@@ -8143,12 +8143,12 @@ msgstr "Breyta gagnasviðum"
#: sw/uiconfig/swriter/ui/editfielddialog.ui:92
msgctxt "editfielddialog|prev_tip"
msgid "Previous field of same type"
-msgstr ""
+msgstr "Fyrri reitur sömu tegundar"
#: sw/uiconfig/swriter/ui/editfielddialog.ui:109
msgctxt "editfielddialog|next_tip"
msgid "Next field of same type"
-msgstr ""
+msgstr "Næsti reitur sömu tegundar"
#: sw/uiconfig/swriter/ui/editfielddialog.ui:121
msgctxt "editfielddialog|edit"
@@ -8158,7 +8158,7 @@ msgstr "Br_eyta"
#: sw/uiconfig/swriter/ui/editfielddialog.ui:126
msgctxt "editfielddialog|edit_tip"
msgid "Edit variable field content"
-msgstr ""
+msgstr "Sýsla með efni breytilegs gagnareits"
#: sw/uiconfig/swriter/ui/editsectiondialog.ui:9
msgctxt "editsectiondialog|EditSectionDialog"
@@ -8383,22 +8383,22 @@ msgstr "Prentari"
#: sw/uiconfig/swriter/ui/envformatpage.ui:44
msgctxt "envformatpage|character1"
msgid "C_haracter..."
-msgstr ""
+msgstr "St_afur..."
#: sw/uiconfig/swriter/ui/envformatpage.ui:52
msgctxt "envformatpage|paragraph1"
msgid "P_aragraph..."
-msgstr ""
+msgstr "_Málsgrein..."
#: sw/uiconfig/swriter/ui/envformatpage.ui:64
msgctxt "envformatpage|character2"
msgid "C_haracter..."
-msgstr ""
+msgstr "St_afur..."
#: sw/uiconfig/swriter/ui/envformatpage.ui:72
msgctxt "envformatpage|paragraph2"
msgid "P_aragraph..."
-msgstr ""
+msgstr "_Málsgrein..."
#: sw/uiconfig/swriter/ui/envformatpage.ui:156
msgctxt "envformatpage|label5"
@@ -8508,62 +8508,62 @@ msgstr "Færa _niður"
#: sw/uiconfig/swriter/ui/envprinterpage.ui:198
msgctxt "envprinterpage|horileftl|tooltip_text"
msgid "Horizontal Left"
-msgstr ""
+msgstr "Lárétt til vinstri"
#: sw/uiconfig/swriter/ui/envprinterpage.ui:214
msgctxt "envprinterpage|horicenterl|tooltip_text"
msgid "Horizontal Center"
-msgstr ""
+msgstr "Lárétt miðjað"
#: sw/uiconfig/swriter/ui/envprinterpage.ui:230
msgctxt "envprinterpage|horirightl|tooltip_text"
msgid "Horizontal Right"
-msgstr ""
+msgstr "Lárétt til hægri"
#: sw/uiconfig/swriter/ui/envprinterpage.ui:246
msgctxt "envprinterpage|vertleftl|tooltip_text"
msgid "Vertical Left"
-msgstr ""
+msgstr "Lóðrétt til vinstri"
#: sw/uiconfig/swriter/ui/envprinterpage.ui:262
msgctxt "envprinterpage|vertcenterl|tooltip_text"
msgid "Vertical Center"
-msgstr ""
+msgstr "Lóðrétt miðjað"
#: sw/uiconfig/swriter/ui/envprinterpage.ui:278
msgctxt "envprinterpage|vertrightl|tooltip_text"
msgid "Vertical Right"
-msgstr ""
+msgstr "Lóðrétt til hægri"
#: sw/uiconfig/swriter/ui/envprinterpage.ui:306
msgctxt "envprinterpage|horileftu|tooltip_text"
msgid "Horizontal Left"
-msgstr ""
+msgstr "Lárétt til vinstri"
#: sw/uiconfig/swriter/ui/envprinterpage.ui:322
msgctxt "envprinterpage|horicenteru|tooltip_text"
msgid "Horizontal Center"
-msgstr ""
+msgstr "Lárétt miðjað"
#: sw/uiconfig/swriter/ui/envprinterpage.ui:338
msgctxt "envprinterpage|horirightu|tooltip_text"
msgid "Horizontal Right"
-msgstr ""
+msgstr "Lárétt til hægri"
#: sw/uiconfig/swriter/ui/envprinterpage.ui:354
msgctxt "envprinterpage|vertleftu|tooltip_text"
msgid "Vertical Left"
-msgstr ""
+msgstr "Lóðrétt til vinstri"
#: sw/uiconfig/swriter/ui/envprinterpage.ui:370
msgctxt "envprinterpage|vertcenteru|tooltip_text"
msgid "Vertical Center"
-msgstr ""
+msgstr "Lóðrétt miðjað"
#: sw/uiconfig/swriter/ui/envprinterpage.ui:386
msgctxt "envprinterpage|vertrightu|tooltip_text"
msgid "Vertical Right"
-msgstr ""
+msgstr "Lóðrétt til hægri"
#: sw/uiconfig/swriter/ui/envprinterpage.ui:412
msgctxt "envprinterpage|label1"
@@ -9244,72 +9244,72 @@ msgctxt "footnotepage|label5"
msgid "Continuation Notice"
msgstr "Tilkynning um framhaldssíðu"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:49
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:55
msgctxt "footnotesendnotestabpage|ftnntnum"
msgid "_Restart numbering"
msgstr "Endu_rræsa tölusetningu"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:91
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:93
msgctxt "footnotesendnotestabpage|ftnoffset_label"
msgid "_Start at:"
msgstr "_Byrja á:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:112
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:111
msgctxt "footnotesendnotestabpage|ftnntnumfmt"
msgid "Custom _format"
msgstr "Sérsniðið s_nið"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:155
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:150
msgctxt "footnotesendnotestabpage|ftnsuffix_label"
msgid "Aft_er:"
msgstr "_Eftir:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:199
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:188
msgctxt "footnotesendnotestabpage|ftnprefix_label"
msgid "Be_fore:"
msgstr "Á _undan:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:228
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:212
msgctxt "footnotesendnotestabpage|ftnntattextend"
msgid "Collec_t at end of text"
msgstr "Safna saman við en_da texta"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:252
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:234
msgctxt "footnotesendnotestabpage|label1"
msgid "Footnotes"
msgstr "Neðanmálsgreinar"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:289
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:271
msgctxt "footnotesendnotestabpage|endntattextend"
msgid "C_ollect at end of section"
msgstr "Safna saman við enda _hluta"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:315
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:295
msgctxt "footnotesendnotestabpage|endntnum"
msgid "_Restart numbering"
msgstr "Endu_rræsa tölusetningu"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:357
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:333
msgctxt "footnotesendnotestabpage|endoffset_label"
msgid "_Start at:"
msgstr "_Byrja á:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:378
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:351
msgctxt "footnotesendnotestabpage|endntnumfmt"
msgid "_Custom format"
msgstr "_Sérsniðið snið"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:421
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:390
msgctxt "footnotesendnotestabpage|endsuffix_label"
msgid "Aft_er:"
msgstr "_Eftir:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:465
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:428
msgctxt "footnotesendnotestabpage|endprefix_label"
msgid "Be_fore:"
msgstr "_Fyrir:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:500
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:458
msgctxt "footnotesendnotestabpage|label2"
msgid "Endnotes"
msgstr "Eftirmálar"
@@ -9339,27 +9339,27 @@ msgctxt "formatsectiondialog|notes"
msgid "Footnotes/Endnotes"
msgstr "Neðanmálsgreinar/eftirmálar"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:63
+#: sw/uiconfig/swriter/ui/formattablepage.ui:77
msgctxt "formattablepage|nameft"
msgid "_Name"
msgstr "_Nafn"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:79
+#: sw/uiconfig/swriter/ui/formattablepage.ui:91
msgctxt "formattablepage|widthft"
msgid "W_idth"
msgstr "_Breidd"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:110
+#: sw/uiconfig/swriter/ui/formattablepage.ui:120
msgctxt "formattablepage|relwidth"
msgid "Relati_ve"
msgstr "_Hlutfallslegt"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:155
+#: sw/uiconfig/swriter/ui/formattablepage.ui:160
msgctxt "formattablepage|label45"
msgid "Properties"
msgstr "Eiginleikar"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:194
+#: sw/uiconfig/swriter/ui/formattablepage.ui:195
msgctxt "formattablepage|leftft"
msgid "Lef_t"
msgstr "_Vinstri"
@@ -9369,62 +9369,62 @@ msgctxt "formattablepage|rightft"
msgid "Ri_ght"
msgstr "_Hægri"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:228
+#: sw/uiconfig/swriter/ui/formattablepage.ui:226
msgctxt "formattablepage|aboveft"
msgid "_Above"
msgstr "_Ofar en"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:245
+#: sw/uiconfig/swriter/ui/formattablepage.ui:241
msgctxt "formattablepage|belowft"
msgid "_Below"
msgstr "_Undir"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:320
+#: sw/uiconfig/swriter/ui/formattablepage.ui:311
msgctxt "formattablepage|label46"
msgid "Spacing"
msgstr "Millibil"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:362
+#: sw/uiconfig/swriter/ui/formattablepage.ui:349
msgctxt "formattablepage|full"
msgid "A_utomatic"
msgstr "_Sjálfvirkt"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:380
+#: sw/uiconfig/swriter/ui/formattablepage.ui:365
msgctxt "formattablepage|left"
msgid "_Left"
msgstr "_Vinstri"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:398
+#: sw/uiconfig/swriter/ui/formattablepage.ui:381
msgctxt "formattablepage|fromleft"
msgid "_From left"
msgstr "_Frá vinstri"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:416
+#: sw/uiconfig/swriter/ui/formattablepage.ui:397
msgctxt "formattablepage|right"
msgid "R_ight"
msgstr "_Hægri"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:435
+#: sw/uiconfig/swriter/ui/formattablepage.ui:413
msgctxt "formattablepage|center"
msgid "_Center"
msgstr "_Miðjað"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:453
+#: sw/uiconfig/swriter/ui/formattablepage.ui:429
msgctxt "formattablepage|free"
msgid "_Manual"
msgstr "_Handvirkt"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:478
+#: sw/uiconfig/swriter/ui/formattablepage.ui:452
msgctxt "formattablepage|label43"
msgid "Alignment"
msgstr "Jöfnun"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:522
+#: sw/uiconfig/swriter/ui/formattablepage.ui:491
msgctxt "formattablepage|label53"
msgid "Text _direction"
msgstr "_Textastefna"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:553
+#: sw/uiconfig/swriter/ui/formattablepage.ui:519
msgctxt "formattablepage|label44"
msgid "Properties "
msgstr "Eiginleikar "
@@ -9777,24 +9777,29 @@ msgstr "Jaðar og bakgrunnur..."
#: sw/uiconfig/swriter/ui/headerfootermenu.ui:34
msgctxt "headerfootermenu|insert_pagenumber"
msgid "Insert Page Number"
+msgstr "Setja inn blaðsíðunúmer"
+
+#: sw/uiconfig/swriter/ui/headerfootermenu.ui:42
+msgctxt "headerfootermenu|insert_pagecount"
+msgid "Insert Page Count"
msgstr ""
-#: sw/uiconfig/swriter/ui/indentpage.ui:52
+#: sw/uiconfig/swriter/ui/indentpage.ui:57
msgctxt "indentpage|label1"
msgid "_Before section"
msgstr "Á un_dan hluta"
-#: sw/uiconfig/swriter/ui/indentpage.ui:67
+#: sw/uiconfig/swriter/ui/indentpage.ui:71
msgctxt "indentpage|label3"
msgid "_After section"
msgstr "Á _eftir hluta"
-#: sw/uiconfig/swriter/ui/indentpage.ui:113
+#: sw/uiconfig/swriter/ui/indentpage.ui:115
msgctxt "indentpage|label2"
msgid "Indent"
msgstr "Inndráttur"
-#: sw/uiconfig/swriter/ui/indentpage.ui:142
+#: sw/uiconfig/swriter/ui/indentpage.ui:155
msgctxt "indentpage|preview-atkobject"
msgid "Example"
msgstr "Dæmi"
@@ -10482,7 +10487,7 @@ msgstr "Valkostir"
#: sw/uiconfig/swriter/ui/inserttable.ui:454
msgctxt "inserttable|lbTableStyle"
msgid "Styles"
-msgstr ""
+msgstr "Stílar"
#: sw/uiconfig/swriter/ui/labeldialog.ui:8
msgctxt "labeldialog|LabelDialog"
@@ -11592,7 +11597,7 @@ msgstr "Sendi tölvupósta"
#: sw/uiconfig/swriter/ui/mmsendmails.ui:26
msgctxt "mmsendmails|stop"
msgid "_Pause"
-msgstr ""
+msgstr "_Gera hlé"
#: sw/uiconfig/swriter/ui/mmsendmails.ui:90
msgctxt "mmsendmails|label3"
@@ -11772,22 +11777,22 @@ msgstr "Nýtt efnisyfirlit notanda"
#: sw/uiconfig/swriter/ui/notebookbar.ui:537
msgctxt "notebookbar|Help"
msgid "_Check for Updates..."
-msgstr ""
+msgstr "At_huga með uppfærslur..."
#: sw/uiconfig/swriter/ui/notebookbar.ui:1581
msgctxt "notebookbar|Tools"
msgid "_Check for Updates..."
-msgstr ""
+msgstr "At_huga með uppfærslur..."
#: sw/uiconfig/swriter/ui/notebookbar.ui:1851
msgctxt "notebookbar|FileMenuButton"
msgid "_File"
-msgstr ""
+msgstr "S_krá"
#: sw/uiconfig/swriter/ui/notebookbar.ui:1870
msgctxt "notebookbar|HelpMenuButton"
msgid "_Help"
-msgstr ""
+msgstr "_Hjálp"
#: sw/uiconfig/swriter/ui/notebookbar.ui:2658
msgctxt "notebookbar|FileLabel"
@@ -11797,7 +11802,7 @@ msgstr "Skrá"
#: sw/uiconfig/swriter/ui/notebookbar.ui:2817
msgctxt "notebookbar|HomeMenuButton"
msgid "_Home"
-msgstr ""
+msgstr "_Upphaf"
#: sw/uiconfig/swriter/ui/notebookbar.ui:4203
msgctxt "notebookbar|HomeLabel"
@@ -11807,7 +11812,7 @@ msgstr "Heim"
#: sw/uiconfig/swriter/ui/notebookbar.ui:5273
msgctxt "notebookbar|InsertMenuButton"
msgid "_Insert"
-msgstr ""
+msgstr "Setja _inn"
#: sw/uiconfig/swriter/ui/notebookbar.ui:5358
msgctxt "notebookbar|InsertLabel"
@@ -11817,17 +11822,17 @@ msgstr "Setja inn"
#: sw/uiconfig/swriter/ui/notebookbar.ui:5388
msgctxt "notebookbar|PageMenuButton"
msgid "Pag_e"
-msgstr ""
+msgstr "Síð_a"
#: sw/uiconfig/swriter/ui/notebookbar.ui:6307
msgctxt "notebookbar|LayoutLabel"
msgid "Layout"
-msgstr ""
+msgstr "Framsetning"
#: sw/uiconfig/swriter/ui/notebookbar.ui:6335
msgctxt "notebookbar|ReferencesMenuButton"
msgid "Reference_s"
-msgstr ""
+msgstr "Tilví_sanir"
#: sw/uiconfig/swriter/ui/notebookbar.ui:6914
msgctxt "notebookbar|ReferencesLabel"
@@ -11837,7 +11842,7 @@ msgstr "Tilvísanir"
#: sw/uiconfig/swriter/ui/notebookbar.ui:7586
msgctxt "notebookbar|ReviewMenuButton"
msgid "_Review"
-msgstr ""
+msgstr "Yfi_rfara"
#: sw/uiconfig/swriter/ui/notebookbar.ui:7671
msgctxt "notebookbar|ReviewLabel"
@@ -11847,7 +11852,7 @@ msgstr "Yfirferð"
#: sw/uiconfig/swriter/ui/notebookbar.ui:8285
msgctxt "notebookbar|ViewMenuButton"
msgid "_View"
-msgstr ""
+msgstr "S_koða"
#: sw/uiconfig/swriter/ui/notebookbar.ui:8370
msgctxt "notebookbar|ViewLabel"
@@ -11857,7 +11862,7 @@ msgstr "Skoða"
#: sw/uiconfig/swriter/ui/notebookbar.ui:9451
msgctxt "notebookbar|TableMenuButton"
msgid "T_able"
-msgstr ""
+msgstr "Ta_fla"
#: sw/uiconfig/swriter/ui/notebookbar.ui:9535
msgctxt "notebookbar|TableLabel"
@@ -11867,7 +11872,7 @@ msgstr "Tafla"
#: sw/uiconfig/swriter/ui/notebookbar.ui:10586
msgctxt "notebookbar|GraphicMenuButton"
msgid "_Graphic"
-msgstr ""
+msgstr "Mynde_fni"
#: sw/uiconfig/swriter/ui/notebookbar.ui:10685
msgctxt "notebookbar|ImageLabel"
@@ -11877,7 +11882,7 @@ msgstr "Mynd"
#: sw/uiconfig/swriter/ui/notebookbar.ui:12035
msgctxt "notebookbar|DrawMenuButton"
msgid "D_raw"
-msgstr ""
+msgstr "_Teikna"
#: sw/uiconfig/swriter/ui/notebookbar.ui:12147
msgctxt "notebookbar|ShapeLabel"
@@ -11887,32 +11892,32 @@ msgstr "Teikna"
#: sw/uiconfig/swriter/ui/notebookbar.ui:13000
msgctxt "notebookbar|ObjectMenuButton:MenuDraw"
msgid "Object"
-msgstr ""
+msgstr "Hlutur"
#: sw/uiconfig/swriter/ui/notebookbar.ui:13089
msgctxt "notebookbar|ObjectLabel"
msgid "Object"
-msgstr ""
+msgstr "Hlutur"
#: sw/uiconfig/swriter/ui/notebookbar.ui:13120
msgctxt "notebookbar|ToolsMenuButton"
msgid "_Tools"
-msgstr ""
+msgstr "_Verkfæri"
#: sw/uiconfig/swriter/ui/notebookbar.ui:14074
msgctxt "notebookbar|DevLabel"
msgid "Tools"
-msgstr ""
+msgstr "Verkfæri"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:1697
msgctxt "notebookbar_compact|Update"
msgid "_Check for Updates..."
-msgstr ""
+msgstr "At_huga með uppfærslur..."
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:2007
msgctxt "notebookbar_compact|FileMenuButton"
msgid "_File"
-msgstr ""
+msgstr "S_krá"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:2721
msgctxt "notebookbar_compact|FileLabel"
@@ -11922,7 +11927,7 @@ msgstr "Skrá"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:2770
msgctxt "notebookbar_compact|HomeMenuButton"
msgid "_Menu"
-msgstr ""
+msgstr "Val_mynd"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3829
msgctxt "notebookbar_compact|HomeLabel"
@@ -11932,7 +11937,7 @@ msgstr "Heim"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3882
msgctxt "notebookbar_compact|InsertMenuButton"
msgid "_Insert"
-msgstr ""
+msgstr "Setja _inn"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4501
msgctxt "notebookbar_compact|InsertLabel"
@@ -11950,17 +11955,17 @@ msgstr "Textaskrið"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5221
msgctxt "notebookbar_compact|PageMenuButton"
msgid "Pag_e"
-msgstr ""
+msgstr "Síð_a"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5273
msgctxt "notebookbar_compact|LayoutLabel"
msgid "Layout"
-msgstr ""
+msgstr "Framsetning"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5320
msgctxt "notebookbar_compact|ReferencesMenuButton"
msgid "Reference_s"
-msgstr ""
+msgstr "Tilví_sanir"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5708
msgctxt "notebookbar_compact|ReferencesLabel"
@@ -11970,7 +11975,7 @@ msgstr "Tilvísanir"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6204
msgctxt "notebookbar_compact|ReviewMenuButton"
msgid "_Review"
-msgstr ""
+msgstr "Yfi_rfara"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6237
msgctxt "notebookbar_compact|ReviewLabel"
@@ -11980,7 +11985,7 @@ msgstr "Yfirferð"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6706
msgctxt "notebookbar_compact|ViewMenuButton"
msgid "_View"
-msgstr ""
+msgstr "S_koða"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6758
msgctxt "notebookbar_compact|ViewLabel"
@@ -11990,7 +11995,7 @@ msgstr "Skoða"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6806
msgctxt "notebookbar_compact|TableMenuButton"
msgid "T_able"
-msgstr ""
+msgstr "Ta_fla"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7540
msgctxt "notebookbar_compact|TableLabel"
@@ -12002,12 +12007,12 @@ msgstr "Tafla"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9513
msgctxt "notebookbar_compact|graphicB"
msgid "A_lign"
-msgstr ""
+msgstr "H_liðjafna"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8291
msgctxt "notebookbar_compact|GraphicMenuButton"
msgid "_Graphic"
-msgstr ""
+msgstr "Mynde_fni"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8324
msgctxt "notebookbar_compact|ImageLabel"
@@ -12017,7 +12022,7 @@ msgstr "Mynd"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9070
msgctxt "notebookbar_compact|DrawMenuButton"
msgid "D_raw"
-msgstr ""
+msgstr "_Teikna"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9125
msgctxt "notebookbar_compact|ShapeLabel"
@@ -12027,7 +12032,7 @@ msgstr "Teikna"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9651
msgctxt "notebookbar_compact|ObjectMenuButton:MenuDraw"
msgid "Object"
-msgstr ""
+msgstr "Hlutur"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9707
msgctxt "notebookbar_compact|FrameLabel"
@@ -12037,7 +12042,7 @@ msgstr "Hlutur"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9757
msgctxt "notebookbar_compact|ToolsMenuButton"
msgid "_Tools"
-msgstr ""
+msgstr "_Verkfæri"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10600
msgctxt "notebookbar_compact|DevLabel"
@@ -12052,7 +12057,7 @@ msgstr "Valmyndastika"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:2516
msgctxt "notebookbar_groupedbar_compact|Menu"
msgid "_Check for Updates..."
-msgstr ""
+msgstr "At_huga með uppfærslur..."
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:2651
msgctxt "notebookbar_groupedbar_compact|Quotation2"
@@ -12062,7 +12067,7 @@ msgstr "Tilvitnun"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:2945
msgctxt "notebookbar_groupedbar_compact|Tools"
msgid "_Check for Updates..."
-msgstr ""
+msgstr "At_huga með uppfærslur..."
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_compact.ui:3246
msgctxt "notebookbar_groupedbar_compact|menub"
@@ -12277,12 +12282,12 @@ msgstr "S_koða"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:1486
msgctxt "notebookbar_groupedbar_full|Help"
msgid "_Check for Updates..."
-msgstr ""
+msgstr "At_huga með uppfærslur..."
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:2555
msgctxt "notebookbar_groupedbar_full|Menu"
msgid "_Check for Updates..."
-msgstr ""
+msgstr "At_huga með uppfærslur..."
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:2690
msgctxt "notebookbar_groupedbar_full|Quotation2"
@@ -12292,7 +12297,7 @@ msgstr "Tilvitnun"
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:2984
msgctxt "notebookbar_groupedbar_full|Tools"
msgid "_Check for Updates..."
-msgstr ""
+msgstr "At_huga með uppfærslur..."
#: sw/uiconfig/swriter/ui/notebookbar_groupedbar_full.ui:3289
msgctxt "notebookbar_groupedbar_full|menub"
@@ -13285,8 +13290,8 @@ msgstr "Vernda eyðublað"
#: sw/uiconfig/swriter/ui/optcompatpage.ui:68
msgctxt "optcompatpage|format"
-msgid "MS Word-compatible trailing blanks"
-msgstr "MS Word-samhæf fylgibil"
+msgid "Word-compatible trailing blanks"
+msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:69
msgctxt "optcompatpage|format"
@@ -13295,7 +13300,7 @@ msgstr "Umbera hvítar línur í bakgrunni PDF-síðna, vegna samhæfni við eld
#: sw/uiconfig/swriter/ui/optcompatpage.ui:70
msgctxt "optcompatpage|format"
-msgid "A database field (e.g., MailMerge) with empty value hides its paragraph"
+msgid "Hide paragraphs of database fields (e.g., mail merge) with an empty value"
msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:71
@@ -13311,7 +13316,7 @@ msgstr "_Nota sem sjálfgefið"
#: sw/uiconfig/swriter/ui/optcompatpage.ui:105
msgctxt "optcompatpage|label11"
msgid "Compatibility options for “%DOCNAME”"
-msgstr ""
+msgstr "Samhæfnisvalkostir fyrir “%DOCNAME”"
#: sw/uiconfig/swriter/ui/optfonttabpage.ui:103
msgctxt "optfonttabpage|font_label"
@@ -14030,7 +14035,7 @@ msgstr "Ekkert"
#: sw/uiconfig/swriter/ui/outlinepositionpage.ui:385
msgctxt "outlinepositionpage|liststore2"
msgid "New Line"
-msgstr ""
+msgstr "Ný lína"
#: sw/uiconfig/swriter/ui/outlinepositionpage.ui:398
msgctxt "outlinepositionpage|numfollowedby"
@@ -14120,7 +14125,7 @@ msgstr "Fleiri möguleikar"
#: sw/uiconfig/swriter/ui/pagefooterpanel.ui:33
msgctxt "PageHeaderPanel|footertoggle-atkobject"
msgid "Enable footer"
-msgstr ""
+msgstr "Virkja síðufót"
#: sw/uiconfig/swriter/ui/pagefooterpanel.ui:49
msgctxt "pagefooterpanel|margins"
@@ -14235,7 +14240,7 @@ msgstr "Sérsniðið"
#: sw/uiconfig/swriter/ui/pageheaderpanel.ui:33
msgctxt "PageHeaderPanel|headertoggle-atkobject"
msgid "Enable header"
-msgstr ""
+msgstr "Virkja síðuhaus"
#: sw/uiconfig/swriter/ui/pageheaderpanel.ui:49
msgctxt "pageheaderpanel|margins"
@@ -14975,12 +14980,12 @@ msgstr "Þetta mun hafa áhrif á öll ný skjöl sem byggjast á sjálfgefna sn
#: sw/uiconfig/swriter/ui/queryredlinedialog.ui:7
msgctxt "queryredlinedialog|QueryRedlineDialog"
msgid "Delete this theme?"
-msgstr ""
+msgstr "Eyða þessari þemu?"
#: sw/uiconfig/swriter/ui/queryredlinedialog.ui:13
msgctxt "queryredlinedialog|QueryRedlineDialog"
msgid "AutoCorrect completed."
-msgstr ""
+msgstr "Sjálfvirkri leiðréttingu lokið."
#: sw/uiconfig/swriter/ui/queryredlinedialog.ui:14
msgctxt "queryredlinedialog|QueryRedlineDialog"
@@ -14988,21 +14993,23 @@ msgid ""
"You can accept or reject all changes,\n"
"or accept or reject particular changes."
msgstr ""
+"Þú getur samþykkt eða hafnað öllum breytingum í einu,\n"
+"eða samþykkt eða hafnað einstökum breytingum."
#: sw/uiconfig/swriter/ui/queryredlinedialog.ui:26
msgctxt "queryredlinedialog|cancel"
msgid "Reject All"
-msgstr ""
+msgstr "Hafna öllu"
#: sw/uiconfig/swriter/ui/queryredlinedialog.ui:39
msgctxt "queryredlinedialog|ok"
msgid "Accept All"
-msgstr ""
+msgstr "Samþykkja allt"
#: sw/uiconfig/swriter/ui/queryredlinedialog.ui:55
msgctxt "queryredlinedialog|edit"
msgid "Edit Changes"
-msgstr ""
+msgstr "Sýsla með breytingar"
#: sw/uiconfig/swriter/ui/queryrotateintostandarddialog.ui:7
msgctxt "queryrotateintostandarddialog|QueryRotateIntoStandardOrientationDialog"
@@ -15247,7 +15254,7 @@ msgstr "Valkostir"
#: sw/uiconfig/swriter/ui/savemonitordialog.ui:8
msgctxt "printmonitordialog|PrintMonitorDialog"
msgid "Save monitor"
-msgstr ""
+msgstr "Vistunarvöktun"
#: sw/uiconfig/swriter/ui/savemonitordialog.ui:71
msgctxt "printmonitordialog|saving"
@@ -15979,122 +15986,122 @@ msgctxt "tableproperties|background"
msgid "Background"
msgstr "Bakgrunnur"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:25
-msgctxt "tabletextflowpage|liststore1"
-msgid "Horizontal"
-msgstr "Lárétt"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:29
-msgctxt "tabletextflowpage|liststore1"
-msgid "Vertical"
-msgstr "Lóðrétt"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:33
-msgctxt "tabletextflowpage|liststore1"
-msgid "Use superordinate object settings"
-msgstr "Nota víðari/æðri stillingar hluta"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:47
-msgctxt "tabletextflowpage|liststore2"
-msgid "Top"
-msgstr "Efst"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:51
-msgctxt "tabletextflowpage|liststore2"
-msgid "Centered"
-msgstr "Miðjað"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:55
-msgctxt "tabletextflowpage|liststore2"
-msgid "Bottom"
-msgstr "Neðst"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:97
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:53
msgctxt "tabletextflowpage|break"
msgid "_Break"
msgstr "_Rofstaður"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:112
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:68
msgctxt "tabletextflowpage|page"
msgid "_Page"
msgstr "_Síða"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:132
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:87
msgctxt "tabletextflowpage|column"
msgid "Col_umn"
msgstr "_Dálkur"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:151
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:106
msgctxt "tabletextflowpage|before"
msgid "Be_fore"
msgstr "_Fyrir"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:171
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:125
msgctxt "tabletextflowpage|after"
msgid "_After"
msgstr "_Eftir"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:203
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:158
msgctxt "tabletextflowpage|pagestyle"
msgid "With Page St_yle"
msgstr "Með síð_ustíl"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:224
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:177
msgctxt "tabletextflowpage|pagenoft"
msgid "Page _number"
msgstr "_Síðunúmer"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:257
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:213
msgctxt "tabletextflowpage|pagestylelb-atkobject"
msgid "With Page Style"
msgstr "Með síðustíl"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:274
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:230
msgctxt "tabletextflowpage|split"
msgid "Allow _table to split across pages and columns"
msgstr "Leyfa _töflu að skiptast yfir blaðsíður og dálka"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:289
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:245
msgctxt "tabletextflowpage|splitrow"
msgid "Allow row to break a_cross pages and columns"
msgstr "Leyfa röð að skiptast _yfir blaðsíður og dálka"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:306
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:262
msgctxt "tabletextflowpage|keep"
msgid "_Keep with next paragraph"
msgstr "Halda _með næstu málsgrein"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:328
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:284
msgctxt "tabletextflowpage|label40"
msgid "Text _orientation"
msgstr "Snúningur texta"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:361
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:298
+msgctxt "tabletextflowpage|liststore1"
+msgid "Horizontal"
+msgstr "Lárétt"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:299
+msgctxt "tabletextflowpage|liststore1"
+msgid "Vertical"
+msgstr "Lóðrétt"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:300
+msgctxt "tabletextflowpage|liststore1"
+msgid "Use superordinate object settings"
+msgstr "Nota víðari/æðri stillingar hluta"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:321
msgctxt "tabletextflowpage|headline"
msgid "R_epeat heading"
msgstr "_Endurtaka fyrirsögn"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:383
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:343
msgctxt "tabletextflowpage|label38"
msgid "The first "
msgstr "Fyrstu"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:396
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:356
msgctxt "tabletextflowpage|label39"
msgid "rows"
msgstr "raðir"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:434
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:395
msgctxt "tabletextflowpage|label35"
msgid "Text Flow"
msgstr "Textaflæði"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:467
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:428
msgctxt "tabletextflowpage|label41"
msgid "_Vertical alignment"
msgstr "_Lóðrétt viðfang"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:495
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:442
+msgctxt "tabletextflowpage|liststore2"
+msgid "Top"
+msgstr "Efst"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:443
+msgctxt "tabletextflowpage|liststore2"
+msgid "Centered"
+msgstr "Miðjað"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:444
+msgctxt "tabletextflowpage|liststore2"
+msgid "Bottom"
+msgstr "Neðst"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:460
msgctxt "tabletextflowpage|label36"
msgid "Alignment"
msgstr "Jöfnun"
@@ -16876,8 +16883,8 @@ msgstr "Efni í stafrófsröð"
#: sw/uiconfig/swriter/ui/tocindexpage.ui:58
msgctxt "tocindexpage|liststore1"
-msgid "Illustration Index"
-msgstr "Myndaskrá"
+msgid "Table of Figures"
+msgstr ""
#: sw/uiconfig/swriter/ui/tocindexpage.ui:62
msgctxt "tocindexpage|liststore1"
@@ -17202,7 +17209,7 @@ msgstr "_Athugasemd"
#: sw/uiconfig/swriter/ui/viewoptionspage.ui:170
msgctxt "viewoptionspage|changestooltip"
msgid "_Tooltips on tracked changes"
-msgstr ""
+msgstr "Vísbendingar á rök_tum breytingum"
#: sw/uiconfig/swriter/ui/viewoptionspage.ui:190
msgctxt "viewoptionspage|displaylabel"
diff --git a/source/is/uui/messages.po b/source/is/uui/messages.po
index ea559a264d1..6eefae2f6e8 100644
--- a/source/is/uui/messages.po
+++ b/source/is/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: 2018-05-22 13:16+0200\n"
-"PO-Revision-Date: 2017-10-12 16:20+0000\n"
+"PO-Revision-Date: 2018-05-29 15:02+0000\n"
"Last-Translator: Sveinn í Felli <sv1@fellsnet.is>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: is\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1507825212.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1527606138.000000\n"
#: uui/inc/ids.hrc:27
msgctxt "RID_UUI_ERRHDL"
@@ -58,6 +58,13 @@ msgid ""
"\n"
"Are you certain that this file is a legacy document created many years ago?"
msgstr ""
+"Aðvörun!\n"
+"\n"
+"Þú ert í þann mund að fara að hlaða inn mjög óvenjulegri tegund af skrá ($(ARG2)) frá þessari vefslóð:\n"
+"\n"
+"$(ARG1)\n"
+"\n"
+"Ertu viss um að þetta sé bara gömul tegund af skjali sem hafi verið útbúin fyrir mörgum árum?"
#: uui/inc/ids.hrc:39
msgctxt "RID_UUI_ERRHDL"
@@ -504,6 +511,9 @@ msgid ""
"\n"
"Open document read-only, or ignore own file locking and open the document for editing."
msgstr ""
+"Skjal '$(ARG1)' er læst fyrir breytingum af þér á annarri tölvu síðan $(ARG2)\n"
+"\n"
+"Opnaðu skjalið í lesham, eða hunsaðu skráarlásinn og opnaðu skjalið fyrir breytingar."
#: uui/inc/strings.hrc:35
msgctxt "STR_ALREADYOPEN_READONLY_BTN"
@@ -522,6 +532,9 @@ msgid ""
"\n"
"Close document on other system and retry saving or ignore own file locking and save current document."
msgstr ""
+"Skjal '$(ARG1)' er læst fyrir breytingum af þér á annarri tölvu síðan $(ARG2)\n"
+"\n"
+"Lokaðu skjalinu á hinni tölvunni og reyndu að vista aftur eða hunsaðu skráarlásinn og vistaðu skjalið."
#: uui/inc/strings.hrc:38
msgctxt "STR_ALREADYOPEN_RETRY_SAVE_BTN"
@@ -579,11 +592,18 @@ msgid ""
"\n"
"$(ARG3)"
msgstr ""
+"Skjalið '$(ARG1)' er breytingalæst af:\n"
+"\n"
+"$(ARG2)\n"
+"\n"
+"Opna skjalið skrifvarið eða opna afrit af skjalinu til að vinna með.\n"
+"\n"
+" $(ARG3)"
#: uui/inc/strings.hrc:51
msgctxt "STR_OPENLOCKED_ALLOWIGNORE_MSG"
msgid "You may also ignore the file locking and open the document for editing."
-msgstr ""
+msgstr "Þú gætir reynt að hunsa læsingu skrárinnar og opnað fyrirliggjandi skjal til að breyta því."
#: uui/inc/strings.hrc:52
msgctxt "STR_OPENLOCKED_OPENREADONLY_BTN"
@@ -612,6 +632,9 @@ msgid ""
"\n"
"Do you want to save anyway?"
msgstr ""
+"Skránni hefur verið breytt frá því að þú opnaðir skjalið í %PRODUCTNAME. Ef þú vistar skjalið muntu skrifa yfir breytingar sem hafa verið gerðar af öðrum.\n"
+"\n"
+"Viltu samt halda áfram og vista?"
#: uui/inc/strings.hrc:58
msgctxt "STR_FILECHANGED_SAVEANYWAY_BTN"
@@ -632,6 +655,11 @@ msgid ""
"\n"
"Try again later to save document or save a copy of that document."
msgstr ""
+"Skjalið '$(ARG1)' er læst fyrir breytingum af:\n"
+"\n"
+"$(ARG2)\n"
+"\n"
+"Reyndu seinna að vista skjalið eða vistaðu afrit af þessu skjali."
#: uui/inc/strings.hrc:62
msgctxt "STR_OVERWRITE_IGNORELOCK_MSG"
@@ -642,6 +670,11 @@ msgid ""
"\n"
"You may try to ignore the file locking and overwrite the existing document."
msgstr ""
+"Skjalið '$(ARG1)' er breytingalæst af:\n"
+"\n"
+"$(ARG2)\n"
+"\n"
+"Þú gætir reynt að hunsa læsingu skrárinnar og skrifað yfir fyrirliggjandi skjal."
#: uui/inc/strings.hrc:63
msgctxt "STR_TRYLATER_RETRYSAVING_BTN"
@@ -814,6 +847,9 @@ msgid ""
"\n"
"Macros may contain viruses. Disabling macros for a document is always safe. If you disable macros you may lose functionality provided by the document macros."
msgstr ""
+"Skjalið inniheldur fjölva (macros).\n"
+"\n"
+"Fjölvar geta innihaldið vírusa. Að gera fjölva í skjölum óvirka er alltaf öruggast. Ef þú gerir fjölva óvirka gætirðu misst af einhverri virkni í skjali sem fjölvar sjá um að framkvæma."
#: uui/uiconfig/ui/macrowarnmedium.ui:28
msgctxt "macrowarnmedium|cancel"
diff --git a/source/is/vcl/messages.po b/source/is/vcl/messages.po
index 56941261df6..fd055d76e2d 100644
--- a/source/is/vcl/messages.po
+++ b/source/is/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: 2018-05-08 15:10+0200\n"
-"PO-Revision-Date: 2018-04-25 13:21+0000\n"
+"PO-Revision-Date: 2018-05-29 14:29+0000\n"
"Last-Translator: Sveinn í Felli <sv1@fellsnet.is>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: is\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1524662515.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1527604161.000000\n"
#. To translators: This is the first entry of a sequence of paper size names
#: vcl/inc/print.hrc:28
@@ -1239,7 +1239,7 @@ msgstr "Uppsetning á síðu"
#: vcl/uiconfig/ui/printdialog.ui:1457
msgctxt "printdialog|singleprintjob"
msgid "Create separate print jobs for collated output"
-msgstr ""
+msgstr "Búa til aðskilin prentverk fyrir samhangandi úttak"
#: vcl/uiconfig/ui/printdialog.ui:1472
msgctxt "printdialog|printpaperfromsetup"
diff --git a/source/is/writerperfect/messages.po b/source/is/writerperfect/messages.po
index f229c0e40f4..47d96699c7f 100644
--- a/source/is/writerperfect/messages.po
+++ b/source/is/writerperfect/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: 2018-05-16 16:54+0200\n"
-"PO-Revision-Date: 2018-04-25 13:23+0000\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
+"PO-Revision-Date: 2018-05-29 14:28+0000\n"
"Last-Translator: Sveinn í Felli <sv1@fellsnet.is>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: is\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1524662611.000000\n"
+"X-POOTLE-MTIME: 1527604105.000000\n"
#: writerperfect/inc/strings.hrc:15
msgctxt "STR_ENCODING_DIALOG_TITLE"
@@ -24,7 +24,7 @@ msgstr "Flytja inn skrá"
#: writerperfect/inc/strings.hrc:16
msgctxt "STR_ENCODING_DIALOG_TITLE_MSMULTIPLAN"
msgid "Import MS Multiplan for DOS file"
-msgstr ""
+msgstr "Flytja inn MS Multiplan fyrir DOS skrá"
#: writerperfect/inc/strings.hrc:17
msgctxt "STR_ENCODING_DIALOG_TITLE_MSWORKS"
@@ -66,97 +66,97 @@ msgctxt "exportepub|generalft"
msgid "General"
msgstr "Almennt"
-#: writerperfect/uiconfig/ui/exportepub.ui:122
+#: writerperfect/uiconfig/ui/exportepub.ui:121
msgctxt "exportepub|versionft"
msgid "Version:"
msgstr "Útgáfa:"
-#: writerperfect/uiconfig/ui/exportepub.ui:139
+#: writerperfect/uiconfig/ui/exportepub.ui:138
msgctxt "exportepub|epub3"
msgid "EPUB 3.0"
msgstr "EPUB 3.0"
-#: writerperfect/uiconfig/ui/exportepub.ui:140
+#: writerperfect/uiconfig/ui/exportepub.ui:139
msgctxt "exportepub|epub2"
msgid "EPUB 2.0"
msgstr "EPUB 2.0"
-#: writerperfect/uiconfig/ui/exportepub.ui:175
+#: writerperfect/uiconfig/ui/exportepub.ui:174
msgctxt "exportepub|splitft"
msgid "Split method:"
msgstr "Uppskiptiaðferð:"
-#: writerperfect/uiconfig/ui/exportepub.ui:192
+#: writerperfect/uiconfig/ui/exportepub.ui:191
msgctxt "exportepub|splitpage"
msgid "Page break"
msgstr "Síðuskil"
-#: writerperfect/uiconfig/ui/exportepub.ui:193
+#: writerperfect/uiconfig/ui/exportepub.ui:192
msgctxt "exportepub|splitheading"
msgid "Heading"
msgstr "Fyrirsögn"
-#: writerperfect/uiconfig/ui/exportepub.ui:228
+#: writerperfect/uiconfig/ui/exportepub.ui:227
msgctxt "exportepub|layoutft"
msgid "Layout method:"
msgstr "Framsetningaraðferð:"
-#: writerperfect/uiconfig/ui/exportepub.ui:245
+#: writerperfect/uiconfig/ui/exportepub.ui:244
msgctxt "exportepub|layoutreflowable"
msgid "Reflowable"
msgstr "Endurflæðanlegt"
-#: writerperfect/uiconfig/ui/exportepub.ui:246
+#: writerperfect/uiconfig/ui/exportepub.ui:245
msgctxt "exportepub|layoutfixed"
msgid "Fixed"
msgstr "Fast"
-#: writerperfect/uiconfig/ui/exportepub.ui:281
+#: writerperfect/uiconfig/ui/exportepub.ui:280
msgctxt "exportepub|coverimageft"
msgid "Custom cover image:"
msgstr "Sérsniðin kápumynd:"
-#: writerperfect/uiconfig/ui/exportepub.ui:311
+#: writerperfect/uiconfig/ui/exportepub.ui:310
msgctxt "exportepub|coverbutton"
msgid "Browse..."
msgstr "Velja..."
-#: writerperfect/uiconfig/ui/exportepub.ui:355
+#: writerperfect/uiconfig/ui/exportepub.ui:354
msgctxt "exportepub|mediadirft"
msgid "Custom media directory:"
-msgstr ""
+msgstr "Sérsniðin mappa undir gagnamiðla:"
-#: writerperfect/uiconfig/ui/exportepub.ui:385
+#: writerperfect/uiconfig/ui/exportepub.ui:384
msgctxt "exportepub|mediabutton"
msgid "Browse..."
msgstr "Velja..."
-#: writerperfect/uiconfig/ui/exportepub.ui:429
+#: writerperfect/uiconfig/ui/exportepub.ui:428
msgctxt "exportepub|metadataft"
msgid "Metadata"
msgstr "Lýsigögn"
-#: writerperfect/uiconfig/ui/exportepub.ui:470
+#: writerperfect/uiconfig/ui/exportepub.ui:468
msgctxt "exportepub|identifierft"
msgid "Identifier:"
msgstr "Auðkenni:"
-#: writerperfect/uiconfig/ui/exportepub.ui:485
+#: writerperfect/uiconfig/ui/exportepub.ui:483
msgctxt "exportepub|titleft"
msgid "Title:"
msgstr "Titill:"
-#: writerperfect/uiconfig/ui/exportepub.ui:511
+#: writerperfect/uiconfig/ui/exportepub.ui:509
msgctxt "exportepub|authorft"
msgid "Author:"
msgstr "Höfundur:"
-#: writerperfect/uiconfig/ui/exportepub.ui:537
+#: writerperfect/uiconfig/ui/exportepub.ui:535
msgctxt "exportepub|languageft"
msgid "Language:"
msgstr "Tungumál:"
-#: writerperfect/uiconfig/ui/exportepub.ui:563
+#: writerperfect/uiconfig/ui/exportepub.ui:561
msgctxt "exportepub|dateft"
msgid "Date:"
msgstr "Dagsetning:"
diff --git a/source/is/xmlsecurity/messages.po b/source/is/xmlsecurity/messages.po
index 1d15ab7f815..c399a05c3b6 100644
--- a/source/is/xmlsecurity/messages.po
+++ b/source/is/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: 2018-05-22 13:17+0200\n"
-"PO-Revision-Date: 2018-04-25 13:21+0000\n"
+"PO-Revision-Date: 2018-05-29 14:27+0000\n"
"Last-Translator: Sveinn í Felli <sv1@fellsnet.is>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: is\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1524662477.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1527604041.000000\n"
#: xmlsecurity/inc/strings.hrc:25
msgctxt "STR_CERTIFICATE_NOT_VALIDATED"
@@ -460,7 +460,7 @@ msgstr "Undirritun"
#: xmlsecurity/uiconfig/ui/selectcertificatedialog.ui:194
msgctxt "selectcertificatedialog|str_selectsign"
msgid "Select"
-msgstr ""
+msgstr "Velja"
#: xmlsecurity/uiconfig/ui/selectcertificatedialog.ui:199
msgctxt "selectcertificatedialog|str_encrypt"
diff --git a/source/it/cui/messages.po b/source/it/cui/messages.po
index 9d33e5ac86b..f4466efb2ac 100644
--- a/source/it/cui/messages.po
+++ b/source/it/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: 2018-05-22 13:16+0200\n"
-"PO-Revision-Date: 2018-05-01 09:02+0000\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
+"PO-Revision-Date: 2018-05-24 12:20+0000\n"
"Last-Translator: Valter Mura <valtermura@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: it\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1525165344.000000\n"
+"X-POOTLE-MTIME: 1527164401.000000\n"
#: cui/inc/personalization.hrc:31
msgctxt "RID_SVXSTR_PERSONA_CATEGORIES"
@@ -400,7 +400,7 @@ msgstr "Rimuovi dai Preferiti"
#: cui/inc/strings.hrc:100
msgctxt "RID_SVXSTR_MISSING_GLYPH"
msgid "Missing Glyph"
-msgstr ""
+msgstr "Glifi mancanti"
#: cui/inc/strings.hrc:101
msgctxt "RID_SVXSTR_ADD_FAVORITES"
@@ -6538,12 +6538,12 @@ msgstr "_Sposta..."
#: cui/uiconfig/ui/menuassignpage.ui:51
msgctxt "menuassignpage|gear_iconAndText"
msgid "_Icon and text"
-msgstr ""
+msgstr "_Icona e testo"
#: cui/uiconfig/ui/menuassignpage.ui:59
msgctxt "menuassignpage|gear_iconOnly"
msgid "Icon _only"
-msgstr ""
+msgstr "S_olo icona"
#: cui/uiconfig/ui/menuassignpage.ui:67
msgctxt "menuassignpage|gear_textOnly"
@@ -6563,7 +6563,7 @@ msgstr "La guida locale non è installata."
#: cui/uiconfig/ui/menuassignpage.ui:157
msgctxt "menuassignpage|label33"
msgid "D_escription"
-msgstr ""
+msgstr "D_escrizione"
#: cui/uiconfig/ui/menuassignpage.ui:191
msgctxt "menuassignpage|contentslabel"
@@ -6638,12 +6638,12 @@ msgstr "Sposta in basso"
#: cui/uiconfig/ui/menuassignpage.ui:550
msgctxt "menuassignpage|scopelabel"
msgid "S_cope"
-msgstr ""
+msgstr "A_mbito"
#: cui/uiconfig/ui/menuassignpage.ui:563
msgctxt "menuassignpage|targetlabel"
msgid "_Target"
-msgstr ""
+msgstr "_Destinazione"
#: cui/uiconfig/ui/menuassignpage.ui:576
msgctxt "menuassignpage|functionlabel"
@@ -9872,97 +9872,97 @@ msgctxt "positionsizedialog|PositionAndSizeDialog"
msgid "Position and Size"
msgstr "Posizione e dimensione"
-#: cui/uiconfig/ui/positionsizedialog.ui:107
+#: cui/uiconfig/ui/positionsizedialog.ui:136
msgctxt "positionsizedialog|RID_SVXPAGE_POSITION_SIZE"
msgid "Position and Size"
msgstr "Posizione e dimensione"
-#: cui/uiconfig/ui/positionsizedialog.ui:129
+#: cui/uiconfig/ui/positionsizedialog.ui:182
msgctxt "positionsizedialog|RID_SVXPAGE_SWPOSSIZE"
msgid "Position and Size"
msgstr "Posizione e dimensione"
-#: cui/uiconfig/ui/positionsizedialog.ui:152
+#: cui/uiconfig/ui/positionsizedialog.ui:229
msgctxt "positionsizedialog|RID_SVXPAGE_ANGLE"
msgid "Rotation"
msgstr "Rotazione"
-#: cui/uiconfig/ui/positionsizedialog.ui:175
+#: cui/uiconfig/ui/positionsizedialog.ui:276
msgctxt "positionsizedialog|RID_SVXPAGE_SLANT"
msgid "Slant & Corner Radius"
msgstr "Raggio d'inclinazione e rotazione"
-#: cui/uiconfig/ui/possizetabpage.ui:40
+#: cui/uiconfig/ui/possizetabpage.ui:61
msgctxt "possizetabpage|FT_POS_X"
msgid "Position _X:"
msgstr "Posizione _X:"
-#: cui/uiconfig/ui/possizetabpage.ui:56
+#: cui/uiconfig/ui/possizetabpage.ui:75
msgctxt "possizetabpage|FT_POS_Y"
msgid "Position _Y:"
msgstr "Posizione _Y:"
-#: cui/uiconfig/ui/possizetabpage.ui:110
+#: cui/uiconfig/ui/possizetabpage.ui:128
msgctxt "possizetabpage|FT_POSREFERENCE"
msgid "_Base point:"
msgstr "Punto _base:"
-#: cui/uiconfig/ui/possizetabpage.ui:148
+#: cui/uiconfig/ui/possizetabpage.ui:182
msgctxt "possizetabpage|label1"
msgid "Position"
msgstr "Posizione"
-#: cui/uiconfig/ui/possizetabpage.ui:190
+#: cui/uiconfig/ui/possizetabpage.ui:224
msgctxt "possizetabpage|FT_WIDTH"
msgid "Wi_dth:"
msgstr "_Larghezza:"
-#: cui/uiconfig/ui/possizetabpage.ui:206
+#: cui/uiconfig/ui/possizetabpage.ui:238
msgctxt "possizetabpage|FT_HEIGHT"
msgid "H_eight:"
msgstr "_Altezza:"
-#: cui/uiconfig/ui/possizetabpage.ui:247
+#: cui/uiconfig/ui/possizetabpage.ui:276
msgctxt "possizetabpage|CBX_SCALE"
msgid "_Keep ratio"
msgstr "_Mantieni rapporto"
-#: cui/uiconfig/ui/possizetabpage.ui:279
+#: cui/uiconfig/ui/possizetabpage.ui:307
msgctxt "possizetabpage|FT_SIZEREFERENCE"
msgid "Base _point:"
msgstr "_Punto base:"
-#: cui/uiconfig/ui/possizetabpage.ui:317
+#: cui/uiconfig/ui/possizetabpage.ui:361
msgctxt "possizetabpage|label2"
msgid "Size"
msgstr "Dimensione"
-#: cui/uiconfig/ui/possizetabpage.ui:356
+#: cui/uiconfig/ui/possizetabpage.ui:401
msgctxt "possizetabpage|TSB_POSPROTECT"
msgid "Positio_n"
msgstr "_Posizione"
-#: cui/uiconfig/ui/possizetabpage.ui:373
+#: cui/uiconfig/ui/possizetabpage.ui:418
msgctxt "possizetabpage|TSB_SIZEPROTECT"
msgid "_Size"
msgstr "_Dimensione"
-#: cui/uiconfig/ui/possizetabpage.ui:397
+#: cui/uiconfig/ui/possizetabpage.ui:441
msgctxt "possizetabpage|label3"
msgid "Protect"
msgstr "Proteggi"
-#: cui/uiconfig/ui/possizetabpage.ui:430
+#: cui/uiconfig/ui/possizetabpage.ui:475
msgctxt "possizetabpage|TSB_AUTOGROW_WIDTH"
msgid "_Fit width to text"
msgstr "Adatta _larghezza al testo"
-#: cui/uiconfig/ui/possizetabpage.ui:447
+#: cui/uiconfig/ui/possizetabpage.ui:492
msgctxt "possizetabpage|TSB_AUTOGROW_HEIGHT"
msgid "Fit _height to text"
msgstr "Adatta _altezza al testo"
-#: cui/uiconfig/ui/possizetabpage.ui:471
+#: cui/uiconfig/ui/possizetabpage.ui:515
msgctxt "possizetabpage|label4"
msgid "Adapt"
msgstr "Adatta"
@@ -10162,47 +10162,47 @@ msgctxt "recordnumberdialog|label2"
msgid "go to record"
msgstr "Vai al record di dati"
-#: cui/uiconfig/ui/rotationtabpage.ui:52
+#: cui/uiconfig/ui/rotationtabpage.ui:56
msgctxt "rotationtabpage|FT_POS_X"
msgid "Position _X:"
msgstr "Posizione _X:"
-#: cui/uiconfig/ui/rotationtabpage.ui:66
+#: cui/uiconfig/ui/rotationtabpage.ui:70
msgctxt "rotationtabpage|FT_POS_Y"
msgid "Position _Y:"
msgstr "Posizione _Y:"
-#: cui/uiconfig/ui/rotationtabpage.ui:116
+#: cui/uiconfig/ui/rotationtabpage.ui:123
msgctxt "rotationtabpage|FT_POSPRESETS"
msgid "_Default settings:"
msgstr "Impostazioni pre_definite:"
-#: cui/uiconfig/ui/rotationtabpage.ui:130
+#: cui/uiconfig/ui/rotationtabpage.ui:151
msgctxt "rotationtabpage|CTL_RECT|tooltip_text"
msgid "Rotation point"
msgstr "Punto di rotazione"
-#: cui/uiconfig/ui/rotationtabpage.ui:155
+#: cui/uiconfig/ui/rotationtabpage.ui:178
msgctxt "rotationtabpage|label1"
msgid "Pivot Point"
msgstr "Punto pivot"
-#: cui/uiconfig/ui/rotationtabpage.ui:197
+#: cui/uiconfig/ui/rotationtabpage.ui:220
msgctxt "rotationtabpage|FT_ANGLE"
msgid "_Angle:"
msgstr "_Angolo:"
-#: cui/uiconfig/ui/rotationtabpage.ui:238
+#: cui/uiconfig/ui/rotationtabpage.ui:263
msgctxt "rotationtabpage|FT_ANGLEPRESETS"
msgid "Default _settings:"
msgstr "Impo_stazioni predefinite:"
-#: cui/uiconfig/ui/rotationtabpage.ui:252
+#: cui/uiconfig/ui/rotationtabpage.ui:287
msgctxt "rotationtabpage|CTL_ANGLE|tooltip_text"
msgid "Rotation Angle"
msgstr "Angolo di rotazione"
-#: cui/uiconfig/ui/rotationtabpage.ui:277
+#: cui/uiconfig/ui/rotationtabpage.ui:314
msgctxt "rotationtabpage|label2"
msgid "Rotation Angle"
msgstr "Angolo di rotazione"
@@ -10455,7 +10455,7 @@ msgstr ""
#: cui/uiconfig/ui/signatureline.ui:111
msgctxt "signatureline|edit_name"
msgid "John Doe"
-msgstr ""
+msgstr "Mario Rossi"
#: cui/uiconfig/ui/signatureline.ui:124
msgctxt "signatureline|edit_title"
@@ -10465,7 +10465,7 @@ msgstr ""
#: cui/uiconfig/ui/signatureline.ui:137
msgctxt "signatureline|edit_email"
msgid "john.doe@example.org"
-msgstr ""
+msgstr "mario.rossi@esempio.org"
#. Suggested Signer Name
#: cui/uiconfig/ui/signatureline.ui:149
@@ -10582,52 +10582,52 @@ msgctxt "similaritysearchdialog|relaxbox"
msgid "_Combine"
msgstr "_Combina"
-#: cui/uiconfig/ui/slantcornertabpage.ui:50
+#: cui/uiconfig/ui/slantcornertabpage.ui:70
msgctxt "slantcornertabpage|label5"
msgid "_X:"
msgstr "_X:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:88
+#: cui/uiconfig/ui/slantcornertabpage.ui:110
msgctxt "slantcornertabpage|label6"
msgid "_Y:"
msgstr "_Y:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:125
+#: cui/uiconfig/ui/slantcornertabpage.ui:149
msgctxt "slantcornertabpage|label3"
msgid "Control Point 1"
msgstr "Punto di controllo 1"
-#: cui/uiconfig/ui/slantcornertabpage.ui:159
+#: cui/uiconfig/ui/slantcornertabpage.ui:183
msgctxt "slantcornertabpage|FT_RADIUS"
msgid "_Radius:"
msgstr "_Raggio:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:189
+#: cui/uiconfig/ui/slantcornertabpage.ui:214
msgctxt "slantcornertabpage|label1"
msgid "Corner Radius"
msgstr "Raggio d'angolo"
-#: cui/uiconfig/ui/slantcornertabpage.ui:223
+#: cui/uiconfig/ui/slantcornertabpage.ui:248
msgctxt "slantcornertabpage|FT_ANGLE"
msgid "_Angle:"
msgstr "_Angolo:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:253
+#: cui/uiconfig/ui/slantcornertabpage.ui:279
msgctxt "slantcornertabpage|label2"
msgid "Slant"
msgstr "Inclina"
-#: cui/uiconfig/ui/slantcornertabpage.ui:294
+#: cui/uiconfig/ui/slantcornertabpage.ui:320
msgctxt "slantcornertabpage|label4"
msgid "_X:"
msgstr "_X:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:332
+#: cui/uiconfig/ui/slantcornertabpage.ui:360
msgctxt "slantcornertabpage|label7"
msgid "_Y:"
msgstr "_Y:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:369
+#: cui/uiconfig/ui/slantcornertabpage.ui:399
msgctxt "slantcornertabpage|label8"
msgid "Control Point 2"
msgstr "Punto di controllo 2"
@@ -10907,112 +10907,112 @@ msgctxt "storedwebconnectiondialog|change"
msgid "_Change Password..."
msgstr "_Cambia password..."
-#: cui/uiconfig/ui/swpossizepage.ui:74
+#: cui/uiconfig/ui/swpossizepage.ui:85
msgctxt "swpossizepage|widthft"
msgid "_Width:"
msgstr "_Larghezza:"
-#: cui/uiconfig/ui/swpossizepage.ui:111
+#: cui/uiconfig/ui/swpossizepage.ui:123
msgctxt "swpossizepage|heightft"
msgid "H_eight:"
msgstr "_Altezza:"
-#: cui/uiconfig/ui/swpossizepage.ui:128
+#: cui/uiconfig/ui/swpossizepage.ui:141
msgctxt "swpossizepage|ratio"
msgid "_Keep ratio"
msgstr "_Mantieni rapporto"
-#: cui/uiconfig/ui/swpossizepage.ui:149
+#: cui/uiconfig/ui/swpossizepage.ui:162
msgctxt "swpossizepage|label2"
msgid "Size"
msgstr "Dimensione"
-#: cui/uiconfig/ui/swpossizepage.ui:205
+#: cui/uiconfig/ui/swpossizepage.ui:218
msgctxt "swpossizepage|topage"
msgid "To _page"
msgstr "Alla _pagina"
-#: cui/uiconfig/ui/swpossizepage.ui:222
+#: cui/uiconfig/ui/swpossizepage.ui:234
msgctxt "swpossizepage|topara"
msgid "To paragrap_h"
msgstr "Al para_grafo"
-#: cui/uiconfig/ui/swpossizepage.ui:238
+#: cui/uiconfig/ui/swpossizepage.ui:250
msgctxt "swpossizepage|tochar"
msgid "To cha_racter"
msgstr "Al _carattere"
-#: cui/uiconfig/ui/swpossizepage.ui:254
+#: cui/uiconfig/ui/swpossizepage.ui:266
msgctxt "swpossizepage|aschar"
msgid "_As character"
msgstr "Co_me carattere"
-#: cui/uiconfig/ui/swpossizepage.ui:270
+#: cui/uiconfig/ui/swpossizepage.ui:282
msgctxt "swpossizepage|toframe"
msgid "To _frame"
msgstr "Alla c_ornice"
-#: cui/uiconfig/ui/swpossizepage.ui:292
+#: cui/uiconfig/ui/swpossizepage.ui:304
msgctxt "swpossizepage|label1"
msgid "Anchor"
msgstr "Ancoraggio"
-#: cui/uiconfig/ui/swpossizepage.ui:333
+#: cui/uiconfig/ui/swpossizepage.ui:344
msgctxt "swpossizepage|horiposft"
msgid "Hori_zontal:"
msgstr "Ori_zzontale:"
-#: cui/uiconfig/ui/swpossizepage.ui:347
+#: cui/uiconfig/ui/swpossizepage.ui:358
msgctxt "swpossizepage|horibyft"
msgid "b_y:"
msgstr "d_a:"
-#: cui/uiconfig/ui/swpossizepage.ui:361
+#: cui/uiconfig/ui/swpossizepage.ui:372
msgctxt "swpossizepage|vertbyft"
msgid "_by:"
msgstr "_da:"
-#: cui/uiconfig/ui/swpossizepage.ui:375
+#: cui/uiconfig/ui/swpossizepage.ui:386
msgctxt "swpossizepage|horitoft"
msgid "_to:"
msgstr "_a:"
-#: cui/uiconfig/ui/swpossizepage.ui:421
+#: cui/uiconfig/ui/swpossizepage.ui:433
msgctxt "swpossizepage|vertposft"
msgid "_Vertical:"
msgstr "_Verticale:"
-#: cui/uiconfig/ui/swpossizepage.ui:457
+#: cui/uiconfig/ui/swpossizepage.ui:470
msgctxt "swpossizepage|verttoft"
msgid "t_o:"
msgstr "_a:"
-#: cui/uiconfig/ui/swpossizepage.ui:478
+#: cui/uiconfig/ui/swpossizepage.ui:492
msgctxt "swpossizepage|mirror"
msgid "_Mirror on even pages"
msgstr "_Rispecchia su pagine pari"
-#: cui/uiconfig/ui/swpossizepage.ui:495
+#: cui/uiconfig/ui/swpossizepage.ui:509
msgctxt "swpossizepage|followtextflow"
msgid "Follow te_xt flow"
msgstr "Segui il flusso di te_sto"
-#: cui/uiconfig/ui/swpossizepage.ui:518
+#: cui/uiconfig/ui/swpossizepage.ui:532
msgctxt "swpossizepage|label11"
msgid "Position"
msgstr "Posizione"
-#: cui/uiconfig/ui/swpossizepage.ui:549
+#: cui/uiconfig/ui/swpossizepage.ui:563
msgctxt "swpossizepage|pos"
msgid "Positio_n"
msgstr "_Posizione"
-#: cui/uiconfig/ui/swpossizepage.ui:565
+#: cui/uiconfig/ui/swpossizepage.ui:579
msgctxt "swpossizepage|size"
msgid "_Size"
msgstr "_Dimensione"
-#: cui/uiconfig/ui/swpossizepage.ui:587
+#: cui/uiconfig/ui/swpossizepage.ui:601
msgctxt "swpossizepage|label3"
msgid "Protect"
msgstr "Proteggi"
@@ -11202,12 +11202,12 @@ msgctxt "textattrtabpage|label2"
msgid "Spacing to Borders"
msgstr "Distanza dalla cornice"
-#: cui/uiconfig/ui/textattrtabpage.ui:425
+#: cui/uiconfig/ui/textattrtabpage.ui:423
msgctxt "textattrtabpage|TSB_FULL_WIDTH"
msgid "Full _width"
msgstr "Lar_ghezza intera"
-#: cui/uiconfig/ui/textattrtabpage.ui:448
+#: cui/uiconfig/ui/textattrtabpage.ui:446
msgctxt "textattrtabpage|label3"
msgid "Text Anchor"
msgstr "Ancoraggio testo"
diff --git a/source/it/filter/source/config/fragments/filters.po b/source/it/filter/source/config/fragments/filters.po
index 8cd8a91251e..d7b99d2b05f 100644
--- a/source/it/filter/source/config/fragments/filters.po
+++ b/source/it/filter/source/config/fragments/filters.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-16 16:54+0200\n"
-"PO-Revision-Date: 2018-05-01 09:08+0000\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
+"PO-Revision-Date: 2018-06-06 11:52+0000\n"
"Last-Translator: Valter Mura <valtermura@gmail.com>\n"
"Language-Team: Italian <l10n@it.libreoffice.org>\n"
"Language: it\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1525165706.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1528285938.000000\n"
#: ADO_rowset_XML.xcu
msgctxt ""
@@ -392,7 +392,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Excel 97–2003"
-msgstr ""
+msgstr "Excel 97–2003"
#: MS_Excel_97_Vorlage_Template.xcu
msgctxt ""
@@ -401,7 +401,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Excel 97–2003 Template"
-msgstr ""
+msgstr "Modello di Excel 97–2003"
#: MS_Multiplan.xcu
msgctxt ""
@@ -410,7 +410,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Microsoft Multiplan"
-msgstr ""
+msgstr "Microsoft Multiplan"
#: MS_PowerPoint_97.xcu
msgctxt ""
@@ -419,7 +419,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "PowerPoint 97–2003"
-msgstr ""
+msgstr "PowerPoint 97–2003"
#: MS_PowerPoint_97_AutoPlay.xcu
msgctxt ""
@@ -437,7 +437,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "PowerPoint 97–2003 Template"
-msgstr ""
+msgstr "Modello di PowerPoint 97-2003"
#: MS_WinWord_5.xcu
msgctxt ""
@@ -463,8 +463,8 @@ msgctxt ""
"MS Word 2003 XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Word 2003 XML"
-msgstr "Microsoft Word 2003 XML"
+msgid "Word 2003 XML"
+msgstr ""
#: MS_Word_2007_XML.xcu
msgctxt ""
@@ -473,7 +473,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Word 2007–2019"
-msgstr ""
+msgstr "Word 2007–2019"
#: MS_Word_2007_XML_Template.xcu
msgctxt ""
@@ -518,7 +518,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Word 97–2003"
-msgstr ""
+msgstr "Word 97–2003"
#: MS_Word_97_Vorlage.xcu
msgctxt ""
@@ -1282,8 +1282,8 @@ msgctxt ""
"Calc MS Excel 2007 VBA XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Excel 2007-2016 XML (macro enabled)"
-msgstr "Microsoft Excel 2007-2016 XML (abilitato per le macro)"
+msgid "Excel 2007–2019 (macro-enabled)"
+msgstr ""
#: calc_MS_Excel_2007_XML.xcu
msgctxt ""
@@ -1292,7 +1292,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Excel 2007–2019"
-msgstr ""
+msgstr "Excel 2007–2019"
#: calc_MS_Excel_2007_XML_Template.xcu
msgctxt ""
@@ -1571,7 +1571,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "PowerPoint 2007–2019"
-msgstr ""
+msgstr "PowerPoint 2007–2019"
#: impress_MS_PowerPoint_2007_XML_AutoPlay.xcu
msgctxt ""
diff --git a/source/it/filter/source/config/fragments/types.po b/source/it/filter/source/config/fragments/types.po
index 961aa19b1aa..71a134b0051 100644
--- a/source/it/filter/source/config/fragments/types.po
+++ b/source/it/filter/source/config/fragments/types.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-08 15:11+0200\n"
-"PO-Revision-Date: 2017-10-07 15:40+0000\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
+"PO-Revision-Date: 2018-05-24 12:31+0000\n"
"Last-Translator: Valter Mura <valtermura@gmail.com>\n"
"Language-Team: Italian <l10n@it.libreoffice.org>\n"
"Language: it\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1507390821.000000\n"
+"X-POOTLE-MTIME: 1527165119.000000\n"
#: MS_Excel_2007_Binary.xcu
msgctxt ""
@@ -41,7 +41,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Excel 2007–2019"
-msgstr ""
+msgstr "Excel 2007–2019"
#: MS_Excel_2007_XML_Template.xcu
msgctxt ""
@@ -59,7 +59,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "PowerPoint 2007–2019"
-msgstr ""
+msgstr "PowerPoint 2007–2019"
#: MS_PowerPoint_2007_XML_AutoPlay.xcu
msgctxt ""
@@ -68,7 +68,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "PowerPoint 2007–2019"
-msgstr ""
+msgstr "PowerPoint 2007–2019"
#: MS_PowerPoint_2007_XML_Template.xcu
msgctxt ""
@@ -292,8 +292,8 @@ msgctxt ""
"writer_MS_Word_2003_XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Word 2003 XML"
-msgstr "Microsoft Word 2003 XML"
+msgid "Word 2003 XML"
+msgstr ""
#: writer_MS_Word_2007_XML.xcu
msgctxt ""
@@ -302,7 +302,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Word 2007–2019"
-msgstr ""
+msgstr "Word 2007–2019"
#: writer_MS_Word_2007_XML_Template.xcu
msgctxt ""
diff --git a/source/it/fpicker/messages.po b/source/it/fpicker/messages.po
index 08db29891a9..04a9f718529 100644
--- a/source/it/fpicker/messages.po
+++ b/source/it/fpicker/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-22 13:16+0200\n"
-"PO-Revision-Date: 2017-12-11 13:39+0000\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
+"PO-Revision-Date: 2018-06-06 11:53+0000\n"
"Last-Translator: Valter Mura <valtermura@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: it\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1512999592.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1528286029.000000\n"
#: include/fpicker/strings.hrc:14
msgctxt "STR_SVT_FILEPICKER_AUTO_EXTENSION"
@@ -272,13 +272,13 @@ msgstr "Cifra con chiave GPG"
#: fpicker/uiconfig/ui/foldernamedialog.ui:8
msgctxt "foldernamedialog|FolderNameDialog"
-msgid "Folder Name ?"
-msgstr "Nome cartella?"
+msgid "Folder Name"
+msgstr "Nome cartella"
#: fpicker/uiconfig/ui/foldernamedialog.ui:91
msgctxt "foldernamedialog|label2"
-msgid "Na_me"
-msgstr "No_me"
+msgid "Na_me:"
+msgstr "No_me:"
#: fpicker/uiconfig/ui/foldernamedialog.ui:122
msgctxt "foldernamedialog|label1"
diff --git a/source/it/helpcontent2/source/auxiliary.po b/source/it/helpcontent2/source/auxiliary.po
index 80213dcb669..a4166c3da6c 100644
--- a/source/it/helpcontent2/source/auxiliary.po
+++ b/source/it/helpcontent2/source/auxiliary.po
@@ -4,8 +4,8 @@ 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: 2018-05-16 16:54+0200\n"
-"PO-Revision-Date: 2018-01-11 22:12+0000\n"
-"Last-Translator: Marina Latini <marina@studiostorti.com>\n"
+"PO-Revision-Date: 2018-06-11 12:17+0000\n"
+"Last-Translator: Valter Mura <valtermura@gmail.com>\n"
"Language-Team: Italian <l10n@it.libreoffice.org>\n"
"Language: it\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1515708751.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1528719448.000000\n"
#: sbasic.tree
msgctxt ""
@@ -46,7 +46,7 @@ msgctxt ""
"070202\n"
"node.text"
msgid "Functions, Statements, and Operators"
-msgstr ""
+msgstr "Funzioni, istruzioni e operatori"
#: sbasic.tree
msgctxt ""
@@ -342,7 +342,7 @@ msgctxt ""
"10071\n"
"node.text"
msgid "Digital Signatures"
-msgstr ""
+msgstr "Firme digitali"
#: shared.tree
msgctxt ""
diff --git a/source/it/helpcontent2/source/text/sbasic/guide.po b/source/it/helpcontent2/source/text/sbasic/guide.po
index c5ac12ceb67..e10d92ad22d 100644
--- a/source/it/helpcontent2/source/text/sbasic/guide.po
+++ b/source/it/helpcontent2/source/text/sbasic/guide.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: 2018-04-25 13:24+0200\n"
-"PO-Revision-Date: 2018-01-25 18:56+0000\n"
+"PO-Revision-Date: 2018-06-03 11:26+0000\n"
"Last-Translator: Valter Mura <valtermura@gmail.com>\n"
"Language-Team: Italian <l10n@it.libreoffice.org>\n"
"Language: it\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1516906563.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1528025171.000000\n"
#: access2base.xhp
msgctxt ""
@@ -46,7 +46,7 @@ msgctxt ""
"hd_idA2B003\n"
"help.text"
msgid "What is Access2Base?"
-msgstr ""
+msgstr "Che cos'è Access2Base?"
#: access2base.xhp
msgctxt ""
@@ -78,7 +78,7 @@ msgctxt ""
"par_idA2B007\n"
"help.text"
msgid "<emph>The library is documented online on </emph><link href=\"http://www.access2base.com\" name=\"http://www.access2base.com\"><emph>http://www.access2base.com</emph></link>."
-msgstr ""
+msgstr "<emph>La documentazione della libreria si trova in linea all'indirizzo </emph><link href=\"http://www.access2base.com\" name=\"http://www.access2base.com\"><emph>http://www.access2base.com</emph></link>."
#: access2base.xhp
msgctxt ""
@@ -94,7 +94,7 @@ msgctxt ""
"par_idA2B009\n"
"help.text"
msgid "a simplified and extensible API for <emph>forms</emph>, <emph>dialogs</emph> and <emph>controls</emph> manipulations similar with the Microsoft Access object model,"
-msgstr ""
+msgstr "un'API estensibile e semplificata per la manipolazione dei <emph>moduli</emph>, <emph>finestre di dialogo</emph> e <emph>campi di controllo</emph> simile al modello per gli oggetti di Microsoft Access,"
#: access2base.xhp
msgctxt ""
@@ -102,7 +102,7 @@ msgctxt ""
"par_idA2B010\n"
"help.text"
msgid "an API for database access with the <emph>table</emph>, <emph>query</emph>, <emph>recordset</emph> and <emph>field</emph> objects,"
-msgstr ""
+msgstr "un'API per l'accesso al database con oggetti <emph>tabella</emph>, <emph>ricerca</emph>, <emph>set di record</emph> e <emph>campo</emph>,"
#: access2base.xhp
msgctxt ""
@@ -110,7 +110,7 @@ msgctxt ""
"par_idA2B011\n"
"help.text"
msgid "a number of <emph>actions</emph> with a syntax identical to their corresponding Microsoft Access macros/actions,"
-msgstr ""
+msgstr "diverse <emph>azioni</emph> con sintassi identica alle corrispondenti azioni/macro di Microsoft Access,"
#: access2base.xhp
msgctxt ""
@@ -118,7 +118,7 @@ msgctxt ""
"par_idA2B012\n"
"help.text"
msgid "the <emph>DLookup</emph>, <emph>DSum</emph>, ... database functions,"
-msgstr ""
+msgstr "funzioni di database <emph>DLookup</emph>, <emph>DSum</emph>, e via discorrendo,"
#: access2base.xhp
msgctxt ""
@@ -142,7 +142,7 @@ msgctxt ""
"par_idA2B015\n"
"help.text"
msgid "a consistent errors and exceptions handler,"
-msgstr ""
+msgstr "un gestore coerente di eccezioni ed errori,"
#: access2base.xhp
msgctxt ""
@@ -150,7 +150,7 @@ msgctxt ""
"par_idA2B016\n"
"help.text"
msgid "facilities for programming form, dialog and control <emph>events</emph> and"
-msgstr ""
+msgstr "funzionalità per la programmazione di <emph>eventi</emph> per moduli, finestre di dialogo e campi di controllo e"
#: access2base.xhp
msgctxt ""
@@ -158,7 +158,7 @@ msgctxt ""
"par_idA2B017\n"
"help.text"
msgid "the support of both embedded forms and standalone (Writer) forms."
-msgstr ""
+msgstr "supporto di moduli incorporati e moduli (Writer) indipendenti."
#: access2base.xhp
msgctxt ""
@@ -694,7 +694,7 @@ msgctxt ""
"par_id7359233\n"
"help.text"
msgid "Click the <emph>Manage Languages</emph> icon<image id=\"img_id2526017\" src=\"cmd/sc_managelanguage.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id2526017\">Manage Language icon</alt></image> on the Language toolbar or on the Toolbox bar."
-msgstr ""
+msgstr "Fate clic sull'icona <emph>Gestisci lingua</emph><image id=\"img_id2526017\" src=\"cmd/sc_managelanguage.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id2526017\">Icona Gestisci lingua</alt></image> sulla barra degli strumenti Lingua o sulla barra della casella degli strumenti."
#: translation.xhp
msgctxt ""
diff --git a/source/it/helpcontent2/source/text/sbasic/shared.po b/source/it/helpcontent2/source/text/sbasic/shared.po
index 265bb5e5ada..b03b656d7a9 100644
--- a/source/it/helpcontent2/source/text/sbasic/shared.po
+++ b/source/it/helpcontent2/source/text/sbasic/shared.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: 2018-05-16 16:54+0200\n"
-"PO-Revision-Date: 2018-04-05 12:18+0000\n"
+"PO-Revision-Date: 2018-06-06 12:55+0000\n"
"Last-Translator: Valter Mura <valtermura@gmail.com>\n"
"Language-Team: Italian <l10n@it.libreoffice.org>\n"
"Language: it\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1522930689.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1528289724.000000\n"
#: 00000002.xhp
msgctxt ""
@@ -62,7 +62,7 @@ msgctxt ""
"par_id3153092\n"
"help.text"
msgid "The behavior has an effect on both the implicit conversion ( 1 + \"2.3\" = 3.3 ) as well as the function <link href=\"text/sbasic/shared/03102700.xhp\" name=\"IsNumeric\">IsNumeric</link>."
-msgstr ""
+msgstr "Questa impostazione ha effetto sia sulle conversioni implicite ( 1 + \"2,3\" = 3,3 ), sia sulla funzione <link href=\"text/sbasic/shared/03102700.xhp\" name=\"IsNumeric\">IsNumeric</link>."
#: 00000002.xhp
msgctxt ""
@@ -5670,7 +5670,7 @@ msgctxt ""
"par_id3155930\n"
"help.text"
msgid "<ahelp hid=\".\">Select \"Yes\" to prevent the user from editing the value of the current control. The control is enabled and can be focused but not modified.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Selezionare \"Sì\" per non consentire all'utente di modificare il valore del campo di controllo attivo. Il controllo è abilitato, può essere attivato ma non modificato.</ahelp>"
#: 01170101.xhp
msgctxt ""
@@ -6574,7 +6574,7 @@ msgctxt ""
"hd_id3154927\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03010101.xhp\">MsgBox Statement</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03010101.xhp\">Istruzione MsgBox</link>"
#: 03010101.xhp
msgctxt ""
@@ -6814,7 +6814,7 @@ msgctxt ""
"hd_id3153379\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03010102.xhp\" name=\"MsgBox Function\">MsgBox Function</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03010102.xhp\" name=\"Funzione MsgBox\">Funzione MsgBox</link>"
#: 03010102.xhp
msgctxt ""
@@ -7174,7 +7174,7 @@ msgctxt ""
"hd_id3147230\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03010103.xhp\" name=\"Print Statement\">Print Statement</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03010103.xhp\" name=\"Istruzione Print\">Istruzione Print</link>"
#: 03010103.xhp
msgctxt ""
@@ -7326,7 +7326,7 @@ msgctxt ""
"hd_id3148932\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03010201.xhp\" name=\"InputBox Function\">InputBox Function</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03010201.xhp\" name=\"Funzione InputBox\">Funzione InputBox</link>"
#: 03010201.xhp
msgctxt ""
@@ -7502,7 +7502,7 @@ msgctxt ""
"hd_id3149180\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03010301.xhp\" name=\"Blue Function\">Blue Function</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03010301.xhp\" name=\"Funzione Blue\">Funzione Blue</link>"
#: 03010301.xhp
msgctxt ""
@@ -7622,7 +7622,7 @@ msgctxt ""
"hd_id3148947\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03010302.xhp\" name=\"Green Function\">Green Function</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03010302.xhp\" name=\"Funzione Green\">Funzione Green</link>"
#: 03010302.xhp
msgctxt ""
@@ -7742,7 +7742,7 @@ msgctxt ""
"hd_id3148947\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03010303.xhp\" name=\"Red Function\">Red Function</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03010303.xhp\" name=\"Funzione Red\">Funzione Red</link>"
#: 03010303.xhp
msgctxt ""
@@ -7854,7 +7854,7 @@ msgctxt ""
"hd_id3149670\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03010304.xhp\" name=\"QBColor Function\">QBColor Function</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03010304.xhp\" name=\"Funzione QBColor\">Funzione QBColor</link>"
#: 03010304.xhp
msgctxt ""
@@ -8086,7 +8086,7 @@ msgctxt ""
"hd_id3150792\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03010305.xhp\" name=\"RGB Function\">RGB Function</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03010305.xhp\" name=\"Funzione RGB\">Funzione RGB</link>"
#: 03010305.xhp
msgctxt ""
@@ -8270,7 +8270,7 @@ msgctxt ""
"hd_id3157896\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03020101.xhp\" name=\"Close Statement\">Close Statement</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03020101.xhp\" name=\"Istruzione Close\">Istruzione Close</link>"
#: 03020101.xhp
msgctxt ""
@@ -8358,7 +8358,7 @@ msgctxt ""
"hd_id3150400\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03020102.xhp\" name=\"FreeFile Function\">FreeFile Function</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03020102.xhp\" name=\"Funzione FreeFile\">Funzione FreeFile</link>"
#: 03020102.xhp
msgctxt ""
@@ -8454,7 +8454,7 @@ msgctxt ""
"hd_id3150791\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03020103.xhp\" name=\"Open Statement\">Open Statement</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03020103.xhp\" name=\"Istruzione Open\">Istruzione Open</link>"
#: 03020103.xhp
msgctxt ""
@@ -8590,7 +8590,7 @@ msgctxt ""
"hd_id3154141\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03020104.xhp\">Reset Statement</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03020104.xhp\">Istruzione Reset</link>"
#: 03020104.xhp
msgctxt ""
@@ -8670,7 +8670,7 @@ msgctxt ""
"hd_id3154927\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03020201.xhp\">Get Statement</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03020201.xhp\">Istruzione Get</link>"
#: 03020201.xhp
msgctxt ""
@@ -8838,7 +8838,7 @@ msgctxt ""
"hd_id3154908\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03020202.xhp\" name=\"Input# Statement\">Input# Statement</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03020202.xhp\" name=\"Istruzione Input#\">Istruzione Input#</link>"
#: 03020202.xhp
msgctxt ""
@@ -8966,7 +8966,7 @@ msgctxt ""
"hd_id3153361\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03020203.xhp\" name=\"Line Input # Statement\">Line Input # Statement</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03020203.xhp\" name=\"Istruzione Line Input #\">Istruzione Line Input #</link>"
#: 03020203.xhp
msgctxt ""
@@ -9070,7 +9070,7 @@ msgctxt ""
"hd_id3150360\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03020204.xhp\" name=\"Put Statement\">Put Statement</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03020204.xhp\" name=\"Istruzione Put\">Istruzione Put</link>"
#: 03020204.xhp
msgctxt ""
@@ -9246,7 +9246,7 @@ msgctxt ""
"hd_id3147229\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03020205.xhp\" name=\"Write Statement\">Write Statement</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03020205.xhp\" name=\"Istruzione Write\">Istruzione Write</link>"
#: 03020205.xhp
msgctxt ""
@@ -9366,7 +9366,7 @@ msgctxt ""
"hd_id3154598\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03020301.xhp\" name=\"Eof Function\">Eof Function</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03020301.xhp\" name=\"Funzione Eof\">Funzione Eof</link>"
#: 03020301.xhp
msgctxt ""
@@ -9478,7 +9478,7 @@ msgctxt ""
"hd_id3148663\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03020302.xhp\" name=\"Loc Function\">Loc Function</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03020302.xhp\" name=\"Funzione Loc\">Funzione Loc</link>"
#: 03020302.xhp
msgctxt ""
@@ -9574,7 +9574,7 @@ msgctxt ""
"hd_id3156024\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03020303.xhp\" name=\"Lof Function\">Lof Function</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03020303.xhp\" name=\"Funzione Lof\">Funzione Lof</link>"
#: 03020303.xhp
msgctxt ""
@@ -9726,7 +9726,7 @@ msgctxt ""
"hd_id3154367\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03020304.xhp\" name=\"Seek Function\">Seek Function</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03020304.xhp\" name=\"Funzione Seek\">Funzione Seek</link>"
#: 03020304.xhp
msgctxt ""
@@ -9830,7 +9830,7 @@ msgctxt ""
"hd_id3159413\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03020305.xhp\" name=\"Seek Statement\">Seek Statement</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03020305.xhp\" name=\"Istruzione seek\">Istruzione seek</link>"
#: 03020305.xhp
msgctxt ""
@@ -9950,7 +9950,7 @@ msgctxt ""
"hd_id3150178\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03020401.xhp\" name=\"ChDir Statement\">ChDir Statement</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03020401.xhp\" name=\"Istruzione ChDir\">Istruzione ChDir</link>"
#: 03020401.xhp
msgctxt ""
@@ -9966,7 +9966,7 @@ msgctxt ""
"par_id9783013\n"
"help.text"
msgid "This statement currently does not work as documented. See <link href=\"https://bz.apache.org/ooo/show_bug.cgi?id=30692\">this issue</link> for more information."
-msgstr ""
+msgstr "Questa istruzione attualmente non funziona, come documentato. Per maggiori informazioni, consultare <link href=\"https://bz.apache.org/ooo/show_bug.cgi?id=30692\">questo problema</link>."
#: 03020401.xhp
msgctxt ""
@@ -10038,7 +10038,7 @@ msgctxt ""
"hd_id3145068\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03020402.xhp\" name=\"ChDrive Statement\">ChDrive Statement</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03020402.xhp\" name=\"Istruzione ChDrive\">Istruzione ChDrive</link>"
#: 03020402.xhp
msgctxt ""
@@ -10126,7 +10126,7 @@ msgctxt ""
"hd_id3153126\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03020403.xhp\">CurDir Function</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03020403.xhp\">Funzione CurDir</link>"
#: 03020403.xhp
msgctxt ""
@@ -10342,7 +10342,7 @@ msgctxt ""
"par_id3147348\n"
"help.text"
msgid "To return directories only, use the attribute parameter. The same applies if you want to determine the name of a volume (for example, a hard drive partition)."
-msgstr ""
+msgstr "Per restituire solo i nomi delle cartelle, usate il parametro dell'attributo. Lo stesso vale se volete determinare il nome di un volume (ad esempio, una partizione di un disco rigido)."
#: 03020404.xhp
msgctxt ""
@@ -10398,7 +10398,7 @@ msgctxt ""
"hd_id3153380\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03020405.xhp\" name=\"FileAttr Function\">FileAttr Function</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03020405.xhp\" name=\"Funzione FileAttr\">Funzione FileAttr</link>"
#: 03020405.xhp
msgctxt ""
@@ -10598,7 +10598,7 @@ msgctxt ""
"hd_id3154840\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03020406.xhp\" name=\"FileCopy Statement\">FileCopy Statement</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03020406.xhp\" name=\"Istruzione FileCopy\">Istruzione FileCopy</link>"
#: 03020406.xhp
msgctxt ""
@@ -10686,7 +10686,7 @@ msgctxt ""
"hd_id3153361\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03020407.xhp\" name=\"FileDateTime Function\">FileDateTime Function</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03020407.xhp\" name=\"Funzione FileDateTime\">Funzione FileDateTime</link>"
#: 03020407.xhp
msgctxt ""
@@ -10766,7 +10766,7 @@ msgctxt ""
"hd_id3153126\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03020408.xhp\" name=\"FileLen Function\">FileLen Function</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03020408.xhp\" name=\"Funzione FileLen\">Funzione FileLen</link>"
#: 03020408.xhp
msgctxt ""
@@ -10862,7 +10862,7 @@ msgctxt ""
"hd_id3150984\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03020409.xhp\" name=\"GetAttr Function\">GetAttr Function</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03020409.xhp\" name=\"Funzione GetAttr\">Funzione GetAttr</link>"
#: 03020409.xhp
msgctxt ""
@@ -11062,7 +11062,7 @@ msgctxt ""
"hd_id3153360\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03020410.xhp\" name=\"Kill Statement\">Kill Statement</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03020410.xhp\" name=\"Istruzione Kill\">Istruzione Kill</link>"
#: 03020410.xhp
msgctxt ""
@@ -11142,7 +11142,7 @@ msgctxt ""
"hd_id3156421\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03020411.xhp\" name=\"MkDir Statement\">MkDir Statement</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03020411.xhp\" name=\"Istruzione MkDir\">Istruzione MkDir</link>"
#: 03020411.xhp
msgctxt ""
@@ -11342,7 +11342,7 @@ msgctxt ""
"hd_id3143268\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03020412.xhp\" name=\"Name Statement\">Name Statement</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03020412.xhp\" name=\"Istruzione Name\">Istruzione Name</link>"
#: 03020412.xhp
msgctxt ""
@@ -11422,7 +11422,7 @@ msgctxt ""
"hd_id3148947\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03020413.xhp\" name=\"RmDir Statement\">RmDir Statement</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03020413.xhp\" name=\"Istruzione RmDir\">Istruzione RmDir</link>"
#: 03020413.xhp
msgctxt ""
@@ -11502,7 +11502,7 @@ msgctxt ""
"hd_id3147559\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03020414.xhp\" name=\"SetAttr Statement\">SetAttr Statement</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03020414.xhp\" name=\"Istruzione SetAttr\">Istruzione SetAttr</link>"
#: 03020414.xhp
msgctxt ""
@@ -11654,7 +11654,7 @@ msgctxt ""
"hd_id3148946\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03020415.xhp\" name=\"FileExists Function\">FileExists Function</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03020415.xhp\" name=\"Funzione FileExists\">Funzione FileExists</link>"
#: 03020415.xhp
msgctxt ""
@@ -11806,7 +11806,7 @@ msgctxt ""
"hd_id3157896\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03030101.xhp\" name=\"DateSerial Function\">DateSerial Function</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03030101.xhp\" name=\"Funzione DateSerial\">Funzione DateSerial</link>"
#: 03030101.xhp
msgctxt ""
@@ -11958,7 +11958,7 @@ msgctxt ""
"hd_id3156344\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03030102.xhp\" name=\"DateValue Function\">DateValue Function</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03030102.xhp\" name=\"Funzione DateValue\">Funzione DateValue</link>"
#: 03030102.xhp
msgctxt ""
@@ -12046,7 +12046,7 @@ msgctxt ""
"hd_id3153345\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03030103.xhp\" name=\"Day Function\">Day Function</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03030103.xhp\" name=\"Funzione Day\">Funzione Day</link>"
#: 03030103.xhp
msgctxt ""
@@ -12158,7 +12158,7 @@ msgctxt ""
"hd_id3153127\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03030104.xhp\" name=\"Month Function\">Month Function</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03030104.xhp\" name=\"Funzione Month\">Funzione Month</link>"
#: 03030104.xhp
msgctxt ""
@@ -12270,7 +12270,7 @@ msgctxt ""
"hd_id3153127\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03030105.xhp\" name=\"WeekDay Function\">WeekDay Function</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03030105.xhp\" name=\"Funzione WeekDay\">Funzione WeekDay</link>"
#: 03030105.xhp
msgctxt ""
@@ -12438,7 +12438,7 @@ msgctxt ""
"hd_id3148664\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03030106.xhp\" name=\"Year Function\">Year Function</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03030106.xhp\" name=\"Funzione Year\">Funzione Year</link>"
#: 03030106.xhp
msgctxt ""
@@ -12550,7 +12550,7 @@ msgctxt ""
"hd_id3150620\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03030107.xhp\" name=\"CDateToIso Function\">CDateToIso Function</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03030107.xhp\" name=\"Funzione CDateToIso\">Funzione CDateToIso</link>"
#: 03030107.xhp
msgctxt ""
@@ -12574,7 +12574,7 @@ msgctxt ""
"par_id3151099\n"
"help.text"
msgid "Years less than 100 and greater than 9999 are supported since %PRODUCTNAME 5.4."
-msgstr ""
+msgstr "Gli anni minori di 100 e maggiori di 9999 sono supportati a partire da %PRODUCTNAME 5.4."
#: 03030107.xhp
msgctxt ""
@@ -12662,7 +12662,7 @@ msgctxt ""
"hd_id3153127\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03030108.xhp\" name=\"CDateFromIso Function\">CDateFromIso Function</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03030108.xhp\" name=\"Funzione CDateFromIso\">Funzione CDateFromIso</link>"
#: 03030108.xhp
msgctxt ""
@@ -12694,7 +12694,7 @@ msgctxt ""
"par_id3148553\n"
"help.text"
msgid "When converting a date serial number to a printable string, for example for the Print or MsgBox command, the locale's default calendar is used and at that 1582-10-15 cutover date may switch to the Julian calendar, which can result in a different date being displayed than expected. Use the <link href=\"text/sbasic/shared/03030107.xhp\" name=\"CDateToIso Function\">CDateToIso Function</link> to convert such date number to a string representation in the proleptic Gregorian calendar."
-msgstr ""
+msgstr "Quando si converte un numero seriale di data in una stringa stampabile, per esempio per il comando Print o MsgBox, viene utilizzato il calendario predefinito delle impostazioni locali alla data di transizione 15-10-1582 potrebbe passare al calendario giuliano, il che genererebbe una visualizzazione di data diversa da quella che ci si attende. Usate la <link href=\"text/sbasic/shared/03030107.xhp\" name=\"Funzione CDateToIso\">funzione CDateToIso</link> per convertire tale numero di data in una rappresentazione di stringa nella versione del calendario gregoriano prolettico."
#: 03030108.xhp
msgctxt ""
@@ -12782,7 +12782,7 @@ msgctxt ""
"par_idN10548\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03030110.xhp\">DateAdd Function</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03030110.xhp\">Funzione DateAdd</link>"
#: 03030110.xhp
msgctxt ""
@@ -12838,7 +12838,7 @@ msgctxt ""
"par_idN10629\n"
"help.text"
msgid "<emph>Add</emph> - A string expression from the following table, specifying the date interval."
-msgstr ""
+msgstr "<emph>Incremento</emph> - Espressione stringa tratta dalla tabella seguente che specifica l'intervallo."
#: 03030110.xhp
msgctxt ""
@@ -13022,7 +13022,7 @@ msgctxt ""
"par_idN106C1\n"
"help.text"
msgid "<emph>Count</emph> - A numerical expression specifying how often the Add interval will be added (Count is positive) or subtracted (Count is negative)."
-msgstr ""
+msgstr "<emph>Conteggio</emph> - Un'espressione numerica che specifica quanto spesso deve essere aggiunto (il valore Conteggio è positivo) o sottratto (il valore Conteggio è negativo) l'intervallo Incremento."
#: 03030110.xhp
msgctxt ""
@@ -13030,7 +13030,7 @@ msgctxt ""
"par_idN106C4\n"
"help.text"
msgid "<emph>Date</emph> - A given date or the name of a Variant variable containing a date. The Add value will be added Count times to this value."
-msgstr ""
+msgstr "<emph>Data</emph> - Una data determinata o il nome di una variabile di tipo variante che contiene una data. Il valore Incremento viene aggiunto per il numero di volte indicato da Conteggio a questo valore."
#: 03030110.xhp
msgctxt ""
@@ -13062,7 +13062,7 @@ msgctxt ""
"hd_id3150620\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03030111.xhp\" name=\"CDateToUnoDate Function\">CDateToUnoDate Function</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03030111.xhp\" name=\"Funzione CDateToUnoDate\">Funzione CDateToUnoDate</link>"
#: 03030111.xhp
msgctxt ""
@@ -13150,7 +13150,7 @@ msgctxt ""
"hd_id3150620\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03030112.xhp\" name=\"CDateFromUnoDate Function\">CDateFromUnoDate Function</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03030112.xhp\" name=\"Funzione CDateFromUnoDate\">Funzione CDateFromUnoDate</link>"
#: 03030112.xhp
msgctxt ""
@@ -13238,7 +13238,7 @@ msgctxt ""
"hd_id3150620\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03030113.xhp\" name=\"CDateToUnoTime Function\">CDateToUnoTime Function</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03030113.xhp\" name=\"Funzione CDateToUnoTime\">Funzione CDateToUnoTime</link>"
#: 03030113.xhp
msgctxt ""
@@ -13326,7 +13326,7 @@ msgctxt ""
"hd_id3150620\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03030114.xhp\" name=\"CDateFromUnoTime Function\">CDateFromUnoTime Function</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03030114.xhp\" name=\"Funzione CDateFromUnoTime\">Funzione CDateFromUnoTime</link>"
#: 03030114.xhp
msgctxt ""
@@ -13414,7 +13414,7 @@ msgctxt ""
"hd_id3150620\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03030115.xhp\" name=\"CDateToUnoDateTime Function\">CDateToUnoDateTime Function</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03030115.xhp\" name=\"Funzione CDateToUnoDateTime\">Funzione CDateToUnoDateTime</link>"
#: 03030115.xhp
msgctxt ""
@@ -13502,7 +13502,7 @@ msgctxt ""
"hd_id3150620\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03030116.xhp\" name=\"CDateFromUnoDateTime Function\">CDateFromUnoDateTime Function</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03030116.xhp\" name=\"Funzione CDateFromUnoDateTime\">Funzione CDateFromUnoDateTime</link>"
#: 03030116.xhp
msgctxt ""
@@ -13590,7 +13590,7 @@ msgctxt ""
"par_idN10542\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03030120.xhp\">DateDiff Function</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03030120.xhp\">Funzione DateDiff</link>"
#: 03030120.xhp
msgctxt ""
@@ -13926,7 +13926,7 @@ msgctxt ""
"par_idN10542\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03030130.xhp\">DatePart Function</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03030130.xhp\">Funzione DatePart</link>"
#: 03030130.xhp
msgctxt ""
@@ -14046,7 +14046,7 @@ msgctxt ""
"hd_id3156042\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03030201.xhp\" name=\"Hour Function\">Hour Function</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03030201.xhp\" name=\"Funzione Hour\">Funzione Hour</link>"
#: 03030201.xhp
msgctxt ""
@@ -14174,7 +14174,7 @@ msgctxt ""
"hd_id3155419\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03030202.xhp\" name=\"Minute Function\">Minute Function</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03030202.xhp\" name=\"Funzione Minute\">Funzione Minute</link>"
#: 03030202.xhp
msgctxt ""
@@ -14374,7 +14374,7 @@ msgctxt ""
"hd_id3153346\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03030204.xhp\" name=\"Second Function\">Second Function</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03030204.xhp\" name=\"Funzione Second\">Funzione Second</link>"
#: 03030204.xhp
msgctxt ""
@@ -14494,7 +14494,7 @@ msgctxt ""
"hd_id3143271\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03030205.xhp\" name=\"TimeSerial Function\">TimeSerial Function</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03030205.xhp\" name=\"Funzione TimeSerial\">Funzione TimeSerial</link>"
#: 03030205.xhp
msgctxt ""
@@ -14678,7 +14678,7 @@ msgctxt ""
"hd_id3149670\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03030206.xhp\" name=\"TimeValue Function\">TimeValue Function</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03030206.xhp\" name=\"Funzione TimeValue\">Funzione TimeValue</link>"
#: 03030206.xhp
msgctxt ""
@@ -14846,7 +14846,7 @@ msgctxt ""
"hd_id3156027\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03030301.xhp\" name=\"Date Statement\">Date Statement</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03030301.xhp\" name=\"Istruzione Date\">Istruzione Date</link>"
#: 03030301.xhp
msgctxt ""
@@ -14926,7 +14926,7 @@ msgctxt ""
"hd_id3145090\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03030302.xhp\">Time Statement</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03030302.xhp\">Istruzione Time</link>"
#: 03030302.xhp
msgctxt ""
@@ -14998,7 +14998,7 @@ msgctxt ""
"hd_id3149346\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03030303.xhp\" name=\"Timer Function\">Timer Function</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03030303.xhp\" name=\"Funzione Timer\">Funzione Timer</link>"
#: 03030303.xhp
msgctxt ""
@@ -15302,7 +15302,7 @@ msgctxt ""
"par_id61512319163913\n"
"help.text"
msgid "\\x0A (10) for other 64-bit systems"
-msgstr ""
+msgstr "\\x0A (10) per altri sistemi a 64 bit"
#: 03040000.xhp
msgctxt ""
@@ -15390,7 +15390,7 @@ msgctxt ""
"hd_id3157896\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03050100.xhp\" name=\"Erl Function\">Erl Function</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03050100.xhp\" name=\"Funzione Erl\">Funzione Erl</link>"
#: 03050100.xhp
msgctxt ""
@@ -15494,7 +15494,7 @@ msgctxt ""
"hd_id3156343\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03050200.xhp\" name=\"Err Function\">Err Function</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03050200.xhp\" name=\"Funzione Err\">Funzione Err</link>"
#: 03050200.xhp
msgctxt ""
@@ -15598,7 +15598,7 @@ msgctxt ""
"hd_id3159413\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03050300.xhp\" name=\"Error Function\">Error Function</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03050300.xhp\" name=\"Funzione Error\">Funzione Error</link>"
#: 03050300.xhp
msgctxt ""
@@ -15686,7 +15686,7 @@ msgctxt ""
"hd_id3146795\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03050500.xhp\" name=\"On Error GoTo ... Resume Statement\">On Error GoTo ... Resume Statement</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03050500.xhp\" name=\"Istruzione On Error GoTo ... Resume\">Istruzione On Error GoTo ... Resume</link>"
#: 03050500.xhp
msgctxt ""
@@ -15822,7 +15822,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "AND Operator"
-msgstr ""
+msgstr "Operatore AND"
#: 03060100.xhp
msgctxt ""
@@ -15838,7 +15838,7 @@ msgctxt ""
"hd_id3146117\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03060100.xhp\" name=\"AND Operator\">AND Operator</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03060100.xhp\" name=\"Operatore AND\">Operatore AND</link>"
#: 03060100.xhp
msgctxt ""
@@ -15982,7 +15982,7 @@ msgctxt ""
"hd_id3156344\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03060200.xhp\" name=\"Eqv Operator\">Eqv Operator</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03060200.xhp\" name=\"Operatore Eqv\">Operatore Eqv</link>"
#: 03060200.xhp
msgctxt ""
@@ -16118,7 +16118,7 @@ msgctxt ""
"hd_id3156024\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03060300.xhp\" name=\"Imp Operator\">Imp Operator</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03060300.xhp\" name=\"Operatore Imp\">Operatore Imp</link>"
#: 03060300.xhp
msgctxt ""
@@ -16254,7 +16254,7 @@ msgctxt ""
"hd_id3156024\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03060400.xhp\" name=\"Not Operator\">Not Operator</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03060400.xhp\" name=\"Operatore Not\">Operatore Not</link>"
#: 03060400.xhp
msgctxt ""
@@ -16366,7 +16366,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Or Operator"
-msgstr ""
+msgstr "Operatore OR"
#: 03060500.xhp
msgctxt ""
@@ -16382,7 +16382,7 @@ msgctxt ""
"hd_id3150986\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03060500.xhp\" name=\"Or Operator\">Or Operator</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03060500.xhp\" name=\"Operatore Or\">Operatore Or</link>"
#: 03060500.xhp
msgctxt ""
@@ -16462,7 +16462,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "XOR Operator"
-msgstr ""
+msgstr "Operatore XOR"
#: 03060600.xhp
msgctxt ""
@@ -16478,7 +16478,7 @@ msgctxt ""
"hd_id3156024\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03060600.xhp\" name=\"XOR Operator\">XOR Operator</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03060600.xhp\" name=\"Operatore XOR\">Operatore XOR</link>"
#: 03060600.xhp
msgctxt ""
@@ -16646,7 +16646,7 @@ msgctxt ""
"hd_id3156042\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03070100.xhp\">\"-\" Operator</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03070100.xhp\">Operatore \"-\"</link>"
#: 03070100.xhp
msgctxt ""
@@ -16726,7 +16726,7 @@ msgctxt ""
"hd_id3147573\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03070200.xhp\">\"*\" Operator</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03070200.xhp\">Operatore \"*\"</link>"
#: 03070200.xhp
msgctxt ""
@@ -16806,7 +16806,7 @@ msgctxt ""
"hd_id3145316\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03070300.xhp\">\"+\" Operator</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03070300.xhp\">Operatore \"+\"</link>"
#: 03070300.xhp
msgctxt ""
@@ -16886,7 +16886,7 @@ msgctxt ""
"hd_id3150669\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03070400.xhp\">\"/\" Operator</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03070400.xhp\">Operatore \"/\"</link>"
#: 03070400.xhp
msgctxt ""
@@ -16966,7 +16966,7 @@ msgctxt ""
"hd_id3145315\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03070500.xhp\">\"^\" Operator</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03070500.xhp\">Operatore \"^\"</link>"
#: 03070500.xhp
msgctxt ""
@@ -17062,7 +17062,7 @@ msgctxt ""
"hd_id3150669\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03070600.xhp\" name=\"Mod Operator\">Mod Operator</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03070600.xhp\" name=\"Operatore Mod\">Operatore Mod</link>"
#: 03070600.xhp
msgctxt ""
@@ -17254,7 +17254,7 @@ msgctxt ""
"hd_id3150616\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03080101.xhp\" name=\"Atn Function\">Atn Function</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03080101.xhp\" name=\"Funzione Atn\">Funzione Atn</link>"
#: 03080101.xhp
msgctxt ""
@@ -17622,7 +17622,7 @@ msgctxt ""
"hd_id3153896\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03080103.xhp\" name=\"Sin Function\">Sin Function</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03080103.xhp\" name=\"Funzione Sin\">Funzione Sin</link>"
#: 03080103.xhp
msgctxt ""
@@ -17806,7 +17806,7 @@ msgctxt ""
"hd_id3148550\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03080104.xhp\" name=\"Tan Function\">Tan Function</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03080104.xhp\" name=\"Funzione Tan\">Funzione Tan</link>"
#: 03080104.xhp
msgctxt ""
@@ -18110,7 +18110,7 @@ msgctxt ""
"hd_id3149416\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03080202.xhp\" name=\"Log Function\">Log Function</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03080202.xhp\" name=\"Funzione Log\">Funzione Log</link>"
#: 03080202.xhp
msgctxt ""
@@ -18254,7 +18254,7 @@ msgctxt ""
"hd_id3150616\n"
"help.text"
msgid "<variable id=\"heading_randomize\"><link href=\"text/sbasic/shared/03080301.xhp\" name=\"Randomize Statement\">Randomize Statement</link></variable>"
-msgstr ""
+msgstr "<variable id=\"heading_randomize\"><link href=\"text/sbasic/shared/03080301.xhp\" name=\"Istruzione Randomize\">Istruzione Randomize</link></variable>"
#: 03080301.xhp
msgctxt ""
@@ -18358,7 +18358,7 @@ msgctxt ""
"hd_id3148685\n"
"help.text"
msgid "<variable id=\"heading_rnd\"><link href=\"text/sbasic/shared/03080302.xhp\" name=\"Rnd Function\">Rnd Function</link></variable>"
-msgstr ""
+msgstr "<variable id=\"heading_rnd\"><link href=\"text/sbasic/shared/03080302.xhp\" name=\"Funzione Rnd\">Funzione Rnd</link></variable>"
#: 03080302.xhp
msgctxt ""
@@ -18510,7 +18510,7 @@ msgctxt ""
"hd_id3156027\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03080401.xhp\" name=\"Sqr Function\">Sqr Function</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03080401.xhp\" name=\"Funzione Sqr\">Funzione Sqr</link>"
#: 03080401.xhp
msgctxt ""
@@ -18630,7 +18630,7 @@ msgctxt ""
"hd_id3159201\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03080501.xhp\" name=\"Fix Function\">Fix Function</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03080501.xhp\" name=\"Funzione Fix\">Funzione Fix</link>"
#: 03080501.xhp
msgctxt ""
@@ -18742,7 +18742,7 @@ msgctxt ""
"hd_id3153345\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03080502.xhp\" name=\"Int Function\">Int Function</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03080502.xhp\" name=\"Funzione Int\">Funzione Int</link>"
#: 03080502.xhp
msgctxt ""
@@ -18878,7 +18878,7 @@ msgctxt ""
"hd_id3159201\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03080601.xhp\" name=\"Abs Function\">Abs Function</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03080601.xhp\" name=\"Funzione Abs\">Funzione Abs</link>"
#: 03080601.xhp
msgctxt ""
@@ -19022,7 +19022,7 @@ msgctxt ""
"hd_id3148474\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03080701.xhp\" name=\"Sgn Function\">Sgn Function</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03080701.xhp\" name=\"Funzione Sgn\">Funzione Sgn</link>"
#: 03080701.xhp
msgctxt ""
@@ -19214,7 +19214,7 @@ msgctxt ""
"hd_id3150616\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03080801.xhp\" name=\"Hex Function\">Hex Function</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03080801.xhp\" name=\"Funzione Hex\">Funzione Hex</link>"
#: 03080801.xhp
msgctxt ""
@@ -19326,7 +19326,7 @@ msgctxt ""
"hd_id3155420\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03080802.xhp\" name=\"Oct Function\">Oct Function</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03080802.xhp\" name=\"Funzione Oct\">Funzione Oct</link>"
#: 03080802.xhp
msgctxt ""
@@ -19454,7 +19454,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "If...Then...Else Statement"
-msgstr ""
+msgstr "Istruzione If... Then... Else"
#: 03090101.xhp
msgctxt ""
@@ -19470,7 +19470,7 @@ msgctxt ""
"hd_id3154422\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03090101.xhp\" name=\"If...Then...Else Statement\">If...Then...Else Statement</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03090101.xhp\" name=\"Istruzione If...Then...Else\">Istruzione If...Then...Else</link>"
#: 03090101.xhp
msgctxt ""
@@ -19614,7 +19614,7 @@ msgctxt ""
"hd_id3149416\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03090102.xhp\" name=\"Select...Case Statement\">Select...Case Statement</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03090102.xhp\" name=\"Istruzione Select...Case\">Istruzione Select...Case</link>"
#: 03090102.xhp
msgctxt ""
@@ -19726,7 +19726,7 @@ msgctxt ""
"hd_id3155420\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03090103.xhp\" name=\"IIf Statement\">IIf Statement</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03090103.xhp\" name=\"Istruzione IIf\">Istruzione IIf</link>"
#: 03090103.xhp
msgctxt ""
@@ -19822,7 +19822,7 @@ msgctxt ""
"hd_id3156116\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03090201.xhp\" name=\"Do...Loop Statement\">Do...Loop Statement</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03090201.xhp\" name=\"Istruzione Do...Loop\">Istruzione Do...Loop</link>"
#: 03090201.xhp
msgctxt ""
@@ -20174,7 +20174,7 @@ msgctxt ""
"hd_id3149205\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03090202.xhp\" name=\"For...Next Statement\">For...Next Statement</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03090202.xhp\" name=\"Istruzione For...Next\">Istruzione For...Next</link>"
#: 03090202.xhp
msgctxt ""
@@ -20470,7 +20470,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "While...Wend Statement"
-msgstr ""
+msgstr "Istruzione While... Wend"
#: 03090203.xhp
msgctxt ""
@@ -20486,7 +20486,7 @@ msgctxt ""
"hd_id3150400\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03090203.xhp\" name=\"While...Wend Statement\">While...Wend Statement</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03090203.xhp\" name=\"Istruzione While...Wend\">Istruzione While...Wend</link>"
#: 03090203.xhp
msgctxt ""
@@ -20646,7 +20646,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "GoSub...Return Statement"
-msgstr ""
+msgstr "Istruzione GoSub...Return"
#: 03090301.xhp
msgctxt ""
@@ -20662,7 +20662,7 @@ msgctxt ""
"hd_id3147242\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03090301.xhp\" name=\"GoSub...Return Statement\">GoSub...Return Statement</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03090301.xhp\" name=\"Istruzione GoSub...Return\">Istruzione GoSub...Return</link>"
#: 03090301.xhp
msgctxt ""
@@ -20862,7 +20862,7 @@ msgctxt ""
"hd_id3159413\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03090302.xhp\" name=\"GoTo Statement\">GoTo Statement</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03090302.xhp\" name=\"Istruzione GoTo\">Istruzione GoTo</link>"
#: 03090302.xhp
msgctxt ""
@@ -20990,7 +20990,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "On...GoSub Statement; On...GoTo Statement"
-msgstr ""
+msgstr "Istruzione On...GoSub; Istruzione On...GoTo"
#: 03090303.xhp
msgctxt ""
@@ -21006,7 +21006,7 @@ msgctxt ""
"hd_id3153897\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03090303.xhp\" name=\"On...GoSub Statement; On...GoTo Statement\">On...GoSub Statement; On...GoTo Statement</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03090303.xhp\" name=\"Istruzione On...GoSub; Istruzione On...GoTo\">Istruzione On...GoSub; Istruzione On...GoTo</link>"
#: 03090303.xhp
msgctxt ""
@@ -21134,7 +21134,7 @@ msgctxt ""
"par_id3154923\n"
"help.text"
msgid "Statements that do not belong to any of the other categories are described here."
-msgstr ""
+msgstr "In questa sezione sono descritte le istruzioni che non appartengono alle altre categorie."
#: 03090401.xhp
msgctxt ""
@@ -21158,7 +21158,7 @@ msgctxt ""
"hd_id3154422\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03090401.xhp\" name=\"Call Statement\">Call Statement</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03090401.xhp\" name=\"Istruzione Call\">Istruzione Call</link>"
#: 03090401.xhp
msgctxt ""
@@ -21246,7 +21246,7 @@ msgctxt ""
"hd_id3143271\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03090402.xhp\" name=\"Choose Function\">Choose Function</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03090402.xhp\" name=\"Funzione Choose\">Funzione Choose</link>"
#: 03090402.xhp
msgctxt ""
@@ -21358,7 +21358,7 @@ msgctxt ""
"hd_id3148473\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03090403.xhp\" name=\"Declare Statement\">Declare Statement</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03090403.xhp\" name=\"Istruzione Declare\">Istruzione Declare</link>"
#: 03090403.xhp
msgctxt ""
@@ -21486,7 +21486,7 @@ msgctxt ""
"hd_id3150771\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03090404.xhp\" name=\"End Statement\">End Statement</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03090404.xhp\" name=\"Istruzione End\">Istruzione End</link>"
#: 03090404.xhp
msgctxt ""
@@ -21630,7 +21630,7 @@ msgctxt ""
"hd_id3143270\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03090405.xhp\" name=\"FreeLibrary Function\">FreeLibrary Function</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03090405.xhp\" name=\"Funzione FreeLibrary\">Funzione FreeLibrary</link>"
#: 03090405.xhp
msgctxt ""
@@ -21710,7 +21710,7 @@ msgctxt ""
"hd_id3153346\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03090406.xhp\" name=\"Function Statement\">Function Statement</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03090406.xhp\" name=\"Istruzione Function\">Istruzione Function</link>"
#: 03090406.xhp
msgctxt ""
@@ -21886,7 +21886,7 @@ msgctxt ""
"hd_id3154347\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03090407.xhp\" name=\"Rem Statement\">Rem Statement</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03090407.xhp\" name=\"Istruzione Rem\">Istruzione Rem</link>"
#: 03090407.xhp
msgctxt ""
@@ -21982,7 +21982,7 @@ msgctxt ""
"hd_id3153311\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03090408.xhp\" name=\"Stop Statement\">Stop Statement</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03090408.xhp\" name=\"Istruzione Stop\">Istruzione Stop</link>"
#: 03090408.xhp
msgctxt ""
@@ -22030,7 +22030,7 @@ msgctxt ""
"hd_id3147226\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03090409.xhp\" name=\"Sub Statement\">Sub Statement</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03090409.xhp\" name=\"Istruzione Sub\">Istruzione Sub</link>"
#: 03090409.xhp
msgctxt ""
@@ -22070,7 +22070,7 @@ msgctxt ""
"par_id3150792\n"
"help.text"
msgid "<emph>Name:</emph> Name of the subroutine."
-msgstr ""
+msgstr "<emph>Nome:</emph> nome della subroutine."
#: 03090409.xhp
msgctxt ""
@@ -22078,7 +22078,7 @@ msgctxt ""
"par_id3154138\n"
"help.text"
msgid "<emph>VarName:</emph> Parameter that you want to pass to the subroutine."
-msgstr ""
+msgstr "<emph>Nome Var:</emph> parametro da passare alla subroutine."
#: 03090409.xhp
msgctxt ""
@@ -22126,7 +22126,7 @@ msgctxt ""
"hd_id3148554\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03090410.xhp\" name=\"Switch Function\">Switch Function</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03090410.xhp\" name=\"Funzione Switch\">Funzione Switch</link>"
#: 03090410.xhp
msgctxt ""
@@ -22238,7 +22238,7 @@ msgctxt ""
"hd_id3153311\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03090411.xhp\" name=\"With Statement\">With Statement</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03090411.xhp\" name=\"Istruzione With\">Istruzione With</link>"
#: 03090411.xhp
msgctxt ""
@@ -22294,7 +22294,7 @@ msgctxt ""
"hd_id3152924\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03090412.xhp\" name=\"Exit Statement\">Exit Statement</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03090412.xhp\" name=\"Istruzione Exit\">Istruzione Exit</link>"
#: 03090412.xhp
msgctxt ""
@@ -22462,7 +22462,7 @@ msgctxt ""
"hd_id3153311\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03090413.xhp\" name=\"Type Statement\">Type Statement</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03090413.xhp\" name=\"Istruzione Type\">Istruzione Type</link>"
#: 03090413.xhp
msgctxt ""
@@ -22534,7 +22534,7 @@ msgctxt ""
"par_idN10541\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03100050.xhp\">CCur Function</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03100050.xhp\">Funzione CCur</link>"
#: 03100050.xhp
msgctxt ""
@@ -22614,7 +22614,7 @@ msgctxt ""
"par_idN10548\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03100060.xhp\">CDec Function</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03100060.xhp\">Funzione CDec</link>"
#: 03100060.xhp
msgctxt ""
@@ -22694,7 +22694,7 @@ msgctxt ""
"par_idN1054B\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03100070.xhp\">CVar Function</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03100070.xhp\">Funzione CVar</link>"
#: 03100070.xhp
msgctxt ""
@@ -22774,7 +22774,7 @@ msgctxt ""
"par_idN1054B\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03100080.xhp\">CVErr Function</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03100080.xhp\">Funzione CVErr</link>"
#: 03100080.xhp
msgctxt ""
@@ -22854,7 +22854,7 @@ msgctxt ""
"hd_id3150616\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03100100.xhp\" name=\"CBool Function\">CBool Function</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03100100.xhp\" name=\"Funzione CBool\">Funzione CBool</link>"
#: 03100100.xhp
msgctxt ""
@@ -23014,7 +23014,7 @@ msgctxt ""
"hd_id3150772\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03100300.xhp\" name=\"CDate Function\">CDate Function</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03100300.xhp\" name=\"Funzione CDate\">Funzione CDate</link>"
#: 03100300.xhp
msgctxt ""
@@ -23110,7 +23110,7 @@ msgctxt ""
"hd_id3153750\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03100400.xhp\" name=\"CDbl Function\">CDbl Function</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03100400.xhp\" name=\"Funzione CDbl\">Funzione CDbl</link>"
#: 03100400.xhp
msgctxt ""
@@ -23198,7 +23198,7 @@ msgctxt ""
"hd_id3149346\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03100500.xhp\" name=\"CInt Function\">CInt Function</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03100500.xhp\" name=\"Funzione CInt\">Funzione CInt</link>"
#: 03100500.xhp
msgctxt ""
@@ -23286,7 +23286,7 @@ msgctxt ""
"hd_id3153311\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03100600.xhp\" name=\"CLng Function\">CLng Function</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03100600.xhp\" name=\"Funzione CLng\">Funzione CLng</link>"
#: 03100600.xhp
msgctxt ""
@@ -23374,7 +23374,7 @@ msgctxt ""
"hd_id3146958\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03100700.xhp\" name=\"Const Statement\">Const Statement</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03100700.xhp\" name=\"Istruzione Const\">Istruzione Const</link>"
#: 03100700.xhp
msgctxt ""
@@ -23478,7 +23478,7 @@ msgctxt ""
"hd_id3153753\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03100900.xhp\" name=\"CSng Function\">CSng Function</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03100900.xhp\" name=\"Funzione CSng\">Funzione CSng</link>"
#: 03100900.xhp
msgctxt ""
@@ -23566,7 +23566,7 @@ msgctxt ""
"hd_id3146958\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03101000.xhp\" name=\"CStr Function\">CStr Function</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03101000.xhp\" name=\"Funzione CStr\">Funzione CStr</link>"
#: 03101000.xhp
msgctxt ""
@@ -23750,7 +23750,7 @@ msgctxt ""
"hd_id3145759\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03101100.xhp\" name=\"DefBool Statement\">DefBool Statement</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03101100.xhp\" name=\"Istruzione DefBool\">Istruzione DefBool</link>"
#: 03101100.xhp
msgctxt ""
@@ -23862,7 +23862,7 @@ msgctxt ""
"par_idN1057D\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03101110.xhp\">DefCur Statement</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03101110.xhp\">Istruzione DefCur</link>"
#: 03101110.xhp
msgctxt ""
@@ -23886,7 +23886,7 @@ msgctxt ""
"par_idN105D9\n"
"help.text"
msgid "cCur=Currency ' cCur is an implicit currency variable."
-msgstr ""
+msgstr "cCur=Currency ' cCur è una variabile di valuta implicita."
#: 03101120.xhp
msgctxt ""
@@ -23910,7 +23910,7 @@ msgctxt ""
"par_idN1057D\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03101120.xhp\">DefErr Statement</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03101120.xhp\">Istruzione DefErr</link>"
#: 03101120.xhp
msgctxt ""
@@ -23958,7 +23958,7 @@ msgctxt ""
"par_idN10577\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03101130.xhp\">DefSng Statement</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03101130.xhp\">Istruzione DefSng</link>"
#: 03101130.xhp
msgctxt ""
@@ -24006,7 +24006,7 @@ msgctxt ""
"par_idN10577\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03101140.xhp\">DefStr Statement</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03101140.xhp\">Istruzione DefStr</link>"
#: 03101140.xhp
msgctxt ""
@@ -24054,7 +24054,7 @@ msgctxt ""
"hd_id3150504\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03101300.xhp\" name=\"DefDate Statement\">DefDate Statement</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03101300.xhp\" name=\"Istruzione DefDate\">Istruzione DefDate</link>"
#: 03101300.xhp
msgctxt ""
@@ -24102,7 +24102,7 @@ msgctxt ""
"hd_id3147242\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03101400.xhp\" name=\"DefDbl Statement\">DefDbl Statement</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03101400.xhp\" name=\"Istruzione DefDbl\">Istruzione DefDbl</link>"
#: 03101400.xhp
msgctxt ""
@@ -24150,7 +24150,7 @@ msgctxt ""
"hd_id3149811\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03101500.xhp\" name=\"DefInt Statement\">DefInt Statement</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03101500.xhp\" name=\"Istruzione DefInt\">Istruzione DefInt</link>"
#: 03101500.xhp
msgctxt ""
@@ -24198,7 +24198,7 @@ msgctxt ""
"hd_id3148538\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03101600.xhp\" name=\"DefLng Statement\">DefLng Statement</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03101600.xhp\" name=\"Istruzione DefLng\">Istruzione DefLng</link>"
#: 03101600.xhp
msgctxt ""
@@ -24246,7 +24246,7 @@ msgctxt ""
"hd_id3149811\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03101700.xhp\" name=\"DefObj Statement\">DefObj Statement</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03101700.xhp\" name=\"Istruzione DefObj\">Istruzione DefObj</link>"
#: 03101700.xhp
msgctxt ""
@@ -24286,7 +24286,7 @@ msgctxt ""
"hd_id3143267\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03102000.xhp\" name=\"DefVar Statement\">DefVar Statement</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03102000.xhp\" name=\"Istruzione DefVar\">Istruzione DefVar</link>"
#: 03102000.xhp
msgctxt ""
@@ -24406,7 +24406,7 @@ msgctxt ""
"hd_id3149812\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03102100.xhp\" name=\"Dim Statement\">Dim Statement</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03102100.xhp\" name=\"Istruzione Dim\">Istruzione Dim</link>"
#: 03102100.xhp
msgctxt ""
@@ -24710,7 +24710,7 @@ msgctxt ""
"hd_id3150398\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03102101.xhp\" name=\"ReDim Statement\">ReDim Statement</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03102101.xhp\" name=\"Istruzione ReDim\">Istruzione ReDim</link>"
#: 03102101.xhp
msgctxt ""
@@ -24958,7 +24958,7 @@ msgctxt ""
"hd_id3154346\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03102200.xhp\" name=\"IsArray Function\">IsArray Function</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03102200.xhp\" name=\"Funzione IsArray\">Funzione IsArray</link>"
#: 03102200.xhp
msgctxt ""
@@ -25046,7 +25046,7 @@ msgctxt ""
"hd_id3145090\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03102300.xhp\" name=\"IsDate Function\">IsDate Function</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03102300.xhp\" name=\"Funzione IsDate\">Funzione IsDate</link>"
#: 03102300.xhp
msgctxt ""
@@ -25150,7 +25150,7 @@ msgctxt ""
"hd_id3153394\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03102400.xhp\" name=\"IsEmpty Function\">IsEmpty Function</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03102400.xhp\" name=\"Funzione IsEmpty\">Funzione IsEmpty</link>"
#: 03102400.xhp
msgctxt ""
@@ -25246,7 +25246,7 @@ msgctxt ""
"par_idN1054E\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03102450.xhp\">IsError Function</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03102450.xhp\">Funzione IsError</link>"
#: 03102450.xhp
msgctxt ""
@@ -25318,7 +25318,7 @@ msgctxt ""
"hd_id3155555\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03102600.xhp\" name=\"IsNull Function\">IsNull Function</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03102600.xhp\" name=\"Funzione IsNull\">Funzione IsNull</link>"
#: 03102600.xhp
msgctxt ""
@@ -25414,7 +25414,7 @@ msgctxt ""
"hd_id3145136\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03102700.xhp\" name=\"IsNumeric Function\">IsNumeric Function</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03102700.xhp\" name=\"Funzione IsNumeric\">Funzione IsNumeric</link>"
#: 03102700.xhp
msgctxt ""
@@ -25518,7 +25518,7 @@ msgctxt ""
"hd_id3149346\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03102800.xhp\" name=\"IsObject Function\">IsObject Function</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03102800.xhp\" name=\"Funzione IsObject\">Funzione IsObject</link>"
#: 03102800.xhp
msgctxt ""
@@ -25598,7 +25598,7 @@ msgctxt ""
"hd_id3156027\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03102900.xhp\" name=\"LBound Function\">LBound Function</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03102900.xhp\" name=\"Funzione LBound\">Funzione LBound</link>"
#: 03102900.xhp
msgctxt ""
@@ -25726,7 +25726,7 @@ msgctxt ""
"hd_id3148538\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03103000.xhp\" name=\"UBound Function\">UBound Function</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03103000.xhp\" name=\"Funzione UBound\">Funzione UBound</link>"
#: 03103000.xhp
msgctxt ""
@@ -25854,7 +25854,7 @@ msgctxt ""
"hd_id3147242\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03103100.xhp\" name=\"Let Statement\">Let Statement</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03103100.xhp\" name=\"Istruzione Let\">Istruzione Let</link>"
#: 03103100.xhp
msgctxt ""
@@ -25942,7 +25942,7 @@ msgctxt ""
"hd_id3155805\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03103200.xhp\" name=\"Option Base Statement\">Option Base Statement</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03103200.xhp\" name=\"Istruzione Option Base\">Istruzione Option Base</link>"
#: 03103200.xhp
msgctxt ""
@@ -26006,7 +26006,7 @@ msgctxt ""
"hd_id3145090\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03103300.xhp\" name=\"Option Explicit Statement\">Option Explicit Statement</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03103300.xhp\" name=\"Istruzione Option Explicit\">Istruzione Option Explicit</link>"
#: 03103300.xhp
msgctxt ""
@@ -26078,7 +26078,7 @@ msgctxt ""
"hd_id3145090\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03103300.xhp\" name=\"Option VBASupport Statement\">Option VBASupport Statement</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03103300.xhp\" name=\"Istruzione Option VBASupport\">Istruzione Option VBASupport</link>"
#: 03103350.xhp
msgctxt ""
@@ -26182,7 +26182,7 @@ msgctxt ""
"hd_id3153311\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03103400.xhp\" name=\"Public Statement\">Public Statement</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03103400.xhp\" name=\"Istruzione Public\">Istruzione Public</link>"
#: 03103400.xhp
msgctxt ""
@@ -26238,7 +26238,7 @@ msgctxt ""
"hd_id3159201\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03103450.xhp\" name=\"Global Statement\">Global Statement</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03103450.xhp\" name=\"Istruzione Global\">Istruzione Global</link>"
#: 03103450.xhp
msgctxt ""
@@ -26294,7 +26294,7 @@ msgctxt ""
"hd_id3149798\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03103500.xhp\" name=\"Static Statement\">Static Statement</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03103500.xhp\" name=\"Istruzione Static\">Istruzione Static</link>"
#: 03103500.xhp
msgctxt ""
@@ -26374,7 +26374,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "TypeName Function; VarType Function"
-msgstr ""
+msgstr "Funzione TypeName; Funzione VarType"
#: 03103600.xhp
msgctxt ""
@@ -26390,7 +26390,7 @@ msgctxt ""
"hd_id3143267\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03103600.xhp\" name=\"TypeName Function; VarType Function\">TypeName Function; VarType Function</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03103600.xhp\" name=\"Funzione TypeName; Funzione VarType\">Funzione TypeName; Funzione VarType</link>"
#: 03103600.xhp
msgctxt ""
@@ -26614,7 +26614,7 @@ msgctxt ""
"hd_id3154422\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03103700.xhp\" name=\"Set Statement\">Set Statement</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03103700.xhp\" name=\"Istruzione Set\">Istruzione Set</link>"
#: 03103700.xhp
msgctxt ""
@@ -26702,7 +26702,7 @@ msgctxt ""
"hd_id3145136\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03103800.xhp\" name=\"FindObject Function\">FindObject Function</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03103800.xhp\" name=\"Funzione FindObject\">Funzione FindObject</link>"
#: 03103800.xhp
msgctxt ""
@@ -26782,7 +26782,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "FindPropertyObject Function"
-msgstr ""
+msgstr "Funzione FindPropertyObject"
#: 03103900.xhp
msgctxt ""
@@ -26798,7 +26798,7 @@ msgctxt ""
"hd_id3146958\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03103900.xhp\" name=\"FindPropertyObject Function\">FindPropertyObject Function</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03103900.xhp\" name=\"Funzione FindPropertyObject\">Funzione FindPropertyObject</link>"
#: 03103900.xhp
msgctxt ""
@@ -26870,7 +26870,7 @@ msgctxt ""
"hd_id3153527\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03104000.xhp\" name=\"IsMissing Function\">IsMissing Function</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03104000.xhp\" name=\"Funzione IsMissing\">Funzione IsMissing</link>"
#: 03104000.xhp
msgctxt ""
@@ -26942,7 +26942,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Optional (in Function Statement)"
-msgstr ""
+msgstr "Optional (nell'istruzione Function)"
#: 03104100.xhp
msgctxt ""
@@ -26958,7 +26958,7 @@ msgctxt ""
"hd_id3149205\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03104100.xhp\" name=\"Optional (in Function Statement)\">Optional (in Function Statement)</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03104100.xhp\" name=\"Optional (nell'istruzione Function)\">Optional (nell'istruzione Function)</link>"
#: 03104100.xhp
msgctxt ""
@@ -27046,7 +27046,7 @@ msgctxt ""
"hd_id3150499\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03104200.xhp\" name=\"Array Function\">Array Function</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03104200.xhp\" name=\"Funzione Array\">Funzione Array</link>"
#: 03104200.xhp
msgctxt ""
@@ -27134,7 +27134,7 @@ msgctxt ""
"hd_id3150616\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03104300.xhp\" name=\"DimArray Function\">DimArray Function</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03104300.xhp\" name=\"Funzione DimArray\">Funzione DimArray</link>"
#: 03104300.xhp
msgctxt ""
@@ -27214,7 +27214,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "HasUnoInterfaces Function"
-msgstr ""
+msgstr "Funzione HasUnoInterfaces"
#: 03104400.xhp
msgctxt ""
@@ -27230,7 +27230,7 @@ msgctxt ""
"hd_id3149987\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03104400.xhp\" name=\"HasUnoInterfaces Function\">HasUnoInterfaces Function</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03104400.xhp\" name=\"Funzione HasUnoInterfaces\">Funzione HasUnoInterfaces</link>"
#: 03104400.xhp
msgctxt ""
@@ -27334,7 +27334,7 @@ msgctxt ""
"hd_id3146117\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03104500.xhp\" name=\"IsUnoStruct Function\">IsUnoStruct Function</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03104500.xhp\" name=\"Funzione IsUnoStruct\">Funzione IsUnoStruct</link>"
#: 03104500.xhp
msgctxt ""
@@ -27446,7 +27446,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "EqualUnoObjects Function"
-msgstr ""
+msgstr "Funzione EqualUnoObjects"
#: 03104600.xhp
msgctxt ""
@@ -27462,7 +27462,7 @@ msgctxt ""
"hd_id3149205\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03104600.xhp\" name=\"EqualUnoObjects Function\">EqualUnoObjects Function</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03104600.xhp\" name=\"Funzione EqualUnoObjects\">Funzione EqualUnoObjects</link>"
#: 03104600.xhp
msgctxt ""
@@ -27542,7 +27542,7 @@ msgctxt ""
"par_idN10548\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03104700.xhp\">Erase Function</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03104700.xhp\">Funzione Erase</link>"
#: 03104700.xhp
msgctxt ""
@@ -27614,7 +27614,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Comparison Operators"
-msgstr ""
+msgstr "Operatori di confronto"
#: 03110100.xhp
msgctxt ""
@@ -27630,7 +27630,7 @@ msgctxt ""
"hd_id3150682\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03110100.xhp\" name=\"Comparison Operators\">Comparison Operators</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03110100.xhp\" name=\"Operatori di confronto\">Operatori di confronto</link>"
#: 03110100.xhp
msgctxt ""
@@ -27830,7 +27830,7 @@ msgctxt ""
"hd_id3150499\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03120101.xhp\" name=\"Asc Function\">Asc Function</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03120101.xhp\" name=\"Funzione Asc\">Funzione Asc</link>"
#: 03120101.xhp
msgctxt ""
@@ -27958,7 +27958,7 @@ msgctxt ""
"hd_id3149205\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03120102.xhp\" name=\"Chr Function\">Chr Function</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03120102.xhp\" name=\"Funzione Chr\">Funzione Chr</link>"
#: 03120102.xhp
msgctxt ""
@@ -28086,7 +28086,7 @@ msgctxt ""
"hd_id3143272\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03120103.xhp\" name=\"Str Function\">Str Function</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03120103.xhp\" name=\"Funzione Str\">Funzione Str</link>"
#: 03120103.xhp
msgctxt ""
@@ -28182,7 +28182,7 @@ msgctxt ""
"hd_id3149205\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03120104.xhp\" name=\"Val Function\">Val Function</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03120104.xhp\" name=\"Funzione Val\">Funzione Val</link>"
#: 03120104.xhp
msgctxt ""
@@ -28278,7 +28278,7 @@ msgctxt ""
"hd_id3156027\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03120105.xhp\" name=\"CByte Function\">CByte Function</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03120105.xhp\" name=\"Funzione CByte\">Funzione CByte</link>"
#: 03120105.xhp
msgctxt ""
@@ -28358,7 +28358,7 @@ msgctxt ""
"hd_id3150499\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03120111.xhp\" name=\"AscW Function [VBA]\">AscW Function [VBA]</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03120111.xhp\" name=\"Funzione AscW [VBA]\">Funzione AscW [VBA]</link>"
#: 03120111.xhp
msgctxt ""
@@ -28462,7 +28462,7 @@ msgctxt ""
"hd_id3149205\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03120112.xhp\" name=\"ChrW Function\">ChrW Function [VBA]</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03120112.xhp\" name=\"Funzione ChrW\">Funzione ChrW [VBA]</link>"
#: 03120112.xhp
msgctxt ""
@@ -28590,7 +28590,7 @@ msgctxt ""
"hd_id3150499\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03120201.xhp\" name=\"Space Function\">Space Function</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03120201.xhp\" name=\"Funzione Space\">Funzione Space</link>"
#: 03120201.xhp
msgctxt ""
@@ -28678,7 +28678,7 @@ msgctxt ""
"hd_id3147291\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03120202.xhp\" name=\"String Function\">String Function</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03120202.xhp\" name=\"Funzione String\">Funzione String</link>"
#: 03120202.xhp
msgctxt ""
@@ -28814,7 +28814,7 @@ msgctxt ""
"hd_id3153539\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03120301.xhp\" name=\"Format Function\">Format Function</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03120301.xhp\" name=\"Funzione Format\">Funzione Format</link>"
#: 03120301.xhp
msgctxt ""
@@ -29142,7 +29142,7 @@ msgctxt ""
"par_id381513082126889\n"
"help.text"
msgid "<link href=\"text/shared/01/05020301.xhp\" name=\"number format code\">Number format codes</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/05020301.xhp\" name=\"codice dei formati numerici\">Codici dei formati numerici</link>"
#: 03120302.xhp
msgctxt ""
@@ -29166,7 +29166,7 @@ msgctxt ""
"hd_id3152363\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03120302.xhp\" name=\"LCase Function\">LCase Function</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03120302.xhp\" name=\"Funzione LCase\">Funzione LCase</link>"
#: 03120302.xhp
msgctxt ""
@@ -29278,7 +29278,7 @@ msgctxt ""
"hd_id3149346\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03120303.xhp\" name=\"Left Function\">Left Function</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03120303.xhp\" name=\"Funzione Left\">Funzione Left</link>"
#: 03120303.xhp
msgctxt ""
@@ -29390,7 +29390,7 @@ msgctxt ""
"hd_id3143268\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03120304.xhp\" name=\"LSet Statement\">LSet Statement</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03120304.xhp\" name=\"Istruzione LSet\">Istruzione LSet</link>"
#: 03120304.xhp
msgctxt ""
@@ -29518,7 +29518,7 @@ msgctxt ""
"hd_id3147574\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03120305.xhp\" name=\"LTrim Function\">LTrim Function</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03120305.xhp\" name=\"Funzione LTrim\">Funzione LTrim</link>"
#: 03120305.xhp
msgctxt ""
@@ -29598,7 +29598,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Mid Function, Mid Statement"
-msgstr ""
+msgstr "Funzione Mid, Istruzione Mid"
#: 03120306.xhp
msgctxt ""
@@ -29614,7 +29614,7 @@ msgctxt ""
"hd_id3143268\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03120306.xhp\" name=\"Mid Function, Mid Statement\">Mid Function, Mid Statement</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03120306.xhp\" name=\"Funzione Mid, Istruzione Mid\">Funzione Mid, Istruzione Mid</link>"
#: 03120306.xhp
msgctxt ""
@@ -29750,7 +29750,7 @@ msgctxt ""
"hd_id3153311\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03120307.xhp\" name=\"Right Function\">Right Function</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03120307.xhp\" name=\"Funzione Right\">Funzione Right</link>"
#: 03120307.xhp
msgctxt ""
@@ -29870,7 +29870,7 @@ msgctxt ""
"hd_id3153345\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03120308.xhp\" name=\"RSet Statement\">RSet Statement</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03120308.xhp\" name=\"Istruzione RSet\">Istruzione RSet</link>"
#: 03120308.xhp
msgctxt ""
@@ -30014,7 +30014,7 @@ msgctxt ""
"hd_id3154286\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03120309.xhp\" name=\"RTrim Function\">RTrim Function</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03120309.xhp\" name=\"Funzione RTrim\">Funzione RTrim</link>"
#: 03120309.xhp
msgctxt ""
@@ -30110,7 +30110,7 @@ msgctxt ""
"hd_id3153527\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03120310.xhp\" name=\"UCase Function\">UCase Function</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03120310.xhp\" name=\"Funzione UCase\">Funzione UCase</link>"
#: 03120310.xhp
msgctxt ""
@@ -30222,7 +30222,7 @@ msgctxt ""
"hd_id3150616\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03120311.xhp\" name=\"Trim Function\">Trim Function</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03120311.xhp\" name=\"Funzione Trim\">Funzione Trim</link>"
#: 03120311.xhp
msgctxt ""
@@ -30310,7 +30310,7 @@ msgctxt ""
"hd_id3152801\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03120312.xhp\" name=\"ConvertToURL Function\">ConvertToURL Function</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03120312.xhp\" name=\"Funzione ConvertToURL\">Funzione ConvertToURL</link>"
#: 03120312.xhp
msgctxt ""
@@ -30406,7 +30406,7 @@ msgctxt ""
"hd_id3153894\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03120313.xhp\" name=\"ConvertFromURL Function\">ConvertFromURL Function</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03120313.xhp\" name=\"Funzione ConvertFromURL\">Funzione ConvertFromURL</link>"
#: 03120313.xhp
msgctxt ""
@@ -30486,7 +30486,7 @@ msgctxt ""
"hd_id3156027\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03120314.xhp\" name=\"Split Function\">Split Function</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03120314.xhp\" name=\"Funzione Split\">Funzione Split</link>"
#: 03120314.xhp
msgctxt ""
@@ -30590,7 +30590,7 @@ msgctxt ""
"hd_id3149416\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03120315.xhp\" name=\"Join Function\">Join Function</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03120315.xhp\" name=\"Funzione Join\">Funzione Join</link>"
#: 03120315.xhp
msgctxt ""
@@ -30710,7 +30710,7 @@ msgctxt ""
"hd_id3155934\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03120401.xhp\" name=\"InStr Function\">InStr Function</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03120401.xhp\" name=\"Funzione InStr\">Funzione InStr</link>"
#: 03120401.xhp
msgctxt ""
@@ -30854,7 +30854,7 @@ msgctxt ""
"hd_id3154136\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03120402.xhp\" name=\"Len Function\">Len Function</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03120402.xhp\" name=\"Funzione Len\">Funzione Len</link>"
#: 03120402.xhp
msgctxt ""
@@ -30950,7 +30950,7 @@ msgctxt ""
"hd_id3156027\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03120403.xhp\" name=\"StrComp Function\">StrComp Function</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03120403.xhp\" name=\"Funzione StrComp\">Funzione StrComp</link>"
#: 03120403.xhp
msgctxt ""
@@ -31086,7 +31086,7 @@ msgctxt ""
"hd_id3155934\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03120411.xhp\" name=\"InStrRev Function\">InStrRev Function [VBA]</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03120411.xhp\" name=\"Funzione InStrRev\">Funzione InStrRev [VBA]</link>"
#: 03120411.xhp
msgctxt ""
@@ -31214,7 +31214,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "StrReverse Function [VBA]"
-msgstr ""
+msgstr "Funzione StrReverse [VBA]"
#: 03120412.xhp
msgctxt ""
@@ -31230,7 +31230,7 @@ msgctxt ""
"hd_id3155934\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03120412.xhp\" name=\"StrReverse Function\">StrReverse Function [VBA]</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03120412.xhp\" name=\"StrReverse Function\">Funzione StrReverse [VBA]</link>"
#: 03120412.xhp
msgctxt ""
@@ -31310,7 +31310,7 @@ msgctxt ""
"hd_id3143284\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03130100.xhp\" name=\"Beep Statement\">Beep Statement</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03130100.xhp\" name=\"Istruzione Beep\">Istruzione Beep</link>"
#: 03130100.xhp
msgctxt ""
@@ -31358,7 +31358,7 @@ msgctxt ""
"hd_id3150040\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03130500.xhp\" name=\"Shell Function\">Shell Function</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03130500.xhp\" name=\"Funzione Shell\">Funzione Shell</link>"
#: 03130500.xhp
msgctxt ""
@@ -31542,7 +31542,7 @@ msgctxt ""
"hd_id3154136\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03130600.xhp\" name=\"Wait Statement\">Wait Statement</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03130600.xhp\" name=\"Istruzione Wait\">Istruzione Wait</link>"
#: 03130600.xhp
msgctxt ""
@@ -31622,7 +31622,7 @@ msgctxt ""
"hd_id3147143\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03130700.xhp\" name=\"GetSystemTicks Function\">GetSystemTicks Function</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03130700.xhp\" name=\"Funzione GetSystemTicks\">Funzione GetSystemTicks</link>"
#: 03130700.xhp
msgctxt ""
@@ -31694,7 +31694,7 @@ msgctxt ""
"hd_id3155364\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03130800.xhp\" name=\"Environ Function\">Environ Function</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03130800.xhp\" name=\"Funzione Environ\">Funzione Environ</link>"
#: 03130800.xhp
msgctxt ""
@@ -31774,7 +31774,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "GetSolarVersion Function"
-msgstr ""
+msgstr "Funzione GetSolarVersion"
#: 03131000.xhp
msgctxt ""
@@ -31790,7 +31790,7 @@ msgctxt ""
"hd_id3157898\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03131000.xhp\" name=\"GetSolarVersion Function\">GetSolarVersion Function</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03131000.xhp\" name=\"Funzione GetSolarVersion\">Funzione GetSolarVersion</link>"
#: 03131000.xhp
msgctxt ""
@@ -31862,7 +31862,7 @@ msgctxt ""
"hd_id3153539\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03131300.xhp\" name=\"TwipsPerPixelX Function\">TwipsPerPixelX Function</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03131300.xhp\" name=\"Funzione TwipsPerPixelX\">Funzione TwipsPerPixelX</link>"
#: 03131300.xhp
msgctxt ""
@@ -31934,7 +31934,7 @@ msgctxt ""
"hd_id3150040\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03131400.xhp\" name=\"TwipsPerPixelY Function\">TwipsPerPixelY Function</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03131400.xhp\" name=\"Funzione TwipsPerPixelY\">Funzione TwipsPerPixelY</link>"
#: 03131400.xhp
msgctxt ""
@@ -31990,7 +31990,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "CreateUnoStruct Function"
-msgstr ""
+msgstr "Funzione CreateUnoStruct"
#: 03131500.xhp
msgctxt ""
@@ -32006,7 +32006,7 @@ msgctxt ""
"hd_id3150499\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03131500.xhp\" name=\"CreateUnoStruct Function\">CreateUnoStruct Function</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03131500.xhp\" name=\"Funzione CreateUnoStruct\">Funzione CreateUnoStruct</link>"
#: 03131500.xhp
msgctxt ""
@@ -32062,7 +32062,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "CreateUnoService Function"
-msgstr ""
+msgstr "Funzione CreateUnoService"
#: 03131600.xhp
msgctxt ""
@@ -32078,7 +32078,7 @@ msgctxt ""
"hd_id3150682\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03131600.xhp\" name=\"CreateUnoService Function\">CreateUnoService Function</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03131600.xhp\" name=\"Funzione CreateUnoService\">Funzione CreateUnoService</link>"
#: 03131600.xhp
msgctxt ""
@@ -32110,7 +32110,7 @@ msgctxt ""
"par_idN1060F\n"
"help.text"
msgid "For a list of available services, go to: <link href=\"https://api.libreoffice.org/docs/idl/ref/namespacecom_1_1sun_1_1star.html\" name=\"api.libreoffice.org com::sun::star Module Reference\">https://api.libreoffice.org/docs/idl/ref/namespacecom_1_1sun_1_1star.html</link>"
-msgstr ""
+msgstr "Per un elenco dei servizi disponibili, consultate: <link href=\"https://api.libreoffice.org/docs/idl/ref/namespacecom_1_1sun_1_1star.html\" name=\"api.libreoffice.org com::sun::star Module Reference\">https://api.libreoffice.org/docs/idl/ref/namespacecom_1_1sun_1_1star.html</link>"
#: 03131600.xhp
msgctxt ""
@@ -32166,7 +32166,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "GetProcessServiceManager Function"
-msgstr ""
+msgstr "Funzione GetProcessServiceManager"
#: 03131700.xhp
msgctxt ""
@@ -32182,7 +32182,7 @@ msgctxt ""
"hd_id3153255\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03131700.xhp\" name=\"GetProcessServiceManager Function\">GetProcessServiceManager Function</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03131700.xhp\" name=\"Funzione GetProcessServiceManager\">Funzione GetProcessServiceManager</link>"
#: 03131700.xhp
msgctxt ""
@@ -32230,7 +32230,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "CreateUnoDialog Function"
-msgstr ""
+msgstr "Funzione CreateUnoDialog"
#: 03131800.xhp
msgctxt ""
@@ -32246,7 +32246,7 @@ msgctxt ""
"hd_id3150040\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03131800.xhp\" name=\"CreateUnoDialog Function\">CreateUnoDialog Function</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03131800.xhp\" name=\"Funzione CreateUnoDialog\">Funzione CreateUnoDialog</link>"
#: 03131800.xhp
msgctxt ""
@@ -32318,7 +32318,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "GlobalScope"
-msgstr ""
+msgstr "GlobalScope"
#: 03131900.xhp
msgctxt ""
@@ -32334,7 +32334,7 @@ msgctxt ""
"hd_id3150682\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03131900.xhp\" name=\"GlobalScope\">GlobalScope</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03131900.xhp\" name=\"GlobalScope\">GlobalScope</link>"
#: 03131900.xhp
msgctxt ""
@@ -32446,7 +32446,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "CreateUnoListener Function"
-msgstr ""
+msgstr "Funzione CreateUnoListener"
#: 03132000.xhp
msgctxt ""
@@ -32462,7 +32462,7 @@ msgctxt ""
"hd_id3155150\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03132000.xhp\" name=\"CreateUnoListener Function\">CreateUnoListener Function</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03132000.xhp\" name=\"Funzione CreateUnoListener\">Funzione CreateUnoListener</link>"
#: 03132000.xhp
msgctxt ""
@@ -32758,7 +32758,7 @@ msgctxt ""
"hd_id3155310\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03132100.xhp\" name=\"GetGuiType Function\">GetGuiType Function</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03132100.xhp\" name=\"Funzione GetGuiType\">Funzione GetGuiType</link>"
#: 03132100.xhp
msgctxt ""
@@ -32774,7 +32774,7 @@ msgctxt ""
"par_id3153323\n"
"help.text"
msgid "This function is only provided for downward compatibility to previous versions. The return value is not defined in client-server environments."
-msgstr ""
+msgstr "Questa funzione viene fornita solo per offrire la compatibilità all'indietro con le versioni precedenti. Il valore di ritorno non è definito negli ambienti client-server."
#: 03132100.xhp
msgctxt ""
@@ -32854,7 +32854,7 @@ msgctxt ""
"hd_id3155342\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03132200.xhp\" name=\"ThisComponent Statement\">ThisComponent Statement</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03132200.xhp\" name=\"Istruzione ThisComponent\">Istruzione ThisComponent</link>"
#: 03132200.xhp
msgctxt ""
@@ -32926,7 +32926,7 @@ msgctxt ""
"hd_id3150682\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03132300.xhp\" name=\"CreateUnoValue Function\">CreateUnoValue Function</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03132300.xhp\" name=\"Funzione CreateUnoValue\">Funzione CreateUnoValue</link>"
#: 03132300.xhp
msgctxt ""
@@ -33022,7 +33022,7 @@ msgctxt ""
"par_idN10580\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03132400.xhp\">CreateObject Function</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03132400.xhp\">Funzione CreateObject</link>"
#: 03132400.xhp
msgctxt ""
@@ -33070,7 +33070,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "GetDefaultContext Function"
-msgstr ""
+msgstr "Funzione GetDefaultContext"
#: 03132500.xhp
msgctxt ""
@@ -33086,7 +33086,7 @@ msgctxt ""
"par_idN10580\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03132500.xhp\">GetDefaultContext Function</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03132500.xhp\">Funzione GetDefaultContext</link>"
#: 03132500.xhp
msgctxt ""
@@ -33102,7 +33102,7 @@ msgctxt ""
"par_idN10593\n"
"help.text"
msgid "This function returns the default component context to be used, if instantiating services via XmultiServiceFactory. See the <item type=\"literal\">Professional UNO</item> chapter in the <item type=\"literal\">Developer's Guide</item> on <link href=\"https://api.libreoffice.org\" name=\"api.libreoffice.org\">api.libreoffice.org</link> for more information."
-msgstr ""
+msgstr "Questa funzione restituisce il contesto del componente predefinito da utilizzare, se i servizi vengono istanziati tramite XmultiServiceFactory. Per maggiori informazioni, consultate il capitolo <item type=\"literal\">Professional UNO</item> nella <item type=\"literal\">Developer's Guide</item> su <link href=\"https://api.libreoffice.org\" name=\"api.libreoffice.org\">api.libreoffice.org</link>."
#: 03140000.xhp
msgctxt ""
@@ -33126,7 +33126,7 @@ msgctxt ""
"hd_id3150499\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03140000.xhp\" name=\"DDB Function [VBA]\">DDB Function [VBA]</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03140000.xhp\" name=\"Funzione DDB [VBA]\">Funzione DDB [VBA]</link>"
#: 03140000.xhp
msgctxt ""
@@ -33222,7 +33222,7 @@ msgctxt ""
"hd_id3150499\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03140001.xhp\" name=\"FV Function [VBA]\">FV Function [VBA]</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03140001.xhp\" name=\"Funzione VAL.FUT [VBA]\">Funzione VAL.FUT [VBA]</link>"
#: 03140001.xhp
msgctxt ""
@@ -33326,7 +33326,7 @@ msgctxt ""
"hd_id3150499\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03140002.xhp\" name=\"IPmt Function [VBA]\">IPmt Function [VBA]</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03140002.xhp\" name=\"Funzione IPmt [VBA]\">Funzione IPmt [VBA]</link>"
#: 03140002.xhp
msgctxt ""
@@ -33438,7 +33438,7 @@ msgctxt ""
"hd_id3150499\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03140003.xhp\" name=\"IRR Function [VBA]\">IRR Function [VBA]</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03140003.xhp\" name=\"Funzione IRR [VBA]\">Funzione IRR [VBA]</link>"
#: 03140003.xhp
msgctxt ""
@@ -33502,7 +33502,7 @@ msgctxt ""
"hd_id3150499\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03140004.xhp\" name=\"MIRR Function [VBA]\">MIRR Function [VBA]</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03140004.xhp\" name=\"Funzione MIRR [VBA]\">Funzione MIRR [VBA]</link>"
#: 03140004.xhp
msgctxt ""
@@ -33574,7 +33574,7 @@ msgctxt ""
"hd_id3150499\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03140005.xhp\" name=\"NPer Function [VBA]\">NPer Function [VBA]</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03140005.xhp\" name=\"Funzione NPer [VBA]\">Funzione NPer [VBA]</link>"
#: 03140005.xhp
msgctxt ""
@@ -33678,7 +33678,7 @@ msgctxt ""
"hd_id3150499\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03140006.xhp\" name=\"NPV Function [VBA]\">NPV Function [VBA]</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03140006.xhp\" name=\"Funzione VAN [VBA]\">Funzione VAN [VBA]</link>"
#: 03140006.xhp
msgctxt ""
@@ -33742,7 +33742,7 @@ msgctxt ""
"hd_id3150499\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03140007.xhp\" name=\"Pmt Function [VBA]\">Pmt Function [VBA]</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03140007.xhp\" name=\"Funzione RATA [VBA]\">Funzione RATA [VBA]</link>"
#: 03140007.xhp
msgctxt ""
@@ -33862,7 +33862,7 @@ msgctxt ""
"hd_id3150499\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03140008.xhp\" name=\"PPmt Function [VBA]\">PPmt Function [VBA]</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03140008.xhp\" name=\"Funzione P.RATA [VBA]\">Funzione P.RATA [VBA]</link>"
#: 03140008.xhp
msgctxt ""
@@ -33966,7 +33966,7 @@ msgctxt ""
"par_id230720172348086687\n"
"help.text"
msgid "print ppMth4 ' ppMth4 is calculated to be -1044,94463903636."
-msgstr ""
+msgstr "print ppMth4 ' ppMth4 si stima essere -1044,94463903636."
#: 03140008.xhp
msgctxt ""
@@ -33982,7 +33982,7 @@ msgctxt ""
"par_id230720172348086456\n"
"help.text"
msgid "print ppMth5' ppMth5 is calculated to be -1053,65251102833."
-msgstr ""
+msgstr "print ppMth5' ppMth5 si stima essere -1053,65251102833."
#: 03140008.xhp
msgctxt ""
@@ -34014,7 +34014,7 @@ msgctxt ""
"hd_id3150499\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03140009.xhp\" name=\"PV Function [VBA]\">PV Function [VBA]</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03140009.xhp\" name=\"Funzione VA [VBA]\">Funzione VA [VBA]</link>"
#: 03140009.xhp
msgctxt ""
@@ -34134,7 +34134,7 @@ msgctxt ""
"hd_id3150499\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03140010.xhp\" name=\"Rate Function [VBA]\">Rate Function [VBA]</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03140010.xhp\" name=\"Funzione Tasso [VBA]\">Funzione Tasso [VBA]</link>"
#: 03140010.xhp
msgctxt ""
@@ -34262,7 +34262,7 @@ msgctxt ""
"hd_id3150499\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03140011.xhp\" name=\"SLN Function [VBA]\">SLN Function [VBA]</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03140011.xhp\" name=\"Funzione AMMORT.COST [VBA]\">Funzione AMMORT.COST [VBA]</link>"
#: 03140011.xhp
msgctxt ""
@@ -34350,7 +34350,7 @@ msgctxt ""
"hd_id3150499\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03140012.xhp\" name=\"SYD Function [VBA]\">SYD Function [VBA]</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03140012.xhp\" name=\"Funzione AMMORT.ANNUO [VBA]\">Funzione AMMORT.ANNUO [VBA]</link>"
#: 03140012.xhp
msgctxt ""
@@ -34382,7 +34382,7 @@ msgctxt ""
"par_id240720170117395610\n"
"help.text"
msgid "<emph>Life</emph> is the depreciation period determining the number of periods in the depreciation of the asset."
-msgstr ""
+msgstr "<emph>Vita utile</emph> è il numero di periodi in cui il bene viene ammortizzato (periodo di ammortamento)."
#: 03140012.xhp
msgctxt ""
@@ -34414,7 +34414,7 @@ msgctxt ""
"par_id240720170144223139\n"
"help.text"
msgid "REM Calculate the depreciation during year 1."
-msgstr ""
+msgstr "REM Restituisce l'ammortamento durante il primo anno."
#: 03140012.xhp
msgctxt ""
@@ -34438,7 +34438,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "FormatDateTime Function [VBA]"
-msgstr ""
+msgstr "Funzione FormatDateTime [VBA]"
#: 03150000.xhp
msgctxt ""
@@ -34454,7 +34454,7 @@ msgctxt ""
"hd_id3150499\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03150000.xhp\" name=\"FormatDateTime Function [VBA]\">FormatDateTime Function [VBA]</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03150000.xhp\" name=\"Funzione FormatDateTime [VBA]\">Funzione FormatDateTime [VBA]</link>"
#: 03150000.xhp
msgctxt ""
@@ -34478,7 +34478,7 @@ msgctxt ""
"par_id24072017011739895\n"
"help.text"
msgid "<emph>NamedFormat</emph>: An optional <emph>vbDateTimeFormat</emph> enumeration specifying the format that is to be applied to the date and time expression. If omitted, the value <emph>vbGeneralDate</emph> is used."
-msgstr ""
+msgstr "<emph>NamedFormat</emph>: un elenco <emph>vbDateTimeFormat</emph> facoltativo che specifica il formato da applicare all'espressione di data e ora. Se omesso, sarà usato il valore <emph>vbGeneralDate</emph>."
#: 03150000.xhp
msgctxt ""
@@ -34598,7 +34598,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "WeekdayName Function [VBA]"
-msgstr ""
+msgstr "Funzione WeekdayName [VBA]"
#: 03150001.xhp
msgctxt ""
@@ -34614,7 +34614,7 @@ msgctxt ""
"hd_id3150499\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03150001.xhp\" name=\"WeekdayName Function [VBA]\">WeekdayName Function [VBA]</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03150001.xhp\" name=\"Funzione WeekdayName [VBA]\">Funzione WeekdayName [VBA]</link>"
#: 03150001.xhp
msgctxt ""
@@ -34630,7 +34630,7 @@ msgctxt ""
"par_id240720170117391741\n"
"help.text"
msgid "<emph>Weekday</emph>: Value from 1 to 7, Mon­day to Sun­day, whose Week Day Name need to be calculated."
-msgstr ""
+msgstr "<emph>Weekday</emph>: valore da 1 a 7, da lunedì a domenica, di cui deve essere calcolato il nome della settimana."
#: 03150001.xhp
msgctxt ""
@@ -34758,7 +34758,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "MonthName Function [VBA]"
-msgstr ""
+msgstr "Funzione MonthName [VBA]"
#: 03150002.xhp
msgctxt ""
@@ -34774,7 +34774,7 @@ msgctxt ""
"hd_id3150499\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03150002.xhp\" name=\"MonthName Function [VBA]\">MonthName Function [VBA]</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03150002.xhp\" name=\"Funzione MonthName [VBA]\">Funzione MonthName [VBA]</link>"
#: 03150002.xhp
msgctxt ""
@@ -34822,7 +34822,7 @@ msgctxt ""
"hd_id3150499\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03160000.xhp\" name=\"Input Function [VBA]\">Input Function [VBA]</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03160000.xhp\" name=\"Funzione Input [VBA]\">Funzione Input [VBA]</link>"
#: 03160000.xhp
msgctxt ""
@@ -34886,7 +34886,7 @@ msgctxt ""
"hd_id3150499\n"
"help.text"
msgid "<link href=\"text/sbasic/shared/03170000.xhp\" name=\"Round Function [VBA]\">Round Function [VBA]</link>"
-msgstr ""
+msgstr "<link href=\"text/sbasic/shared/03170000.xhp\" name=\"Funzione Arrotonda [VBA]\">Funzione Arrotonda [VBA]</link>"
#: 03170000.xhp
msgctxt ""
@@ -35414,7 +35414,7 @@ msgctxt ""
"par_id3159254\n"
"help.text"
msgid "Run code starting from the first line, or from the current breakpoint, if the program stopped there before."
-msgstr ""
+msgstr "Esegue il codice iniziando dalla prima riga, o dal punto di interruzione se il programma si è arrestato prima in quel punto."
#: keys.xhp
msgctxt ""
@@ -35446,7 +35446,7 @@ msgctxt ""
"par_id3151073\n"
"help.text"
msgid "Add <link href=\"text/sbasic/shared/01050100.xhp\" name=\"watch\">watch</link> for the variable at the cursor."
-msgstr ""
+msgstr "Aggiunge un <link href=\"text/sbasic/shared/01050100.xhp\" name=\"controllo\">controllo</link> per la variabile nella posizione del cursore."
#: keys.xhp
msgctxt ""
@@ -35478,7 +35478,7 @@ msgctxt ""
"par_id3156275\n"
"help.text"
msgid "Single step as with F8, but a function call is considered to be only <emph>one</emph> statement."
-msgstr ""
+msgstr "Avanza a passo singolo come con F8, ma ogni chiamata di funzione viene considerata <emph>una sola</emph> istruzione."
#: keys.xhp
msgctxt ""
@@ -35494,7 +35494,7 @@ msgctxt ""
"par_id3150323\n"
"help.text"
msgid "Set or remove a <link href=\"text/sbasic/shared/01030300.xhp\" name=\"breakpoint\">breakpoint</link> at the current line or all breakpoints in the current selection."
-msgstr ""
+msgstr "Imposta o rimuove un <link href=\"text/sbasic/shared/01030300.xhp\" name=\"punto di interruzione\">punto di interruzione</link> alla riga in cui si trova il cursore o tutti i punti di interruzione attualmente inclusi nella selezione."
#: keys.xhp
msgctxt ""
@@ -35510,7 +35510,7 @@ msgctxt ""
"par_id3153963\n"
"help.text"
msgid "Enable/disable the breakpoint at the current line or all breakpoints in the current selection."
-msgstr ""
+msgstr "Abilita o disabilita il punto di interruzione situato nella riga in cui si trova il cursore o tutti i punti di interruzione attualmente inclusi nella selezione."
#: keys.xhp
msgctxt ""
@@ -35582,7 +35582,7 @@ msgctxt ""
"par_id3153894\n"
"help.text"
msgid "%PRODUCTNAME provides an Application Programming Interface (API) that allows controlling the $[officename] components with different programming languages by using the $[officename] Software Development Kit (SDK). For more information about the $[officename] API and the Software Development Kit, visit <link href=\"https://api.libreoffice.org/\" name=\"api.libreoffice.org\">https://api.libreoffice.org</link>"
-msgstr ""
+msgstr "%PRODUCTNAME dispone di una API che permette di controllarne i componenti con diversi linguaggi di programmazione usando un apposito Software Development Kit (SDK). Per maggiori informazioni sulla API di $[officename] e sul Software Development Kit, visitate il sito web <link href=\"https://api.libreoffice.org/\" name=\"api.libreoffice.org\">https://api.libreoffice.org</link>"
#: main0601.xhp
msgctxt ""
@@ -35590,7 +35590,7 @@ msgctxt ""
"par_id3147226\n"
"help.text"
msgid "This help section explains the most common functions of %PRODUCTNAME Basic. For more in-depth information please refer to the <link href=\"https://wiki.documentfoundation.org/Documentation/BASIC_Guide\" name=\"wiki.documentfoundation.org BASIC Guide\">OpenOffice.org BASIC Programming Guide</link> on the Wiki."
-msgstr ""
+msgstr "Questa sezione della guida tratta delle funzioni più comuni di %PRODUCTNAME Basic. Per informazioni più approfondite, consultate <link href=\"https://wiki.documentfoundation.org/Documentation/BASIC_Guide\" name=\"wiki.documentfoundation.org BASIC Guide\">OpenOffice.org BASIC Programming Guide</link> sul wiki."
#: main0601.xhp
msgctxt ""
diff --git a/source/it/helpcontent2/source/text/sbasic/shared/01.po b/source/it/helpcontent2/source/text/sbasic/shared/01.po
index 22ed14b0bae..862b97760ca 100644
--- a/source/it/helpcontent2/source/text/sbasic/shared/01.po
+++ b/source/it/helpcontent2/source/text/sbasic/shared/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: 2018-05-16 16:54+0200\n"
-"PO-Revision-Date: 2016-02-22 13:40+0000\n"
+"PO-Revision-Date: 2018-06-06 12:58+0000\n"
"Last-Translator: Valter Mura <valtermura@gmail.com>\n"
"Language-Team: Italian <l10n@it.libreoffice.org>\n"
"Language: it\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1456148444.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1528289928.000000\n"
#: 06130000.xhp
msgctxt ""
@@ -46,7 +46,7 @@ msgctxt ""
"par_id3152886\n"
"help.text"
msgid "<variable id=\"makro\"><ahelp hid=\".uno:ChooseMacro\">Opens the <emph>Macro</emph> dialog, where you can create, edit, organize, and run $[officename] Basic macros.</ahelp></variable>"
-msgstr ""
+msgstr "<variable id=\"makro\"><ahelp hid=\".uno:ChooseMacro\">Apre la finestra di dialogo <emph>Macro</emph>, che contiene i comandi per creare, modificare ed eseguire le macro di $[officename] Basic.</ahelp></variable>"
#: 06130000.xhp
msgctxt ""
@@ -374,7 +374,7 @@ msgctxt ""
"par_id3155126\n"
"help.text"
msgid "<ahelp hid=\"modules/BasicIDE/ui/libpage/import\">Locate that $[officename] Basic library that you want to add to the current list, and then click <emph>Open</emph>.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/BasicIDE/ui/libpage/import\">Individua la libreria di $[officename] Basic da aggiungere all'elenco, poi fare clic su <emph>Apri</emph>.</ahelp>"
#: 06130100.xhp
msgctxt ""
@@ -494,7 +494,7 @@ msgctxt ""
"par_id3154840\n"
"help.text"
msgid "Locate that <item type=\"productname\">%PRODUCTNAME</item> Basic library that you want to add to the current list, and then click <emph>Open</emph>."
-msgstr ""
+msgstr "Individuate la libreria di <item type=\"productname\">%PRODUCTNAME</item> Basic che desiderate aggiungere all'elenco e fate clic su <emph>Apri</emph>."
#: 06130500.xhp
msgctxt ""
diff --git a/source/it/helpcontent2/source/text/scalc/01.po b/source/it/helpcontent2/source/text/scalc/01.po
index 1da98547540..48bd6d09630 100644
--- a/source/it/helpcontent2/source/text/scalc/01.po
+++ b/source/it/helpcontent2/source/text/scalc/01.po
@@ -4,8 +4,8 @@ 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: 2018-05-08 15:11+0200\n"
-"PO-Revision-Date: 2018-04-09 12:35+0000\n"
-"Last-Translator: Marina Latini <marina@studiostorti.com>\n"
+"PO-Revision-Date: 2018-06-11 11:48+0000\n"
+"Last-Translator: Valter Mura <valtermura@gmail.com>\n"
"Language-Team: Italian <l10n@it.libreoffice.org>\n"
"Language: it\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1523277347.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1528717699.000000\n"
#: 01120000.xhp
msgctxt ""
@@ -1190,7 +1190,7 @@ msgctxt ""
"par_id3148797\n"
"help.text"
msgid "<variable id=\"reihenfuellentext\"><ahelp hid=\".uno:FillSeries\">Automatically generate series with the options in this dialog. Determine direction, increment, time unit and series type.</ahelp> </variable>"
-msgstr ""
+msgstr "<variable id=\"reihenfuellentext\"><ahelp hid=\".uno:FillSeries\">Con le opzioni di questa finestra di dialogo è possibile generare una serie in modo automatico. Si può indicare la direzione, l'incremento, l'unità di tempo e il tipo di serie.</ahelp> </variable>"
#: 02140600.xhp
msgctxt ""
@@ -2550,7 +2550,7 @@ msgctxt ""
"par_id3153969\n"
"help.text"
msgid "<ahelp hid=\"SC_HID_SELECTTABLES\">Lists the sheets in the current document. To select a sheet, press the up or down arrow keys to move to a sheet in the list. To add a sheet to the selection, hold down <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> while pressing the arrow keys and then press Spacebar. To select a range of sheets, hold down Shift and press the arrow keys. </ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"SC_HID_SELECTTABLES\">Elenca i fogli nel documento attuale. Per selezionare un foglio, premere i tasti Freccia su o Freccia giù per passare a un foglio nell'elenco. Per aggiungere un foglio alla selezione, tenere premuto il tasto <switchinline select=\"sys\"><caseinline select=\"MAC\">Comando</caseinline><defaultinline>Ctrl</defaultinline></switchinline> premendo contemporaneamente i tasti freccia, quindi premere la barra spaziatrice. Per selezionare un intervallo di fogli, tenere premuto il tasto Maiusc e premere i tasti freccia.</ahelp>"
#: 03070000.xhp
msgctxt ""
@@ -9950,7 +9950,7 @@ msgctxt ""
"par_id3149312\n"
"help.text"
msgid "<variable id=\"logischtext\">This category contains the <emph>Logical</emph> functions.</variable>"
-msgstr ""
+msgstr "<variable id=\"logischtext\">In questa sezione sono descritte le funzioni della categoria <emph>Logica</emph>. </variable>"
#: 04060105.xhp
msgctxt ""
@@ -10350,7 +10350,7 @@ msgctxt ""
"par_id3155819\n"
"help.text"
msgid "<emph>LogicalValue1; LogicalValue2 ...LogicalValue30</emph> are conditions to be checked. All conditions can be either TRUE or FALSE. If a range is entered as a parameter, the function uses all values of the range."
-msgstr ""
+msgstr "<emph>ValoreLogico1; ValoreLogico2 ...ValoreLogico30</emph> sono le condizioni da verificare. Tutte le condizioni possono essere o VERO o FALSO. Se un intervallo è digitato come parametro, la funzione utilizza tutti i valori dell'intervallo."
#: 04060105.xhp
msgctxt ""
@@ -13142,7 +13142,7 @@ msgctxt ""
"hd_id91516997330445\n"
"help.text"
msgid "CEILING.MATH"
-msgstr ""
+msgstr "ARROTONDA.ECCESSO.MAT"
#: 04060106.xhp
msgctxt ""
@@ -13150,7 +13150,7 @@ msgctxt ""
"par_id81516997342088\n"
"help.text"
msgid "<ahelp hid=\"HID_FUNC_CEIL_MATH\">Rounds a number up to the nearest multiple of Significance.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"HID_FUNC_CEIL_MATH\">Arrotonda per eccesso il numero al multiplo più prossimo a Peso.</ahelp>"
#: 04060106.xhp
msgctxt ""
@@ -13158,7 +13158,7 @@ msgctxt ""
"hd_id971516997377435\n"
"help.text"
msgid "Syntax"
-msgstr ""
+msgstr "Sintassi"
#: 04060106.xhp
msgctxt ""
@@ -13174,7 +13174,7 @@ msgctxt ""
"par_id651516997706287\n"
"help.text"
msgid "<emph>Number</emph> is the number that is to be rounded up."
-msgstr ""
+msgstr "<emph>Numero</emph> è il numero che deve essere arrotondato per eccesso."
#: 04060106.xhp
msgctxt ""
@@ -13182,7 +13182,7 @@ msgctxt ""
"par_id491516997725772\n"
"help.text"
msgid "<emph>Significance</emph> is the number to whose multiple the value is to be rounded up."
-msgstr ""
+msgstr "<emph>Peso</emph> è il multiplo per il quale deve essere arrotondato per eccesso il valore."
#: 04060106.xhp
msgctxt ""
@@ -13190,7 +13190,7 @@ msgctxt ""
"par_id451516997742909\n"
"help.text"
msgid "<emph>Mode</emph> is an optional value. If the Mode value is given and not equal to zero, and if Number and Significance are negative, then rounding is done based on the absolute value of Number, i.e. negative numbers are rounded away from zero. If the Mode value is equal to zero or is not given, negative numbers are rounded towards zero."
-msgstr ""
+msgstr "<emph>Modo</emph> è un valore opzionale. Se il valore Modo è fornito e non è uguale a zero, e il Numero e il Peso sono negativi, allora l'arrotondamento viene eseguito in base al valore assoluto di Numero, ossia i numeri negativi sono arrotondati lontano da zero. Se il valore Modo è uguale a zero o non è fornito, i numeri negativi sono arrotondati verso lo zero."
#: 04060106.xhp
msgctxt ""
@@ -13206,7 +13206,7 @@ msgctxt ""
"hd_id561516997761868\n"
"help.text"
msgid "Example"
-msgstr ""
+msgstr "Esempio"
#: 04060106.xhp
msgctxt ""
@@ -13246,7 +13246,7 @@ msgctxt ""
"hd_id411516998838823\n"
"help.text"
msgid "CEILING.XCL"
-msgstr ""
+msgstr "ARROTONDA.ECCESSO.XCL"
#: 04060106.xhp
msgctxt ""
@@ -13262,7 +13262,7 @@ msgctxt ""
"hd_id361516998851918\n"
"help.text"
msgid "Syntax"
-msgstr ""
+msgstr "Sintassi"
#: 04060106.xhp
msgctxt ""
@@ -13278,7 +13278,7 @@ msgctxt ""
"par_id671516998874263\n"
"help.text"
msgid "<emph>Number</emph> is the number that is to be rounded."
-msgstr ""
+msgstr "<emph>Numero</emph> è il numero che deve essere arrotondato."
#: 04060106.xhp
msgctxt ""
@@ -13286,7 +13286,7 @@ msgctxt ""
"par_id151516998882622\n"
"help.text"
msgid "<emph>Significance</emph> is the number to whose multiple the value is to be rounded."
-msgstr ""
+msgstr "<emph>Peso</emph> è il multiplo per il quale deve essere arrotondato il valore."
#: 04060106.xhp
msgctxt ""
@@ -13302,7 +13302,7 @@ msgctxt ""
"hd_id81516998896303\n"
"help.text"
msgid "Example"
-msgstr ""
+msgstr "Esempio"
#: 04060106.xhp
msgctxt ""
@@ -19598,7 +19598,7 @@ msgctxt ""
"par_id1027200802301521\n"
"help.text"
msgid "When opening documents from ODF 1.0/1.1 format, the ADDRESS functions that show a sheet name as the fourth parameter will shift that sheet name to become the fifth parameter. A new fourth parameter with the value 1 will be inserted."
-msgstr ""
+msgstr "Quando aprite documenti dal formato ODF 1.0/1.1, le funzioni INDIRIZZO che mostrano un nome del foglio elettronico come il quarto parametro verrà spostato e diventerà il quinto parametro. Verrà inserito un nuovo quarto parametro con valore pari a 1."
#: 04060109.xhp
msgctxt ""
@@ -21134,7 +21134,7 @@ msgctxt ""
"par_id8056886\n"
"help.text"
msgid "Since STYLE() has a numeric return value of zero, this return value gets appended to a string. This can be avoided using T() as in the following example:"
-msgstr ""
+msgstr "Poiché STILE() restituisce un valore numerico pari a zero, questo valore viene allegato a una stringa. Ciò può essere evitato utilizzando T(), come nel seguente esempio."
#: 04060109.xhp
msgctxt ""
@@ -21206,7 +21206,7 @@ msgctxt ""
"par_id3149939\n"
"help.text"
msgid "<emph>Value1, Value2, ..., Value30</emph> is the list of values entered as a reference to a cell or as individual values."
-msgstr ""
+msgstr "<emph>Valore 1, Valore 2, ..., Valore 30</emph> è l'elenco dei valori che vengono digitati come riferimento di una cella oppure come valore proprio."
#: 04060109.xhp
msgctxt ""
@@ -21598,7 +21598,7 @@ msgctxt ""
"par_id2958769\n"
"help.text"
msgid "<item type=\"input\">=HYPERLINK(\"file:///C:/writer.odt#Specification\";\"Go to Writer bookmark\")</item> displays the text \"Go to Writer bookmark\", loads the specified text document and jumps to bookmark \"Specification\"."
-msgstr ""
+msgstr "<item type=\"input\">=COLLEGAMENTO(\"file:///C:/writer.odt#Specifica\";\"Vai al segnalibro di Writer\")</item> mostra il testo \"Vai al segnalibro di Writer\", carica il testo documento e passa al segnalibro \"Specifica\"."
#: 04060109.xhp
msgctxt ""
@@ -21910,7 +21910,7 @@ msgctxt ""
"par_id9912411\n"
"help.text"
msgid "See <link href=\"https://wiki.documentfoundation.org/Calc/Features/JIS_and_ASC_functions\" name=\"wiki.documentfoundation.org Calc/Features/JIS and ASC functions\">https://wiki.documentfoundation.org/Calc/Features/JIS_and_ASC_functions</link> for a conversion table."
-msgstr ""
+msgstr "Per la conversione di una tabella consultate <link href=\"https://wiki.documentfoundation.org/Calc/Features/JIS_and_ASC_functions\" name=\"wiki.documentfoundation.org Calc/Features/JIS and ASC functions\">https://wiki.documentfoundation.org/Calc/Features/JIS_and_ASC_functions</link>."
#: 04060110.xhp
msgctxt ""
@@ -22838,7 +22838,7 @@ msgctxt ""
"par_id1551561\n"
"help.text"
msgid "See <link href=\"https://wiki.documentfoundation.org/Calc/Features/JIS_and_ASC_functions\" name=\"wiki.documentfoundation.org Calc/Features/JIS and ASC functions\">https://wiki.documentfoundation.org/Calc/Features/JIS_and_ASC_functions</link> for a conversion table."
-msgstr ""
+msgstr "Per la conversione di una tabella consultate <link href=\"https://wiki.documentfoundation.org/Calc/Features/JIS_and_ASC_functions\" name=\"wiki.documentfoundation.org Calc/Features/JIS and ASC functions\">https://wiki.documentfoundation.org/Calc/Features/JIS_and_ASC_functions</link>."
#: 04060110.xhp
msgctxt ""
@@ -24726,7 +24726,7 @@ msgctxt ""
"par_id3147427\n"
"help.text"
msgid "<variable id=\"addintext\">The following describes and lists some of the available add-in functions.</variable>"
-msgstr ""
+msgstr "<variable id=\"addintext\">Qui di seguito sono descritte ed elencate alcune delle funzioni degli add-in disponibili.</variable>"
#: 04060111.xhp
msgctxt ""
@@ -25302,7 +25302,7 @@ msgctxt ""
"par_id3149351\n"
"help.text"
msgid "Add-ins can also be implemented through the %PRODUCTNAME <link href=\"https://api.libreoffice.org/\" name=\"api.libreoffice.org\">API</link>."
-msgstr ""
+msgstr "Gli add-in possono essere implementati con le <link href=\"https://api.libreoffice.org/\" name=\"api.libreoffice.org\">API</link> di %PRODUCTNAME."
#: 04060112.xhp
msgctxt ""
@@ -33926,7 +33926,7 @@ msgctxt ""
"par_id3153321\n"
"help.text"
msgid "NPV(Rate; Value1; Value2; ...; Value30)"
-msgstr ""
+msgstr "VAN(Tasso interesse; Valore 1; Valore 2; ...; Valore 30)"
#: 04060119.xhp
msgctxt ""
@@ -33958,7 +33958,7 @@ msgctxt ""
"par_id3154800\n"
"help.text"
msgid "What is the net present value of periodic payments of 10, 20 and 30 currency units with a discount rate of 8.75%. At time zero the costs were paid as -40 currency units."
-msgstr ""
+msgstr "A quanto ammonta il valore netto in contanti di pagamenti periodici pari a 10, 20 e 30 unità monetarie con un tasso di sconto pari a 8,75%? All'inizio è stato pagato un costo di -40 unità monetarie."
#: 04060119.xhp
msgctxt ""
@@ -35574,7 +35574,7 @@ msgctxt ""
"par_id3148585\n"
"help.text"
msgid "COUNT(Value1; Value2; ...; Value30)"
-msgstr ""
+msgstr "CONTA.NUMERI(Valore 1; Valore 2; ...; Valore 30)"
#: 04060181.xhp
msgctxt ""
@@ -35582,7 +35582,7 @@ msgctxt ""
"par_id3155827\n"
"help.text"
msgid "<emph>Value1; Value2, ..., Value30</emph> are 1 to 30 values or ranges representing the values to be counted."
-msgstr ""
+msgstr "<emph>Valore 1; Valore 2, ...; Valore 30</emph> sono da 1 a 30 valori o intervalli che rappresentano i valori da conteggiare."
#: 04060181.xhp
msgctxt ""
@@ -35646,7 +35646,7 @@ msgctxt ""
"par_id3153111\n"
"help.text"
msgid "COUNTA(Value1; Value2; ...; Value30)"
-msgstr ""
+msgstr "CONTA.VALORI(Valore 1; Valore 2; ...; Valore 30)"
#: 04060181.xhp
msgctxt ""
@@ -35654,7 +35654,7 @@ msgctxt ""
"par_id3150001\n"
"help.text"
msgid "<emph>Value1; Value2, ..., Value30</emph> are 1 to 30 arguments representing the values to be counted."
-msgstr ""
+msgstr "<emph>Valore 1; Valore 2, ..., Valore 30</emph> sono gli argomenti che rappresentano i valori da contare."
#: 04060181.xhp
msgctxt ""
@@ -35822,7 +35822,7 @@ msgctxt ""
"par_id3581652\n"
"help.text"
msgid "<item type=\"input\">=COUNTIF(A1:A10;2006)</item> - this returns 1."
-msgstr ""
+msgstr "<item type=\"input\">=CONTA.SE(A1:A10;2006)</item> restituisce 1."
#: 04060181.xhp
msgctxt ""
@@ -35830,7 +35830,7 @@ msgctxt ""
"par_id708639\n"
"help.text"
msgid "<item type=\"input\">=COUNTIF(A1:A10;B1)</item> - this returns 1."
-msgstr ""
+msgstr "<item type=\"input\">=CONTA.SE(A1:A10;B1)</item> restituisce 1."
#: 04060181.xhp
msgctxt ""
@@ -35838,7 +35838,7 @@ msgctxt ""
"par_id5169225\n"
"help.text"
msgid "<item type=\"input\">=COUNTIF(A1:A10;\">=2006\")</item> - this returns 4."
-msgstr ""
+msgstr "<item type=\"input\">=CONTA.SE(A1:A10;\">=2006\")</item> restituisce 4."
#: 04060181.xhp
msgctxt ""
@@ -35846,7 +35846,7 @@ msgctxt ""
"par_id2118594\n"
"help.text"
msgid "<item type=\"input\">=COUNTIF(A1:A10;\"<\"&B1)</item> - when B1 contains <item type=\"input\">2006</item>, this returns 6."
-msgstr ""
+msgstr "<item type=\"input\">=CONTA.SE(A1:A10;\"<\"&B1)</item> restituisce 6 se B1 contiene <item type=\"input\">2006</item>."
#: 04060181.xhp
msgctxt ""
@@ -35854,7 +35854,7 @@ msgctxt ""
"par_id166020\n"
"help.text"
msgid "<item type=\"input\">=COUNTIF(A1:A10;C2)</item> where cell C2 contains the text <item type=\"input\">>2006</item> counts the number of cells in the range A1:A10 which are >2006."
-msgstr ""
+msgstr "<item type=\"input\">=CONTA.SE(A1:A10;C2)</item>, in cui la cella C2 contiene il testo <item type=\"input\">>2006</item>, conta il numero delle celle che sono >2006 nell'intervallo A1:A10."
#: 04060181.xhp
msgctxt ""
@@ -36326,7 +36326,7 @@ msgctxt ""
"par_id3156118\n"
"help.text"
msgid "<item type=\"input\">=BETADIST(0.75;3;4)</item> returns the value 0.96."
-msgstr ""
+msgstr "<item type=\"input\">=DISTRIB.BETA(0,75;3;4)</item> restituisce il valore 0,96."
#: 04060181.xhp
msgctxt ""
@@ -37710,7 +37710,7 @@ msgctxt ""
"par_id2745774\n"
"help.text"
msgid "<item type=\"input\">=CHISQ.DIST(3; 2; 1) </item>equals 0.7768698399, the cumulative chi-square distribution with 2 degrees of freedom, at the value x = 3."
-msgstr ""
+msgstr "<item type=\"input\">=DISTRIB.CHI.QUAD(3; 2; 1) </item> restituisce 0,7768698399, la distribuzione del CHI al quadrato cumulativa con due gradi di libertà, al valore x = 3."
#: 04060181.xhp
msgctxt ""
@@ -39214,7 +39214,7 @@ msgctxt ""
"par_id3151015\n"
"help.text"
msgid "<emph>Beta</emph> is the parameter Beta of the Gamma distribution."
-msgstr ""
+msgstr "<emph>Beta</emph> è il parametro Beta della distribuzione gamma."
#: 04060182.xhp
msgctxt ""
@@ -39318,7 +39318,7 @@ msgctxt ""
"par_id2406201422390458\n"
"help.text"
msgid "<emph>Beta</emph> is the parameter Beta of the Gamma distribution."
-msgstr ""
+msgstr "<emph>Beta</emph> è il parametro Beta della distribuzione gamma."
#: 04060182.xhp
msgctxt ""
@@ -39462,7 +39462,7 @@ msgctxt ""
"par_id3153720\n"
"help.text"
msgid "GEOMEAN(Number1; Number2; ...; Number30)"
-msgstr ""
+msgstr "MEDIA.GEOMETRICA(Numero 1; Numero 2; ...; Numero 30)"
#: 04060182.xhp
msgctxt ""
@@ -39470,7 +39470,7 @@ msgctxt ""
"par_id3152585\n"
"help.text"
msgid "<emph>Number1, Number2, ..., Number30</emph> are numeric arguments or ranges that represent a random sample."
-msgstr ""
+msgstr "<emph>Numero 1, Numero 2, ...; Numero 30</emph> sono argomenti o intervalli numerici da 1 a 30, che rappresentano un campione casuale."
#: 04060182.xhp
msgctxt ""
@@ -39750,7 +39750,7 @@ msgctxt ""
"par_id3149287\n"
"help.text"
msgid "HARMEAN(Number1; Number2; ...; Number30)"
-msgstr ""
+msgstr "MEDIA.ARMONICA(Numero 1; Numero 2; ...; Numero 30)"
#: 04060182.xhp
msgctxt ""
@@ -39758,7 +39758,7 @@ msgctxt ""
"par_id3154303\n"
"help.text"
msgid "<emph>Number1, Number2, ..., Number30</emph> are up to 30 values or ranges, that can be used to calculate the harmonic mean."
-msgstr ""
+msgstr "<emph>Numero 1, Numero 2, ..., Numero 30</emph> sono da valori o intervalli 1 a 30 di cui si desidera calcolare la media armonica."
#: 04060182.xhp
msgctxt ""
@@ -40774,7 +40774,7 @@ msgctxt ""
"par_id3154508\n"
"help.text"
msgid "KURT(Number1; Number2; ...; Number30)"
-msgstr ""
+msgstr "CURTOSI(Numero 1; Numero 2; ...; Numero 30)"
#: 04060183.xhp
msgctxt ""
@@ -40782,7 +40782,7 @@ msgctxt ""
"par_id3145167\n"
"help.text"
msgid "<emph>Number1, Number2, ..., Number30</emph> are numeric arguments or ranges representing a random sample of distribution."
-msgstr ""
+msgstr "<emph>Numero 1, Numero 2, ...; Numero 30</emph> sono argomenti o intervalli numerici che rappresentano un campione casuale della distribuzione."
#: 04060183.xhp
msgctxt ""
@@ -41206,7 +41206,7 @@ msgctxt ""
"par_id3147340\n"
"help.text"
msgid "MAX(Number1; Number2; ...; Number30)"
-msgstr ""
+msgstr "MAX(Numero 1; Numero 2; ...; Numero 30)"
#: 04060184.xhp
msgctxt ""
@@ -41214,7 +41214,7 @@ msgctxt ""
"par_id3149568\n"
"help.text"
msgid "<emph>Number1, Number2, ..., Number30</emph> are numerical values or ranges."
-msgstr ""
+msgstr "<emph>Numero 1, Numero 2, ..., Numero 30</emph> sono valori o intervalli numerici."
#: 04060184.xhp
msgctxt ""
@@ -41286,7 +41286,7 @@ msgctxt ""
"par_id3166431\n"
"help.text"
msgid "MAXA(Value1; Value2; ...; Value30)"
-msgstr ""
+msgstr "MAX.VALORI(Valore 1; Valore 2; ...; Valore 30)"
#: 04060184.xhp
msgctxt ""
@@ -41294,7 +41294,7 @@ msgctxt ""
"par_id3150202\n"
"help.text"
msgid "<emph>Value1; Value2;...; Value30</emph> are values or ranges. Text has the value of 0."
-msgstr ""
+msgstr "<emph>Valore 1; Valore 2; ...; Valore 30</emph> sono valori o intervalli. Il testo ha il valore 0."
#: 04060184.xhp
msgctxt ""
@@ -41358,7 +41358,7 @@ msgctxt ""
"par_id3155264\n"
"help.text"
msgid "MEDIAN(Number1; Number2; ...; Number30)"
-msgstr ""
+msgstr "MEDIANA(Numero 1; Numero 2; ...; Numero 30)"
#: 04060184.xhp
msgctxt ""
@@ -41366,7 +41366,7 @@ msgctxt ""
"par_id3150109\n"
"help.text"
msgid "<emph>Number1, Number2, ..., Number30</emph> are values or ranges, which represent a sample. Each number can also be replaced by a reference."
-msgstr ""
+msgstr "<emph>Numero 1, Numero 2, ..., Numero 30</emph> sono valori o intervalli che rappresentano un campione. Al posto dei numeri si possono utilizzare riferimenti."
#: 04060184.xhp
msgctxt ""
@@ -41438,7 +41438,7 @@ msgctxt ""
"par_id3146964\n"
"help.text"
msgid "MIN(Number1; Number2; ...; Number30)"
-msgstr ""
+msgstr "MIN(Numero 1; Numero 2; ...; Numero 30)"
#: 04060184.xhp
msgctxt ""
@@ -41446,7 +41446,7 @@ msgctxt ""
"par_id3153486\n"
"help.text"
msgid "<emph>Number1, Number2, ..., Number30</emph> are numerical values or ranges."
-msgstr ""
+msgstr "<emph>Numero 1, Numero 2, ..., Numero 30</emph> sono valori o intervalli numerici."
#: 04060184.xhp
msgctxt ""
@@ -41510,7 +41510,7 @@ msgctxt ""
"par_id3153336\n"
"help.text"
msgid "MINA(Value1; Value2; ...; Value30)"
-msgstr ""
+msgstr "MIN.VALORI(Valore 1; Valore 2; ...; Valore 30)"
#: 04060184.xhp
msgctxt ""
@@ -41518,7 +41518,7 @@ msgctxt ""
"par_id3146098\n"
"help.text"
msgid "<emph>Value1, Value2, ..., Value30</emph> are values or ranges. Text has the value of 0."
-msgstr ""
+msgstr "<emph>Valore 1, Valore 2, ..., Valore 30</emph> sono valori o intervalli. Il testo ha il valore 0."
#: 04060184.xhp
msgctxt ""
@@ -41582,7 +41582,7 @@ msgctxt ""
"par_id3145636\n"
"help.text"
msgid "AVEDEV(Number1; Number2; ...; Number30)"
-msgstr ""
+msgstr "MEDIA.DEV(Numero 1; Numero 2; ...; Numero 30)"
#: 04060184.xhp
msgctxt ""
@@ -41590,7 +41590,7 @@ msgctxt ""
"par_id3157871\n"
"help.text"
msgid "<emph>Number1, Number2, ..., Number30</emph> are values or ranges that represent a sample. Each number can also be replaced by a reference."
-msgstr ""
+msgstr "<emph>Numero 1, Numero 2,..., Numero 30</emph> sono valori o intervalli che rappresentano un campione. Al posto dei numeri si possono utilizzare riferimenti."
#: 04060184.xhp
msgctxt ""
@@ -41646,7 +41646,7 @@ msgctxt ""
"par_id3154679\n"
"help.text"
msgid "AVERAGE(Number1; Number2; ...; Number30)"
-msgstr ""
+msgstr "MEDIA(Numero 1; Numero 2; ...; Numero 30)"
#: 04060184.xhp
msgctxt ""
@@ -41654,7 +41654,7 @@ msgctxt ""
"par_id3150741\n"
"help.text"
msgid "<emph>Number1, Number2, ..., Number30</emph> are numerical values or ranges."
-msgstr ""
+msgstr "<emph>Numero 1, Numero 2, ..., Numero 30</emph> sono valori o intervalli numerici."
#: 04060184.xhp
msgctxt ""
@@ -41710,7 +41710,7 @@ msgctxt ""
"par_id3149734\n"
"help.text"
msgid "AVERAGEA(Value1; Value2; ...; Value30)"
-msgstr ""
+msgstr "MEDIA.VALORI(Valore 1; Valore 2; ...; Valore 30)"
#: 04060184.xhp
msgctxt ""
@@ -41718,7 +41718,7 @@ msgctxt ""
"par_id3155260\n"
"help.text"
msgid "<emph>Value1, Value2, ..., Value30</emph> are values or ranges. Text has the value of 0."
-msgstr ""
+msgstr "<emph>Valore 1, Valore 2, ..., Valore 30</emph> sono valori o intervalli. Il testo ha il valore 0."
#: 04060184.xhp
msgctxt ""
@@ -41774,7 +41774,7 @@ msgctxt ""
"par_id3155950\n"
"help.text"
msgid "MODE(Number1; Number2; ...; Number30)"
-msgstr ""
+msgstr "MODA(Numero 1; Numero 2; ...; Numero 30)"
#: 04060184.xhp
msgctxt ""
@@ -41782,7 +41782,7 @@ msgctxt ""
"par_id3150337\n"
"help.text"
msgid "<emph>Number1, Number2, ..., Number30</emph> are numerical values or ranges."
-msgstr ""
+msgstr "<emph>Numero 1, Numero 2, ..., Numero 30</emph> sono valori o intervalli numerici."
#: 04060184.xhp
msgctxt ""
@@ -41846,7 +41846,7 @@ msgctxt ""
"par_id2950337\n"
"help.text"
msgid "<emph>Number1, Number2, ..., Number30</emph> are numerical values or ranges."
-msgstr ""
+msgstr "<emph>Numero 1, Numero 2, ..., Numero 30</emph> sono valori o intervalli numerici."
#: 04060184.xhp
msgctxt ""
@@ -41910,7 +41910,7 @@ msgctxt ""
"par_id2855950\n"
"help.text"
msgid "MODE.MULT(Number1; Number2; ...; Number30)"
-msgstr ""
+msgstr "MODA.MULT(Numero1; Numero2; ...; Numero30)"
#: 04060184.xhp
msgctxt ""
@@ -41918,7 +41918,7 @@ msgctxt ""
"par_id2850337\n"
"help.text"
msgid "<emph>Number1, Number2, ..., Number30</emph> are numerical values or ranges."
-msgstr ""
+msgstr "<emph>Numero 1, Numero 2, ..., Numero 30</emph> sono valori o intervalli numerici."
#: 04060184.xhp
msgctxt ""
@@ -43870,7 +43870,7 @@ msgctxt ""
"par_id3151191\n"
"help.text"
msgid "SKEW(Number1; Number2; ...; Number30)"
-msgstr ""
+msgstr "ASIMMETRIA(Numero 1; Numero 2; ...; Numero 30)"
#: 04060185.xhp
msgctxt ""
@@ -43878,7 +43878,7 @@ msgctxt ""
"par_id3155757\n"
"help.text"
msgid "<emph>Number1, Number2, ..., Number30</emph> are numerical values or ranges."
-msgstr ""
+msgstr "<emph>Numero 1, Numero 2, ..., Numero 30</emph> sono valori o intervalli numerici."
#: 04060185.xhp
msgctxt ""
@@ -44094,7 +44094,7 @@ msgctxt ""
"par_id3149946\n"
"help.text"
msgid "STDEV(Number1; Number2; ...; Number30)"
-msgstr ""
+msgstr "DEV.ST(Numero 1; Numero 2; ...; Numero 30)"
#: 04060185.xhp
msgctxt ""
@@ -44102,7 +44102,7 @@ msgctxt ""
"par_id3157904\n"
"help.text"
msgid "<emph>Number1, Number2, ..., Number30</emph> are numerical values or ranges representing a sample based on an entire population."
-msgstr ""
+msgstr "<emph>Numero 1, Numero 2,..., Numero 30</emph> sono valori o intervalli numerici corrispondenti a un campione della popolazione."
#: 04060185.xhp
msgctxt ""
@@ -44158,7 +44158,7 @@ msgctxt ""
"par_id3147422\n"
"help.text"
msgid "STDEVA(Value1; Value2; ...; Value30)"
-msgstr ""
+msgstr "DEV.ST.VALORI(Valore 1;Valore 2; ...;Valore 30)"
#: 04060185.xhp
msgctxt ""
@@ -44166,7 +44166,7 @@ msgctxt ""
"par_id3154547\n"
"help.text"
msgid "<emph>Value1, Value2, ..., Value30</emph> are values or ranges representing a sample derived from an entire population. Text has the value 0."
-msgstr ""
+msgstr "<emph>Valore 1, Valore 2, ..., Valore 30</emph> sono valori o intervalli che rappresentano un campione estratto dalla popolazione. Il testo ha il valore 0."
#: 04060185.xhp
msgctxt ""
@@ -44222,7 +44222,7 @@ msgctxt ""
"par_id3154392\n"
"help.text"
msgid "STDEVP(Number1; Number2; ...; Number30)"
-msgstr ""
+msgstr "DEV.ST.POP(Numero 1;Numero 2; ...; Numero 30)"
#: 04060185.xhp
msgctxt ""
@@ -44230,7 +44230,7 @@ msgctxt ""
"par_id3155261\n"
"help.text"
msgid "<emph>Number1, Number2, ..., Number30</emph> are numerical values or ranges representing an entire population."
-msgstr ""
+msgstr "<emph>Numero 1, Numero 2, ..., Numero 30</emph> sono valori o intervalli numerici che rappresentano un'intera popolazione."
#: 04060185.xhp
msgctxt ""
@@ -44286,7 +44286,7 @@ msgctxt ""
"par_id2954392\n"
"help.text"
msgid "STDEV.P(Number1; Number2; ...; Number30)"
-msgstr ""
+msgstr "DEV.ST.P(Numero1; Numero2; ...; Numero30)"
#: 04060185.xhp
msgctxt ""
@@ -44294,7 +44294,7 @@ msgctxt ""
"par_id2955261\n"
"help.text"
msgid "<emph>Number1, Number2, ..., Number30</emph> are numerical values or ranges representing an entire population."
-msgstr ""
+msgstr "<emph>Numero 1, Numero 2, ..., Numero 30</emph> sono valori o intervalli numerici che rappresentano un'intera popolazione."
#: 04060185.xhp
msgctxt ""
@@ -44350,7 +44350,7 @@ msgctxt ""
"par_id2854392\n"
"help.text"
msgid "STDEV.S(Number1; Number2; ...; Number30)"
-msgstr ""
+msgstr "DEV.ST.C(Numero1; Numero2; ...; Numero30)"
#: 04060185.xhp
msgctxt ""
@@ -44414,7 +44414,7 @@ msgctxt ""
"par_id3146851\n"
"help.text"
msgid "STDEVPA(Value1; Value2; ...; Value30)"
-msgstr ""
+msgstr "DEV.ST.POP.VALORI(Valore 1; Valore 2; ...; Valore30)"
#: 04060185.xhp
msgctxt ""
@@ -44422,7 +44422,7 @@ msgctxt ""
"par_id3153109\n"
"help.text"
msgid "<emph>Value1, Value2, ..., Value30</emph> are values or ranges representing an entire population. Text has the value 0."
-msgstr ""
+msgstr "<emph>Valore 1, Valore 2, ..., Valore 30</emph> sono valori o intervalli che rappresentano un'intera popolazione. Il testo ha il valore 0."
#: 04060185.xhp
msgctxt ""
@@ -44982,7 +44982,7 @@ msgctxt ""
"par_id3146790\n"
"help.text"
msgid "DEVSQ(Number1; Number2; ...; Number30)"
-msgstr ""
+msgstr "DEV.Q(Numero 1; Numero 2; ...; Numero 30)"
#: 04060185.xhp
msgctxt ""
@@ -44990,7 +44990,7 @@ msgctxt ""
"par_id3155995\n"
"help.text"
msgid "<emph>Number1, Number2, ..., Number30</emph> are numerical values or ranges representing a sample."
-msgstr ""
+msgstr "<emph>Numero 1, Numero 2, ..., Numero 30</emph> sono valori o intervalli numerici che rappresentano un campione."
#: 04060185.xhp
msgctxt ""
@@ -45742,7 +45742,7 @@ msgctxt ""
"par_id3153054\n"
"help.text"
msgid "VAR(Number1 ; Number2; ...; Number30)"
-msgstr ""
+msgstr "VAR(Numero 1; Numero 2; ...; Numero 30)"
#: 04060185.xhp
msgctxt ""
@@ -45750,7 +45750,7 @@ msgctxt ""
"par_id3148938\n"
"help.text"
msgid "<emph>Number1, Number2, ..., Number30</emph> are numerical values or ranges representing a sample based on an entire population."
-msgstr ""
+msgstr "<emph>Numero 1, Numero 2,..., Numero 30</emph> sono valori o intervalli numerici corrispondenti a un campione della popolazione."
#: 04060185.xhp
msgctxt ""
@@ -45806,7 +45806,7 @@ msgctxt ""
"par_id2953054\n"
"help.text"
msgid "VAR.S(Number1; Number2; ...; Number30)"
-msgstr ""
+msgstr "VAR.S(Numero1; Numero2; ...; Numero30)"
#: 04060185.xhp
msgctxt ""
@@ -45814,7 +45814,7 @@ msgctxt ""
"par_id2948938\n"
"help.text"
msgid "<emph>Number1, Number2, ..., Number30</emph> are numerical values or ranges representing a sample based on an entire population."
-msgstr ""
+msgstr "<emph>Numero 1, Numero 2,..., Numero 30</emph> sono valori o intervalli numerici corrispondenti a un campione della popolazione."
#: 04060185.xhp
msgctxt ""
@@ -45870,7 +45870,7 @@ msgctxt ""
"par_id3149999\n"
"help.text"
msgid "VARA(Value1; Value2; ...; Value30)"
-msgstr ""
+msgstr "VAR.VALORI(Valore 1; Valore 2; ...; Valore 30)"
#: 04060185.xhp
msgctxt ""
@@ -45878,7 +45878,7 @@ msgctxt ""
"par_id3158421\n"
"help.text"
msgid "<emph>Value1, Value2, ..., Value30</emph> are values or ranges representing a sample derived from an entire population. Text has the value 0."
-msgstr ""
+msgstr "<emph>Valore 1, Valore 2, ..., Valore 30</emph> sono valori o intervalli che rappresentano un campione estratto dalla popolazione. Il testo ha il valore 0."
#: 04060185.xhp
msgctxt ""
@@ -45934,7 +45934,7 @@ msgctxt ""
"par_id3147282\n"
"help.text"
msgid "VARP(Number1; Number2; ...; Number30)"
-msgstr ""
+msgstr "VAR.POP(Numero 1; Numero 2; ...; Numero 30)"
#: 04060185.xhp
msgctxt ""
@@ -45942,7 +45942,7 @@ msgctxt ""
"par_id3149793\n"
"help.text"
msgid "<emph>Number1, Number2, ..., Number30</emph> are numerical values or ranges representing an entire population."
-msgstr ""
+msgstr "<emph>Numero 1, Numero 2, ..., Numero 30</emph> sono valori o intervalli numerici che rappresentano un'intera popolazione."
#: 04060185.xhp
msgctxt ""
@@ -45998,7 +45998,7 @@ msgctxt ""
"par_id2947282\n"
"help.text"
msgid "VAR.P(Number1; Number2; ...; Number30)"
-msgstr ""
+msgstr "VAR.P(Numero1; Numero2; ...; Numero30)"
#: 04060185.xhp
msgctxt ""
@@ -46006,7 +46006,7 @@ msgctxt ""
"par_id2949793\n"
"help.text"
msgid "<emph>Number1, Number2, ..., Number30</emph> are numerical values or ranges representing an entire population."
-msgstr ""
+msgstr "<emph>Numero 1, Numero 2, ..., Numero 30</emph> sono valori o intervalli numerici che rappresentano un'intera popolazione."
#: 04060185.xhp
msgctxt ""
@@ -46062,7 +46062,7 @@ msgctxt ""
"par_id3149967\n"
"help.text"
msgid "VARPA(Value1; Value2; ...; Value30)"
-msgstr ""
+msgstr "VAR.POP.VALORI(Valore 1; Valore 2; ...; Valore30)"
#: 04060185.xhp
msgctxt ""
@@ -46070,7 +46070,7 @@ msgctxt ""
"par_id3149920\n"
"help.text"
msgid "<emph>Value1, Value2, ..., Value30</emph> are values or ranges representing an entire population."
-msgstr ""
+msgstr "<emph>Valore 1, Valore 2, ..., Valore 30</emph> sono valori o intervalli che rappresentano un'intera popolazione."
#: 04060185.xhp
msgctxt ""
@@ -46313,12 +46313,13 @@ msgid "<emph>Start</emph> is the start value of the interval whose probabilities
msgstr "<emph>Inizio</emph> è l'inizio dell'intervallo dei valori per il quale si desidera calcolare la probabilità."
#: 04060185.xhp
+#, fuzzy
msgctxt ""
"04060185.xhp\n"
"par_id3153694\n"
"help.text"
msgid "<emph>End</emph> (optional) is the end value of the interval whose probabilities are to be summed. If this parameter is missing, the probability for the <emph>Start</emph> value is calculated."
-msgstr ""
+msgstr "<emph>Limite superiore</emph> (opzionale) è il limite superiore per il quale si desidera calcolare la probabilità. Se manca questo parametro, si calcola la probabilità che esiste proprio il valore <emph>Limite inferiore</emph>."
#: 04060185.xhp
msgctxt ""
@@ -47934,7 +47935,7 @@ msgctxt ""
"par_id3149262\n"
"help.text"
msgid "<ahelp hid=\".uno:InsertExternalDataSourc\">Inserts data from an HTML, Calc, CSV or Excel file into the current sheet as a link. The data must be located within a named range.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".uno:InsertExternalDataSourc\">Inserisce dati da un file HTML, Calc, CSV o Excel nel foglio attivo, in forma di collegamento. I dati devono trovarsi all'interno di un'area con nome.</ahelp>"
#: 04090000.xhp
msgctxt ""
@@ -48294,7 +48295,7 @@ msgctxt ""
"par_id3156281\n"
"help.text"
msgid "<ahelp hid=\".\">Hides selected rows, columns or individual sheets.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Nasconde le righe, le colonne o i singoli fogli selezionate.</ahelp>"
#: 05030300.xhp
msgctxt ""
@@ -48374,7 +48375,7 @@ msgctxt ""
"par_id3150447\n"
"help.text"
msgid "<ahelp hid=\".\">Choose this command to show previously hidden rows or columns.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Scegliere questo comando per visualizzare le righe o le colonne precedentemente nascoste.</ahelp>"
#: 05030400.xhp
msgctxt ""
@@ -48686,7 +48687,7 @@ msgctxt ""
"par_id3145273\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/showsheetdialog/ShowSheetDialog\" visibility=\"visible\">Displays a list of all hidden sheets in your spreadsheet document.</ahelp> To show a certain sheet, click the corresponding entry on the list and confirm with OK."
-msgstr ""
+msgstr "<ahelp hid=\"modules/scalc/ui/showsheetdialog/ShowSheetDialog\" visibility=\"visible\">Visualizza un elenco di tutti i fogli nascosti nel foglio elettronico.</ahelp> Per visualizzare un determinato foglio, fate clic sulla voce corrispondente nell'elenco e confermate premendo OK."
#: 05060000.xhp
msgctxt ""
@@ -48742,7 +48743,7 @@ msgctxt ""
"par_id1001240\n"
"help.text"
msgid "Three options are available:"
-msgstr ""
+msgstr "Sono disponibili tre opzioni:"
#: 05060000.xhp
msgctxt ""
@@ -48750,7 +48751,7 @@ msgctxt ""
"par_id3155879\n"
"help.text"
msgid "<emph>Move the contents of the hidden cells into the first cell</emph>: <ahelp hid=\".\">The actual contents of the hidden cells are concatenated to the first cell, and hidden cells are emptied; the results of formulas referring to the hidden cells or the first cell will be updated.</ahelp>"
-msgstr ""
+msgstr "<emph>Sposta il contenuto delle celle nascoste all'interno della prima cella</emph>: <ahelp hid=\".\">il contenuto corrente delle celle nascoste è concatenato con la prima cella e le celle nascoste vengono svuotate; i risultati delle formule che si riferiscono alle celle nascoste o alla prima cella saranno aggiornati.</ahelp>"
#: 05060000.xhp
msgctxt ""
@@ -48758,7 +48759,7 @@ msgctxt ""
"par_id3155878\n"
"help.text"
msgid "<emph>Keep the contents of the hidden cells</emph>: <ahelp hid=\".\">The contents of the hidden cells are kept; the results of formulas referring to the hidden cells will not change.</ahelp>"
-msgstr ""
+msgstr "<emph>Mantieni il contenuto delle celle nascoste</emph>: <ahelp hid=\".\">il contenuto delle celle nascoste viene mantenuto; i risultati delle formule che si riferiscono alle celle nascoste non saranno modificati.</ahelp>"
#: 05060000.xhp
msgctxt ""
@@ -48766,7 +48767,7 @@ msgctxt ""
"par_id3155877\n"
"help.text"
msgid "<emph>Empty the contents of the hidden cells</emph>: <ahelp hid=\".\">The contents of the hidden cells are removed; the results of formulas referring to the hidden cells will be updated.</ahelp>"
-msgstr ""
+msgstr "<emph>Svuota il contenuto delle celle nascoste</emph>: <ahelp hid=\".\">il contenuto delle celle nascoste viene rimosso; i risultati delle formule che si riferiscono alle celle nascoste saranno aggiornati.</ahelp>"
#: 05060000.xhp
msgctxt ""
@@ -49854,7 +49855,7 @@ msgctxt ""
"par_id3154017\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/autoformattable/add\">Allows you to add the current formatting of a range of at least 4 x 4 cells to the list of predefined AutoFormats.</ahelp> The <emph>Add AutoFormat</emph> dialog then appears."
-msgstr ""
+msgstr "<ahelp hid=\"modules/scalc/ui/autoformattable/add\">Se è stata contrassegnata un'area di almeno 4 x 4 celle, si può importare la formattazione attuale come nuova formattazione automatica.</ahelp> Si apre quindi la finestra di dialogo <emph>Aggiungi formattazione automatica</emph>."
#: 05110000.xhp
msgctxt ""
@@ -49862,7 +49863,7 @@ msgctxt ""
"par_id3153708\n"
"help.text"
msgid "<ahelp hid=\".\">Enter a name and click <emph>OK</emph>. </ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Indicare un nome e fare clic su <emph>OK</emph>.</ahelp>"
#: 05110000.xhp
msgctxt ""
@@ -49878,7 +49879,7 @@ msgctxt ""
"par_id3153064\n"
"help.text"
msgid "<ahelp hid=\".\">Opens a dialog where you can change the name of the selected AutoFormat.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Apre una finestra di dialogo in cui si può cambiare il nome della formattazione automatica selezionata.</ahelp>"
#: 05110000.xhp
msgctxt ""
@@ -49886,7 +49887,7 @@ msgctxt ""
"par_id3153912\n"
"help.text"
msgid "The <emph>Rename AutoFormat</emph> dialog opens.<ahelp hid=\".\"> Enter the new name of the AutoFormat here.</ahelp>"
-msgstr ""
+msgstr "Si apre la finestra di dialogo <emph>Rinomina formattazione automatica</emph>. <ahelp hid=\".\">Inserire il nuovo nome della formattazione automatica nell'apposito campo.</ahelp>"
#: 05110000.xhp
msgctxt ""
@@ -50022,7 +50023,7 @@ msgctxt ""
"par_id3163710\n"
"help.text"
msgid "<variable id=\"bedingtetext\"><ahelp hid=\".\">Choose <emph>Conditional Formatting</emph> to define format styles depending on certain conditions.</ahelp></variable> If a style was already assigned to a cell, it remains unchanged. The style entered here is then evaluated. There are several types of conditional formatting that can be used."
-msgstr ""
+msgstr "<variable id=\"bedingtetext\"><ahelp hid=\".\">Scegliere l'opzione <emph>Formattazione condizionata</emph> per definire stili di formato che dipendono da determinate condizioni.</ahelp></variable> Se a una cella è stato già assegnato uno stile, questo non viene modificato. Lo stile inserito qui viene poi valutato. Possono essere utilizzati diversi tipi di formattazione condizionata."
#: 05120000.xhp
msgctxt ""
@@ -50134,7 +50135,7 @@ msgctxt ""
"par_id31494137\n"
"help.text"
msgid "<ahelp hid=\".\">Click the <emph>Add</emph> button to add another condition, click the <emph>Remove</emph> button to remove a condition.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Fare clic sul pulsante <emph>Aggiungi</emph> per aggiungere un'altra condizione, premere il pulsante <emph>Rimuovi</emph> per rimuovere una condizione.</ahelp>"
#: 05120000.xhp
msgctxt ""
@@ -50142,7 +50143,7 @@ msgctxt ""
"par_id31494138\n"
"help.text"
msgid "<ahelp hid=\".\">In the <emph>Range</emph> field, define the range of cells concerned by the conditional formatting.</ahelp> Click on the <emph>Shrink</emph> button to minimize the dialog box. Click again on the button to come back to the dialog box once the range is selected."
-msgstr ""
+msgstr "<ahelp hid=\".\">Nel campo <emph>Area</emph> definire l'intervallo di celle interessate dalla formattazione condizionata.</ahelp> Fate clic sul pulsante <emph>Riduci</emph> per minimizzare il riquadro di dialogo. Rifate clic sul pulsante per tornare al riquadro di dialogo una volta selezionata l'area di celle."
#: 05120000.xhp
msgctxt ""
@@ -50198,7 +50199,7 @@ msgctxt ""
"par_id3155605\n"
"help.text"
msgid "For a detailed explanation and examples, please visit <link href=\"https://wiki.documentfoundation.org/Faq/Calc/142\">How to apply a Color Scale Conditional Formatting page</link> in TDF Wiki."
-msgstr ""
+msgstr "Per spiegazioni ed esempi dettagliati, consultate la pagina <link href=\"https://wiki.documentfoundation.org/Faq/Calc/142\">How to apply a Color Scale Conditional Formatting</link> nel wiki di TDF."
#: 05120000.xhp
msgctxt ""
@@ -50294,7 +50295,7 @@ msgctxt ""
"par_id3155606\n"
"help.text"
msgid "For a detailed explanation and examples, please visit <link href=\"https://wiki.documentfoundation.org/Faq/Calc/141\">How to use Icon Set Conditional Formatting page</link> in TDF Wiki."
-msgstr ""
+msgstr "Per spiegazioni ed esempi dettagliati, consultate la pagina <link href=\"https://wiki.documentfoundation.org/Faq/Calc/141\">How to use Icon Set Conditional Formatting</link> nel wiki di TDF."
#: 05120000.xhp
msgctxt ""
@@ -50350,7 +50351,7 @@ msgctxt ""
"par_id3155906\n"
"help.text"
msgid "<ahelp hid=\".\">This dialog allows you to see all the conditional formatting defined in the spreadsheet.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Questa finestra di dialogo consente di vedere tutte le formattazioni condizionali definite nel foglio elettronico.</ahelp>"
#: 05120000.xhp
msgctxt ""
@@ -50366,7 +50367,7 @@ msgctxt ""
"par_id3155907\n"
"help.text"
msgid "The <emph>Manage Conditional Formatting</emph> dialog box opens. <ahelp hid=\".\">Here you can add, edit or remove one or several conditional formattings.</ahelp>"
-msgstr ""
+msgstr "Si apre la finestra di dialogo <emph>Gestisci formattazione condizionale</emph>. <ahelp hid=\".\">Qui è possibile aggiungere, modificare o rimuovere le formattazioni condizionali.</ahelp>"
#: 05120000.xhp
msgctxt ""
@@ -51038,7 +51039,7 @@ msgctxt ""
"par_id3150541\n"
"help.text"
msgid "<variable id=\"szenariotext\"><ahelp hid=\".\">Defines a scenario for the selected sheet area.</ahelp></variable>"
-msgstr ""
+msgstr "<variable id=\"szenariotext\"><ahelp hid=\".\">Definisce uno scenario per l'area del foglio selezionata.</ahelp></variable>"
#: 06050000.xhp
msgctxt ""
@@ -51054,7 +51055,7 @@ msgctxt ""
"par_id3151041\n"
"help.text"
msgid "<ahelp hid=\".\">Defines the name for the scenario. Use a clear and unique name so you can easily identify the scenario.</ahelp> You can also modify a scenario name in the Navigator through the <emph>Properties </emph>context menu command."
-msgstr ""
+msgstr "<ahelp hid=\".\">Definisce il nome per lo scenario. Usare un nome esplicativo che permetta d'identificare facilmente lo scenario.</ahelp> Il nome dello scenario può anche essere modificato nel Navigatore, usando il comando del menu di contesto <emph>Proprietà</emph>."
#: 06050000.xhp
msgctxt ""
@@ -51070,7 +51071,7 @@ msgctxt ""
"par_id3155411\n"
"help.text"
msgid "<ahelp hid=\".\">Specifies additional information about the scenario. This information will be displayed in the <link href=\"text/scalc/01/02110000.xhp\" name=\"Navigator\">Navigator</link> when you click the <emph>Scenarios</emph> icon and select the desired scenario.</ahelp> You can also modify this information in the Navigator through the <emph>Properties </emph>context menu command."
-msgstr ""
+msgstr "<ahelp hid=\".\">Specifica informazioni aggiuntive sullo scenario. Queste informazioni sono visualizzate nel <link href=\"text/scalc/01/02110000.xhp\" name=\"Navigatore\">Navigatore</link> facendo clic sull'icona <emph>Scenari</emph> e selezionando lo scenario desiderato.</ahelp> Potete modificare queste informazioni nel Navigatore, usando il comando del menu di contesto <emph>Proprietà</emph>."
#: 06050000.xhp
msgctxt ""
@@ -51102,7 +51103,7 @@ msgctxt ""
"par_id3151073\n"
"help.text"
msgid "<ahelp hid=\".\">Highlights the scenario in your table with a border. The color for the border is specified in the field to the right of this option.</ahelp> The border will have a title bar displaying the name of the last scenario. The button on the right of the scenario border offers you an overview of all the scenarios in this area, if several have been defined. You can choose any of the scenarios from this list without restrictions."
-msgstr ""
+msgstr "<ahelp hid=\".\">Evidenzia con un bordo lo scenario nella tabella. Il colore del bordo è specificato nel campo a destra di questa opzione.</ahelp> Il bordo comprende una barra del titolo in cui compare il nome dell'ultimo scenario. Se sono stati definiti più scenari, il pulsante a destra del bordo dello scenario offre una panoramica degli scenari di quest'area. Potete scegliere uno qualunque degli scenari di questo elenco."
#: 06050000.xhp
msgctxt ""
@@ -52942,7 +52943,7 @@ msgctxt ""
"par_id3154124\n"
"help.text"
msgid "<ahelp hid=\".\">Specify the settings for calculating and presenting subtotals.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Consente di specificare le impostazioni per il calcolo e la presentazione dei subtotali.</ahelp>"
#: 12050200.xhp
msgctxt ""
@@ -53030,7 +53031,7 @@ msgctxt ""
"par_id3149400\n"
"help.text"
msgid "<ahelp hid=\".\">Uses a custom sorting order that you defined in the Options dialog box at <emph>%PRODUCTNAME Calc - Sort Lists</emph>.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Utilizza un ordinamento personalizzato definito nella finestra di dialogo Opzioni in <emph>%PRODUCTNAME Calc - Ordina elenchi</emph>.</ahelp>"
#: 12050200.xhp
msgctxt ""
@@ -55742,7 +55743,7 @@ msgctxt ""
"par_id3153088\n"
"help.text"
msgid "<variable id=\"aktualisieren\"><ahelp hid=\".\">Updates a data range that was inserted from an external database. The data in the sheet is updated to match the data in the external database.</ahelp></variable>"
-msgstr ""
+msgstr "<variable id=\"aktualisieren\"><ahelp hid=\".\">Con questa funzione si può aggiornare un'area dati inserita da un database esterno. I dati nel foglio vengono aggiornati in modo da rispecchiare i dati attualmente presenti nel database esterno.</ahelp></variable>"
#: 12120000.xhp
msgctxt ""
@@ -56566,7 +56567,7 @@ msgctxt ""
"hd_id240920171003006302\n"
"help.text"
msgid "<link href=\"text/scalc/01/data_form.xhp\">Data Entry Forms for Spreadsheets</link>"
-msgstr ""
+msgstr "<link href=\"text/scalc/01/data_form.xhp\">Formulario di immissione dati per foglio elettronico</link>"
#: data_form.xhp
msgctxt ""
@@ -56926,7 +56927,7 @@ msgctxt ""
"par_id0403201618694537\n"
"help.text"
msgid "See the <link href=\"https://en.wikipedia.org/wiki/Exponential_smoothing\" name=\"English Wikipedia: Exponential smoothing\">Wikipedia on Exponential smoothing algorithms</link> for more information."
-msgstr ""
+msgstr "Per altre informazioni, si consulti l'articolo <link href=\"https://en.wikipedia.org/wiki/Exponential_smoothing\" name=\"English Wikipedia: Exponential smoothing\">Wikipedia sugli algoritmi di livellamento esponenziale</link> (in inglese)."
#: exponsmooth_embd.xhp
msgctxt ""
@@ -58486,7 +58487,7 @@ msgctxt ""
"par_id1102201617001888\n"
"help.text"
msgid "<item type=\"input\">COLOR(255;255;255;1)</item> returns 33554431"
-msgstr ""
+msgstr "<item type=\"input\">COLORE(255;255;255;1)</item> restituisce 33554431"
#: func_color.xhp
msgctxt ""
@@ -58494,7 +58495,7 @@ msgctxt ""
"par_id1102201618185378\n"
"help.text"
msgid "<item type=\"input\">COLOR(0;0;255;0)</item> returns 255"
-msgstr ""
+msgstr "<item type=\"input\">COLORE(0;0;255;0)</item> restituisce 255"
#: func_color.xhp
msgctxt ""
@@ -58502,7 +58503,7 @@ msgctxt ""
"par_id1102201618185326\n"
"help.text"
msgid "<item type=\"input\">COLOR(0;0;255;255)</item> returns 4278190335"
-msgstr ""
+msgstr "<item type=\"input\">COLORE(0;0;255;255)</item> restituisce 4278190335"
#: func_color.xhp
msgctxt ""
@@ -58510,7 +58511,7 @@ msgctxt ""
"par_id1102201618188326\n"
"help.text"
msgid "<item type=\"input\">COLOR(0;0;400;0)</item> returns Err:502 (Invalid argument) because the blue value is greater than 255."
-msgstr ""
+msgstr "<item type=\"input\">COLORE(0;0;400;0)</item> restituisce Err:502 (Argomento non valido) perché il valore blu è maggiore di 255."
#: func_countifs.xhp
msgctxt ""
@@ -62478,7 +62479,7 @@ msgctxt ""
"par_id27421466710275\n"
"help.text"
msgid "SKEWP(Number1; Number2; ...; Number30)"
-msgstr ""
+msgstr "ASIMMETRIA.P(Numero 1; Numero 2; ...; Numero 30)"
#: func_skewp.xhp
msgctxt ""
@@ -62518,7 +62519,7 @@ msgctxt ""
"par_id1102201618185326\n"
"help.text"
msgid "<item type=\"literal\">SKEWP(Number1; Number2)</item> always returns zero, if Number1 and Number2 results in two numbers."
-msgstr ""
+msgstr "<item type=\"literal\">ASIMMETRIA.P(Numero 1;Numero 2)</item> restituisce sempre zero se Numero 1 e Numero 2 danno come risultato due numeri."
#: func_skewp.xhp
msgctxt ""
@@ -63238,7 +63239,7 @@ msgctxt ""
"hd_id351517132879400\n"
"help.text"
msgid "Syntax"
-msgstr ""
+msgstr "Sintassi"
#: func_webservice.xhp
msgctxt ""
@@ -63262,7 +63263,7 @@ msgctxt ""
"hd_id901517132933934\n"
"help.text"
msgid "Example"
-msgstr ""
+msgstr "Esempio"
#: func_webservice.xhp
msgctxt ""
@@ -65190,7 +65191,7 @@ msgctxt ""
"par_id1000670\n"
"help.text"
msgid "For more information on descriptive statistics, refer to the <link href=\"https://en.wikipedia.org/wiki/Descriptive_statistics\" name=\"English Wikipedia: Descriptive statistics\">corresponding Wikipedia article</link>."
-msgstr ""
+msgstr "Per maggiori informazioni sulle statistiche descrittive, consultate l'<link href=\"https://en.wikipedia.org/wiki/Descriptive_statistics\" name=\"English Wikipedia: Descriptive statistics\">articolo wikipedia relativo</link> (in inglese)."
#: statistics.xhp
msgctxt ""
@@ -65374,7 +65375,7 @@ msgctxt ""
"par_id1001270\n"
"help.text"
msgid "For more information on ANOVA, refer to the <link href=\"https://en.wikipedia.org/wiki/ANOVA\" name=\"English Wikipedia: ANOVA\">corresponding Wikipedia article</link>."
-msgstr ""
+msgstr "Per maggiori informazioni su ANOVA, consultate l'<link href=\"https://en.wikipedia.org/wiki/ANOVA\" name=\"English Wikipedia: ANOVA\">articolo wikipedia relativo</link> (in inglese)."
#: statistics.xhp
msgctxt ""
@@ -65638,7 +65639,7 @@ msgctxt ""
"par_id1001790\n"
"help.text"
msgid "For more information on statistical correlation, refer to the <link href=\"https://en.wikipedia.org/wiki/Correlation\" name=\"English Wikipedia: Correlation\">corresponding Wikipedia article</link>."
-msgstr ""
+msgstr "Per maggiori informazioni sulla correlazione statistica, consultate consultate l'<link href=\"https://en.wikipedia.org/wiki/Correlation\" name=\"English Wikipedia: Correlation\">articolo wikipedia relativo</link> (in inglese)."
#: statistics.xhp
msgctxt ""
@@ -65750,7 +65751,7 @@ msgctxt ""
"par_id1001970\n"
"help.text"
msgid "For more information on statistical covariance, refer to the <link href=\"https://en.wikipedia.org/wiki/Covariance\" name=\"English Wikipedia: Covariance\">corresponding Wikipedia article</link>."
-msgstr ""
+msgstr "Per maggiori informazioni sulla covarianza statistica, consultate l'<link href=\"https://en.wikipedia.org/wiki/Covariance\" name=\"English Wikipedia: Covariance\">articolo wikipedia relativo</link> (in inglese)."
#: statistics.xhp
msgctxt ""
@@ -65862,7 +65863,7 @@ msgctxt ""
"par_id1002150\n"
"help.text"
msgid "For more information on exponential smoothing, refer to the <link href=\"https://en.wikipedia.org/wiki/Exponential_smoothing\" name=\"English Wikipedia: Exponential smoothing\">corresponding Wikipedia article</link>."
-msgstr ""
+msgstr "Per maggiori informazioni sul livellamento esponenziale, consultate l'<link href=\"https://en.wikipedia.org/wiki/Exponential_smoothing\" name=\"English Wikipedia: Exponential smoothing\">articolo wikipedia relativo</link> (in inglese)."
#: statistics.xhp
msgctxt ""
@@ -66070,7 +66071,7 @@ msgctxt ""
"par_id1002850\n"
"help.text"
msgid "For more information on paired t-tests, refer to the <link href=\"https://en.wikipedia.org/wiki/T-test\" name=\"English Wikipedia: T-test\">corresponding Wikipedia article</link>."
-msgstr ""
+msgstr "Per maggiori informazioni sui test t accoppiati, consultate l'<link href=\"https://en.wikipedia.org/wiki/T-test\" name=\"English Wikipedia: T-test\">articolo wikipedia relativo</link> (in inglese)."
#: statistics.xhp
msgctxt ""
@@ -66302,7 +66303,7 @@ msgctxt ""
"par_id1003270\n"
"help.text"
msgid "For more information on F-tests, refer to the <link href=\"https://en.wikipedia.org/wiki/F-test\" name=\"English Wikipedia: F-test\">corresponding Wikipedia article</link>."
-msgstr ""
+msgstr "Per maggiori informazioni sui test di F, consultate l'<link href=\"https://en.wikipedia.org/wiki/F-test\" name=\"English Wikipedia: F-test\">articolo wikipedia relativo</link> (in inglese)."
#: statistics.xhp
msgctxt ""
@@ -66510,7 +66511,7 @@ msgctxt ""
"par_id1003660\n"
"help.text"
msgid "For more information on Z-tests, refer to the <link href=\"https://en.wikipedia.org/wiki/Z-test\" name=\"English Wikipedia: Z-test\">corresponding Wikipedia article</link>."
-msgstr ""
+msgstr "Per maggiori informazioni sui test z, consultate l'<link href=\"https://en.wikipedia.org/wiki/Z-test\" name=\"English Wikipedia: Z-test\">articolo wikipedia relativo</link> (in inglese)."
#: statistics.xhp
msgctxt ""
@@ -66870,7 +66871,7 @@ msgctxt ""
"par_id1001270\n"
"help.text"
msgid "For more information on regression analysis, refer to the <link href=\"https://en.wikipedia.org/wiki/Regression_analysis\" name=\"English Wikipedia: Regression analysis\">corresponding Wikipedia article</link>."
-msgstr ""
+msgstr "Per maggiori informazioni sull'analisi di regressione, consultate l'<link href=\"https://en.wikipedia.org/wiki/Regression_analysis\" name=\"English Wikipedia: Regression analysis\">articolo wikipedia relativo</link> (in inglese)."
#: statistics_regression.xhp
msgctxt ""
@@ -67118,7 +67119,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "XML Data"
-msgstr ""
+msgstr "Dati XML"
#: xml_source.xhp
msgctxt ""
@@ -67190,7 +67191,7 @@ msgctxt ""
"hd_id601521494755603\n"
"help.text"
msgid "Source file"
-msgstr ""
+msgstr "File sorgente"
#: xml_source.xhp
msgctxt ""
@@ -67206,7 +67207,7 @@ msgctxt ""
"hd_id491521494788029\n"
"help.text"
msgid "Map to Document"
-msgstr ""
+msgstr "Fai corrispondere a documento"
#: xml_source.xhp
msgctxt ""
@@ -67270,7 +67271,7 @@ msgctxt ""
"hd_id581521494885433\n"
"help.text"
msgid "Mapped cell"
-msgstr ""
+msgstr "Cella corrispondente"
#: xml_source.xhp
msgctxt ""
@@ -67286,7 +67287,7 @@ msgctxt ""
"hd_id151521553082338\n"
"help.text"
msgid "Import"
-msgstr ""
+msgstr "Importa"
#: xml_source.xhp
msgctxt ""
diff --git a/source/it/helpcontent2/source/text/scalc/06.po b/source/it/helpcontent2/source/text/scalc/06.po
index 1972bee0c3b..b5ee76b5920 100644
--- a/source/it/helpcontent2/source/text/scalc/06.po
+++ b/source/it/helpcontent2/source/text/scalc/06.po
@@ -4,14 +4,17 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2018-05-08 15:11+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"PO-Revision-Date: 2018-06-11 11:51+0000\n"
+"Last-Translator: Valter Mura <valtermura@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: it\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: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1528717906.000000\n"
#: calcsamplefiles.xhp
msgctxt ""
@@ -27,15 +30,16 @@ msgctxt ""
"par_id161521663319917\n"
"help.text"
msgid "<object data=\"media/files/scalc/imtrigon.ods\" id=\"ods_id61521568603544\" type=\"application/vnd.oasis.opendocument.spreadsheet\"/>"
-msgstr ""
+msgstr "<object data=\"media/files/scalc/imtrigon.ods\" id=\"ods_id61521568603544\" type=\"application/vnd.oasis.opendocument.spreadsheet\"/>"
#: calcsamplefiles.xhp
+#, fuzzy
msgctxt ""
"calcsamplefiles.xhp\n"
"par_id161521663319918\n"
"help.text"
msgid "<object data=\"media/files/scalc/trigon.ods\" id=\"ods_id61521548603544\" type=\"application/vnd.oasis.opendocument.spreadsheet\"/>"
-msgstr ""
+msgstr "<object data=\"media/files/scalc/trigon.ods\" id=\"ods_id61521548603544\" type=\"application/vnd.oasis.opendocument.spreadsheet\"/>"
#: calcsamplefiles.xhp
msgctxt ""
@@ -43,4 +47,4 @@ msgctxt ""
"par_id161521563314918\n"
"help.text"
msgid "<object data=\"media/files/scalc/pivot.ods\" id=\"ods_id61521547603544\" type=\"application/vnd.oasis.opendocument.spreadsheet\"/>"
-msgstr ""
+msgstr "<object data=\"media/files/scalc/pivot.ods\" id=\"ods_id61521547603544\" type=\"application/vnd.oasis.opendocument.spreadsheet\"/>"
diff --git a/source/it/helpcontent2/source/text/scalc/guide.po b/source/it/helpcontent2/source/text/scalc/guide.po
index 0cb98696dcc..1b765087290 100644
--- a/source/it/helpcontent2/source/text/scalc/guide.po
+++ b/source/it/helpcontent2/source/text/scalc/guide.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: 2018-05-22 13:16+0200\n"
-"PO-Revision-Date: 2018-03-01 16:27+0000\n"
+"PO-Revision-Date: 2018-06-11 11:56+0000\n"
"Last-Translator: Valter Mura <valtermura@gmail.com>\n"
"Language-Team: Italian <l10n@it.libreoffice.org>\n"
"Language: it\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1519921631.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1528718198.000000\n"
#: address_auto.xhp
msgctxt ""
@@ -78,7 +78,7 @@ msgctxt ""
"par_id3149210\n"
"help.text"
msgid "If you want a name to be automatically recognized by Calc, the name must start with a letter and be composed of alphanumeric characters. If you enter the name in the formula yourself, enclose the name in single quotation marks ('). If a single quotation mark appears in a name, you must enter a backslash in front of the quotation mark, for example, <item type=\"literal\">'Harry\\'s Bar'</item>."
-msgstr ""
+msgstr "Perché un nome venga riconosciuto automaticamente da Calc, deve iniziare con una lettera ed essere formato da caratteri alfanumerici. Quando digitate un nome in una formula, racchiudetelo tra virgolette singole ('). Se nel nome è già presente una virgoletta singola o un apostrofo, è necessario farlo precedere da una barra retroversa, ad esempio <item type=\"literal\">'Harry\\'s Bar'</item>."
#: auto_off.xhp
msgctxt ""
@@ -3830,7 +3830,7 @@ msgctxt ""
"par_id4525284\n"
"help.text"
msgid "<link href=\"https://wiki.documentfoundation.org/Documentation/How_Tos/Defining_a_Data_Range\" name=\"wiki.documentfoundation.org Defining a Data Range\">Wiki page about defining a data range</link>"
-msgstr ""
+msgstr "<link href=\"https://wiki.documentfoundation.org/Documentation/How_Tos/Defining_a_Data_Range\" name=\"wiki.documentfoundation.org Defining a Data Range\">Pagina wiki che tratta la definizione di un'area dati</link>"
#: database_sort.xhp
msgctxt ""
@@ -9366,7 +9366,7 @@ msgctxt ""
"par_id3146976\n"
"help.text"
msgid "Open the context menu of the sheet tab and choose the <emph>Rename Sheet</emph> command. A dialog box appears where you can enter a new name."
-msgstr ""
+msgstr "Aprite il menu contestuale della linguetta del foglio e scegliete il comando <emph>Rinomina foglio</emph>. Compare una finestra di dialogo in cui potete inserire un nuovo nome."
#: rename_table.xhp
msgctxt ""
diff --git a/source/it/helpcontent2/source/text/schart.po b/source/it/helpcontent2/source/text/schart.po
index bfa394db242..af299d0bf2f 100644
--- a/source/it/helpcontent2/source/text/schart.po
+++ b/source/it/helpcontent2/source/text/schart.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: 2018-05-08 15:10+0200\n"
-"PO-Revision-Date: 2018-01-24 16:06+0000\n"
+"PO-Revision-Date: 2018-06-14 13:26+0000\n"
"Last-Translator: Valter Mura <valtermura@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: it\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1516809967.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1528982798.000000\n"
#: main0000.xhp
msgctxt ""
@@ -46,7 +46,7 @@ msgctxt ""
"par_id3154685\n"
"help.text"
msgid "<variable id=\"chart\">$[officename] lets you present data graphically in a chart, so that you can visually compare data series and view trends in the data. You can insert charts into spreadsheets, text documents, drawings, and presentations.</variable>"
-msgstr ""
+msgstr "<variable id=\"chart\">$[officename] vi permette di rappresentare i dati in forma di grafico, in modo da poter confrontare visivamente più serie di dati e visualizzarne le tendenze. Potete inserire grafici nei fogli di calcolo, documenti di testo, disegni e presentazioni.</variable>"
#: main0000.xhp
msgctxt ""
@@ -654,7 +654,7 @@ msgctxt ""
"par_id0810200902300699\n"
"help.text"
msgid "Opens the Data Table dialog where you can edit the chart data."
-msgstr ""
+msgstr "Apre la finestra Tabella dati dove potete modificare i dati del grafico."
#: main0202.xhp
msgctxt ""
@@ -670,7 +670,7 @@ msgctxt ""
"par_id0810200902300630\n"
"help.text"
msgid "The Horizontal Grids icon on the Formatting bar toggles the visibility of the grid display for the Y axis."
-msgstr ""
+msgstr "Con l'icona Griglie orizzontali sulla barra Formattazione si può attivare o disattivare la visualizzazione della griglia per l'asse Y."
#: main0202.xhp
msgctxt ""
@@ -686,7 +686,7 @@ msgctxt ""
"par_id081020090230076\n"
"help.text"
msgid "To show or hide a legend, click Legend On/Off on the Formatting bar."
-msgstr ""
+msgstr "Per visualizzare o nascondere una legenda, fate clic su Mostra/Nascondi legenda nella barra di Formattazione."
#: main0202.xhp
msgctxt ""
@@ -718,7 +718,7 @@ msgctxt ""
"par_id0810200902300834\n"
"help.text"
msgid "Moves all chart elements to their default positions inside the current chart. This function does not alter the chart type or any other attributes other than the position of elements."
-msgstr ""
+msgstr "Sposta tutti gli elementi del grafico nelle rispettive posizioni predefinite. Questa funzione non altera il tipo di grafico e gli altri attributi ma solo la posizione degli elementi."
#: main0503.xhp
msgctxt ""
diff --git a/source/it/helpcontent2/source/text/schart/00.po b/source/it/helpcontent2/source/text/schart/00.po
index 3a88c2e9d11..d6db5c18637 100644
--- a/source/it/helpcontent2/source/text/schart/00.po
+++ b/source/it/helpcontent2/source/text/schart/00.po
@@ -4,8 +4,8 @@ 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: 2018-05-08 15:10+0200\n"
-"PO-Revision-Date: 2017-07-16 11:35+0000\n"
-"Last-Translator: italovignoli <italo@italovignoli.com>\n"
+"PO-Revision-Date: 2018-06-07 14:44+0000\n"
+"Last-Translator: Valter Mura <valtermura@gmail.com>\n"
"Language-Team: Italian <l10n@it.libreoffice.org>\n"
"Language: it\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1500204922.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1528382657.000000\n"
#: 00000004.xhp
msgctxt ""
@@ -70,7 +70,7 @@ msgctxt ""
"par_id3153160\n"
"help.text"
msgid "<variable id=\"efgttl\">Choose <emph>Insert - Titles</emph> (Charts)</variable>"
-msgstr ""
+msgstr "<variable id=\"efgttl\">Scegliete <emph>Inserisci - Titoli</emph> (Grafici)</variable>"
#: 00000004.xhp
msgctxt ""
@@ -454,7 +454,7 @@ msgctxt ""
"par_id161525135741575\n"
"help.text"
msgid "<emph>Insert Chart</emph>"
-msgstr ""
+msgstr "<emph>Inserisci grafico</emph>"
#: 00000004.xhp
msgctxt ""
@@ -462,7 +462,7 @@ msgctxt ""
"par_id9631641\n"
"help.text"
msgid "Choose <emph>Insert - Chart...</emph>"
-msgstr ""
+msgstr "Scegliete <emph>Inserisci - Grafico...</emph>"
#: 00000004.xhp
msgctxt ""
@@ -470,7 +470,7 @@ msgctxt ""
"par_id2985320\n"
"help.text"
msgid "Choose <emph>Insert - Chart...</emph>"
-msgstr ""
+msgstr "Scegliete <emph>Inserisci - Grafico...</emph>"
#: 00000004.xhp
msgctxt ""
@@ -478,7 +478,7 @@ msgctxt ""
"par_id1096530\n"
"help.text"
msgid "Double-click a chart, then choose <emph>Format - Data Ranges</emph>"
-msgstr ""
+msgstr "Fate doppio clic sul grafico, quindi scegliete <emph>Formato - Aree dati</emph>"
#: 00000004.xhp
msgctxt ""
diff --git a/source/it/helpcontent2/source/text/schart/01.po b/source/it/helpcontent2/source/text/schart/01.po
index 7735a4ca28f..7bf2b5be61f 100644
--- a/source/it/helpcontent2/source/text/schart/01.po
+++ b/source/it/helpcontent2/source/text/schart/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: 2018-02-27 13:56+0100\n"
-"PO-Revision-Date: 2018-04-05 16:12+0000\n"
+"PO-Revision-Date: 2018-06-07 14:45+0000\n"
"Last-Translator: Valter Mura <valtermura@gmail.com>\n"
"Language-Team: Italian <l10n@it.libreoffice.org>\n"
"Language: it\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1522944738.000000\n"
+"X-POOTLE-MTIME: 1528382703.000000\n"
#: 03010000.xhp
msgctxt ""
@@ -1142,7 +1142,7 @@ msgctxt ""
"par_id0428200810573991\n"
"help.text"
msgid "<ahelp hid=\".\">Enable to use the positive error values also as negative error values. You can only change the value of the \"Positive (+)\" box. That value gets copied to the \"Negative (-)\" box automatically.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Abilitare l'uso dei valori dell'errore positivo anche come valori dell'errore negativo. Si può cambiare solo il valore della casella \"Positivo (+)\". Quel valore viene copiato automaticamente nella casella \"Negativo (-)\" .</ahelp>"
#: 04050000.xhp
msgctxt ""
@@ -3230,7 +3230,7 @@ msgctxt ""
"par_id3154319\n"
"help.text"
msgid "<variable id=\"achsen\"><ahelp hid=\".\">Opens a dialog, where you can edit the properties of the selected axis.</ahelp></variable> The name of the dialog depends on the selected axis."
-msgstr ""
+msgstr "<variable id=\"achsen\"><ahelp hid=\".\">Apre una finestra in cui si possono modificare le proprietà dell'asse selezionato.</ahelp></variable> Il nome della finestra dipende dall'asse selezionato."
#: 05040100.xhp
msgctxt ""
diff --git a/source/it/helpcontent2/source/text/sdraw/guide.po b/source/it/helpcontent2/source/text/sdraw/guide.po
index f9a23b697e8..f8002da7ca9 100644
--- a/source/it/helpcontent2/source/text/sdraw/guide.po
+++ b/source/it/helpcontent2/source/text/sdraw/guide.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: 2018-04-17 15:54+0200\n"
-"PO-Revision-Date: 2018-01-30 20:10+0000\n"
+"PO-Revision-Date: 2018-06-07 14:46+0000\n"
"Last-Translator: Valter Mura <valtermura@gmail.com>\n"
"Language-Team: Italian <l10n@it.libreoffice.org>\n"
"Language: it\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1517343044.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1528382776.000000\n"
#: align_arrange.xhp
msgctxt ""
@@ -262,7 +262,7 @@ msgctxt ""
"bm_id3149263\n"
"help.text"
msgid "<bookmark_value>colors; defining</bookmark_value> <bookmark_value>user-defined colors</bookmark_value> <bookmark_value>custom colors</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Colore;definire</bookmark_value><bookmark_value>Utente,definito da;colore</bookmark_value><bookmark_value>Personalizzato;colore</bookmark_value>"
#: color_define.xhp
msgctxt ""
diff --git a/source/it/helpcontent2/source/text/shared/00.po b/source/it/helpcontent2/source/text/shared/00.po
index fece807f95e..c9398793551 100644
--- a/source/it/helpcontent2/source/text/shared/00.po
+++ b/source/it/helpcontent2/source/text/shared/00.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-22 13:16+0200\n"
-"PO-Revision-Date: 2018-02-19 13:48+0000\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
+"PO-Revision-Date: 2018-06-11 12:16+0000\n"
"Last-Translator: Valter Mura <valtermura@gmail.com>\n"
"Language-Team: Italian <l10n@it.libreoffice.org>\n"
"Language: it\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1519048139.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1528719397.000000\n"
#: 00000001.xhp
msgctxt ""
@@ -397,16 +397,16 @@ msgctxt ""
"00000001.xhp\n"
"hd_id3149670\n"
"help.text"
-msgid "Back"
-msgstr "Indietro"
+msgid "Reset"
+msgstr ""
#: 00000001.xhp
msgctxt ""
"00000001.xhp\n"
"par_id3145068\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optionsdialog/revert\">Resets modified values back to the $[officename] default values.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/optionsdialog/revert\">Ripristina i valori modificati riportandoli ai valori predefiniti di $[officename].</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optionsdialog/revert\">Resets changes made to the current tab to those applicable when this dialog was opened.</ahelp>"
+msgstr ""
#: 00000001.xhp
msgctxt ""
@@ -552,6 +552,54 @@ msgctxt ""
msgid "<variable id=\"ShiftF1\">Press Shift+F1 and point to a control to learn more about that control.</variable>"
msgstr "<variable id=\"ShiftF1\">Premete Maiusc+F1 e puntate su un campo di controllo per ottenere maggiori informazioni su di esso.</variable>"
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"hd_id631527692833772\n"
+"help.text"
+msgid "Options dialog buttons"
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"hd_id831527692839432\n"
+"help.text"
+msgid "OK"
+msgstr "OK"
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"par_id471527692844934\n"
+"help.text"
+msgid "Save the changes in the page and close the Options dialog."
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"hd_id261527692850720\n"
+"help.text"
+msgid "Cancel"
+msgstr "Annulla"
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"par_id571527692855533\n"
+"help.text"
+msgid "Close the Options dialog and discard all changes done."
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"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 Options dialog."
+msgstr ""
+
#: 00000002.xhp
msgctxt ""
"00000002.xhp\n"
@@ -606,7 +654,7 @@ msgctxt ""
"hd_id151525000078771\n"
"help.text"
msgid "EPUB"
-msgstr ""
+msgstr "EPUB"
#: 00000002.xhp
msgctxt ""
@@ -2862,7 +2910,7 @@ msgctxt ""
"par_id3145669\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\"></caseinline><caseinline select=\"DRAW\"></caseinline><caseinline select=\"IMPRESS\"></caseinline><defaultinline>$[officename] Writer can read various versions of the Microsoft Word text format. You also can save your own texts in Word format. However, not everything available with $[officename] Writer can be transferred to Word, and not everything can be imported.</defaultinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\"></caseinline><caseinline select=\"DRAW\"></caseinline><caseinline select=\"IMPRESS\"></caseinline><defaultinline>$[officename] Writer è in grado di leggere diverse versioni del formato di testo di Microsoft Word. Potete salvare in formato Word anche i vostri testi. Tuttavia non tutto ciò che è possibile con $[officename] Writer, può essere trasferito in MS Word e non tutto è importabile.</defaultinline></switchinline>"
#: 00000020.xhp
msgctxt ""
@@ -3310,7 +3358,7 @@ msgctxt ""
"par_idN10725\n"
"help.text"
msgid "The OpenDocument file format (ODF) is a standardized file format used by many software applications. You can find more information at the Wikipedia site: <link href=\"https://en.wikipedia.org/wiki/OpenDocument\" name=\"English Wikipedia: OpenDocument\">wikipedia.org/wiki/OpenDocument</link>."
-msgstr ""
+msgstr "Il formato di file OpenDocument (ODF) è un formato standardizzato utilizzato da molte applicazioni software. Ulteriori informazioni possono essere reperite sul sito di Wikipedia: <link href=\"https://it.wikipedia.org/wiki/OpenDocument\">it.wikipedia.org/wiki/OpenDocument</link>."
#: 00000021.xhp
msgctxt ""
@@ -4686,7 +4734,7 @@ msgctxt ""
"par_id3156329\n"
"help.text"
msgid "<ahelp hid=\".\">Separates data into columns using the custom separator that you specify. Note: The custom separator must also be contained in your data.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Separa i dati in colonne usando il separatore specificato. Nota: Il separatore deve essere contenuto nei dati.</ahelp>"
#: 00000208.xhp
msgctxt ""
@@ -4726,7 +4774,7 @@ msgctxt ""
"hd_id3155341\n"
"help.text"
msgid "String delimiter"
-msgstr ""
+msgstr "Delimitatore di stringa"
#: 00000208.xhp
msgctxt ""
@@ -4758,7 +4806,7 @@ msgctxt ""
"hd_id314847411\n"
"help.text"
msgid "Format quoted field as text"
-msgstr ""
+msgstr "Formatta il campo tra virgolette come testo"
#: 00000208.xhp
msgctxt ""
@@ -4806,7 +4854,7 @@ msgctxt ""
"hd_id171220172142361711\n"
"help.text"
msgid "Skip empty cells"
-msgstr ""
+msgstr "Salta righe vuote"
#: 00000208.xhp
msgctxt ""
@@ -5078,7 +5126,7 @@ msgctxt ""
"par_id3147377\n"
"help.text"
msgid "<ahelp hid=\".\">Shows how the imported text will look after it is separated into columns. To apply a format to a column when it is imported, click a column and select a <emph>Column type</emph>. When you select a <emph>Column type</emph>, the column heading displays the applied format.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Mostra l'aspetto del testo importato dopo la separazione in colonne. Per applicare un formato a una colonna durante l'importazione, fare clic sulla colonna e selezionare un <emph>Tipo colonna</emph>. Selezionando un <emph>Tipo colonna</emph>, l'intestazione della colonna mostra il formato applicato.</ahelp>"
#: 00000208.xhp
msgctxt ""
@@ -6190,7 +6238,7 @@ msgctxt ""
"par_id421525017874627\n"
"help.text"
msgid "Export Directly as EPUB"
-msgstr ""
+msgstr "Esporta direttamente in EPUB"
#: 00000401.xhp
msgctxt ""
@@ -6950,7 +6998,7 @@ msgctxt ""
"par_id3149962\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">Zoom also with (+) (-) (×) and (÷) on the number keypad</caseinline><caseinline select=\"IMPRESS\">Zoom also with (+) (-) (×) and (÷) on the number keypad</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"DRAW\">Potete attivare la funzione di zoom anche con i tasti (+) (-) (×) e (÷) del tastierino numerico</caseinline> <caseinline select=\"IMPRESS\">Potete attivare la funzione di zoom anche con i tasti (+) (-) (×) e (÷) del tastierino numerico.</caseinline></switchinline>"
#: 00000403.xhp
msgctxt ""
@@ -7158,7 +7206,7 @@ msgctxt ""
"par_idN1091B\n"
"help.text"
msgid "<variable id=\"grid\">Choose <emph>View - Grid</emph> (Impress or Draw)</variable>"
-msgstr ""
+msgstr "<variable id=\"grid\">Scegliete <emph>Visualizza - Griglia</emph> (Impress o Draw)</variable>"
#: 00000403.xhp
msgctxt ""
@@ -7166,7 +7214,7 @@ msgctxt ""
"par_idN1092E\n"
"help.text"
msgid "<variable id=\"guides\">Choose <emph>View - Snap Lines</emph> (Impress or Draw)</variable>"
-msgstr ""
+msgstr "<variable id=\"guides\">Scegliete <emph>Visualizza - Linee di cattura</emph> (Impress o Draw)</variable>"
#: 00000404.xhp
msgctxt ""
@@ -7670,7 +7718,7 @@ msgctxt ""
"par_id3146957\n"
"help.text"
msgid "<variable id=\"galleryregisterdateien\">Choose <emph>Tools - Gallery</emph> or click the <emph>Gallery </emph>icon on the <emph>Standard</emph> Bar - <emph>New Theme</emph> button - <emph>Files</emph> tab.</variable>"
-msgstr ""
+msgstr "<variable id=\"galleryregisterdateien\">Scegliete <emph>Strumenti - Galleria</emph> o fate clic sull'icona <emph>Galleria</emph> nella barra <emph>Standard</emph>, pulsante <emph>Nuova categoria</emph>, scheda <emph>File</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -7678,7 +7726,7 @@ msgctxt ""
"par_id3166411\n"
"help.text"
msgid "Choose <emph>Tools - Spelling</emph>."
-msgstr ""
+msgstr "Scegliete <emph>Strumenti - Ortografia</emph>."
#: 00000406.xhp
msgctxt ""
@@ -7718,7 +7766,7 @@ msgctxt ""
"par_id3156326\n"
"help.text"
msgid "<variable id=\"hangul\">Choose <emph>Tools - Language - Hangul/Hanja Conversion</emph>. Asian language support must be enabled.</variable>"
-msgstr ""
+msgstr "<variable id=\"hangul\">Scegliete <emph>Strumenti - Lingua - Conversione Hangul/Hanja </emph> (deve essere abilitato il supporto delle lingue asiatiche).</variable>"
#: 00000406.xhp
msgctxt ""
@@ -7726,7 +7774,7 @@ msgctxt ""
"par_idN10705\n"
"help.text"
msgid "<variable id=\"chinese\">Choose <emph>Tools - Language - Chinese Conversion</emph>. Asian language support must be enabled.</variable>"
-msgstr ""
+msgstr "<variable id=\"chinese\">Scegliete <emph>Strumenti - Lingua - Conversione cinese</emph> (deve essere abilitato il supporto delle lingue asiatiche).</variable>"
#: 00000406.xhp
msgctxt ""
@@ -7742,7 +7790,7 @@ msgctxt ""
"par_id3155419\n"
"help.text"
msgid "<variable id=\"rechtschreibungmenue\">Choose <emph>Tools - Spelling</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"rechtschreibungmenue\">Scegliete <emph>Strumenti - Ortografia</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -7750,7 +7798,7 @@ msgctxt ""
"par_id3150771\n"
"help.text"
msgid "<variable id=\"zoptionen\">Choose <emph>Tools - Spelling</emph>, then click <emph>Options</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"zoptionen\">Scegliete <emph>Strumenti - Ortografia</emph>, quindi fate clic su <emph>Opzioni</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -7774,7 +7822,7 @@ msgctxt ""
"par_id3153320\n"
"help.text"
msgid "Choose <emph>Tools - Color Replacer</emph> ($[officename] Draw and $[officename] Impress)."
-msgstr ""
+msgstr "Scegliete <emph>Strumenti - Sostituzione colore</emph> ($[officename] Draw e $[officename] Impress)."
#: 00000406.xhp
msgctxt ""
@@ -7782,7 +7830,7 @@ msgctxt ""
"par_idN107E9\n"
"help.text"
msgid "<variable id=\"mediaplayer\">Choose <emph>Tools - Media Player</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"mediaplayer\">Scegliete <emph>Strumenti - Lettore multimediale</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -7790,7 +7838,7 @@ msgctxt ""
"par_id3151385\n"
"help.text"
msgid "<variable id=\"makro\">Choose <emph>Tools - Macros - Organize Macros - %PRODUCTNAME Basic</emph>, or press <switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>+F11 (if not assigned by your system).</variable>"
-msgstr ""
+msgstr "<variable id=\"makro\">Scegliete <emph>Strumenti - Macro - Organizza macro - %PRODUCTNAME Basic</emph>, o premete <switchinline select=\"sys\"><caseinline select=\"MAC\">Opzione</caseinline><defaultinline>Alt</defaultinline></switchinline>+F11 (se la combinazione non è già assegnata dal vostro sistema).</variable>"
#: 00000406.xhp
msgctxt ""
@@ -7798,7 +7846,7 @@ msgctxt ""
"par_id3149456\n"
"help.text"
msgid "Choose <emph>Tools - Macros - Record Macro</emph>."
-msgstr ""
+msgstr "Scegliete <emph>Strumenti - Macro - Registra macro</emph>."
#: 00000406.xhp
msgctxt ""
@@ -7806,7 +7854,7 @@ msgctxt ""
"par_id3150398\n"
"help.text"
msgid "<variable id=\"passwort\">Choose <emph>Tools - Macros - Organize Macros - %PRODUCTNAME Basic</emph>, click the <emph>Organizer</emph> button, click the <emph>Libraries</emph> tab, and then click the <emph>Password</emph> button.</variable>"
-msgstr ""
+msgstr "<variable id=\"passwort\">Scegliete <emph>Strumenti - Macro - Organizza macro - %PRODUCTNAME Basic</emph>, fate clic sul pulsante <emph>Gestisci</emph>, scegliete la scheda <emph>Librerie</emph> e fate clic sul pulsante <emph>Password</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -7814,7 +7862,7 @@ msgctxt ""
"par_idN10843\n"
"help.text"
msgid "<variable id=\"packagemanager\">Choose <emph>Tools - Extension Manager</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"packagemanager\">Scegliete <emph>Strumenti - Gestione estensioni</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -7822,7 +7870,7 @@ msgctxt ""
"par_id9988402\n"
"help.text"
msgid "<variable id=\"packagemanager_eu\">Choose <emph>Tools - Extension Manager</emph>, click <emph>Updates</emph> button.</variable>"
-msgstr ""
+msgstr "<variable id=\"packagemanager_eu\">Scegliete <emph>Strumenti - Gestione estensioni</emph>, fate clic sul pulsante <emph>Controlla aggiornamenti...</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -7830,7 +7878,7 @@ msgctxt ""
"par_id3151106\n"
"help.text"
msgid "<variable id=\"xmlfilter\">Choose <emph>Tools - XML Filter Settings</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"xmlfilter\">Scegliete <emph>Strumenti - Impostazioni filtro XML</emph></variable>."
#: 00000406.xhp
msgctxt ""
@@ -7838,7 +7886,7 @@ msgctxt ""
"par_id3153778\n"
"help.text"
msgid "<variable id=\"xmlfilteredit\">Choose <emph>Tools - XML Filter Settings</emph>, then click <emph>New</emph> or <emph>Edit</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"xmlfilteredit\">Scegliete <emph>Strumenti - Impostazioni filtro XML</emph> e fate clic su <emph>Nuovo</emph> o <emph>Modifica</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -7846,7 +7894,7 @@ msgctxt ""
"par_id3148979\n"
"help.text"
msgid "<variable id=\"xmlfiltertest\">Choose <emph>Tools - XML Filter Settings</emph>, then click <emph>Test XSLTs</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"xmlfiltertest\">Scegliete <emph>Strumenti - Impostazioni filtro XML</emph>, poi fate clic su <emph>Prova XSLT</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -7854,7 +7902,7 @@ msgctxt ""
"par_id3148672\n"
"help.text"
msgid "<variable id=\"anpassen\">Choose <emph>Tools - Customize</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"anpassen\">Scegliete <emph>Strumenti - Personalizza</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -7862,7 +7910,7 @@ msgctxt ""
"par_id3147230\n"
"help.text"
msgid "<variable id=\"menue\">Choose <emph>Tools - Customize - Menus</emph> tab.</variable>"
-msgstr ""
+msgstr "<variable id=\"menue\">Scegliete <emph>Strumenti - Personalizza </emph>, scheda <emph>Menu</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -7870,7 +7918,7 @@ msgctxt ""
"par_idN108E9\n"
"help.text"
msgid "<variable id=\"menuenew\">Choose <emph>Tools - Customize - Menus</emph> tab, click <emph>New</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"menuenew\">Scegliete <emph>Strumenti - Personalizza</emph>, scheda <emph>Menu</emph>, poi fate clic su <emph>Nuovo</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -7878,7 +7926,7 @@ msgctxt ""
"par_idN10919\n"
"help.text"
msgid "<variable id=\"menuemove\">Choose <emph>Tools - Customize - Menus</emph> tab, click <emph>Menu - Move</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"menuemove\">Scegliete <emph>Strumenti - Personalizza</emph>, scheda <emph>Menu</emph>, poi fate clic su <emph>Menu - Sposta</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -7886,7 +7934,7 @@ msgctxt ""
"par_id3145171\n"
"help.text"
msgid "<variable id=\"tastatur\">Choose <emph>Tools - Customize - Keyboard</emph> tab. A document must be opened.</variable>"
-msgstr ""
+msgstr "<variable id=\"tastatur\">Scegliete <emph>Strumenti - Personalizza</emph>, scheda <emph>Tastiera</emph> (è necessario che un documento sia aperto).</variable>"
#: 00000406.xhp
msgctxt ""
@@ -7894,7 +7942,7 @@ msgctxt ""
"par_id3153968\n"
"help.text"
msgid "<variable id=\"symbole\">Choose <emph>Tools - Customize - Toolbars</emph> tab.</variable>"
-msgstr ""
+msgstr "<variable id=\"symbole\">Scegliete <emph>Strumenti - Personalizza</emph>, scheda <emph>Barre degli strumenti</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -7902,7 +7950,7 @@ msgctxt ""
"par_id3144432\n"
"help.text"
msgid "<variable id=\"events\">Choose <emph>Tools - Customize - Events</emph> tab.</variable>"
-msgstr ""
+msgstr "<variable id=\"events\">Scegliete <emph>Strumenti - Personalizza</emph>, scheda <emph>Eventi</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -7910,7 +7958,7 @@ msgctxt ""
"par_id3157895\n"
"help.text"
msgid "<variable id=\"autokorr\">Choose <emph>Tools - AutoCorrect - AutoCorrect Options</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"autokorr\">Scegliete <emph>Strumenti - Correzione automatica - Opzioni di correzione automatica</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -7918,7 +7966,7 @@ msgctxt ""
"par_id3153768\n"
"help.text"
msgid "<variable id=\"autokooptionen\">Choose <emph>Tools - AutoCorrect - AutoCorrect Options - Options</emph> tab.</variable>"
-msgstr ""
+msgstr "<variable id=\"autokooptionen\">Scegliete <emph>Strumenti - Correzione automatica - Opzioni di correzione automatica</emph>, scheda <emph>Opzioni</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -7926,7 +7974,7 @@ msgctxt ""
"par_id1978514\n"
"help.text"
msgid "<variable id=\"autokosmarttags\">Choose <emph>Tools - AutoCorrect - AutoCorrect Options - Smart Tags</emph> tab.</variable>"
-msgstr ""
+msgstr "<variable id=\"autokosmarttags\">Scegliete <emph>Strumenti - Correzione automatica - Opzioni di correzione automatica</emph>, scheda <emph>Smart Tag</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -7934,7 +7982,7 @@ msgctxt ""
"par_id3155368\n"
"help.text"
msgid "<variable id=\"autokoersetzung\">Choose <emph>Tools - AutoCorrect - AutoCorrect Options - Replace</emph> tab.</variable>"
-msgstr ""
+msgstr "<variable id=\"autokoersetzung\">Scegliete <emph>Strumenti - Correzione automatica - Opzioni di correzione automatica</emph>, scheda <emph>Sostituisci</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -7942,7 +7990,7 @@ msgctxt ""
"par_id3155860\n"
"help.text"
msgid "<variable id=\"autokoausnahmen\">Choose <emph>Tools - AutoCorrect - AutoCorrect Options - Exceptions</emph> tab.</variable>"
-msgstr ""
+msgstr "<variable id=\"autokoausnahmen\">Scegliete <emph>Strumenti - Correzione automatica - Opzioni di correzione automatica</emph>, scheda <emph>Eccezioni</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -7950,7 +7998,7 @@ msgctxt ""
"par_id3153094\n"
"help.text"
msgid "<variable id=\"autokotyafz\">Choose <emph>Tools - AutoCorrect - AutoCorrect Options - Localized Options</emph> tab.</variable>"
-msgstr ""
+msgstr "<variable id=\"autokotyafz\">Scegliete <emph>Strumenti - Correzione automatica - Opzioni di correzione automatica</emph>, scheda <emph>Opzioni localizzate</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -7958,7 +8006,7 @@ msgctxt ""
"par_id3153945\n"
"help.text"
msgid "<variable id=\"autokoworterg\">Choose <emph>Tools - AutoCorrect - AutoCorrect Options - Word Completion</emph> tab.</variable>"
-msgstr ""
+msgstr "<variable id=\"autokoworterg\">Scegliete <emph>Strumenti - Correzione automatica - Opzioni di correzione automatica</emph>, scheda <emph>Completamento parola</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -7966,7 +8014,7 @@ msgctxt ""
"par_id3151352\n"
"help.text"
msgid "<variable id=\"exopas\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Calc - View</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"exopas\">Scegliete <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferenze</emph></caseinline><defaultinline><emph>Strumenti - Opzioni</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Calc - Vista</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -7974,7 +8022,7 @@ msgctxt ""
"par_id3154127\n"
"help.text"
msgid "<variable id=\"etoplayout\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Impress/%PRODUCTNAME Draw - View</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"etoplayout\">Scegliete <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferenze</emph></caseinline><defaultinline><emph>Strumenti - Opzioni</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Impress/%PRODUCTNAME Draw - Vista</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -7982,7 +8030,7 @@ msgctxt ""
"par_id3149664\n"
"help.text"
msgid "<variable id=\"etotm\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Draw - General</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"etotm\">Scegliete <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferenze</emph></caseinline><defaultinline><emph>Strumenti - Opzioni</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Draw - Generale</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8006,7 +8054,7 @@ msgctxt ""
"par_id3147295\n"
"help.text"
msgid "<variable id=\"optionen\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline>.</variable>"
-msgstr ""
+msgstr "<variable id=\"optionen\">Scegliete <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferenze</emph></caseinline><defaultinline><emph>Strumenti - Opzioni</emph></defaultinline></switchinline>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8014,7 +8062,7 @@ msgctxt ""
"par_id3156006\n"
"help.text"
msgid "<variable id=\"optionenallgemein\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename]</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"optionenallgemein\">Scegliete <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferenze</emph></caseinline><defaultinline><emph>Strumenti - Opzioni</emph></defaultinline></switchinline><emph> - $[officename]</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8022,7 +8070,7 @@ msgctxt ""
"par_id3155308\n"
"help.text"
msgid "<variable id=\"benutzerdaten\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - User Data</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"benutzerdaten\">Scegliete <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferenze</emph></caseinline><defaultinline><emph>Strumenti - Opzioni</emph></defaultinline></switchinline><emph> - $[officename] - Dati utente</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8030,7 +8078,7 @@ msgctxt ""
"par_id3155312\n"
"help.text"
msgid "<variable id=\"allg\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - General</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"allg\">Scegliete <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferenze</emph></caseinline><defaultinline><emph>Strumenti - Opzioni</emph></defaultinline></switchinline><emph> - $[officename] - Generale</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8038,7 +8086,7 @@ msgctxt ""
"par_id3150032\n"
"help.text"
msgid "<variable id=\"arbeit\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - Memory</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"arbeit\">Scegliete <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferenze</emph></caseinline><defaultinline><emph>Strumenti - Opzioni</emph></defaultinline></switchinline><emph> - $[officename] - Memoria</emph></variable>"
#: 00000406.xhp
msgctxt ""
@@ -8046,7 +8094,7 @@ msgctxt ""
"par_id3159153\n"
"help.text"
msgid "<variable id=\"ansicht\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - View</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"ansicht\">Scegliete <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferenze</emph></caseinline><defaultinline><emph>Strumenti - Opzioni</emph></defaultinline></switchinline><emph> - $[officename] - Vista</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8054,7 +8102,7 @@ msgctxt ""
"par_id3166413\n"
"help.text"
msgid "<variable id=\"drucken\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - Print</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"drucken\">Scegliete <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferenze</emph></caseinline><defaultinline><emph>Strumenti - Opzioni</emph></defaultinline></switchinline><emph> - $[officename] - Stampa</emph></variable>"
#: 00000406.xhp
msgctxt ""
@@ -8062,7 +8110,7 @@ msgctxt ""
"par_id3147330\n"
"help.text"
msgid "Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - Paths</emph>."
-msgstr ""
+msgstr "Scegliete <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferenze</emph></caseinline><defaultinline><emph>Strumenti - Opzioni</emph></defaultinline></switchinline><emph> - $[officename] - Percorsi</emph>."
#: 00000406.xhp
msgctxt ""
@@ -8070,7 +8118,7 @@ msgctxt ""
"par_id3150036\n"
"help.text"
msgid "Choose <emph>Tools - AutoText - Path</emph>."
-msgstr ""
+msgstr "Scegliete <emph>Strumenti - Testo automatico - Percorso</emph>."
#: 00000406.xhp
msgctxt ""
@@ -8078,7 +8126,7 @@ msgctxt ""
"par_id3149581\n"
"help.text"
msgid "Choose <emph>Format - Area - Colors</emph> tab."
-msgstr ""
+msgstr "Scegliete <emph>Formato - Area</emph>, scheda <emph>Colori</emph>."
#: 00000406.xhp
msgctxt ""
@@ -8110,7 +8158,7 @@ msgctxt ""
"par_id3149403\n"
"help.text"
msgid "<variable id=\"schriers\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - Fonts</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"schriers\">Scegliete <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferenze</emph></caseinline><defaultinline><emph>Strumenti - Opzioni</emph></defaultinline></switchinline><emph> - $[officename] - Tipi di carattere</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8118,7 +8166,7 @@ msgctxt ""
"par_id3150717\n"
"help.text"
msgid "<variable id=\"scripting\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - Security</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"scripting\">Scegliete <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferenze</emph></caseinline><defaultinline><emph>Strumenti - Opzioni</emph></defaultinline></switchinline><emph> - $[officename] - Sicurezza</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8126,7 +8174,7 @@ msgctxt ""
"par_idN11C3D\n"
"help.text"
msgid "<variable id=\"advanced\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - Advanced</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"advanced\">Scegliete <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferenze</emph></caseinline><defaultinline><emph>Strumenti - Opzioni</emph></defaultinline></switchinline><emph> - $[officename] - Avanzate</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8150,7 +8198,7 @@ msgctxt ""
"par_idN11C3G\n"
"help.text"
msgid "<variable id=\"basicide\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - Basic IDE</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"basicide\">Scegliete <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferenze</emph></caseinline><defaultinline><emph>Strumenti - Opzioni</emph></defaultinline></switchinline><emph> - $[officename] - IDE Basic</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8158,7 +8206,7 @@ msgctxt ""
"par_id5485702\n"
"help.text"
msgid "<variable id=\"online_update\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - Online Update</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"online_update\">Scegliete <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferenze</emph></caseinline><defaultinline><emph>Strumenti - Opzioni</emph></defaultinline></switchinline><emph> - $[officename] - Aggiornamento in linea</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8166,7 +8214,7 @@ msgctxt ""
"par_id3146989\n"
"help.text"
msgid "<variable id=\"accessibility\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - Accessibility</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"accessibility\">Scegliete <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferenze</emph></caseinline><defaultinline><emph>Strumenti - Opzioni</emph></defaultinline></switchinline><emph> - $[officename] - Accessibilità</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8182,7 +8230,7 @@ msgctxt ""
"par_id3156355\n"
"help.text"
msgid "<variable id=\"landen\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - Load/Save</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"landen\">Scegliete <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferenze</emph></caseinline><defaultinline><emph>Strumenti - Opzioni</emph></defaultinline></switchinline><emph> - Carica/salva</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8190,7 +8238,7 @@ msgctxt ""
"par_id3147223\n"
"help.text"
msgid "<variable id=\"rsave\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - Load/Save - General</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"rsave\">Scegliete <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferenze</emph></caseinline><defaultinline><emph>Strumenti - Opzioni</emph></defaultinline></switchinline><emph> - Carica/salva - Generale</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8198,7 +8246,7 @@ msgctxt ""
"par_id3153958\n"
"help.text"
msgid "<variable id=\"etsofi\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - Load/Save</emph> - <emph>VBA Properties</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"etsofi\">Scegliete <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferenze</emph></caseinline><defaultinline><emph>Strumenti - Opzioni</emph></defaultinline></switchinline><emph> - Carica/salva</emph> - <emph>Proprietà VBA</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8206,7 +8254,7 @@ msgctxt ""
"par_id3153707\n"
"help.text"
msgid "<variable id=\"etsofi2\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - Load/Save</emph> - <emph>Microsoft Office</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"etsofi2\">Scegliete <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferenze</emph></caseinline><defaultinline><emph>Strumenti - Opzioni</emph></defaultinline></switchinline><emph> - Carica/salva</emph> - <emph>Microsoft Office</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8214,7 +8262,7 @@ msgctxt ""
"par_id3145667\n"
"help.text"
msgid "<variable id=\"html\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - Load/Save</emph> - <emph>HTML Compatibility</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"html\">Scegliete <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferenze</emph></caseinline><defaultinline><emph>Strumenti - Opzioni</emph></defaultinline></switchinline><emph> - Carica/Salva</emph> - <emph>Compatibilità HTML</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8222,7 +8270,7 @@ msgctxt ""
"par_id3146792\n"
"help.text"
msgid "<variable id=\"asiatypo\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - Language Settings</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"asiatypo\">Scegliete <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferenze</emph></caseinline><defaultinline><emph>Strumenti - Opzioni</emph></defaultinline></switchinline><emph> - Impostazioni della lingua</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8230,7 +8278,7 @@ msgctxt ""
"par_id3157965\n"
"help.text"
msgid "<variable id=\"sprachen\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - Language Settings - Languages</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"sprachen\">Scegliete <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferenze</emph></caseinline><defaultinline><emph>Strumenti - Opzioni</emph></defaultinline></switchinline><emph> - Impostazioni della lingua - Lingue</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8238,7 +8286,7 @@ msgctxt ""
"par_id3155446\n"
"help.text"
msgid "<variable id=\"sprachenctl\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - Language Settings - Languages - Complex Text Layout</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"sprachenctl\">Scegliete <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferenze</emph></caseinline><defaultinline><emph>Strumenti - Opzioni</emph></defaultinline></switchinline><emph> - Impostazioni della lingua - Lingue - Disposizione testo complesso</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8246,7 +8294,7 @@ msgctxt ""
"par_id3150745\n"
"help.text"
msgid "Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - Language Settings - Languages</emph>."
-msgstr ""
+msgstr "Scegliete <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferenze</emph></caseinline><defaultinline><emph>Strumenti - Opzioni</emph></defaultinline></switchinline><emph> - Impostazioni della lingua - Lingue</emph>."
#: 00000406.xhp
msgctxt ""
@@ -8254,7 +8302,7 @@ msgctxt ""
"par_id3148407\n"
"help.text"
msgid "Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - Language Settings - Writing Aids</emph>, in the <emph>Available language modules</emph> list, select one of the language modules and then click <emph>Edit</emph>."
-msgstr ""
+msgstr "Scegliete <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferenze</emph></caseinline><defaultinline><emph>Strumenti - Opzioni</emph></defaultinline></switchinline><emph> - Impostazioni della lingua - Linguistica</emph>, nella casella di riepilogo <emph>Moduli linguistici disponibili</emph> selezionarne uno e poi attivare il pulsante <emph>Modifica</emph>."
#: 00000406.xhp
msgctxt ""
@@ -8262,7 +8310,7 @@ msgctxt ""
"par_id3150324\n"
"help.text"
msgid "Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - Language Settings - Writing Aids</emph>."
-msgstr ""
+msgstr "Scegliete <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferenze</emph></caseinline><defaultinline><emph>Strumenti - Opzioni</emph></defaultinline></switchinline><emph> - Impostazioni della lingua - Linguistica</emph>."
#: 00000406.xhp
msgctxt ""
@@ -8270,7 +8318,7 @@ msgctxt ""
"par_id3145620\n"
"help.text"
msgid "<variable id=\"suchja\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - Language Settings - Searching in Japanese</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"suchja\">Scegliete <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferenze</emph></caseinline><defaultinline><emph>Strumenti - Opzioni</emph></defaultinline></switchinline><emph> - Impostazioni della lingua - Cerca in giapponese</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8278,7 +8326,7 @@ msgctxt ""
"par_id3147341\n"
"help.text"
msgid "<variable id=\"asialayout\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - Language Settings - Asian Layout</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"asialayout\">Scegliete <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferenze</emph></caseinline><defaultinline><emph>Strumenti - Opzioni</emph></defaultinline></switchinline><emph> - Impostazioni della lingua - Layout asiatico</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8286,7 +8334,7 @@ msgctxt ""
"par_id3147359\n"
"help.text"
msgid "<variable id=\"internet\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - Internet</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"internet\">Scegliete <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferenze</emph></caseinline><defaultinline><emph>Strumenti - Opzioni</emph></defaultinline></switchinline><emph> - Internet</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8294,7 +8342,7 @@ msgctxt ""
"par_id3156374\n"
"help.text"
msgid "<variable id=\"internet1\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - Internet - Proxy</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"internet1\">Scegliete <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferenze</emph></caseinline><defaultinline><emph>Strumenti - Opzioni</emph></defaultinline></switchinline><emph> - Internet - Proxy</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8302,7 +8350,7 @@ msgctxt ""
"par_id3149280\n"
"help.text"
msgid "<variable id=\"optionentextdokument\">Open a text document, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"optionentextdokument\">Aprite un documento di testo, scegliete <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferenze</emph></caseinline><defaultinline><emph>Strumenti - Opzioni</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8310,7 +8358,7 @@ msgctxt ""
"par_idN10E4F\n"
"help.text"
msgid "<variable id=\"compatibility\">Open a text document, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer - Compatibility</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"compatibility\">Aprite un documento di testo, scegliete <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferenze</emph></caseinline><defaultinline><emph>Strumenti - Opzioni</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer - Compatibilità</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8318,7 +8366,7 @@ msgctxt ""
"par_id3148929\n"
"help.text"
msgid "<variable id=\"laden\">Open a text document, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer - General</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"laden\">Aprite un documento di testo, scegliete <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferenze</emph></caseinline><defaultinline><emph>Strumenti - Opzioni</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer - Generale</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8326,7 +8374,7 @@ msgctxt ""
"par_idN10F2F\n"
"help.text"
msgid "<variable id=\"mailmergeemail\">Open a text document, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer - Mail Merge E-mail</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"mailmergeemail\">Aprite un documento di testo, scegliete <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferenze</emph></caseinline><defaultinline><emph>Strumenti - Opzioni</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer - Stampa in serie e-mail</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8334,7 +8382,7 @@ msgctxt ""
"par_id3149825\n"
"help.text"
msgid "<variable id=\"einfuegenbeschriftung\">Open a text document, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer - AutoCaption</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"einfuegenbeschriftung\">Aprite un documento di testo, scegliete <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferenze</emph></caseinline><defaultinline><emph>Strumenti - Opzioni</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer - Didascalia automatica</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8342,7 +8390,7 @@ msgctxt ""
"par_id3155333\n"
"help.text"
msgid "<variable id=\"layout\">Open a text document, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer/%PRODUCTNAME Writer/Web</emph> - <emph>View</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"layout\">Aprite un documento di testo, scegliete <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferenze</emph></caseinline><defaultinline><emph>Strumenti - Opzioni</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer/%PRODUCTNAME Writer/Web</emph> - <emph>Vista</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8350,7 +8398,7 @@ msgctxt ""
"par_id3146316\n"
"help.text"
msgid "<variable id=\"registerschattencursor\">Open a text document, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer/%PRODUCTNAME Writer/Web</emph> - <emph>Formatting Aids</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"registerschattencursor\">Aprite un documento di testo, scegliete <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferenze</emph></caseinline><defaultinline><emph>Strumenti - Opzioni</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer/%PRODUCTNAME Writer/Web</emph> - <emph>Formattazione</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8358,7 +8406,7 @@ msgctxt ""
"par_id3153534\n"
"help.text"
msgid "<variable id=\"raster\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer/%PRODUCTNAME Calc/%PRODUCTNAME Writer/Web - Grid</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"raster\">Scegliete <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferenze</emph></caseinline><defaultinline><emph>Strumenti - Opzioni</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer/%PRODUCTNAME Calc/%PRODUCTNAME Writer/Web - Griglia</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8366,7 +8414,7 @@ msgctxt ""
"par_id3155961\n"
"help.text"
msgid "Open a text document, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer - Basic Fonts (Western)</emph>."
-msgstr ""
+msgstr "Aprite un documento di testo, scegliete <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferenze</emph></caseinline><defaultinline><emph>Strumenti - Opzioni</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer - Caratteri di base (occidentali)</emph>."
#: 00000406.xhp
msgctxt ""
@@ -8374,7 +8422,7 @@ msgctxt ""
"par_id3159313\n"
"help.text"
msgid "Open a text document, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer - Basic Fonts (Asian)</emph>. Asian language support must be enabled."
-msgstr ""
+msgstr "Aprite un documento di testo, scegliete <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferenze</emph></caseinline><defaultinline><emph>Strumenti - Opzioni</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer - Caratteri di base (orientali)</emph>. Il supporto delle lingue asiatiche deve essere abilitato."
#: 00000406.xhp
msgctxt ""
@@ -8382,7 +8430,7 @@ msgctxt ""
"par_id3155607\n"
"help.text"
msgid "<variable id=\"drucken1\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer/ %PRODUCTNAME Writer/Web</emph> - <emph>Print</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"drucken1\">Scegliete <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferenze</emph></caseinline><defaultinline><emph>Strumenti - Opzioni</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer/ %PRODUCTNAME Writer/Web</emph> - <emph>Stampa</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8390,7 +8438,7 @@ msgctxt ""
"par_id3988769\n"
"help.text"
msgid "<variable id=\"drucken2\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Calc - Print</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"drucken2\">Scegliete <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferenze</emph></caseinline><defaultinline><emph>Strumenti - Opzioni</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Calc - Stampa</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8398,7 +8446,7 @@ msgctxt ""
"par_id3145769\n"
"help.text"
msgid "<variable id=\"registertabelle\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer/%PRODUCTNAME Writer/Web - Table</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"registertabelle\">Scegliete <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferenze</emph></caseinline><defaultinline><emph>Strumenti - Opzioni</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer/%PRODUCTNAME Writer/Web - Tabella</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8414,7 +8462,7 @@ msgctxt ""
"par_id3159333\n"
"help.text"
msgid "<variable id=\"webbrowser1\">Open an HTML document, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer/Web</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"webbrowser1\">Aprite un documento HTML, scegliete <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferenze</emph></caseinline><defaultinline><emph>Strumenti - Opzioni</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer/Web</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8422,7 +8470,7 @@ msgctxt ""
"par_id3149448\n"
"help.text"
msgid "<variable id=\"hinter\">Open an HTML document, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer/Web - Background</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"hinter\">Aprite un documento HTML, scegliete <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferenze</emph></caseinline><defaultinline><emph>Strumenti - Opzioni</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer/Web - Sfondo</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8438,7 +8486,7 @@ msgctxt ""
"par_id3152966\n"
"help.text"
msgid "<variable id=\"tabelleeingabe\">Open a spreadsheet document, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Calc - General</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"tabelleeingabe\">Aprite un foglio elettronico, scegliete <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferenze</emph></caseinline><defaultinline><emph>Strumenti - Opzioni</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Calc - Generale</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8446,7 +8494,7 @@ msgctxt ""
"par_id3149814\n"
"help.text"
msgid "<variable id=\"tabelleinhalte\">Open a spreadsheet document, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Calc - View</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"tabelleinhalte\">Aprite un foglio elettronico, scegliete <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferenze</emph></caseinline><defaultinline><emph>Strumenti - Opzioni</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Calc - Vista</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8454,7 +8502,7 @@ msgctxt ""
"par_id3154656\n"
"help.text"
msgid "<variable id=\"exopbe\">Open a spreadsheet document, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Calc - Calculate</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"exopbe\">Aprite un foglio elettronico, scegliete <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferenze</emph></caseinline><defaultinline><emph>Strumenti - Opzioni</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Calc - Calcola</emph></variable>"
#: 00000406.xhp
msgctxt ""
@@ -8494,7 +8542,7 @@ msgctxt ""
"par_id3149527\n"
"help.text"
msgid "<variable id=\"listekopieren\">Open a spreadsheet document, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Calc - Sort Lists - Copy</emph> button.</variable>"
-msgstr ""
+msgstr "<variable id=\"listekopieren\">Aprite un foglio elettronico, scegliete <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferenze</emph></caseinline><defaultinline><emph>Strumenti - Opzioni</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Calc - Ordina elenchi</emph> - pulsante <emph>Copia</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8502,7 +8550,7 @@ msgctxt ""
"par_id3154903\n"
"help.text"
msgid "<variable id=\"exopaen\">Open a spreadsheet document, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Calc - Changes</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"exopaen\">Aprite un foglio elettronico, scegliete <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferenze</emph></caseinline><defaultinline><emph>Strumenti - Opzioni</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Calc - Modifiche</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8510,7 +8558,7 @@ msgctxt ""
"par_id3152582\n"
"help.text"
msgid "<variable id=\"etotall\">Open a presentation document, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Impress</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"etotall\">Aprite una presentazione, scegliete <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferenze</emph></caseinline><defaultinline><emph>Strumenti - Opzioni</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Impress</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8518,7 +8566,7 @@ msgctxt ""
"par_id3148418\n"
"help.text"
msgid "<variable id=\"etopsonstiges\">Open a presentation document, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Impress/%PRODUCTNAME Draw - General</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"etopsonstiges\">Aprite una presentazione, scegliete <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferenze</emph></caseinline><defaultinline><emph>Strumenti - Opzioni</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Impress/%PRODUCTNAME Draw - Generale</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8526,7 +8574,7 @@ msgctxt ""
"par_id3150380\n"
"help.text"
msgid "<variable id=\"etopas\">Open a presentation document, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Impress/%PRODUCTNAME Draw - View</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"etopas\">Aprite una presentazione, scegliete <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferenze</emph></caseinline><defaultinline><emph>Strumenti - Opzioni</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Impress/%PRODUCTNAME Draw - Vista</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8534,7 +8582,7 @@ msgctxt ""
"par_id3166423\n"
"help.text"
msgid "<variable id=\"etopfe\">Open a presentation document, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Impress/%PRODUCTNAME Draw - Grid</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"etopfe\">Aprite una presentazione, scegliete <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferenze</emph></caseinline><defaultinline><emph>Strumenti - Opzioni</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Impress/%PRODUCTNAME Draw - Griglia</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8542,7 +8590,7 @@ msgctxt ""
"par_id3148873\n"
"help.text"
msgid "<variable id=\"etopdk\">Open a presentation document, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Impress/%PRODUCTNAME Draw - Print</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"etopdk\">Aprite una presentazione, scegliete <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferenze</emph></caseinline><defaultinline><emph>Strumenti - Opzioni</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Impress/%PRODUCTNAME Draw - Stampa</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8550,7 +8598,7 @@ msgctxt ""
"par_id3145220\n"
"help.text"
msgid "<variable id=\"etotallz\">Open a drawing document, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Draw</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"etotallz\">Aprite un documento di disegno, scegliete <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferenze</emph></caseinline><defaultinline><emph>Strumenti - Opzioni</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Draw</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8558,7 +8606,7 @@ msgctxt ""
"par_id3149573\n"
"help.text"
msgid "<variable id=\"etsodr\">Open a Math document, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Math</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"etsodr\">Aprite un documento di Math, scegliete <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferenze</emph></caseinline><defaultinline><emph>Strumenti - Opzioni</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Math</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8566,7 +8614,7 @@ msgctxt ""
"par_id3145613\n"
"help.text"
msgid "<variable id=\"formeinst\">Open a Math document, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Math - Settings</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"formeinst\">Aprite un documento di Math, scegliete <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferenze</emph></caseinline><defaultinline><emph>Strumenti - Opzioni</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Math - Impostazioni</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8574,7 +8622,7 @@ msgctxt ""
"par_id3155137\n"
"help.text"
msgid "<variable id=\"diagrfarbe\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - Charts</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"diagrfarbe\">Scegliete <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferenze</emph></caseinline><defaultinline><emph>Strumenti - Opzioni</emph></defaultinline></switchinline><emph> - Grafici</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8582,7 +8630,7 @@ msgctxt ""
"par_id3149211\n"
"help.text"
msgid "<variable id=\"diagrgfarbe\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - Charts - Default Colors</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"diagrgfarbe\">Scegliete <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferenze</emph></caseinline><defaultinline><emph>Strumenti - Opzioni</emph></defaultinline></switchinline><emph> - Grafici - Colori predefiniti</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8590,7 +8638,7 @@ msgctxt ""
"par_id3150862\n"
"help.text"
msgid "<variable id=\"datenqu\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Base</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"datenqu\">Scegliete <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferenze</emph></caseinline><defaultinline><emph>Strumenti - Opzioni</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Base</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8598,7 +8646,7 @@ msgctxt ""
"par_id3147368\n"
"help.text"
msgid "<variable id=\"verbindungen\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Base - Connections</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"verbindungen\">Scegliete <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferenze</emph></caseinline><defaultinline><emph>Strumenti - Opzioni</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Base - Collegamenti</emph>.</variable>"
#: 00000406.xhp
msgctxt ""
@@ -8606,7 +8654,7 @@ msgctxt ""
"par_idN1120D\n"
"help.text"
msgid "<variable id=\"registered\">Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Base - Databases</emph>.</variable>"
-msgstr ""
+msgstr "<variable id=\"registered\">Scegliete <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferenze</emph></caseinline><defaultinline><emph>Strumenti - Opzioni</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Base - Database</emph>.</variable>"
#: 00000407.xhp
msgctxt ""
@@ -11125,7 +11173,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3151293\n"
"help.text"
-msgid "<variable id=\"linienstile\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Line Styles</emph> tab </variable>"
+msgid "<variable id=\"linienstile\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Line Styles</emph> tab</variable>"
msgstr "<variable id=\"linienstile\">Scegliete <emph>Formato - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Oggetto - </emph></caseinline><caseinline select=\"CALC\"><emph>Immagine - </emph></caseinline></switchinline><emph>Linea</emph>, scheda <emph>Stili linee</emph></variable>"
#: 00040502.xhp
@@ -11133,7 +11181,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3149317\n"
"help.text"
-msgid "<variable id=\"linienenden\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Arrow Styles</emph> tab </variable>"
+msgid "<variable id=\"linienenden\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Arrow Styles</emph> tab</variable>"
msgstr "<variable id=\"linienenden\">Scegliete <emph>Formato - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Oggetto - </emph></caseinline><caseinline select=\"CALC\"><emph>Immagine - </emph></caseinline></switchinline><emph>Linea</emph>, scheda <emph>Estremità linee</emph></variable>"
#: 00040502.xhp
@@ -11173,63 +11221,63 @@ msgctxt ""
"00040502.xhp\n"
"par_id3154948\n"
"help.text"
-msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Area</emph> tab"
-msgstr "Scegliete <emph>Formato - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Oggetto - </emph></caseinline><caseinline select=\"CALC\"><emph>Immagine - </emph></caseinline></switchinline><emph>Area</emph>, scheda <emph>Area</emph>"
+msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Area</emph> tab."
+msgstr "Scegliete <emph>Formato - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Oggetto - </emph></caseinline><caseinline select=\"CALC\"><emph>Immagine - </emph></caseinline></switchinline><emph>Area</emph>, scheda <emph>Area</emph>."
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3145607\n"
"help.text"
-msgid "Choose <emph>View - Styles</emph> - open context menu and choose <emph>Modify/New - Area</emph> tab (presentation documents)"
-msgstr "Scegliete <emph>Visualizza - Stili</emph>, aprite il menu di contesto <emph>Modifica/Nuovo</emph> e scegliete la scheda <emph>Area</emph> (presentazioni)"
+msgid "Choose <emph>View - Styles</emph> - open context menu and choose <emph>Modify/New - Area</emph> tab (presentation documents)."
+msgstr "Scegliete <emph>Visualizza - Stili</emph>, aprite il menu di contesto <emph>Modifica/Nuovo</emph> e scegliete la scheda <emph>Area</emph> (presentazioni)."
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3152922\n"
"help.text"
-msgid "Choose <emph>Format - Title - Area</emph> tab (chart documents)"
-msgstr "Scegliete <emph>Formato - Titolo</emph>, scheda <emph>Area</emph> (grafici)"
+msgid "Choose <emph>Format - Title - Area</emph> tab (chart documents)."
+msgstr "Scegliete <emph>Formato - Titolo</emph>, scheda <emph>Area</emph> (grafici)."
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3157894\n"
"help.text"
-msgid "Choose <emph>Format - Legend - Area</emph> tab (chart documents)"
-msgstr "Scegliete <emph>Formato - Legenda...</emph>, scheda <emph>Area</emph> (grafici)"
+msgid "Choose <emph>Format - Legend - Area</emph> tab (chart documents)."
+msgstr "Scegliete <emph>Formato - Legenda...</emph>, scheda <emph>Area</emph> (grafici)."
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3144444\n"
"help.text"
-msgid "Choose <emph>Format - Chart Wall - Area</emph> tab (chart documents)"
-msgstr "Scegliete <emph>Formato - Pareti del grafico...</emph>, scheda <emph>Area</emph> (grafici)"
+msgid "Choose <emph>Format - Chart Wall - Area</emph> tab (chart documents)."
+msgstr "Scegliete <emph>Formato - Pareti del grafico...</emph>, scheda <emph>Area</emph> (grafici)."
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3156543\n"
"help.text"
-msgid "Choose <emph>Format - Chart Floor - Area</emph> tab (chart documents)"
-msgstr "Scegliete <emph>Formato - Pavimento del grafico...</emph>, scheda <emph>Area</emph> (grafici)"
+msgid "Choose <emph>Format - Chart Floor - Area</emph> tab (chart documents)."
+msgstr "Scegliete <emph>Formato - Pavimento del grafico...</emph>, scheda <emph>Area</emph> (grafici)."
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3150685\n"
"help.text"
-msgid "Choose <emph>Format - Chart Area - Area</emph> tab (chart documents)"
-msgstr "Scegliete <emph>Formato - Area del grafico...</emph>, scheda <emph>Area</emph> (grafici)"
+msgid "Choose <emph>Format - Chart Area - Area</emph> tab (chart documents)."
+msgstr "Scegliete <emph>Formato - Area del grafico...</emph>, scheda <emph>Area</emph> (grafici)."
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3149664\n"
"help.text"
-msgid "Choose <emph>Slide - Properties - Background</emph> tab (in $[officename] Impress)"
+msgid "Choose <emph>Slide - Properties - Background</emph> tab (in $[officename] Impress)."
msgstr ""
#: 00040502.xhp
@@ -11237,7 +11285,15 @@ msgctxt ""
"00040502.xhp\n"
"par_id9149694\n"
"help.text"
-msgid "Choose <emph>Page - Properties - Background</emph> tab (in $[officename] Draw)"
+msgid "Choose <emph>Page - Properties - Background</emph> tab (in $[officename] Draw)."
+msgstr ""
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id841527083135387\n"
+"help.text"
+msgid "Choose <emph>Table - Properties - Background</emph> tab."
msgstr ""
#: 00040502.xhp
@@ -11349,32 +11405,32 @@ msgctxt ""
"00040502.xhp\n"
"par_id3150011\n"
"help.text"
-msgid "<variable id=\"schatte\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Shadow</emph> tab </variable>"
-msgstr "<variable id=\"schatte\">Scegliete <emph>Formato - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Oggetto - </emph></caseinline><caseinline select=\"CALC\"><emph>Immagine - </emph></caseinline></switchinline><emph>Area</emph>, scheda <emph>Ombre</emph></variable>"
+msgid "<variable id=\"schatte\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Shadow</emph> tab</variable>"
+msgstr "<variable id=\"schatte\">Scegliete <emph>Formato - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Oggetto - </emph></caseinline><caseinline select=\"CALC\"><emph>Immagine - </emph></caseinline></switchinline><emph>Area</emph> scheda <emph>Ombra</emph></variable>"
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3147441\n"
"help.text"
-msgid "<variable id=\"verlauf\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Gradients</emph> tab </variable>"
-msgstr "<variable id=\"verlauf\">Scegliete <emph>Formato - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Oggetto - </emph></caseinline><caseinline select=\"CALC\"><emph>Immagine - </emph></caseinline></switchinline><emph>Area</emph>, scheda <emph>Sfumature</emph></variable>"
+msgid "<variable id=\"verlauf\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Gradients</emph> tab</variable>"
+msgstr "<variable id=\"verlauf\">Scegliete <emph>Formato - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Oggetto - </emph></caseinline><caseinline select=\"CALC\"><emph>Immagine - </emph></caseinline></switchinline><emph>Area</emph> scheda <emph>Sfumatura</emph></variable>"
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3155308\n"
"help.text"
-msgid "<variable id=\"schraffur\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Hatching</emph> tab </variable>"
-msgstr "<variable id=\"schraffur\">Scegliete <emph>Formato - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Oggetto - </emph></caseinline><caseinline select=\"CALC\"><emph>Immagine - </emph></caseinline></switchinline><emph>Area</emph>, scheda <emph>Tratteggio</emph></variable>"
+msgid "<variable id=\"schraffur\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Hatching</emph> tab</variable>"
+msgstr "<variable id=\"schraffur\">Scegliete <emph>Formato - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Oggetto - </emph></caseinline><caseinline select=\"CALC\"><emph>Immagine - </emph></caseinline></switchinline><emph>Area</emph> scheda <emph>Tratteggio</emph></variable>"
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3145800\n"
"help.text"
-msgid "<variable id=\"bitmap\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Bitmaps</emph> tab </variable>"
-msgstr "<variable id=\"bitmap\">Scegliete <emph>Formato - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Oggetto - </emph></caseinline><caseinline select=\"CALC\"><emph>Immagine - </emph></caseinline></switchinline><emph>Area</emph>, scheda <emph>Bitmap</emph></variable>"
+msgid "<variable id=\"bitmap\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Bitmaps</emph> tab</variable>"
+msgstr "<variable id=\"bitmap\">Scegliete <emph>Formato - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Oggetto - </emph></caseinline><caseinline select=\"CALC\"><emph>Immagine - </emph></caseinline></switchinline><emph>Area</emph> - scheda <emph>Bitmap</emph></variable>"
#: 00040502.xhp
msgctxt ""
@@ -11413,7 +11469,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3156286\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F4 key </caseinline><caseinline select=\"IMPRESS\">F4 key </caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F4 key</caseinline><caseinline select=\"IMPRESS\">F4 key</caseinline></switchinline>"
msgstr "<switchinline select=\"appl\"><caseinline select=\"DRAW\">Tasto F4</caseinline><caseinline select=\"IMPRESS\">Tasto F4</caseinline></switchinline>"
#: 00040502.xhp
@@ -11453,7 +11509,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3153099\n"
"help.text"
-msgid "<variable id=\"position2\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Position and Size</emph> tab </variable>"
+msgid "<variable id=\"position2\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Position and Size</emph> tab</variable>"
msgstr "<variable id=\"position2\">Scegliete <emph>Formato - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Oggetto - </emph></caseinline><caseinline select=\"CALC\"><emph>Immagine - </emph></caseinline></switchinline><emph>Posizione e dimensione</emph>, scheda <emph>Posizione e dimensione</emph></variable>"
#: 00040502.xhp
@@ -11485,7 +11541,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3145666\n"
"help.text"
-msgid "<variable id=\"ecke\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Slant & Corner Radius</emph> tab </variable>"
+msgid "<variable id=\"ecke\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Slant & Corner Radius</emph> tab</variable>"
msgstr "<variable id=\"ecke\">Scegliete <emph>Formato - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Oggetto -</emph></caseinline><caseinline select=\"CALC\"><emph>Immagine - </emph></caseinline></switchinline><emph>Posizione e dimensione</emph>, scheda <emph>Raggio d'inclinazione e rotazione</emph></variable>"
#: 00040502.xhp
@@ -11493,8 +11549,8 @@ msgctxt ""
"00040502.xhp\n"
"par_id3146081\n"
"help.text"
-msgid "<variable id=\"legende\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Callout</emph> tab (only for textbox callouts, not for custom shapes callouts) </variable>"
-msgstr "<variable id=\"legende\">Scegliete <emph>Formato - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Oggetto- </emph></caseinline><caseinline select=\"CALC\"><emph>Immagine - </emph></caseinline></switchinline><emph>Posizione e dimensione</emph>, scheda <emph>Legenda</emph> (solo per legende della casella di testo e non per legende di forma personalizzata)</variable>"
+msgid "<variable id=\"legende\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Callout</emph> tab (only for textbox callouts, not for custom shapes callouts)</variable>"
+msgstr "<variable id=\"legende\">Scegliete <emph>Formato - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Oggetto- </emph></caseinline><caseinline select=\"CALC\"><emph>Immagine - </emph></caseinline></switchinline><emph>Posizione e dimensione - scheda Legenda</emph> (solo per legende della casella di testo e non per legende di forma personalizzata)</variable>"
#: 00040502.xhp
msgctxt ""
@@ -11517,7 +11573,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3149019\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F8 key </caseinline><caseinline select=\"IMPRESS\">F8 key </caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F8 key</caseinline><caseinline select=\"IMPRESS\">F8 key</caseinline></switchinline>"
msgstr "<switchinline select=\"appl\"><caseinline select=\"DRAW\">Tasto F8</caseinline><caseinline select=\"IMPRESS\">Tasto F8</caseinline></switchinline>"
#: 00040502.xhp
@@ -11805,7 +11861,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3153076\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Align Center Horizontally </caseinline><defaultinline>Centered</defaultinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Align Center Horizontally</caseinline><defaultinline>Centered</defaultinline></switchinline>"
msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Allinea al centro in orizzontale</caseinline><defaultinline>Centrato</defaultinline></switchinline>"
#: 00040502.xhp
@@ -11845,8 +11901,8 @@ msgctxt ""
"00040502.xhp\n"
"par_id3150527\n"
"help.text"
-msgid "<variable id=\"font\">Click <emph>Fontwork</emph> icon on <emph>Drawing</emph> bar </variable>"
-msgstr "<variable id=\"font\">Fate clic sull'icona <emph>Fontwork</emph> nella barra <emph>Diisegno</emph></variable>"
+msgid "<variable id=\"font\">Click <emph>Fontwork</emph> icon on <emph>Drawing</emph> bar</variable>"
+msgstr "<variable id=\"font\">Fate clic sull'icona <emph>Fontwork</emph> nella barra <emph>Disegno</emph></variable>"
#: 00040502.xhp
msgctxt ""
diff --git a/source/it/helpcontent2/source/text/shared/01.po b/source/it/helpcontent2/source/text/shared/01.po
index 5262d57d6a6..d95c7a769af 100644
--- a/source/it/helpcontent2/source/text/shared/01.po
+++ b/source/it/helpcontent2/source/text/shared/01.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-23 23:19+0200\n"
-"PO-Revision-Date: 2018-04-30 12:25+0000\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
+"PO-Revision-Date: 2018-06-10 12:13+0000\n"
"Last-Translator: Valter Mura <valtermura@gmail.com>\n"
"Language-Team: Italian <l10n@it.libreoffice.org>\n"
"Language: it\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1525091118.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1528632814.000000\n"
#: 01010000.xhp
msgctxt ""
@@ -694,7 +694,7 @@ msgctxt ""
"par_id3149750\n"
"help.text"
msgid "<ahelp hid=\".\">Select the database field that you want, and then click the arrow to the left of this box to insert the field into the <emph>Label text</emph> box.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Selezionare il campo desiderato del database e fare clic sulla freccia a sinistra per inserirlo nella casella <emph>Testo etichetta</emph>.</ahelp>"
#: 01010201.xhp
msgctxt ""
@@ -718,7 +718,7 @@ msgctxt ""
"par_id3149762\n"
"help.text"
msgid "You can select a pre-defined size format for your label or a size format that you specify on the <emph>Format </emph>tab."
-msgstr ""
+msgstr "Potete selezionare un formato standard per l'etichetta oppure specificare un formato personalizzato nella scheda <emph>Formato</emph>."
#: 01010201.xhp
msgctxt ""
@@ -1246,7 +1246,7 @@ msgctxt ""
"par_id3150279\n"
"help.text"
msgid "<ahelp hid=\".\">Prints business cards on continuous paper.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Stampa i biglietti da visita su carta a modulo continuo.</ahelp>"
#: 01010301.xhp
msgctxt ""
@@ -1262,7 +1262,7 @@ msgctxt ""
"par_id3148731\n"
"help.text"
msgid "<ahelp hid=\".\">Prints business cards on individual sheets.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Stampa i biglietti da visita su singoli fogli.</ahelp>"
#: 01010301.xhp
msgctxt ""
@@ -1278,7 +1278,7 @@ msgctxt ""
"par_id3155351\n"
"help.text"
msgid "<ahelp hid=\".\">Select the brand of paper that you want to use.</ahelp> Each brand has its own size formats."
-msgstr ""
+msgstr "<ahelp hid=\".\">Selezionare la marca della carta da usare.</ahelp> Ogni marca dispone di propri formati."
#: 01010301.xhp
msgctxt ""
@@ -1294,7 +1294,7 @@ msgctxt ""
"par_id3159201\n"
"help.text"
msgid "<ahelp hid=\".\">Select the size format that you want to use. The available formats depend on what you selected in the <emph>Brand</emph> list. If you want to use a custom size format, select <emph>[User]</emph>, and then click the <link href=\"text/shared/01/01010202.xhp\" name=\"Format\"><emph>Format</emph></link> tab to define the format.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Selezionare il formato desiderato. I formati disponibili dipendono dalla selezione fatta nell'elenco <emph>Marca</emph>. Per utilizzare un formato personalizzato, selezionare <emph>[Utente]</emph>, quindi fare clic sulla scheda <link href=\"text/shared/01/01010202.xhp\" name=\"Formato\"><emph>Formato</emph></link> per definirlo.</ahelp>"
#: 01010301.xhp
msgctxt ""
@@ -1310,7 +1310,7 @@ msgctxt ""
"par_id3153394\n"
"help.text"
msgid "<ahelp hid=\".\">The paper type and the dimensions of the business card are displayed at the bottom of the <emph>Format</emph> area.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Il tipo di carta e le dimensioni del biglietto da visita vengono visualizzati in fondo all'area <emph>Formato</emph>.</ahelp>"
#: 01010302.xhp
msgctxt ""
@@ -2014,7 +2014,7 @@ msgctxt ""
"par_id7375713\n"
"help.text"
msgid "When you use <item type=\"menuitem\">File - Templates - Save as Template</item> to save a template, the template will be stored in your user template folder. When you open a document that is based on such a template, the document will be checked for a changed template as described below. The template is associated with the document, it may be called a \"sticky template\"."
-msgstr ""
+msgstr "Quando usate <item type=\"menuitem\">File - Modelli - Salva come modello</item> per salvare un modello, questo sarà immagazzinato nella cartella dei modelli utente. Quando aprite un documento che si basa su tale tipo di modello, il modello adoperato nel documento sarà confrontato col modello più recente come descritto sotto. Il modello è associato al documento e può essere definito \"modello permanente\"."
#: 01020000.xhp
msgctxt ""
@@ -2142,7 +2142,7 @@ msgctxt ""
"par_id531513630220632\n"
"help.text"
msgid "A remote file server is web service that stores documents with or without checkin, checkout, version controls and backups."
-msgstr ""
+msgstr "Un server di file remoti è un servizio web che memorizza documenti con o senza procedure di check-in, check-out, controlli di versione e copie di sicurezza."
#: 01020001.xhp
msgctxt ""
@@ -2446,7 +2446,7 @@ msgctxt ""
"par_id531513630220632\n"
"help.text"
msgid "A remote file server is a web service that stores documents with or without checkin, checkout, version controls and backups."
-msgstr ""
+msgstr "Un server di file remoti è un servizio web che memorizza documenti con o senza procedure di check-in, check-out, controlli di versione e copie di sicurezza."
#: 01060001.xhp
msgctxt ""
@@ -2566,7 +2566,7 @@ msgctxt ""
"par_id3155934\n"
"help.text"
msgid "The following sections describe the <item type=\"productname\">%PRODUCTNAME</item> <emph>Save as</emph> dialog. To activate the <emph><item type=\"productname\">%PRODUCTNAME</item> Open</emph> and <emph>Save</emph> dialog boxes, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - </emph><link href=\"text/shared/optionen/01010600.xhp\" name=\"%PRODUCTNAME - General\"><emph>%PRODUCTNAME- General</emph></link>, and then select the <emph>Use %PRODUCTNAME dialogs</emph> in the <emph>Open/Save dialogs</emph> area."
-msgstr ""
+msgstr "Le seguenti sezioni descrivono la finestra di dialogo <emph>Salva con nome</emph> di <item type=\"productname\">%PRODUCTNAME</item>. Per attivare le finestre di dialogo <emph>Apri</emph> e <emph>Salva</emph> di <item type=\"productname\">%PRODUCTNAME</item>, scegliete <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferenze</emph></caseinline><defaultinline><emph>Strumenti - Opzioni</emph></defaultinline></switchinline><emph> - </emph><link href=\"text/shared/optionen/01010600.xhp\" name=\"%PRODUCTNAME - Generale\"><emph>%PRODUCTNAME - Generale</emph></link> e selezionate <emph>Usa finestre di dialogo di %PRODUCTNAME</emph> nell'area <emph>Finestre di dialogo apri/salva</emph>."
#: 01070000.xhp
msgctxt ""
@@ -2654,7 +2654,7 @@ msgctxt ""
"par_id3149902\n"
"help.text"
msgid "<ahelp hid=\".\">Displays the files and folders in the folder that you are in.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Mostra i file e le cartelle contenuti nella cartella attiva.</ahelp>"
#: 01070000.xhp
msgctxt ""
@@ -2670,7 +2670,7 @@ msgctxt ""
"par_id3153626\n"
"help.text"
msgid "<ahelp hid=\".\">Enter a file name or a path for the file. You can also enter a <link href=\"text/shared/00/00000002.xhp#url\" name=\"URL\">URL</link></ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Specificate un nome o un percorso per il file. È possibile anche inserire un <link href=\"text/shared/00/00000002.xhp#url\" name=\"URL\">URL</link></ahelp>"
#: 01070000.xhp
msgctxt ""
@@ -2686,7 +2686,7 @@ msgctxt ""
"par_id3156343\n"
"help.text"
msgid "<ahelp hid=\".\">Select the file format for the document that you are saving.</ahelp> In the display area, only the documents with this file type are displayed. File types are described in <link href=\"text/shared/00/00000020.xhp\" name=\"Information on Import and Export Filters\">Information on Import and Export Filters</link>."
-msgstr ""
+msgstr "<ahelp hid=\".\">Selezionare il formato in cui salvare il documento.</ahelp> Nell'area di visualizzazione vengono elencati solo i documenti del tipo selezionato. I tipi di file sono descritti in <link href=\"text/shared/00/00000020.xhp\" name=\"Informazioni sui filtri di importazione ed esportazione\">Informazioni sui filtri di importazione ed esportazione</link>."
#: 01070000.xhp
msgctxt ""
@@ -2710,7 +2710,7 @@ msgctxt ""
"par_id3154068\n"
"help.text"
msgid "<ahelp hid=\".\">Saves the file.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Salva il file.</ahelp>"
#: 01070000.xhp
msgctxt ""
@@ -3422,7 +3422,7 @@ msgctxt ""
"par_id3156324\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Some statistic values can be used as <link href=\"text/swriter/02/14020000.xhp\" name=\"variables in formulas\">variables in formulas</link>.</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Alcuni valori statistici possono essere utilizzati come <link href=\"text/swriter/02/14020000.xhp\" name=\"variabili nelle formule\">variabili nelle formule</link>.</caseinline></switchinline>"
#: 01100400.xhp
msgctxt ""
@@ -3454,7 +3454,7 @@ msgctxt ""
"par_id3153527\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Number of tables in the file.</caseinline><caseinline select=\"CALC\">Number of sheets in the file.</caseinline></switchinline> This statistic does not include tables that were inserted as <link href=\"text/shared/00/00000005.xhp#ole\" name=\"OLE\">OLE</link> objects."
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Numero di tabelle presenti nel file.</caseinline><caseinline select=\"CALC\">Numero di fogli presenti nel file.</caseinline></switchinline> Questa statistica non include le tabelle inserite come oggetti <link href=\"text/shared/00/00000005.xhp#ole\" name=\"OLE\">OLE</link>."
#: 01100400.xhp
msgctxt ""
@@ -3470,7 +3470,7 @@ msgctxt ""
"par_id3156114\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Number of cells with content in the file.</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Numero di celle non vuote contenute nel file.</caseinline></switchinline>"
#: 01100400.xhp
msgctxt ""
@@ -3494,7 +3494,7 @@ msgctxt ""
"hd_id3147210\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Images:</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Immagini:</caseinline></switchinline>"
#: 01100400.xhp
msgctxt ""
@@ -3502,7 +3502,7 @@ msgctxt ""
"par_id3166411\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Number of images in the file. This statistic does not include images that were inserted as <link href=\"text/shared/00/00000005.xhp#ole\" name=\"OLE\">OLE</link> objects.</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Numero di immagini presenti nel file. Questa statistica non include le immagini inserite come oggetti <link href=\"text/shared/00/00000005.xhp#ole\" name=\"OLE\">OLE</link>.</caseinline></switchinline>"
#: 01100400.xhp
msgctxt ""
@@ -3510,7 +3510,7 @@ msgctxt ""
"hd_id3147618\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">OLE Objects:</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Oggetti OLE:</caseinline></switchinline>"
#: 01100400.xhp
msgctxt ""
@@ -3518,7 +3518,7 @@ msgctxt ""
"par_id3149820\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Number of <link href=\"text/shared/00/00000005.xhp#ole\" name=\"OLE\">OLE</link> objects in the file, including tables and graphics that were inserted as OLE objects.</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Numero di oggetti <link href=\"text/shared/00/00000005.xhp#ole\" name=\"OLE\">OLE</link> presenti nel file, incluse le tabelle e le immagini inserite come oggetti OLE.</caseinline></switchinline>"
#: 01100400.xhp
msgctxt ""
@@ -3526,7 +3526,7 @@ msgctxt ""
"hd_id3153665\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Paragraphs:</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Paragrafi:</caseinline></switchinline>"
#: 01100400.xhp
msgctxt ""
@@ -3534,7 +3534,7 @@ msgctxt ""
"par_id3156156\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Number of paragraphs (including blank paragraphs) in the file.</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Numero di paragrafi (inclusi quelli vuoti) presenti nel file.</caseinline></switchinline>"
#: 01100400.xhp
msgctxt ""
@@ -3542,7 +3542,7 @@ msgctxt ""
"hd_id3155261\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Words:</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Parole:</caseinline></switchinline>"
#: 01100400.xhp
msgctxt ""
@@ -3550,7 +3550,7 @@ msgctxt ""
"par_id3147402\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Number of words (including words consisting of a single character) in the file.</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Numero di parole (incluse quelle di un solo carattere) presenti nel file.</caseinline></switchinline>"
#: 01100400.xhp
msgctxt ""
@@ -3558,7 +3558,7 @@ msgctxt ""
"hd_id3150466\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Characters:</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Caratteri:</caseinline></switchinline>"
#: 01100400.xhp
msgctxt ""
@@ -3566,7 +3566,7 @@ msgctxt ""
"par_id3149294\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Number of characters (including spaces) in the file. Non-printable characters are not included.</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Numero di caratteri (inclusi gli spazi) presenti nel file. I caratteri non stampabili non vengono conteggiati.</caseinline></switchinline>"
#: 01100400.xhp
msgctxt ""
@@ -3574,7 +3574,7 @@ msgctxt ""
"hd_id3148947\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Lines:</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Righe:</caseinline></switchinline>"
#: 01100400.xhp
msgctxt ""
@@ -3582,7 +3582,7 @@ msgctxt ""
"par_id3149650\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Number of lines in the file.</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Numero di righe del file.</caseinline></switchinline>"
#: 01100400.xhp
msgctxt ""
@@ -3590,7 +3590,7 @@ msgctxt ""
"hd_id3153525\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Update</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Aggiorna</caseinline></switchinline>"
#: 01100400.xhp
msgctxt ""
@@ -4902,7 +4902,7 @@ msgctxt ""
"par_id5917844\n"
"help.text"
msgid "Opens a new window in your default e-mail program with the current document as an attachment. The OpenDocument file format is used."
-msgstr ""
+msgstr "Apre un nuovo messaggio nel programma di posta elettronica predefinito con il documento corrente come allegato. Viene utilizzato il formato di file OpenDocument."
#: 01160000.xhp
msgctxt ""
@@ -4918,7 +4918,7 @@ msgctxt ""
"par_id5759453\n"
"help.text"
msgid "Opens a new window in your default e-mail program with the current document as an attachment. The Microsoft Excel file format is used."
-msgstr ""
+msgstr "Apre un nuovo messaggio nel programma di posta elettronica predefinito con il documento corrente come allegato. Viene utilizzato il formato di file di Microsoft Excel."
#: 01160000.xhp
msgctxt ""
@@ -4934,7 +4934,7 @@ msgctxt ""
"par_id7829218\n"
"help.text"
msgid "Opens a new window in your default e-mail program with the current document as an attachment. The OpenDocument file format is used."
-msgstr ""
+msgstr "Apre un nuovo messaggio nel programma di posta elettronica predefinito con il documento corrente come allegato. Viene utilizzato il formato di file OpenDocument."
#: 01160000.xhp
msgctxt ""
@@ -4950,7 +4950,7 @@ msgctxt ""
"par_id8319650\n"
"help.text"
msgid "Opens a new window in your default e-mail program with the current document as an attachment. The Microsoft PowerPoint file format is used."
-msgstr ""
+msgstr "Apre un nuovo messaggio nel programma di posta elettronica predefinito con il documento corrente come allegato. Viene utilizzato il formato di file di Microsoft PowerPoint."
#: 01160000.xhp
msgctxt ""
@@ -4966,7 +4966,7 @@ msgctxt ""
"par_id9085055\n"
"help.text"
msgid "Opens a new window in your default e-mail program with the current document as an attachment. The OpenDocument file format is used."
-msgstr ""
+msgstr "Apre un nuovo messaggio nel programma di posta elettronica predefinito con il documento corrente come allegato. Viene utilizzato il formato di file OpenDocument."
#: 01160000.xhp
msgctxt ""
@@ -4982,7 +4982,7 @@ msgctxt ""
"par_id5421918\n"
"help.text"
msgid "Opens a new window in your default e-mail program with the current document as an attachment. The Microsoft Word file format is used."
-msgstr ""
+msgstr "Apre un nuovo messaggio nel programma di posta elettronica predefinito con il documento corrente come allegato. Viene utilizzato il formato di file di Microsoft Word."
#: 01160000.xhp
msgctxt ""
@@ -5062,7 +5062,7 @@ msgctxt ""
"par_id3148668\n"
"help.text"
msgid "<variable id=\"globtext\"><ahelp hid=\".\">Creates a master document from the current Writer document. A new sub-document is created at each occurrence of a chosen paragraph style or outline level in the source document.</ahelp></variable>"
-msgstr ""
+msgstr "<variable id=\"globtext\"><ahelp hid=\".\">Crea un documento master dal documento di Writer attivo. Viene creato un nuovo sotto-documento a ogni occorrenza dello stile di paragrafo o livello di intestazione nel documento di origine.</ahelp></variable>"
#: 01160300.xhp
msgctxt ""
@@ -5102,7 +5102,7 @@ msgctxt ""
"par_id3156426\n"
"help.text"
msgid "<ahelp hid=\".\">Select the paragraph style or outline level that you want to use to separate the source document into sub-documents.</ahelp> By default a new document is created for every chapter level 1."
-msgstr ""
+msgstr "<ahelp hid=\".\">Selezionare lo stile di paragrafo o il livello di struttura da utilizzare per dividere il documento sorgente in sotto-documenti.</ahelp> Per impostazione predefinita, viene creato un nuovo documento per ogni livello 1 di capitolo."
#: 01160300.xhp
msgctxt ""
@@ -5710,7 +5710,7 @@ msgctxt ""
"par_id3147834\n"
"help.text"
msgid "In a spreadsheet, when you paste a range of cells from the clipboard, the result depends on the current selection: If only one cell is selected, the cell range will be pasted started from that cell. If you mark a cell range wider than the cell range in the clipboard, the cell range will be pasted repeatedly to fill the selected cell range."
-msgstr ""
+msgstr "In un foglio elettronico, quando incollate un'area di celle dagli Appunti, il risultato dipende dal tipo di selezione: se è selezionata una sola cella, l'area di celle viene incollata a partire da quella cella; se è selezionata un'area di celle più estesa di quella negli Appunti, quest'ultima viene incollata ripetutamente fino a occupare l'area selezionata."
#: 02060000.xhp
msgctxt ""
@@ -5830,7 +5830,7 @@ msgctxt ""
"par_id3147653\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">When you paste HTML data into a text document, you can choose \"HTML format\" or \"HTML format without comments\". The second choice is the default; it pastes all HTML data, but no comments.</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Quando incollate una selezione di dati HTML in un documento di testo, potete scegliere \"Formato HTML\" o \"Formato HTML senza commenti\". La seconda opzione è l'impostazione predefinita e incolla i dati HTML escludendo i commenti.</caseinline></switchinline>"
#: 02070000.xhp
msgctxt ""
@@ -5838,7 +5838,7 @@ msgctxt ""
"hd_id3155420\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Paste Special</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Incolla speciale</caseinline></switchinline>"
#: 02070000.xhp
msgctxt ""
@@ -5846,7 +5846,7 @@ msgctxt ""
"par_id3150976\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">This dialog appears in Calc if the clipboard contains spreadsheet cells.</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Questa finestra di dialogo compare se gli Appunti di Calc contengono celle di un foglio elettronico.</caseinline></switchinline>"
#: 02070000.xhp
msgctxt ""
@@ -5854,7 +5854,7 @@ msgctxt ""
"hd_id3155341\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Selection</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Selezione</caseinline></switchinline>"
#: 02070000.xhp
msgctxt ""
@@ -5862,7 +5862,7 @@ msgctxt ""
"par_id3152909\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Select a format for the clipboard contents that you want to paste.</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Selezionate il formato per il contenuto degli appunti da incollare.</caseinline></switchinline>"
#: 02070000.xhp
msgctxt ""
@@ -5870,7 +5870,7 @@ msgctxt ""
"hd_id3145120\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Paste all</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Incolla tutto</caseinline></switchinline>"
#: 02070000.xhp
msgctxt ""
@@ -5886,7 +5886,7 @@ msgctxt ""
"hd_id3155449\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Text</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Testo</caseinline></switchinline>"
#: 02070000.xhp
msgctxt ""
@@ -5894,7 +5894,7 @@ msgctxt ""
"par_id3149244\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/pastespecial/text\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Inserts cells containing text.</caseinline></switchinline></ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/scalc/ui/pastespecial/text\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Inserisce le celle che contengono testo.</caseinline></switchinline></ahelp>"
#: 02070000.xhp
msgctxt ""
@@ -5902,7 +5902,7 @@ msgctxt ""
"hd_id3148947\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Numbers</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Numeri</caseinline></switchinline>"
#: 02070000.xhp
msgctxt ""
@@ -5910,7 +5910,7 @@ msgctxt ""
"par_id3152360\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/pastespecial/numbers\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Inserts cells containing numbers.</caseinline></switchinline></ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/scalc/ui/pastespecial/numbers\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Inserisce le celle che contengono numeri.</caseinline></switchinline></ahelp>"
#: 02070000.xhp
msgctxt ""
@@ -5918,7 +5918,7 @@ msgctxt ""
"hd_id3151054\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Date & Time</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Data e ora</caseinline></switchinline>"
#: 02070000.xhp
msgctxt ""
@@ -5926,7 +5926,7 @@ msgctxt ""
"par_id3154226\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/pastespecial/datetime\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Inserts cells containing date and time values.</caseinline></switchinline></ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/scalc/ui/pastespecial/datetime\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Inserisce le celle che contengono valori di data e ora.</caseinline></switchinline></ahelp>"
#: 02070000.xhp
msgctxt ""
@@ -5934,7 +5934,7 @@ msgctxt ""
"hd_id3150791\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Formulas</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Formule</caseinline></switchinline>"
#: 02070000.xhp
msgctxt ""
@@ -5950,7 +5950,7 @@ msgctxt ""
"hd_id3153968\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Comments</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Commenti</caseinline></switchinline>"
#: 02070000.xhp
msgctxt ""
@@ -5958,7 +5958,7 @@ msgctxt ""
"par_id3156422\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/pastespecial/comments\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Inserts comments that are attached to cells. If you want to add the comments to the existing cell content, select the \"Add\" operation.</caseinline></switchinline></ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/scalc/ui/pastespecial/comments\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Inserisce i commenti associati alle celle. Per aggiungere i commenti al contenuto attuale delle celle, scegliere il comando \"Aggiungi\".</caseinline></switchinline></ahelp>"
#: 02070000.xhp
msgctxt ""
@@ -5966,7 +5966,7 @@ msgctxt ""
"hd_id3152935\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Formats</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Formati</caseinline></switchinline>"
#: 02070000.xhp
msgctxt ""
@@ -5974,7 +5974,7 @@ msgctxt ""
"par_id3125863\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/pastespecial/formats\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Inserts cell format attributes.</caseinline></switchinline></ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/scalc/ui/pastespecial/formats\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Inserisce gli attributi di formattazione delle celle.</caseinline></switchinline></ahelp>"
#: 02070000.xhp
msgctxt ""
@@ -5982,7 +5982,7 @@ msgctxt ""
"hd_id3156282\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Objects</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Oggetti</caseinline></switchinline>"
#: 02070000.xhp
msgctxt ""
@@ -5990,7 +5990,7 @@ msgctxt ""
"par_id3149810\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/pastespecial/objects\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Inserts objects contained within the selected cell range. These can be OLE objects, chart objects, or drawing objects.</caseinline></switchinline></ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/scalc/ui/pastespecial/objects\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Inserisce gli oggetti contenuti nell'area di celle selezionata. Si può trattare di oggetti OLE, di grafici o di oggetti di disegno.</caseinline></switchinline></ahelp>"
#: 02070000.xhp
msgctxt ""
@@ -5998,7 +5998,7 @@ msgctxt ""
"hd_id3150440\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Operations</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Operazioni di calcolo</caseinline></switchinline>"
#: 02070000.xhp
msgctxt ""
@@ -6006,7 +6006,7 @@ msgctxt ""
"par_id3151351\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Select the operation to apply when you paste cells into your sheet.</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Qui potete selezionare l'operazione da eseguire quando incollate una o più celle nel foglio elettronico.</caseinline></switchinline>"
#: 02070000.xhp
msgctxt ""
@@ -6014,7 +6014,7 @@ msgctxt ""
"hd_id3153952\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">None</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Senza</caseinline></switchinline>"
#: 02070000.xhp
msgctxt ""
@@ -6022,7 +6022,7 @@ msgctxt ""
"par_id3147348\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/pastespecial/none\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Does not apply an operation when you insert the cell range from the clipboard. The contents of the clipboard will replace existing cell contents.</caseinline></switchinline></ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/scalc/ui/pastespecial/none\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Non esegue alcuna operazione durante l'inserimento di un'area di celle dagli appunti. Il contenuto degli appunti sovrascrive il contenuto esistente delle celle.</caseinline></switchinline></ahelp>"
#: 02070000.xhp
msgctxt ""
@@ -6030,7 +6030,7 @@ msgctxt ""
"hd_id3154988\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Add</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Aggiungi</caseinline></switchinline>"
#: 02070000.xhp
msgctxt ""
@@ -6038,7 +6038,7 @@ msgctxt ""
"par_id3159196\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/pastespecial/add\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Adds the values in the clipboard cells to the values in the target cells. Also, if the clipboard only contains comments, adds the comments to the target cells.</caseinline></switchinline></ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/scalc/ui/pastespecial/add\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Somma i valori delle celle contenute negli appunti ai valori delle celle di destinazione. Se gli appunti contengono solo commenti, aggiunge i commenti al contenuto delle celle di destinazione.</caseinline></switchinline></ahelp>"
#: 02070000.xhp
msgctxt ""
@@ -6046,7 +6046,7 @@ msgctxt ""
"hd_id3145263\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Subtract</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Sottrai</caseinline></switchinline>"
#: 02070000.xhp
msgctxt ""
@@ -6054,7 +6054,7 @@ msgctxt ""
"par_id3154149\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/pastespecial/subtract\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Subtracts the values in the clipboard cells from the values in the target cells.</caseinline></switchinline></ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/scalc/ui/pastespecial/subtract\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Sottrae i valori delle celle contenute negli appunti dai valori delle celle di destinazione.</caseinline></switchinline></ahelp>"
#: 02070000.xhp
msgctxt ""
@@ -6062,7 +6062,7 @@ msgctxt ""
"hd_id3155312\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Multiply</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Moltiplica</caseinline></switchinline>"
#: 02070000.xhp
msgctxt ""
@@ -6070,7 +6070,7 @@ msgctxt ""
"par_id3155307\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/pastespecial/multiply\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Multiplies the values in the clipboard cells with the values in the target cells.</caseinline></switchinline></ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/scalc/ui/pastespecial/multiply\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Moltiplica i valori delle celle contenute negli appunti per i valori delle celle di destinazione.</caseinline></switchinline></ahelp>"
#: 02070000.xhp
msgctxt ""
@@ -6078,7 +6078,7 @@ msgctxt ""
"hd_id3154320\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Divide</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Dividi</caseinline></switchinline>"
#: 02070000.xhp
msgctxt ""
@@ -6086,7 +6086,7 @@ msgctxt ""
"par_id3155417\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/pastespecial/divide\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Divides the values in the target cells by the values in the clipboard cells.</caseinline></switchinline></ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/scalc/ui/pastespecial/divide\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Divide i valori delle celle di destinazione per i valori delle celle contenute negli appunti.</caseinline></switchinline></ahelp>"
#: 02070000.xhp
msgctxt ""
@@ -6094,7 +6094,7 @@ msgctxt ""
"hd_id3147048\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Options</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Opzioni</caseinline></switchinline>"
#: 02070000.xhp
msgctxt ""
@@ -6102,7 +6102,7 @@ msgctxt ""
"par_id3156283\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Sets the paste options for the clipboard contents.</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Imposta le opzioni per l'inserimento del contenuto degli appunti.</caseinline></switchinline>"
#: 02070000.xhp
msgctxt ""
@@ -6110,7 +6110,7 @@ msgctxt ""
"hd_id3151052\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Skip empty cells</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Salta celle vuote</caseinline></switchinline>"
#: 02070000.xhp
msgctxt ""
@@ -6134,7 +6134,7 @@ msgctxt ""
"hd_id3147173\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Transpose</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Trasponi</caseinline></switchinline>"
#: 02070000.xhp
msgctxt ""
@@ -6150,7 +6150,7 @@ msgctxt ""
"hd_id3152971\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Link</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Collegamento</caseinline></switchinline>"
#: 02070000.xhp
msgctxt ""
@@ -6166,7 +6166,7 @@ msgctxt ""
"par_id3145667\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">You can also link sheets within the same spreadsheet. When you link to other files, a <link href=\"text/shared/00/00000005.xhp#dde\" name=\"DDE link\">DDE link</link> is automatically created. A DDE link is inserted as a matrix formula and can only be modified as a whole.</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Potete anche collegare i fogli all'interno di uno stesso foglio elettronico. Se create un collegamento ad altri file, viene creato automaticamente un <link href=\"text/shared/00/00000005.xhp#dde\" name=\"collegamento DDE\">collegamento DDE</link>. Il collegamento DDE viene inserito come formula a matrice e può essere modificato solo come insieme.</caseinline></switchinline>"
#: 02070000.xhp
msgctxt ""
@@ -6174,7 +6174,7 @@ msgctxt ""
"hd_id3146914\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Shift Cells</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Sposta celle</caseinline></switchinline>"
#: 02070000.xhp
msgctxt ""
@@ -6182,7 +6182,7 @@ msgctxt ""
"par_id3145169\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Set the shift options for the target cells when the clipboard content is inserted.</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Permette d'impostare le opzioni di spostamento delle celle di destinazione quando viene inserito il contenuto degli appunti.</caseinline></switchinline>"
#: 02070000.xhp
msgctxt ""
@@ -6190,7 +6190,7 @@ msgctxt ""
"hd_id3155518\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Don't shift</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Non spostare</caseinline></switchinline>"
#: 02070000.xhp
msgctxt ""
@@ -6198,7 +6198,7 @@ msgctxt ""
"par_id3154158\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/pastespecial/no_shift\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Inserted cells replace the target cells.</caseinline></switchinline></ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/scalc/ui/pastespecial/no_shift\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Le celle inserite sostituiscono quelle precedenti.</caseinline></switchinline></ahelp>"
#: 02070000.xhp
msgctxt ""
@@ -6206,7 +6206,7 @@ msgctxt ""
"hd_id3148483\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Down</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">In basso</caseinline></switchinline>"
#: 02070000.xhp
msgctxt ""
@@ -6214,7 +6214,7 @@ msgctxt ""
"par_id3152962\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/pastespecial/move_down\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Target cells are shifted downward when you insert cells from the clipboard.</caseinline></switchinline></ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/scalc/ui/pastespecial/move_down\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Inserendo le celle dagli appunti, le celle di destinazione sono spostate verso il basso.</caseinline></switchinline></ahelp>"
#: 02070000.xhp
msgctxt ""
@@ -6222,7 +6222,7 @@ msgctxt ""
"hd_id3145621\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Right</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Destra</caseinline></switchinline>"
#: 02070000.xhp
msgctxt ""
@@ -6230,7 +6230,7 @@ msgctxt ""
"par_id3159264\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/pastespecial/move_right\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Target cells are shifted to the right when you insert cells from the clipboard.</caseinline></switchinline></ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/scalc/ui/pastespecial/move_right\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Inserendo le celle dagli appunti, le celle di destinazione sono spostate verso destra.</caseinline></switchinline></ahelp>"
#: 02090000.xhp
msgctxt ""
@@ -6254,7 +6254,7 @@ msgctxt ""
"par_id3149999\n"
"help.text"
msgid "<variable id=\"allestext\"><ahelp hid=\".\">Selects the entire content of the current file, frame, or text object.</ahelp></variable>"
-msgstr ""
+msgstr "<variable id=\"allestext\"><ahelp hid=\".\">Seleziona l'intero contenuto del file, della cornice o dell'oggetto di testo.</ahelp></variable>"
#: 02090000.xhp
msgctxt ""
@@ -8902,7 +8902,7 @@ msgctxt ""
"par_id3150774\n"
"help.text"
msgid "<variable id=\"links_text\"><variable id=\"verknuepfungentext\"><ahelp hid=\".\">Lets you edit the properties of each link in the current document, including the path to the source file. This command is not available if the current document does not contain links to other files.</ahelp> </variable></variable>"
-msgstr ""
+msgstr "<variable id=\"links_text\"><variable id=\"verknuepfungentext\"><ahelp hid=\".\">Permette di modificare le proprietà dei collegamenti presenti nel documento, incluso il percorso del file sorgente. Questo comando non è disponibile se il documento non contiene collegamenti ad altri file.</ahelp></variable></variable>"
#: 02180000.xhp
msgctxt ""
@@ -10958,7 +10958,7 @@ msgctxt ""
"par_id3150868\n"
"help.text"
msgid "<ahelp hid=\"svx/ui/acceptrejectchangesdialog/calcdesc\">Lists the comments that are attached to the change.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"svx/ui/acceptrejectchangesdialog/calcdesc\">Mostra i commenti associati alla modifica.</ahelp>"
#: 02230401.xhp
msgctxt ""
@@ -11046,7 +11046,7 @@ msgctxt ""
"par_id3151116\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">If you made changes by choosing <emph>Tools - AutoCorrect - Apply and Edit Changes</emph>, the <emph>Undo</emph> button appears in the dialog.<ahelp hid=\"svx/ui/acceptrejectchangesdialog/undo\"> Reverse the last Accept or Reject command.</ahelp></caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Se è stata fatta una modifica scegliendo <emph>Strumenti - Correzione automatica - Applica e modifica cambiamenti</emph>, nella finestra di dialogo compare il pulsante <emph>Annulla</emph>. <ahelp hid=\"svx/ui/acceptrejectchangesdialog/undo\">Annulla l'ultimo comando Accetta o Rifiuta.</ahelp></caseinline></switchinline>"
#: 02230401.xhp
msgctxt ""
@@ -11782,7 +11782,7 @@ msgctxt ""
"par_id3144760\n"
"help.text"
msgid "<ahelp hid=\".\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Resizes the display to fit the width of the selected cell area at the moment the command is started.</caseinline><defaultinline>Resizes the display to fit the width of the text in the document at the moment the command is started.</defaultinline></switchinline></ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Adatta la scala di visualizzazione alla larghezza delle celle selezionate.</caseinline><defaultinline>Adatta la scala di visualizzazione alla larghezza del testo del documento.</defaultinline></switchinline></ahelp>"
#: 03010000.xhp
msgctxt ""
@@ -11798,7 +11798,7 @@ msgctxt ""
"par_id3150543\n"
"help.text"
msgid "<ahelp hid=\".\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Resizes the display to fit the width and height of the selected cell area at the moment the command is started.</caseinline><defaultinline>Displays the entire page on your screen.</defaultinline></switchinline></ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Adatta la scala di visualizzazione alla larghezza e all'altezza dell'area di celle selezionate nel momento in cui è avviato il comando.</caseinline><defaultinline> Visualizza l'intera pagina nello schermo.</defaultinline></switchinline></ahelp>"
#: 03010000.xhp
msgctxt ""
@@ -11814,7 +11814,7 @@ msgctxt ""
"par_id3143231\n"
"help.text"
msgid "<ahelp hid=\".\">Displays the complete width of the document page. The top and bottom edges of the page may not be visible.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Adatta la visualizzazione alla larghezza della pagina. È possibile che i bordi superiore e inferiore della pagina non siano visibili.</ahelp>"
#: 03010000.xhp
msgctxt ""
@@ -11846,7 +11846,7 @@ msgctxt ""
"par_id3159125\n"
"help.text"
msgid "<ahelp hid=\".\">Enter the zoom factor at which you want to display the document. Enter a percentage in the box.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Permette di specificare il fattore di ingrandimento con cui visualizzare il documento. Inserire una percentuale nella casella.</ahelp>"
#: 03010000.xhp
msgctxt ""
@@ -12350,7 +12350,7 @@ msgctxt ""
"par_id1857051\n"
"help.text"
msgid "Choose a command to delete the current comment, or all comments from the same author as the current comment, or all comments in the document."
-msgstr ""
+msgstr "Scegliete un comando per cancellare il commento corrente, o tutti i commenti dello stesso autore del commento corrente, o tutti i commenti nel documento."
#: 04050000.xhp
msgctxt ""
@@ -12366,7 +12366,7 @@ msgctxt ""
"par_id0804200803435883\n"
"help.text"
msgid "<ahelp hid=\".\">Use <item type=\"menuitem\">View - Comments</item> to show or hide all comments.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Utilizzare <item type=\"menuitem\">Visualizza - Commenti</item> per mostrare o nascondere tutti i commenti.</ahelp>"
#: 04050000.xhp
msgctxt ""
@@ -12526,7 +12526,7 @@ msgctxt ""
"par_id3153124\n"
"help.text"
msgid "To insert a scanned image, the driver for your scanner must be installed. <switchinline select=\"sys\"><caseinline select=\"UNIX\">Under UNIX systems, install the SANE package found at <link href=\"http://www.sane-project.org\" name=\"Sane Project\">http://www.sane-project.org</link>. The SANE package must use the same libc as $[officename].</caseinline></switchinline>"
-msgstr ""
+msgstr "Per inserire l'immagine acquisita dovete prima installare il driver per lo scanner. <switchinline select=\"sys\"> <caseinline select=\"UNIX\">Sui sistemi UNIX, installate il pacchetto SANE residente in <link href=\"http://www.sane-project.org\" name=\"Sane Project\">http://www.sane-project.org</link>. Il pacchetto SANE deve usare la stessa libc di $[officename].</caseinline></switchinline>"
#: 04060000.xhp
msgctxt ""
@@ -13022,7 +13022,7 @@ msgctxt ""
"par_id3149495\n"
"help.text"
msgid "<variable id=\"starmath\"><ahelp hid=\".\">Inserts a formula into the current document.</ahelp><switchinline select=\"appl\"><caseinline select=\"MATH\"></caseinline><defaultinline> For more information open the $[officename] Math Help.</defaultinline></switchinline></variable>"
-msgstr ""
+msgstr "<variable id=\"starmath\"><ahelp hid=\".\">Inserisce una formula nel documento attivo.</ahelp><switchinline select=\"appl\"><caseinline select=\"MATH\"></caseinline><defaultinline> Per maggiori informazioni, consultate la Guida di $[officename] Math.</defaultinline></switchinline></variable>"
#: 04160300.xhp
msgctxt ""
@@ -13774,7 +13774,7 @@ msgctxt ""
"par_id3150496\n"
"help.text"
msgid "If you save your document in Microsoft Word format, all of the strikethrough styles are converted to the single line style."
-msgstr ""
+msgstr "Salvando il documento in formato Microsoft Word, tutti i tipi di effetto barrato verranno convertiti nello stile a linea singola."
#: 05020200.xhp
msgctxt ""
@@ -18990,7 +18990,7 @@ msgctxt ""
"par_id3154299\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/borderpage/sync\">Applies the same <emph>padding</emph> setting to all four borders when you enter a new distance.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/borderpage/sync\">Se si specifica un nuovo valore, applica automaticamente la stessa <emph>Spaziatura interna</emph> a tutti i bordi.</ahelp>"
#: 05030500.xhp
msgctxt ""
@@ -21318,7 +21318,7 @@ msgctxt ""
"par_id3083278\n"
"help.text"
msgid "<ahelp hid=\".uno:RubyDialog\">Allows you to add comments next to Asian characters to serve as a pronunciation guide.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".uno:RubyDialog\">Permette di aggiungere commenti di ausilio per la pronuncia affianco ai caratteri asiatici.</ahelp>"
#: 05060000.xhp
msgctxt ""
@@ -21510,7 +21510,7 @@ msgctxt ""
"par_id3160463\n"
"help.text"
msgid "<ahelp hid=\".\">Aligns the left edges of the selected objects. If only one object is selected in Draw or Impress, the left edge of the object is aligned to the left page margin.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Allinea il bordo sinistro degli oggetti selezionati. Se è selezionato un solo oggetto in Draw o Impress, il suo bordo sinistro viene allineato col margine sinistro della pagina.</ahelp>"
#: 05070100.xhp
msgctxt ""
@@ -21550,7 +21550,7 @@ msgctxt ""
"par_id3145138\n"
"help.text"
msgid "<ahelp hid=\".\">Horizontally centers the selected objects. If only one object is selected in Draw or Impress, the center of the object is aligned to the horizontal center of the page.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Centra orizzontalmente gli oggetti selezionati. Se è selezionato un solo oggetto in Draw o Impress, il suo punto centrale viene allineato col centro orizzontale della pagina.</ahelp>"
#: 05070200.xhp
msgctxt ""
@@ -21582,7 +21582,7 @@ msgctxt ""
"par_id3151264\n"
"help.text"
msgid "<ahelp hid=\".\">Aligns the right edges of the selected objects. If only one object is selected in Impress or Draw, the right edge of the object is aligned to the right page margin.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Allinea il bordo destro degli oggetti selezionati. Se è selezionato un solo oggetto in Draw o Impress, il suo bordo destro viene allineato col margine destro della pagina.</ahelp>"
#: 05070300.xhp
msgctxt ""
@@ -21614,7 +21614,7 @@ msgctxt ""
"par_id3154613\n"
"help.text"
msgid "<ahelp hid=\".\">Vertically aligns the top edges of the selected objects. If only one object is selected in Draw or Impress, the top edge of the object is aligned to the upper page margin.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Allinea verticalmente il bordo superiore degli oggetti selezionati. Se è selezionato un solo oggetto in Draw o Impress, il suo bordo superiore viene allineato col margine superiore della pagina.</ahelp>"
#: 05070400.xhp
msgctxt ""
@@ -21646,7 +21646,7 @@ msgctxt ""
"par_id3160463\n"
"help.text"
msgid "<ahelp hid=\".\">Vertically centers the selected objects. If only one object is selected in Draw or Impress, the center of the object is aligned to the vertical center of the page.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Centra verticalmente gli oggetti selezionati. Se è selezionato un solo oggetto in Draw o Impress, il suo punto centrale viene allineato col centro verticale della pagina.</ahelp>"
#: 05070600.xhp
msgctxt ""
@@ -23587,6 +23587,22 @@ msgstr "Potete aggiungere agli elenchi predefiniti colori personalizzati, sfumat
#: 05210100.xhp
msgctxt ""
"05210100.xhp\n"
+"hd_id471527077476052\n"
+"help.text"
+msgid "Cell, Row or Table background selector"
+msgstr ""
+
+#: 05210100.xhp
+msgctxt ""
+"05210100.xhp\n"
+"par_id661527077493366\n"
+"help.text"
+msgid "Select the table object which background area is to be filled."
+msgstr ""
+
+#: 05210100.xhp
+msgctxt ""
+"05210100.xhp\n"
"hd_id3147373\n"
"help.text"
msgid "None"
@@ -25366,7 +25382,7 @@ msgctxt ""
"par_id368358\n"
"help.text"
msgid "These callouts are a legacy of the first versions of %PRODUCTNAME. You must customize a toolbar or menu to insert these callouts. The newer custom shape callouts offer more features, for example a Callouts toolbar<image id=\"img_id3154508\" src=\"cmd/sc_calloutshapes.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3154508\">Icon</alt></image> where you can select the shape."
-msgstr ""
+msgstr "Queste legende sono retaggio delle prime versioni di %PRODUCTNAME. Per inserire queste legende, dovete personalizzare una barra degli strumenti o un menu. Le nuove legende personalizzabili offrono più funzioni, per esempio una barra degli strumenti Legenda<image id=\"img_id3154508\" src=\"cmd/sc_calloutshapes.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3154508\">Icona</alt></image>, in cui è possibile scegliere la loro forma."
#: 05230500.xhp
msgctxt ""
@@ -30862,7 +30878,7 @@ msgctxt ""
"par_id3145138\n"
"help.text"
msgid "<ahelp hid=\".\">Opens the Color Replacer dialog, where you can replace colors in bitmap and meta file graphics.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Apre la finestra di dialogo Sostituzione colore, in cui si possono sostituire i colori delle immagini bitmap e dei metafile.</ahelp>"
#: 06030000.xhp
msgctxt ""
@@ -30958,7 +30974,7 @@ msgctxt ""
"par_id3149819\n"
"help.text"
msgid "<ahelp hid=\".\">Select this checkbox to replace the current <emph>Source color</emph> with the color that you specify in the <emph>Replace with </emph>box.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Selezionare questa casella per sostituire il <emph>Colore origine</emph> con quello specificato nella casella <emph>Sostituisci con</emph>.</ahelp>"
#: 06030000.xhp
msgctxt ""
@@ -30990,7 +31006,7 @@ msgctxt ""
"par_id3144438\n"
"help.text"
msgid "<ahelp hid=\".\">Set the tolerance for replacing a source color in the source image. To replace colors that are similar to the color that you selected, enter a low value. To replace a wider range of colors, enter a higher value.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Definire la tolleranza per la sostituzione di un colore di origine dell'immagine originale. Per sostituire il colore selezionato con un colore simile, inserire un valore basso. Per sostituire una gamma di colori più ampia, inserire un valore più elevato.</ahelp>"
#: 06030000.xhp
msgctxt ""
@@ -31006,7 +31022,7 @@ msgctxt ""
"par_id3154173\n"
"help.text"
msgid "<ahelp hid=\".\">Lists the available replacement colors. To modify the current list of colors, deselect the image, choose <emph>Format - Area</emph>, and then click the <emph>Colors</emph> tab.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Elenca i colori sostitutivi disponibili. Per modificare l'elenco dei colori, deselezionare l'immagine, scegliere <emph>Formato - Area</emph> e fare clic sulla scheda <emph>Colori</emph>.</ahelp>"
#: 06030000.xhp
msgctxt ""
@@ -31086,7 +31102,7 @@ msgctxt ""
"par_id3153394\n"
"help.text"
msgid "To turn on or to turn off the AutoCorrect feature, in $[officename] Calc choose <emph>Tools - AutoInput</emph>, and in $[officename] Writer choose <emph>Tools - AutoCorrect - While Typing</emph>. To apply the AutoCorrect settings to an entire text document, choose <emph>Tools - AutoCorrect - Apply</emph>."
-msgstr ""
+msgstr "Per attivare e disattivare la funzione di correzione automatica, scegliete <emph>Strumenti - Digitazione automatica</emph> in $[officename] Calc, e <emph>Strumenti - Correzione automatica - Durante la digitazione</emph> in $[officename] Writer. Per applicare le impostazioni di correzione automatica a un intero documento di testo, scegliete <emph>Strumenti - Correzione automatica - Applica</emph>."
#: 06040000.xhp
msgctxt ""
@@ -31134,7 +31150,7 @@ msgctxt ""
"par_id3153124\n"
"help.text"
msgid "In text documents, you can choose to apply the AutoCorrect corrections while you type [T], or only when you modify existing text [M] with <emph>Tools - AutoCorrect - Apply</emph>."
-msgstr ""
+msgstr "Nei documenti di testo potete scegliere di applicare la correzione automatica durante la digitazione [D] o solo durante la modifica di un testo esistente [M] scegliendo <emph>Strumenti - Correzione automatica - Applica</emph>."
#: 06040100.xhp
msgctxt ""
@@ -31205,24 +31221,24 @@ msgctxt ""
"06040100.xhp\n"
"hd_id3145072\n"
"help.text"
-msgid "Automatic *bold* and _underline_"
-msgstr "*Grassetto* e _sottolineato_ automatici"
+msgid "Automatic *bold*, /italic/, -strikeout- and _underline_"
+msgstr "*Grassetto*, /corsivo/, -barrato- e _sottolineato_ automatici"
#: 06040100.xhp
msgctxt ""
"06040100.xhp\n"
"par_id3153577\n"
"help.text"
-msgid "Automatically applies bold formatting to text enclosed by asterisks (*), and underline to text enclosed by underscores ( _ ), for example, *bold*. The asterisks and underscores are not displayed after the formatting is applied."
-msgstr "Applica automaticamente lo stile grassetto al testo racchiuso tra asterischi (*) e lo stile sottolineato al testo racchiuso tra caratteri di sottolineatura ( _ ), ad esempio *grassetto*. Gli asterischi e i caratteri di sottolineatura non vengono visualizzati in seguito all'applicazione della formattazione."
+msgid "Automatically applies bold, italic, strikethrough or underline formatting to text enclosed by asterisks (*), slashes (/), hyphens (-), and underscores (_), respectively. These characters disappear after the formatting is applied."
+msgstr ""
#: 06040100.xhp
msgctxt ""
"06040100.xhp\n"
"par_id3153127\n"
"help.text"
-msgid "This feature does not work if the formatting characters * or _ are entered with an <link href=\"text/shared/00/00000005.xhp#IME\" name=\"Input Method Editor\">Input Method Editor</link>."
-msgstr "Questa funzione non è attiva se i caratteri di formattazione * o _ vengono inseriti con un <link href=\"text/shared/00/00000005.xhp#IME\" name=\"editor del metodo di digitazione\">editor del metodo di digitazione</link>."
+msgid "This feature does not work if the formatting characters <item type=\"literal\">* / - _</item> are entered with an <link href=\"text/shared/00/00000005.xhp#IME\" name=\"Input Method Editor\">Input Method Editor</link>."
+msgstr "Questa funzione non è attiva se i caratteri di formattazione <item type=\"literal\">* / _</item> vengono inseriti con un <link href=\"text/shared/00/00000005.xhp#IME\" name=\"editor del metodo di digitazione\">editor del metodo di digitazione</link>."
#: 06040100.xhp
msgctxt ""
@@ -31646,7 +31662,7 @@ msgctxt ""
"par_id3145728\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Removes empty paragraphs from the current document when you choose <emph>Tools - AutoCorrect - Apply</emph>.</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Rimuove i paragrafi vuoti dal documento attivo quando scegliete <emph>Strumenti - Correzione automatica - Applica</emph>.</caseinline></switchinline>"
#: 06040100.xhp
msgctxt ""
@@ -32118,7 +32134,7 @@ msgctxt ""
"par_id3152425\n"
"help.text"
msgid "<ahelp hid=\".\">Select the <link href=\"text/shared/01/04100000.xhp\" name=\"special character\">special character</link> that will automatically replace the current opening quotation mark in your document when you choose <emph>Tools - AutoCorrect - Apply</emph>.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Selezionare il <link href=\"text/shared/01/04100000.xhp\" name=\"carattere speciale\">carattere speciale</link> con cui si vuole sostituire automaticamente le attuali virgolette aperte scegliendo <emph>Strumenti - Correzione automatica - Applica</emph>.</ahelp>"
#: 06040400.xhp
msgctxt ""
@@ -32134,7 +32150,7 @@ msgctxt ""
"par_id3147008\n"
"help.text"
msgid "<ahelp hid=\".\">Select the <link href=\"text/shared/01/04100000.xhp\" name=\"special character\">special character</link> that will automatically replace the current closing quotation mark in your document when you choose <emph>Tools - AutoCorrect - Apply</emph>.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Selezionare il <link href=\"text/shared/01/04100000.xhp\" name=\"carattere speciale\">carattere speciale</link> con cui si vuole sostituire automaticamente le attuali virgolette chiuse scegliendo <emph>Strumenti - Correzione automatica - Applica</emph>.</ahelp>"
#: 06040400.xhp
msgctxt ""
@@ -34622,7 +34638,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Menus"
-msgstr ""
+msgstr "Menu"
#: 06140100.xhp
msgctxt ""
@@ -34638,7 +34654,7 @@ msgctxt ""
"hd_id431514298399070\n"
"help.text"
msgid "<link href=\"text/shared/01/06140100.xhp\" name=\"Menus\">Menus</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/06140100.xhp\" name=\"Menu\">Menu</link>"
#: 06140100.xhp
msgctxt ""
@@ -34670,7 +34686,7 @@ msgctxt ""
"hd_id611514302475667\n"
"help.text"
msgid "Search"
-msgstr ""
+msgstr "Cerca"
#: 06140100.xhp
msgctxt ""
@@ -34686,7 +34702,7 @@ msgctxt ""
"hd_id441514302482125\n"
"help.text"
msgid "Category"
-msgstr ""
+msgstr "Categoria"
#: 06140100.xhp
msgctxt ""
@@ -34702,7 +34718,7 @@ msgctxt ""
"hd_id551514302487751\n"
"help.text"
msgid "Function"
-msgstr ""
+msgstr "Funzione"
#: 06140100.xhp
msgctxt ""
@@ -34718,7 +34734,7 @@ msgctxt ""
"hd_id221514304363862\n"
"help.text"
msgid "Description"
-msgstr ""
+msgstr "Descrizione"
#: 06140100.xhp
msgctxt ""
@@ -34734,7 +34750,7 @@ msgctxt ""
"hd_id541514303919911\n"
"help.text"
msgid "Scope"
-msgstr ""
+msgstr "Ambito"
#: 06140100.xhp
msgctxt ""
@@ -34750,7 +34766,7 @@ msgctxt ""
"hd_id581514303962835\n"
"help.text"
msgid "Target"
-msgstr ""
+msgstr "Destinazione"
#: 06140100.xhp
msgctxt ""
@@ -34766,7 +34782,7 @@ msgctxt ""
"hd_id351514304283480\n"
"help.text"
msgid "Add"
-msgstr ""
+msgstr "Aggiungi"
#: 06140100.xhp
msgctxt ""
@@ -34782,7 +34798,7 @@ msgctxt ""
"hd_id651514304289436\n"
"help.text"
msgid "Remove"
-msgstr ""
+msgstr "Rimuovi"
#: 06140100.xhp
msgctxt ""
@@ -34862,7 +34878,7 @@ msgctxt ""
"hd_id321514310951605\n"
"help.text"
msgid "Insert"
-msgstr ""
+msgstr "Inserisci"
#: 06140100.xhp
msgctxt ""
@@ -34886,7 +34902,7 @@ msgctxt ""
"hd_id341514311059169\n"
"help.text"
msgid "Modify"
-msgstr ""
+msgstr "Cambia"
#: 06140100.xhp
msgctxt ""
@@ -34902,7 +34918,7 @@ msgctxt ""
"hd_id641514311180774\n"
"help.text"
msgid "Defaults"
-msgstr ""
+msgstr "Predefiniti"
#: 06140100.xhp
msgctxt ""
@@ -35238,7 +35254,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Context Menus"
-msgstr ""
+msgstr "Menu di contesto"
#: 06140300.xhp
msgctxt ""
@@ -35286,7 +35302,7 @@ msgctxt ""
"hd_id611514302475667\n"
"help.text"
msgid "Search"
-msgstr ""
+msgstr "Cerca"
#: 06140300.xhp
msgctxt ""
@@ -35302,7 +35318,7 @@ msgctxt ""
"hd_id441514302482125\n"
"help.text"
msgid "Category"
-msgstr ""
+msgstr "Categoria"
#: 06140300.xhp
msgctxt ""
@@ -35318,7 +35334,7 @@ msgctxt ""
"hd_id551514302487751\n"
"help.text"
msgid "Function"
-msgstr ""
+msgstr "Funzione"
#: 06140300.xhp
msgctxt ""
@@ -35334,7 +35350,7 @@ msgctxt ""
"hd_id221514304363862\n"
"help.text"
msgid "Description"
-msgstr ""
+msgstr "Descrizione"
#: 06140300.xhp
msgctxt ""
@@ -35350,7 +35366,7 @@ msgctxt ""
"hd_id541514303919911\n"
"help.text"
msgid "Location"
-msgstr ""
+msgstr "Posizione"
#: 06140300.xhp
msgctxt ""
@@ -35366,7 +35382,7 @@ msgctxt ""
"hd_id581514303962835\n"
"help.text"
msgid "Menu"
-msgstr ""
+msgstr "Menu"
#: 06140300.xhp
msgctxt ""
@@ -35382,7 +35398,7 @@ msgctxt ""
"hd_id351514304283480\n"
"help.text"
msgid "Add"
-msgstr ""
+msgstr "Aggiungi"
#: 06140300.xhp
msgctxt ""
@@ -35398,7 +35414,7 @@ msgctxt ""
"hd_id651514304289436\n"
"help.text"
msgid "Remove"
-msgstr ""
+msgstr "Rimuovi"
#: 06140300.xhp
msgctxt ""
@@ -35478,7 +35494,7 @@ msgctxt ""
"hd_id321514310951605\n"
"help.text"
msgid "Insert"
-msgstr ""
+msgstr "Inserisci"
#: 06140300.xhp
msgctxt ""
@@ -35502,7 +35518,7 @@ msgctxt ""
"hd_id341514311059169\n"
"help.text"
msgid "Modify"
-msgstr ""
+msgstr "Cambia"
#: 06140300.xhp
msgctxt ""
@@ -35518,7 +35534,7 @@ msgctxt ""
"hd_id641514311180774\n"
"help.text"
msgid "Defaults"
-msgstr ""
+msgstr "Predefiniti"
#: 06140300.xhp
msgctxt ""
@@ -35566,7 +35582,7 @@ msgctxt ""
"hd_id611514302475667\n"
"help.text"
msgid "Search"
-msgstr ""
+msgstr "Cerca"
#: 06140400.xhp
msgctxt ""
@@ -35582,7 +35598,7 @@ msgctxt ""
"hd_id441514302482125\n"
"help.text"
msgid "Category"
-msgstr ""
+msgstr "Categoria"
#: 06140400.xhp
msgctxt ""
@@ -35598,7 +35614,7 @@ msgctxt ""
"hd_id551514302487751\n"
"help.text"
msgid "Function"
-msgstr ""
+msgstr "Funzione"
#: 06140400.xhp
msgctxt ""
@@ -35614,7 +35630,7 @@ msgctxt ""
"hd_id221514304363862\n"
"help.text"
msgid "Description"
-msgstr ""
+msgstr "Descrizione"
#: 06140400.xhp
msgctxt ""
@@ -35630,7 +35646,7 @@ msgctxt ""
"hd_id541514303919911\n"
"help.text"
msgid "Location"
-msgstr ""
+msgstr "Posizione"
#: 06140400.xhp
msgctxt ""
@@ -35646,7 +35662,7 @@ msgctxt ""
"hd_id581514303962835\n"
"help.text"
msgid "Toolbar"
-msgstr ""
+msgstr "Barra degli strumenti"
#: 06140400.xhp
msgctxt ""
@@ -35662,7 +35678,7 @@ msgctxt ""
"hd_id351514304283480\n"
"help.text"
msgid "Add"
-msgstr ""
+msgstr "Aggiungi"
#: 06140400.xhp
msgctxt ""
@@ -35678,7 +35694,7 @@ msgctxt ""
"hd_id651514304289436\n"
"help.text"
msgid "Remove"
-msgstr ""
+msgstr "Rimuovi"
#: 06140400.xhp
msgctxt ""
@@ -35758,7 +35774,7 @@ msgctxt ""
"hd_id321514310951605\n"
"help.text"
msgid "Insert"
-msgstr ""
+msgstr "Inserisci"
#: 06140400.xhp
msgctxt ""
@@ -35774,7 +35790,7 @@ msgctxt ""
"hd_id341514311059169\n"
"help.text"
msgid "Modify"
-msgstr ""
+msgstr "Cambia"
#: 06140400.xhp
msgctxt ""
@@ -35790,7 +35806,7 @@ msgctxt ""
"par_idN106B2\n"
"help.text"
msgid "<emph>Change Icon</emph>: Opens the <link href=\"text/shared/01/06140402.xhp\" name=\"Change Icon\">Change Icon</link> dialog, where you can assign a different icon to the current command."
-msgstr ""
+msgstr "<emph>Cambia icona</emph>: apre la finestra di dialogo <link href=\"text/shared/01/06140402.xhp\" name=\"Cambia icona\">Cambia icona</link> in cui potete assegnare un'icona diversa al comando selezionato."
#: 06140400.xhp
msgctxt ""
@@ -35814,7 +35830,7 @@ msgctxt ""
"hd_id641514311180774\n"
"help.text"
msgid "Defaults"
-msgstr ""
+msgstr "Predefiniti"
#: 06140400.xhp
msgctxt ""
@@ -36630,7 +36646,7 @@ msgctxt ""
"par_id3144436\n"
"help.text"
msgid "<ahelp hid=\".\">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.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Individuare il file a cui applicare il filtro di esportazione XML. Il codice XML del file verrà aperto nell'editor XML predefinito dopo la trasformazione.</ahelp>"
#: 06150200.xhp
msgctxt ""
@@ -36646,7 +36662,7 @@ msgctxt ""
"par_id3147250\n"
"help.text"
msgid "<ahelp hid=\".\">The front-most open file that matches the XML filter criteria will be used to test the filter. The current XML export filter transforms the file and the resulting XML code is displayed in the <link href=\"text/shared/01/06150210.xhp\">XML Filter output</link> window.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Per la prova del filtro verrà usato il primo file aperto corrispondente ai criteri del filtro XML. Il filtro di esportazione XML trasforma il file e il codice XML risultante viene visualizzato nella finestra del <link href=\"text/shared/01/06150210.xhp\">risultato Filtro XML</link>.</ahelp>"
#: 06150200.xhp
msgctxt ""
@@ -36670,7 +36686,7 @@ msgctxt ""
"par_id3153681\n"
"help.text"
msgid "<ahelp hid=\".\">Displays the file name of the XSLT filter that you entered on the <emph>Transformation</emph> tab page.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Mostra il nome del file del filtro XSLT che è stato specificato nella scheda <emph>Trasformazione</emph>.</ahelp>"
#: 06150200.xhp
msgctxt ""
@@ -36686,7 +36702,7 @@ msgctxt ""
"par_id3156410\n"
"help.text"
msgid "<ahelp hid=\".\">Displays the file name of the template that you entered on the <emph>Transformation</emph> tab page.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Mostra il nome del file del modello di documento che è stato specificato nella scheda <emph>Trasformazione</emph>.</ahelp>"
#: 06150200.xhp
msgctxt ""
@@ -36710,7 +36726,7 @@ msgctxt ""
"par_id3150444\n"
"help.text"
msgid "<ahelp hid=\".\">Opens the XML source of the selected document in your default XML editor after importing.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Apre il codice sorgente XML del documento selezionato nell'editor XML predefinito dopo l'importazione.</ahelp>"
#: 06150200.xhp
msgctxt ""
@@ -36726,7 +36742,7 @@ msgctxt ""
"par_id3149885\n"
"help.text"
msgid "<ahelp hid=\".\">Opens a file selection dialog. The selected file is opened using the current XML import filter.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Apre una finestra di dialogo per la selezione dei file. Il file selezionato viene aperto usando il filtro di importazione XML attivo.</ahelp>"
#: 06150200.xhp
msgctxt ""
@@ -36742,7 +36758,7 @@ msgctxt ""
"par_id3146137\n"
"help.text"
msgid "<ahelp hid=\".\">Re-opens the document that was last opened with this dialog.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Riapre il documento che era stato aperto per ultimo con questa finestra di dialogo.</ahelp>"
#: 06150210.xhp
msgctxt ""
@@ -36830,7 +36846,7 @@ msgctxt ""
"par_id3146060\n"
"help.text"
msgid "<ahelp hid=\".\">Converts the selected Korean text from Hangul to Hanja or from Hanja to Hangul.</ahelp> The menu command can only be called if you enable Asian language support under <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - Language Settings - Languages</emph>, and if a text formatted in Korean language is selected."
-msgstr ""
+msgstr "<ahelp hid=\".\">Converte il testo coreano selezionato da Hangul in Hanja o da Hanja in Hangul.</ahelp> Questo comando è disponibile solo se in <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferenze</emph></caseinline><defaultinline><emph>Strumenti - Opzioni</emph></defaultinline></switchinline><emph> - Impostazioni della lingua - Lingue</emph> è abilitato il supporto delle lingue asiatiche ed è selezionato un testo formattato in lingua coreana."
#: 06200000.xhp
msgctxt ""
@@ -36846,7 +36862,7 @@ msgctxt ""
"par_id3148520\n"
"help.text"
msgid "<ahelp hid=\".\">Displays the current selection.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Mostra la selezione attiva.</ahelp>"
#: 06200000.xhp
msgctxt ""
@@ -36862,7 +36878,7 @@ msgctxt ""
"par_id3149205\n"
"help.text"
msgid "<ahelp hid=\".\">Displays the first replacement suggestion from the dictionary.</ahelp> You can edit the suggested word or enter another word. Click the <emph>Find</emph> button to replace your original word with the corresponding replacement word."
-msgstr ""
+msgstr "<ahelp hid=\".\">Mostra la prima proposta di sostituzione del dizionario.</ahelp> Potete modificare la parola proposta o inserirne una diversa. Fate clic sul pulsante <emph>Trova</emph> per sostituire la parola originale con quella sostitutiva corrispondente."
#: 06200000.xhp
msgctxt ""
@@ -36878,7 +36894,7 @@ msgctxt ""
"par_id3156560\n"
"help.text"
msgid "<ahelp hid=\".\">Finds your Hangul input in the dictionary and replaces it with the corresponding Hanja.</ahelp> Click <emph>Ignore</emph> to cancel the find function."
-msgstr ""
+msgstr "<ahelp hid=\".\">Trova il testo Hangul nel dizionario e lo sostituisce col testo Hanja corrispondente.</ahelp> Fate clic su <emph>Ignora</emph> per annullare l'operazione di ricerca."
#: 06200000.xhp
msgctxt ""
@@ -36894,7 +36910,7 @@ msgctxt ""
"par_id3154823\n"
"help.text"
msgid "<ahelp hid=\".\">Displays all available replacements in the dictionary.</ahelp> If the <emph>Replace by character</emph> box is enabled, you see a grid of characters. If the <emph>Replace by character</emph> box is not checked, you see a list of words."
-msgstr ""
+msgstr "<ahelp hid=\".\">Mostra le proposte di sostituzione disponibili nel dizionario.</ahelp> Se la casella <emph>Sostituisci per carattere</emph> è abilitata, viene visualizzata una griglia di caratteri. Se la casella <emph>Sostituisci per carattere</emph> non è abilitata, viene visualizzato un elenco di parole."
#: 06200000.xhp
msgctxt ""
@@ -37086,7 +37102,7 @@ msgctxt ""
"par_id3153896\n"
"help.text"
msgid "<ahelp hid=\".\">No changes will be made to the current selection. The next word or character will be selected for conversion.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">La selezione attiva non verrà modificata. Saranno selezionati per la conversione la parola o il carattere successivi.</ahelp>"
#: 06200000.xhp
msgctxt ""
@@ -37102,7 +37118,7 @@ msgctxt ""
"par_id3154937\n"
"help.text"
msgid "<ahelp hid=\".\">No changes will be made to the current selection, and every time the same selection is detected it will be skipped automatically.</ahelp> The next word or character will be selected for conversion. The list of ignored text is valid for the current $[officename] session."
-msgstr ""
+msgstr "<ahelp hid=\".\">La selezione attiva non verrà modificata e sarà ignorata automaticamente anche nelle istanze successive.</ahelp> Saranno selezionati per la conversione la parola o il carattere successivi. L'elenco dei testi ignorati è valido solo per la sessione attiva di $[officename]."
#: 06200000.xhp
msgctxt ""
@@ -37118,7 +37134,7 @@ msgctxt ""
"par_id3148403\n"
"help.text"
msgid "<ahelp hid=\".\">Replaces the selection with the suggested characters or word according to the format options.</ahelp> The next word or character will be selected for conversion."
-msgstr ""
+msgstr "<ahelp hid=\".\">Sostituisce la selezione con i caratteri o con la parola proposti in base alle opzioni di formato impostate.</ahelp> Saranno selezionati per la conversione la parola o il carattere successivi."
#: 06200000.xhp
msgctxt ""
@@ -37134,7 +37150,7 @@ msgctxt ""
"par_id3153338\n"
"help.text"
msgid "<ahelp hid=\".\">Replaces the selection with the suggested characters or word according to the format options. Every time the same selection is detected it will be replaced automatically.</ahelp> The next word or character will be selected for conversion. The list of replacement text is valid for the current $[officename] session."
-msgstr ""
+msgstr "<ahelp hid=\".\">Sostituisce la selezione con i caratteri o con la parola proposti in base alle opzioni di formato impostate. Ogni volta che verrà trovata la stessa selezione, il testo sarà sostituito automaticamente.</ahelp> Saranno selezionati per la conversione la parola o il carattere successivi. L'elenco dei testi sostitutivi è valido solo per la sessione attiva di $[officename]."
#: 06200000.xhp
msgctxt ""
@@ -37166,7 +37182,7 @@ msgctxt ""
"par_idN1096D\n"
"help.text"
msgid "<ahelp hid=\".\">Opens the <link href=\"text/shared/01/06201000.xhp\">Hangul/Hanja Options</link> dialog.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Apre la finestra di dialogo <link href=\"text/shared/01/06201000.xhp\">Opzioni Hangul/Hanja</link>.</ahelp>"
#: 06201000.xhp
msgctxt ""
@@ -37886,7 +37902,7 @@ msgctxt ""
"par_id321526421041596\n"
"help.text"
msgid "<link href=\"text/shared/guide/digital_signatures.xhp\">About Digital Signatures</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/guide/digital_signatures.xhp\">Informazioni sulle firme digitali</link>"
#: extensionupdate.xhp
msgctxt ""
@@ -38710,7 +38726,7 @@ msgctxt ""
"par_idN1057E\n"
"help.text"
msgid "<ahelp hid=\".\">Opens a movie file or a sound file that you want to preview.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Apre un filmato o un file audio in modo anteprima.</ahelp>"
#: mediaplayer.xhp
msgctxt ""
@@ -38726,7 +38742,7 @@ msgctxt ""
"par_idN10585\n"
"help.text"
msgid "<ahelp hid=\".\">Inserts the current movie file or sound file as a media object into the current document.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Inserisce il filmato o il file audio selezionato come oggetto media nel documento.</ahelp>"
#: mediaplayer.xhp
msgctxt ""
@@ -40510,7 +40526,7 @@ msgctxt ""
"bm_id3149532\n"
"help.text"
msgid "<bookmark_value>EPUB;export</bookmark_value> <bookmark_value>electronic publication</bookmark_value> <bookmark_value>exporting;to EPUB</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>EPUB;esportare</bookmark_value> <bookmark_value>Elettronica, pubblicazione</bookmark_value> <bookmark_value>Esportare;in EPUB</bookmark_value>"
#: ref_epub_export.xhp
msgctxt ""
@@ -40534,7 +40550,7 @@ msgctxt ""
"par_id701525003241759\n"
"help.text"
msgid "<embedvar href=\"text/shared/00/00000002.xhp#epubv\" markup=\"keep\"/>"
-msgstr ""
+msgstr "<embedvar href=\"text/shared/00/00000002.xhp#epubv\" markup=\"keep\"/>"
#: ref_epub_export.xhp
msgctxt ""
@@ -40550,7 +40566,7 @@ msgctxt ""
"hd_id3148519\n"
"help.text"
msgid "General"
-msgstr ""
+msgstr "Generale"
#: ref_epub_export.xhp
msgctxt ""
@@ -40702,7 +40718,7 @@ msgctxt ""
"hd_id3148525\n"
"help.text"
msgid "Metadata"
-msgstr ""
+msgstr "Metadati"
#: ref_epub_export.xhp
msgctxt ""
@@ -40718,7 +40734,7 @@ msgctxt ""
"hd_id3148526\n"
"help.text"
msgid "Identifier"
-msgstr ""
+msgstr "Identificatore"
#: ref_epub_export.xhp
msgctxt ""
@@ -40734,7 +40750,7 @@ msgctxt ""
"hd_id3148527\n"
"help.text"
msgid "Title"
-msgstr ""
+msgstr "Titolo"
#: ref_epub_export.xhp
msgctxt ""
@@ -40750,7 +40766,7 @@ msgctxt ""
"hd_id3148528\n"
"help.text"
msgid "Author"
-msgstr ""
+msgstr "Autore"
#: ref_epub_export.xhp
msgctxt ""
@@ -40766,7 +40782,7 @@ msgctxt ""
"hd_id3148529\n"
"help.text"
msgid "Language"
-msgstr ""
+msgstr "Lingua"
#: ref_epub_export.xhp
msgctxt ""
@@ -40782,7 +40798,7 @@ msgctxt ""
"hd_id3148530\n"
"help.text"
msgid "Date"
-msgstr ""
+msgstr "Data"
#: ref_epub_export.xhp
msgctxt ""
@@ -40822,7 +40838,7 @@ msgctxt ""
"par_id3154044\n"
"help.text"
msgid "<variable id=\"export\"><ahelp hid=\".\">Saves the current file to Portable Document Format (PDF) version 1.4.</ahelp> A PDF file can be viewed and printed on any platform with the original formatting intact, provided that supporting software is installed.</variable>"
-msgstr ""
+msgstr "<variable id=\"export\"><ahelp hid=\".\">Salva il file nel formato PDF (Portable Document Format) versione 1.4.</ahelp> Un file PDF può essere visualizzato e stampato su qualsiasi piattaforma mantenendo inalterata la formattazione originale, a condizione che sul sistema sia installato il software di supporto appropriato.</variable>"
#: ref_pdf_export.xhp
msgctxt ""
@@ -41110,7 +41126,7 @@ msgctxt ""
"par_idN207C2\n"
"help.text"
msgid "To export comments of Writer documents as they are shown in %PRODUCTNAME, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer - Print</emph> and select the <emph>In margins</emph> option in the <emph>Comments</emph> area. The exported pages will be scaled down and the comments will be placed into their margins."
-msgstr ""
+msgstr "Per esportare i commenti dei documenti Writer, come mostrati in %PRODUCTNAME, scegliete <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferenze</emph></caseinline><defaultinline><emph>Strumenti - Opzioni</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer - Stampa</emph> e selezionate l'opzione <emph>Nei margini</emph> nell'area <emph>Commenti</emph>. Le pagine esportate saranno ridimensionate e i commenti sistemati all'interno dei loro margini."
#: ref_pdf_export.xhp
msgctxt ""
@@ -42038,7 +42054,7 @@ msgctxt ""
"par_id22107306\n"
"help.text"
msgid "The key store to be used can be selected under <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME - Security - Certificate Path</emph>."
-msgstr ""
+msgstr "Il portachiavi da usare può essere selezionato in <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferenze</emph></caseinline><defaultinline><emph>Strumenti - Opzioni</emph></defaultinline></switchinline><emph> - %PRODUCTNAME - Sicurezza - Percorso del certificato</emph>."
#: ref_pdf_export.xhp
msgctxt ""
@@ -42150,7 +42166,7 @@ msgctxt ""
"par_id11371501\n"
"help.text"
msgid "<ahelp hid=\".\">These three fields allow you to optionally enter additional information about the digital signature that will be applied to the PDF (Where, by whom and why it was made). It will be embedded in the appropriate PDF fields and will be visible to anyone viewing the PDF. Each or all of the three fields may be left blank.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Questi tre campi, facoltativi permettono di inserire informazioni aggiuntive sulla firma digitale, e esse saranno applicate al PDF (dove, da chi e perché è stata fatta). Saranno incorporati nei campi PDF relativi e saranno visibili da chiunque visualizzi il PDF. Tutti e tre i campi, o ciascuno di essi separatamente, possono essere lasciati vuoti.</ahelp>"
#: ref_pdf_export.xhp
msgctxt ""
@@ -42182,7 +42198,7 @@ msgctxt ""
"par_id39089022\n"
"help.text"
msgid "The list of TSA URLs that can be selected is maintained under <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME - Security - TSAs</emph>."
-msgstr ""
+msgstr "L'elenco degli URL dei TSA selezionabili è gestita in <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferenze</emph></caseinline><defaultinline><emph>Strumenti - Opzioni</emph></defaultinline></switchinline><emph> - %PRODUCTNAME - Sicurezza - TSA</emph>."
#: ref_pdf_export.xhp
msgctxt ""
@@ -43574,7 +43590,7 @@ msgctxt ""
"par_id2318796\n"
"help.text"
msgid "<ahelp hid=\".\">Specifies a regular expression pattern. Strings validated against the data type must conform to this pattern to be valid. The XSD data type syntax for regular expressions is different from the regular expression syntax used elsewhere in %PRODUCTNAME, for example in the Find & Replace dialog.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Specifica un modello di espressione regolare. Le stringhe convalidate a fronte del tipo di dati devono essere conformi a questo modello per essere valide. La sintassi del tipo di dati XSD per le espressioni regolari è diversa dalla sintassi delle espressioni regolari utilizzate altrove in %PRODUCTNAME, ad esempio nella finestra di dialogo Trova e sostituisci.</ahelp>"
#: xformsdatatab.xhp
msgctxt ""
diff --git a/source/it/helpcontent2/source/text/shared/02.po b/source/it/helpcontent2/source/text/shared/02.po
index d58980c2bba..7a4fa2ab146 100644
--- a/source/it/helpcontent2/source/text/shared/02.po
+++ b/source/it/helpcontent2/source/text/shared/02.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2018-05-08 15:10+0200\n"
-"PO-Revision-Date: 2018-04-05 12:56+0000\n"
+"PO-Revision-Date: 2018-06-10 21:22+0000\n"
"Last-Translator: Valter Mura <valtermura@gmail.com>\n"
"Language-Team: Italian <l10n@it.libreoffice.org>\n"
"Language: it\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1522932978.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1528665746.000000\n"
#: 01110000.xhp
msgctxt ""
@@ -8286,7 +8286,7 @@ msgctxt ""
"par_id3150040\n"
"help.text"
msgid "<ahelp hid=\".\">Toggles the Design mode on or off. This function is used to switch quickly between <link href=\"text/shared/explorer/database/04030000.xhp\" name=\"Design\">Design</link> and User mode. Activate to edit the form controls, deactivate to use the form controls.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Attiva o disattiva il modo bozza. Questa funzione viene usata per passare velocemente dal modo <link href=\"text/shared/explorer/database/04030000.xhp\" name=\"bozza\">bozza</link> al modo utente e viceversa. Attivare questa opzione per modificare i campi di controllo del formulario, oppure disattivarla per utilizzare i campi di controllo.</ahelp>"
#: 01170500.xhp
msgctxt ""
@@ -9718,7 +9718,7 @@ msgctxt ""
"par_id3153539\n"
"help.text"
msgid "<ahelp hid=\".uno:TextdirectionLeftToRight\">Specifies the horizontal direction of the text.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".uno:TextdirectionLeftToRight\">Specifica la direzione orizzontale del testo.</ahelp>"
#: 02040000.xhp
msgctxt ""
@@ -9758,7 +9758,7 @@ msgctxt ""
"par_id3153089\n"
"help.text"
msgid "<ahelp hid=\".uno:TextdirectionTopToBottom\" visibility=\"visible\">Specifies the vertical direction of the text.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".uno:TextdirectionTopToBottom\" visibility=\"visible\">Specifica la direzione verticale del testo.</ahelp>"
#: 02050000.xhp
msgctxt ""
@@ -10766,7 +10766,7 @@ msgctxt ""
"par_id3109850\n"
"help.text"
msgid "<ahelp hid=\".\">Positions the selected paragraph before the one above it.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Posiziona il paragrafo selezionato al di sopra di quello precedente.</ahelp>"
#: 06100000.xhp
msgctxt ""
@@ -10822,7 +10822,7 @@ msgctxt ""
"par_id3154228\n"
"help.text"
msgid "<ahelp hid=\".\">Positions the selected paragraph after the one below it.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Posiziona il paragrafo selezionato sotto quello successivo.</ahelp>"
#: 06110000.xhp
msgctxt ""
@@ -11302,7 +11302,7 @@ msgctxt ""
"par_id3155391\n"
"help.text"
msgid "<ahelp hid=\".\">Select the type of hyperlink to be inserted.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Selezionare il tipo di collegamento ipertestuale da inserire.</ahelp>"
#: 09070000.xhp
msgctxt ""
@@ -11350,7 +11350,7 @@ msgctxt ""
"par_id3147209\n"
"help.text"
msgid "<ahelp hid=\".\">Applies the data to your document.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Applica i dati al documento.</ahelp>"
#: 09070000.xhp
msgctxt ""
@@ -11398,7 +11398,7 @@ msgctxt ""
"par_id3149234\n"
"help.text"
msgid "<ahelp hid=\".\">Resets the entries in the dialog to their original state.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Reimposta le opzioni della finestra di dialogo al loro stato originale.</ahelp>"
#: 09070100.xhp
msgctxt ""
@@ -11422,7 +11422,7 @@ msgctxt ""
"par_id3154230\n"
"help.text"
msgid "<ahelp hid=\".\">Use the <emph>Internet</emph> page of the <link href=\"text/shared/02/09070000.xhp\" name=\"Hyperlink dialog\">Hyperlink dialog</link> to edit hyperlinks with WWW or FTP addresses.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Utilizzare la scheda <emph>Internet</emph> della <link href=\"text/shared/02/09070000.xhp\" name=\"finestra di dialogo Collegamento\">finestra di dialogo Collegamento</link> per modificare i collegamenti ipertestuali con indirizzi WWW o FTP.</ahelp>"
#: 09070100.xhp
msgctxt ""
@@ -11486,7 +11486,7 @@ msgctxt ""
"par_id9887081\n"
"help.text"
msgid "<ahelp hid=\".\">Enter a URL for the file that you want to open when you click the hyperlink. If you do not specify a target frame, the file opens in the current document or frame.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Digitare un indirizzo URL per il file da aprire quando si pigia il collegamento ipertestuale. Se non si specifica un frame di arrivo, il file si apre nel documento o nel frame attivo.</ahelp>"
#: 09070100.xhp
msgctxt ""
@@ -11670,7 +11670,7 @@ msgctxt ""
"par_id3153049\n"
"help.text"
msgid "<ahelp hid=\".\">On the <emph>Mail</emph> page in the <link href=\"text/shared/02/09070000.xhp\" name=\"Hyperlink dialog\">Hyperlink dialog</link> you can edit hyperlinks for e-mail addresses.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Nella pagina <emph>Posta</emph> della <link href=\"text/shared/02/09070000.xhp\" name=\"finestra di dialogo Collegamento ipertestuale\">finestra di dialogo Collegamento ipertestuale</link> è possibile modificare i collegamenti ipertestuali per gli indirizzi di posta elettronica.</ahelp>"
#: 09070200.xhp
msgctxt ""
@@ -11694,7 +11694,7 @@ msgctxt ""
"par_id3166460\n"
"help.text"
msgid "<ahelp hid=\".\">Assigns the specified e-mail address to the hyperlink.</ahelp> Clicking the new hyperlink in the document will open a new message document, addressed to the receiver specified in the <emph>Recipient</emph> field."
-msgstr ""
+msgstr "<ahelp hid=\".\">Assegna al collegamento ipertestuale l'indirizzo di posta elettronica specificato.</ahelp> Facendo clic sul nuovo collegamento nel documento si apre un nuovo messaggio indirizzato al destinatario specificato nel campo <emph>Destinatario</emph>."
#: 09070200.xhp
msgctxt ""
@@ -11750,7 +11750,7 @@ msgctxt ""
"par_id3154682\n"
"help.text"
msgid "<ahelp hid=\".\">Hyperlinks to any document or targets in documents can be edited using the <emph>Document</emph> tab from the <link href=\"text/shared/02/09070000.xhp\" name=\"Hyperlink dialog\">Hyperlink dialog</link>.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">I collegamenti ipertestuali che puntano a un diverso documento o a una destinazione all'interno dello stesso documento possono essere modificati utilizzando la scheda <emph>Documento</emph> della <link href=\"text/shared/02/09070000.xhp\" name=\"finestra di dialogo Collegamento ipertestuale\">finestra di dialogo Collegamento ipertestuale</link>.</ahelp>"
#: 09070300.xhp
msgctxt ""
@@ -11790,7 +11790,7 @@ msgctxt ""
"par_id3149095\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/hyperlinkdocpage/fileopen\">Opens the <emph>Open dialog</emph>, where you can select a file.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/hyperlinkdocpage/fileopen\">Apre la finestra di dialogo <emph>Apri</emph>, in cui si può selezionare un file.</ahelp>"
#: 09070300.xhp
msgctxt ""
@@ -11870,7 +11870,7 @@ msgctxt ""
"par_id3150445\n"
"help.text"
msgid "<ahelp hid=\".\">Use the <emph>New Document</emph> tab from the <link href=\"text/shared/02/09070000.xhp\" name=\"Hyperlink dialog\">Hyperlink dialog</link> to set up a hyperlink to a new document and create the new document simultaneously.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Utilizzate la scheda <emph>Nuovo documento</emph> della <link href=\"text/shared/02/09070000.xhp\" name=\"finestra di dialogo Collegamento ipertestuale\">finestra di dialogo Collegamento ipertestuale</link> per creare insieme un nuovo documento e impostare un collegamento che punti a quel documento.</ahelp>"
#: 09070400.xhp
msgctxt ""
@@ -11990,7 +11990,7 @@ msgctxt ""
"par_id3150445\n"
"help.text"
msgid "<ahelp hid=\".\">Moves back to the previous page in the document.</ahelp> This function is only active when you select the <emph>Print Preview</emph> function on the <emph>File</emph> menu."
-msgstr ""
+msgstr "<ahelp hid=\".\">Torna alla pagina precedente del documento.</ahelp> Questa funzione è attiva solo selezionando la funzione <emph>Anteprima di stampa</emph> nel menu <emph>File</emph>."
#: 10010000.xhp
msgctxt ""
@@ -12030,7 +12030,7 @@ msgctxt ""
"par_id3159224\n"
"help.text"
msgid "<ahelp hid=\".\">Moves forward to the next page in the document.</ahelp> This function is only active when you select the <emph>Print Preview</emph> function on the <emph>File</emph> menu."
-msgstr ""
+msgstr "<ahelp hid=\".\">Avanza alla pagina successiva del documento.</ahelp> Questa funzione è attiva solo selezionando la funzione <emph>Anteprima di stampa</emph> nel menu <emph>File</emph>."
#: 10020000.xhp
msgctxt ""
@@ -12070,7 +12070,7 @@ msgctxt ""
"par_id3153539\n"
"help.text"
msgid "<ahelp hid=\".\">Moves to the first page of the document.</ahelp> This function is only active when you select the <emph>Print Preview</emph> function on the <emph>File</emph> menu."
-msgstr ""
+msgstr "<ahelp hid=\".\">Passa alla prima pagina del documento.</ahelp> Questa funzione è attiva solo selezionando la funzione <emph>Anteprima di stampa</emph> nel menu <emph>File</emph>."
#: 10030000.xhp
msgctxt ""
@@ -12110,7 +12110,7 @@ msgctxt ""
"par_id3149716\n"
"help.text"
msgid "<ahelp hid=\".\">Moves to the last page of the document.</ahelp> This function is only active when you select the <emph>Print Preview</emph> function on the <emph>File</emph> menu."
-msgstr ""
+msgstr "<ahelp hid=\".\">Passa all'ultima pagina del documento.</ahelp> Questa funzione è attiva solo selezionando la funzione <emph>Anteprima di stampa</emph> nel menu <emph>File</emph>."
#: 10040000.xhp
msgctxt ""
diff --git a/source/it/helpcontent2/source/text/shared/04.po b/source/it/helpcontent2/source/text/shared/04.po
index 3891712659a..e82c3887267 100644
--- a/source/it/helpcontent2/source/text/shared/04.po
+++ b/source/it/helpcontent2/source/text/shared/04.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: 2018-05-08 15:10+0200\n"
-"PO-Revision-Date: 2018-01-14 10:51+0000\n"
+"PO-Revision-Date: 2018-06-10 21:24+0000\n"
"Last-Translator: Valter Mura <valtermura@gmail.com>\n"
"Language-Team: Italian <l10n@it.libreoffice.org>\n"
"Language: it\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1515927083.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1528665870.000000\n"
#: 01010000.xhp
msgctxt ""
@@ -214,7 +214,7 @@ msgctxt ""
"par_id3153968\n"
"help.text"
msgid "$[officename] has an AutoComplete function which activates itself in some text and list boxes. For example, enter <switchinline select=\"sys\"><caseinline select=\"WIN\">c:\\a</caseinline><defaultinline>~/a</defaultinline></switchinline> into the URL field and the AutoComplete function displays the first file or first directory found <switchinline select=\"sys\"><caseinline select=\"WIN\">on the C: drive</caseinline><defaultinline>in your home folder</defaultinline></switchinline> that starts with the letter \"a\"."
-msgstr ""
+msgstr "$[officename] ha una funzione di completamento automatico che si attiva in alcune caselle di testo e di riepilogo. Per esempio, indicate <switchinline select=\"sys\"><caseinline select=\"WIN\">c:\\a</caseinline><defaultinline>~/a</defaultinline></switchinline> nel campo URL e la funzione di completamento automatico mostra il primo file o la prima cartella trovata <switchinline select=\"sys\"><caseinline select=\"WIN\">nel disco C:</caseinline><defaultinline>nella vostra cartella personale</defaultinline></switchinline> che inizia con la lettera \"a\"."
#: 01010000.xhp
msgctxt ""
@@ -254,7 +254,7 @@ msgctxt ""
"par_id3145421\n"
"help.text"
msgid "The shortcut keys are shown on the right hand side of the menu lists next to the corresponding menu command. <switchinline select=\"sys\"><caseinline select=\"MAC\">(Not all of the mentioned keys for controlling dialogs are available on the Macintosh.)</caseinline></switchinline>"
-msgstr ""
+msgstr "I tasti di scelta rapida compaiono sul lato destro del menu, a fianco del comando corrispondente <switchinline select=\"sys\"><caseinline select=\"MAC\">(non tutti i tasti citati per il controllo delle finestre di dialogo sono disponibili sui sistemi Macintosh).</caseinline></switchinline>"
#: 01010000.xhp
msgctxt ""
diff --git a/source/it/helpcontent2/source/text/shared/06.po b/source/it/helpcontent2/source/text/shared/06.po
index 5897a74f744..c77011e7f0f 100644
--- a/source/it/helpcontent2/source/text/shared/06.po
+++ b/source/it/helpcontent2/source/text/shared/06.po
@@ -4,14 +4,17 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2018-04-17 15:54+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"PO-Revision-Date: 2018-06-10 21:24+0000\n"
+"Last-Translator: Valter Mura <valtermura@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: it\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: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1528665892.000000\n"
#: youtubevideos.xhp
msgctxt ""
@@ -19,7 +22,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "YouTube Videos"
-msgstr ""
+msgstr "Video di YouTube"
#: youtubevideos.xhp
msgctxt ""
@@ -27,4 +30,4 @@ msgctxt ""
"par_ytvideosample\n"
"help.text"
msgid "<object data=\"https://www.youtube-nocookie.com/embed/YHBve8v13VY\" id=\"vid_id61521568603544\" type=\"video/youtube\" width=\"560\" height=\"315\"/>"
-msgstr ""
+msgstr "<object data=\"https://www.youtube-nocookie.com/embed/YHBve8v13VY\" id=\"vid_id61521568603544\" type=\"video/youtube\" width=\"560\" height=\"315\"/>"
diff --git a/source/it/helpcontent2/source/text/shared/autopi.po b/source/it/helpcontent2/source/text/shared/autopi.po
index 3472c01c88f..44080f544e2 100644
--- a/source/it/helpcontent2/source/text/shared/autopi.po
+++ b/source/it/helpcontent2/source/text/shared/autopi.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: 2018-04-24 12:21+0200\n"
-"PO-Revision-Date: 2018-01-30 20:13+0000\n"
+"PO-Revision-Date: 2018-06-10 21:57+0000\n"
"Last-Translator: Valter Mura <valtermura@gmail.com>\n"
"Language-Team: Italian <l10n@it.libreoffice.org>\n"
"Language: it\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1517343205.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1528667826.000000\n"
#: 01000000.xhp
msgctxt ""
@@ -222,7 +222,7 @@ msgctxt ""
"par_id3147226\n"
"help.text"
msgid "<ahelp hid=\".\">Specifies whether you want to create a personal or a business letter.</ahelp> The available options on the following pages vary depending on your choice."
-msgstr ""
+msgstr "<ahelp hid=\".\">Permette di scegliere se creare una lettera personale o di lavoro.</ahelp> Da questa scelta dipendono anche le opzioni disponibili nelle pagine seguenti."
#: 01010100.xhp
msgctxt ""
@@ -238,7 +238,7 @@ msgctxt ""
"par_id3145346\n"
"help.text"
msgid "Specify whether you want to create a business or personal letter template."
-msgstr ""
+msgstr "Indicare qui se si vuole creare il modello per una lettera privata o commerciale."
#: 01010100.xhp
msgctxt ""
@@ -254,7 +254,7 @@ msgctxt ""
"par_id3153681\n"
"help.text"
msgid "<ahelp hid=\".\">Specifies that you want to create a business letter template.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Imposta la creazione di un modello di lettera commerciale.</ahelp>"
#: 01010100.xhp
msgctxt ""
@@ -270,7 +270,7 @@ msgctxt ""
"par_idN1061D\n"
"help.text"
msgid "<ahelp hid=\".\">Specifies that you want to create a formal personal letter.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Imposta la creazione di una lettera personale formale.</ahelp>"
#: 01010100.xhp
msgctxt ""
@@ -286,7 +286,7 @@ msgctxt ""
"par_id3148538\n"
"help.text"
msgid "<ahelp hid=\".\">Specifies that you want to create a personal letter.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Imposta la creazione di una lettera personale.</ahelp>"
#: 01010100.xhp
msgctxt ""
@@ -302,7 +302,7 @@ msgctxt ""
"par_id3149415\n"
"help.text"
msgid "<ahelp hid=\".\">Select the design for your letter template.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Selezionare la struttura del proprio modello di lettera.</ahelp>"
#: 01010100.xhp
msgctxt ""
@@ -318,7 +318,7 @@ msgctxt ""
"par_idN106AB\n"
"help.text"
msgid "<ahelp hid=\".\">Specifies whether paper is used that already contains an imprinted logo, address, or footer line. The Wizard shows the Letterhead layout page next.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Specifica se la carta utilizzata contiene già un logo, un indirizzo o un piè di pagina. La procedura guidata mostra quindi la pagina Layout carta intestata.</ahelp>"
#: 01010100.xhp
msgctxt ""
@@ -350,7 +350,7 @@ msgctxt ""
"par_id3146856\n"
"help.text"
msgid "<ahelp hid=\".\">Allows you to specify the elements that are already imprinted on your letterhead paper.</ahelp> Those elements are not printed, and the space they occupy is left blank by the printer."
-msgstr ""
+msgstr "<ahelp hid=\".\">Consente di specificare gli elementi già presenti sulla carta intestata.</ahelp> Questi elementi non vengono stampati e lo spazio che occupano viene lasciato bianco dalla stampante."
#: 01010200.xhp
msgctxt ""
@@ -374,7 +374,7 @@ msgctxt ""
"par_id3154186\n"
"help.text"
msgid "<ahelp hid=\".\">Specifies that a logo is already printed on your letterhead paper. %PRODUCTNAME does not print a logo.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Specifica che il logo è già stampato sulla carta intestata. %PRODUCTNAME non stamperà il logo.</ahelp>"
#: 01010200.xhp
msgctxt ""
@@ -406,7 +406,7 @@ msgctxt ""
"par_id3156192\n"
"help.text"
msgid "<ahelp hid=\".\">Defines the width of the object.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Definisce la larghezza dell'oggetto.</ahelp>"
#: 01010200.xhp
msgctxt ""
@@ -422,7 +422,7 @@ msgctxt ""
"par_id3149766\n"
"help.text"
msgid "<ahelp hid=\".\">Sets the object distance from the left page margin.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Imposta la distanza dell'oggetto dal margine sinistro della pagina.</ahelp>"
#: 01010200.xhp
msgctxt ""
@@ -438,7 +438,7 @@ msgctxt ""
"par_id3156423\n"
"help.text"
msgid "<ahelp hid=\".\">Sets the object distance from the top page margin.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Imposta la distanza dell'oggetto dal margine superiore della pagina.</ahelp>"
#: 01010200.xhp
msgctxt ""
@@ -454,7 +454,7 @@ msgctxt ""
"par_idN106CF\n"
"help.text"
msgid "<ahelp hid=\".\">Specifies that an address is already printed on your letterhead paper. %PRODUCTNAME does not print an address.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Specifica che l'indirizzo è già stampato sulla carta intestata. %PRODUCTNAME non stamperà l'indirizzo.</ahelp>"
#: 01010200.xhp
msgctxt ""
@@ -470,7 +470,7 @@ msgctxt ""
"par_idN106D6\n"
"help.text"
msgid "<ahelp hid=\".\">Specifies that your own address is already imprinted in small size above the area of the recipient's address. %PRODUCTNAME does not print an address in small size.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Specifica che il proprio indirizzo è già stampato in piccolo al di sopra dell'indirizzo del destinatario. %PRODUCTNAME non stamperà l'indirizzo in piccolo.</ahelp>"
#: 01010200.xhp
msgctxt ""
@@ -486,7 +486,7 @@ msgctxt ""
"par_idN106DD\n"
"help.text"
msgid "<ahelp hid=\".\">Specifies that a footer area is already printed on your letterhead paper. %PRODUCTNAME does not print a footer.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Specifica che la carta intestata contiene già un'area per il piè di pagina. %PRODUCTNAME non stamperà il piè di pagina.</ahelp>"
#: 01010200.xhp
msgctxt ""
@@ -502,7 +502,7 @@ msgctxt ""
"par_idN106E4\n"
"help.text"
msgid "<ahelp hid=\".\">Enter the height of the footer area that is already imprinted on your letterhead paper. %PRODUCTNAME does not print in that area.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Inserire l'altezza dell'area del piè di pagina già predisposta nella carta intestata. %PRODUCTNAME non stamperà il contenuto delle pagine in quest'area.</ahelp>"
#: 01010200.xhp
msgctxt ""
@@ -534,7 +534,7 @@ msgctxt ""
"par_id3152594\n"
"help.text"
msgid "<ahelp hid=\".\">Defines the items to be included in the letter template.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Definisce gli elementi da includere nel modello di lettera.</ahelp>"
#: 01010300.xhp
msgctxt ""
@@ -550,7 +550,7 @@ msgctxt ""
"par_idN105FE\n"
"help.text"
msgid "<ahelp hid=\".\">Includes a logo on the letter template.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Inserisce un logo nel modello di documento della lettera.</ahelp>"
#: 01010300.xhp
msgctxt ""
@@ -566,7 +566,7 @@ msgctxt ""
"par_idN10619\n"
"help.text"
msgid "<ahelp hid=\".\">Includes a small size return address on the letter template.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Inserisce un indirizzo di ritorno di piccole dimensioni nel modello di documento della lettera.</ahelp>"
#: 01010300.xhp
msgctxt ""
@@ -582,7 +582,7 @@ msgctxt ""
"par_idN10634\n"
"help.text"
msgid "<ahelp hid=\".\">Includes a line with references to a business letter on the letter template.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Inserisce una riga con riferimenti a una lettera commerciale nel modello di documento della lettera.</ahelp>"
#: 01010300.xhp
msgctxt ""
@@ -598,7 +598,7 @@ msgctxt ""
"par_idN1064F\n"
"help.text"
msgid "<ahelp hid=\".\">Includes a subject line on the letter template.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Inserisce una riga per l'oggetto nel modello di documento della lettera.</ahelp>"
#: 01010300.xhp
msgctxt ""
@@ -614,7 +614,7 @@ msgctxt ""
"par_idN10672\n"
"help.text"
msgid "<ahelp hid=\".\">Includes a salutation on the letter template. Select the salutation from the list box.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Inserisce una formula di saluto di apertura nel modello di documento della lettera. Selezionare la formula di saluto dalla casella di riepilogo.</ahelp>"
#: 01010300.xhp
msgctxt ""
@@ -630,7 +630,7 @@ msgctxt ""
"par_idN1068D\n"
"help.text"
msgid "<ahelp hid=\".\">Includes fold marks on the letter template.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Inserisce segni di piegatura nel modello di documento della lettera.</ahelp>"
#: 01010300.xhp
msgctxt ""
@@ -646,7 +646,7 @@ msgctxt ""
"par_idN106B0\n"
"help.text"
msgid "<ahelp hid=\".\">Includes a complimentary close on the letter template. Select the text from the list box.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Inserisce una formula di chiusura nel modello di documento della lettera. Selezionare il testo nella casella di riepilogo.</ahelp>"
#: 01010300.xhp
msgctxt ""
@@ -662,7 +662,7 @@ msgctxt ""
"par_idN106CB\n"
"help.text"
msgid "<ahelp hid=\".\">Includes a footer on the letter template.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Inserisce un piè di pagina nel modello di documento della lettera.</ahelp>"
#: 01010300.xhp
msgctxt ""
@@ -694,7 +694,7 @@ msgctxt ""
"par_id3159233\n"
"help.text"
msgid "<ahelp hid=\".\">Specifies the sender and recipient information.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Specifica le informazioni sul mittente e sul destinatario.</ahelp>"
#: 01010400.xhp
msgctxt ""
@@ -726,7 +726,7 @@ msgctxt ""
"par_idN105EC\n"
"help.text"
msgid "<ahelp hid=\".\">Use the address data from %PRODUCTNAME - User Data in the Options dialog box.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Usare i dati d'indirizzo specificati in %PRODUCTNAME - Dati utente nella casella di dialogo Opzioni.</ahelp>"
#: 01010400.xhp
msgctxt ""
@@ -742,7 +742,7 @@ msgctxt ""
"par_idN10606\n"
"help.text"
msgid "<ahelp hid=\".\">Use the address data from the following text boxes.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Usare i dati dell'indirizzo specificati nelle caselle di testo seguenti.</ahelp>"
#: 01010400.xhp
msgctxt ""
@@ -774,7 +774,7 @@ msgctxt ""
"par_idN1063A\n"
"help.text"
msgid "<ahelp hid=\".\">Specifies the street address of the sender.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Specifica l'indirizzo stradale del mittente.</ahelp>"
#: 01010400.xhp
msgctxt ""
@@ -822,7 +822,7 @@ msgctxt ""
"par_idN10685\n"
"help.text"
msgid "<ahelp hid=\".\">Specifies that placeholder fields are inserted into the letter template.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Specifica l'inclusione di campi segnaposto nel modello di documento della lettera.</ahelp>"
#: 01010400.xhp
msgctxt ""
@@ -838,7 +838,7 @@ msgctxt ""
"par_idN1069F\n"
"help.text"
msgid "<ahelp hid=\".\">Address database fields are inserted into the letter template.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">I campi del database degli indirizzi sono inseriti nel modello di documento della lettera.</ahelp>"
#: 01010400.xhp
msgctxt ""
@@ -870,7 +870,7 @@ msgctxt ""
"par_id3147834\n"
"help.text"
msgid "<ahelp hid=\".\">Specifies the information to include in the footer space.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Specifica le informazioni da includere nel piè di pagina.</ahelp>"
#: 01010500.xhp
msgctxt ""
@@ -886,7 +886,7 @@ msgctxt ""
"par_idN105E3\n"
"help.text"
msgid "<ahelp hid=\".\">Enter the text for the footer lines.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Digitare il testo del piè di pagina.</ahelp>"
#: 01010500.xhp
msgctxt ""
@@ -950,7 +950,7 @@ msgctxt ""
"par_id3152996\n"
"help.text"
msgid "<ahelp hid=\".\">Specifies where and under which name you want to save the document and template.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Specifica la posizione e il nome con cui salvare il documento e il modello.</ahelp>"
#: 01010600.xhp
msgctxt ""
@@ -966,7 +966,7 @@ msgctxt ""
"par_id3159157\n"
"help.text"
msgid "<ahelp hid=\".\">Specifies the title of the document template.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Specifica il titolo del modello di documento.</ahelp>"
#: 01010600.xhp
msgctxt ""
@@ -982,7 +982,7 @@ msgctxt ""
"par_idN1061A\n"
"help.text"
msgid "<ahelp hid=\".\">Enter the path and file name for the template, or click the <emph>...</emph> button to select the path and file name.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Inserire il percorso e il nome del file del modello di documento, oppure fare clic sul pulsante <emph>...</emph> per selezionarli.</ahelp>"
#: 01010600.xhp
msgctxt ""
@@ -998,7 +998,7 @@ msgctxt ""
"par_idN1063C\n"
"help.text"
msgid "<ahelp hid=\".\">Saves and closes the template, and then opens a new untitled document based on the template.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Salva e chiude il modello di documento, quindi apre un nuovo documento senza titolo basato su quel modello.</ahelp>"
#: 01010600.xhp
msgctxt ""
@@ -1014,7 +1014,7 @@ msgctxt ""
"par_idN10656\n"
"help.text"
msgid "<ahelp hid=\".\">Saves the template and keeps it open for editing.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Salva il modello di documento e lo tiene aperto per consentirne la modifica.</ahelp>"
#: 01010600.xhp
msgctxt ""
@@ -3478,7 +3478,7 @@ msgctxt ""
"par_id3150476\n"
"help.text"
msgid "Specifies the table or query for which you are creating the report, and which fields you wish to include in the report."
-msgstr ""
+msgstr "Specifica la tabella o la ricerca per la quale si sta creando il rapporto e i campi da includere nel rapporto."
#: 01100100.xhp
msgctxt ""
@@ -3494,7 +3494,7 @@ msgctxt ""
"par_id3147043\n"
"help.text"
msgid "<ahelp hid=\".\">Select the table or query for which the report is to be created.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Selezionare la tabella o la ricerca per la quale deve essere creato il rapporto.</ahelp>"
#: 01100100.xhp
msgctxt ""
@@ -3510,7 +3510,7 @@ msgctxt ""
"par_id3155338\n"
"help.text"
msgid "<ahelp hid=\".\">Displays the names of the data base fields in the selected table or query.</ahelp> Click to select a field or press the Shift or <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> key while clicking to select multiple fields."
-msgstr ""
+msgstr "<ahelp hid=\".\">Mostra i nomi dei campi del database nella tabella o nella ricerca selezionata.</ahelp> Fate clic per selezionare un campo o premete il tasto Maiusc o <switchinline select=\"sys\"><caseinline select=\"MAC\">Comando</caseinline><defaultinline>Ctrl</defaultinline></switchinline> insieme col pulsante del mouse per selezionare più campi."
#: 01100100.xhp
msgctxt ""
@@ -3526,7 +3526,7 @@ msgctxt ""
"par_id3147275\n"
"help.text"
msgid "<ahelp hid=\".\">Displays all fields that are included in the new report.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Mostra tutti i campi inclusi nel nuovo rapporto.</ahelp>"
#: 01100100.xhp
msgctxt ""
@@ -3542,7 +3542,7 @@ msgctxt ""
"par_id3152350\n"
"help.text"
msgid "<ahelp hid=\".\">Click to move the selected field(s) to the box that the arrow is pointing to.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Fare clic per spostare uno o più campi selezionati nella casella a cui sta puntando la freccia.</ahelp>"
#: 01100100.xhp
msgctxt ""
@@ -3558,7 +3558,7 @@ msgctxt ""
"par_id3149784\n"
"help.text"
msgid "<ahelp hid=\".\">Click to move all fields to the box that the arrow is pointing to.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Fare clic per spostare tutti i campi nella casella a cui sta puntando la freccia.</ahelp>"
#: 01100100.xhp
msgctxt ""
@@ -3574,7 +3574,7 @@ msgctxt ""
"par_id3150275\n"
"help.text"
msgid "<ahelp hid=\".\">Click to move the selected field(s) to the box that the arrow is pointing to.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Fare clic per spostare uno o più campi selezionati nella casella a cui sta puntando la freccia.</ahelp>"
#: 01100100.xhp
msgctxt ""
@@ -3590,7 +3590,7 @@ msgctxt ""
"par_id3150084\n"
"help.text"
msgid "<ahelp hid=\".\">Click to move all fields to the box that the arrow is pointing to.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Fare clic per spostare tutti i campi nella casella a cui sta puntando la freccia.</ahelp>"
#: 01100100.xhp
msgctxt ""
@@ -3638,7 +3638,7 @@ msgctxt ""
"par_id3150774\n"
"help.text"
msgid "<ahelp hid=\".\">Displays the names of the fields to be included in the report. At the right you can enter a label for each field that will be printed in the report.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Visualizza i nomi dei campi da includere nel rapporto. Sulla destra si può inserire una didascalia per ciascun campo che verrà stampato nel rapporto.</ahelp>"
#: 01100150.xhp
msgctxt ""
@@ -3670,7 +3670,7 @@ msgctxt ""
"par_id3163829\n"
"help.text"
msgid "You can group records in a report based on the values in one or more fields. Select the fields by which the resulting report will be grouped. You can group up to four fields in a report. When you group more than one field, $[officename] nests the groups according to their group level."
-msgstr ""
+msgstr "Potete raggruppare i record dei rapporti in base ai valori di uno o più campi. Selezionate i campi in base ai quali volete raggruppare il rapporto risultante. In ogni rapporto potete raggruppare fino a quattro campi. Quando raggruppate più campi, $[officename] nidifica i gruppi in base al loro livello."
#: 01100200.xhp
msgctxt ""
@@ -3686,7 +3686,7 @@ msgctxt ""
"par_id3155805\n"
"help.text"
msgid "<ahelp hid=\".\">Lists the fields from your selection on the previous page of the Wizard. To group the report by a field, select the field name, then click the <emph>></emph> button. You may select up to four levels of grouping.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Elenca i campi selezionati nella pagina precedente della procedura guidata. Per raggruppare un rapporto in base a un determinato campo, selezionare il nome del campo e fare clic sul pulsante <emph>></emph>. È possibile selezionare fino a quattro livelli di raggruppamento.</ahelp>"
#: 01100200.xhp
msgctxt ""
@@ -3702,7 +3702,7 @@ msgctxt ""
"par_id3155892\n"
"help.text"
msgid "<ahelp hid=\".\">Lists the fields by which the report will be grouped. To remove one level of grouping, select the field name, then click the <emph><</emph> button. You may select up to four levels of grouping.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Elenca i campi in base ai quali verrà raggruppato il rapporto. Per rimuovere un livello di raggruppamento, selezionare il nome del campo e fare clic sul pulsante <emph><</emph>. È possibile selezionare fino a quattro livelli di raggruppamento.</ahelp>"
#: 01100200.xhp
msgctxt ""
@@ -3718,7 +3718,7 @@ msgctxt ""
"par_id3157958\n"
"help.text"
msgid "<ahelp hid=\".\">Click to move the selected field to the box that the arrow is pointing to.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Fare clic per spostare il campo selezionato nella casella a cui sta puntando la freccia.</ahelp>"
#: 01100200.xhp
msgctxt ""
@@ -3734,7 +3734,7 @@ msgctxt ""
"par_id3149811\n"
"help.text"
msgid "<ahelp hid=\".\">Click to move the selected field to the box that the arrow is pointing to.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Fare clic per spostare il campo selezionato nella casella a cui sta puntando la freccia.</ahelp>"
#: 01100200.xhp
msgctxt ""
@@ -3766,7 +3766,7 @@ msgctxt ""
"par_id3148520\n"
"help.text"
msgid "Select the fields by which to sort the report. Fields can be sorted by up to four levels, each either ascending or descending. Grouped fields can only be sorted within each group."
-msgstr ""
+msgstr "Selezionate i campi in base ai quali volete ordinare il rapporto. I campi possono essere ordinati su quattro livelli, ognuno dei quali può essere crescente o decrescente. I campi raggruppati possono essere ordinati solo all'interno del gruppo di appartenenza."
#: 01100300.xhp
msgctxt ""
@@ -3782,7 +3782,7 @@ msgctxt ""
"par_id3155555\n"
"help.text"
msgid "<ahelp hid=\".\">Select the first field by which to sort the report.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Selezionare il primo campo in base al quale si vuole ordinare il rapporto.</ahelp>"
#: 01100300.xhp
msgctxt ""
@@ -3798,7 +3798,7 @@ msgctxt ""
"par_id3149182\n"
"help.text"
msgid "<ahelp hid=\".\">Select an additional field by which to sort the report.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Selezionare un altro campo in base al quale si vuole ordinare il rapporto.</ahelp>"
#: 01100300.xhp
msgctxt ""
@@ -3814,7 +3814,7 @@ msgctxt ""
"par_id3155338\n"
"help.text"
msgid "<ahelp hid=\".\">Sorts the field contents in ascending order.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Dispone il contenuto dei campi in ordine crescente.</ahelp>"
#: 01100300.xhp
msgctxt ""
@@ -3830,7 +3830,7 @@ msgctxt ""
"par_id3156113\n"
"help.text"
msgid "<ahelp hid=\".\">Sorts the field contents in descending order.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Dispone il contenuto dei campi in ordine decrescente.</ahelp>"
#: 01100300.xhp
msgctxt ""
@@ -3862,7 +3862,7 @@ msgctxt ""
"par_id3154894\n"
"help.text"
msgid "Choose the layout from different templates and styles, and choose landscape or portrait page orientation."
-msgstr ""
+msgstr "Scegliete l'impaginazione dai diversi modelli e stili disponibili e scegliete l'orientazione orizzontale o verticale della pagina."
#: 01100400.xhp
msgctxt ""
@@ -3878,7 +3878,7 @@ msgctxt ""
"par_id3153681\n"
"help.text"
msgid "<ahelp hid=\".\">Defines a set of styles for the report. The styles assign fonts, indents, table background, and more.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Definisce un gruppo di stili di formato per il rapporto. Gli stili di formato stabiliscono i tipi di carattere, i rientri, lo sfondo delle tabelle e molti altri elementi.</ahelp>"
#: 01100400.xhp
msgctxt ""
@@ -3894,7 +3894,7 @@ msgctxt ""
"par_id3152551\n"
"help.text"
msgid "<ahelp hid=\".\">Defines a page layout for the report. The page layouts are loaded from template files, which assign a header, footer, and page background.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Definisce un layout di pagina per il rapporto. I layout di pagina vengono caricati dai file del modello di documento e determinano una riga di intestazione, un piè di pagina e lo sfondo della pagina.</ahelp>"
#: 01100400.xhp
msgctxt ""
@@ -3926,7 +3926,7 @@ msgctxt ""
"par_id3145382\n"
"help.text"
msgid "<ahelp hid=\".\">Selects a landscape page orientation for the report.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Seleziona un'orientazione pagina orizzontale per il rapporto.</ahelp>"
#: 01100400.xhp
msgctxt ""
@@ -3942,7 +3942,7 @@ msgctxt ""
"par_id3154285\n"
"help.text"
msgid "<ahelp hid=\".\">Selects a portrait page orientation for the report.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Seleziona un'orientazione pagina verticale per il rapporto.</ahelp>"
#: 01100400.xhp
msgctxt ""
@@ -3974,7 +3974,7 @@ msgctxt ""
"par_id3159224\n"
"help.text"
msgid "You can create the report as a static or dynamic report. When you open a dynamic report, it will display with the current data contents. When you open a static report, it will always display the same data from the time when the static report was created."
-msgstr ""
+msgstr "Potete creare un rapporto di tipo statico o dinamico. Quando aprite un rapporto dinamico, questo visualizza i dati contenuti in quel momento. Quando aprite un rapporto statico, vengono visualizzati sempre gli stessi dati, cioè quelli inclusi al momento della creazione del rapporto."
#: 01100500.xhp
msgctxt ""
@@ -3990,7 +3990,7 @@ msgctxt ""
"par_id3156136\n"
"help.text"
msgid "<ahelp hid=\".\">Specifies the title that is printed at the title line of each page.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Specifica il titolo che verrà stampato nella riga del titolo di ciascuna pagina.</ahelp>"
#: 01100500.xhp
msgctxt ""
@@ -4006,7 +4006,7 @@ msgctxt ""
"par_id3149580\n"
"help.text"
msgid "<ahelp hid=\".\">Saves the report as a static report. When you open a static report, it will always display the data from the time the report was created.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Salva il rapporto come rapporto statico. Quando si apre un rapporto statico, vengono visualizzati sempre i dati inclusi al momento della creazione del rapporto.</ahelp>"
#: 01100500.xhp
msgctxt ""
@@ -4022,7 +4022,7 @@ msgctxt ""
"par_id3155805\n"
"help.text"
msgid "<ahelp hid=\".\">Saves the report as a template. When you open a dynamic report, it will display with the current data contents.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Salva il rapporto come modello. Quando si apre un rapporto dinamico, questo visualizza i dati contenuti in quel momento.</ahelp>"
#: 01100500.xhp
msgctxt ""
@@ -4038,7 +4038,7 @@ msgctxt ""
"par_id3163802\n"
"help.text"
msgid "<ahelp hid=\".\">When you click <emph>Finish</emph>, the report will be saved and opened for edit.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Facendo clic su <emph>Fine</emph>, il rapporto viene salvato e aperto per la modifica.</ahelp>"
#: 01100500.xhp
msgctxt ""
@@ -4054,7 +4054,7 @@ msgctxt ""
"par_id3156194\n"
"help.text"
msgid "<ahelp hid=\".\">When you click <emph>Finish</emph>, the report will be saved.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Facendo clic su <emph>Fine</emph>, il rapporto viene salvato.</ahelp>"
#: 01110000.xhp
msgctxt ""
@@ -6710,7 +6710,7 @@ msgctxt ""
"hd_id3154288\n"
"help.text"
msgid "Firefox"
-msgstr ""
+msgstr "Firefox"
#: 01170000.xhp
msgctxt ""
@@ -6726,7 +6726,7 @@ msgctxt ""
"hd_id3895382\n"
"help.text"
msgid "Thunderbird"
-msgstr ""
+msgstr "Thunderbird"
#: 01170000.xhp
msgctxt ""
@@ -6990,7 +6990,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Data Source Title"
-msgstr ""
+msgstr "Titolo della sorgente dati"
#: 01170400.xhp
msgctxt ""
diff --git a/source/it/helpcontent2/source/text/shared/explorer/database.po b/source/it/helpcontent2/source/text/shared/explorer/database.po
index 37c8c805ea6..e2678210f29 100644
--- a/source/it/helpcontent2/source/text/shared/explorer/database.po
+++ b/source/it/helpcontent2/source/text/shared/explorer/database.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: 2018-05-16 16:54+0200\n"
-"PO-Revision-Date: 2018-04-09 12:40+0000\n"
+"PO-Revision-Date: 2018-06-10 21:59+0000\n"
"Last-Translator: Valter Mura <valtermura@gmail.com>\n"
"Language-Team: Italian <l10n@it.libreoffice.org>\n"
"Language: it\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1523277620.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1528667953.000000\n"
#: 02000000.xhp
msgctxt ""
@@ -7494,7 +7494,7 @@ msgctxt ""
"par_id1142772\n"
"help.text"
msgid "See also the English Wiki page <link href=\"https://wiki.documentfoundation.org/MSA-Base_Faq\" name=\"wiki.documentfoundation.org MS Access Base FAQ\">https://wiki.documentfoundation.org/MSA-Base_Faq</link>."
-msgstr ""
+msgstr "Consultate anche la pagina wiki inglese <link href=\"https://wiki.documentfoundation.org/MSA-Base_Faq\" name=\"wiki.documentfoundation.org MS Access Base FAQ\">http://wiki.documentfoundation.org/MSA-Base_Faq</link>."
#: dabawiz02access.xhp
msgctxt ""
@@ -11718,7 +11718,7 @@ msgctxt ""
"par_id9449446\n"
"help.text"
msgid "Functions can be entered using a syntax as specified by the <link href=\"https://en.wikipedia.org/wiki/OpenFormula\" name=\"English Wikipedia: OpenFormula\">OpenFormula</link> proposal."
-msgstr ""
+msgstr "Le funzioni si possono inserire seguendo la sintassi specificata dalla proposta <link href=\"https://en.wikipedia.org/wiki/OpenFormula\" name=\"English Wikipedia: OpenFormula\">OpenFormula</link>."
#: rep_navigator.xhp
msgctxt ""
@@ -11726,7 +11726,7 @@ msgctxt ""
"par_id4095583\n"
"help.text"
msgid "See <link href=\"https://wiki.documentfoundation.org/Database\" name=\"wiki.documentfoundation.org Database\">Wiki page about Base</link> for some more help regarding the functions in a report."
-msgstr ""
+msgstr "Per ulteriore aiuto sulle funzioni all'interno di un report, consultate la <link href=\"https://wiki.documentfoundation.org/Database\" name=\"wiki.documentfoundation.org Database\">pagina wiki riguardante Base</link>."
#: rep_navigator.xhp
msgctxt ""
diff --git a/source/it/helpcontent2/source/text/shared/guide.po b/source/it/helpcontent2/source/text/shared/guide.po
index ace76630680..195db245b59 100644
--- a/source/it/helpcontent2/source/text/shared/guide.po
+++ b/source/it/helpcontent2/source/text/shared/guide.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: 2018-05-16 16:54+0200\n"
-"PO-Revision-Date: 2018-04-06 12:32+0000\n"
+"PO-Revision-Date: 2018-06-12 12:25+0000\n"
"Last-Translator: Valter Mura <valtermura@gmail.com>\n"
"Language-Team: Italian <l10n@it.libreoffice.org>\n"
"Language: it\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1523017936.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1528806307.000000\n"
#: aaa_start.xhp
msgctxt ""
@@ -510,7 +510,7 @@ msgctxt ""
"par_id8847010\n"
"help.text"
msgid "A current list of supported assistive tools can be found on the Wiki at <link href=\"https://wiki.documentfoundation.org/Accessibility\" name=\"wiki.documentfoundation.org Accessibility\">https://wiki.documentfoundation.org/Accessibility</link>."
-msgstr ""
+msgstr "Potete trovare un elenco di strumenti supportato per l'accesso facilitato nel Wiki <link href=\"https://wiki.documentfoundation.org/Accessibility\" name=\"wiki.documentfoundation.org Accessibility\">http://wiki.documentfoundation.org/Accessibility</link>."
#: assistive.xhp
msgctxt ""
@@ -1822,7 +1822,7 @@ msgctxt ""
"par_id2706991\n"
"help.text"
msgid "If no title text exists, choose <emph>Insert - Titles</emph> to enter the text in a dialog."
-msgstr ""
+msgstr "Se non esiste il titolo di testo, scegliete <emph>Inserisci - Titoli</emph> per aggiungere il testo in una finestra di dialogo."
#: chart_title.xhp
msgctxt ""
@@ -2342,7 +2342,7 @@ msgctxt ""
"bm_id190820161721082861\n"
"help.text"
msgid "<bookmark_value>remote file service;file lock</bookmark_value> <bookmark_value>remote file service;version control</bookmark_value> <bookmark_value>remote file service;working copy</bookmark_value> <bookmark_value>remote file service;checkout</bookmark_value> <bookmark_value>remote file service;checkin</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Remoto, servizio di file;blocco dei file</bookmark_value> <bookmark_value>Remoto, servizio di file;controllo della versione</bookmark_value> <bookmark_value>Remoto, servizio di file;copia funzionante</bookmark_value> <bookmark_value>Remoto, servizio di file;check-out</bookmark_value> <bookmark_value>Remoto, servizio di file;check-in</bookmark_value>"
#: cmis-remote-files.xhp
msgctxt ""
@@ -2358,7 +2358,7 @@ msgctxt ""
"par_id170820161605429941\n"
"help.text"
msgid "The Check Out and Check In actions control updates to the document and prevent unwanted overwrites in a CMIS remote service."
-msgstr ""
+msgstr "Le azioni di check-out e check-in di un servizio remoto CMIS controllano gli aggiornamenti dei documenti e ne impediscono le sovrascritture indesiderate."
#: cmis-remote-files.xhp
msgctxt ""
@@ -2366,7 +2366,7 @@ msgctxt ""
"par_id17082016160542203\n"
"help.text"
msgid "Checking out a document locks it, preventing other users from writing changes to it. Only one user can have a particular document checked out (locked) at any time. Checking in a document or canceling the checkout unlocks the document."
-msgstr ""
+msgstr "Eseguire il check-out blocca un documento, impedendone la modifica da parte di altri utenti. Solo un utente può avere un particolare documento nello stato di 'checked out' (bloccato) in qualsiasi momento. Per sbloccare un documento, eseguire il check-in oppure annullare il suo stato di check-out."
#: cmis-remote-files.xhp
msgctxt ""
@@ -2374,7 +2374,7 @@ msgctxt ""
"par_id170820161605426690\n"
"help.text"
msgid "There are no checkin/checkout controls for remote files in Windows Shares, WebDAV, FTP and SSH services."
-msgstr ""
+msgstr "Non esistono controlli di verifica (check-in/check-out) per i file remoti nei servizi di Condivisione Windows (Windows Shares), WebDAV, FTP e SSH."
#: cmis-remote-files.xhp
msgctxt ""
@@ -2382,7 +2382,7 @@ msgctxt ""
"par_id170820161605428976\n"
"help.text"
msgid "When a file is open from a CMIS remote file service, %PRODUCTNAME displays a <emph>Check Out</emph> button on the top message area. Click the <emph>Check Out</emph> button to lock the file in the server to prevent edition by another user. Alternatively choose <item type=\"menuitem\">File - Check Out</item>."
-msgstr ""
+msgstr "Quando aprite un file da un servizio di file remoti CMIS, %PRODUCTNAME mostra un pulsante <emph>Check-out</emph> nella parte superiore dell'area del messaggio. Fate clic sul pulsante <emph>Check-out</emph> per bloccare il file nel server, in modo da prevenire modifiche da parte di un altro utente. In alternativa scegliete <item type=\"menuitem\">File - Check-out</item>."
#: cmis-remote-files.xhp
msgctxt ""
@@ -2390,7 +2390,7 @@ msgctxt ""
"par_id190820161707153804\n"
"help.text"
msgid "%PRODUCTNAME creates a working copy of the file in the server (and inserts the string <item type=\"literal\">(Working Copy)</item> in the file name) when a file is checked out. Every edition and save operation is done in the working copy. You can save your file as many times you want. When you finished your changes, check in the file."
-msgstr ""
+msgstr "Quando viene eseguito il check-out su un file, %PRODUCTNAME crea una copia funzionante del file nel server (e inserisce la stringa <item type=\"literal\">(Copia funzionante)</item> nel nome del file). Ogni operazione di modifica e salvataggio viene eseguita sulla copia funzionante. Potete salvare il vostro file tante volte quante ne riterrete opportuno. Una volta terminato il vostro lavoro, eseguire il check-in sul file."
#: cmis-remote-files.xhp
msgctxt ""
@@ -2398,7 +2398,7 @@ msgctxt ""
"par_id190820161707156843\n"
"help.text"
msgid "To check in the file, choose <item type=\"menuitem\">File - Check In</item>. A dialog opens to insert comments about the last edition. These comments are recorded in the CMIS server for version control. The working copy replaces the existing file and its version number is updated."
-msgstr ""
+msgstr "Per eseguire il check-in del file, scegliete <item type=\"menuitem\">File - Check-in</item>. Si apre una finestra di dialogo per inserire commenti sull'ultima modifica. Questi commenti sono registrati nel server CMIS per il controllo della versione. La copia funzionante sostituisce il file esistente e il suo numero di versione viene aggiornato."
#: cmis-remote-files.xhp
msgctxt ""
@@ -2406,7 +2406,7 @@ msgctxt ""
"par_id190820161707155303\n"
"help.text"
msgid "To cancel a checkout, choose <item type=\"menuitem\">File - Cancel Checkout</item>. A warning message will inform that the latest edition will be discarded. If confirmed, no version updates occurs."
-msgstr ""
+msgstr "Per annullare un check-out, scegliete <item type=\"menuitem\">File - Annulla check-out</item>. Apparirà un avviso che vi informerà che l'ultima versione sarà scartata. Se confermate, non saranno eseguiti aggiornamenti della versione."
#: cmis-remote-files.xhp
msgctxt ""
@@ -2414,7 +2414,7 @@ msgctxt ""
"par_id19082016170715785\n"
"help.text"
msgid "Remember to check in the file when finishing using it. Not doing so will lock the file and no other user will be allowed to modify it."
-msgstr ""
+msgstr "Una volta finito di usarlo, ricordatevi di eseguire il check-in del file. Se non lo eseguirete il file resterà bloccato e a nessun altro utente sarà consentita la sua modifica."
#: cmis-remote-files.xhp
msgctxt ""
@@ -2454,7 +2454,7 @@ msgctxt ""
"par_id190820161707166344\n"
"help.text"
msgid "If the file is not stored in a CMIS server, choose <item type=\"menuitem\">File - Save to Remote Server</item> or long-click the <emph>Save</emph> icon and select <emph>Save Remote File</emph>."
-msgstr ""
+msgstr "Se il file non è memorizzato in un server CMIS, scegliete <item type=\"menuitem\">File - Salva in un server remoto</item> oppure premete in modo prolungato l'icona <emph>Salva</emph> e selezionate <emph>Salva file remoto</emph>"
#: cmis-remote-files.xhp
msgctxt ""
@@ -4878,7 +4878,7 @@ msgctxt ""
"par_id3150984\n"
"help.text"
msgid "On the <emph>Form Controls</emph> toolbar, click the <emph>Design Mode On/Off</emph> icon<image id=\"img_id3147618\" src=\"cmd/sc_switchcontroldesignmode.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3147618\">Icon</alt></image> to turn off the design mode."
-msgstr ""
+msgstr "Nella barra degli strumenti <emph>Controlli del formulario</emph>, fate clic sull'icona <emph>Modo bozza sì/no</emph><image id=\"img_id3147618\" src=\"cmd/sc_switchcontroldesignmode.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3147618\">Icona</alt></image> per disattivare il modo bozza."
#: data_search2.xhp
msgctxt ""
@@ -4886,7 +4886,7 @@ msgctxt ""
"par_id3148672\n"
"help.text"
msgid "On the <emph>Form Navigation</emph> toolbar, click the <emph>Form-Based Filters</emph> icon<image id=\"img_id3149807\" src=\"cmd/sc_formfilter.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3149807\">Icon</alt></image>. The current document is displayed with its form controls as an empty edit mask. The <emph>Form Filter </emph>toolbar appears."
-msgstr ""
+msgstr "Fate clic sull'icona <emph>Filtro basato su formula</emph> <image id=\"img_id3149807\" src=\"cmd/sc_formfilter.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3149807\">Icona</alt></image> nella barra degli strumenti <emph>Navigazione formulario</emph>. Il documento attivo viene visualizzato come maschera di digitazione vuota con i campi di controllo formulario inseriti. Viene visualizzata la barra degli strumenti <emph>Filtro formulario</emph>."
#: data_search2.xhp
msgctxt ""
@@ -4926,7 +4926,7 @@ msgctxt ""
"par_id3150114\n"
"help.text"
msgid "Click the <link href=\"text/shared/02/12120000.xhp\" name=\"Apply Filter\"><emph>Apply Filter</emph></link> icon<image id=\"img_id3144764\" src=\"cmd/sc_datafilterstandardfilter.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3144764\">Icon</alt></image> on the <emph>Form Navigation</emph> toolbar to change to the filtered view."
-msgstr ""
+msgstr "Nella barra degli strumenti <emph>Navigazione formulario</emph>, fate clic sull'icona <link href=\"text/shared/02/12120000.xhp\" name=\"Applica filtro\"><emph>Applica filtro</emph></link><image id=\"img_id3144764\" src=\"cmd/sc_datafilterstandardfilter.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3144764\">Icona</alt></image> per spostarvi alla vista filtrata."
#: data_search2.xhp
msgctxt ""
@@ -4934,7 +4934,7 @@ msgctxt ""
"par_id3146898\n"
"help.text"
msgid "The filter that has been set can be removed by clicking <link href=\"text/shared/02/12040000.xhp\" name=\"Remove Filter/Sort\"><emph>Reset Filter/Sort</emph></link> icon<image id=\"img_id3151318\" src=\"cmd/sc_removefiltersort.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3151318\">Icon</alt></image>."
-msgstr ""
+msgstr "Il filtro impostato può essere rimosso facendo clic sull'icona <link href=\"text/shared/02/12040000.xhp\" name=\"Rimuovi filtro/ordine\"><emph>Azzera filtro/ordine</emph></link><image id=\"img_id3151318\" src=\"cmd/sc_removefiltersort.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3151318\">Icona</alt></image>."
#: data_tabledefine.xhp
msgctxt ""
@@ -5814,7 +5814,7 @@ msgctxt ""
"hd_id4989165\n"
"help.text"
msgid "<variable id=\"digitalsign_receive\"><link href=\"text/shared/guide/digitalsign_receive.xhp\">Opening a Document Using WebDAV over HTTPS</link></variable>"
-msgstr ""
+msgstr "<variable id=\"digitalsign_receive\"><link href=\"text/shared/guide/digitalsign_receive.xhp\">Aprire un documento utilizzando estensioni WebDAV del protocollo HTTPS</link></variable>"
#: digitalsign_receive.xhp
msgctxt ""
@@ -6142,7 +6142,7 @@ msgctxt ""
"par_idN106AE\n"
"help.text"
msgid "In the <link href=\"text/shared/01/selectcertificate.xhp\">Select Certificate</link> dialog, select your certificate and click <emph>OK</emph>."
-msgstr ""
+msgstr "Nella finestra di dialogo <link href=\"text/shared/01/selectcertificate.xhp\">Seleziona certificato</link>, selezionate il certificato e fate clic su <emph>OK</emph>."
#: digitalsign_send.xhp
msgctxt ""
@@ -6158,7 +6158,7 @@ msgctxt ""
"par_idN106C3\n"
"help.text"
msgid "A signed document shows an icon <image id=\"img_id262764\" src=\"xmlsecurity/res/certificate_16.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id262764\">Icon</alt></image> in the status bar. You can double-click the icon in the status bar to view the certificate."
-msgstr ""
+msgstr "Nella barra di stato viene visualizzata un'icona <image id=\"img_id262764\" src=\"xmlsecurity/res/certificate_16.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id262764\">Icona</alt></image> per i documenti firmati. Potete fare doppio clic su questa icona nella barra di stato per visualizzare il certificato."
#: digitalsign_send.xhp
msgctxt ""
@@ -6166,7 +6166,7 @@ msgctxt ""
"par_id2008200911381426\n"
"help.text"
msgid "The result of the signature validation is displayed in the status bar and within the Digital Signature dialog. Several documents and macro signatures can exist inside an ODF document. If there is a problem with one signature, then the validation result of that one signature is assumed for all signatures. That is, if there are ten valid signatures and one invalid signature, then the status bar and the status field in the dialog will flag the signature as <emph>invalid</emph>."
-msgstr ""
+msgstr "Il risultato della convalida della firma viene visualizzato nella barra di stato e all'interno della finestra di dialogo 'Firma digitale'. Possono coesistere diverse firme di documenti e macro all'interno di un documento ODF. Se si ha un problema con una firma, allora il risultato di convalida per quella firma viene presupposto per tutte le firme. In altre parole, se vi sono dieci firme valide e una firma non valida, allora il flag, all'interno della barra di stato e del campo di stato della finestra, indicherà una firma <emph>non valida</emph>."
#: digitalsign_send.xhp
msgctxt ""
@@ -6206,7 +6206,7 @@ msgctxt ""
"par_idN106F5\n"
"help.text"
msgid "When you open the Basic IDE that contains signed macros, you see an icon<image id=\"img_id9252296\" src=\"xmlsecurity/res/certificate_16.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id9252296\">Icon</alt></image> in the status bar. You can double-click the icon in the status bar to view the certificate."
-msgstr ""
+msgstr "Quando aprite l'IDE Basic che contiene le macro firmate, nella barra di stato è visibile un'icona<image id=\"img_id9252296\" src=\"xmlsecurity/res/certificate_16.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id9252296\">Icona</alt></image>. Potete fare doppio clic su questa icona nella barra di stato per visualizzare il certificato."
#: digitalsign_send.xhp
msgctxt ""
@@ -12126,7 +12126,7 @@ msgctxt ""
"par_id9852903\n"
"help.text"
msgid "If you use %PRODUCTNAME packages maintained by your Linux distribution, follow the steps below."
-msgstr ""
+msgstr "Se utilizzate i pacchetti di %PRODUCTNAME curati dalla vostra distribuzione Linux, seguite i passaggi riportati di seguito."
#: language_select.xhp
msgctxt ""
@@ -13830,7 +13830,7 @@ msgctxt ""
"par_id3150439\n"
"help.text"
msgid "For a detailed overview about converting documents to and from Microsoft Office format, see the <link href=\"https://wiki.documentfoundation.org/Documentation/OOoAuthors_User_Manual/Migration_Guide\" name=\"wiki.dcoumentfoundation.org OOoAuthors User Manual: Migration Guide\">Migration Guide</link>."
-msgstr ""
+msgstr "Per una panoramica dettagliata sulla conversione di documenti dal formato Microsoft Office e viceversa, consultate la <link href=\"https://wiki.documentfoundation.org/Documentation/OOoAuthors_User_Manual/Migration_Guide\" name=\"wiki.dcoumentfoundation.org OOoAuthors User Manual: Migration Guide\">Guida alla migrazione</link> (versione inglese)."
#: ms_import_export_limitations.xhp
msgctxt ""
@@ -14046,7 +14046,7 @@ msgctxt ""
"par_id3153543\n"
"help.text"
msgid "Microsoft Word, *.doc, *.docx"
-msgstr ""
+msgstr "Microsoft Word, *.doc, *.docx"
#: ms_user.xhp
msgctxt ""
@@ -14078,7 +14078,7 @@ msgctxt ""
"par_id3147574\n"
"help.text"
msgid "Microsoft PowerPoint, *.ppt, *.pps, *.pptx"
-msgstr ""
+msgstr "Microsoft PowerPoint, *.ppt, *.pps, *.pptx"
#: ms_user.xhp
msgctxt ""
@@ -16358,7 +16358,7 @@ msgctxt ""
"par_idN1091F\n"
"help.text"
msgid "In addition, developers can use high-level languages, for example Java programming language, to control %PRODUCTNAME externally. The API reference is online at <link href=\"https://api.libreoffice.org/\" name=\"api.libreoffice.org\">api.libreoffice.org</link>."
-msgstr ""
+msgstr "In aggiunta, gli sviluppatori possono utilizzare linguaggi di alto livello, per esempio il linguaggio di programmazione Java, per controllare %PRODUCTNAME dall'esterno. I riferimenti alle API si trovano in <link href=\"https://api.libreoffice.org/\" name=\"api.libreoffice.org\">api.libreoffice.org</link>."
#: scripting.xhp
msgctxt ""
@@ -17502,7 +17502,7 @@ msgctxt ""
"par_id3148914\n"
"help.text"
msgid "Neither the start-up logo nor the initial program window will be visible. $[officename] software can be controlled, and documents and dialogs can be controlled and opened via the <link href=\"https://api.libreoffice.org\" name=\"API\">API</link>."
-msgstr ""
+msgstr "Non saranno visibili né il logo di avvio, né la finestra iniziale del programma. Potete controllare il software $[officename] e potete controllare e aprire documenti e finestre di dialogo tramite l'<link href=\"https://api.libreoffice.org\" name=\"API\">API</link>."
#: start_parameters.xhp
msgctxt ""
@@ -17542,7 +17542,7 @@ msgctxt ""
"par_id3156353\n"
"help.text"
msgid "This special mode can be used when the application is controlled by external clients via the <link href=\"https://api.libreoffice.org\" name=\"API\">API</link>."
-msgstr ""
+msgstr "Questo modo speciale può essere utilizzato quando l'applicazione viene controllata da client esterni tramite l'<link href=\"https://api.libreoffice.org\" name=\"API\">API</link>."
#: start_parameters.xhp
msgctxt ""
@@ -17894,7 +17894,7 @@ msgctxt ""
"bm_id0820200802500562\n"
"help.text"
msgid "<bookmark_value>backing window</bookmark_value> <bookmark_value>start center</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Finestra grafica</bookmark_value><bookmark_value>Centro di avvio</bookmark_value>"
#: startcenter.xhp
msgctxt ""
@@ -17918,7 +17918,7 @@ msgctxt ""
"par_id0820200802524413\n"
"help.text"
msgid "You see the Start Center when no document is open in %PRODUCTNAME. It is divided into two panes. <ahelp hid=\".\">Click a button on the left pane to open a new document or a file dialog.</ahelp>"
-msgstr ""
+msgstr "Se non è aperto alcun documento in %PRODUCTNAME, viene visualizzato il Centro di avvio, suddiviso in due pannelli. <ahelp hid=\".\">Per aprire un nuovo documento o una finestra di file, fare clic su uno dei pulsanti presenti nel pannello sinistro.</ahelp>"
#: startcenter.xhp
msgctxt ""
@@ -17950,7 +17950,7 @@ msgctxt ""
"par_id0820200802525413\n"
"help.text"
msgid "<ahelp hid=\".\">The <emph>Recent Files</emph> button shows thumbnails of the most recent documents you opened.</ahelp> Hover your mouse over the thumbnail to highlight the document, display a tip about the document location and display an icon on the top right to delete the thumbnail from the pane and from the recent files list. Click on the thumbnail to open the document underneath."
-msgstr ""
+msgstr "<ahelp hid=\".\">Il pulsante <emph>File recenti</emph> contiene le miniature dei documenti aperti di recente.</ahelp> Passate il mouse sopra una miniatura per evidenziare il documento, visualizzarne la posizione e il pulsante di eliminazione (posizionato in alto a destra) dal pannello e dall'elenco dei file recenti. Fate clic sulla miniatura per aprire il relativo documento."
#: startcenter.xhp
msgctxt ""
diff --git a/source/it/helpcontent2/source/text/shared/help.po b/source/it/helpcontent2/source/text/shared/help.po
index 33fd0a5387e..b618a77b348 100644
--- a/source/it/helpcontent2/source/text/shared/help.po
+++ b/source/it/helpcontent2/source/text/shared/help.po
@@ -4,14 +4,17 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2018-05-16 16:54+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"PO-Revision-Date: 2018-06-12 12:27+0000\n"
+"Last-Translator: Valter Mura <valtermura@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: it\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: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1528806465.000000\n"
#: browserhelp.xhp
msgctxt ""
@@ -251,7 +254,7 @@ msgctxt ""
"par_id61525747994007\n"
"help.text"
msgid "<variable id=\"eo\">Esperanto</variable>"
-msgstr ""
+msgstr "<variable id=\"eo\">Esperanto</variable>"
#: browserhelp.xhp
msgctxt ""
@@ -459,7 +462,7 @@ msgctxt ""
"par_id401525748129935\n"
"help.text"
msgid "<variable id=\"om\">Oromo</variable>"
-msgstr ""
+msgstr "<variable id=\"om\">Oromo</variable>"
#: browserhelp.xhp
msgctxt ""
diff --git a/source/it/helpcontent2/source/text/shared/optionen.po b/source/it/helpcontent2/source/text/shared/optionen.po
index 50d349a677f..e2621ce2456 100644
--- a/source/it/helpcontent2/source/text/shared/optionen.po
+++ b/source/it/helpcontent2/source/text/shared/optionen.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-08 15:10+0200\n"
-"PO-Revision-Date: 2018-01-30 20:17+0000\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
+"PO-Revision-Date: 2018-06-13 12:49+0000\n"
"Last-Translator: Valter Mura <valtermura@gmail.com>\n"
"Language-Team: Italian <l10n@it.libreoffice.org>\n"
"Language: it\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1517343438.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1528894143.000000\n"
#: 01000000.xhp
msgctxt ""
@@ -83,6 +83,22 @@ msgstr "Nota per gli utenti di macOS: in molti punti la Guida cita il percorso d
#: 01000000.xhp
msgctxt ""
"01000000.xhp\n"
+"hd_id551527692881035\n"
+"help.text"
+msgid "Help"
+msgstr "Aiuto"
+
+#: 01000000.xhp
+msgctxt ""
+"01000000.xhp\n"
+"par_id831527692885723\n"
+"help.text"
+msgid "Opens the help contents for the Options page displayed."
+msgstr ""
+
+#: 01000000.xhp
+msgctxt ""
+"01000000.xhp\n"
"hd_id3159149\n"
"help.text"
msgid "<link href=\"text/shared/optionen/01010000.xhp\" name=\"$[officename]\">%PRODUCTNAME</link>"
@@ -278,7 +294,7 @@ msgctxt ""
"par_id3143270\n"
"help.text"
msgid "<ahelp hid=\".\">Type the name of your company in this field.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Inserire il nome della propria azienda.</ahelp>"
#: 01010100.xhp
msgctxt ""
@@ -342,7 +358,7 @@ msgctxt ""
"par_id3151212\n"
"help.text"
msgid "<ahelp hid=\".\">Type the name of your street in this field.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Inserire il proprio indirizzo.</ahelp>"
#: 01010100.xhp
msgctxt ""
@@ -422,7 +438,7 @@ msgctxt ""
"par_id3147428\n"
"help.text"
msgid "<ahelp hid=\".\">Type your position in the company in this field.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Inserire la propria posizione all'interno dell'azienda.</ahelp>"
#: 01010100.xhp
msgctxt ""
@@ -438,7 +454,7 @@ msgctxt ""
"par_id3154011\n"
"help.text"
msgid "<ahelp hid=\".\">Type your private telephone number in this field.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Inserire il proprio numero di telefono privato.</ahelp>"
#: 01010100.xhp
msgctxt ""
@@ -454,7 +470,7 @@ msgctxt ""
"par_id3159153\n"
"help.text"
msgid "<ahelp hid=\".\">Type your work number in this field.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Inserire il numero di telefono del proprio ufficio.</ahelp>"
#: 01010100.xhp
msgctxt ""
@@ -470,7 +486,7 @@ msgctxt ""
"par_id3153159\n"
"help.text"
msgid "<ahelp hid=\".\">Type your fax number in this field.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Inserire il proprio numero di fax.</ahelp>"
#: 01010100.xhp
msgctxt ""
@@ -486,7 +502,7 @@ msgctxt ""
"par_id3154942\n"
"help.text"
msgid "<ahelp hid=\".\">Type your e-mail address.</ahelp> For example, my.name@my.provider.com"
-msgstr ""
+msgstr "<ahelp hid=\".\">Inserire il proprio indirizzo di posta elettronica.</ahelp> Ad esempio, mio.nome@mio.provider.com"
#: 01010200.xhp
msgctxt ""
@@ -870,7 +886,7 @@ msgctxt ""
"par_id6944181\n"
"help.text"
msgid "OpenOffice.org 3 and StarOffice 9 introduce new features which have to be saved using the <link href=\"https://en.wikipedia.org/wiki/OpenDocument\" name=\"English Wikipedia: OpenDocument\">OpenDocument</link> format (ODF) version 1.2. The prior versions of OpenOffice.org 2 and StarOffice 8 support the file formats ODF 1.0/1.1. Those prior file formats cannot store all new features of the new software."
-msgstr ""
+msgstr "OpenOffice.org 3 e StarOffice 9 introducono nuove funzionalità che devono essere salvate utilizzando la versione 1.2 del formato <link href=\"https://en.wikipedia.org/wiki/OpenDocument\" name=\"English Wikipedia: OpenDocument\">OpenDocument</link> (ODF). Le precedenti versioni di OpenOffice.org 2 e StarOffice 8 supportano i formati di file ODF 1.0/1.1. Questi ultimi non possono immagazzinare tutte le funzionalità aggiuntive del nuovo software."
#: 01010200.xhp
msgctxt ""
@@ -1414,7 +1430,7 @@ msgctxt ""
"par_id3153663\n"
"help.text"
msgid "A language module can contain one, two or three submodules: Spellcheck, hyphenation and thesaurus. Each sub-module can be available in one or more languages. If you click in front of the name of the module, you activate all the available sub-modules simultaneously. If you remove a set mark, you deactivate all the available sub-modules simultaneously. If you wish to activate or deactivate individual sub-modules, click the <emph>Edit</emph> button to open the <link href=\"text/shared/optionen/01010401.xhp\" name=\"Edit Modules\"><emph>Edit Modules</emph></link> dialog."
-msgstr ""
+msgstr "Ogni modulo linguistico può contenere uno, due o tre sottomoduli: controllo ortografico, sillabazione e sinonimi. Ogni sottomodulo può essere disponibile in una o più lingue. Facendo clic davanti al nome del modulo vengono attivati tutti i sottomoduli disponibili. Deselezionando la casella del modulo vengono disattivati tutti i relativi sottomoduli. Per attivare o disattivare selettivamente i singoli sottomoduli, fate clic sul pulsante <emph>Modifica</emph> per aprire la finestra di dialogo <link href=\"text/shared/optionen/01010401.xhp\" name=\"Modifica moduli\"><emph>Modifica moduli</emph></link>."
#: 01010400.xhp
msgctxt ""
@@ -1422,7 +1438,7 @@ msgctxt ""
"par_id3294778\n"
"help.text"
msgid "The configuration allows two different directories: one folder where the user has write permissions, and one without write permissions. The user can only edit and delete the user dictionaries that are located in the writable path. Other dictionaries can be read only."
-msgstr ""
+msgstr "La configurazione permette di scegliere due cartelle diverse: una cartella nella quale l'utente ha permessi di scrittura e una senza permessi di scrittura. L'utente può solo modificare e cancellare i dizionari personalizzati che si trovano nel percorso scrivibile. Gli altri dizionari sono di sola lettura."
#: 01010400.xhp
msgctxt ""
@@ -1454,7 +1470,7 @@ msgctxt ""
"par_id3155419\n"
"help.text"
msgid "<ahelp hid=\".\">Lists the available user dictionaries.</ahelp> Mark the user dictionaries that you want to use for spellcheck and hyphenation."
-msgstr ""
+msgstr "<ahelp hid=\".\">Elenca i dizionari utente disponibili.</ahelp> Selezionate i dizionari utente da usare per il controllo ortografico e la sillabazione."
#: 01010400.xhp
msgctxt ""
@@ -1486,7 +1502,7 @@ msgctxt ""
"par_id3153360\n"
"help.text"
msgid "<ahelp hid=\".\">In the <emph>Dictionary</emph> section you can name a new user-defined dictionary or dictionary of exceptions and specify the language.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Nell'area <emph>Dizionario</emph> è possibile inserire un nuovo dizionario personalizzato o assegnare un nome a un dizionario di eccezioni e definire la lingua.</ahelp>"
#: 01010400.xhp
msgctxt ""
@@ -1558,7 +1574,7 @@ msgctxt ""
"par_id3147436\n"
"help.text"
msgid "<ahelp hid=\".\">In the <emph>Edit Custom Dictionary</emph> dialog you have the option to enter new terms or edit existing entries.</ahelp> If you edit an exception dictionary, the dialog has the added facility of defining an exception for a word. During the spellcheck this exception is then listed as a suggestion."
-msgstr ""
+msgstr "<ahelp hid=\".\">Nella finestra di dialogo <emph>Modifica dizionario personalizzato</emph> è possibile aggiungere nuovi termini o modificare le parole esistenti.</ahelp> Se state modificando un dizionario di eccezioni, la finestra di dialogo offre anche la possibilità di definire un'eccezione per la parola da aggiungere o da modificare. Durante il controllo ortografico, tale eccezione verrà presentata in forma di suggerimento."
#: 01010400.xhp
msgctxt ""
@@ -1590,7 +1606,7 @@ msgctxt ""
"par_id3154730\n"
"help.text"
msgid "<variable id=\"ignore\">The <emph>IgnoreAllList (All)</emph> includes all words that have been marked with <emph>Ignore</emph> during spellcheck. This list is valid only for the current spellcheck.</variable>"
-msgstr ""
+msgstr "<variable id=\"ignore\">La voce <emph>IgnoreAllList (Tutte)</emph> include tutte le parole che sono state contrassegnate con <emph>Ignora</emph> durante il controllo ortografico. Questo elenco resta valido soltanto per il controllo ortografico in corso.</variable>"
#: 01010400.xhp
msgctxt ""
@@ -1670,7 +1686,7 @@ msgctxt ""
"par_id3163808\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/editdictionarydialog/newreplace\">Adds the word in the <emph>Word</emph> text field to your current custom dictionary. The word in the <emph>Suggestion</emph> field is also added when working with exception dictionaries.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"cui/ui/editdictionarydialog/newreplace\">Aggiunge la parola visualizzata nel campo di testo <emph>Parola</emph> al dizionario utente attivo. Se si sta utilizzando un dizionario di eccezioni, viene aggiunta anche la parola contenuta nel campo <emph>Suggerimenti</emph>.</ahelp>"
#: 01010400.xhp
msgctxt ""
@@ -1830,7 +1846,7 @@ msgctxt ""
"par_id3156029\n"
"help.text"
msgid "<ahelp hid=\".\">Sets the minimum number of characters of the word to be hyphenated that must remain at the end of the line.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Imposta il numero minimo di caratteri della parola da sillabare che dovranno rimanere alla fine della riga.</ahelp>"
#: 01010400.xhp
msgctxt ""
@@ -1846,7 +1862,7 @@ msgctxt ""
"par_id3149439\n"
"help.text"
msgid "<ahelp hid=\".\">Specifies the minimum number of characters of a hyphenated word required at the next line.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Specifica il numero minimo di caratteri da lasciare nella seconda parte di una parola sillabata.</ahelp>"
#: 01010400.xhp
msgctxt ""
@@ -2294,7 +2310,7 @@ msgctxt ""
"par_id61884\n"
"help.text"
msgid "<image id=\"img_id5337\" src=\"media/screenshots/cui/ui/colorpickerdialog/ColorPicker.png\" width=\"19cm\" height=\"16cm\"><caption id=\"alt_id34144\">The Pick a Color window</caption></image>"
-msgstr ""
+msgstr "<image id=\"img_id5337\" src=\"media/screenshots/cui/ui/colorpickerdialog/ColorPicker.png\" width=\"19cm\" height=\"16cm\"><caption id=\"alt_id34144\">Finestra Scegli un colore</caption></image>"
#: 01010501.xhp
msgctxt ""
@@ -2326,7 +2342,7 @@ msgctxt ""
"par_id3148947\n"
"help.text"
msgid "<ahelp hid=\".\">With the vertical color component slider you can modify the value of each component of the color.</ahelp> With the large colored square you can select the color component approximately."
-msgstr ""
+msgstr "<ahelp hid=\".\">Il cursore verticale del componente di colore permette di modificare il valore di ciascun componente.</ahelp> Nell'area quadrata colorata potete selezionare approssimativamente il componente di colore."
#: 01010501.xhp
msgctxt ""
@@ -4565,8 +4581,8 @@ msgctxt ""
"01030300.xhp\n"
"par_idN10640\n"
"help.text"
-msgid "Options"
-msgstr "Opzioni"
+msgid "Security Options and Warnings"
+msgstr "Opzioni di sicurezza e avvisi"
#: 01030300.xhp
msgctxt ""
@@ -4597,8 +4613,8 @@ msgctxt ""
"01030300.xhp\n"
"hd_id3168736\n"
"help.text"
-msgid "Persistently save passwords protected by a master password"
-msgstr "Protetto da una password principale"
+msgid "Persistently save passwords for web connections"
+msgstr "Memorizza le password per le connessioni web"
#: 01030300.xhp
msgctxt ""
@@ -4613,6 +4629,22 @@ msgctxt ""
"01030300.xhp\n"
"hd_id3901791\n"
"help.text"
+msgid "Protected by a master password (recommended)"
+msgstr "Protetto da una password principale (raccomandato)"
+
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"par_id31527711486980\n"
+"help.text"
+msgid "Check to enable all connections' passwords to be protected by a master password."
+msgstr ""
+
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"hd_id141527711343312\n"
+"help.text"
msgid "Master Password"
msgstr "Password principale"
@@ -7182,7 +7214,7 @@ msgctxt ""
"par_id3155602\n"
"help.text"
msgid "<ahelp hid=\".\">Specifies that printer metrics are applied for printing and also for formatting the display on the screen. If this box is not checked, a printer independent layout will be used for screen display and printing.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Applica le impostazioni della stampante sia alla stampa, sia alla visualizzazione sullo schermo. Se questa casella non è selezionata, verrà usato un layout indipendente dalla stampante sia per la visualizzazione sullo schermo, sia per la stampa.</ahelp>"
#: 01041000.xhp
msgctxt ""
@@ -7198,7 +7230,7 @@ msgctxt ""
"hd_id3145640\n"
"help.text"
msgid "Add spacing between paragraphs and tables"
-msgstr ""
+msgstr "Aggiungi spaziatura fra i paragrafi e le tabelle"
#: 01041000.xhp
msgctxt ""
@@ -7206,7 +7238,7 @@ msgctxt ""
"par_id3147339\n"
"help.text"
msgid "In $[officename] Writer, paragraph spacing is defined differently than in Microsoft Word documents. If you have defined spacing between two paragraphs or tables, spacing is also added in the corresponding Word documents."
-msgstr ""
+msgstr "In $[officename] Writer, la spaziatura dei paragrafi è definita in modo diverso rispetto ai documenti di Microsoft Word. Se avete definito la spaziatura tra due paragrafi o tabelle, tale spaziatura viene aggiunta anche nei corrispondenti documenti in formato Microsoft Word."
#: 01041000.xhp
msgctxt ""
@@ -7214,7 +7246,7 @@ msgctxt ""
"par_id3151250\n"
"help.text"
msgid "Specifies whether to add Microsoft Word-compatible spacing between paragraphs and tables in $[officename] Writer text documents."
-msgstr ""
+msgstr "Specifica l'aggiunta di una spaziatura compatibile con Microsoft Word tra paragrafi e tabelle nei documenti di testo $[officename] Writer."
#: 01041000.xhp
msgctxt ""
@@ -7222,7 +7254,7 @@ msgctxt ""
"hd_id3146317\n"
"help.text"
msgid "Add paragraph and table spacing at tops of pages"
-msgstr ""
+msgstr "Aggiungi spaziatura del paragrafo e della tabella all'inizio delle pagine"
#: 01041000.xhp
msgctxt ""
@@ -7238,7 +7270,7 @@ msgctxt ""
"par_id3145789\n"
"help.text"
msgid "If you import a Word document, the spaces are automatically added during the conversion."
-msgstr ""
+msgstr "Se importate un documento Word, le distanze durante la conversione vengono aggiunte automaticamente."
#: 01041000.xhp
msgctxt ""
@@ -7382,7 +7414,7 @@ msgctxt ""
"par_id4016541\n"
"help.text"
msgid "Microsoft Word and Writer have different approaches on wrapping text around floating screen objects. Floating screen object are Writer frames and drawing objects, and the objects 'text box', 'graphic', 'frame', 'picture' etc. in Microsoft Word."
-msgstr ""
+msgstr "Microsoft Word e Writer seguono un approccio differente per disporre il testo intorno agli oggetti mobili. Gli oggetti mobili sono, ad esempio, le cornici e gli oggetti di disegno di Writer e gli oggetti 'casella di testo', 'grafico', 'cornice', 'immagine', e via discorrendo, di Microsoft Word."
#: 01041000.xhp
msgctxt ""
@@ -7390,7 +7422,7 @@ msgctxt ""
"par_id7280190\n"
"help.text"
msgid "In Microsoft Word and in current versions of Writer, page header/footer content and footnote/endnote content does not wrap around floating screen objects. Text body content wraps around floating screen objects which are anchored in the page header."
-msgstr ""
+msgstr "In Microsoft Word e nella versione corrente di Writer il contenuto dell'intestazione, del piè di pagina, delle note a piè pagina e delle note di chiusura non viene disposto intorno agli oggetti mobili. Il contenuto del corpo del testo viene disposto intorno agli oggetti mobili che sono ancorati all'intestazione della pagina."
#: 01041000.xhp
msgctxt ""
@@ -7462,7 +7494,7 @@ msgctxt ""
"hd_id5241028\n"
"help.text"
msgid "Tolerate white lines of PDF page backgrounds for compatibility with old documents"
-msgstr ""
+msgstr "Tollera le righe bianche sullo sfondo dei PDF per la compatibilità con i vecchi documenti"
#: 01041000.xhp
msgctxt ""
@@ -7502,7 +7534,7 @@ msgctxt ""
"par_idN1097D\n"
"help.text"
msgid "Add spacing between paragraphs and tables"
-msgstr ""
+msgstr "Aggiungi spaziatura fra i paragrafi e le tabelle"
#: 01041000.xhp
msgctxt ""
@@ -7510,7 +7542,7 @@ msgctxt ""
"par_idN10981\n"
"help.text"
msgid "Add paragraph and table spacing at tops of pages"
-msgstr ""
+msgstr "Aggiungi spaziatura del paragrafo e della tabella all'inizio delle pagine"
#: 01041000.xhp
msgctxt ""
@@ -10630,7 +10662,7 @@ msgctxt ""
"par_id3150717\n"
"help.text"
msgid "<ahelp hid=\".\">Specifies that graphic objects can only be rotated within the rotation angle that you selected in the <emph>When rotating</emph> control.</ahelp> If you want to rotate an object outside the defined angle, press the Shift key when rotating. Release the key when the desired rotation angle is reached."
-msgstr ""
+msgstr "<ahelp hid=\".\">Permette la rotazione degli oggetti grafici solo entro l'angolo di rotazione specificato nella casella di selezione <emph>Nella rotazione</emph>.</ahelp> Per ruotare un oggetto al di fuori dell'angolo definito, premete il tasto Maiusc durante la rotazione. Rilasciate il tasto una volta raggiunto l'angolo di rotazione desiderato."
#: 01070300.xhp
msgctxt ""
@@ -11030,7 +11062,7 @@ msgctxt ""
"par_id3149808\n"
"help.text"
msgid "<variable id=\"textbereich\"><ahelp hid=\".\">Specifies whether to select a text frame by clicking the text.</ahelp></variable>"
-msgstr ""
+msgstr "<variable id=\"textbereich\"><ahelp hid=\".\">Permette di selezionare una cornice di testo facendo clic sul testo corrispondente.</ahelp></variable>"
#: 01070500.xhp
msgctxt ""
@@ -11062,7 +11094,7 @@ msgctxt ""
"hd_id3146986\n"
"help.text"
msgid "Start with Template Selection"
-msgstr ""
+msgstr "Inizia con la selezione del modello"
#: 01070500.xhp
msgctxt ""
@@ -11206,7 +11238,7 @@ msgctxt ""
"hd_id3155904\n"
"help.text"
msgid "Enable Presenter Console"
-msgstr ""
+msgstr "Abilita la Presenter Console"
#: 01070500.xhp
msgctxt ""
@@ -11262,7 +11294,7 @@ msgctxt ""
"hd_id3145790\n"
"help.text"
msgid "Add spacing between paragraphs and tables"
-msgstr ""
+msgstr "Aggiungi spaziatura fra i paragrafi e le tabelle"
#: 01070500.xhp
msgctxt ""
@@ -11686,7 +11718,7 @@ msgctxt ""
"par_id3159399\n"
"help.text"
msgid "<variable id=\"codetext\"><ahelp hid=\".\">Loads and saves the Basic code from a Microsoft document as a special $[officename] Basic module with the document. The disabled Microsoft Basic code is visible in the $[officename] Basic IDE between <emph>Sub</emph> and <emph>End Sub</emph>.</ahelp> You can edit the code. When saving the document in $[officename] format, the Basic code is saved as well. When saving in another format, the Basic code from the $[officename] Basic IDE is not saved. </variable>"
-msgstr ""
+msgstr "<variable id=\"codetext\"><ahelp hid=\".\">Carica e salva con il documento il codice Basic di un documento Microsoft come modulo Basic $[officename] speciale. Il codice Basic di Microsoft disabilitato è visibile nell'IDE Basic di $[officename], racchiuso tra le istruzioni <emph>Sub</emph> e <emph>End Sub</emph>.</ahelp> Il codice può essere modificato. Quando salvate il documento in formato $[officename], viene salvato anche il codice Basic. Quando salvate in un altro formato, invece, il codice Basic dell'IDE Basic di $[officename] non viene salvato.</variable>"
#: 01130100.xhp
msgctxt ""
@@ -11726,7 +11758,7 @@ msgctxt ""
"par_id3150084\n"
"help.text"
msgid "<ahelp hid=\".\">Specifies that the original Microsoft Basic code contained in the document is held in a special internal memory for as long as the document remains loaded in $[officename]. When saving the document in Microsoft format the Microsoft Basic is saved again with the code in an unchanged form.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Se si seleziona questa opzione, il codice Basic originale di Microsoft contenuto nel documento viene salvato in una particolare memoria interna per tutto il tempo in cui il documento rimane aperto con $[officename]. Se si salva il documento nel formato Microsoft, il codice Basic di Microsoft viene salvato senza modifiche.</ahelp>"
#: 01130100.xhp
msgctxt ""
@@ -11854,7 +11886,7 @@ msgctxt ""
"par_id3149095\n"
"help.text"
msgid "<ahelp hid=\".\">Specifies the settings for importing and exporting Microsoft Office documents.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Specifica le impostazioni per l'importazione e l'esportazione di documenti Microsoft Office.</ahelp>"
#: 01130200.xhp
msgctxt ""
@@ -11942,7 +11974,7 @@ msgctxt ""
"par_id3150671\n"
"help.text"
msgid "<ahelp hid=\".\">Microsoft Office has two character attributes similar to $[officename] character background. Select the appropriate attribute (highlighting or shading) which you would like to use during export to Microsoft Office file formats.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Microsoft Office possiede due attributi di carattere simili allo sfondo del carattere di $[officename]. Selezionare l'attributo appropriato (evidenziazione od ombreggiatura) da usare durante l'esportazione nei formati di file Microsoft Office.</ahelp>"
#: 01140000.xhp
msgctxt ""
@@ -13733,8 +13765,8 @@ msgctxt ""
"java.xhp\n"
"hd_id3148618\n"
"help.text"
-msgid "Optional (unstable) options"
-msgstr "Opzioni facoltative (instabile)"
+msgid "Optional Features"
+msgstr "Funzionalità opzionali"
#: java.xhp
msgctxt ""
@@ -13749,8 +13781,8 @@ msgctxt ""
"java.xhp\n"
"par_id3156344\n"
"help.text"
-msgid "It enables features that are not yet complete or contain known bugs. The list of these features is different version by version, or even it can be empty."
-msgstr "Abilita funzionalità non ancora completate o che contengono errori noti. L'elenco di queste funzionalità cambia da versione a versione o può essere anche vuoto."
+msgid "Enables features that are not yet complete or may contain known bugs. The list of these features is different version by version, or even it can be empty."
+msgstr "Abilita funzionalità non ancora completate o che possono contenere errori noti. L'elenco di queste funzionalità cambia da versione a versione o può essere anche vuoto."
#: java.xhp
msgctxt ""
@@ -13765,8 +13797,8 @@ msgctxt ""
"java.xhp\n"
"par_id3156345\n"
"help.text"
-msgid "It enables macro recording, so the <link href=\"text/shared/guide/macro_recording.xhp\" name=\"Tools - Macros - Record Macro\"><item type=\"menuitem\">Tools - Macros - Record Macro</item></link> menu item will be available."
-msgstr "Abilita la registrazione di macro affinché l'elemento di menu <link href=\"text/shared/guide/macro_recording.xhp\" name=\"Tools - Macros - Record Macro\"><item type=\"menuitem\">Strumenti - Macro - Registra macro</item></link> divenga disponibile."
+msgid "Enables macro recording. The <link href=\"text/shared/guide/macro_recording.xhp\" name=\"Tools - Macros - Record Macro\"><item type=\"menuitem\">Tools - Macros - Record Macro</item></link> menu item is available."
+msgstr "Abilita la registrazione di macro. Diventa disponibile l'elemento di menu <link href=\"text/shared/guide/macro_recording.xhp\" name=\"Strumenti - Macro - Registra macro\"><item type=\"menuitem\">Strumenti - Macro - Registra macro</item></link>."
#: java.xhp
msgctxt ""
diff --git a/source/it/helpcontent2/source/text/simpress/00.po b/source/it/helpcontent2/source/text/simpress/00.po
index 0d91cfd6f7b..d4a5c829e0e 100644
--- a/source/it/helpcontent2/source/text/simpress/00.po
+++ b/source/it/helpcontent2/source/text/simpress/00.po
@@ -4,8 +4,8 @@ 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: 2018-04-17 15:54+0200\n"
-"PO-Revision-Date: 2018-01-18 12:31+0000\n"
-"Last-Translator: Paolo Pelloni <info@paolopelloni.it>\n"
+"PO-Revision-Date: 2018-06-14 12:51+0000\n"
+"Last-Translator: Valter Mura <valtermura@gmail.com>\n"
"Language-Team: Italian <l10n@it.libreoffice.org>\n"
"Language: it\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1516278687.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1528980680.000000\n"
#: 00000004.xhp
msgctxt ""
@@ -742,7 +742,7 @@ msgctxt ""
"par_id3153012\n"
"help.text"
msgid "<variable id=\"seitenvorlage\">Choose <emph>Slide - Master Slide</emph></variable>"
-msgstr ""
+msgstr "<variable id=\"seitenvorlage\">Scegliete <emph>Diapositiva - Diapositiva schema</emph></variable>"
#: 00000406.xhp
msgctxt ""
diff --git a/source/it/helpcontent2/source/text/simpress/01.po b/source/it/helpcontent2/source/text/simpress/01.po
index 0fb1b49a81e..d8e2e06657b 100644
--- a/source/it/helpcontent2/source/text/simpress/01.po
+++ b/source/it/helpcontent2/source/text/simpress/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: 2018-05-08 15:10+0200\n"
-"PO-Revision-Date: 2018-04-06 12:32+0000\n"
+"PO-Revision-Date: 2018-06-14 13:01+0000\n"
"Last-Translator: Valter Mura <valtermura@gmail.com>\n"
"Language-Team: Italian <l10n@it.libreoffice.org>\n"
"Language: it\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1523017958.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1528981302.000000\n"
#: 01170000.xhp
msgctxt ""
@@ -4414,7 +4414,7 @@ msgctxt ""
"par_id3149209\n"
"help.text"
msgid "<variable id=\"verbindertext\"><ahelp hid=\".\">Sets the properties of a connector.</ahelp></variable>"
-msgstr ""
+msgstr "<variable id=\"verbindertext\"><ahelp hid=\".\">Permette di impostare le proprietà di un connettore.</ahelp></variable>"
#: 05170000.xhp
msgctxt ""
@@ -5478,7 +5478,7 @@ msgctxt ""
"par_id3144773\n"
"help.text"
msgid "<variable id=\"effekttext\"><ahelp hid=\".\">Assigns effects to selected objects.</ahelp></variable>"
-msgstr ""
+msgstr "<variable id=\"effekttext\"><ahelp hid=\".\">Assegna effetti agli oggetti selezionati.</ahelp></variable>"
#: 06060000.xhp
msgctxt ""
@@ -5590,7 +5590,7 @@ msgctxt ""
"par_idN107F0\n"
"help.text"
msgid "Category"
-msgstr ""
+msgstr "Categoria"
#: 06060000.xhp
msgctxt ""
@@ -5638,7 +5638,7 @@ msgctxt ""
"par_idN107F1\n"
"help.text"
msgid "Effect"
-msgstr ""
+msgstr "Effetto"
#: 06060000.xhp
msgctxt ""
@@ -5718,7 +5718,7 @@ msgctxt ""
"par_idN10824\n"
"help.text"
msgid "<ahelp hid=\".\">Specifies the duration of the selected animation effect.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Specifica la durata dell'effetto di animazione selezionato.</ahelp>"
#: 06060000.xhp
msgctxt ""
@@ -5726,7 +5726,7 @@ msgctxt ""
"par_idN10835\n"
"help.text"
msgid "Delay"
-msgstr ""
+msgstr "Ritardo"
#: 06060000.xhp
msgctxt ""
diff --git a/source/it/helpcontent2/source/text/simpress/guide.po b/source/it/helpcontent2/source/text/simpress/guide.po
index 8d5b9382f96..88ee0425441 100644
--- a/source/it/helpcontent2/source/text/simpress/guide.po
+++ b/source/it/helpcontent2/source/text/simpress/guide.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: 2018-05-16 16:54+0200\n"
-"PO-Revision-Date: 2018-01-30 20:03+0000\n"
+"PO-Revision-Date: 2018-06-14 13:09+0000\n"
"Last-Translator: Valter Mura <valtermura@gmail.com>\n"
"Language-Team: Italian <l10n@it.libreoffice.org>\n"
"Language: it\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1517342592.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1528981774.000000\n"
#: 3d_create.xhp
msgctxt ""
@@ -494,7 +494,7 @@ msgctxt ""
"hd_id3150251\n"
"help.text"
msgid "<variable id=\"animated_objects\"><link href=\"text/simpress/guide/animated_objects.xhp\" name=\"Animating Objects in Slides\">Animating Objects in Presentation Slides</link></variable>"
-msgstr ""
+msgstr "<variable id=\"animated_objects\"><link href=\"text/simpress/guide/animated_objects.xhp\" name=\"Animare oggetti nella diapositiva\">Animare gli oggetti nelle presentazioni</link></variable>"
#: animated_objects.xhp
msgctxt ""
@@ -734,7 +734,7 @@ msgctxt ""
"par_id3148826\n"
"help.text"
msgid "If you want, you can use the <emph>Zoom</emph> toolbar<image id=\"img_id3151172\" src=\"cmd/sc_zoom.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3151172\">Icon</alt></image> to change the view magnification for the slides."
-msgstr ""
+msgstr "Se volete, è possibile usare la barra degli strumenti <emph>Zoom</emph><image id=\"img_id3151172\" src=\"cmd/sc_zoom.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3151172\">Icona</alt></image> per cambiare il livello di ingrandimento delle diapositive."
#: animated_slidechange.xhp
msgctxt ""
@@ -4638,7 +4638,7 @@ msgctxt ""
"par_id221120161524501012\n"
"help.text"
msgid "Warning: Clicking Undo will not delete a photo album. Right-click the slides on the slide panel and select <item type=\"menuitem\">Delete Slide</item> to delete the slides."
-msgstr ""
+msgstr "Attenzione: facendo clic su Annulla non sarà eliminato l'album fotografico. Per eliminare le diapositive, fate clic col pulsante destro del mouse sulle diapositive all'interno del riquadro delle diapositive e selezionate <item type=\"menuitem\">Elimina diapositiva</item>."
#: photo_album.xhp
msgctxt ""
@@ -4694,7 +4694,7 @@ msgctxt ""
"par_id91512579485395\n"
"help.text"
msgid "The Presenter Console works only on an operating system that supports multiple displays and only when two displays are connected (one may be the laptop built-in display)."
-msgstr ""
+msgstr "La Presenter Console funziona solo con sistemi operativi che supportano schemi multipli e solo quando due schermi sono collegati tra loro (uno potrebbe essere lo schermo del computer portatile)."
#: presenter_console.xhp
msgctxt ""
@@ -4718,7 +4718,7 @@ msgctxt ""
"par_id351512577323192\n"
"help.text"
msgid "Choose <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 Impress - General</item>."
-msgstr ""
+msgstr "Scegliete <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"menuitem\">%PRODUCTNAME - Preferenze</item></caseinline><defaultinline><item type=\"menuitem\">Strumenti - Opzioni</item></defaultinline></switchinline><item type=\"menuitem\"> - %PRODUCTNAME Impress - Generale</item>."
#: presenter_console.xhp
msgctxt ""
@@ -4734,7 +4734,7 @@ msgctxt ""
"par_id261512578116942\n"
"help.text"
msgid "<image id=\"img_impressoptions\" src=\"media/screenshots/cui/ui/optionsdialog/impressoptionsgeneraldialog.png\" width=\"793px\" height=\"538px\"><alt id=\"alt_id821512578116950\">Enable Presenter Console option</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_impressoptions\" src=\"media/screenshots/cui/ui/optionsdialog/impressoptionsgeneraldialog.png\" width=\"793px\" height=\"538px\"><alt id=\"alt_id821512578116950\">Opzione Abilita la Presenter Console</alt></image>"
#: presenter_console.xhp
msgctxt ""
@@ -4758,7 +4758,7 @@ msgctxt ""
"par_id391512577726275\n"
"help.text"
msgid "Run the slide show. Press F5 or Shift-F5 or choose <item type=\"menuitem\">Slide Show - Start from First Slide</item> or <item type=\"menuitem\">Start from Current Slide</item>."
-msgstr ""
+msgstr "Avviate la presentazione. Premete F5 o Maiusc-F5 o scegliete <item type=\"menuitem\">Presentazione - Inizia dalla prima diapositiva</item> o <item type=\"menuitem\">Inizia dalla diapositiva corrente</item>."
#: presenter_console.xhp
msgctxt ""
@@ -4774,7 +4774,7 @@ msgctxt ""
"par_id721512827886185\n"
"help.text"
msgid "<image src=\"media/helpimg/sd_PresenterConsole04.png\" id=\"img_id401512827886185\" width=\"640\" height=\"72\"><alt id=\"alt_id71512827886185\">Presenter Console Controls</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/helpimg/sd_PresenterConsole04.png\" id=\"img_id401512827886185\" width=\"640\" height=\"72\"><alt id=\"alt_id71512827886185\">Controlli della Presenter Console</alt></image>"
#: presenter_console.xhp
msgctxt ""
@@ -4782,7 +4782,7 @@ msgctxt ""
"par_id71512828085688\n"
"help.text"
msgid "<emph>Previous</emph>: move to previous slide."
-msgstr ""
+msgstr "<emph>Precedente</emph>: va alla diapositiva precedente."
#: presenter_console.xhp
msgctxt ""
@@ -4790,7 +4790,7 @@ msgctxt ""
"par_id61512828110394\n"
"help.text"
msgid "<emph>Next</emph>: move to next slide."
-msgstr ""
+msgstr "<emph>Successiva</emph>: va alla diapositiva successiva."
#: presenter_console.xhp
msgctxt ""
@@ -4798,7 +4798,7 @@ msgctxt ""
"par_id981512828129990\n"
"help.text"
msgid "<emph>Notes</emph>: display the Presenter Console Notes mode."
-msgstr ""
+msgstr "<emph>Note</emph>: mostra il modo Note della Presenter Console."
#: presenter_console.xhp
msgctxt ""
@@ -4806,7 +4806,7 @@ msgctxt ""
"par_id101512828220096\n"
"help.text"
msgid "<emph>Slide</emph>: display the Presenter Console Slide sorter mode."
-msgstr ""
+msgstr "<emph>Diapositive</emph>: mostra il modo Ordine diapositive della Presenter Console."
#: presenter_console.xhp
msgctxt ""
@@ -4870,7 +4870,7 @@ msgctxt ""
"par_id311512825411947\n"
"help.text"
msgid "<image src=\"media/helpimg/sd_PresenterConsole01.png\" id=\"img_id481512825411947\" width=\"640\" height=\"360\"><alt id=\"alt_id151512825411947\">Presenter console normal mode</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/helpimg/sd_PresenterConsole01.png\" id=\"img_id481512825411947\" width=\"640\" height=\"360\"><alt id=\"alt_id151512825411947\">Modo normale della Presenter Console</alt></image>"
#: presenter_console.xhp
msgctxt ""
@@ -4894,7 +4894,7 @@ msgctxt ""
"par_id961512827293400\n"
"help.text"
msgid "<image src=\"media/helpimg/sd_PresenterConsole03.png\" id=\"img_id651512827293401\" width=\"640\" height=\"360\"><alt id=\"alt_id881512827293401\">Notes mode</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/helpimg/sd_PresenterConsole03.png\" id=\"img_id651512827293401\" width=\"640\" height=\"360\"><alt id=\"alt_id881512827293401\">Modo note</alt></image>"
#: presenter_console.xhp
msgctxt ""
@@ -4918,7 +4918,7 @@ msgctxt ""
"par_id721512827434997\n"
"help.text"
msgid "<image src=\"media/helpimg/sd_PresenterConsole02.png\" id=\"img_id831512827434997\" width=\"640\" height=\"360\"><alt id=\"alt_id221512827434997\">Slide sorter mode</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/helpimg/sd_PresenterConsole02.png\" id=\"img_id831512827434997\" width=\"640\" height=\"360\"><alt id=\"alt_id221512827434997\">Modo Ordine diapositive</alt></image>"
#: presenter_console.xhp
msgctxt ""
@@ -6086,7 +6086,7 @@ msgctxt ""
"bm_id3153415\n"
"help.text"
msgid "<bookmark_value>vectorizing bitmaps</bookmark_value><bookmark_value>converting; bitmaps to polygons</bookmark_value><bookmark_value>bitmaps; converting to vector graphics</bookmark_value><bookmark_value>vector graphics; converting bitmaps</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Bitmap; vettorializzare</bookmark_value><bookmark_value>Convertire; bitmap in poligoni</bookmark_value><bookmark_value>Bitmap; convertire in immagine vettoriale</bookmark_value><bookmark_value>Immagine; convertire da bitmap in vettoriale</bookmark_value>"
#: vectorize.xhp
msgctxt ""
diff --git a/source/it/helpcontent2/source/text/smath/01.po b/source/it/helpcontent2/source/text/smath/01.po
index eb5fc8faa5e..c68a83f71f3 100644
--- a/source/it/helpcontent2/source/text/smath/01.po
+++ b/source/it/helpcontent2/source/text/smath/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: 2018-05-16 16:54+0200\n"
-"PO-Revision-Date: 2018-01-30 19:07+0000\n"
+"PO-Revision-Date: 2018-06-14 13:22+0000\n"
"Last-Translator: Valter Mura <valtermura@gmail.com>\n"
"Language-Team: Italian <l10n@it.libreoffice.org>\n"
"Language: it\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1517339223.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1528982520.000000\n"
#: 02080000.xhp
msgctxt ""
@@ -2134,7 +2134,7 @@ msgctxt ""
"par_id3155374\n"
"help.text"
msgid "Choose a function in the lower part of the Elements pane. These functions are also listed in the <link href=\"text/shared/00/00000001.xhp#kontextmenue\" name=\"context menu\">context menu</link> of the <emph>Commands</emph> window. Any functions not contained in the Elements pane need to be typed manually in the Commands window."
-msgstr ""
+msgstr "Selezionate una funzione nella parte inferiore del riquadro Elementi. Queste funzioni sono anche elencate nel <link href=\"text/shared/00/00000001.xhp#kontextmenue\" name=\"menu contestuale\">menu contestuale</link> della finestra <emph>Comandi</emph>. Le funzioni che non possono essere attivate nel riquadro Elementi, devono essere digitate direttamente nella finestra Comandi."
#: 03090400.xhp
msgctxt ""
@@ -2910,7 +2910,7 @@ msgctxt ""
"par_id3147101\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_LRBRACEX\">Inserts a placeholder within braces (curly brackets).</ahelp> You can also type <emph>lbrace<?>rbrace</emph> directly in the <emph>Commands</emph> window."
-msgstr ""
+msgstr "<ahelp hid=\"HID_SMA_LRBRACEX\">Inserisce un segnaposto tra parentesi graffe.</ahelp> Per inserire manualmente le parentesi, digitate <emph>lbrace<?>rbrace</emph> nella finestra <emph>Comandi</emph>."
#: 03090500.xhp
msgctxt ""
@@ -4094,7 +4094,7 @@ msgctxt ""
"par_id3147262\n"
"help.text"
msgid "You can choose among various options for formatting a $[officename] Math formula. The format options are displayed in the lower part of the Elements pane. These options are also listed in the <link href=\"text/shared/00/00000001.xhp#kontextmenue\" name=\"context menu\">context menu</link> of the <emph>Commands</emph> window."
-msgstr ""
+msgstr "Per allineare i caratteri della formula di $[officename] Math in modo perfetto, qui vengono visualizzate diverse opzioni che vi possono aiutare in questa operazione. Nella sezione inferiore del riquadro Elementi vengono visualizzate le diverse possibilità per l'allineamento. Queste opzioni sono elencate anche nel <link href=\"text/shared/00/00000001.xhp#kontextmenue\" name=\"menu contestuale\">menu contestuale</link> della finestra <emph>Comandi</emph>."
#: 03090700.xhp
msgctxt ""
@@ -5374,7 +5374,7 @@ msgctxt ""
"par_id3153912\n"
"help.text"
msgid "<image id=\"img_id3149126\" src=\"media/helpimg/smzb4.png\" width=\"345px\" height=\"190px\"><alt id=\"alt_id3149126\">Matrix</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3149126\" src=\"media/helpimg/smzb4.png\" width=\"345px\" height=\"190px\"><alt id=\"alt_id3149126\">Matrice</alt></image>"
#: 03090906.xhp
msgctxt ""
@@ -5438,7 +5438,7 @@ msgctxt ""
"par_id3153912\n"
"help.text"
msgid "<image id=\"img_id3148871\" src=\"media/helpimg/smzb7.png\" width=\"255px\" height=\"60px\"><alt id=\"alt_id3148871\">Functions</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3148871\" src=\"media/helpimg/smzb7.png\" width=\"255px\" height=\"60px\"><alt id=\"alt_id3148871\">Funzioni</alt></image>"
#: 03090908.xhp
msgctxt ""
@@ -5542,7 +5542,7 @@ msgctxt ""
"par_id3148703\n"
"help.text"
msgid "<image id=\"img_id3151242\" src=\"media/helpimg/smzb10.png\" width=\"295px\" height=\"40px\"><alt id=\"alt_id3151242\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3151242\" src=\"media/helpimg/smzb10.png\" width=\"295px\" height=\"40px\"><alt id=\"alt_id3151242\">Icona</alt></image>"
#: 03091100.xhp
msgctxt ""
diff --git a/source/it/helpcontent2/source/text/swriter.po b/source/it/helpcontent2/source/text/swriter.po
index b5db5b16133..baa3f3776e5 100644
--- a/source/it/helpcontent2/source/text/swriter.po
+++ b/source/it/helpcontent2/source/text/swriter.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: 2018-04-05 11:28+0200\n"
-"PO-Revision-Date: 2018-04-05 12:18+0000\n"
+"PO-Revision-Date: 2018-06-14 13:28+0000\n"
"Last-Translator: Valter Mura <valtermura@gmail.com>\n"
"Language-Team: Italian <l10n@it.libreoffice.org>\n"
"Language: it\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1522930706.000000\n"
+"X-POOTLE-MTIME: 1528982922.000000\n"
#: classificationbar.xhp
msgctxt ""
@@ -342,7 +342,7 @@ msgctxt ""
"par_id030820161754171423\n"
"help.text"
msgid "The Classification toolbar contains listboxes to help in selecting the security of the document, according to the <item type=\"acronym\">BAF</item> category policy and <item type=\"acronym\">BAILS</item> levels. %PRODUCTNAME will add custom fields in the document properties (<item type=\"menuitem\">File - Properties</item>, Custom Properties tab) to store the classification policy as document metadata."
-msgstr ""
+msgstr "La barra degli strumenti Classificazione contiene elenchi a discesa che aiutano a selezionare la sicurezza del documento, in base alla politica di categoria <item type=\"acronym\">BAF</item> e i livelli <item type=\"acronym\">BAILS</item>. %PRODUCTNAME aggiungerà campi personalizzati nelle proprietà del documento (<item type=\"menuitem\">File - Proprietà</item>, scheda Proprietà personalizzate) per memorizzare la politica di classificazione come metadati del documento."
#: classificationbar.xhp
msgctxt ""
@@ -1150,7 +1150,7 @@ msgctxt ""
"par_idN105B5\n"
"help.text"
msgid "<link href=\"text/swriter/01/04150000.xhp\">Insert Table</link>"
-msgstr ""
+msgstr "<link href=\"text/swriter/01/04150000.xhp\">Inserisci tabella</link>"
#: main0110.xhp
msgctxt ""
@@ -1534,7 +1534,7 @@ msgctxt ""
"par_idN107AC\n"
"help.text"
msgid "Opens <link href=\"text/shared/optionen/01040500.xhp\">a dialog</link> where you can specify the format of numbers in the table."
-msgstr ""
+msgstr "Apre una <link href=\"text/shared/optionen/01040500.xhp\">finestra di dialogo</link> in cui potete specificare il formato dei numeri nella tabella."
#: main0110.xhp
msgctxt ""
diff --git a/source/it/officecfg/registry/data/org/openoffice/Office/UI.po b/source/it/officecfg/registry/data/org/openoffice/Office/UI.po
index fb67cf3bc83..cf7c77bfadc 100644
--- a/source/it/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/it/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-22 13:17+0200\n"
-"PO-Revision-Date: 2018-05-01 09:18+0000\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
+"PO-Revision-Date: 2018-06-06 11:58+0000\n"
"Last-Translator: Valter Mura <valtermura@gmail.com>\n"
"Language-Team: Italian <l10n@it.libreoffice.org>\n"
"Language: it\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1525166338.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1528286303.000000\n"
#: BaseWindowState.xcu
msgctxt ""
@@ -149,7 +149,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Form Horizontal Scroll Bar"
-msgstr ""
+msgstr "Barra di scorrimento orizzontale formulario"
#: BasicIDECommands.xcu
msgctxt ""
@@ -1175,7 +1175,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Conditional Formatting: Condition"
-msgstr "Formattazione condizionata: condizione"
+msgstr "Formattazione condizionale: condizione"
#: CalcCommands.xcu
msgctxt ""
@@ -1202,7 +1202,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Conditional Formatting: Color Scale"
-msgstr "Formattazione condizionata: gradiente"
+msgstr "Formattazione condizionale: gradiente"
#: CalcCommands.xcu
msgctxt ""
@@ -1220,7 +1220,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Conditional Formatting: Data Bar"
-msgstr "Formattazione condizionata: barra dati"
+msgstr "Formattazione condizionale: barra dati"
#: CalcCommands.xcu
msgctxt ""
@@ -1238,7 +1238,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Conditional Formatting: Icon Set"
-msgstr "Formattazione condizionata: gruppo di icone"
+msgstr "Formattazione condizionale: gruppo di icone"
#: CalcCommands.xcu
msgctxt ""
@@ -1256,7 +1256,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Conditional Formatting: Date"
-msgstr "Formattazione condizionata: data"
+msgstr "Formattazione condizionale: data"
#: CalcCommands.xcu
msgctxt ""
@@ -1283,7 +1283,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Manage Conditional Formatting..."
-msgstr ""
+msgstr "Gestisci la formattazione condizionale..."
#: CalcCommands.xcu
msgctxt ""
@@ -1904,7 +1904,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Record Track Changes"
-msgstr ""
+msgstr "Registra le revisioni"
#: CalcCommands.xcu
msgctxt ""
@@ -1922,7 +1922,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Show Track Changes"
-msgstr ""
+msgstr "Mostra le revisioni"
#: CalcCommands.xcu
msgctxt ""
@@ -2147,7 +2147,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Manage..."
-msgstr ""
+msgstr "~Gestisci..."
#: CalcCommands.xcu
msgctxt ""
@@ -2156,7 +2156,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Manage Track Changes"
-msgstr ""
+msgstr "Gestisci le revisioni"
#: CalcCommands.xcu
msgctxt ""
@@ -2174,7 +2174,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Insert Track Change Comment"
-msgstr ""
+msgstr "Inserisci commento sulla revisione"
#: CalcCommands.xcu
msgctxt ""
@@ -2552,7 +2552,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Manage Names..."
-msgstr ""
+msgstr "~Gestisci nomi..."
#: CalcCommands.xcu
msgctxt ""
@@ -3056,7 +3056,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Define Range..."
-msgstr ""
+msgstr "~Definisci area..."
#: CalcCommands.xcu
msgctxt ""
@@ -3065,7 +3065,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Select ~Range..."
-msgstr ""
+msgstr "Seleziona ~area..."
#: CalcCommands.xcu
msgctxt ""
@@ -3335,7 +3335,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Align Center"
-msgstr ""
+msgstr "Allinea al centro"
#: CalcCommands.xcu
msgctxt ""
@@ -3578,7 +3578,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Thousands Separator"
-msgstr ""
+msgstr "Separatore di migliaia"
#: CalcCommands.xcu
msgctxt ""
@@ -3731,7 +3731,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "View Grid Lines"
-msgstr ""
+msgstr "Visualizza linee della griglia"
#: CalcCommands.xcu
msgctxt ""
@@ -6953,7 +6953,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Page"
-msgstr ""
+msgstr "~Pagina"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -6962,7 +6962,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Shape"
-msgstr ""
+msgstr "~Forma"
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7790,7 +7790,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Properties..."
-msgstr ""
+msgstr "Proprietà..."
#: DrawImpressCommands.xcu
msgctxt ""
@@ -7916,7 +7916,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Insert Page from File..."
-msgstr ""
+msgstr "Inserisci pagina da file..."
#: DrawImpressCommands.xcu
msgctxt ""
@@ -16034,7 +16034,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Double Underline"
-msgstr ""
+msgstr "Sottolineatura doppia"
#: GenericCommands.xcu
msgctxt ""
@@ -16259,7 +16259,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Align Center"
-msgstr ""
+msgstr "Allinea al centro"
#: GenericCommands.xcu
msgctxt ""
@@ -17503,7 +17503,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Cycle Case"
-msgstr ""
+msgstr "Alterna in sequenza"
#: GenericCommands.xcu
msgctxt ""
@@ -18664,7 +18664,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Fo~rm"
-msgstr ""
+msgstr "Fo~rmulario"
#: GenericCommands.xcu
msgctxt ""
@@ -20014,7 +20014,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Protect Track Changes"
-msgstr ""
+msgstr "Proteggi le revisioni"
#: GenericCommands.xcu
msgctxt ""
@@ -20212,7 +20212,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Clear"
-msgstr ""
+msgstr "Cancella"
#: GenericCommands.xcu
msgctxt ""
@@ -20221,7 +20221,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Clear ~Direct Formatting"
-msgstr ""
+msgstr "Cancella formattazione ~diretta"
#: GenericCommands.xcu
msgctxt ""
@@ -20230,7 +20230,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Clear Direct Formatting"
-msgstr ""
+msgstr "Cancella formattazione diretta"
#: GenericCommands.xcu
msgctxt ""
@@ -22336,7 +22336,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Sum"
-msgstr ""
+msgstr "Somma"
#: GenericCommands.xcu
msgctxt ""
@@ -25135,7 +25135,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Standard Toolbar"
-msgstr ""
+msgstr "Barra degli strumenti standard"
#: ToolbarMode.xcu
msgctxt ""
@@ -25162,7 +25162,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Contextual groups"
-msgstr ""
+msgstr "Gruppi contestuali"
#: ToolbarMode.xcu
msgctxt ""
@@ -25171,7 +25171,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Contextual Single"
-msgstr ""
+msgstr "Singola contestuale"
#: ToolbarMode.xcu
msgctxt ""
@@ -25180,7 +25180,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Tabbed"
-msgstr ""
+msgstr "Con schede"
#: ToolbarMode.xcu
msgctxt ""
@@ -25189,7 +25189,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Tabbed Compact"
-msgstr ""
+msgstr "A schede compatta"
#: ToolbarMode.xcu
msgctxt ""
@@ -25198,7 +25198,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Groupedbar Compact"
-msgstr ""
+msgstr "Barra raggruppata compatta"
#: ToolbarMode.xcu
msgctxt ""
@@ -25207,7 +25207,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Groupedbar"
-msgstr ""
+msgstr "Barra raggruppata"
#: ToolbarMode.xcu
msgctxt ""
@@ -25216,7 +25216,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Standard Toolbar"
-msgstr ""
+msgstr "Barra degli strumenti standard"
#: ToolbarMode.xcu
msgctxt ""
@@ -25243,7 +25243,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Contextual groups"
-msgstr ""
+msgstr "Gruppi contestuali"
#: ToolbarMode.xcu
msgctxt ""
@@ -25252,7 +25252,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Tabbed"
-msgstr ""
+msgstr "Con schede"
#: ToolbarMode.xcu
msgctxt ""
@@ -25261,7 +25261,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Groupedbar Compact"
-msgstr ""
+msgstr "Barra raggruppata compatta"
#: ToolbarMode.xcu
msgctxt ""
@@ -25270,7 +25270,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Groupedbar"
-msgstr ""
+msgstr "Barra raggruppata"
#: ToolbarMode.xcu
msgctxt ""
@@ -25279,7 +25279,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Standard Toolbar"
-msgstr ""
+msgstr "Barra degli strumenti standard"
#: ToolbarMode.xcu
msgctxt ""
@@ -25297,7 +25297,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Contextual groups"
-msgstr ""
+msgstr "Gruppi contestuali"
#: ToolbarMode.xcu
msgctxt ""
@@ -25306,7 +25306,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Tabbed"
-msgstr ""
+msgstr "Con schede"
#: ToolbarMode.xcu
msgctxt ""
@@ -25315,7 +25315,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Groupedbar Compact"
-msgstr ""
+msgstr "Barra raggruppata compatta"
#: ToolbarMode.xcu
msgctxt ""
@@ -25324,7 +25324,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Groupedbar"
-msgstr ""
+msgstr "Barra raggruppata"
#: ToolbarMode.xcu
msgctxt ""
@@ -25333,7 +25333,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Standard Toolbar"
-msgstr ""
+msgstr "Barra degli strumenti standard"
#: ToolbarMode.xcu
msgctxt ""
@@ -25342,7 +25342,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Tabbed"
-msgstr ""
+msgstr "Con schede"
#: ToolbarMode.xcu
msgctxt ""
@@ -25351,7 +25351,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Groupedbar Compact"
-msgstr ""
+msgstr "Barra raggruppata compatta"
#: ToolbarMode.xcu
msgctxt ""
@@ -25360,7 +25360,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Groupedbar"
-msgstr ""
+msgstr "Barra raggruppata"
#: ToolbarMode.xcu
msgctxt ""
@@ -25369,7 +25369,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Standard Toolbar"
-msgstr ""
+msgstr "Barra degli strumenti standard"
#: ToolbarMode.xcu
msgctxt ""
@@ -25378,7 +25378,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Standard Toolbar"
-msgstr ""
+msgstr "Barra degli strumenti standard"
#: WriterCommands.xcu
msgctxt ""
@@ -25936,7 +25936,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Go t~o Page..."
-msgstr ""
+msgstr "~Vai alla pagina..."
#: WriterCommands.xcu
msgctxt ""
@@ -26520,8 +26520,8 @@ msgctxt ""
"..WriterCommands.UserInterface.Commands..uno:TextAttributes\n"
"Label\n"
"value.text"
-msgid "Text Attributes"
-msgstr "Attributi di testo"
+msgid "Text Attributes..."
+msgstr "Attributi di testo..."
#: WriterCommands.xcu
msgctxt ""
@@ -29410,7 +29410,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Clone"
-msgstr ""
+msgstr "Clona"
#: WriterCommands.xcu
msgctxt ""
@@ -29419,7 +29419,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Clone Formatting"
-msgstr ""
+msgstr "Clona formattazione"
#: WriterCommands.xcu
msgctxt ""
@@ -29527,7 +29527,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Word Count..."
-msgstr ""
+msgstr "~Conteggio parole..."
#: WriterCommands.xcu
msgctxt ""
diff --git a/source/it/readlicense_oo/docs.po b/source/it/readlicense_oo/docs.po
index 65f2f788d6f..bf55aa23710 100644
--- a/source/it/readlicense_oo/docs.po
+++ b/source/it/readlicense_oo/docs.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-04-17 15:54+0200\n"
-"PO-Revision-Date: 2017-10-07 17:39+0000\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
+"PO-Revision-Date: 2018-06-06 11:59+0000\n"
"Last-Translator: Valter Mura <valtermura@gmail.com>\n"
"Language-Team: Italian <l10n@it.libreoffice.org>\n"
"Language: it\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1507397952.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1528286353.000000\n"
#: readme.xrm
msgctxt ""
@@ -30,7 +30,7 @@ msgctxt ""
"LatestUpdates\n"
"readmeitem.text"
msgid "For the latest updates to this readme file, see <a href=\"https://www.libreoffice.org/welcome/readme.html\">https://www.libreoffice.org/welcome/readme.html</a>"
-msgstr ""
+msgstr "Per gli ultimi aggiornamenti a questo file leggimi, consulta la pagina <a href=\"https://www.libreoffice.org/welcome/readme.html\">https://www.libreoffice.org/welcome/readme.html</a>."
#: readme.xrm
msgctxt ""
@@ -46,7 +46,7 @@ msgctxt ""
"A7\n"
"readmeitem.text"
msgid "The ${PRODUCTNAME} community is responsible for the development of this product, and invites you to consider participating as a community member. If you are a new user, you can visit the ${PRODUCTNAME} site, where you will find lots of information about the ${PRODUCTNAME} project and the communities that exist around it. Go to <a href=\"https://www.libreoffice.org/\">https://www.libreoffice.org/</a>."
-msgstr ""
+msgstr "La comunità di ${PRODUCTNAME} è responsabile dello sviluppo di questo prodotto e ti invita a considerare la tua partecipazione come membro della comunità. Se sei un nuovo utente, puoi visitare il sito di ${PRODUCTNAME}, dove troverai molte informazioni sul progetto ${PRODUCTNAME} e le comunità che vi ruotano intorno. Visita l'indirizzo <a href=\"https://www.libreoffice.org/\">https://www.libreoffice.org/</a>."
#: readme.xrm
msgctxt ""
@@ -86,7 +86,7 @@ msgctxt ""
"A13b\n"
"readmeitem.text"
msgid "If you appreciate their efforts, and would like to ensure that ${PRODUCTNAME} continues to be available far into the future, please consider contributing to the project - see <a href=\"https://www.documentfoundation.org/contribution/\">https://www.documentfoundation.org/contribution/</a> for details. Everyone can make a contribution of some kind."
-msgstr ""
+msgstr "Se apprezzi i loro sforzi, e desideri che ${PRODUCTNAME} continui a essere disponibile negli anni a venire, considera di contribuire al progetto: consulta <a href=\"https://www.documentfoundation.org/contribution/\">https://www.documentfoundation.org/contribution/</a> per i dettagli. Tutti possono contribuire in qualche modo."
#: readme.xrm
msgctxt ""
@@ -117,8 +117,8 @@ msgctxt ""
"readme.xrm\n"
"macxiOSX\n"
"readmeitem.text"
-msgid "MacOSX 10.8 (Mountain Lion) or higher"
-msgstr "MacOSX 10.8 (Mountain Lion) o superiore"
+msgid "MacOSX 10.9 (Mavericks) or higher"
+msgstr "MacOSX 10.9 (Mavericks) o superiore"
#: readme.xrm
msgctxt ""
@@ -126,7 +126,7 @@ msgctxt ""
"s2s3sdf21\n"
"readmeitem.text"
msgid "Microsoft Windows 7 SP1, 8, 8.1 Update (S14) or 10"
-msgstr ""
+msgstr "Microsoft Windows 7 SP1, 8, 8.1 Update (S14) o 10"
#: readme.xrm
msgctxt ""
@@ -406,7 +406,7 @@ msgctxt ""
"otherinstall2\n"
"readmeitem.text"
msgid "The RPMS (or DEBS, respectively) directory also contains a package named libreoffice${PRODUCTVERSION}-freedesktop-menus-${PRODUCTVERSION}.0.1-1.noarch.rpm (or libreoffice${PRODUCTVERSION}-debian-menus_${PRODUCTVERSION}.0.1-1_all.deb, respectively, or similar). This is a package for all Linux distributions that support the Freedesktop.org specifications/recommendations (<a href=\"https://en.wikipedia.org/wiki/Freedesktop.org\">https://en.wikipedia.org/wiki/Freedesktop.org</a>), and is provided for installation on other Linux distributions not covered in the aforementioned instructions."
-msgstr ""
+msgstr "La cartella RPMS (o DEBS, rispettivamente) contiene anche un pacchetto chiamato libreoffice${PRODUCTVERSION}-freedesktop-menus-${PRODUCTVERSION}.0.1-1.noarch.rpm (o libreoffice${PRODUCTVERSION}-debian-menus_${PRODUCTVERSION}.0.1-1_all.deb, rispettivamente, o simile). Questo pacchetto vale per tutte le distribuzioni Linux che supportano le specifiche/raccomandazioni Freedesktop.org (<a href=\"https://en.wikipedia.org/wiki/Freedesktop.org\">https://en.wikipedia.org/wiki/Freedesktop.org</a>), ed è fornito per l'installazione sulle altre distribuzioni Linux non contemplate nelle istruzioni menzionate in precedenza."
#: readme.xrm
msgctxt ""
@@ -646,7 +646,7 @@ msgctxt ""
"pji76w1\n"
"readmeitem.text"
msgid "When sending a document via 'File - Send - Document as E-mail' or 'Document as PDF Attachment' problems might occur (program crashes or hangs). This is due to the Windows system file \"Mapi\" (Messaging Application Programming Interface) which causes problems in some file versions. Unfortunately, the problem cannot be narrowed down to a certain version number. For more information visit <a href=\"https://www.microsoft.com\">https://www.microsoft.com</a> to search the Microsoft Knowledge Base for \"mapi dll\"."
-msgstr ""
+msgstr "Si possono verificare dei problemi (il programma va in crash o si blocca) inviando un documento da 'File - Invia - Documento come e-mail' o 'Documento come allegato PDF'. La causa è rintracciabile nel file di sistema di MS Windows \"Mapi\" (Messaging Application Programming Interface) che in alcune versioni non funziona correttamente; purtroppo è impossibile identificare con precisione quali siano queste versioni. Per ulteriori informazioni cerca \"mapi dll\" nella Microsoft Knowledge Base all'indirizzo <a href=\"https://www.microsoft.com\">https://www.microsoft.com</a>"
#: readme.xrm
msgctxt ""
@@ -662,7 +662,7 @@ msgctxt ""
"access7\n"
"readmeitem.text"
msgid "For more information on the accessibility features in ${PRODUCTNAME}, see <a href=\"https://www.libreoffice.org/accessibility/\">https://www.libreoffice.org/accessibility/</a>"
-msgstr ""
+msgstr "Per ulteriori informazioni sulle caratteristiche di accesso facilitato in ${PRODUCTNAME}, consulta <a href=\"https://it.libreoffice.org/supporto/accessibilita/\">https://it.libreoffice.org/supporto/accessibilita/</a>"
#: readme.xrm
msgctxt ""
@@ -678,7 +678,7 @@ msgctxt ""
"support1\n"
"readmeitem.text"
msgid "The <a href=\"https://www.libreoffice.org/get-help/community-support/\">main support page</a> offers various possibilities for help with ${PRODUCTNAME}. Your question may have already been answered - check the Community Forum at <a href=\"https://www.documentfoundation.org/nabble/\">https://www.documentfoundation.org/nabble/</a> or search the archives of the 'users@libreoffice.org' mailing list at <a href=\"https://www.libreoffice.org/lists/users/\">https://www.libreoffice.org/lists/users/</a>. Alternatively, you can send in your questions to <a href=\"mailto:users@libreoffice.org\">users@libreoffice.org</a>. If you like to subscribe to the list (to get email responses), send an empty mail to: <a href=\"mailto:users+subscribe@libreoffice.org\">users+subscribe@libreoffice.org</a>."
-msgstr ""
+msgstr "La <a href=\"https://it.libreoffice.org/supporto/\">pagina di supporto principale</a> offre varie soluzioni di assistenza per ${PRODUCTNAME}. Il tuo quesito potrebbe avere già ottenuto risposta: controlla il forum della comunità all'indirizzo <a href=\"http://www.documentfoundation.org/nabble/\">http://www.documentfoundation.org/nabble/</a> o ricerca negli archivi della mailing list 'users@it.libreoffice.org' in <a href=\"http://www.libreoffice.org/lists/users/\">http://www.libreoffice.org/lists/users/</a>. In alternativa, puoi inviare i tuoi quesiti a <a href=\"mailto:users@it.libreoffice.org\">users@libreoffice.org</a>. Se vuoi iscriverti alla lista (per ottenere risposte), invia un messaggio vuoto all'indirizzo: <a href=\"mailto:users+subscribe@it.libreoffice.org\">users+subscribe@it.libreoffice.org</a>."
#: readme.xrm
msgctxt ""
@@ -702,7 +702,7 @@ msgctxt ""
"reportbugs1\n"
"readmeitem.text"
msgid "Our system for reporting, tracking and solving bugs is currently Bugzilla, hosted at <a href=\"http://bugs.documentfoundation.org/\">http://bugs.documentfoundation.org/</a>. We encourage all users to feel entitled and welcome to report bugs that may arise on your particular platform. Energetic reporting of bugs is one of the most important contributions that the user community can make to the ongoing development and improvement of ${PRODUCTNAME}."
-msgstr ""
+msgstr "Attualmente il nostro sistema di segnalazione, tracciamento e risoluzione degli errori è Bugzilla, ospitato in <a href=\"http://bugs.documentfoundation.org/\">http://bugs.documentfoundation.org/</a>. Invitiamo tutti gli utenti a segnalare gli errori riscontrati nella loro piattaforma specifica. Un sistema di segnalazioni vivace è uno dei contributi più importanti che la comunità degli utenti può dare per lo sviluppo e il miglioramento futuro di ${PRODUCTNAME}."
#: readme.xrm
msgctxt ""
@@ -726,7 +726,7 @@ msgctxt ""
"gettingimvolved3\n"
"readmeitem.text"
msgid "As a user, you are already a valuable part of the suite's development process and we would like to encourage you to take an even more active role with a view to being a long-term contributor to the community. Please join and check out the contributing page at <a href=\"https://www.libreoffice.org/community/get-involved/\">the LibreOffice website</a>."
-msgstr ""
+msgstr "In quanto utente, sei già una parte importante del processo di sviluppo della suite, ma desidereremmo avessi un ruolo ancora più attivo, con l'obiettivo di diventare contributore a lungo termine della comunità. Puoi contattarci e unirti a noi alla pagina dei contributi <a href=\"https://it.libreoffice.org/comunita/partecipa/\">del sito web di LibreOffice</a>."
#: readme.xrm
msgctxt ""
@@ -742,7 +742,7 @@ msgctxt ""
"howtostart1\n"
"readmeitem.text"
msgid "The best way to start contributing is to subscribe to one or more of the mailing lists, lurk for a while, and gradually use the mail archives to familiarize yourself with many of the topics covered since the ${PRODUCTNAME} source code was released back in October 2000. When you're comfortable, all you need to do is send an email self-introduction and jump right in. If you are familiar with Open Source Projects, check out our To-Dos list and see if there is anything you would like to help with at <a href=\"https://www.libreoffice.org/community/developers/\">the LibreOffice website</a>."
-msgstr ""
+msgstr "Il modo migliore per iniziare a contribuire al progetto è iscriversi a una o più mailing list, seguire per un po' le discussioni e iniziare a leggere gli archivi per prendere confidenza con i numerosi argomenti trattati dalla prima uscita di ${PRODUCTNAME} nel lontano ottobre 2000. Quando sarai pronti, non ti resta altro da fare che mandare un messaggio di presentazione e buttarti nella mischia! Se hai già collaborato ad altri progetti open source, controlla la lista delle cose da fare (To-Do) e scopri se c'è qualcosa che fa per te <a href=\"https://it.libreoffice.org/comunita/sviluppo/\">sito web di LibreOffice</a>."
#: readme.xrm
msgctxt ""
@@ -758,7 +758,7 @@ msgctxt ""
"subscribe1\n"
"readmeitem.text"
msgid "Here are a few of the mailing lists to which you can subscribe at <a href=\"https://www.libreoffice.org/get-help/mailing-lists/\">https://www.libreoffice.org/get-help/mailing-lists/</a>"
-msgstr ""
+msgstr "Ecco alcune liste di distribuzione a cui ti puoi iscrivere alla pagina <a href=\"https://it.libreoffice.org/supporto/mailing-list/\">https://it.libreoffice.org/supporto/mailing-list/</a>"
#: readme.xrm
msgctxt ""
diff --git a/source/it/reportdesign/messages.po b/source/it/reportdesign/messages.po
index 21c1bf28fa6..b26e106f8b4 100644
--- a/source/it/reportdesign/messages.po
+++ b/source/it/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: 2018-05-22 13:17+0200\n"
-"PO-Revision-Date: 2017-10-07 17:41+0000\n"
+"PO-Revision-Date: 2018-05-27 10:16+0000\n"
"Last-Translator: Valter Mura <valtermura@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: it\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1507398111.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1527416178.000000\n"
#: reportdesign/inc/stringarray.hrc:17
msgctxt "RID_STR_FORCENEWPAGE_CONST"
@@ -479,7 +479,7 @@ msgstr "Muovi gruppo/i"
#: reportdesign/inc/strings.hrc:93
msgctxt "RID_STR_UNDO_CONDITIONAL_FORMATTING"
msgid "Conditional Formatting"
-msgstr "Formattazione condizionata"
+msgstr "Formattazione condizionale"
#: reportdesign/inc/strings.hrc:94
msgctxt "RID_STR_UNDO_REMOVE_REPORTHEADERFOOTER"
@@ -911,7 +911,7 @@ msgstr "Allineamento"
#: reportdesign/uiconfig/dbreport/ui/condformatdialog.ui:10
msgctxt "condformatdialog|CondFormat"
msgid "Conditional Formatting"
-msgstr "Formattazione condizionata"
+msgstr "Formattazione condizionale"
#: reportdesign/uiconfig/dbreport/ui/conditionwin.ui:56
msgctxt "conditionwin|typeCombobox"
diff --git a/source/it/sc/messages.po b/source/it/sc/messages.po
index 05e975dbdf5..a87ae9d2c28 100644
--- a/source/it/sc/messages.po
+++ b/source/it/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: 2018-05-22 13:16+0200\n"
-"PO-Revision-Date: 2018-01-30 20:30+0000\n"
+"POT-Creation-Date: 2018-06-12 14:40+0200\n"
+"PO-Revision-Date: 2018-06-10 09:20+0000\n"
"Last-Translator: Valter Mura <valtermura@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: it\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1517344209.000000\n"
+"X-POOTLE-MTIME: 1528622451.000000\n"
#: sc/inc/compiler.hrc:27
msgctxt "RID_FUNCTION_CATEGORIES"
@@ -1870,16 +1870,21 @@ msgid "Nested arrays are not supported."
msgstr "I vettori incapsulati non sono supportati."
#: sc/inc/globstr.hrc:390
+msgctxt "STR_ERR_LONG_BAD_ARRAY_CONTENT"
+msgid "Unsupported inline array content."
+msgstr ""
+
+#: sc/inc/globstr.hrc:391
msgctxt "STR_UNDO_TEXTTOCOLUMNS"
msgid "Text to Columns"
msgstr "Testo in colonne"
-#: sc/inc/globstr.hrc:391
+#: sc/inc/globstr.hrc:392
msgctxt "STR_DOC_UPDATED"
msgid "Your spreadsheet has been updated with changes saved by other users."
msgstr "Il tuo foglio elettronico è stato aggiornato con modifiche eseguite da altri utenti."
-#: sc/inc/globstr.hrc:392
+#: sc/inc/globstr.hrc:393
msgctxt "STR_DOC_WILLBESAVED"
msgid ""
"The spreadsheet must be saved now to activate sharing mode.\n"
@@ -1890,7 +1895,7 @@ msgstr ""
"\n"
"Vuoi continuare?"
-#: sc/inc/globstr.hrc:393
+#: sc/inc/globstr.hrc:394
msgctxt "STR_DOC_WILLNOTBESAVED"
msgid ""
"Already resolved merge conflicts will be lost and your changes to the shared spreadsheet will not be saved.\n"
@@ -1901,7 +1906,7 @@ msgstr ""
"\n"
"Vuoi continuare?"
-#: sc/inc/globstr.hrc:394
+#: sc/inc/globstr.hrc:395
msgctxt "STR_DOC_DISABLESHARED"
msgid ""
"Disabling shared mode of a spreadsheet hinders all other users of the shared spreadsheet to merge back their work.\n"
@@ -1912,7 +1917,7 @@ msgstr ""
"\n"
"Vuoi continuare?"
-#: sc/inc/globstr.hrc:395
+#: sc/inc/globstr.hrc:396
msgctxt "STR_DOC_NOLONGERSHARED"
msgid ""
"This spreadsheet is no longer in shared mode.\n"
@@ -1923,7 +1928,7 @@ msgstr ""
"\n"
"Salva il foglio in un file separato e unisci manualmente le tue modifiche al foglio condiviso."
-#: sc/inc/globstr.hrc:396
+#: sc/inc/globstr.hrc:397
msgctxt "STR_FILE_LOCKED_TRY_LATER"
msgid ""
"The shared spreadsheet file is locked due to a merge in progress by user: '%1'\n"
@@ -1934,7 +1939,7 @@ msgstr ""
"\n"
"La modalità condivisa di un file bloccato non può essere disattivata. Ritenta più tardi."
-#: sc/inc/globstr.hrc:397
+#: sc/inc/globstr.hrc:398
msgctxt "STR_FILE_LOCKED_SAVE_LATER"
msgid ""
"The shared spreadsheet file is locked due to a merge in progress by user: '%1'\n"
@@ -1945,147 +1950,147 @@ msgstr ""
"\n"
"Ritenta il salvataggio delle tue modifiche più tardi."
-#: sc/inc/globstr.hrc:398
+#: sc/inc/globstr.hrc:399
msgctxt "STR_UNKNOWN_USER"
msgid "Unknown User"
msgstr "Utente sconosciuto"
-#: sc/inc/globstr.hrc:399
+#: sc/inc/globstr.hrc:400
msgctxt "STR_SHAPE_AUTOSHAPE"
msgid "AutoShape"
msgstr "Forme"
-#: sc/inc/globstr.hrc:400
+#: sc/inc/globstr.hrc:401
msgctxt "STR_SHAPE_RECTANGLE"
msgid "Rectangle"
msgstr "Rettangolo"
-#: sc/inc/globstr.hrc:401
+#: sc/inc/globstr.hrc:402
msgctxt "STR_SHAPE_LINE"
msgid "Line"
msgstr "Linea"
-#: sc/inc/globstr.hrc:402
+#: sc/inc/globstr.hrc:403
msgctxt "STR_SHAPE_OVAL"
msgid "Oval"
msgstr "Ovale"
-#: sc/inc/globstr.hrc:403
+#: sc/inc/globstr.hrc:404
msgctxt "STR_FORM_BUTTON"
msgid "Button"
msgstr "Pulsante"
-#: sc/inc/globstr.hrc:404
+#: sc/inc/globstr.hrc:405
msgctxt "STR_FORM_CHECKBOX"
msgid "Check Box"
msgstr "Casella di controllo"
-#: sc/inc/globstr.hrc:405
+#: sc/inc/globstr.hrc:406
msgctxt "STR_FORM_OPTIONBUTTON"
msgid "Option Button"
msgstr "Pulsante di scelta"
-#: sc/inc/globstr.hrc:406
+#: sc/inc/globstr.hrc:407
msgctxt "STR_FORM_LABEL"
msgid "Label"
msgstr "Didascalia"
-#: sc/inc/globstr.hrc:407
+#: sc/inc/globstr.hrc:408
msgctxt "STR_FORM_LISTBOX"
msgid "List Box"
msgstr "Casella di riepilogo"
-#: sc/inc/globstr.hrc:408
+#: sc/inc/globstr.hrc:409
msgctxt "STR_FORM_GROUPBOX"
msgid "Group Box"
msgstr "Casella di gruppo"
-#: sc/inc/globstr.hrc:409
+#: sc/inc/globstr.hrc:410
msgctxt "STR_FORM_DROPDOWN"
msgid "Drop Down"
msgstr "A tendina"
-#: sc/inc/globstr.hrc:410
+#: sc/inc/globstr.hrc:411
msgctxt "STR_FORM_SPINNER"
msgid "Spinner"
msgstr "Spinner"
-#: sc/inc/globstr.hrc:411
+#: sc/inc/globstr.hrc:412
msgctxt "STR_FORM_SCROLLBAR"
msgid "Scroll Bar"
msgstr "Barra di scorrimento"
-#: sc/inc/globstr.hrc:412
+#: sc/inc/globstr.hrc:413
msgctxt "STR_STYLE_FAMILY_CELL"
msgid "Cell Styles"
msgstr "Stili di cella"
-#: sc/inc/globstr.hrc:413
+#: sc/inc/globstr.hrc:414
msgctxt "STR_STYLE_FAMILY_PAGE"
msgid "Page Styles"
msgstr "Stili di pagina"
-#: sc/inc/globstr.hrc:414
+#: sc/inc/globstr.hrc:415
msgctxt "STR_ERR_DATAPILOTSOURCE"
msgid "Pivot table source data is invalid."
msgstr "I dati di origine della tabella pivot non sono validi."
-#: sc/inc/globstr.hrc:415
+#: sc/inc/globstr.hrc:416
msgctxt "STR_OPTIONS_WARN_SEPARATORS"
msgid "Because the current formula separator settings conflict with the locale, the formula separators have been reset to their default values."
msgstr "Dato che le impostazioni correnti del separatore di formula sono in conflitto con la localizzazione, i separatori di formula sono stati reimpostati ai loro valori predefiniti."
-#: sc/inc/globstr.hrc:416
+#: sc/inc/globstr.hrc:417
msgctxt "STR_UNDO_INSERT_CURRENT_DATE"
msgid "Insert Current Date"
msgstr "Inserisci data corrente"
-#: sc/inc/globstr.hrc:417
+#: sc/inc/globstr.hrc:418
msgctxt "STR_UNDO_INSERT_CURRENT_TIME"
msgid "Insert Current Time"
msgstr "Inserisci ora corrente"
-#: sc/inc/globstr.hrc:418
+#: sc/inc/globstr.hrc:419
msgctxt "STR_MANAGE_NAMES"
msgid "Manage Names..."
msgstr "Gestisci nomi..."
-#: sc/inc/globstr.hrc:419
+#: sc/inc/globstr.hrc:420
msgctxt "STR_HEADER_NAME"
msgid "Name"
msgstr "Nome"
-#: sc/inc/globstr.hrc:420
+#: sc/inc/globstr.hrc:421
msgctxt "STR_HEADER_RANGE_OR_EXPR"
msgid "Range or formula expression"
msgstr "Espressione dell'intervallo o della formula"
-#: sc/inc/globstr.hrc:421
+#: sc/inc/globstr.hrc:422
msgctxt "STR_HEADER_SCOPE"
msgid "Scope"
msgstr "Ambito"
-#: sc/inc/globstr.hrc:422
+#: sc/inc/globstr.hrc:423
msgctxt "STR_MULTI_SELECT"
msgid "(multiple)"
msgstr "(multipla)"
-#: sc/inc/globstr.hrc:423
+#: sc/inc/globstr.hrc:424
msgctxt "STR_GLOBAL_SCOPE"
msgid "Document (Global)"
msgstr "Documento (globale)"
-#: sc/inc/globstr.hrc:424
+#: sc/inc/globstr.hrc:425
msgctxt "STR_ERR_NAME_EXISTS"
msgid "Invalid name. Already in use for the selected scope."
msgstr "Nome non valido. Già in uso nell'ambito selezionato."
-#: sc/inc/globstr.hrc:425
+#: sc/inc/globstr.hrc:426
msgctxt "STR_ERR_NAME_INVALID"
msgid "Invalid name. Only use letters, numbers and underscore."
msgstr "Nome non valido. Usa solo lettere, numeri, e trattini bassi."
-#: sc/inc/globstr.hrc:426
+#: sc/inc/globstr.hrc:427
msgctxt "STR_UNSAVED_EXT_REF"
msgid ""
"This Document contains external references to unsaved documents.\n"
@@ -2096,217 +2101,217 @@ msgstr ""
"\n"
"Continuare?"
-#: sc/inc/globstr.hrc:427
+#: sc/inc/globstr.hrc:428
msgctxt "STR_CLOSE_WITH_UNSAVED_REFS"
msgid "This Document is referenced by another document and not yet saved. Closing it without saving will result in data loss."
msgstr "Da questo documento dipendono riferimenti di un altro documento. Esso non è stato ancora salvato e la sua chiusura comporterà perdita di dati."
-#: sc/inc/globstr.hrc:428
+#: sc/inc/globstr.hrc:429
msgctxt "STR_HEADER_RANGE"
msgid "Range"
msgstr "Area"
-#: sc/inc/globstr.hrc:429
+#: sc/inc/globstr.hrc:430
msgctxt "STR_HEADER_COND"
msgid "First Condition"
msgstr "Prima condizione"
-#: sc/inc/globstr.hrc:430
+#: sc/inc/globstr.hrc:431
msgctxt "STR_COND_CONDITION"
msgid "Cell value is"
msgstr "Il valore della cella è"
-#: sc/inc/globstr.hrc:431
+#: sc/inc/globstr.hrc:432
msgctxt "STR_COND_COLORSCALE"
msgid "ColorScale"
msgstr "Gradiente"
-#: sc/inc/globstr.hrc:432
+#: sc/inc/globstr.hrc:433
msgctxt "STR_COND_DATABAR"
msgid "DataBar"
msgstr "BarraDati"
-#: sc/inc/globstr.hrc:433
+#: sc/inc/globstr.hrc:434
msgctxt "STR_COND_ICONSET"
msgid "IconSet"
msgstr "Icone"
-#: sc/inc/globstr.hrc:434
+#: sc/inc/globstr.hrc:435
msgctxt "STR_COND_BETWEEN"
msgid "between"
msgstr "tra"
-#: sc/inc/globstr.hrc:435
+#: sc/inc/globstr.hrc:436
msgctxt "STR_COND_NOTBETWEEN"
msgid "not between"
msgstr "non tra"
-#: sc/inc/globstr.hrc:436
+#: sc/inc/globstr.hrc:437
msgctxt "STR_COND_UNIQUE"
msgid "unique"
msgstr "unico"
-#: sc/inc/globstr.hrc:437
+#: sc/inc/globstr.hrc:438
msgctxt "STR_COND_DUPLICATE"
msgid "duplicate"
msgstr "duplicato"
-#: sc/inc/globstr.hrc:438
+#: sc/inc/globstr.hrc:439
msgctxt "STR_COND_FORMULA"
msgid "Formula is"
msgstr "La formula è"
-#: sc/inc/globstr.hrc:439
+#: sc/inc/globstr.hrc:440
msgctxt "STR_COND_TOP10"
msgid "Top Elements"
msgstr "Valori più alti"
-#: sc/inc/globstr.hrc:440
+#: sc/inc/globstr.hrc:441
msgctxt "STR_COND_BOTTOM10"
msgid "Bottom Elements"
msgstr "Valori più bassi"
-#: sc/inc/globstr.hrc:441
+#: sc/inc/globstr.hrc:442
msgctxt "STR_COND_TOP_PERCENT"
msgid "Top Percent"
msgstr "Percentuale più alta"
-#: sc/inc/globstr.hrc:442
+#: sc/inc/globstr.hrc:443
msgctxt "STR_COND_DATE"
msgid "Date is"
msgstr "La data è"
-#: sc/inc/globstr.hrc:443
+#: sc/inc/globstr.hrc:444
msgctxt "STR_COND_BOTTOM_PERCENT"
msgid "Bottom Percent"
msgstr "Percentuale più bassa"
-#: sc/inc/globstr.hrc:444
+#: sc/inc/globstr.hrc:445
msgctxt "STR_COND_ABOVE_AVERAGE"
msgid "Above Average"
msgstr "Sopra la media"
-#: sc/inc/globstr.hrc:445
+#: sc/inc/globstr.hrc:446
msgctxt "STR_COND_BELOW_AVERAGE"
msgid "Below Average"
msgstr "Sotto la media"
-#: sc/inc/globstr.hrc:446
+#: sc/inc/globstr.hrc:447
msgctxt "STR_COND_ABOVE_EQUAL_AVERAGE"
msgid "Above or equal Average"
msgstr "Sopra o uguale alla media"
-#: sc/inc/globstr.hrc:447
+#: sc/inc/globstr.hrc:448
msgctxt "STR_COND_BELOW_EQUAL_AVERAGE"
msgid "Below or equal Average"
msgstr "Sotto o uguale alla media"
-#: sc/inc/globstr.hrc:448
+#: sc/inc/globstr.hrc:449
msgctxt "STR_COND_ERROR"
msgid "an Error code"
msgstr "un Codice di errore"
-#: sc/inc/globstr.hrc:449
+#: sc/inc/globstr.hrc:450
msgctxt "STR_COND_NOERROR"
msgid "not an Error code"
msgstr "non un Codice di errore"
-#: sc/inc/globstr.hrc:450
+#: sc/inc/globstr.hrc:451
msgctxt "STR_COND_BEGINS_WITH"
msgid "Begins with"
msgstr "Inizia con"
-#: sc/inc/globstr.hrc:451
+#: sc/inc/globstr.hrc:452
msgctxt "STR_COND_ENDS_WITH"
msgid "Ends with"
msgstr "Termina con"
-#: sc/inc/globstr.hrc:452
+#: sc/inc/globstr.hrc:453
msgctxt "STR_COND_CONTAINS"
msgid "Contains"
msgstr "Contiene"
-#: sc/inc/globstr.hrc:453
+#: sc/inc/globstr.hrc:454
msgctxt "STR_COND_NOT_CONTAINS"
msgid "Not Contains"
msgstr "Non contiene"
-#: sc/inc/globstr.hrc:454
+#: sc/inc/globstr.hrc:455
msgctxt "STR_COND_TODAY"
msgid "today"
msgstr "oggi"
-#: sc/inc/globstr.hrc:455
+#: sc/inc/globstr.hrc:456
msgctxt "STR_COND_YESTERDAY"
msgid "yesterday"
msgstr "ieri"
-#: sc/inc/globstr.hrc:456
+#: sc/inc/globstr.hrc:457
msgctxt "STR_COND_TOMORROW"
msgid "tomorrow"
msgstr "domani"
-#: sc/inc/globstr.hrc:457
+#: sc/inc/globstr.hrc:458
msgctxt "STR_COND_LAST7DAYS"
msgid "in the last 7 days"
msgstr "negli ultimi 7 giorni"
-#: sc/inc/globstr.hrc:458
+#: sc/inc/globstr.hrc:459
msgctxt "STR_COND_THISWEEK"
msgid "this week"
msgstr "questa settimana"
-#: sc/inc/globstr.hrc:459
+#: sc/inc/globstr.hrc:460
msgctxt "STR_COND_LASTWEEK"
msgid "last week"
msgstr "ultima settimana"
-#: sc/inc/globstr.hrc:460
+#: sc/inc/globstr.hrc:461
msgctxt "STR_COND_NEXTWEEK"
msgid "next week"
msgstr "prossima settimana"
-#: sc/inc/globstr.hrc:461
+#: sc/inc/globstr.hrc:462
msgctxt "STR_COND_THISMONTH"
msgid "this month"
msgstr "questo mese"
-#: sc/inc/globstr.hrc:462
+#: sc/inc/globstr.hrc:463
msgctxt "STR_COND_LASTMONTH"
msgid "last month"
msgstr "ultimo mese"
-#: sc/inc/globstr.hrc:463
+#: sc/inc/globstr.hrc:464
msgctxt "STR_COND_NEXTMONTH"
msgid "next month"
msgstr "prossimo mese"
-#: sc/inc/globstr.hrc:464
+#: sc/inc/globstr.hrc:465
msgctxt "STR_COND_THISYEAR"
msgid "this year"
msgstr "quest'anno"
-#: sc/inc/globstr.hrc:465
+#: sc/inc/globstr.hrc:466
msgctxt "STR_COND_LASTYEAR"
msgid "last year"
msgstr "ultimo anno"
-#: sc/inc/globstr.hrc:466
+#: sc/inc/globstr.hrc:467
msgctxt "STR_COND_NEXTYEAR"
msgid "next year"
msgstr "prossimo anno"
-#: sc/inc/globstr.hrc:467
+#: sc/inc/globstr.hrc:468
msgctxt "STR_COND_AND"
msgid "and"
msgstr "e"
-#: sc/inc/globstr.hrc:468
+#: sc/inc/globstr.hrc:469
msgctxt "STR_ERR_CONDFORMAT_PROTECTED"
msgid "Conditional Formats can not be created, deleted or changed in protected sheets."
-msgstr ""
+msgstr "Non è possibile aggiungere, cancellare o modificare la formattazione condizionale nei fogli protetti."
-#: sc/inc/globstr.hrc:469
+#: sc/inc/globstr.hrc:470
msgctxt "STR_EDIT_EXISTING_COND_FORMATS"
msgid ""
"The selected cell already contains conditional formatting. You can either edit the existing conditional format or you define a new overlapping conditional format.\n"
@@ -2317,7 +2322,7 @@ msgstr ""
"\n"
" Vuoi modificare la formattazione condizionale esistente?"
-#: sc/inc/globstr.hrc:470
+#: sc/inc/globstr.hrc:471
msgctxt "STR_QUERY_FORMULA_RECALC_ONLOAD_ODS"
msgid ""
"This document was last saved by an application other than %PRODUCTNAME. Some formula cells may produce different results when recalculated.\n"
@@ -2328,7 +2333,7 @@ msgstr ""
"\n"
"Vuoi ricalcolare ora tutte le celle che contengono formule in questo documento?"
-#: sc/inc/globstr.hrc:471
+#: sc/inc/globstr.hrc:472
msgctxt "STR_QUERY_FORMULA_RECALC_ONLOAD_XLS"
msgid ""
"This document was last saved by Excel. Some formula cells may produce different results when recalculated.\n"
@@ -2339,77 +2344,77 @@ msgstr ""
"\n"
"Vuoi ricalcolare ora tutte le celle con formule in questo documento?"
-#: sc/inc/globstr.hrc:472
+#: sc/inc/globstr.hrc:473
msgctxt "STR_NO_INSERT_DELETE_OVER_PIVOT_TABLE"
msgid "You cannot insert or delete cells when the affected range intersects with pivot table."
msgstr "Non puoi inserire o eliminare celle quando l'intervallo relativo si interseca con una tabella pivot."
-#: sc/inc/globstr.hrc:473
+#: sc/inc/globstr.hrc:474
msgctxt "STR_DPFIELD_GROUP_BY_SECONDS"
msgid "Seconds"
msgstr "Secondi"
-#: sc/inc/globstr.hrc:474
+#: sc/inc/globstr.hrc:475
msgctxt "STR_DPFIELD_GROUP_BY_MINUTES"
msgid "Minutes"
msgstr "minuti"
-#: sc/inc/globstr.hrc:475
+#: sc/inc/globstr.hrc:476
msgctxt "STR_DPFIELD_GROUP_BY_HOURS"
msgid "Hours"
msgstr "Ore"
-#: sc/inc/globstr.hrc:476
+#: sc/inc/globstr.hrc:477
msgctxt "STR_DPFIELD_GROUP_BY_DAYS"
msgid "Days"
msgstr "Giorni"
-#: sc/inc/globstr.hrc:477
+#: sc/inc/globstr.hrc:478
msgctxt "STR_DPFIELD_GROUP_BY_MONTHS"
msgid "Months"
msgstr "Mesi"
-#: sc/inc/globstr.hrc:478
+#: sc/inc/globstr.hrc:479
msgctxt "STR_DPFIELD_GROUP_BY_QUARTERS"
msgid "Quarters"
msgstr "Trimestri"
-#: sc/inc/globstr.hrc:479
+#: sc/inc/globstr.hrc:480
msgctxt "STR_DPFIELD_GROUP_BY_YEARS"
msgid "Years"
msgstr "Anni"
-#: sc/inc/globstr.hrc:480
+#: sc/inc/globstr.hrc:481
msgctxt "STR_INVALIDVAL"
msgid "Invalid target value."
msgstr "Valore di destinazione non valido."
-#: sc/inc/globstr.hrc:481
+#: sc/inc/globstr.hrc:482
msgctxt "STR_INVALIDVAR"
msgid "Undefined name for variable cell."
msgstr "Nome non definito per la cella-variabile."
-#: sc/inc/globstr.hrc:482
+#: sc/inc/globstr.hrc:483
msgctxt "STR_INVALIDFORM"
msgid "Undefined name as formula cell."
msgstr "Nome non definito per la cella di formula."
-#: sc/inc/globstr.hrc:483
+#: sc/inc/globstr.hrc:484
msgctxt "STR_NOFORMULA"
msgid "Formula cell must contain a formula."
msgstr "La cella della formula deve contenere una formula."
-#: sc/inc/globstr.hrc:484
+#: sc/inc/globstr.hrc:485
msgctxt "STR_INVALIDINPUT"
msgid "Invalid input."
msgstr "Immissione non valida."
-#: sc/inc/globstr.hrc:485
+#: sc/inc/globstr.hrc:486
msgctxt "STR_INVALIDCONDITION"
msgid "Invalid condition."
msgstr "Condizione non valida."
-#: sc/inc/globstr.hrc:486
+#: sc/inc/globstr.hrc:487
msgctxt "STR_QUERYREMOVE"
msgid ""
"Should the entry\n"
@@ -2420,133 +2425,133 @@ msgstr ""
"#\n"
"dall'elenco?"
-#: sc/inc/globstr.hrc:487
+#: sc/inc/globstr.hrc:488
msgctxt "STR_COPYLIST"
msgid "Copy List"
msgstr "Copia elenco"
-#: sc/inc/globstr.hrc:488
+#: sc/inc/globstr.hrc:489
msgctxt "STR_COPYFROM"
msgid "List from"
msgstr "Elenco da"
-#: sc/inc/globstr.hrc:489
+#: sc/inc/globstr.hrc:490
msgctxt "STR_COPYERR"
msgid "Cells without text have been ignored."
msgstr "Le celle senza testo sono state ignorate."
-#: sc/inc/globstr.hrc:490
+#: sc/inc/globstr.hrc:491
#, c-format
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%s-click to follow hyperlink:"
msgstr "%s-clic per seguire il collegamento ipertestuale:"
-#: sc/inc/globstr.hrc:491
+#: sc/inc/globstr.hrc:492
msgctxt "STR_CLICKHYPERLINK"
msgid "click to open hyperlink:"
msgstr "Clic per aprire il collegamento ipertestuale:"
-#: sc/inc/globstr.hrc:492
+#: sc/inc/globstr.hrc:493
msgctxt "STR_PRINT_PREVIEW_NODATA"
msgid "No Data"
msgstr "Nessun dato"
-#: sc/inc/globstr.hrc:493
+#: sc/inc/globstr.hrc:494
msgctxt "STR_PRINT_PREVIEW_EMPTY_RANGE"
msgid "Print Range Empty"
msgstr "Area di stampa vuota"
-#: sc/inc/globstr.hrc:494
+#: sc/inc/globstr.hrc:495
msgctxt "STR_UNDO_CONDFORMAT"
msgid "Conditional Format"
msgstr "Formato condizionale"
-#: sc/inc/globstr.hrc:495
+#: sc/inc/globstr.hrc:496
msgctxt "STR_UNDO_CONDFORMAT_LIST"
msgid "Conditional Formats"
msgstr "Formati condizionali"
-#: sc/inc/globstr.hrc:496
+#: sc/inc/globstr.hrc:497
msgctxt "STR_UNDO_FORMULA_TO_VALUE"
msgid "Convert Formula To Value"
msgstr "Converti formula in valore"
-#: sc/inc/globstr.hrc:497
+#: sc/inc/globstr.hrc:498
msgctxt "STR_UNQUOTED_STRING"
msgid "Strings without quotes are interpreted as column/row labels."
msgstr "Le stringhe senza virgolette sono interpretate come etichette di colonna/riga."
-#: sc/inc/globstr.hrc:498
+#: sc/inc/globstr.hrc:499
msgctxt "STR_ENTER_VALUE"
msgid "Enter a value!"
msgstr "Inserisci un valore."
-#: sc/inc/globstr.hrc:499
+#: sc/inc/globstr.hrc:500
msgctxt "STR_TABLE_COUNT"
msgid "Sheet %1 of %2"
msgstr "Foglio %1 di %2"
-#: sc/inc/globstr.hrc:500
+#: sc/inc/globstr.hrc:501
msgctxt "STR_FUNCTIONS_FOUND"
msgid "%1 and %2 more"
msgstr "%1 e altri %2"
-#: sc/inc/globstr.hrc:501
+#: sc/inc/globstr.hrc:502
msgctxt "STR_GENERAL"
msgid "General"
msgstr "Generale"
-#: sc/inc/globstr.hrc:502
+#: sc/inc/globstr.hrc:503
msgctxt "STR_NUMBER"
msgid "Number"
msgstr "Numero"
-#: sc/inc/globstr.hrc:503
+#: sc/inc/globstr.hrc:504
msgctxt "STR_PERCENT"
msgid "Percent"
msgstr "Percentuale"
-#: sc/inc/globstr.hrc:504
+#: sc/inc/globstr.hrc:505
msgctxt "STR_CURRENCY"
msgid "Currency"
msgstr "Valuta"
-#: sc/inc/globstr.hrc:505
+#: sc/inc/globstr.hrc:506
msgctxt "STR_DATE"
msgid "Date"
msgstr "Data"
-#: sc/inc/globstr.hrc:506
+#: sc/inc/globstr.hrc:507
msgctxt "STR_TIME"
msgid "Time"
msgstr "Orario"
-#: sc/inc/globstr.hrc:507
+#: sc/inc/globstr.hrc:508
msgctxt "STR_SCIENTIFIC"
msgid "Scientific"
msgstr "Scientifico"
-#: sc/inc/globstr.hrc:508
+#: sc/inc/globstr.hrc:509
msgctxt "STR_FRACTION"
msgid "Fraction"
msgstr "Frazione"
-#: sc/inc/globstr.hrc:509
+#: sc/inc/globstr.hrc:510
msgctxt "STR_BOOLEAN_VALUE"
msgid "Boolean Value"
msgstr "Valore booleano"
-#: sc/inc/globstr.hrc:510
+#: sc/inc/globstr.hrc:511
msgctxt "STR_TEXT"
msgid "Text"
msgstr "Testo"
-#: sc/inc/globstr.hrc:511
+#: sc/inc/globstr.hrc:512
msgctxt "STR_QUERY_PIVOTTABLE_DELTAB"
msgid "The selected sheet(s) contain source data of related pivot tables that will be lost. Are you sure you want to delete the selected sheet(s)?"
msgstr "I fogli selezionati contengono i dati di origine delle relative tabelle pivot, che andranno persi. Vuoi davvero eliminare i fogli selezionati?"
-#: sc/inc/globstr.hrc:512
+#: sc/inc/globstr.hrc:513
msgctxt "STR_ERR_NAME_INVALID_CELL_REF"
msgid "Invalid name. Reference to a cell, or a range of cells not allowed."
msgstr "Nome non valido. Il riferimento a una cella, o a un intervallo di celle, non è consentito."
@@ -10488,8 +10493,8 @@ msgstr "Modo"
#: sc/inc/scfuncs.hrc:3010
msgctxt "SC_OPCODE_T_TEST"
-msgid "Mode specifies the number of distribution tails to return. 1= one-tailed, 2 = two-tailed distribution"
-msgstr "Il modo specifica il numero di distribuzione di code da restituire. 1 = distribuzione a una coda, 2 = distribuzione a due code"
+msgid "Mode specifies the number of distribution tails to return. 1 = one-tailed, 2 = two-tailed distribution"
+msgstr ""
#: sc/inc/scfuncs.hrc:3011
msgctxt "SC_OPCODE_T_TEST"
@@ -10533,8 +10538,8 @@ msgstr "Modo"
#: sc/inc/scfuncs.hrc:3024
msgctxt "SC_OPCODE_T_TEST_MS"
-msgid "Mode specifies the number of distribution tails to return. 1= one-tailed, 2 = two-tailed distribution"
-msgstr "Il modo specifica il numero di distribuzione di code da restituire. 1 = distribuzione a una coda, 2 = distribuzione a due code"
+msgid "Mode specifies the number of distribution tails to return. 1 = one-tailed, 2 = two-tailed distribution"
+msgstr ""
#: sc/inc/scfuncs.hrc:3025
msgctxt "SC_OPCODE_T_TEST_MS"
@@ -12101,7 +12106,7 @@ msgstr "Stringa di testo da usare come delimitatore."
#: sc/inc/scfuncs.hrc:3587
msgctxt "SC_OPCODE_TEXTJOIN_MS"
msgid "Skip empty cells"
-msgstr "Salta righe vuote"
+msgstr "Salta celle vuote"
#: sc/inc/scfuncs.hrc:3588
msgctxt "SC_OPCODE_TEXTJOIN_MS"
@@ -13630,7 +13635,7 @@ msgstr "Inserisci immagine"
#: sc/inc/strings.hrc:51
msgctxt "STR_QUERYROTATION"
msgid "This image is rotated. Would you like to rotate it into standard orientation?"
-msgstr ""
+msgstr "Questa immagine è ruotata. Vuoi riportarla alla posizione originale?"
#: sc/inc/strings.hrc:52
msgctxt "SCSTR_TOTAL"
@@ -14942,7 +14947,7 @@ msgstr ""
#: sc/inc/strings.hrc:336
msgctxt "STR_ANCHOR_TO_PAGE"
msgid "To page"
-msgstr ""
+msgstr "Alla pagina"
#: sc/inc/units.hrc:27
msgctxt "SCSTR_UNIT"
@@ -15298,7 +15303,7 @@ msgstr ""
#: sc/uiconfig/scalc/ui/checkwarningdialog.ui:76
msgctxt "checkwarningdialog|ask"
msgid "Warn me about this in the future."
-msgstr ""
+msgstr "Avvisami di questo in futuro."
#: sc/uiconfig/scalc/ui/chisquaretestdialog.ui:9
msgctxt "chisquaretestdialog|ChiSquareTestDialog"
@@ -15373,7 +15378,7 @@ msgstr "Valore _predefinito"
#: sc/uiconfig/scalc/ui/condformatmanager.ui:8
msgctxt "condformatmanager|CondFormatManager"
msgid "Manage Conditional Formatting"
-msgstr "Gestisci formattazione condizionata"
+msgstr "Gestisci formattazione condizionale"
#: sc/uiconfig/scalc/ui/condformatmanager.ui:62
msgctxt "condformatmanager|add"
@@ -15393,7 +15398,7 @@ msgstr "Rimuovi"
#: sc/uiconfig/scalc/ui/condformatmanager.ui:117
msgctxt "condformatmanager|label1"
msgid "Conditional Formats"
-msgstr "Formati condizionati"
+msgstr "Formati condizionali"
#: sc/uiconfig/scalc/ui/conditionalentry.ui:58
msgctxt "conditionalentry|type"
@@ -15863,7 +15868,7 @@ msgstr "5 riquadri"
#: sc/uiconfig/scalc/ui/conditionalformatdialog.ui:8
msgctxt "conditionalformatdialog|ConditionalFormatDialog"
msgid "Conditional Formatting for"
-msgstr "Formattazione condizionata per"
+msgstr "Formattazione condizionale per"
#: sc/uiconfig/scalc/ui/conditionalformatdialog.ui:128
msgctxt "conditionalformatdialog|label1"
@@ -18020,22 +18025,22 @@ msgctxt "mergecellsdialog|MergeCellsDialog"
msgid "Merge Cells"
msgstr "Unisci celle"
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:81
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:84
msgctxt "mergecellsdialog|label"
msgid "Some cells are not empty."
msgstr "Alcune celle non sono vuote."
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:96
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:99
msgctxt "mergecellsdialog|move-cells-radio"
msgid "Move the contents of the hidden cells into the first cell"
msgstr "Sposta il contenuto delle celle nascoste nella prima cella"
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:112
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:115
msgctxt "mergecellsdialog|empty-cells-radio"
msgid "Empty the contents of the hidden cells"
msgstr "Svuota il contenuto delle celle nascoste"
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:128
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:131
msgctxt "mergecellsdialog|keep-content-radio"
msgid "Keep the contents of the hidden cells"
msgstr "Mantieni il contenuto delle celle nascoste"
@@ -18048,12 +18053,12 @@ msgstr ""
#: sc/uiconfig/scalc/ui/mergecolumnentry.ui:37
msgctxt "mergecolumnentry|separator"
msgid "Separator:"
-msgstr ""
+msgstr "Separatore:"
#: sc/uiconfig/scalc/ui/mergecolumnentry.ui:58
msgctxt "mergecolumnentry|columns"
msgid "Columns:"
-msgstr ""
+msgstr "Colonne:"
#: sc/uiconfig/scalc/ui/movecopysheet.ui:16
msgctxt "movecopysheet|MoveCopySheetDialog"
@@ -18303,12 +18308,12 @@ msgstr ""
#: sc/uiconfig/scalc/ui/notebookbar.ui:1952
msgctxt "notebookbar|FileLabel"
msgid "_File"
-msgstr ""
+msgstr "_File"
#: sc/uiconfig/scalc/ui/notebookbar.ui:1971
msgctxt "notebookbar|HelpMenuButton"
msgid "_Help"
-msgstr ""
+msgstr "A_iuto"
#: sc/uiconfig/scalc/ui/notebookbar.ui:2769
msgctxt "notebookbar|FileLabel"
@@ -18349,7 +18354,7 @@ msgstr ""
#: sc/uiconfig/scalc/ui/notebookbar.ui:5496
msgctxt "notebookbar|InsertMenuButton"
msgid "_Insert"
-msgstr ""
+msgstr "_Inserisci"
#: sc/uiconfig/scalc/ui/notebookbar.ui:5581
msgctxt "notebookbar|InsertLabel"
@@ -18359,7 +18364,7 @@ msgstr "Inserisci"
#: sc/uiconfig/scalc/ui/notebookbar.ui:5610
msgctxt "notebookbar|reviewb"
msgid "Pag_e"
-msgstr ""
+msgstr "Pag_ina"
#: sc/uiconfig/scalc/ui/notebookbar.ui:6335
msgctxt "notebookbar|PageLayoutLabel"
@@ -18369,12 +18374,12 @@ msgstr ""
#: sc/uiconfig/scalc/ui/notebookbar.ui:7236
msgctxt "notebookbar|Statistics"
msgid "_Statistics"
-msgstr ""
+msgstr "_Statistiche"
#: sc/uiconfig/scalc/ui/notebookbar.ui:7304
msgctxt "notebookbar|DataMenuButton"
msgid "_Data"
-msgstr ""
+msgstr "_Dati"
#: sc/uiconfig/scalc/ui/notebookbar.ui:7412
msgctxt "notebookbar|DataLabel"
@@ -18394,7 +18399,7 @@ msgstr "Revisione"
#: sc/uiconfig/scalc/ui/notebookbar.ui:8896
msgctxt "notebookbar|ViewMenuButton"
msgid "_View"
-msgstr ""
+msgstr "_Visualizza"
#: sc/uiconfig/scalc/ui/notebookbar.ui:8981
msgctxt "notebookbar|ViewLabel"
@@ -18404,7 +18409,7 @@ msgstr "Vista"
#: sc/uiconfig/scalc/ui/notebookbar.ui:9008
msgctxt "notebookbar|GraphicMenuButton"
msgid "_Graphic"
-msgstr ""
+msgstr "Imma_gine"
#: sc/uiconfig/scalc/ui/notebookbar.ui:9949
msgctxt "notebookbar|ImageLabel"
@@ -18424,22 +18429,22 @@ msgstr ""
#: sc/uiconfig/scalc/ui/notebookbar.ui:11993
msgctxt "notebookbar|frame:MenuDraw"
msgid "Object"
-msgstr ""
+msgstr "Oggetto"
#: sc/uiconfig/scalc/ui/notebookbar.ui:12082
msgctxt "notebookbar|FrameLabel"
msgid "Object"
-msgstr ""
+msgstr "Oggetto"
#: sc/uiconfig/scalc/ui/notebookbar.ui:12113
msgctxt "notebookbar|ToolsMenuButton"
msgid "_Tools"
-msgstr ""
+msgstr "S_trumenti"
#: sc/uiconfig/scalc/ui/notebookbar.ui:13250
msgctxt "notebookbar|DevLabel"
msgid "Tools"
-msgstr ""
+msgstr "Strumenti"
#: sc/uiconfig/scalc/ui/notebookbar_groupedbar_compact.ui:2945
msgctxt "notebookbar_groupedbar_compact|Menu"
@@ -20379,7 +20384,7 @@ msgstr "Opzioni"
#: sc/uiconfig/scalc/ui/recalcquerydialog.ui:30
msgctxt "recalcquerydialog|ask"
msgid "Always perform this without prompt in the future."
-msgstr ""
+msgstr "Esegui sempre quest'operazione senza richiedere conferma in futuro."
#: sc/uiconfig/scalc/ui/regressiondialog.ui:9
msgctxt "regressiondialog|RegressionDialog"
@@ -20944,12 +20949,12 @@ msgstr ""
#: sc/uiconfig/scalc/ui/sharedwarningdialog.ui:13
msgctxt "sharedwarningdialog|SharedWarningDialog"
msgid "Changes to formatting attributes like fonts, colors, and number formats will not be saved and some functionalities like editing charts and drawing objects are not available in shared mode. Turn off shared mode to get exclusive access needed for those changes and functionalities."
-msgstr ""
+msgstr "Le modifiche ad attributi di formattazione come caratteri, colori, e formato dei numeri non saranno salvate e alcune funzioni come modificare grafici e oggetti di disegno non sono disponibili in modalità condivisa. Per avere pieno accesso a tali modifiche e funzioni devi uscire dalla modalità condivisa."
#: sc/uiconfig/scalc/ui/sharedwarningdialog.ui:32
msgctxt "sharedwarningdialog|ask"
msgid "Do not show warning again."
-msgstr ""
+msgstr "Non mostrare più questo avviso."
#: sc/uiconfig/scalc/ui/sheetprintpage.ui:63
msgctxt "sheetprintpage|radioBTN_TOPDOWN"
diff --git a/source/it/scp2/source/ooo.po b/source/it/scp2/source/ooo.po
index 044efdda00e..9706bc0aa12 100644
--- a/source/it/scp2/source/ooo.po
+++ b/source/it/scp2/source/ooo.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: 2018-05-23 23:20+0200\n"
-"PO-Revision-Date: 2017-12-11 13:41+0000\n"
+"PO-Revision-Date: 2018-06-03 10:46+0000\n"
"Last-Translator: Valter Mura <valtermura@gmail.com>\n"
"Language-Team: Italian <l10n@it.libreoffice.org>\n"
"Language: it\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1512999680.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1528022793.000000\n"
#: folderitem_ooo.ulf
msgctxt ""
@@ -1886,7 +1886,7 @@ msgctxt ""
"STR_NAME_MODULE_LANGPACK_FY\n"
"LngText.text"
msgid "Frisian"
-msgstr ""
+msgstr "Frisone"
#: module_langpack.ulf
msgctxt ""
@@ -1894,7 +1894,7 @@ msgctxt ""
"STR_DESC_MODULE_LANGPACK_FY\n"
"LngText.text"
msgid "Installs the Frisian user interface"
-msgstr ""
+msgstr "Installa l'interfaccia utente in lingua frisone"
#: module_langpack.ulf
msgctxt ""
diff --git a/source/it/sd/messages.po b/source/it/sd/messages.po
index 205735b486e..3179cdd3f92 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2018-01-29 12:11+0000\n"
"Last-Translator: Valter Mura <valtermura@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -16,167 +16,167 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1517227860.000000\n"
-#: sd/inc/DocumentRenderer.hrc:29
+#: sd/inc/DocumentRenderer.hrc:27
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Slides"
msgstr "Presentazioni"
-#: sd/inc/DocumentRenderer.hrc:30
+#: sd/inc/DocumentRenderer.hrc:28
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Handouts"
msgstr "Stampati"
-#: sd/inc/DocumentRenderer.hrc:31
+#: sd/inc/DocumentRenderer.hrc:29
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Notes"
msgstr "Appunti"
-#: sd/inc/DocumentRenderer.hrc:32
+#: sd/inc/DocumentRenderer.hrc:30
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Outline"
msgstr "Struttura"
-#: sd/inc/DocumentRenderer.hrc:37
+#: sd/inc/DocumentRenderer.hrc:35
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "According to layout"
msgstr "In base al layout"
-#: sd/inc/DocumentRenderer.hrc:38
+#: sd/inc/DocumentRenderer.hrc:36
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "1"
msgstr "1"
-#: sd/inc/DocumentRenderer.hrc:39
+#: sd/inc/DocumentRenderer.hrc:37
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "2"
msgstr "2"
-#: sd/inc/DocumentRenderer.hrc:40
+#: sd/inc/DocumentRenderer.hrc:38
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "3"
msgstr "3"
-#: sd/inc/DocumentRenderer.hrc:41
+#: sd/inc/DocumentRenderer.hrc:39
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "4"
msgstr "4"
-#: sd/inc/DocumentRenderer.hrc:42
+#: sd/inc/DocumentRenderer.hrc:40
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "6"
msgstr "6"
-#: sd/inc/DocumentRenderer.hrc:43
+#: sd/inc/DocumentRenderer.hrc:41
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "9"
msgstr "9"
-#: sd/inc/DocumentRenderer.hrc:48
+#: sd/inc/DocumentRenderer.hrc:46
msgctxt "STR_IMPRESS_PRINT_UI_ORDER_CHOICES"
msgid "Left to right, then down"
msgstr "Da sinistra a destra, poi in basso"
-#: sd/inc/DocumentRenderer.hrc:49
+#: sd/inc/DocumentRenderer.hrc:47
msgctxt "STR_IMPRESS_PRINT_UI_ORDER_CHOICES"
msgid "Top to bottom, then right"
msgstr "Dall'alto in basso, poi a destra"
-#: sd/inc/DocumentRenderer.hrc:54
+#: sd/inc/DocumentRenderer.hrc:52
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Original colors"
msgstr "Colori originali"
-#: sd/inc/DocumentRenderer.hrc:55
+#: sd/inc/DocumentRenderer.hrc:53
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Grayscale"
msgstr "Scala di grigi"
-#: sd/inc/DocumentRenderer.hrc:56
+#: sd/inc/DocumentRenderer.hrc:54
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Black & white"
msgstr "Bianco e nero"
-#: sd/inc/DocumentRenderer.hrc:61
+#: sd/inc/DocumentRenderer.hrc:59
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Original size"
msgstr "Dimensione originale"
-#: sd/inc/DocumentRenderer.hrc:62
+#: sd/inc/DocumentRenderer.hrc:60
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Fit to printable page"
msgstr "Adatta alla pagina da stampare"
-#: sd/inc/DocumentRenderer.hrc:63
+#: sd/inc/DocumentRenderer.hrc:61
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Distribute on multiple sheets of paper"
msgstr "Distribuisci su più fogli"
-#: sd/inc/DocumentRenderer.hrc:64
+#: sd/inc/DocumentRenderer.hrc:62
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Tile sheet of paper with repeated slides"
msgstr "Fogli affiancati con diapositive ripetute"
-#: sd/inc/DocumentRenderer.hrc:69
+#: sd/inc/DocumentRenderer.hrc:67
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Original size"
msgstr "Dimensione originale"
-#: sd/inc/DocumentRenderer.hrc:70
+#: sd/inc/DocumentRenderer.hrc:68
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Fit to printable page"
msgstr "Adatta alla pagina da stampare"
-#: sd/inc/DocumentRenderer.hrc:71
+#: sd/inc/DocumentRenderer.hrc:69
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Distribute on multiple sheets of paper"
msgstr "Distribuisci su più fogli"
-#: sd/inc/DocumentRenderer.hrc:72
+#: sd/inc/DocumentRenderer.hrc:70
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Tile sheet of paper with repeated pages"
msgstr "Fogli affiancati con pagine ripetute"
-#: sd/inc/DocumentRenderer.hrc:77
+#: sd/inc/DocumentRenderer.hrc:75
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "All pages"
msgstr "Tutte le pagine"
-#: sd/inc/DocumentRenderer.hrc:78
+#: sd/inc/DocumentRenderer.hrc:76
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "Front sides / right pages"
msgstr "Fronte / pagine destre"
-#: sd/inc/DocumentRenderer.hrc:79
+#: sd/inc/DocumentRenderer.hrc:77
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "Back sides / left pages"
msgstr "Retro / pagine sinistre"
-#: sd/inc/DocumentRenderer.hrc:84
+#: sd/inc/DocumentRenderer.hrc:82
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~All slides"
msgstr "~Tutte le diapositive"
-#: sd/inc/DocumentRenderer.hrc:85
+#: sd/inc/DocumentRenderer.hrc:83
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~Slides"
msgstr "~Diapositive"
-#: sd/inc/DocumentRenderer.hrc:86
+#: sd/inc/DocumentRenderer.hrc:84
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Se~lection"
msgstr "Se~lezione"
-#: sd/inc/DocumentRenderer.hrc:91
+#: sd/inc/DocumentRenderer.hrc:89
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~All pages"
msgstr "~Tutte le pagine"
-#: sd/inc/DocumentRenderer.hrc:92
+#: sd/inc/DocumentRenderer.hrc:90
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Pa~ges"
msgstr "Pa~gine"
-#: sd/inc/DocumentRenderer.hrc:93
+#: sd/inc/DocumentRenderer.hrc:91
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Se~lection"
msgstr "Se~lezione"
diff --git a/source/it/sfx2/messages.po b/source/it/sfx2/messages.po
index ee1aa2f4c95..78f08f66e4e 100644
--- a/source/it/sfx2/messages.po
+++ b/source/it/sfx2/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: 2018-05-22 13:16+0200\n"
-"PO-Revision-Date: 2018-04-30 12:20+0000\n"
+"PO-Revision-Date: 2018-06-03 10:49+0000\n"
"Last-Translator: Valter Mura <valtermura@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: it\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1525090825.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1528022961.000000\n"
#: include/sfx2/strings.hrc:25
msgctxt "STR_TEMPLATE_FILTER"
@@ -1152,7 +1152,7 @@ msgstr ""
#: include/sfx2/strings.hrc:239
msgctxt "STR_ERROR_SEND_MAIL_HEADER"
msgid "Error sending mail"
-msgstr ""
+msgstr "Errore durante l'invio del messaggio"
#: include/sfx2/strings.hrc:240
msgctxt "STR_QUERY_OPENASTEMPLATE"
@@ -1170,12 +1170,12 @@ msgstr ""
#: include/sfx2/strings.hrc:242
msgctxt "STR_QUERY_OPENASTEMPLATE_OPENCOPY_BTN"
msgid "Open ~Copy"
-msgstr ""
+msgstr "Apri ~copia"
#: include/sfx2/strings.hrc:243
msgctxt "STR_QUERY_OPENASTEMPLATE_OPEN_BTN"
msgid "~Open"
-msgstr ""
+msgstr "~Apri"
#: include/sfx2/strings.hrc:244
msgctxt "STR_REPAIREDDOCUMENT"
@@ -1215,7 +1215,7 @@ msgstr "Questo documento ha un livello di classificazione inferiore agli appunti
#: include/sfx2/strings.hrc:251
msgctxt "STR_CLASSIFIED_INTELLECTUAL_PROPERTY"
msgid "Level"
-msgstr ""
+msgstr "Livello"
#: include/sfx2/strings.hrc:252
msgctxt "STR_CLASSIFIED_NATIONAL_SECURITY"
@@ -1807,12 +1807,12 @@ msgstr "Altri caratteri..."
#: sfx2/uiconfig/ui/charviewmenu.ui:12
msgctxt "charviewmenu|clearchar"
msgid "Remove"
-msgstr ""
+msgstr "Rimuovi"
#: sfx2/uiconfig/ui/charviewmenu.ui:20
msgctxt "charviewmenu|clearallchar"
msgid "Clear All"
-msgstr ""
+msgstr "Pulisci tutto"
#: sfx2/uiconfig/ui/checkin.ui:8
msgctxt "checkin|CheckinDialog"
@@ -2227,6 +2227,15 @@ msgid ""
"\n"
"This product was created by %OOOVENDOR, based on OpenOffice.org, which is Copyright 2000, 2011 Oracle and/or its affiliates. %OOOVENDOR acknowledges all community members, please see http://www.libreoffice.org/ for more details."
msgstr ""
+"%PRODUCTNAME è reso disponibile nei termini della Mozilla Public License, versione 2.0. È possibile consultare una copia della MPL all'indirizzo http://mozilla.org/MPL/2.0/.\n"
+"\n"
+"I termini della licenza e gli avvisi di copyright sul codice aggiuntivo di terze parti applicabile a varie porzioni del software sono contenuti nel file LICENSE.html; per visualizzare gli esatti dettagli in inglese, premi il pulsante \"Mostra Licenza\".\n"
+"\n"
+"Tutti i marchi, registrati e non registrati, qui menzionati sono di proprietà dei loro rispettivi proprietari.\n"
+"\n"
+"Copyright © 2000–2018 Contributori di LibreOffice. Tutti i diritti riservati.\n"
+"\n"
+"Questo prodotto è stato creato da %OOOVENDOR, e basato su OpenOffice.org, che è Copyright 2000, 2011 Oracle e/o loro affiliati. %OOOVENDOR ringrazia tutti i membri della comunità, consultate http://www.libreoffice.org/ per più dettagli."
#: sfx2/uiconfig/ui/linkeditdialog.ui:105
msgctxt "linkeditdialog|label2"
diff --git a/source/it/svtools/messages.po b/source/it/svtools/messages.po
index 16ae5dc4cbe..14446119a57 100644
--- a/source/it/svtools/messages.po
+++ b/source/it/svtools/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2018-05-16 16:53+0200\n"
-"PO-Revision-Date: 2017-12-17 11:15+0000\n"
+"PO-Revision-Date: 2018-06-03 10:52+0000\n"
"Last-Translator: Valter Mura <valtermura@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: it\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1513509315.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1528023157.000000\n"
#: svtools/inc/errtxt.hrc:30
msgctxt "RID_ERRCTX"
@@ -531,7 +531,7 @@ msgstr ""
#: svtools/inc/errtxt.hrc:133
msgctxt "RID_ERRHDL"
msgid "File format error found at $(ARG1)(row,col)."
-msgstr ""
+msgstr "Errore di formato del file in $(ARG1)(riga,col)."
#: svtools/inc/errtxt.hrc:134
msgctxt "RID_ERRHDL"
@@ -2496,12 +2496,12 @@ msgstr ""
#: svtools/inc/langtab.hrc:416
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Juǀ’hoan"
-msgstr ""
+msgstr "Juǀ’hoan"
#: svtools/inc/langtab.hrc:417
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Naro"
-msgstr ""
+msgstr "Naro"
#: svtools/inc/langtab.hrc:418
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
@@ -3281,7 +3281,7 @@ msgstr ""
#: include/svtools/strings.hrc:74
msgctxt "STR_FORMAT_ID_DIF"
msgid "Data Interchange Format (DIF)"
-msgstr ""
+msgstr "Data Interchange Format (DIF)"
#: include/svtools/strings.hrc:75
msgctxt "STR_FORMAT_ID_MSWORD_DOC"
@@ -3396,7 +3396,7 @@ msgstr "Formato HTML senza commenti"
#: include/svtools/strings.hrc:97
msgctxt "STR_FORMAT_ID_PNG_BITMAP"
msgid "Portable Network Graphic (PNG)"
-msgstr ""
+msgstr "Portable Network Graphic (PNG)"
#: include/svtools/strings.hrc:99
#, c-format
diff --git a/source/it/svx/messages.po b/source/it/svx/messages.po
index 43039fe1f41..36baa205d50 100644
--- a/source/it/svx/messages.po
+++ b/source/it/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: 2018-05-16 16:53+0200\n"
-"PO-Revision-Date: 2018-04-09 16:03+0000\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
+"PO-Revision-Date: 2018-06-03 10:59+0000\n"
"Last-Translator: Valter Mura <valtermura@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: it\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1523289824.000000\n"
+"X-POOTLE-MTIME: 1528023548.000000\n"
#: svx/inc/fieldunit.hrc:30
msgctxt "RID_SVXSTR_FIELDUNIT_TABLE"
@@ -1977,22 +1977,22 @@ msgstr "_Copia"
#: svx/uiconfig/ui/charsetmenu.ui:12
msgctxt "charviewmenu|STR_CLEAR_CHAR"
msgid "Insert into document"
-msgstr ""
+msgstr "Inserisci nel documento"
#: svx/uiconfig/ui/charsetmenu.ui:20
msgctxt "charviewmenu|STR_CLEAR_ALL_CHAR"
msgid "Add to favorites"
-msgstr ""
+msgstr "Aggiungi ai preferiti"
#: svx/uiconfig/ui/charsetmenu.ui:28
msgctxt "charviewmenu|STR_CLEAR_ALL_CHAR"
msgid "Remove from favorites"
-msgstr ""
+msgstr "Rimuovi dai preferiti"
#: svx/uiconfig/ui/charsetmenu.ui:36
msgctxt "charviewmenu|STR_CLEAR_ALL_CHAR"
msgid "Copy to clipboard"
-msgstr ""
+msgstr "Copia negli appunti"
#: svx/uiconfig/ui/chineseconversiondialog.ui:8
msgctxt "chineseconversiondialog|ChineseConversionDialog"
@@ -2147,7 +2147,7 @@ msgstr "C_ambia"
#: svx/uiconfig/ui/classificationdialog.ui:9
msgctxt "classificationdialog|dialogname"
msgid "Classification"
-msgstr ""
+msgstr "Classificazione"
#: svx/uiconfig/ui/classificationdialog.ui:89
msgctxt "classificationdialog|label-Classification"
@@ -2197,7 +2197,7 @@ msgstr "Aggiungi"
#: svx/uiconfig/ui/classificationdialog.ui:326
msgctxt "classificationdialog|label-PartNumber"
msgid "License:"
-msgstr ""
+msgstr "Licenza:"
#: svx/uiconfig/ui/classificationdialog.ui:373
msgctxt "classificationdialog|label-IntellectualProperty"
@@ -5179,8 +5179,8 @@ msgstr "Nella segnalazione di errore puoi includere anche parti importanti del t
#: svx/uiconfig/ui/safemodedialog.ui:432
msgctxt "safemodedialog|btn_create_zip"
-msgid "Create Zip Archive from User Profile"
-msgstr "Crea un archivio compresso dal profilo utente"
+msgid "Archive User Profile"
+msgstr ""
#: svx/uiconfig/ui/safemodedialog.ui:445
msgctxt "safemodedialog|linkbutton_profile"
@@ -8769,9 +8769,9 @@ msgid "Red"
msgstr "Rosso"
#: include/svx/strings.hrc:565
-msgctxt "RID_SVXSTR_COLOR_VIOLET"
-msgid "Violet"
-msgstr "Lilla"
+msgctxt "RID_SVXSTR_COLOR_MAGENTA"
+msgid "Magenta"
+msgstr "Magenta"
#: include/svx/strings.hrc:566
msgctxt "RID_SVXSTR_COLOR_PURPLE"
@@ -8835,9 +8835,9 @@ msgid "Light Red"
msgstr "Rosso chiaro"
#: include/svx/strings.hrc:579
-msgctxt "RID_SVXSTR_COLOR_LIGHTVIOLET"
-msgid "Light Violet"
-msgstr "Viola chiaro"
+msgctxt "RID_SVXSTR_COLOR_LIGHTMAGENTA"
+msgid "Light Magenta"
+msgstr ""
#: include/svx/strings.hrc:580
msgctxt "RID_SVXSTR_COLOR_LIGHTPURPLE"
@@ -8901,9 +8901,9 @@ msgid "Dark Red"
msgstr "Rosso scuro"
#: include/svx/strings.hrc:593
-msgctxt "RID_SVXSTR_COLOR_DARKVIOLET1"
-msgid "Dark Violet"
-msgstr "Lilla scuro"
+msgctxt "RID_SVXSTR_COLOR_DARKMAGENTA"
+msgid "Dark Magenta"
+msgstr ""
#: include/svx/strings.hrc:594
msgctxt "RID_SVXSTR_COLOR_DARKPURPLE"
@@ -8937,55 +8937,55 @@ msgstr "Limetta scuro"
#. Elements of the Tonal color palette
#: include/svx/strings.hrc:601
+msgctxt "RID_SVXSTR_COLOR_VIOLET"
+msgid "Violet"
+msgstr "Lilla"
+
+#: include/svx/strings.hrc:602
msgctxt "RID_SVXSTR_COLOR_VIOLET_OUG"
msgid "Violet (Out of Gamut)"
msgstr "Lilla (fuori gamma)"
-#: include/svx/strings.hrc:602
+#: include/svx/strings.hrc:603
msgctxt "RID_SVXSTR_COLOR_BLUE_OUG"
msgid "Blue (Out of Gamut)"
msgstr "Blu (fuori gamma)"
-#: include/svx/strings.hrc:603
+#: include/svx/strings.hrc:604
msgctxt "RID_SVXSTR_COLOR_AZURE_OUG"
msgid "Azure (Out of Gamut)"
msgstr "Azzuro (fuori gamma)"
-#: include/svx/strings.hrc:604
+#: include/svx/strings.hrc:605
msgctxt "RID_SVXSTR_COLOR_SPRINGGREEN_OUG"
msgid "Spring Green (Out of Gamut)"
msgstr "Verde primavera (fuori gamma)"
-#: include/svx/strings.hrc:605
+#: include/svx/strings.hrc:606
msgctxt "RID_SVXSTR_COLOR_GREEN_OUG"
msgid "Green (Out of Gamut)"
msgstr "Verde (fuori gamma)"
-#: include/svx/strings.hrc:606
+#: include/svx/strings.hrc:607
msgctxt "RID_SVXSTR_COLOR_CHARTREUSEGREEN_OUG"
msgid "Chartreuse Green (Out of Gamut)"
msgstr "Verde chartreuse (fuori gamma)"
-#: include/svx/strings.hrc:607
+#: include/svx/strings.hrc:608
msgctxt "RID_SVXSTR_COLOR_ORANGE_OUG"
msgid "Orange (Out of Gamut)"
msgstr "Arancione (fuori gamma)"
-#: include/svx/strings.hrc:608
+#: include/svx/strings.hrc:609
msgctxt "RID_SVXSTR_COLOR_RED_OUG"
msgid "Red (Out of Gamut)"
msgstr "Rosso (fuori gamma)"
-#: include/svx/strings.hrc:609
+#: include/svx/strings.hrc:610
msgctxt "RID_SVXSTR_COLOR_ROSE_OUG"
msgid "Rose (Out of Gamut)"
msgstr "Rosa (fuori gamma)"
-#: include/svx/strings.hrc:610
-msgctxt "RID_SVXSTR_COLOR_MAGENTA"
-msgid "Magenta"
-msgstr "Magenta"
-
#: include/svx/strings.hrc:611
msgctxt "RID_SVXSTR_COLOR_AZURE"
msgid "Azure"
@@ -9643,7 +9643,7 @@ msgstr ""
#: include/svx/strings.hrc:753
msgctxt "RID_SVXSTR_GRDT77"
msgid "Midnight"
-msgstr ""
+msgstr "Mezzanotte"
#: include/svx/strings.hrc:754
msgctxt "RID_SVXSTR_GRDT78"
@@ -9673,7 +9673,7 @@ msgstr ""
#: include/svx/strings.hrc:759
msgctxt "RID_SVXSTR_GRDT83"
msgid "Present"
-msgstr ""
+msgstr "Presente"
#: include/svx/strings.hrc:760
msgctxt "RID_SVXSTR_GRDT84"
@@ -9814,7 +9814,7 @@ msgstr ""
#: include/svx/strings.hrc:788
msgctxt "RID_SVXSTR_BMP15"
msgid "Zebra"
-msgstr ""
+msgstr "Zebra"
#: include/svx/strings.hrc:789
msgctxt "RID_SVXSTR_BMP16"
@@ -9824,7 +9824,7 @@ msgstr ""
#: include/svx/strings.hrc:790
msgctxt "RID_SVXSTR_BMP17"
msgid "Gravel"
-msgstr ""
+msgstr "Ghiaia"
#: include/svx/strings.hrc:791
msgctxt "RID_SVXSTR_BMP18"
@@ -9834,7 +9834,7 @@ msgstr ""
#: include/svx/strings.hrc:792
msgctxt "RID_SVXSTR_BMP19"
msgid "Night Sky"
-msgstr ""
+msgstr "Cielo notturno"
#: include/svx/strings.hrc:793
msgctxt "RID_SVXSTR_BMP20"
@@ -12091,13 +12091,13 @@ msgstr "Punti a freccia verso destra"
#: include/svx/strings.hrc:1273
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_6"
-msgid "Check mark bullets"
-msgstr "Punti a segno di spunta"
+msgid "Cross mark bullets"
+msgstr ""
#: include/svx/strings.hrc:1274
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_7"
-msgid "Tick mark bullets"
-msgstr "Punti a segno di graduazione"
+msgid "Check mark bullets"
+msgstr ""
#: include/svx/strings.hrc:1275
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_0"
@@ -12476,6 +12476,8 @@ msgid ""
"The image has been modified. By default the original image will be saved.\n"
"Do you want to save the modified version instead?"
msgstr ""
+"L'immagine è stata modificata. Per impostazione predefinita sarà salvata l'immagine originale.\n"
+"Vuoi salvare invece la versione modificata?"
#: include/svx/strings.hrc:1362
msgctxt "RID_SUBSETMAP"
@@ -13885,38 +13887,38 @@ msgstr "Scrittura mongola quadrata Zanabazar"
#: include/svx/strings.hrc:1644
msgctxt "RID_SVXSTR_FRAMEDIR_LTR"
msgid "Left-to-right (LTR)"
-msgstr ""
+msgstr "Da sinistra a destra (LTR)"
#: include/svx/strings.hrc:1645
msgctxt "RID_SVXSTR_FRAMEDIR_RTL"
msgid "Right-to-left (RTL)"
-msgstr ""
+msgstr "Da destra a sinistra (RTL)"
#: include/svx/strings.hrc:1646
msgctxt "RID_SVXSTR_FRAMEDIR_SUPER"
msgid "Use superordinate object settings"
-msgstr ""
+msgstr "Usa le impostazioni dell'oggetto superiore"
#. page direction
#: include/svx/strings.hrc:1648
msgctxt "RID_SVXSTR_PAGEDIR_LTR_HORI"
msgid "Left-to-right (horizontal)"
-msgstr ""
+msgstr "Da sinistra a destra (orizzontale)"
#: include/svx/strings.hrc:1649
msgctxt "RID_SVXSTR_PAGEDIR_RTL_HORI"
msgid "Right-to-left (horizontal)"
-msgstr ""
+msgstr "Da destra a sinistra (orizzontale)"
#: include/svx/strings.hrc:1650
msgctxt "RID_SVXSTR_PAGEDIR_RTL_VERT"
msgid "Right-to-left (vertical)"
-msgstr ""
+msgstr "Da destra a sinistra (verticale)"
#: include/svx/strings.hrc:1651
msgctxt "RID_SVXSTR_PAGEDIR_LTR_VERT"
msgid "Left-to-right (vertical)"
-msgstr ""
+msgstr "Da sinistra a destra (verticale)"
#: include/svx/svxitems.hrc:33
msgctxt "RID_ATTR_NAMES"
diff --git a/source/it/sw/messages.po b/source/it/sw/messages.po
index ed450414ea9..dd1abf109ea 100644
--- a/source/it/sw/messages.po
+++ b/source/it/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: 2018-05-22 13:17+0200\n"
-"PO-Revision-Date: 2018-02-19 13:30+0000\n"
+"POT-Creation-Date: 2018-06-12 14:41+0200\n"
+"PO-Revision-Date: 2018-06-12 12:49+0000\n"
"Last-Translator: Valter Mura <valtermura@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: it\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1519047010.000000\n"
+"X-POOTLE-MTIME: 1528807767.000000\n"
#: sw/inc/app.hrc:29
msgctxt "RID_PARAGRAPHSTYLEFAMILY"
@@ -1180,13 +1180,13 @@ msgstr "Citazione"
#: sw/inc/strings.hrc:172
msgctxt "STR_POOLCOLL_TOX_ILLUSH"
-msgid "Illustration Index Heading"
-msgstr "Titolo indice illustrazioni"
+msgid "Figure Index Heading"
+msgstr ""
#: sw/inc/strings.hrc:173
msgctxt "STR_POOLCOLL_TOX_ILLUS1"
-msgid "Illustration Index 1"
-msgstr "Indice delle illustrazioni 1"
+msgid "Figure Index 1"
+msgstr ""
#: sw/inc/strings.hrc:174
msgctxt "STR_POOLCOLL_TOX_OBJECTH"
@@ -3105,7 +3105,7 @@ msgstr "S~fondo pagina"
#: sw/inc/strings.hrc:570
msgctxt "STR_PRINTOPTUI_PICTURES"
msgid "~Images and other graphic objects"
-msgstr ""
+msgstr "~Immagini e altri oggetti grafici"
#: sw/inc/strings.hrc:571
msgctxt "STR_PRINTOPTUI_HIDDEN"
@@ -3590,8 +3590,8 @@ msgstr "Indice degli oggetti"
#: sw/inc/strings.hrc:672
msgctxt "STR_TOX_ILL"
-msgid "Illustration Index"
-msgstr "Indice delle illustrazioni"
+msgid "Table of Figures"
+msgstr ""
#: sw/inc/strings.hrc:673
#, c-format
@@ -4028,7 +4028,7 @@ msgstr "Il formato appunti richiesto non è disponibile."
#: sw/inc/strings.hrc:764
msgctxt "STR_PRIVATETEXT"
msgid "%PRODUCTNAME %PRODUCTVERSION Text Document"
-msgstr ""
+msgstr "%PRODUCTNAME %PRODUCTVERSION - Documento di testo"
#: sw/inc/strings.hrc:765
msgctxt "STR_PRIVATEGRAPHIC"
@@ -4928,12 +4928,12 @@ msgstr "Numero (contesto completo)"
#: sw/inc/strings.hrc:983
msgctxt "FMT_REF_WITH_LOWERCASE_HU_ARTICLE"
msgid "Article a/az + "
-msgstr ""
+msgstr "Articolo a/az + "
#: sw/inc/strings.hrc:984
msgctxt "FMT_REF_WITH_UPPERCASE_HU_ARTICLE"
msgid "Article A/Az + "
-msgstr ""
+msgstr "Articolo A/Az + "
#. --------------------------------------------------------------------
#. Description: placeholder
@@ -5094,12 +5094,12 @@ msgstr "Vista a libro"
#: sw/inc/strings.hrc:1025
msgctxt "STR_BOOKCTRL_HINT"
msgid "Page number in document. Click to open Go to Page dialog or right-click for bookmark list."
-msgstr ""
+msgstr "Numero di pagina nel documento. Fai clic per aprire la finestra di dialogo Vai alla pagina oppure clic col pulsante destro per l'elenco dei segnalibri."
#: sw/inc/strings.hrc:1026
msgctxt "STR_BOOKCTRL_HINT_EXTENDED"
msgid "Page number in document (Page number on printed document). Click to open Go to Page dialog."
-msgstr ""
+msgstr "Numero di pagina nel documento (numero di pagina sul documento stampato). Fai clic per aprire la finestra di dialogo Vai alla pagina."
#: sw/inc/strings.hrc:1027
msgctxt "STR_TMPLCTRL_HINT"
@@ -8508,62 +8508,62 @@ msgstr "Sposta in _basso"
#: sw/uiconfig/swriter/ui/envprinterpage.ui:198
msgctxt "envprinterpage|horileftl|tooltip_text"
msgid "Horizontal Left"
-msgstr ""
+msgstr "Orizzontale sinistra"
#: sw/uiconfig/swriter/ui/envprinterpage.ui:214
msgctxt "envprinterpage|horicenterl|tooltip_text"
msgid "Horizontal Center"
-msgstr ""
+msgstr "Orizzontale centro"
#: sw/uiconfig/swriter/ui/envprinterpage.ui:230
msgctxt "envprinterpage|horirightl|tooltip_text"
msgid "Horizontal Right"
-msgstr ""
+msgstr "Orizzontale destra"
#: sw/uiconfig/swriter/ui/envprinterpage.ui:246
msgctxt "envprinterpage|vertleftl|tooltip_text"
msgid "Vertical Left"
-msgstr ""
+msgstr "Verticale sinistra"
#: sw/uiconfig/swriter/ui/envprinterpage.ui:262
msgctxt "envprinterpage|vertcenterl|tooltip_text"
msgid "Vertical Center"
-msgstr ""
+msgstr "Verticale centro"
#: sw/uiconfig/swriter/ui/envprinterpage.ui:278
msgctxt "envprinterpage|vertrightl|tooltip_text"
msgid "Vertical Right"
-msgstr ""
+msgstr "Verticale destra"
#: sw/uiconfig/swriter/ui/envprinterpage.ui:306
msgctxt "envprinterpage|horileftu|tooltip_text"
msgid "Horizontal Left"
-msgstr ""
+msgstr "Orizzontale sinistra"
#: sw/uiconfig/swriter/ui/envprinterpage.ui:322
msgctxt "envprinterpage|horicenteru|tooltip_text"
msgid "Horizontal Center"
-msgstr ""
+msgstr "Orizzontale centro"
#: sw/uiconfig/swriter/ui/envprinterpage.ui:338
msgctxt "envprinterpage|horirightu|tooltip_text"
msgid "Horizontal Right"
-msgstr ""
+msgstr "Orizzontale destra"
#: sw/uiconfig/swriter/ui/envprinterpage.ui:354
msgctxt "envprinterpage|vertleftu|tooltip_text"
msgid "Vertical Left"
-msgstr ""
+msgstr "Verticale sinistra"
#: sw/uiconfig/swriter/ui/envprinterpage.ui:370
msgctxt "envprinterpage|vertcenteru|tooltip_text"
msgid "Vertical Center"
-msgstr ""
+msgstr "Verticale centro"
#: sw/uiconfig/swriter/ui/envprinterpage.ui:386
msgctxt "envprinterpage|vertrightu|tooltip_text"
msgid "Vertical Right"
-msgstr ""
+msgstr "Verticale destra"
#: sw/uiconfig/swriter/ui/envprinterpage.ui:412
msgctxt "envprinterpage|label1"
@@ -9244,72 +9244,72 @@ msgctxt "footnotepage|label5"
msgid "Continuation Notice"
msgstr "Avvertenza che la nota continua"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:49
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:55
msgctxt "footnotesendnotestabpage|ftnntnum"
msgid "_Restart numbering"
msgstr "_Riavvia numerazione"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:91
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:93
msgctxt "footnotesendnotestabpage|ftnoffset_label"
msgid "_Start at:"
msgstr "_Comincia da:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:112
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:111
msgctxt "footnotesendnotestabpage|ftnntnumfmt"
msgid "Custom _format"
msgstr "_Formato personalizzato"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:155
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:150
msgctxt "footnotesendnotestabpage|ftnsuffix_label"
msgid "Aft_er:"
msgstr "_Dopo:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:199
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:188
msgctxt "footnotesendnotestabpage|ftnprefix_label"
msgid "Be_fore:"
msgstr "_Prima:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:228
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:212
msgctxt "footnotesendnotestabpage|ftnntattextend"
msgid "Collec_t at end of text"
msgstr "Raccogli a fine _testo"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:252
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:234
msgctxt "footnotesendnotestabpage|label1"
msgid "Footnotes"
msgstr "Note a piè di pagina"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:289
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:271
msgctxt "footnotesendnotestabpage|endntattextend"
msgid "C_ollect at end of section"
msgstr "Raccogli a _fine sezione"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:315
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:295
msgctxt "footnotesendnotestabpage|endntnum"
msgid "_Restart numbering"
msgstr "_Riavvia numerazione"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:357
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:333
msgctxt "footnotesendnotestabpage|endoffset_label"
msgid "_Start at:"
msgstr "_Comincia da:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:378
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:351
msgctxt "footnotesendnotestabpage|endntnumfmt"
msgid "_Custom format"
msgstr "Formato _personalizzato"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:421
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:390
msgctxt "footnotesendnotestabpage|endsuffix_label"
msgid "Aft_er:"
msgstr "_Dopo:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:465
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:428
msgctxt "footnotesendnotestabpage|endprefix_label"
msgid "Be_fore:"
msgstr "_Prima:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:500
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:458
msgctxt "footnotesendnotestabpage|label2"
msgid "Endnotes"
msgstr "Note di chiusura"
@@ -9339,27 +9339,27 @@ msgctxt "formatsectiondialog|notes"
msgid "Footnotes/Endnotes"
msgstr "Note a piè di pagina/di chiusura"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:63
+#: sw/uiconfig/swriter/ui/formattablepage.ui:77
msgctxt "formattablepage|nameft"
msgid "_Name"
msgstr "Nome"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:79
+#: sw/uiconfig/swriter/ui/formattablepage.ui:91
msgctxt "formattablepage|widthft"
msgid "W_idth"
msgstr "Larghezza"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:110
+#: sw/uiconfig/swriter/ui/formattablepage.ui:120
msgctxt "formattablepage|relwidth"
msgid "Relati_ve"
msgstr "Relativo"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:155
+#: sw/uiconfig/swriter/ui/formattablepage.ui:160
msgctxt "formattablepage|label45"
msgid "Properties"
msgstr "Proprietà"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:194
+#: sw/uiconfig/swriter/ui/formattablepage.ui:195
msgctxt "formattablepage|leftft"
msgid "Lef_t"
msgstr "A sinistra"
@@ -9369,62 +9369,62 @@ msgctxt "formattablepage|rightft"
msgid "Ri_ght"
msgstr "A destra"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:228
+#: sw/uiconfig/swriter/ui/formattablepage.ui:226
msgctxt "formattablepage|aboveft"
msgid "_Above"
msgstr "Verso l'alto"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:245
+#: sw/uiconfig/swriter/ui/formattablepage.ui:241
msgctxt "formattablepage|belowft"
msgid "_Below"
msgstr "In basso"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:320
+#: sw/uiconfig/swriter/ui/formattablepage.ui:311
msgctxt "formattablepage|label46"
msgid "Spacing"
msgstr "Distanza"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:362
+#: sw/uiconfig/swriter/ui/formattablepage.ui:349
msgctxt "formattablepage|full"
msgid "A_utomatic"
msgstr "A_utomatico"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:380
+#: sw/uiconfig/swriter/ui/formattablepage.ui:365
msgctxt "formattablepage|left"
msgid "_Left"
msgstr "A _sinistra"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:398
+#: sw/uiconfig/swriter/ui/formattablepage.ui:381
msgctxt "formattablepage|fromleft"
msgid "_From left"
msgstr "_Da sinistra"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:416
+#: sw/uiconfig/swriter/ui/formattablepage.ui:397
msgctxt "formattablepage|right"
msgid "R_ight"
msgstr "D_estra"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:435
+#: sw/uiconfig/swriter/ui/formattablepage.ui:413
msgctxt "formattablepage|center"
msgid "_Center"
msgstr "Al _centro"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:453
+#: sw/uiconfig/swriter/ui/formattablepage.ui:429
msgctxt "formattablepage|free"
msgid "_Manual"
msgstr "_Manuale"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:478
+#: sw/uiconfig/swriter/ui/formattablepage.ui:452
msgctxt "formattablepage|label43"
msgid "Alignment"
msgstr "Allineamento"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:522
+#: sw/uiconfig/swriter/ui/formattablepage.ui:491
msgctxt "formattablepage|label53"
msgid "Text _direction"
msgstr "_Direzione del testo"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:553
+#: sw/uiconfig/swriter/ui/formattablepage.ui:519
msgctxt "formattablepage|label44"
msgid "Properties "
msgstr "Proprietà "
@@ -9779,22 +9779,27 @@ msgctxt "headerfootermenu|insert_pagenumber"
msgid "Insert Page Number"
msgstr ""
-#: sw/uiconfig/swriter/ui/indentpage.ui:52
+#: sw/uiconfig/swriter/ui/headerfootermenu.ui:42
+msgctxt "headerfootermenu|insert_pagecount"
+msgid "Insert Page Count"
+msgstr ""
+
+#: sw/uiconfig/swriter/ui/indentpage.ui:57
msgctxt "indentpage|label1"
msgid "_Before section"
msgstr "_Prima della sezione"
-#: sw/uiconfig/swriter/ui/indentpage.ui:67
+#: sw/uiconfig/swriter/ui/indentpage.ui:71
msgctxt "indentpage|label3"
msgid "_After section"
msgstr "_Dopo la sezione"
-#: sw/uiconfig/swriter/ui/indentpage.ui:113
+#: sw/uiconfig/swriter/ui/indentpage.ui:115
msgctxt "indentpage|label2"
msgid "Indent"
msgstr "Rientro"
-#: sw/uiconfig/swriter/ui/indentpage.ui:142
+#: sw/uiconfig/swriter/ui/indentpage.ui:155
msgctxt "indentpage|preview-atkobject"
msgid "Example"
msgstr "Esempio"
@@ -10127,7 +10132,7 @@ msgstr "Interruzione di pagina"
#: sw/uiconfig/swriter/ui/insertbreak.ui:156
msgctxt "insertbreak|pagerb-atkobject"
msgid "Inserts a manual page break, and moves the text found to the right of the cursor to the beginning of the next page. The inserted page break is indicated by a nonprinting border at the top of the new page."
-msgstr ""
+msgstr "Inserisce un'interruzione di pagina manuale e sposta il testo che si trova a destra del cursore all'inizio della pagina successiva. L'interruzione di pagina inserita viene indicata da un bordo non stampabile all'inizio della nuova pagina."
#: sw/uiconfig/swriter/ui/insertbreak.ui:171
msgctxt "insertbreak|styleft"
@@ -10152,7 +10157,7 @@ msgstr "Cambia numero di pagina"
#: sw/uiconfig/swriter/ui/insertbreak.ui:214
msgctxt "insertbreak|pagenumcb-atkobject"
msgid "Assigns the page number that you specify to the page that follows the manual page break. This option is only available if you assign a different page style to the page that follows manual page break."
-msgstr ""
+msgstr "Assegna il numero di pagina specificato alla pagina successiva all'interruzione manuale. Questa opzione è abilitata solo se assegni uno stile di pagina differente alla pagina che segue l'interruzione manuale."
#: sw/uiconfig/swriter/ui/insertbreak.ui:236
msgctxt "insertbreak|pagenumsb-atkobject"
@@ -10482,7 +10487,7 @@ msgstr "Opzioni"
#: sw/uiconfig/swriter/ui/inserttable.ui:454
msgctxt "inserttable|lbTableStyle"
msgid "Styles"
-msgstr ""
+msgstr "Stili"
#: sw/uiconfig/swriter/ui/labeldialog.ui:8
msgctxt "labeldialog|LabelDialog"
@@ -11782,12 +11787,12 @@ msgstr ""
#: sw/uiconfig/swriter/ui/notebookbar.ui:1851
msgctxt "notebookbar|FileMenuButton"
msgid "_File"
-msgstr ""
+msgstr "_File"
#: sw/uiconfig/swriter/ui/notebookbar.ui:1870
msgctxt "notebookbar|HelpMenuButton"
msgid "_Help"
-msgstr ""
+msgstr "A_iuto"
#: sw/uiconfig/swriter/ui/notebookbar.ui:2658
msgctxt "notebookbar|FileLabel"
@@ -11807,7 +11812,7 @@ msgstr "Inizio"
#: sw/uiconfig/swriter/ui/notebookbar.ui:5273
msgctxt "notebookbar|InsertMenuButton"
msgid "_Insert"
-msgstr ""
+msgstr "_Inserisci"
#: sw/uiconfig/swriter/ui/notebookbar.ui:5358
msgctxt "notebookbar|InsertLabel"
@@ -11817,7 +11822,7 @@ msgstr "Inserisci"
#: sw/uiconfig/swriter/ui/notebookbar.ui:5388
msgctxt "notebookbar|PageMenuButton"
msgid "Pag_e"
-msgstr ""
+msgstr "Pag_ina"
#: sw/uiconfig/swriter/ui/notebookbar.ui:6307
msgctxt "notebookbar|LayoutLabel"
@@ -11827,7 +11832,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/notebookbar.ui:6335
msgctxt "notebookbar|ReferencesMenuButton"
msgid "Reference_s"
-msgstr ""
+msgstr "Riferimen_ti"
#: sw/uiconfig/swriter/ui/notebookbar.ui:6914
msgctxt "notebookbar|ReferencesLabel"
@@ -11847,7 +11852,7 @@ msgstr "Revisione"
#: sw/uiconfig/swriter/ui/notebookbar.ui:8285
msgctxt "notebookbar|ViewMenuButton"
msgid "_View"
-msgstr ""
+msgstr "_Visualizza"
#: sw/uiconfig/swriter/ui/notebookbar.ui:8370
msgctxt "notebookbar|ViewLabel"
@@ -11867,7 +11872,7 @@ msgstr "Tabella"
#: sw/uiconfig/swriter/ui/notebookbar.ui:10586
msgctxt "notebookbar|GraphicMenuButton"
msgid "_Graphic"
-msgstr ""
+msgstr "Imma_gine"
#: sw/uiconfig/swriter/ui/notebookbar.ui:10685
msgctxt "notebookbar|ImageLabel"
@@ -11887,22 +11892,22 @@ msgstr ""
#: sw/uiconfig/swriter/ui/notebookbar.ui:13000
msgctxt "notebookbar|ObjectMenuButton:MenuDraw"
msgid "Object"
-msgstr ""
+msgstr "Oggetto"
#: sw/uiconfig/swriter/ui/notebookbar.ui:13089
msgctxt "notebookbar|ObjectLabel"
msgid "Object"
-msgstr ""
+msgstr "Oggetto"
#: sw/uiconfig/swriter/ui/notebookbar.ui:13120
msgctxt "notebookbar|ToolsMenuButton"
msgid "_Tools"
-msgstr ""
+msgstr "S_trumenti"
#: sw/uiconfig/swriter/ui/notebookbar.ui:14074
msgctxt "notebookbar|DevLabel"
msgid "Tools"
-msgstr ""
+msgstr "Strumenti"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:1697
msgctxt "notebookbar_compact|Update"
@@ -11912,7 +11917,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:2007
msgctxt "notebookbar_compact|FileMenuButton"
msgid "_File"
-msgstr ""
+msgstr "_File"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:2721
msgctxt "notebookbar_compact|FileLabel"
@@ -11922,7 +11927,7 @@ msgstr "File"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:2770
msgctxt "notebookbar_compact|HomeMenuButton"
msgid "_Menu"
-msgstr ""
+msgstr "_Menu"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3829
msgctxt "notebookbar_compact|HomeLabel"
@@ -11932,7 +11937,7 @@ msgstr "Inizio"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3882
msgctxt "notebookbar_compact|InsertMenuButton"
msgid "_Insert"
-msgstr ""
+msgstr "_Inserisci"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4501
msgctxt "notebookbar_compact|InsertLabel"
@@ -11950,7 +11955,7 @@ msgstr "Scorrimento"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5221
msgctxt "notebookbar_compact|PageMenuButton"
msgid "Pag_e"
-msgstr ""
+msgstr "Pag_ina"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5273
msgctxt "notebookbar_compact|LayoutLabel"
@@ -11960,7 +11965,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5320
msgctxt "notebookbar_compact|ReferencesMenuButton"
msgid "Reference_s"
-msgstr ""
+msgstr "Riferimen_ti"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5708
msgctxt "notebookbar_compact|ReferencesLabel"
@@ -11980,7 +11985,7 @@ msgstr "Revisione"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6706
msgctxt "notebookbar_compact|ViewMenuButton"
msgid "_View"
-msgstr ""
+msgstr "_Visualizza"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6758
msgctxt "notebookbar_compact|ViewLabel"
@@ -12007,7 +12012,7 @@ msgstr "A_llineamento"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8291
msgctxt "notebookbar_compact|GraphicMenuButton"
msgid "_Graphic"
-msgstr ""
+msgstr "Imma_gine"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8324
msgctxt "notebookbar_compact|ImageLabel"
@@ -12027,7 +12032,7 @@ msgstr "Disegno"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9651
msgctxt "notebookbar_compact|ObjectMenuButton:MenuDraw"
msgid "Object"
-msgstr ""
+msgstr "Oggetto"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9707
msgctxt "notebookbar_compact|FrameLabel"
@@ -12037,7 +12042,7 @@ msgstr "Oggetto"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9757
msgctxt "notebookbar_compact|ToolsMenuButton"
msgid "_Tools"
-msgstr ""
+msgstr "S_trumenti"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10600
msgctxt "notebookbar_compact|DevLabel"
@@ -13236,7 +13241,7 @@ msgstr "Aggiungi _spaziatura fra i paragrafi e le tabelle"
#: sw/uiconfig/swriter/ui/optcompatpage.ui:58
msgctxt "optcompatpage|format"
msgid "Add paragraph and table spacing at tops of pages"
-msgstr "Aggiungi spaziatura del paragrafo e della tabella all'inizio della pagina"
+msgstr "Aggiungi spaziatura del paragrafo e della tabella all'inizio delle pagine"
#: sw/uiconfig/swriter/ui/optcompatpage.ui:59
msgctxt "optcompatpage|format"
@@ -13285,8 +13290,8 @@ msgstr "Proteggi formulario"
#: sw/uiconfig/swriter/ui/optcompatpage.ui:68
msgctxt "optcompatpage|format"
-msgid "MS Word-compatible trailing blanks"
-msgstr "Spazi posteriori compatibili con MS Word"
+msgid "Word-compatible trailing blanks"
+msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:69
msgctxt "optcompatpage|format"
@@ -13295,7 +13300,7 @@ msgstr "Tollera le righe bianche sullo sfondo dei PDF per la compatibilità con
#: sw/uiconfig/swriter/ui/optcompatpage.ui:70
msgctxt "optcompatpage|format"
-msgid "A database field (e.g., MailMerge) with empty value hides its paragraph"
+msgid "Hide paragraphs of database fields (e.g., mail merge) with an empty value"
msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:71
@@ -13311,7 +13316,7 @@ msgstr "Usa come _predefinito"
#: sw/uiconfig/swriter/ui/optcompatpage.ui:105
msgctxt "optcompatpage|label11"
msgid "Compatibility options for “%DOCNAME”"
-msgstr ""
+msgstr "Opzioni di compatibilità per “%DOCNAME”"
#: sw/uiconfig/swriter/ui/optfonttabpage.ui:103
msgctxt "optfonttabpage|font_label"
@@ -14980,7 +14985,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/queryredlinedialog.ui:13
msgctxt "queryredlinedialog|QueryRedlineDialog"
msgid "AutoCorrect completed."
-msgstr ""
+msgstr "La correzione automatica è terminata."
#: sw/uiconfig/swriter/ui/queryredlinedialog.ui:14
msgctxt "queryredlinedialog|QueryRedlineDialog"
@@ -14988,21 +14993,23 @@ msgid ""
"You can accept or reject all changes,\n"
"or accept or reject particular changes."
msgstr ""
+"Puoi accettare o rifiutare tutte le modifiche oppure\n"
+"accettarle o rifiutarle singolarmente."
#: sw/uiconfig/swriter/ui/queryredlinedialog.ui:26
msgctxt "queryredlinedialog|cancel"
msgid "Reject All"
-msgstr ""
+msgstr "Rifiuta tutto"
#: sw/uiconfig/swriter/ui/queryredlinedialog.ui:39
msgctxt "queryredlinedialog|ok"
msgid "Accept All"
-msgstr ""
+msgstr "Accetta tutto"
#: sw/uiconfig/swriter/ui/queryredlinedialog.ui:55
msgctxt "queryredlinedialog|edit"
msgid "Edit Changes"
-msgstr ""
+msgstr "Varia le modifiche"
#: sw/uiconfig/swriter/ui/queryrotateintostandarddialog.ui:7
msgctxt "queryrotateintostandarddialog|QueryRotateIntoStandardOrientationDialog"
@@ -15979,122 +15986,122 @@ msgctxt "tableproperties|background"
msgid "Background"
msgstr "Sfondo"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:25
-msgctxt "tabletextflowpage|liststore1"
-msgid "Horizontal"
-msgstr "Orizzontale"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:29
-msgctxt "tabletextflowpage|liststore1"
-msgid "Vertical"
-msgstr "Verticale"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:33
-msgctxt "tabletextflowpage|liststore1"
-msgid "Use superordinate object settings"
-msgstr "Usa le impostazioni dell'oggetto superiore"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:47
-msgctxt "tabletextflowpage|liststore2"
-msgid "Top"
-msgstr "In alto"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:51
-msgctxt "tabletextflowpage|liststore2"
-msgid "Centered"
-msgstr "Centrato"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:55
-msgctxt "tabletextflowpage|liststore2"
-msgid "Bottom"
-msgstr "In basso"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:97
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:53
msgctxt "tabletextflowpage|break"
msgid "_Break"
msgstr "S_uddividi"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:112
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:68
msgctxt "tabletextflowpage|page"
msgid "_Page"
msgstr "_Pagina"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:132
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:87
msgctxt "tabletextflowpage|column"
msgid "Col_umn"
msgstr "_Colonna"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:151
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:106
msgctxt "tabletextflowpage|before"
msgid "Be_fore"
msgstr "Da_vanti"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:171
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:125
msgctxt "tabletextflowpage|after"
msgid "_After"
msgstr "Do_po"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:203
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:158
msgctxt "tabletextflowpage|pagestyle"
msgid "With Page St_yle"
msgstr "Con st_ile di pagina"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:224
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:177
msgctxt "tabletextflowpage|pagenoft"
msgid "Page _number"
msgstr "_Numero di pagina"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:257
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:213
msgctxt "tabletextflowpage|pagestylelb-atkobject"
msgid "With Page Style"
msgstr "Con stile di pagina"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:274
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:230
msgctxt "tabletextflowpage|split"
msgid "Allow _table to split across pages and columns"
msgstr "Consenti la divisione della _tabella tra pagine e colonne"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:289
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:245
msgctxt "tabletextflowpage|splitrow"
msgid "Allow row to break a_cross pages and columns"
msgstr "_Consenti l'interruzione delle righe tra pagine e colonne"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:306
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:262
msgctxt "tabletextflowpage|keep"
msgid "_Keep with next paragraph"
msgstr "_Mantieni con il paragrafo successivo"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:328
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:284
msgctxt "tabletextflowpage|label40"
msgid "Text _orientation"
msgstr "_Orientazione del testo"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:361
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:298
+msgctxt "tabletextflowpage|liststore1"
+msgid "Horizontal"
+msgstr "Orizzontale"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:299
+msgctxt "tabletextflowpage|liststore1"
+msgid "Vertical"
+msgstr "Verticale"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:300
+msgctxt "tabletextflowpage|liststore1"
+msgid "Use superordinate object settings"
+msgstr "Usa le impostazioni dell'oggetto superiore"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:321
msgctxt "tabletextflowpage|headline"
msgid "R_epeat heading"
msgstr "R_ipeti intestazione"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:383
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:343
msgctxt "tabletextflowpage|label38"
msgid "The first "
msgstr "Le prime "
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:396
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:356
msgctxt "tabletextflowpage|label39"
msgid "rows"
msgstr "righe"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:434
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:395
msgctxt "tabletextflowpage|label35"
msgid "Text Flow"
msgstr "Flusso di testo"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:467
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:428
msgctxt "tabletextflowpage|label41"
msgid "_Vertical alignment"
msgstr "Allineamento _verticale"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:495
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:442
+msgctxt "tabletextflowpage|liststore2"
+msgid "Top"
+msgstr "In alto"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:443
+msgctxt "tabletextflowpage|liststore2"
+msgid "Centered"
+msgstr "Centrato"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:444
+msgctxt "tabletextflowpage|liststore2"
+msgid "Bottom"
+msgstr "In basso"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:460
msgctxt "tabletextflowpage|label36"
msgid "Alignment"
msgstr "Allineamento"
@@ -16876,8 +16883,8 @@ msgstr "Indice analitico"
#: sw/uiconfig/swriter/ui/tocindexpage.ui:58
msgctxt "tocindexpage|liststore1"
-msgid "Illustration Index"
-msgstr "Indice delle illustrazioni"
+msgid "Table of Figures"
+msgstr ""
#: sw/uiconfig/swriter/ui/tocindexpage.ui:62
msgctxt "tocindexpage|liststore1"
diff --git a/source/it/uui/messages.po b/source/it/uui/messages.po
index ecf39255fc7..d55cc945ac4 100644
--- a/source/it/uui/messages.po
+++ b/source/it/uui/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: 2018-05-22 13:16+0200\n"
-"PO-Revision-Date: 2018-01-09 18:32+0000\n"
-"Last-Translator: Marina Latini <marina@studiostorti.com>\n"
+"PO-Revision-Date: 2018-06-03 11:18+0000\n"
+"Last-Translator: Valter Mura <valtermura@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: it\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1515522735.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1528024726.000000\n"
#: uui/inc/ids.hrc:27
msgctxt "RID_UUI_ERRHDL"
@@ -504,6 +504,9 @@ msgid ""
"\n"
"Open document read-only, or ignore own file locking and open the document for editing."
msgstr ""
+"Il documento '$(ARG1)' è bloccato per la modifica su un altro sistema dal $(ARG2)\n"
+"\n"
+"Apri il documento in sola lettura, o apri il file per la modifica ignorando il blocco."
#: uui/inc/strings.hrc:35
msgctxt "STR_ALREADYOPEN_READONLY_BTN"
@@ -522,6 +525,9 @@ msgid ""
"\n"
"Close document on other system and retry saving or ignore own file locking and save current document."
msgstr ""
+"Il documento '$(ARG1)' è bloccato per la modifica su un altro sistema dal $(ARG2)\n"
+"\n"
+"Chiudi il documento sull'altro sistema e riprova a salvare, o salva il documento corrente ignorando il blocco."
#: uui/inc/strings.hrc:38
msgctxt "STR_ALREADYOPEN_RETRY_SAVE_BTN"
@@ -579,6 +585,13 @@ msgid ""
"\n"
"$(ARG3)"
msgstr ""
+"Il documento '$(ARG1)' non è modificabile perché bloccato da:\n"
+"\n"
+"$(ARG2)\n"
+"\n"
+"Apri il documento in sola lettura oppure modifica una copia.\n"
+"\n"
+"$(ARG3)"
#: uui/inc/strings.hrc:51
msgctxt "STR_OPENLOCKED_ALLOWIGNORE_MSG"
@@ -612,6 +625,9 @@ msgid ""
"\n"
"Do you want to save anyway?"
msgstr ""
+"Il file è stato modificato da quando è stato aperto per la modifica con %PRODUCTNAME. Salvare questa versione del documento sovrascriverà le modifiche fatte da altri.\n"
+"\n"
+"Vuoi salvare comunque?"
#: uui/inc/strings.hrc:58
msgctxt "STR_FILECHANGED_SAVEANYWAY_BTN"
@@ -632,6 +648,11 @@ msgid ""
"\n"
"Try again later to save document or save a copy of that document."
msgstr ""
+"Il documento '$(ARG1)' è bloccato per la modifica da:\n"
+"\n"
+"$(ARG2)\n"
+"\n"
+"Riprova a salvare più tardi oppure salva una copia del documento."
#: uui/inc/strings.hrc:62
msgctxt "STR_OVERWRITE_IGNORELOCK_MSG"
@@ -814,6 +835,9 @@ msgid ""
"\n"
"Macros may contain viruses. Disabling macros for a document is always safe. If you disable macros you may lose functionality provided by the document macros."
msgstr ""
+"Il documento contiene macro.\n"
+"\n"
+"Le macro possono contenere virus. La disabilitazione delle macro per un documento è sempre una soluzione sicura. Disabilitando le macro, potresti perdere alcune funzionalità fornite dalle macro del documento."
#: uui/uiconfig/ui/macrowarnmedium.ui:28
msgctxt "macrowarnmedium|cancel"
diff --git a/source/it/vcl/messages.po b/source/it/vcl/messages.po
index b3541536d18..e19ad1eaf35 100644
--- a/source/it/vcl/messages.po
+++ b/source/it/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: 2018-05-08 15:10+0200\n"
-"PO-Revision-Date: 2017-12-21 13:44+0000\n"
+"PO-Revision-Date: 2018-06-03 11:19+0000\n"
"Last-Translator: Valter Mura <valtermura@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: it\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1513863843.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1528024787.000000\n"
#. To translators: This is the first entry of a sequence of paper size names
#: vcl/inc/print.hrc:28
@@ -1239,7 +1239,7 @@ msgstr "Layout di pagina"
#: vcl/uiconfig/ui/printdialog.ui:1457
msgctxt "printdialog|singleprintjob"
msgid "Create separate print jobs for collated output"
-msgstr ""
+msgstr "Crea ordini di stampa separati per la fascicolatura"
#: vcl/uiconfig/ui/printdialog.ui:1472
msgctxt "printdialog|printpaperfromsetup"
@@ -1349,7 +1349,7 @@ msgstr "_Dimensione carta:"
#: vcl/uiconfig/ui/printerpaperpage.ui:32
msgctxt "printerpaperpage|orientft"
msgid "_Orientation:"
-msgstr ""
+msgstr "_Orientazione:"
#: vcl/uiconfig/ui/printerpaperpage.ui:45
msgctxt "printerpaperpage|duplexft"
@@ -1374,7 +1374,7 @@ msgstr "Orizzontale"
#: vcl/uiconfig/ui/printerpaperpage.ui:113
msgctxt "printerpaperpage|papersizefromsetup"
msgid "Use only paper size from printer preferences"
-msgstr ""
+msgstr "Usa dimensione carta solo da impostazioni stampante"
#: vcl/uiconfig/ui/printerpropertiesdialog.ui:8
msgctxt "printerpropertiesdialog|PrinterPropertiesDialog"
diff --git a/source/it/writerperfect/messages.po b/source/it/writerperfect/messages.po
index 39e7eaee512..b3cb6a3f73a 100644
--- a/source/it/writerperfect/messages.po
+++ b/source/it/writerperfect/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: 2018-05-16 16:54+0200\n"
-"PO-Revision-Date: 2018-01-13 13:13+0000\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
+"PO-Revision-Date: 2018-06-03 11:21+0000\n"
"Last-Translator: Valter Mura <valtermura@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: it\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1515849238.000000\n"
+"X-POOTLE-MTIME: 1528024869.000000\n"
#: writerperfect/inc/strings.hrc:15
msgctxt "STR_ENCODING_DIALOG_TITLE"
@@ -64,102 +64,102 @@ msgstr "Esportazione EPUB"
#: writerperfect/uiconfig/ui/exportepub.ui:91
msgctxt "exportepub|generalft"
msgid "General"
-msgstr ""
+msgstr "Generale"
-#: writerperfect/uiconfig/ui/exportepub.ui:122
+#: writerperfect/uiconfig/ui/exportepub.ui:121
msgctxt "exportepub|versionft"
msgid "Version:"
msgstr "Versione:"
-#: writerperfect/uiconfig/ui/exportepub.ui:139
+#: writerperfect/uiconfig/ui/exportepub.ui:138
msgctxt "exportepub|epub3"
msgid "EPUB 3.0"
msgstr "EPUB 3.0"
-#: writerperfect/uiconfig/ui/exportepub.ui:140
+#: writerperfect/uiconfig/ui/exportepub.ui:139
msgctxt "exportepub|epub2"
msgid "EPUB 2.0"
msgstr "EPUB 2.0"
-#: writerperfect/uiconfig/ui/exportepub.ui:175
+#: writerperfect/uiconfig/ui/exportepub.ui:174
msgctxt "exportepub|splitft"
msgid "Split method:"
msgstr "Metodo di separazione:"
-#: writerperfect/uiconfig/ui/exportepub.ui:192
+#: writerperfect/uiconfig/ui/exportepub.ui:191
msgctxt "exportepub|splitpage"
msgid "Page break"
msgstr "Interruzione di pagina"
-#: writerperfect/uiconfig/ui/exportepub.ui:193
+#: writerperfect/uiconfig/ui/exportepub.ui:192
msgctxt "exportepub|splitheading"
msgid "Heading"
msgstr "Intestazione"
-#: writerperfect/uiconfig/ui/exportepub.ui:228
+#: writerperfect/uiconfig/ui/exportepub.ui:227
msgctxt "exportepub|layoutft"
msgid "Layout method:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:245
+#: writerperfect/uiconfig/ui/exportepub.ui:244
msgctxt "exportepub|layoutreflowable"
msgid "Reflowable"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:246
+#: writerperfect/uiconfig/ui/exportepub.ui:245
msgctxt "exportepub|layoutfixed"
msgid "Fixed"
-msgstr ""
+msgstr "Fisso"
-#: writerperfect/uiconfig/ui/exportepub.ui:281
+#: writerperfect/uiconfig/ui/exportepub.ui:280
msgctxt "exportepub|coverimageft"
msgid "Custom cover image:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:311
+#: writerperfect/uiconfig/ui/exportepub.ui:310
msgctxt "exportepub|coverbutton"
msgid "Browse..."
-msgstr ""
+msgstr "Sfoglia..."
-#: writerperfect/uiconfig/ui/exportepub.ui:355
+#: writerperfect/uiconfig/ui/exportepub.ui:354
msgctxt "exportepub|mediadirft"
msgid "Custom media directory:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:385
+#: writerperfect/uiconfig/ui/exportepub.ui:384
msgctxt "exportepub|mediabutton"
msgid "Browse..."
-msgstr ""
+msgstr "Sfoglia..."
-#: writerperfect/uiconfig/ui/exportepub.ui:429
+#: writerperfect/uiconfig/ui/exportepub.ui:428
msgctxt "exportepub|metadataft"
msgid "Metadata"
-msgstr ""
+msgstr "Metadati"
-#: writerperfect/uiconfig/ui/exportepub.ui:470
+#: writerperfect/uiconfig/ui/exportepub.ui:468
msgctxt "exportepub|identifierft"
msgid "Identifier:"
-msgstr ""
+msgstr "Identificatore:"
-#: writerperfect/uiconfig/ui/exportepub.ui:485
+#: writerperfect/uiconfig/ui/exportepub.ui:483
msgctxt "exportepub|titleft"
msgid "Title:"
-msgstr ""
+msgstr "Titolo:"
-#: writerperfect/uiconfig/ui/exportepub.ui:511
+#: writerperfect/uiconfig/ui/exportepub.ui:509
msgctxt "exportepub|authorft"
msgid "Author:"
-msgstr ""
+msgstr "Autore:"
-#: writerperfect/uiconfig/ui/exportepub.ui:537
+#: writerperfect/uiconfig/ui/exportepub.ui:535
msgctxt "exportepub|languageft"
msgid "Language:"
-msgstr ""
+msgstr "Lingua:"
-#: writerperfect/uiconfig/ui/exportepub.ui:563
+#: writerperfect/uiconfig/ui/exportepub.ui:561
msgctxt "exportepub|dateft"
msgid "Date:"
-msgstr ""
+msgstr "Data:"
#: writerperfect/uiconfig/ui/wpftencodingdialog.ui:67
msgctxt "wpftencodingdialog|label"
diff --git a/source/ja/cui/messages.po b/source/ja/cui/messages.po
index ec40527449d..ff2531c896d 100644
--- a/source/ja/cui/messages.po
+++ b/source/ja/cui/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: 2018-05-22 13:16+0200\n"
-"PO-Revision-Date: 2018-05-15 00:48+0000\n"
-"Last-Translator: Takeshi Abe <tabe@fixedpoint.jp>\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
+"PO-Revision-Date: 2018-06-12 10:26+0000\n"
+"Last-Translator: baffclan <baffclan@yahoo.co.jp>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ja\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1526345296.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1528799195.000000\n"
#: cui/inc/personalization.hrc:31
msgctxt "RID_SVXSTR_PERSONA_CATEGORIES"
@@ -971,12 +971,12 @@ msgstr "有効でない"
#: cui/inc/strings.hrc:221
msgctxt "STR_CLOSELINKMSG"
msgid "Are you sure you want to remove the selected link?"
-msgstr "選択されたリンクを削除してよろしいですか?"
+msgstr "選択されたリンクを削除してよろしいですか?"
#: cui/inc/strings.hrc:222
msgctxt "STR_CLOSELINKMSG_MULTI"
msgid "Are you sure you want to remove the selected link?"
-msgstr "選択されたリンクを削除してよろしいですか?"
+msgstr "選択されたリンクを削除してよろしいですか?"
#: cui/inc/strings.hrc:223
msgctxt "STR_WAITINGLINK"
@@ -3708,7 +3708,7 @@ msgstr ""
#: cui/uiconfig/ui/colorconfigwin.ui:839
msgctxt "colorconfigwin|formulas"
msgid "Formulas"
-msgstr ""
+msgstr "数式"
#: cui/uiconfig/ui/colorconfigwin.ui:862
msgctxt "colorconfigwin|text"
@@ -9872,97 +9872,97 @@ msgctxt "positionsizedialog|PositionAndSizeDialog"
msgid "Position and Size"
msgstr "位置およびサイズ"
-#: cui/uiconfig/ui/positionsizedialog.ui:107
+#: cui/uiconfig/ui/positionsizedialog.ui:136
msgctxt "positionsizedialog|RID_SVXPAGE_POSITION_SIZE"
msgid "Position and Size"
msgstr "位置およびサイズ"
-#: cui/uiconfig/ui/positionsizedialog.ui:129
+#: cui/uiconfig/ui/positionsizedialog.ui:182
msgctxt "positionsizedialog|RID_SVXPAGE_SWPOSSIZE"
msgid "Position and Size"
msgstr "位置およびサイズ"
-#: cui/uiconfig/ui/positionsizedialog.ui:152
+#: cui/uiconfig/ui/positionsizedialog.ui:229
msgctxt "positionsizedialog|RID_SVXPAGE_ANGLE"
msgid "Rotation"
msgstr "回転"
-#: cui/uiconfig/ui/positionsizedialog.ui:175
+#: cui/uiconfig/ui/positionsizedialog.ui:276
msgctxt "positionsizedialog|RID_SVXPAGE_SLANT"
msgid "Slant & Corner Radius"
msgstr "傾斜角度 / 角の半径"
-#: cui/uiconfig/ui/possizetabpage.ui:40
+#: cui/uiconfig/ui/possizetabpage.ui:61
msgctxt "possizetabpage|FT_POS_X"
msgid "Position _X:"
msgstr "_X位置:"
-#: cui/uiconfig/ui/possizetabpage.ui:56
+#: cui/uiconfig/ui/possizetabpage.ui:75
msgctxt "possizetabpage|FT_POS_Y"
msgid "Position _Y:"
msgstr "_Y位置:"
-#: cui/uiconfig/ui/possizetabpage.ui:110
+#: cui/uiconfig/ui/possizetabpage.ui:128
msgctxt "possizetabpage|FT_POSREFERENCE"
msgid "_Base point:"
msgstr "基点(_B):"
-#: cui/uiconfig/ui/possizetabpage.ui:148
+#: cui/uiconfig/ui/possizetabpage.ui:182
msgctxt "possizetabpage|label1"
msgid "Position"
msgstr "位置"
-#: cui/uiconfig/ui/possizetabpage.ui:190
+#: cui/uiconfig/ui/possizetabpage.ui:224
msgctxt "possizetabpage|FT_WIDTH"
msgid "Wi_dth:"
msgstr "幅(_D):"
-#: cui/uiconfig/ui/possizetabpage.ui:206
+#: cui/uiconfig/ui/possizetabpage.ui:238
msgctxt "possizetabpage|FT_HEIGHT"
msgid "H_eight:"
msgstr "高さ(_E):"
-#: cui/uiconfig/ui/possizetabpage.ui:247
+#: cui/uiconfig/ui/possizetabpage.ui:276
msgctxt "possizetabpage|CBX_SCALE"
msgid "_Keep ratio"
msgstr "縦横比を固定する(_K)"
-#: cui/uiconfig/ui/possizetabpage.ui:279
+#: cui/uiconfig/ui/possizetabpage.ui:307
msgctxt "possizetabpage|FT_SIZEREFERENCE"
msgid "Base _point:"
msgstr "基点(_P):"
-#: cui/uiconfig/ui/possizetabpage.ui:317
+#: cui/uiconfig/ui/possizetabpage.ui:361
msgctxt "possizetabpage|label2"
msgid "Size"
msgstr "サイズ"
-#: cui/uiconfig/ui/possizetabpage.ui:356
+#: cui/uiconfig/ui/possizetabpage.ui:401
msgctxt "possizetabpage|TSB_POSPROTECT"
msgid "Positio_n"
msgstr "位置(_N)"
-#: cui/uiconfig/ui/possizetabpage.ui:373
+#: cui/uiconfig/ui/possizetabpage.ui:418
msgctxt "possizetabpage|TSB_SIZEPROTECT"
msgid "_Size"
msgstr "サイズ(_S)"
-#: cui/uiconfig/ui/possizetabpage.ui:397
+#: cui/uiconfig/ui/possizetabpage.ui:441
msgctxt "possizetabpage|label3"
msgid "Protect"
msgstr "保護"
-#: cui/uiconfig/ui/possizetabpage.ui:430
+#: cui/uiconfig/ui/possizetabpage.ui:475
msgctxt "possizetabpage|TSB_AUTOGROW_WIDTH"
msgid "_Fit width to text"
msgstr "テキストに幅を合わせる(_F)"
-#: cui/uiconfig/ui/possizetabpage.ui:447
+#: cui/uiconfig/ui/possizetabpage.ui:492
msgctxt "possizetabpage|TSB_AUTOGROW_HEIGHT"
msgid "Fit _height to text"
msgstr "テキストに高さを合わせる(_H)"
-#: cui/uiconfig/ui/possizetabpage.ui:471
+#: cui/uiconfig/ui/possizetabpage.ui:515
msgctxt "possizetabpage|label4"
msgid "Adapt"
msgstr "枠合わせ"
@@ -10162,47 +10162,47 @@ msgctxt "recordnumberdialog|label2"
msgid "go to record"
msgstr "レコードへ移動"
-#: cui/uiconfig/ui/rotationtabpage.ui:52
+#: cui/uiconfig/ui/rotationtabpage.ui:56
msgctxt "rotationtabpage|FT_POS_X"
msgid "Position _X:"
msgstr "_X位置:"
-#: cui/uiconfig/ui/rotationtabpage.ui:66
+#: cui/uiconfig/ui/rotationtabpage.ui:70
msgctxt "rotationtabpage|FT_POS_Y"
msgid "Position _Y:"
msgstr "_Y位置:"
-#: cui/uiconfig/ui/rotationtabpage.ui:116
+#: cui/uiconfig/ui/rotationtabpage.ui:123
msgctxt "rotationtabpage|FT_POSPRESETS"
msgid "_Default settings:"
msgstr "デフォルト設定(_D):"
-#: cui/uiconfig/ui/rotationtabpage.ui:130
+#: cui/uiconfig/ui/rotationtabpage.ui:151
msgctxt "rotationtabpage|CTL_RECT|tooltip_text"
msgid "Rotation point"
msgstr "回転させる点"
-#: cui/uiconfig/ui/rotationtabpage.ui:155
+#: cui/uiconfig/ui/rotationtabpage.ui:178
msgctxt "rotationtabpage|label1"
msgid "Pivot Point"
msgstr "回転ポイント"
-#: cui/uiconfig/ui/rotationtabpage.ui:197
+#: cui/uiconfig/ui/rotationtabpage.ui:220
msgctxt "rotationtabpage|FT_ANGLE"
msgid "_Angle:"
msgstr "角度(_A):"
-#: cui/uiconfig/ui/rotationtabpage.ui:238
+#: cui/uiconfig/ui/rotationtabpage.ui:263
msgctxt "rotationtabpage|FT_ANGLEPRESETS"
msgid "Default _settings:"
msgstr "デフォルトの設定(_S):"
-#: cui/uiconfig/ui/rotationtabpage.ui:252
+#: cui/uiconfig/ui/rotationtabpage.ui:287
msgctxt "rotationtabpage|CTL_ANGLE|tooltip_text"
msgid "Rotation Angle"
msgstr "回転角度"
-#: cui/uiconfig/ui/rotationtabpage.ui:277
+#: cui/uiconfig/ui/rotationtabpage.ui:314
msgctxt "rotationtabpage|label2"
msgid "Rotation Angle"
msgstr "回転角度"
@@ -10550,7 +10550,7 @@ msgstr "コメントを追加:"
#: cui/uiconfig/ui/signsignatureline.ui:241
msgctxt "signsignatureline|label_hint"
msgid "Instructions from the document creator:"
-msgstr ""
+msgstr "文書作成者からの指示:"
#: cui/uiconfig/ui/signsignatureline.ui:274
msgctxt "signsignatureline|label_more"
@@ -10582,52 +10582,52 @@ msgctxt "similaritysearchdialog|relaxbox"
msgid "_Combine"
msgstr "結合(_C)"
-#: cui/uiconfig/ui/slantcornertabpage.ui:50
+#: cui/uiconfig/ui/slantcornertabpage.ui:70
msgctxt "slantcornertabpage|label5"
msgid "_X:"
msgstr "_X:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:88
+#: cui/uiconfig/ui/slantcornertabpage.ui:110
msgctxt "slantcornertabpage|label6"
msgid "_Y:"
msgstr "_Y:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:125
+#: cui/uiconfig/ui/slantcornertabpage.ui:149
msgctxt "slantcornertabpage|label3"
msgid "Control Point 1"
msgstr "コントロールポイント1"
-#: cui/uiconfig/ui/slantcornertabpage.ui:159
+#: cui/uiconfig/ui/slantcornertabpage.ui:183
msgctxt "slantcornertabpage|FT_RADIUS"
msgid "_Radius:"
msgstr "半径(_R):"
-#: cui/uiconfig/ui/slantcornertabpage.ui:189
+#: cui/uiconfig/ui/slantcornertabpage.ui:214
msgctxt "slantcornertabpage|label1"
msgid "Corner Radius"
msgstr "角の半径"
-#: cui/uiconfig/ui/slantcornertabpage.ui:223
+#: cui/uiconfig/ui/slantcornertabpage.ui:248
msgctxt "slantcornertabpage|FT_ANGLE"
msgid "_Angle:"
msgstr "角度(_A):"
-#: cui/uiconfig/ui/slantcornertabpage.ui:253
+#: cui/uiconfig/ui/slantcornertabpage.ui:279
msgctxt "slantcornertabpage|label2"
msgid "Slant"
msgstr "傾斜"
-#: cui/uiconfig/ui/slantcornertabpage.ui:294
+#: cui/uiconfig/ui/slantcornertabpage.ui:320
msgctxt "slantcornertabpage|label4"
msgid "_X:"
msgstr "_X:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:332
+#: cui/uiconfig/ui/slantcornertabpage.ui:360
msgctxt "slantcornertabpage|label7"
msgid "_Y:"
msgstr "_Y:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:369
+#: cui/uiconfig/ui/slantcornertabpage.ui:399
msgctxt "slantcornertabpage|label8"
msgid "Control Point 2"
msgstr "コントロールポイント2"
@@ -10907,112 +10907,112 @@ msgctxt "storedwebconnectiondialog|change"
msgid "_Change Password..."
msgstr "パスワードの変更(_C)..."
-#: cui/uiconfig/ui/swpossizepage.ui:74
+#: cui/uiconfig/ui/swpossizepage.ui:85
msgctxt "swpossizepage|widthft"
msgid "_Width:"
msgstr "幅(_W):"
-#: cui/uiconfig/ui/swpossizepage.ui:111
+#: cui/uiconfig/ui/swpossizepage.ui:123
msgctxt "swpossizepage|heightft"
msgid "H_eight:"
msgstr "高さ(_E):"
-#: cui/uiconfig/ui/swpossizepage.ui:128
+#: cui/uiconfig/ui/swpossizepage.ui:141
msgctxt "swpossizepage|ratio"
msgid "_Keep ratio"
msgstr "縦横比を固定する(_K)"
-#: cui/uiconfig/ui/swpossizepage.ui:149
+#: cui/uiconfig/ui/swpossizepage.ui:162
msgctxt "swpossizepage|label2"
msgid "Size"
msgstr "サイズ"
-#: cui/uiconfig/ui/swpossizepage.ui:205
+#: cui/uiconfig/ui/swpossizepage.ui:218
msgctxt "swpossizepage|topage"
msgid "To _page"
msgstr "ページヘ(_P)"
-#: cui/uiconfig/ui/swpossizepage.ui:222
+#: cui/uiconfig/ui/swpossizepage.ui:234
msgctxt "swpossizepage|topara"
msgid "To paragrap_h"
msgstr "段落へ(_H)"
-#: cui/uiconfig/ui/swpossizepage.ui:238
+#: cui/uiconfig/ui/swpossizepage.ui:250
msgctxt "swpossizepage|tochar"
msgid "To cha_racter"
msgstr "文字へ(_R)"
-#: cui/uiconfig/ui/swpossizepage.ui:254
+#: cui/uiconfig/ui/swpossizepage.ui:266
msgctxt "swpossizepage|aschar"
msgid "_As character"
msgstr "文字として(_A)"
-#: cui/uiconfig/ui/swpossizepage.ui:270
+#: cui/uiconfig/ui/swpossizepage.ui:282
msgctxt "swpossizepage|toframe"
msgid "To _frame"
msgstr "枠へ(_F)"
-#: cui/uiconfig/ui/swpossizepage.ui:292
+#: cui/uiconfig/ui/swpossizepage.ui:304
msgctxt "swpossizepage|label1"
msgid "Anchor"
msgstr "アンカー"
-#: cui/uiconfig/ui/swpossizepage.ui:333
+#: cui/uiconfig/ui/swpossizepage.ui:344
msgctxt "swpossizepage|horiposft"
msgid "Hori_zontal:"
msgstr "横位置(_Z):"
-#: cui/uiconfig/ui/swpossizepage.ui:347
+#: cui/uiconfig/ui/swpossizepage.ui:358
msgctxt "swpossizepage|horibyft"
msgid "b_y:"
msgstr "間隔(_Y):"
-#: cui/uiconfig/ui/swpossizepage.ui:361
+#: cui/uiconfig/ui/swpossizepage.ui:372
msgctxt "swpossizepage|vertbyft"
msgid "_by:"
msgstr "間隔(_B):"
-#: cui/uiconfig/ui/swpossizepage.ui:375
+#: cui/uiconfig/ui/swpossizepage.ui:386
msgctxt "swpossizepage|horitoft"
msgid "_to:"
msgstr "基準(_T):"
-#: cui/uiconfig/ui/swpossizepage.ui:421
+#: cui/uiconfig/ui/swpossizepage.ui:433
msgctxt "swpossizepage|vertposft"
msgid "_Vertical:"
msgstr "縦位置(_V):"
-#: cui/uiconfig/ui/swpossizepage.ui:457
+#: cui/uiconfig/ui/swpossizepage.ui:470
msgctxt "swpossizepage|verttoft"
msgid "t_o:"
msgstr "基準(_O):"
-#: cui/uiconfig/ui/swpossizepage.ui:478
+#: cui/uiconfig/ui/swpossizepage.ui:492
msgctxt "swpossizepage|mirror"
msgid "_Mirror on even pages"
msgstr "偶数ページでは反転(_M)"
-#: cui/uiconfig/ui/swpossizepage.ui:495
+#: cui/uiconfig/ui/swpossizepage.ui:509
msgctxt "swpossizepage|followtextflow"
msgid "Follow te_xt flow"
msgstr "体裁に従う(_X)"
-#: cui/uiconfig/ui/swpossizepage.ui:518
+#: cui/uiconfig/ui/swpossizepage.ui:532
msgctxt "swpossizepage|label11"
msgid "Position"
msgstr "位置"
-#: cui/uiconfig/ui/swpossizepage.ui:549
+#: cui/uiconfig/ui/swpossizepage.ui:563
msgctxt "swpossizepage|pos"
msgid "Positio_n"
msgstr "位置(_N)"
-#: cui/uiconfig/ui/swpossizepage.ui:565
+#: cui/uiconfig/ui/swpossizepage.ui:579
msgctxt "swpossizepage|size"
msgid "_Size"
msgstr "サイズ(_S)"
-#: cui/uiconfig/ui/swpossizepage.ui:587
+#: cui/uiconfig/ui/swpossizepage.ui:601
msgctxt "swpossizepage|label3"
msgid "Protect"
msgstr "保護"
@@ -11202,12 +11202,12 @@ msgctxt "textattrtabpage|label2"
msgid "Spacing to Borders"
msgstr "境界との間隔"
-#: cui/uiconfig/ui/textattrtabpage.ui:425
+#: cui/uiconfig/ui/textattrtabpage.ui:423
msgctxt "textattrtabpage|TSB_FULL_WIDTH"
msgid "Full _width"
msgstr "全幅(_W)"
-#: cui/uiconfig/ui/textattrtabpage.ui:448
+#: cui/uiconfig/ui/textattrtabpage.ui:446
msgctxt "textattrtabpage|label3"
msgid "Text Anchor"
msgstr "テキストアンカー"
diff --git a/source/ja/dbaccess/messages.po b/source/ja/dbaccess/messages.po
index 5412a934445..6bfd227efba 100644
--- a/source/ja/dbaccess/messages.po
+++ b/source/ja/dbaccess/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: 2018-04-23 18:10+0200\n"
-"PO-Revision-Date: 2018-05-10 00:29+0000\n"
-"Last-Translator: Takeshi Abe <tabe@fixedpoint.jp>\n"
+"PO-Revision-Date: 2018-06-06 11:53+0000\n"
+"Last-Translator: baffclan <baffclan@yahoo.co.jp>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ja\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1525912152.000000\n"
+"X-POOTLE-MTIME: 1528286019.000000\n"
#: dbaccess/inc/query.hrc:26
msgctxt "RSC_QUERY_OBJECT_TYPE"
@@ -1773,7 +1773,7 @@ msgstr "これ以上の設定は不要です。接続が有効であるかどう
#: dbaccess/inc/strings.hrc:379
msgctxt "STR_COMMONURL"
msgid "Datasource URL (e.g. host=$host:$port dbname=$database)"
-msgstr ""
+msgstr "データーソース URL (例. host=$host:$port dbname=$database)"
#: dbaccess/inc/strings.hrc:380
msgctxt "STR_HOSTNAME"
@@ -3224,7 +3224,7 @@ msgstr "この文書には埋め込みHSQLデータが含まれていますが
#: dbaccess/uiconfig/ui/migrwarndlg.ui:12
msgctxt "migrationwarndialog|MigrationWarnDialog"
msgid "Would you like to migrate to Firebird now?"
-msgstr "今Firebirdに移行しますか?"
+msgstr "今Firebirdに移行しますか?"
#: dbaccess/uiconfig/ui/migrwarndlg.ui:37
msgctxt "migrationwarndialog|later"
diff --git a/source/ja/filter/source/config/fragments/filters.po b/source/ja/filter/source/config/fragments/filters.po
index 0502b5ce590..ef549431b64 100644
--- a/source/ja/filter/source/config/fragments/filters.po
+++ b/source/ja/filter/source/config/fragments/filters.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: 2018-05-16 16:54+0200\n"
-"PO-Revision-Date: 2018-05-17 11:35+0000\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
+"PO-Revision-Date: 2018-06-06 01:19+0000\n"
"Last-Translator: baffclan <baffclan@yahoo.co.jp>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ja\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1526556910.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1528247989.000000\n"
#: ADO_rowset_XML.xcu
msgctxt ""
@@ -463,8 +463,8 @@ msgctxt ""
"MS Word 2003 XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Word 2003 XML"
-msgstr "Microsoft Word 2003 XML"
+msgid "Word 2003 XML"
+msgstr "Word 2003 XML"
#: MS_Word_2007_XML.xcu
msgctxt ""
@@ -1282,8 +1282,8 @@ msgctxt ""
"Calc MS Excel 2007 VBA XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Excel 2007-2016 XML (macro enabled)"
-msgstr "Microsoft Excel 2007-2016 XML (マクロ有効)"
+msgid "Excel 2007–2019 (macro-enabled)"
+msgstr "Excel 2007–2019 (マクロ有効)"
#: calc_MS_Excel_2007_XML.xcu
msgctxt ""
diff --git a/source/ja/filter/source/config/fragments/types.po b/source/ja/filter/source/config/fragments/types.po
index e52869d2b68..2746d22c551 100644
--- a/source/ja/filter/source/config/fragments/types.po
+++ b/source/ja/filter/source/config/fragments/types.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: 2018-05-08 15:11+0200\n"
-"PO-Revision-Date: 2018-05-11 10:41+0000\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
+"PO-Revision-Date: 2018-06-05 13:07+0000\n"
"Last-Translator: baffclan <baffclan@yahoo.co.jp>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ja\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1526035282.000000\n"
+"X-POOTLE-MTIME: 1528204064.000000\n"
#: MS_Excel_2007_Binary.xcu
msgctxt ""
@@ -292,8 +292,8 @@ msgctxt ""
"writer_MS_Word_2003_XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Word 2003 XML"
-msgstr "Microsoft Word 2003 XML"
+msgid "Word 2003 XML"
+msgstr "Word 2003 XML"
#: writer_MS_Word_2007_XML.xcu
msgctxt ""
diff --git a/source/ja/fpicker/messages.po b/source/ja/fpicker/messages.po
index f1c32b94c3e..f4c933ce9ca 100644
--- a/source/ja/fpicker/messages.po
+++ b/source/ja/fpicker/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2018-02-28 00:33+0000\n"
"Last-Translator: Takeshi Abe <tabe@fixedpoint.jp>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -272,13 +272,13 @@ msgstr "GPG キーで暗号化する"
#: fpicker/uiconfig/ui/foldernamedialog.ui:8
msgctxt "foldernamedialog|FolderNameDialog"
-msgid "Folder Name ?"
-msgstr "フォルダー名?"
+msgid "Folder Name"
+msgstr ""
#: fpicker/uiconfig/ui/foldernamedialog.ui:91
msgctxt "foldernamedialog|label2"
-msgid "Na_me"
-msgstr "名前(_M)"
+msgid "Na_me:"
+msgstr ""
#: fpicker/uiconfig/ui/foldernamedialog.ui:122
msgctxt "foldernamedialog|label1"
diff --git a/source/ja/helpcontent2/source/text/shared/00.po b/source/ja/helpcontent2/source/text/shared/00.po
index 18960e3d843..e375b7923b9 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2016-09-06 04:45+0000\n"
"Last-Translator: baffclan <baffclan@yahoo.co.jp>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -397,16 +397,16 @@ msgctxt ""
"00000001.xhp\n"
"hd_id3149670\n"
"help.text"
-msgid "Back"
-msgstr "元に戻す"
+msgid "Reset"
+msgstr ""
#: 00000001.xhp
msgctxt ""
"00000001.xhp\n"
"par_id3145068\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optionsdialog/revert\">Resets modified values back to the $[officename] default values.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/optionsdialog/revert\">変更した値を $[officename] スタート時の値に戻します。</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optionsdialog/revert\">Resets changes made to the current tab to those applicable when this dialog was opened.</ahelp>"
+msgstr ""
#: 00000001.xhp
msgctxt ""
@@ -552,6 +552,54 @@ msgctxt ""
msgid "<variable id=\"ShiftF1\">Press Shift+F1 and point to a control to learn more about that control.</variable>"
msgstr ""
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"hd_id631527692833772\n"
+"help.text"
+msgid "Options dialog buttons"
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"hd_id831527692839432\n"
+"help.text"
+msgid "OK"
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"par_id471527692844934\n"
+"help.text"
+msgid "Save the changes in the page and close the Options dialog."
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"hd_id261527692850720\n"
+"help.text"
+msgid "Cancel"
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"par_id571527692855533\n"
+"help.text"
+msgid "Close the Options dialog and discard all changes done."
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"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 Options dialog."
+msgstr ""
+
#: 00000002.xhp
msgctxt ""
"00000002.xhp\n"
@@ -11125,16 +11173,16 @@ msgctxt ""
"00040502.xhp\n"
"par_id3151293\n"
"help.text"
-msgid "<variable id=\"linienstile\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Line Styles</emph> tab </variable>"
-msgstr "<variable id=\"linienstile\"><emph>書式 → </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>オブジェクト → </emph></caseinline><caseinline select=\"CALC\"><emph>グラフィック → </emph></caseinline></switchinline><emph>線 - 線スタイル</emph>タブを選択</variable>"
+msgid "<variable id=\"linienstile\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Line Styles</emph> tab</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3149317\n"
"help.text"
-msgid "<variable id=\"linienenden\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Arrow Styles</emph> tab </variable>"
-msgstr "<variable id=\"linienenden\"><emph>書式 → </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>オブジェクト → </emph></caseinline><caseinline select=\"CALC\"><emph>グラフィック → </emph></caseinline></switchinline><emph>線 → 線の終点</emph>タブを選択</variable>"
+msgid "<variable id=\"linienenden\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Arrow Styles</emph> tab</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
@@ -11173,15 +11221,15 @@ msgctxt ""
"00040502.xhp\n"
"par_id3154948\n"
"help.text"
-msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Area</emph> tab"
-msgstr "<emph>書式 → </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>オブジェクト → </emph></caseinline><caseinline select=\"CALC\"><emph>グラフィック → </emph></caseinline></switchinline><emph>表面 → 表面</emph>タブを選択"
+msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Area</emph> tab."
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3145607\n"
"help.text"
-msgid "Choose <emph>View - Styles</emph> - open context menu and choose <emph>Modify/New - Area</emph> tab (presentation documents)"
+msgid "Choose <emph>View - Styles</emph> - open context menu and choose <emph>Modify/New - Area</emph> tab (presentation documents)."
msgstr ""
#: 00040502.xhp
@@ -11189,47 +11237,47 @@ msgctxt ""
"00040502.xhp\n"
"par_id3152922\n"
"help.text"
-msgid "Choose <emph>Format - Title - Area</emph> tab (chart documents)"
-msgstr "メニュー <emph>書式 → タイトル</emph> → <emph>表面</emph> タブ (グラフドキュメント)"
+msgid "Choose <emph>Format - Title - Area</emph> tab (chart documents)."
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3157894\n"
"help.text"
-msgid "Choose <emph>Format - Legend - Area</emph> tab (chart documents)"
-msgstr "メニュー <emph>書式 → 凡例...</emph> → <emph>表面</emph> タブ (グラフドキュメント)"
+msgid "Choose <emph>Format - Legend - Area</emph> tab (chart documents)."
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3144444\n"
"help.text"
-msgid "Choose <emph>Format - Chart Wall - Area</emph> tab (chart documents)"
-msgstr "メニュー <emph>書式 → グラフの壁面...</emph> → <emph>表面</emph> (グラフドキュメント)"
+msgid "Choose <emph>Format - Chart Wall - Area</emph> tab (chart documents)."
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3156543\n"
"help.text"
-msgid "Choose <emph>Format - Chart Floor - Area</emph> tab (chart documents)"
-msgstr "メニュー <emph>書式 → グラフの床面...</emph> → <emph>表面</emph> タブ (グラフドキュメント)"
+msgid "Choose <emph>Format - Chart Floor - Area</emph> tab (chart documents)."
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3150685\n"
"help.text"
-msgid "Choose <emph>Format - Chart Area - Area</emph> tab (chart documents)"
-msgstr "メニュー <emph>書式 → グラフの表面...</emph> → <emph>表面</emph> タブ (グラフドキュメント)"
+msgid "Choose <emph>Format - Chart Area - Area</emph> tab (chart documents)."
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3149664\n"
"help.text"
-msgid "Choose <emph>Slide - Properties - Background</emph> tab (in $[officename] Impress)"
+msgid "Choose <emph>Slide - Properties - Background</emph> tab (in $[officename] Impress)."
msgstr ""
#: 00040502.xhp
@@ -11237,7 +11285,15 @@ msgctxt ""
"00040502.xhp\n"
"par_id9149694\n"
"help.text"
-msgid "Choose <emph>Page - Properties - Background</emph> tab (in $[officename] Draw)"
+msgid "Choose <emph>Page - Properties - Background</emph> tab (in $[officename] Draw)."
+msgstr ""
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id841527083135387\n"
+"help.text"
+msgid "Choose <emph>Table - Properties - Background</emph> tab."
msgstr ""
#: 00040502.xhp
@@ -11349,32 +11405,32 @@ msgctxt ""
"00040502.xhp\n"
"par_id3150011\n"
"help.text"
-msgid "<variable id=\"schatte\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Shadow</emph> tab </variable>"
-msgstr "<variable id=\"schatte\"><emph>書式 → </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>オブジェクト → </emph></caseinline><caseinline select=\"CALC\"><emph>グラフィック → </emph></caseinline></switchinline><emph>表面 → 影</emph>タブを選択します。</variable>"
+msgid "<variable id=\"schatte\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Shadow</emph> tab</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3147441\n"
"help.text"
-msgid "<variable id=\"verlauf\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Gradients</emph> tab </variable>"
-msgstr "<variable id=\"verlauf\"><emph>書式 → </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>オブジェクト → </emph></caseinline><caseinline select=\"CALC\"><emph>グラフィック → </emph></caseinline></switchinline><emph>表面 → グラデーション</emph>タブを選択</variable>"
+msgid "<variable id=\"verlauf\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Gradients</emph> tab</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3155308\n"
"help.text"
-msgid "<variable id=\"schraffur\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Hatching</emph> tab </variable>"
-msgstr "<variable id=\"schraffur\"><emph>書式 → </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>オブジェクト → </emph></caseinline><caseinline select=\"CALC\"><emph>グラフィック → </emph></caseinline></switchinline><emph>表面 → ハッチング</emph>タブを選択</variable>"
+msgid "<variable id=\"schraffur\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Hatching</emph> tab</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3145800\n"
"help.text"
-msgid "<variable id=\"bitmap\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Bitmaps</emph> tab </variable>"
-msgstr "<variable id=\"bitmap\"><emph>書式 → </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>オブジェクト → </emph></caseinline><caseinline select=\"CALC\"><emph>グラフィック → </emph></caseinline></switchinline><emph>表面 → ビットマップ</emph>タブを選択</variable>"
+msgid "<variable id=\"bitmap\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Bitmaps</emph> tab</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
@@ -11413,8 +11469,8 @@ msgctxt ""
"00040502.xhp\n"
"par_id3156286\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F4 key </caseinline><caseinline select=\"IMPRESS\">F4 key </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F4 キー</caseinline><caseinline select=\"IMPRESS\">F4 キー </caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F4 key</caseinline><caseinline select=\"IMPRESS\">F4 key</caseinline></switchinline>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
@@ -11453,8 +11509,8 @@ msgctxt ""
"00040502.xhp\n"
"par_id3153099\n"
"help.text"
-msgid "<variable id=\"position2\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Position and Size</emph> tab </variable>"
-msgstr "<variable id=\"position2\"><emph>書式 → </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>オブジェクト → </emph></caseinline><caseinline select=\"CALC\"><emph>グラフィック → </emph></caseinline></switchinline><emph>位置とサイズ → 位置およびサイズ</emph>タブを選択</variable>"
+msgid "<variable id=\"position2\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Position and Size</emph> tab</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
@@ -11485,16 +11541,16 @@ msgctxt ""
"00040502.xhp\n"
"par_id3145666\n"
"help.text"
-msgid "<variable id=\"ecke\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Slant & Corner Radius</emph> tab </variable>"
-msgstr "<variable id=\"ecke\"><emph>書式 → </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>オブジェクト → </emph></caseinline><caseinline select=\"CALC\"><emph>グラフィック → </emph></caseinline></switchinline><emph>位置とサイズ → 傾斜角度 / 角の半径</emph>タブを選択</variable>"
+msgid "<variable id=\"ecke\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Slant & Corner Radius</emph> tab</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3146081\n"
"help.text"
-msgid "<variable id=\"legende\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Callout</emph> tab (only for textbox callouts, not for custom shapes callouts) </variable>"
-msgstr "<variable id=\"legende\"><emph>書式 → </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>オブジェクト → </emph></caseinline><caseinline select=\"CALC\"><emph>図 → </emph></caseinline></switchinline><emph>位置とサイズ → 吹き出し</emph> タブを選択 (独自図形の吹き出しではなく、テキストボックス吹き出しの場合のみ)</variable>"
+msgid "<variable id=\"legende\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Callout</emph> tab (only for textbox callouts, not for custom shapes callouts)</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
@@ -11517,8 +11573,8 @@ msgctxt ""
"00040502.xhp\n"
"par_id3149019\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F8 key </caseinline><caseinline select=\"IMPRESS\">F8 key </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F8 キー</caseinline><caseinline select=\"IMPRESS\">F8 キー</caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F8 key</caseinline><caseinline select=\"IMPRESS\">F8 key</caseinline></switchinline>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
@@ -11805,8 +11861,8 @@ msgctxt ""
"00040502.xhp\n"
"par_id3153076\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Align Center Horizontally </caseinline><defaultinline>Centered</defaultinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">水平方向で中央に揃える</caseinline><defaultinline>中央揃え</defaultinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Align Center Horizontally</caseinline><defaultinline>Centered</defaultinline></switchinline>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
@@ -11845,8 +11901,8 @@ msgctxt ""
"00040502.xhp\n"
"par_id3150527\n"
"help.text"
-msgid "<variable id=\"font\">Click <emph>Fontwork</emph> icon on <emph>Drawing</emph> bar </variable>"
-msgstr "<variable id=\"font\"><emph>図形描画</emph> バーの <emph>フォントワーク</emph> アイコンをクリック </variable>"
+msgid "<variable id=\"font\">Click <emph>Fontwork</emph> icon on <emph>Drawing</emph> bar</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
diff --git a/source/ja/helpcontent2/source/text/shared/01.po b/source/ja/helpcontent2/source/text/shared/01.po
index 9a80cd19b71..f8f756d0913 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: 2018-05-23 23:19+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2016-07-06 07:19+0000\n"
"Last-Translator: baffclan <baffclan@yahoo.co.jp>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -23587,6 +23587,22 @@ msgstr ""
#: 05210100.xhp
msgctxt ""
"05210100.xhp\n"
+"hd_id471527077476052\n"
+"help.text"
+msgid "Cell, Row or Table background selector"
+msgstr ""
+
+#: 05210100.xhp
+msgctxt ""
+"05210100.xhp\n"
+"par_id661527077493366\n"
+"help.text"
+msgid "Select the table object which background area is to be filled."
+msgstr ""
+
+#: 05210100.xhp
+msgctxt ""
+"05210100.xhp\n"
"hd_id3147373\n"
"help.text"
msgid "None"
@@ -31205,24 +31221,24 @@ msgctxt ""
"06040100.xhp\n"
"hd_id3145072\n"
"help.text"
-msgid "Automatic *bold* and _underline_"
-msgstr "自動的に *太字* を太字に _下線_ を下線付きに"
+msgid "Automatic *bold*, /italic/, -strikeout- and _underline_"
+msgstr ""
#: 06040100.xhp
msgctxt ""
"06040100.xhp\n"
"par_id3153577\n"
"help.text"
-msgid "Automatically applies bold formatting to text enclosed by asterisks (*), and underline to text enclosed by underscores ( _ ), for example, *bold*. The asterisks and underscores are not displayed after the formatting is applied."
-msgstr "自動的に、アスタリスク (*) で囲まれたテキスト (*bold* など) に太字の書式設定を適用し、アンダースコア ( _ ) で囲まれたテキストにアンダーラインを適用します。 アスタリスクとアンダースコアは書式設定の適用後には表示されません。"
+msgid "Automatically applies bold, italic, strikethrough or underline formatting to text enclosed by asterisks (*), slashes (/), hyphens (-), and underscores (_), respectively. These characters disappear after the formatting is applied."
+msgstr ""
#: 06040100.xhp
msgctxt ""
"06040100.xhp\n"
"par_id3153127\n"
"help.text"
-msgid "This feature does not work if the formatting characters * or _ are entered with an <link href=\"text/shared/00/00000005.xhp#IME\" name=\"Input Method Editor\">Input Method Editor</link>."
-msgstr "<link href=\"text/shared/00/00000005.xhp#IME\" name=\"IME\">IME</link> で書式設定記号の * や _ を入力した場合、この機能は働きません。"
+msgid "This feature does not work if the formatting characters <item type=\"literal\">* / - _</item> are entered with an <link href=\"text/shared/00/00000005.xhp#IME\" name=\"Input Method Editor\">Input Method Editor</link>."
+msgstr ""
#: 06040100.xhp
msgctxt ""
diff --git a/source/ja/helpcontent2/source/text/shared/optionen.po b/source/ja/helpcontent2/source/text/shared/optionen.po
index 4fbe4470b2a..2ad7348c6db 100644
--- a/source/ja/helpcontent2/source/text/shared/optionen.po
+++ b/source/ja/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: 2018-05-08 15:10+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2017-01-09 11:22+0000\n"
"Last-Translator: Ikuya Awashiro <ikuya@fruitsbasket.info>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -83,6 +83,22 @@ msgstr ""
#: 01000000.xhp
msgctxt ""
"01000000.xhp\n"
+"hd_id551527692881035\n"
+"help.text"
+msgid "Help"
+msgstr ""
+
+#: 01000000.xhp
+msgctxt ""
+"01000000.xhp\n"
+"par_id831527692885723\n"
+"help.text"
+msgid "Opens the help contents for the Options page displayed."
+msgstr ""
+
+#: 01000000.xhp
+msgctxt ""
+"01000000.xhp\n"
"hd_id3159149\n"
"help.text"
msgid "<link href=\"text/shared/optionen/01010000.xhp\" name=\"$[officename]\">%PRODUCTNAME</link>"
@@ -4565,8 +4581,8 @@ msgctxt ""
"01030300.xhp\n"
"par_idN10640\n"
"help.text"
-msgid "Options"
-msgstr "オプション"
+msgid "Security Options and Warnings"
+msgstr ""
#: 01030300.xhp
msgctxt ""
@@ -4597,8 +4613,8 @@ msgctxt ""
"01030300.xhp\n"
"hd_id3168736\n"
"help.text"
-msgid "Persistently save passwords protected by a master password"
-msgstr "マスターパスワードによって保護されたパスワードを継続的に保存"
+msgid "Persistently save passwords for web connections"
+msgstr ""
#: 01030300.xhp
msgctxt ""
@@ -4613,8 +4629,24 @@ msgctxt ""
"01030300.xhp\n"
"hd_id3901791\n"
"help.text"
+msgid "Protected by a master password (recommended)"
+msgstr ""
+
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"par_id31527711486980\n"
+"help.text"
+msgid "Check to enable all connections' passwords to be protected by a master password."
+msgstr ""
+
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"hd_id141527711343312\n"
+"help.text"
msgid "Master Password"
-msgstr "マスターパスワード"
+msgstr ""
#: 01030300.xhp
msgctxt ""
@@ -13733,7 +13765,7 @@ msgctxt ""
"java.xhp\n"
"hd_id3148618\n"
"help.text"
-msgid "Optional (unstable) options"
+msgid "Optional Features"
msgstr ""
#: java.xhp
@@ -13749,7 +13781,7 @@ msgctxt ""
"java.xhp\n"
"par_id3156344\n"
"help.text"
-msgid "It enables features that are not yet complete or contain known bugs. The list of these features is different version by version, or even it can be empty."
+msgid "Enables features that are not yet complete or may contain known bugs. The list of these features is different version by version, or even it can be empty."
msgstr ""
#: java.xhp
@@ -13765,7 +13797,7 @@ msgctxt ""
"java.xhp\n"
"par_id3156345\n"
"help.text"
-msgid "It enables macro recording, so the <link href=\"text/shared/guide/macro_recording.xhp\" name=\"Tools - Macros - Record Macro\"><item type=\"menuitem\">Tools - Macros - Record Macro</item></link> menu item will be available."
+msgid "Enables macro recording. The <link href=\"text/shared/guide/macro_recording.xhp\" name=\"Tools - Macros - Record Macro\"><item type=\"menuitem\">Tools - Macros - Record Macro</item></link> menu item is available."
msgstr ""
#: java.xhp
diff --git a/source/ja/instsetoo_native/inc_openoffice/windows/msi_languages.po b/source/ja/instsetoo_native/inc_openoffice/windows/msi_languages.po
index 1b6d6327933..0385be753df 100644
--- a/source/ja/instsetoo_native/inc_openoffice/windows/msi_languages.po
+++ b/source/ja/instsetoo_native/inc_openoffice/windows/msi_languages.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: 2018-04-17 15:54+0200\n"
-"PO-Revision-Date: 2018-04-24 01:04+0000\n"
+"PO-Revision-Date: 2018-05-29 01:02+0000\n"
"Last-Translator: baffclan <baffclan@yahoo.co.jp>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ja\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1524531862.000000\n"
+"X-POOTLE-MTIME: 1527555721.000000\n"
#: ActionTe.ulf
msgctxt ""
@@ -3878,7 +3878,7 @@ msgctxt ""
"OOO_LAUNCH_3\n"
"LngText.text"
msgid "To install [ProductName] on Windows 8.1, at least April 2014 update rollup (MS KB 2919355) must be installed."
-msgstr ""
+msgstr "[ProductName] をWindows 8.1にインストールするには、少なくとも2014年4月の更新プログラムのロールアップ(MS KB 2919355)がインストールされている必要があります。"
#: Property.ulf
msgctxt ""
diff --git a/source/ja/officecfg/registry/data/org/openoffice/Office/UI.po b/source/ja/officecfg/registry/data/org/openoffice/Office/UI.po
index 28336b82a0d..1783d86bbec 100644
--- a/source/ja/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/ja/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-22 13:17+0200\n"
-"PO-Revision-Date: 2018-05-17 14:02+0000\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
+"PO-Revision-Date: 2018-06-02 12:04+0000\n"
"Last-Translator: baffclan <baffclan@yahoo.co.jp>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ja\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1526565762.000000\n"
+"X-POOTLE-MTIME: 1527941087.000000\n"
#: BaseWindowState.xcu
msgctxt ""
@@ -86,7 +86,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Repeat Search"
-msgstr ""
+msgstr "再検索"
#: BasicIDECommands.xcu
msgctxt ""
@@ -1193,7 +1193,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Conditional Formatting..."
-msgstr ""
+msgstr "条件付き書式..."
#: CalcCommands.xcu
msgctxt ""
@@ -1913,7 +1913,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "~Show..."
-msgstr ""
+msgstr "表示(~S)..."
#: CalcCommands.xcu
msgctxt ""
@@ -4370,7 +4370,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Formula Bar"
-msgstr ""
+msgstr "数式バー"
#: CalcWindowState.xcu
msgctxt ""
@@ -18664,7 +18664,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Fo~rm"
-msgstr ""
+msgstr "フォーム(~R)"
#: GenericCommands.xcu
msgctxt ""
@@ -20221,7 +20221,7 @@ msgctxt ""
"ContextLabel\n"
"value.text"
msgid "Clear ~Direct Formatting"
-msgstr ""
+msgstr "直接設定した書式の解除(~D)"
#: GenericCommands.xcu
msgctxt ""
@@ -20230,7 +20230,7 @@ msgctxt ""
"TooltipLabel\n"
"value.text"
msgid "Clear Direct Formatting"
-msgstr ""
+msgstr "直接設定した書式の解除"
#: GenericCommands.xcu
msgctxt ""
@@ -25351,7 +25351,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Groupedbar Compact"
-msgstr ""
+msgstr "グループバー コンパクト"
#: ToolbarMode.xcu
msgctxt ""
@@ -25360,7 +25360,7 @@ msgctxt ""
"Label\n"
"value.text"
msgid "Groupedbar"
-msgstr ""
+msgstr "グループバー"
#: ToolbarMode.xcu
msgctxt ""
@@ -26520,8 +26520,8 @@ msgctxt ""
"..WriterCommands.UserInterface.Commands..uno:TextAttributes\n"
"Label\n"
"value.text"
-msgid "Text Attributes"
-msgstr "テキストの属性"
+msgid "Text Attributes..."
+msgstr ""
#: WriterCommands.xcu
msgctxt ""
diff --git a/source/ja/readlicense_oo/docs.po b/source/ja/readlicense_oo/docs.po
index e6418d1a305..2fcff52c8cb 100644
--- a/source/ja/readlicense_oo/docs.po
+++ b/source/ja/readlicense_oo/docs.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: 2018-04-17 15:54+0200\n"
-"PO-Revision-Date: 2018-04-24 07:28+0000\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
+"PO-Revision-Date: 2018-06-06 11:57+0000\n"
"Last-Translator: baffclan <baffclan@yahoo.co.jp>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ja\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1524554932.000000\n"
+"X-POOTLE-MTIME: 1528286242.000000\n"
#: readme.xrm
msgctxt ""
@@ -54,7 +54,7 @@ msgctxt ""
"A10\n"
"readmeitem.text"
msgid "Is ${PRODUCTNAME} Really Free for Any User?"
-msgstr "${PRODUCTNAME} は本当にどの利用者に対してもフリーですか?"
+msgstr "${PRODUCTNAME} は本当にどの利用者に対してもフリーですか?"
#: readme.xrm
msgctxt ""
@@ -117,8 +117,8 @@ msgctxt ""
"readme.xrm\n"
"macxiOSX\n"
"readmeitem.text"
-msgid "MacOSX 10.8 (Mountain Lion) or higher"
-msgstr "MacOSX 10.8 (Mountain Lion) 以降"
+msgid "MacOSX 10.9 (Mavericks) or higher"
+msgstr ""
#: readme.xrm
msgctxt ""
diff --git a/source/ja/sc/messages.po b/source/ja/sc/messages.po
index acd295db37d..ab39f5f1727 100644
--- a/source/ja/sc/messages.po
+++ b/source/ja/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: 2018-05-22 13:16+0200\n"
-"PO-Revision-Date: 2018-05-23 23:55+0000\n"
+"POT-Creation-Date: 2018-06-12 14:40+0200\n"
+"PO-Revision-Date: 2018-06-14 00:08+0000\n"
"Last-Translator: Takeshi Abe <tabe@fixedpoint.jp>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ja\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1527119704.000000\n"
+"X-POOTLE-MTIME: 1528934896.000000\n"
#: sc/inc/compiler.hrc:27
msgctxt "RID_FUNCTION_CATEGORIES"
@@ -1870,16 +1870,21 @@ msgid "Nested arrays are not supported."
msgstr "入れ子の配列はサポートされません。"
#: sc/inc/globstr.hrc:390
+msgctxt "STR_ERR_LONG_BAD_ARRAY_CONTENT"
+msgid "Unsupported inline array content."
+msgstr ""
+
+#: sc/inc/globstr.hrc:391
msgctxt "STR_UNDO_TEXTTOCOLUMNS"
msgid "Text to Columns"
msgstr "テキストを列に"
-#: sc/inc/globstr.hrc:391
+#: sc/inc/globstr.hrc:392
msgctxt "STR_DOC_UPDATED"
msgid "Your spreadsheet has been updated with changes saved by other users."
msgstr "表計算ドキュメントは、ほかのユーザーが保存した変更で更新されました。"
-#: sc/inc/globstr.hrc:392
+#: sc/inc/globstr.hrc:393
msgctxt "STR_DOC_WILLBESAVED"
msgid ""
"The spreadsheet must be saved now to activate sharing mode.\n"
@@ -1890,7 +1895,7 @@ msgstr ""
"\n"
"続行しますか?"
-#: sc/inc/globstr.hrc:393
+#: sc/inc/globstr.hrc:394
msgctxt "STR_DOC_WILLNOTBESAVED"
msgid ""
"Already resolved merge conflicts will be lost and your changes to the shared spreadsheet will not be saved.\n"
@@ -1901,7 +1906,7 @@ msgstr ""
"\n"
"続行しますか?"
-#: sc/inc/globstr.hrc:394
+#: sc/inc/globstr.hrc:395
msgctxt "STR_DOC_DISABLESHARED"
msgid ""
"Disabling shared mode of a spreadsheet hinders all other users of the shared spreadsheet to merge back their work.\n"
@@ -1912,7 +1917,7 @@ msgstr ""
"\n"
"続行しますか?"
-#: sc/inc/globstr.hrc:395
+#: sc/inc/globstr.hrc:396
msgctxt "STR_DOC_NOLONGERSHARED"
msgid ""
"This spreadsheet is no longer in shared mode.\n"
@@ -1923,7 +1928,7 @@ msgstr ""
"\n"
"表計算ドキュメントを別のファイルに保存し、加えた変更を手動で共有表計算ドキュメントに反映させてください。"
-#: sc/inc/globstr.hrc:396
+#: sc/inc/globstr.hrc:397
msgctxt "STR_FILE_LOCKED_TRY_LATER"
msgid ""
"The shared spreadsheet file is locked due to a merge in progress by user: '%1'\n"
@@ -1934,7 +1939,7 @@ msgstr ""
"\n"
"ロックされたファイルの共有モードは、無効にできません。あとで再度試みてください。"
-#: sc/inc/globstr.hrc:397
+#: sc/inc/globstr.hrc:398
msgctxt "STR_FILE_LOCKED_SAVE_LATER"
msgid ""
"The shared spreadsheet file is locked due to a merge in progress by user: '%1'\n"
@@ -1945,147 +1950,147 @@ msgstr ""
"\n"
"あとで変更の保存を再度試みてください。"
-#: sc/inc/globstr.hrc:398
+#: sc/inc/globstr.hrc:399
msgctxt "STR_UNKNOWN_USER"
msgid "Unknown User"
msgstr "不明なユーザー"
-#: sc/inc/globstr.hrc:399
+#: sc/inc/globstr.hrc:400
msgctxt "STR_SHAPE_AUTOSHAPE"
msgid "AutoShape"
msgstr "オートシェイプ"
-#: sc/inc/globstr.hrc:400
+#: sc/inc/globstr.hrc:401
msgctxt "STR_SHAPE_RECTANGLE"
msgid "Rectangle"
msgstr "長方形"
-#: sc/inc/globstr.hrc:401
+#: sc/inc/globstr.hrc:402
msgctxt "STR_SHAPE_LINE"
msgid "Line"
msgstr "線"
-#: sc/inc/globstr.hrc:402
+#: sc/inc/globstr.hrc:403
msgctxt "STR_SHAPE_OVAL"
msgid "Oval"
msgstr "楕円"
-#: sc/inc/globstr.hrc:403
+#: sc/inc/globstr.hrc:404
msgctxt "STR_FORM_BUTTON"
msgid "Button"
msgstr "ボタン"
-#: sc/inc/globstr.hrc:404
+#: sc/inc/globstr.hrc:405
msgctxt "STR_FORM_CHECKBOX"
msgid "Check Box"
msgstr "チェックボックス"
-#: sc/inc/globstr.hrc:405
+#: sc/inc/globstr.hrc:406
msgctxt "STR_FORM_OPTIONBUTTON"
msgid "Option Button"
msgstr "オプションボタン"
-#: sc/inc/globstr.hrc:406
+#: sc/inc/globstr.hrc:407
msgctxt "STR_FORM_LABEL"
msgid "Label"
msgstr "ラベル"
-#: sc/inc/globstr.hrc:407
+#: sc/inc/globstr.hrc:408
msgctxt "STR_FORM_LISTBOX"
msgid "List Box"
msgstr "リストボックス"
-#: sc/inc/globstr.hrc:408
+#: sc/inc/globstr.hrc:409
msgctxt "STR_FORM_GROUPBOX"
msgid "Group Box"
msgstr "グループボックス"
-#: sc/inc/globstr.hrc:409
+#: sc/inc/globstr.hrc:410
msgctxt "STR_FORM_DROPDOWN"
msgid "Drop Down"
msgstr "ドロップダウン"
-#: sc/inc/globstr.hrc:410
+#: sc/inc/globstr.hrc:411
msgctxt "STR_FORM_SPINNER"
msgid "Spinner"
msgstr "スピナ"
-#: sc/inc/globstr.hrc:411
+#: sc/inc/globstr.hrc:412
msgctxt "STR_FORM_SCROLLBAR"
msgid "Scroll Bar"
msgstr "スクロールバー"
-#: sc/inc/globstr.hrc:412
+#: sc/inc/globstr.hrc:413
msgctxt "STR_STYLE_FAMILY_CELL"
msgid "Cell Styles"
msgstr "セルスタイル"
-#: sc/inc/globstr.hrc:413
+#: sc/inc/globstr.hrc:414
msgctxt "STR_STYLE_FAMILY_PAGE"
msgid "Page Styles"
msgstr "ページスタイル"
-#: sc/inc/globstr.hrc:414
+#: sc/inc/globstr.hrc:415
msgctxt "STR_ERR_DATAPILOTSOURCE"
msgid "Pivot table source data is invalid."
msgstr "ピボットテーブルのソースデータが無効です。"
-#: sc/inc/globstr.hrc:415
+#: sc/inc/globstr.hrc:416
msgctxt "STR_OPTIONS_WARN_SEPARATORS"
msgid "Because the current formula separator settings conflict with the locale, the formula separators have been reset to their default values."
msgstr "式に対する区切り子設定が現在のロケールと矛盾しているため、式に対する区切り子設定を既定値にリセットします。"
-#: sc/inc/globstr.hrc:416
+#: sc/inc/globstr.hrc:417
msgctxt "STR_UNDO_INSERT_CURRENT_DATE"
msgid "Insert Current Date"
msgstr "現在日付を挿入"
-#: sc/inc/globstr.hrc:417
+#: sc/inc/globstr.hrc:418
msgctxt "STR_UNDO_INSERT_CURRENT_TIME"
msgid "Insert Current Time"
msgstr "現在時刻を挿入"
-#: sc/inc/globstr.hrc:418
+#: sc/inc/globstr.hrc:419
msgctxt "STR_MANAGE_NAMES"
msgid "Manage Names..."
msgstr "名前の管理..."
-#: sc/inc/globstr.hrc:419
+#: sc/inc/globstr.hrc:420
msgctxt "STR_HEADER_NAME"
msgid "Name"
msgstr "名前"
-#: sc/inc/globstr.hrc:420
+#: sc/inc/globstr.hrc:421
msgctxt "STR_HEADER_RANGE_OR_EXPR"
msgid "Range or formula expression"
msgstr "参照範囲や数式"
-#: sc/inc/globstr.hrc:421
+#: sc/inc/globstr.hrc:422
msgctxt "STR_HEADER_SCOPE"
msgid "Scope"
msgstr "範囲"
-#: sc/inc/globstr.hrc:422
+#: sc/inc/globstr.hrc:423
msgctxt "STR_MULTI_SELECT"
msgid "(multiple)"
msgstr "(複数)"
-#: sc/inc/globstr.hrc:423
+#: sc/inc/globstr.hrc:424
msgctxt "STR_GLOBAL_SCOPE"
msgid "Document (Global)"
msgstr "ドキュメント (グローバル)"
-#: sc/inc/globstr.hrc:424
+#: sc/inc/globstr.hrc:425
msgctxt "STR_ERR_NAME_EXISTS"
msgid "Invalid name. Already in use for the selected scope."
msgstr "無効な名前です。選択された適用範囲で既に使われています。"
-#: sc/inc/globstr.hrc:425
+#: sc/inc/globstr.hrc:426
msgctxt "STR_ERR_NAME_INVALID"
msgid "Invalid name. Only use letters, numbers and underscore."
msgstr "無効な名前です。文字、数字、アンダースコアだけが使えます。"
-#: sc/inc/globstr.hrc:426
+#: sc/inc/globstr.hrc:427
msgctxt "STR_UNSAVED_EXT_REF"
msgid ""
"This Document contains external references to unsaved documents.\n"
@@ -2096,217 +2101,217 @@ msgstr ""
"\n"
"続行しますか?"
-#: sc/inc/globstr.hrc:427
+#: sc/inc/globstr.hrc:428
msgctxt "STR_CLOSE_WITH_UNSAVED_REFS"
msgid "This Document is referenced by another document and not yet saved. Closing it without saving will result in data loss."
msgstr "このドキュメントは他のドキュメントから参照されていますが、まだ保存されていません。保存せずに閉じるとデータが失われます。"
-#: sc/inc/globstr.hrc:428
+#: sc/inc/globstr.hrc:429
msgctxt "STR_HEADER_RANGE"
msgid "Range"
msgstr "参照範囲"
-#: sc/inc/globstr.hrc:429
+#: sc/inc/globstr.hrc:430
msgctxt "STR_HEADER_COND"
msgid "First Condition"
msgstr "最初の条件"
-#: sc/inc/globstr.hrc:430
+#: sc/inc/globstr.hrc:431
msgctxt "STR_COND_CONDITION"
msgid "Cell value is"
msgstr "セルの値が次の値"
-#: sc/inc/globstr.hrc:431
+#: sc/inc/globstr.hrc:432
msgctxt "STR_COND_COLORSCALE"
msgid "ColorScale"
msgstr "カラースケール"
-#: sc/inc/globstr.hrc:432
+#: sc/inc/globstr.hrc:433
msgctxt "STR_COND_DATABAR"
msgid "DataBar"
msgstr "データバー"
-#: sc/inc/globstr.hrc:433
+#: sc/inc/globstr.hrc:434
msgctxt "STR_COND_ICONSET"
msgid "IconSet"
msgstr "アイコンセット"
-#: sc/inc/globstr.hrc:434
+#: sc/inc/globstr.hrc:435
msgctxt "STR_COND_BETWEEN"
msgid "between"
msgstr "次の値の間"
-#: sc/inc/globstr.hrc:435
+#: sc/inc/globstr.hrc:436
msgctxt "STR_COND_NOTBETWEEN"
msgid "not between"
msgstr "次の値の間でない"
-#: sc/inc/globstr.hrc:436
+#: sc/inc/globstr.hrc:437
msgctxt "STR_COND_UNIQUE"
msgid "unique"
msgstr "一意"
-#: sc/inc/globstr.hrc:437
+#: sc/inc/globstr.hrc:438
msgctxt "STR_COND_DUPLICATE"
msgid "duplicate"
msgstr "重複"
-#: sc/inc/globstr.hrc:438
+#: sc/inc/globstr.hrc:439
msgctxt "STR_COND_FORMULA"
msgid "Formula is"
msgstr "数式が"
-#: sc/inc/globstr.hrc:439
+#: sc/inc/globstr.hrc:440
msgctxt "STR_COND_TOP10"
msgid "Top Elements"
msgstr "上位の要素"
-#: sc/inc/globstr.hrc:440
+#: sc/inc/globstr.hrc:441
msgctxt "STR_COND_BOTTOM10"
msgid "Bottom Elements"
msgstr "下位の要素"
-#: sc/inc/globstr.hrc:441
+#: sc/inc/globstr.hrc:442
msgctxt "STR_COND_TOP_PERCENT"
msgid "Top Percent"
msgstr "上位のパーセント"
-#: sc/inc/globstr.hrc:442
+#: sc/inc/globstr.hrc:443
msgctxt "STR_COND_DATE"
msgid "Date is"
msgstr "日付が"
-#: sc/inc/globstr.hrc:443
+#: sc/inc/globstr.hrc:444
msgctxt "STR_COND_BOTTOM_PERCENT"
msgid "Bottom Percent"
msgstr "下位のパーセント"
-#: sc/inc/globstr.hrc:444
+#: sc/inc/globstr.hrc:445
msgctxt "STR_COND_ABOVE_AVERAGE"
msgid "Above Average"
msgstr "平均より上"
-#: sc/inc/globstr.hrc:445
+#: sc/inc/globstr.hrc:446
msgctxt "STR_COND_BELOW_AVERAGE"
msgid "Below Average"
msgstr "平均より下"
-#: sc/inc/globstr.hrc:446
+#: sc/inc/globstr.hrc:447
msgctxt "STR_COND_ABOVE_EQUAL_AVERAGE"
msgid "Above or equal Average"
msgstr "平均以上"
-#: sc/inc/globstr.hrc:447
+#: sc/inc/globstr.hrc:448
msgctxt "STR_COND_BELOW_EQUAL_AVERAGE"
msgid "Below or equal Average"
msgstr "平均以下"
-#: sc/inc/globstr.hrc:448
+#: sc/inc/globstr.hrc:449
msgctxt "STR_COND_ERROR"
msgid "an Error code"
msgstr "エラーコード"
-#: sc/inc/globstr.hrc:449
+#: sc/inc/globstr.hrc:450
msgctxt "STR_COND_NOERROR"
msgid "not an Error code"
msgstr "エラーコードでない"
-#: sc/inc/globstr.hrc:450
+#: sc/inc/globstr.hrc:451
msgctxt "STR_COND_BEGINS_WITH"
msgid "Begins with"
msgstr "...で始まる"
-#: sc/inc/globstr.hrc:451
+#: sc/inc/globstr.hrc:452
msgctxt "STR_COND_ENDS_WITH"
msgid "Ends with"
msgstr "...で終わる"
-#: sc/inc/globstr.hrc:452
+#: sc/inc/globstr.hrc:453
msgctxt "STR_COND_CONTAINS"
msgid "Contains"
msgstr "...を含む"
-#: sc/inc/globstr.hrc:453
+#: sc/inc/globstr.hrc:454
msgctxt "STR_COND_NOT_CONTAINS"
msgid "Not Contains"
msgstr "...を含まない"
-#: sc/inc/globstr.hrc:454
+#: sc/inc/globstr.hrc:455
msgctxt "STR_COND_TODAY"
msgid "today"
msgstr "今日"
-#: sc/inc/globstr.hrc:455
+#: sc/inc/globstr.hrc:456
msgctxt "STR_COND_YESTERDAY"
msgid "yesterday"
msgstr "昨日"
-#: sc/inc/globstr.hrc:456
+#: sc/inc/globstr.hrc:457
msgctxt "STR_COND_TOMORROW"
msgid "tomorrow"
msgstr "明日"
-#: sc/inc/globstr.hrc:457
+#: sc/inc/globstr.hrc:458
msgctxt "STR_COND_LAST7DAYS"
msgid "in the last 7 days"
msgstr "最近7日間以内"
-#: sc/inc/globstr.hrc:458
+#: sc/inc/globstr.hrc:459
msgctxt "STR_COND_THISWEEK"
msgid "this week"
msgstr "今週"
-#: sc/inc/globstr.hrc:459
+#: sc/inc/globstr.hrc:460
msgctxt "STR_COND_LASTWEEK"
msgid "last week"
msgstr "先週"
-#: sc/inc/globstr.hrc:460
+#: sc/inc/globstr.hrc:461
msgctxt "STR_COND_NEXTWEEK"
msgid "next week"
msgstr "来週"
-#: sc/inc/globstr.hrc:461
+#: sc/inc/globstr.hrc:462
msgctxt "STR_COND_THISMONTH"
msgid "this month"
msgstr "今月"
-#: sc/inc/globstr.hrc:462
+#: sc/inc/globstr.hrc:463
msgctxt "STR_COND_LASTMONTH"
msgid "last month"
msgstr "先月"
-#: sc/inc/globstr.hrc:463
+#: sc/inc/globstr.hrc:464
msgctxt "STR_COND_NEXTMONTH"
msgid "next month"
msgstr "来月"
-#: sc/inc/globstr.hrc:464
+#: sc/inc/globstr.hrc:465
msgctxt "STR_COND_THISYEAR"
msgid "this year"
msgstr "今年"
-#: sc/inc/globstr.hrc:465
+#: sc/inc/globstr.hrc:466
msgctxt "STR_COND_LASTYEAR"
msgid "last year"
msgstr "昨年"
-#: sc/inc/globstr.hrc:466
+#: sc/inc/globstr.hrc:467
msgctxt "STR_COND_NEXTYEAR"
msgid "next year"
msgstr "来年"
-#: sc/inc/globstr.hrc:467
+#: sc/inc/globstr.hrc:468
msgctxt "STR_COND_AND"
msgid "and"
msgstr "および"
-#: sc/inc/globstr.hrc:468
+#: sc/inc/globstr.hrc:469
msgctxt "STR_ERR_CONDFORMAT_PROTECTED"
msgid "Conditional Formats can not be created, deleted or changed in protected sheets."
msgstr ""
-#: sc/inc/globstr.hrc:469
+#: sc/inc/globstr.hrc:470
msgctxt "STR_EDIT_EXISTING_COND_FORMATS"
msgid ""
"The selected cell already contains conditional formatting. You can either edit the existing conditional format or you define a new overlapping conditional format.\n"
@@ -2317,7 +2322,7 @@ msgstr ""
"\n"
"既存の条件付き書式を編集しますか?"
-#: sc/inc/globstr.hrc:470
+#: sc/inc/globstr.hrc:471
msgctxt "STR_QUERY_FORMULA_RECALC_ONLOAD_ODS"
msgid ""
"This document was last saved by an application other than %PRODUCTNAME. Some formula cells may produce different results when recalculated.\n"
@@ -2328,7 +2333,7 @@ msgstr ""
"\n"
"今、このドキュメントのすべての数式セルを再計算しますか?"
-#: sc/inc/globstr.hrc:471
+#: sc/inc/globstr.hrc:472
msgctxt "STR_QUERY_FORMULA_RECALC_ONLOAD_XLS"
msgid ""
"This document was last saved by Excel. Some formula cells may produce different results when recalculated.\n"
@@ -2339,77 +2344,77 @@ msgstr ""
"\n"
"今、このドキュメントのすべての数式セルを再計算しますか?"
-#: sc/inc/globstr.hrc:472
+#: sc/inc/globstr.hrc:473
msgctxt "STR_NO_INSERT_DELETE_OVER_PIVOT_TABLE"
msgid "You cannot insert or delete cells when the affected range intersects with pivot table."
msgstr "ピボットテーブルにまたがる範囲のセルを挿入したり削除したりすることはできません。"
-#: sc/inc/globstr.hrc:473
+#: sc/inc/globstr.hrc:474
msgctxt "STR_DPFIELD_GROUP_BY_SECONDS"
msgid "Seconds"
msgstr "秒"
-#: sc/inc/globstr.hrc:474
+#: sc/inc/globstr.hrc:475
msgctxt "STR_DPFIELD_GROUP_BY_MINUTES"
msgid "Minutes"
msgstr "分毎に行う"
-#: sc/inc/globstr.hrc:475
+#: sc/inc/globstr.hrc:476
msgctxt "STR_DPFIELD_GROUP_BY_HOURS"
msgid "Hours"
msgstr "時"
-#: sc/inc/globstr.hrc:476
+#: sc/inc/globstr.hrc:477
msgctxt "STR_DPFIELD_GROUP_BY_DAYS"
msgid "Days"
msgstr "週日"
-#: sc/inc/globstr.hrc:477
+#: sc/inc/globstr.hrc:478
msgctxt "STR_DPFIELD_GROUP_BY_MONTHS"
msgid "Months"
msgstr "月"
-#: sc/inc/globstr.hrc:478
+#: sc/inc/globstr.hrc:479
msgctxt "STR_DPFIELD_GROUP_BY_QUARTERS"
msgid "Quarters"
msgstr "四半期"
-#: sc/inc/globstr.hrc:479
+#: sc/inc/globstr.hrc:480
msgctxt "STR_DPFIELD_GROUP_BY_YEARS"
msgid "Years"
msgstr "年"
-#: sc/inc/globstr.hrc:480
+#: sc/inc/globstr.hrc:481
msgctxt "STR_INVALIDVAL"
msgid "Invalid target value."
msgstr "このターゲット値は無効です。"
-#: sc/inc/globstr.hrc:481
+#: sc/inc/globstr.hrc:482
msgctxt "STR_INVALIDVAR"
msgid "Undefined name for variable cell."
msgstr "変化させるセルが指定されていません。"
-#: sc/inc/globstr.hrc:482
+#: sc/inc/globstr.hrc:483
msgctxt "STR_INVALIDFORM"
msgid "Undefined name as formula cell."
msgstr "数式セルが指定されていません。"
-#: sc/inc/globstr.hrc:483
+#: sc/inc/globstr.hrc:484
msgctxt "STR_NOFORMULA"
msgid "Formula cell must contain a formula."
msgstr "数式セルには数式がなければなりません。"
-#: sc/inc/globstr.hrc:484
+#: sc/inc/globstr.hrc:485
msgctxt "STR_INVALIDINPUT"
msgid "Invalid input."
msgstr "入力が正しくありません。"
-#: sc/inc/globstr.hrc:485
+#: sc/inc/globstr.hrc:486
msgctxt "STR_INVALIDCONDITION"
msgid "Invalid condition."
msgstr "条件が正しくありません。"
-#: sc/inc/globstr.hrc:486
+#: sc/inc/globstr.hrc:487
msgctxt "STR_QUERYREMOVE"
msgid ""
"Should the entry\n"
@@ -2420,133 +2425,133 @@ msgstr ""
"#\n"
"を削除しますか?"
-#: sc/inc/globstr.hrc:487
+#: sc/inc/globstr.hrc:488
msgctxt "STR_COPYLIST"
msgid "Copy List"
msgstr "リストをコピーする"
-#: sc/inc/globstr.hrc:488
+#: sc/inc/globstr.hrc:489
msgctxt "STR_COPYFROM"
msgid "List from"
msgstr "リスト元"
-#: sc/inc/globstr.hrc:489
+#: sc/inc/globstr.hrc:490
msgctxt "STR_COPYERR"
msgid "Cells without text have been ignored."
msgstr "テキストのないセルは無視されました。"
-#: sc/inc/globstr.hrc:490
+#: sc/inc/globstr.hrc:491
#, c-format
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%s-click to follow hyperlink:"
msgstr "%s-クリックでリンクを開きます"
-#: sc/inc/globstr.hrc:491
+#: sc/inc/globstr.hrc:492
msgctxt "STR_CLICKHYPERLINK"
msgid "click to open hyperlink:"
msgstr "クリックでハイパーリンク先を開きます:"
-#: sc/inc/globstr.hrc:492
+#: sc/inc/globstr.hrc:493
msgctxt "STR_PRINT_PREVIEW_NODATA"
msgid "No Data"
msgstr "データなし"
-#: sc/inc/globstr.hrc:493
+#: sc/inc/globstr.hrc:494
msgctxt "STR_PRINT_PREVIEW_EMPTY_RANGE"
msgid "Print Range Empty"
msgstr "印刷範囲が空"
-#: sc/inc/globstr.hrc:494
+#: sc/inc/globstr.hrc:495
msgctxt "STR_UNDO_CONDFORMAT"
msgid "Conditional Format"
msgstr "条件付き書式"
-#: sc/inc/globstr.hrc:495
+#: sc/inc/globstr.hrc:496
msgctxt "STR_UNDO_CONDFORMAT_LIST"
msgid "Conditional Formats"
msgstr "条件付き書式"
-#: sc/inc/globstr.hrc:496
+#: sc/inc/globstr.hrc:497
msgctxt "STR_UNDO_FORMULA_TO_VALUE"
msgid "Convert Formula To Value"
msgstr "数式を数値に変換"
-#: sc/inc/globstr.hrc:497
+#: sc/inc/globstr.hrc:498
msgctxt "STR_UNQUOTED_STRING"
msgid "Strings without quotes are interpreted as column/row labels."
msgstr "引用符のない文字列は列/行ラベルとして解釈されます。"
-#: sc/inc/globstr.hrc:498
+#: sc/inc/globstr.hrc:499
msgctxt "STR_ENTER_VALUE"
msgid "Enter a value!"
msgstr "値を入力してください!"
-#: sc/inc/globstr.hrc:499
+#: sc/inc/globstr.hrc:500
msgctxt "STR_TABLE_COUNT"
msgid "Sheet %1 of %2"
msgstr "シート %1 / %2"
-#: sc/inc/globstr.hrc:500
+#: sc/inc/globstr.hrc:501
msgctxt "STR_FUNCTIONS_FOUND"
msgid "%1 and %2 more"
msgstr "%1 とあと %2"
-#: sc/inc/globstr.hrc:501
+#: sc/inc/globstr.hrc:502
msgctxt "STR_GENERAL"
msgid "General"
msgstr "一般"
-#: sc/inc/globstr.hrc:502
+#: sc/inc/globstr.hrc:503
msgctxt "STR_NUMBER"
msgid "Number"
msgstr "数"
-#: sc/inc/globstr.hrc:503
+#: sc/inc/globstr.hrc:504
msgctxt "STR_PERCENT"
msgid "Percent"
msgstr "パーセント"
-#: sc/inc/globstr.hrc:504
+#: sc/inc/globstr.hrc:505
msgctxt "STR_CURRENCY"
msgid "Currency"
msgstr "通貨"
-#: sc/inc/globstr.hrc:505
+#: sc/inc/globstr.hrc:506
msgctxt "STR_DATE"
msgid "Date"
msgstr "日付"
-#: sc/inc/globstr.hrc:506
+#: sc/inc/globstr.hrc:507
msgctxt "STR_TIME"
msgid "Time"
msgstr "時刻"
-#: sc/inc/globstr.hrc:507
+#: sc/inc/globstr.hrc:508
msgctxt "STR_SCIENTIFIC"
msgid "Scientific"
msgstr "指数表示"
-#: sc/inc/globstr.hrc:508
+#: sc/inc/globstr.hrc:509
msgctxt "STR_FRACTION"
msgid "Fraction"
msgstr "分数"
-#: sc/inc/globstr.hrc:509
+#: sc/inc/globstr.hrc:510
msgctxt "STR_BOOLEAN_VALUE"
msgid "Boolean Value"
msgstr "ブール値"
-#: sc/inc/globstr.hrc:510
+#: sc/inc/globstr.hrc:511
msgctxt "STR_TEXT"
msgid "Text"
msgstr "テキスト"
-#: sc/inc/globstr.hrc:511
+#: sc/inc/globstr.hrc:512
msgctxt "STR_QUERY_PIVOTTABLE_DELTAB"
msgid "The selected sheet(s) contain source data of related pivot tables that will be lost. Are you sure you want to delete the selected sheet(s)?"
msgstr "選択されたシートは失われる関連するピボットテーブルのソースデータを含んでいます。選択したシートを削除しますか?"
-#: sc/inc/globstr.hrc:512
+#: sc/inc/globstr.hrc:513
msgctxt "STR_ERR_NAME_INVALID_CELL_REF"
msgid "Invalid name. Reference to a cell, or a range of cells not allowed."
msgstr "不正な名前。セル、あるいはセル範囲への参照は許可されていません。"
@@ -10492,8 +10497,8 @@ msgstr "モード"
#: sc/inc/scfuncs.hrc:3010
msgctxt "SC_OPCODE_T_TEST"
-msgid "Mode specifies the number of distribution tails to return. 1= one-tailed, 2 = two-tailed distribution"
-msgstr "1 を指定すると片側検定、2 を指定すると両側検定を行います。"
+msgid "Mode specifies the number of distribution tails to return. 1 = one-tailed, 2 = two-tailed distribution"
+msgstr ""
#: sc/inc/scfuncs.hrc:3011
msgctxt "SC_OPCODE_T_TEST"
@@ -10537,8 +10542,8 @@ msgstr "モード"
#: sc/inc/scfuncs.hrc:3024
msgctxt "SC_OPCODE_T_TEST_MS"
-msgid "Mode specifies the number of distribution tails to return. 1= one-tailed, 2 = two-tailed distribution"
-msgstr "1 を指定すると片側検定、2 を指定すると両側検定を行います。"
+msgid "Mode specifies the number of distribution tails to return. 1 = one-tailed, 2 = two-tailed distribution"
+msgstr ""
#: sc/inc/scfuncs.hrc:3025
msgctxt "SC_OPCODE_T_TEST_MS"
@@ -13451,7 +13456,7 @@ msgstr "文字列で検索する開始位置。"
#: sc/inc/scfuncs.hrc:4098
msgctxt "SC_OPCODE_SEARCHB"
msgid "Looks for a string of text within another (not case sensitive), using byte positions."
-msgstr ""
+msgstr "検査対象の文字列の中にある、特定の文字列の位置を返します。アルファベットの大文字と小文字を区別しません。位置はバイト単位で数えます。"
#: sc/inc/scfuncs.hrc:4099
msgctxt "SC_OPCODE_SEARCHB"
@@ -14904,7 +14909,7 @@ msgstr ""
#: sc/inc/strings.hrc:326
msgctxt "STR_ZTEST_KNOWN_VARIANCE"
msgid "Known Variance"
-msgstr ""
+msgstr "既知の分散"
#: sc/inc/strings.hrc:327
msgctxt "STR_ZTEST_P_ONE_TAIL"
@@ -18024,22 +18029,22 @@ msgctxt "mergecellsdialog|MergeCellsDialog"
msgid "Merge Cells"
msgstr "セルの結合"
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:81
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:84
msgctxt "mergecellsdialog|label"
msgid "Some cells are not empty."
msgstr "先頭セル以外に空白でないセルがあります。"
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:96
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:99
msgctxt "mergecellsdialog|move-cells-radio"
msgid "Move the contents of the hidden cells into the first cell"
msgstr "非表示になるセルの内容を先頭セルに移動し、先頭セルの内容と統合する"
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:112
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:115
msgctxt "mergecellsdialog|empty-cells-radio"
msgid "Empty the contents of the hidden cells"
msgstr "非表示になるセルの内容は削除する"
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:128
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:131
msgctxt "mergecellsdialog|keep-content-radio"
msgid "Keep the contents of the hidden cells"
msgstr "非表示になるセルでその内容を保持する"
@@ -18388,7 +18393,7 @@ msgstr "データ"
#: sc/uiconfig/scalc/ui/notebookbar.ui:8035
msgctxt "notebookbar|ReviewMenuButton"
msgid "_Review"
-msgstr ""
+msgstr "レビュー(_R)"
#: sc/uiconfig/scalc/ui/notebookbar.ui:8120
msgctxt "notebookbar|ReviewLabel"
@@ -18408,7 +18413,7 @@ msgstr "表示"
#: sc/uiconfig/scalc/ui/notebookbar.ui:9008
msgctxt "notebookbar|GraphicMenuButton"
msgid "_Graphic"
-msgstr ""
+msgstr "図形(_G)"
#: sc/uiconfig/scalc/ui/notebookbar.ui:9949
msgctxt "notebookbar|ImageLabel"
@@ -22463,7 +22468,7 @@ msgstr "空のフィールドを省く(_D)"
#: sc/uiconfig/scalc/ui/textimportcsv.ui:319
msgctxt "textimportcsv|removespace"
msgid "Tr_im spaces"
-msgstr ""
+msgstr "空白文字を切り詰める(_I)"
#: sc/uiconfig/scalc/ui/textimportcsv.ui:337
msgctxt "textimportcsv|comma"
@@ -22493,7 +22498,7 @@ msgstr "その他"
#: sc/uiconfig/scalc/ui/textimportcsv.ui:444
msgctxt "textimportcsv|texttextdelimiter"
msgid "Strin_g delimiter:"
-msgstr ""
+msgstr "区切り文字(_G):"
#: sc/uiconfig/scalc/ui/textimportcsv.ui:494
msgctxt "textimportcsv|separatoroptions"
@@ -22503,7 +22508,7 @@ msgstr "区切りのオプション"
#: sc/uiconfig/scalc/ui/textimportcsv.ui:528
msgctxt "textimportcsv|quotedfieldastext"
msgid "F_ormat quoted field as text"
-msgstr ""
+msgstr "引用符で囲まれたフィールドを文字列として書式化(_O)"
#: sc/uiconfig/scalc/ui/textimportcsv.ui:544
msgctxt "textimportcsv|detectspecialnumbers"
diff --git a/source/ja/scp2/source/ooo.po b/source/ja/scp2/source/ooo.po
index 90e20b13ca8..81e9e1ae67d 100644
--- a/source/ja/scp2/source/ooo.po
+++ b/source/ja/scp2/source/ooo.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2018-05-23 23:20+0200\n"
-"PO-Revision-Date: 2018-01-21 12:16+0000\n"
+"PO-Revision-Date: 2018-05-27 11:47+0000\n"
"Last-Translator: baffclan <baffclan@yahoo.co.jp>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ja\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1516536984.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1527421650.000000\n"
#: folderitem_ooo.ulf
msgctxt ""
@@ -694,7 +694,7 @@ msgctxt ""
"STR_DESC_MODULE_HELPPACK_OR\n"
"LngText.text"
msgid "Installs Odia help in %PRODUCTNAME %PRODUCTVERSION"
-msgstr "%PRODUCTNAME %PRODUCTVERSION にオディア語のヘルプをインストールします"
+msgstr "%PRODUCTNAME %PRODUCTVERSION にオディア語のヘルプをインストール"
#: module_helppack.ulf
msgctxt ""
@@ -1886,7 +1886,7 @@ msgctxt ""
"STR_NAME_MODULE_LANGPACK_FY\n"
"LngText.text"
msgid "Frisian"
-msgstr ""
+msgstr "フリジア語"
#: module_langpack.ulf
msgctxt ""
@@ -1894,7 +1894,7 @@ msgctxt ""
"STR_DESC_MODULE_LANGPACK_FY\n"
"LngText.text"
msgid "Installs the Frisian user interface"
-msgstr ""
+msgstr "フリジア語ユーザーインタフェースのインストール"
#: module_langpack.ulf
msgctxt ""
diff --git a/source/ja/sd/messages.po b/source/ja/sd/messages.po
index af077f922d6..367aa070c4d 100644
--- a/source/ja/sd/messages.po
+++ b/source/ja/sd/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: 2018-05-22 13:16+0200\n"
-"PO-Revision-Date: 2018-05-23 00:35+0000\n"
-"Last-Translator: Takeshi Abe <tabe@fixedpoint.jp>\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
+"PO-Revision-Date: 2018-06-06 11:58+0000\n"
+"Last-Translator: baffclan <baffclan@yahoo.co.jp>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ja\n"
"MIME-Version: 1.0\n"
@@ -13,170 +13,170 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1527035708.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1528286289.000000\n"
-#: sd/inc/DocumentRenderer.hrc:29
+#: sd/inc/DocumentRenderer.hrc:27
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Slides"
msgstr "スライド"
-#: sd/inc/DocumentRenderer.hrc:30
+#: sd/inc/DocumentRenderer.hrc:28
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Handouts"
msgstr "配付資料"
-#: sd/inc/DocumentRenderer.hrc:31
+#: sd/inc/DocumentRenderer.hrc:29
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Notes"
msgstr "ノート"
-#: sd/inc/DocumentRenderer.hrc:32
+#: sd/inc/DocumentRenderer.hrc:30
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Outline"
msgstr "アウトライン"
-#: sd/inc/DocumentRenderer.hrc:37
+#: sd/inc/DocumentRenderer.hrc:35
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "According to layout"
msgstr "レイアウトに従う"
-#: sd/inc/DocumentRenderer.hrc:38
+#: sd/inc/DocumentRenderer.hrc:36
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "1"
msgstr "1"
-#: sd/inc/DocumentRenderer.hrc:39
+#: sd/inc/DocumentRenderer.hrc:37
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "2"
msgstr "2"
-#: sd/inc/DocumentRenderer.hrc:40
+#: sd/inc/DocumentRenderer.hrc:38
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "3"
msgstr "3"
-#: sd/inc/DocumentRenderer.hrc:41
+#: sd/inc/DocumentRenderer.hrc:39
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "4"
msgstr "4"
-#: sd/inc/DocumentRenderer.hrc:42
+#: sd/inc/DocumentRenderer.hrc:40
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "6"
msgstr "6"
-#: sd/inc/DocumentRenderer.hrc:43
+#: sd/inc/DocumentRenderer.hrc:41
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "9"
msgstr "9"
-#: sd/inc/DocumentRenderer.hrc:48
+#: sd/inc/DocumentRenderer.hrc:46
msgctxt "STR_IMPRESS_PRINT_UI_ORDER_CHOICES"
msgid "Left to right, then down"
msgstr "左から右へ、最後まで行ったら下へ"
-#: sd/inc/DocumentRenderer.hrc:49
+#: sd/inc/DocumentRenderer.hrc:47
msgctxt "STR_IMPRESS_PRINT_UI_ORDER_CHOICES"
msgid "Top to bottom, then right"
msgstr "上から下へ、最後まで行ったら右へ"
-#: sd/inc/DocumentRenderer.hrc:54
+#: sd/inc/DocumentRenderer.hrc:52
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Original colors"
msgstr "カラー (画面表示と同じ)"
-#: sd/inc/DocumentRenderer.hrc:55
+#: sd/inc/DocumentRenderer.hrc:53
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Grayscale"
msgstr "グレースケール"
-#: sd/inc/DocumentRenderer.hrc:56
+#: sd/inc/DocumentRenderer.hrc:54
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Black & white"
msgstr "白黒"
-#: sd/inc/DocumentRenderer.hrc:61
+#: sd/inc/DocumentRenderer.hrc:59
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Original size"
msgstr "元のサイズ"
-#: sd/inc/DocumentRenderer.hrc:62
+#: sd/inc/DocumentRenderer.hrc:60
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Fit to printable page"
msgstr "印刷可能なページサイズに合わせる"
-#: sd/inc/DocumentRenderer.hrc:63
+#: sd/inc/DocumentRenderer.hrc:61
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Distribute on multiple sheets of paper"
msgstr "複数の用紙に分ける"
-#: sd/inc/DocumentRenderer.hrc:64
+#: sd/inc/DocumentRenderer.hrc:62
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Tile sheet of paper with repeated slides"
msgstr "ページをタイル状に印刷する"
-#: sd/inc/DocumentRenderer.hrc:69
+#: sd/inc/DocumentRenderer.hrc:67
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Original size"
msgstr "元のサイズ"
-#: sd/inc/DocumentRenderer.hrc:70
+#: sd/inc/DocumentRenderer.hrc:68
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Fit to printable page"
msgstr "印刷可能なページサイズに合わせる"
-#: sd/inc/DocumentRenderer.hrc:71
+#: sd/inc/DocumentRenderer.hrc:69
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Distribute on multiple sheets of paper"
msgstr "複数の用紙に分ける"
-#: sd/inc/DocumentRenderer.hrc:72
+#: sd/inc/DocumentRenderer.hrc:70
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Tile sheet of paper with repeated pages"
msgstr "ページをタイル状に印刷する"
-#: sd/inc/DocumentRenderer.hrc:77
+#: sd/inc/DocumentRenderer.hrc:75
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "All pages"
msgstr "すべてのページ"
-#: sd/inc/DocumentRenderer.hrc:78
+#: sd/inc/DocumentRenderer.hrc:76
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "Front sides / right pages"
msgstr "表面/右ページ"
-#: sd/inc/DocumentRenderer.hrc:79
+#: sd/inc/DocumentRenderer.hrc:77
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "Back sides / left pages"
msgstr "裏面/左ページ"
-#: sd/inc/DocumentRenderer.hrc:84
+#: sd/inc/DocumentRenderer.hrc:82
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~All slides"
msgstr "すべてのスライド(~A)"
-#: sd/inc/DocumentRenderer.hrc:85
+#: sd/inc/DocumentRenderer.hrc:83
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~Slides"
msgstr "スライド(~S)"
-#: sd/inc/DocumentRenderer.hrc:86
+#: sd/inc/DocumentRenderer.hrc:84
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Se~lection"
msgstr "選択箇所(~L)"
-#: sd/inc/DocumentRenderer.hrc:91
+#: sd/inc/DocumentRenderer.hrc:89
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~All pages"
msgstr "すべてのページ(~A)"
-#: sd/inc/DocumentRenderer.hrc:92
+#: sd/inc/DocumentRenderer.hrc:90
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Pa~ges"
msgstr "ページ(~G)"
-#: sd/inc/DocumentRenderer.hrc:93
+#: sd/inc/DocumentRenderer.hrc:91
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Se~lection"
msgstr "選択箇所(~L)"
@@ -932,22 +932,22 @@ msgstr "下"
#: sd/inc/strings.hrc:163
msgctxt "STR_GLUE_ESCDIR_LO"
msgid "Top Left?"
-msgstr "左の上方?"
+msgstr "左の上方?"
#: sd/inc/strings.hrc:164
msgctxt "STR_GLUE_ESCDIR_LU"
msgid "Bottom Left?"
-msgstr "左の下方?"
+msgstr "左の下方?"
#: sd/inc/strings.hrc:165
msgctxt "STR_GLUE_ESCDIR_RO"
msgid "Top Right?"
-msgstr "右の上方?"
+msgstr "右の上方?"
#: sd/inc/strings.hrc:166
msgctxt "STR_GLUE_ESCDIR_RU"
msgid "Bottom Right?"
-msgstr "右の下方?"
+msgstr "右の下方?"
#: sd/inc/strings.hrc:167
msgctxt "STR_GLUE_ESCDIR_HORZ"
@@ -962,7 +962,7 @@ msgstr "縦"
#: sd/inc/strings.hrc:169
msgctxt "STR_GLUE_ESCDIR_ALL"
msgid "All?"
-msgstr "すべて?"
+msgstr "すべて?"
#: sd/inc/strings.hrc:170
msgctxt "STR_CANT_PERFORM_IN_LIVEMODE"
@@ -3615,67 +3615,67 @@ msgstr "更新のチェック(_C)..."
#: sd/uiconfig/simpress/ui/notebookbar.ui:2422
msgctxt "notebookbar|FileLabel"
msgid "_File"
-msgstr ""
+msgstr "ファイル(_F)"
#: sd/uiconfig/simpress/ui/notebookbar.ui:2441
msgctxt "notebookbar|HelpMenuButton"
msgid "_Help"
-msgstr ""
+msgstr "ヘルプ(_H)"
#: sd/uiconfig/simpress/ui/notebookbar.ui:3230
msgctxt "notebookbar|FileLabel"
msgid "File"
-msgstr ""
+msgstr "ファイル"
#: sd/uiconfig/simpress/ui/notebookbar.ui:3389
msgctxt "notebookbar|HomeMenuButton"
msgid "_Home"
-msgstr ""
+msgstr "ホーム(_H)"
#: sd/uiconfig/simpress/ui/notebookbar.ui:4846
msgctxt "notebookbar|HomeLabel"
msgid "Home"
-msgstr ""
+msgstr "ホーム"
#: sd/uiconfig/simpress/ui/notebookbar.ui:5293
msgctxt "notebookbar|FieldMenuButton"
msgid "Fiel_d"
-msgstr ""
+msgstr "フィールド(_D)"
#: sd/uiconfig/simpress/ui/notebookbar.ui:5820
msgctxt "notebookbar|InsertMenuButton"
msgid "_Insert"
-msgstr ""
+msgstr "挿入(_I)"
#: sd/uiconfig/simpress/ui/notebookbar.ui:5905
msgctxt "notebookbar|InsertLabel"
msgid "Insert"
-msgstr ""
+msgstr "挿入"
#: sd/uiconfig/simpress/ui/notebookbar.ui:5935
msgctxt "notebookbar|SlideMenuButton"
msgid "S_lide"
-msgstr ""
+msgstr "スライド(_L)"
#: sd/uiconfig/simpress/ui/notebookbar.ui:6688
msgctxt "notebookbar|LayoutLabel"
msgid "Slide"
-msgstr ""
+msgstr "スライド"
#: sd/uiconfig/simpress/ui/notebookbar.ui:6716
msgctxt "notebookbar|SlideShowMenuButton"
msgid "_Slide Show"
-msgstr ""
+msgstr "スライドショー(_S)"
#: sd/uiconfig/simpress/ui/notebookbar.ui:7194
msgctxt "notebookbar|ReferencesLabel"
msgid "Slide Show"
-msgstr ""
+msgstr "スライドショー"
#: sd/uiconfig/simpress/ui/notebookbar.ui:7222
msgctxt "notebookbar|ReviewMenuButton"
msgid "_Review"
-msgstr ""
+msgstr "レビュー(_R)"
#: sd/uiconfig/simpress/ui/notebookbar.ui:7651
msgctxt "notebookbar|ReviewLabel"
@@ -3685,7 +3685,7 @@ msgstr "レビュー"
#: sd/uiconfig/simpress/ui/notebookbar.ui:7679
msgctxt "notebookbar|ViewMenuButton"
msgid "_View"
-msgstr ""
+msgstr "表示(_V)"
#: sd/uiconfig/simpress/ui/notebookbar.ui:8580
msgctxt "notebookbar|ViewLabel"
@@ -3695,7 +3695,7 @@ msgstr "表示"
#: sd/uiconfig/simpress/ui/notebookbar.ui:9369
msgctxt "notebookbar|TableMenuButton"
msgid "T_able"
-msgstr ""
+msgstr "表(_A)"
#: sd/uiconfig/simpress/ui/notebookbar.ui:9453
msgctxt "notebookbar|TableLabel"
@@ -3706,12 +3706,12 @@ msgstr "表"
#: sd/uiconfig/simpress/ui/notebookbar.ui:11131
msgctxt "notebookbar|ConvertMenuButton"
msgid "Convert"
-msgstr ""
+msgstr "変換"
#: sd/uiconfig/simpress/ui/notebookbar.ui:10335
msgctxt "notebookbar|GraphicMenuButton"
msgid "_Graphic"
-msgstr ""
+msgstr "図形(_G)"
#: sd/uiconfig/simpress/ui/notebookbar.ui:10447
msgctxt "notebookbar|ImageLabel"
@@ -3731,12 +3731,12 @@ msgstr ""
#: sd/uiconfig/simpress/ui/notebookbar.ui:11804
msgctxt "notebookbar|ToolsMenuButton"
msgid "_Tools"
-msgstr ""
+msgstr "ツール(_T)"
#: sd/uiconfig/simpress/ui/notebookbar.ui:12758
msgctxt "notebookbar|DevLabel"
msgid "Tools"
-msgstr ""
+msgstr "ツール"
#: sd/uiconfig/simpress/ui/notebookbar_groupedbar_compact.ui:1922
msgctxt "notebookbar_groupedbar_compact|Menu"
diff --git a/source/ja/sfx2/messages.po b/source/ja/sfx2/messages.po
index 1981f25b3cf..12633b7322b 100644
--- a/source/ja/sfx2/messages.po
+++ b/source/ja/sfx2/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: 2018-05-22 13:16+0200\n"
-"PO-Revision-Date: 2018-05-08 23:53+0000\n"
+"PO-Revision-Date: 2018-06-11 00:34+0000\n"
"Last-Translator: Takeshi Abe <tabe@fixedpoint.jp>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ja\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1525823599.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1528677299.000000\n"
#: include/sfx2/strings.hrc:25
msgctxt "STR_TEMPLATE_FILTER"
@@ -818,7 +818,7 @@ msgstr "正しくないパスワード"
#: include/sfx2/strings.hrc:172
msgctxt "RID_SVXSTR_GPG_ENCRYPT_FAILURE"
msgid "OpenPGP key not trusted, damaged, or encryption failure. Please try again."
-msgstr ""
+msgstr "OpenPGP鍵が信用できない、あるいは壊れているか、もしくは暗号化に失敗しました。もう一度試してください。"
#: include/sfx2/strings.hrc:174
msgctxt "STR_PASSWD_MIN_LEN"
@@ -1195,7 +1195,7 @@ msgstr "このドキュメントは読み取り専用で開いています。"
#: include/sfx2/strings.hrc:247
msgctxt "STR_READONLY_PDF"
msgid "This PDF is open in read-only mode to allow signing the existing file."
-msgstr ""
+msgstr "既存のファイルに署名するためにこのPDFは読み取り専用モードで開かれています。"
#: include/sfx2/strings.hrc:248
msgctxt "STR_CLASSIFIED_DOCUMENT"
@@ -1220,7 +1220,7 @@ msgstr "レベル"
#: include/sfx2/strings.hrc:252
msgctxt "STR_CLASSIFIED_NATIONAL_SECURITY"
msgid "National Security:"
-msgstr ""
+msgstr "国家安全保障:"
#: include/sfx2/strings.hrc:253
msgctxt "STR_CLASSIFIED_EXPORT_CONTROL"
@@ -1812,7 +1812,7 @@ msgstr "削除"
#: sfx2/uiconfig/ui/charviewmenu.ui:20
msgctxt "charviewmenu|clearallchar"
msgid "Clear All"
-msgstr ""
+msgstr "すべて消去"
#: sfx2/uiconfig/ui/checkin.ui:8
msgctxt "checkin|CheckinDialog"
@@ -2032,7 +2032,7 @@ msgstr "文書を編集するかを確認"
#: sfx2/uiconfig/ui/editdocumentdialog.ui:13
msgctxt "editdocumentdialog|EditDocumentDialog"
msgid "Are you sure you want to edit the document?"
-msgstr "本当にこの文書を編集しますか?"
+msgstr "本当にこの文書を編集しますか?"
#: sfx2/uiconfig/ui/editdocumentdialog.ui:14
msgctxt "editdocumentdialog|EditDocumentDialog"
diff --git a/source/ja/svtools/messages.po b/source/ja/svtools/messages.po
index 758d7c2f449..e1ed884c7b9 100644
--- a/source/ja/svtools/messages.po
+++ b/source/ja/svtools/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: 2018-05-16 16:53+0200\n"
-"PO-Revision-Date: 2018-05-18 02:35+0000\n"
-"Last-Translator: Takeshi Abe <tabe@fixedpoint.jp>\n"
+"PO-Revision-Date: 2018-06-06 01:22+0000\n"
+"Last-Translator: baffclan <baffclan@yahoo.co.jp>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ja\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1526610922.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1528248146.000000\n"
#: svtools/inc/errtxt.hrc:30
msgctxt "RID_ERRCTX"
@@ -2501,7 +2501,7 @@ msgstr "ジューホアン語"
#: svtools/inc/langtab.hrc:417
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
msgid "Naro"
-msgstr ""
+msgstr "ナロ語"
#: svtools/inc/langtab.hrc:418
msgctxt "STR_ARR_SVT_LANGUAGE_TABLE"
diff --git a/source/ja/svx/messages.po b/source/ja/svx/messages.po
index c15aa4c8815..f8483dfbf8b 100644
--- a/source/ja/svx/messages.po
+++ b/source/ja/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: 2018-05-16 16:53+0200\n"
-"PO-Revision-Date: 2018-05-16 00:34+0000\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
+"PO-Revision-Date: 2018-06-12 00:16+0000\n"
"Last-Translator: Takeshi Abe <tabe@fixedpoint.jp>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ja\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1526430867.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1528762602.000000\n"
#: svx/inc/fieldunit.hrc:30
msgctxt "RID_SVXSTR_FIELDUNIT_TABLE"
@@ -4711,7 +4711,7 @@ msgstr "削除"
#: svx/uiconfig/ui/profileexporteddialog.ui:8
msgctxt "profileexporteddialog|ProfileExportedDialog"
msgid "Profile exported"
-msgstr ""
+msgstr "プロファイルのエクスポート完了"
#: svx/uiconfig/ui/profileexporteddialog.ui:46
msgctxt "profileexporteddialog|openfolder"
@@ -5174,8 +5174,8 @@ msgstr "ユーザープロファイルの関係する部分をバグレポート
#: svx/uiconfig/ui/safemodedialog.ui:432
msgctxt "safemodedialog|btn_create_zip"
-msgid "Create Zip Archive from User Profile"
-msgstr "ユーザープロファイルからZIPアーカイブを作成する"
+msgid "Archive User Profile"
+msgstr "ユーザープロフィールをアーカイブする"
#: svx/uiconfig/ui/safemodedialog.ui:445
msgctxt "safemodedialog|linkbutton_profile"
@@ -8764,9 +8764,9 @@ msgid "Red"
msgstr "赤"
#: include/svx/strings.hrc:565
-msgctxt "RID_SVXSTR_COLOR_VIOLET"
-msgid "Violet"
-msgstr "紫"
+msgctxt "RID_SVXSTR_COLOR_MAGENTA"
+msgid "Magenta"
+msgstr "マゼンタ"
#: include/svx/strings.hrc:566
msgctxt "RID_SVXSTR_COLOR_PURPLE"
@@ -8830,9 +8830,9 @@ msgid "Light Red"
msgstr "明るい赤"
#: include/svx/strings.hrc:579
-msgctxt "RID_SVXSTR_COLOR_LIGHTVIOLET"
-msgid "Light Violet"
-msgstr "明るいバイオレット"
+msgctxt "RID_SVXSTR_COLOR_LIGHTMAGENTA"
+msgid "Light Magenta"
+msgstr "明るいマゼンタ"
#: include/svx/strings.hrc:580
msgctxt "RID_SVXSTR_COLOR_LIGHTPURPLE"
@@ -8896,9 +8896,9 @@ msgid "Dark Red"
msgstr "ダークレッド"
#: include/svx/strings.hrc:593
-msgctxt "RID_SVXSTR_COLOR_DARKVIOLET1"
-msgid "Dark Violet"
-msgstr "濃紫"
+msgctxt "RID_SVXSTR_COLOR_DARKMAGENTA"
+msgid "Dark Magenta"
+msgstr "暗いマゼンタ"
#: include/svx/strings.hrc:594
msgctxt "RID_SVXSTR_COLOR_DARKPURPLE"
@@ -8932,55 +8932,55 @@ msgstr "暗いライム"
#. Elements of the Tonal color palette
#: include/svx/strings.hrc:601
+msgctxt "RID_SVXSTR_COLOR_VIOLET"
+msgid "Violet"
+msgstr "紫"
+
+#: include/svx/strings.hrc:602
msgctxt "RID_SVXSTR_COLOR_VIOLET_OUG"
msgid "Violet (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:602
+#: include/svx/strings.hrc:603
msgctxt "RID_SVXSTR_COLOR_BLUE_OUG"
msgid "Blue (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:603
+#: include/svx/strings.hrc:604
msgctxt "RID_SVXSTR_COLOR_AZURE_OUG"
msgid "Azure (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:604
+#: include/svx/strings.hrc:605
msgctxt "RID_SVXSTR_COLOR_SPRINGGREEN_OUG"
msgid "Spring Green (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:605
+#: include/svx/strings.hrc:606
msgctxt "RID_SVXSTR_COLOR_GREEN_OUG"
msgid "Green (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:606
+#: include/svx/strings.hrc:607
msgctxt "RID_SVXSTR_COLOR_CHARTREUSEGREEN_OUG"
msgid "Chartreuse Green (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:607
+#: include/svx/strings.hrc:608
msgctxt "RID_SVXSTR_COLOR_ORANGE_OUG"
msgid "Orange (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:608
+#: include/svx/strings.hrc:609
msgctxt "RID_SVXSTR_COLOR_RED_OUG"
msgid "Red (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:609
+#: include/svx/strings.hrc:610
msgctxt "RID_SVXSTR_COLOR_ROSE_OUG"
msgid "Rose (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:610
-msgctxt "RID_SVXSTR_COLOR_MAGENTA"
-msgid "Magenta"
-msgstr "マゼンタ"
-
#: include/svx/strings.hrc:611
msgctxt "RID_SVXSTR_COLOR_AZURE"
msgid "Azure"
@@ -12027,7 +12027,7 @@ msgstr "検索文字が見つかりません"
#: include/svx/strings.hrc:1258
msgctxt "RID_SVXSTR_SEARCH_NAV_ELEMENT_NOT_FOUND"
msgid "Navigation Element not found"
-msgstr ""
+msgstr "ナビゲーション要素が見つかりませんでした"
#: include/svx/strings.hrc:1259
msgctxt "RID_SVXSTR_SEARCH_START"
@@ -12086,13 +12086,13 @@ msgstr "右向き矢印"
#: include/svx/strings.hrc:1273
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_6"
-msgid "Check mark bullets"
-msgstr "×印"
+msgid "Cross mark bullets"
+msgstr ""
#: include/svx/strings.hrc:1274
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_7"
-msgid "Tick mark bullets"
-msgstr "レ点"
+msgid "Check mark bullets"
+msgstr ""
#: include/svx/strings.hrc:1275
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_0"
@@ -13747,7 +13747,7 @@ msgstr ""
#: include/svx/strings.hrc:1616
msgctxt "RID_SUBSETMAP"
msgid "Anatolian Hieroglyphs"
-msgstr ""
+msgstr "アナトリア象形文字"
#: include/svx/strings.hrc:1617
msgctxt "RID_SUBSETMAP"
@@ -13892,7 +13892,7 @@ msgstr "右から左(RTL)"
#: include/svx/strings.hrc:1646
msgctxt "RID_SVXSTR_FRAMEDIR_SUPER"
msgid "Use superordinate object settings"
-msgstr ""
+msgstr "上位レベルのオブジェクト設定を使用"
#. page direction
#: include/svx/strings.hrc:1648
@@ -14008,7 +14008,7 @@ msgstr "位置"
#: include/svx/svxitems.hrc:51
msgctxt "RID_ATTR_NAMES"
msgid "Character blinking"
-msgstr ""
+msgstr "文字の点滅"
#: include/svx/svxitems.hrc:52
msgctxt "RID_ATTR_NAMES"
diff --git a/source/ja/sw/messages.po b/source/ja/sw/messages.po
index f2880ac64b1..c4624b47cda 100644
--- a/source/ja/sw/messages.po
+++ b/source/ja/sw/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: 2018-05-22 13:17+0200\n"
-"PO-Revision-Date: 2018-05-17 13:45+0000\n"
-"Last-Translator: baffclan <baffclan@yahoo.co.jp>\n"
+"POT-Creation-Date: 2018-06-12 14:41+0200\n"
+"PO-Revision-Date: 2018-06-13 00:27+0000\n"
+"Last-Translator: Takeshi Abe <tabe@fixedpoint.jp>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ja\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1526564737.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1528849626.000000\n"
#: sw/inc/app.hrc:29
msgctxt "RID_PARAGRAPHSTYLEFAMILY"
@@ -1180,13 +1180,13 @@ msgstr "引用"
#: sw/inc/strings.hrc:172
msgctxt "STR_POOLCOLL_TOX_ILLUSH"
-msgid "Illustration Index Heading"
-msgstr "図の索引 見出し"
+msgid "Figure Index Heading"
+msgstr ""
#: sw/inc/strings.hrc:173
msgctxt "STR_POOLCOLL_TOX_ILLUS1"
-msgid "Illustration Index 1"
-msgstr "図の索引 1"
+msgid "Figure Index 1"
+msgstr ""
#: sw/inc/strings.hrc:174
msgctxt "STR_POOLCOLL_TOX_OBJECTH"
@@ -3590,8 +3590,8 @@ msgstr "オブジェクトの索引"
#: sw/inc/strings.hrc:672
msgctxt "STR_TOX_ILL"
-msgid "Illustration Index"
-msgstr "図の索引"
+msgid "Table of Figures"
+msgstr ""
#: sw/inc/strings.hrc:673
#, c-format
@@ -9244,72 +9244,72 @@ msgctxt "footnotepage|label5"
msgid "Continuation Notice"
msgstr "脚注が次ページに続く際の注意書き"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:49
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:55
msgctxt "footnotesendnotestabpage|ftnntnum"
msgid "_Restart numbering"
msgstr "番号付けを新しく開始(_R)"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:91
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:93
msgctxt "footnotesendnotestabpage|ftnoffset_label"
msgid "_Start at:"
msgstr "開始番号(_S):"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:112
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:111
msgctxt "footnotesendnotestabpage|ftnntnumfmt"
msgid "Custom _format"
msgstr "任意の書式(_F)"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:155
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:150
msgctxt "footnotesendnotestabpage|ftnsuffix_label"
msgid "Aft_er:"
msgstr "番号後(_E):"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:199
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:188
msgctxt "footnotesendnotestabpage|ftnprefix_label"
msgid "Be_fore:"
msgstr "番号前(_F):"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:228
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:212
msgctxt "footnotesendnotestabpage|ftnntattextend"
msgid "Collec_t at end of text"
msgstr "文書末に挿入(_T)"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:252
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:234
msgctxt "footnotesendnotestabpage|label1"
msgid "Footnotes"
msgstr "脚注"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:289
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:271
msgctxt "footnotesendnotestabpage|endntattextend"
msgid "C_ollect at end of section"
msgstr "セクション末に挿入(_O)"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:315
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:295
msgctxt "footnotesendnotestabpage|endntnum"
msgid "_Restart numbering"
msgstr "番号付けを新しく開始(_R)"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:357
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:333
msgctxt "footnotesendnotestabpage|endoffset_label"
msgid "_Start at:"
msgstr "開始番号(_S):"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:378
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:351
msgctxt "footnotesendnotestabpage|endntnumfmt"
msgid "_Custom format"
msgstr "ユーザー定義の書式(_C)"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:421
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:390
msgctxt "footnotesendnotestabpage|endsuffix_label"
msgid "Aft_er:"
msgstr "番号後(_E):"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:465
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:428
msgctxt "footnotesendnotestabpage|endprefix_label"
msgid "Be_fore:"
msgstr "番号前(_F):"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:500
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:458
msgctxt "footnotesendnotestabpage|label2"
msgid "Endnotes"
msgstr "文末脚注"
@@ -9339,27 +9339,27 @@ msgctxt "formatsectiondialog|notes"
msgid "Footnotes/Endnotes"
msgstr "脚注/文末脚注"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:63
+#: sw/uiconfig/swriter/ui/formattablepage.ui:77
msgctxt "formattablepage|nameft"
msgid "_Name"
msgstr "名前(_N)"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:79
+#: sw/uiconfig/swriter/ui/formattablepage.ui:91
msgctxt "formattablepage|widthft"
msgid "W_idth"
msgstr "幅(_I)"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:110
+#: sw/uiconfig/swriter/ui/formattablepage.ui:120
msgctxt "formattablepage|relwidth"
msgid "Relati_ve"
msgstr "パーセント表示(_V)"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:155
+#: sw/uiconfig/swriter/ui/formattablepage.ui:160
msgctxt "formattablepage|label45"
msgid "Properties"
msgstr "属性"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:194
+#: sw/uiconfig/swriter/ui/formattablepage.ui:195
msgctxt "formattablepage|leftft"
msgid "Lef_t"
msgstr "左(_T)"
@@ -9369,62 +9369,62 @@ msgctxt "formattablepage|rightft"
msgid "Ri_ght"
msgstr "右(_G)"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:228
+#: sw/uiconfig/swriter/ui/formattablepage.ui:226
msgctxt "formattablepage|aboveft"
msgid "_Above"
msgstr "上(_A)"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:245
+#: sw/uiconfig/swriter/ui/formattablepage.ui:241
msgctxt "formattablepage|belowft"
msgid "_Below"
msgstr "下(_B)"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:320
+#: sw/uiconfig/swriter/ui/formattablepage.ui:311
msgctxt "formattablepage|label46"
msgid "Spacing"
msgstr "間隔"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:362
+#: sw/uiconfig/swriter/ui/formattablepage.ui:349
msgctxt "formattablepage|full"
msgid "A_utomatic"
msgstr "自動(_U)"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:380
+#: sw/uiconfig/swriter/ui/formattablepage.ui:365
msgctxt "formattablepage|left"
msgid "_Left"
msgstr "左揃え(_L)"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:398
+#: sw/uiconfig/swriter/ui/formattablepage.ui:381
msgctxt "formattablepage|fromleft"
msgid "_From left"
msgstr "左から(_F)"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:416
+#: sw/uiconfig/swriter/ui/formattablepage.ui:397
msgctxt "formattablepage|right"
msgid "R_ight"
msgstr "右(_I)"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:435
+#: sw/uiconfig/swriter/ui/formattablepage.ui:413
msgctxt "formattablepage|center"
msgid "_Center"
msgstr "中央揃え(水平)(_C)"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:453
+#: sw/uiconfig/swriter/ui/formattablepage.ui:429
msgctxt "formattablepage|free"
msgid "_Manual"
msgstr "任意指定(_M)"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:478
+#: sw/uiconfig/swriter/ui/formattablepage.ui:452
msgctxt "formattablepage|label43"
msgid "Alignment"
msgstr "配置"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:522
+#: sw/uiconfig/swriter/ui/formattablepage.ui:491
msgctxt "formattablepage|label53"
msgid "Text _direction"
msgstr "文字の方向(_D)"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:553
+#: sw/uiconfig/swriter/ui/formattablepage.ui:519
msgctxt "formattablepage|label44"
msgid "Properties "
msgstr "プロパティ "
@@ -9779,22 +9779,27 @@ msgctxt "headerfootermenu|insert_pagenumber"
msgid "Insert Page Number"
msgstr "ページ番号を挿入する"
-#: sw/uiconfig/swriter/ui/indentpage.ui:52
+#: sw/uiconfig/swriter/ui/headerfootermenu.ui:42
+msgctxt "headerfootermenu|insert_pagecount"
+msgid "Insert Page Count"
+msgstr ""
+
+#: sw/uiconfig/swriter/ui/indentpage.ui:57
msgctxt "indentpage|label1"
msgid "_Before section"
msgstr "セクションの前(_B)"
-#: sw/uiconfig/swriter/ui/indentpage.ui:67
+#: sw/uiconfig/swriter/ui/indentpage.ui:71
msgctxt "indentpage|label3"
msgid "_After section"
msgstr "セクションの後(_A)"
-#: sw/uiconfig/swriter/ui/indentpage.ui:113
+#: sw/uiconfig/swriter/ui/indentpage.ui:115
msgctxt "indentpage|label2"
msgid "Indent"
msgstr "インデント"
-#: sw/uiconfig/swriter/ui/indentpage.ui:142
+#: sw/uiconfig/swriter/ui/indentpage.ui:155
msgctxt "indentpage|preview-atkobject"
msgid "Example"
msgstr "例"
@@ -11867,7 +11872,7 @@ msgstr "表"
#: sw/uiconfig/swriter/ui/notebookbar.ui:10586
msgctxt "notebookbar|GraphicMenuButton"
msgid "_Graphic"
-msgstr ""
+msgstr "図形(_G)"
#: sw/uiconfig/swriter/ui/notebookbar.ui:10685
msgctxt "notebookbar|ImageLabel"
@@ -11912,7 +11917,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:2007
msgctxt "notebookbar_compact|FileMenuButton"
msgid "_File"
-msgstr ""
+msgstr "ファイル(_F)"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:2721
msgctxt "notebookbar_compact|FileLabel"
@@ -11922,7 +11927,7 @@ msgstr "ファイル"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:2770
msgctxt "notebookbar_compact|HomeMenuButton"
msgid "_Menu"
-msgstr ""
+msgstr "メニュー(_M)"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3829
msgctxt "notebookbar_compact|HomeLabel"
@@ -11932,7 +11937,7 @@ msgstr "ホーム"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:3882
msgctxt "notebookbar_compact|InsertMenuButton"
msgid "_Insert"
-msgstr ""
+msgstr "挿入(_I)"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:4501
msgctxt "notebookbar_compact|InsertLabel"
@@ -11950,7 +11955,7 @@ msgstr "折り返し"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5221
msgctxt "notebookbar_compact|PageMenuButton"
msgid "Pag_e"
-msgstr ""
+msgstr "ページ(_E)"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:5273
msgctxt "notebookbar_compact|LayoutLabel"
@@ -11970,7 +11975,7 @@ msgstr "参照"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6204
msgctxt "notebookbar_compact|ReviewMenuButton"
msgid "_Review"
-msgstr ""
+msgstr "レビュー(_R)"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6237
msgctxt "notebookbar_compact|ReviewLabel"
@@ -11980,7 +11985,7 @@ msgstr "レビュー"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6706
msgctxt "notebookbar_compact|ViewMenuButton"
msgid "_View"
-msgstr ""
+msgstr "表示(_V)"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6758
msgctxt "notebookbar_compact|ViewLabel"
@@ -11990,7 +11995,7 @@ msgstr "表示"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:6806
msgctxt "notebookbar_compact|TableMenuButton"
msgid "T_able"
-msgstr ""
+msgstr "表(_A)"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:7540
msgctxt "notebookbar_compact|TableLabel"
@@ -12007,7 +12012,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8291
msgctxt "notebookbar_compact|GraphicMenuButton"
msgid "_Graphic"
-msgstr ""
+msgstr "図形(_G)"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:8324
msgctxt "notebookbar_compact|ImageLabel"
@@ -12037,7 +12042,7 @@ msgstr "オブジェクト"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:9757
msgctxt "notebookbar_compact|ToolsMenuButton"
msgid "_Tools"
-msgstr ""
+msgstr "ツール(_T)"
#: sw/uiconfig/swriter/ui/notebookbar_compact.ui:10600
msgctxt "notebookbar_compact|DevLabel"
@@ -13285,7 +13290,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:68
msgctxt "optcompatpage|format"
-msgid "MS Word-compatible trailing blanks"
+msgid "Word-compatible trailing blanks"
msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:69
@@ -13295,7 +13300,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:70
msgctxt "optcompatpage|format"
-msgid "A database field (e.g., MailMerge) with empty value hides its paragraph"
+msgid "Hide paragraphs of database fields (e.g., mail merge) with an empty value"
msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:71
@@ -14028,7 +14033,7 @@ msgstr "なし"
#: sw/uiconfig/swriter/ui/outlinepositionpage.ui:385
msgctxt "outlinepositionpage|liststore2"
msgid "New Line"
-msgstr ""
+msgstr "改行"
#: sw/uiconfig/swriter/ui/outlinepositionpage.ui:398
msgctxt "outlinepositionpage|numfollowedby"
@@ -14118,7 +14123,7 @@ msgstr "詳細オプションを表示"
#: sw/uiconfig/swriter/ui/pagefooterpanel.ui:33
msgctxt "PageHeaderPanel|footertoggle-atkobject"
msgid "Enable footer"
-msgstr ""
+msgstr "フッターを有効にする"
#: sw/uiconfig/swriter/ui/pagefooterpanel.ui:49
msgctxt "pagefooterpanel|margins"
@@ -14233,7 +14238,7 @@ msgstr "カスタム"
#: sw/uiconfig/swriter/ui/pageheaderpanel.ui:33
msgctxt "PageHeaderPanel|headertoggle-atkobject"
msgid "Enable header"
-msgstr ""
+msgstr "ヘッダーを有効にする"
#: sw/uiconfig/swriter/ui/pageheaderpanel.ui:49
msgctxt "pageheaderpanel|margins"
@@ -15979,122 +15984,122 @@ msgctxt "tableproperties|background"
msgid "Background"
msgstr "背景"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:25
-msgctxt "tabletextflowpage|liststore1"
-msgid "Horizontal"
-msgstr "水平"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:29
-msgctxt "tabletextflowpage|liststore1"
-msgid "Vertical"
-msgstr "垂直"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:33
-msgctxt "tabletextflowpage|liststore1"
-msgid "Use superordinate object settings"
-msgstr "周りのテキストの文字方向に合わせる"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:47
-msgctxt "tabletextflowpage|liststore2"
-msgid "Top"
-msgstr "上"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:51
-msgctxt "tabletextflowpage|liststore2"
-msgid "Centered"
-msgstr "中揃え"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:55
-msgctxt "tabletextflowpage|liststore2"
-msgid "Bottom"
-msgstr "下"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:97
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:53
msgctxt "tabletextflowpage|break"
msgid "_Break"
msgstr "切り離す(_B)"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:112
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:68
msgctxt "tabletextflowpage|page"
msgid "_Page"
msgstr "ページ(_P)"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:132
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:87
msgctxt "tabletextflowpage|column"
msgid "Col_umn"
msgstr "列(_U)"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:151
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:106
msgctxt "tabletextflowpage|before"
msgid "Be_fore"
msgstr "番号前(_F)"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:171
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:125
msgctxt "tabletextflowpage|after"
msgid "_After"
msgstr "後(_A)"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:203
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:158
msgctxt "tabletextflowpage|pagestyle"
msgid "With Page St_yle"
msgstr "ページスタイル付き(_Y)"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:224
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:177
msgctxt "tabletextflowpage|pagenoft"
msgid "Page _number"
msgstr "ページ番号(_N)"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:257
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:213
msgctxt "tabletextflowpage|pagestylelb-atkobject"
msgid "With Page Style"
msgstr "ページスタイル付き"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:274
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:230
msgctxt "tabletextflowpage|split"
msgid "Allow _table to split across pages and columns"
msgstr "ページと段組みにわたって表を分割(_T)"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:289
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:245
msgctxt "tabletextflowpage|splitrow"
msgid "Allow row to break a_cross pages and columns"
msgstr "ページと段組みにわたって行を分ける(_C)"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:306
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:262
msgctxt "tabletextflowpage|keep"
msgid "_Keep with next paragraph"
msgstr "次の段落を離さない(_K)"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:328
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:284
msgctxt "tabletextflowpage|label40"
msgid "Text _orientation"
msgstr "文字の方向(_O)"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:361
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:298
+msgctxt "tabletextflowpage|liststore1"
+msgid "Horizontal"
+msgstr "水平"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:299
+msgctxt "tabletextflowpage|liststore1"
+msgid "Vertical"
+msgstr "垂直"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:300
+msgctxt "tabletextflowpage|liststore1"
+msgid "Use superordinate object settings"
+msgstr "周りのテキストの文字方向に合わせる"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:321
msgctxt "tabletextflowpage|headline"
msgid "R_epeat heading"
msgstr "見出しの繰り返し(_E)"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:383
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:343
msgctxt "tabletextflowpage|label38"
msgid "The first "
msgstr "最初"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:396
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:356
msgctxt "tabletextflowpage|label39"
msgid "rows"
msgstr "行"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:434
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:395
msgctxt "tabletextflowpage|label35"
msgid "Text Flow"
msgstr "体裁"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:467
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:428
msgctxt "tabletextflowpage|label41"
msgid "_Vertical alignment"
msgstr "垂直配置(_V)"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:495
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:442
+msgctxt "tabletextflowpage|liststore2"
+msgid "Top"
+msgstr "上"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:443
+msgctxt "tabletextflowpage|liststore2"
+msgid "Centered"
+msgstr "中揃え"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:444
+msgctxt "tabletextflowpage|liststore2"
+msgid "Bottom"
+msgstr "下"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:460
msgctxt "tabletextflowpage|label36"
msgid "Alignment"
msgstr "配置"
@@ -16876,8 +16881,8 @@ msgstr "索引"
#: sw/uiconfig/swriter/ui/tocindexpage.ui:58
msgctxt "tocindexpage|liststore1"
-msgid "Illustration Index"
-msgstr "図の索引"
+msgid "Table of Figures"
+msgstr "図の一覧"
#: sw/uiconfig/swriter/ui/tocindexpage.ui:62
msgctxt "tocindexpage|liststore1"
diff --git a/source/ja/uui/messages.po b/source/ja/uui/messages.po
index a65d0af7364..ea76c4c491e 100644
--- a/source/ja/uui/messages.po
+++ b/source/ja/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: 2018-05-22 13:16+0200\n"
-"PO-Revision-Date: 2018-03-30 01:14+0000\n"
+"PO-Revision-Date: 2018-06-05 03:06+0000\n"
"Last-Translator: Takeshi Abe <tabe@fixedpoint.jp>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ja\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1522372475.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1528167974.000000\n"
#: uui/inc/ids.hrc:27
msgctxt "RID_UUI_ERRHDL"
@@ -835,6 +835,9 @@ msgid ""
"\n"
"Macros may contain viruses. Disabling macros for a document is always safe. If you disable macros you may lose functionality provided by the document macros."
msgstr ""
+"この文書にはマクロが含まれています。\n"
+"\n"
+"マクロには、ウィルスが含まれていることがあります。安全のためには、ドキュメントのマクロを無効にすることをお勧めします。ただし、マクロを無効にすると、ドキュメントマクロの機能を使用できなくなります。"
#: uui/uiconfig/ui/macrowarnmedium.ui:28
msgctxt "macrowarnmedium|cancel"
diff --git a/source/ja/vcl/messages.po b/source/ja/vcl/messages.po
index b57bb63b438..ab4aa15858b 100644
--- a/source/ja/vcl/messages.po
+++ b/source/ja/vcl/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: 2018-05-08 15:10+0200\n"
-"PO-Revision-Date: 2018-05-11 10:38+0000\n"
-"Last-Translator: baffclan <baffclan@yahoo.co.jp>\n"
+"PO-Revision-Date: 2018-06-13 00:27+0000\n"
+"Last-Translator: Takeshi Abe <tabe@fixedpoint.jp>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ja\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1526035121.000000\n"
+"X-POOTLE-MTIME: 1528849661.000000\n"
#. To translators: This is the first entry of a sequence of paper size names
#: vcl/inc/print.hrc:28
@@ -1239,7 +1239,7 @@ msgstr "ページレイアウト"
#: vcl/uiconfig/ui/printdialog.ui:1457
msgctxt "printdialog|singleprintjob"
msgid "Create separate print jobs for collated output"
-msgstr ""
+msgstr "部単位で印刷時に印刷ジョブを1個ずつ作成"
#: vcl/uiconfig/ui/printdialog.ui:1472
msgctxt "printdialog|printpaperfromsetup"
diff --git a/source/ja/writerperfect/messages.po b/source/ja/writerperfect/messages.po
index 41026ef8d00..8af0ffe8749 100644
--- a/source/ja/writerperfect/messages.po
+++ b/source/ja/writerperfect/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: 2018-05-16 16:54+0200\n"
-"PO-Revision-Date: 2018-03-06 00:56+0000\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
+"PO-Revision-Date: 2018-06-13 00:27+0000\n"
"Last-Translator: Takeshi Abe <tabe@fixedpoint.jp>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ja\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1520297791.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1528849671.000000\n"
#: writerperfect/inc/strings.hrc:15
msgctxt "STR_ENCODING_DIALOG_TITLE"
@@ -24,7 +24,7 @@ msgstr "ファイルをインポート"
#: writerperfect/inc/strings.hrc:16
msgctxt "STR_ENCODING_DIALOG_TITLE_MSMULTIPLAN"
msgid "Import MS Multiplan for DOS file"
-msgstr ""
+msgstr "MS Multiplan for DOS ファイルのインポート"
#: writerperfect/inc/strings.hrc:17
msgctxt "STR_ENCODING_DIALOG_TITLE_MSWORKS"
@@ -64,99 +64,99 @@ msgstr "EPUBエクスポート"
#: writerperfect/uiconfig/ui/exportepub.ui:91
msgctxt "exportepub|generalft"
msgid "General"
-msgstr ""
+msgstr "全般"
-#: writerperfect/uiconfig/ui/exportepub.ui:122
+#: writerperfect/uiconfig/ui/exportepub.ui:121
msgctxt "exportepub|versionft"
msgid "Version:"
msgstr "バージョン:"
-#: writerperfect/uiconfig/ui/exportepub.ui:139
+#: writerperfect/uiconfig/ui/exportepub.ui:138
msgctxt "exportepub|epub3"
msgid "EPUB 3.0"
msgstr "EPUB 3.0"
-#: writerperfect/uiconfig/ui/exportepub.ui:140
+#: writerperfect/uiconfig/ui/exportepub.ui:139
msgctxt "exportepub|epub2"
msgid "EPUB 2.0"
msgstr "EPUB 2.0"
-#: writerperfect/uiconfig/ui/exportepub.ui:175
+#: writerperfect/uiconfig/ui/exportepub.ui:174
msgctxt "exportepub|splitft"
msgid "Split method:"
msgstr "分割方法:"
-#: writerperfect/uiconfig/ui/exportepub.ui:192
+#: writerperfect/uiconfig/ui/exportepub.ui:191
msgctxt "exportepub|splitpage"
msgid "Page break"
msgstr "改ページ"
-#: writerperfect/uiconfig/ui/exportepub.ui:193
+#: writerperfect/uiconfig/ui/exportepub.ui:192
msgctxt "exportepub|splitheading"
msgid "Heading"
msgstr "見出し"
-#: writerperfect/uiconfig/ui/exportepub.ui:228
+#: writerperfect/uiconfig/ui/exportepub.ui:227
msgctxt "exportepub|layoutft"
msgid "Layout method:"
-msgstr ""
+msgstr "レイアウト方法:"
-#: writerperfect/uiconfig/ui/exportepub.ui:245
+#: writerperfect/uiconfig/ui/exportepub.ui:244
msgctxt "exportepub|layoutreflowable"
msgid "Reflowable"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:246
+#: writerperfect/uiconfig/ui/exportepub.ui:245
msgctxt "exportepub|layoutfixed"
msgid "Fixed"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:281
+#: writerperfect/uiconfig/ui/exportepub.ui:280
msgctxt "exportepub|coverimageft"
msgid "Custom cover image:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:311
+#: writerperfect/uiconfig/ui/exportepub.ui:310
msgctxt "exportepub|coverbutton"
msgid "Browse..."
-msgstr ""
+msgstr "閲覧..."
-#: writerperfect/uiconfig/ui/exportepub.ui:355
+#: writerperfect/uiconfig/ui/exportepub.ui:354
msgctxt "exportepub|mediadirft"
msgid "Custom media directory:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:385
+#: writerperfect/uiconfig/ui/exportepub.ui:384
msgctxt "exportepub|mediabutton"
msgid "Browse..."
-msgstr ""
+msgstr "閲覧..."
-#: writerperfect/uiconfig/ui/exportepub.ui:429
+#: writerperfect/uiconfig/ui/exportepub.ui:428
msgctxt "exportepub|metadataft"
msgid "Metadata"
msgstr "メタデータ"
-#: writerperfect/uiconfig/ui/exportepub.ui:470
+#: writerperfect/uiconfig/ui/exportepub.ui:468
msgctxt "exportepub|identifierft"
msgid "Identifier:"
msgstr "識別子:"
-#: writerperfect/uiconfig/ui/exportepub.ui:485
+#: writerperfect/uiconfig/ui/exportepub.ui:483
msgctxt "exportepub|titleft"
msgid "Title:"
msgstr "タイトル:"
-#: writerperfect/uiconfig/ui/exportepub.ui:511
+#: writerperfect/uiconfig/ui/exportepub.ui:509
msgctxt "exportepub|authorft"
msgid "Author:"
msgstr "作者:"
-#: writerperfect/uiconfig/ui/exportepub.ui:537
+#: writerperfect/uiconfig/ui/exportepub.ui:535
msgctxt "exportepub|languageft"
msgid "Language:"
msgstr "言語:"
-#: writerperfect/uiconfig/ui/exportepub.ui:563
+#: writerperfect/uiconfig/ui/exportepub.ui:561
msgctxt "exportepub|dateft"
msgid "Date:"
msgstr "日付:"
diff --git a/source/ja/xmlsecurity/messages.po b/source/ja/xmlsecurity/messages.po
index c4be42912c0..b05a1b54269 100644
--- a/source/ja/xmlsecurity/messages.po
+++ b/source/ja/xmlsecurity/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: 2018-05-22 13:17+0200\n"
-"PO-Revision-Date: 2018-04-20 09:04+0000\n"
-"Last-Translator: nishbone <ml.nishibori.kiyotaka@gmail.com>\n"
+"PO-Revision-Date: 2018-05-29 22:02+0000\n"
+"Last-Translator: Takeshi Abe <tabe@fixedpoint.jp>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ja\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1524215073.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1527631324.000000\n"
#: xmlsecurity/inc/strings.hrc:25
msgctxt "STR_CERTIFICATE_NOT_VALIDATED"
@@ -460,7 +460,7 @@ msgstr "署名"
#: xmlsecurity/uiconfig/ui/selectcertificatedialog.ui:194
msgctxt "selectcertificatedialog|str_selectsign"
msgid "Select"
-msgstr ""
+msgstr "選択"
#: xmlsecurity/uiconfig/ui/selectcertificatedialog.ui:199
msgctxt "selectcertificatedialog|str_encrypt"
diff --git a/source/jv/cui/messages.po b/source/jv/cui/messages.po
index 270b1f762f3..d7f8b492d6e 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2017-12-20 03:53+0000\n"
"Last-Translator: Ki Drupadi <kidrupadi@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -10150,101 +10150,101 @@ msgctxt "positionsizedialog|PositionAndSizeDialog"
msgid "Position and Size"
msgstr ""
-#: cui/uiconfig/ui/positionsizedialog.ui:107
+#: cui/uiconfig/ui/positionsizedialog.ui:136
msgctxt "positionsizedialog|RID_SVXPAGE_POSITION_SIZE"
msgid "Position and Size"
msgstr ""
-#: cui/uiconfig/ui/positionsizedialog.ui:129
+#: cui/uiconfig/ui/positionsizedialog.ui:182
msgctxt "positionsizedialog|RID_SVXPAGE_SWPOSSIZE"
msgid "Position and Size"
msgstr ""
-#: cui/uiconfig/ui/positionsizedialog.ui:152
+#: cui/uiconfig/ui/positionsizedialog.ui:229
#, fuzzy
msgctxt "positionsizedialog|RID_SVXPAGE_ANGLE"
msgid "Rotation"
msgstr "Petikan"
-#: cui/uiconfig/ui/positionsizedialog.ui:175
+#: cui/uiconfig/ui/positionsizedialog.ui:276
msgctxt "positionsizedialog|RID_SVXPAGE_SLANT"
msgid "Slant & Corner Radius"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:40
+#: cui/uiconfig/ui/possizetabpage.ui:61
msgctxt "possizetabpage|FT_POS_X"
msgid "Position _X:"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:56
+#: cui/uiconfig/ui/possizetabpage.ui:75
msgctxt "possizetabpage|FT_POS_Y"
msgid "Position _Y:"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:110
+#: cui/uiconfig/ui/possizetabpage.ui:128
msgctxt "possizetabpage|FT_POSREFERENCE"
msgid "_Base point:"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:148
+#: cui/uiconfig/ui/possizetabpage.ui:182
#, fuzzy
msgctxt "possizetabpage|label1"
msgid "Position"
msgstr "posisi"
-#: cui/uiconfig/ui/possizetabpage.ui:190
+#: cui/uiconfig/ui/possizetabpage.ui:224
msgctxt "possizetabpage|FT_WIDTH"
msgid "Wi_dth:"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:206
+#: cui/uiconfig/ui/possizetabpage.ui:238
msgctxt "possizetabpage|FT_HEIGHT"
msgid "H_eight:"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:247
+#: cui/uiconfig/ui/possizetabpage.ui:276
msgctxt "possizetabpage|CBX_SCALE"
msgid "_Keep ratio"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:279
+#: cui/uiconfig/ui/possizetabpage.ui:307
msgctxt "possizetabpage|FT_SIZEREFERENCE"
msgid "Base _point:"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:317
+#: cui/uiconfig/ui/possizetabpage.ui:361
#, fuzzy
msgctxt "possizetabpage|label2"
msgid "Size"
msgstr "Ukuran:"
-#: cui/uiconfig/ui/possizetabpage.ui:356
+#: cui/uiconfig/ui/possizetabpage.ui:401
#, fuzzy
msgctxt "possizetabpage|TSB_POSPROTECT"
msgid "Positio_n"
msgstr "posisi"
-#: cui/uiconfig/ui/possizetabpage.ui:373
+#: cui/uiconfig/ui/possizetabpage.ui:418
msgctxt "possizetabpage|TSB_SIZEPROTECT"
msgid "_Size"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:397
+#: cui/uiconfig/ui/possizetabpage.ui:441
msgctxt "possizetabpage|label3"
msgid "Protect"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:430
+#: cui/uiconfig/ui/possizetabpage.ui:475
msgctxt "possizetabpage|TSB_AUTOGROW_WIDTH"
msgid "_Fit width to text"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:447
+#: cui/uiconfig/ui/possizetabpage.ui:492
msgctxt "possizetabpage|TSB_AUTOGROW_HEIGHT"
msgid "Fit _height to text"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:471
+#: cui/uiconfig/ui/possizetabpage.ui:515
msgctxt "possizetabpage|label4"
msgid "Adapt"
msgstr ""
@@ -10451,47 +10451,47 @@ msgctxt "recordnumberdialog|label2"
msgid "go to record"
msgstr ""
-#: cui/uiconfig/ui/rotationtabpage.ui:52
+#: cui/uiconfig/ui/rotationtabpage.ui:56
msgctxt "rotationtabpage|FT_POS_X"
msgid "Position _X:"
msgstr ""
-#: cui/uiconfig/ui/rotationtabpage.ui:66
+#: cui/uiconfig/ui/rotationtabpage.ui:70
msgctxt "rotationtabpage|FT_POS_Y"
msgid "Position _Y:"
msgstr ""
-#: cui/uiconfig/ui/rotationtabpage.ui:116
+#: cui/uiconfig/ui/rotationtabpage.ui:123
msgctxt "rotationtabpage|FT_POSPRESETS"
msgid "_Default settings:"
msgstr ""
-#: cui/uiconfig/ui/rotationtabpage.ui:130
+#: cui/uiconfig/ui/rotationtabpage.ui:151
msgctxt "rotationtabpage|CTL_RECT|tooltip_text"
msgid "Rotation point"
msgstr ""
-#: cui/uiconfig/ui/rotationtabpage.ui:155
+#: cui/uiconfig/ui/rotationtabpage.ui:178
msgctxt "rotationtabpage|label1"
msgid "Pivot Point"
msgstr ""
-#: cui/uiconfig/ui/rotationtabpage.ui:197
+#: cui/uiconfig/ui/rotationtabpage.ui:220
msgctxt "rotationtabpage|FT_ANGLE"
msgid "_Angle:"
msgstr ""
-#: cui/uiconfig/ui/rotationtabpage.ui:238
+#: cui/uiconfig/ui/rotationtabpage.ui:263
msgctxt "rotationtabpage|FT_ANGLEPRESETS"
msgid "Default _settings:"
msgstr ""
-#: cui/uiconfig/ui/rotationtabpage.ui:252
+#: cui/uiconfig/ui/rotationtabpage.ui:287
msgctxt "rotationtabpage|CTL_ANGLE|tooltip_text"
msgid "Rotation Angle"
msgstr ""
-#: cui/uiconfig/ui/rotationtabpage.ui:277
+#: cui/uiconfig/ui/rotationtabpage.ui:314
msgctxt "rotationtabpage|label2"
msgid "Rotation Angle"
msgstr ""
@@ -10874,52 +10874,52 @@ msgctxt "similaritysearchdialog|relaxbox"
msgid "_Combine"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:50
+#: cui/uiconfig/ui/slantcornertabpage.ui:70
msgctxt "slantcornertabpage|label5"
msgid "_X:"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:88
+#: cui/uiconfig/ui/slantcornertabpage.ui:110
msgctxt "slantcornertabpage|label6"
msgid "_Y:"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:125
+#: cui/uiconfig/ui/slantcornertabpage.ui:149
msgctxt "slantcornertabpage|label3"
msgid "Control Point 1"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:159
+#: cui/uiconfig/ui/slantcornertabpage.ui:183
msgctxt "slantcornertabpage|FT_RADIUS"
msgid "_Radius:"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:189
+#: cui/uiconfig/ui/slantcornertabpage.ui:214
msgctxt "slantcornertabpage|label1"
msgid "Corner Radius"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:223
+#: cui/uiconfig/ui/slantcornertabpage.ui:248
msgctxt "slantcornertabpage|FT_ANGLE"
msgid "_Angle:"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:253
+#: cui/uiconfig/ui/slantcornertabpage.ui:279
msgctxt "slantcornertabpage|label2"
msgid "Slant"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:294
+#: cui/uiconfig/ui/slantcornertabpage.ui:320
msgctxt "slantcornertabpage|label4"
msgid "_X:"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:332
+#: cui/uiconfig/ui/slantcornertabpage.ui:360
msgctxt "slantcornertabpage|label7"
msgid "_Y:"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:369
+#: cui/uiconfig/ui/slantcornertabpage.ui:399
msgctxt "slantcornertabpage|label8"
msgid "Control Point 2"
msgstr ""
@@ -11209,116 +11209,116 @@ msgctxt "storedwebconnectiondialog|change"
msgid "_Change Password..."
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:74
+#: cui/uiconfig/ui/swpossizepage.ui:85
msgctxt "swpossizepage|widthft"
msgid "_Width:"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:111
+#: cui/uiconfig/ui/swpossizepage.ui:123
msgctxt "swpossizepage|heightft"
msgid "H_eight:"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:128
+#: cui/uiconfig/ui/swpossizepage.ui:141
msgctxt "swpossizepage|ratio"
msgid "_Keep ratio"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:149
+#: cui/uiconfig/ui/swpossizepage.ui:162
#, fuzzy
msgctxt "swpossizepage|label2"
msgid "Size"
msgstr "Ukuran:"
-#: cui/uiconfig/ui/swpossizepage.ui:205
+#: cui/uiconfig/ui/swpossizepage.ui:218
msgctxt "swpossizepage|topage"
msgid "To _page"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:222
+#: cui/uiconfig/ui/swpossizepage.ui:234
msgctxt "swpossizepage|topara"
msgid "To paragrap_h"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:238
+#: cui/uiconfig/ui/swpossizepage.ui:250
msgctxt "swpossizepage|tochar"
msgid "To cha_racter"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:254
+#: cui/uiconfig/ui/swpossizepage.ui:266
msgctxt "swpossizepage|aschar"
msgid "_As character"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:270
+#: cui/uiconfig/ui/swpossizepage.ui:282
msgctxt "swpossizepage|toframe"
msgid "To _frame"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:292
+#: cui/uiconfig/ui/swpossizepage.ui:304
msgctxt "swpossizepage|label1"
msgid "Anchor"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:333
+#: cui/uiconfig/ui/swpossizepage.ui:344
#, fuzzy
msgctxt "swpossizepage|horiposft"
msgid "Hori_zontal:"
msgstr "horisontal"
-#: cui/uiconfig/ui/swpossizepage.ui:347
+#: cui/uiconfig/ui/swpossizepage.ui:358
msgctxt "swpossizepage|horibyft"
msgid "b_y:"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:361
+#: cui/uiconfig/ui/swpossizepage.ui:372
msgctxt "swpossizepage|vertbyft"
msgid "_by:"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:375
+#: cui/uiconfig/ui/swpossizepage.ui:386
msgctxt "swpossizepage|horitoft"
msgid "_to:"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:421
+#: cui/uiconfig/ui/swpossizepage.ui:433
msgctxt "swpossizepage|vertposft"
msgid "_Vertical:"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:457
+#: cui/uiconfig/ui/swpossizepage.ui:470
msgctxt "swpossizepage|verttoft"
msgid "t_o:"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:478
+#: cui/uiconfig/ui/swpossizepage.ui:492
msgctxt "swpossizepage|mirror"
msgid "_Mirror on even pages"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:495
+#: cui/uiconfig/ui/swpossizepage.ui:509
msgctxt "swpossizepage|followtextflow"
msgid "Follow te_xt flow"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:518
+#: cui/uiconfig/ui/swpossizepage.ui:532
#, fuzzy
msgctxt "swpossizepage|label11"
msgid "Position"
msgstr "posisi"
-#: cui/uiconfig/ui/swpossizepage.ui:549
+#: cui/uiconfig/ui/swpossizepage.ui:563
#, fuzzy
msgctxt "swpossizepage|pos"
msgid "Positio_n"
msgstr "posisi"
-#: cui/uiconfig/ui/swpossizepage.ui:565
+#: cui/uiconfig/ui/swpossizepage.ui:579
msgctxt "swpossizepage|size"
msgid "_Size"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:587
+#: cui/uiconfig/ui/swpossizepage.ui:601
msgctxt "swpossizepage|label3"
msgid "Protect"
msgstr ""
@@ -11512,12 +11512,12 @@ msgctxt "textattrtabpage|label2"
msgid "Spacing to Borders"
msgstr ""
-#: cui/uiconfig/ui/textattrtabpage.ui:425
+#: cui/uiconfig/ui/textattrtabpage.ui:423
msgctxt "textattrtabpage|TSB_FULL_WIDTH"
msgid "Full _width"
msgstr ""
-#: cui/uiconfig/ui/textattrtabpage.ui:448
+#: cui/uiconfig/ui/textattrtabpage.ui:446
msgctxt "textattrtabpage|label3"
msgid "Text Anchor"
msgstr ""
diff --git a/source/jv/filter/source/config/fragments/filters.po b/source/jv/filter/source/config/fragments/filters.po
index 01818fcb957..7aa4d9b25a8 100644
--- a/source/jv/filter/source/config/fragments/filters.po
+++ b/source/jv/filter/source/config/fragments/filters.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-16 16:54+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2016-12-03 00:48+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -464,7 +464,7 @@ msgctxt ""
"MS Word 2003 XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Word 2003 XML"
+msgid "Word 2003 XML"
msgstr ""
#: MS_Word_2007_XML.xcu
@@ -1283,7 +1283,7 @@ msgctxt ""
"Calc MS Excel 2007 VBA XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Excel 2007-2016 XML (macro enabled)"
+msgid "Excel 2007–2019 (macro-enabled)"
msgstr ""
#: calc_MS_Excel_2007_XML.xcu
diff --git a/source/jv/filter/source/config/fragments/types.po b/source/jv/filter/source/config/fragments/types.po
index 276a88362ee..d057edd9c09 100644
--- a/source/jv/filter/source/config/fragments/types.po
+++ b/source/jv/filter/source/config/fragments/types.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-08 15:11+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2015-11-11 21:02+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -292,7 +292,7 @@ msgctxt ""
"writer_MS_Word_2003_XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Word 2003 XML"
+msgid "Word 2003 XML"
msgstr ""
#: writer_MS_Word_2007_XML.xcu
diff --git a/source/jv/fpicker/messages.po b/source/jv/fpicker/messages.po
index ea9b5aa8d67..2ccec4a102a 100644
--- a/source/jv/fpicker/messages.po
+++ b/source/jv/fpicker/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+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"
@@ -269,12 +269,12 @@ msgstr ""
#: fpicker/uiconfig/ui/foldernamedialog.ui:8
msgctxt "foldernamedialog|FolderNameDialog"
-msgid "Folder Name ?"
+msgid "Folder Name"
msgstr ""
#: fpicker/uiconfig/ui/foldernamedialog.ui:91
msgctxt "foldernamedialog|label2"
-msgid "Na_me"
+msgid "Na_me:"
msgstr ""
#: fpicker/uiconfig/ui/foldernamedialog.ui:122
diff --git a/source/jv/officecfg/registry/data/org/openoffice/Office/UI.po b/source/jv/officecfg/registry/data/org/openoffice/Office/UI.po
index 0063b989787..86784c65618 100644
--- a/source/jv/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/jv/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-22 13:17+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2017-09-13 02:28+0000\n"
"Last-Translator: Ki Drupadi <kidrupadi@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -26764,7 +26764,7 @@ msgctxt ""
"..WriterCommands.UserInterface.Commands..uno:TextAttributes\n"
"Label\n"
"value.text"
-msgid "Text Attributes"
+msgid "Text Attributes..."
msgstr ""
#: WriterCommands.xcu
diff --git a/source/jv/readlicense_oo/docs.po b/source/jv/readlicense_oo/docs.po
index b0c7c632f9c..34e0bafb5d7 100644
--- a/source/jv/readlicense_oo/docs.po
+++ b/source/jv/readlicense_oo/docs.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-04-17 15:54+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2016-03-11 05:28+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -117,7 +117,7 @@ msgctxt ""
"readme.xrm\n"
"macxiOSX\n"
"readmeitem.text"
-msgid "MacOSX 10.8 (Mountain Lion) or higher"
+msgid "MacOSX 10.9 (Mavericks) or higher"
msgstr ""
#: readme.xrm
diff --git a/source/jv/sc/messages.po b/source/jv/sc/messages.po
index 00c9318feca..7a90fccb4e3 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-12 14:40+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"
@@ -1878,16 +1878,21 @@ msgid "Nested arrays are not supported."
msgstr ""
#: sc/inc/globstr.hrc:390
+msgctxt "STR_ERR_LONG_BAD_ARRAY_CONTENT"
+msgid "Unsupported inline array content."
+msgstr ""
+
+#: sc/inc/globstr.hrc:391
msgctxt "STR_UNDO_TEXTTOCOLUMNS"
msgid "Text to Columns"
msgstr ""
-#: sc/inc/globstr.hrc:391
+#: sc/inc/globstr.hrc:392
msgctxt "STR_DOC_UPDATED"
msgid "Your spreadsheet has been updated with changes saved by other users."
msgstr ""
-#: sc/inc/globstr.hrc:392
+#: sc/inc/globstr.hrc:393
msgctxt "STR_DOC_WILLBESAVED"
msgid ""
"The spreadsheet must be saved now to activate sharing mode.\n"
@@ -1895,7 +1900,7 @@ msgid ""
"Do you want to continue?"
msgstr ""
-#: sc/inc/globstr.hrc:393
+#: sc/inc/globstr.hrc:394
msgctxt "STR_DOC_WILLNOTBESAVED"
msgid ""
"Already resolved merge conflicts will be lost and your changes to the shared spreadsheet will not be saved.\n"
@@ -1903,7 +1908,7 @@ msgid ""
"Do you want to continue?"
msgstr ""
-#: sc/inc/globstr.hrc:394
+#: sc/inc/globstr.hrc:395
msgctxt "STR_DOC_DISABLESHARED"
msgid ""
"Disabling shared mode of a spreadsheet hinders all other users of the shared spreadsheet to merge back their work.\n"
@@ -1911,7 +1916,7 @@ msgid ""
"Do you want to continue?"
msgstr ""
-#: sc/inc/globstr.hrc:395
+#: sc/inc/globstr.hrc:396
msgctxt "STR_DOC_NOLONGERSHARED"
msgid ""
"This spreadsheet is no longer in shared mode.\n"
@@ -1919,7 +1924,7 @@ msgid ""
"Save your spreadsheet to a separate file and merge your changes to the shared spreadsheet manually."
msgstr ""
-#: sc/inc/globstr.hrc:396
+#: sc/inc/globstr.hrc:397
msgctxt "STR_FILE_LOCKED_TRY_LATER"
msgid ""
"The shared spreadsheet file is locked due to a merge in progress by user: '%1'\n"
@@ -1927,7 +1932,7 @@ msgid ""
"Sharing mode of a locked file cannot be disabled. Try again later."
msgstr ""
-#: sc/inc/globstr.hrc:397
+#: sc/inc/globstr.hrc:398
msgctxt "STR_FILE_LOCKED_SAVE_LATER"
msgid ""
"The shared spreadsheet file is locked due to a merge in progress by user: '%1'\n"
@@ -1935,150 +1940,150 @@ msgid ""
"Try again later to save your changes."
msgstr ""
-#: sc/inc/globstr.hrc:398
+#: sc/inc/globstr.hrc:399
msgctxt "STR_UNKNOWN_USER"
msgid "Unknown User"
msgstr ""
-#: sc/inc/globstr.hrc:399
+#: sc/inc/globstr.hrc:400
msgctxt "STR_SHAPE_AUTOSHAPE"
msgid "AutoShape"
msgstr ""
-#: sc/inc/globstr.hrc:400
+#: sc/inc/globstr.hrc:401
msgctxt "STR_SHAPE_RECTANGLE"
msgid "Rectangle"
msgstr ""
-#: sc/inc/globstr.hrc:401
+#: sc/inc/globstr.hrc:402
#, fuzzy
msgctxt "STR_SHAPE_LINE"
msgid "Line"
msgstr "Baris"
-#: sc/inc/globstr.hrc:402
+#: sc/inc/globstr.hrc:403
msgctxt "STR_SHAPE_OVAL"
msgid "Oval"
msgstr ""
-#: sc/inc/globstr.hrc:403
+#: sc/inc/globstr.hrc:404
#, fuzzy
msgctxt "STR_FORM_BUTTON"
msgid "Button"
msgstr "tombol"
-#: sc/inc/globstr.hrc:404
+#: sc/inc/globstr.hrc:405
msgctxt "STR_FORM_CHECKBOX"
msgid "Check Box"
msgstr ""
-#: sc/inc/globstr.hrc:405
+#: sc/inc/globstr.hrc:406
msgctxt "STR_FORM_OPTIONBUTTON"
msgid "Option Button"
msgstr ""
-#: sc/inc/globstr.hrc:406
+#: sc/inc/globstr.hrc:407
#, fuzzy
msgctxt "STR_FORM_LABEL"
msgid "Label"
msgstr "jeneng"
-#: sc/inc/globstr.hrc:407
+#: sc/inc/globstr.hrc:408
msgctxt "STR_FORM_LISTBOX"
msgid "List Box"
msgstr ""
-#: sc/inc/globstr.hrc:408
+#: sc/inc/globstr.hrc:409
msgctxt "STR_FORM_GROUPBOX"
msgid "Group Box"
msgstr ""
-#: sc/inc/globstr.hrc:409
+#: sc/inc/globstr.hrc:410
msgctxt "STR_FORM_DROPDOWN"
msgid "Drop Down"
msgstr ""
-#: sc/inc/globstr.hrc:410
+#: sc/inc/globstr.hrc:411
msgctxt "STR_FORM_SPINNER"
msgid "Spinner"
msgstr ""
-#: sc/inc/globstr.hrc:411
+#: sc/inc/globstr.hrc:412
msgctxt "STR_FORM_SCROLLBAR"
msgid "Scroll Bar"
msgstr ""
-#: sc/inc/globstr.hrc:412
+#: sc/inc/globstr.hrc:413
msgctxt "STR_STYLE_FAMILY_CELL"
msgid "Cell Styles"
msgstr ""
-#: sc/inc/globstr.hrc:413
+#: sc/inc/globstr.hrc:414
msgctxt "STR_STYLE_FAMILY_PAGE"
msgid "Page Styles"
msgstr ""
-#: sc/inc/globstr.hrc:414
+#: sc/inc/globstr.hrc:415
msgctxt "STR_ERR_DATAPILOTSOURCE"
msgid "Pivot table source data is invalid."
msgstr ""
-#: sc/inc/globstr.hrc:415
+#: sc/inc/globstr.hrc:416
msgctxt "STR_OPTIONS_WARN_SEPARATORS"
msgid "Because the current formula separator settings conflict with the locale, the formula separators have been reset to their default values."
msgstr ""
-#: sc/inc/globstr.hrc:416
+#: sc/inc/globstr.hrc:417
msgctxt "STR_UNDO_INSERT_CURRENT_DATE"
msgid "Insert Current Date"
msgstr ""
-#: sc/inc/globstr.hrc:417
+#: sc/inc/globstr.hrc:418
msgctxt "STR_UNDO_INSERT_CURRENT_TIME"
msgid "Insert Current Time"
msgstr ""
-#: sc/inc/globstr.hrc:418
+#: sc/inc/globstr.hrc:419
msgctxt "STR_MANAGE_NAMES"
msgid "Manage Names..."
msgstr ""
-#: sc/inc/globstr.hrc:419
+#: sc/inc/globstr.hrc:420
msgctxt "STR_HEADER_NAME"
msgid "Name"
msgstr ""
-#: sc/inc/globstr.hrc:420
+#: sc/inc/globstr.hrc:421
msgctxt "STR_HEADER_RANGE_OR_EXPR"
msgid "Range or formula expression"
msgstr ""
-#: sc/inc/globstr.hrc:421
+#: sc/inc/globstr.hrc:422
msgctxt "STR_HEADER_SCOPE"
msgid "Scope"
msgstr ""
-#: sc/inc/globstr.hrc:422
+#: sc/inc/globstr.hrc:423
msgctxt "STR_MULTI_SELECT"
msgid "(multiple)"
msgstr ""
-#: sc/inc/globstr.hrc:423
+#: sc/inc/globstr.hrc:424
msgctxt "STR_GLOBAL_SCOPE"
msgid "Document (Global)"
msgstr ""
-#: sc/inc/globstr.hrc:424
+#: sc/inc/globstr.hrc:425
msgctxt "STR_ERR_NAME_EXISTS"
msgid "Invalid name. Already in use for the selected scope."
msgstr ""
-#: sc/inc/globstr.hrc:425
+#: sc/inc/globstr.hrc:426
msgctxt "STR_ERR_NAME_INVALID"
msgid "Invalid name. Only use letters, numbers and underscore."
msgstr ""
-#: sc/inc/globstr.hrc:426
+#: sc/inc/globstr.hrc:427
msgctxt "STR_UNSAVED_EXT_REF"
msgid ""
"This Document contains external references to unsaved documents.\n"
@@ -2086,218 +2091,218 @@ msgid ""
"Do you want to continue?"
msgstr ""
-#: sc/inc/globstr.hrc:427
+#: sc/inc/globstr.hrc:428
msgctxt "STR_CLOSE_WITH_UNSAVED_REFS"
msgid "This Document is referenced by another document and not yet saved. Closing it without saving will result in data loss."
msgstr ""
-#: sc/inc/globstr.hrc:428
+#: sc/inc/globstr.hrc:429
#, fuzzy
msgctxt "STR_HEADER_RANGE"
msgid "Range"
msgstr "jangkauan"
-#: sc/inc/globstr.hrc:429
+#: sc/inc/globstr.hrc:430
msgctxt "STR_HEADER_COND"
msgid "First Condition"
msgstr ""
-#: sc/inc/globstr.hrc:430
+#: sc/inc/globstr.hrc:431
msgctxt "STR_COND_CONDITION"
msgid "Cell value is"
msgstr ""
-#: sc/inc/globstr.hrc:431
+#: sc/inc/globstr.hrc:432
msgctxt "STR_COND_COLORSCALE"
msgid "ColorScale"
msgstr ""
-#: sc/inc/globstr.hrc:432
+#: sc/inc/globstr.hrc:433
msgctxt "STR_COND_DATABAR"
msgid "DataBar"
msgstr ""
-#: sc/inc/globstr.hrc:433
+#: sc/inc/globstr.hrc:434
msgctxt "STR_COND_ICONSET"
msgid "IconSet"
msgstr ""
-#: sc/inc/globstr.hrc:434
+#: sc/inc/globstr.hrc:435
msgctxt "STR_COND_BETWEEN"
msgid "between"
msgstr ""
-#: sc/inc/globstr.hrc:435
+#: sc/inc/globstr.hrc:436
msgctxt "STR_COND_NOTBETWEEN"
msgid "not between"
msgstr ""
-#: sc/inc/globstr.hrc:436
+#: sc/inc/globstr.hrc:437
msgctxt "STR_COND_UNIQUE"
msgid "unique"
msgstr ""
-#: sc/inc/globstr.hrc:437
+#: sc/inc/globstr.hrc:438
msgctxt "STR_COND_DUPLICATE"
msgid "duplicate"
msgstr ""
-#: sc/inc/globstr.hrc:438
+#: sc/inc/globstr.hrc:439
msgctxt "STR_COND_FORMULA"
msgid "Formula is"
msgstr ""
-#: sc/inc/globstr.hrc:439
+#: sc/inc/globstr.hrc:440
msgctxt "STR_COND_TOP10"
msgid "Top Elements"
msgstr ""
-#: sc/inc/globstr.hrc:440
+#: sc/inc/globstr.hrc:441
msgctxt "STR_COND_BOTTOM10"
msgid "Bottom Elements"
msgstr ""
-#: sc/inc/globstr.hrc:441
+#: sc/inc/globstr.hrc:442
msgctxt "STR_COND_TOP_PERCENT"
msgid "Top Percent"
msgstr ""
-#: sc/inc/globstr.hrc:442
+#: sc/inc/globstr.hrc:443
msgctxt "STR_COND_DATE"
msgid "Date is"
msgstr ""
-#: sc/inc/globstr.hrc:443
+#: sc/inc/globstr.hrc:444
msgctxt "STR_COND_BOTTOM_PERCENT"
msgid "Bottom Percent"
msgstr ""
-#: sc/inc/globstr.hrc:444
+#: sc/inc/globstr.hrc:445
msgctxt "STR_COND_ABOVE_AVERAGE"
msgid "Above Average"
msgstr ""
-#: sc/inc/globstr.hrc:445
+#: sc/inc/globstr.hrc:446
msgctxt "STR_COND_BELOW_AVERAGE"
msgid "Below Average"
msgstr ""
-#: sc/inc/globstr.hrc:446
+#: sc/inc/globstr.hrc:447
msgctxt "STR_COND_ABOVE_EQUAL_AVERAGE"
msgid "Above or equal Average"
msgstr ""
-#: sc/inc/globstr.hrc:447
+#: sc/inc/globstr.hrc:448
msgctxt "STR_COND_BELOW_EQUAL_AVERAGE"
msgid "Below or equal Average"
msgstr ""
-#: sc/inc/globstr.hrc:448
+#: sc/inc/globstr.hrc:449
msgctxt "STR_COND_ERROR"
msgid "an Error code"
msgstr ""
-#: sc/inc/globstr.hrc:449
+#: sc/inc/globstr.hrc:450
msgctxt "STR_COND_NOERROR"
msgid "not an Error code"
msgstr ""
-#: sc/inc/globstr.hrc:450
+#: sc/inc/globstr.hrc:451
msgctxt "STR_COND_BEGINS_WITH"
msgid "Begins with"
msgstr ""
-#: sc/inc/globstr.hrc:451
+#: sc/inc/globstr.hrc:452
msgctxt "STR_COND_ENDS_WITH"
msgid "Ends with"
msgstr ""
-#: sc/inc/globstr.hrc:452
+#: sc/inc/globstr.hrc:453
msgctxt "STR_COND_CONTAINS"
msgid "Contains"
msgstr ""
-#: sc/inc/globstr.hrc:453
+#: sc/inc/globstr.hrc:454
msgctxt "STR_COND_NOT_CONTAINS"
msgid "Not Contains"
msgstr ""
-#: sc/inc/globstr.hrc:454
+#: sc/inc/globstr.hrc:455
msgctxt "STR_COND_TODAY"
msgid "today"
msgstr ""
-#: sc/inc/globstr.hrc:455
+#: sc/inc/globstr.hrc:456
msgctxt "STR_COND_YESTERDAY"
msgid "yesterday"
msgstr ""
-#: sc/inc/globstr.hrc:456
+#: sc/inc/globstr.hrc:457
msgctxt "STR_COND_TOMORROW"
msgid "tomorrow"
msgstr ""
-#: sc/inc/globstr.hrc:457
+#: sc/inc/globstr.hrc:458
msgctxt "STR_COND_LAST7DAYS"
msgid "in the last 7 days"
msgstr ""
-#: sc/inc/globstr.hrc:458
+#: sc/inc/globstr.hrc:459
msgctxt "STR_COND_THISWEEK"
msgid "this week"
msgstr ""
-#: sc/inc/globstr.hrc:459
+#: sc/inc/globstr.hrc:460
msgctxt "STR_COND_LASTWEEK"
msgid "last week"
msgstr ""
-#: sc/inc/globstr.hrc:460
+#: sc/inc/globstr.hrc:461
msgctxt "STR_COND_NEXTWEEK"
msgid "next week"
msgstr ""
-#: sc/inc/globstr.hrc:461
+#: sc/inc/globstr.hrc:462
msgctxt "STR_COND_THISMONTH"
msgid "this month"
msgstr ""
-#: sc/inc/globstr.hrc:462
+#: sc/inc/globstr.hrc:463
msgctxt "STR_COND_LASTMONTH"
msgid "last month"
msgstr ""
-#: sc/inc/globstr.hrc:463
+#: sc/inc/globstr.hrc:464
msgctxt "STR_COND_NEXTMONTH"
msgid "next month"
msgstr ""
-#: sc/inc/globstr.hrc:464
+#: sc/inc/globstr.hrc:465
msgctxt "STR_COND_THISYEAR"
msgid "this year"
msgstr ""
-#: sc/inc/globstr.hrc:465
+#: sc/inc/globstr.hrc:466
msgctxt "STR_COND_LASTYEAR"
msgid "last year"
msgstr ""
-#: sc/inc/globstr.hrc:466
+#: sc/inc/globstr.hrc:467
msgctxt "STR_COND_NEXTYEAR"
msgid "next year"
msgstr ""
-#: sc/inc/globstr.hrc:467
+#: sc/inc/globstr.hrc:468
msgctxt "STR_COND_AND"
msgid "and"
msgstr ""
-#: sc/inc/globstr.hrc:468
+#: sc/inc/globstr.hrc:469
msgctxt "STR_ERR_CONDFORMAT_PROTECTED"
msgid "Conditional Formats can not be created, deleted or changed in protected sheets."
msgstr ""
-#: sc/inc/globstr.hrc:469
+#: sc/inc/globstr.hrc:470
msgctxt "STR_EDIT_EXISTING_COND_FORMATS"
msgid ""
"The selected cell already contains conditional formatting. You can either edit the existing conditional format or you define a new overlapping conditional format.\n"
@@ -2305,7 +2310,7 @@ msgid ""
" Do you want to edit the existing conditional format?"
msgstr ""
-#: sc/inc/globstr.hrc:470
+#: sc/inc/globstr.hrc:471
msgctxt "STR_QUERY_FORMULA_RECALC_ONLOAD_ODS"
msgid ""
"This document was last saved by an application other than %PRODUCTNAME. Some formula cells may produce different results when recalculated.\n"
@@ -2313,7 +2318,7 @@ msgid ""
"Do you want to recalculate all formula cells in this document now?"
msgstr ""
-#: sc/inc/globstr.hrc:471
+#: sc/inc/globstr.hrc:472
msgctxt "STR_QUERY_FORMULA_RECALC_ONLOAD_XLS"
msgid ""
"This document was last saved by Excel. Some formula cells may produce different results when recalculated.\n"
@@ -2321,77 +2326,77 @@ msgid ""
"Do you want to recalculate all formula cells now?"
msgstr ""
-#: sc/inc/globstr.hrc:472
+#: sc/inc/globstr.hrc:473
msgctxt "STR_NO_INSERT_DELETE_OVER_PIVOT_TABLE"
msgid "You cannot insert or delete cells when the affected range intersects with pivot table."
msgstr ""
-#: sc/inc/globstr.hrc:473
+#: sc/inc/globstr.hrc:474
msgctxt "STR_DPFIELD_GROUP_BY_SECONDS"
msgid "Seconds"
msgstr ""
-#: sc/inc/globstr.hrc:474
+#: sc/inc/globstr.hrc:475
msgctxt "STR_DPFIELD_GROUP_BY_MINUTES"
msgid "Minutes"
msgstr ""
-#: sc/inc/globstr.hrc:475
+#: sc/inc/globstr.hrc:476
msgctxt "STR_DPFIELD_GROUP_BY_HOURS"
msgid "Hours"
msgstr ""
-#: sc/inc/globstr.hrc:476
+#: sc/inc/globstr.hrc:477
msgctxt "STR_DPFIELD_GROUP_BY_DAYS"
msgid "Days"
msgstr ""
-#: sc/inc/globstr.hrc:477
+#: sc/inc/globstr.hrc:478
msgctxt "STR_DPFIELD_GROUP_BY_MONTHS"
msgid "Months"
msgstr ""
-#: sc/inc/globstr.hrc:478
+#: sc/inc/globstr.hrc:479
msgctxt "STR_DPFIELD_GROUP_BY_QUARTERS"
msgid "Quarters"
msgstr ""
-#: sc/inc/globstr.hrc:479
+#: sc/inc/globstr.hrc:480
msgctxt "STR_DPFIELD_GROUP_BY_YEARS"
msgid "Years"
msgstr ""
-#: sc/inc/globstr.hrc:480
+#: sc/inc/globstr.hrc:481
msgctxt "STR_INVALIDVAL"
msgid "Invalid target value."
msgstr ""
-#: sc/inc/globstr.hrc:481
+#: sc/inc/globstr.hrc:482
msgctxt "STR_INVALIDVAR"
msgid "Undefined name for variable cell."
msgstr ""
-#: sc/inc/globstr.hrc:482
+#: sc/inc/globstr.hrc:483
msgctxt "STR_INVALIDFORM"
msgid "Undefined name as formula cell."
msgstr ""
-#: sc/inc/globstr.hrc:483
+#: sc/inc/globstr.hrc:484
msgctxt "STR_NOFORMULA"
msgid "Formula cell must contain a formula."
msgstr ""
-#: sc/inc/globstr.hrc:484
+#: sc/inc/globstr.hrc:485
msgctxt "STR_INVALIDINPUT"
msgid "Invalid input."
msgstr ""
-#: sc/inc/globstr.hrc:485
+#: sc/inc/globstr.hrc:486
msgctxt "STR_INVALIDCONDITION"
msgid "Invalid condition."
msgstr ""
-#: sc/inc/globstr.hrc:486
+#: sc/inc/globstr.hrc:487
msgctxt "STR_QUERYREMOVE"
msgid ""
"Should the entry\n"
@@ -2399,136 +2404,136 @@ msgid ""
"be deleted?"
msgstr ""
-#: sc/inc/globstr.hrc:487
+#: sc/inc/globstr.hrc:488
msgctxt "STR_COPYLIST"
msgid "Copy List"
msgstr ""
-#: sc/inc/globstr.hrc:488
+#: sc/inc/globstr.hrc:489
msgctxt "STR_COPYFROM"
msgid "List from"
msgstr ""
-#: sc/inc/globstr.hrc:489
+#: sc/inc/globstr.hrc:490
msgctxt "STR_COPYERR"
msgid "Cells without text have been ignored."
msgstr ""
-#: sc/inc/globstr.hrc:490
+#: sc/inc/globstr.hrc:491
#, c-format
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%s-click to follow hyperlink:"
msgstr ""
-#: sc/inc/globstr.hrc:491
+#: sc/inc/globstr.hrc:492
msgctxt "STR_CLICKHYPERLINK"
msgid "click to open hyperlink:"
msgstr ""
-#: sc/inc/globstr.hrc:492
+#: sc/inc/globstr.hrc:493
msgctxt "STR_PRINT_PREVIEW_NODATA"
msgid "No Data"
msgstr ""
-#: sc/inc/globstr.hrc:493
+#: sc/inc/globstr.hrc:494
msgctxt "STR_PRINT_PREVIEW_EMPTY_RANGE"
msgid "Print Range Empty"
msgstr ""
-#: sc/inc/globstr.hrc:494
+#: sc/inc/globstr.hrc:495
msgctxt "STR_UNDO_CONDFORMAT"
msgid "Conditional Format"
msgstr ""
-#: sc/inc/globstr.hrc:495
+#: sc/inc/globstr.hrc:496
msgctxt "STR_UNDO_CONDFORMAT_LIST"
msgid "Conditional Formats"
msgstr ""
-#: sc/inc/globstr.hrc:496
+#: sc/inc/globstr.hrc:497
msgctxt "STR_UNDO_FORMULA_TO_VALUE"
msgid "Convert Formula To Value"
msgstr ""
-#: sc/inc/globstr.hrc:497
+#: sc/inc/globstr.hrc:498
msgctxt "STR_UNQUOTED_STRING"
msgid "Strings without quotes are interpreted as column/row labels."
msgstr ""
-#: sc/inc/globstr.hrc:498
+#: sc/inc/globstr.hrc:499
msgctxt "STR_ENTER_VALUE"
msgid "Enter a value!"
msgstr ""
-#: sc/inc/globstr.hrc:499
+#: sc/inc/globstr.hrc:500
msgctxt "STR_TABLE_COUNT"
msgid "Sheet %1 of %2"
msgstr ""
-#: sc/inc/globstr.hrc:500
+#: sc/inc/globstr.hrc:501
msgctxt "STR_FUNCTIONS_FOUND"
msgid "%1 and %2 more"
msgstr ""
-#: sc/inc/globstr.hrc:501
+#: sc/inc/globstr.hrc:502
msgctxt "STR_GENERAL"
msgid "General"
msgstr ""
-#: sc/inc/globstr.hrc:502
+#: sc/inc/globstr.hrc:503
msgctxt "STR_NUMBER"
msgid "Number"
msgstr ""
-#: sc/inc/globstr.hrc:503
+#: sc/inc/globstr.hrc:504
msgctxt "STR_PERCENT"
msgid "Percent"
msgstr ""
-#: sc/inc/globstr.hrc:504
+#: sc/inc/globstr.hrc:505
msgctxt "STR_CURRENCY"
msgid "Currency"
msgstr ""
-#: sc/inc/globstr.hrc:505
+#: sc/inc/globstr.hrc:506
#, fuzzy
msgctxt "STR_DATE"
msgid "Date"
msgstr "tanggal"
-#: sc/inc/globstr.hrc:506
+#: sc/inc/globstr.hrc:507
#, fuzzy
msgctxt "STR_TIME"
msgid "Time"
msgstr "wektu"
-#: sc/inc/globstr.hrc:507
+#: sc/inc/globstr.hrc:508
msgctxt "STR_SCIENTIFIC"
msgid "Scientific"
msgstr ""
-#: sc/inc/globstr.hrc:508
+#: sc/inc/globstr.hrc:509
#, fuzzy
msgctxt "STR_FRACTION"
msgid "Fraction"
msgstr "Pecahan"
-#: sc/inc/globstr.hrc:509
+#: sc/inc/globstr.hrc:510
msgctxt "STR_BOOLEAN_VALUE"
msgid "Boolean Value"
msgstr ""
-#: sc/inc/globstr.hrc:510
+#: sc/inc/globstr.hrc:511
msgctxt "STR_TEXT"
msgid "Text"
msgstr "Teks"
-#: sc/inc/globstr.hrc:511
+#: sc/inc/globstr.hrc:512
msgctxt "STR_QUERY_PIVOTTABLE_DELTAB"
msgid "The selected sheet(s) contain source data of related pivot tables that will be lost. Are you sure you want to delete the selected sheet(s)?"
msgstr ""
-#: sc/inc/globstr.hrc:512
+#: sc/inc/globstr.hrc:513
msgctxt "STR_ERR_NAME_INVALID_CELL_REF"
msgid "Invalid name. Reference to a cell, or a range of cells not allowed."
msgstr ""
@@ -10520,7 +10525,7 @@ msgstr "modus"
#: sc/inc/scfuncs.hrc:3010
msgctxt "SC_OPCODE_T_TEST"
-msgid "Mode specifies the number of distribution tails to return. 1= one-tailed, 2 = two-tailed distribution"
+msgid "Mode specifies the number of distribution tails to return. 1 = one-tailed, 2 = two-tailed distribution"
msgstr ""
#: sc/inc/scfuncs.hrc:3011
@@ -10566,7 +10571,7 @@ msgstr "modus"
#: sc/inc/scfuncs.hrc:3024
msgctxt "SC_OPCODE_T_TEST_MS"
-msgid "Mode specifies the number of distribution tails to return. 1= one-tailed, 2 = two-tailed distribution"
+msgid "Mode specifies the number of distribution tails to return. 1 = one-tailed, 2 = two-tailed distribution"
msgstr ""
#: sc/inc/scfuncs.hrc:3025
@@ -18232,22 +18237,22 @@ msgctxt "mergecellsdialog|MergeCellsDialog"
msgid "Merge Cells"
msgstr ""
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:81
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:84
msgctxt "mergecellsdialog|label"
msgid "Some cells are not empty."
msgstr ""
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:96
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:99
msgctxt "mergecellsdialog|move-cells-radio"
msgid "Move the contents of the hidden cells into the first cell"
msgstr ""
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:112
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:115
msgctxt "mergecellsdialog|empty-cells-radio"
msgid "Empty the contents of the hidden cells"
msgstr ""
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:128
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:131
msgctxt "mergecellsdialog|keep-content-radio"
msgid "Keep the contents of the hidden cells"
msgstr ""
diff --git a/source/jv/sd/messages.po b/source/jv/sd/messages.po
index 5c5d8b3b2c8..0f3ac161709 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+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"
@@ -13,171 +13,171 @@ msgstr ""
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-#: sd/inc/DocumentRenderer.hrc:29
+#: sd/inc/DocumentRenderer.hrc:27
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Slides"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:30
+#: sd/inc/DocumentRenderer.hrc:28
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Handouts"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:31
+#: sd/inc/DocumentRenderer.hrc:29
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Notes"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:32
+#: sd/inc/DocumentRenderer.hrc:30
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Outline"
msgstr "garis wates"
-#: sd/inc/DocumentRenderer.hrc:37
+#: sd/inc/DocumentRenderer.hrc:35
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "According to layout"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:38
+#: sd/inc/DocumentRenderer.hrc:36
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "1"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:39
+#: sd/inc/DocumentRenderer.hrc:37
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "2"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:40
+#: sd/inc/DocumentRenderer.hrc:38
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "3"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:41
+#: sd/inc/DocumentRenderer.hrc:39
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "4"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:42
+#: sd/inc/DocumentRenderer.hrc:40
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "6"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:43
+#: sd/inc/DocumentRenderer.hrc:41
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "9"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:48
+#: sd/inc/DocumentRenderer.hrc:46
msgctxt "STR_IMPRESS_PRINT_UI_ORDER_CHOICES"
msgid "Left to right, then down"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:49
+#: sd/inc/DocumentRenderer.hrc:47
msgctxt "STR_IMPRESS_PRINT_UI_ORDER_CHOICES"
msgid "Top to bottom, then right"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:54
+#: sd/inc/DocumentRenderer.hrc:52
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Original colors"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:55
+#: sd/inc/DocumentRenderer.hrc:53
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Grayscale"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:56
+#: sd/inc/DocumentRenderer.hrc:54
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Black & white"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:61
+#: sd/inc/DocumentRenderer.hrc:59
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Original size"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:62
+#: sd/inc/DocumentRenderer.hrc:60
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Fit to printable page"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:63
+#: sd/inc/DocumentRenderer.hrc:61
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Distribute on multiple sheets of paper"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:64
+#: sd/inc/DocumentRenderer.hrc:62
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Tile sheet of paper with repeated slides"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:69
+#: sd/inc/DocumentRenderer.hrc:67
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Original size"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:70
+#: sd/inc/DocumentRenderer.hrc:68
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Fit to printable page"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:71
+#: sd/inc/DocumentRenderer.hrc:69
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Distribute on multiple sheets of paper"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:72
+#: sd/inc/DocumentRenderer.hrc:70
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Tile sheet of paper with repeated pages"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:77
+#: sd/inc/DocumentRenderer.hrc:75
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "All pages"
msgstr "Kabèh ~Kācā"
-#: sd/inc/DocumentRenderer.hrc:78
+#: sd/inc/DocumentRenderer.hrc:76
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "Front sides / right pages"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:79
+#: sd/inc/DocumentRenderer.hrc:77
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "Back sides / left pages"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:84
+#: sd/inc/DocumentRenderer.hrc:82
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~All slides"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:85
+#: sd/inc/DocumentRenderer.hrc:83
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~Slides"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:86
+#: sd/inc/DocumentRenderer.hrc:84
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Se~lection"
msgstr "pilihan"
-#: sd/inc/DocumentRenderer.hrc:91
+#: sd/inc/DocumentRenderer.hrc:89
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~All pages"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:92
+#: sd/inc/DocumentRenderer.hrc:90
#, fuzzy
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Pa~ges"
msgstr "Kācā"
-#: sd/inc/DocumentRenderer.hrc:93
+#: sd/inc/DocumentRenderer.hrc:91
#, fuzzy
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Se~lection"
diff --git a/source/jv/svx/messages.po b/source/jv/svx/messages.po
index f6784c7c820..a2c8361f27a 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: 2018-05-16 16:53+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2017-10-28 16:49+0000\n"
"Last-Translator: Ki Drupadi <kidrupadi@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5264,7 +5264,7 @@ msgstr ""
#: svx/uiconfig/ui/safemodedialog.ui:432
msgctxt "safemodedialog|btn_create_zip"
-msgid "Create Zip Archive from User Profile"
+msgid "Archive User Profile"
msgstr ""
#: svx/uiconfig/ui/safemodedialog.ui:445
@@ -8913,8 +8913,8 @@ msgid "Red"
msgstr ""
#: include/svx/strings.hrc:565
-msgctxt "RID_SVXSTR_COLOR_VIOLET"
-msgid "Violet"
+msgctxt "RID_SVXSTR_COLOR_MAGENTA"
+msgid "Magenta"
msgstr ""
#: include/svx/strings.hrc:566
@@ -8980,8 +8980,8 @@ msgid "Light Red"
msgstr ""
#: include/svx/strings.hrc:579
-msgctxt "RID_SVXSTR_COLOR_LIGHTVIOLET"
-msgid "Light Violet"
+msgctxt "RID_SVXSTR_COLOR_LIGHTMAGENTA"
+msgid "Light Magenta"
msgstr ""
#: include/svx/strings.hrc:580
@@ -9046,8 +9046,8 @@ msgid "Dark Red"
msgstr ""
#: include/svx/strings.hrc:593
-msgctxt "RID_SVXSTR_COLOR_DARKVIOLET1"
-msgid "Dark Violet"
+msgctxt "RID_SVXSTR_COLOR_DARKMAGENTA"
+msgid "Dark Magenta"
msgstr ""
#: include/svx/strings.hrc:594
@@ -9082,55 +9082,55 @@ msgstr ""
#. Elements of the Tonal color palette
#: include/svx/strings.hrc:601
+msgctxt "RID_SVXSTR_COLOR_VIOLET"
+msgid "Violet"
+msgstr ""
+
+#: include/svx/strings.hrc:602
msgctxt "RID_SVXSTR_COLOR_VIOLET_OUG"
msgid "Violet (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:602
+#: include/svx/strings.hrc:603
msgctxt "RID_SVXSTR_COLOR_BLUE_OUG"
msgid "Blue (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:603
+#: include/svx/strings.hrc:604
msgctxt "RID_SVXSTR_COLOR_AZURE_OUG"
msgid "Azure (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:604
+#: include/svx/strings.hrc:605
msgctxt "RID_SVXSTR_COLOR_SPRINGGREEN_OUG"
msgid "Spring Green (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:605
+#: include/svx/strings.hrc:606
msgctxt "RID_SVXSTR_COLOR_GREEN_OUG"
msgid "Green (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:606
+#: include/svx/strings.hrc:607
msgctxt "RID_SVXSTR_COLOR_CHARTREUSEGREEN_OUG"
msgid "Chartreuse Green (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:607
+#: include/svx/strings.hrc:608
msgctxt "RID_SVXSTR_COLOR_ORANGE_OUG"
msgid "Orange (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:608
+#: include/svx/strings.hrc:609
msgctxt "RID_SVXSTR_COLOR_RED_OUG"
msgid "Red (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:609
+#: include/svx/strings.hrc:610
msgctxt "RID_SVXSTR_COLOR_ROSE_OUG"
msgid "Rose (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:610
-msgctxt "RID_SVXSTR_COLOR_MAGENTA"
-msgid "Magenta"
-msgstr ""
-
#: include/svx/strings.hrc:611
msgctxt "RID_SVXSTR_COLOR_AZURE"
msgid "Azure"
@@ -12256,12 +12256,12 @@ msgstr ""
#: include/svx/strings.hrc:1273
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_6"
-msgid "Check mark bullets"
+msgid "Cross mark bullets"
msgstr ""
#: include/svx/strings.hrc:1274
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_7"
-msgid "Tick mark bullets"
+msgid "Check mark bullets"
msgstr ""
#: include/svx/strings.hrc:1275
diff --git a/source/jv/sw/messages.po b/source/jv/sw/messages.po
index ed365790df9..1040d7bc6c1 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: 2018-05-22 13:17+0200\n"
+"POT-Creation-Date: 2018-06-12 14:41+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"
@@ -1200,12 +1200,12 @@ msgstr "Petikan"
#: sw/inc/strings.hrc:172
msgctxt "STR_POOLCOLL_TOX_ILLUSH"
-msgid "Illustration Index Heading"
+msgid "Figure Index Heading"
msgstr ""
#: sw/inc/strings.hrc:173
msgctxt "STR_POOLCOLL_TOX_ILLUS1"
-msgid "Illustration Index 1"
+msgid "Figure Index 1"
msgstr ""
#: sw/inc/strings.hrc:174
@@ -3685,7 +3685,7 @@ msgstr ""
#: sw/inc/strings.hrc:672
msgctxt "STR_TOX_ILL"
-msgid "Illustration Index"
+msgid "Table of Figures"
msgstr ""
#: sw/inc/strings.hrc:673
@@ -9544,72 +9544,72 @@ msgctxt "footnotepage|label5"
msgid "Continuation Notice"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:49
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:55
msgctxt "footnotesendnotestabpage|ftnntnum"
msgid "_Restart numbering"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:91
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:93
msgctxt "footnotesendnotestabpage|ftnoffset_label"
msgid "_Start at:"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:112
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:111
msgctxt "footnotesendnotestabpage|ftnntnumfmt"
msgid "Custom _format"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:155
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:150
msgctxt "footnotesendnotestabpage|ftnsuffix_label"
msgid "Aft_er:"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:199
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:188
msgctxt "footnotesendnotestabpage|ftnprefix_label"
msgid "Be_fore:"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:228
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:212
msgctxt "footnotesendnotestabpage|ftnntattextend"
msgid "Collec_t at end of text"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:252
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:234
msgctxt "footnotesendnotestabpage|label1"
msgid "Footnotes"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:289
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:271
msgctxt "footnotesendnotestabpage|endntattextend"
msgid "C_ollect at end of section"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:315
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:295
msgctxt "footnotesendnotestabpage|endntnum"
msgid "_Restart numbering"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:357
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:333
msgctxt "footnotesendnotestabpage|endoffset_label"
msgid "_Start at:"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:378
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:351
msgctxt "footnotesendnotestabpage|endntnumfmt"
msgid "_Custom format"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:421
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:390
msgctxt "footnotesendnotestabpage|endsuffix_label"
msgid "Aft_er:"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:465
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:428
msgctxt "footnotesendnotestabpage|endprefix_label"
msgid "Be_fore:"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:500
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:458
msgctxt "footnotesendnotestabpage|label2"
msgid "Endnotes"
msgstr ""
@@ -9640,28 +9640,28 @@ msgctxt "formatsectiondialog|notes"
msgid "Footnotes/Endnotes"
msgstr ""
-#: sw/uiconfig/swriter/ui/formattablepage.ui:63
+#: sw/uiconfig/swriter/ui/formattablepage.ui:77
#, fuzzy
msgctxt "formattablepage|nameft"
msgid "_Name"
msgstr "_Jeneng:"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:79
+#: sw/uiconfig/swriter/ui/formattablepage.ui:91
msgctxt "formattablepage|widthft"
msgid "W_idth"
msgstr ""
-#: sw/uiconfig/swriter/ui/formattablepage.ui:110
+#: sw/uiconfig/swriter/ui/formattablepage.ui:120
msgctxt "formattablepage|relwidth"
msgid "Relati_ve"
msgstr ""
-#: sw/uiconfig/swriter/ui/formattablepage.ui:155
+#: sw/uiconfig/swriter/ui/formattablepage.ui:160
msgctxt "formattablepage|label45"
msgid "Properties"
msgstr "Properti"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:194
+#: sw/uiconfig/swriter/ui/formattablepage.ui:195
msgctxt "formattablepage|leftft"
msgid "Lef_t"
msgstr ""
@@ -9671,65 +9671,65 @@ msgctxt "formattablepage|rightft"
msgid "Ri_ght"
msgstr ""
-#: sw/uiconfig/swriter/ui/formattablepage.ui:228
+#: sw/uiconfig/swriter/ui/formattablepage.ui:226
msgctxt "formattablepage|aboveft"
msgid "_Above"
msgstr ""
-#: sw/uiconfig/swriter/ui/formattablepage.ui:245
+#: sw/uiconfig/swriter/ui/formattablepage.ui:241
msgctxt "formattablepage|belowft"
msgid "_Below"
msgstr ""
-#: sw/uiconfig/swriter/ui/formattablepage.ui:320
+#: sw/uiconfig/swriter/ui/formattablepage.ui:311
#, fuzzy
msgctxt "formattablepage|label46"
msgid "Spacing"
msgstr "jarak spasi"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:362
+#: sw/uiconfig/swriter/ui/formattablepage.ui:349
#, fuzzy
msgctxt "formattablepage|full"
msgid "A_utomatic"
msgstr "otomatis"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:380
+#: sw/uiconfig/swriter/ui/formattablepage.ui:365
msgctxt "formattablepage|left"
msgid "_Left"
msgstr ""
-#: sw/uiconfig/swriter/ui/formattablepage.ui:398
+#: sw/uiconfig/swriter/ui/formattablepage.ui:381
msgctxt "formattablepage|fromleft"
msgid "_From left"
msgstr ""
-#: sw/uiconfig/swriter/ui/formattablepage.ui:416
+#: sw/uiconfig/swriter/ui/formattablepage.ui:397
msgctxt "formattablepage|right"
msgid "R_ight"
msgstr ""
-#: sw/uiconfig/swriter/ui/formattablepage.ui:435
+#: sw/uiconfig/swriter/ui/formattablepage.ui:413
msgctxt "formattablepage|center"
msgid "_Center"
msgstr ""
-#: sw/uiconfig/swriter/ui/formattablepage.ui:453
+#: sw/uiconfig/swriter/ui/formattablepage.ui:429
msgctxt "formattablepage|free"
msgid "_Manual"
msgstr ""
-#: sw/uiconfig/swriter/ui/formattablepage.ui:478
+#: sw/uiconfig/swriter/ui/formattablepage.ui:452
#, fuzzy
msgctxt "formattablepage|label43"
msgid "Alignment"
msgstr "perataan"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:522
+#: sw/uiconfig/swriter/ui/formattablepage.ui:491
msgctxt "formattablepage|label53"
msgid "Text _direction"
msgstr ""
-#: sw/uiconfig/swriter/ui/formattablepage.ui:553
+#: sw/uiconfig/swriter/ui/formattablepage.ui:519
#, fuzzy
msgctxt "formattablepage|label44"
msgid "Properties "
@@ -10100,23 +10100,28 @@ msgctxt "headerfootermenu|insert_pagenumber"
msgid "Insert Page Number"
msgstr ""
-#: sw/uiconfig/swriter/ui/indentpage.ui:52
+#: sw/uiconfig/swriter/ui/headerfootermenu.ui:42
+msgctxt "headerfootermenu|insert_pagecount"
+msgid "Insert Page Count"
+msgstr ""
+
+#: sw/uiconfig/swriter/ui/indentpage.ui:57
msgctxt "indentpage|label1"
msgid "_Before section"
msgstr ""
-#: sw/uiconfig/swriter/ui/indentpage.ui:67
+#: sw/uiconfig/swriter/ui/indentpage.ui:71
msgctxt "indentpage|label3"
msgid "_After section"
msgstr ""
-#: sw/uiconfig/swriter/ui/indentpage.ui:113
+#: sw/uiconfig/swriter/ui/indentpage.ui:115
#, fuzzy
msgctxt "indentpage|label2"
msgid "Indent"
msgstr "njorok"
-#: sw/uiconfig/swriter/ui/indentpage.ui:142
+#: sw/uiconfig/swriter/ui/indentpage.ui:155
msgctxt "indentpage|preview-atkobject"
msgid "Example"
msgstr ""
@@ -13737,7 +13742,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:68
msgctxt "optcompatpage|format"
-msgid "MS Word-compatible trailing blanks"
+msgid "Word-compatible trailing blanks"
msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:69
@@ -13747,7 +13752,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:70
msgctxt "optcompatpage|format"
-msgid "A database field (e.g., MailMerge) with empty value hides its paragraph"
+msgid "Hide paragraphs of database fields (e.g., mail merge) with an empty value"
msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:71
@@ -16514,128 +16519,128 @@ msgctxt "tableproperties|background"
msgid "Background"
msgstr "latar"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:25
-#, fuzzy
-msgctxt "tabletextflowpage|liststore1"
-msgid "Horizontal"
-msgstr "horisontal"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:29
-#, fuzzy
-msgctxt "tabletextflowpage|liststore1"
-msgid "Vertical"
-msgstr "vertikal"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:33
-msgctxt "tabletextflowpage|liststore1"
-msgid "Use superordinate object settings"
-msgstr ""
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:47
-msgctxt "tabletextflowpage|liststore2"
-msgid "Top"
-msgstr ""
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:51
-#, fuzzy
-msgctxt "tabletextflowpage|liststore2"
-msgid "Centered"
-msgstr "mlebu"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:55
-#, fuzzy
-msgctxt "tabletextflowpage|liststore2"
-msgid "Bottom"
-msgstr "ngisor"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:97
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:53
msgctxt "tabletextflowpage|break"
msgid "_Break"
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:112
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:68
#, fuzzy
msgctxt "tabletextflowpage|page"
msgid "_Page"
msgstr "Kācā"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:132
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:87
msgctxt "tabletextflowpage|column"
msgid "Col_umn"
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:151
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:106
msgctxt "tabletextflowpage|before"
msgid "Be_fore"
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:171
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:125
msgctxt "tabletextflowpage|after"
msgid "_After"
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:203
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:158
msgctxt "tabletextflowpage|pagestyle"
msgid "With Page St_yle"
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:224
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:177
msgctxt "tabletextflowpage|pagenoft"
msgid "Page _number"
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:257
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:213
msgctxt "tabletextflowpage|pagestylelb-atkobject"
msgid "With Page Style"
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:274
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:230
msgctxt "tabletextflowpage|split"
msgid "Allow _table to split across pages and columns"
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:289
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:245
msgctxt "tabletextflowpage|splitrow"
msgid "Allow row to break a_cross pages and columns"
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:306
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:262
msgctxt "tabletextflowpage|keep"
msgid "_Keep with next paragraph"
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:328
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:284
msgctxt "tabletextflowpage|label40"
msgid "Text _orientation"
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:361
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:298
+#, fuzzy
+msgctxt "tabletextflowpage|liststore1"
+msgid "Horizontal"
+msgstr "horisontal"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:299
+#, fuzzy
+msgctxt "tabletextflowpage|liststore1"
+msgid "Vertical"
+msgstr "vertikal"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:300
+msgctxt "tabletextflowpage|liststore1"
+msgid "Use superordinate object settings"
+msgstr ""
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:321
msgctxt "tabletextflowpage|headline"
msgid "R_epeat heading"
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:383
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:343
msgctxt "tabletextflowpage|label38"
msgid "The first "
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:396
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:356
#, fuzzy
msgctxt "tabletextflowpage|label39"
msgid "rows"
msgstr "baris"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:434
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:395
msgctxt "tabletextflowpage|label35"
msgid "Text Flow"
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:467
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:428
msgctxt "tabletextflowpage|label41"
msgid "_Vertical alignment"
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:495
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:442
+msgctxt "tabletextflowpage|liststore2"
+msgid "Top"
+msgstr ""
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:443
+#, fuzzy
+msgctxt "tabletextflowpage|liststore2"
+msgid "Centered"
+msgstr "mlebu"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:444
+#, fuzzy
+msgctxt "tabletextflowpage|liststore2"
+msgid "Bottom"
+msgstr "ngisor"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:460
#, fuzzy
msgctxt "tabletextflowpage|label36"
msgid "Alignment"
@@ -17443,7 +17448,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/tocindexpage.ui:58
msgctxt "tocindexpage|liststore1"
-msgid "Illustration Index"
+msgid "Table of Figures"
msgstr ""
#: sw/uiconfig/swriter/ui/tocindexpage.ui:62
diff --git a/source/jv/writerperfect/messages.po b/source/jv/writerperfect/messages.po
index 3b0a798f130..14168754327 100644
--- a/source/jv/writerperfect/messages.po
+++ b/source/jv/writerperfect/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-16 16:54+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+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"
@@ -63,99 +63,99 @@ msgctxt "exportepub|generalft"
msgid "General"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:122
+#: writerperfect/uiconfig/ui/exportepub.ui:121
#, fuzzy
msgctxt "exportepub|versionft"
msgid "Version:"
msgstr "Versi"
-#: writerperfect/uiconfig/ui/exportepub.ui:139
+#: writerperfect/uiconfig/ui/exportepub.ui:138
msgctxt "exportepub|epub3"
msgid "EPUB 3.0"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:140
+#: writerperfect/uiconfig/ui/exportepub.ui:139
msgctxt "exportepub|epub2"
msgid "EPUB 2.0"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:175
+#: writerperfect/uiconfig/ui/exportepub.ui:174
msgctxt "exportepub|splitft"
msgid "Split method:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:192
+#: writerperfect/uiconfig/ui/exportepub.ui:191
msgctxt "exportepub|splitpage"
msgid "Page break"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:193
+#: writerperfect/uiconfig/ui/exportepub.ui:192
#, fuzzy
msgctxt "exportepub|splitheading"
msgid "Heading"
msgstr "irahan"
-#: writerperfect/uiconfig/ui/exportepub.ui:228
+#: writerperfect/uiconfig/ui/exportepub.ui:227
msgctxt "exportepub|layoutft"
msgid "Layout method:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:245
+#: writerperfect/uiconfig/ui/exportepub.ui:244
msgctxt "exportepub|layoutreflowable"
msgid "Reflowable"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:246
+#: writerperfect/uiconfig/ui/exportepub.ui:245
msgctxt "exportepub|layoutfixed"
msgid "Fixed"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:281
+#: writerperfect/uiconfig/ui/exportepub.ui:280
msgctxt "exportepub|coverimageft"
msgid "Custom cover image:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:311
+#: writerperfect/uiconfig/ui/exportepub.ui:310
msgctxt "exportepub|coverbutton"
msgid "Browse..."
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:355
+#: writerperfect/uiconfig/ui/exportepub.ui:354
msgctxt "exportepub|mediadirft"
msgid "Custom media directory:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:385
+#: writerperfect/uiconfig/ui/exportepub.ui:384
msgctxt "exportepub|mediabutton"
msgid "Browse..."
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:429
+#: writerperfect/uiconfig/ui/exportepub.ui:428
msgctxt "exportepub|metadataft"
msgid "Metadata"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:470
+#: writerperfect/uiconfig/ui/exportepub.ui:468
msgctxt "exportepub|identifierft"
msgid "Identifier:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:485
+#: writerperfect/uiconfig/ui/exportepub.ui:483
msgctxt "exportepub|titleft"
msgid "Title:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:511
+#: writerperfect/uiconfig/ui/exportepub.ui:509
msgctxt "exportepub|authorft"
msgid "Author:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:537
+#: writerperfect/uiconfig/ui/exportepub.ui:535
msgctxt "exportepub|languageft"
msgid "Language:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:563
+#: writerperfect/uiconfig/ui/exportepub.ui:561
msgctxt "exportepub|dateft"
msgid "Date:"
msgstr ""
diff --git a/source/ka/cui/messages.po b/source/ka/cui/messages.po
index be6b885bb23..624cadc0d23 100644
--- a/source/ka/cui/messages.po
+++ b/source/ka/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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+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"
@@ -10376,107 +10376,107 @@ msgctxt "positionsizedialog|PositionAndSizeDialog"
msgid "Position and Size"
msgstr "ადგილმდებარეობა და დაშორება"
-#: cui/uiconfig/ui/positionsizedialog.ui:107
+#: cui/uiconfig/ui/positionsizedialog.ui:136
#, fuzzy
msgctxt "positionsizedialog|RID_SVXPAGE_POSITION_SIZE"
msgid "Position and Size"
msgstr "ადგილმდებარეობა და დაშორება"
-#: cui/uiconfig/ui/positionsizedialog.ui:129
+#: cui/uiconfig/ui/positionsizedialog.ui:182
#, fuzzy
msgctxt "positionsizedialog|RID_SVXPAGE_SWPOSSIZE"
msgid "Position and Size"
msgstr "ადგილმდებარეობა და დაშორება"
-#: cui/uiconfig/ui/positionsizedialog.ui:152
+#: cui/uiconfig/ui/positionsizedialog.ui:229
msgctxt "positionsizedialog|RID_SVXPAGE_ANGLE"
msgid "Rotation"
msgstr "ციტატირება"
-#: cui/uiconfig/ui/positionsizedialog.ui:175
+#: cui/uiconfig/ui/positionsizedialog.ui:276
msgctxt "positionsizedialog|RID_SVXPAGE_SLANT"
msgid "Slant & Corner Radius"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:40
+#: cui/uiconfig/ui/possizetabpage.ui:61
#, fuzzy
msgctxt "possizetabpage|FT_POS_X"
msgid "Position _X:"
msgstr "მდებარეობა"
-#: cui/uiconfig/ui/possizetabpage.ui:56
+#: cui/uiconfig/ui/possizetabpage.ui:75
#, fuzzy
msgctxt "possizetabpage|FT_POS_Y"
msgid "Position _Y:"
msgstr "მდებარეობა"
-#: cui/uiconfig/ui/possizetabpage.ui:110
+#: cui/uiconfig/ui/possizetabpage.ui:128
msgctxt "possizetabpage|FT_POSREFERENCE"
msgid "_Base point:"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:148
+#: cui/uiconfig/ui/possizetabpage.ui:182
msgctxt "possizetabpage|label1"
msgid "Position"
msgstr "მდებარეობა"
-#: cui/uiconfig/ui/possizetabpage.ui:190
+#: cui/uiconfig/ui/possizetabpage.ui:224
#, fuzzy
msgctxt "possizetabpage|FT_WIDTH"
msgid "Wi_dth:"
msgstr "_სიგანე:"
-#: cui/uiconfig/ui/possizetabpage.ui:206
+#: cui/uiconfig/ui/possizetabpage.ui:238
#, fuzzy
msgctxt "possizetabpage|FT_HEIGHT"
msgid "H_eight:"
msgstr "სიმაღლე"
-#: cui/uiconfig/ui/possizetabpage.ui:247
+#: cui/uiconfig/ui/possizetabpage.ui:276
#, fuzzy
msgctxt "possizetabpage|CBX_SCALE"
msgid "_Keep ratio"
msgstr "ტანაფარდობის შენარჩუნება"
-#: cui/uiconfig/ui/possizetabpage.ui:279
+#: cui/uiconfig/ui/possizetabpage.ui:307
msgctxt "possizetabpage|FT_SIZEREFERENCE"
msgid "Base _point:"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:317
+#: cui/uiconfig/ui/possizetabpage.ui:361
msgctxt "possizetabpage|label2"
msgid "Size"
msgstr "ზომა"
-#: cui/uiconfig/ui/possizetabpage.ui:356
+#: cui/uiconfig/ui/possizetabpage.ui:401
#, fuzzy
msgctxt "possizetabpage|TSB_POSPROTECT"
msgid "Positio_n"
msgstr "მდებარეობა"
-#: cui/uiconfig/ui/possizetabpage.ui:373
+#: cui/uiconfig/ui/possizetabpage.ui:418
#, fuzzy
msgctxt "possizetabpage|TSB_SIZEPROTECT"
msgid "_Size"
msgstr "ზომა"
-#: cui/uiconfig/ui/possizetabpage.ui:397
+#: cui/uiconfig/ui/possizetabpage.ui:441
#, fuzzy
msgctxt "possizetabpage|label3"
msgid "Protect"
msgstr "და~ცვა"
-#: cui/uiconfig/ui/possizetabpage.ui:430
+#: cui/uiconfig/ui/possizetabpage.ui:475
msgctxt "possizetabpage|TSB_AUTOGROW_WIDTH"
msgid "_Fit width to text"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:447
+#: cui/uiconfig/ui/possizetabpage.ui:492
msgctxt "possizetabpage|TSB_AUTOGROW_HEIGHT"
msgid "Fit _height to text"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:471
+#: cui/uiconfig/ui/possizetabpage.ui:515
msgctxt "possizetabpage|label4"
msgid "Adapt"
msgstr ""
@@ -10689,52 +10689,52 @@ msgctxt "recordnumberdialog|label2"
msgid "go to record"
msgstr ""
-#: cui/uiconfig/ui/rotationtabpage.ui:52
+#: cui/uiconfig/ui/rotationtabpage.ui:56
#, fuzzy
msgctxt "rotationtabpage|FT_POS_X"
msgid "Position _X:"
msgstr "მდებარეობა"
-#: cui/uiconfig/ui/rotationtabpage.ui:66
+#: cui/uiconfig/ui/rotationtabpage.ui:70
#, fuzzy
msgctxt "rotationtabpage|FT_POS_Y"
msgid "Position _Y:"
msgstr "მდებარეობა"
-#: cui/uiconfig/ui/rotationtabpage.ui:116
+#: cui/uiconfig/ui/rotationtabpage.ui:123
#, fuzzy
msgctxt "rotationtabpage|FT_POSPRESETS"
msgid "_Default settings:"
msgstr "სტანდარტული პარამეტრები"
-#: cui/uiconfig/ui/rotationtabpage.ui:130
+#: cui/uiconfig/ui/rotationtabpage.ui:151
msgctxt "rotationtabpage|CTL_RECT|tooltip_text"
msgid "Rotation point"
msgstr ""
-#: cui/uiconfig/ui/rotationtabpage.ui:155
+#: cui/uiconfig/ui/rotationtabpage.ui:178
msgctxt "rotationtabpage|label1"
msgid "Pivot Point"
msgstr ""
-#: cui/uiconfig/ui/rotationtabpage.ui:197
+#: cui/uiconfig/ui/rotationtabpage.ui:220
#, fuzzy
msgctxt "rotationtabpage|FT_ANGLE"
msgid "_Angle:"
msgstr "_კუთხე"
-#: cui/uiconfig/ui/rotationtabpage.ui:238
+#: cui/uiconfig/ui/rotationtabpage.ui:263
#, fuzzy
msgctxt "rotationtabpage|FT_ANGLEPRESETS"
msgid "Default _settings:"
msgstr "სტანდარტული პარამეტრები"
-#: cui/uiconfig/ui/rotationtabpage.ui:252
+#: cui/uiconfig/ui/rotationtabpage.ui:287
msgctxt "rotationtabpage|CTL_ANGLE|tooltip_text"
msgid "Rotation Angle"
msgstr "Rotation Angle"
-#: cui/uiconfig/ui/rotationtabpage.ui:277
+#: cui/uiconfig/ui/rotationtabpage.ui:314
msgctxt "rotationtabpage|label2"
msgid "Rotation Angle"
msgstr "Rotation Angle"
@@ -11126,56 +11126,56 @@ msgctxt "similaritysearchdialog|relaxbox"
msgid "_Combine"
msgstr "კომ~ბინირება"
-#: cui/uiconfig/ui/slantcornertabpage.ui:50
+#: cui/uiconfig/ui/slantcornertabpage.ui:70
msgctxt "slantcornertabpage|label5"
msgid "_X:"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:88
+#: cui/uiconfig/ui/slantcornertabpage.ui:110
msgctxt "slantcornertabpage|label6"
msgid "_Y:"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:125
+#: cui/uiconfig/ui/slantcornertabpage.ui:149
msgctxt "slantcornertabpage|label3"
msgid "Control Point 1"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:159
+#: cui/uiconfig/ui/slantcornertabpage.ui:183
#, fuzzy
msgctxt "slantcornertabpage|FT_RADIUS"
msgid "_Radius:"
msgstr "რადიუსი"
-#: cui/uiconfig/ui/slantcornertabpage.ui:189
+#: cui/uiconfig/ui/slantcornertabpage.ui:214
#, fuzzy
msgctxt "slantcornertabpage|label1"
msgid "Corner Radius"
msgstr "კუთხის რადიუსი"
-#: cui/uiconfig/ui/slantcornertabpage.ui:223
+#: cui/uiconfig/ui/slantcornertabpage.ui:248
#, fuzzy
msgctxt "slantcornertabpage|FT_ANGLE"
msgid "_Angle:"
msgstr "_კუთხე"
-#: cui/uiconfig/ui/slantcornertabpage.ui:253
+#: cui/uiconfig/ui/slantcornertabpage.ui:279
#, fuzzy
msgctxt "slantcornertabpage|label2"
msgid "Slant"
msgstr "დაქანება"
-#: cui/uiconfig/ui/slantcornertabpage.ui:294
+#: cui/uiconfig/ui/slantcornertabpage.ui:320
msgctxt "slantcornertabpage|label4"
msgid "_X:"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:332
+#: cui/uiconfig/ui/slantcornertabpage.ui:360
msgctxt "slantcornertabpage|label7"
msgid "_Y:"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:369
+#: cui/uiconfig/ui/slantcornertabpage.ui:399
msgctxt "slantcornertabpage|label8"
msgid "Control Point 2"
msgstr ""
@@ -11469,124 +11469,124 @@ msgctxt "storedwebconnectiondialog|change"
msgid "_Change Password..."
msgstr "პაროლის ~შეცვლა..."
-#: cui/uiconfig/ui/swpossizepage.ui:74
+#: cui/uiconfig/ui/swpossizepage.ui:85
msgctxt "swpossizepage|widthft"
msgid "_Width:"
msgstr "_სიგანე:"
-#: cui/uiconfig/ui/swpossizepage.ui:111
+#: cui/uiconfig/ui/swpossizepage.ui:123
#, fuzzy
msgctxt "swpossizepage|heightft"
msgid "H_eight:"
msgstr "სიმაღლე"
-#: cui/uiconfig/ui/swpossizepage.ui:128
+#: cui/uiconfig/ui/swpossizepage.ui:141
#, fuzzy
msgctxt "swpossizepage|ratio"
msgid "_Keep ratio"
msgstr "ტანაფარდობის შენარჩუნება"
-#: cui/uiconfig/ui/swpossizepage.ui:149
+#: cui/uiconfig/ui/swpossizepage.ui:162
msgctxt "swpossizepage|label2"
msgid "Size"
msgstr "ზომა"
-#: cui/uiconfig/ui/swpossizepage.ui:205
+#: cui/uiconfig/ui/swpossizepage.ui:218
#, fuzzy
msgctxt "swpossizepage|topage"
msgid "To _page"
msgstr "გვერდზე"
-#: cui/uiconfig/ui/swpossizepage.ui:222
+#: cui/uiconfig/ui/swpossizepage.ui:234
#, fuzzy
msgctxt "swpossizepage|topara"
msgid "To paragrap_h"
msgstr "პარაგრაფი"
-#: cui/uiconfig/ui/swpossizepage.ui:238
+#: cui/uiconfig/ui/swpossizepage.ui:250
#, fuzzy
msgctxt "swpossizepage|tochar"
msgid "To cha_racter"
msgstr "თვისებები"
-#: cui/uiconfig/ui/swpossizepage.ui:254
+#: cui/uiconfig/ui/swpossizepage.ui:266
#, fuzzy
msgctxt "swpossizepage|aschar"
msgid "_As character"
msgstr "თვისებები"
-#: cui/uiconfig/ui/swpossizepage.ui:270
+#: cui/uiconfig/ui/swpossizepage.ui:282
#, fuzzy
msgctxt "swpossizepage|toframe"
msgid "To _frame"
msgstr "ჩარჩოზე"
-#: cui/uiconfig/ui/swpossizepage.ui:292
+#: cui/uiconfig/ui/swpossizepage.ui:304
msgctxt "swpossizepage|label1"
msgid "Anchor"
msgstr "სანიშნე"
-#: cui/uiconfig/ui/swpossizepage.ui:333
+#: cui/uiconfig/ui/swpossizepage.ui:344
#, fuzzy
msgctxt "swpossizepage|horiposft"
msgid "Hori_zontal:"
msgstr "_ჰორიზონტალური"
-#: cui/uiconfig/ui/swpossizepage.ui:347
+#: cui/uiconfig/ui/swpossizepage.ui:358
msgctxt "swpossizepage|horibyft"
msgid "b_y:"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:361
+#: cui/uiconfig/ui/swpossizepage.ui:372
msgctxt "swpossizepage|vertbyft"
msgid "_by:"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:375
+#: cui/uiconfig/ui/swpossizepage.ui:386
#, fuzzy
msgctxt "swpossizepage|horitoft"
msgid "_to:"
msgstr "_ვის"
-#: cui/uiconfig/ui/swpossizepage.ui:421
+#: cui/uiconfig/ui/swpossizepage.ui:433
#, fuzzy
msgctxt "swpossizepage|vertposft"
msgid "_Vertical:"
msgstr "_ვერტიკალური"
-#: cui/uiconfig/ui/swpossizepage.ui:457
+#: cui/uiconfig/ui/swpossizepage.ui:470
msgctxt "swpossizepage|verttoft"
msgid "t_o:"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:478
+#: cui/uiconfig/ui/swpossizepage.ui:492
msgctxt "swpossizepage|mirror"
msgid "_Mirror on even pages"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:495
+#: cui/uiconfig/ui/swpossizepage.ui:509
msgctxt "swpossizepage|followtextflow"
msgid "Follow te_xt flow"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:518
+#: cui/uiconfig/ui/swpossizepage.ui:532
msgctxt "swpossizepage|label11"
msgid "Position"
msgstr "მდებარეობა"
-#: cui/uiconfig/ui/swpossizepage.ui:549
+#: cui/uiconfig/ui/swpossizepage.ui:563
#, fuzzy
msgctxt "swpossizepage|pos"
msgid "Positio_n"
msgstr "მდებარეობა"
-#: cui/uiconfig/ui/swpossizepage.ui:565
+#: cui/uiconfig/ui/swpossizepage.ui:579
#, fuzzy
msgctxt "swpossizepage|size"
msgid "_Size"
msgstr "ზომა"
-#: cui/uiconfig/ui/swpossizepage.ui:587
+#: cui/uiconfig/ui/swpossizepage.ui:601
#, fuzzy
msgctxt "swpossizepage|label3"
msgid "Protect"
@@ -11790,13 +11790,13 @@ msgctxt "textattrtabpage|label2"
msgid "Spacing to Borders"
msgstr ""
-#: cui/uiconfig/ui/textattrtabpage.ui:425
+#: cui/uiconfig/ui/textattrtabpage.ui:423
#, fuzzy
msgctxt "textattrtabpage|TSB_FULL_WIDTH"
msgid "Full _width"
msgstr "სრული სიგანე"
-#: cui/uiconfig/ui/textattrtabpage.ui:448
+#: cui/uiconfig/ui/textattrtabpage.ui:446
msgctxt "textattrtabpage|label3"
msgid "Text Anchor"
msgstr ""
diff --git a/source/ka/filter/source/config/fragments/filters.po b/source/ka/filter/source/config/fragments/filters.po
index 92cc2e5f90f..3a631990698 100644
--- a/source/ka/filter/source/config/fragments/filters.po
+++ b/source/ka/filter/source/config/fragments/filters.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-16 16:54+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2016-12-03 02:01+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -466,8 +466,8 @@ msgctxt ""
"MS Word 2003 XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Word 2003 XML"
-msgstr "Microsoft Word 2003 XML"
+msgid "Word 2003 XML"
+msgstr ""
#: MS_Word_2007_XML.xcu
msgctxt ""
@@ -1291,7 +1291,7 @@ msgctxt ""
"Calc MS Excel 2007 VBA XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Excel 2007-2016 XML (macro enabled)"
+msgid "Excel 2007–2019 (macro-enabled)"
msgstr ""
#: calc_MS_Excel_2007_XML.xcu
diff --git a/source/ka/filter/source/config/fragments/types.po b/source/ka/filter/source/config/fragments/types.po
index 7046fb36cd8..3a0653cbc68 100644
--- a/source/ka/filter/source/config/fragments/types.po
+++ b/source/ka/filter/source/config/fragments/types.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-08 15:11+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2015-11-11 21:17+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -295,8 +295,8 @@ msgctxt ""
"writer_MS_Word_2003_XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Word 2003 XML"
-msgstr "Microsoft Word 2003 XML"
+msgid "Word 2003 XML"
+msgstr ""
#: writer_MS_Word_2007_XML.xcu
msgctxt ""
diff --git a/source/ka/fpicker/messages.po b/source/ka/fpicker/messages.po
index 4ea711fa725..353e7dbd3fa 100644
--- a/source/ka/fpicker/messages.po
+++ b/source/ka/fpicker/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+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"
@@ -277,13 +277,13 @@ msgstr ""
#: fpicker/uiconfig/ui/foldernamedialog.ui:8
msgctxt "foldernamedialog|FolderNameDialog"
-msgid "Folder Name ?"
+msgid "Folder Name"
msgstr ""
#: fpicker/uiconfig/ui/foldernamedialog.ui:91
msgctxt "foldernamedialog|label2"
-msgid "Na_me"
-msgstr "სა_ხელი"
+msgid "Na_me:"
+msgstr ""
#: fpicker/uiconfig/ui/foldernamedialog.ui:122
#, fuzzy
diff --git a/source/ka/helpcontent2/source/text/shared/00.po b/source/ka/helpcontent2/source/text/shared/00.po
index c21067daf8c..5e0f7461997 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2016-05-24 15:16+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -397,15 +397,15 @@ msgctxt ""
"00000001.xhp\n"
"hd_id3149670\n"
"help.text"
-msgid "Back"
-msgstr "უკან"
+msgid "Reset"
+msgstr ""
#: 00000001.xhp
msgctxt ""
"00000001.xhp\n"
"par_id3145068\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optionsdialog/revert\">Resets modified values back to the $[officename] default values.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optionsdialog/revert\">Resets changes made to the current tab to those applicable when this dialog was opened.</ahelp>"
msgstr ""
#: 00000001.xhp
@@ -552,6 +552,54 @@ msgctxt ""
msgid "<variable id=\"ShiftF1\">Press Shift+F1 and point to a control to learn more about that control.</variable>"
msgstr ""
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"hd_id631527692833772\n"
+"help.text"
+msgid "Options dialog buttons"
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"hd_id831527692839432\n"
+"help.text"
+msgid "OK"
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"par_id471527692844934\n"
+"help.text"
+msgid "Save the changes in the page and close the Options dialog."
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"hd_id261527692850720\n"
+"help.text"
+msgid "Cancel"
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"par_id571527692855533\n"
+"help.text"
+msgid "Close the Options dialog and discard all changes done."
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"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 Options dialog."
+msgstr ""
+
#: 00000002.xhp
msgctxt ""
"00000002.xhp\n"
@@ -11125,7 +11173,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3151293\n"
"help.text"
-msgid "<variable id=\"linienstile\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Line Styles</emph> tab </variable>"
+msgid "<variable id=\"linienstile\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Line Styles</emph> tab</variable>"
msgstr ""
#: 00040502.xhp
@@ -11133,7 +11181,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3149317\n"
"help.text"
-msgid "<variable id=\"linienenden\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Arrow Styles</emph> tab </variable>"
+msgid "<variable id=\"linienenden\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Arrow Styles</emph> tab</variable>"
msgstr ""
#: 00040502.xhp
@@ -11173,7 +11221,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3154948\n"
"help.text"
-msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Area</emph> tab"
+msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Area</emph> tab."
msgstr ""
#: 00040502.xhp
@@ -11181,7 +11229,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3145607\n"
"help.text"
-msgid "Choose <emph>View - Styles</emph> - open context menu and choose <emph>Modify/New - Area</emph> tab (presentation documents)"
+msgid "Choose <emph>View - Styles</emph> - open context menu and choose <emph>Modify/New - Area</emph> tab (presentation documents)."
msgstr ""
#: 00040502.xhp
@@ -11189,7 +11237,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3152922\n"
"help.text"
-msgid "Choose <emph>Format - Title - Area</emph> tab (chart documents)"
+msgid "Choose <emph>Format - Title - Area</emph> tab (chart documents)."
msgstr ""
#: 00040502.xhp
@@ -11197,7 +11245,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3157894\n"
"help.text"
-msgid "Choose <emph>Format - Legend - Area</emph> tab (chart documents)"
+msgid "Choose <emph>Format - Legend - Area</emph> tab (chart documents)."
msgstr ""
#: 00040502.xhp
@@ -11205,7 +11253,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3144444\n"
"help.text"
-msgid "Choose <emph>Format - Chart Wall - Area</emph> tab (chart documents)"
+msgid "Choose <emph>Format - Chart Wall - Area</emph> tab (chart documents)."
msgstr ""
#: 00040502.xhp
@@ -11213,7 +11261,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3156543\n"
"help.text"
-msgid "Choose <emph>Format - Chart Floor - Area</emph> tab (chart documents)"
+msgid "Choose <emph>Format - Chart Floor - Area</emph> tab (chart documents)."
msgstr ""
#: 00040502.xhp
@@ -11221,7 +11269,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3150685\n"
"help.text"
-msgid "Choose <emph>Format - Chart Area - Area</emph> tab (chart documents)"
+msgid "Choose <emph>Format - Chart Area - Area</emph> tab (chart documents)."
msgstr ""
#: 00040502.xhp
@@ -11229,7 +11277,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3149664\n"
"help.text"
-msgid "Choose <emph>Slide - Properties - Background</emph> tab (in $[officename] Impress)"
+msgid "Choose <emph>Slide - Properties - Background</emph> tab (in $[officename] Impress)."
msgstr ""
#: 00040502.xhp
@@ -11237,7 +11285,15 @@ msgctxt ""
"00040502.xhp\n"
"par_id9149694\n"
"help.text"
-msgid "Choose <emph>Page - Properties - Background</emph> tab (in $[officename] Draw)"
+msgid "Choose <emph>Page - Properties - Background</emph> tab (in $[officename] Draw)."
+msgstr ""
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id841527083135387\n"
+"help.text"
+msgid "Choose <emph>Table - Properties - Background</emph> tab."
msgstr ""
#: 00040502.xhp
@@ -11349,7 +11405,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3150011\n"
"help.text"
-msgid "<variable id=\"schatte\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Shadow</emph> tab </variable>"
+msgid "<variable id=\"schatte\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Shadow</emph> tab</variable>"
msgstr ""
#: 00040502.xhp
@@ -11357,7 +11413,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3147441\n"
"help.text"
-msgid "<variable id=\"verlauf\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Gradients</emph> tab </variable>"
+msgid "<variable id=\"verlauf\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Gradients</emph> tab</variable>"
msgstr ""
#: 00040502.xhp
@@ -11365,7 +11421,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3155308\n"
"help.text"
-msgid "<variable id=\"schraffur\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Hatching</emph> tab </variable>"
+msgid "<variable id=\"schraffur\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Hatching</emph> tab</variable>"
msgstr ""
#: 00040502.xhp
@@ -11373,7 +11429,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3145800\n"
"help.text"
-msgid "<variable id=\"bitmap\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Bitmaps</emph> tab </variable>"
+msgid "<variable id=\"bitmap\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Bitmaps</emph> tab</variable>"
msgstr ""
#: 00040502.xhp
@@ -11413,7 +11469,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3156286\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F4 key </caseinline><caseinline select=\"IMPRESS\">F4 key </caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F4 key</caseinline><caseinline select=\"IMPRESS\">F4 key</caseinline></switchinline>"
msgstr ""
#: 00040502.xhp
@@ -11453,7 +11509,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3153099\n"
"help.text"
-msgid "<variable id=\"position2\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Position and Size</emph> tab </variable>"
+msgid "<variable id=\"position2\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Position and Size</emph> tab</variable>"
msgstr ""
#: 00040502.xhp
@@ -11485,7 +11541,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3145666\n"
"help.text"
-msgid "<variable id=\"ecke\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Slant & Corner Radius</emph> tab </variable>"
+msgid "<variable id=\"ecke\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Slant & Corner Radius</emph> tab</variable>"
msgstr ""
#: 00040502.xhp
@@ -11493,7 +11549,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3146081\n"
"help.text"
-msgid "<variable id=\"legende\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Callout</emph> tab (only for textbox callouts, not for custom shapes callouts) </variable>"
+msgid "<variable id=\"legende\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Callout</emph> tab (only for textbox callouts, not for custom shapes callouts)</variable>"
msgstr ""
#: 00040502.xhp
@@ -11517,7 +11573,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3149019\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F8 key </caseinline><caseinline select=\"IMPRESS\">F8 key </caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F8 key</caseinline><caseinline select=\"IMPRESS\">F8 key</caseinline></switchinline>"
msgstr ""
#: 00040502.xhp
@@ -11805,8 +11861,8 @@ msgctxt ""
"00040502.xhp\n"
"par_id3153076\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Align Center Horizontally </caseinline><defaultinline>Centered</defaultinline></switchinline>"
-msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Align Center Horizontally</caseinline><defaultinline>Centered</defaultinline></switchinline>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
@@ -11845,7 +11901,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3150527\n"
"help.text"
-msgid "<variable id=\"font\">Click <emph>Fontwork</emph> icon on <emph>Drawing</emph> bar </variable>"
+msgid "<variable id=\"font\">Click <emph>Fontwork</emph> icon on <emph>Drawing</emph> bar</variable>"
msgstr ""
#: 00040502.xhp
diff --git a/source/ka/helpcontent2/source/text/shared/01.po b/source/ka/helpcontent2/source/text/shared/01.po
index a1bf397397e..89139edd1bb 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: 2018-05-23 23:19+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2016-07-06 07:33+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -23587,6 +23587,22 @@ msgstr ""
#: 05210100.xhp
msgctxt ""
"05210100.xhp\n"
+"hd_id471527077476052\n"
+"help.text"
+msgid "Cell, Row or Table background selector"
+msgstr ""
+
+#: 05210100.xhp
+msgctxt ""
+"05210100.xhp\n"
+"par_id661527077493366\n"
+"help.text"
+msgid "Select the table object which background area is to be filled."
+msgstr ""
+
+#: 05210100.xhp
+msgctxt ""
+"05210100.xhp\n"
"hd_id3147373\n"
"help.text"
msgid "None"
@@ -31205,7 +31221,7 @@ msgctxt ""
"06040100.xhp\n"
"hd_id3145072\n"
"help.text"
-msgid "Automatic *bold* and _underline_"
+msgid "Automatic *bold*, /italic/, -strikeout- and _underline_"
msgstr ""
#: 06040100.xhp
@@ -31213,7 +31229,7 @@ msgctxt ""
"06040100.xhp\n"
"par_id3153577\n"
"help.text"
-msgid "Automatically applies bold formatting to text enclosed by asterisks (*), and underline to text enclosed by underscores ( _ ), for example, *bold*. The asterisks and underscores are not displayed after the formatting is applied."
+msgid "Automatically applies bold, italic, strikethrough or underline formatting to text enclosed by asterisks (*), slashes (/), hyphens (-), and underscores (_), respectively. These characters disappear after the formatting is applied."
msgstr ""
#: 06040100.xhp
@@ -31221,7 +31237,7 @@ msgctxt ""
"06040100.xhp\n"
"par_id3153127\n"
"help.text"
-msgid "This feature does not work if the formatting characters * or _ are entered with an <link href=\"text/shared/00/00000005.xhp#IME\" name=\"Input Method Editor\">Input Method Editor</link>."
+msgid "This feature does not work if the formatting characters <item type=\"literal\">* / - _</item> are entered with an <link href=\"text/shared/00/00000005.xhp#IME\" name=\"Input Method Editor\">Input Method Editor</link>."
msgstr ""
#: 06040100.xhp
diff --git a/source/ka/helpcontent2/source/text/shared/optionen.po b/source/ka/helpcontent2/source/text/shared/optionen.po
index 3e703e49cd6..87012f62cd8 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: 2018-05-08 15:10+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2016-07-06 07:51+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -83,6 +83,22 @@ msgstr ""
#: 01000000.xhp
msgctxt ""
"01000000.xhp\n"
+"hd_id551527692881035\n"
+"help.text"
+msgid "Help"
+msgstr ""
+
+#: 01000000.xhp
+msgctxt ""
+"01000000.xhp\n"
+"par_id831527692885723\n"
+"help.text"
+msgid "Opens the help contents for the Options page displayed."
+msgstr ""
+
+#: 01000000.xhp
+msgctxt ""
+"01000000.xhp\n"
"hd_id3159149\n"
"help.text"
msgid "<link href=\"text/shared/optionen/01010000.xhp\" name=\"$[officename]\">%PRODUCTNAME</link>"
@@ -4565,8 +4581,8 @@ msgctxt ""
"01030300.xhp\n"
"par_idN10640\n"
"help.text"
-msgid "Options"
-msgstr "თვისებები"
+msgid "Security Options and Warnings"
+msgstr ""
#: 01030300.xhp
msgctxt ""
@@ -4597,7 +4613,7 @@ msgctxt ""
"01030300.xhp\n"
"hd_id3168736\n"
"help.text"
-msgid "Persistently save passwords protected by a master password"
+msgid "Persistently save passwords for web connections"
msgstr ""
#: 01030300.xhp
@@ -4613,6 +4629,22 @@ msgctxt ""
"01030300.xhp\n"
"hd_id3901791\n"
"help.text"
+msgid "Protected by a master password (recommended)"
+msgstr ""
+
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"par_id31527711486980\n"
+"help.text"
+msgid "Check to enable all connections' passwords to be protected by a master password."
+msgstr ""
+
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"hd_id141527711343312\n"
+"help.text"
msgid "Master Password"
msgstr ""
@@ -13733,7 +13765,7 @@ msgctxt ""
"java.xhp\n"
"hd_id3148618\n"
"help.text"
-msgid "Optional (unstable) options"
+msgid "Optional Features"
msgstr ""
#: java.xhp
@@ -13749,7 +13781,7 @@ msgctxt ""
"java.xhp\n"
"par_id3156344\n"
"help.text"
-msgid "It enables features that are not yet complete or contain known bugs. The list of these features is different version by version, or even it can be empty."
+msgid "Enables features that are not yet complete or may contain known bugs. The list of these features is different version by version, or even it can be empty."
msgstr ""
#: java.xhp
@@ -13765,7 +13797,7 @@ msgctxt ""
"java.xhp\n"
"par_id3156345\n"
"help.text"
-msgid "It enables macro recording, so the <link href=\"text/shared/guide/macro_recording.xhp\" name=\"Tools - Macros - Record Macro\"><item type=\"menuitem\">Tools - Macros - Record Macro</item></link> menu item will be available."
+msgid "Enables macro recording. The <link href=\"text/shared/guide/macro_recording.xhp\" name=\"Tools - Macros - Record Macro\"><item type=\"menuitem\">Tools - Macros - Record Macro</item></link> menu item is available."
msgstr ""
#: java.xhp
diff --git a/source/ka/officecfg/registry/data/org/openoffice/Office/UI.po b/source/ka/officecfg/registry/data/org/openoffice/Office/UI.po
index e886a260ef7..093d95e7947 100644
--- a/source/ka/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/ka/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-22 13:17+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2016-12-03 02:05+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -26911,8 +26911,8 @@ msgctxt ""
"..WriterCommands.UserInterface.Commands..uno:TextAttributes\n"
"Label\n"
"value.text"
-msgid "Text Attributes"
-msgstr "ტექსტის ატრიბუტები"
+msgid "Text Attributes..."
+msgstr ""
#: WriterCommands.xcu
msgctxt ""
diff --git a/source/ka/readlicense_oo/docs.po b/source/ka/readlicense_oo/docs.po
index 2dc2f13dc5a..ef65dacd7d7 100644
--- a/source/ka/readlicense_oo/docs.po
+++ b/source/ka/readlicense_oo/docs.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-04-17 15:54+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2016-03-11 09:20+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -117,7 +117,7 @@ msgctxt ""
"readme.xrm\n"
"macxiOSX\n"
"readmeitem.text"
-msgid "MacOSX 10.8 (Mountain Lion) or higher"
+msgid "MacOSX 10.9 (Mavericks) or higher"
msgstr ""
#: readme.xrm
diff --git a/source/ka/sc/messages.po b/source/ka/sc/messages.po
index 980e4aa6c8a..14e07cee29d 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-12 14:40+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"
@@ -1855,16 +1855,21 @@ msgid "Nested arrays are not supported."
msgstr ""
#: sc/inc/globstr.hrc:390
+msgctxt "STR_ERR_LONG_BAD_ARRAY_CONTENT"
+msgid "Unsupported inline array content."
+msgstr ""
+
+#: sc/inc/globstr.hrc:391
msgctxt "STR_UNDO_TEXTTOCOLUMNS"
msgid "Text to Columns"
msgstr ""
-#: sc/inc/globstr.hrc:391
+#: sc/inc/globstr.hrc:392
msgctxt "STR_DOC_UPDATED"
msgid "Your spreadsheet has been updated with changes saved by other users."
msgstr ""
-#: sc/inc/globstr.hrc:392
+#: sc/inc/globstr.hrc:393
msgctxt "STR_DOC_WILLBESAVED"
msgid ""
"The spreadsheet must be saved now to activate sharing mode.\n"
@@ -1872,7 +1877,7 @@ msgid ""
"Do you want to continue?"
msgstr ""
-#: sc/inc/globstr.hrc:393
+#: sc/inc/globstr.hrc:394
msgctxt "STR_DOC_WILLNOTBESAVED"
msgid ""
"Already resolved merge conflicts will be lost and your changes to the shared spreadsheet will not be saved.\n"
@@ -1880,7 +1885,7 @@ msgid ""
"Do you want to continue?"
msgstr ""
-#: sc/inc/globstr.hrc:394
+#: sc/inc/globstr.hrc:395
msgctxt "STR_DOC_DISABLESHARED"
msgid ""
"Disabling shared mode of a spreadsheet hinders all other users of the shared spreadsheet to merge back their work.\n"
@@ -1888,7 +1893,7 @@ msgid ""
"Do you want to continue?"
msgstr ""
-#: sc/inc/globstr.hrc:395
+#: sc/inc/globstr.hrc:396
msgctxt "STR_DOC_NOLONGERSHARED"
msgid ""
"This spreadsheet is no longer in shared mode.\n"
@@ -1896,7 +1901,7 @@ msgid ""
"Save your spreadsheet to a separate file and merge your changes to the shared spreadsheet manually."
msgstr ""
-#: sc/inc/globstr.hrc:396
+#: sc/inc/globstr.hrc:397
msgctxt "STR_FILE_LOCKED_TRY_LATER"
msgid ""
"The shared spreadsheet file is locked due to a merge in progress by user: '%1'\n"
@@ -1904,7 +1909,7 @@ msgid ""
"Sharing mode of a locked file cannot be disabled. Try again later."
msgstr ""
-#: sc/inc/globstr.hrc:397
+#: sc/inc/globstr.hrc:398
msgctxt "STR_FILE_LOCKED_SAVE_LATER"
msgid ""
"The shared spreadsheet file is locked due to a merge in progress by user: '%1'\n"
@@ -1912,155 +1917,155 @@ msgid ""
"Try again later to save your changes."
msgstr ""
-#: sc/inc/globstr.hrc:398
+#: sc/inc/globstr.hrc:399
msgctxt "STR_UNKNOWN_USER"
msgid "Unknown User"
msgstr "უცნობი მომხმარებელი"
-#: sc/inc/globstr.hrc:399
+#: sc/inc/globstr.hrc:400
msgctxt "STR_SHAPE_AUTOSHAPE"
msgid "AutoShape"
msgstr ""
-#: sc/inc/globstr.hrc:400
+#: sc/inc/globstr.hrc:401
#, fuzzy
msgctxt "STR_SHAPE_RECTANGLE"
msgid "Rectangle"
msgstr "მართკუთხედი"
-#: sc/inc/globstr.hrc:401
+#: sc/inc/globstr.hrc:402
msgctxt "STR_SHAPE_LINE"
msgid "Line"
msgstr "ხაზი"
-#: sc/inc/globstr.hrc:402
+#: sc/inc/globstr.hrc:403
msgctxt "STR_SHAPE_OVAL"
msgid "Oval"
msgstr "ოვალი"
-#: sc/inc/globstr.hrc:403
+#: sc/inc/globstr.hrc:404
#, fuzzy
msgctxt "STR_FORM_BUTTON"
msgid "Button"
msgstr "ბურთულა"
-#: sc/inc/globstr.hrc:404
+#: sc/inc/globstr.hrc:405
#, fuzzy
msgctxt "STR_FORM_CHECKBOX"
msgid "Check Box"
msgstr "მონიშვნის ველი"
-#: sc/inc/globstr.hrc:405
+#: sc/inc/globstr.hrc:406
#, fuzzy
msgctxt "STR_FORM_OPTIONBUTTON"
msgid "Option Button"
msgstr "პუნქციების ღილაკი"
-#: sc/inc/globstr.hrc:406
+#: sc/inc/globstr.hrc:407
#, fuzzy
msgctxt "STR_FORM_LABEL"
msgid "Label"
msgstr "ეტიკეტი"
-#: sc/inc/globstr.hrc:407
+#: sc/inc/globstr.hrc:408
msgctxt "STR_FORM_LISTBOX"
msgid "List Box"
msgstr "სიის ველი"
-#: sc/inc/globstr.hrc:408
+#: sc/inc/globstr.hrc:409
#, fuzzy
msgctxt "STR_FORM_GROUPBOX"
msgid "Group Box"
msgstr "ჯგუფს ველი"
-#: sc/inc/globstr.hrc:409
+#: sc/inc/globstr.hrc:410
msgctxt "STR_FORM_DROPDOWN"
msgid "Drop Down"
msgstr "ჩამოშლა"
-#: sc/inc/globstr.hrc:410
+#: sc/inc/globstr.hrc:411
msgctxt "STR_FORM_SPINNER"
msgid "Spinner"
msgstr ""
-#: sc/inc/globstr.hrc:411
+#: sc/inc/globstr.hrc:412
#, fuzzy
msgctxt "STR_FORM_SCROLLBAR"
msgid "Scroll Bar"
msgstr "ცოცია"
-#: sc/inc/globstr.hrc:412
+#: sc/inc/globstr.hrc:413
msgctxt "STR_STYLE_FAMILY_CELL"
msgid "Cell Styles"
msgstr "უჯრების სტილები"
-#: sc/inc/globstr.hrc:413
+#: sc/inc/globstr.hrc:414
#, fuzzy
msgctxt "STR_STYLE_FAMILY_PAGE"
msgid "Page Styles"
msgstr "გვერდის სტილი"
-#: sc/inc/globstr.hrc:414
+#: sc/inc/globstr.hrc:415
msgctxt "STR_ERR_DATAPILOTSOURCE"
msgid "Pivot table source data is invalid."
msgstr "მინიჭებული წყარო არასწორია."
-#: sc/inc/globstr.hrc:415
+#: sc/inc/globstr.hrc:416
msgctxt "STR_OPTIONS_WARN_SEPARATORS"
msgid "Because the current formula separator settings conflict with the locale, the formula separators have been reset to their default values."
msgstr ""
-#: sc/inc/globstr.hrc:416
+#: sc/inc/globstr.hrc:417
msgctxt "STR_UNDO_INSERT_CURRENT_DATE"
msgid "Insert Current Date"
msgstr ""
-#: sc/inc/globstr.hrc:417
+#: sc/inc/globstr.hrc:418
msgctxt "STR_UNDO_INSERT_CURRENT_TIME"
msgid "Insert Current Time"
msgstr ""
-#: sc/inc/globstr.hrc:418
+#: sc/inc/globstr.hrc:419
msgctxt "STR_MANAGE_NAMES"
msgid "Manage Names..."
msgstr "დიაპაზონის სახელები"
-#: sc/inc/globstr.hrc:419
+#: sc/inc/globstr.hrc:420
msgctxt "STR_HEADER_NAME"
msgid "Name"
msgstr "სახელი"
-#: sc/inc/globstr.hrc:420
+#: sc/inc/globstr.hrc:421
msgctxt "STR_HEADER_RANGE_OR_EXPR"
msgid "Range or formula expression"
msgstr ""
-#: sc/inc/globstr.hrc:421
+#: sc/inc/globstr.hrc:422
msgctxt "STR_HEADER_SCOPE"
msgid "Scope"
msgstr ""
-#: sc/inc/globstr.hrc:422
+#: sc/inc/globstr.hrc:423
msgctxt "STR_MULTI_SELECT"
msgid "(multiple)"
msgstr ""
-#: sc/inc/globstr.hrc:423
+#: sc/inc/globstr.hrc:424
msgctxt "STR_GLOBAL_SCOPE"
msgid "Document (Global)"
msgstr "დოკუმენტური რეჟიმი"
-#: sc/inc/globstr.hrc:424
+#: sc/inc/globstr.hrc:425
msgctxt "STR_ERR_NAME_EXISTS"
msgid "Invalid name. Already in use for the selected scope."
msgstr ""
-#: sc/inc/globstr.hrc:425
+#: sc/inc/globstr.hrc:426
msgctxt "STR_ERR_NAME_INVALID"
msgid "Invalid name. Only use letters, numbers and underscore."
msgstr ""
-#: sc/inc/globstr.hrc:426
+#: sc/inc/globstr.hrc:427
msgctxt "STR_UNSAVED_EXT_REF"
msgid ""
"This Document contains external references to unsaved documents.\n"
@@ -2068,219 +2073,219 @@ msgid ""
"Do you want to continue?"
msgstr ""
-#: sc/inc/globstr.hrc:427
+#: sc/inc/globstr.hrc:428
msgctxt "STR_CLOSE_WITH_UNSAVED_REFS"
msgid "This Document is referenced by another document and not yet saved. Closing it without saving will result in data loss."
msgstr ""
-#: sc/inc/globstr.hrc:428
+#: sc/inc/globstr.hrc:429
msgctxt "STR_HEADER_RANGE"
msgid "Range"
msgstr "~დიაპაზონი"
-#: sc/inc/globstr.hrc:429
+#: sc/inc/globstr.hrc:430
msgctxt "STR_HEADER_COND"
msgid "First Condition"
msgstr ""
-#: sc/inc/globstr.hrc:430
+#: sc/inc/globstr.hrc:431
msgctxt "STR_COND_CONDITION"
msgid "Cell value is"
msgstr ""
-#: sc/inc/globstr.hrc:431
+#: sc/inc/globstr.hrc:432
msgctxt "STR_COND_COLORSCALE"
msgid "ColorScale"
msgstr ""
-#: sc/inc/globstr.hrc:432
+#: sc/inc/globstr.hrc:433
msgctxt "STR_COND_DATABAR"
msgid "DataBar"
msgstr "ჰისტოგრამა"
-#: sc/inc/globstr.hrc:433
+#: sc/inc/globstr.hrc:434
msgctxt "STR_COND_ICONSET"
msgid "IconSet"
msgstr ""
-#: sc/inc/globstr.hrc:434
+#: sc/inc/globstr.hrc:435
msgctxt "STR_COND_BETWEEN"
msgid "between"
msgstr "შორის"
-#: sc/inc/globstr.hrc:435
+#: sc/inc/globstr.hrc:436
msgctxt "STR_COND_NOTBETWEEN"
msgid "not between"
msgstr "არ არის შორის"
-#: sc/inc/globstr.hrc:436
+#: sc/inc/globstr.hrc:437
msgctxt "STR_COND_UNIQUE"
msgid "unique"
msgstr ""
-#: sc/inc/globstr.hrc:437
+#: sc/inc/globstr.hrc:438
#, fuzzy
msgctxt "STR_COND_DUPLICATE"
msgid "duplicate"
msgstr "დუბლიკატი"
-#: sc/inc/globstr.hrc:438
+#: sc/inc/globstr.hrc:439
msgctxt "STR_COND_FORMULA"
msgid "Formula is"
msgstr "ფორმულები"
-#: sc/inc/globstr.hrc:439
+#: sc/inc/globstr.hrc:440
msgctxt "STR_COND_TOP10"
msgid "Top Elements"
msgstr ""
-#: sc/inc/globstr.hrc:440
+#: sc/inc/globstr.hrc:441
msgctxt "STR_COND_BOTTOM10"
msgid "Bottom Elements"
msgstr ""
-#: sc/inc/globstr.hrc:441
+#: sc/inc/globstr.hrc:442
msgctxt "STR_COND_TOP_PERCENT"
msgid "Top Percent"
msgstr ""
-#: sc/inc/globstr.hrc:442
+#: sc/inc/globstr.hrc:443
msgctxt "STR_COND_DATE"
msgid "Date is"
msgstr ""
-#: sc/inc/globstr.hrc:443
+#: sc/inc/globstr.hrc:444
msgctxt "STR_COND_BOTTOM_PERCENT"
msgid "Bottom Percent"
msgstr ""
-#: sc/inc/globstr.hrc:444
+#: sc/inc/globstr.hrc:445
msgctxt "STR_COND_ABOVE_AVERAGE"
msgid "Above Average"
msgstr ""
-#: sc/inc/globstr.hrc:445
+#: sc/inc/globstr.hrc:446
msgctxt "STR_COND_BELOW_AVERAGE"
msgid "Below Average"
msgstr ""
-#: sc/inc/globstr.hrc:446
+#: sc/inc/globstr.hrc:447
msgctxt "STR_COND_ABOVE_EQUAL_AVERAGE"
msgid "Above or equal Average"
msgstr ""
-#: sc/inc/globstr.hrc:447
+#: sc/inc/globstr.hrc:448
msgctxt "STR_COND_BELOW_EQUAL_AVERAGE"
msgid "Below or equal Average"
msgstr ""
-#: sc/inc/globstr.hrc:448
+#: sc/inc/globstr.hrc:449
msgctxt "STR_COND_ERROR"
msgid "an Error code"
msgstr "შეცდომის კოდი"
-#: sc/inc/globstr.hrc:449
+#: sc/inc/globstr.hrc:450
msgctxt "STR_COND_NOERROR"
msgid "not an Error code"
msgstr "შეცდომის კოდი"
-#: sc/inc/globstr.hrc:450
+#: sc/inc/globstr.hrc:451
msgctxt "STR_COND_BEGINS_WITH"
msgid "Begins with"
msgstr ""
-#: sc/inc/globstr.hrc:451
+#: sc/inc/globstr.hrc:452
msgctxt "STR_COND_ENDS_WITH"
msgid "Ends with"
msgstr ""
-#: sc/inc/globstr.hrc:452
+#: sc/inc/globstr.hrc:453
msgctxt "STR_COND_CONTAINS"
msgid "Contains"
msgstr "შეიცავს"
-#: sc/inc/globstr.hrc:453
+#: sc/inc/globstr.hrc:454
msgctxt "STR_COND_NOT_CONTAINS"
msgid "Not Contains"
msgstr ""
-#: sc/inc/globstr.hrc:454
+#: sc/inc/globstr.hrc:455
#, fuzzy
msgctxt "STR_COND_TODAY"
msgid "today"
msgstr "დღეს"
-#: sc/inc/globstr.hrc:455
+#: sc/inc/globstr.hrc:456
msgctxt "STR_COND_YESTERDAY"
msgid "yesterday"
msgstr ""
-#: sc/inc/globstr.hrc:456
+#: sc/inc/globstr.hrc:457
msgctxt "STR_COND_TOMORROW"
msgid "tomorrow"
msgstr ""
-#: sc/inc/globstr.hrc:457
+#: sc/inc/globstr.hrc:458
msgctxt "STR_COND_LAST7DAYS"
msgid "in the last 7 days"
msgstr ""
-#: sc/inc/globstr.hrc:458
+#: sc/inc/globstr.hrc:459
msgctxt "STR_COND_THISWEEK"
msgid "this week"
msgstr ""
-#: sc/inc/globstr.hrc:459
+#: sc/inc/globstr.hrc:460
msgctxt "STR_COND_LASTWEEK"
msgid "last week"
msgstr ""
-#: sc/inc/globstr.hrc:460
+#: sc/inc/globstr.hrc:461
msgctxt "STR_COND_NEXTWEEK"
msgid "next week"
msgstr ""
-#: sc/inc/globstr.hrc:461
+#: sc/inc/globstr.hrc:462
msgctxt "STR_COND_THISMONTH"
msgid "this month"
msgstr ""
-#: sc/inc/globstr.hrc:462
+#: sc/inc/globstr.hrc:463
msgctxt "STR_COND_LASTMONTH"
msgid "last month"
msgstr ""
-#: sc/inc/globstr.hrc:463
+#: sc/inc/globstr.hrc:464
msgctxt "STR_COND_NEXTMONTH"
msgid "next month"
msgstr ""
-#: sc/inc/globstr.hrc:464
+#: sc/inc/globstr.hrc:465
msgctxt "STR_COND_THISYEAR"
msgid "this year"
msgstr ""
-#: sc/inc/globstr.hrc:465
+#: sc/inc/globstr.hrc:466
msgctxt "STR_COND_LASTYEAR"
msgid "last year"
msgstr ""
-#: sc/inc/globstr.hrc:466
+#: sc/inc/globstr.hrc:467
msgctxt "STR_COND_NEXTYEAR"
msgid "next year"
msgstr ""
-#: sc/inc/globstr.hrc:467
+#: sc/inc/globstr.hrc:468
msgctxt "STR_COND_AND"
msgid "and"
msgstr "და"
-#: sc/inc/globstr.hrc:468
+#: sc/inc/globstr.hrc:469
msgctxt "STR_ERR_CONDFORMAT_PROTECTED"
msgid "Conditional Formats can not be created, deleted or changed in protected sheets."
msgstr ""
-#: sc/inc/globstr.hrc:469
+#: sc/inc/globstr.hrc:470
msgctxt "STR_EDIT_EXISTING_COND_FORMATS"
msgid ""
"The selected cell already contains conditional formatting. You can either edit the existing conditional format or you define a new overlapping conditional format.\n"
@@ -2288,7 +2293,7 @@ msgid ""
" Do you want to edit the existing conditional format?"
msgstr ""
-#: sc/inc/globstr.hrc:470
+#: sc/inc/globstr.hrc:471
msgctxt "STR_QUERY_FORMULA_RECALC_ONLOAD_ODS"
msgid ""
"This document was last saved by an application other than %PRODUCTNAME. Some formula cells may produce different results when recalculated.\n"
@@ -2296,7 +2301,7 @@ msgid ""
"Do you want to recalculate all formula cells in this document now?"
msgstr ""
-#: sc/inc/globstr.hrc:471
+#: sc/inc/globstr.hrc:472
msgctxt "STR_QUERY_FORMULA_RECALC_ONLOAD_XLS"
msgid ""
"This document was last saved by Excel. Some formula cells may produce different results when recalculated.\n"
@@ -2304,77 +2309,77 @@ msgid ""
"Do you want to recalculate all formula cells now?"
msgstr ""
-#: sc/inc/globstr.hrc:472
+#: sc/inc/globstr.hrc:473
msgctxt "STR_NO_INSERT_DELETE_OVER_PIVOT_TABLE"
msgid "You cannot insert or delete cells when the affected range intersects with pivot table."
msgstr ""
-#: sc/inc/globstr.hrc:473
+#: sc/inc/globstr.hrc:474
msgctxt "STR_DPFIELD_GROUP_BY_SECONDS"
msgid "Seconds"
msgstr "წამებით"
-#: sc/inc/globstr.hrc:474
+#: sc/inc/globstr.hrc:475
msgctxt "STR_DPFIELD_GROUP_BY_MINUTES"
msgid "Minutes"
msgstr "წუთები"
-#: sc/inc/globstr.hrc:475
+#: sc/inc/globstr.hrc:476
msgctxt "STR_DPFIELD_GROUP_BY_HOURS"
msgid "Hours"
msgstr "საათებით"
-#: sc/inc/globstr.hrc:476
+#: sc/inc/globstr.hrc:477
msgctxt "STR_DPFIELD_GROUP_BY_DAYS"
msgid "Days"
msgstr "დღეები"
-#: sc/inc/globstr.hrc:477
+#: sc/inc/globstr.hrc:478
msgctxt "STR_DPFIELD_GROUP_BY_MONTHS"
msgid "Months"
msgstr "თვეები"
-#: sc/inc/globstr.hrc:478
+#: sc/inc/globstr.hrc:479
msgctxt "STR_DPFIELD_GROUP_BY_QUARTERS"
msgid "Quarters"
msgstr "კვარტლებით"
-#: sc/inc/globstr.hrc:479
+#: sc/inc/globstr.hrc:480
msgctxt "STR_DPFIELD_GROUP_BY_YEARS"
msgid "Years"
msgstr "წლებით"
-#: sc/inc/globstr.hrc:480
+#: sc/inc/globstr.hrc:481
msgctxt "STR_INVALIDVAL"
msgid "Invalid target value."
msgstr "არასწორი სამიზნე მნიშვნელობა."
-#: sc/inc/globstr.hrc:481
+#: sc/inc/globstr.hrc:482
msgctxt "STR_INVALIDVAR"
msgid "Undefined name for variable cell."
msgstr "განუსაზღვრელი სახელი ცვლადი უჯრისთვის."
-#: sc/inc/globstr.hrc:482
+#: sc/inc/globstr.hrc:483
msgctxt "STR_INVALIDFORM"
msgid "Undefined name as formula cell."
msgstr "გაუნსაზღვრელი სახელი ფორმულის უჯრისთვის."
-#: sc/inc/globstr.hrc:483
+#: sc/inc/globstr.hrc:484
msgctxt "STR_NOFORMULA"
msgid "Formula cell must contain a formula."
msgstr ""
-#: sc/inc/globstr.hrc:484
+#: sc/inc/globstr.hrc:485
msgctxt "STR_INVALIDINPUT"
msgid "Invalid input."
msgstr "არასწორი ინდექსი."
-#: sc/inc/globstr.hrc:485
+#: sc/inc/globstr.hrc:486
msgctxt "STR_INVALIDCONDITION"
msgid "Invalid condition."
msgstr ""
-#: sc/inc/globstr.hrc:486
+#: sc/inc/globstr.hrc:487
msgctxt "STR_QUERYREMOVE"
msgid ""
"Should the entry\n"
@@ -2382,138 +2387,138 @@ msgid ""
"be deleted?"
msgstr ""
-#: sc/inc/globstr.hrc:487
+#: sc/inc/globstr.hrc:488
msgctxt "STR_COPYLIST"
msgid "Copy List"
msgstr ""
-#: sc/inc/globstr.hrc:488
+#: sc/inc/globstr.hrc:489
msgctxt "STR_COPYFROM"
msgid "List from"
msgstr ""
-#: sc/inc/globstr.hrc:489
+#: sc/inc/globstr.hrc:490
msgctxt "STR_COPYERR"
msgid "Cells without text have been ignored."
msgstr ""
-#: sc/inc/globstr.hrc:490
+#: sc/inc/globstr.hrc:491
#, c-format
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%s-click to follow hyperlink:"
msgstr ""
-#: sc/inc/globstr.hrc:491
+#: sc/inc/globstr.hrc:492
msgctxt "STR_CLICKHYPERLINK"
msgid "click to open hyperlink:"
msgstr ""
-#: sc/inc/globstr.hrc:492
+#: sc/inc/globstr.hrc:493
msgctxt "STR_PRINT_PREVIEW_NODATA"
msgid "No Data"
msgstr ""
-#: sc/inc/globstr.hrc:493
+#: sc/inc/globstr.hrc:494
msgctxt "STR_PRINT_PREVIEW_EMPTY_RANGE"
msgid "Print Range Empty"
msgstr ""
-#: sc/inc/globstr.hrc:494
+#: sc/inc/globstr.hrc:495
#, fuzzy
msgctxt "STR_UNDO_CONDFORMAT"
msgid "Conditional Format"
msgstr "~პირობითი ფორმატირება..."
-#: sc/inc/globstr.hrc:495
+#: sc/inc/globstr.hrc:496
#, fuzzy
msgctxt "STR_UNDO_CONDFORMAT_LIST"
msgid "Conditional Formats"
msgstr "~პირობითი ფორმატირება..."
-#: sc/inc/globstr.hrc:496
+#: sc/inc/globstr.hrc:497
msgctxt "STR_UNDO_FORMULA_TO_VALUE"
msgid "Convert Formula To Value"
msgstr ""
-#: sc/inc/globstr.hrc:497
+#: sc/inc/globstr.hrc:498
msgctxt "STR_UNQUOTED_STRING"
msgid "Strings without quotes are interpreted as column/row labels."
msgstr ""
-#: sc/inc/globstr.hrc:498
+#: sc/inc/globstr.hrc:499
msgctxt "STR_ENTER_VALUE"
msgid "Enter a value!"
msgstr ""
-#: sc/inc/globstr.hrc:499
+#: sc/inc/globstr.hrc:500
msgctxt "STR_TABLE_COUNT"
msgid "Sheet %1 of %2"
msgstr ""
-#: sc/inc/globstr.hrc:500
+#: sc/inc/globstr.hrc:501
msgctxt "STR_FUNCTIONS_FOUND"
msgid "%1 and %2 more"
msgstr ""
-#: sc/inc/globstr.hrc:501
+#: sc/inc/globstr.hrc:502
msgctxt "STR_GENERAL"
msgid "General"
msgstr "ზოგადი"
-#: sc/inc/globstr.hrc:502
+#: sc/inc/globstr.hrc:503
#, fuzzy
msgctxt "STR_NUMBER"
msgid "Number"
msgstr "რაოდენობა"
-#: sc/inc/globstr.hrc:503
+#: sc/inc/globstr.hrc:504
msgctxt "STR_PERCENT"
msgid "Percent"
msgstr "პროცენტი"
-#: sc/inc/globstr.hrc:504
+#: sc/inc/globstr.hrc:505
msgctxt "STR_CURRENCY"
msgid "Currency"
msgstr "ვალუტა"
-#: sc/inc/globstr.hrc:505
+#: sc/inc/globstr.hrc:506
msgctxt "STR_DATE"
msgid "Date"
msgstr "თარიღი"
-#: sc/inc/globstr.hrc:506
+#: sc/inc/globstr.hrc:507
msgctxt "STR_TIME"
msgid "Time"
msgstr "დრო"
-#: sc/inc/globstr.hrc:507
+#: sc/inc/globstr.hrc:508
msgctxt "STR_SCIENTIFIC"
msgid "Scientific"
msgstr "სამეცნიერო"
-#: sc/inc/globstr.hrc:508
+#: sc/inc/globstr.hrc:509
#, fuzzy
msgctxt "STR_FRACTION"
msgid "Fraction"
msgstr "ფუნქცია"
-#: sc/inc/globstr.hrc:509
+#: sc/inc/globstr.hrc:510
msgctxt "STR_BOOLEAN_VALUE"
msgid "Boolean Value"
msgstr "ლოგიკური მნიშვნელობა"
-#: sc/inc/globstr.hrc:510
+#: sc/inc/globstr.hrc:511
#, fuzzy
msgctxt "STR_TEXT"
msgid "Text"
msgstr "_ტექსტი"
-#: sc/inc/globstr.hrc:511
+#: sc/inc/globstr.hrc:512
msgctxt "STR_QUERY_PIVOTTABLE_DELTAB"
msgid "The selected sheet(s) contain source data of related pivot tables that will be lost. Are you sure you want to delete the selected sheet(s)?"
msgstr ""
-#: sc/inc/globstr.hrc:512
+#: sc/inc/globstr.hrc:513
msgctxt "STR_ERR_NAME_INVALID_CELL_REF"
msgid "Invalid name. Reference to a cell, or a range of cells not allowed."
msgstr ""
@@ -10703,7 +10708,7 @@ msgstr "გადაადგილება"
#: sc/inc/scfuncs.hrc:3010
msgctxt "SC_OPCODE_T_TEST"
-msgid "Mode specifies the number of distribution tails to return. 1= one-tailed, 2 = two-tailed distribution"
+msgid "Mode specifies the number of distribution tails to return. 1 = one-tailed, 2 = two-tailed distribution"
msgstr ""
#: sc/inc/scfuncs.hrc:3011
@@ -10750,7 +10755,7 @@ msgstr "გადაადგილება"
#: sc/inc/scfuncs.hrc:3024
msgctxt "SC_OPCODE_T_TEST_MS"
-msgid "Mode specifies the number of distribution tails to return. 1= one-tailed, 2 = two-tailed distribution"
+msgid "Mode specifies the number of distribution tails to return. 1 = one-tailed, 2 = two-tailed distribution"
msgstr ""
#: sc/inc/scfuncs.hrc:3025
@@ -18527,22 +18532,22 @@ msgctxt "mergecellsdialog|MergeCellsDialog"
msgid "Merge Cells"
msgstr "უჯრების შეერთება"
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:81
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:84
msgctxt "mergecellsdialog|label"
msgid "Some cells are not empty."
msgstr ""
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:96
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:99
msgctxt "mergecellsdialog|move-cells-radio"
msgid "Move the contents of the hidden cells into the first cell"
msgstr ""
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:112
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:115
msgctxt "mergecellsdialog|empty-cells-radio"
msgid "Empty the contents of the hidden cells"
msgstr ""
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:128
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:131
msgctxt "mergecellsdialog|keep-content-radio"
msgid "Keep the contents of the hidden cells"
msgstr ""
diff --git a/source/ka/sd/messages.po b/source/ka/sd/messages.po
index f45ae70c09a..928f918c53e 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+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"
@@ -13,175 +13,175 @@ msgstr ""
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-#: sd/inc/DocumentRenderer.hrc:29
+#: sd/inc/DocumentRenderer.hrc:27
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Slides"
msgstr "სლაიდები"
-#: sd/inc/DocumentRenderer.hrc:30
+#: sd/inc/DocumentRenderer.hrc:28
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Handouts"
msgstr "ბროშურები"
-#: sd/inc/DocumentRenderer.hrc:31
+#: sd/inc/DocumentRenderer.hrc:29
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Notes"
msgstr "ჩანაწერები"
-#: sd/inc/DocumentRenderer.hrc:32
+#: sd/inc/DocumentRenderer.hrc:30
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Outline"
msgstr "კონტური"
-#: sd/inc/DocumentRenderer.hrc:37
+#: sd/inc/DocumentRenderer.hrc:35
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "According to layout"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:38
+#: sd/inc/DocumentRenderer.hrc:36
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "1"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:39
+#: sd/inc/DocumentRenderer.hrc:37
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "2"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:40
+#: sd/inc/DocumentRenderer.hrc:38
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "3"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:41
+#: sd/inc/DocumentRenderer.hrc:39
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "4"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:42
+#: sd/inc/DocumentRenderer.hrc:40
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "6"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:43
+#: sd/inc/DocumentRenderer.hrc:41
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "9"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:48
+#: sd/inc/DocumentRenderer.hrc:46
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_ORDER_CHOICES"
msgid "Left to right, then down"
msgstr "მარ~ცხნიდავ მარჯვნივ და შემდეგ ქვევით"
-#: sd/inc/DocumentRenderer.hrc:49
+#: sd/inc/DocumentRenderer.hrc:47
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_ORDER_CHOICES"
msgid "Top to bottom, then right"
msgstr "~ზევიდან ქვევით და შემდეგ მარჯვნივ"
-#: sd/inc/DocumentRenderer.hrc:54
+#: sd/inc/DocumentRenderer.hrc:52
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Original colors"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:55
+#: sd/inc/DocumentRenderer.hrc:53
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Grayscale"
msgstr "ნაცრისფერი ტონები"
-#: sd/inc/DocumentRenderer.hrc:56
+#: sd/inc/DocumentRenderer.hrc:54
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Black & white"
msgstr "შა~ვ-თეთრი"
-#: sd/inc/DocumentRenderer.hrc:61
+#: sd/inc/DocumentRenderer.hrc:59
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Original size"
msgstr "საწყისი ~ზომა"
-#: sd/inc/DocumentRenderer.hrc:62
+#: sd/inc/DocumentRenderer.hrc:60
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Fit to printable page"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:63
+#: sd/inc/DocumentRenderer.hrc:61
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Distribute on multiple sheets of paper"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:64
+#: sd/inc/DocumentRenderer.hrc:62
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Tile sheet of paper with repeated slides"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:69
+#: sd/inc/DocumentRenderer.hrc:67
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Original size"
msgstr "საწყისი ~ზომა"
-#: sd/inc/DocumentRenderer.hrc:70
+#: sd/inc/DocumentRenderer.hrc:68
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Fit to printable page"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:71
+#: sd/inc/DocumentRenderer.hrc:69
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Distribute on multiple sheets of paper"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:72
+#: sd/inc/DocumentRenderer.hrc:70
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Tile sheet of paper with repeated pages"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:77
+#: sd/inc/DocumentRenderer.hrc:75
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "All pages"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:78
+#: sd/inc/DocumentRenderer.hrc:76
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "Front sides / right pages"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:79
+#: sd/inc/DocumentRenderer.hrc:77
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "Back sides / left pages"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:84
+#: sd/inc/DocumentRenderer.hrc:82
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~All slides"
msgstr "_ყველა სლაიდი"
-#: sd/inc/DocumentRenderer.hrc:85
+#: sd/inc/DocumentRenderer.hrc:83
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~Slides"
msgstr "სლაიდები"
-#: sd/inc/DocumentRenderer.hrc:86
+#: sd/inc/DocumentRenderer.hrc:84
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Se~lection"
msgstr "არჩევა"
-#: sd/inc/DocumentRenderer.hrc:91
+#: sd/inc/DocumentRenderer.hrc:89
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~All pages"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:92
+#: sd/inc/DocumentRenderer.hrc:90
#, fuzzy
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Pa~ges"
msgstr "გვერდები"
-#: sd/inc/DocumentRenderer.hrc:93
+#: sd/inc/DocumentRenderer.hrc:91
#, fuzzy
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Se~lection"
diff --git a/source/ka/svx/messages.po b/source/ka/svx/messages.po
index 0eb8a9ca096..57b9ad6d7f9 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: 2018-05-16 16:53+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+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"
@@ -5504,7 +5504,7 @@ msgstr ""
#: svx/uiconfig/ui/safemodedialog.ui:432
msgctxt "safemodedialog|btn_create_zip"
-msgid "Create Zip Archive from User Profile"
+msgid "Archive User Profile"
msgstr ""
#: svx/uiconfig/ui/safemodedialog.ui:445
@@ -9166,8 +9166,8 @@ msgid "Red"
msgstr "წითელი"
#: include/svx/strings.hrc:565
-msgctxt "RID_SVXSTR_COLOR_VIOLET"
-msgid "Violet"
+msgctxt "RID_SVXSTR_COLOR_MAGENTA"
+msgid "Magenta"
msgstr "იისფერი"
#: include/svx/strings.hrc:566
@@ -9233,8 +9233,8 @@ msgid "Light Red"
msgstr "ღია წითელი"
#: include/svx/strings.hrc:579
-msgctxt "RID_SVXSTR_COLOR_LIGHTVIOLET"
-msgid "Light Violet"
+msgctxt "RID_SVXSTR_COLOR_LIGHTMAGENTA"
+msgid "Light Magenta"
msgstr ""
#: include/svx/strings.hrc:580
@@ -9300,8 +9300,8 @@ msgid "Dark Red"
msgstr "მუქი წითელი"
#: include/svx/strings.hrc:593
-msgctxt "RID_SVXSTR_COLOR_DARKVIOLET1"
-msgid "Dark Violet"
+msgctxt "RID_SVXSTR_COLOR_DARKMAGENTA"
+msgid "Dark Magenta"
msgstr ""
#: include/svx/strings.hrc:594
@@ -9336,55 +9336,55 @@ msgstr ""
#. Elements of the Tonal color palette
#: include/svx/strings.hrc:601
+msgctxt "RID_SVXSTR_COLOR_VIOLET"
+msgid "Violet"
+msgstr "იისფერი"
+
+#: include/svx/strings.hrc:602
msgctxt "RID_SVXSTR_COLOR_VIOLET_OUG"
msgid "Violet (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:602
+#: include/svx/strings.hrc:603
msgctxt "RID_SVXSTR_COLOR_BLUE_OUG"
msgid "Blue (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:603
+#: include/svx/strings.hrc:604
msgctxt "RID_SVXSTR_COLOR_AZURE_OUG"
msgid "Azure (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:604
+#: include/svx/strings.hrc:605
msgctxt "RID_SVXSTR_COLOR_SPRINGGREEN_OUG"
msgid "Spring Green (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:605
+#: include/svx/strings.hrc:606
msgctxt "RID_SVXSTR_COLOR_GREEN_OUG"
msgid "Green (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:606
+#: include/svx/strings.hrc:607
msgctxt "RID_SVXSTR_COLOR_CHARTREUSEGREEN_OUG"
msgid "Chartreuse Green (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:607
+#: include/svx/strings.hrc:608
msgctxt "RID_SVXSTR_COLOR_ORANGE_OUG"
msgid "Orange (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:608
+#: include/svx/strings.hrc:609
msgctxt "RID_SVXSTR_COLOR_RED_OUG"
msgid "Red (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:609
+#: include/svx/strings.hrc:610
msgctxt "RID_SVXSTR_COLOR_ROSE_OUG"
msgid "Rose (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:610
-msgctxt "RID_SVXSTR_COLOR_MAGENTA"
-msgid "Magenta"
-msgstr "იისფერი"
-
#: include/svx/strings.hrc:611
msgctxt "RID_SVXSTR_COLOR_AZURE"
msgid "Azure"
@@ -12542,12 +12542,12 @@ msgstr ""
#: include/svx/strings.hrc:1273
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_6"
-msgid "Check mark bullets"
+msgid "Cross mark bullets"
msgstr ""
#: include/svx/strings.hrc:1274
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_7"
-msgid "Tick mark bullets"
+msgid "Check mark bullets"
msgstr ""
#: include/svx/strings.hrc:1275
diff --git a/source/ka/sw/messages.po b/source/ka/sw/messages.po
index f9e930d9bde..cb40716e459 100644
--- a/source/ka/sw/messages.po
+++ b/source/ka/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: 2018-05-22 13:17+0200\n"
+"POT-Creation-Date: 2018-06-12 14:41+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"
@@ -1216,13 +1216,13 @@ msgstr "ციტატირება"
#: sw/inc/strings.hrc:172
msgctxt "STR_POOLCOLL_TOX_ILLUSH"
-msgid "Illustration Index Heading"
-msgstr "ილუსტრაციის ინდექსის სათაური"
+msgid "Figure Index Heading"
+msgstr ""
#: sw/inc/strings.hrc:173
msgctxt "STR_POOLCOLL_TOX_ILLUS1"
-msgid "Illustration Index 1"
-msgstr "ილუსტრაციის ინდექსი 1"
+msgid "Figure Index 1"
+msgstr ""
#: sw/inc/strings.hrc:174
msgctxt "STR_POOLCOLL_TOX_OBJECTH"
@@ -3688,10 +3688,9 @@ msgid "Table of Objects"
msgstr ""
#: sw/inc/strings.hrc:672
-#, fuzzy
msgctxt "STR_TOX_ILL"
-msgid "Illustration Index"
-msgstr "ილუსტრაციის ინდექსი 1"
+msgid "Table of Figures"
+msgstr ""
#: sw/inc/strings.hrc:673
#, c-format
@@ -9625,81 +9624,81 @@ msgctxt "footnotepage|label5"
msgid "Continuation Notice"
msgstr "გაგრძელების მაჩვენებელი"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:49
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:55
#, fuzzy
msgctxt "footnotesendnotestabpage|ftnntnum"
msgid "_Restart numbering"
msgstr "თავიდან გადანომვრა"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:91
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:93
#, fuzzy
msgctxt "footnotesendnotestabpage|ftnoffset_label"
msgid "_Start at:"
msgstr "დაწყება"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:112
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:111
msgctxt "footnotesendnotestabpage|ftnntnumfmt"
msgid "Custom _format"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:155
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:150
#, fuzzy
msgctxt "footnotesendnotestabpage|ftnsuffix_label"
msgid "Aft_er:"
msgstr "-შემდეგ"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:199
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:188
#, fuzzy
msgctxt "footnotesendnotestabpage|ftnprefix_label"
msgid "Be_fore:"
msgstr "_მდე"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:228
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:212
msgctxt "footnotesendnotestabpage|ftnntattextend"
msgid "Collec_t at end of text"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:252
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:234
#, fuzzy
msgctxt "footnotesendnotestabpage|label1"
msgid "Footnotes"
msgstr "სქოლიო"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:289
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:271
msgctxt "footnotesendnotestabpage|endntattextend"
msgid "C_ollect at end of section"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:315
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:295
#, fuzzy
msgctxt "footnotesendnotestabpage|endntnum"
msgid "_Restart numbering"
msgstr "თავიდან გადანომვრა"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:357
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:333
#, fuzzy
msgctxt "footnotesendnotestabpage|endoffset_label"
msgid "_Start at:"
msgstr "დაწყება"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:378
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:351
msgctxt "footnotesendnotestabpage|endntnumfmt"
msgid "_Custom format"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:421
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:390
#, fuzzy
msgctxt "footnotesendnotestabpage|endsuffix_label"
msgid "Aft_er:"
msgstr "-შემდეგ"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:465
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:428
#, fuzzy
msgctxt "footnotesendnotestabpage|endprefix_label"
msgid "Be_fore:"
msgstr "_მდე"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:500
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:458
#, fuzzy
msgctxt "footnotesendnotestabpage|label2"
msgid "Endnotes"
@@ -9732,27 +9731,27 @@ msgctxt "formatsectiondialog|notes"
msgid "Footnotes/Endnotes"
msgstr "ქვედა კოლონტიტული/სქოლიო"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:63
+#: sw/uiconfig/swriter/ui/formattablepage.ui:77
msgctxt "formattablepage|nameft"
msgid "_Name"
msgstr "_სახელი"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:79
+#: sw/uiconfig/swriter/ui/formattablepage.ui:91
msgctxt "formattablepage|widthft"
msgid "W_idth"
msgstr "ს_იგანე"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:110
+#: sw/uiconfig/swriter/ui/formattablepage.ui:120
msgctxt "formattablepage|relwidth"
msgid "Relati_ve"
msgstr "შესაბამი_სი"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:155
+#: sw/uiconfig/swriter/ui/formattablepage.ui:160
msgctxt "formattablepage|label45"
msgid "Properties"
msgstr "თვისებები"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:194
+#: sw/uiconfig/swriter/ui/formattablepage.ui:195
msgctxt "formattablepage|leftft"
msgid "Lef_t"
msgstr "მარცხენ_ა"
@@ -9762,62 +9761,62 @@ msgctxt "formattablepage|rightft"
msgid "Ri_ght"
msgstr "მარჯ_ვენა"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:228
+#: sw/uiconfig/swriter/ui/formattablepage.ui:226
msgctxt "formattablepage|aboveft"
msgid "_Above"
msgstr "_ზემოთ"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:245
+#: sw/uiconfig/swriter/ui/formattablepage.ui:241
msgctxt "formattablepage|belowft"
msgid "_Below"
msgstr "_ქვმოთ"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:320
+#: sw/uiconfig/swriter/ui/formattablepage.ui:311
msgctxt "formattablepage|label46"
msgid "Spacing"
msgstr "დაშორება"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:362
+#: sw/uiconfig/swriter/ui/formattablepage.ui:349
msgctxt "formattablepage|full"
msgid "A_utomatic"
msgstr "ა_ვტომატური"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:380
+#: sw/uiconfig/swriter/ui/formattablepage.ui:365
msgctxt "formattablepage|left"
msgid "_Left"
msgstr "_მარცხენა"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:398
+#: sw/uiconfig/swriter/ui/formattablepage.ui:381
msgctxt "formattablepage|fromleft"
msgid "_From left"
msgstr "_მარცხნიდან"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:416
+#: sw/uiconfig/swriter/ui/formattablepage.ui:397
msgctxt "formattablepage|right"
msgid "R_ight"
msgstr "მ_არჯვენა"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:435
+#: sw/uiconfig/swriter/ui/formattablepage.ui:413
msgctxt "formattablepage|center"
msgid "_Center"
msgstr "_ცენტრირება"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:453
+#: sw/uiconfig/swriter/ui/formattablepage.ui:429
msgctxt "formattablepage|free"
msgid "_Manual"
msgstr "_სახელმძღვანელო"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:478
+#: sw/uiconfig/swriter/ui/formattablepage.ui:452
msgctxt "formattablepage|label43"
msgid "Alignment"
msgstr "სწორება"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:522
+#: sw/uiconfig/swriter/ui/formattablepage.ui:491
msgctxt "formattablepage|label53"
msgid "Text _direction"
msgstr "ტექსტის _მიმართულება"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:553
+#: sw/uiconfig/swriter/ui/formattablepage.ui:519
#, fuzzy
msgctxt "formattablepage|label44"
msgid "Properties "
@@ -10204,24 +10203,29 @@ msgctxt "headerfootermenu|insert_pagenumber"
msgid "Insert Page Number"
msgstr ""
-#: sw/uiconfig/swriter/ui/indentpage.ui:52
+#: sw/uiconfig/swriter/ui/headerfootermenu.ui:42
+msgctxt "headerfootermenu|insert_pagecount"
+msgid "Insert Page Count"
+msgstr ""
+
+#: sw/uiconfig/swriter/ui/indentpage.ui:57
#, fuzzy
msgctxt "indentpage|label1"
msgid "_Before section"
msgstr "~სექციამდე"
-#: sw/uiconfig/swriter/ui/indentpage.ui:67
+#: sw/uiconfig/swriter/ui/indentpage.ui:71
#, fuzzy
msgctxt "indentpage|label3"
msgid "_After section"
msgstr "~სექციის შემდეგ"
-#: sw/uiconfig/swriter/ui/indentpage.ui:113
+#: sw/uiconfig/swriter/ui/indentpage.ui:115
msgctxt "indentpage|label2"
msgid "Indent"
msgstr "დაშორება"
-#: sw/uiconfig/swriter/ui/indentpage.ui:142
+#: sw/uiconfig/swriter/ui/indentpage.ui:155
msgctxt "indentpage|preview-atkobject"
msgid "Example"
msgstr "მაგალითი"
@@ -13986,7 +13990,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:68
msgctxt "optcompatpage|format"
-msgid "MS Word-compatible trailing blanks"
+msgid "Word-compatible trailing blanks"
msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:69
@@ -13996,7 +14000,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:70
msgctxt "optcompatpage|format"
-msgid "A database field (e.g., MailMerge) with empty value hides its paragraph"
+msgid "Hide paragraphs of database fields (e.g., mail merge) with an empty value"
msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:71
@@ -16854,124 +16858,124 @@ msgctxt "tableproperties|background"
msgid "Background"
msgstr "ფონი"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:25
-msgctxt "tabletextflowpage|liststore1"
-msgid "Horizontal"
-msgstr "ჰორიზონტალური"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:29
-msgctxt "tabletextflowpage|liststore1"
-msgid "Vertical"
-msgstr "ვერტიკალური"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:33
-msgctxt "tabletextflowpage|liststore1"
-msgid "Use superordinate object settings"
-msgstr "უპირატესი ობიექტის პარამეტრების გამოყენება "
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:47
-msgctxt "tabletextflowpage|liststore2"
-msgid "Top"
-msgstr "ზემოთ"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:51
-msgctxt "tabletextflowpage|liststore2"
-msgid "Centered"
-msgstr "ცენტრირებული"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:55
-msgctxt "tabletextflowpage|liststore2"
-msgid "Bottom"
-msgstr "ქვემოთ"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:97
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:53
msgctxt "tabletextflowpage|break"
msgid "_Break"
msgstr "შეწ_ყვეტა"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:112
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:68
msgctxt "tabletextflowpage|page"
msgid "_Page"
msgstr "_გვერდი"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:132
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:87
msgctxt "tabletextflowpage|column"
msgid "Col_umn"
msgstr "სვე_ტი"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:151
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:106
msgctxt "tabletextflowpage|before"
msgid "Be_fore"
msgstr "_მდე"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:171
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:125
msgctxt "tabletextflowpage|after"
msgid "_After"
msgstr "შ_ემდეგ"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:203
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:158
msgctxt "tabletextflowpage|pagestyle"
msgid "With Page St_yle"
msgstr "გვერდის სტ_ილით"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:224
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:177
msgctxt "tabletextflowpage|pagenoft"
msgid "Page _number"
msgstr "გვერდის _ნომერი"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:257
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:213
#, fuzzy
msgctxt "tabletextflowpage|pagestylelb-atkobject"
msgid "With Page Style"
msgstr "გვერდის სტ_ილით"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:274
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:230
msgctxt "tabletextflowpage|split"
msgid "Allow _table to split across pages and columns"
msgstr "გვერდებისა და სვეტების გასწვრივ ცხრილის გადანაწილება"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:289
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:245
msgctxt "tabletextflowpage|splitrow"
msgid "Allow row to break a_cross pages and columns"
msgstr "გვერდებისა და სვეტების გ_ასწვრივ სტრიქონების წყვეტა"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:306
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:262
msgctxt "tabletextflowpage|keep"
msgid "_Keep with next paragraph"
msgstr "_შემდეგ აბზაცთან მიბმა"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:328
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:284
#, fuzzy
msgctxt "tabletextflowpage|label40"
msgid "Text _orientation"
msgstr "ტექსტის მიმართულება"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:361
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:298
+msgctxt "tabletextflowpage|liststore1"
+msgid "Horizontal"
+msgstr "ჰორიზონტალური"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:299
+msgctxt "tabletextflowpage|liststore1"
+msgid "Vertical"
+msgstr "ვერტიკალური"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:300
+msgctxt "tabletextflowpage|liststore1"
+msgid "Use superordinate object settings"
+msgstr "უპირატესი ობიექტის პარამეტრების გამოყენება "
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:321
msgctxt "tabletextflowpage|headline"
msgid "R_epeat heading"
msgstr "ს_ათაურის გამეორება"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:383
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:343
msgctxt "tabletextflowpage|label38"
msgid "The first "
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:396
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:356
msgctxt "tabletextflowpage|label39"
msgid "rows"
msgstr "სტრიქონები"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:434
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:395
msgctxt "tabletextflowpage|label35"
msgid "Text Flow"
msgstr "ტექსტის ნაკადი"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:467
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:428
msgctxt "tabletextflowpage|label41"
msgid "_Vertical alignment"
msgstr "_ვერტიკალური გასწორება"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:495
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:442
+msgctxt "tabletextflowpage|liststore2"
+msgid "Top"
+msgstr "ზემოთ"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:443
+msgctxt "tabletextflowpage|liststore2"
+msgid "Centered"
+msgstr "ცენტრირებული"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:444
+msgctxt "tabletextflowpage|liststore2"
+msgid "Bottom"
+msgstr "ქვემოთ"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:460
msgctxt "tabletextflowpage|label36"
msgid "Alignment"
msgstr "სწორება"
@@ -17793,10 +17797,9 @@ msgid "Alphabetical Index"
msgstr ""
#: sw/uiconfig/swriter/ui/tocindexpage.ui:58
-#, fuzzy
msgctxt "tocindexpage|liststore1"
-msgid "Illustration Index"
-msgstr "ილუსტრაციის ინდექსი 1"
+msgid "Table of Figures"
+msgstr ""
#: sw/uiconfig/swriter/ui/tocindexpage.ui:62
msgctxt "tocindexpage|liststore1"
diff --git a/source/ka/writerperfect/messages.po b/source/ka/writerperfect/messages.po
index 13ef0176357..c60a93b2ee1 100644
--- a/source/ka/writerperfect/messages.po
+++ b/source/ka/writerperfect/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-16 16:54+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+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"
@@ -64,99 +64,99 @@ msgctxt "exportepub|generalft"
msgid "General"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:122
+#: writerperfect/uiconfig/ui/exportepub.ui:121
#, fuzzy
msgctxt "exportepub|versionft"
msgid "Version:"
msgstr "~ვერსია:"
-#: writerperfect/uiconfig/ui/exportepub.ui:139
+#: writerperfect/uiconfig/ui/exportepub.ui:138
msgctxt "exportepub|epub3"
msgid "EPUB 3.0"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:140
+#: writerperfect/uiconfig/ui/exportepub.ui:139
msgctxt "exportepub|epub2"
msgid "EPUB 2.0"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:175
+#: writerperfect/uiconfig/ui/exportepub.ui:174
msgctxt "exportepub|splitft"
msgid "Split method:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:192
+#: writerperfect/uiconfig/ui/exportepub.ui:191
msgctxt "exportepub|splitpage"
msgid "Page break"
msgstr "~გვერდის გამყოფი"
-#: writerperfect/uiconfig/ui/exportepub.ui:193
+#: writerperfect/uiconfig/ui/exportepub.ui:192
#, fuzzy
msgctxt "exportepub|splitheading"
msgid "Heading"
msgstr "სათაური"
-#: writerperfect/uiconfig/ui/exportepub.ui:228
+#: writerperfect/uiconfig/ui/exportepub.ui:227
msgctxt "exportepub|layoutft"
msgid "Layout method:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:245
+#: writerperfect/uiconfig/ui/exportepub.ui:244
msgctxt "exportepub|layoutreflowable"
msgid "Reflowable"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:246
+#: writerperfect/uiconfig/ui/exportepub.ui:245
msgctxt "exportepub|layoutfixed"
msgid "Fixed"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:281
+#: writerperfect/uiconfig/ui/exportepub.ui:280
msgctxt "exportepub|coverimageft"
msgid "Custom cover image:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:311
+#: writerperfect/uiconfig/ui/exportepub.ui:310
msgctxt "exportepub|coverbutton"
msgid "Browse..."
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:355
+#: writerperfect/uiconfig/ui/exportepub.ui:354
msgctxt "exportepub|mediadirft"
msgid "Custom media directory:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:385
+#: writerperfect/uiconfig/ui/exportepub.ui:384
msgctxt "exportepub|mediabutton"
msgid "Browse..."
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:429
+#: writerperfect/uiconfig/ui/exportepub.ui:428
msgctxt "exportepub|metadataft"
msgid "Metadata"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:470
+#: writerperfect/uiconfig/ui/exportepub.ui:468
msgctxt "exportepub|identifierft"
msgid "Identifier:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:485
+#: writerperfect/uiconfig/ui/exportepub.ui:483
msgctxt "exportepub|titleft"
msgid "Title:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:511
+#: writerperfect/uiconfig/ui/exportepub.ui:509
msgctxt "exportepub|authorft"
msgid "Author:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:537
+#: writerperfect/uiconfig/ui/exportepub.ui:535
msgctxt "exportepub|languageft"
msgid "Language:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:563
+#: writerperfect/uiconfig/ui/exportepub.ui:561
msgctxt "exportepub|dateft"
msgid "Date:"
msgstr ""
diff --git a/source/kk/cui/messages.po b/source/kk/cui/messages.po
index 5c9ffac4ea7..cdc1c38c53b 100644
--- a/source/kk/cui/messages.po
+++ b/source/kk/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: 2018-05-22 13:16+0200\n"
-"PO-Revision-Date: 2018-04-30 05:16+0000\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
+"PO-Revision-Date: 2018-06-06 14:18+0000\n"
"Last-Translator: Baurzhan Muftakhidinov <baurthefirst@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: kk\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1525065390.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1528294714.000000\n"
#: cui/inc/personalization.hrc:31
msgctxt "RID_SVXSTR_PERSONA_CATEGORIES"
@@ -400,7 +400,7 @@ msgstr "Таңдамалылардан өшіру"
#: cui/inc/strings.hrc:100
msgctxt "RID_SVXSTR_MISSING_GLYPH"
msgid "Missing Glyph"
-msgstr ""
+msgstr "Жоқ болып тұрған глиф"
#: cui/inc/strings.hrc:101
msgctxt "RID_SVXSTR_ADD_FAVORITES"
@@ -9872,97 +9872,97 @@ msgctxt "positionsizedialog|PositionAndSizeDialog"
msgid "Position and Size"
msgstr "Орны және өлшемі"
-#: cui/uiconfig/ui/positionsizedialog.ui:107
+#: cui/uiconfig/ui/positionsizedialog.ui:136
msgctxt "positionsizedialog|RID_SVXPAGE_POSITION_SIZE"
msgid "Position and Size"
msgstr "Орны және өлшемі"
-#: cui/uiconfig/ui/positionsizedialog.ui:129
+#: cui/uiconfig/ui/positionsizedialog.ui:182
msgctxt "positionsizedialog|RID_SVXPAGE_SWPOSSIZE"
msgid "Position and Size"
msgstr "Орны және өлшемі"
-#: cui/uiconfig/ui/positionsizedialog.ui:152
+#: cui/uiconfig/ui/positionsizedialog.ui:229
msgctxt "positionsizedialog|RID_SVXPAGE_ANGLE"
msgid "Rotation"
msgstr "Бұру"
-#: cui/uiconfig/ui/positionsizedialog.ui:175
+#: cui/uiconfig/ui/positionsizedialog.ui:276
msgctxt "positionsizedialog|RID_SVXPAGE_SLANT"
msgid "Slant & Corner Radius"
msgstr "Бұрыштың көлбеулігі және радиусы"
-#: cui/uiconfig/ui/possizetabpage.ui:40
+#: cui/uiconfig/ui/possizetabpage.ui:61
msgctxt "possizetabpage|FT_POS_X"
msgid "Position _X:"
msgstr "_X орны:"
-#: cui/uiconfig/ui/possizetabpage.ui:56
+#: cui/uiconfig/ui/possizetabpage.ui:75
msgctxt "possizetabpage|FT_POS_Y"
msgid "Position _Y:"
msgstr "_Y орны:"
-#: cui/uiconfig/ui/possizetabpage.ui:110
+#: cui/uiconfig/ui/possizetabpage.ui:128
msgctxt "possizetabpage|FT_POSREFERENCE"
msgid "_Base point:"
msgstr "_Базисті нүкте:"
-#: cui/uiconfig/ui/possizetabpage.ui:148
+#: cui/uiconfig/ui/possizetabpage.ui:182
msgctxt "possizetabpage|label1"
msgid "Position"
msgstr "Орналасу"
-#: cui/uiconfig/ui/possizetabpage.ui:190
+#: cui/uiconfig/ui/possizetabpage.ui:224
msgctxt "possizetabpage|FT_WIDTH"
msgid "Wi_dth:"
msgstr "Е_ні:"
-#: cui/uiconfig/ui/possizetabpage.ui:206
+#: cui/uiconfig/ui/possizetabpage.ui:238
msgctxt "possizetabpage|FT_HEIGHT"
msgid "H_eight:"
msgstr "Б_иіктігі:"
-#: cui/uiconfig/ui/possizetabpage.ui:247
+#: cui/uiconfig/ui/possizetabpage.ui:276
msgctxt "possizetabpage|CBX_SCALE"
msgid "_Keep ratio"
msgstr "Пропор_ционалды"
-#: cui/uiconfig/ui/possizetabpage.ui:279
+#: cui/uiconfig/ui/possizetabpage.ui:307
msgctxt "possizetabpage|FT_SIZEREFERENCE"
msgid "Base _point:"
msgstr "Базисті _нүкте:"
-#: cui/uiconfig/ui/possizetabpage.ui:317
+#: cui/uiconfig/ui/possizetabpage.ui:361
msgctxt "possizetabpage|label2"
msgid "Size"
msgstr "Өлшемі"
-#: cui/uiconfig/ui/possizetabpage.ui:356
+#: cui/uiconfig/ui/possizetabpage.ui:401
msgctxt "possizetabpage|TSB_POSPROTECT"
msgid "Positio_n"
msgstr "Орнал_асуы"
-#: cui/uiconfig/ui/possizetabpage.ui:373
+#: cui/uiconfig/ui/possizetabpage.ui:418
msgctxt "possizetabpage|TSB_SIZEPROTECT"
msgid "_Size"
msgstr "Ө_лшемі"
-#: cui/uiconfig/ui/possizetabpage.ui:397
+#: cui/uiconfig/ui/possizetabpage.ui:441
msgctxt "possizetabpage|label3"
msgid "Protect"
msgstr "Қорғау"
-#: cui/uiconfig/ui/possizetabpage.ui:430
+#: cui/uiconfig/ui/possizetabpage.ui:475
msgctxt "possizetabpage|TSB_AUTOGROW_WIDTH"
msgid "_Fit width to text"
msgstr "Мәтінді енімен _туралау"
-#: cui/uiconfig/ui/possizetabpage.ui:447
+#: cui/uiconfig/ui/possizetabpage.ui:492
msgctxt "possizetabpage|TSB_AUTOGROW_HEIGHT"
msgid "Fit _height to text"
msgstr "Мәтінді биікті_гімен туралау"
-#: cui/uiconfig/ui/possizetabpage.ui:471
+#: cui/uiconfig/ui/possizetabpage.ui:515
msgctxt "possizetabpage|label4"
msgid "Adapt"
msgstr "Үйлестіру"
@@ -10162,47 +10162,47 @@ msgctxt "recordnumberdialog|label2"
msgid "go to record"
msgstr "жазбаға өту"
-#: cui/uiconfig/ui/rotationtabpage.ui:52
+#: cui/uiconfig/ui/rotationtabpage.ui:56
msgctxt "rotationtabpage|FT_POS_X"
msgid "Position _X:"
msgstr "_X орны:"
-#: cui/uiconfig/ui/rotationtabpage.ui:66
+#: cui/uiconfig/ui/rotationtabpage.ui:70
msgctxt "rotationtabpage|FT_POS_Y"
msgid "Position _Y:"
msgstr "_Y орны:"
-#: cui/uiconfig/ui/rotationtabpage.ui:116
+#: cui/uiconfig/ui/rotationtabpage.ui:123
msgctxt "rotationtabpage|FT_POSPRESETS"
msgid "_Default settings:"
msgstr "_Бастапқы баптаулар:"
-#: cui/uiconfig/ui/rotationtabpage.ui:130
+#: cui/uiconfig/ui/rotationtabpage.ui:151
msgctxt "rotationtabpage|CTL_RECT|tooltip_text"
msgid "Rotation point"
msgstr "Бұру нүктесі"
-#: cui/uiconfig/ui/rotationtabpage.ui:155
+#: cui/uiconfig/ui/rotationtabpage.ui:178
msgctxt "rotationtabpage|label1"
msgid "Pivot Point"
msgstr "Қатысты бұру"
-#: cui/uiconfig/ui/rotationtabpage.ui:197
+#: cui/uiconfig/ui/rotationtabpage.ui:220
msgctxt "rotationtabpage|FT_ANGLE"
msgid "_Angle:"
msgstr "_Бұрыш:"
-#: cui/uiconfig/ui/rotationtabpage.ui:238
+#: cui/uiconfig/ui/rotationtabpage.ui:263
msgctxt "rotationtabpage|FT_ANGLEPRESETS"
msgid "Default _settings:"
msgstr "_Бастапқы баптаулар:"
-#: cui/uiconfig/ui/rotationtabpage.ui:252
+#: cui/uiconfig/ui/rotationtabpage.ui:287
msgctxt "rotationtabpage|CTL_ANGLE|tooltip_text"
msgid "Rotation Angle"
msgstr "Бұрылыс бұрышы"
-#: cui/uiconfig/ui/rotationtabpage.ui:277
+#: cui/uiconfig/ui/rotationtabpage.ui:314
msgctxt "rotationtabpage|label2"
msgid "Rotation Angle"
msgstr "Бұрылыс бұрышы"
@@ -10582,52 +10582,52 @@ msgctxt "similaritysearchdialog|relaxbox"
msgid "_Combine"
msgstr "_Біріктіру"
-#: cui/uiconfig/ui/slantcornertabpage.ui:50
+#: cui/uiconfig/ui/slantcornertabpage.ui:70
msgctxt "slantcornertabpage|label5"
msgid "_X:"
msgstr "_X:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:88
+#: cui/uiconfig/ui/slantcornertabpage.ui:110
msgctxt "slantcornertabpage|label6"
msgid "_Y:"
msgstr "_Y:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:125
+#: cui/uiconfig/ui/slantcornertabpage.ui:149
msgctxt "slantcornertabpage|label3"
msgid "Control Point 1"
msgstr "Нүкте 1"
-#: cui/uiconfig/ui/slantcornertabpage.ui:159
+#: cui/uiconfig/ui/slantcornertabpage.ui:183
msgctxt "slantcornertabpage|FT_RADIUS"
msgid "_Radius:"
msgstr "_Радиус:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:189
+#: cui/uiconfig/ui/slantcornertabpage.ui:214
msgctxt "slantcornertabpage|label1"
msgid "Corner Radius"
msgstr "Бұрыш радиусы"
-#: cui/uiconfig/ui/slantcornertabpage.ui:223
+#: cui/uiconfig/ui/slantcornertabpage.ui:248
msgctxt "slantcornertabpage|FT_ANGLE"
msgid "_Angle:"
msgstr "_Бұрыш:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:253
+#: cui/uiconfig/ui/slantcornertabpage.ui:279
msgctxt "slantcornertabpage|label2"
msgid "Slant"
msgstr "Көлбеулігі"
-#: cui/uiconfig/ui/slantcornertabpage.ui:294
+#: cui/uiconfig/ui/slantcornertabpage.ui:320
msgctxt "slantcornertabpage|label4"
msgid "_X:"
msgstr "_X:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:332
+#: cui/uiconfig/ui/slantcornertabpage.ui:360
msgctxt "slantcornertabpage|label7"
msgid "_Y:"
msgstr "_Y:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:369
+#: cui/uiconfig/ui/slantcornertabpage.ui:399
msgctxt "slantcornertabpage|label8"
msgid "Control Point 2"
msgstr "Нүкте 2"
@@ -10907,112 +10907,112 @@ msgctxt "storedwebconnectiondialog|change"
msgid "_Change Password..."
msgstr "Парольді ө_згерту..."
-#: cui/uiconfig/ui/swpossizepage.ui:74
+#: cui/uiconfig/ui/swpossizepage.ui:85
msgctxt "swpossizepage|widthft"
msgid "_Width:"
msgstr "_Ені:"
-#: cui/uiconfig/ui/swpossizepage.ui:111
+#: cui/uiconfig/ui/swpossizepage.ui:123
msgctxt "swpossizepage|heightft"
msgid "H_eight:"
msgstr "Б_иіктігі:"
-#: cui/uiconfig/ui/swpossizepage.ui:128
+#: cui/uiconfig/ui/swpossizepage.ui:141
msgctxt "swpossizepage|ratio"
msgid "_Keep ratio"
msgstr "Пропор_ционалды"
-#: cui/uiconfig/ui/swpossizepage.ui:149
+#: cui/uiconfig/ui/swpossizepage.ui:162
msgctxt "swpossizepage|label2"
msgid "Size"
msgstr "Өлшемі"
-#: cui/uiconfig/ui/swpossizepage.ui:205
+#: cui/uiconfig/ui/swpossizepage.ui:218
msgctxt "swpossizepage|topage"
msgid "To _page"
msgstr "_Бетке"
-#: cui/uiconfig/ui/swpossizepage.ui:222
+#: cui/uiconfig/ui/swpossizepage.ui:234
msgctxt "swpossizepage|topara"
msgid "To paragrap_h"
msgstr "Аб_зацқа"
-#: cui/uiconfig/ui/swpossizepage.ui:238
+#: cui/uiconfig/ui/swpossizepage.ui:250
msgctxt "swpossizepage|tochar"
msgid "To cha_racter"
msgstr "Таңб_аға"
-#: cui/uiconfig/ui/swpossizepage.ui:254
+#: cui/uiconfig/ui/swpossizepage.ui:266
msgctxt "swpossizepage|aschar"
msgid "_As character"
msgstr "_Таңба ретінде"
-#: cui/uiconfig/ui/swpossizepage.ui:270
+#: cui/uiconfig/ui/swpossizepage.ui:282
msgctxt "swpossizepage|toframe"
msgid "To _frame"
msgstr "_Фреймге"
-#: cui/uiconfig/ui/swpossizepage.ui:292
+#: cui/uiconfig/ui/swpossizepage.ui:304
msgctxt "swpossizepage|label1"
msgid "Anchor"
msgstr "Байланыс"
-#: cui/uiconfig/ui/swpossizepage.ui:333
+#: cui/uiconfig/ui/swpossizepage.ui:344
msgctxt "swpossizepage|horiposft"
msgid "Hori_zontal:"
msgstr "Гори_зонталды:"
-#: cui/uiconfig/ui/swpossizepage.ui:347
+#: cui/uiconfig/ui/swpossizepage.ui:358
msgctxt "swpossizepage|horibyft"
msgid "b_y:"
msgstr "қада_мы:"
-#: cui/uiconfig/ui/swpossizepage.ui:361
+#: cui/uiconfig/ui/swpossizepage.ui:372
msgctxt "swpossizepage|vertbyft"
msgid "_by:"
msgstr "қа_дамы:"
-#: cui/uiconfig/ui/swpossizepage.ui:375
+#: cui/uiconfig/ui/swpossizepage.ui:386
msgctxt "swpossizepage|horitoft"
msgid "_to:"
msgstr "қа_йда:"
-#: cui/uiconfig/ui/swpossizepage.ui:421
+#: cui/uiconfig/ui/swpossizepage.ui:433
msgctxt "swpossizepage|vertposft"
msgid "_Vertical:"
msgstr "_Вертикалды:"
-#: cui/uiconfig/ui/swpossizepage.ui:457
+#: cui/uiconfig/ui/swpossizepage.ui:470
msgctxt "swpossizepage|verttoft"
msgid "t_o:"
msgstr "қ_айда:"
-#: cui/uiconfig/ui/swpossizepage.ui:478
+#: cui/uiconfig/ui/swpossizepage.ui:492
msgctxt "swpossizepage|mirror"
msgid "_Mirror on even pages"
msgstr "_Жұп парақтарда көрсету"
-#: cui/uiconfig/ui/swpossizepage.ui:495
+#: cui/uiconfig/ui/swpossizepage.ui:509
msgctxt "swpossizepage|followtextflow"
msgid "Follow te_xt flow"
msgstr "Мә_тін бойымен"
-#: cui/uiconfig/ui/swpossizepage.ui:518
+#: cui/uiconfig/ui/swpossizepage.ui:532
msgctxt "swpossizepage|label11"
msgid "Position"
msgstr "Орналасу"
-#: cui/uiconfig/ui/swpossizepage.ui:549
+#: cui/uiconfig/ui/swpossizepage.ui:563
msgctxt "swpossizepage|pos"
msgid "Positio_n"
msgstr "Орнал_асуы"
-#: cui/uiconfig/ui/swpossizepage.ui:565
+#: cui/uiconfig/ui/swpossizepage.ui:579
msgctxt "swpossizepage|size"
msgid "_Size"
msgstr "Ө_лшемі"
-#: cui/uiconfig/ui/swpossizepage.ui:587
+#: cui/uiconfig/ui/swpossizepage.ui:601
msgctxt "swpossizepage|label3"
msgid "Protect"
msgstr "Қорғау"
@@ -11202,12 +11202,12 @@ msgctxt "textattrtabpage|label2"
msgid "Spacing to Borders"
msgstr "Шектерге дейінгі аралық"
-#: cui/uiconfig/ui/textattrtabpage.ui:425
+#: cui/uiconfig/ui/textattrtabpage.ui:423
msgctxt "textattrtabpage|TSB_FULL_WIDTH"
msgid "Full _width"
msgstr "Толық е_ні"
-#: cui/uiconfig/ui/textattrtabpage.ui:448
+#: cui/uiconfig/ui/textattrtabpage.ui:446
msgctxt "textattrtabpage|label3"
msgid "Text Anchor"
msgstr "Мәтін байланысы"
diff --git a/source/kk/filter/source/config/fragments/filters.po b/source/kk/filter/source/config/fragments/filters.po
index 2911f5d19d3..6c42e3e635a 100644
--- a/source/kk/filter/source/config/fragments/filters.po
+++ b/source/kk/filter/source/config/fragments/filters.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: 2018-05-16 16:54+0200\n"
-"PO-Revision-Date: 2018-05-12 12:38+0000\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
+"PO-Revision-Date: 2018-06-06 14:20+0000\n"
"Last-Translator: Baurzhan Muftakhidinov <baurthefirst@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: kk\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1526128728.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1528294851.000000\n"
#: ADO_rowset_XML.xcu
msgctxt ""
@@ -392,7 +392,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Excel 97–2003"
-msgstr ""
+msgstr "Excel 97–2003"
#: MS_Excel_97_Vorlage_Template.xcu
msgctxt ""
@@ -401,7 +401,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Excel 97–2003 Template"
-msgstr ""
+msgstr "Excel 97–2003 үлгісі"
#: MS_Multiplan.xcu
msgctxt ""
@@ -419,7 +419,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "PowerPoint 97–2003"
-msgstr ""
+msgstr "PowerPoint 97–2003"
#: MS_PowerPoint_97_AutoPlay.xcu
msgctxt ""
@@ -428,7 +428,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "PowerPoint 97–2003 AutoPlay"
-msgstr ""
+msgstr "PowerPoint 97–2003 автокөрсетілімі"
#: MS_PowerPoint_97_Vorlage.xcu
msgctxt ""
@@ -437,7 +437,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "PowerPoint 97–2003 Template"
-msgstr ""
+msgstr "PowerPoint 97–2003 үлгісі"
#: MS_WinWord_5.xcu
msgctxt ""
@@ -463,8 +463,8 @@ msgctxt ""
"MS Word 2003 XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Word 2003 XML"
-msgstr "Microsoft Word 2003 XML"
+msgid "Word 2003 XML"
+msgstr "Word 2003 XML"
#: MS_Word_2007_XML.xcu
msgctxt ""
@@ -518,7 +518,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Word 97–2003"
-msgstr ""
+msgstr "Word 97–2003"
#: MS_Word_97_Vorlage.xcu
msgctxt ""
@@ -527,7 +527,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "Word 97–2003 Template"
-msgstr ""
+msgstr "Word 97–2003 үлгісі"
#: MS_Works.xcu
msgctxt ""
@@ -1282,8 +1282,8 @@ msgctxt ""
"Calc MS Excel 2007 VBA XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Excel 2007-2016 XML (macro enabled)"
-msgstr "Microsoft Excel 2007-2016 XML (макростармен)"
+msgid "Excel 2007–2019 (macro-enabled)"
+msgstr "Excel 2007–2019 (макростар іске қосылған)"
#: calc_MS_Excel_2007_XML.xcu
msgctxt ""
@@ -1580,7 +1580,7 @@ msgctxt ""
"UIName\n"
"value.text"
msgid "PowerPoint 2007–2019 AutoPlay"
-msgstr ""
+msgstr "PowerPoint 2007–2019 автокөрсетілімі"
#: impress_MS_PowerPoint_2007_XML_Template.xcu
msgctxt ""
diff --git a/source/kk/filter/source/config/fragments/types.po b/source/kk/filter/source/config/fragments/types.po
index a329d274c1d..14a500b4ff0 100644
--- a/source/kk/filter/source/config/fragments/types.po
+++ b/source/kk/filter/source/config/fragments/types.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: 2018-05-08 15:11+0200\n"
-"PO-Revision-Date: 2018-05-12 12:39+0000\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
+"PO-Revision-Date: 2018-06-06 14:20+0000\n"
"Last-Translator: Baurzhan Muftakhidinov <baurthefirst@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: kk\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1526128757.000000\n"
+"X-POOTLE-MTIME: 1528294854.000000\n"
#: MS_Excel_2007_Binary.xcu
msgctxt ""
@@ -292,8 +292,8 @@ msgctxt ""
"writer_MS_Word_2003_XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Word 2003 XML"
-msgstr "Microsoft Word 2003 XML"
+msgid "Word 2003 XML"
+msgstr "Word 2003 XML"
#: writer_MS_Word_2007_XML.xcu
msgctxt ""
diff --git a/source/kk/fpicker/messages.po b/source/kk/fpicker/messages.po
index 2cd5ceb9135..54a537d3ffa 100644
--- a/source/kk/fpicker/messages.po
+++ b/source/kk/fpicker/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-22 13:16+0200\n"
-"PO-Revision-Date: 2018-03-03 14:49+0000\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
+"PO-Revision-Date: 2018-06-06 14:18+0000\n"
"Last-Translator: Baurzhan Muftakhidinov <baurthefirst@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: kk\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1520088583.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1528294730.000000\n"
#: include/fpicker/strings.hrc:14
msgctxt "STR_SVT_FILEPICKER_AUTO_EXTENSION"
@@ -272,13 +272,13 @@ msgstr "GPG кілтімен шифрлеу"
#: fpicker/uiconfig/ui/foldernamedialog.ui:8
msgctxt "foldernamedialog|FolderNameDialog"
-msgid "Folder Name ?"
-msgstr "Бума аты ?"
+msgid "Folder Name"
+msgstr "Бума аты"
#: fpicker/uiconfig/ui/foldernamedialog.ui:91
msgctxt "foldernamedialog|label2"
-msgid "Na_me"
-msgstr "Авто_мәтін"
+msgid "Na_me:"
+msgstr "_Аты:"
#: fpicker/uiconfig/ui/foldernamedialog.ui:122
msgctxt "foldernamedialog|label1"
diff --git a/source/kk/officecfg/registry/data/org/openoffice/Office/UI.po b/source/kk/officecfg/registry/data/org/openoffice/Office/UI.po
index 37608f603ce..a7fbce680c0 100644
--- a/source/kk/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/kk/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-22 13:17+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2018-05-06 07:49+0000\n"
"Last-Translator: Baurzhan Muftakhidinov <baurthefirst@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -26520,8 +26520,8 @@ msgctxt ""
"..WriterCommands.UserInterface.Commands..uno:TextAttributes\n"
"Label\n"
"value.text"
-msgid "Text Attributes"
-msgstr "Мәтіндік атрибуттар"
+msgid "Text Attributes..."
+msgstr ""
#: WriterCommands.xcu
msgctxt ""
diff --git a/source/kk/readlicense_oo/docs.po b/source/kk/readlicense_oo/docs.po
index 8d21f0be74d..256de27f918 100644
--- a/source/kk/readlicense_oo/docs.po
+++ b/source/kk/readlicense_oo/docs.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: 2018-04-17 15:54+0200\n"
-"PO-Revision-Date: 2018-04-29 04:15+0000\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
+"PO-Revision-Date: 2018-06-06 14:19+0000\n"
"Last-Translator: Baurzhan Muftakhidinov <baurthefirst@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: kk\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1524975333.000000\n"
+"X-POOTLE-MTIME: 1528294743.000000\n"
#: readme.xrm
msgctxt ""
@@ -117,8 +117,8 @@ msgctxt ""
"readme.xrm\n"
"macxiOSX\n"
"readmeitem.text"
-msgid "MacOSX 10.8 (Mountain Lion) or higher"
-msgstr "MacOSX 10.8 (Mountain Lion) не жаңалау"
+msgid "MacOSX 10.9 (Mavericks) or higher"
+msgstr "MacOSX 10.9 (Mavericks) немесе одан жоғары"
#: readme.xrm
msgctxt ""
diff --git a/source/kk/sc/messages.po b/source/kk/sc/messages.po
index 55b2ab76403..cee555c7a79 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-12 14:40+0200\n"
"PO-Revision-Date: 2018-04-30 05:10+0000\n"
"Last-Translator: Baurzhan Muftakhidinov <baurthefirst@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1870,16 +1870,21 @@ msgid "Nested arrays are not supported."
msgstr "Құрамдас массивтерге қолдау жоқ."
#: sc/inc/globstr.hrc:390
+msgctxt "STR_ERR_LONG_BAD_ARRAY_CONTENT"
+msgid "Unsupported inline array content."
+msgstr ""
+
+#: sc/inc/globstr.hrc:391
msgctxt "STR_UNDO_TEXTTOCOLUMNS"
msgid "Text to Columns"
msgstr "Мәтінді бағандарға"
-#: sc/inc/globstr.hrc:391
+#: sc/inc/globstr.hrc:392
msgctxt "STR_DOC_UPDATED"
msgid "Your spreadsheet has been updated with changes saved by other users."
msgstr "Электрондық кесте басқа пайдаланушылар сақтаған өзгерістерін ескеріп, жаңартылды."
-#: sc/inc/globstr.hrc:392
+#: sc/inc/globstr.hrc:393
msgctxt "STR_DOC_WILLBESAVED"
msgid ""
"The spreadsheet must be saved now to activate sharing mode.\n"
@@ -1890,7 +1895,7 @@ msgstr ""
"\n"
"Жалғастыру керек пе?"
-#: sc/inc/globstr.hrc:393
+#: sc/inc/globstr.hrc:394
msgctxt "STR_DOC_WILLNOTBESAVED"
msgid ""
"Already resolved merge conflicts will be lost and your changes to the shared spreadsheet will not be saved.\n"
@@ -1901,7 +1906,7 @@ msgstr ""
"\n"
"Жалғастыру керек пе?"
-#: sc/inc/globstr.hrc:394
+#: sc/inc/globstr.hrc:395
msgctxt "STR_DOC_DISABLESHARED"
msgid ""
"Disabling shared mode of a spreadsheet hinders all other users of the shared spreadsheet to merge back their work.\n"
@@ -1912,7 +1917,7 @@ msgstr ""
"\n"
"Жалғастыру керек пе?"
-#: sc/inc/globstr.hrc:395
+#: sc/inc/globstr.hrc:396
msgctxt "STR_DOC_NOLONGERSHARED"
msgid ""
"This spreadsheet is no longer in shared mode.\n"
@@ -1923,7 +1928,7 @@ msgstr ""
"\n"
"Электрондық кестені бөлек файлда сақтаңыз және өзгерістеріңізді ортақ қолданылатын электрондық кестесіне қолмен енгізіңіз."
-#: sc/inc/globstr.hrc:396
+#: sc/inc/globstr.hrc:397
msgctxt "STR_FILE_LOCKED_TRY_LATER"
msgid ""
"The shared spreadsheet file is locked due to a merge in progress by user: '%1'\n"
@@ -1934,7 +1939,7 @@ msgstr ""
"\n"
"Блокталған файлдың ортақ қолдану режимін сөндіруге болмайды. Кейінірек қайталап көріңіз."
-#: sc/inc/globstr.hrc:397
+#: sc/inc/globstr.hrc:398
msgctxt "STR_FILE_LOCKED_SAVE_LATER"
msgid ""
"The shared spreadsheet file is locked due to a merge in progress by user: '%1'\n"
@@ -1945,147 +1950,147 @@ msgstr ""
"\n"
"Өзгерістерді сақтауды кейінірек қайталап көріңіз."
-#: sc/inc/globstr.hrc:398
+#: sc/inc/globstr.hrc:399
msgctxt "STR_UNKNOWN_USER"
msgid "Unknown User"
msgstr "Белгісіз пайдаланушы"
-#: sc/inc/globstr.hrc:399
+#: sc/inc/globstr.hrc:400
msgctxt "STR_SHAPE_AUTOSHAPE"
msgid "AutoShape"
msgstr "Автофигура"
-#: sc/inc/globstr.hrc:400
+#: sc/inc/globstr.hrc:401
msgctxt "STR_SHAPE_RECTANGLE"
msgid "Rectangle"
msgstr "Тіктөртбұрыш"
-#: sc/inc/globstr.hrc:401
+#: sc/inc/globstr.hrc:402
msgctxt "STR_SHAPE_LINE"
msgid "Line"
msgstr "Жол"
-#: sc/inc/globstr.hrc:402
+#: sc/inc/globstr.hrc:403
msgctxt "STR_SHAPE_OVAL"
msgid "Oval"
msgstr "Сопақша"
-#: sc/inc/globstr.hrc:403
+#: sc/inc/globstr.hrc:404
msgctxt "STR_FORM_BUTTON"
msgid "Button"
msgstr "Батырма"
-#: sc/inc/globstr.hrc:404
+#: sc/inc/globstr.hrc:405
msgctxt "STR_FORM_CHECKBOX"
msgid "Check Box"
msgstr "Жалауша"
-#: sc/inc/globstr.hrc:405
+#: sc/inc/globstr.hrc:406
msgctxt "STR_FORM_OPTIONBUTTON"
msgid "Option Button"
msgstr "Ауыстырғыш"
-#: sc/inc/globstr.hrc:406
+#: sc/inc/globstr.hrc:407
msgctxt "STR_FORM_LABEL"
msgid "Label"
msgstr "Жазу"
-#: sc/inc/globstr.hrc:407
+#: sc/inc/globstr.hrc:408
msgctxt "STR_FORM_LISTBOX"
msgid "List Box"
msgstr "Тізім"
-#: sc/inc/globstr.hrc:408
+#: sc/inc/globstr.hrc:409
msgctxt "STR_FORM_GROUPBOX"
msgid "Group Box"
msgstr "Топтық блок"
-#: sc/inc/globstr.hrc:409
+#: sc/inc/globstr.hrc:410
msgctxt "STR_FORM_DROPDOWN"
msgid "Drop Down"
msgstr "Ашу"
-#: sc/inc/globstr.hrc:410
+#: sc/inc/globstr.hrc:411
msgctxt "STR_FORM_SPINNER"
msgid "Spinner"
msgstr "Санағыш"
-#: sc/inc/globstr.hrc:411
+#: sc/inc/globstr.hrc:412
msgctxt "STR_FORM_SCROLLBAR"
msgid "Scroll Bar"
msgstr "Айналдыру жолағы"
-#: sc/inc/globstr.hrc:412
+#: sc/inc/globstr.hrc:413
msgctxt "STR_STYLE_FAMILY_CELL"
msgid "Cell Styles"
msgstr "Ұяшық стильдері"
-#: sc/inc/globstr.hrc:413
+#: sc/inc/globstr.hrc:414
msgctxt "STR_STYLE_FAMILY_PAGE"
msgid "Page Styles"
msgstr "Бет стильдері"
-#: sc/inc/globstr.hrc:414
+#: sc/inc/globstr.hrc:415
msgctxt "STR_ERR_DATAPILOTSOURCE"
msgid "Pivot table source data is invalid."
msgstr "Құрама кестесі үшін бастапқы ақпарат қате."
-#: sc/inc/globstr.hrc:415
+#: sc/inc/globstr.hrc:416
msgctxt "STR_OPTIONS_WARN_SEPARATORS"
msgid "Because the current formula separator settings conflict with the locale, the formula separators have been reset to their default values."
msgstr "Формулалардың ағымдағы ажыратқышы локальмен ерегісетін салдарынан, формулалардың барлық ажыратқыштары бастапқы мәндеріне қайтарылды."
-#: sc/inc/globstr.hrc:416
+#: sc/inc/globstr.hrc:417
msgctxt "STR_UNDO_INSERT_CURRENT_DATE"
msgid "Insert Current Date"
msgstr "Ағымдағы күнді кірістіру"
-#: sc/inc/globstr.hrc:417
+#: sc/inc/globstr.hrc:418
msgctxt "STR_UNDO_INSERT_CURRENT_TIME"
msgid "Insert Current Time"
msgstr "Ағымдағы уақытты кірістіру"
-#: sc/inc/globstr.hrc:418
+#: sc/inc/globstr.hrc:419
msgctxt "STR_MANAGE_NAMES"
msgid "Manage Names..."
msgstr "Атауларды басқару..."
-#: sc/inc/globstr.hrc:419
+#: sc/inc/globstr.hrc:420
msgctxt "STR_HEADER_NAME"
msgid "Name"
msgstr "Аты"
-#: sc/inc/globstr.hrc:420
+#: sc/inc/globstr.hrc:421
msgctxt "STR_HEADER_RANGE_OR_EXPR"
msgid "Range or formula expression"
msgstr "Ауқым немесе формула өрнегі"
-#: sc/inc/globstr.hrc:421
+#: sc/inc/globstr.hrc:422
msgctxt "STR_HEADER_SCOPE"
msgid "Scope"
msgstr "Көріну аймағы"
-#: sc/inc/globstr.hrc:422
+#: sc/inc/globstr.hrc:423
msgctxt "STR_MULTI_SELECT"
msgid "(multiple)"
msgstr "(бірнеше)"
-#: sc/inc/globstr.hrc:423
+#: sc/inc/globstr.hrc:424
msgctxt "STR_GLOBAL_SCOPE"
msgid "Document (Global)"
msgstr "Құжат (глобалды)"
-#: sc/inc/globstr.hrc:424
+#: sc/inc/globstr.hrc:425
msgctxt "STR_ERR_NAME_EXISTS"
msgid "Invalid name. Already in use for the selected scope."
msgstr "Атауы қате. Таңдалған көріну аймағында қолдануда болып тұр."
-#: sc/inc/globstr.hrc:425
+#: sc/inc/globstr.hrc:426
msgctxt "STR_ERR_NAME_INVALID"
msgid "Invalid name. Only use letters, numbers and underscore."
msgstr "Атауы қате. Тек әріптер, сандар және астыңғы сызуды қолданыңыз, ұяшықтар адрестерін қолданбаңыз."
-#: sc/inc/globstr.hrc:426
+#: sc/inc/globstr.hrc:427
msgctxt "STR_UNSAVED_EXT_REF"
msgid ""
"This Document contains external references to unsaved documents.\n"
@@ -2096,217 +2101,217 @@ msgstr ""
"\n"
"Жалғастыру керек пе?"
-#: sc/inc/globstr.hrc:427
+#: sc/inc/globstr.hrc:428
msgctxt "STR_CLOSE_WITH_UNSAVED_REFS"
msgid "This Document is referenced by another document and not yet saved. Closing it without saving will result in data loss."
msgstr "Бұл құжат әлі сақталмаған, ал оған басқа құжаттарда сілтемелер бар. Сақтамай-ақ жабу деректер жоғалуына әкеп соғады."
-#: sc/inc/globstr.hrc:428
+#: sc/inc/globstr.hrc:429
msgctxt "STR_HEADER_RANGE"
msgid "Range"
msgstr "Ауқым"
-#: sc/inc/globstr.hrc:429
+#: sc/inc/globstr.hrc:430
msgctxt "STR_HEADER_COND"
msgid "First Condition"
msgstr "Бірінші шарты"
-#: sc/inc/globstr.hrc:430
+#: sc/inc/globstr.hrc:431
msgctxt "STR_COND_CONDITION"
msgid "Cell value is"
msgstr "Ұяшық мәні"
-#: sc/inc/globstr.hrc:431
+#: sc/inc/globstr.hrc:432
msgctxt "STR_COND_COLORSCALE"
msgid "ColorScale"
msgstr "ТүстерШкаласы"
-#: sc/inc/globstr.hrc:432
+#: sc/inc/globstr.hrc:433
msgctxt "STR_COND_DATABAR"
msgid "DataBar"
msgstr "Гистограмма"
-#: sc/inc/globstr.hrc:433
+#: sc/inc/globstr.hrc:434
msgctxt "STR_COND_ICONSET"
msgid "IconSet"
msgstr "Таңбашалар жинағы"
-#: sc/inc/globstr.hrc:434
+#: sc/inc/globstr.hrc:435
msgctxt "STR_COND_BETWEEN"
msgid "between"
msgstr "арасында"
-#: sc/inc/globstr.hrc:435
+#: sc/inc/globstr.hrc:436
msgctxt "STR_COND_NOTBETWEEN"
msgid "not between"
msgstr "арасында емес"
-#: sc/inc/globstr.hrc:436
+#: sc/inc/globstr.hrc:437
msgctxt "STR_COND_UNIQUE"
msgid "unique"
msgstr "бірегей"
-#: sc/inc/globstr.hrc:437
+#: sc/inc/globstr.hrc:438
msgctxt "STR_COND_DUPLICATE"
msgid "duplicate"
msgstr "көшірме"
-#: sc/inc/globstr.hrc:438
+#: sc/inc/globstr.hrc:439
msgctxt "STR_COND_FORMULA"
msgid "Formula is"
msgstr "Формула"
-#: sc/inc/globstr.hrc:439
+#: sc/inc/globstr.hrc:440
msgctxt "STR_COND_TOP10"
msgid "Top Elements"
msgstr "Бірінші элементтер"
-#: sc/inc/globstr.hrc:440
+#: sc/inc/globstr.hrc:441
msgctxt "STR_COND_BOTTOM10"
msgid "Bottom Elements"
msgstr "Соңғы элементтер"
-#: sc/inc/globstr.hrc:441
+#: sc/inc/globstr.hrc:442
msgctxt "STR_COND_TOP_PERCENT"
msgid "Top Percent"
msgstr "Біріншілер пайызы"
-#: sc/inc/globstr.hrc:442
+#: sc/inc/globstr.hrc:443
msgctxt "STR_COND_DATE"
msgid "Date is"
msgstr "Күн"
-#: sc/inc/globstr.hrc:443
+#: sc/inc/globstr.hrc:444
msgctxt "STR_COND_BOTTOM_PERCENT"
msgid "Bottom Percent"
msgstr "Соңғылар пайызы"
-#: sc/inc/globstr.hrc:444
+#: sc/inc/globstr.hrc:445
msgctxt "STR_COND_ABOVE_AVERAGE"
msgid "Above Average"
msgstr "Орта мәнінен үлкен"
-#: sc/inc/globstr.hrc:445
+#: sc/inc/globstr.hrc:446
msgctxt "STR_COND_BELOW_AVERAGE"
msgid "Below Average"
msgstr "Орта мәнінен кіші"
-#: sc/inc/globstr.hrc:446
+#: sc/inc/globstr.hrc:447
msgctxt "STR_COND_ABOVE_EQUAL_AVERAGE"
msgid "Above or equal Average"
msgstr "Орта мәнінен үлкен немесе оған тең"
-#: sc/inc/globstr.hrc:447
+#: sc/inc/globstr.hrc:448
msgctxt "STR_COND_BELOW_EQUAL_AVERAGE"
msgid "Below or equal Average"
msgstr "Орта мәнінен кіші немесе оған тең"
-#: sc/inc/globstr.hrc:448
+#: sc/inc/globstr.hrc:449
msgctxt "STR_COND_ERROR"
msgid "an Error code"
msgstr "Қате коды"
-#: sc/inc/globstr.hrc:449
+#: sc/inc/globstr.hrc:450
msgctxt "STR_COND_NOERROR"
msgid "not an Error code"
msgstr "Қате коды емес"
-#: sc/inc/globstr.hrc:450
+#: sc/inc/globstr.hrc:451
msgctxt "STR_COND_BEGINS_WITH"
msgid "Begins with"
msgstr "Келесіден басталады:"
-#: sc/inc/globstr.hrc:451
+#: sc/inc/globstr.hrc:452
msgctxt "STR_COND_ENDS_WITH"
msgid "Ends with"
msgstr "Келесімен аяқталады"
-#: sc/inc/globstr.hrc:452
+#: sc/inc/globstr.hrc:453
msgctxt "STR_COND_CONTAINS"
msgid "Contains"
msgstr "Құрамында бар"
-#: sc/inc/globstr.hrc:453
+#: sc/inc/globstr.hrc:454
msgctxt "STR_COND_NOT_CONTAINS"
msgid "Not Contains"
msgstr "Құрамында жоқ"
-#: sc/inc/globstr.hrc:454
+#: sc/inc/globstr.hrc:455
msgctxt "STR_COND_TODAY"
msgid "today"
msgstr "бүгін"
-#: sc/inc/globstr.hrc:455
+#: sc/inc/globstr.hrc:456
msgctxt "STR_COND_YESTERDAY"
msgid "yesterday"
msgstr "кеше"
-#: sc/inc/globstr.hrc:456
+#: sc/inc/globstr.hrc:457
msgctxt "STR_COND_TOMORROW"
msgid "tomorrow"
msgstr "ертең"
-#: sc/inc/globstr.hrc:457
+#: sc/inc/globstr.hrc:458
msgctxt "STR_COND_LAST7DAYS"
msgid "in the last 7 days"
msgstr "соңғы 7 күн"
-#: sc/inc/globstr.hrc:458
+#: sc/inc/globstr.hrc:459
msgctxt "STR_COND_THISWEEK"
msgid "this week"
msgstr "осы аптада"
-#: sc/inc/globstr.hrc:459
+#: sc/inc/globstr.hrc:460
msgctxt "STR_COND_LASTWEEK"
msgid "last week"
msgstr "өткен аптада"
-#: sc/inc/globstr.hrc:460
+#: sc/inc/globstr.hrc:461
msgctxt "STR_COND_NEXTWEEK"
msgid "next week"
msgstr "келесі аптада"
-#: sc/inc/globstr.hrc:461
+#: sc/inc/globstr.hrc:462
msgctxt "STR_COND_THISMONTH"
msgid "this month"
msgstr "осы айда"
-#: sc/inc/globstr.hrc:462
+#: sc/inc/globstr.hrc:463
msgctxt "STR_COND_LASTMONTH"
msgid "last month"
msgstr "өткен айда"
-#: sc/inc/globstr.hrc:463
+#: sc/inc/globstr.hrc:464
msgctxt "STR_COND_NEXTMONTH"
msgid "next month"
msgstr "келесі айда"
-#: sc/inc/globstr.hrc:464
+#: sc/inc/globstr.hrc:465
msgctxt "STR_COND_THISYEAR"
msgid "this year"
msgstr "биыл"
-#: sc/inc/globstr.hrc:465
+#: sc/inc/globstr.hrc:466
msgctxt "STR_COND_LASTYEAR"
msgid "last year"
msgstr "былтыр"
-#: sc/inc/globstr.hrc:466
+#: sc/inc/globstr.hrc:467
msgctxt "STR_COND_NEXTYEAR"
msgid "next year"
msgstr "келесі жылы"
-#: sc/inc/globstr.hrc:467
+#: sc/inc/globstr.hrc:468
msgctxt "STR_COND_AND"
msgid "and"
msgstr "және"
-#: sc/inc/globstr.hrc:468
+#: sc/inc/globstr.hrc:469
msgctxt "STR_ERR_CONDFORMAT_PROTECTED"
msgid "Conditional Formats can not be created, deleted or changed in protected sheets."
msgstr "Қорғалған парақтарда шартты пішімдеуді іске асыру, өшіру немесе өзгерту мүмкін емес."
-#: sc/inc/globstr.hrc:469
+#: sc/inc/globstr.hrc:470
msgctxt "STR_EDIT_EXISTING_COND_FORMATS"
msgid ""
"The selected cell already contains conditional formatting. You can either edit the existing conditional format or you define a new overlapping conditional format.\n"
@@ -2317,7 +2322,7 @@ msgstr ""
"\n"
"Бар болып тұрған шартты пішімдеуді өзгерту керек пе?"
-#: sc/inc/globstr.hrc:470
+#: sc/inc/globstr.hrc:471
msgctxt "STR_QUERY_FORMULA_RECALC_ONLOAD_ODS"
msgid ""
"This document was last saved by an application other than %PRODUCTNAME. Some formula cells may produce different results when recalculated.\n"
@@ -2328,7 +2333,7 @@ msgstr ""
"\n"
"Құжаттағы формулаларды қайта есептеуді қазір қалайсыз ба?"
-#: sc/inc/globstr.hrc:471
+#: sc/inc/globstr.hrc:472
msgctxt "STR_QUERY_FORMULA_RECALC_ONLOAD_XLS"
msgid ""
"This document was last saved by Excel. Some formula cells may produce different results when recalculated.\n"
@@ -2339,77 +2344,77 @@ msgstr ""
"\n"
"Құжаттағы формулаларды қайта есептеуді қазір қалайсыз ба?"
-#: sc/inc/globstr.hrc:472
+#: sc/inc/globstr.hrc:473
msgctxt "STR_NO_INSERT_DELETE_OVER_PIVOT_TABLE"
msgid "You cannot insert or delete cells when the affected range intersects with pivot table."
msgstr "Құрамдас кестесімен қиылысатын ауқымдарда ұяшықтарды кірістіру не өшіру мүмкін емес."
-#: sc/inc/globstr.hrc:473
+#: sc/inc/globstr.hrc:474
msgctxt "STR_DPFIELD_GROUP_BY_SECONDS"
msgid "Seconds"
msgstr "Секундтар"
-#: sc/inc/globstr.hrc:474
+#: sc/inc/globstr.hrc:475
msgctxt "STR_DPFIELD_GROUP_BY_MINUTES"
msgid "Minutes"
msgstr "Минут"
-#: sc/inc/globstr.hrc:475
+#: sc/inc/globstr.hrc:476
msgctxt "STR_DPFIELD_GROUP_BY_HOURS"
msgid "Hours"
msgstr "Сағаттар"
-#: sc/inc/globstr.hrc:476
+#: sc/inc/globstr.hrc:477
msgctxt "STR_DPFIELD_GROUP_BY_DAYS"
msgid "Days"
msgstr "Күндер"
-#: sc/inc/globstr.hrc:477
+#: sc/inc/globstr.hrc:478
msgctxt "STR_DPFIELD_GROUP_BY_MONTHS"
msgid "Months"
msgstr "Айлар"
-#: sc/inc/globstr.hrc:478
+#: sc/inc/globstr.hrc:479
msgctxt "STR_DPFIELD_GROUP_BY_QUARTERS"
msgid "Quarters"
msgstr "Тоқсандар"
-#: sc/inc/globstr.hrc:479
+#: sc/inc/globstr.hrc:480
msgctxt "STR_DPFIELD_GROUP_BY_YEARS"
msgid "Years"
msgstr "Жыл"
-#: sc/inc/globstr.hrc:480
+#: sc/inc/globstr.hrc:481
msgctxt "STR_INVALIDVAL"
msgid "Invalid target value."
msgstr "Мақсат мәні жарамсыз."
-#: sc/inc/globstr.hrc:481
+#: sc/inc/globstr.hrc:482
msgctxt "STR_INVALIDVAR"
msgid "Undefined name for variable cell."
msgstr "Айнымалы ұяшығының аты анықталмаған."
-#: sc/inc/globstr.hrc:482
+#: sc/inc/globstr.hrc:483
msgctxt "STR_INVALIDFORM"
msgid "Undefined name as formula cell."
msgstr "Формула ұяшығы үшін анықталмаған аты."
-#: sc/inc/globstr.hrc:483
+#: sc/inc/globstr.hrc:484
msgctxt "STR_NOFORMULA"
msgid "Formula cell must contain a formula."
msgstr "Формула ұяшығында формула болуы тиіс."
-#: sc/inc/globstr.hrc:484
+#: sc/inc/globstr.hrc:485
msgctxt "STR_INVALIDINPUT"
msgid "Invalid input."
msgstr "Кіріс деректері жарамсыз."
-#: sc/inc/globstr.hrc:485
+#: sc/inc/globstr.hrc:486
msgctxt "STR_INVALIDCONDITION"
msgid "Invalid condition."
msgstr "Дұрыс емес шарт."
-#: sc/inc/globstr.hrc:486
+#: sc/inc/globstr.hrc:487
msgctxt "STR_QUERYREMOVE"
msgid ""
"Should the entry\n"
@@ -2420,133 +2425,133 @@ msgstr ""
"#\n"
"керек пе?"
-#: sc/inc/globstr.hrc:487
+#: sc/inc/globstr.hrc:488
msgctxt "STR_COPYLIST"
msgid "Copy List"
msgstr "Тізімді көшіру"
-#: sc/inc/globstr.hrc:488
+#: sc/inc/globstr.hrc:489
msgctxt "STR_COPYFROM"
msgid "List from"
msgstr "-ден тізім"
-#: sc/inc/globstr.hrc:489
+#: sc/inc/globstr.hrc:490
msgctxt "STR_COPYERR"
msgid "Cells without text have been ignored."
msgstr "Мәтінсіз ұяшықтар қалдырылған. "
-#: sc/inc/globstr.hrc:490
+#: sc/inc/globstr.hrc:491
#, c-format
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%s-click to follow hyperlink:"
msgstr "%s-шерту сілтемеден өту үшін:"
-#: sc/inc/globstr.hrc:491
+#: sc/inc/globstr.hrc:492
msgctxt "STR_CLICKHYPERLINK"
msgid "click to open hyperlink:"
msgstr "сілтемені ашу үшін шертіңіз:"
-#: sc/inc/globstr.hrc:492
+#: sc/inc/globstr.hrc:493
msgctxt "STR_PRINT_PREVIEW_NODATA"
msgid "No Data"
msgstr "Деректер жоқ"
-#: sc/inc/globstr.hrc:493
+#: sc/inc/globstr.hrc:494
msgctxt "STR_PRINT_PREVIEW_EMPTY_RANGE"
msgid "Print Range Empty"
msgstr "Баспаға шығару ауқымы бос"
-#: sc/inc/globstr.hrc:494
+#: sc/inc/globstr.hrc:495
msgctxt "STR_UNDO_CONDFORMAT"
msgid "Conditional Format"
msgstr "Шартты пішімі"
-#: sc/inc/globstr.hrc:495
+#: sc/inc/globstr.hrc:496
msgctxt "STR_UNDO_CONDFORMAT_LIST"
msgid "Conditional Formats"
msgstr "Шартты пiшiмдер"
-#: sc/inc/globstr.hrc:496
+#: sc/inc/globstr.hrc:497
msgctxt "STR_UNDO_FORMULA_TO_VALUE"
msgid "Convert Formula To Value"
msgstr "Формуланы мәнге түрлендіру"
-#: sc/inc/globstr.hrc:497
+#: sc/inc/globstr.hrc:498
msgctxt "STR_UNQUOTED_STRING"
msgid "Strings without quotes are interpreted as column/row labels."
msgstr "Тырнақшаларсыз мәтін жолдары баған/жол белгілері ретінде алынады."
-#: sc/inc/globstr.hrc:498
+#: sc/inc/globstr.hrc:499
msgctxt "STR_ENTER_VALUE"
msgid "Enter a value!"
msgstr "Мәнді енгізіңіз!"
-#: sc/inc/globstr.hrc:499
+#: sc/inc/globstr.hrc:500
msgctxt "STR_TABLE_COUNT"
msgid "Sheet %1 of %2"
msgstr "Парақ %1, барлығы %2"
-#: sc/inc/globstr.hrc:500
+#: sc/inc/globstr.hrc:501
msgctxt "STR_FUNCTIONS_FOUND"
msgid "%1 and %2 more"
msgstr "%1 және тағы %2"
-#: sc/inc/globstr.hrc:501
+#: sc/inc/globstr.hrc:502
msgctxt "STR_GENERAL"
msgid "General"
msgstr "Жалпы"
-#: sc/inc/globstr.hrc:502
+#: sc/inc/globstr.hrc:503
msgctxt "STR_NUMBER"
msgid "Number"
msgstr "Сан"
-#: sc/inc/globstr.hrc:503
+#: sc/inc/globstr.hrc:504
msgctxt "STR_PERCENT"
msgid "Percent"
msgstr "Пайыз"
-#: sc/inc/globstr.hrc:504
+#: sc/inc/globstr.hrc:505
msgctxt "STR_CURRENCY"
msgid "Currency"
msgstr "Ақша"
-#: sc/inc/globstr.hrc:505
+#: sc/inc/globstr.hrc:506
msgctxt "STR_DATE"
msgid "Date"
msgstr "Күн"
-#: sc/inc/globstr.hrc:506
+#: sc/inc/globstr.hrc:507
msgctxt "STR_TIME"
msgid "Time"
msgstr "Уақыт"
-#: sc/inc/globstr.hrc:507
+#: sc/inc/globstr.hrc:508
msgctxt "STR_SCIENTIFIC"
msgid "Scientific"
msgstr "Ғылыми"
-#: sc/inc/globstr.hrc:508
+#: sc/inc/globstr.hrc:509
msgctxt "STR_FRACTION"
msgid "Fraction"
msgstr "Бөлшек"
-#: sc/inc/globstr.hrc:509
+#: sc/inc/globstr.hrc:510
msgctxt "STR_BOOLEAN_VALUE"
msgid "Boolean Value"
msgstr "Логикалық мәні"
-#: sc/inc/globstr.hrc:510
+#: sc/inc/globstr.hrc:511
msgctxt "STR_TEXT"
msgid "Text"
msgstr "Мәтін"
-#: sc/inc/globstr.hrc:511
+#: sc/inc/globstr.hrc:512
msgctxt "STR_QUERY_PIVOTTABLE_DELTAB"
msgid "The selected sheet(s) contain source data of related pivot tables that will be lost. Are you sure you want to delete the selected sheet(s)?"
msgstr "Таңдалған парақ(тар) ішінде тиісті құрамдас кестелердің бастапқы деректері бар, олар жоғалатын болады. Таңдалған парақ(тар) өшіруді шынымен қалайсыз ба?"
-#: sc/inc/globstr.hrc:512
+#: sc/inc/globstr.hrc:513
msgctxt "STR_ERR_NAME_INVALID_CELL_REF"
msgid "Invalid name. Reference to a cell, or a range of cells not allowed."
msgstr "Жарамсыз аты. Ұяшыққа сілтеме, немесе ұяшықтар ауқымы рұқсат етілмеген."
@@ -10488,8 +10493,8 @@ msgstr "Режимі"
#: sc/inc/scfuncs.hrc:3010
msgctxt "SC_OPCODE_T_TEST"
-msgid "Mode specifies the number of distribution tails to return. 1= one-tailed, 2 = two-tailed distribution"
-msgstr "Егер режим = 1, онда функция біржақты үлестірімді қолданады. Егер режим = 2, онда функция екіжақты үлестірімді қолданады"
+msgid "Mode specifies the number of distribution tails to return. 1 = one-tailed, 2 = two-tailed distribution"
+msgstr ""
#: sc/inc/scfuncs.hrc:3011
msgctxt "SC_OPCODE_T_TEST"
@@ -10533,8 +10538,8 @@ msgstr "Режимі"
#: sc/inc/scfuncs.hrc:3024
msgctxt "SC_OPCODE_T_TEST_MS"
-msgid "Mode specifies the number of distribution tails to return. 1= one-tailed, 2 = two-tailed distribution"
-msgstr "Егер режим = 1, онда функция біржақты үлестірімді қолданады. Егер режим = 2, онда функция екіжақты үлестірімді қолданады"
+msgid "Mode specifies the number of distribution tails to return. 1 = one-tailed, 2 = two-tailed distribution"
+msgstr ""
#: sc/inc/scfuncs.hrc:3025
msgctxt "SC_OPCODE_T_TEST_MS"
@@ -18020,22 +18025,22 @@ msgctxt "mergecellsdialog|MergeCellsDialog"
msgid "Merge Cells"
msgstr "Ұяшықтарды бiрiктiру"
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:81
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:84
msgctxt "mergecellsdialog|label"
msgid "Some cells are not empty."
msgstr "Кейбір ұяшықтар бос емес."
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:96
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:99
msgctxt "mergecellsdialog|move-cells-radio"
msgid "Move the contents of the hidden cells into the first cell"
msgstr "Жасырын ұяшықтардың құрамасын бірінші ұяшыққа жылжыту"
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:112
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:115
msgctxt "mergecellsdialog|empty-cells-radio"
msgid "Empty the contents of the hidden cells"
msgstr "Жасырын ұяшықтардың құрамасын өшіру"
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:128
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:131
msgctxt "mergecellsdialog|keep-content-radio"
msgid "Keep the contents of the hidden cells"
msgstr "Жасырын ұяшықтардың құрамасын сақтап қалу"
diff --git a/source/kk/scp2/source/ooo.po b/source/kk/scp2/source/ooo.po
index 2075944c549..a5d008bd72b 100644
--- a/source/kk/scp2/source/ooo.po
+++ b/source/kk/scp2/source/ooo.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2018-05-23 23:20+0200\n"
-"PO-Revision-Date: 2017-12-17 11:55+0000\n"
+"PO-Revision-Date: 2018-06-06 14:19+0000\n"
"Last-Translator: Baurzhan Muftakhidinov <baurthefirst@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: kk\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1513511722.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1528294756.000000\n"
#: folderitem_ooo.ulf
msgctxt ""
@@ -1886,7 +1886,7 @@ msgctxt ""
"STR_NAME_MODULE_LANGPACK_FY\n"
"LngText.text"
msgid "Frisian"
-msgstr ""
+msgstr "Фриздік"
#: module_langpack.ulf
msgctxt ""
@@ -1894,7 +1894,7 @@ msgctxt ""
"STR_DESC_MODULE_LANGPACK_FY\n"
"LngText.text"
msgid "Installs the Frisian user interface"
-msgstr ""
+msgstr "Фриз тіліндегі пайдаланушы интерфейсін орнату"
#: module_langpack.ulf
msgctxt ""
diff --git a/source/kk/sd/messages.po b/source/kk/sd/messages.po
index 47bc3c57c56..9660daf7345 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2018-04-29 04:25+0000\n"
"Last-Translator: Baurzhan Muftakhidinov <baurthefirst@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -16,167 +16,167 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1524975914.000000\n"
-#: sd/inc/DocumentRenderer.hrc:29
+#: sd/inc/DocumentRenderer.hrc:27
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Slides"
msgstr "Слайдтар"
-#: sd/inc/DocumentRenderer.hrc:30
+#: sd/inc/DocumentRenderer.hrc:28
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Handouts"
msgstr "Тезистер"
-#: sd/inc/DocumentRenderer.hrc:31
+#: sd/inc/DocumentRenderer.hrc:29
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Notes"
msgstr "Естеліктер"
-#: sd/inc/DocumentRenderer.hrc:32
+#: sd/inc/DocumentRenderer.hrc:30
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Outline"
msgstr "Құрылымы"
-#: sd/inc/DocumentRenderer.hrc:37
+#: sd/inc/DocumentRenderer.hrc:35
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "According to layout"
msgstr "Жаймаға тән"
-#: sd/inc/DocumentRenderer.hrc:38
+#: sd/inc/DocumentRenderer.hrc:36
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "1"
msgstr "1"
-#: sd/inc/DocumentRenderer.hrc:39
+#: sd/inc/DocumentRenderer.hrc:37
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "2"
msgstr "2"
-#: sd/inc/DocumentRenderer.hrc:40
+#: sd/inc/DocumentRenderer.hrc:38
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "3"
msgstr "3"
-#: sd/inc/DocumentRenderer.hrc:41
+#: sd/inc/DocumentRenderer.hrc:39
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "4"
msgstr "4"
-#: sd/inc/DocumentRenderer.hrc:42
+#: sd/inc/DocumentRenderer.hrc:40
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "6"
msgstr "6"
-#: sd/inc/DocumentRenderer.hrc:43
+#: sd/inc/DocumentRenderer.hrc:41
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "9"
msgstr "9"
-#: sd/inc/DocumentRenderer.hrc:48
+#: sd/inc/DocumentRenderer.hrc:46
msgctxt "STR_IMPRESS_PRINT_UI_ORDER_CHOICES"
msgid "Left to right, then down"
msgstr "Солдан оңға, одан кейін төменге"
-#: sd/inc/DocumentRenderer.hrc:49
+#: sd/inc/DocumentRenderer.hrc:47
msgctxt "STR_IMPRESS_PRINT_UI_ORDER_CHOICES"
msgid "Top to bottom, then right"
msgstr "Жоғарыдан төменге, одан кейін оңға"
-#: sd/inc/DocumentRenderer.hrc:54
+#: sd/inc/DocumentRenderer.hrc:52
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Original colors"
msgstr "Бастапқы түстері"
-#: sd/inc/DocumentRenderer.hrc:55
+#: sd/inc/DocumentRenderer.hrc:53
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Grayscale"
msgstr "Сұр түсті"
-#: sd/inc/DocumentRenderer.hrc:56
+#: sd/inc/DocumentRenderer.hrc:54
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Black & white"
msgstr "Ақ және қара"
-#: sd/inc/DocumentRenderer.hrc:61
+#: sd/inc/DocumentRenderer.hrc:59
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Original size"
msgstr "Бастапқы өлшемі"
-#: sd/inc/DocumentRenderer.hrc:62
+#: sd/inc/DocumentRenderer.hrc:60
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Fit to printable page"
msgstr "Баспаға шығарылатын аймаққа сыйдыру"
-#: sd/inc/DocumentRenderer.hrc:63
+#: sd/inc/DocumentRenderer.hrc:61
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Distribute on multiple sheets of paper"
msgstr "Плакат ретінде баспаға шығару"
-#: sd/inc/DocumentRenderer.hrc:64
+#: sd/inc/DocumentRenderer.hrc:62
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Tile sheet of paper with repeated slides"
msgstr "Мозаика ретінде баспаға шығару"
-#: sd/inc/DocumentRenderer.hrc:69
+#: sd/inc/DocumentRenderer.hrc:67
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Original size"
msgstr "Бастапқы өлшемі"
-#: sd/inc/DocumentRenderer.hrc:70
+#: sd/inc/DocumentRenderer.hrc:68
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Fit to printable page"
msgstr "Баспаға шығарылатын аймаққа сыйдыру"
-#: sd/inc/DocumentRenderer.hrc:71
+#: sd/inc/DocumentRenderer.hrc:69
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Distribute on multiple sheets of paper"
msgstr "Плакат ретінде баспаға шығару"
-#: sd/inc/DocumentRenderer.hrc:72
+#: sd/inc/DocumentRenderer.hrc:70
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Tile sheet of paper with repeated pages"
msgstr "Мозаика ретінде баспаға шығару"
-#: sd/inc/DocumentRenderer.hrc:77
+#: sd/inc/DocumentRenderer.hrc:75
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "All pages"
msgstr "Барлық беттер"
-#: sd/inc/DocumentRenderer.hrc:78
+#: sd/inc/DocumentRenderer.hrc:76
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "Front sides / right pages"
msgstr "Алдыңғы беттер / оң жақ парақтар"
-#: sd/inc/DocumentRenderer.hrc:79
+#: sd/inc/DocumentRenderer.hrc:77
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "Back sides / left pages"
msgstr "Артқы беттер / сол жақ парақтар"
-#: sd/inc/DocumentRenderer.hrc:84
+#: sd/inc/DocumentRenderer.hrc:82
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~All slides"
msgstr "~Барлық слайдтар"
-#: sd/inc/DocumentRenderer.hrc:85
+#: sd/inc/DocumentRenderer.hrc:83
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~Slides"
msgstr "~Слайдтар"
-#: sd/inc/DocumentRenderer.hrc:86
+#: sd/inc/DocumentRenderer.hrc:84
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Se~lection"
msgstr "Таң~далған"
-#: sd/inc/DocumentRenderer.hrc:91
+#: sd/inc/DocumentRenderer.hrc:89
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~All pages"
msgstr "~Барлық беттер"
-#: sd/inc/DocumentRenderer.hrc:92
+#: sd/inc/DocumentRenderer.hrc:90
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Pa~ges"
msgstr "Бет~тер"
-#: sd/inc/DocumentRenderer.hrc:93
+#: sd/inc/DocumentRenderer.hrc:91
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Se~lection"
msgstr "Таң~далған"
diff --git a/source/kk/svx/messages.po b/source/kk/svx/messages.po
index c79715e0e71..b0a689eda19 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: 2018-05-16 16:53+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2018-04-29 04:27+0000\n"
"Last-Translator: Baurzhan Muftakhidinov <baurthefirst@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5179,8 +5179,8 @@ msgstr "Есептемеге пайдаланушы профилінің бөл
#: svx/uiconfig/ui/safemodedialog.ui:432
msgctxt "safemodedialog|btn_create_zip"
-msgid "Create Zip Archive from User Profile"
-msgstr "Пайдаланушы профилінен Zip архивін жасау"
+msgid "Archive User Profile"
+msgstr ""
#: svx/uiconfig/ui/safemodedialog.ui:445
msgctxt "safemodedialog|linkbutton_profile"
@@ -8769,9 +8769,9 @@ msgid "Red"
msgstr "Қызыл"
#: include/svx/strings.hrc:565
-msgctxt "RID_SVXSTR_COLOR_VIOLET"
-msgid "Violet"
-msgstr "Күлгін"
+msgctxt "RID_SVXSTR_COLOR_MAGENTA"
+msgid "Magenta"
+msgstr "Қарақошқыл"
#: include/svx/strings.hrc:566
msgctxt "RID_SVXSTR_COLOR_PURPLE"
@@ -8835,9 +8835,9 @@ msgid "Light Red"
msgstr "Ашық қызыл"
#: include/svx/strings.hrc:579
-msgctxt "RID_SVXSTR_COLOR_LIGHTVIOLET"
-msgid "Light Violet"
-msgstr "Ашық күлгін"
+msgctxt "RID_SVXSTR_COLOR_LIGHTMAGENTA"
+msgid "Light Magenta"
+msgstr ""
#: include/svx/strings.hrc:580
msgctxt "RID_SVXSTR_COLOR_LIGHTPURPLE"
@@ -8901,9 +8901,9 @@ msgid "Dark Red"
msgstr "Күңгірт қызыл"
#: include/svx/strings.hrc:593
-msgctxt "RID_SVXSTR_COLOR_DARKVIOLET1"
-msgid "Dark Violet"
-msgstr "Күңгірт күлгін"
+msgctxt "RID_SVXSTR_COLOR_DARKMAGENTA"
+msgid "Dark Magenta"
+msgstr ""
#: include/svx/strings.hrc:594
msgctxt "RID_SVXSTR_COLOR_DARKPURPLE"
@@ -8937,55 +8937,55 @@ msgstr "Күңгірт лайм"
#. Elements of the Tonal color palette
#: include/svx/strings.hrc:601
+msgctxt "RID_SVXSTR_COLOR_VIOLET"
+msgid "Violet"
+msgstr "Күлгін"
+
+#: include/svx/strings.hrc:602
msgctxt "RID_SVXSTR_COLOR_VIOLET_OUG"
msgid "Violet (Out of Gamut)"
msgstr "Күлгін (гаммадан тыс)"
-#: include/svx/strings.hrc:602
+#: include/svx/strings.hrc:603
msgctxt "RID_SVXSTR_COLOR_BLUE_OUG"
msgid "Blue (Out of Gamut)"
msgstr "Көк (гаммадан тыс)"
-#: include/svx/strings.hrc:603
+#: include/svx/strings.hrc:604
msgctxt "RID_SVXSTR_COLOR_AZURE_OUG"
msgid "Azure (Out of Gamut)"
msgstr "Көкшіл (гаммадан тыс)"
-#: include/svx/strings.hrc:604
+#: include/svx/strings.hrc:605
msgctxt "RID_SVXSTR_COLOR_SPRINGGREEN_OUG"
msgid "Spring Green (Out of Gamut)"
msgstr "Көктемгі жасыл (гаммадан тыс)"
-#: include/svx/strings.hrc:605
+#: include/svx/strings.hrc:606
msgctxt "RID_SVXSTR_COLOR_GREEN_OUG"
msgid "Green (Out of Gamut)"
msgstr "Жасыл (гаммадан тыс)"
-#: include/svx/strings.hrc:606
+#: include/svx/strings.hrc:607
msgctxt "RID_SVXSTR_COLOR_CHARTREUSEGREEN_OUG"
msgid "Chartreuse Green (Out of Gamut)"
msgstr "Жасыл шартрёз (гаммадан тыс)"
-#: include/svx/strings.hrc:607
+#: include/svx/strings.hrc:608
msgctxt "RID_SVXSTR_COLOR_ORANGE_OUG"
msgid "Orange (Out of Gamut)"
msgstr "Қызғылт-сары (гаммадан тыс)"
-#: include/svx/strings.hrc:608
+#: include/svx/strings.hrc:609
msgctxt "RID_SVXSTR_COLOR_RED_OUG"
msgid "Red (Out of Gamut)"
msgstr "Қызыл (гаммадан тыс)"
-#: include/svx/strings.hrc:609
+#: include/svx/strings.hrc:610
msgctxt "RID_SVXSTR_COLOR_ROSE_OUG"
msgid "Rose (Out of Gamut)"
msgstr "Қызғылт (гаммадан тыс)"
-#: include/svx/strings.hrc:610
-msgctxt "RID_SVXSTR_COLOR_MAGENTA"
-msgid "Magenta"
-msgstr "Қарақошқыл"
-
#: include/svx/strings.hrc:611
msgctxt "RID_SVXSTR_COLOR_AZURE"
msgid "Azure"
@@ -12091,13 +12091,13 @@ msgstr "Оң жаққа бағдаршалар"
#: include/svx/strings.hrc:1273
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_6"
-msgid "Check mark bullets"
-msgstr "Құсбелгі маркерлер толтыруы"
+msgid "Cross mark bullets"
+msgstr ""
#: include/svx/strings.hrc:1274
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_7"
-msgid "Tick mark bullets"
-msgstr "Белгілеу маркерлер толтыруы"
+msgid "Check mark bullets"
+msgstr ""
#: include/svx/strings.hrc:1275
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_0"
diff --git a/source/kk/sw/messages.po b/source/kk/sw/messages.po
index ee0c650e226..db7f406b22f 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: 2018-05-22 13:17+0200\n"
+"POT-Creation-Date: 2018-06-12 14:41+0200\n"
"PO-Revision-Date: 2018-04-29 04:33+0000\n"
"Last-Translator: Baurzhan Muftakhidinov <baurthefirst@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1180,13 +1180,13 @@ msgstr "Дәйексөз"
#: sw/inc/strings.hrc:172
msgctxt "STR_POOLCOLL_TOX_ILLUSH"
-msgid "Illustration Index Heading"
-msgstr "Суреттер тізімінің тақырыптамасы"
+msgid "Figure Index Heading"
+msgstr ""
#: sw/inc/strings.hrc:173
msgctxt "STR_POOLCOLL_TOX_ILLUS1"
-msgid "Illustration Index 1"
-msgstr "Суреттер тізімі 1"
+msgid "Figure Index 1"
+msgstr ""
#: sw/inc/strings.hrc:174
msgctxt "STR_POOLCOLL_TOX_OBJECTH"
@@ -3590,8 +3590,8 @@ msgstr "Объекттер кестесі"
#: sw/inc/strings.hrc:672
msgctxt "STR_TOX_ILL"
-msgid "Illustration Index"
-msgstr "Суреттер нұсқағышы"
+msgid "Table of Figures"
+msgstr ""
#: sw/inc/strings.hrc:673
#, c-format
@@ -9244,72 +9244,72 @@ msgctxt "footnotepage|label5"
msgid "Continuation Notice"
msgstr "Нұсқама жалғасуы туралы хабарлама"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:49
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:55
msgctxt "footnotesendnotestabpage|ftnntnum"
msgid "_Restart numbering"
msgstr "Нөмірлеуді қа_йтадан бастау"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:91
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:93
msgctxt "footnotesendnotestabpage|ftnoffset_label"
msgid "_Start at:"
msgstr "Неден ба_стау:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:112
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:111
msgctxt "footnotesendnotestabpage|ftnntnumfmt"
msgid "Custom _format"
msgstr "Таңдауыңы_зша пішім:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:155
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:150
msgctxt "footnotesendnotestabpage|ftnsuffix_label"
msgid "Aft_er:"
msgstr "К_ейін:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:199
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:188
msgctxt "footnotesendnotestabpage|ftnprefix_label"
msgid "Be_fore:"
msgstr "Де_йін:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:228
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:212
msgctxt "footnotesendnotestabpage|ftnntattextend"
msgid "Collec_t at end of text"
msgstr "Мәтін соңында жина_у"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:252
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:234
msgctxt "footnotesendnotestabpage|label1"
msgid "Footnotes"
msgstr "Нұсқамалар"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:289
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:271
msgctxt "footnotesendnotestabpage|endntattextend"
msgid "C_ollect at end of section"
msgstr "Тарау соңында ж_инау"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:315
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:295
msgctxt "footnotesendnotestabpage|endntnum"
msgid "_Restart numbering"
msgstr "Нөмірлеуді қа_йтадан бастау"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:357
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:333
msgctxt "footnotesendnotestabpage|endoffset_label"
msgid "_Start at:"
msgstr "Ба_стау орны:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:378
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:351
msgctxt "footnotesendnotestabpage|endntnumfmt"
msgid "_Custom format"
msgstr "_Таңдауыңызша пішім"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:421
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:390
msgctxt "footnotesendnotestabpage|endsuffix_label"
msgid "Aft_er:"
msgstr "К_ейін:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:465
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:428
msgctxt "footnotesendnotestabpage|endprefix_label"
msgid "Be_fore:"
msgstr "_Дейін:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:500
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:458
msgctxt "footnotesendnotestabpage|label2"
msgid "Endnotes"
msgstr "Соңдық нұсқамалар"
@@ -9339,27 +9339,27 @@ msgctxt "formatsectiondialog|notes"
msgid "Footnotes/Endnotes"
msgstr "Нұсқама/соңдық нұсқамалар"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:63
+#: sw/uiconfig/swriter/ui/formattablepage.ui:77
msgctxt "formattablepage|nameft"
msgid "_Name"
msgstr "_Аты"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:79
+#: sw/uiconfig/swriter/ui/formattablepage.ui:91
msgctxt "formattablepage|widthft"
msgid "W_idth"
msgstr "_Ені"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:110
+#: sw/uiconfig/swriter/ui/formattablepage.ui:120
msgctxt "formattablepage|relwidth"
msgid "Relati_ve"
msgstr "_Салыстырмалы"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:155
+#: sw/uiconfig/swriter/ui/formattablepage.ui:160
msgctxt "formattablepage|label45"
msgid "Properties"
msgstr "Қасиеттері"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:194
+#: sw/uiconfig/swriter/ui/formattablepage.ui:195
msgctxt "formattablepage|leftft"
msgid "Lef_t"
msgstr "Сол _жақ"
@@ -9369,62 +9369,62 @@ msgctxt "formattablepage|rightft"
msgid "Ri_ght"
msgstr "_Оң жақ"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:228
+#: sw/uiconfig/swriter/ui/formattablepage.ui:226
msgctxt "formattablepage|aboveft"
msgid "_Above"
msgstr "_Жоғары"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:245
+#: sw/uiconfig/swriter/ui/formattablepage.ui:241
msgctxt "formattablepage|belowft"
msgid "_Below"
msgstr "_Төмен"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:320
+#: sw/uiconfig/swriter/ui/formattablepage.ui:311
msgctxt "formattablepage|label46"
msgid "Spacing"
msgstr "Аралық"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:362
+#: sw/uiconfig/swriter/ui/formattablepage.ui:349
msgctxt "formattablepage|full"
msgid "A_utomatic"
msgstr "А_втоматты түрде"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:380
+#: sw/uiconfig/swriter/ui/formattablepage.ui:365
msgctxt "formattablepage|left"
msgid "_Left"
msgstr "_Сол жақ"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:398
+#: sw/uiconfig/swriter/ui/formattablepage.ui:381
msgctxt "formattablepage|fromleft"
msgid "_From left"
msgstr "_Сол жақтан шегіну"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:416
+#: sw/uiconfig/swriter/ui/formattablepage.ui:397
msgctxt "formattablepage|right"
msgid "R_ight"
msgstr "Оң _жақ"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:435
+#: sw/uiconfig/swriter/ui/formattablepage.ui:413
msgctxt "formattablepage|center"
msgid "_Center"
msgstr "_Ортасынан"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:453
+#: sw/uiconfig/swriter/ui/formattablepage.ui:429
msgctxt "formattablepage|free"
msgid "_Manual"
msgstr "Қол_мен"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:478
+#: sw/uiconfig/swriter/ui/formattablepage.ui:452
msgctxt "formattablepage|label43"
msgid "Alignment"
msgstr "Туралау"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:522
+#: sw/uiconfig/swriter/ui/formattablepage.ui:491
msgctxt "formattablepage|label53"
msgid "Text _direction"
msgstr "_Мәтін бағдары"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:553
+#: sw/uiconfig/swriter/ui/formattablepage.ui:519
msgctxt "formattablepage|label44"
msgid "Properties "
msgstr "Қасиеттері "
@@ -9779,22 +9779,27 @@ msgctxt "headerfootermenu|insert_pagenumber"
msgid "Insert Page Number"
msgstr ""
-#: sw/uiconfig/swriter/ui/indentpage.ui:52
+#: sw/uiconfig/swriter/ui/headerfootermenu.ui:42
+msgctxt "headerfootermenu|insert_pagecount"
+msgid "Insert Page Count"
+msgstr ""
+
+#: sw/uiconfig/swriter/ui/indentpage.ui:57
msgctxt "indentpage|label1"
msgid "_Before section"
msgstr "_Бөлімге дейін"
-#: sw/uiconfig/swriter/ui/indentpage.ui:67
+#: sw/uiconfig/swriter/ui/indentpage.ui:71
msgctxt "indentpage|label3"
msgid "_After section"
msgstr "Т_араудан кейін"
-#: sw/uiconfig/swriter/ui/indentpage.ui:113
+#: sw/uiconfig/swriter/ui/indentpage.ui:115
msgctxt "indentpage|label2"
msgid "Indent"
msgstr "Шегініс"
-#: sw/uiconfig/swriter/ui/indentpage.ui:142
+#: sw/uiconfig/swriter/ui/indentpage.ui:155
msgctxt "indentpage|preview-atkobject"
msgid "Example"
msgstr "Мысалы"
@@ -13285,8 +13290,8 @@ msgstr "Неден қорғау"
#: sw/uiconfig/swriter/ui/optcompatpage.ui:68
msgctxt "optcompatpage|format"
-msgid "MS Word-compatible trailing blanks"
-msgstr "MS Word-үйлесімді жол соңындағы бос аралықтар"
+msgid "Word-compatible trailing blanks"
+msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:69
msgctxt "optcompatpage|format"
@@ -13295,7 +13300,7 @@ msgstr "Ескі құжаттармен үйлесімділігі үшін PDF
#: sw/uiconfig/swriter/ui/optcompatpage.ui:70
msgctxt "optcompatpage|format"
-msgid "A database field (e.g., MailMerge) with empty value hides its paragraph"
+msgid "Hide paragraphs of database fields (e.g., mail merge) with an empty value"
msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:71
@@ -15979,122 +15984,122 @@ msgctxt "tableproperties|background"
msgid "Background"
msgstr "Фон"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:25
-msgctxt "tabletextflowpage|liststore1"
-msgid "Horizontal"
-msgstr "Горизонталды"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:29
-msgctxt "tabletextflowpage|liststore1"
-msgid "Vertical"
-msgstr "Тігінен"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:33
-msgctxt "tabletextflowpage|liststore1"
-msgid "Use superordinate object settings"
-msgstr "Баптауларды мұралау"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:47
-msgctxt "tabletextflowpage|liststore2"
-msgid "Top"
-msgstr "Жоғарыдан"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:51
-msgctxt "tabletextflowpage|liststore2"
-msgid "Centered"
-msgstr "Ортасынан"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:55
-msgctxt "tabletextflowpage|liststore2"
-msgid "Bottom"
-msgstr "Төменнен"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:97
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:53
msgctxt "tabletextflowpage|break"
msgid "_Break"
msgstr "_Ажырау"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:112
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:68
msgctxt "tabletextflowpage|page"
msgid "_Page"
msgstr "_Бет"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:132
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:87
msgctxt "tabletextflowpage|column"
msgid "Col_umn"
msgstr "_Баған"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:151
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:106
msgctxt "tabletextflowpage|before"
msgid "Be_fore"
msgstr "Д_ейін"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:171
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:125
msgctxt "tabletextflowpage|after"
msgid "_After"
msgstr "_Кейін"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:203
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:158
msgctxt "tabletextflowpage|pagestyle"
msgid "With Page St_yle"
msgstr "Бет ст_илімен"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:224
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:177
msgctxt "tabletextflowpage|pagenoft"
msgid "Page _number"
msgstr "Бет _нөмірі"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:257
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:213
msgctxt "tabletextflowpage|pagestylelb-atkobject"
msgid "With Page Style"
msgstr "Бет стилімен"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:274
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:230
msgctxt "tabletextflowpage|split"
msgid "Allow _table to split across pages and columns"
msgstr "Кес_теге беттер және бағандар арасында ажырауды рұқсат ету"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:289
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:245
msgctxt "tabletextflowpage|splitrow"
msgid "Allow row to break a_cross pages and columns"
msgstr "Жо_лға беттер және бағандар арасында ажырауды рұқсат ету"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:306
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:262
msgctxt "tabletextflowpage|keep"
msgid "_Keep with next paragraph"
msgstr "_Келесі абзацпен бірге ұстау"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:328
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:284
msgctxt "tabletextflowpage|label40"
msgid "Text _orientation"
msgstr "Мәтін _бағыты"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:361
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:298
+msgctxt "tabletextflowpage|liststore1"
+msgid "Horizontal"
+msgstr "Горизонталды"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:299
+msgctxt "tabletextflowpage|liststore1"
+msgid "Vertical"
+msgstr "Тігінен"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:300
+msgctxt "tabletextflowpage|liststore1"
+msgid "Use superordinate object settings"
+msgstr "Баптауларды мұралау"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:321
msgctxt "tabletextflowpage|headline"
msgid "R_epeat heading"
msgstr "_Тақырыптаманы қайталау"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:383
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:343
msgctxt "tabletextflowpage|label38"
msgid "The first "
msgstr "Бірінші "
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:396
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:356
msgctxt "tabletextflowpage|label39"
msgid "rows"
msgstr "жолдар"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:434
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:395
msgctxt "tabletextflowpage|label35"
msgid "Text Flow"
msgstr "Бетте"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:467
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:428
msgctxt "tabletextflowpage|label41"
msgid "_Vertical alignment"
msgstr "_Вертикалды туралау"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:495
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:442
+msgctxt "tabletextflowpage|liststore2"
+msgid "Top"
+msgstr "Жоғарыдан"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:443
+msgctxt "tabletextflowpage|liststore2"
+msgid "Centered"
+msgstr "Ортасынан"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:444
+msgctxt "tabletextflowpage|liststore2"
+msgid "Bottom"
+msgstr "Төменнен"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:460
msgctxt "tabletextflowpage|label36"
msgid "Alignment"
msgstr "Туралау"
@@ -16876,8 +16881,8 @@ msgstr "Әліпбилік нұсқағыш"
#: sw/uiconfig/swriter/ui/tocindexpage.ui:58
msgctxt "tocindexpage|liststore1"
-msgid "Illustration Index"
-msgstr "Суреттер нұсқағышы"
+msgid "Table of Figures"
+msgstr ""
#: sw/uiconfig/swriter/ui/tocindexpage.ui:62
msgctxt "tocindexpage|liststore1"
diff --git a/source/kk/vcl/messages.po b/source/kk/vcl/messages.po
index 47a1336e3df..cb13548ce0d 100644
--- a/source/kk/vcl/messages.po
+++ b/source/kk/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: 2018-05-08 15:10+0200\n"
-"PO-Revision-Date: 2018-03-03 14:51+0000\n"
+"PO-Revision-Date: 2018-06-06 14:19+0000\n"
"Last-Translator: Baurzhan Muftakhidinov <baurthefirst@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: kk\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1520088691.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1528294771.000000\n"
#. To translators: This is the first entry of a sequence of paper size names
#: vcl/inc/print.hrc:28
@@ -1239,7 +1239,7 @@ msgstr "Бет жаймасы"
#: vcl/uiconfig/ui/printdialog.ui:1457
msgctxt "printdialog|singleprintjob"
msgid "Create separate print jobs for collated output"
-msgstr ""
+msgstr "Әр көшірме үшін бөлек баспа тапсырмасы"
#: vcl/uiconfig/ui/printdialog.ui:1472
msgctxt "printdialog|printpaperfromsetup"
diff --git a/source/kk/writerperfect/messages.po b/source/kk/writerperfect/messages.po
index a6a7fe55148..7edb1462ded 100644
--- a/source/kk/writerperfect/messages.po
+++ b/source/kk/writerperfect/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-16 16:54+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2018-05-12 12:39+0000\n"
"Last-Translator: Baurzhan Muftakhidinov <baurthefirst@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -66,97 +66,97 @@ msgctxt "exportepub|generalft"
msgid "General"
msgstr "Жалпы"
-#: writerperfect/uiconfig/ui/exportepub.ui:122
+#: writerperfect/uiconfig/ui/exportepub.ui:121
msgctxt "exportepub|versionft"
msgid "Version:"
msgstr "Нұсқасы:"
-#: writerperfect/uiconfig/ui/exportepub.ui:139
+#: writerperfect/uiconfig/ui/exportepub.ui:138
msgctxt "exportepub|epub3"
msgid "EPUB 3.0"
msgstr "EPUB 3.0"
-#: writerperfect/uiconfig/ui/exportepub.ui:140
+#: writerperfect/uiconfig/ui/exportepub.ui:139
msgctxt "exportepub|epub2"
msgid "EPUB 2.0"
msgstr "EPUB 2.0"
-#: writerperfect/uiconfig/ui/exportepub.ui:175
+#: writerperfect/uiconfig/ui/exportepub.ui:174
msgctxt "exportepub|splitft"
msgid "Split method:"
msgstr "Бөлу тәсілі:"
-#: writerperfect/uiconfig/ui/exportepub.ui:192
+#: writerperfect/uiconfig/ui/exportepub.ui:191
msgctxt "exportepub|splitpage"
msgid "Page break"
msgstr "Бет ажырауы"
-#: writerperfect/uiconfig/ui/exportepub.ui:193
+#: writerperfect/uiconfig/ui/exportepub.ui:192
msgctxt "exportepub|splitheading"
msgid "Heading"
msgstr "Тақырыптама"
-#: writerperfect/uiconfig/ui/exportepub.ui:228
+#: writerperfect/uiconfig/ui/exportepub.ui:227
msgctxt "exportepub|layoutft"
msgid "Layout method:"
msgstr "Жайма тәсілі:"
-#: writerperfect/uiconfig/ui/exportepub.ui:245
+#: writerperfect/uiconfig/ui/exportepub.ui:244
msgctxt "exportepub|layoutreflowable"
msgid "Reflowable"
msgstr "Қайта аймаланатын"
-#: writerperfect/uiconfig/ui/exportepub.ui:246
+#: writerperfect/uiconfig/ui/exportepub.ui:245
msgctxt "exportepub|layoutfixed"
msgid "Fixed"
msgstr "Бекітілген"
-#: writerperfect/uiconfig/ui/exportepub.ui:281
+#: writerperfect/uiconfig/ui/exportepub.ui:280
msgctxt "exportepub|coverimageft"
msgid "Custom cover image:"
msgstr "Таңдауыңызша мұқаба суреті:"
-#: writerperfect/uiconfig/ui/exportepub.ui:311
+#: writerperfect/uiconfig/ui/exportepub.ui:310
msgctxt "exportepub|coverbutton"
msgid "Browse..."
msgstr "Шолу..."
-#: writerperfect/uiconfig/ui/exportepub.ui:355
+#: writerperfect/uiconfig/ui/exportepub.ui:354
msgctxt "exportepub|mediadirft"
msgid "Custom media directory:"
msgstr "Таңдауыңызша медиа бумасы:"
-#: writerperfect/uiconfig/ui/exportepub.ui:385
+#: writerperfect/uiconfig/ui/exportepub.ui:384
msgctxt "exportepub|mediabutton"
msgid "Browse..."
msgstr "Шолу..."
-#: writerperfect/uiconfig/ui/exportepub.ui:429
+#: writerperfect/uiconfig/ui/exportepub.ui:428
msgctxt "exportepub|metadataft"
msgid "Metadata"
msgstr "Метаақпараты"
-#: writerperfect/uiconfig/ui/exportepub.ui:470
+#: writerperfect/uiconfig/ui/exportepub.ui:468
msgctxt "exportepub|identifierft"
msgid "Identifier:"
msgstr "Идентификатор:"
-#: writerperfect/uiconfig/ui/exportepub.ui:485
+#: writerperfect/uiconfig/ui/exportepub.ui:483
msgctxt "exportepub|titleft"
msgid "Title:"
msgstr "Атауы:"
-#: writerperfect/uiconfig/ui/exportepub.ui:511
+#: writerperfect/uiconfig/ui/exportepub.ui:509
msgctxt "exportepub|authorft"
msgid "Author:"
msgstr "Авторы:"
-#: writerperfect/uiconfig/ui/exportepub.ui:537
+#: writerperfect/uiconfig/ui/exportepub.ui:535
msgctxt "exportepub|languageft"
msgid "Language:"
msgstr "Тілі:"
-#: writerperfect/uiconfig/ui/exportepub.ui:563
+#: writerperfect/uiconfig/ui/exportepub.ui:561
msgctxt "exportepub|dateft"
msgid "Date:"
msgstr "Күні:"
diff --git a/source/kk/xmlsecurity/messages.po b/source/kk/xmlsecurity/messages.po
index 2314a9992e2..31474269ec2 100644
--- a/source/kk/xmlsecurity/messages.po
+++ b/source/kk/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: 2018-05-22 13:17+0200\n"
-"PO-Revision-Date: 2018-03-03 14:49+0000\n"
+"PO-Revision-Date: 2018-06-06 14:19+0000\n"
"Last-Translator: Baurzhan Muftakhidinov <baurthefirst@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: kk\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1520088597.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1528294778.000000\n"
#: xmlsecurity/inc/strings.hrc:25
msgctxt "STR_CERTIFICATE_NOT_VALIDATED"
@@ -460,7 +460,7 @@ msgstr "Қолтаңба"
#: xmlsecurity/uiconfig/ui/selectcertificatedialog.ui:194
msgctxt "selectcertificatedialog|str_selectsign"
msgid "Select"
-msgstr ""
+msgstr "Таңдау"
#: xmlsecurity/uiconfig/ui/selectcertificatedialog.ui:199
msgctxt "selectcertificatedialog|str_encrypt"
diff --git a/source/kl/cui/messages.po b/source/kl/cui/messages.po
index c1ac9820255..f70ba8e8581 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+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"
@@ -10085,101 +10085,101 @@ msgctxt "positionsizedialog|PositionAndSizeDialog"
msgid "Position and Size"
msgstr ""
-#: cui/uiconfig/ui/positionsizedialog.ui:107
+#: cui/uiconfig/ui/positionsizedialog.ui:136
msgctxt "positionsizedialog|RID_SVXPAGE_POSITION_SIZE"
msgid "Position and Size"
msgstr ""
-#: cui/uiconfig/ui/positionsizedialog.ui:129
+#: cui/uiconfig/ui/positionsizedialog.ui:182
msgctxt "positionsizedialog|RID_SVXPAGE_SWPOSSIZE"
msgid "Position and Size"
msgstr ""
-#: cui/uiconfig/ui/positionsizedialog.ui:152
+#: cui/uiconfig/ui/positionsizedialog.ui:229
#, fuzzy
msgctxt "positionsizedialog|RID_SVXPAGE_ANGLE"
msgid "Rotation"
msgstr "kaavinneq"
-#: cui/uiconfig/ui/positionsizedialog.ui:175
+#: cui/uiconfig/ui/positionsizedialog.ui:276
msgctxt "positionsizedialog|RID_SVXPAGE_SLANT"
msgid "Slant & Corner Radius"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:40
+#: cui/uiconfig/ui/possizetabpage.ui:61
msgctxt "possizetabpage|FT_POS_X"
msgid "Position _X:"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:56
+#: cui/uiconfig/ui/possizetabpage.ui:75
msgctxt "possizetabpage|FT_POS_Y"
msgid "Position _Y:"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:110
+#: cui/uiconfig/ui/possizetabpage.ui:128
msgctxt "possizetabpage|FT_POSREFERENCE"
msgid "_Base point:"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:148
+#: cui/uiconfig/ui/possizetabpage.ui:182
#, fuzzy
msgctxt "possizetabpage|label1"
msgid "Position"
msgstr "sumiiffik"
-#: cui/uiconfig/ui/possizetabpage.ui:190
+#: cui/uiconfig/ui/possizetabpage.ui:224
msgctxt "possizetabpage|FT_WIDTH"
msgid "Wi_dth:"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:206
+#: cui/uiconfig/ui/possizetabpage.ui:238
msgctxt "possizetabpage|FT_HEIGHT"
msgid "H_eight:"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:247
+#: cui/uiconfig/ui/possizetabpage.ui:276
msgctxt "possizetabpage|CBX_SCALE"
msgid "_Keep ratio"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:279
+#: cui/uiconfig/ui/possizetabpage.ui:307
msgctxt "possizetabpage|FT_SIZEREFERENCE"
msgid "Base _point:"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:317
+#: cui/uiconfig/ui/possizetabpage.ui:361
#, fuzzy
msgctxt "possizetabpage|label2"
msgid "Size"
msgstr "angissuseq"
-#: cui/uiconfig/ui/possizetabpage.ui:356
+#: cui/uiconfig/ui/possizetabpage.ui:401
#, fuzzy
msgctxt "possizetabpage|TSB_POSPROTECT"
msgid "Positio_n"
msgstr "sumiiffik"
-#: cui/uiconfig/ui/possizetabpage.ui:373
+#: cui/uiconfig/ui/possizetabpage.ui:418
msgctxt "possizetabpage|TSB_SIZEPROTECT"
msgid "_Size"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:397
+#: cui/uiconfig/ui/possizetabpage.ui:441
msgctxt "possizetabpage|label3"
msgid "Protect"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:430
+#: cui/uiconfig/ui/possizetabpage.ui:475
msgctxt "possizetabpage|TSB_AUTOGROW_WIDTH"
msgid "_Fit width to text"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:447
+#: cui/uiconfig/ui/possizetabpage.ui:492
msgctxt "possizetabpage|TSB_AUTOGROW_HEIGHT"
msgid "Fit _height to text"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:471
+#: cui/uiconfig/ui/possizetabpage.ui:515
msgctxt "possizetabpage|label4"
msgid "Adapt"
msgstr ""
@@ -10385,47 +10385,47 @@ msgctxt "recordnumberdialog|label2"
msgid "go to record"
msgstr ""
-#: cui/uiconfig/ui/rotationtabpage.ui:52
+#: cui/uiconfig/ui/rotationtabpage.ui:56
msgctxt "rotationtabpage|FT_POS_X"
msgid "Position _X:"
msgstr ""
-#: cui/uiconfig/ui/rotationtabpage.ui:66
+#: cui/uiconfig/ui/rotationtabpage.ui:70
msgctxt "rotationtabpage|FT_POS_Y"
msgid "Position _Y:"
msgstr ""
-#: cui/uiconfig/ui/rotationtabpage.ui:116
+#: cui/uiconfig/ui/rotationtabpage.ui:123
msgctxt "rotationtabpage|FT_POSPRESETS"
msgid "_Default settings:"
msgstr ""
-#: cui/uiconfig/ui/rotationtabpage.ui:130
+#: cui/uiconfig/ui/rotationtabpage.ui:151
msgctxt "rotationtabpage|CTL_RECT|tooltip_text"
msgid "Rotation point"
msgstr ""
-#: cui/uiconfig/ui/rotationtabpage.ui:155
+#: cui/uiconfig/ui/rotationtabpage.ui:178
msgctxt "rotationtabpage|label1"
msgid "Pivot Point"
msgstr ""
-#: cui/uiconfig/ui/rotationtabpage.ui:197
+#: cui/uiconfig/ui/rotationtabpage.ui:220
msgctxt "rotationtabpage|FT_ANGLE"
msgid "_Angle:"
msgstr ""
-#: cui/uiconfig/ui/rotationtabpage.ui:238
+#: cui/uiconfig/ui/rotationtabpage.ui:263
msgctxt "rotationtabpage|FT_ANGLEPRESETS"
msgid "Default _settings:"
msgstr ""
-#: cui/uiconfig/ui/rotationtabpage.ui:252
+#: cui/uiconfig/ui/rotationtabpage.ui:287
msgctxt "rotationtabpage|CTL_ANGLE|tooltip_text"
msgid "Rotation Angle"
msgstr ""
-#: cui/uiconfig/ui/rotationtabpage.ui:277
+#: cui/uiconfig/ui/rotationtabpage.ui:314
msgctxt "rotationtabpage|label2"
msgid "Rotation Angle"
msgstr ""
@@ -10809,52 +10809,52 @@ msgctxt "similaritysearchdialog|relaxbox"
msgid "_Combine"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:50
+#: cui/uiconfig/ui/slantcornertabpage.ui:70
msgctxt "slantcornertabpage|label5"
msgid "_X:"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:88
+#: cui/uiconfig/ui/slantcornertabpage.ui:110
msgctxt "slantcornertabpage|label6"
msgid "_Y:"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:125
+#: cui/uiconfig/ui/slantcornertabpage.ui:149
msgctxt "slantcornertabpage|label3"
msgid "Control Point 1"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:159
+#: cui/uiconfig/ui/slantcornertabpage.ui:183
msgctxt "slantcornertabpage|FT_RADIUS"
msgid "_Radius:"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:189
+#: cui/uiconfig/ui/slantcornertabpage.ui:214
msgctxt "slantcornertabpage|label1"
msgid "Corner Radius"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:223
+#: cui/uiconfig/ui/slantcornertabpage.ui:248
msgctxt "slantcornertabpage|FT_ANGLE"
msgid "_Angle:"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:253
+#: cui/uiconfig/ui/slantcornertabpage.ui:279
msgctxt "slantcornertabpage|label2"
msgid "Slant"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:294
+#: cui/uiconfig/ui/slantcornertabpage.ui:320
msgctxt "slantcornertabpage|label4"
msgid "_X:"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:332
+#: cui/uiconfig/ui/slantcornertabpage.ui:360
msgctxt "slantcornertabpage|label7"
msgid "_Y:"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:369
+#: cui/uiconfig/ui/slantcornertabpage.ui:399
msgctxt "slantcornertabpage|label8"
msgid "Control Point 2"
msgstr ""
@@ -11140,115 +11140,115 @@ msgctxt "storedwebconnectiondialog|change"
msgid "_Change Password..."
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:74
+#: cui/uiconfig/ui/swpossizepage.ui:85
msgctxt "swpossizepage|widthft"
msgid "_Width:"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:111
+#: cui/uiconfig/ui/swpossizepage.ui:123
msgctxt "swpossizepage|heightft"
msgid "H_eight:"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:128
+#: cui/uiconfig/ui/swpossizepage.ui:141
msgctxt "swpossizepage|ratio"
msgid "_Keep ratio"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:149
+#: cui/uiconfig/ui/swpossizepage.ui:162
#, fuzzy
msgctxt "swpossizepage|label2"
msgid "Size"
msgstr "angissuseq"
-#: cui/uiconfig/ui/swpossizepage.ui:205
+#: cui/uiconfig/ui/swpossizepage.ui:218
msgctxt "swpossizepage|topage"
msgid "To _page"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:222
+#: cui/uiconfig/ui/swpossizepage.ui:234
msgctxt "swpossizepage|topara"
msgid "To paragrap_h"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:238
+#: cui/uiconfig/ui/swpossizepage.ui:250
msgctxt "swpossizepage|tochar"
msgid "To cha_racter"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:254
+#: cui/uiconfig/ui/swpossizepage.ui:266
msgctxt "swpossizepage|aschar"
msgid "_As character"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:270
+#: cui/uiconfig/ui/swpossizepage.ui:282
msgctxt "swpossizepage|toframe"
msgid "To _frame"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:292
+#: cui/uiconfig/ui/swpossizepage.ui:304
msgctxt "swpossizepage|label1"
msgid "Anchor"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:333
+#: cui/uiconfig/ui/swpossizepage.ui:344
msgctxt "swpossizepage|horiposft"
msgid "Hori_zontal:"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:347
+#: cui/uiconfig/ui/swpossizepage.ui:358
msgctxt "swpossizepage|horibyft"
msgid "b_y:"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:361
+#: cui/uiconfig/ui/swpossizepage.ui:372
msgctxt "swpossizepage|vertbyft"
msgid "_by:"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:375
+#: cui/uiconfig/ui/swpossizepage.ui:386
msgctxt "swpossizepage|horitoft"
msgid "_to:"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:421
+#: cui/uiconfig/ui/swpossizepage.ui:433
msgctxt "swpossizepage|vertposft"
msgid "_Vertical:"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:457
+#: cui/uiconfig/ui/swpossizepage.ui:470
msgctxt "swpossizepage|verttoft"
msgid "t_o:"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:478
+#: cui/uiconfig/ui/swpossizepage.ui:492
msgctxt "swpossizepage|mirror"
msgid "_Mirror on even pages"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:495
+#: cui/uiconfig/ui/swpossizepage.ui:509
msgctxt "swpossizepage|followtextflow"
msgid "Follow te_xt flow"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:518
+#: cui/uiconfig/ui/swpossizepage.ui:532
#, fuzzy
msgctxt "swpossizepage|label11"
msgid "Position"
msgstr "sumiiffik"
-#: cui/uiconfig/ui/swpossizepage.ui:549
+#: cui/uiconfig/ui/swpossizepage.ui:563
#, fuzzy
msgctxt "swpossizepage|pos"
msgid "Positio_n"
msgstr "sumiiffik"
-#: cui/uiconfig/ui/swpossizepage.ui:565
+#: cui/uiconfig/ui/swpossizepage.ui:579
msgctxt "swpossizepage|size"
msgid "_Size"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:587
+#: cui/uiconfig/ui/swpossizepage.ui:601
msgctxt "swpossizepage|label3"
msgid "Protect"
msgstr ""
@@ -11441,12 +11441,12 @@ msgctxt "textattrtabpage|label2"
msgid "Spacing to Borders"
msgstr ""
-#: cui/uiconfig/ui/textattrtabpage.ui:425
+#: cui/uiconfig/ui/textattrtabpage.ui:423
msgctxt "textattrtabpage|TSB_FULL_WIDTH"
msgid "Full _width"
msgstr ""
-#: cui/uiconfig/ui/textattrtabpage.ui:448
+#: cui/uiconfig/ui/textattrtabpage.ui:446
msgctxt "textattrtabpage|label3"
msgid "Text Anchor"
msgstr ""
diff --git a/source/kl/filter/source/config/fragments/filters.po b/source/kl/filter/source/config/fragments/filters.po
index 4969f92c450..6758a35aff4 100644
--- a/source/kl/filter/source/config/fragments/filters.po
+++ b/source/kl/filter/source/config/fragments/filters.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-16 16:54+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2016-12-03 03:14+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -464,8 +464,8 @@ msgctxt ""
"MS Word 2003 XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Word 2003 XML"
-msgstr "Microsoft Word 2003 XML"
+msgid "Word 2003 XML"
+msgstr ""
#: MS_Word_2007_XML.xcu
msgctxt ""
@@ -1284,7 +1284,7 @@ msgctxt ""
"Calc MS Excel 2007 VBA XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Excel 2007-2016 XML (macro enabled)"
+msgid "Excel 2007–2019 (macro-enabled)"
msgstr ""
#: calc_MS_Excel_2007_XML.xcu
diff --git a/source/kl/filter/source/config/fragments/types.po b/source/kl/filter/source/config/fragments/types.po
index 7ab399a1d8a..b83aea9d9ee 100644
--- a/source/kl/filter/source/config/fragments/types.po
+++ b/source/kl/filter/source/config/fragments/types.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-08 15:11+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2015-11-11 21:00+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -293,8 +293,8 @@ msgctxt ""
"writer_MS_Word_2003_XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Word 2003 XML"
-msgstr "Microsoft Word 2003 XML"
+msgid "Word 2003 XML"
+msgstr ""
#: writer_MS_Word_2007_XML.xcu
msgctxt ""
diff --git a/source/kl/fpicker/messages.po b/source/kl/fpicker/messages.po
index b0526b08c23..7dc908511bf 100644
--- a/source/kl/fpicker/messages.po
+++ b/source/kl/fpicker/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+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"
@@ -266,14 +266,13 @@ msgstr ""
#: fpicker/uiconfig/ui/foldernamedialog.ui:8
msgctxt "foldernamedialog|FolderNameDialog"
-msgid "Folder Name ?"
+msgid "Folder Name"
msgstr ""
#: fpicker/uiconfig/ui/foldernamedialog.ui:91
-#, fuzzy
msgctxt "foldernamedialog|label2"
-msgid "Na_me"
-msgstr "Ateq"
+msgid "Na_me:"
+msgstr ""
#: fpicker/uiconfig/ui/foldernamedialog.ui:122
msgctxt "foldernamedialog|label1"
diff --git a/source/kl/officecfg/registry/data/org/openoffice/Office/UI.po b/source/kl/officecfg/registry/data/org/openoffice/Office/UI.po
index c46caa878dc..99424f7b5c6 100644
--- a/source/kl/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/kl/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-22 13:17+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2016-05-25 13:24+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -26717,7 +26717,7 @@ msgctxt ""
"..WriterCommands.UserInterface.Commands..uno:TextAttributes\n"
"Label\n"
"value.text"
-msgid "Text Attributes"
+msgid "Text Attributes..."
msgstr ""
#: WriterCommands.xcu
diff --git a/source/kl/readlicense_oo/docs.po b/source/kl/readlicense_oo/docs.po
index 8c3ab6a40dd..5a19ad01028 100644
--- a/source/kl/readlicense_oo/docs.po
+++ b/source/kl/readlicense_oo/docs.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-04-17 15:54+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2016-03-11 09:04+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -117,7 +117,7 @@ msgctxt ""
"readme.xrm\n"
"macxiOSX\n"
"readmeitem.text"
-msgid "MacOSX 10.8 (Mountain Lion) or higher"
+msgid "MacOSX 10.9 (Mavericks) or higher"
msgstr ""
#: readme.xrm
diff --git a/source/kl/sc/messages.po b/source/kl/sc/messages.po
index 7034b9b7c18..5c7f850efbf 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-12 14:40+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"
@@ -1859,16 +1859,21 @@ msgid "Nested arrays are not supported."
msgstr ""
#: sc/inc/globstr.hrc:390
+msgctxt "STR_ERR_LONG_BAD_ARRAY_CONTENT"
+msgid "Unsupported inline array content."
+msgstr ""
+
+#: sc/inc/globstr.hrc:391
msgctxt "STR_UNDO_TEXTTOCOLUMNS"
msgid "Text to Columns"
msgstr ""
-#: sc/inc/globstr.hrc:391
+#: sc/inc/globstr.hrc:392
msgctxt "STR_DOC_UPDATED"
msgid "Your spreadsheet has been updated with changes saved by other users."
msgstr ""
-#: sc/inc/globstr.hrc:392
+#: sc/inc/globstr.hrc:393
msgctxt "STR_DOC_WILLBESAVED"
msgid ""
"The spreadsheet must be saved now to activate sharing mode.\n"
@@ -1876,7 +1881,7 @@ msgid ""
"Do you want to continue?"
msgstr ""
-#: sc/inc/globstr.hrc:393
+#: sc/inc/globstr.hrc:394
msgctxt "STR_DOC_WILLNOTBESAVED"
msgid ""
"Already resolved merge conflicts will be lost and your changes to the shared spreadsheet will not be saved.\n"
@@ -1884,7 +1889,7 @@ msgid ""
"Do you want to continue?"
msgstr ""
-#: sc/inc/globstr.hrc:394
+#: sc/inc/globstr.hrc:395
msgctxt "STR_DOC_DISABLESHARED"
msgid ""
"Disabling shared mode of a spreadsheet hinders all other users of the shared spreadsheet to merge back their work.\n"
@@ -1892,7 +1897,7 @@ msgid ""
"Do you want to continue?"
msgstr ""
-#: sc/inc/globstr.hrc:395
+#: sc/inc/globstr.hrc:396
msgctxt "STR_DOC_NOLONGERSHARED"
msgid ""
"This spreadsheet is no longer in shared mode.\n"
@@ -1900,7 +1905,7 @@ msgid ""
"Save your spreadsheet to a separate file and merge your changes to the shared spreadsheet manually."
msgstr ""
-#: sc/inc/globstr.hrc:396
+#: sc/inc/globstr.hrc:397
msgctxt "STR_FILE_LOCKED_TRY_LATER"
msgid ""
"The shared spreadsheet file is locked due to a merge in progress by user: '%1'\n"
@@ -1908,7 +1913,7 @@ msgid ""
"Sharing mode of a locked file cannot be disabled. Try again later."
msgstr ""
-#: sc/inc/globstr.hrc:397
+#: sc/inc/globstr.hrc:398
msgctxt "STR_FILE_LOCKED_SAVE_LATER"
msgid ""
"The shared spreadsheet file is locked due to a merge in progress by user: '%1'\n"
@@ -1916,149 +1921,149 @@ msgid ""
"Try again later to save your changes."
msgstr ""
-#: sc/inc/globstr.hrc:398
+#: sc/inc/globstr.hrc:399
msgctxt "STR_UNKNOWN_USER"
msgid "Unknown User"
msgstr ""
-#: sc/inc/globstr.hrc:399
+#: sc/inc/globstr.hrc:400
msgctxt "STR_SHAPE_AUTOSHAPE"
msgid "AutoShape"
msgstr ""
-#: sc/inc/globstr.hrc:400
+#: sc/inc/globstr.hrc:401
msgctxt "STR_SHAPE_RECTANGLE"
msgid "Rectangle"
msgstr ""
-#: sc/inc/globstr.hrc:401
+#: sc/inc/globstr.hrc:402
#, fuzzy
msgctxt "STR_SHAPE_LINE"
msgid "Line"
msgstr "titarneq"
-#: sc/inc/globstr.hrc:402
+#: sc/inc/globstr.hrc:403
msgctxt "STR_SHAPE_OVAL"
msgid "Oval"
msgstr ""
-#: sc/inc/globstr.hrc:403
+#: sc/inc/globstr.hrc:404
#, fuzzy
msgctxt "STR_FORM_BUTTON"
msgid "Button"
msgstr "attataasaq"
-#: sc/inc/globstr.hrc:404
+#: sc/inc/globstr.hrc:405
msgctxt "STR_FORM_CHECKBOX"
msgid "Check Box"
msgstr ""
-#: sc/inc/globstr.hrc:405
+#: sc/inc/globstr.hrc:406
msgctxt "STR_FORM_OPTIONBUTTON"
msgid "Option Button"
msgstr ""
-#: sc/inc/globstr.hrc:406
+#: sc/inc/globstr.hrc:407
msgctxt "STR_FORM_LABEL"
msgid "Label"
msgstr ""
-#: sc/inc/globstr.hrc:407
+#: sc/inc/globstr.hrc:408
msgctxt "STR_FORM_LISTBOX"
msgid "List Box"
msgstr ""
-#: sc/inc/globstr.hrc:408
+#: sc/inc/globstr.hrc:409
msgctxt "STR_FORM_GROUPBOX"
msgid "Group Box"
msgstr ""
-#: sc/inc/globstr.hrc:409
+#: sc/inc/globstr.hrc:410
msgctxt "STR_FORM_DROPDOWN"
msgid "Drop Down"
msgstr ""
-#: sc/inc/globstr.hrc:410
+#: sc/inc/globstr.hrc:411
msgctxt "STR_FORM_SPINNER"
msgid "Spinner"
msgstr ""
-#: sc/inc/globstr.hrc:411
+#: sc/inc/globstr.hrc:412
msgctxt "STR_FORM_SCROLLBAR"
msgid "Scroll Bar"
msgstr ""
-#: sc/inc/globstr.hrc:412
+#: sc/inc/globstr.hrc:413
msgctxt "STR_STYLE_FAMILY_CELL"
msgid "Cell Styles"
msgstr ""
-#: sc/inc/globstr.hrc:413
+#: sc/inc/globstr.hrc:414
msgctxt "STR_STYLE_FAMILY_PAGE"
msgid "Page Styles"
msgstr ""
-#: sc/inc/globstr.hrc:414
+#: sc/inc/globstr.hrc:415
msgctxt "STR_ERR_DATAPILOTSOURCE"
msgid "Pivot table source data is invalid."
msgstr ""
-#: sc/inc/globstr.hrc:415
+#: sc/inc/globstr.hrc:416
msgctxt "STR_OPTIONS_WARN_SEPARATORS"
msgid "Because the current formula separator settings conflict with the locale, the formula separators have been reset to their default values."
msgstr ""
-#: sc/inc/globstr.hrc:416
+#: sc/inc/globstr.hrc:417
msgctxt "STR_UNDO_INSERT_CURRENT_DATE"
msgid "Insert Current Date"
msgstr ""
-#: sc/inc/globstr.hrc:417
+#: sc/inc/globstr.hrc:418
msgctxt "STR_UNDO_INSERT_CURRENT_TIME"
msgid "Insert Current Time"
msgstr ""
-#: sc/inc/globstr.hrc:418
+#: sc/inc/globstr.hrc:419
msgctxt "STR_MANAGE_NAMES"
msgid "Manage Names..."
msgstr ""
-#: sc/inc/globstr.hrc:419
+#: sc/inc/globstr.hrc:420
msgctxt "STR_HEADER_NAME"
msgid "Name"
msgstr "Ateq"
-#: sc/inc/globstr.hrc:420
+#: sc/inc/globstr.hrc:421
msgctxt "STR_HEADER_RANGE_OR_EXPR"
msgid "Range or formula expression"
msgstr ""
-#: sc/inc/globstr.hrc:421
+#: sc/inc/globstr.hrc:422
msgctxt "STR_HEADER_SCOPE"
msgid "Scope"
msgstr ""
-#: sc/inc/globstr.hrc:422
+#: sc/inc/globstr.hrc:423
msgctxt "STR_MULTI_SELECT"
msgid "(multiple)"
msgstr ""
-#: sc/inc/globstr.hrc:423
+#: sc/inc/globstr.hrc:424
msgctxt "STR_GLOBAL_SCOPE"
msgid "Document (Global)"
msgstr ""
-#: sc/inc/globstr.hrc:424
+#: sc/inc/globstr.hrc:425
msgctxt "STR_ERR_NAME_EXISTS"
msgid "Invalid name. Already in use for the selected scope."
msgstr ""
-#: sc/inc/globstr.hrc:425
+#: sc/inc/globstr.hrc:426
msgctxt "STR_ERR_NAME_INVALID"
msgid "Invalid name. Only use letters, numbers and underscore."
msgstr ""
-#: sc/inc/globstr.hrc:426
+#: sc/inc/globstr.hrc:427
msgctxt "STR_UNSAVED_EXT_REF"
msgid ""
"This Document contains external references to unsaved documents.\n"
@@ -2066,218 +2071,218 @@ msgid ""
"Do you want to continue?"
msgstr ""
-#: sc/inc/globstr.hrc:427
+#: sc/inc/globstr.hrc:428
msgctxt "STR_CLOSE_WITH_UNSAVED_REFS"
msgid "This Document is referenced by another document and not yet saved. Closing it without saving will result in data loss."
msgstr ""
-#: sc/inc/globstr.hrc:428
+#: sc/inc/globstr.hrc:429
msgctxt "STR_HEADER_RANGE"
msgid "Range"
msgstr ""
-#: sc/inc/globstr.hrc:429
+#: sc/inc/globstr.hrc:430
msgctxt "STR_HEADER_COND"
msgid "First Condition"
msgstr ""
-#: sc/inc/globstr.hrc:430
+#: sc/inc/globstr.hrc:431
msgctxt "STR_COND_CONDITION"
msgid "Cell value is"
msgstr ""
-#: sc/inc/globstr.hrc:431
+#: sc/inc/globstr.hrc:432
msgctxt "STR_COND_COLORSCALE"
msgid "ColorScale"
msgstr ""
-#: sc/inc/globstr.hrc:432
+#: sc/inc/globstr.hrc:433
msgctxt "STR_COND_DATABAR"
msgid "DataBar"
msgstr ""
-#: sc/inc/globstr.hrc:433
+#: sc/inc/globstr.hrc:434
msgctxt "STR_COND_ICONSET"
msgid "IconSet"
msgstr ""
-#: sc/inc/globstr.hrc:434
+#: sc/inc/globstr.hrc:435
msgctxt "STR_COND_BETWEEN"
msgid "between"
msgstr ""
-#: sc/inc/globstr.hrc:435
+#: sc/inc/globstr.hrc:436
msgctxt "STR_COND_NOTBETWEEN"
msgid "not between"
msgstr ""
-#: sc/inc/globstr.hrc:436
+#: sc/inc/globstr.hrc:437
#, fuzzy
msgctxt "STR_COND_UNIQUE"
msgid "unique"
msgstr "asseqanngitsoq"
-#: sc/inc/globstr.hrc:437
+#: sc/inc/globstr.hrc:438
msgctxt "STR_COND_DUPLICATE"
msgid "duplicate"
msgstr ""
-#: sc/inc/globstr.hrc:438
+#: sc/inc/globstr.hrc:439
msgctxt "STR_COND_FORMULA"
msgid "Formula is"
msgstr ""
-#: sc/inc/globstr.hrc:439
+#: sc/inc/globstr.hrc:440
msgctxt "STR_COND_TOP10"
msgid "Top Elements"
msgstr ""
-#: sc/inc/globstr.hrc:440
+#: sc/inc/globstr.hrc:441
msgctxt "STR_COND_BOTTOM10"
msgid "Bottom Elements"
msgstr ""
-#: sc/inc/globstr.hrc:441
+#: sc/inc/globstr.hrc:442
msgctxt "STR_COND_TOP_PERCENT"
msgid "Top Percent"
msgstr ""
-#: sc/inc/globstr.hrc:442
+#: sc/inc/globstr.hrc:443
msgctxt "STR_COND_DATE"
msgid "Date is"
msgstr ""
-#: sc/inc/globstr.hrc:443
+#: sc/inc/globstr.hrc:444
msgctxt "STR_COND_BOTTOM_PERCENT"
msgid "Bottom Percent"
msgstr ""
-#: sc/inc/globstr.hrc:444
+#: sc/inc/globstr.hrc:445
msgctxt "STR_COND_ABOVE_AVERAGE"
msgid "Above Average"
msgstr ""
-#: sc/inc/globstr.hrc:445
+#: sc/inc/globstr.hrc:446
msgctxt "STR_COND_BELOW_AVERAGE"
msgid "Below Average"
msgstr ""
-#: sc/inc/globstr.hrc:446
+#: sc/inc/globstr.hrc:447
msgctxt "STR_COND_ABOVE_EQUAL_AVERAGE"
msgid "Above or equal Average"
msgstr ""
-#: sc/inc/globstr.hrc:447
+#: sc/inc/globstr.hrc:448
msgctxt "STR_COND_BELOW_EQUAL_AVERAGE"
msgid "Below or equal Average"
msgstr ""
-#: sc/inc/globstr.hrc:448
+#: sc/inc/globstr.hrc:449
msgctxt "STR_COND_ERROR"
msgid "an Error code"
msgstr ""
-#: sc/inc/globstr.hrc:449
+#: sc/inc/globstr.hrc:450
msgctxt "STR_COND_NOERROR"
msgid "not an Error code"
msgstr ""
-#: sc/inc/globstr.hrc:450
+#: sc/inc/globstr.hrc:451
msgctxt "STR_COND_BEGINS_WITH"
msgid "Begins with"
msgstr ""
-#: sc/inc/globstr.hrc:451
+#: sc/inc/globstr.hrc:452
msgctxt "STR_COND_ENDS_WITH"
msgid "Ends with"
msgstr ""
-#: sc/inc/globstr.hrc:452
+#: sc/inc/globstr.hrc:453
msgctxt "STR_COND_CONTAINS"
msgid "Contains"
msgstr ""
-#: sc/inc/globstr.hrc:453
+#: sc/inc/globstr.hrc:454
msgctxt "STR_COND_NOT_CONTAINS"
msgid "Not Contains"
msgstr ""
-#: sc/inc/globstr.hrc:454
+#: sc/inc/globstr.hrc:455
msgctxt "STR_COND_TODAY"
msgid "today"
msgstr ""
-#: sc/inc/globstr.hrc:455
+#: sc/inc/globstr.hrc:456
msgctxt "STR_COND_YESTERDAY"
msgid "yesterday"
msgstr ""
-#: sc/inc/globstr.hrc:456
+#: sc/inc/globstr.hrc:457
msgctxt "STR_COND_TOMORROW"
msgid "tomorrow"
msgstr ""
-#: sc/inc/globstr.hrc:457
+#: sc/inc/globstr.hrc:458
msgctxt "STR_COND_LAST7DAYS"
msgid "in the last 7 days"
msgstr ""
-#: sc/inc/globstr.hrc:458
+#: sc/inc/globstr.hrc:459
msgctxt "STR_COND_THISWEEK"
msgid "this week"
msgstr ""
-#: sc/inc/globstr.hrc:459
+#: sc/inc/globstr.hrc:460
msgctxt "STR_COND_LASTWEEK"
msgid "last week"
msgstr ""
-#: sc/inc/globstr.hrc:460
+#: sc/inc/globstr.hrc:461
msgctxt "STR_COND_NEXTWEEK"
msgid "next week"
msgstr ""
-#: sc/inc/globstr.hrc:461
+#: sc/inc/globstr.hrc:462
msgctxt "STR_COND_THISMONTH"
msgid "this month"
msgstr ""
-#: sc/inc/globstr.hrc:462
+#: sc/inc/globstr.hrc:463
msgctxt "STR_COND_LASTMONTH"
msgid "last month"
msgstr ""
-#: sc/inc/globstr.hrc:463
+#: sc/inc/globstr.hrc:464
msgctxt "STR_COND_NEXTMONTH"
msgid "next month"
msgstr ""
-#: sc/inc/globstr.hrc:464
+#: sc/inc/globstr.hrc:465
msgctxt "STR_COND_THISYEAR"
msgid "this year"
msgstr ""
-#: sc/inc/globstr.hrc:465
+#: sc/inc/globstr.hrc:466
msgctxt "STR_COND_LASTYEAR"
msgid "last year"
msgstr ""
-#: sc/inc/globstr.hrc:466
+#: sc/inc/globstr.hrc:467
msgctxt "STR_COND_NEXTYEAR"
msgid "next year"
msgstr ""
-#: sc/inc/globstr.hrc:467
+#: sc/inc/globstr.hrc:468
msgctxt "STR_COND_AND"
msgid "and"
msgstr ""
-#: sc/inc/globstr.hrc:468
+#: sc/inc/globstr.hrc:469
msgctxt "STR_ERR_CONDFORMAT_PROTECTED"
msgid "Conditional Formats can not be created, deleted or changed in protected sheets."
msgstr ""
-#: sc/inc/globstr.hrc:469
+#: sc/inc/globstr.hrc:470
msgctxt "STR_EDIT_EXISTING_COND_FORMATS"
msgid ""
"The selected cell already contains conditional formatting. You can either edit the existing conditional format or you define a new overlapping conditional format.\n"
@@ -2285,7 +2290,7 @@ msgid ""
" Do you want to edit the existing conditional format?"
msgstr ""
-#: sc/inc/globstr.hrc:470
+#: sc/inc/globstr.hrc:471
msgctxt "STR_QUERY_FORMULA_RECALC_ONLOAD_ODS"
msgid ""
"This document was last saved by an application other than %PRODUCTNAME. Some formula cells may produce different results when recalculated.\n"
@@ -2293,7 +2298,7 @@ msgid ""
"Do you want to recalculate all formula cells in this document now?"
msgstr ""
-#: sc/inc/globstr.hrc:471
+#: sc/inc/globstr.hrc:472
msgctxt "STR_QUERY_FORMULA_RECALC_ONLOAD_XLS"
msgid ""
"This document was last saved by Excel. Some formula cells may produce different results when recalculated.\n"
@@ -2301,77 +2306,77 @@ msgid ""
"Do you want to recalculate all formula cells now?"
msgstr ""
-#: sc/inc/globstr.hrc:472
+#: sc/inc/globstr.hrc:473
msgctxt "STR_NO_INSERT_DELETE_OVER_PIVOT_TABLE"
msgid "You cannot insert or delete cells when the affected range intersects with pivot table."
msgstr ""
-#: sc/inc/globstr.hrc:473
+#: sc/inc/globstr.hrc:474
msgctxt "STR_DPFIELD_GROUP_BY_SECONDS"
msgid "Seconds"
msgstr ""
-#: sc/inc/globstr.hrc:474
+#: sc/inc/globstr.hrc:475
msgctxt "STR_DPFIELD_GROUP_BY_MINUTES"
msgid "Minutes"
msgstr ""
-#: sc/inc/globstr.hrc:475
+#: sc/inc/globstr.hrc:476
msgctxt "STR_DPFIELD_GROUP_BY_HOURS"
msgid "Hours"
msgstr ""
-#: sc/inc/globstr.hrc:476
+#: sc/inc/globstr.hrc:477
msgctxt "STR_DPFIELD_GROUP_BY_DAYS"
msgid "Days"
msgstr ""
-#: sc/inc/globstr.hrc:477
+#: sc/inc/globstr.hrc:478
msgctxt "STR_DPFIELD_GROUP_BY_MONTHS"
msgid "Months"
msgstr ""
-#: sc/inc/globstr.hrc:478
+#: sc/inc/globstr.hrc:479
msgctxt "STR_DPFIELD_GROUP_BY_QUARTERS"
msgid "Quarters"
msgstr ""
-#: sc/inc/globstr.hrc:479
+#: sc/inc/globstr.hrc:480
msgctxt "STR_DPFIELD_GROUP_BY_YEARS"
msgid "Years"
msgstr ""
-#: sc/inc/globstr.hrc:480
+#: sc/inc/globstr.hrc:481
msgctxt "STR_INVALIDVAL"
msgid "Invalid target value."
msgstr ""
-#: sc/inc/globstr.hrc:481
+#: sc/inc/globstr.hrc:482
msgctxt "STR_INVALIDVAR"
msgid "Undefined name for variable cell."
msgstr ""
-#: sc/inc/globstr.hrc:482
+#: sc/inc/globstr.hrc:483
msgctxt "STR_INVALIDFORM"
msgid "Undefined name as formula cell."
msgstr ""
-#: sc/inc/globstr.hrc:483
+#: sc/inc/globstr.hrc:484
msgctxt "STR_NOFORMULA"
msgid "Formula cell must contain a formula."
msgstr ""
-#: sc/inc/globstr.hrc:484
+#: sc/inc/globstr.hrc:485
msgctxt "STR_INVALIDINPUT"
msgid "Invalid input."
msgstr ""
-#: sc/inc/globstr.hrc:485
+#: sc/inc/globstr.hrc:486
msgctxt "STR_INVALIDCONDITION"
msgid "Invalid condition."
msgstr ""
-#: sc/inc/globstr.hrc:486
+#: sc/inc/globstr.hrc:487
msgctxt "STR_QUERYREMOVE"
msgid ""
"Should the entry\n"
@@ -2379,136 +2384,136 @@ msgid ""
"be deleted?"
msgstr ""
-#: sc/inc/globstr.hrc:487
+#: sc/inc/globstr.hrc:488
msgctxt "STR_COPYLIST"
msgid "Copy List"
msgstr ""
-#: sc/inc/globstr.hrc:488
+#: sc/inc/globstr.hrc:489
msgctxt "STR_COPYFROM"
msgid "List from"
msgstr ""
-#: sc/inc/globstr.hrc:489
+#: sc/inc/globstr.hrc:490
msgctxt "STR_COPYERR"
msgid "Cells without text have been ignored."
msgstr ""
-#: sc/inc/globstr.hrc:490
+#: sc/inc/globstr.hrc:491
#, c-format
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%s-click to follow hyperlink:"
msgstr ""
-#: sc/inc/globstr.hrc:491
+#: sc/inc/globstr.hrc:492
msgctxt "STR_CLICKHYPERLINK"
msgid "click to open hyperlink:"
msgstr ""
-#: sc/inc/globstr.hrc:492
+#: sc/inc/globstr.hrc:493
msgctxt "STR_PRINT_PREVIEW_NODATA"
msgid "No Data"
msgstr ""
-#: sc/inc/globstr.hrc:493
+#: sc/inc/globstr.hrc:494
msgctxt "STR_PRINT_PREVIEW_EMPTY_RANGE"
msgid "Print Range Empty"
msgstr ""
-#: sc/inc/globstr.hrc:494
+#: sc/inc/globstr.hrc:495
msgctxt "STR_UNDO_CONDFORMAT"
msgid "Conditional Format"
msgstr ""
-#: sc/inc/globstr.hrc:495
+#: sc/inc/globstr.hrc:496
msgctxt "STR_UNDO_CONDFORMAT_LIST"
msgid "Conditional Formats"
msgstr ""
-#: sc/inc/globstr.hrc:496
+#: sc/inc/globstr.hrc:497
msgctxt "STR_UNDO_FORMULA_TO_VALUE"
msgid "Convert Formula To Value"
msgstr ""
-#: sc/inc/globstr.hrc:497
+#: sc/inc/globstr.hrc:498
msgctxt "STR_UNQUOTED_STRING"
msgid "Strings without quotes are interpreted as column/row labels."
msgstr ""
-#: sc/inc/globstr.hrc:498
+#: sc/inc/globstr.hrc:499
msgctxt "STR_ENTER_VALUE"
msgid "Enter a value!"
msgstr ""
-#: sc/inc/globstr.hrc:499
+#: sc/inc/globstr.hrc:500
msgctxt "STR_TABLE_COUNT"
msgid "Sheet %1 of %2"
msgstr ""
-#: sc/inc/globstr.hrc:500
+#: sc/inc/globstr.hrc:501
msgctxt "STR_FUNCTIONS_FOUND"
msgid "%1 and %2 more"
msgstr ""
-#: sc/inc/globstr.hrc:501
+#: sc/inc/globstr.hrc:502
msgctxt "STR_GENERAL"
msgid "General"
msgstr ""
-#: sc/inc/globstr.hrc:502
+#: sc/inc/globstr.hrc:503
msgctxt "STR_NUMBER"
msgid "Number"
msgstr ""
-#: sc/inc/globstr.hrc:503
+#: sc/inc/globstr.hrc:504
msgctxt "STR_PERCENT"
msgid "Percent"
msgstr ""
-#: sc/inc/globstr.hrc:504
+#: sc/inc/globstr.hrc:505
msgctxt "STR_CURRENCY"
msgid "Currency"
msgstr ""
-#: sc/inc/globstr.hrc:505
+#: sc/inc/globstr.hrc:506
#, fuzzy
msgctxt "STR_DATE"
msgid "Date"
msgstr "ulloq"
-#: sc/inc/globstr.hrc:506
+#: sc/inc/globstr.hrc:507
#, fuzzy
msgctxt "STR_TIME"
msgid "Time"
msgstr "piffissaq"
-#: sc/inc/globstr.hrc:507
+#: sc/inc/globstr.hrc:508
msgctxt "STR_SCIENTIFIC"
msgid "Scientific"
msgstr ""
-#: sc/inc/globstr.hrc:508
+#: sc/inc/globstr.hrc:509
#, fuzzy
msgctxt "STR_FRACTION"
msgid "Fraction"
msgstr "iliuuseq"
-#: sc/inc/globstr.hrc:509
+#: sc/inc/globstr.hrc:510
msgctxt "STR_BOOLEAN_VALUE"
msgid "Boolean Value"
msgstr ""
-#: sc/inc/globstr.hrc:510
+#: sc/inc/globstr.hrc:511
msgctxt "STR_TEXT"
msgid "Text"
msgstr "Allagaq"
-#: sc/inc/globstr.hrc:511
+#: sc/inc/globstr.hrc:512
msgctxt "STR_QUERY_PIVOTTABLE_DELTAB"
msgid "The selected sheet(s) contain source data of related pivot tables that will be lost. Are you sure you want to delete the selected sheet(s)?"
msgstr ""
-#: sc/inc/globstr.hrc:512
+#: sc/inc/globstr.hrc:513
msgctxt "STR_ERR_NAME_INVALID_CELL_REF"
msgid "Invalid name. Reference to a cell, or a range of cells not allowed."
msgstr ""
@@ -10504,7 +10509,7 @@ msgstr "qanoq-issuseq"
#: sc/inc/scfuncs.hrc:3010
msgctxt "SC_OPCODE_T_TEST"
-msgid "Mode specifies the number of distribution tails to return. 1= one-tailed, 2 = two-tailed distribution"
+msgid "Mode specifies the number of distribution tails to return. 1 = one-tailed, 2 = two-tailed distribution"
msgstr ""
#: sc/inc/scfuncs.hrc:3011
@@ -10550,7 +10555,7 @@ msgstr "qanoq-issuseq"
#: sc/inc/scfuncs.hrc:3024
msgctxt "SC_OPCODE_T_TEST_MS"
-msgid "Mode specifies the number of distribution tails to return. 1= one-tailed, 2 = two-tailed distribution"
+msgid "Mode specifies the number of distribution tails to return. 1 = one-tailed, 2 = two-tailed distribution"
msgstr ""
#: sc/inc/scfuncs.hrc:3025
@@ -18186,22 +18191,22 @@ msgctxt "mergecellsdialog|MergeCellsDialog"
msgid "Merge Cells"
msgstr ""
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:81
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:84
msgctxt "mergecellsdialog|label"
msgid "Some cells are not empty."
msgstr ""
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:96
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:99
msgctxt "mergecellsdialog|move-cells-radio"
msgid "Move the contents of the hidden cells into the first cell"
msgstr ""
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:112
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:115
msgctxt "mergecellsdialog|empty-cells-radio"
msgid "Empty the contents of the hidden cells"
msgstr ""
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:128
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:131
msgctxt "mergecellsdialog|keep-content-radio"
msgid "Keep the contents of the hidden cells"
msgstr ""
diff --git a/source/kl/sd/messages.po b/source/kl/sd/messages.po
index 00884233bbe..a923eb36ebe 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+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"
@@ -13,171 +13,171 @@ msgstr ""
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-#: sd/inc/DocumentRenderer.hrc:29
+#: sd/inc/DocumentRenderer.hrc:27
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Slides"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:30
+#: sd/inc/DocumentRenderer.hrc:28
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Handouts"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:31
+#: sd/inc/DocumentRenderer.hrc:29
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Notes"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:32
+#: sd/inc/DocumentRenderer.hrc:30
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Outline"
msgstr "titarneq"
-#: sd/inc/DocumentRenderer.hrc:37
+#: sd/inc/DocumentRenderer.hrc:35
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "According to layout"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:38
+#: sd/inc/DocumentRenderer.hrc:36
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "1"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:39
+#: sd/inc/DocumentRenderer.hrc:37
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "2"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:40
+#: sd/inc/DocumentRenderer.hrc:38
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "3"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:41
+#: sd/inc/DocumentRenderer.hrc:39
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "4"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:42
+#: sd/inc/DocumentRenderer.hrc:40
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "6"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:43
+#: sd/inc/DocumentRenderer.hrc:41
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "9"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:48
+#: sd/inc/DocumentRenderer.hrc:46
msgctxt "STR_IMPRESS_PRINT_UI_ORDER_CHOICES"
msgid "Left to right, then down"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:49
+#: sd/inc/DocumentRenderer.hrc:47
msgctxt "STR_IMPRESS_PRINT_UI_ORDER_CHOICES"
msgid "Top to bottom, then right"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:54
+#: sd/inc/DocumentRenderer.hrc:52
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Original colors"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:55
+#: sd/inc/DocumentRenderer.hrc:53
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Grayscale"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:56
+#: sd/inc/DocumentRenderer.hrc:54
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Black & white"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:61
+#: sd/inc/DocumentRenderer.hrc:59
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Original size"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:62
+#: sd/inc/DocumentRenderer.hrc:60
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Fit to printable page"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:63
+#: sd/inc/DocumentRenderer.hrc:61
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Distribute on multiple sheets of paper"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:64
+#: sd/inc/DocumentRenderer.hrc:62
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Tile sheet of paper with repeated slides"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:69
+#: sd/inc/DocumentRenderer.hrc:67
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Original size"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:70
+#: sd/inc/DocumentRenderer.hrc:68
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Fit to printable page"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:71
+#: sd/inc/DocumentRenderer.hrc:69
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Distribute on multiple sheets of paper"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:72
+#: sd/inc/DocumentRenderer.hrc:70
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Tile sheet of paper with repeated pages"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:77
+#: sd/inc/DocumentRenderer.hrc:75
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "All pages"
msgstr "~Quppernerit tamaasa"
-#: sd/inc/DocumentRenderer.hrc:78
+#: sd/inc/DocumentRenderer.hrc:76
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "Front sides / right pages"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:79
+#: sd/inc/DocumentRenderer.hrc:77
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "Back sides / left pages"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:84
+#: sd/inc/DocumentRenderer.hrc:82
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~All slides"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:85
+#: sd/inc/DocumentRenderer.hrc:83
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~Slides"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:86
+#: sd/inc/DocumentRenderer.hrc:84
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Se~lection"
msgstr "toqqagassat"
-#: sd/inc/DocumentRenderer.hrc:91
+#: sd/inc/DocumentRenderer.hrc:89
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~All pages"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:92
+#: sd/inc/DocumentRenderer.hrc:90
#, fuzzy
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Pa~ges"
msgstr "Qupperneq"
-#: sd/inc/DocumentRenderer.hrc:93
+#: sd/inc/DocumentRenderer.hrc:91
#, fuzzy
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Se~lection"
diff --git a/source/kl/svx/messages.po b/source/kl/svx/messages.po
index 957cfc1d782..47868bd5b17 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: 2018-05-16 16:53+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+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"
@@ -5242,7 +5242,7 @@ msgstr ""
#: svx/uiconfig/ui/safemodedialog.ui:432
msgctxt "safemodedialog|btn_create_zip"
-msgid "Create Zip Archive from User Profile"
+msgid "Archive User Profile"
msgstr ""
#: svx/uiconfig/ui/safemodedialog.ui:445
@@ -8890,8 +8890,8 @@ msgid "Red"
msgstr ""
#: include/svx/strings.hrc:565
-msgctxt "RID_SVXSTR_COLOR_VIOLET"
-msgid "Violet"
+msgctxt "RID_SVXSTR_COLOR_MAGENTA"
+msgid "Magenta"
msgstr ""
#: include/svx/strings.hrc:566
@@ -8959,8 +8959,8 @@ msgid "Light Red"
msgstr ""
#: include/svx/strings.hrc:579
-msgctxt "RID_SVXSTR_COLOR_LIGHTVIOLET"
-msgid "Light Violet"
+msgctxt "RID_SVXSTR_COLOR_LIGHTMAGENTA"
+msgid "Light Magenta"
msgstr ""
#: include/svx/strings.hrc:580
@@ -9025,8 +9025,8 @@ msgid "Dark Red"
msgstr ""
#: include/svx/strings.hrc:593
-msgctxt "RID_SVXSTR_COLOR_DARKVIOLET1"
-msgid "Dark Violet"
+msgctxt "RID_SVXSTR_COLOR_DARKMAGENTA"
+msgid "Dark Magenta"
msgstr ""
#: include/svx/strings.hrc:594
@@ -9061,55 +9061,55 @@ msgstr ""
#. Elements of the Tonal color palette
#: include/svx/strings.hrc:601
+msgctxt "RID_SVXSTR_COLOR_VIOLET"
+msgid "Violet"
+msgstr ""
+
+#: include/svx/strings.hrc:602
msgctxt "RID_SVXSTR_COLOR_VIOLET_OUG"
msgid "Violet (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:602
+#: include/svx/strings.hrc:603
msgctxt "RID_SVXSTR_COLOR_BLUE_OUG"
msgid "Blue (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:603
+#: include/svx/strings.hrc:604
msgctxt "RID_SVXSTR_COLOR_AZURE_OUG"
msgid "Azure (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:604
+#: include/svx/strings.hrc:605
msgctxt "RID_SVXSTR_COLOR_SPRINGGREEN_OUG"
msgid "Spring Green (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:605
+#: include/svx/strings.hrc:606
msgctxt "RID_SVXSTR_COLOR_GREEN_OUG"
msgid "Green (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:606
+#: include/svx/strings.hrc:607
msgctxt "RID_SVXSTR_COLOR_CHARTREUSEGREEN_OUG"
msgid "Chartreuse Green (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:607
+#: include/svx/strings.hrc:608
msgctxt "RID_SVXSTR_COLOR_ORANGE_OUG"
msgid "Orange (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:608
+#: include/svx/strings.hrc:609
msgctxt "RID_SVXSTR_COLOR_RED_OUG"
msgid "Red (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:609
+#: include/svx/strings.hrc:610
msgctxt "RID_SVXSTR_COLOR_ROSE_OUG"
msgid "Rose (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:610
-msgctxt "RID_SVXSTR_COLOR_MAGENTA"
-msgid "Magenta"
-msgstr ""
-
#: include/svx/strings.hrc:611
msgctxt "RID_SVXSTR_COLOR_AZURE"
msgid "Azure"
@@ -12235,12 +12235,12 @@ msgstr ""
#: include/svx/strings.hrc:1273
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_6"
-msgid "Check mark bullets"
+msgid "Cross mark bullets"
msgstr ""
#: include/svx/strings.hrc:1274
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_7"
-msgid "Tick mark bullets"
+msgid "Check mark bullets"
msgstr ""
#: include/svx/strings.hrc:1275
diff --git a/source/kl/sw/messages.po b/source/kl/sw/messages.po
index 22332e794ac..b6e53425cf2 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: 2018-05-22 13:17+0200\n"
+"POT-Creation-Date: 2018-06-12 14:41+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"
@@ -1190,12 +1190,12 @@ msgstr "kaavinneq"
#: sw/inc/strings.hrc:172
msgctxt "STR_POOLCOLL_TOX_ILLUSH"
-msgid "Illustration Index Heading"
+msgid "Figure Index Heading"
msgstr ""
#: sw/inc/strings.hrc:173
msgctxt "STR_POOLCOLL_TOX_ILLUS1"
-msgid "Illustration Index 1"
+msgid "Figure Index 1"
msgstr ""
#: sw/inc/strings.hrc:174
@@ -3654,7 +3654,7 @@ msgstr ""
#: sw/inc/strings.hrc:672
msgctxt "STR_TOX_ILL"
-msgid "Illustration Index"
+msgid "Table of Figures"
msgstr ""
#: sw/inc/strings.hrc:673
@@ -9490,72 +9490,72 @@ msgctxt "footnotepage|label5"
msgid "Continuation Notice"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:49
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:55
msgctxt "footnotesendnotestabpage|ftnntnum"
msgid "_Restart numbering"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:91
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:93
msgctxt "footnotesendnotestabpage|ftnoffset_label"
msgid "_Start at:"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:112
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:111
msgctxt "footnotesendnotestabpage|ftnntnumfmt"
msgid "Custom _format"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:155
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:150
msgctxt "footnotesendnotestabpage|ftnsuffix_label"
msgid "Aft_er:"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:199
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:188
msgctxt "footnotesendnotestabpage|ftnprefix_label"
msgid "Be_fore:"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:228
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:212
msgctxt "footnotesendnotestabpage|ftnntattextend"
msgid "Collec_t at end of text"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:252
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:234
msgctxt "footnotesendnotestabpage|label1"
msgid "Footnotes"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:289
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:271
msgctxt "footnotesendnotestabpage|endntattextend"
msgid "C_ollect at end of section"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:315
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:295
msgctxt "footnotesendnotestabpage|endntnum"
msgid "_Restart numbering"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:357
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:333
msgctxt "footnotesendnotestabpage|endoffset_label"
msgid "_Start at:"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:378
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:351
msgctxt "footnotesendnotestabpage|endntnumfmt"
msgid "_Custom format"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:421
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:390
msgctxt "footnotesendnotestabpage|endsuffix_label"
msgid "Aft_er:"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:465
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:428
msgctxt "footnotesendnotestabpage|endprefix_label"
msgid "Be_fore:"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:500
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:458
msgctxt "footnotesendnotestabpage|label2"
msgid "Endnotes"
msgstr ""
@@ -9586,28 +9586,28 @@ msgctxt "formatsectiondialog|notes"
msgid "Footnotes/Endnotes"
msgstr ""
-#: sw/uiconfig/swriter/ui/formattablepage.ui:63
+#: sw/uiconfig/swriter/ui/formattablepage.ui:77
#, fuzzy
msgctxt "formattablepage|nameft"
msgid "_Name"
msgstr "_Ateq:"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:79
+#: sw/uiconfig/swriter/ui/formattablepage.ui:91
msgctxt "formattablepage|widthft"
msgid "W_idth"
msgstr ""
-#: sw/uiconfig/swriter/ui/formattablepage.ui:110
+#: sw/uiconfig/swriter/ui/formattablepage.ui:120
msgctxt "formattablepage|relwidth"
msgid "Relati_ve"
msgstr ""
-#: sw/uiconfig/swriter/ui/formattablepage.ui:155
+#: sw/uiconfig/swriter/ui/formattablepage.ui:160
msgctxt "formattablepage|label45"
msgid "Properties"
msgstr "Pissutsit"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:194
+#: sw/uiconfig/swriter/ui/formattablepage.ui:195
msgctxt "formattablepage|leftft"
msgid "Lef_t"
msgstr ""
@@ -9617,65 +9617,65 @@ msgctxt "formattablepage|rightft"
msgid "Ri_ght"
msgstr ""
-#: sw/uiconfig/swriter/ui/formattablepage.ui:228
+#: sw/uiconfig/swriter/ui/formattablepage.ui:226
msgctxt "formattablepage|aboveft"
msgid "_Above"
msgstr ""
-#: sw/uiconfig/swriter/ui/formattablepage.ui:245
+#: sw/uiconfig/swriter/ui/formattablepage.ui:241
msgctxt "formattablepage|belowft"
msgid "_Below"
msgstr ""
-#: sw/uiconfig/swriter/ui/formattablepage.ui:320
+#: sw/uiconfig/swriter/ui/formattablepage.ui:311
#, fuzzy
msgctxt "formattablepage|label46"
msgid "Spacing"
msgstr "akunnilersuineq"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:362
+#: sw/uiconfig/swriter/ui/formattablepage.ui:349
#, fuzzy
msgctxt "formattablepage|full"
msgid "A_utomatic"
msgstr "nammineq"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:380
+#: sw/uiconfig/swriter/ui/formattablepage.ui:365
msgctxt "formattablepage|left"
msgid "_Left"
msgstr ""
-#: sw/uiconfig/swriter/ui/formattablepage.ui:398
+#: sw/uiconfig/swriter/ui/formattablepage.ui:381
msgctxt "formattablepage|fromleft"
msgid "_From left"
msgstr ""
-#: sw/uiconfig/swriter/ui/formattablepage.ui:416
+#: sw/uiconfig/swriter/ui/formattablepage.ui:397
msgctxt "formattablepage|right"
msgid "R_ight"
msgstr ""
-#: sw/uiconfig/swriter/ui/formattablepage.ui:435
+#: sw/uiconfig/swriter/ui/formattablepage.ui:413
msgctxt "formattablepage|center"
msgid "_Center"
msgstr ""
-#: sw/uiconfig/swriter/ui/formattablepage.ui:453
+#: sw/uiconfig/swriter/ui/formattablepage.ui:429
msgctxt "formattablepage|free"
msgid "_Manual"
msgstr ""
-#: sw/uiconfig/swriter/ui/formattablepage.ui:478
+#: sw/uiconfig/swriter/ui/formattablepage.ui:452
#, fuzzy
msgctxt "formattablepage|label43"
msgid "Alignment"
msgstr "naligiisitsineq"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:522
+#: sw/uiconfig/swriter/ui/formattablepage.ui:491
msgctxt "formattablepage|label53"
msgid "Text _direction"
msgstr ""
-#: sw/uiconfig/swriter/ui/formattablepage.ui:553
+#: sw/uiconfig/swriter/ui/formattablepage.ui:519
#, fuzzy
msgctxt "formattablepage|label44"
msgid "Properties "
@@ -10042,22 +10042,27 @@ msgctxt "headerfootermenu|insert_pagenumber"
msgid "Insert Page Number"
msgstr ""
-#: sw/uiconfig/swriter/ui/indentpage.ui:52
+#: sw/uiconfig/swriter/ui/headerfootermenu.ui:42
+msgctxt "headerfootermenu|insert_pagecount"
+msgid "Insert Page Count"
+msgstr ""
+
+#: sw/uiconfig/swriter/ui/indentpage.ui:57
msgctxt "indentpage|label1"
msgid "_Before section"
msgstr ""
-#: sw/uiconfig/swriter/ui/indentpage.ui:67
+#: sw/uiconfig/swriter/ui/indentpage.ui:71
msgctxt "indentpage|label3"
msgid "_After section"
msgstr ""
-#: sw/uiconfig/swriter/ui/indentpage.ui:113
+#: sw/uiconfig/swriter/ui/indentpage.ui:115
msgctxt "indentpage|label2"
msgid "Indent"
msgstr ""
-#: sw/uiconfig/swriter/ui/indentpage.ui:142
+#: sw/uiconfig/swriter/ui/indentpage.ui:155
msgctxt "indentpage|preview-atkobject"
msgid "Example"
msgstr ""
@@ -13655,7 +13660,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:68
msgctxt "optcompatpage|format"
-msgid "MS Word-compatible trailing blanks"
+msgid "Word-compatible trailing blanks"
msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:69
@@ -13665,7 +13670,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:70
msgctxt "optcompatpage|format"
-msgid "A database field (e.g., MailMerge) with empty value hides its paragraph"
+msgid "Hide paragraphs of database fields (e.g., mail merge) with an empty value"
msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:71
@@ -16422,126 +16427,126 @@ msgctxt "tableproperties|background"
msgid "Background"
msgstr "tunuliaqut"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:25
-msgctxt "tabletextflowpage|liststore1"
-msgid "Horizontal"
-msgstr ""
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:29
-#, fuzzy
-msgctxt "tabletextflowpage|liststore1"
-msgid "Vertical"
-msgstr "napparissoq"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:33
-msgctxt "tabletextflowpage|liststore1"
-msgid "Use superordinate object settings"
-msgstr ""
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:47
-msgctxt "tabletextflowpage|liststore2"
-msgid "Top"
-msgstr ""
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:51
-msgctxt "tabletextflowpage|liststore2"
-msgid "Centered"
-msgstr ""
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:55
-#, fuzzy
-msgctxt "tabletextflowpage|liststore2"
-msgid "Bottom"
-msgstr "alleq"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:97
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:53
msgctxt "tabletextflowpage|break"
msgid "_Break"
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:112
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:68
#, fuzzy
msgctxt "tabletextflowpage|page"
msgid "_Page"
msgstr "Qupperneq"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:132
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:87
msgctxt "tabletextflowpage|column"
msgid "Col_umn"
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:151
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:106
msgctxt "tabletextflowpage|before"
msgid "Be_fore"
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:171
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:125
msgctxt "tabletextflowpage|after"
msgid "_After"
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:203
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:158
msgctxt "tabletextflowpage|pagestyle"
msgid "With Page St_yle"
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:224
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:177
msgctxt "tabletextflowpage|pagenoft"
msgid "Page _number"
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:257
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:213
msgctxt "tabletextflowpage|pagestylelb-atkobject"
msgid "With Page Style"
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:274
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:230
msgctxt "tabletextflowpage|split"
msgid "Allow _table to split across pages and columns"
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:289
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:245
msgctxt "tabletextflowpage|splitrow"
msgid "Allow row to break a_cross pages and columns"
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:306
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:262
msgctxt "tabletextflowpage|keep"
msgid "_Keep with next paragraph"
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:328
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:284
msgctxt "tabletextflowpage|label40"
msgid "Text _orientation"
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:361
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:298
+msgctxt "tabletextflowpage|liststore1"
+msgid "Horizontal"
+msgstr ""
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:299
+#, fuzzy
+msgctxt "tabletextflowpage|liststore1"
+msgid "Vertical"
+msgstr "napparissoq"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:300
+msgctxt "tabletextflowpage|liststore1"
+msgid "Use superordinate object settings"
+msgstr ""
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:321
msgctxt "tabletextflowpage|headline"
msgid "R_epeat heading"
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:383
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:343
msgctxt "tabletextflowpage|label38"
msgid "The first "
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:396
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:356
#, fuzzy
msgctxt "tabletextflowpage|label39"
msgid "rows"
msgstr "sanileriiaat"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:434
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:395
msgctxt "tabletextflowpage|label35"
msgid "Text Flow"
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:467
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:428
msgctxt "tabletextflowpage|label41"
msgid "_Vertical alignment"
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:495
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:442
+msgctxt "tabletextflowpage|liststore2"
+msgid "Top"
+msgstr ""
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:443
+msgctxt "tabletextflowpage|liststore2"
+msgid "Centered"
+msgstr ""
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:444
+#, fuzzy
+msgctxt "tabletextflowpage|liststore2"
+msgid "Bottom"
+msgstr "alleq"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:460
#, fuzzy
msgctxt "tabletextflowpage|label36"
msgid "Alignment"
@@ -17347,7 +17352,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/tocindexpage.ui:58
msgctxt "tocindexpage|liststore1"
-msgid "Illustration Index"
+msgid "Table of Figures"
msgstr ""
#: sw/uiconfig/swriter/ui/tocindexpage.ui:62
diff --git a/source/kl/writerperfect/messages.po b/source/kl/writerperfect/messages.po
index b31d335f26b..ef075398dd3 100644
--- a/source/kl/writerperfect/messages.po
+++ b/source/kl/writerperfect/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-16 16:54+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+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"
@@ -63,98 +63,98 @@ msgctxt "exportepub|generalft"
msgid "General"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:122
+#: writerperfect/uiconfig/ui/exportepub.ui:121
#, fuzzy
msgctxt "exportepub|versionft"
msgid "Version:"
msgstr "nammineq oqaasertaligaq"
-#: writerperfect/uiconfig/ui/exportepub.ui:139
+#: writerperfect/uiconfig/ui/exportepub.ui:138
msgctxt "exportepub|epub3"
msgid "EPUB 3.0"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:140
+#: writerperfect/uiconfig/ui/exportepub.ui:139
msgctxt "exportepub|epub2"
msgid "EPUB 2.0"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:175
+#: writerperfect/uiconfig/ui/exportepub.ui:174
msgctxt "exportepub|splitft"
msgid "Split method:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:192
+#: writerperfect/uiconfig/ui/exportepub.ui:191
msgctxt "exportepub|splitpage"
msgid "Page break"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:193
+#: writerperfect/uiconfig/ui/exportepub.ui:192
msgctxt "exportepub|splitheading"
msgid "Heading"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:228
+#: writerperfect/uiconfig/ui/exportepub.ui:227
msgctxt "exportepub|layoutft"
msgid "Layout method:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:245
+#: writerperfect/uiconfig/ui/exportepub.ui:244
msgctxt "exportepub|layoutreflowable"
msgid "Reflowable"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:246
+#: writerperfect/uiconfig/ui/exportepub.ui:245
msgctxt "exportepub|layoutfixed"
msgid "Fixed"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:281
+#: writerperfect/uiconfig/ui/exportepub.ui:280
msgctxt "exportepub|coverimageft"
msgid "Custom cover image:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:311
+#: writerperfect/uiconfig/ui/exportepub.ui:310
msgctxt "exportepub|coverbutton"
msgid "Browse..."
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:355
+#: writerperfect/uiconfig/ui/exportepub.ui:354
msgctxt "exportepub|mediadirft"
msgid "Custom media directory:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:385
+#: writerperfect/uiconfig/ui/exportepub.ui:384
msgctxt "exportepub|mediabutton"
msgid "Browse..."
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:429
+#: writerperfect/uiconfig/ui/exportepub.ui:428
msgctxt "exportepub|metadataft"
msgid "Metadata"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:470
+#: writerperfect/uiconfig/ui/exportepub.ui:468
msgctxt "exportepub|identifierft"
msgid "Identifier:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:485
+#: writerperfect/uiconfig/ui/exportepub.ui:483
msgctxt "exportepub|titleft"
msgid "Title:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:511
+#: writerperfect/uiconfig/ui/exportepub.ui:509
msgctxt "exportepub|authorft"
msgid "Author:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:537
+#: writerperfect/uiconfig/ui/exportepub.ui:535
msgctxt "exportepub|languageft"
msgid "Language:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:563
+#: writerperfect/uiconfig/ui/exportepub.ui:561
msgctxt "exportepub|dateft"
msgid "Date:"
msgstr ""
diff --git a/source/km/cui/messages.po b/source/km/cui/messages.po
index f24b81518eb..c7b9f4ae564 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+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"
@@ -10317,97 +10317,97 @@ msgctxt "positionsizedialog|PositionAndSizeDialog"
msgid "Position and Size"
msgstr "ទីតាំង និង​ទំហំ"
-#: cui/uiconfig/ui/positionsizedialog.ui:107
+#: cui/uiconfig/ui/positionsizedialog.ui:136
msgctxt "positionsizedialog|RID_SVXPAGE_POSITION_SIZE"
msgid "Position and Size"
msgstr "ទីតាំង និង​ទំហំ"
-#: cui/uiconfig/ui/positionsizedialog.ui:129
+#: cui/uiconfig/ui/positionsizedialog.ui:182
msgctxt "positionsizedialog|RID_SVXPAGE_SWPOSSIZE"
msgid "Position and Size"
msgstr "ទីតាំង និង​ទំហំ"
-#: cui/uiconfig/ui/positionsizedialog.ui:152
+#: cui/uiconfig/ui/positionsizedialog.ui:229
msgctxt "positionsizedialog|RID_SVXPAGE_ANGLE"
msgid "Rotation"
msgstr "​បង្វិល"
-#: cui/uiconfig/ui/positionsizedialog.ui:175
+#: cui/uiconfig/ui/positionsizedialog.ui:276
msgctxt "positionsizedialog|RID_SVXPAGE_SLANT"
msgid "Slant & Corner Radius"
msgstr "ភាព​ទេរ និង​កាំ​ជ្រុង"
-#: cui/uiconfig/ui/possizetabpage.ui:40
+#: cui/uiconfig/ui/possizetabpage.ui:61
msgctxt "possizetabpage|FT_POS_X"
msgid "Position _X:"
msgstr "ទីតាំង X ៖"
-#: cui/uiconfig/ui/possizetabpage.ui:56
+#: cui/uiconfig/ui/possizetabpage.ui:75
msgctxt "possizetabpage|FT_POS_Y"
msgid "Position _Y:"
msgstr "ទីតាំង Y ៖"
-#: cui/uiconfig/ui/possizetabpage.ui:110
+#: cui/uiconfig/ui/possizetabpage.ui:128
msgctxt "possizetabpage|FT_POSREFERENCE"
msgid "_Base point:"
msgstr "ចំណុច​គោល"
-#: cui/uiconfig/ui/possizetabpage.ui:148
+#: cui/uiconfig/ui/possizetabpage.ui:182
msgctxt "possizetabpage|label1"
msgid "Position"
msgstr "ទីតាំង"
-#: cui/uiconfig/ui/possizetabpage.ui:190
+#: cui/uiconfig/ui/possizetabpage.ui:224
msgctxt "possizetabpage|FT_WIDTH"
msgid "Wi_dth:"
msgstr "ទទឹង​៖"
-#: cui/uiconfig/ui/possizetabpage.ui:206
+#: cui/uiconfig/ui/possizetabpage.ui:238
msgctxt "possizetabpage|FT_HEIGHT"
msgid "H_eight:"
msgstr "កម្ពស់៖"
-#: cui/uiconfig/ui/possizetabpage.ui:247
+#: cui/uiconfig/ui/possizetabpage.ui:276
msgctxt "possizetabpage|CBX_SCALE"
msgid "_Keep ratio"
msgstr "រក្សា​សមាមាត្រ"
-#: cui/uiconfig/ui/possizetabpage.ui:279
+#: cui/uiconfig/ui/possizetabpage.ui:307
msgctxt "possizetabpage|FT_SIZEREFERENCE"
msgid "Base _point:"
msgstr "ចំណុច​គោល៖"
-#: cui/uiconfig/ui/possizetabpage.ui:317
+#: cui/uiconfig/ui/possizetabpage.ui:361
msgctxt "possizetabpage|label2"
msgid "Size"
msgstr "ទំហំ"
-#: cui/uiconfig/ui/possizetabpage.ui:356
+#: cui/uiconfig/ui/possizetabpage.ui:401
msgctxt "possizetabpage|TSB_POSPROTECT"
msgid "Positio_n"
msgstr "ទីតាំង"
-#: cui/uiconfig/ui/possizetabpage.ui:373
+#: cui/uiconfig/ui/possizetabpage.ui:418
msgctxt "possizetabpage|TSB_SIZEPROTECT"
msgid "_Size"
msgstr "ទំហំ "
-#: cui/uiconfig/ui/possizetabpage.ui:397
+#: cui/uiconfig/ui/possizetabpage.ui:441
msgctxt "possizetabpage|label3"
msgid "Protect"
msgstr "ការពារ"
-#: cui/uiconfig/ui/possizetabpage.ui:430
+#: cui/uiconfig/ui/possizetabpage.ui:475
msgctxt "possizetabpage|TSB_AUTOGROW_WIDTH"
msgid "_Fit width to text"
msgstr "តម្រូវ​ទទឹង​ទៅ​អត្ថបទ"
-#: cui/uiconfig/ui/possizetabpage.ui:447
+#: cui/uiconfig/ui/possizetabpage.ui:492
msgctxt "possizetabpage|TSB_AUTOGROW_HEIGHT"
msgid "Fit _height to text"
msgstr "តម្រូវ​កម្ពស់​ទៅ​អត្ថបទ"
-#: cui/uiconfig/ui/possizetabpage.ui:471
+#: cui/uiconfig/ui/possizetabpage.ui:515
msgctxt "possizetabpage|label4"
msgid "Adapt"
msgstr "សម្រួល"
@@ -10618,51 +10618,51 @@ msgctxt "recordnumberdialog|label2"
msgid "go to record"
msgstr "ទៅកាន់​កំណត់​ត្រា"
-#: cui/uiconfig/ui/rotationtabpage.ui:52
+#: cui/uiconfig/ui/rotationtabpage.ui:56
msgctxt "rotationtabpage|FT_POS_X"
msgid "Position _X:"
msgstr "ទីតាំង X ៖"
-#: cui/uiconfig/ui/rotationtabpage.ui:66
+#: cui/uiconfig/ui/rotationtabpage.ui:70
msgctxt "rotationtabpage|FT_POS_Y"
msgid "Position _Y:"
msgstr "ទីតាំង Y ៖"
-#: cui/uiconfig/ui/rotationtabpage.ui:116
+#: cui/uiconfig/ui/rotationtabpage.ui:123
#, fuzzy
msgctxt "rotationtabpage|FT_POSPRESETS"
msgid "_Default settings:"
msgstr "ការ​កំណត់​លំនាំដើម"
-#: cui/uiconfig/ui/rotationtabpage.ui:130
+#: cui/uiconfig/ui/rotationtabpage.ui:151
msgctxt "rotationtabpage|CTL_RECT|tooltip_text"
msgid "Rotation point"
msgstr "ចំណុច​បង្វិល"
-#: cui/uiconfig/ui/rotationtabpage.ui:155
+#: cui/uiconfig/ui/rotationtabpage.ui:178
#, fuzzy
msgctxt "rotationtabpage|label1"
msgid "Pivot Point"
msgstr "ចំណុច​ស្នូល"
-#: cui/uiconfig/ui/rotationtabpage.ui:197
+#: cui/uiconfig/ui/rotationtabpage.ui:220
#, fuzzy
msgctxt "rotationtabpage|FT_ANGLE"
msgid "_Angle:"
msgstr "មុំ"
-#: cui/uiconfig/ui/rotationtabpage.ui:238
+#: cui/uiconfig/ui/rotationtabpage.ui:263
#, fuzzy
msgctxt "rotationtabpage|FT_ANGLEPRESETS"
msgid "Default _settings:"
msgstr "ការ​កំណត់​លំនាំដើម"
-#: cui/uiconfig/ui/rotationtabpage.ui:252
+#: cui/uiconfig/ui/rotationtabpage.ui:287
msgctxt "rotationtabpage|CTL_ANGLE|tooltip_text"
msgid "Rotation Angle"
msgstr "មុំ​បង្វិល"
-#: cui/uiconfig/ui/rotationtabpage.ui:277
+#: cui/uiconfig/ui/rotationtabpage.ui:314
msgctxt "rotationtabpage|label2"
msgid "Rotation Angle"
msgstr "មុំ​បង្វិល"
@@ -11053,55 +11053,55 @@ msgctxt "similaritysearchdialog|relaxbox"
msgid "_Combine"
msgstr "ផ្សំ"
-#: cui/uiconfig/ui/slantcornertabpage.ui:50
+#: cui/uiconfig/ui/slantcornertabpage.ui:70
msgctxt "slantcornertabpage|label5"
msgid "_X:"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:88
+#: cui/uiconfig/ui/slantcornertabpage.ui:110
msgctxt "slantcornertabpage|label6"
msgid "_Y:"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:125
+#: cui/uiconfig/ui/slantcornertabpage.ui:149
msgctxt "slantcornertabpage|label3"
msgid "Control Point 1"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:159
+#: cui/uiconfig/ui/slantcornertabpage.ui:183
#, fuzzy
msgctxt "slantcornertabpage|FT_RADIUS"
msgid "_Radius:"
msgstr "កាំ"
-#: cui/uiconfig/ui/slantcornertabpage.ui:189
+#: cui/uiconfig/ui/slantcornertabpage.ui:214
#, fuzzy
msgctxt "slantcornertabpage|label1"
msgid "Corner Radius"
msgstr "កាំ​ជ្រុង"
-#: cui/uiconfig/ui/slantcornertabpage.ui:223
+#: cui/uiconfig/ui/slantcornertabpage.ui:248
#, fuzzy
msgctxt "slantcornertabpage|FT_ANGLE"
msgid "_Angle:"
msgstr "មុំ"
-#: cui/uiconfig/ui/slantcornertabpage.ui:253
+#: cui/uiconfig/ui/slantcornertabpage.ui:279
msgctxt "slantcornertabpage|label2"
msgid "Slant"
msgstr "ភាព​ទេរ"
-#: cui/uiconfig/ui/slantcornertabpage.ui:294
+#: cui/uiconfig/ui/slantcornertabpage.ui:320
msgctxt "slantcornertabpage|label4"
msgid "_X:"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:332
+#: cui/uiconfig/ui/slantcornertabpage.ui:360
msgctxt "slantcornertabpage|label7"
msgid "_Y:"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:369
+#: cui/uiconfig/ui/slantcornertabpage.ui:399
msgctxt "slantcornertabpage|label8"
msgid "Control Point 2"
msgstr ""
@@ -11393,118 +11393,118 @@ msgctxt "storedwebconnectiondialog|change"
msgid "_Change Password..."
msgstr "ប្ដូរ​ពាក្យសម្ងាត់..."
-#: cui/uiconfig/ui/swpossizepage.ui:74
+#: cui/uiconfig/ui/swpossizepage.ui:85
msgctxt "swpossizepage|widthft"
msgid "_Width:"
msgstr "ទទឹង ៖ "
-#: cui/uiconfig/ui/swpossizepage.ui:111
+#: cui/uiconfig/ui/swpossizepage.ui:123
msgctxt "swpossizepage|heightft"
msgid "H_eight:"
msgstr "កម្ពស់៖"
-#: cui/uiconfig/ui/swpossizepage.ui:128
+#: cui/uiconfig/ui/swpossizepage.ui:141
msgctxt "swpossizepage|ratio"
msgid "_Keep ratio"
msgstr "រក្សា​សមាមាត្រ"
-#: cui/uiconfig/ui/swpossizepage.ui:149
+#: cui/uiconfig/ui/swpossizepage.ui:162
msgctxt "swpossizepage|label2"
msgid "Size"
msgstr "ទំហំ"
-#: cui/uiconfig/ui/swpossizepage.ui:205
+#: cui/uiconfig/ui/swpossizepage.ui:218
msgctxt "swpossizepage|topage"
msgid "To _page"
msgstr "ទៅ​ទំព័រ"
-#: cui/uiconfig/ui/swpossizepage.ui:222
+#: cui/uiconfig/ui/swpossizepage.ui:234
msgctxt "swpossizepage|topara"
msgid "To paragrap_h"
msgstr "ទៅ​កថាខណ្ឌ"
-#: cui/uiconfig/ui/swpossizepage.ui:238
+#: cui/uiconfig/ui/swpossizepage.ui:250
msgctxt "swpossizepage|tochar"
msgid "To cha_racter"
msgstr "ទៅ​តួអក្សរ"
-#: cui/uiconfig/ui/swpossizepage.ui:254
+#: cui/uiconfig/ui/swpossizepage.ui:266
msgctxt "swpossizepage|aschar"
msgid "_As character"
msgstr "ជា​តួអក្សរ"
-#: cui/uiconfig/ui/swpossizepage.ui:270
+#: cui/uiconfig/ui/swpossizepage.ui:282
msgctxt "swpossizepage|toframe"
msgid "To _frame"
msgstr "ទៅ​ស៊ុម"
-#: cui/uiconfig/ui/swpossizepage.ui:292
+#: cui/uiconfig/ui/swpossizepage.ui:304
msgctxt "swpossizepage|label1"
msgid "Anchor"
msgstr "បោះ​យុថ្កា"
-#: cui/uiconfig/ui/swpossizepage.ui:333
+#: cui/uiconfig/ui/swpossizepage.ui:344
#, fuzzy
msgctxt "swpossizepage|horiposft"
msgid "Hori_zontal:"
msgstr "ផ្ដេក "
-#: cui/uiconfig/ui/swpossizepage.ui:347
+#: cui/uiconfig/ui/swpossizepage.ui:358
#, fuzzy
msgctxt "swpossizepage|horibyft"
msgid "b_y:"
msgstr "តាម"
-#: cui/uiconfig/ui/swpossizepage.ui:361
+#: cui/uiconfig/ui/swpossizepage.ui:372
#, fuzzy
msgctxt "swpossizepage|vertbyft"
msgid "_by:"
msgstr "តាម"
-#: cui/uiconfig/ui/swpossizepage.ui:375
+#: cui/uiconfig/ui/swpossizepage.ui:386
#, fuzzy
msgctxt "swpossizepage|horitoft"
msgid "_to:"
msgstr "ទៅ"
-#: cui/uiconfig/ui/swpossizepage.ui:421
+#: cui/uiconfig/ui/swpossizepage.ui:433
#, fuzzy
msgctxt "swpossizepage|vertposft"
msgid "_Vertical:"
msgstr "បញ្ឈរ "
-#: cui/uiconfig/ui/swpossizepage.ui:457
+#: cui/uiconfig/ui/swpossizepage.ui:470
#, fuzzy
msgctxt "swpossizepage|verttoft"
msgid "t_o:"
msgstr "ទៅ"
-#: cui/uiconfig/ui/swpossizepage.ui:478
+#: cui/uiconfig/ui/swpossizepage.ui:492
msgctxt "swpossizepage|mirror"
msgid "_Mirror on even pages"
msgstr "ឆ្លុះ​នៅ​លើ​ទំព័រ​គូ"
-#: cui/uiconfig/ui/swpossizepage.ui:495
+#: cui/uiconfig/ui/swpossizepage.ui:509
msgctxt "swpossizepage|followtextflow"
msgid "Follow te_xt flow"
msgstr "តាម​លំហូរ​អត្ថបទ"
-#: cui/uiconfig/ui/swpossizepage.ui:518
+#: cui/uiconfig/ui/swpossizepage.ui:532
msgctxt "swpossizepage|label11"
msgid "Position"
msgstr "ទីតាំង"
-#: cui/uiconfig/ui/swpossizepage.ui:549
+#: cui/uiconfig/ui/swpossizepage.ui:563
msgctxt "swpossizepage|pos"
msgid "Positio_n"
msgstr "ទីតាំង"
-#: cui/uiconfig/ui/swpossizepage.ui:565
+#: cui/uiconfig/ui/swpossizepage.ui:579
msgctxt "swpossizepage|size"
msgid "_Size"
msgstr "ទំហំ "
-#: cui/uiconfig/ui/swpossizepage.ui:587
+#: cui/uiconfig/ui/swpossizepage.ui:601
msgctxt "swpossizepage|label3"
msgid "Protect"
msgstr "ការពារ"
@@ -11700,12 +11700,12 @@ msgctxt "textattrtabpage|label2"
msgid "Spacing to Borders"
msgstr "គម្លាត​ទៅ​ស៊ុម"
-#: cui/uiconfig/ui/textattrtabpage.ui:425
+#: cui/uiconfig/ui/textattrtabpage.ui:423
msgctxt "textattrtabpage|TSB_FULL_WIDTH"
msgid "Full _width"
msgstr "ទទឹង​ពេញលេញ"
-#: cui/uiconfig/ui/textattrtabpage.ui:448
+#: cui/uiconfig/ui/textattrtabpage.ui:446
#, fuzzy
msgctxt "textattrtabpage|label3"
msgid "Text Anchor"
diff --git a/source/km/filter/source/config/fragments/filters.po b/source/km/filter/source/config/fragments/filters.po
index 53e44539a38..6a3aa813ac8 100644
--- a/source/km/filter/source/config/fragments/filters.po
+++ b/source/km/filter/source/config/fragments/filters.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: filters\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-16 16:54+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2016-12-03 04:21+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Khmer <support@khmeros.info>\n"
@@ -467,8 +467,8 @@ msgctxt ""
"MS Word 2003 XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Word 2003 XML"
-msgstr "Microsoft Word 2003 XML"
+msgid "Word 2003 XML"
+msgstr ""
#: MS_Word_2007_XML.xcu
msgctxt ""
@@ -1292,7 +1292,7 @@ msgctxt ""
"Calc MS Excel 2007 VBA XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Excel 2007-2016 XML (macro enabled)"
+msgid "Excel 2007–2019 (macro-enabled)"
msgstr ""
#: calc_MS_Excel_2007_XML.xcu
diff --git a/source/km/filter/source/config/fragments/types.po b/source/km/filter/source/config/fragments/types.po
index e10ccd1f433..71c0c45ebf9 100644
--- a/source/km/filter/source/config/fragments/types.po
+++ b/source/km/filter/source/config/fragments/types.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-08 15:11+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2015-11-11 04:26+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Khmer <support@khmeros.info>\n"
@@ -294,8 +294,8 @@ msgctxt ""
"writer_MS_Word_2003_XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Word 2003 XML"
-msgstr "Microsoft Word 2003 XML"
+msgid "Word 2003 XML"
+msgstr ""
#: writer_MS_Word_2007_XML.xcu
msgctxt ""
diff --git a/source/km/fpicker/messages.po b/source/km/fpicker/messages.po
index e1b4d9e0eaa..a934e4cea56 100644
--- a/source/km/fpicker/messages.po
+++ b/source/km/fpicker/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+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"
@@ -281,13 +281,13 @@ msgstr ""
#: fpicker/uiconfig/ui/foldernamedialog.ui:8
msgctxt "foldernamedialog|FolderNameDialog"
-msgid "Folder Name ?"
-msgstr "ឈ្មោះថត?"
+msgid "Folder Name"
+msgstr ""
#: fpicker/uiconfig/ui/foldernamedialog.ui:91
msgctxt "foldernamedialog|label2"
-msgid "Na_me"
-msgstr "ឈ្មោះ"
+msgid "Na_me:"
+msgstr ""
#: fpicker/uiconfig/ui/foldernamedialog.ui:122
#, fuzzy
diff --git a/source/km/helpcontent2/source/text/shared/00.po b/source/km/helpcontent2/source/text/shared/00.po
index fdce1463fe3..0087ce12a53 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2016-05-24 16:07+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Khmer <support@khmeros.info>\n"
@@ -398,16 +398,16 @@ msgctxt ""
"00000001.xhp\n"
"hd_id3149670\n"
"help.text"
-msgid "Back"
-msgstr "ថយ​​ក្រោយ"
+msgid "Reset"
+msgstr ""
#: 00000001.xhp
msgctxt ""
"00000001.xhp\n"
"par_id3145068\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optionsdialog/revert\">Resets modified values back to the $[officename] default values.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/optionsdialog/revert\">កំណត់​ឡើង​វិញ​នូវ​តម្លៃ​ដែល​បាន​កែប្រែ ជា​តម្លៃ​លំនាំ​ដើម​របស់ $[officename] ។</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optionsdialog/revert\">Resets changes made to the current tab to those applicable when this dialog was opened.</ahelp>"
+msgstr ""
#: 00000001.xhp
msgctxt ""
@@ -553,6 +553,54 @@ msgctxt ""
msgid "<variable id=\"ShiftF1\">Press Shift+F1 and point to a control to learn more about that control.</variable>"
msgstr "<variable id=\"ShiftF1\">ចុច Shift+F1 និង​បង្ហាញ​ឧបករណ៍​បញ្ជា​​ដើម្បី​ស្វែងយល់​បន្ថែម​អំពី​ឧបករណ៍​បញ្ជា។</variable>"
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"hd_id631527692833772\n"
+"help.text"
+msgid "Options dialog buttons"
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"hd_id831527692839432\n"
+"help.text"
+msgid "OK"
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"par_id471527692844934\n"
+"help.text"
+msgid "Save the changes in the page and close the Options dialog."
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"hd_id261527692850720\n"
+"help.text"
+msgid "Cancel"
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"par_id571527692855533\n"
+"help.text"
+msgid "Close the Options dialog and discard all changes done."
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"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 Options dialog."
+msgstr ""
+
#: 00000002.xhp
msgctxt ""
"00000002.xhp\n"
@@ -11126,16 +11174,16 @@ msgctxt ""
"00040502.xhp\n"
"par_id3151293\n"
"help.text"
-msgid "<variable id=\"linienstile\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Line Styles</emph> tab </variable>"
-msgstr "<variable id=\"linienstile\">ជ្រើស <emph>ទ្រង់ទ្រាយ - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>វត្ថុ - </emph></caseinline><caseinline select=\"CALC\"><emph>ក្រាហ្វិក - </emph></caseinline></switchinline><emph>បន្ទាត់ - ផ្ទាំង រចនាប័ទ្ម​បន្ទាត់</emph></variable>"
+msgid "<variable id=\"linienstile\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Line Styles</emph> tab</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3149317\n"
"help.text"
-msgid "<variable id=\"linienenden\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Arrow Styles</emph> tab </variable>"
-msgstr "<variable id=\"linienenden\">ជ្រើស <emph>ទ្រង់ទ្រាយ - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>វត្ថុ - </emph></caseinline><caseinline select=\"CALC\"><emph>ក្រាហ្វិក - </emph></caseinline></switchinline><emph>បន្ទាត់ - ផ្ទាំង​រចនាប័ទ្ម​ព្រួញ</emph></variable>"
+msgid "<variable id=\"linienenden\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Arrow Styles</emph> tab</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
@@ -11174,15 +11222,15 @@ msgctxt ""
"00040502.xhp\n"
"par_id3154948\n"
"help.text"
-msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Area</emph> tab"
-msgstr "ជ្រើស <emph>ទ្រង់ទ្រាយ - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>វត្ថុ - </emph></caseinline><caseinline select=\"CALC\"><emph>ក្រាហ្វិក - </emph></caseinline></switchinline><emph>ផ្ទៃ - ផ្ទាំង ផ្ទៃ</emph>"
+msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Area</emph> tab."
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3145607\n"
"help.text"
-msgid "Choose <emph>View - Styles</emph> - open context menu and choose <emph>Modify/New - Area</emph> tab (presentation documents)"
+msgid "Choose <emph>View - Styles</emph> - open context menu and choose <emph>Modify/New - Area</emph> tab (presentation documents)."
msgstr ""
#: 00040502.xhp
@@ -11190,47 +11238,47 @@ msgctxt ""
"00040502.xhp\n"
"par_id3152922\n"
"help.text"
-msgid "Choose <emph>Format - Title - Area</emph> tab (chart documents)"
-msgstr "ជ្រើស <emph>ទ្រង់ទ្រាយ - ចំណង​ជើង - </emph>ផ្ទាំង <emph>ផ្ទៃ</emph> (ឯកសារ​គំនូស​តាង)"
+msgid "Choose <emph>Format - Title - Area</emph> tab (chart documents)."
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3157894\n"
"help.text"
-msgid "Choose <emph>Format - Legend - Area</emph> tab (chart documents)"
-msgstr "ជ្រើស <emph>ទ្រង់ទ្រាយ - តាង - </emph>ផ្ទាំង <emph>ផ្ទៃ</emph> (ឯកសារ​គំនូស​តាង)"
+msgid "Choose <emph>Format - Legend - Area</emph> tab (chart documents)."
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3144444\n"
"help.text"
-msgid "Choose <emph>Format - Chart Wall - Area</emph> tab (chart documents)"
-msgstr "ជ្រើស <emph>ទ្រង់ទ្រាយ - ជញ្ជាំង​គំនូស​តាង - </emph>ផ្ទាំង <emph>ផ្ទៃ</emph> (ឯកសារ​គំនូស​តាង)"
+msgid "Choose <emph>Format - Chart Wall - Area</emph> tab (chart documents)."
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3156543\n"
"help.text"
-msgid "Choose <emph>Format - Chart Floor - Area</emph> tab (chart documents)"
-msgstr "ជ្រើស <emph>ទ្រង់ទ្រាយ - បាត​គំនូស​តាង -</emph> ផ្ទាំង <emph> ផ្ទៃ</emph> (ឯកសារ​គំនូស​តាង)"
+msgid "Choose <emph>Format - Chart Floor - Area</emph> tab (chart documents)."
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3150685\n"
"help.text"
-msgid "Choose <emph>Format - Chart Area - Area</emph> tab (chart documents)"
-msgstr "ជ្រើស <emph>ទ្រង់ទ្រាយ - ផ្ទៃ​គំនូស​តាង - </emph>ផ្ទាំង <emph>ផ្ទៃ</emph> (ឯកសារ​គំនូស​តាង)"
+msgid "Choose <emph>Format - Chart Area - Area</emph> tab (chart documents)."
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3149664\n"
"help.text"
-msgid "Choose <emph>Slide - Properties - Background</emph> tab (in $[officename] Impress)"
+msgid "Choose <emph>Slide - Properties - Background</emph> tab (in $[officename] Impress)."
msgstr ""
#: 00040502.xhp
@@ -11238,7 +11286,15 @@ msgctxt ""
"00040502.xhp\n"
"par_id9149694\n"
"help.text"
-msgid "Choose <emph>Page - Properties - Background</emph> tab (in $[officename] Draw)"
+msgid "Choose <emph>Page - Properties - Background</emph> tab (in $[officename] Draw)."
+msgstr ""
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id841527083135387\n"
+"help.text"
+msgid "Choose <emph>Table - Properties - Background</emph> tab."
msgstr ""
#: 00040502.xhp
@@ -11350,32 +11406,32 @@ msgctxt ""
"00040502.xhp\n"
"par_id3150011\n"
"help.text"
-msgid "<variable id=\"schatte\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Shadow</emph> tab </variable>"
-msgstr "<variable id=\"schatte\">ជ្រើស <emph>ទ្រង់ទ្រាយ - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>ក្រាហ្វិក - </emph></caseinline><caseinline select=\"CALC\"><emph>ក្រាហ្វិក - </emph></caseinline></switchinline><emph>ផ្ទៃ -​ ផ្ទាំង​ស្រមោល</emph></variable>"
+msgid "<variable id=\"schatte\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Shadow</emph> tab</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3147441\n"
"help.text"
-msgid "<variable id=\"verlauf\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Gradients</emph> tab </variable>"
-msgstr "<variable id=\"verlauf\">ជ្រើស <emph>ទ្រង់ទ្រាយ - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>វត្ថុ - </emph></caseinline><caseinline select=\"CALC\"><emph>ក្រាហ្វិក - </emph></caseinline></switchinline><emph>ផ្ទៃ - ផ្ទាំង ជម្រាល</emph></variable>"
+msgid "<variable id=\"verlauf\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Gradients</emph> tab</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3155308\n"
"help.text"
-msgid "<variable id=\"schraffur\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Hatching</emph> tab </variable>"
-msgstr "<variable id=\"schraffur\">ជ្រើស <emph>ទ្រង់ទ្រាយ - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>វត្ថុ - </emph></caseinline><caseinline select=\"CALC\"><emph>ក្រាហ្វិក - </emph></caseinline></switchinline><emph>ផ្ទៃ - ផ្ទាំង ឆ្នូត</emph></variable>"
+msgid "<variable id=\"schraffur\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Hatching</emph> tab</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3145800\n"
"help.text"
-msgid "<variable id=\"bitmap\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Bitmaps</emph> tab </variable>"
-msgstr "<variable id=\"bitmap\">ជ្រើស <emph>ទ្រង់ទ្រាយ - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>វត្ថុ - </emph></caseinline><caseinline select=\"CALC\"><emph>ក្រាហ្វិកGraphic - </emph></caseinline></switchinline><emph>ផ្ទៃ - Bitmaps</emph> tab </variable>"
+msgid "<variable id=\"bitmap\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Bitmaps</emph> tab</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
@@ -11414,8 +11470,8 @@ msgctxt ""
"00040502.xhp\n"
"par_id3156286\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F4 key </caseinline><caseinline select=\"IMPRESS\">F4 key </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"DRAW\">គ្រាប់​ចុច F4 </caseinline><caseinline select=\"IMPRESS\">គ្រាប់​ចុច F4</caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F4 key</caseinline><caseinline select=\"IMPRESS\">F4 key</caseinline></switchinline>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
@@ -11454,8 +11510,8 @@ msgctxt ""
"00040502.xhp\n"
"par_id3153099\n"
"help.text"
-msgid "<variable id=\"position2\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Position and Size</emph> tab </variable>"
-msgstr "<variable id=\"position2\">ជ្រើស <emph>ទ្រង់ទ្រាយ - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>វត្ថុ - </emph></caseinline><caseinline select=\"CALC\"><emph>ក្រាហ្វិក - </emph></caseinline></switchinline><emph>ទីតាំង និងទំហំ - ផ្ទាំង ទីតាំង និងទំហំ</emph>​</variable>"
+msgid "<variable id=\"position2\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Position and Size</emph> tab</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
@@ -11486,16 +11542,16 @@ msgctxt ""
"00040502.xhp\n"
"par_id3145666\n"
"help.text"
-msgid "<variable id=\"ecke\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Slant & Corner Radius</emph> tab </variable>"
-msgstr "<variable id=\"ecke\">ជ្រើស <emph>ទ្រង់ទ្រាយ - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>វត្ថុ - </emph></caseinline><caseinline select=\"CALC\"><emph>ក្រាហ្វិក - </emph></caseinline></switchinline><emph>ទីតាំង និង​ទំហំ -​ ផ្ទាំង​ទេរ និង​កាំជ្រុង</emph> </variable>"
+msgid "<variable id=\"ecke\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Slant & Corner Radius</emph> tab</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3146081\n"
"help.text"
-msgid "<variable id=\"legende\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Callout</emph> tab (only for textbox callouts, not for custom shapes callouts) </variable>"
-msgstr "<variable id=\"legende\"><emph></emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph> វត្ថុ</emph></caseinline><caseinline select=\"CALC\"><emph></emph></caseinline></switchinline><emph> ទំហំ</emph></variable>"
+msgid "<variable id=\"legende\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Callout</emph> tab (only for textbox callouts, not for custom shapes callouts)</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
@@ -11518,8 +11574,8 @@ msgctxt ""
"00040502.xhp\n"
"par_id3149019\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F8 key </caseinline><caseinline select=\"IMPRESS\">F8 key </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"DRAW\">គ្រាប់​ចុច F8 </caseinline><caseinline select=\"IMPRESS\">គ្រាប់​ចុច F8 </caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F8 key</caseinline><caseinline select=\"IMPRESS\">F8 key</caseinline></switchinline>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
@@ -11806,8 +11862,8 @@ msgctxt ""
"00040502.xhp\n"
"par_id3153076\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Align Center Horizontally </caseinline><defaultinline>Centered</defaultinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">តម្រឹម​កណ្តាល​ផ្ដេក </caseinline><defaultinline>កណ្តាល</defaultinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Align Center Horizontally</caseinline><defaultinline>Centered</defaultinline></switchinline>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
@@ -11846,8 +11902,8 @@ msgctxt ""
"00040502.xhp\n"
"par_id3150527\n"
"help.text"
-msgid "<variable id=\"font\">Click <emph>Fontwork</emph> icon on <emph>Drawing</emph> bar </variable>"
-msgstr "<variable id=\"font\">ចុចរូបតំណាង <emph>សិល្បៈអក្សរ</emph> នៅលើរបារ <emph>គំនូរ</emph> </variable>"
+msgid "<variable id=\"font\">Click <emph>Fontwork</emph> icon on <emph>Drawing</emph> bar</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
diff --git a/source/km/helpcontent2/source/text/shared/01.po b/source/km/helpcontent2/source/text/shared/01.po
index 5ae1e5f8d73..c7b0928a9f8 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: 2018-05-23 23:19+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2016-07-06 09:37+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Khmer <support@khmeros.info>\n"
@@ -23588,6 +23588,22 @@ msgstr ""
#: 05210100.xhp
msgctxt ""
"05210100.xhp\n"
+"hd_id471527077476052\n"
+"help.text"
+msgid "Cell, Row or Table background selector"
+msgstr ""
+
+#: 05210100.xhp
+msgctxt ""
+"05210100.xhp\n"
+"par_id661527077493366\n"
+"help.text"
+msgid "Select the table object which background area is to be filled."
+msgstr ""
+
+#: 05210100.xhp
+msgctxt ""
+"05210100.xhp\n"
"hd_id3147373\n"
"help.text"
msgid "None"
@@ -31206,24 +31222,24 @@ msgctxt ""
"06040100.xhp\n"
"hd_id3145072\n"
"help.text"
-msgid "Automatic *bold* and _underline_"
-msgstr "*ដិត* និង _គូស​បន្ទាត់​ក្រោម_ ដោយ​ស្វ័យប្រវត្តិ"
+msgid "Automatic *bold*, /italic/, -strikeout- and _underline_"
+msgstr ""
#: 06040100.xhp
msgctxt ""
"06040100.xhp\n"
"par_id3153577\n"
"help.text"
-msgid "Automatically applies bold formatting to text enclosed by asterisks (*), and underline to text enclosed by underscores ( _ ), for example, *bold*. The asterisks and underscores are not displayed after the formatting is applied."
-msgstr "អនុវត្ត​ការ​​ធ្វើ​ទ្រង់ទ្រាយ​ដិត​ដោយ​ស្វ័យ​ប្រវត្តិ​​ទៅ​អត្ថបទ​ដែល​ព័ទ្ធ​ជុំវិញ​ដោយ​សញ្ញា​ផ្កាយ ​(*) និង​ គូស​បន្ទាត់​ក្រោម​​អត្ថបទ​ដែល​ព័ទ្ធជុំវិញ​ដោយ​សញ្ញា​គូស​ក្រោម ​(_) ឧទាហរណ៍​ សញ្ញា​ផ្កាយ​ និង សញ្ញា​គូស​ក្រោម ​​(_) មិន​ត្រូវ​បាន​បង្ហាញ​បន្ទាប់​ពី​ការធ្វើ​​ទ្រង់ទ្រាយ​ត្រូវ​បានអនុវត្ត ។"
+msgid "Automatically applies bold, italic, strikethrough or underline formatting to text enclosed by asterisks (*), slashes (/), hyphens (-), and underscores (_), respectively. These characters disappear after the formatting is applied."
+msgstr ""
#: 06040100.xhp
msgctxt ""
"06040100.xhp\n"
"par_id3153127\n"
"help.text"
-msgid "This feature does not work if the formatting characters * or _ are entered with an <link href=\"text/shared/00/00000005.xhp#IME\" name=\"Input Method Editor\">Input Method Editor</link>."
-msgstr "លក្ខណៈ​ពិសេស​នេះ​មិន​ធ្វើ​ការ​​ ប្រសិន​បើ​ការ​ធ្វើ​ទ្រង់ទ្រាយ​តួអក្សរ​ * ឬ _ ត្រូវ​បាន​បញ្ចូល​ដោយ​ <link href=\"text/shared/00/00000005.xhp#IME\" name=\"Input Method Editor\">កម្មវិធី​និពន្ធ​វិធីសាស្ត្រ​បញ្ចូល​</link> មួយ ។"
+msgid "This feature does not work if the formatting characters <item type=\"literal\">* / - _</item> are entered with an <link href=\"text/shared/00/00000005.xhp#IME\" name=\"Input Method Editor\">Input Method Editor</link>."
+msgstr ""
#: 06040100.xhp
msgctxt ""
diff --git a/source/km/helpcontent2/source/text/shared/optionen.po b/source/km/helpcontent2/source/text/shared/optionen.po
index eb02dfd8f99..bf07287d1cf 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: 2018-05-08 15:10+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2016-07-06 10:04+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Khmer <support@khmeros.info>\n"
@@ -84,6 +84,22 @@ msgstr ""
#: 01000000.xhp
msgctxt ""
"01000000.xhp\n"
+"hd_id551527692881035\n"
+"help.text"
+msgid "Help"
+msgstr ""
+
+#: 01000000.xhp
+msgctxt ""
+"01000000.xhp\n"
+"par_id831527692885723\n"
+"help.text"
+msgid "Opens the help contents for the Options page displayed."
+msgstr ""
+
+#: 01000000.xhp
+msgctxt ""
+"01000000.xhp\n"
"hd_id3159149\n"
"help.text"
msgid "<link href=\"text/shared/optionen/01010000.xhp\" name=\"$[officename]\">%PRODUCTNAME</link>"
@@ -4566,8 +4582,8 @@ msgctxt ""
"01030300.xhp\n"
"par_idN10640\n"
"help.text"
-msgid "Options"
-msgstr "ជម្រើស"
+msgid "Security Options and Warnings"
+msgstr ""
#: 01030300.xhp
msgctxt ""
@@ -4598,8 +4614,8 @@ msgctxt ""
"01030300.xhp\n"
"hd_id3168736\n"
"help.text"
-msgid "Persistently save passwords protected by a master password"
-msgstr "រក្សា​ទុក​ពាក្យ​សម្ងាត់​ដែល​ការពារ​ដោយ​ពាក្យ​សម្ងាត់​មេ​ដោយ​បង្ខំ"
+msgid "Persistently save passwords for web connections"
+msgstr ""
#: 01030300.xhp
msgctxt ""
@@ -4614,8 +4630,24 @@ msgctxt ""
"01030300.xhp\n"
"hd_id3901791\n"
"help.text"
+msgid "Protected by a master password (recommended)"
+msgstr ""
+
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"par_id31527711486980\n"
+"help.text"
+msgid "Check to enable all connections' passwords to be protected by a master password."
+msgstr ""
+
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"hd_id141527711343312\n"
+"help.text"
msgid "Master Password"
-msgstr "ពាក្យ​សម្ងាត់​មេ"
+msgstr ""
#: 01030300.xhp
msgctxt ""
@@ -13734,8 +13766,8 @@ msgctxt ""
"java.xhp\n"
"hd_id3148618\n"
"help.text"
-msgid "Optional (unstable) options"
-msgstr "ជម្រើស​ជា​ជម្រើស (គ្មាន​ស្ថិរភាព)"
+msgid "Optional Features"
+msgstr ""
#: java.xhp
msgctxt ""
@@ -13750,8 +13782,8 @@ msgctxt ""
"java.xhp\n"
"par_id3156344\n"
"help.text"
-msgid "It enables features that are not yet complete or contain known bugs. The list of these features is different version by version, or even it can be empty."
-msgstr "វា​បើក​លក្ខណៈ​ដែល​មិន​ទាន់​បញ្ចប់ ឬ​កំហុស​ដែល​មាន។ បញ្ជី​លក្ខណៈ​នេះ​ខុសគ្នា​ដោយ​កំណែ ឬ​វា​អាច​ទទេ។"
+msgid "Enables features that are not yet complete or may contain known bugs. The list of these features is different version by version, or even it can be empty."
+msgstr ""
#: java.xhp
msgctxt ""
@@ -13766,8 +13798,8 @@ msgctxt ""
"java.xhp\n"
"par_id3156345\n"
"help.text"
-msgid "It enables macro recording, so the <link href=\"text/shared/guide/macro_recording.xhp\" name=\"Tools - Macros - Record Macro\"><item type=\"menuitem\">Tools - Macros - Record Macro</item></link> menu item will be available."
-msgstr "វា​បើក​ការ​កត់ត្រា​ម៉ាក្រូ ដូច្នេះ​ធាតុ​ម៉ឺនុយ <link href=\"text/shared/guide/macro_recording.xhp\" name=\"Tools - Macros - Record Macro\"><item type=\"menuitem\">ឧបករណ៍ - ម៉ាក្រូ - កត់ត្រា​ម៉ាក្រូ</item></link> នឹង​អាច​ប្រើ​បាន។"
+msgid "Enables macro recording. The <link href=\"text/shared/guide/macro_recording.xhp\" name=\"Tools - Macros - Record Macro\"><item type=\"menuitem\">Tools - Macros - Record Macro</item></link> menu item is available."
+msgstr ""
#: java.xhp
msgctxt ""
diff --git a/source/km/officecfg/registry/data/org/openoffice/Office/UI.po b/source/km/officecfg/registry/data/org/openoffice/Office/UI.po
index 65aa7057db4..1bc12787c44 100644
--- a/source/km/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/km/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: UI\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-22 13:17+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2016-05-25 13:33+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Khmer <support@khmeros.info>\n"
@@ -26925,8 +26925,8 @@ msgctxt ""
"..WriterCommands.UserInterface.Commands..uno:TextAttributes\n"
"Label\n"
"value.text"
-msgid "Text Attributes"
-msgstr "គុណ​លក្ខណៈ​អត្ថបទ"
+msgid "Text Attributes..."
+msgstr ""
#: WriterCommands.xcu
msgctxt ""
diff --git a/source/km/readlicense_oo/docs.po b/source/km/readlicense_oo/docs.po
index 8445f14e278..4528e0dadc0 100644
--- a/source/km/readlicense_oo/docs.po
+++ b/source/km/readlicense_oo/docs.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-04-17 15:54+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2016-03-11 12:04+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Khmer <support@khmeros.info>\n"
@@ -118,7 +118,7 @@ msgctxt ""
"readme.xrm\n"
"macxiOSX\n"
"readmeitem.text"
-msgid "MacOSX 10.8 (Mountain Lion) or higher"
+msgid "MacOSX 10.9 (Mavericks) or higher"
msgstr ""
#: readme.xrm
diff --git a/source/km/sc/messages.po b/source/km/sc/messages.po
index c9338007ccf..e6d41a87001 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-12 14:40+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"
@@ -1872,16 +1872,21 @@ msgid "Nested arrays are not supported."
msgstr "អារេ​ក្នុង​មិន​ត្រូវ​បាន​គាំទ្រ ។"
#: sc/inc/globstr.hrc:390
+msgctxt "STR_ERR_LONG_BAD_ARRAY_CONTENT"
+msgid "Unsupported inline array content."
+msgstr ""
+
+#: sc/inc/globstr.hrc:391
msgctxt "STR_UNDO_TEXTTOCOLUMNS"
msgid "Text to Columns"
msgstr "អត្ថបទ​ជា​ជួរ​ឈរ"
-#: sc/inc/globstr.hrc:391
+#: sc/inc/globstr.hrc:392
msgctxt "STR_DOC_UPDATED"
msgid "Your spreadsheet has been updated with changes saved by other users."
msgstr "សៀភៅ​បញ្ជី​ត្រូវបាន​ធ្វើ​បច្ចុប្បន្ន​ភាព​ជាមួយ​នឹង​ការ​ផ្លាស់ប្ដូរ​ដែល​បាន​រក្សាទុក​ដោយ​អ្នកប្រើ​ផ្សេង ។"
-#: sc/inc/globstr.hrc:392
+#: sc/inc/globstr.hrc:393
msgctxt "STR_DOC_WILLBESAVED"
msgid ""
"The spreadsheet must be saved now to activate sharing mode.\n"
@@ -1892,7 +1897,7 @@ msgstr ""
"\n"
"តើ​អ្នក​ចង់​បន្ត​ឬ​ទេ ?"
-#: sc/inc/globstr.hrc:393
+#: sc/inc/globstr.hrc:394
msgctxt "STR_DOC_WILLNOTBESAVED"
msgid ""
"Already resolved merge conflicts will be lost and your changes to the shared spreadsheet will not be saved.\n"
@@ -1903,7 +1908,7 @@ msgstr ""
"\n"
"តើ​អ្នក​ចង់​បន្ត​ឬ​ទេ ?"
-#: sc/inc/globstr.hrc:394
+#: sc/inc/globstr.hrc:395
msgctxt "STR_DOC_DISABLESHARED"
msgid ""
"Disabling shared mode of a spreadsheet hinders all other users of the shared spreadsheet to merge back their work.\n"
@@ -1914,7 +1919,7 @@ msgstr ""
"\n"
"តើ​អ្នក​ចង់​បន្ត​ឬ​ទេ ?"
-#: sc/inc/globstr.hrc:395
+#: sc/inc/globstr.hrc:396
msgctxt "STR_DOC_NOLONGERSHARED"
msgid ""
"This spreadsheet is no longer in shared mode.\n"
@@ -1925,7 +1930,7 @@ msgstr ""
"\n"
"រក្សាទុក​សៀវភៅ​បញ្ជី​របស់​អ្នក​ទៅ​ឯកសារ​ដាច់ដោយ​ឡែក​ទៀត និង​បញ្ចូល​ការ​ផ្លាស់ប្ដូរ​របស់​អ្នក​ទៅ​សៀវភៅ​បញ្ជី​ដែល​បាន​ចែករំលែក​ដោយ​ដៃ ។"
-#: sc/inc/globstr.hrc:396
+#: sc/inc/globstr.hrc:397
msgctxt "STR_FILE_LOCKED_TRY_LATER"
msgid ""
"The shared spreadsheet file is locked due to a merge in progress by user: '%1'\n"
@@ -1936,7 +1941,7 @@ msgstr ""
"\n"
"របៀប​ចែករំលែក​របស់​ឯកសារ​ដែល​ជាប់សោ គឺ​មិនអាច​បិទ​បានទេ ។ សូម​ព្យាយាម​ម្ដងទៀត ។"
-#: sc/inc/globstr.hrc:397
+#: sc/inc/globstr.hrc:398
msgctxt "STR_FILE_LOCKED_SAVE_LATER"
msgid ""
"The shared spreadsheet file is locked due to a merge in progress by user: '%1'\n"
@@ -1947,147 +1952,147 @@ msgstr ""
"\n"
"សូម​ព្យាយាម​រក្សាទុក​ការ​ផ្លាស់ប្ដូរ​របស់​អ្នក​នៅពេល​ក្រោយ ។"
-#: sc/inc/globstr.hrc:398
+#: sc/inc/globstr.hrc:399
msgctxt "STR_UNKNOWN_USER"
msgid "Unknown User"
msgstr "មិនស្គាល់​អ្នកប្រើ"
-#: sc/inc/globstr.hrc:399
+#: sc/inc/globstr.hrc:400
msgctxt "STR_SHAPE_AUTOSHAPE"
msgid "AutoShape"
msgstr "រូបរាង​ស្វ័យប្រវត្តិ"
-#: sc/inc/globstr.hrc:400
+#: sc/inc/globstr.hrc:401
msgctxt "STR_SHAPE_RECTANGLE"
msgid "Rectangle"
msgstr "ចតុកោណ​កែង"
-#: sc/inc/globstr.hrc:401
+#: sc/inc/globstr.hrc:402
msgctxt "STR_SHAPE_LINE"
msgid "Line"
msgstr "បន្ទាត់​"
-#: sc/inc/globstr.hrc:402
+#: sc/inc/globstr.hrc:403
msgctxt "STR_SHAPE_OVAL"
msgid "Oval"
msgstr "ពងក្រពើ"
-#: sc/inc/globstr.hrc:403
+#: sc/inc/globstr.hrc:404
msgctxt "STR_FORM_BUTTON"
msgid "Button"
msgstr "ប៊ូតុង"
-#: sc/inc/globstr.hrc:404
+#: sc/inc/globstr.hrc:405
msgctxt "STR_FORM_CHECKBOX"
msgid "Check Box"
msgstr "ប្រអប់​ធីក"
-#: sc/inc/globstr.hrc:405
+#: sc/inc/globstr.hrc:406
msgctxt "STR_FORM_OPTIONBUTTON"
msgid "Option Button"
msgstr "ប៊ូតុង​ជម្រើស"
-#: sc/inc/globstr.hrc:406
+#: sc/inc/globstr.hrc:407
msgctxt "STR_FORM_LABEL"
msgid "Label"
msgstr "ស្លាក"
-#: sc/inc/globstr.hrc:407
+#: sc/inc/globstr.hrc:408
msgctxt "STR_FORM_LISTBOX"
msgid "List Box"
msgstr "ប្រអប់​បញ្ជី"
-#: sc/inc/globstr.hrc:408
+#: sc/inc/globstr.hrc:409
msgctxt "STR_FORM_GROUPBOX"
msgid "Group Box"
msgstr "ប្រអប់​ក្រុម"
-#: sc/inc/globstr.hrc:409
+#: sc/inc/globstr.hrc:410
msgctxt "STR_FORM_DROPDOWN"
msgid "Drop Down"
msgstr "ទម្លាក់ចុះ"
-#: sc/inc/globstr.hrc:410
+#: sc/inc/globstr.hrc:411
msgctxt "STR_FORM_SPINNER"
msgid "Spinner"
msgstr "ប៊ូតុង​បង្កើន​បន្ថយ"
-#: sc/inc/globstr.hrc:411
+#: sc/inc/globstr.hrc:412
msgctxt "STR_FORM_SCROLLBAR"
msgid "Scroll Bar"
msgstr "របារ​រមូរ"
-#: sc/inc/globstr.hrc:412
+#: sc/inc/globstr.hrc:413
msgctxt "STR_STYLE_FAMILY_CELL"
msgid "Cell Styles"
msgstr "រចនាប័ទ្ម​ក្រឡា"
-#: sc/inc/globstr.hrc:413
+#: sc/inc/globstr.hrc:414
msgctxt "STR_STYLE_FAMILY_PAGE"
msgid "Page Styles"
msgstr "​រចនាប័ទ្ម​ទំព័រ"
-#: sc/inc/globstr.hrc:414
+#: sc/inc/globstr.hrc:415
msgctxt "STR_ERR_DATAPILOTSOURCE"
msgid "Pivot table source data is invalid."
msgstr "ទិន្នន័យ​ប្រភព​របស់​តារាង​ជំនួយការ​ទិន្នន័យ គឺ​មិន​ត្រឹមត្រូវ​ទេ ។"
-#: sc/inc/globstr.hrc:415
+#: sc/inc/globstr.hrc:416
msgctxt "STR_OPTIONS_WARN_SEPARATORS"
msgid "Because the current formula separator settings conflict with the locale, the formula separators have been reset to their default values."
msgstr "ពី​ព្រោះ​តែ​ការ​កំណត់​សញ្ញា​ប្រមាណ​វិធី​រូបមន្ត​បច្ចុប្បន្ន​ប៉ះទង្គិច​ជា​មួយ​នឹង​​ឯកសារ​មូលដ្ឋាន សញ្ញា​ប្រមាណវិធី​រូបមន្ត​ត្រូវ​បាន​កំណត់​ទៅ​តម្លៃ​លំនាំដើម​របស់​ពួកវា​វិញ ។"
-#: sc/inc/globstr.hrc:416
+#: sc/inc/globstr.hrc:417
msgctxt "STR_UNDO_INSERT_CURRENT_DATE"
msgid "Insert Current Date"
msgstr "បញ្ចូល​កាលបរិច្ឆេទ​បច្ចុប្បន្ន​"
-#: sc/inc/globstr.hrc:417
+#: sc/inc/globstr.hrc:418
msgctxt "STR_UNDO_INSERT_CURRENT_TIME"
msgid "Insert Current Time"
msgstr "បញ្ចូល​ពេលវេលា​បច្ចុប្បន្ន​"
-#: sc/inc/globstr.hrc:418
+#: sc/inc/globstr.hrc:419
msgctxt "STR_MANAGE_NAMES"
msgid "Manage Names..."
msgstr "គ្រប់គ្រង​ឈ្មោះ..."
-#: sc/inc/globstr.hrc:419
+#: sc/inc/globstr.hrc:420
msgctxt "STR_HEADER_NAME"
msgid "Name"
msgstr "ឈ្មោះ"
-#: sc/inc/globstr.hrc:420
+#: sc/inc/globstr.hrc:421
msgctxt "STR_HEADER_RANGE_OR_EXPR"
msgid "Range or formula expression"
msgstr ""
-#: sc/inc/globstr.hrc:421
+#: sc/inc/globstr.hrc:422
msgctxt "STR_HEADER_SCOPE"
msgid "Scope"
msgstr "វិសាលភាព"
-#: sc/inc/globstr.hrc:422
+#: sc/inc/globstr.hrc:423
msgctxt "STR_MULTI_SELECT"
msgid "(multiple)"
msgstr "(ច្រើន)"
-#: sc/inc/globstr.hrc:423
+#: sc/inc/globstr.hrc:424
msgctxt "STR_GLOBAL_SCOPE"
msgid "Document (Global)"
msgstr "ឯកសារ (សកល)"
-#: sc/inc/globstr.hrc:424
+#: sc/inc/globstr.hrc:425
msgctxt "STR_ERR_NAME_EXISTS"
msgid "Invalid name. Already in use for the selected scope."
msgstr "ឈ្មោះ​មិន​ត្រឹមត្រូវ ។ បាន​ប្រើ​រួចហើយ​សម្រាប់​វិសាលភាព​ដែល​បាន​ជ្រើស ។"
-#: sc/inc/globstr.hrc:425
+#: sc/inc/globstr.hrc:426
msgctxt "STR_ERR_NAME_INVALID"
msgid "Invalid name. Only use letters, numbers and underscore."
msgstr "ឈ្មោះ​មិន​ត្រឹមត្រូវ ។ ប្រើ​តែ​អក្សរ លេខ និង​សញ្ញា (_) ប៉ុណ្ណោះ ។"
-#: sc/inc/globstr.hrc:426
+#: sc/inc/globstr.hrc:427
msgctxt "STR_UNSAVED_EXT_REF"
msgid ""
"This Document contains external references to unsaved documents.\n"
@@ -2098,217 +2103,217 @@ msgstr ""
"\n"
"តើ​អ្នក​ចង់​បន្ត​ដែរ​ឬទេ ?"
-#: sc/inc/globstr.hrc:427
+#: sc/inc/globstr.hrc:428
msgctxt "STR_CLOSE_WITH_UNSAVED_REFS"
msgid "This Document is referenced by another document and not yet saved. Closing it without saving will result in data loss."
msgstr "ឯកសារ​នេះ​ត្រូវ​បានយោង​ដោយ​ឯកសារ​ផ្សេង ហើយ​មិន​ត្រូវ​បាន​រក្សាទុក​នៅ​ឡើយ​ទេ ។ ការ​បិទ​វា​ដោយ​មិន​រក្សាទុក​នឹង​អាច​បាត់បង់​ទិន្នន័យ ។"
-#: sc/inc/globstr.hrc:428
+#: sc/inc/globstr.hrc:429
msgctxt "STR_HEADER_RANGE"
msgid "Range"
msgstr "ជួរ"
-#: sc/inc/globstr.hrc:429
+#: sc/inc/globstr.hrc:430
msgctxt "STR_HEADER_COND"
msgid "First Condition"
msgstr "លក្ខខណ្ឌ​ដំបូង"
-#: sc/inc/globstr.hrc:430
+#: sc/inc/globstr.hrc:431
msgctxt "STR_COND_CONDITION"
msgid "Cell value is"
msgstr "តម្លៃ​​ក្រឡា​គឺ"
-#: sc/inc/globstr.hrc:431
+#: sc/inc/globstr.hrc:432
msgctxt "STR_COND_COLORSCALE"
msgid "ColorScale"
msgstr "មាត្រដ្ឋាន​ពណ៌"
-#: sc/inc/globstr.hrc:432
+#: sc/inc/globstr.hrc:433
msgctxt "STR_COND_DATABAR"
msgid "DataBar"
msgstr "របារ​ទិន្នន័យ"
-#: sc/inc/globstr.hrc:433
+#: sc/inc/globstr.hrc:434
msgctxt "STR_COND_ICONSET"
msgid "IconSet"
msgstr "IconSet"
-#: sc/inc/globstr.hrc:434
+#: sc/inc/globstr.hrc:435
msgctxt "STR_COND_BETWEEN"
msgid "between"
msgstr "ចន្លោះ"
-#: sc/inc/globstr.hrc:435
+#: sc/inc/globstr.hrc:436
msgctxt "STR_COND_NOTBETWEEN"
msgid "not between"
msgstr "មិន​ឋិត​ក្នុង​ចន្លោះ"
-#: sc/inc/globstr.hrc:436
+#: sc/inc/globstr.hrc:437
msgctxt "STR_COND_UNIQUE"
msgid "unique"
msgstr "មានតែ​មួយ​គត់"
-#: sc/inc/globstr.hrc:437
+#: sc/inc/globstr.hrc:438
msgctxt "STR_COND_DUPLICATE"
msgid "duplicate"
msgstr "ស្ទួន"
-#: sc/inc/globstr.hrc:438
+#: sc/inc/globstr.hrc:439
msgctxt "STR_COND_FORMULA"
msgid "Formula is"
msgstr "រូបមន្ត​គឺ"
-#: sc/inc/globstr.hrc:439
+#: sc/inc/globstr.hrc:440
msgctxt "STR_COND_TOP10"
msgid "Top Elements"
msgstr "ធាតុ​ខាងលើ"
-#: sc/inc/globstr.hrc:440
+#: sc/inc/globstr.hrc:441
msgctxt "STR_COND_BOTTOM10"
msgid "Bottom Elements"
msgstr "ធាត​ខាងក្រោម"
-#: sc/inc/globstr.hrc:441
+#: sc/inc/globstr.hrc:442
msgctxt "STR_COND_TOP_PERCENT"
msgid "Top Percent"
msgstr "ភាគរយ​ខាងលើ"
-#: sc/inc/globstr.hrc:442
+#: sc/inc/globstr.hrc:443
msgctxt "STR_COND_DATE"
msgid "Date is"
msgstr "កាលបរិច្ឆេទ​គឺ"
-#: sc/inc/globstr.hrc:443
+#: sc/inc/globstr.hrc:444
msgctxt "STR_COND_BOTTOM_PERCENT"
msgid "Bottom Percent"
msgstr "ភាគរយ​ខាងក្រោម"
-#: sc/inc/globstr.hrc:444
+#: sc/inc/globstr.hrc:445
msgctxt "STR_COND_ABOVE_AVERAGE"
msgid "Above Average"
msgstr "លើ​មធ្យមភាគ"
-#: sc/inc/globstr.hrc:445
+#: sc/inc/globstr.hrc:446
msgctxt "STR_COND_BELOW_AVERAGE"
msgid "Below Average"
msgstr "ក្រោម​មធ្យមភាគ"
-#: sc/inc/globstr.hrc:446
+#: sc/inc/globstr.hrc:447
msgctxt "STR_COND_ABOVE_EQUAL_AVERAGE"
msgid "Above or equal Average"
msgstr "លើ ឬ​ស្មើនឹង​មធ្យមភាគ"
-#: sc/inc/globstr.hrc:447
+#: sc/inc/globstr.hrc:448
msgctxt "STR_COND_BELOW_EQUAL_AVERAGE"
msgid "Below or equal Average"
msgstr "ក្រោម ឬ​ស្មើ​មធ្យមភាគ"
-#: sc/inc/globstr.hrc:448
+#: sc/inc/globstr.hrc:449
msgctxt "STR_COND_ERROR"
msgid "an Error code"
msgstr "កូដ​កំហុស"
-#: sc/inc/globstr.hrc:449
+#: sc/inc/globstr.hrc:450
msgctxt "STR_COND_NOERROR"
msgid "not an Error code"
msgstr "កូដ​កំហុស"
-#: sc/inc/globstr.hrc:450
+#: sc/inc/globstr.hrc:451
msgctxt "STR_COND_BEGINS_WITH"
msgid "Begins with"
msgstr "ចាប់ផ្ដើម​ដោយ"
-#: sc/inc/globstr.hrc:451
+#: sc/inc/globstr.hrc:452
msgctxt "STR_COND_ENDS_WITH"
msgid "Ends with"
msgstr "បញ្ចប់​ដោយ"
-#: sc/inc/globstr.hrc:452
+#: sc/inc/globstr.hrc:453
msgctxt "STR_COND_CONTAINS"
msgid "Contains"
msgstr "មាន"
-#: sc/inc/globstr.hrc:453
+#: sc/inc/globstr.hrc:454
msgctxt "STR_COND_NOT_CONTAINS"
msgid "Not Contains"
msgstr "មិន​មាន"
-#: sc/inc/globstr.hrc:454
+#: sc/inc/globstr.hrc:455
msgctxt "STR_COND_TODAY"
msgid "today"
msgstr "ថ្ងៃនេះ"
-#: sc/inc/globstr.hrc:455
+#: sc/inc/globstr.hrc:456
msgctxt "STR_COND_YESTERDAY"
msgid "yesterday"
msgstr "ម្សិលមិញ"
-#: sc/inc/globstr.hrc:456
+#: sc/inc/globstr.hrc:457
msgctxt "STR_COND_TOMORROW"
msgid "tomorrow"
msgstr "ថ្ងៃ​ស្អែក"
-#: sc/inc/globstr.hrc:457
+#: sc/inc/globstr.hrc:458
msgctxt "STR_COND_LAST7DAYS"
msgid "in the last 7 days"
msgstr "ក្នុង ៧ ថ្ងៃ​ចុងក្រោយ"
-#: sc/inc/globstr.hrc:458
+#: sc/inc/globstr.hrc:459
msgctxt "STR_COND_THISWEEK"
msgid "this week"
msgstr "សប្ដាហ៍​នេះ"
-#: sc/inc/globstr.hrc:459
+#: sc/inc/globstr.hrc:460
msgctxt "STR_COND_LASTWEEK"
msgid "last week"
msgstr "សប្ដាហ៍​មុន"
-#: sc/inc/globstr.hrc:460
+#: sc/inc/globstr.hrc:461
msgctxt "STR_COND_NEXTWEEK"
msgid "next week"
msgstr "សប្ដាហ៍​ក្រោយ"
-#: sc/inc/globstr.hrc:461
+#: sc/inc/globstr.hrc:462
msgctxt "STR_COND_THISMONTH"
msgid "this month"
msgstr "​ខែ​នេះ"
-#: sc/inc/globstr.hrc:462
+#: sc/inc/globstr.hrc:463
msgctxt "STR_COND_LASTMONTH"
msgid "last month"
msgstr "ខែ​មុន"
-#: sc/inc/globstr.hrc:463
+#: sc/inc/globstr.hrc:464
msgctxt "STR_COND_NEXTMONTH"
msgid "next month"
msgstr "ខែ​ក្រោយ​"
-#: sc/inc/globstr.hrc:464
+#: sc/inc/globstr.hrc:465
msgctxt "STR_COND_THISYEAR"
msgid "this year"
msgstr "ឆ្នាំនេះ​"
-#: sc/inc/globstr.hrc:465
+#: sc/inc/globstr.hrc:466
msgctxt "STR_COND_LASTYEAR"
msgid "last year"
msgstr "ឆ្នាំ​មុន"
-#: sc/inc/globstr.hrc:466
+#: sc/inc/globstr.hrc:467
msgctxt "STR_COND_NEXTYEAR"
msgid "next year"
msgstr "ឆ្នាំ​ក្រោយ​"
-#: sc/inc/globstr.hrc:467
+#: sc/inc/globstr.hrc:468
msgctxt "STR_COND_AND"
msgid "and"
msgstr "និង"
-#: sc/inc/globstr.hrc:468
+#: sc/inc/globstr.hrc:469
msgctxt "STR_ERR_CONDFORMAT_PROTECTED"
msgid "Conditional Formats can not be created, deleted or changed in protected sheets."
msgstr ""
-#: sc/inc/globstr.hrc:469
+#: sc/inc/globstr.hrc:470
msgctxt "STR_EDIT_EXISTING_COND_FORMATS"
msgid ""
"The selected cell already contains conditional formatting. You can either edit the existing conditional format or you define a new overlapping conditional format.\n"
@@ -2319,7 +2324,7 @@ msgstr ""
"\n"
" តើ​អ្នក​ចង់​កែ​ទ្រង់ទ្រាយ​តាម​លក្ខខណ្ឌ​ដែល​មាន​ស្រាប់​ដែរ​ឬទេ?"
-#: sc/inc/globstr.hrc:470
+#: sc/inc/globstr.hrc:471
msgctxt "STR_QUERY_FORMULA_RECALC_ONLOAD_ODS"
msgid ""
"This document was last saved by an application other than %PRODUCTNAME. Some formula cells may produce different results when recalculated.\n"
@@ -2330,7 +2335,7 @@ msgstr ""
"\n"
"តើ​អ្នក​ចង់​គណនា​ក្រឡា​រូបមន្ត​ទាំងអស់​នៅ​ក្នុង​ឯកសារ​នេះ​ឡើងវិញ​ឥឡូវ​ឬ?"
-#: sc/inc/globstr.hrc:471
+#: sc/inc/globstr.hrc:472
msgctxt "STR_QUERY_FORMULA_RECALC_ONLOAD_XLS"
msgid ""
"This document was last saved by Excel. Some formula cells may produce different results when recalculated.\n"
@@ -2341,77 +2346,77 @@ msgstr ""
"\n"
"តើ​អ្នក​ចង់​គណនា​ក្រឡា​រូបមន្ត​ទាំងអស់​ឡើងវិញ​ឥឡូវ​ឬ?​"
-#: sc/inc/globstr.hrc:472
+#: sc/inc/globstr.hrc:473
msgctxt "STR_NO_INSERT_DELETE_OVER_PIVOT_TABLE"
msgid "You cannot insert or delete cells when the affected range intersects with pivot table."
msgstr "អ្នក​មិន​អាច​បញ្ចូល ឬ​លុប​ក្រឡា​បាន​ទេ ពេល​ជួរ​ក្លែងក្លាយ​ប្រសព្វ​ជាមួយ​តារាង​ជំនួយការ​ទិន្នន័យ។"
-#: sc/inc/globstr.hrc:473
+#: sc/inc/globstr.hrc:474
msgctxt "STR_DPFIELD_GROUP_BY_SECONDS"
msgid "Seconds"
msgstr "វិនាទី"
-#: sc/inc/globstr.hrc:474
+#: sc/inc/globstr.hrc:475
msgctxt "STR_DPFIELD_GROUP_BY_MINUTES"
msgid "Minutes"
msgstr "នាទី"
-#: sc/inc/globstr.hrc:475
+#: sc/inc/globstr.hrc:476
msgctxt "STR_DPFIELD_GROUP_BY_HOURS"
msgid "Hours"
msgstr "ម៉ោង"
-#: sc/inc/globstr.hrc:476
+#: sc/inc/globstr.hrc:477
msgctxt "STR_DPFIELD_GROUP_BY_DAYS"
msgid "Days"
msgstr "ថ្ងៃ"
-#: sc/inc/globstr.hrc:477
+#: sc/inc/globstr.hrc:478
msgctxt "STR_DPFIELD_GROUP_BY_MONTHS"
msgid "Months"
msgstr "ខែ"
-#: sc/inc/globstr.hrc:478
+#: sc/inc/globstr.hrc:479
msgctxt "STR_DPFIELD_GROUP_BY_QUARTERS"
msgid "Quarters"
msgstr "មួយ​ភាគ​បួន"
-#: sc/inc/globstr.hrc:479
+#: sc/inc/globstr.hrc:480
msgctxt "STR_DPFIELD_GROUP_BY_YEARS"
msgid "Years"
msgstr "ឆ្នាំ"
-#: sc/inc/globstr.hrc:480
+#: sc/inc/globstr.hrc:481
msgctxt "STR_INVALIDVAL"
msgid "Invalid target value."
msgstr "តម្លៃ​គោលដៅ​មិន​ត្រឹមត្រូវ ។"
-#: sc/inc/globstr.hrc:481
+#: sc/inc/globstr.hrc:482
msgctxt "STR_INVALIDVAR"
msgid "Undefined name for variable cell."
msgstr "ឈ្មោះ​សម្រាប់​ក្រឡា​អថេរ​ដែល​មិន​បានកំណត់ ។"
-#: sc/inc/globstr.hrc:482
+#: sc/inc/globstr.hrc:483
msgctxt "STR_INVALIDFORM"
msgid "Undefined name as formula cell."
msgstr "ឈ្មោះ​ជា​ក្រឡា​រូបមន្ត​ដែល​មិន​បាន​បញ្ជាក់ ។"
-#: sc/inc/globstr.hrc:483
+#: sc/inc/globstr.hrc:484
msgctxt "STR_NOFORMULA"
msgid "Formula cell must contain a formula."
msgstr "ក្រឡា​រូបមន្ត​ត្រូវ​តែ​មាន​រូបមន្ត។"
-#: sc/inc/globstr.hrc:484
+#: sc/inc/globstr.hrc:485
msgctxt "STR_INVALIDINPUT"
msgid "Invalid input."
msgstr "ព័ត៌មាន​បញ្ចូល​មិនត្រឹមត្រូវ ។"
-#: sc/inc/globstr.hrc:485
+#: sc/inc/globstr.hrc:486
msgctxt "STR_INVALIDCONDITION"
msgid "Invalid condition."
msgstr "លក្ខខណ្ឌ​មិនត្រឹមត្រូវ ។"
-#: sc/inc/globstr.hrc:486
+#: sc/inc/globstr.hrc:487
msgctxt "STR_QUERYREMOVE"
msgid ""
"Should the entry\n"
@@ -2422,137 +2427,137 @@ msgstr ""
"#\n"
"ធាតុ​ឬ​ទេ ?"
-#: sc/inc/globstr.hrc:487
+#: sc/inc/globstr.hrc:488
msgctxt "STR_COPYLIST"
msgid "Copy List"
msgstr "ចម្លង​​បញ្ជី"
-#: sc/inc/globstr.hrc:488
+#: sc/inc/globstr.hrc:489
msgctxt "STR_COPYFROM"
msgid "List from"
msgstr "បញ្ជី​ពី"
-#: sc/inc/globstr.hrc:489
+#: sc/inc/globstr.hrc:490
msgctxt "STR_COPYERR"
msgid "Cells without text have been ignored."
msgstr "ក្រឡា​ដែល​គ្មាន​អត្ថបទ មិន​ត្រូវ​បាន​អើពើ ។"
-#: sc/inc/globstr.hrc:490
+#: sc/inc/globstr.hrc:491
#, c-format
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%s-click to follow hyperlink:"
msgstr ""
-#: sc/inc/globstr.hrc:491
+#: sc/inc/globstr.hrc:492
msgctxt "STR_CLICKHYPERLINK"
msgid "click to open hyperlink:"
msgstr "ចុច​ដើម្បី​បើក​តំណ​ខ្ពស់៖"
-#: sc/inc/globstr.hrc:492
+#: sc/inc/globstr.hrc:493
msgctxt "STR_PRINT_PREVIEW_NODATA"
msgid "No Data"
msgstr "គ្មាន​ទិន្នន័យ"
-#: sc/inc/globstr.hrc:493
+#: sc/inc/globstr.hrc:494
msgctxt "STR_PRINT_PREVIEW_EMPTY_RANGE"
msgid "Print Range Empty"
msgstr "ជួរ​បោះពុម្ព​ទទេ"
-#: sc/inc/globstr.hrc:494
+#: sc/inc/globstr.hrc:495
msgctxt "STR_UNDO_CONDFORMAT"
msgid "Conditional Format"
msgstr "ទម្រង់​លក្ខខណ្ឌ"
-#: sc/inc/globstr.hrc:495
+#: sc/inc/globstr.hrc:496
#, fuzzy
msgctxt "STR_UNDO_CONDFORMAT_LIST"
msgid "Conditional Formats"
msgstr "ទម្រង់​លក្ខខណ្ឌ"
-#: sc/inc/globstr.hrc:496
+#: sc/inc/globstr.hrc:497
msgctxt "STR_UNDO_FORMULA_TO_VALUE"
msgid "Convert Formula To Value"
msgstr ""
-#: sc/inc/globstr.hrc:497
+#: sc/inc/globstr.hrc:498
msgctxt "STR_UNQUOTED_STRING"
msgid "Strings without quotes are interpreted as column/row labels."
msgstr ""
-#: sc/inc/globstr.hrc:498
+#: sc/inc/globstr.hrc:499
msgctxt "STR_ENTER_VALUE"
msgid "Enter a value!"
msgstr ""
-#: sc/inc/globstr.hrc:499
+#: sc/inc/globstr.hrc:500
msgctxt "STR_TABLE_COUNT"
msgid "Sheet %1 of %2"
msgstr ""
-#: sc/inc/globstr.hrc:500
+#: sc/inc/globstr.hrc:501
msgctxt "STR_FUNCTIONS_FOUND"
msgid "%1 and %2 more"
msgstr ""
-#: sc/inc/globstr.hrc:501
+#: sc/inc/globstr.hrc:502
msgctxt "STR_GENERAL"
msgid "General"
msgstr "ទូទៅ"
-#: sc/inc/globstr.hrc:502
+#: sc/inc/globstr.hrc:503
#, fuzzy
msgctxt "STR_NUMBER"
msgid "Number"
msgstr "ចំនួន"
-#: sc/inc/globstr.hrc:503
+#: sc/inc/globstr.hrc:504
msgctxt "STR_PERCENT"
msgid "Percent"
msgstr "ភាគរយ"
-#: sc/inc/globstr.hrc:504
+#: sc/inc/globstr.hrc:505
msgctxt "STR_CURRENCY"
msgid "Currency"
msgstr "រូបិយប័ណ្ណ"
-#: sc/inc/globstr.hrc:505
+#: sc/inc/globstr.hrc:506
#, fuzzy
msgctxt "STR_DATE"
msgid "Date"
msgstr "កាលបរិច្ឆេទ"
-#: sc/inc/globstr.hrc:506
+#: sc/inc/globstr.hrc:507
#, fuzzy
msgctxt "STR_TIME"
msgid "Time"
msgstr "ពេលវេលា"
-#: sc/inc/globstr.hrc:507
+#: sc/inc/globstr.hrc:508
msgctxt "STR_SCIENTIFIC"
msgid "Scientific"
msgstr "វិទ្យាសាស្ត្រ"
-#: sc/inc/globstr.hrc:508
+#: sc/inc/globstr.hrc:509
msgctxt "STR_FRACTION"
msgid "Fraction"
msgstr "ប្រភាគ"
-#: sc/inc/globstr.hrc:509
+#: sc/inc/globstr.hrc:510
msgctxt "STR_BOOLEAN_VALUE"
msgid "Boolean Value"
msgstr "តម្លៃ​ប៊ូលីន"
-#: sc/inc/globstr.hrc:510
+#: sc/inc/globstr.hrc:511
msgctxt "STR_TEXT"
msgid "Text"
msgstr "អត្ថបទ"
-#: sc/inc/globstr.hrc:511
+#: sc/inc/globstr.hrc:512
msgctxt "STR_QUERY_PIVOTTABLE_DELTAB"
msgid "The selected sheet(s) contain source data of related pivot tables that will be lost. Are you sure you want to delete the selected sheet(s)?"
msgstr ""
-#: sc/inc/globstr.hrc:512
+#: sc/inc/globstr.hrc:513
msgctxt "STR_ERR_NAME_INVALID_CELL_REF"
msgid "Invalid name. Reference to a cell, or a range of cells not allowed."
msgstr ""
@@ -10712,8 +10717,8 @@ msgstr "របៀប​"
#: sc/inc/scfuncs.hrc:3010
msgctxt "SC_OPCODE_T_TEST"
-msgid "Mode specifies the number of distribution tails to return. 1= one-tailed, 2 = two-tailed distribution"
-msgstr "របៀប​បញ្ជាក់​ចំនួន​បំណែងចែក​តាម​ក្រោយ​ត្រូវ​ត្រឡប់ ។ បំណែងចែក 1= one-tailed, 2 = two-tailed"
+msgid "Mode specifies the number of distribution tails to return. 1 = one-tailed, 2 = two-tailed distribution"
+msgstr ""
#: sc/inc/scfuncs.hrc:3011
msgctxt "SC_OPCODE_T_TEST"
@@ -10759,8 +10764,8 @@ msgstr "របៀប​"
#: sc/inc/scfuncs.hrc:3024
msgctxt "SC_OPCODE_T_TEST_MS"
-msgid "Mode specifies the number of distribution tails to return. 1= one-tailed, 2 = two-tailed distribution"
-msgstr "របៀប​បញ្ជាក់​ចំនួន​បំណែងចែក​តាម​ក្រោយ​ត្រូវ​ត្រឡប់ ។ បំណែងចែក 1= one-tailed, 2 = two-tailed"
+msgid "Mode specifies the number of distribution tails to return. 1 = one-tailed, 2 = two-tailed distribution"
+msgstr ""
#: sc/inc/scfuncs.hrc:3025
msgctxt "SC_OPCODE_T_TEST_MS"
@@ -18539,22 +18544,22 @@ msgctxt "mergecellsdialog|MergeCellsDialog"
msgid "Merge Cells"
msgstr "បញ្ចូល​ក្រឡា​ចូលគ្នា"
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:81
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:84
msgctxt "mergecellsdialog|label"
msgid "Some cells are not empty."
msgstr ""
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:96
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:99
msgctxt "mergecellsdialog|move-cells-radio"
msgid "Move the contents of the hidden cells into the first cell"
msgstr ""
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:112
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:115
msgctxt "mergecellsdialog|empty-cells-radio"
msgid "Empty the contents of the hidden cells"
msgstr ""
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:128
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:131
msgctxt "mergecellsdialog|keep-content-radio"
msgid "Keep the contents of the hidden cells"
msgstr ""
diff --git a/source/km/sd/messages.po b/source/km/sd/messages.po
index 4f16291c2ae..6b8da6cc11c 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+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"
@@ -13,178 +13,178 @@ msgstr ""
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-#: sd/inc/DocumentRenderer.hrc:29
+#: sd/inc/DocumentRenderer.hrc:27
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Slides"
msgstr "ស្លាយ"
-#: sd/inc/DocumentRenderer.hrc:30
+#: sd/inc/DocumentRenderer.hrc:28
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Handouts"
msgstr "ប្លង់​បោះពុម្ព"
-#: sd/inc/DocumentRenderer.hrc:31
+#: sd/inc/DocumentRenderer.hrc:29
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Notes"
msgstr "ចំណាំ"
-#: sd/inc/DocumentRenderer.hrc:32
+#: sd/inc/DocumentRenderer.hrc:30
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Outline"
msgstr "គ្រោង​"
-#: sd/inc/DocumentRenderer.hrc:37
+#: sd/inc/DocumentRenderer.hrc:35
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "According to layout"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:38
+#: sd/inc/DocumentRenderer.hrc:36
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "1"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:39
+#: sd/inc/DocumentRenderer.hrc:37
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "2"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:40
+#: sd/inc/DocumentRenderer.hrc:38
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "3"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:41
+#: sd/inc/DocumentRenderer.hrc:39
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "4"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:42
+#: sd/inc/DocumentRenderer.hrc:40
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "6"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:43
+#: sd/inc/DocumentRenderer.hrc:41
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "9"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:48
+#: sd/inc/DocumentRenderer.hrc:46
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_ORDER_CHOICES"
msgid "Left to right, then down"
msgstr "ឆ្វេង​ទៅ​ស្តាំ បន្ទាប់​មក​ចុះ​ក្រោម"
-#: sd/inc/DocumentRenderer.hrc:49
+#: sd/inc/DocumentRenderer.hrc:47
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_ORDER_CHOICES"
msgid "Top to bottom, then right"
msgstr "កំពូល​ទៅ​បាត បន្ទាប់​មក​ទៅ​ស្តាំ"
-#: sd/inc/DocumentRenderer.hrc:54
+#: sd/inc/DocumentRenderer.hrc:52
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Original colors"
msgstr "ពណ៌​ដើម"
-#: sd/inc/DocumentRenderer.hrc:55
+#: sd/inc/DocumentRenderer.hrc:53
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Grayscale"
msgstr "មាត្រដ្ឋាន​ប្រផេះ"
-#: sd/inc/DocumentRenderer.hrc:56
+#: sd/inc/DocumentRenderer.hrc:54
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Black & white"
msgstr "ស & ​ខ្មៅ"
-#: sd/inc/DocumentRenderer.hrc:61
+#: sd/inc/DocumentRenderer.hrc:59
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Original size"
msgstr "ទំហំ​ដើម"
-#: sd/inc/DocumentRenderer.hrc:62
+#: sd/inc/DocumentRenderer.hrc:60
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Fit to printable page"
msgstr "សម​នឹង​ទំព័រ​ដែល​អាច​បោះពុម្ព​បាន"
-#: sd/inc/DocumentRenderer.hrc:63
+#: sd/inc/DocumentRenderer.hrc:61
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Distribute on multiple sheets of paper"
msgstr "ចែកចាយ​លើ​សន្លឹក​ជា​ច្រើន​​នៃ​​​ក្រដាស"
-#: sd/inc/DocumentRenderer.hrc:64
+#: sd/inc/DocumentRenderer.hrc:62
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Tile sheet of paper with repeated slides"
msgstr "ដាក់​សន្លឹក​ក្រដាស​ជា​ក្រឡាក្បឿន​ដែលមាន​ស្លាយ​ដដែល​ជា​ច្រើន"
-#: sd/inc/DocumentRenderer.hrc:69
+#: sd/inc/DocumentRenderer.hrc:67
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Original size"
msgstr "ទំហំ​ដើម"
-#: sd/inc/DocumentRenderer.hrc:70
+#: sd/inc/DocumentRenderer.hrc:68
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Fit to printable page"
msgstr "សម​នឹង​ទំព័រ​ដែល​អាច​បោះពុម្ព​បាន"
-#: sd/inc/DocumentRenderer.hrc:71
+#: sd/inc/DocumentRenderer.hrc:69
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Distribute on multiple sheets of paper"
msgstr "ចែកចាយ​លើ​សន្លឹក​ជា​ច្រើន​​នៃ​​​ក្រដាស"
-#: sd/inc/DocumentRenderer.hrc:72
+#: sd/inc/DocumentRenderer.hrc:70
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Tile sheet of paper with repeated pages"
msgstr "ដាក់​សន្លឹក​ក្រដាស​ជា​ក្រឡាក្បឿង​ដែលមាន​ទំព័រ​ជាន់គ្នា​ជា​ច្រើន"
-#: sd/inc/DocumentRenderer.hrc:77
+#: sd/inc/DocumentRenderer.hrc:75
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "All pages"
msgstr "គ្រប់​ទំព័រ"
-#: sd/inc/DocumentRenderer.hrc:78
+#: sd/inc/DocumentRenderer.hrc:76
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "Front sides / right pages"
msgstr "ផ្នែក​ខាង​មុខ/ទំព័រ​ស្ដាំ"
-#: sd/inc/DocumentRenderer.hrc:79
+#: sd/inc/DocumentRenderer.hrc:77
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "Back sides / left pages"
msgstr "ផ្នែក​ខាង​ក្រោយ/ទំព័រ​ឆ្វេង"
-#: sd/inc/DocumentRenderer.hrc:84
+#: sd/inc/DocumentRenderer.hrc:82
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~All slides"
msgstr "ស្លាយ​ទាំងអស់ "
-#: sd/inc/DocumentRenderer.hrc:85
+#: sd/inc/DocumentRenderer.hrc:83
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~Slides"
msgstr "ស្លាយ"
-#: sd/inc/DocumentRenderer.hrc:86
+#: sd/inc/DocumentRenderer.hrc:84
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Se~lection"
msgstr "ការ​ជ្រើស"
-#: sd/inc/DocumentRenderer.hrc:91
+#: sd/inc/DocumentRenderer.hrc:89
#, fuzzy
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~All pages"
msgstr "ទំព័រ​ទាំងអស់ "
-#: sd/inc/DocumentRenderer.hrc:92
+#: sd/inc/DocumentRenderer.hrc:90
#, fuzzy
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Pa~ges"
msgstr "ទំព័រ"
-#: sd/inc/DocumentRenderer.hrc:93
+#: sd/inc/DocumentRenderer.hrc:91
#, fuzzy
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Se~lection"
diff --git a/source/km/svx/messages.po b/source/km/svx/messages.po
index a08e0eb2396..352ebdc2227 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: 2018-05-16 16:53+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+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"
@@ -5510,7 +5510,7 @@ msgstr ""
#: svx/uiconfig/ui/safemodedialog.ui:432
msgctxt "safemodedialog|btn_create_zip"
-msgid "Create Zip Archive from User Profile"
+msgid "Archive User Profile"
msgstr ""
#: svx/uiconfig/ui/safemodedialog.ui:445
@@ -9170,9 +9170,9 @@ msgid "Red"
msgstr "ក្រហម"
#: include/svx/strings.hrc:565
-msgctxt "RID_SVXSTR_COLOR_VIOLET"
-msgid "Violet"
-msgstr "ស្វាយ"
+msgctxt "RID_SVXSTR_COLOR_MAGENTA"
+msgid "Magenta"
+msgstr "ក្រហម​ស្វាយ"
#: include/svx/strings.hrc:566
msgctxt "RID_SVXSTR_COLOR_PURPLE"
@@ -9239,8 +9239,8 @@ msgid "Light Red"
msgstr "ក្រហមស្រាល"
#: include/svx/strings.hrc:579
-msgctxt "RID_SVXSTR_COLOR_LIGHTVIOLET"
-msgid "Light Violet"
+msgctxt "RID_SVXSTR_COLOR_LIGHTMAGENTA"
+msgid "Light Magenta"
msgstr ""
#: include/svx/strings.hrc:580
@@ -9306,10 +9306,9 @@ msgid "Dark Red"
msgstr "ក្រហម​ខ្លាំង​"
#: include/svx/strings.hrc:593
-#, fuzzy
-msgctxt "RID_SVXSTR_COLOR_DARKVIOLET1"
-msgid "Dark Violet"
-msgstr "ស្វាយ​ខ្លាំង​"
+msgctxt "RID_SVXSTR_COLOR_DARKMAGENTA"
+msgid "Dark Magenta"
+msgstr ""
#: include/svx/strings.hrc:594
msgctxt "RID_SVXSTR_COLOR_DARKPURPLE"
@@ -9343,55 +9342,55 @@ msgstr ""
#. Elements of the Tonal color palette
#: include/svx/strings.hrc:601
+msgctxt "RID_SVXSTR_COLOR_VIOLET"
+msgid "Violet"
+msgstr "ស្វាយ"
+
+#: include/svx/strings.hrc:602
msgctxt "RID_SVXSTR_COLOR_VIOLET_OUG"
msgid "Violet (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:602
+#: include/svx/strings.hrc:603
msgctxt "RID_SVXSTR_COLOR_BLUE_OUG"
msgid "Blue (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:603
+#: include/svx/strings.hrc:604
msgctxt "RID_SVXSTR_COLOR_AZURE_OUG"
msgid "Azure (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:604
+#: include/svx/strings.hrc:605
msgctxt "RID_SVXSTR_COLOR_SPRINGGREEN_OUG"
msgid "Spring Green (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:605
+#: include/svx/strings.hrc:606
msgctxt "RID_SVXSTR_COLOR_GREEN_OUG"
msgid "Green (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:606
+#: include/svx/strings.hrc:607
msgctxt "RID_SVXSTR_COLOR_CHARTREUSEGREEN_OUG"
msgid "Chartreuse Green (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:607
+#: include/svx/strings.hrc:608
msgctxt "RID_SVXSTR_COLOR_ORANGE_OUG"
msgid "Orange (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:608
+#: include/svx/strings.hrc:609
msgctxt "RID_SVXSTR_COLOR_RED_OUG"
msgid "Red (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:609
+#: include/svx/strings.hrc:610
msgctxt "RID_SVXSTR_COLOR_ROSE_OUG"
msgid "Rose (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:610
-msgctxt "RID_SVXSTR_COLOR_MAGENTA"
-msgid "Magenta"
-msgstr "ក្រហម​ស្វាយ"
-
#: include/svx/strings.hrc:611
msgctxt "RID_SVXSTR_COLOR_AZURE"
msgid "Azure"
@@ -12540,13 +12539,13 @@ msgstr "ចំណុច​ព្រួញ​ចង្អុល​ស្ដាំ
#: include/svx/strings.hrc:1273
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_6"
-msgid "Check mark bullets"
-msgstr "ចំណុច​សម្គាល់​ធីក"
+msgid "Cross mark bullets"
+msgstr ""
#: include/svx/strings.hrc:1274
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_7"
-msgid "Tick mark bullets"
-msgstr "ចំណុច​សម្គាល់​ធីក"
+msgid "Check mark bullets"
+msgstr ""
#: include/svx/strings.hrc:1275
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_0"
diff --git a/source/km/sw/messages.po b/source/km/sw/messages.po
index 650b024fd2a..90145958f6e 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: 2018-05-22 13:17+0200\n"
+"POT-Creation-Date: 2018-06-12 14:41+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"
@@ -1217,13 +1217,13 @@ msgstr "សេចក្ដី​ស្រង់"
#: sw/inc/strings.hrc:172
msgctxt "STR_POOLCOLL_TOX_ILLUSH"
-msgid "Illustration Index Heading"
-msgstr "ក្បាល​លិបិក្រម​​​រូបភាព​លម្អ"
+msgid "Figure Index Heading"
+msgstr ""
#: sw/inc/strings.hrc:173
msgctxt "STR_POOLCOLL_TOX_ILLUS1"
-msgid "Illustration Index 1"
-msgstr "លិបិក្រម​រូបភាព​លម្អ ១"
+msgid "Figure Index 1"
+msgstr ""
#: sw/inc/strings.hrc:174
msgctxt "STR_POOLCOLL_TOX_OBJECTH"
@@ -3705,8 +3705,8 @@ msgstr "តារាង​វត្ថុ"
#: sw/inc/strings.hrc:672
msgctxt "STR_TOX_ILL"
-msgid "Illustration Index"
-msgstr "លិបិក្រម​រូបភាព​លម្អ"
+msgid "Table of Figures"
+msgstr ""
#: sw/inc/strings.hrc:673
#, c-format
@@ -9574,72 +9574,72 @@ msgctxt "footnotepage|label5"
msgid "Continuation Notice"
msgstr "កំណត់​សម្គាល់​បន្ត​គ្នា"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:49
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:55
msgctxt "footnotesendnotestabpage|ftnntnum"
msgid "_Restart numbering"
msgstr "ចាប់ផ្ដើម​លេខរៀង​ឡើងវិញ"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:91
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:93
msgctxt "footnotesendnotestabpage|ftnoffset_label"
msgid "_Start at:"
msgstr "ចាប់ផ្ដើម​​​ពី៖"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:112
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:111
msgctxt "footnotesendnotestabpage|ftnntnumfmt"
msgid "Custom _format"
msgstr "ទ្រង់ទ្រាយ​ផ្ទាល់​ខ្លួន"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:155
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:150
msgctxt "footnotesendnotestabpage|ftnsuffix_label"
msgid "Aft_er:"
msgstr "បន្ទាប់ពី៖"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:199
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:188
msgctxt "footnotesendnotestabpage|ftnprefix_label"
msgid "Be_fore:"
msgstr "មុន៖"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:228
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:212
msgctxt "footnotesendnotestabpage|ftnntattextend"
msgid "Collec_t at end of text"
msgstr "ប្រមូល​នៅ​ចុង​អត្ថបទ"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:252
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:234
msgctxt "footnotesendnotestabpage|label1"
msgid "Footnotes"
msgstr "លេខ​យោង"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:289
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:271
msgctxt "footnotesendnotestabpage|endntattextend"
msgid "C_ollect at end of section"
msgstr "ប្រមូល​នៅ​ចុង​ភាគ"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:315
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:295
msgctxt "footnotesendnotestabpage|endntnum"
msgid "_Restart numbering"
msgstr "ចាប់ផ្ដើម​លេខរៀង​ឡើងវិញ"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:357
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:333
msgctxt "footnotesendnotestabpage|endoffset_label"
msgid "_Start at:"
msgstr "ចាប់ផ្ដើម​​​ពី៖"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:378
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:351
msgctxt "footnotesendnotestabpage|endntnumfmt"
msgid "_Custom format"
msgstr "ទ្រង់ទ្រាយ​ផ្ទាល់​ខ្លួន៖"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:421
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:390
msgctxt "footnotesendnotestabpage|endsuffix_label"
msgid "Aft_er:"
msgstr "បន្ទាប់ពី៖"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:465
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:428
msgctxt "footnotesendnotestabpage|endprefix_label"
msgid "Be_fore:"
msgstr "មុន៖"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:500
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:458
msgctxt "footnotesendnotestabpage|label2"
msgid "Endnotes"
msgstr "លេខ​យោង​ចុង"
@@ -9669,27 +9669,27 @@ msgctxt "formatsectiondialog|notes"
msgid "Footnotes/Endnotes"
msgstr "លេខ​យោង/លេខ​យោង​ចុង"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:63
+#: sw/uiconfig/swriter/ui/formattablepage.ui:77
msgctxt "formattablepage|nameft"
msgid "_Name"
msgstr "ឈ្មោះ"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:79
+#: sw/uiconfig/swriter/ui/formattablepage.ui:91
msgctxt "formattablepage|widthft"
msgid "W_idth"
msgstr "ទទឹង "
-#: sw/uiconfig/swriter/ui/formattablepage.ui:110
+#: sw/uiconfig/swriter/ui/formattablepage.ui:120
msgctxt "formattablepage|relwidth"
msgid "Relati_ve"
msgstr "ទំនាក់​ទំនង "
-#: sw/uiconfig/swriter/ui/formattablepage.ui:155
+#: sw/uiconfig/swriter/ui/formattablepage.ui:160
msgctxt "formattablepage|label45"
msgid "Properties"
msgstr "លក្ខណសម្បត្តិ"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:194
+#: sw/uiconfig/swriter/ui/formattablepage.ui:195
msgctxt "formattablepage|leftft"
msgid "Lef_t"
msgstr "​ឆ្វេង "
@@ -9699,62 +9699,62 @@ msgctxt "formattablepage|rightft"
msgid "Ri_ght"
msgstr "ស្តាំ "
-#: sw/uiconfig/swriter/ui/formattablepage.ui:228
+#: sw/uiconfig/swriter/ui/formattablepage.ui:226
msgctxt "formattablepage|aboveft"
msgid "_Above"
msgstr "​លើ "
-#: sw/uiconfig/swriter/ui/formattablepage.ui:245
+#: sw/uiconfig/swriter/ui/formattablepage.ui:241
msgctxt "formattablepage|belowft"
msgid "_Below"
msgstr "​ក្រោម "
-#: sw/uiconfig/swriter/ui/formattablepage.ui:320
+#: sw/uiconfig/swriter/ui/formattablepage.ui:311
msgctxt "formattablepage|label46"
msgid "Spacing"
msgstr "គម្លាត"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:362
+#: sw/uiconfig/swriter/ui/formattablepage.ui:349
msgctxt "formattablepage|full"
msgid "A_utomatic"
msgstr "ស្វ័យ​ប្រវត្តិ"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:380
+#: sw/uiconfig/swriter/ui/formattablepage.ui:365
msgctxt "formattablepage|left"
msgid "_Left"
msgstr "ឆ្វេង "
-#: sw/uiconfig/swriter/ui/formattablepage.ui:398
+#: sw/uiconfig/swriter/ui/formattablepage.ui:381
msgctxt "formattablepage|fromleft"
msgid "_From left"
msgstr "ពី​ឆ្វេង "
-#: sw/uiconfig/swriter/ui/formattablepage.ui:416
+#: sw/uiconfig/swriter/ui/formattablepage.ui:397
msgctxt "formattablepage|right"
msgid "R_ight"
msgstr "ស្តាំ "
-#: sw/uiconfig/swriter/ui/formattablepage.ui:435
+#: sw/uiconfig/swriter/ui/formattablepage.ui:413
msgctxt "formattablepage|center"
msgid "_Center"
msgstr "កណ្តាល "
-#: sw/uiconfig/swriter/ui/formattablepage.ui:453
+#: sw/uiconfig/swriter/ui/formattablepage.ui:429
msgctxt "formattablepage|free"
msgid "_Manual"
msgstr "ដោយ​​ដៃ "
-#: sw/uiconfig/swriter/ui/formattablepage.ui:478
+#: sw/uiconfig/swriter/ui/formattablepage.ui:452
msgctxt "formattablepage|label43"
msgid "Alignment"
msgstr "ការ​​តម្រឹម"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:522
+#: sw/uiconfig/swriter/ui/formattablepage.ui:491
msgctxt "formattablepage|label53"
msgid "Text _direction"
msgstr "ទិស​អត្ថបទ "
-#: sw/uiconfig/swriter/ui/formattablepage.ui:553
+#: sw/uiconfig/swriter/ui/formattablepage.ui:519
msgctxt "formattablepage|label44"
msgid "Properties "
msgstr "លក្ខណសម្បត្តិ"
@@ -10112,22 +10112,27 @@ msgctxt "headerfootermenu|insert_pagenumber"
msgid "Insert Page Number"
msgstr ""
-#: sw/uiconfig/swriter/ui/indentpage.ui:52
+#: sw/uiconfig/swriter/ui/headerfootermenu.ui:42
+msgctxt "headerfootermenu|insert_pagecount"
+msgid "Insert Page Count"
+msgstr ""
+
+#: sw/uiconfig/swriter/ui/indentpage.ui:57
msgctxt "indentpage|label1"
msgid "_Before section"
msgstr "មុន​ភាគ"
-#: sw/uiconfig/swriter/ui/indentpage.ui:67
+#: sw/uiconfig/swriter/ui/indentpage.ui:71
msgctxt "indentpage|label3"
msgid "_After section"
msgstr "ក្រោយ​ភាគ"
-#: sw/uiconfig/swriter/ui/indentpage.ui:113
+#: sw/uiconfig/swriter/ui/indentpage.ui:115
msgctxt "indentpage|label2"
msgid "Indent"
msgstr "ចូល​បន្ទាត់"
-#: sw/uiconfig/swriter/ui/indentpage.ui:142
+#: sw/uiconfig/swriter/ui/indentpage.ui:155
msgctxt "indentpage|preview-atkobject"
msgid "Example"
msgstr "ឧតាហរណ៍"
@@ -13851,7 +13856,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:68
msgctxt "optcompatpage|format"
-msgid "MS Word-compatible trailing blanks"
+msgid "Word-compatible trailing blanks"
msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:69
@@ -13861,7 +13866,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:70
msgctxt "optcompatpage|format"
-msgid "A database field (e.g., MailMerge) with empty value hides its paragraph"
+msgid "Hide paragraphs of database fields (e.g., mail merge) with an empty value"
msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:71
@@ -16669,123 +16674,123 @@ msgctxt "tableproperties|background"
msgid "Background"
msgstr "ផ្ទៃ​ខាង​ក្រោយ"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:25
-msgctxt "tabletextflowpage|liststore1"
-msgid "Horizontal"
-msgstr "ផ្ដេក"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:29
-msgctxt "tabletextflowpage|liststore1"
-msgid "Vertical"
-msgstr "បញ្ឈរ"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:33
-msgctxt "tabletextflowpage|liststore1"
-msgid "Use superordinate object settings"
-msgstr "ប្រើ​ការ​កំណត់​វត្ថុ​តាម​លំនាំដើម"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:47
-msgctxt "tabletextflowpage|liststore2"
-msgid "Top"
-msgstr "កំពូល"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:51
-msgctxt "tabletextflowpage|liststore2"
-msgid "Centered"
-msgstr "កណ្តាល"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:55
-msgctxt "tabletextflowpage|liststore2"
-msgid "Bottom"
-msgstr "បាត"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:97
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:53
msgctxt "tabletextflowpage|break"
msgid "_Break"
msgstr "បំបែក ​"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:112
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:68
msgctxt "tabletextflowpage|page"
msgid "_Page"
msgstr "ទំព័រ "
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:132
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:87
msgctxt "tabletextflowpage|column"
msgid "Col_umn"
msgstr "ជួរ​ឈរ "
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:151
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:106
msgctxt "tabletextflowpage|before"
msgid "Be_fore"
msgstr "មុន "
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:171
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:125
msgctxt "tabletextflowpage|after"
msgid "_After"
msgstr "បន្ទាប់ "
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:203
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:158
msgctxt "tabletextflowpage|pagestyle"
msgid "With Page St_yle"
msgstr "ជាមួយ​រចនាប័ទ្ម​ទំព័រ "
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:224
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:177
msgctxt "tabletextflowpage|pagenoft"
msgid "Page _number"
msgstr "លេខ​ទំព័រ "
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:257
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:213
#, fuzzy
msgctxt "tabletextflowpage|pagestylelb-atkobject"
msgid "With Page Style"
msgstr "ជាមួយ​រចនាប័ទ្ម​ទំព័រ "
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:274
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:230
msgctxt "tabletextflowpage|split"
msgid "Allow _table to split across pages and columns"
msgstr "អនុញ្ញាត​ឲ្យ​តារាង ពុះ​កាត់​ទំព័រ និង​ជួរឈរ "
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:289
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:245
msgctxt "tabletextflowpage|splitrow"
msgid "Allow row to break a_cross pages and columns"
msgstr "អនុញ្ញាត​ឲ្យ​ជួរដេក បំបែក​កាត់​ទំព័រ និង​ជួរឈរ "
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:306
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:262
msgctxt "tabletextflowpage|keep"
msgid "_Keep with next paragraph"
msgstr "រក្សា​​ជាមួយ​កថាខណ្ឌ​បន្ទាប់ "
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:328
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:284
msgctxt "tabletextflowpage|label40"
msgid "Text _orientation"
msgstr "ទិស​អត្ថបទ"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:361
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:298
+msgctxt "tabletextflowpage|liststore1"
+msgid "Horizontal"
+msgstr "ផ្ដេក"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:299
+msgctxt "tabletextflowpage|liststore1"
+msgid "Vertical"
+msgstr "បញ្ឈរ"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:300
+msgctxt "tabletextflowpage|liststore1"
+msgid "Use superordinate object settings"
+msgstr "ប្រើ​ការ​កំណត់​វត្ថុ​តាម​លំនាំដើម"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:321
msgctxt "tabletextflowpage|headline"
msgid "R_epeat heading"
msgstr "ធ្វើ​ក្បាល​​ម្តង​ទៀត "
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:383
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:343
msgctxt "tabletextflowpage|label38"
msgid "The first "
msgstr "ទី​មួយ"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:396
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:356
msgctxt "tabletextflowpage|label39"
msgid "rows"
msgstr "ជួរដេក"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:434
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:395
msgctxt "tabletextflowpage|label35"
msgid "Text Flow"
msgstr "លំហូរ​​អត្ថបទ"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:467
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:428
msgctxt "tabletextflowpage|label41"
msgid "_Vertical alignment"
msgstr "តម្រឹម​បញ្ឈរ "
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:495
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:442
+msgctxt "tabletextflowpage|liststore2"
+msgid "Top"
+msgstr "កំពូល"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:443
+msgctxt "tabletextflowpage|liststore2"
+msgid "Centered"
+msgstr "កណ្តាល"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:444
+msgctxt "tabletextflowpage|liststore2"
+msgid "Bottom"
+msgstr "បាត"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:460
msgctxt "tabletextflowpage|label36"
msgid "Alignment"
msgstr "ការ​​តម្រឹម"
@@ -17587,8 +17592,8 @@ msgstr "លិបិក្រម​តាម​លំដាប់​អក្ស
#: sw/uiconfig/swriter/ui/tocindexpage.ui:58
msgctxt "tocindexpage|liststore1"
-msgid "Illustration Index"
-msgstr "លិបិក្រម​រូបភាព​លម្អ"
+msgid "Table of Figures"
+msgstr ""
#: sw/uiconfig/swriter/ui/tocindexpage.ui:62
msgctxt "tocindexpage|liststore1"
diff --git a/source/km/writerperfect/messages.po b/source/km/writerperfect/messages.po
index c8cedf8193b..95ddba282a5 100644
--- a/source/km/writerperfect/messages.po
+++ b/source/km/writerperfect/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-16 16:54+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+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"
@@ -65,98 +65,98 @@ msgctxt "exportepub|generalft"
msgid "General"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:122
+#: writerperfect/uiconfig/ui/exportepub.ui:121
#, fuzzy
msgctxt "exportepub|versionft"
msgid "Version:"
msgstr "កំណែ ៖"
-#: writerperfect/uiconfig/ui/exportepub.ui:139
+#: writerperfect/uiconfig/ui/exportepub.ui:138
msgctxt "exportepub|epub3"
msgid "EPUB 3.0"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:140
+#: writerperfect/uiconfig/ui/exportepub.ui:139
msgctxt "exportepub|epub2"
msgid "EPUB 2.0"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:175
+#: writerperfect/uiconfig/ui/exportepub.ui:174
msgctxt "exportepub|splitft"
msgid "Split method:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:192
+#: writerperfect/uiconfig/ui/exportepub.ui:191
msgctxt "exportepub|splitpage"
msgid "Page break"
msgstr "បំបែក​ទំព័រ "
-#: writerperfect/uiconfig/ui/exportepub.ui:193
+#: writerperfect/uiconfig/ui/exportepub.ui:192
msgctxt "exportepub|splitheading"
msgid "Heading"
msgstr "ក្បាល"
-#: writerperfect/uiconfig/ui/exportepub.ui:228
+#: writerperfect/uiconfig/ui/exportepub.ui:227
msgctxt "exportepub|layoutft"
msgid "Layout method:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:245
+#: writerperfect/uiconfig/ui/exportepub.ui:244
msgctxt "exportepub|layoutreflowable"
msgid "Reflowable"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:246
+#: writerperfect/uiconfig/ui/exportepub.ui:245
msgctxt "exportepub|layoutfixed"
msgid "Fixed"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:281
+#: writerperfect/uiconfig/ui/exportepub.ui:280
msgctxt "exportepub|coverimageft"
msgid "Custom cover image:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:311
+#: writerperfect/uiconfig/ui/exportepub.ui:310
msgctxt "exportepub|coverbutton"
msgid "Browse..."
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:355
+#: writerperfect/uiconfig/ui/exportepub.ui:354
msgctxt "exportepub|mediadirft"
msgid "Custom media directory:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:385
+#: writerperfect/uiconfig/ui/exportepub.ui:384
msgctxt "exportepub|mediabutton"
msgid "Browse..."
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:429
+#: writerperfect/uiconfig/ui/exportepub.ui:428
msgctxt "exportepub|metadataft"
msgid "Metadata"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:470
+#: writerperfect/uiconfig/ui/exportepub.ui:468
msgctxt "exportepub|identifierft"
msgid "Identifier:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:485
+#: writerperfect/uiconfig/ui/exportepub.ui:483
msgctxt "exportepub|titleft"
msgid "Title:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:511
+#: writerperfect/uiconfig/ui/exportepub.ui:509
msgctxt "exportepub|authorft"
msgid "Author:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:537
+#: writerperfect/uiconfig/ui/exportepub.ui:535
msgctxt "exportepub|languageft"
msgid "Language:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:563
+#: writerperfect/uiconfig/ui/exportepub.ui:561
msgctxt "exportepub|dateft"
msgid "Date:"
msgstr ""
diff --git a/source/kmr-Latn/cui/messages.po b/source/kmr-Latn/cui/messages.po
index 3c290ed6d90..3a70620ffad 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+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"
@@ -10495,107 +10495,107 @@ msgctxt "positionsizedialog|PositionAndSizeDialog"
msgid "Position and Size"
msgstr "Pozîsyon û Me~zinahî..."
-#: cui/uiconfig/ui/positionsizedialog.ui:107
+#: cui/uiconfig/ui/positionsizedialog.ui:136
#, fuzzy
msgctxt "positionsizedialog|RID_SVXPAGE_POSITION_SIZE"
msgid "Position and Size"
msgstr "Pozîsyon û Me~zinahî..."
-#: cui/uiconfig/ui/positionsizedialog.ui:129
+#: cui/uiconfig/ui/positionsizedialog.ui:182
#, fuzzy
msgctxt "positionsizedialog|RID_SVXPAGE_SWPOSSIZE"
msgid "Position and Size"
msgstr "Pozîsyon û Me~zinahî..."
-#: cui/uiconfig/ui/positionsizedialog.ui:152
+#: cui/uiconfig/ui/positionsizedialog.ui:229
msgctxt "positionsizedialog|RID_SVXPAGE_ANGLE"
msgid "Rotation"
msgstr "Veger"
-#: cui/uiconfig/ui/positionsizedialog.ui:175
+#: cui/uiconfig/ui/positionsizedialog.ui:276
msgctxt "positionsizedialog|RID_SVXPAGE_SLANT"
msgid "Slant & Corner Radius"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:40
+#: cui/uiconfig/ui/possizetabpage.ui:61
#, fuzzy
msgctxt "possizetabpage|FT_POS_X"
msgid "Position _X:"
msgstr "Cih"
-#: cui/uiconfig/ui/possizetabpage.ui:56
+#: cui/uiconfig/ui/possizetabpage.ui:75
#, fuzzy
msgctxt "possizetabpage|FT_POS_Y"
msgid "Position _Y:"
msgstr "Cih"
-#: cui/uiconfig/ui/possizetabpage.ui:110
+#: cui/uiconfig/ui/possizetabpage.ui:128
msgctxt "possizetabpage|FT_POSREFERENCE"
msgid "_Base point:"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:148
+#: cui/uiconfig/ui/possizetabpage.ui:182
msgctxt "possizetabpage|label1"
msgid "Position"
msgstr "Cih"
-#: cui/uiconfig/ui/possizetabpage.ui:190
+#: cui/uiconfig/ui/possizetabpage.ui:224
#, fuzzy
msgctxt "possizetabpage|FT_WIDTH"
msgid "Wi_dth:"
msgstr "Firehî"
-#: cui/uiconfig/ui/possizetabpage.ui:206
+#: cui/uiconfig/ui/possizetabpage.ui:238
#, fuzzy
msgctxt "possizetabpage|FT_HEIGHT"
msgid "H_eight:"
msgstr "Bilindahî"
-#: cui/uiconfig/ui/possizetabpage.ui:247
+#: cui/uiconfig/ui/possizetabpage.ui:276
#, fuzzy
msgctxt "possizetabpage|CBX_SCALE"
msgid "_Keep ratio"
msgstr "Rêjeyê Biparêze"
-#: cui/uiconfig/ui/possizetabpage.ui:279
+#: cui/uiconfig/ui/possizetabpage.ui:307
msgctxt "possizetabpage|FT_SIZEREFERENCE"
msgid "Base _point:"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:317
+#: cui/uiconfig/ui/possizetabpage.ui:361
msgctxt "possizetabpage|label2"
msgid "Size"
msgstr "Mezinahî"
-#: cui/uiconfig/ui/possizetabpage.ui:356
+#: cui/uiconfig/ui/possizetabpage.ui:401
#, fuzzy
msgctxt "possizetabpage|TSB_POSPROTECT"
msgid "Positio_n"
msgstr "Cih"
-#: cui/uiconfig/ui/possizetabpage.ui:373
+#: cui/uiconfig/ui/possizetabpage.ui:418
#, fuzzy
msgctxt "possizetabpage|TSB_SIZEPROTECT"
msgid "_Size"
msgstr "Mezinahî"
-#: cui/uiconfig/ui/possizetabpage.ui:397
+#: cui/uiconfig/ui/possizetabpage.ui:441
#, fuzzy
msgctxt "possizetabpage|label3"
msgid "Protect"
msgstr "~Parastin"
-#: cui/uiconfig/ui/possizetabpage.ui:430
+#: cui/uiconfig/ui/possizetabpage.ui:475
msgctxt "possizetabpage|TSB_AUTOGROW_WIDTH"
msgid "_Fit width to text"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:447
+#: cui/uiconfig/ui/possizetabpage.ui:492
msgctxt "possizetabpage|TSB_AUTOGROW_HEIGHT"
msgid "Fit _height to text"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:471
+#: cui/uiconfig/ui/possizetabpage.ui:515
msgctxt "possizetabpage|label4"
msgid "Adapt"
msgstr ""
@@ -10808,50 +10808,50 @@ msgctxt "recordnumberdialog|label2"
msgid "go to record"
msgstr ""
-#: cui/uiconfig/ui/rotationtabpage.ui:52
+#: cui/uiconfig/ui/rotationtabpage.ui:56
#, fuzzy
msgctxt "rotationtabpage|FT_POS_X"
msgid "Position _X:"
msgstr "Cih"
-#: cui/uiconfig/ui/rotationtabpage.ui:66
+#: cui/uiconfig/ui/rotationtabpage.ui:70
#, fuzzy
msgctxt "rotationtabpage|FT_POS_Y"
msgid "Position _Y:"
msgstr "Cih"
-#: cui/uiconfig/ui/rotationtabpage.ui:116
+#: cui/uiconfig/ui/rotationtabpage.ui:123
msgctxt "rotationtabpage|FT_POSPRESETS"
msgid "_Default settings:"
msgstr ""
-#: cui/uiconfig/ui/rotationtabpage.ui:130
+#: cui/uiconfig/ui/rotationtabpage.ui:151
msgctxt "rotationtabpage|CTL_RECT|tooltip_text"
msgid "Rotation point"
msgstr ""
-#: cui/uiconfig/ui/rotationtabpage.ui:155
+#: cui/uiconfig/ui/rotationtabpage.ui:178
msgctxt "rotationtabpage|label1"
msgid "Pivot Point"
msgstr ""
-#: cui/uiconfig/ui/rotationtabpage.ui:197
+#: cui/uiconfig/ui/rotationtabpage.ui:220
msgctxt "rotationtabpage|FT_ANGLE"
msgid "_Angle:"
msgstr ""
-#: cui/uiconfig/ui/rotationtabpage.ui:238
+#: cui/uiconfig/ui/rotationtabpage.ui:263
msgctxt "rotationtabpage|FT_ANGLEPRESETS"
msgid "Default _settings:"
msgstr ""
-#: cui/uiconfig/ui/rotationtabpage.ui:252
+#: cui/uiconfig/ui/rotationtabpage.ui:287
#, fuzzy
msgctxt "rotationtabpage|CTL_ANGLE|tooltip_text"
msgid "Rotation Angle"
msgstr "Rotation Angle"
-#: cui/uiconfig/ui/rotationtabpage.ui:277
+#: cui/uiconfig/ui/rotationtabpage.ui:314
#, fuzzy
msgctxt "rotationtabpage|label2"
msgid "Rotation Angle"
@@ -11245,52 +11245,52 @@ msgctxt "similaritysearchdialog|relaxbox"
msgid "_Combine"
msgstr "~Kombînasyon"
-#: cui/uiconfig/ui/slantcornertabpage.ui:50
+#: cui/uiconfig/ui/slantcornertabpage.ui:70
msgctxt "slantcornertabpage|label5"
msgid "_X:"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:88
+#: cui/uiconfig/ui/slantcornertabpage.ui:110
msgctxt "slantcornertabpage|label6"
msgid "_Y:"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:125
+#: cui/uiconfig/ui/slantcornertabpage.ui:149
msgctxt "slantcornertabpage|label3"
msgid "Control Point 1"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:159
+#: cui/uiconfig/ui/slantcornertabpage.ui:183
msgctxt "slantcornertabpage|FT_RADIUS"
msgid "_Radius:"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:189
+#: cui/uiconfig/ui/slantcornertabpage.ui:214
msgctxt "slantcornertabpage|label1"
msgid "Corner Radius"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:223
+#: cui/uiconfig/ui/slantcornertabpage.ui:248
msgctxt "slantcornertabpage|FT_ANGLE"
msgid "_Angle:"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:253
+#: cui/uiconfig/ui/slantcornertabpage.ui:279
msgctxt "slantcornertabpage|label2"
msgid "Slant"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:294
+#: cui/uiconfig/ui/slantcornertabpage.ui:320
msgctxt "slantcornertabpage|label4"
msgid "_X:"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:332
+#: cui/uiconfig/ui/slantcornertabpage.ui:360
msgctxt "slantcornertabpage|label7"
msgid "_Y:"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:369
+#: cui/uiconfig/ui/slantcornertabpage.ui:399
msgctxt "slantcornertabpage|label8"
msgid "Control Point 2"
msgstr ""
@@ -11587,124 +11587,124 @@ msgctxt "storedwebconnectiondialog|change"
msgid "_Change Password..."
msgstr "Şî~frê biguherîne..."
-#: cui/uiconfig/ui/swpossizepage.ui:74
+#: cui/uiconfig/ui/swpossizepage.ui:85
#, fuzzy
msgctxt "swpossizepage|widthft"
msgid "_Width:"
msgstr "Firehî"
-#: cui/uiconfig/ui/swpossizepage.ui:111
+#: cui/uiconfig/ui/swpossizepage.ui:123
#, fuzzy
msgctxt "swpossizepage|heightft"
msgid "H_eight:"
msgstr "Bilindahî"
-#: cui/uiconfig/ui/swpossizepage.ui:128
+#: cui/uiconfig/ui/swpossizepage.ui:141
#, fuzzy
msgctxt "swpossizepage|ratio"
msgid "_Keep ratio"
msgstr "Rêjeyê Biparêze"
-#: cui/uiconfig/ui/swpossizepage.ui:149
+#: cui/uiconfig/ui/swpossizepage.ui:162
msgctxt "swpossizepage|label2"
msgid "Size"
msgstr "Mezinahî"
-#: cui/uiconfig/ui/swpossizepage.ui:205
+#: cui/uiconfig/ui/swpossizepage.ui:218
#, fuzzy
msgctxt "swpossizepage|topage"
msgid "To _page"
msgstr "Ji rûpelê"
-#: cui/uiconfig/ui/swpossizepage.ui:222
+#: cui/uiconfig/ui/swpossizepage.ui:234
#, fuzzy
msgctxt "swpossizepage|topara"
msgid "To paragrap_h"
msgstr "Ji paragrafê"
-#: cui/uiconfig/ui/swpossizepage.ui:238
+#: cui/uiconfig/ui/swpossizepage.ui:250
#, fuzzy
msgctxt "swpossizepage|tochar"
msgid "To cha_racter"
msgstr "Ji tîpê"
-#: cui/uiconfig/ui/swpossizepage.ui:254
+#: cui/uiconfig/ui/swpossizepage.ui:266
#, fuzzy
msgctxt "swpossizepage|aschar"
msgid "_As character"
msgstr "Wekî tîp"
-#: cui/uiconfig/ui/swpossizepage.ui:270
+#: cui/uiconfig/ui/swpossizepage.ui:282
#, fuzzy
msgctxt "swpossizepage|toframe"
msgid "To _frame"
msgstr "Ji çarçoveyê"
-#: cui/uiconfig/ui/swpossizepage.ui:292
+#: cui/uiconfig/ui/swpossizepage.ui:304
msgctxt "swpossizepage|label1"
msgid "Anchor"
msgstr "Girêker"
-#: cui/uiconfig/ui/swpossizepage.ui:333
+#: cui/uiconfig/ui/swpossizepage.ui:344
#, fuzzy
msgctxt "swpossizepage|horiposft"
msgid "Hori_zontal:"
msgstr "Berwar"
-#: cui/uiconfig/ui/swpossizepage.ui:347
+#: cui/uiconfig/ui/swpossizepage.ui:358
msgctxt "swpossizepage|horibyft"
msgid "b_y:"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:361
+#: cui/uiconfig/ui/swpossizepage.ui:372
msgctxt "swpossizepage|vertbyft"
msgid "_by:"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:375
+#: cui/uiconfig/ui/swpossizepage.ui:386
msgctxt "swpossizepage|horitoft"
msgid "_to:"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:421
+#: cui/uiconfig/ui/swpossizepage.ui:433
#, fuzzy
msgctxt "swpossizepage|vertposft"
msgid "_Vertical:"
msgstr "Tîk"
-#: cui/uiconfig/ui/swpossizepage.ui:457
+#: cui/uiconfig/ui/swpossizepage.ui:470
msgctxt "swpossizepage|verttoft"
msgid "t_o:"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:478
+#: cui/uiconfig/ui/swpossizepage.ui:492
msgctxt "swpossizepage|mirror"
msgid "_Mirror on even pages"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:495
+#: cui/uiconfig/ui/swpossizepage.ui:509
msgctxt "swpossizepage|followtextflow"
msgid "Follow te_xt flow"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:518
+#: cui/uiconfig/ui/swpossizepage.ui:532
msgctxt "swpossizepage|label11"
msgid "Position"
msgstr "Cih"
-#: cui/uiconfig/ui/swpossizepage.ui:549
+#: cui/uiconfig/ui/swpossizepage.ui:563
#, fuzzy
msgctxt "swpossizepage|pos"
msgid "Positio_n"
msgstr "Cih"
-#: cui/uiconfig/ui/swpossizepage.ui:565
+#: cui/uiconfig/ui/swpossizepage.ui:579
#, fuzzy
msgctxt "swpossizepage|size"
msgid "_Size"
msgstr "Mezinahî"
-#: cui/uiconfig/ui/swpossizepage.ui:587
+#: cui/uiconfig/ui/swpossizepage.ui:601
#, fuzzy
msgctxt "swpossizepage|label3"
msgid "Protect"
@@ -11907,13 +11907,13 @@ msgctxt "textattrtabpage|label2"
msgid "Spacing to Borders"
msgstr ""
-#: cui/uiconfig/ui/textattrtabpage.ui:425
+#: cui/uiconfig/ui/textattrtabpage.ui:423
#, fuzzy
msgctxt "textattrtabpage|TSB_FULL_WIDTH"
msgid "Full _width"
msgstr "Firehiya tam"
-#: cui/uiconfig/ui/textattrtabpage.ui:448
+#: cui/uiconfig/ui/textattrtabpage.ui:446
msgctxt "textattrtabpage|label3"
msgid "Text Anchor"
msgstr ""
diff --git a/source/kmr-Latn/filter/source/config/fragments/filters.po b/source/kmr-Latn/filter/source/config/fragments/filters.po
index 221dad96910..94ab25fc8ca 100644
--- a/source/kmr-Latn/filter/source/config/fragments/filters.po
+++ b/source/kmr-Latn/filter/source/config/fragments/filters.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-16 16:54+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2016-12-03 19:33+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -466,8 +466,8 @@ msgctxt ""
"MS Word 2003 XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Word 2003 XML"
-msgstr "Microsoft Word 2003 XML"
+msgid "Word 2003 XML"
+msgstr ""
#: MS_Word_2007_XML.xcu
msgctxt ""
@@ -1291,7 +1291,7 @@ msgctxt ""
"Calc MS Excel 2007 VBA XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Excel 2007-2016 XML (macro enabled)"
+msgid "Excel 2007–2019 (macro-enabled)"
msgstr ""
#: calc_MS_Excel_2007_XML.xcu
diff --git a/source/kmr-Latn/filter/source/config/fragments/types.po b/source/kmr-Latn/filter/source/config/fragments/types.po
index 354527eddc8..036c4c304e4 100644
--- a/source/kmr-Latn/filter/source/config/fragments/types.po
+++ b/source/kmr-Latn/filter/source/config/fragments/types.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-08 15:11+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2015-11-11 21:04+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -295,8 +295,8 @@ msgctxt ""
"writer_MS_Word_2003_XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Word 2003 XML"
-msgstr "Microsoft Word 2003 XML"
+msgid "Word 2003 XML"
+msgstr ""
#: writer_MS_Word_2007_XML.xcu
msgctxt ""
diff --git a/source/kmr-Latn/fpicker/messages.po b/source/kmr-Latn/fpicker/messages.po
index 92a0a450236..6f968c47134 100644
--- a/source/kmr-Latn/fpicker/messages.po
+++ b/source/kmr-Latn/fpicker/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+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"
@@ -278,14 +278,13 @@ msgstr ""
#: fpicker/uiconfig/ui/foldernamedialog.ui:8
msgctxt "foldernamedialog|FolderNameDialog"
-msgid "Folder Name ?"
+msgid "Folder Name"
msgstr ""
#: fpicker/uiconfig/ui/foldernamedialog.ui:91
-#, fuzzy
msgctxt "foldernamedialog|label2"
-msgid "Na_me"
-msgstr "Nav"
+msgid "Na_me:"
+msgstr ""
#: fpicker/uiconfig/ui/foldernamedialog.ui:122
#, fuzzy
diff --git a/source/kmr-Latn/officecfg/registry/data/org/openoffice/Office/UI.po b/source/kmr-Latn/officecfg/registry/data/org/openoffice/Office/UI.po
index e9e62c42fff..c9d2fcb158c 100644
--- a/source/kmr-Latn/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/kmr-Latn/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-22 13:17+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2016-05-25 13:27+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -27000,8 +27000,8 @@ msgctxt ""
"..WriterCommands.UserInterface.Commands..uno:TextAttributes\n"
"Label\n"
"value.text"
-msgid "Text Attributes"
-msgstr "Taybetiyên Nivîsê"
+msgid "Text Attributes..."
+msgstr ""
#: WriterCommands.xcu
msgctxt ""
diff --git a/source/kmr-Latn/readlicense_oo/docs.po b/source/kmr-Latn/readlicense_oo/docs.po
index 2dac73a0911..e3425538860 100644
--- a/source/kmr-Latn/readlicense_oo/docs.po
+++ b/source/kmr-Latn/readlicense_oo/docs.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-04-17 15:54+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2016-03-11 12:28+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -117,7 +117,7 @@ msgctxt ""
"readme.xrm\n"
"macxiOSX\n"
"readmeitem.text"
-msgid "MacOSX 10.8 (Mountain Lion) or higher"
+msgid "MacOSX 10.9 (Mavericks) or higher"
msgstr ""
#: readme.xrm
diff --git a/source/kmr-Latn/sc/messages.po b/source/kmr-Latn/sc/messages.po
index 0b0266163ce..ee11744ada3 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-12 14:40+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"
@@ -1885,17 +1885,22 @@ msgid "Nested arrays are not supported."
msgstr ""
#: sc/inc/globstr.hrc:390
+msgctxt "STR_ERR_LONG_BAD_ARRAY_CONTENT"
+msgid "Unsupported inline array content."
+msgstr ""
+
+#: sc/inc/globstr.hrc:391
#, fuzzy
msgctxt "STR_UNDO_TEXTTOCOLUMNS"
msgid "Text to Columns"
msgstr "Nivîs ji bo Stûnan"
-#: sc/inc/globstr.hrc:391
+#: sc/inc/globstr.hrc:392
msgctxt "STR_DOC_UPDATED"
msgid "Your spreadsheet has been updated with changes saved by other users."
msgstr ""
-#: sc/inc/globstr.hrc:392
+#: sc/inc/globstr.hrc:393
msgctxt "STR_DOC_WILLBESAVED"
msgid ""
"The spreadsheet must be saved now to activate sharing mode.\n"
@@ -1903,7 +1908,7 @@ msgid ""
"Do you want to continue?"
msgstr ""
-#: sc/inc/globstr.hrc:393
+#: sc/inc/globstr.hrc:394
msgctxt "STR_DOC_WILLNOTBESAVED"
msgid ""
"Already resolved merge conflicts will be lost and your changes to the shared spreadsheet will not be saved.\n"
@@ -1911,7 +1916,7 @@ msgid ""
"Do you want to continue?"
msgstr ""
-#: sc/inc/globstr.hrc:394
+#: sc/inc/globstr.hrc:395
msgctxt "STR_DOC_DISABLESHARED"
msgid ""
"Disabling shared mode of a spreadsheet hinders all other users of the shared spreadsheet to merge back their work.\n"
@@ -1919,7 +1924,7 @@ msgid ""
"Do you want to continue?"
msgstr ""
-#: sc/inc/globstr.hrc:395
+#: sc/inc/globstr.hrc:396
msgctxt "STR_DOC_NOLONGERSHARED"
msgid ""
"This spreadsheet is no longer in shared mode.\n"
@@ -1927,7 +1932,7 @@ msgid ""
"Save your spreadsheet to a separate file and merge your changes to the shared spreadsheet manually."
msgstr ""
-#: sc/inc/globstr.hrc:396
+#: sc/inc/globstr.hrc:397
msgctxt "STR_FILE_LOCKED_TRY_LATER"
msgid ""
"The shared spreadsheet file is locked due to a merge in progress by user: '%1'\n"
@@ -1935,7 +1940,7 @@ msgid ""
"Sharing mode of a locked file cannot be disabled. Try again later."
msgstr ""
-#: sc/inc/globstr.hrc:397
+#: sc/inc/globstr.hrc:398
msgctxt "STR_FILE_LOCKED_SAVE_LATER"
msgid ""
"The shared spreadsheet file is locked due to a merge in progress by user: '%1'\n"
@@ -1943,156 +1948,156 @@ msgid ""
"Try again later to save your changes."
msgstr ""
-#: sc/inc/globstr.hrc:398
+#: sc/inc/globstr.hrc:399
msgctxt "STR_UNKNOWN_USER"
msgid "Unknown User"
msgstr "Bikarhênerê Nenas"
-#: sc/inc/globstr.hrc:399
+#: sc/inc/globstr.hrc:400
msgctxt "STR_SHAPE_AUTOSHAPE"
msgid "AutoShape"
msgstr ""
-#: sc/inc/globstr.hrc:400
+#: sc/inc/globstr.hrc:401
#, fuzzy
msgctxt "STR_SHAPE_RECTANGLE"
msgid "Rectangle"
msgstr "Çarqorzî"
-#: sc/inc/globstr.hrc:401
+#: sc/inc/globstr.hrc:402
msgctxt "STR_SHAPE_LINE"
msgid "Line"
msgstr "Rêzik"
-#: sc/inc/globstr.hrc:402
+#: sc/inc/globstr.hrc:403
msgctxt "STR_SHAPE_OVAL"
msgid "Oval"
msgstr ""
-#: sc/inc/globstr.hrc:403
+#: sc/inc/globstr.hrc:404
#, fuzzy
msgctxt "STR_FORM_BUTTON"
msgid "Button"
msgstr "Bişkojk"
-#: sc/inc/globstr.hrc:404
+#: sc/inc/globstr.hrc:405
msgctxt "STR_FORM_CHECKBOX"
msgid "Check Box"
msgstr "Qutiya Kontrolkirinê"
-#: sc/inc/globstr.hrc:405
+#: sc/inc/globstr.hrc:406
#, fuzzy
msgctxt "STR_FORM_OPTIONBUTTON"
msgid "Option Button"
msgstr "Bişkoka Vebijêrkê"
-#: sc/inc/globstr.hrc:406
+#: sc/inc/globstr.hrc:407
msgctxt "STR_FORM_LABEL"
msgid "Label"
msgstr "Etîket"
-#: sc/inc/globstr.hrc:407
+#: sc/inc/globstr.hrc:408
#, fuzzy
msgctxt "STR_FORM_LISTBOX"
msgid "List Box"
msgstr "Qutiya lîstê"
-#: sc/inc/globstr.hrc:408
+#: sc/inc/globstr.hrc:409
msgctxt "STR_FORM_GROUPBOX"
msgid "Group Box"
msgstr "Qutiya Komê"
-#: sc/inc/globstr.hrc:409
+#: sc/inc/globstr.hrc:410
#, fuzzy
msgctxt "STR_FORM_DROPDOWN"
msgid "Drop Down"
msgstr "Veke"
-#: sc/inc/globstr.hrc:410
+#: sc/inc/globstr.hrc:411
msgctxt "STR_FORM_SPINNER"
msgid "Spinner"
msgstr ""
-#: sc/inc/globstr.hrc:411
+#: sc/inc/globstr.hrc:412
#, fuzzy
msgctxt "STR_FORM_SCROLLBAR"
msgid "Scroll Bar"
msgstr "Darikê şemitandinê"
-#: sc/inc/globstr.hrc:412
+#: sc/inc/globstr.hrc:413
msgctxt "STR_STYLE_FAMILY_CELL"
msgid "Cell Styles"
msgstr "Teşeyên Şaneyê"
-#: sc/inc/globstr.hrc:413
+#: sc/inc/globstr.hrc:414
msgctxt "STR_STYLE_FAMILY_PAGE"
msgid "Page Styles"
msgstr "Teşeyên Rûpel"
-#: sc/inc/globstr.hrc:414
+#: sc/inc/globstr.hrc:415
#, fuzzy
msgctxt "STR_ERR_DATAPILOTSOURCE"
msgid "Pivot table source data is invalid."
msgstr "Danaya çavkaniya DataPilao nederbasdare."
-#: sc/inc/globstr.hrc:415
+#: sc/inc/globstr.hrc:416
msgctxt "STR_OPTIONS_WARN_SEPARATORS"
msgid "Because the current formula separator settings conflict with the locale, the formula separators have been reset to their default values."
msgstr ""
-#: sc/inc/globstr.hrc:416
+#: sc/inc/globstr.hrc:417
msgctxt "STR_UNDO_INSERT_CURRENT_DATE"
msgid "Insert Current Date"
msgstr ""
-#: sc/inc/globstr.hrc:417
+#: sc/inc/globstr.hrc:418
msgctxt "STR_UNDO_INSERT_CURRENT_TIME"
msgid "Insert Current Time"
msgstr ""
-#: sc/inc/globstr.hrc:418
+#: sc/inc/globstr.hrc:419
#, fuzzy
msgctxt "STR_MANAGE_NAMES"
msgid "Manage Names..."
msgstr "Navên navberê"
-#: sc/inc/globstr.hrc:419
+#: sc/inc/globstr.hrc:420
msgctxt "STR_HEADER_NAME"
msgid "Name"
msgstr "Nav"
-#: sc/inc/globstr.hrc:420
+#: sc/inc/globstr.hrc:421
msgctxt "STR_HEADER_RANGE_OR_EXPR"
msgid "Range or formula expression"
msgstr ""
-#: sc/inc/globstr.hrc:421
+#: sc/inc/globstr.hrc:422
msgctxt "STR_HEADER_SCOPE"
msgid "Scope"
msgstr ""
-#: sc/inc/globstr.hrc:422
+#: sc/inc/globstr.hrc:423
msgctxt "STR_MULTI_SELECT"
msgid "(multiple)"
msgstr ""
-#: sc/inc/globstr.hrc:423
+#: sc/inc/globstr.hrc:424
#, fuzzy
msgctxt "STR_GLOBAL_SCOPE"
msgid "Document (Global)"
msgstr "Belge hate girtin"
-#: sc/inc/globstr.hrc:424
+#: sc/inc/globstr.hrc:425
msgctxt "STR_ERR_NAME_EXISTS"
msgid "Invalid name. Already in use for the selected scope."
msgstr ""
-#: sc/inc/globstr.hrc:425
+#: sc/inc/globstr.hrc:426
msgctxt "STR_ERR_NAME_INVALID"
msgid "Invalid name. Only use letters, numbers and underscore."
msgstr ""
-#: sc/inc/globstr.hrc:426
+#: sc/inc/globstr.hrc:427
msgctxt "STR_UNSAVED_EXT_REF"
msgid ""
"This Document contains external references to unsaved documents.\n"
@@ -2100,228 +2105,228 @@ msgid ""
"Do you want to continue?"
msgstr ""
-#: sc/inc/globstr.hrc:427
+#: sc/inc/globstr.hrc:428
msgctxt "STR_CLOSE_WITH_UNSAVED_REFS"
msgid "This Document is referenced by another document and not yet saved. Closing it without saving will result in data loss."
msgstr ""
-#: sc/inc/globstr.hrc:428
+#: sc/inc/globstr.hrc:429
msgctxt "STR_HEADER_RANGE"
msgid "Range"
msgstr "Navber"
-#: sc/inc/globstr.hrc:429
+#: sc/inc/globstr.hrc:430
msgctxt "STR_HEADER_COND"
msgid "First Condition"
msgstr ""
-#: sc/inc/globstr.hrc:430
+#: sc/inc/globstr.hrc:431
#, fuzzy
msgctxt "STR_COND_CONDITION"
msgid "Cell value is"
msgstr "Nirxa çavîkê"
-#: sc/inc/globstr.hrc:431
+#: sc/inc/globstr.hrc:432
msgctxt "STR_COND_COLORSCALE"
msgid "ColorScale"
msgstr ""
-#: sc/inc/globstr.hrc:432
+#: sc/inc/globstr.hrc:433
msgctxt "STR_COND_DATABAR"
msgid "DataBar"
msgstr ""
-#: sc/inc/globstr.hrc:433
+#: sc/inc/globstr.hrc:434
msgctxt "STR_COND_ICONSET"
msgid "IconSet"
msgstr ""
-#: sc/inc/globstr.hrc:434
+#: sc/inc/globstr.hrc:435
#, fuzzy
msgctxt "STR_COND_BETWEEN"
msgid "between"
msgstr "navbera"
-#: sc/inc/globstr.hrc:435
+#: sc/inc/globstr.hrc:436
#, fuzzy
msgctxt "STR_COND_NOTBETWEEN"
msgid "not between"
msgstr "ne di navbera"
-#: sc/inc/globstr.hrc:436
+#: sc/inc/globstr.hrc:437
msgctxt "STR_COND_UNIQUE"
msgid "unique"
msgstr ""
-#: sc/inc/globstr.hrc:437
+#: sc/inc/globstr.hrc:438
msgctxt "STR_COND_DUPLICATE"
msgid "duplicate"
msgstr ""
-#: sc/inc/globstr.hrc:438
+#: sc/inc/globstr.hrc:439
#, fuzzy
msgctxt "STR_COND_FORMULA"
msgid "Formula is"
msgstr "Formul"
-#: sc/inc/globstr.hrc:439
+#: sc/inc/globstr.hrc:440
msgctxt "STR_COND_TOP10"
msgid "Top Elements"
msgstr ""
-#: sc/inc/globstr.hrc:440
+#: sc/inc/globstr.hrc:441
msgctxt "STR_COND_BOTTOM10"
msgid "Bottom Elements"
msgstr ""
-#: sc/inc/globstr.hrc:441
+#: sc/inc/globstr.hrc:442
msgctxt "STR_COND_TOP_PERCENT"
msgid "Top Percent"
msgstr ""
-#: sc/inc/globstr.hrc:442
+#: sc/inc/globstr.hrc:443
msgctxt "STR_COND_DATE"
msgid "Date is"
msgstr ""
-#: sc/inc/globstr.hrc:443
+#: sc/inc/globstr.hrc:444
msgctxt "STR_COND_BOTTOM_PERCENT"
msgid "Bottom Percent"
msgstr ""
-#: sc/inc/globstr.hrc:444
+#: sc/inc/globstr.hrc:445
msgctxt "STR_COND_ABOVE_AVERAGE"
msgid "Above Average"
msgstr ""
-#: sc/inc/globstr.hrc:445
+#: sc/inc/globstr.hrc:446
msgctxt "STR_COND_BELOW_AVERAGE"
msgid "Below Average"
msgstr ""
-#: sc/inc/globstr.hrc:446
+#: sc/inc/globstr.hrc:447
msgctxt "STR_COND_ABOVE_EQUAL_AVERAGE"
msgid "Above or equal Average"
msgstr ""
-#: sc/inc/globstr.hrc:447
+#: sc/inc/globstr.hrc:448
msgctxt "STR_COND_BELOW_EQUAL_AVERAGE"
msgid "Below or equal Average"
msgstr ""
-#: sc/inc/globstr.hrc:448
+#: sc/inc/globstr.hrc:449
#, fuzzy
msgctxt "STR_COND_ERROR"
msgid "an Error code"
msgstr "Koda Xeletiye"
-#: sc/inc/globstr.hrc:449
+#: sc/inc/globstr.hrc:450
#, fuzzy
msgctxt "STR_COND_NOERROR"
msgid "not an Error code"
msgstr "Koda Xeletiye"
-#: sc/inc/globstr.hrc:450
+#: sc/inc/globstr.hrc:451
#, fuzzy
msgctxt "STR_COND_BEGINS_WITH"
msgid "Begins with"
msgstr "Destpêdike bi"
-#: sc/inc/globstr.hrc:451
+#: sc/inc/globstr.hrc:452
#, fuzzy
msgctxt "STR_COND_ENDS_WITH"
msgid "Ends with"
msgstr "Dawî dibe bi"
-#: sc/inc/globstr.hrc:452
+#: sc/inc/globstr.hrc:453
#, fuzzy
msgctxt "STR_COND_CONTAINS"
msgid "Contains"
msgstr "Dihundirîne"
-#: sc/inc/globstr.hrc:453
+#: sc/inc/globstr.hrc:454
msgctxt "STR_COND_NOT_CONTAINS"
msgid "Not Contains"
msgstr ""
-#: sc/inc/globstr.hrc:454
+#: sc/inc/globstr.hrc:455
#, fuzzy
msgctxt "STR_COND_TODAY"
msgid "today"
msgstr "Îro"
-#: sc/inc/globstr.hrc:455
+#: sc/inc/globstr.hrc:456
#, fuzzy
msgctxt "STR_COND_YESTERDAY"
msgid "yesterday"
msgstr "Do,"
-#: sc/inc/globstr.hrc:456
+#: sc/inc/globstr.hrc:457
msgctxt "STR_COND_TOMORROW"
msgid "tomorrow"
msgstr ""
-#: sc/inc/globstr.hrc:457
+#: sc/inc/globstr.hrc:458
msgctxt "STR_COND_LAST7DAYS"
msgid "in the last 7 days"
msgstr ""
-#: sc/inc/globstr.hrc:458
+#: sc/inc/globstr.hrc:459
msgctxt "STR_COND_THISWEEK"
msgid "this week"
msgstr ""
-#: sc/inc/globstr.hrc:459
+#: sc/inc/globstr.hrc:460
msgctxt "STR_COND_LASTWEEK"
msgid "last week"
msgstr ""
-#: sc/inc/globstr.hrc:460
+#: sc/inc/globstr.hrc:461
msgctxt "STR_COND_NEXTWEEK"
msgid "next week"
msgstr ""
-#: sc/inc/globstr.hrc:461
+#: sc/inc/globstr.hrc:462
msgctxt "STR_COND_THISMONTH"
msgid "this month"
msgstr ""
-#: sc/inc/globstr.hrc:462
+#: sc/inc/globstr.hrc:463
msgctxt "STR_COND_LASTMONTH"
msgid "last month"
msgstr ""
-#: sc/inc/globstr.hrc:463
+#: sc/inc/globstr.hrc:464
msgctxt "STR_COND_NEXTMONTH"
msgid "next month"
msgstr ""
-#: sc/inc/globstr.hrc:464
+#: sc/inc/globstr.hrc:465
msgctxt "STR_COND_THISYEAR"
msgid "this year"
msgstr ""
-#: sc/inc/globstr.hrc:465
+#: sc/inc/globstr.hrc:466
msgctxt "STR_COND_LASTYEAR"
msgid "last year"
msgstr ""
-#: sc/inc/globstr.hrc:466
+#: sc/inc/globstr.hrc:467
msgctxt "STR_COND_NEXTYEAR"
msgid "next year"
msgstr ""
-#: sc/inc/globstr.hrc:467
+#: sc/inc/globstr.hrc:468
msgctxt "STR_COND_AND"
msgid "and"
msgstr "û"
-#: sc/inc/globstr.hrc:468
+#: sc/inc/globstr.hrc:469
msgctxt "STR_ERR_CONDFORMAT_PROTECTED"
msgid "Conditional Formats can not be created, deleted or changed in protected sheets."
msgstr ""
-#: sc/inc/globstr.hrc:469
+#: sc/inc/globstr.hrc:470
msgctxt "STR_EDIT_EXISTING_COND_FORMATS"
msgid ""
"The selected cell already contains conditional formatting. You can either edit the existing conditional format or you define a new overlapping conditional format.\n"
@@ -2329,7 +2334,7 @@ msgid ""
" Do you want to edit the existing conditional format?"
msgstr ""
-#: sc/inc/globstr.hrc:470
+#: sc/inc/globstr.hrc:471
msgctxt "STR_QUERY_FORMULA_RECALC_ONLOAD_ODS"
msgid ""
"This document was last saved by an application other than %PRODUCTNAME. Some formula cells may produce different results when recalculated.\n"
@@ -2337,7 +2342,7 @@ msgid ""
"Do you want to recalculate all formula cells in this document now?"
msgstr ""
-#: sc/inc/globstr.hrc:471
+#: sc/inc/globstr.hrc:472
msgctxt "STR_QUERY_FORMULA_RECALC_ONLOAD_XLS"
msgid ""
"This document was last saved by Excel. Some formula cells may produce different results when recalculated.\n"
@@ -2345,83 +2350,83 @@ msgid ""
"Do you want to recalculate all formula cells now?"
msgstr ""
-#: sc/inc/globstr.hrc:472
+#: sc/inc/globstr.hrc:473
msgctxt "STR_NO_INSERT_DELETE_OVER_PIVOT_TABLE"
msgid "You cannot insert or delete cells when the affected range intersects with pivot table."
msgstr ""
-#: sc/inc/globstr.hrc:473
+#: sc/inc/globstr.hrc:474
msgctxt "STR_DPFIELD_GROUP_BY_SECONDS"
msgid "Seconds"
msgstr "Çirk"
-#: sc/inc/globstr.hrc:474
+#: sc/inc/globstr.hrc:475
msgctxt "STR_DPFIELD_GROUP_BY_MINUTES"
msgid "Minutes"
msgstr "Xulek"
-#: sc/inc/globstr.hrc:475
+#: sc/inc/globstr.hrc:476
msgctxt "STR_DPFIELD_GROUP_BY_HOURS"
msgid "Hours"
msgstr "Seet"
-#: sc/inc/globstr.hrc:476
+#: sc/inc/globstr.hrc:477
msgctxt "STR_DPFIELD_GROUP_BY_DAYS"
msgid "Days"
msgstr "Roj"
-#: sc/inc/globstr.hrc:477
+#: sc/inc/globstr.hrc:478
msgctxt "STR_DPFIELD_GROUP_BY_MONTHS"
msgid "Months"
msgstr "Meh"
-#: sc/inc/globstr.hrc:478
+#: sc/inc/globstr.hrc:479
#, fuzzy
msgctxt "STR_DPFIELD_GROUP_BY_QUARTERS"
msgid "Quarters"
msgstr "Çarik"
-#: sc/inc/globstr.hrc:479
+#: sc/inc/globstr.hrc:480
#, fuzzy
msgctxt "STR_DPFIELD_GROUP_BY_YEARS"
msgid "Years"
msgstr "Sal"
-#: sc/inc/globstr.hrc:480
+#: sc/inc/globstr.hrc:481
#, fuzzy
msgctxt "STR_INVALIDVAL"
msgid "Invalid target value."
msgstr "Nirxa hedefa nederbasbar."
-#: sc/inc/globstr.hrc:481
+#: sc/inc/globstr.hrc:482
#, fuzzy
msgctxt "STR_INVALIDVAR"
msgid "Undefined name for variable cell."
msgstr "Navekî nenas ji bo şanika nenas."
-#: sc/inc/globstr.hrc:482
+#: sc/inc/globstr.hrc:483
#, fuzzy
msgctxt "STR_INVALIDFORM"
msgid "Undefined name as formula cell."
msgstr "Navekî nenas ji bo şanika formûlê."
-#: sc/inc/globstr.hrc:483
+#: sc/inc/globstr.hrc:484
msgctxt "STR_NOFORMULA"
msgid "Formula cell must contain a formula."
msgstr ""
-#: sc/inc/globstr.hrc:484
+#: sc/inc/globstr.hrc:485
#, fuzzy
msgctxt "STR_INVALIDINPUT"
msgid "Invalid input."
msgstr "Têketana nederbasdar."
-#: sc/inc/globstr.hrc:485
+#: sc/inc/globstr.hrc:486
msgctxt "STR_INVALIDCONDITION"
msgid "Invalid condition."
msgstr ""
-#: sc/inc/globstr.hrc:486
+#: sc/inc/globstr.hrc:487
msgctxt "STR_QUERYREMOVE"
msgid ""
"Should the entry\n"
@@ -2429,137 +2434,137 @@ msgid ""
"be deleted?"
msgstr ""
-#: sc/inc/globstr.hrc:487
+#: sc/inc/globstr.hrc:488
msgctxt "STR_COPYLIST"
msgid "Copy List"
msgstr ""
-#: sc/inc/globstr.hrc:488
+#: sc/inc/globstr.hrc:489
msgctxt "STR_COPYFROM"
msgid "List from"
msgstr ""
-#: sc/inc/globstr.hrc:489
+#: sc/inc/globstr.hrc:490
msgctxt "STR_COPYERR"
msgid "Cells without text have been ignored."
msgstr ""
-#: sc/inc/globstr.hrc:490
+#: sc/inc/globstr.hrc:491
#, c-format
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%s-click to follow hyperlink:"
msgstr ""
-#: sc/inc/globstr.hrc:491
+#: sc/inc/globstr.hrc:492
msgctxt "STR_CLICKHYPERLINK"
msgid "click to open hyperlink:"
msgstr ""
-#: sc/inc/globstr.hrc:492
+#: sc/inc/globstr.hrc:493
msgctxt "STR_PRINT_PREVIEW_NODATA"
msgid "No Data"
msgstr ""
-#: sc/inc/globstr.hrc:493
+#: sc/inc/globstr.hrc:494
msgctxt "STR_PRINT_PREVIEW_EMPTY_RANGE"
msgid "Print Range Empty"
msgstr ""
-#: sc/inc/globstr.hrc:494
+#: sc/inc/globstr.hrc:495
#, fuzzy
msgctxt "STR_UNDO_CONDFORMAT"
msgid "Conditional Format"
msgstr "Teşekirina Bimerc"
-#: sc/inc/globstr.hrc:495
+#: sc/inc/globstr.hrc:496
#, fuzzy
msgctxt "STR_UNDO_CONDFORMAT_LIST"
msgid "Conditional Formats"
msgstr "Teşekirina Bimerc"
-#: sc/inc/globstr.hrc:496
+#: sc/inc/globstr.hrc:497
msgctxt "STR_UNDO_FORMULA_TO_VALUE"
msgid "Convert Formula To Value"
msgstr ""
-#: sc/inc/globstr.hrc:497
+#: sc/inc/globstr.hrc:498
msgctxt "STR_UNQUOTED_STRING"
msgid "Strings without quotes are interpreted as column/row labels."
msgstr ""
-#: sc/inc/globstr.hrc:498
+#: sc/inc/globstr.hrc:499
msgctxt "STR_ENTER_VALUE"
msgid "Enter a value!"
msgstr ""
-#: sc/inc/globstr.hrc:499
+#: sc/inc/globstr.hrc:500
msgctxt "STR_TABLE_COUNT"
msgid "Sheet %1 of %2"
msgstr ""
-#: sc/inc/globstr.hrc:500
+#: sc/inc/globstr.hrc:501
msgctxt "STR_FUNCTIONS_FOUND"
msgid "%1 and %2 more"
msgstr ""
-#: sc/inc/globstr.hrc:501
+#: sc/inc/globstr.hrc:502
msgctxt "STR_GENERAL"
msgid "General"
msgstr "Giştî"
-#: sc/inc/globstr.hrc:502
+#: sc/inc/globstr.hrc:503
msgctxt "STR_NUMBER"
msgid "Number"
msgstr "Numre"
-#: sc/inc/globstr.hrc:503
+#: sc/inc/globstr.hrc:504
#, fuzzy
msgctxt "STR_PERCENT"
msgid "Percent"
msgstr "Ji sedî"
-#: sc/inc/globstr.hrc:504
+#: sc/inc/globstr.hrc:505
msgctxt "STR_CURRENCY"
msgid "Currency"
msgstr "Yekeya peran"
-#: sc/inc/globstr.hrc:505
+#: sc/inc/globstr.hrc:506
msgctxt "STR_DATE"
msgid "Date"
msgstr "Dîrok"
-#: sc/inc/globstr.hrc:506
+#: sc/inc/globstr.hrc:507
msgctxt "STR_TIME"
msgid "Time"
msgstr "Dem"
-#: sc/inc/globstr.hrc:507
+#: sc/inc/globstr.hrc:508
msgctxt "STR_SCIENTIFIC"
msgid "Scientific"
msgstr ""
-#: sc/inc/globstr.hrc:508
+#: sc/inc/globstr.hrc:509
#, fuzzy
msgctxt "STR_FRACTION"
msgid "Fraction"
msgstr "Fonksiyon"
-#: sc/inc/globstr.hrc:509
+#: sc/inc/globstr.hrc:510
msgctxt "STR_BOOLEAN_VALUE"
msgid "Boolean Value"
msgstr ""
-#: sc/inc/globstr.hrc:510
+#: sc/inc/globstr.hrc:511
msgctxt "STR_TEXT"
msgid "Text"
msgstr "Nivîs"
-#: sc/inc/globstr.hrc:511
+#: sc/inc/globstr.hrc:512
msgctxt "STR_QUERY_PIVOTTABLE_DELTAB"
msgid "The selected sheet(s) contain source data of related pivot tables that will be lost. Are you sure you want to delete the selected sheet(s)?"
msgstr ""
-#: sc/inc/globstr.hrc:512
+#: sc/inc/globstr.hrc:513
msgctxt "STR_ERR_NAME_INVALID_CELL_REF"
msgid "Invalid name. Reference to a cell, or a range of cells not allowed."
msgstr ""
@@ -10675,7 +10680,7 @@ msgstr "Mod"
#: sc/inc/scfuncs.hrc:3010
msgctxt "SC_OPCODE_T_TEST"
-msgid "Mode specifies the number of distribution tails to return. 1= one-tailed, 2 = two-tailed distribution"
+msgid "Mode specifies the number of distribution tails to return. 1 = one-tailed, 2 = two-tailed distribution"
msgstr ""
#: sc/inc/scfuncs.hrc:3011
@@ -10723,7 +10728,7 @@ msgstr "Mod"
#: sc/inc/scfuncs.hrc:3024
msgctxt "SC_OPCODE_T_TEST_MS"
-msgid "Mode specifies the number of distribution tails to return. 1= one-tailed, 2 = two-tailed distribution"
+msgid "Mode specifies the number of distribution tails to return. 1 = one-tailed, 2 = two-tailed distribution"
msgstr ""
#: sc/inc/scfuncs.hrc:3025
@@ -18512,23 +18517,23 @@ msgctxt "mergecellsdialog|MergeCellsDialog"
msgid "Merge Cells"
msgstr "Şanikan Bike Yek"
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:81
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:84
msgctxt "mergecellsdialog|label"
msgid "Some cells are not empty."
msgstr ""
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:96
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:99
#, fuzzy
msgctxt "mergecellsdialog|move-cells-radio"
msgid "Move the contents of the hidden cells into the first cell"
msgstr "Bila naveroka şaneyên nepen veguheze şaneya yekemîn?"
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:112
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:115
msgctxt "mergecellsdialog|empty-cells-radio"
msgid "Empty the contents of the hidden cells"
msgstr ""
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:128
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:131
msgctxt "mergecellsdialog|keep-content-radio"
msgid "Keep the contents of the hidden cells"
msgstr ""
diff --git a/source/kmr-Latn/sd/messages.po b/source/kmr-Latn/sd/messages.po
index 4efacd4a4ee..1c84873e041 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+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"
@@ -13,177 +13,177 @@ msgstr ""
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-#: sd/inc/DocumentRenderer.hrc:29
+#: sd/inc/DocumentRenderer.hrc:27
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Slides"
msgstr "Slayt"
-#: sd/inc/DocumentRenderer.hrc:30
+#: sd/inc/DocumentRenderer.hrc:28
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Handouts"
msgstr "Rêzkerê rûpela"
-#: sd/inc/DocumentRenderer.hrc:31
+#: sd/inc/DocumentRenderer.hrc:29
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Notes"
msgstr "Nîşe"
-#: sd/inc/DocumentRenderer.hrc:32
+#: sd/inc/DocumentRenderer.hrc:30
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Outline"
msgstr "Xêza bingehîn"
-#: sd/inc/DocumentRenderer.hrc:37
+#: sd/inc/DocumentRenderer.hrc:35
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "According to layout"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:38
+#: sd/inc/DocumentRenderer.hrc:36
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "1"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:39
+#: sd/inc/DocumentRenderer.hrc:37
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "2"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:40
+#: sd/inc/DocumentRenderer.hrc:38
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "3"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:41
+#: sd/inc/DocumentRenderer.hrc:39
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "4"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:42
+#: sd/inc/DocumentRenderer.hrc:40
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "6"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:43
+#: sd/inc/DocumentRenderer.hrc:41
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "9"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:48
+#: sd/inc/DocumentRenderer.hrc:46
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_ORDER_CHOICES"
msgid "Left to right, then down"
msgstr "ji çepê bi rastê ve, paşê jêr ve"
-#: sd/inc/DocumentRenderer.hrc:49
+#: sd/inc/DocumentRenderer.hrc:47
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_ORDER_CHOICES"
msgid "Top to bottom, then right"
msgstr "ji jor bi jêr ve, paşê rastê ve"
-#: sd/inc/DocumentRenderer.hrc:54
+#: sd/inc/DocumentRenderer.hrc:52
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Original colors"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:55
+#: sd/inc/DocumentRenderer.hrc:53
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Grayscale"
msgstr "Pîvanka Grî"
-#: sd/inc/DocumentRenderer.hrc:56
+#: sd/inc/DocumentRenderer.hrc:54
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Black & white"
msgstr "Reş û ~spî"
-#: sd/inc/DocumentRenderer.hrc:61
+#: sd/inc/DocumentRenderer.hrc:59
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Original size"
msgstr "Mezinahiya O~rjînal"
-#: sd/inc/DocumentRenderer.hrc:62
+#: sd/inc/DocumentRenderer.hrc:60
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Fit to printable page"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:63
+#: sd/inc/DocumentRenderer.hrc:61
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Distribute on multiple sheets of paper"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:64
+#: sd/inc/DocumentRenderer.hrc:62
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Tile sheet of paper with repeated slides"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:69
+#: sd/inc/DocumentRenderer.hrc:67
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Original size"
msgstr "Mezinahiya O~rjînal"
-#: sd/inc/DocumentRenderer.hrc:70
+#: sd/inc/DocumentRenderer.hrc:68
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Fit to printable page"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:71
+#: sd/inc/DocumentRenderer.hrc:69
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Distribute on multiple sheets of paper"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:72
+#: sd/inc/DocumentRenderer.hrc:70
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Tile sheet of paper with repeated pages"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:77
+#: sd/inc/DocumentRenderer.hrc:75
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "All pages"
msgstr "Hemû rûpel"
-#: sd/inc/DocumentRenderer.hrc:78
+#: sd/inc/DocumentRenderer.hrc:76
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "Front sides / right pages"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:79
+#: sd/inc/DocumentRenderer.hrc:77
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "Back sides / left pages"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:84
+#: sd/inc/DocumentRenderer.hrc:82
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~All slides"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:85
+#: sd/inc/DocumentRenderer.hrc:83
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~Slides"
msgstr "Slayt"
-#: sd/inc/DocumentRenderer.hrc:86
+#: sd/inc/DocumentRenderer.hrc:84
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Se~lection"
msgstr "Hilbijartin"
-#: sd/inc/DocumentRenderer.hrc:91
+#: sd/inc/DocumentRenderer.hrc:89
#, fuzzy
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~All pages"
msgstr "Hemû rûpel"
-#: sd/inc/DocumentRenderer.hrc:92
+#: sd/inc/DocumentRenderer.hrc:90
#, fuzzy
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Pa~ges"
msgstr "Rûpel"
-#: sd/inc/DocumentRenderer.hrc:93
+#: sd/inc/DocumentRenderer.hrc:91
#, fuzzy
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Se~lection"
diff --git a/source/kmr-Latn/svx/messages.po b/source/kmr-Latn/svx/messages.po
index 6a5f2ab4d98..41119680ed2 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: 2018-05-16 16:53+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+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"
@@ -5530,7 +5530,7 @@ msgstr ""
#: svx/uiconfig/ui/safemodedialog.ui:432
msgctxt "safemodedialog|btn_create_zip"
-msgid "Create Zip Archive from User Profile"
+msgid "Archive User Profile"
msgstr ""
#: svx/uiconfig/ui/safemodedialog.ui:445
@@ -9236,9 +9236,9 @@ msgid "Red"
msgstr "Sor"
#: include/svx/strings.hrc:565
-msgctxt "RID_SVXSTR_COLOR_VIOLET"
-msgid "Violet"
-msgstr "Mor"
+msgctxt "RID_SVXSTR_COLOR_MAGENTA"
+msgid "Magenta"
+msgstr "Sor bi mor ve"
#: include/svx/strings.hrc:566
msgctxt "RID_SVXSTR_COLOR_PURPLE"
@@ -9304,8 +9304,8 @@ msgid "Light Red"
msgstr "Sora Vekirî"
#: include/svx/strings.hrc:579
-msgctxt "RID_SVXSTR_COLOR_LIGHTVIOLET"
-msgid "Light Violet"
+msgctxt "RID_SVXSTR_COLOR_LIGHTMAGENTA"
+msgid "Light Magenta"
msgstr ""
#: include/svx/strings.hrc:580
@@ -9371,8 +9371,8 @@ msgid "Dark Red"
msgstr "Sora tarî"
#: include/svx/strings.hrc:593
-msgctxt "RID_SVXSTR_COLOR_DARKVIOLET1"
-msgid "Dark Violet"
+msgctxt "RID_SVXSTR_COLOR_DARKMAGENTA"
+msgid "Dark Magenta"
msgstr ""
#: include/svx/strings.hrc:594
@@ -9407,55 +9407,55 @@ msgstr ""
#. Elements of the Tonal color palette
#: include/svx/strings.hrc:601
+msgctxt "RID_SVXSTR_COLOR_VIOLET"
+msgid "Violet"
+msgstr "Mor"
+
+#: include/svx/strings.hrc:602
msgctxt "RID_SVXSTR_COLOR_VIOLET_OUG"
msgid "Violet (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:602
+#: include/svx/strings.hrc:603
msgctxt "RID_SVXSTR_COLOR_BLUE_OUG"
msgid "Blue (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:603
+#: include/svx/strings.hrc:604
msgctxt "RID_SVXSTR_COLOR_AZURE_OUG"
msgid "Azure (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:604
+#: include/svx/strings.hrc:605
msgctxt "RID_SVXSTR_COLOR_SPRINGGREEN_OUG"
msgid "Spring Green (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:605
+#: include/svx/strings.hrc:606
msgctxt "RID_SVXSTR_COLOR_GREEN_OUG"
msgid "Green (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:606
+#: include/svx/strings.hrc:607
msgctxt "RID_SVXSTR_COLOR_CHARTREUSEGREEN_OUG"
msgid "Chartreuse Green (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:607
+#: include/svx/strings.hrc:608
msgctxt "RID_SVXSTR_COLOR_ORANGE_OUG"
msgid "Orange (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:608
+#: include/svx/strings.hrc:609
msgctxt "RID_SVXSTR_COLOR_RED_OUG"
msgid "Red (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:609
+#: include/svx/strings.hrc:610
msgctxt "RID_SVXSTR_COLOR_ROSE_OUG"
msgid "Rose (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:610
-msgctxt "RID_SVXSTR_COLOR_MAGENTA"
-msgid "Magenta"
-msgstr "Sor bi mor ve"
-
#: include/svx/strings.hrc:611
msgctxt "RID_SVXSTR_COLOR_AZURE"
msgid "Azure"
@@ -12654,12 +12654,12 @@ msgstr ""
#: include/svx/strings.hrc:1273
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_6"
-msgid "Check mark bullets"
+msgid "Cross mark bullets"
msgstr ""
#: include/svx/strings.hrc:1274
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_7"
-msgid "Tick mark bullets"
+msgid "Check mark bullets"
msgstr ""
#: include/svx/strings.hrc:1275
diff --git a/source/kmr-Latn/sw/messages.po b/source/kmr-Latn/sw/messages.po
index 75da3393588..6cb357290bb 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: 2018-05-22 13:17+0200\n"
+"POT-Creation-Date: 2018-06-12 14:41+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"
@@ -1237,13 +1237,13 @@ msgstr "Jêgirtin"
#: sw/inc/strings.hrc:172
msgctxt "STR_POOLCOLL_TOX_ILLUSH"
-msgid "Illustration Index Heading"
-msgstr "Sernivîsa pêrista wêneya"
+msgid "Figure Index Heading"
+msgstr ""
#: sw/inc/strings.hrc:173
msgctxt "STR_POOLCOLL_TOX_ILLUS1"
-msgid "Illustration Index 1"
-msgstr "Pêrista wêneya 1"
+msgid "Figure Index 1"
+msgstr ""
#: sw/inc/strings.hrc:174
#, fuzzy
@@ -3736,10 +3736,9 @@ msgid "Table of Objects"
msgstr ""
#: sw/inc/strings.hrc:672
-#, fuzzy
msgctxt "STR_TOX_ILL"
-msgid "Illustration Index"
-msgstr "Pêrista wêneya 1"
+msgid "Table of Figures"
+msgstr ""
#: sw/inc/strings.hrc:673
#, c-format
@@ -9737,81 +9736,81 @@ msgctxt "footnotepage|label5"
msgid "Continuation Notice"
msgstr "Hişyariya berdewamiyê"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:49
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:55
#, fuzzy
msgctxt "footnotesendnotestabpage|ftnntnum"
msgid "_Restart numbering"
msgstr "Numrekirinê nû va bide despêk kirin"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:91
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:93
#, fuzzy
msgctxt "footnotesendnotestabpage|ftnoffset_label"
msgid "_Start at:"
msgstr "Ji vir dest pê bike"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:112
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:111
msgctxt "footnotesendnotestabpage|ftnntnumfmt"
msgid "Custom _format"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:155
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:150
#, fuzzy
msgctxt "footnotesendnotestabpage|ftnsuffix_label"
msgid "Aft_er:"
msgstr "Dû re"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:199
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:188
#, fuzzy
msgctxt "footnotesendnotestabpage|ftnprefix_label"
msgid "Be_fore:"
msgstr "Berê"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:228
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:212
msgctxt "footnotesendnotestabpage|ftnntattextend"
msgid "Collec_t at end of text"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:252
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:234
#, fuzzy
msgctxt "footnotesendnotestabpage|label1"
msgid "Footnotes"
msgstr "Jêrenot"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:289
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:271
msgctxt "footnotesendnotestabpage|endntattextend"
msgid "C_ollect at end of section"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:315
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:295
#, fuzzy
msgctxt "footnotesendnotestabpage|endntnum"
msgid "_Restart numbering"
msgstr "Numrekirinê nû va bide despêk kirin"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:357
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:333
#, fuzzy
msgctxt "footnotesendnotestabpage|endoffset_label"
msgid "_Start at:"
msgstr "Ji vir dest pê bike"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:378
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:351
msgctxt "footnotesendnotestabpage|endntnumfmt"
msgid "_Custom format"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:421
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:390
#, fuzzy
msgctxt "footnotesendnotestabpage|endsuffix_label"
msgid "Aft_er:"
msgstr "Dû re"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:465
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:428
#, fuzzy
msgctxt "footnotesendnotestabpage|endprefix_label"
msgid "Be_fore:"
msgstr "Berê"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:500
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:458
#, fuzzy
msgctxt "footnotesendnotestabpage|label2"
msgid "Endnotes"
@@ -9843,29 +9842,29 @@ msgctxt "formatsectiondialog|notes"
msgid "Footnotes/Endnotes"
msgstr "~Jêrenot/Dawînot..."
-#: sw/uiconfig/swriter/ui/formattablepage.ui:63
+#: sw/uiconfig/swriter/ui/formattablepage.ui:77
#, fuzzy
msgctxt "formattablepage|nameft"
msgid "_Name"
msgstr "Nav"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:79
+#: sw/uiconfig/swriter/ui/formattablepage.ui:91
#, fuzzy
msgctxt "formattablepage|widthft"
msgid "W_idth"
msgstr "Firehî"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:110
+#: sw/uiconfig/swriter/ui/formattablepage.ui:120
msgctxt "formattablepage|relwidth"
msgid "Relati_ve"
msgstr ""
-#: sw/uiconfig/swriter/ui/formattablepage.ui:155
+#: sw/uiconfig/swriter/ui/formattablepage.ui:160
msgctxt "formattablepage|label45"
msgid "Properties"
msgstr "Taybetmendî"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:194
+#: sw/uiconfig/swriter/ui/formattablepage.ui:195
#, fuzzy
msgctxt "formattablepage|leftft"
msgid "Lef_t"
@@ -9877,71 +9876,71 @@ msgctxt "formattablepage|rightft"
msgid "Ri_ght"
msgstr "Rast"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:228
+#: sw/uiconfig/swriter/ui/formattablepage.ui:226
#, fuzzy
msgctxt "formattablepage|aboveft"
msgid "_Above"
msgstr "Jor"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:245
+#: sw/uiconfig/swriter/ui/formattablepage.ui:241
#, fuzzy
msgctxt "formattablepage|belowft"
msgid "_Below"
msgstr "Li jêr"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:320
+#: sw/uiconfig/swriter/ui/formattablepage.ui:311
msgctxt "formattablepage|label46"
msgid "Spacing"
msgstr "Navber"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:362
+#: sw/uiconfig/swriter/ui/formattablepage.ui:349
#, fuzzy
msgctxt "formattablepage|full"
msgid "A_utomatic"
msgstr "Bixweber"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:380
+#: sw/uiconfig/swriter/ui/formattablepage.ui:365
#, fuzzy
msgctxt "formattablepage|left"
msgid "_Left"
msgstr "Çep"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:398
+#: sw/uiconfig/swriter/ui/formattablepage.ui:381
#, fuzzy
msgctxt "formattablepage|fromleft"
msgid "_From left"
msgstr "Ji çepê"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:416
+#: sw/uiconfig/swriter/ui/formattablepage.ui:397
#, fuzzy
msgctxt "formattablepage|right"
msgid "R_ight"
msgstr "Rast"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:435
+#: sw/uiconfig/swriter/ui/formattablepage.ui:413
#, fuzzy
msgctxt "formattablepage|center"
msgid "_Center"
msgstr "Navîn"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:453
+#: sw/uiconfig/swriter/ui/formattablepage.ui:429
#, fuzzy
msgctxt "formattablepage|free"
msgid "_Manual"
msgstr "Rêber"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:478
+#: sw/uiconfig/swriter/ui/formattablepage.ui:452
msgctxt "formattablepage|label43"
msgid "Alignment"
msgstr "Hîzakirin"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:522
+#: sw/uiconfig/swriter/ui/formattablepage.ui:491
#, fuzzy
msgctxt "formattablepage|label53"
msgid "Text _direction"
msgstr "Beraliyê nivîsê"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:553
+#: sw/uiconfig/swriter/ui/formattablepage.ui:519
#, fuzzy
msgctxt "formattablepage|label44"
msgid "Properties "
@@ -10329,25 +10328,30 @@ msgctxt "headerfootermenu|insert_pagenumber"
msgid "Insert Page Number"
msgstr ""
-#: sw/uiconfig/swriter/ui/indentpage.ui:52
+#: sw/uiconfig/swriter/ui/headerfootermenu.ui:42
+msgctxt "headerfootermenu|insert_pagecount"
+msgid "Insert Page Count"
+msgstr ""
+
+#: sw/uiconfig/swriter/ui/indentpage.ui:57
#, fuzzy
msgctxt "indentpage|label1"
msgid "_Before section"
msgstr "Beriya Beşê"
-#: sw/uiconfig/swriter/ui/indentpage.ui:67
+#: sw/uiconfig/swriter/ui/indentpage.ui:71
#, fuzzy
msgctxt "indentpage|label3"
msgid "_After section"
msgstr "Piştî Beşê"
-#: sw/uiconfig/swriter/ui/indentpage.ui:113
+#: sw/uiconfig/swriter/ui/indentpage.ui:115
#, fuzzy
msgctxt "indentpage|label2"
msgid "Indent"
msgstr "Kûrt"
-#: sw/uiconfig/swriter/ui/indentpage.ui:142
+#: sw/uiconfig/swriter/ui/indentpage.ui:155
msgctxt "indentpage|preview-atkobject"
msgid "Example"
msgstr "Mînak"
@@ -14154,7 +14158,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:68
msgctxt "optcompatpage|format"
-msgid "MS Word-compatible trailing blanks"
+msgid "Word-compatible trailing blanks"
msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:69
@@ -14164,7 +14168,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:70
msgctxt "optcompatpage|format"
-msgid "A database field (e.g., MailMerge) with empty value hides its paragraph"
+msgid "Hide paragraphs of database fields (e.g., mail merge) with an empty value"
msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:71
@@ -17077,138 +17081,138 @@ msgctxt "tableproperties|background"
msgid "Background"
msgstr "Zemîn"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:25
-msgctxt "tabletextflowpage|liststore1"
-msgid "Horizontal"
-msgstr "Berwar"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:29
-#, fuzzy
-msgctxt "tabletextflowpage|liststore1"
-msgid "Vertical"
-msgstr "Tîk"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:33
-#, fuzzy
-msgctxt "tabletextflowpage|liststore1"
-msgid "Use superordinate object settings"
-msgstr "Mîhengên hêmana jorîn bi kar bîne"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:47
-#, fuzzy
-msgctxt "tabletextflowpage|liststore2"
-msgid "Top"
-msgstr "Jor"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:51
-#, fuzzy
-msgctxt "tabletextflowpage|liststore2"
-msgid "Centered"
-msgstr "Nîvîkirî"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:55
-#, fuzzy
-msgctxt "tabletextflowpage|liststore2"
-msgid "Bottom"
-msgstr "Jêr"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:97
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:53
#, fuzzy
msgctxt "tabletextflowpage|break"
msgid "_Break"
msgstr "~Birrîn"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:112
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:68
#, fuzzy
msgctxt "tabletextflowpage|page"
msgid "_Page"
msgstr "Rûpel"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:132
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:87
#, fuzzy
msgctxt "tabletextflowpage|column"
msgid "Col_umn"
msgstr "Sitûn"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:151
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:106
#, fuzzy
msgctxt "tabletextflowpage|before"
msgid "Be_fore"
msgstr "Berê"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:171
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:125
#, fuzzy
msgctxt "tabletextflowpage|after"
msgid "_After"
msgstr "Dû re"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:203
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:158
#, fuzzy
msgctxt "tabletextflowpage|pagestyle"
msgid "With Page St_yle"
msgstr "Teşeya rûpelê sererast bike"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:224
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:177
#, fuzzy
msgctxt "tabletextflowpage|pagenoft"
msgid "Page _number"
msgstr "Nimreya rûpelê"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:257
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:213
#, fuzzy
msgctxt "tabletextflowpage|pagestylelb-atkobject"
msgid "With Page Style"
msgstr "Teşeya rûpelê sererast bike"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:274
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:230
msgctxt "tabletextflowpage|split"
msgid "Allow _table to split across pages and columns"
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:289
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:245
#, fuzzy
msgctxt "tabletextflowpage|splitrow"
msgid "Allow row to break a_cross pages and columns"
msgstr "Destûrê Bide Rêzikan Da Ku Karibe Rûpel û Stûnan Ji Hundir De Jê Bike"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:306
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:262
#, fuzzy
msgctxt "tabletextflowpage|keep"
msgid "_Keep with next paragraph"
msgstr "Bi paragrafa kêlekê re bigire"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:328
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:284
msgctxt "tabletextflowpage|label40"
msgid "Text _orientation"
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:361
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:298
+msgctxt "tabletextflowpage|liststore1"
+msgid "Horizontal"
+msgstr "Berwar"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:299
+#, fuzzy
+msgctxt "tabletextflowpage|liststore1"
+msgid "Vertical"
+msgstr "Tîk"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:300
+#, fuzzy
+msgctxt "tabletextflowpage|liststore1"
+msgid "Use superordinate object settings"
+msgstr "Mîhengên hêmana jorîn bi kar bîne"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:321
#, fuzzy
msgctxt "tabletextflowpage|headline"
msgid "R_epeat heading"
msgstr "Sernivîsê dubare bike"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:383
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:343
msgctxt "tabletextflowpage|label38"
msgid "The first "
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:396
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:356
msgctxt "tabletextflowpage|label39"
msgid "rows"
msgstr "rêzik"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:434
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:395
msgctxt "tabletextflowpage|label35"
msgid "Text Flow"
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:467
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:428
msgctxt "tabletextflowpage|label41"
msgid "_Vertical alignment"
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:495
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:442
+#, fuzzy
+msgctxt "tabletextflowpage|liststore2"
+msgid "Top"
+msgstr "Jor"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:443
+#, fuzzy
+msgctxt "tabletextflowpage|liststore2"
+msgid "Centered"
+msgstr "Nîvîkirî"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:444
+#, fuzzy
+msgctxt "tabletextflowpage|liststore2"
+msgid "Bottom"
+msgstr "Jêr"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:460
msgctxt "tabletextflowpage|label36"
msgid "Alignment"
msgstr "Hîzakirin"
@@ -18038,10 +18042,9 @@ msgid "Alphabetical Index"
msgstr ""
#: sw/uiconfig/swriter/ui/tocindexpage.ui:58
-#, fuzzy
msgctxt "tocindexpage|liststore1"
-msgid "Illustration Index"
-msgstr "Pêrista wêneya 1"
+msgid "Table of Figures"
+msgstr ""
#: sw/uiconfig/swriter/ui/tocindexpage.ui:62
msgctxt "tocindexpage|liststore1"
diff --git a/source/kmr-Latn/writerperfect/messages.po b/source/kmr-Latn/writerperfect/messages.po
index 202a4b4e364..9e3033a393a 100644
--- a/source/kmr-Latn/writerperfect/messages.po
+++ b/source/kmr-Latn/writerperfect/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-16 16:54+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+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"
@@ -65,100 +65,100 @@ msgctxt "exportepub|generalft"
msgid "General"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:122
+#: writerperfect/uiconfig/ui/exportepub.ui:121
#, fuzzy
msgctxt "exportepub|versionft"
msgid "Version:"
msgstr "~Guharto:"
-#: writerperfect/uiconfig/ui/exportepub.ui:139
+#: writerperfect/uiconfig/ui/exportepub.ui:138
msgctxt "exportepub|epub3"
msgid "EPUB 3.0"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:140
+#: writerperfect/uiconfig/ui/exportepub.ui:139
msgctxt "exportepub|epub2"
msgid "EPUB 2.0"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:175
+#: writerperfect/uiconfig/ui/exportepub.ui:174
msgctxt "exportepub|splitft"
msgid "Split method:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:192
+#: writerperfect/uiconfig/ui/exportepub.ui:191
#, fuzzy
msgctxt "exportepub|splitpage"
msgid "Page break"
msgstr "Dawiya rûpel"
-#: writerperfect/uiconfig/ui/exportepub.ui:193
+#: writerperfect/uiconfig/ui/exportepub.ui:192
#, fuzzy
msgctxt "exportepub|splitheading"
msgid "Heading"
msgstr "Sernivîs"
-#: writerperfect/uiconfig/ui/exportepub.ui:228
+#: writerperfect/uiconfig/ui/exportepub.ui:227
msgctxt "exportepub|layoutft"
msgid "Layout method:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:245
+#: writerperfect/uiconfig/ui/exportepub.ui:244
msgctxt "exportepub|layoutreflowable"
msgid "Reflowable"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:246
+#: writerperfect/uiconfig/ui/exportepub.ui:245
msgctxt "exportepub|layoutfixed"
msgid "Fixed"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:281
+#: writerperfect/uiconfig/ui/exportepub.ui:280
msgctxt "exportepub|coverimageft"
msgid "Custom cover image:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:311
+#: writerperfect/uiconfig/ui/exportepub.ui:310
msgctxt "exportepub|coverbutton"
msgid "Browse..."
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:355
+#: writerperfect/uiconfig/ui/exportepub.ui:354
msgctxt "exportepub|mediadirft"
msgid "Custom media directory:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:385
+#: writerperfect/uiconfig/ui/exportepub.ui:384
msgctxt "exportepub|mediabutton"
msgid "Browse..."
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:429
+#: writerperfect/uiconfig/ui/exportepub.ui:428
msgctxt "exportepub|metadataft"
msgid "Metadata"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:470
+#: writerperfect/uiconfig/ui/exportepub.ui:468
msgctxt "exportepub|identifierft"
msgid "Identifier:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:485
+#: writerperfect/uiconfig/ui/exportepub.ui:483
msgctxt "exportepub|titleft"
msgid "Title:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:511
+#: writerperfect/uiconfig/ui/exportepub.ui:509
msgctxt "exportepub|authorft"
msgid "Author:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:537
+#: writerperfect/uiconfig/ui/exportepub.ui:535
msgctxt "exportepub|languageft"
msgid "Language:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:563
+#: writerperfect/uiconfig/ui/exportepub.ui:561
msgctxt "exportepub|dateft"
msgid "Date:"
msgstr ""
diff --git a/source/kn/cui/messages.po b/source/kn/cui/messages.po
index e7b788f3ba3..638ff4e7039 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+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"
@@ -10264,97 +10264,97 @@ msgctxt "positionsizedialog|PositionAndSizeDialog"
msgid "Position and Size"
msgstr "ಸ್ಥಳ ಮತ್ತು ಗಾತ್ರ"
-#: cui/uiconfig/ui/positionsizedialog.ui:107
+#: cui/uiconfig/ui/positionsizedialog.ui:136
msgctxt "positionsizedialog|RID_SVXPAGE_POSITION_SIZE"
msgid "Position and Size"
msgstr "ಸ್ಥಳ ಹಾಗು ಗಾತ್ರ"
-#: cui/uiconfig/ui/positionsizedialog.ui:129
+#: cui/uiconfig/ui/positionsizedialog.ui:182
msgctxt "positionsizedialog|RID_SVXPAGE_SWPOSSIZE"
msgid "Position and Size"
msgstr "ಸ್ಥಳ ಹಾಗು ಗಾತ್ರ"
-#: cui/uiconfig/ui/positionsizedialog.ui:152
+#: cui/uiconfig/ui/positionsizedialog.ui:229
msgctxt "positionsizedialog|RID_SVXPAGE_ANGLE"
msgid "Rotation"
msgstr "ತಿರುಗಿಸುವಿಕೆ"
-#: cui/uiconfig/ui/positionsizedialog.ui:175
+#: cui/uiconfig/ui/positionsizedialog.ui:276
msgctxt "positionsizedialog|RID_SVXPAGE_SLANT"
msgid "Slant & Corner Radius"
msgstr "ಓರೆ ಹಾಗು ಅಂಚಿನ ತ್ರಿಜ್ಯ"
-#: cui/uiconfig/ui/possizetabpage.ui:40
+#: cui/uiconfig/ui/possizetabpage.ui:61
msgctxt "possizetabpage|FT_POS_X"
msgid "Position _X:"
msgstr "ಸ್ಥಾನ _X:"
-#: cui/uiconfig/ui/possizetabpage.ui:56
+#: cui/uiconfig/ui/possizetabpage.ui:75
msgctxt "possizetabpage|FT_POS_Y"
msgid "Position _Y:"
msgstr "ಸ್ಥಾನ _Y:"
-#: cui/uiconfig/ui/possizetabpage.ui:110
+#: cui/uiconfig/ui/possizetabpage.ui:128
msgctxt "possizetabpage|FT_POSREFERENCE"
msgid "_Base point:"
msgstr "ಮೂಲ ಬಿಂದು (_B):"
-#: cui/uiconfig/ui/possizetabpage.ui:148
+#: cui/uiconfig/ui/possizetabpage.ui:182
msgctxt "possizetabpage|label1"
msgid "Position"
msgstr "ಸ್ಥಾನ"
-#: cui/uiconfig/ui/possizetabpage.ui:190
+#: cui/uiconfig/ui/possizetabpage.ui:224
msgctxt "possizetabpage|FT_WIDTH"
msgid "Wi_dth:"
msgstr "ಅಗಲ (_d):"
-#: cui/uiconfig/ui/possizetabpage.ui:206
+#: cui/uiconfig/ui/possizetabpage.ui:238
msgctxt "possizetabpage|FT_HEIGHT"
msgid "H_eight:"
msgstr "ಎತ್ತರ (_e):"
-#: cui/uiconfig/ui/possizetabpage.ui:247
+#: cui/uiconfig/ui/possizetabpage.ui:276
msgctxt "possizetabpage|CBX_SCALE"
msgid "_Keep ratio"
msgstr "ಅನುಪಾತ ಇರಿಸಿಕೊ (_K)"
-#: cui/uiconfig/ui/possizetabpage.ui:279
+#: cui/uiconfig/ui/possizetabpage.ui:307
msgctxt "possizetabpage|FT_SIZEREFERENCE"
msgid "Base _point:"
msgstr "ಮೂಲ ಬಿಂದು (_p):"
-#: cui/uiconfig/ui/possizetabpage.ui:317
+#: cui/uiconfig/ui/possizetabpage.ui:361
msgctxt "possizetabpage|label2"
msgid "Size"
msgstr "ಗಾತ್ರ"
-#: cui/uiconfig/ui/possizetabpage.ui:356
+#: cui/uiconfig/ui/possizetabpage.ui:401
msgctxt "possizetabpage|TSB_POSPROTECT"
msgid "Positio_n"
msgstr "ಸ್ಥಾನ (_n)"
-#: cui/uiconfig/ui/possizetabpage.ui:373
+#: cui/uiconfig/ui/possizetabpage.ui:418
msgctxt "possizetabpage|TSB_SIZEPROTECT"
msgid "_Size"
msgstr "ಗಾತ್ರ (_S)"
-#: cui/uiconfig/ui/possizetabpage.ui:397
+#: cui/uiconfig/ui/possizetabpage.ui:441
msgctxt "possizetabpage|label3"
msgid "Protect"
msgstr "ರಕ್ಷಿಸು"
-#: cui/uiconfig/ui/possizetabpage.ui:430
+#: cui/uiconfig/ui/possizetabpage.ui:475
msgctxt "possizetabpage|TSB_AUTOGROW_WIDTH"
msgid "_Fit width to text"
msgstr "ಪಠ್ಯವನ್ನು ಅಗಲಕ್ಕೆ ಹೊಂದಿಸು (_F)"
-#: cui/uiconfig/ui/possizetabpage.ui:447
+#: cui/uiconfig/ui/possizetabpage.ui:492
msgctxt "possizetabpage|TSB_AUTOGROW_HEIGHT"
msgid "Fit _height to text"
msgstr "ಪಠ್ಯವನ್ನು ಎತ್ತರಕ್ಕೆ ಹೊಂದಿಸು (_h)"
-#: cui/uiconfig/ui/possizetabpage.ui:471
+#: cui/uiconfig/ui/possizetabpage.ui:515
msgctxt "possizetabpage|label4"
msgid "Adapt"
msgstr "ಅಳವಡಿಸು"
@@ -10565,51 +10565,51 @@ msgctxt "recordnumberdialog|label2"
msgid "go to record"
msgstr "ದಾಖಲೆಗೆ ಹೋಗು"
-#: cui/uiconfig/ui/rotationtabpage.ui:52
+#: cui/uiconfig/ui/rotationtabpage.ui:56
msgctxt "rotationtabpage|FT_POS_X"
msgid "Position _X:"
msgstr "ಸ್ಥಾನ _X:"
-#: cui/uiconfig/ui/rotationtabpage.ui:66
+#: cui/uiconfig/ui/rotationtabpage.ui:70
msgctxt "rotationtabpage|FT_POS_Y"
msgid "Position _Y:"
msgstr "ಸ್ಥಾನ _Y:"
-#: cui/uiconfig/ui/rotationtabpage.ui:116
+#: cui/uiconfig/ui/rotationtabpage.ui:123
#, fuzzy
msgctxt "rotationtabpage|FT_POSPRESETS"
msgid "_Default settings:"
msgstr "ಪೂರ್ವನಿಯೋಜಿತ ಸಿದ್ಧತೆಗಳು (_D)"
-#: cui/uiconfig/ui/rotationtabpage.ui:130
+#: cui/uiconfig/ui/rotationtabpage.ui:151
msgctxt "rotationtabpage|CTL_RECT|tooltip_text"
msgid "Rotation point"
msgstr "ತಿರುಗುವ ಬಿಂದು"
-#: cui/uiconfig/ui/rotationtabpage.ui:155
+#: cui/uiconfig/ui/rotationtabpage.ui:178
#, fuzzy
msgctxt "rotationtabpage|label1"
msgid "Pivot Point"
msgstr "ತಿರುಗಣೆ (ಪಿವೋಟ್) ಬಿಂದು"
-#: cui/uiconfig/ui/rotationtabpage.ui:197
+#: cui/uiconfig/ui/rotationtabpage.ui:220
#, fuzzy
msgctxt "rotationtabpage|FT_ANGLE"
msgid "_Angle:"
msgstr "ಕೋನ (_A)"
-#: cui/uiconfig/ui/rotationtabpage.ui:238
+#: cui/uiconfig/ui/rotationtabpage.ui:263
#, fuzzy
msgctxt "rotationtabpage|FT_ANGLEPRESETS"
msgid "Default _settings:"
msgstr "ಪೂರ್ವನಿಯೋಜಿತ ಸಿದ್ಧತೆಗಳು (_s)"
-#: cui/uiconfig/ui/rotationtabpage.ui:252
+#: cui/uiconfig/ui/rotationtabpage.ui:287
msgctxt "rotationtabpage|CTL_ANGLE|tooltip_text"
msgid "Rotation Angle"
msgstr "ತಿರುಗುವಿಕೆ ಕೋನ"
-#: cui/uiconfig/ui/rotationtabpage.ui:277
+#: cui/uiconfig/ui/rotationtabpage.ui:314
msgctxt "rotationtabpage|label2"
msgid "Rotation Angle"
msgstr "ತಿರುಗುವಿಕೆ ಕೋನ"
@@ -11001,55 +11001,55 @@ msgctxt "similaritysearchdialog|relaxbox"
msgid "_Combine"
msgstr "ಒಗ್ಗೂಡಿಸು (_C)"
-#: cui/uiconfig/ui/slantcornertabpage.ui:50
+#: cui/uiconfig/ui/slantcornertabpage.ui:70
msgctxt "slantcornertabpage|label5"
msgid "_X:"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:88
+#: cui/uiconfig/ui/slantcornertabpage.ui:110
msgctxt "slantcornertabpage|label6"
msgid "_Y:"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:125
+#: cui/uiconfig/ui/slantcornertabpage.ui:149
msgctxt "slantcornertabpage|label3"
msgid "Control Point 1"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:159
+#: cui/uiconfig/ui/slantcornertabpage.ui:183
#, fuzzy
msgctxt "slantcornertabpage|FT_RADIUS"
msgid "_Radius:"
msgstr "ತ್ರಿಜ್ಯ (_R)"
-#: cui/uiconfig/ui/slantcornertabpage.ui:189
+#: cui/uiconfig/ui/slantcornertabpage.ui:214
#, fuzzy
msgctxt "slantcornertabpage|label1"
msgid "Corner Radius"
msgstr "ಮೂಲೆ ತ್ರಿಜ್ಯ"
-#: cui/uiconfig/ui/slantcornertabpage.ui:223
+#: cui/uiconfig/ui/slantcornertabpage.ui:248
#, fuzzy
msgctxt "slantcornertabpage|FT_ANGLE"
msgid "_Angle:"
msgstr "ಕೋನ (_A)"
-#: cui/uiconfig/ui/slantcornertabpage.ui:253
+#: cui/uiconfig/ui/slantcornertabpage.ui:279
msgctxt "slantcornertabpage|label2"
msgid "Slant"
msgstr "ಓರೆ"
-#: cui/uiconfig/ui/slantcornertabpage.ui:294
+#: cui/uiconfig/ui/slantcornertabpage.ui:320
msgctxt "slantcornertabpage|label4"
msgid "_X:"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:332
+#: cui/uiconfig/ui/slantcornertabpage.ui:360
msgctxt "slantcornertabpage|label7"
msgid "_Y:"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:369
+#: cui/uiconfig/ui/slantcornertabpage.ui:399
msgctxt "slantcornertabpage|label8"
msgid "Control Point 2"
msgstr ""
@@ -11342,119 +11342,119 @@ msgctxt "storedwebconnectiondialog|change"
msgid "_Change Password..."
msgstr "ಗುಪ್ತಪದವನ್ನು ಬದಲಿಸು (_C)..."
-#: cui/uiconfig/ui/swpossizepage.ui:74
+#: cui/uiconfig/ui/swpossizepage.ui:85
#, fuzzy
msgctxt "swpossizepage|widthft"
msgid "_Width:"
msgstr "ಅಗಲ (_W):"
-#: cui/uiconfig/ui/swpossizepage.ui:111
+#: cui/uiconfig/ui/swpossizepage.ui:123
msgctxt "swpossizepage|heightft"
msgid "H_eight:"
msgstr "ಎತ್ತರ (_e):"
-#: cui/uiconfig/ui/swpossizepage.ui:128
+#: cui/uiconfig/ui/swpossizepage.ui:141
msgctxt "swpossizepage|ratio"
msgid "_Keep ratio"
msgstr "ಅನುಪಾತ ಇರಿಸಿಕೊ (_K)"
-#: cui/uiconfig/ui/swpossizepage.ui:149
+#: cui/uiconfig/ui/swpossizepage.ui:162
msgctxt "swpossizepage|label2"
msgid "Size"
msgstr "ಗಾತ್ರ"
-#: cui/uiconfig/ui/swpossizepage.ui:205
+#: cui/uiconfig/ui/swpossizepage.ui:218
msgctxt "swpossizepage|topage"
msgid "To _page"
msgstr "ಪುಟಕ್ಕೆ (_p)"
-#: cui/uiconfig/ui/swpossizepage.ui:222
+#: cui/uiconfig/ui/swpossizepage.ui:234
msgctxt "swpossizepage|topara"
msgid "To paragrap_h"
msgstr "ಪ್ಯಾರಾಗ್ರಾಫ್‌ಗೆ (_h)"
-#: cui/uiconfig/ui/swpossizepage.ui:238
+#: cui/uiconfig/ui/swpossizepage.ui:250
msgctxt "swpossizepage|tochar"
msgid "To cha_racter"
msgstr "ಅಕ್ಷರಕ್ಕೆ (_r)"
-#: cui/uiconfig/ui/swpossizepage.ui:254
+#: cui/uiconfig/ui/swpossizepage.ui:266
msgctxt "swpossizepage|aschar"
msgid "_As character"
msgstr "ಅಕ್ಷರವಾಗಿ (_A)"
-#: cui/uiconfig/ui/swpossizepage.ui:270
+#: cui/uiconfig/ui/swpossizepage.ui:282
msgctxt "swpossizepage|toframe"
msgid "To _frame"
msgstr "ಚೌಕಟ್ಟಿಗೆ (_f)"
-#: cui/uiconfig/ui/swpossizepage.ui:292
+#: cui/uiconfig/ui/swpossizepage.ui:304
msgctxt "swpossizepage|label1"
msgid "Anchor"
msgstr "ಲಂಗರು"
-#: cui/uiconfig/ui/swpossizepage.ui:333
+#: cui/uiconfig/ui/swpossizepage.ui:344
#, fuzzy
msgctxt "swpossizepage|horiposft"
msgid "Hori_zontal:"
msgstr "ಅಡ್ಡ(_z)"
-#: cui/uiconfig/ui/swpossizepage.ui:347
+#: cui/uiconfig/ui/swpossizepage.ui:358
#, fuzzy
msgctxt "swpossizepage|horibyft"
msgid "b_y:"
msgstr "ಇಂದ (_y)"
-#: cui/uiconfig/ui/swpossizepage.ui:361
+#: cui/uiconfig/ui/swpossizepage.ui:372
#, fuzzy
msgctxt "swpossizepage|vertbyft"
msgid "_by:"
msgstr "ಇಂದ (_b)"
-#: cui/uiconfig/ui/swpossizepage.ui:375
+#: cui/uiconfig/ui/swpossizepage.ui:386
#, fuzzy
msgctxt "swpossizepage|horitoft"
msgid "_to:"
msgstr "ಗೆ (_t)"
-#: cui/uiconfig/ui/swpossizepage.ui:421
+#: cui/uiconfig/ui/swpossizepage.ui:433
#, fuzzy
msgctxt "swpossizepage|vertposft"
msgid "_Vertical:"
msgstr "ಲಂಬ (_V)"
-#: cui/uiconfig/ui/swpossizepage.ui:457
+#: cui/uiconfig/ui/swpossizepage.ui:470
#, fuzzy
msgctxt "swpossizepage|verttoft"
msgid "t_o:"
msgstr "ಗೆ (_o)"
-#: cui/uiconfig/ui/swpossizepage.ui:478
+#: cui/uiconfig/ui/swpossizepage.ui:492
msgctxt "swpossizepage|mirror"
msgid "_Mirror on even pages"
msgstr "ಸರಿಸಂಖ್ಯೆಯ ಪುಟಗಳಲ್ಲಿ ಪ್ರತಿಬಿಂಬ (_M)"
-#: cui/uiconfig/ui/swpossizepage.ui:495
+#: cui/uiconfig/ui/swpossizepage.ui:509
msgctxt "swpossizepage|followtextflow"
msgid "Follow te_xt flow"
msgstr "ಪಠ್ಯದ ಹರಿವನ್ನು ಅನುಸರಿಸು (_x)"
-#: cui/uiconfig/ui/swpossizepage.ui:518
+#: cui/uiconfig/ui/swpossizepage.ui:532
msgctxt "swpossizepage|label11"
msgid "Position"
msgstr "ಸ್ಥಾನ"
-#: cui/uiconfig/ui/swpossizepage.ui:549
+#: cui/uiconfig/ui/swpossizepage.ui:563
msgctxt "swpossizepage|pos"
msgid "Positio_n"
msgstr "ಸ್ಥಾನ (_n)"
-#: cui/uiconfig/ui/swpossizepage.ui:565
+#: cui/uiconfig/ui/swpossizepage.ui:579
msgctxt "swpossizepage|size"
msgid "_Size"
msgstr "ಗಾತ್ರ (_S)"
-#: cui/uiconfig/ui/swpossizepage.ui:587
+#: cui/uiconfig/ui/swpossizepage.ui:601
msgctxt "swpossizepage|label3"
msgid "Protect"
msgstr "ರಕ್ಷಿಸು"
@@ -11650,12 +11650,12 @@ msgctxt "textattrtabpage|label2"
msgid "Spacing to Borders"
msgstr "ಅಂಚುಗಳಿಗಾಗಿನ ಜಾಗ"
-#: cui/uiconfig/ui/textattrtabpage.ui:425
+#: cui/uiconfig/ui/textattrtabpage.ui:423
msgctxt "textattrtabpage|TSB_FULL_WIDTH"
msgid "Full _width"
msgstr "ಸಂಪೂರ್ಣ ಅಗಲ (_w)"
-#: cui/uiconfig/ui/textattrtabpage.ui:448
+#: cui/uiconfig/ui/textattrtabpage.ui:446
#, fuzzy
msgctxt "textattrtabpage|label3"
msgid "Text Anchor"
diff --git a/source/kn/filter/source/config/fragments/filters.po b/source/kn/filter/source/config/fragments/filters.po
index dfffa247903..91dddf4e8ff 100644
--- a/source/kn/filter/source/config/fragments/filters.po
+++ b/source/kn/filter/source/config/fragments/filters.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: 2018-05-16 16:54+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2016-12-04 06:39+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: American English <kde-i18n-doc@kde.org>\n"
@@ -465,14 +465,13 @@ msgid "Microsoft Word 6.0"
msgstr "Microsoft Word 6.0"
#: MS_Word_2003_XML.xcu
-#, fuzzy
msgctxt ""
"MS_Word_2003_XML.xcu\n"
"MS Word 2003 XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Word 2003 XML"
-msgstr "Microsoft Word 2003 XML"
+msgid "Word 2003 XML"
+msgstr ""
#: MS_Word_2007_XML.xcu
msgctxt ""
@@ -1309,7 +1308,7 @@ msgctxt ""
"Calc MS Excel 2007 VBA XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Excel 2007-2016 XML (macro enabled)"
+msgid "Excel 2007–2019 (macro-enabled)"
msgstr ""
#: calc_MS_Excel_2007_XML.xcu
diff --git a/source/kn/filter/source/config/fragments/types.po b/source/kn/filter/source/config/fragments/types.po
index 17efcb27074..6d1dbfe6c41 100644
--- a/source/kn/filter/source/config/fragments/types.po
+++ b/source/kn/filter/source/config/fragments/types.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: 2018-05-08 15:11+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2015-11-11 22:14+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: American English <kde-i18n-doc@kde.org>\n"
@@ -293,8 +293,8 @@ msgctxt ""
"writer_MS_Word_2003_XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Word 2003 XML"
-msgstr "ಮೈಕ್ರೋಸಾಫ್ಟ್‍ ವರ್ಡ್ 2003 XML"
+msgid "Word 2003 XML"
+msgstr ""
#: writer_MS_Word_2007_XML.xcu
msgctxt ""
diff --git a/source/kn/fpicker/messages.po b/source/kn/fpicker/messages.po
index 02f6a1204a2..098154bb14a 100644
--- a/source/kn/fpicker/messages.po
+++ b/source/kn/fpicker/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+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"
@@ -283,13 +283,13 @@ msgstr ""
#: fpicker/uiconfig/ui/foldernamedialog.ui:8
msgctxt "foldernamedialog|FolderNameDialog"
-msgid "Folder Name ?"
-msgstr "ಕಡತಕೋಶದ ಹೆಸರೆ ?"
+msgid "Folder Name"
+msgstr ""
#: fpicker/uiconfig/ui/foldernamedialog.ui:91
msgctxt "foldernamedialog|label2"
-msgid "Na_me"
-msgstr "ಹೆಸರು (_m)"
+msgid "Na_me:"
+msgstr ""
#: fpicker/uiconfig/ui/foldernamedialog.ui:122
#, fuzzy
diff --git a/source/kn/officecfg/registry/data/org/openoffice/Office/UI.po b/source/kn/officecfg/registry/data/org/openoffice/Office/UI.po
index 71836e990a9..6748007de59 100644
--- a/source/kn/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/kn/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-22 13:17+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2016-05-25 13:33+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Kannada <kde-i18n-doc@kde.org>\n"
@@ -26952,8 +26952,8 @@ msgctxt ""
"..WriterCommands.UserInterface.Commands..uno:TextAttributes\n"
"Label\n"
"value.text"
-msgid "Text Attributes"
-msgstr "ಪಠ್ಯ ಗುಣವಿಶೇಷಗಳು"
+msgid "Text Attributes..."
+msgstr ""
#: WriterCommands.xcu
msgctxt ""
diff --git a/source/kn/readlicense_oo/docs.po b/source/kn/readlicense_oo/docs.po
index 4fc82d9d629..30b6dd86843 100644
--- a/source/kn/readlicense_oo/docs.po
+++ b/source/kn/readlicense_oo/docs.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: 2018-04-17 15:54+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2016-03-11 14:16+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Kannada <kde-i18n-doc@kde.org>\n"
@@ -117,7 +117,7 @@ msgctxt ""
"readme.xrm\n"
"macxiOSX\n"
"readmeitem.text"
-msgid "MacOSX 10.8 (Mountain Lion) or higher"
+msgid "MacOSX 10.9 (Mavericks) or higher"
msgstr ""
#: readme.xrm
diff --git a/source/kn/sc/messages.po b/source/kn/sc/messages.po
index 8ead0256aa6..7594066062f 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-12 14:40+0200\n"
"PO-Revision-Date: 2017-11-02 08:38+0000\n"
"Last-Translator: yogiks <yogesh@itforchange.net>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1873,16 +1873,21 @@ msgid "Nested arrays are not supported."
msgstr "ಗೂಡು ಮಾಡಲಾದ(ನೆಸ್ಟೆಡ್) ವ್ಯೂಹಗಳಿಗೆ ಬೆಂಬಲವಿಲ್ಲ."
#: sc/inc/globstr.hrc:390
+msgctxt "STR_ERR_LONG_BAD_ARRAY_CONTENT"
+msgid "Unsupported inline array content."
+msgstr ""
+
+#: sc/inc/globstr.hrc:391
msgctxt "STR_UNDO_TEXTTOCOLUMNS"
msgid "Text to Columns"
msgstr "ಪಠ್ಯದಿಂದ ಲಂಬಸಾಲುಗಳಿಗೆ"
-#: sc/inc/globstr.hrc:391
+#: sc/inc/globstr.hrc:392
msgctxt "STR_DOC_UPDATED"
msgid "Your spreadsheet has been updated with changes saved by other users."
msgstr "ಬೇರೆ ಬಳಕೆದಾರರಿಂದ ಮಾಡಲಾದ ಬದಲಾವಣೆಗಳೊಂದಿಗೆ ನಿಮ್ಮ ಸ್ಪ್ರೆಡ್‌ಶೀಟ್‌ ಅನ್ನು ಅಪ್‌ಡೇಟ್‌ ಮಾಡಲಾಗಿದೆ."
-#: sc/inc/globstr.hrc:392
+#: sc/inc/globstr.hrc:393
msgctxt "STR_DOC_WILLBESAVED"
msgid ""
"The spreadsheet must be saved now to activate sharing mode.\n"
@@ -1893,7 +1898,7 @@ msgstr ""
"\n"
"ಮುಂದುವರೆಯಲು ಬಯಸುತ್ತೀರೆ?"
-#: sc/inc/globstr.hrc:393
+#: sc/inc/globstr.hrc:394
msgctxt "STR_DOC_WILLNOTBESAVED"
msgid ""
"Already resolved merge conflicts will be lost and your changes to the shared spreadsheet will not be saved.\n"
@@ -1904,7 +1909,7 @@ msgstr ""
"\n"
"ಮುಂದುವರೆಯಲು ಬಯಸುತ್ತೀರೆ?"
-#: sc/inc/globstr.hrc:394
+#: sc/inc/globstr.hrc:395
msgctxt "STR_DOC_DISABLESHARED"
msgid ""
"Disabling shared mode of a spreadsheet hinders all other users of the shared spreadsheet to merge back their work.\n"
@@ -1915,7 +1920,7 @@ msgstr ""
"\n"
"ಮುಂದುವರೆಯಲು ಬಯಸುತ್ತೀರೆ?"
-#: sc/inc/globstr.hrc:395
+#: sc/inc/globstr.hrc:396
msgctxt "STR_DOC_NOLONGERSHARED"
msgid ""
"This spreadsheet is no longer in shared mode.\n"
@@ -1926,7 +1931,7 @@ msgstr ""
"\n"
"ನಿಮ್ಮ ಸ್ಪ್ರೆಡ್‌ಶೀಟನ್ನು ಬೇರೊಂದು ಕಡತದಲ್ಲಿ ಉಳಿಸಿ ಹಾಗು ನೀವು ಮಾಡಿದ ಬದಲಾವಣೆಗಳನ್ನು ಹಂಚಲಾದ ಸ್ಪ್ರೆಡ್‌ಶೀಟಿಗೆ ನೀವೆ ಕೈಯಾರೆ ವಿಲೀನಗೊಳಿಸಿ."
-#: sc/inc/globstr.hrc:396
+#: sc/inc/globstr.hrc:397
msgctxt "STR_FILE_LOCKED_TRY_LATER"
msgid ""
"The shared spreadsheet file is locked due to a merge in progress by user: '%1'\n"
@@ -1937,7 +1942,7 @@ msgstr ""
"\n"
"ಲಾಕ್‌ ಮಾಡಲಾದ ಕಡತದ ಹಂಚಲಾದ ಕ್ರಮವನ್ನು ಅಶಕ್ತಗೊಳಿಸಲು ಸಾಧ್ಯವಿಲ್ಲ. ಸ್ವಲ್ಪ ಸಮಯದ ನಂತರ ಪ್ರಯತ್ನಿಸಿ."
-#: sc/inc/globstr.hrc:397
+#: sc/inc/globstr.hrc:398
msgctxt "STR_FILE_LOCKED_SAVE_LATER"
msgid ""
"The shared spreadsheet file is locked due to a merge in progress by user: '%1'\n"
@@ -1948,147 +1953,147 @@ msgstr ""
"\n"
"ನೀವು ಮಾಡಿದ ಬದಲಾವಣೆಗಳನ್ನು ಉಳಿಸಲು ಸ್ವಲ್ಪ ಸಮಯದ ನಂತರ ಪ್ರಯತ್ನಿಸಿ."
-#: sc/inc/globstr.hrc:398
+#: sc/inc/globstr.hrc:399
msgctxt "STR_UNKNOWN_USER"
msgid "Unknown User"
msgstr "ಅಜ್ಞಾತ ಬಳಕೆದಾರ"
-#: sc/inc/globstr.hrc:399
+#: sc/inc/globstr.hrc:400
msgctxt "STR_SHAPE_AUTOSHAPE"
msgid "AutoShape"
msgstr "ಸ್ವಯಂಆಕಾರ"
-#: sc/inc/globstr.hrc:400
+#: sc/inc/globstr.hrc:401
msgctxt "STR_SHAPE_RECTANGLE"
msgid "Rectangle"
msgstr "ಆಯತ"
-#: sc/inc/globstr.hrc:401
+#: sc/inc/globstr.hrc:402
msgctxt "STR_SHAPE_LINE"
msgid "Line"
msgstr "ಸಾಲು"
-#: sc/inc/globstr.hrc:402
+#: sc/inc/globstr.hrc:403
msgctxt "STR_SHAPE_OVAL"
msgid "Oval"
msgstr "ಅಂಡಾಕೃತಿ"
-#: sc/inc/globstr.hrc:403
+#: sc/inc/globstr.hrc:404
msgctxt "STR_FORM_BUTTON"
msgid "Button"
msgstr "ಗುಂಡಿ"
-#: sc/inc/globstr.hrc:404
+#: sc/inc/globstr.hrc:405
msgctxt "STR_FORM_CHECKBOX"
msgid "Check Box"
msgstr "ಗುರುತು ಹಾಕುವ ಚೌಕ"
-#: sc/inc/globstr.hrc:405
+#: sc/inc/globstr.hrc:406
msgctxt "STR_FORM_OPTIONBUTTON"
msgid "Option Button"
msgstr "ಆಯ್ಕೆಯ ಗುಂಡಿ"
-#: sc/inc/globstr.hrc:406
+#: sc/inc/globstr.hrc:407
msgctxt "STR_FORM_LABEL"
msgid "Label"
msgstr "ಲೇಬಲ್"
-#: sc/inc/globstr.hrc:407
+#: sc/inc/globstr.hrc:408
msgctxt "STR_FORM_LISTBOX"
msgid "List Box"
msgstr "ಪಟ್ಟಿ ಚೌಕ"
-#: sc/inc/globstr.hrc:408
+#: sc/inc/globstr.hrc:409
msgctxt "STR_FORM_GROUPBOX"
msgid "Group Box"
msgstr "ಗುಂಪು ಚೌಕ"
-#: sc/inc/globstr.hrc:409
+#: sc/inc/globstr.hrc:410
msgctxt "STR_FORM_DROPDOWN"
msgid "Drop Down"
msgstr "ಕೆಳಕ್ಕೆ ಬೀಳಿಸು"
-#: sc/inc/globstr.hrc:410
+#: sc/inc/globstr.hrc:411
msgctxt "STR_FORM_SPINNER"
msgid "Spinner"
msgstr "ಸ್ಪಿನ್ನರ್"
-#: sc/inc/globstr.hrc:411
+#: sc/inc/globstr.hrc:412
msgctxt "STR_FORM_SCROLLBAR"
msgid "Scroll Bar"
msgstr "ಚಲನ ಪಟ್ಟಿಕೆ"
-#: sc/inc/globstr.hrc:412
+#: sc/inc/globstr.hrc:413
msgctxt "STR_STYLE_FAMILY_CELL"
msgid "Cell Styles"
msgstr "ಕೋಶ ಶೈಲಿಗಳು"
-#: sc/inc/globstr.hrc:413
+#: sc/inc/globstr.hrc:414
msgctxt "STR_STYLE_FAMILY_PAGE"
msgid "Page Styles"
msgstr "ಪುಟದ ಶೈಲಿಗಳು"
-#: sc/inc/globstr.hrc:414
+#: sc/inc/globstr.hrc:415
msgctxt "STR_ERR_DATAPILOTSOURCE"
msgid "Pivot table source data is invalid."
msgstr "ತಿರುಗಣೆ ಕೋಷ್ಟಕದ ಆಕರ ದತ್ತಾಂಶವು ಅಮಾನ್ಯವಾಗಿದೆ."
-#: sc/inc/globstr.hrc:415
+#: sc/inc/globstr.hrc:416
msgctxt "STR_OPTIONS_WARN_SEPARATORS"
msgid "Because the current formula separator settings conflict with the locale, the formula separators have been reset to their default values."
msgstr "ಪ್ರಸಕ್ತ ಸೂತ್ರ ವಿಭಜಕದ ಸಿದ್ಧತೆಗಳು ಲೊಕ್ಯಾಲ್‌ನಂತೆಯೆ ಇರುವುದರಿಂದ, ಸೂತ್ರ ವಿಭಜಕಗಳನ್ನು ಅವುಗಳ ಪೂರ್ವನಿಯೋಜಿತ ಮೌಲ್ಯಗಳಿಗೆ ಮರುಹೊಂದಿಸಲಾಗಿದೆ."
-#: sc/inc/globstr.hrc:416
+#: sc/inc/globstr.hrc:417
msgctxt "STR_UNDO_INSERT_CURRENT_DATE"
msgid "Insert Current Date"
msgstr "ಪ್ರಸಕ್ತ ದಿನಾಂಕವನ್ನು ಸೇರಿಸಿ"
-#: sc/inc/globstr.hrc:417
+#: sc/inc/globstr.hrc:418
msgctxt "STR_UNDO_INSERT_CURRENT_TIME"
msgid "Insert Current Time"
msgstr "ಪ್ರಸಕ್ತ ಸಮಯವನ್ನು ಸೇರಿಸಿ"
-#: sc/inc/globstr.hrc:418
+#: sc/inc/globstr.hrc:419
msgctxt "STR_MANAGE_NAMES"
msgid "Manage Names..."
msgstr "ಹೆಸರುಗಳನ್ನು ವ್ಯವಸ್ಥಾಪಿಸು..."
-#: sc/inc/globstr.hrc:419
+#: sc/inc/globstr.hrc:420
msgctxt "STR_HEADER_NAME"
msgid "Name"
msgstr "ಹೆಸರು"
-#: sc/inc/globstr.hrc:420
+#: sc/inc/globstr.hrc:421
msgctxt "STR_HEADER_RANGE_OR_EXPR"
msgid "Range or formula expression"
msgstr ""
-#: sc/inc/globstr.hrc:421
+#: sc/inc/globstr.hrc:422
msgctxt "STR_HEADER_SCOPE"
msgid "Scope"
msgstr "ಶ್ರೇಣಿ"
-#: sc/inc/globstr.hrc:422
+#: sc/inc/globstr.hrc:423
msgctxt "STR_MULTI_SELECT"
msgid "(multiple)"
msgstr "(ಗುಣಕ)"
-#: sc/inc/globstr.hrc:423
+#: sc/inc/globstr.hrc:424
msgctxt "STR_GLOBAL_SCOPE"
msgid "Document (Global)"
msgstr "ದಸ್ತಾವೇಜು (ಸಾರ್ವತ್ರಿಕ)"
-#: sc/inc/globstr.hrc:424
+#: sc/inc/globstr.hrc:425
msgctxt "STR_ERR_NAME_EXISTS"
msgid "Invalid name. Already in use for the selected scope."
msgstr "ಅಮಾನ್ಯವಾದ ಹೆಸರು. ಆಯ್ಕೆ ಮಾಡಲಾದ ಶ್ರೇಣಿಯಲ್ಲಿ ಈಗಾಗಲೆ ಬಳಸಲಾಗಿದೆ."
-#: sc/inc/globstr.hrc:425
+#: sc/inc/globstr.hrc:426
msgctxt "STR_ERR_NAME_INVALID"
msgid "Invalid name. Only use letters, numbers and underscore."
msgstr "ಅಮಾನ್ಯವಾದ ಹೆಸರು. ಅಕ್ಷರಗಳನ್ನು, ಸಂಖ್ಯೆಗಳನ್ನು ಮತ್ತು ಅಂಡರ್ಸ್ಕೋರುಗಳನ್ನು ಮಾತ್ರ ಬಳಸಿ."
-#: sc/inc/globstr.hrc:426
+#: sc/inc/globstr.hrc:427
msgctxt "STR_UNSAVED_EXT_REF"
msgid ""
"This Document contains external references to unsaved documents.\n"
@@ -2099,217 +2104,217 @@ msgstr ""
"\n"
"ನೀವು ಮುಂದುವರೆಯಲು ಬಯಸುವಿರಾ?"
-#: sc/inc/globstr.hrc:427
+#: sc/inc/globstr.hrc:428
msgctxt "STR_CLOSE_WITH_UNSAVED_REFS"
msgid "This Document is referenced by another document and not yet saved. Closing it without saving will result in data loss."
msgstr "ಈ ದಸ್ತಾವೇಜನ್ನು ಬೇರೆ ದಸ್ತಾವೇಜಿನಲ್ಲಿ ಉಲ್ಲೇಖಿಸಲಾಗಿದೆ ಆದರೆ ಇದನ್ನು ಇನ್ನೂ ಸಹ ಉಳಿಸಲಾಗಿಲ್ಲ. ಇದನ್ನು ಉಳಿಸದೆ ಮುಚ್ಚಿದಲ್ಲಿ ದತ್ತಾಂಶವು ನಾಶವಾಗುವುದಕ್ಕೆ ಕಾರಣವಾಗುತ್ತದೆ."
-#: sc/inc/globstr.hrc:428
+#: sc/inc/globstr.hrc:429
msgctxt "STR_HEADER_RANGE"
msgid "Range"
msgstr "ಶ್ರೇಣಿ"
-#: sc/inc/globstr.hrc:429
+#: sc/inc/globstr.hrc:430
msgctxt "STR_HEADER_COND"
msgid "First Condition"
msgstr "ಮೊದಲ ಷರತ್ತು"
-#: sc/inc/globstr.hrc:430
+#: sc/inc/globstr.hrc:431
msgctxt "STR_COND_CONDITION"
msgid "Cell value is"
msgstr "ಕೋಶ ಮೌಲ್ಯವು"
-#: sc/inc/globstr.hrc:431
+#: sc/inc/globstr.hrc:432
msgctxt "STR_COND_COLORSCALE"
msgid "ColorScale"
msgstr "ವರ್ಣಮಾಪಕ"
-#: sc/inc/globstr.hrc:432
+#: sc/inc/globstr.hrc:433
msgctxt "STR_COND_DATABAR"
msgid "DataBar"
msgstr "ದತ್ತಪಟ್ಟಿ"
-#: sc/inc/globstr.hrc:433
+#: sc/inc/globstr.hrc:434
msgctxt "STR_COND_ICONSET"
msgid "IconSet"
msgstr "ಚಿಹ್ನೆಸೆಟ್"
-#: sc/inc/globstr.hrc:434
+#: sc/inc/globstr.hrc:435
msgctxt "STR_COND_BETWEEN"
msgid "between"
msgstr "ನಡುವೆ"
-#: sc/inc/globstr.hrc:435
+#: sc/inc/globstr.hrc:436
msgctxt "STR_COND_NOTBETWEEN"
msgid "not between"
msgstr "ನಡುವೆಯಲ್ಲ"
-#: sc/inc/globstr.hrc:436
+#: sc/inc/globstr.hrc:437
msgctxt "STR_COND_UNIQUE"
msgid "unique"
msgstr "ವಿಶೇಷ"
-#: sc/inc/globstr.hrc:437
+#: sc/inc/globstr.hrc:438
msgctxt "STR_COND_DUPLICATE"
msgid "duplicate"
msgstr "ನಕಲುಪ್ರತಿ"
-#: sc/inc/globstr.hrc:438
+#: sc/inc/globstr.hrc:439
msgctxt "STR_COND_FORMULA"
msgid "Formula is"
msgstr "ಸೂತ್ರವು"
-#: sc/inc/globstr.hrc:439
+#: sc/inc/globstr.hrc:440
msgctxt "STR_COND_TOP10"
msgid "Top Elements"
msgstr "ಮೇಲಿನ ಘಟಕಗಳು"
-#: sc/inc/globstr.hrc:440
+#: sc/inc/globstr.hrc:441
msgctxt "STR_COND_BOTTOM10"
msgid "Bottom Elements"
msgstr "ಕೆಳಗಿನ ಘಟಕಗಳು"
-#: sc/inc/globstr.hrc:441
+#: sc/inc/globstr.hrc:442
msgctxt "STR_COND_TOP_PERCENT"
msgid "Top Percent"
msgstr "ಮೇಲಿನ ಶೇಕಡಾ"
-#: sc/inc/globstr.hrc:442
+#: sc/inc/globstr.hrc:443
msgctxt "STR_COND_DATE"
msgid "Date is"
msgstr "ದಿನಾಂಕವು"
-#: sc/inc/globstr.hrc:443
+#: sc/inc/globstr.hrc:444
msgctxt "STR_COND_BOTTOM_PERCENT"
msgid "Bottom Percent"
msgstr "ಕೆಳಗಿನ ಶೇಕಡಾ"
-#: sc/inc/globstr.hrc:444
+#: sc/inc/globstr.hrc:445
msgctxt "STR_COND_ABOVE_AVERAGE"
msgid "Above Average"
msgstr "ಸರಾಸರಿಗಿಂತ ಮೇಲೆ"
-#: sc/inc/globstr.hrc:445
+#: sc/inc/globstr.hrc:446
msgctxt "STR_COND_BELOW_AVERAGE"
msgid "Below Average"
msgstr "ಸರಾಸರಿಗಿಂತ ಕೆಳಗೆ"
-#: sc/inc/globstr.hrc:446
+#: sc/inc/globstr.hrc:447
msgctxt "STR_COND_ABOVE_EQUAL_AVERAGE"
msgid "Above or equal Average"
msgstr "ಸರಾಸರಿಗಿಂತ ಮೇಲಿನ ಅಥವ ಸಮನಾದ"
-#: sc/inc/globstr.hrc:447
+#: sc/inc/globstr.hrc:448
msgctxt "STR_COND_BELOW_EQUAL_AVERAGE"
msgid "Below or equal Average"
msgstr "ಸರಾಸರಿಗಿಂತ ಕೆಳಗಿನ ಅಥವ ಸಮನಾದ"
-#: sc/inc/globstr.hrc:448
+#: sc/inc/globstr.hrc:449
msgctxt "STR_COND_ERROR"
msgid "an Error code"
msgstr "ಒಂದು ದೋಷ ಸಂಜ್ಞೆ"
-#: sc/inc/globstr.hrc:449
+#: sc/inc/globstr.hrc:450
msgctxt "STR_COND_NOERROR"
msgid "not an Error code"
msgstr "ಒಂದು ದೋಷ ಸಂಜ್ಞೆಯಲ್ಲ"
-#: sc/inc/globstr.hrc:450
+#: sc/inc/globstr.hrc:451
msgctxt "STR_COND_BEGINS_WITH"
msgid "Begins with"
msgstr "ಇದರಿಂದ ಆರಂಭಗೊಳ್ಳುತ್ತದೆ"
-#: sc/inc/globstr.hrc:451
+#: sc/inc/globstr.hrc:452
msgctxt "STR_COND_ENDS_WITH"
msgid "Ends with"
msgstr "ಇದರೊಂದಿಗೆ ಮುಗಿಯುತ್ತದೆ"
-#: sc/inc/globstr.hrc:452
+#: sc/inc/globstr.hrc:453
msgctxt "STR_COND_CONTAINS"
msgid "Contains"
msgstr "ಇದನ್ನು ಹೊಂದಿರುವ"
-#: sc/inc/globstr.hrc:453
+#: sc/inc/globstr.hrc:454
msgctxt "STR_COND_NOT_CONTAINS"
msgid "Not Contains"
msgstr "ಇದನ್ನು ಹೊಂದಿರದ"
-#: sc/inc/globstr.hrc:454
+#: sc/inc/globstr.hrc:455
msgctxt "STR_COND_TODAY"
msgid "today"
msgstr "ಈ ದಿನ"
-#: sc/inc/globstr.hrc:455
+#: sc/inc/globstr.hrc:456
msgctxt "STR_COND_YESTERDAY"
msgid "yesterday"
msgstr "ನಿನ್ನೆ"
-#: sc/inc/globstr.hrc:456
+#: sc/inc/globstr.hrc:457
msgctxt "STR_COND_TOMORROW"
msgid "tomorrow"
msgstr "ನಾಳೆ"
-#: sc/inc/globstr.hrc:457
+#: sc/inc/globstr.hrc:458
msgctxt "STR_COND_LAST7DAYS"
msgid "in the last 7 days"
msgstr "ಕೊನೆಯ 7 ದಿನಗಳಲ್ಲಿ"
-#: sc/inc/globstr.hrc:458
+#: sc/inc/globstr.hrc:459
msgctxt "STR_COND_THISWEEK"
msgid "this week"
msgstr "ಈ ವಾರ"
-#: sc/inc/globstr.hrc:459
+#: sc/inc/globstr.hrc:460
msgctxt "STR_COND_LASTWEEK"
msgid "last week"
msgstr "ಹಿಂದಿನ ವಾರ"
-#: sc/inc/globstr.hrc:460
+#: sc/inc/globstr.hrc:461
msgctxt "STR_COND_NEXTWEEK"
msgid "next week"
msgstr "ಮುಂದಿನ ವಾರ"
-#: sc/inc/globstr.hrc:461
+#: sc/inc/globstr.hrc:462
msgctxt "STR_COND_THISMONTH"
msgid "this month"
msgstr "ಈ ತಿಂಗಳು"
-#: sc/inc/globstr.hrc:462
+#: sc/inc/globstr.hrc:463
msgctxt "STR_COND_LASTMONTH"
msgid "last month"
msgstr "ಹಿಂದಿನ ತಿಂಗಳು"
-#: sc/inc/globstr.hrc:463
+#: sc/inc/globstr.hrc:464
msgctxt "STR_COND_NEXTMONTH"
msgid "next month"
msgstr "ಮುಂದಿನ ತಿಂಗಳು"
-#: sc/inc/globstr.hrc:464
+#: sc/inc/globstr.hrc:465
msgctxt "STR_COND_THISYEAR"
msgid "this year"
msgstr "ಈ ವರ್ಷ"
-#: sc/inc/globstr.hrc:465
+#: sc/inc/globstr.hrc:466
msgctxt "STR_COND_LASTYEAR"
msgid "last year"
msgstr "ಹಿಂದಿನ ವರ್ಷ"
-#: sc/inc/globstr.hrc:466
+#: sc/inc/globstr.hrc:467
msgctxt "STR_COND_NEXTYEAR"
msgid "next year"
msgstr "ಮುಂದಿನ ವರ್ಷ"
-#: sc/inc/globstr.hrc:467
+#: sc/inc/globstr.hrc:468
msgctxt "STR_COND_AND"
msgid "and"
msgstr "ಮತ್ತು"
-#: sc/inc/globstr.hrc:468
+#: sc/inc/globstr.hrc:469
msgctxt "STR_ERR_CONDFORMAT_PROTECTED"
msgid "Conditional Formats can not be created, deleted or changed in protected sheets."
msgstr ""
-#: sc/inc/globstr.hrc:469
+#: sc/inc/globstr.hrc:470
msgctxt "STR_EDIT_EXISTING_COND_FORMATS"
msgid ""
"The selected cell already contains conditional formatting. You can either edit the existing conditional format or you define a new overlapping conditional format.\n"
@@ -2320,7 +2325,7 @@ msgstr ""
"\n"
" ನೀವು ಈಗಿರುವ ನಿಬಂಧನಾತ್ಮಕ ವಿನ್ಯಾಸಗೊಳಿಕೆಯನ್ನು ಸಂಪಾದಿಸಲು ಬಯಸುವಿರಾ?"
-#: sc/inc/globstr.hrc:470
+#: sc/inc/globstr.hrc:471
msgctxt "STR_QUERY_FORMULA_RECALC_ONLOAD_ODS"
msgid ""
"This document was last saved by an application other than %PRODUCTNAME. Some formula cells may produce different results when recalculated.\n"
@@ -2331,7 +2336,7 @@ msgstr ""
"\n"
"ನೀವು ಈ ದಸ್ತಾವೇಜಿನಲ್ಲಿರುವ ಎಲ್ಲಾ ಸೂತ್ರದ ಸೆಲ್‌ಗಳನ್ನು ಮರಳಿ ಲೆಕ್ಕಹಾಕಲು ಬಯಸುವಿರಾ?"
-#: sc/inc/globstr.hrc:471
+#: sc/inc/globstr.hrc:472
msgctxt "STR_QUERY_FORMULA_RECALC_ONLOAD_XLS"
msgid ""
"This document was last saved by Excel. Some formula cells may produce different results when recalculated.\n"
@@ -2342,77 +2347,77 @@ msgstr ""
"\n"
"ನೀವು ಈ ದಸ್ತಾವೇಜಿನಲ್ಲಿರುವ ಎಲ್ಲಾ ಸೂತ್ರದ ಸೆಲ್‌ಗಳನ್ನು ಮರಳಿ ಲೆಕ್ಕಹಾಕಲು ಬಯಸುವಿರಾ?"
-#: sc/inc/globstr.hrc:472
+#: sc/inc/globstr.hrc:473
msgctxt "STR_NO_INSERT_DELETE_OVER_PIVOT_TABLE"
msgid "You cannot insert or delete cells when the affected range intersects with pivot table."
msgstr "ಬದಲಾವಣೆಗೊಂಡ ವ್ಯಾಪ್ತಿಯು ತಿರುಗಣೆ ಕೋಷ್ಟಕದೊಂದಿಗೆ ಛೇಧಿಸಿದಾಗ ನೀವು ಸೆಲ್‌ಗಳನ್ನು ಸೇರಿಸಲು ಅಥವ ಅಳಿಸಲು ಸಾಧ್ಯವಿರುವುದಿಲ್ಲ."
-#: sc/inc/globstr.hrc:473
+#: sc/inc/globstr.hrc:474
msgctxt "STR_DPFIELD_GROUP_BY_SECONDS"
msgid "Seconds"
msgstr "ಸೆಕೆಂಡುಗಳು"
-#: sc/inc/globstr.hrc:474
+#: sc/inc/globstr.hrc:475
msgctxt "STR_DPFIELD_GROUP_BY_MINUTES"
msgid "Minutes"
msgstr "ನಿಮಿಷಗಳು"
-#: sc/inc/globstr.hrc:475
+#: sc/inc/globstr.hrc:476
msgctxt "STR_DPFIELD_GROUP_BY_HOURS"
msgid "Hours"
msgstr "ಗಂಟೆಗಳು"
-#: sc/inc/globstr.hrc:476
+#: sc/inc/globstr.hrc:477
msgctxt "STR_DPFIELD_GROUP_BY_DAYS"
msgid "Days"
msgstr "ದಿನಗಳು"
-#: sc/inc/globstr.hrc:477
+#: sc/inc/globstr.hrc:478
msgctxt "STR_DPFIELD_GROUP_BY_MONTHS"
msgid "Months"
msgstr "ತಿಂಗಳುಗಳು"
-#: sc/inc/globstr.hrc:478
+#: sc/inc/globstr.hrc:479
msgctxt "STR_DPFIELD_GROUP_BY_QUARTERS"
msgid "Quarters"
msgstr "ಪ್ರತಿ ನಾಲ್ಕುತಿಂಗಳು"
-#: sc/inc/globstr.hrc:479
+#: sc/inc/globstr.hrc:480
msgctxt "STR_DPFIELD_GROUP_BY_YEARS"
msgid "Years"
msgstr "ವರ್ಷಗಳು"
-#: sc/inc/globstr.hrc:480
+#: sc/inc/globstr.hrc:481
msgctxt "STR_INVALIDVAL"
msgid "Invalid target value."
msgstr "ಮಾನ್ಯವಲ್ಲದ ನಿಗದಿತ ಮೌಲ್ಯ."
-#: sc/inc/globstr.hrc:481
+#: sc/inc/globstr.hrc:482
msgctxt "STR_INVALIDVAR"
msgid "Undefined name for variable cell."
msgstr "ವೇರಿಯೆಬಲ್ ಕೋಶ‌ಗೆ ಸೂಚಿಸದೆ ಇರುವ ಹೆಸರು."
-#: sc/inc/globstr.hrc:482
+#: sc/inc/globstr.hrc:483
msgctxt "STR_INVALIDFORM"
msgid "Undefined name as formula cell."
msgstr "ಸೂತ್ರ ಕೋಶ‌ಕ್ಕೆ ಸೂಚಿಸದೆ ಇರುವ ಹೆಸರು."
-#: sc/inc/globstr.hrc:483
+#: sc/inc/globstr.hrc:484
msgctxt "STR_NOFORMULA"
msgid "Formula cell must contain a formula."
msgstr "ಸೂತ್ರವನ್ನು ಸೂತ್ರ ಕೋಶವು ಹೊಂದಿರಬೇಕು."
-#: sc/inc/globstr.hrc:484
+#: sc/inc/globstr.hrc:485
msgctxt "STR_INVALIDINPUT"
msgid "Invalid input."
msgstr "ಮಾನ್ಯವಲ್ಲದ ಇನ್‌ಪುಟ್‌."
-#: sc/inc/globstr.hrc:485
+#: sc/inc/globstr.hrc:486
msgctxt "STR_INVALIDCONDITION"
msgid "Invalid condition."
msgstr "ಮಾನ್ಯವಲ್ಲದ ಷರತ್ತು."
-#: sc/inc/globstr.hrc:486
+#: sc/inc/globstr.hrc:487
msgctxt "STR_QUERYREMOVE"
msgid ""
"Should the entry\n"
@@ -2423,135 +2428,135 @@ msgstr ""
"ನಮೂದನ್ನು \n"
"ಅಳಿಸಿಹಾಕುವುದೇ?"
-#: sc/inc/globstr.hrc:487
+#: sc/inc/globstr.hrc:488
msgctxt "STR_COPYLIST"
msgid "Copy List"
msgstr "ಪಟ್ಟಿಯ ನಕಲು"
-#: sc/inc/globstr.hrc:488
+#: sc/inc/globstr.hrc:489
msgctxt "STR_COPYFROM"
msgid "List from"
msgstr "ಇಲ್ಲಿಂದ ಪಟ್ಟಿ"
-#: sc/inc/globstr.hrc:489
+#: sc/inc/globstr.hrc:490
msgctxt "STR_COPYERR"
msgid "Cells without text have been ignored."
msgstr "ಪಠ್ಯವಿಲ್ಲದ ಕೋಶವನ್ನು ಕಡೆಗಣಿಸಲಾಗಿದೆ."
-#: sc/inc/globstr.hrc:490
+#: sc/inc/globstr.hrc:491
#, c-format
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%s-click to follow hyperlink:"
msgstr ""
-#: sc/inc/globstr.hrc:491
+#: sc/inc/globstr.hrc:492
msgctxt "STR_CLICKHYPERLINK"
msgid "click to open hyperlink:"
msgstr "ಹೈಪರ್‌ಲಿಂಕ್ ಅನ್ನು ತೆರೆಯಲು ಕ್ಲಿಕ್ಕಿಸಿ:"
-#: sc/inc/globstr.hrc:492
+#: sc/inc/globstr.hrc:493
msgctxt "STR_PRINT_PREVIEW_NODATA"
msgid "No Data"
msgstr "ಯಾವುದೇ ದತ್ತಾಂಶವಿಲ್ಲ"
-#: sc/inc/globstr.hrc:493
+#: sc/inc/globstr.hrc:494
msgctxt "STR_PRINT_PREVIEW_EMPTY_RANGE"
msgid "Print Range Empty"
msgstr "ಮುದ್ರಣ ವ್ಯಾಪ್ತಿಯು ಖಾಲಿ ಇದೆ"
-#: sc/inc/globstr.hrc:494
+#: sc/inc/globstr.hrc:495
msgctxt "STR_UNDO_CONDFORMAT"
msgid "Conditional Format"
msgstr "ಷರತ್ತುಬದ್ಧ ವಿನ್ಯಾಸಗೊಳಿಕೆ"
-#: sc/inc/globstr.hrc:495
+#: sc/inc/globstr.hrc:496
#, fuzzy
msgctxt "STR_UNDO_CONDFORMAT_LIST"
msgid "Conditional Formats"
msgstr "ಷರತ್ತುಬದ್ಧ ವಿನ್ಯಾಸಗೊಳಿಕೆ"
-#: sc/inc/globstr.hrc:496
+#: sc/inc/globstr.hrc:497
msgctxt "STR_UNDO_FORMULA_TO_VALUE"
msgid "Convert Formula To Value"
msgstr ""
-#: sc/inc/globstr.hrc:497
+#: sc/inc/globstr.hrc:498
msgctxt "STR_UNQUOTED_STRING"
msgid "Strings without quotes are interpreted as column/row labels."
msgstr ""
-#: sc/inc/globstr.hrc:498
+#: sc/inc/globstr.hrc:499
msgctxt "STR_ENTER_VALUE"
msgid "Enter a value!"
msgstr ""
-#: sc/inc/globstr.hrc:499
+#: sc/inc/globstr.hrc:500
msgctxt "STR_TABLE_COUNT"
msgid "Sheet %1 of %2"
msgstr ""
-#: sc/inc/globstr.hrc:500
+#: sc/inc/globstr.hrc:501
msgctxt "STR_FUNCTIONS_FOUND"
msgid "%1 and %2 more"
msgstr ""
-#: sc/inc/globstr.hrc:501
+#: sc/inc/globstr.hrc:502
msgctxt "STR_GENERAL"
msgid "General"
msgstr "ಸಾಮಾನ್ಯ"
-#: sc/inc/globstr.hrc:502
+#: sc/inc/globstr.hrc:503
msgctxt "STR_NUMBER"
msgid "Number"
msgstr "ಸಂಖ್ಯೆ"
-#: sc/inc/globstr.hrc:503
+#: sc/inc/globstr.hrc:504
#, fuzzy
msgctxt "STR_PERCENT"
msgid "Percent"
msgstr "ಶೇಕಡಾ"
-#: sc/inc/globstr.hrc:504
+#: sc/inc/globstr.hrc:505
msgctxt "STR_CURRENCY"
msgid "Currency"
msgstr "ಕರೆನ್ಸಿ"
-#: sc/inc/globstr.hrc:505
+#: sc/inc/globstr.hrc:506
msgctxt "STR_DATE"
msgid "Date"
msgstr "ದಿನಾಂಕ"
-#: sc/inc/globstr.hrc:506
+#: sc/inc/globstr.hrc:507
msgctxt "STR_TIME"
msgid "Time"
msgstr "ಸಮಯ"
-#: sc/inc/globstr.hrc:507
+#: sc/inc/globstr.hrc:508
msgctxt "STR_SCIENTIFIC"
msgid "Scientific"
msgstr "ವೈಜ್ಞಾನಿಕ"
-#: sc/inc/globstr.hrc:508
+#: sc/inc/globstr.hrc:509
msgctxt "STR_FRACTION"
msgid "Fraction"
msgstr "ಭಿನ್ನರಾಶಿ"
-#: sc/inc/globstr.hrc:509
+#: sc/inc/globstr.hrc:510
msgctxt "STR_BOOLEAN_VALUE"
msgid "Boolean Value"
msgstr "ಬೂಲಿಯನ್ ಮೌಲ್ಯ"
-#: sc/inc/globstr.hrc:510
+#: sc/inc/globstr.hrc:511
msgctxt "STR_TEXT"
msgid "Text"
msgstr "ಪಠ್ಯ"
-#: sc/inc/globstr.hrc:511
+#: sc/inc/globstr.hrc:512
msgctxt "STR_QUERY_PIVOTTABLE_DELTAB"
msgid "The selected sheet(s) contain source data of related pivot tables that will be lost. Are you sure you want to delete the selected sheet(s)?"
msgstr ""
-#: sc/inc/globstr.hrc:512
+#: sc/inc/globstr.hrc:513
msgctxt "STR_ERR_NAME_INVALID_CELL_REF"
msgid "Invalid name. Reference to a cell, or a range of cells not allowed."
msgstr ""
@@ -10835,8 +10840,8 @@ msgstr "ಕ್ರಮ"
#: sc/inc/scfuncs.hrc:3010
msgctxt "SC_OPCODE_T_TEST"
-msgid "Mode specifies the number of distribution tails to return. 1= one-tailed, 2 = two-tailed distribution"
-msgstr "ಸ್ಥಿತಿಯು ಮರಳಬೇಕಿರುವ ವಿತರಣೆ ತುದಿಗಳನ್ನು ಸೂಚಿಸುತ್ತದೆ. 1= ಒಂದು ತುದಿಯ, 2 = ಎರಡು ತುದಿಯ ವಿತರಣೆ"
+msgid "Mode specifies the number of distribution tails to return. 1 = one-tailed, 2 = two-tailed distribution"
+msgstr ""
#: sc/inc/scfuncs.hrc:3011
msgctxt "SC_OPCODE_T_TEST"
@@ -10882,8 +10887,8 @@ msgstr "ಕ್ರಮ"
#: sc/inc/scfuncs.hrc:3024
msgctxt "SC_OPCODE_T_TEST_MS"
-msgid "Mode specifies the number of distribution tails to return. 1= one-tailed, 2 = two-tailed distribution"
-msgstr "ಸ್ಥಿತಿಯು ಮರಳಬೇಕಿರುವ ವಿತರಣೆ ತುದಿಗಳನ್ನು ಸೂಚಿಸುತ್ತದೆ. 1= ಒಂದು ತುದಿಯ, 2 = ಎರಡು ತುದಿಯ ವಿತರಣೆ"
+msgid "Mode specifies the number of distribution tails to return. 1 = one-tailed, 2 = two-tailed distribution"
+msgstr ""
#: sc/inc/scfuncs.hrc:3025
msgctxt "SC_OPCODE_T_TEST_MS"
@@ -18697,22 +18702,22 @@ msgctxt "mergecellsdialog|MergeCellsDialog"
msgid "Merge Cells"
msgstr "ಕೋಶಗಳನ್ನು ವಿಲೀನಗೊಳಿಸು"
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:81
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:84
msgctxt "mergecellsdialog|label"
msgid "Some cells are not empty."
msgstr ""
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:96
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:99
msgctxt "mergecellsdialog|move-cells-radio"
msgid "Move the contents of the hidden cells into the first cell"
msgstr ""
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:112
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:115
msgctxt "mergecellsdialog|empty-cells-radio"
msgid "Empty the contents of the hidden cells"
msgstr ""
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:128
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:131
msgctxt "mergecellsdialog|keep-content-radio"
msgid "Keep the contents of the hidden cells"
msgstr ""
diff --git a/source/kn/sd/messages.po b/source/kn/sd/messages.po
index 636807edd9f..cdab7e38133 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+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"
@@ -13,178 +13,178 @@ msgstr ""
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-#: sd/inc/DocumentRenderer.hrc:29
+#: sd/inc/DocumentRenderer.hrc:27
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Slides"
msgstr "ಜಾರುಫಲಕಗಳು"
-#: sd/inc/DocumentRenderer.hrc:30
+#: sd/inc/DocumentRenderer.hrc:28
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Handouts"
msgstr "ಕರಪತ್ರಗಳು"
-#: sd/inc/DocumentRenderer.hrc:31
+#: sd/inc/DocumentRenderer.hrc:29
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Notes"
msgstr "ಸೂಚನೆಗಳು"
-#: sd/inc/DocumentRenderer.hrc:32
+#: sd/inc/DocumentRenderer.hrc:30
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Outline"
msgstr "ಹೊರರೇಖೆ"
-#: sd/inc/DocumentRenderer.hrc:37
+#: sd/inc/DocumentRenderer.hrc:35
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "According to layout"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:38
+#: sd/inc/DocumentRenderer.hrc:36
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "1"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:39
+#: sd/inc/DocumentRenderer.hrc:37
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "2"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:40
+#: sd/inc/DocumentRenderer.hrc:38
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "3"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:41
+#: sd/inc/DocumentRenderer.hrc:39
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "4"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:42
+#: sd/inc/DocumentRenderer.hrc:40
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "6"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:43
+#: sd/inc/DocumentRenderer.hrc:41
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "9"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:48
+#: sd/inc/DocumentRenderer.hrc:46
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_ORDER_CHOICES"
msgid "Left to right, then down"
msgstr "ಎಡದಿಂದ ಬಲಕ್ಕೆ, ನಂತರ ಕೆಳಕ್ಕೆ"
-#: sd/inc/DocumentRenderer.hrc:49
+#: sd/inc/DocumentRenderer.hrc:47
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_ORDER_CHOICES"
msgid "Top to bottom, then right"
msgstr "ಮೇಲಿನಿಂದ ಕೆಳಕ್ಕೆ, ನಂತರ ಬಲಕ್ಕೆ"
-#: sd/inc/DocumentRenderer.hrc:54
+#: sd/inc/DocumentRenderer.hrc:52
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Original colors"
msgstr "ಮೂಲ ಬಣ್ಣಗಳು"
-#: sd/inc/DocumentRenderer.hrc:55
+#: sd/inc/DocumentRenderer.hrc:53
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Grayscale"
msgstr "ಗ್ರೇಮಾಪಕಗಳು"
-#: sd/inc/DocumentRenderer.hrc:56
+#: sd/inc/DocumentRenderer.hrc:54
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Black & white"
msgstr "ಕಪ್ಪು ಮತ್ತು ಬಿಳುಪು"
-#: sd/inc/DocumentRenderer.hrc:61
+#: sd/inc/DocumentRenderer.hrc:59
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Original size"
msgstr "ಮೂಲ ಗಾತ್ರ"
-#: sd/inc/DocumentRenderer.hrc:62
+#: sd/inc/DocumentRenderer.hrc:60
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Fit to printable page"
msgstr "ಮುದ್ರಿಸಬಹುದಾದ ಪುಟಕ್ಕೆ ಸರಿಹೊಂದಿಸು"
-#: sd/inc/DocumentRenderer.hrc:63
+#: sd/inc/DocumentRenderer.hrc:61
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Distribute on multiple sheets of paper"
msgstr "ಕಾಗದದ ಹಲವು ಹಾಳೆಗಳಿಗೆ ವಿತರಿಸು"
-#: sd/inc/DocumentRenderer.hrc:64
+#: sd/inc/DocumentRenderer.hrc:62
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Tile sheet of paper with repeated slides"
msgstr "ಪುನರಾವರ್ತಿತ ಜಾರುಫಲಕಗಳನ್ನು ಹೊಂದಿರುವ ಕಾಗದದ ಹಾಳೆ"
-#: sd/inc/DocumentRenderer.hrc:69
+#: sd/inc/DocumentRenderer.hrc:67
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Original size"
msgstr "ಮೂಲ ಗಾತ್ರ"
-#: sd/inc/DocumentRenderer.hrc:70
+#: sd/inc/DocumentRenderer.hrc:68
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Fit to printable page"
msgstr "ಮುದ್ರಿಸಬಹುದಾದ ಪುಟಕ್ಕೆ ಸರಿಹೊಂದಿಸು"
-#: sd/inc/DocumentRenderer.hrc:71
+#: sd/inc/DocumentRenderer.hrc:69
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Distribute on multiple sheets of paper"
msgstr "ಕಾಗದದ ಹಲವು ಹಾಳೆಗಳಿಗೆ ವಿತರಿಸು"
-#: sd/inc/DocumentRenderer.hrc:72
+#: sd/inc/DocumentRenderer.hrc:70
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Tile sheet of paper with repeated pages"
msgstr "ಪುನರಾವರ್ತಿತ ಪುಟಗಳನ್ನು ಹೊಂದಿರುವ ಕಾಗದದ ಹಾಳೆ"
-#: sd/inc/DocumentRenderer.hrc:77
+#: sd/inc/DocumentRenderer.hrc:75
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "All pages"
msgstr "ಎಲ್ಲಾ ಪುಟಗಳು"
-#: sd/inc/DocumentRenderer.hrc:78
+#: sd/inc/DocumentRenderer.hrc:76
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "Front sides / right pages"
msgstr "ಎದುರು ಬದಿಗಳು / ಬಲ ಪುಟಗಳು"
-#: sd/inc/DocumentRenderer.hrc:79
+#: sd/inc/DocumentRenderer.hrc:77
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "Back sides / left pages"
msgstr "ಹಿಂಬದಿಗಳು / ಎಡ ಪುಟಗಳು"
-#: sd/inc/DocumentRenderer.hrc:84
+#: sd/inc/DocumentRenderer.hrc:82
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~All slides"
msgstr "ಎಲ್ಲ ಜಾರುಫಲಕಗಳು (_s)"
-#: sd/inc/DocumentRenderer.hrc:85
+#: sd/inc/DocumentRenderer.hrc:83
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~Slides"
msgstr "ಜಾರುಫಲಕಗಳು"
-#: sd/inc/DocumentRenderer.hrc:86
+#: sd/inc/DocumentRenderer.hrc:84
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Se~lection"
msgstr "ಆಯ್ಕೆ(~l)"
-#: sd/inc/DocumentRenderer.hrc:91
+#: sd/inc/DocumentRenderer.hrc:89
#, fuzzy
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~All pages"
msgstr "ಎಲ್ಲಾ ಪುಟಗಳು (~P)"
-#: sd/inc/DocumentRenderer.hrc:92
+#: sd/inc/DocumentRenderer.hrc:90
#, fuzzy
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Pa~ges"
msgstr "ಪುಟಗಳು"
-#: sd/inc/DocumentRenderer.hrc:93
+#: sd/inc/DocumentRenderer.hrc:91
#, fuzzy
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Se~lection"
diff --git a/source/kn/svx/messages.po b/source/kn/svx/messages.po
index 1ba6c8841d9..854ffeb5bf7 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: 2018-05-16 16:53+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+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"
@@ -5517,7 +5517,7 @@ msgstr ""
#: svx/uiconfig/ui/safemodedialog.ui:432
msgctxt "safemodedialog|btn_create_zip"
-msgid "Create Zip Archive from User Profile"
+msgid "Archive User Profile"
msgstr ""
#: svx/uiconfig/ui/safemodedialog.ui:445
@@ -9169,9 +9169,9 @@ msgid "Red"
msgstr "ಕೆಂಪು"
#: include/svx/strings.hrc:565
-msgctxt "RID_SVXSTR_COLOR_VIOLET"
-msgid "Violet"
-msgstr "ನೇರಳೆ"
+msgctxt "RID_SVXSTR_COLOR_MAGENTA"
+msgid "Magenta"
+msgstr "ಕಡುಗೆಂಪು"
#: include/svx/strings.hrc:566
msgctxt "RID_SVXSTR_COLOR_PURPLE"
@@ -9237,8 +9237,8 @@ msgid "Light Red"
msgstr "ತಿಳಿಗೆಂಪು"
#: include/svx/strings.hrc:579
-msgctxt "RID_SVXSTR_COLOR_LIGHTVIOLET"
-msgid "Light Violet"
+msgctxt "RID_SVXSTR_COLOR_LIGHTMAGENTA"
+msgid "Light Magenta"
msgstr ""
#: include/svx/strings.hrc:580
@@ -9304,10 +9304,9 @@ msgid "Dark Red"
msgstr "ಗಾಢ ಕೆಂಪು"
#: include/svx/strings.hrc:593
-#, fuzzy
-msgctxt "RID_SVXSTR_COLOR_DARKVIOLET1"
-msgid "Dark Violet"
-msgstr "ಕಡು ನೀಲಿನೇರಳೆ"
+msgctxt "RID_SVXSTR_COLOR_DARKMAGENTA"
+msgid "Dark Magenta"
+msgstr ""
#: include/svx/strings.hrc:594
msgctxt "RID_SVXSTR_COLOR_DARKPURPLE"
@@ -9341,55 +9340,55 @@ msgstr ""
#. Elements of the Tonal color palette
#: include/svx/strings.hrc:601
+msgctxt "RID_SVXSTR_COLOR_VIOLET"
+msgid "Violet"
+msgstr "ನೇರಳೆ"
+
+#: include/svx/strings.hrc:602
msgctxt "RID_SVXSTR_COLOR_VIOLET_OUG"
msgid "Violet (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:602
+#: include/svx/strings.hrc:603
msgctxt "RID_SVXSTR_COLOR_BLUE_OUG"
msgid "Blue (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:603
+#: include/svx/strings.hrc:604
msgctxt "RID_SVXSTR_COLOR_AZURE_OUG"
msgid "Azure (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:604
+#: include/svx/strings.hrc:605
msgctxt "RID_SVXSTR_COLOR_SPRINGGREEN_OUG"
msgid "Spring Green (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:605
+#: include/svx/strings.hrc:606
msgctxt "RID_SVXSTR_COLOR_GREEN_OUG"
msgid "Green (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:606
+#: include/svx/strings.hrc:607
msgctxt "RID_SVXSTR_COLOR_CHARTREUSEGREEN_OUG"
msgid "Chartreuse Green (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:607
+#: include/svx/strings.hrc:608
msgctxt "RID_SVXSTR_COLOR_ORANGE_OUG"
msgid "Orange (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:608
+#: include/svx/strings.hrc:609
msgctxt "RID_SVXSTR_COLOR_RED_OUG"
msgid "Red (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:609
+#: include/svx/strings.hrc:610
msgctxt "RID_SVXSTR_COLOR_ROSE_OUG"
msgid "Rose (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:610
-msgctxt "RID_SVXSTR_COLOR_MAGENTA"
-msgid "Magenta"
-msgstr "ಕಡುಗೆಂಪು"
-
#: include/svx/strings.hrc:611
msgctxt "RID_SVXSTR_COLOR_AZURE"
msgid "Azure"
@@ -12580,13 +12579,13 @@ msgstr "ಬಲಗಡೆಗೆ ತಿರುಗಿರುವ ಬಾಣದ ಅಂಶ
#: include/svx/strings.hrc:1273
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_6"
-msgid "Check mark bullets"
-msgstr "ಚೆಕ್‌ ಗುರುತಿನ ಅಂಶಸೂಚಕಗಳು"
+msgid "Cross mark bullets"
+msgstr ""
#: include/svx/strings.hrc:1274
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_7"
-msgid "Tick mark bullets"
-msgstr "ಟಿಕ್ ಗುರುತಿನ ಅಂಶಸೂಚಕಗಳು"
+msgid "Check mark bullets"
+msgstr ""
#: include/svx/strings.hrc:1275
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_0"
diff --git a/source/kn/sw/messages.po b/source/kn/sw/messages.po
index 6345d766626..c96a78a9f97 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: 2018-05-22 13:17+0200\n"
+"POT-Creation-Date: 2018-06-12 14:41+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"
@@ -1224,13 +1224,13 @@ msgstr "ಉದ್ಧರಣ"
#: sw/inc/strings.hrc:172
msgctxt "STR_POOLCOLL_TOX_ILLUSH"
-msgid "Illustration Index Heading"
-msgstr "ವಿಶದಪಡಿಸುವ ಸೂಚಿಪಟ್ಟಿ ಶೀರ್ಷಿಕೆ"
+msgid "Figure Index Heading"
+msgstr ""
#: sw/inc/strings.hrc:173
msgctxt "STR_POOLCOLL_TOX_ILLUS1"
-msgid "Illustration Index 1"
-msgstr "ವಿಶದಪಡಿಸುವ ಸೂಚಿಪಟ್ಟಿ1"
+msgid "Figure Index 1"
+msgstr ""
#: sw/inc/strings.hrc:174
msgctxt "STR_POOLCOLL_TOX_OBJECTH"
@@ -3721,10 +3721,9 @@ msgid "Table of Objects"
msgstr ""
#: sw/inc/strings.hrc:672
-#, fuzzy
msgctxt "STR_TOX_ILL"
-msgid "Illustration Index"
-msgstr "ವಿಶದಪಡಿಸುವ ಸೂಚಿಪಟ್ಟಿ1"
+msgid "Table of Figures"
+msgstr ""
#: sw/inc/strings.hrc:673
#, c-format
@@ -9687,81 +9686,81 @@ msgctxt "footnotepage|label5"
msgid "Continuation Notice"
msgstr "ಮುಂದುವರೆಯುವ ಸೂಚನೆ"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:49
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:55
#, fuzzy
msgctxt "footnotesendnotestabpage|ftnntnum"
msgid "_Restart numbering"
msgstr "ಸಂಖ್ಯಾಅನುಕ್ರಮಣಿಕೆ ಮರುಪ್ರಾರಂಭಿಸು"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:91
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:93
#, fuzzy
msgctxt "footnotesendnotestabpage|ftnoffset_label"
msgid "_Start at:"
msgstr "ಇಲ್ಲಿ ಆರಂಭಿಸು"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:112
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:111
msgctxt "footnotesendnotestabpage|ftnntnumfmt"
msgid "Custom _format"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:155
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:150
#, fuzzy
msgctxt "footnotesendnotestabpage|ftnsuffix_label"
msgid "Aft_er:"
msgstr "ನಂತರ"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:199
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:188
#, fuzzy
msgctxt "footnotesendnotestabpage|ftnprefix_label"
msgid "Be_fore:"
msgstr "ಮೊದಲು"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:228
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:212
msgctxt "footnotesendnotestabpage|ftnntattextend"
msgid "Collec_t at end of text"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:252
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:234
#, fuzzy
msgctxt "footnotesendnotestabpage|label1"
msgid "Footnotes"
msgstr "ಅಡಿಬರಹ"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:289
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:271
msgctxt "footnotesendnotestabpage|endntattextend"
msgid "C_ollect at end of section"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:315
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:295
#, fuzzy
msgctxt "footnotesendnotestabpage|endntnum"
msgid "_Restart numbering"
msgstr "ಸಂಖ್ಯಾಅನುಕ್ರಮಣಿಕೆ ಮರುಪ್ರಾರಂಭಿಸು"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:357
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:333
#, fuzzy
msgctxt "footnotesendnotestabpage|endoffset_label"
msgid "_Start at:"
msgstr "ಇಲ್ಲಿ ಆರಂಭಿಸು"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:378
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:351
msgctxt "footnotesendnotestabpage|endntnumfmt"
msgid "_Custom format"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:421
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:390
#, fuzzy
msgctxt "footnotesendnotestabpage|endsuffix_label"
msgid "Aft_er:"
msgstr "ನಂತರ"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:465
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:428
#, fuzzy
msgctxt "footnotesendnotestabpage|endprefix_label"
msgid "Be_fore:"
msgstr "ಮೊದಲು"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:500
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:458
#, fuzzy
msgctxt "footnotesendnotestabpage|label2"
msgid "Endnotes"
@@ -9794,27 +9793,27 @@ msgctxt "formatsectiondialog|notes"
msgid "Footnotes/Endnotes"
msgstr "ಅಡಿಲೇಖಗಳು/ಅಂತ್ಯಟಿಪ್ಪಣಿಗಳು (~F)..."
-#: sw/uiconfig/swriter/ui/formattablepage.ui:63
+#: sw/uiconfig/swriter/ui/formattablepage.ui:77
msgctxt "formattablepage|nameft"
msgid "_Name"
msgstr "ಹೆಸರು(_N)"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:79
+#: sw/uiconfig/swriter/ui/formattablepage.ui:91
msgctxt "formattablepage|widthft"
msgid "W_idth"
msgstr "ಅಗಲ(_i)"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:110
+#: sw/uiconfig/swriter/ui/formattablepage.ui:120
msgctxt "formattablepage|relwidth"
msgid "Relati_ve"
msgstr "ಸಂಬಂಧಿತ(_v)"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:155
+#: sw/uiconfig/swriter/ui/formattablepage.ui:160
msgctxt "formattablepage|label45"
msgid "Properties"
msgstr "ಗುಣಗಳು"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:194
+#: sw/uiconfig/swriter/ui/formattablepage.ui:195
msgctxt "formattablepage|leftft"
msgid "Lef_t"
msgstr "ಎಡ(_t)"
@@ -9824,62 +9823,62 @@ msgctxt "formattablepage|rightft"
msgid "Ri_ght"
msgstr "ಬಲ(_g)"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:228
+#: sw/uiconfig/swriter/ui/formattablepage.ui:226
msgctxt "formattablepage|aboveft"
msgid "_Above"
msgstr "ಮೇಲೆ(_A)"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:245
+#: sw/uiconfig/swriter/ui/formattablepage.ui:241
msgctxt "formattablepage|belowft"
msgid "_Below"
msgstr "ಕೆಳಗೆ(_B)"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:320
+#: sw/uiconfig/swriter/ui/formattablepage.ui:311
msgctxt "formattablepage|label46"
msgid "Spacing"
msgstr "ಅಂತರ"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:362
+#: sw/uiconfig/swriter/ui/formattablepage.ui:349
msgctxt "formattablepage|full"
msgid "A_utomatic"
msgstr "ಸ್ವಯಂಚಾಲಿತ(_u)"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:380
+#: sw/uiconfig/swriter/ui/formattablepage.ui:365
msgctxt "formattablepage|left"
msgid "_Left"
msgstr "ಎಡ(_L)"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:398
+#: sw/uiconfig/swriter/ui/formattablepage.ui:381
msgctxt "formattablepage|fromleft"
msgid "_From left"
msgstr "ಎಡದಿಂದ(_F)"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:416
+#: sw/uiconfig/swriter/ui/formattablepage.ui:397
msgctxt "formattablepage|right"
msgid "R_ight"
msgstr "ಬಲ(_i)"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:435
+#: sw/uiconfig/swriter/ui/formattablepage.ui:413
msgctxt "formattablepage|center"
msgid "_Center"
msgstr "ಮಧ್ಯ(_C)"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:453
+#: sw/uiconfig/swriter/ui/formattablepage.ui:429
msgctxt "formattablepage|free"
msgid "_Manual"
msgstr "ಮಾನವಕೃತ(_M)"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:478
+#: sw/uiconfig/swriter/ui/formattablepage.ui:452
msgctxt "formattablepage|label43"
msgid "Alignment"
msgstr "ಹೊಂದಿಕೆ"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:522
+#: sw/uiconfig/swriter/ui/formattablepage.ui:491
msgctxt "formattablepage|label53"
msgid "Text _direction"
msgstr "ಪಠ್ಯದ ದಿಕ್ಕು (_d)"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:553
+#: sw/uiconfig/swriter/ui/formattablepage.ui:519
msgctxt "formattablepage|label44"
msgid "Properties "
msgstr "ಗುಣಗಳು"
@@ -10265,24 +10264,29 @@ msgctxt "headerfootermenu|insert_pagenumber"
msgid "Insert Page Number"
msgstr ""
-#: sw/uiconfig/swriter/ui/indentpage.ui:52
+#: sw/uiconfig/swriter/ui/headerfootermenu.ui:42
+msgctxt "headerfootermenu|insert_pagecount"
+msgid "Insert Page Count"
+msgstr ""
+
+#: sw/uiconfig/swriter/ui/indentpage.ui:57
#, fuzzy
msgctxt "indentpage|label1"
msgid "_Before section"
msgstr "ವಿಭಾಗದ ಮೊದಲು"
-#: sw/uiconfig/swriter/ui/indentpage.ui:67
+#: sw/uiconfig/swriter/ui/indentpage.ui:71
#, fuzzy
msgctxt "indentpage|label3"
msgid "_After section"
msgstr "ವಿಭಾಗದ ನಂತರ"
-#: sw/uiconfig/swriter/ui/indentpage.ui:113
+#: sw/uiconfig/swriter/ui/indentpage.ui:115
msgctxt "indentpage|label2"
msgid "Indent"
msgstr "ಇಂಡೆಂಟ್"
-#: sw/uiconfig/swriter/ui/indentpage.ui:142
+#: sw/uiconfig/swriter/ui/indentpage.ui:155
msgctxt "indentpage|preview-atkobject"
msgid "Example"
msgstr "ಉದಾಹರಣೆ"
@@ -14049,7 +14053,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:68
msgctxt "optcompatpage|format"
-msgid "MS Word-compatible trailing blanks"
+msgid "Word-compatible trailing blanks"
msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:69
@@ -14059,7 +14063,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:70
msgctxt "optcompatpage|format"
-msgid "A database field (e.g., MailMerge) with empty value hides its paragraph"
+msgid "Hide paragraphs of database fields (e.g., mail merge) with an empty value"
msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:71
@@ -16936,123 +16940,123 @@ msgctxt "tableproperties|background"
msgid "Background"
msgstr "ಹಿನ್ನೆಲೆ"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:25
-msgctxt "tabletextflowpage|liststore1"
-msgid "Horizontal"
-msgstr "ಅಡ್ಡ"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:29
-msgctxt "tabletextflowpage|liststore1"
-msgid "Vertical"
-msgstr "ಉದ್ದ"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:33
-msgctxt "tabletextflowpage|liststore1"
-msgid "Use superordinate object settings"
-msgstr "ಸೂಪರ್ಆರ್ಡಿನೇಟ್ ವಸ್ತು ಸಿದ್ಧತೆಗಳನ್ನು ಬಳಸಿ"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:47
-msgctxt "tabletextflowpage|liststore2"
-msgid "Top"
-msgstr "ಮೇಲೆ"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:51
-msgctxt "tabletextflowpage|liststore2"
-msgid "Centered"
-msgstr "ಮಧ್ಯಕ್ಕೆ ಹೊಂದಿಸಿದ"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:55
-msgctxt "tabletextflowpage|liststore2"
-msgid "Bottom"
-msgstr "ಕೆಳಗೆ"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:97
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:53
msgctxt "tabletextflowpage|break"
msgid "_Break"
msgstr "ತಡೆ(_B)"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:112
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:68
msgctxt "tabletextflowpage|page"
msgid "_Page"
msgstr "ಪುಟ(_P)"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:132
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:87
msgctxt "tabletextflowpage|column"
msgid "Col_umn"
msgstr "ಲಂಬಸಾಲು(_u)"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:151
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:106
msgctxt "tabletextflowpage|before"
msgid "Be_fore"
msgstr "ಮುನ್ನ(_f)"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:171
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:125
msgctxt "tabletextflowpage|after"
msgid "_After"
msgstr "ಅನಂತರ(_A)"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:203
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:158
msgctxt "tabletextflowpage|pagestyle"
msgid "With Page St_yle"
msgstr "ಪುಟ ಶೈಲಿಯೊಂದಿಗೆ(_y)"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:224
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:177
msgctxt "tabletextflowpage|pagenoft"
msgid "Page _number"
msgstr "ಪುಟದ ಸಂಖ್ಯೆ(_n)"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:257
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:213
#, fuzzy
msgctxt "tabletextflowpage|pagestylelb-atkobject"
msgid "With Page Style"
msgstr "ಪುಟ ಶೈಲಿಯೊಂದಿಗೆ(_y)"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:274
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:230
msgctxt "tabletextflowpage|split"
msgid "Allow _table to split across pages and columns"
msgstr "ಪುಟಗಳು ಹಾಗು ಲಂಬಸಾಲುಗಳ ಮುಖಾಂತರವಾಗಿ ಕೋಷ್ಟಕವನ್ನು ವಿಭಜಿಸುವುದನ್ನು ಅನುಮತಿಸು(_t)"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:289
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:245
msgctxt "tabletextflowpage|splitrow"
msgid "Allow row to break a_cross pages and columns"
msgstr "ಪುಟಗಳು ಹಾಗು ಲಂಬಸಾಲುಗಳ ಮುಖಾಂತರವಾಗಿ ಅಡ್ಡಸಾಲು ತುಂಡರಿಸುವುದನ್ನು ಅನುಮತಿಸು(_c)"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:306
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:262
msgctxt "tabletextflowpage|keep"
msgid "_Keep with next paragraph"
msgstr "ಮುಂದಿನ ಪ್ಯಾರಾಗ್ರಾಫಿನೊಂದಿಗೆ ಕಾದಿರಿಸು(_K)"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:328
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:284
msgctxt "tabletextflowpage|label40"
msgid "Text _orientation"
msgstr "ಪಠ್ಯದ ವಾಲಿಕೆ (_o)"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:361
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:298
+msgctxt "tabletextflowpage|liststore1"
+msgid "Horizontal"
+msgstr "ಅಡ್ಡ"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:299
+msgctxt "tabletextflowpage|liststore1"
+msgid "Vertical"
+msgstr "ಉದ್ದ"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:300
+msgctxt "tabletextflowpage|liststore1"
+msgid "Use superordinate object settings"
+msgstr "ಸೂಪರ್ಆರ್ಡಿನೇಟ್ ವಸ್ತು ಸಿದ್ಧತೆಗಳನ್ನು ಬಳಸಿ"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:321
msgctxt "tabletextflowpage|headline"
msgid "R_epeat heading"
msgstr "ಶೀರ್ಷಿಕೆಯನ್ನು ಪುನರಾವರ್ತಿಸು(_e)"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:383
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:343
msgctxt "tabletextflowpage|label38"
msgid "The first "
msgstr "ಮೊದಲ"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:396
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:356
msgctxt "tabletextflowpage|label39"
msgid "rows"
msgstr "ಅಡ್ಡ ಸಾಲು"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:434
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:395
msgctxt "tabletextflowpage|label35"
msgid "Text Flow"
msgstr "ಪಠ್ಯದ ಹರಿವು"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:467
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:428
msgctxt "tabletextflowpage|label41"
msgid "_Vertical alignment"
msgstr "ಲಂಬವಾಗಿ ಹೊಂದಿಕೆ(_V)"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:495
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:442
+msgctxt "tabletextflowpage|liststore2"
+msgid "Top"
+msgstr "ಮೇಲೆ"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:443
+msgctxt "tabletextflowpage|liststore2"
+msgid "Centered"
+msgstr "ಮಧ್ಯಕ್ಕೆ ಹೊಂದಿಸಿದ"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:444
+msgctxt "tabletextflowpage|liststore2"
+msgid "Bottom"
+msgstr "ಕೆಳಗೆ"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:460
msgctxt "tabletextflowpage|label36"
msgid "Alignment"
msgstr "ಹೊಂದಿಕೆ"
@@ -17870,10 +17874,9 @@ msgid "Alphabetical Index"
msgstr ""
#: sw/uiconfig/swriter/ui/tocindexpage.ui:58
-#, fuzzy
msgctxt "tocindexpage|liststore1"
-msgid "Illustration Index"
-msgstr "ವಿಶದಪಡಿಸುವ ಸೂಚಿಪಟ್ಟಿ1"
+msgid "Table of Figures"
+msgstr ""
#: sw/uiconfig/swriter/ui/tocindexpage.ui:62
msgctxt "tocindexpage|liststore1"
diff --git a/source/kn/writerperfect/messages.po b/source/kn/writerperfect/messages.po
index d5dde0bd988..0acf2915f7c 100644
--- a/source/kn/writerperfect/messages.po
+++ b/source/kn/writerperfect/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-16 16:54+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+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"
@@ -65,97 +65,97 @@ msgctxt "exportepub|generalft"
msgid "General"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:122
+#: writerperfect/uiconfig/ui/exportepub.ui:121
msgctxt "exportepub|versionft"
msgid "Version:"
msgstr "ಆವೃತ್ತಿ:"
-#: writerperfect/uiconfig/ui/exportepub.ui:139
+#: writerperfect/uiconfig/ui/exportepub.ui:138
msgctxt "exportepub|epub3"
msgid "EPUB 3.0"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:140
+#: writerperfect/uiconfig/ui/exportepub.ui:139
msgctxt "exportepub|epub2"
msgid "EPUB 2.0"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:175
+#: writerperfect/uiconfig/ui/exportepub.ui:174
msgctxt "exportepub|splitft"
msgid "Split method:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:192
+#: writerperfect/uiconfig/ui/exportepub.ui:191
msgctxt "exportepub|splitpage"
msgid "Page break"
msgstr "ಪುಟ ತಡೆ"
-#: writerperfect/uiconfig/ui/exportepub.ui:193
+#: writerperfect/uiconfig/ui/exportepub.ui:192
msgctxt "exportepub|splitheading"
msgid "Heading"
msgstr "ಶೀರ್ಷಿಕೆ"
-#: writerperfect/uiconfig/ui/exportepub.ui:228
+#: writerperfect/uiconfig/ui/exportepub.ui:227
msgctxt "exportepub|layoutft"
msgid "Layout method:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:245
+#: writerperfect/uiconfig/ui/exportepub.ui:244
msgctxt "exportepub|layoutreflowable"
msgid "Reflowable"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:246
+#: writerperfect/uiconfig/ui/exportepub.ui:245
msgctxt "exportepub|layoutfixed"
msgid "Fixed"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:281
+#: writerperfect/uiconfig/ui/exportepub.ui:280
msgctxt "exportepub|coverimageft"
msgid "Custom cover image:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:311
+#: writerperfect/uiconfig/ui/exportepub.ui:310
msgctxt "exportepub|coverbutton"
msgid "Browse..."
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:355
+#: writerperfect/uiconfig/ui/exportepub.ui:354
msgctxt "exportepub|mediadirft"
msgid "Custom media directory:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:385
+#: writerperfect/uiconfig/ui/exportepub.ui:384
msgctxt "exportepub|mediabutton"
msgid "Browse..."
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:429
+#: writerperfect/uiconfig/ui/exportepub.ui:428
msgctxt "exportepub|metadataft"
msgid "Metadata"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:470
+#: writerperfect/uiconfig/ui/exportepub.ui:468
msgctxt "exportepub|identifierft"
msgid "Identifier:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:485
+#: writerperfect/uiconfig/ui/exportepub.ui:483
msgctxt "exportepub|titleft"
msgid "Title:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:511
+#: writerperfect/uiconfig/ui/exportepub.ui:509
msgctxt "exportepub|authorft"
msgid "Author:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:537
+#: writerperfect/uiconfig/ui/exportepub.ui:535
msgctxt "exportepub|languageft"
msgid "Language:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:563
+#: writerperfect/uiconfig/ui/exportepub.ui:561
msgctxt "exportepub|dateft"
msgid "Date:"
msgstr ""
diff --git a/source/ko/cui/messages.po b/source/ko/cui/messages.po
index 7ef9927e441..198009363ec 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2018-05-19 22:58+0000\n"
"Last-Translator: Jihui Choi <jihui.choi@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -9872,97 +9872,97 @@ msgctxt "positionsizedialog|PositionAndSizeDialog"
msgid "Position and Size"
msgstr "위치 및 크기"
-#: cui/uiconfig/ui/positionsizedialog.ui:107
+#: cui/uiconfig/ui/positionsizedialog.ui:136
msgctxt "positionsizedialog|RID_SVXPAGE_POSITION_SIZE"
msgid "Position and Size"
msgstr "위치 및 크기"
-#: cui/uiconfig/ui/positionsizedialog.ui:129
+#: cui/uiconfig/ui/positionsizedialog.ui:182
msgctxt "positionsizedialog|RID_SVXPAGE_SWPOSSIZE"
msgid "Position and Size"
msgstr "위치 및 크기"
-#: cui/uiconfig/ui/positionsizedialog.ui:152
+#: cui/uiconfig/ui/positionsizedialog.ui:229
msgctxt "positionsizedialog|RID_SVXPAGE_ANGLE"
msgid "Rotation"
msgstr "회전"
-#: cui/uiconfig/ui/positionsizedialog.ui:175
+#: cui/uiconfig/ui/positionsizedialog.ui:276
msgctxt "positionsizedialog|RID_SVXPAGE_SLANT"
msgid "Slant & Corner Radius"
msgstr "기울기/모서리 각도"
-#: cui/uiconfig/ui/possizetabpage.ui:40
+#: cui/uiconfig/ui/possizetabpage.ui:61
msgctxt "possizetabpage|FT_POS_X"
msgid "Position _X:"
msgstr "_X 위치:"
-#: cui/uiconfig/ui/possizetabpage.ui:56
+#: cui/uiconfig/ui/possizetabpage.ui:75
msgctxt "possizetabpage|FT_POS_Y"
msgid "Position _Y:"
msgstr "_Y 위치:"
-#: cui/uiconfig/ui/possizetabpage.ui:110
+#: cui/uiconfig/ui/possizetabpage.ui:128
msgctxt "possizetabpage|FT_POSREFERENCE"
msgid "_Base point:"
msgstr "기본 위치(_B):"
-#: cui/uiconfig/ui/possizetabpage.ui:148
+#: cui/uiconfig/ui/possizetabpage.ui:182
msgctxt "possizetabpage|label1"
msgid "Position"
msgstr "위치"
-#: cui/uiconfig/ui/possizetabpage.ui:190
+#: cui/uiconfig/ui/possizetabpage.ui:224
msgctxt "possizetabpage|FT_WIDTH"
msgid "Wi_dth:"
msgstr "너비(_D):"
-#: cui/uiconfig/ui/possizetabpage.ui:206
+#: cui/uiconfig/ui/possizetabpage.ui:238
msgctxt "possizetabpage|FT_HEIGHT"
msgid "H_eight:"
msgstr "높이(_E):"
-#: cui/uiconfig/ui/possizetabpage.ui:247
+#: cui/uiconfig/ui/possizetabpage.ui:276
msgctxt "possizetabpage|CBX_SCALE"
msgid "_Keep ratio"
msgstr "비율 유지(_K)"
-#: cui/uiconfig/ui/possizetabpage.ui:279
+#: cui/uiconfig/ui/possizetabpage.ui:307
msgctxt "possizetabpage|FT_SIZEREFERENCE"
msgid "Base _point:"
msgstr "기본 위치(_P):"
-#: cui/uiconfig/ui/possizetabpage.ui:317
+#: cui/uiconfig/ui/possizetabpage.ui:361
msgctxt "possizetabpage|label2"
msgid "Size"
msgstr "크기"
-#: cui/uiconfig/ui/possizetabpage.ui:356
+#: cui/uiconfig/ui/possizetabpage.ui:401
msgctxt "possizetabpage|TSB_POSPROTECT"
msgid "Positio_n"
msgstr "위치(_N)"
-#: cui/uiconfig/ui/possizetabpage.ui:373
+#: cui/uiconfig/ui/possizetabpage.ui:418
msgctxt "possizetabpage|TSB_SIZEPROTECT"
msgid "_Size"
msgstr "크기(_S)"
-#: cui/uiconfig/ui/possizetabpage.ui:397
+#: cui/uiconfig/ui/possizetabpage.ui:441
msgctxt "possizetabpage|label3"
msgid "Protect"
msgstr "보호"
-#: cui/uiconfig/ui/possizetabpage.ui:430
+#: cui/uiconfig/ui/possizetabpage.ui:475
msgctxt "possizetabpage|TSB_AUTOGROW_WIDTH"
msgid "_Fit width to text"
msgstr "텍스트에 너비 맞춤(_F)"
-#: cui/uiconfig/ui/possizetabpage.ui:447
+#: cui/uiconfig/ui/possizetabpage.ui:492
msgctxt "possizetabpage|TSB_AUTOGROW_HEIGHT"
msgid "Fit _height to text"
msgstr "너비 및 높이 맞춤(_H)"
-#: cui/uiconfig/ui/possizetabpage.ui:471
+#: cui/uiconfig/ui/possizetabpage.ui:515
msgctxt "possizetabpage|label4"
msgid "Adapt"
msgstr "조정"
@@ -10162,47 +10162,47 @@ msgctxt "recordnumberdialog|label2"
msgid "go to record"
msgstr "레코드로 이동"
-#: cui/uiconfig/ui/rotationtabpage.ui:52
+#: cui/uiconfig/ui/rotationtabpage.ui:56
msgctxt "rotationtabpage|FT_POS_X"
msgid "Position _X:"
msgstr "_X 위치:"
-#: cui/uiconfig/ui/rotationtabpage.ui:66
+#: cui/uiconfig/ui/rotationtabpage.ui:70
msgctxt "rotationtabpage|FT_POS_Y"
msgid "Position _Y:"
msgstr "_Y 위치:"
-#: cui/uiconfig/ui/rotationtabpage.ui:116
+#: cui/uiconfig/ui/rotationtabpage.ui:123
msgctxt "rotationtabpage|FT_POSPRESETS"
msgid "_Default settings:"
msgstr "기본 설정(_D):"
-#: cui/uiconfig/ui/rotationtabpage.ui:130
+#: cui/uiconfig/ui/rotationtabpage.ui:151
msgctxt "rotationtabpage|CTL_RECT|tooltip_text"
msgid "Rotation point"
msgstr "회전점"
-#: cui/uiconfig/ui/rotationtabpage.ui:155
+#: cui/uiconfig/ui/rotationtabpage.ui:178
msgctxt "rotationtabpage|label1"
msgid "Pivot Point"
msgstr "피벗 포인트"
-#: cui/uiconfig/ui/rotationtabpage.ui:197
+#: cui/uiconfig/ui/rotationtabpage.ui:220
msgctxt "rotationtabpage|FT_ANGLE"
msgid "_Angle:"
msgstr "각도(_A):"
-#: cui/uiconfig/ui/rotationtabpage.ui:238
+#: cui/uiconfig/ui/rotationtabpage.ui:263
msgctxt "rotationtabpage|FT_ANGLEPRESETS"
msgid "Default _settings:"
msgstr "기본 설정(_S):"
-#: cui/uiconfig/ui/rotationtabpage.ui:252
+#: cui/uiconfig/ui/rotationtabpage.ui:287
msgctxt "rotationtabpage|CTL_ANGLE|tooltip_text"
msgid "Rotation Angle"
msgstr "회전각"
-#: cui/uiconfig/ui/rotationtabpage.ui:277
+#: cui/uiconfig/ui/rotationtabpage.ui:314
msgctxt "rotationtabpage|label2"
msgid "Rotation Angle"
msgstr "회전각"
@@ -10582,52 +10582,52 @@ msgctxt "similaritysearchdialog|relaxbox"
msgid "_Combine"
msgstr "결합(_C)"
-#: cui/uiconfig/ui/slantcornertabpage.ui:50
+#: cui/uiconfig/ui/slantcornertabpage.ui:70
msgctxt "slantcornertabpage|label5"
msgid "_X:"
msgstr "_X:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:88
+#: cui/uiconfig/ui/slantcornertabpage.ui:110
msgctxt "slantcornertabpage|label6"
msgid "_Y:"
msgstr "_Y:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:125
+#: cui/uiconfig/ui/slantcornertabpage.ui:149
msgctxt "slantcornertabpage|label3"
msgid "Control Point 1"
msgstr "제어 포인트 1"
-#: cui/uiconfig/ui/slantcornertabpage.ui:159
+#: cui/uiconfig/ui/slantcornertabpage.ui:183
msgctxt "slantcornertabpage|FT_RADIUS"
msgid "_Radius:"
msgstr "반지름(_R):"
-#: cui/uiconfig/ui/slantcornertabpage.ui:189
+#: cui/uiconfig/ui/slantcornertabpage.ui:214
msgctxt "slantcornertabpage|label1"
msgid "Corner Radius"
msgstr "모서리 반지름"
-#: cui/uiconfig/ui/slantcornertabpage.ui:223
+#: cui/uiconfig/ui/slantcornertabpage.ui:248
msgctxt "slantcornertabpage|FT_ANGLE"
msgid "_Angle:"
msgstr "각도(_A):"
-#: cui/uiconfig/ui/slantcornertabpage.ui:253
+#: cui/uiconfig/ui/slantcornertabpage.ui:279
msgctxt "slantcornertabpage|label2"
msgid "Slant"
msgstr "기울기"
-#: cui/uiconfig/ui/slantcornertabpage.ui:294
+#: cui/uiconfig/ui/slantcornertabpage.ui:320
msgctxt "slantcornertabpage|label4"
msgid "_X:"
msgstr "_X:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:332
+#: cui/uiconfig/ui/slantcornertabpage.ui:360
msgctxt "slantcornertabpage|label7"
msgid "_Y:"
msgstr "_Y:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:369
+#: cui/uiconfig/ui/slantcornertabpage.ui:399
msgctxt "slantcornertabpage|label8"
msgid "Control Point 2"
msgstr "점(_P)"
@@ -10907,112 +10907,112 @@ msgctxt "storedwebconnectiondialog|change"
msgid "_Change Password..."
msgstr "암호 바꾸기(_C)..."
-#: cui/uiconfig/ui/swpossizepage.ui:74
+#: cui/uiconfig/ui/swpossizepage.ui:85
msgctxt "swpossizepage|widthft"
msgid "_Width:"
msgstr "너비(_W):"
-#: cui/uiconfig/ui/swpossizepage.ui:111
+#: cui/uiconfig/ui/swpossizepage.ui:123
msgctxt "swpossizepage|heightft"
msgid "H_eight:"
msgstr "높이(_E):"
-#: cui/uiconfig/ui/swpossizepage.ui:128
+#: cui/uiconfig/ui/swpossizepage.ui:141
msgctxt "swpossizepage|ratio"
msgid "_Keep ratio"
msgstr "비율 유지(_K)"
-#: cui/uiconfig/ui/swpossizepage.ui:149
+#: cui/uiconfig/ui/swpossizepage.ui:162
msgctxt "swpossizepage|label2"
msgid "Size"
msgstr "크기"
-#: cui/uiconfig/ui/swpossizepage.ui:205
+#: cui/uiconfig/ui/swpossizepage.ui:218
msgctxt "swpossizepage|topage"
msgid "To _page"
msgstr "페이지에(_P)"
-#: cui/uiconfig/ui/swpossizepage.ui:222
+#: cui/uiconfig/ui/swpossizepage.ui:234
msgctxt "swpossizepage|topara"
msgid "To paragrap_h"
msgstr "단락에(_H)"
-#: cui/uiconfig/ui/swpossizepage.ui:238
+#: cui/uiconfig/ui/swpossizepage.ui:250
msgctxt "swpossizepage|tochar"
msgid "To cha_racter"
msgstr "문자에(_R)"
-#: cui/uiconfig/ui/swpossizepage.ui:254
+#: cui/uiconfig/ui/swpossizepage.ui:266
msgctxt "swpossizepage|aschar"
msgid "_As character"
msgstr "문자로(_A)"
-#: cui/uiconfig/ui/swpossizepage.ui:270
+#: cui/uiconfig/ui/swpossizepage.ui:282
msgctxt "swpossizepage|toframe"
msgid "To _frame"
msgstr "틀에(_F)"
-#: cui/uiconfig/ui/swpossizepage.ui:292
+#: cui/uiconfig/ui/swpossizepage.ui:304
msgctxt "swpossizepage|label1"
msgid "Anchor"
msgstr "기준 위치"
-#: cui/uiconfig/ui/swpossizepage.ui:333
+#: cui/uiconfig/ui/swpossizepage.ui:344
msgctxt "swpossizepage|horiposft"
msgid "Hori_zontal:"
msgstr "수평(_Z):"
-#: cui/uiconfig/ui/swpossizepage.ui:347
+#: cui/uiconfig/ui/swpossizepage.ui:358
msgctxt "swpossizepage|horibyft"
msgid "b_y:"
msgstr "만큼(_Y):"
-#: cui/uiconfig/ui/swpossizepage.ui:361
+#: cui/uiconfig/ui/swpossizepage.ui:372
msgctxt "swpossizepage|vertbyft"
msgid "_by:"
msgstr "만큼(_B):"
-#: cui/uiconfig/ui/swpossizepage.ui:375
+#: cui/uiconfig/ui/swpossizepage.ui:386
msgctxt "swpossizepage|horitoft"
msgid "_to:"
msgstr "까지(_T):"
-#: cui/uiconfig/ui/swpossizepage.ui:421
+#: cui/uiconfig/ui/swpossizepage.ui:433
msgctxt "swpossizepage|vertposft"
msgid "_Vertical:"
msgstr "수직(_V):"
-#: cui/uiconfig/ui/swpossizepage.ui:457
+#: cui/uiconfig/ui/swpossizepage.ui:470
msgctxt "swpossizepage|verttoft"
msgid "t_o:"
msgstr "까지(_O):"
-#: cui/uiconfig/ui/swpossizepage.ui:478
+#: cui/uiconfig/ui/swpossizepage.ui:492
msgctxt "swpossizepage|mirror"
msgid "_Mirror on even pages"
msgstr "짝수 페이지 마주보기(_M)"
-#: cui/uiconfig/ui/swpossizepage.ui:495
+#: cui/uiconfig/ui/swpossizepage.ui:509
msgctxt "swpossizepage|followtextflow"
msgid "Follow te_xt flow"
msgstr "텍스트 흐름 따르기(_X)"
-#: cui/uiconfig/ui/swpossizepage.ui:518
+#: cui/uiconfig/ui/swpossizepage.ui:532
msgctxt "swpossizepage|label11"
msgid "Position"
msgstr "위치"
-#: cui/uiconfig/ui/swpossizepage.ui:549
+#: cui/uiconfig/ui/swpossizepage.ui:563
msgctxt "swpossizepage|pos"
msgid "Positio_n"
msgstr "위치(_N)"
-#: cui/uiconfig/ui/swpossizepage.ui:565
+#: cui/uiconfig/ui/swpossizepage.ui:579
msgctxt "swpossizepage|size"
msgid "_Size"
msgstr "크기(_S)"
-#: cui/uiconfig/ui/swpossizepage.ui:587
+#: cui/uiconfig/ui/swpossizepage.ui:601
msgctxt "swpossizepage|label3"
msgid "Protect"
msgstr "보호"
@@ -11202,12 +11202,12 @@ msgctxt "textattrtabpage|label2"
msgid "Spacing to Borders"
msgstr "테두리와의 간격"
-#: cui/uiconfig/ui/textattrtabpage.ui:425
+#: cui/uiconfig/ui/textattrtabpage.ui:423
msgctxt "textattrtabpage|TSB_FULL_WIDTH"
msgid "Full _width"
msgstr "전체 너비(_W)"
-#: cui/uiconfig/ui/textattrtabpage.ui:448
+#: cui/uiconfig/ui/textattrtabpage.ui:446
msgctxt "textattrtabpage|label3"
msgid "Text Anchor"
msgstr "텍스트 기준 위치"
diff --git a/source/ko/filter/source/config/fragments/filters.po b/source/ko/filter/source/config/fragments/filters.po
index 09a98386c9f..455f9cd4f44 100644
--- a/source/ko/filter/source/config/fragments/filters.po
+++ b/source/ko/filter/source/config/fragments/filters.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: 2018-05-16 16:54+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2018-05-19 23:00+0000\n"
"Last-Translator: Jihui Choi <jihui.choi@gmail.com>\n"
"Language-Team: \n"
@@ -463,8 +463,8 @@ msgctxt ""
"MS Word 2003 XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Word 2003 XML"
-msgstr "Microsoft Word 2003 XML"
+msgid "Word 2003 XML"
+msgstr ""
#: MS_Word_2007_XML.xcu
msgctxt ""
@@ -1282,8 +1282,8 @@ msgctxt ""
"Calc MS Excel 2007 VBA XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Excel 2007-2016 XML (macro enabled)"
-msgstr "Microsoft Excel 2007-2016 XML (매크로 사용 가능)"
+msgid "Excel 2007–2019 (macro-enabled)"
+msgstr ""
#: calc_MS_Excel_2007_XML.xcu
msgctxt ""
diff --git a/source/ko/filter/source/config/fragments/types.po b/source/ko/filter/source/config/fragments/types.po
index 0846870091b..03534baaad3 100644
--- a/source/ko/filter/source/config/fragments/types.po
+++ b/source/ko/filter/source/config/fragments/types.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: 2018-05-08 15:11+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2018-05-19 23:00+0000\n"
"Last-Translator: Jihui Choi <jihui.choi@gmail.com>\n"
"Language-Team: \n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1526770851.000000\n"
#: MS_Excel_2007_Binary.xcu
@@ -292,8 +292,8 @@ msgctxt ""
"writer_MS_Word_2003_XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Word 2003 XML"
-msgstr "Microsoft Word 2003 XML"
+msgid "Word 2003 XML"
+msgstr ""
#: writer_MS_Word_2007_XML.xcu
msgctxt ""
diff --git a/source/ko/fpicker/messages.po b/source/ko/fpicker/messages.po
index ec23d443d15..429a9318031 100644
--- a/source/ko/fpicker/messages.po
+++ b/source/ko/fpicker/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2018-04-08 14:47+0000\n"
"Last-Translator: Jihui Choi <jihui.choi@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -270,13 +270,13 @@ msgstr "GPG 키로 암호화"
#: fpicker/uiconfig/ui/foldernamedialog.ui:8
msgctxt "foldernamedialog|FolderNameDialog"
-msgid "Folder Name ?"
-msgstr "폴더 이름은?"
+msgid "Folder Name"
+msgstr ""
#: fpicker/uiconfig/ui/foldernamedialog.ui:91
msgctxt "foldernamedialog|label2"
-msgid "Na_me"
-msgstr "이름(_M)"
+msgid "Na_me:"
+msgstr ""
#: fpicker/uiconfig/ui/foldernamedialog.ui:122
msgctxt "foldernamedialog|label1"
diff --git a/source/ko/helpcontent2/source/text/shared/00.po b/source/ko/helpcontent2/source/text/shared/00.po
index 5f5707c7a64..b7b8cabb6d9 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2018-04-25 08:53+0000\n"
"Last-Translator: Jihui Choi <jihui.choi@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -397,16 +397,16 @@ msgctxt ""
"00000001.xhp\n"
"hd_id3149670\n"
"help.text"
-msgid "Back"
-msgstr "뒤로"
+msgid "Reset"
+msgstr ""
#: 00000001.xhp
msgctxt ""
"00000001.xhp\n"
"par_id3145068\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optionsdialog/revert\">Resets modified values back to the $[officename] default values.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/optionsdialog/revert\">수정한 값을 $[officename] 기본값으로 다시 설정합니다.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optionsdialog/revert\">Resets changes made to the current tab to those applicable when this dialog was opened.</ahelp>"
+msgstr ""
#: 00000001.xhp
msgctxt ""
@@ -552,6 +552,54 @@ msgctxt ""
msgid "<variable id=\"ShiftF1\">Press Shift+F1 and point to a control to learn more about that control.</variable>"
msgstr "<variable id=\"ShiftF1\">Shift + F1 키을 누르고 콘트롤을 가리키면 해당 콘트롤에 대한 설명을 볼 수 있습니다.</variable>"
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"hd_id631527692833772\n"
+"help.text"
+msgid "Options dialog buttons"
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"hd_id831527692839432\n"
+"help.text"
+msgid "OK"
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"par_id471527692844934\n"
+"help.text"
+msgid "Save the changes in the page and close the Options dialog."
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"hd_id261527692850720\n"
+"help.text"
+msgid "Cancel"
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"par_id571527692855533\n"
+"help.text"
+msgid "Close the Options dialog and discard all changes done."
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"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 Options dialog."
+msgstr ""
+
#: 00000002.xhp
msgctxt ""
"00000002.xhp\n"
@@ -11125,16 +11173,16 @@ msgctxt ""
"00040502.xhp\n"
"par_id3151293\n"
"help.text"
-msgid "<variable id=\"linienstile\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Line Styles</emph> tab </variable>"
-msgstr "<variable id=\"linienstile\"><emph>서식 - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>개체 - </emph></caseinline><caseinline select=\"CALC\"><emph>그래픽 - </emph></caseinline></switchinline><emph>선 - 선 스타일</emph> 탭을 선택합니다. </variable>"
+msgid "<variable id=\"linienstile\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Line Styles</emph> tab</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3149317\n"
"help.text"
-msgid "<variable id=\"linienenden\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Arrow Styles</emph> tab </variable>"
-msgstr "<variable id=\"linienenden\"><emph>서식 - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>개체 - </emph></caseinline><caseinline select=\"CALC\"><emph>그래픽 - </emph></caseinline></switchinline><emph>선 - 화살표 스타일</emph> 탭을 선택합니다.</variable>"
+msgid "<variable id=\"linienenden\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Arrow Styles</emph> tab</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
@@ -11173,15 +11221,15 @@ msgctxt ""
"00040502.xhp\n"
"par_id3154948\n"
"help.text"
-msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Area</emph> tab"
-msgstr "<emph>서식 - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>개체 - </emph></caseinline><caseinline select=\"CALC\"><emph>그래픽 - </emph></caseinline></switchinline><emph>영역 - 영역</emph> 탭을 선택합니다."
+msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Area</emph> tab."
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3145607\n"
"help.text"
-msgid "Choose <emph>View - Styles</emph> - open context menu and choose <emph>Modify/New - Area</emph> tab (presentation documents)"
+msgid "Choose <emph>View - Styles</emph> - open context menu and choose <emph>Modify/New - Area</emph> tab (presentation documents)."
msgstr ""
#: 00040502.xhp
@@ -11189,47 +11237,47 @@ msgctxt ""
"00040502.xhp\n"
"par_id3152922\n"
"help.text"
-msgid "Choose <emph>Format - Title - Area</emph> tab (chart documents)"
-msgstr "<emph>서식 - 제목 </emph>메뉴 - <emph>면</emph>탭 (차트 문서)"
+msgid "Choose <emph>Format - Title - Area</emph> tab (chart documents)."
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3157894\n"
"help.text"
-msgid "Choose <emph>Format - Legend - Area</emph> tab (chart documents)"
-msgstr "<emph>서식 - 범례 - 면</emph>탭 (차트 문서)"
+msgid "Choose <emph>Format - Legend - Area</emph> tab (chart documents)."
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3144444\n"
"help.text"
-msgid "Choose <emph>Format - Chart Wall - Area</emph> tab (chart documents)"
-msgstr "<emph>서식 - 차트 배경 - 면</emph> 탭을 선택합니다(차트 문서)."
+msgid "Choose <emph>Format - Chart Wall - Area</emph> tab (chart documents)."
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3156543\n"
"help.text"
-msgid "Choose <emph>Format - Chart Floor - Area</emph> tab (chart documents)"
-msgstr "<emph>서식 - 차트 밑면 - 면</emph> 탭 (차트 문서)"
+msgid "Choose <emph>Format - Chart Floor - Area</emph> tab (chart documents)."
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3150685\n"
"help.text"
-msgid "Choose <emph>Format - Chart Area - Area</emph> tab (chart documents)"
-msgstr "<emph>서식 - 차트 영역 - 면</emph> 탭 (차트dokumente)"
+msgid "Choose <emph>Format - Chart Area - Area</emph> tab (chart documents)."
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3149664\n"
"help.text"
-msgid "Choose <emph>Slide - Properties - Background</emph> tab (in $[officename] Impress)"
+msgid "Choose <emph>Slide - Properties - Background</emph> tab (in $[officename] Impress)."
msgstr ""
#: 00040502.xhp
@@ -11237,7 +11285,15 @@ msgctxt ""
"00040502.xhp\n"
"par_id9149694\n"
"help.text"
-msgid "Choose <emph>Page - Properties - Background</emph> tab (in $[officename] Draw)"
+msgid "Choose <emph>Page - Properties - Background</emph> tab (in $[officename] Draw)."
+msgstr ""
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id841527083135387\n"
+"help.text"
+msgid "Choose <emph>Table - Properties - Background</emph> tab."
msgstr ""
#: 00040502.xhp
@@ -11349,32 +11405,32 @@ msgctxt ""
"00040502.xhp\n"
"par_id3150011\n"
"help.text"
-msgid "<variable id=\"schatte\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Shadow</emph> tab </variable>"
-msgstr "<variable id=\"schatte\"><emph>서식 - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>개체 - </emph></caseinline><caseinline select=\"CALC\"><emph>그래픽 - </emph></caseinline></switchinline><emph>영역 - 그림자</emph> 탭을 선택합니다.</variable>"
+msgid "<variable id=\"schatte\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Shadow</emph> tab</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3147441\n"
"help.text"
-msgid "<variable id=\"verlauf\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Gradients</emph> tab </variable>"
-msgstr "<variable id=\"verlauf\"><emph>서식 - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>개체 - </emph></caseinline><caseinline select=\"CALC\"><emph>그래픽 - </emph></caseinline></switchinline><emph>영역 - 그라디언트</emph> 탭을 선택합니다.</variable>"
+msgid "<variable id=\"verlauf\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Gradients</emph> tab</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3155308\n"
"help.text"
-msgid "<variable id=\"schraffur\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Hatching</emph> tab </variable>"
-msgstr "<variable id=\"schraffur\"><emph>서식 - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>개체 - </emph></caseinline><caseinline select=\"CALC\"><emph>그래픽 - </emph></caseinline></switchinline><emph>영역 - 해칭</emph> 탭을 선택합니다. </variable>"
+msgid "<variable id=\"schraffur\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Hatching</emph> tab</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3145800\n"
"help.text"
-msgid "<variable id=\"bitmap\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Bitmaps</emph> tab </variable>"
-msgstr "<variable id=\"bitmap\"><emph>서식 - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>개체 - </emph></caseinline><caseinline select=\"CALC\"><emph>그래픽 - </emph></caseinline></switchinline><emph>영역 - 비트맵</emph> 탭을 선택합니다.</variable>"
+msgid "<variable id=\"bitmap\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Bitmaps</emph> tab</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
@@ -11413,8 +11469,8 @@ msgctxt ""
"00040502.xhp\n"
"par_id3156286\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F4 key </caseinline><caseinline select=\"IMPRESS\">F4 key </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F4 키 </caseinline><caseinline select=\"IMPRESS\">F4 키 </caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F4 key</caseinline><caseinline select=\"IMPRESS\">F4 key</caseinline></switchinline>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
@@ -11453,8 +11509,8 @@ msgctxt ""
"00040502.xhp\n"
"par_id3153099\n"
"help.text"
-msgid "<variable id=\"position2\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Position and Size</emph> tab </variable>"
-msgstr "<variable id=\"position2\"><emph>서식 - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>개체 - </emph></caseinline><caseinline select=\"CALC\"><emph>그래픽 - </emph></caseinline></switchinline><emph>위치 및 크기 - 위치 및 크기</emph> 탭을 선택합니다. </variable>"
+msgid "<variable id=\"position2\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Position and Size</emph> tab</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
@@ -11485,16 +11541,16 @@ msgctxt ""
"00040502.xhp\n"
"par_id3145666\n"
"help.text"
-msgid "<variable id=\"ecke\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Slant & Corner Radius</emph> tab </variable>"
-msgstr "<variable id=\"ecke\"><emph>서식 - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>개체 - </emph></caseinline><caseinline select=\"CALC\"><emph>그래픽 - </emph></caseinline></switchinline><emph>위치 및 크기 - 기울기 및 모서리 각도</emph> 탭을 선택합니다.</variable>"
+msgid "<variable id=\"ecke\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Slant & Corner Radius</emph> tab</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3146081\n"
"help.text"
-msgid "<variable id=\"legende\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Callout</emph> tab (only for textbox callouts, not for custom shapes callouts) </variable>"
-msgstr "<variable id=\"legende\"><emph>서식 - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>개체 - </emph></caseinline><caseinline select=\"CALC\"><emph>그래픽 - </emph></caseinline></switchinline><emph>위치 및 크기 - 설명선</emph> 탭 (사용자 정의 도형 설명선이 아닌 텍스트 상자 설명선에 대해서만) </variable>"
+msgid "<variable id=\"legende\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Callout</emph> tab (only for textbox callouts, not for custom shapes callouts)</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
@@ -11517,8 +11573,8 @@ msgctxt ""
"00040502.xhp\n"
"par_id3149019\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F8 key </caseinline><caseinline select=\"IMPRESS\">F8 key </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F8 키 </caseinline><caseinline select=\"IMPRESS\">F8 키 </caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F8 key</caseinline><caseinline select=\"IMPRESS\">F8 key</caseinline></switchinline>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
@@ -11805,8 +11861,8 @@ msgctxt ""
"00040502.xhp\n"
"par_id3153076\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Align Center Horizontally </caseinline><defaultinline>Centered</defaultinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">가운데 수평 맞춤 </caseinline><defaultinline>가운데</defaultinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Align Center Horizontally</caseinline><defaultinline>Centered</defaultinline></switchinline>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
@@ -11845,8 +11901,8 @@ msgctxt ""
"00040502.xhp\n"
"par_id3150527\n"
"help.text"
-msgid "<variable id=\"font\">Click <emph>Fontwork</emph> icon on <emph>Drawing</emph> bar </variable>"
-msgstr "<variable id=\"font\"><emph>그리기</emph> 도구 모음에서 <emph>폰트워크</emph> 아이콘을 클릭합니다.</variable>"
+msgid "<variable id=\"font\">Click <emph>Fontwork</emph> icon on <emph>Drawing</emph> bar</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
diff --git a/source/ko/helpcontent2/source/text/shared/01.po b/source/ko/helpcontent2/source/text/shared/01.po
index 8f3772dd1f6..372936da2c7 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: 2018-05-23 23:19+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2018-04-24 23:26+0000\n"
"Last-Translator: Jihui Choi <jihui.choi@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -23587,6 +23587,22 @@ msgstr ""
#: 05210100.xhp
msgctxt ""
"05210100.xhp\n"
+"hd_id471527077476052\n"
+"help.text"
+msgid "Cell, Row or Table background selector"
+msgstr ""
+
+#: 05210100.xhp
+msgctxt ""
+"05210100.xhp\n"
+"par_id661527077493366\n"
+"help.text"
+msgid "Select the table object which background area is to be filled."
+msgstr ""
+
+#: 05210100.xhp
+msgctxt ""
+"05210100.xhp\n"
"hd_id3147373\n"
"help.text"
msgid "None"
@@ -31205,24 +31221,24 @@ msgctxt ""
"06040100.xhp\n"
"hd_id3145072\n"
"help.text"
-msgid "Automatic *bold* and _underline_"
-msgstr "자동으로 *글자*는 굵게, _글자_는 밑줄로"
+msgid "Automatic *bold*, /italic/, -strikeout- and _underline_"
+msgstr ""
#: 06040100.xhp
msgctxt ""
"06040100.xhp\n"
"par_id3153577\n"
"help.text"
-msgid "Automatically applies bold formatting to text enclosed by asterisks (*), and underline to text enclosed by underscores ( _ ), for example, *bold*. The asterisks and underscores are not displayed after the formatting is applied."
-msgstr "별표(*)로 묶인 텍스트(예: *굵게*)에는 굵게 표시 서식을 자동으로 적용하고 글자 양쪽에 밑줄(_)이 있는 텍스트에는 밑줄을 자동으로 표시합니다. 별표와 밑줄은 서식이 적용된 후에는 표시되지 않습니다."
+msgid "Automatically applies bold, italic, strikethrough or underline formatting to text enclosed by asterisks (*), slashes (/), hyphens (-), and underscores (_), respectively. These characters disappear after the formatting is applied."
+msgstr ""
#: 06040100.xhp
msgctxt ""
"06040100.xhp\n"
"par_id3153127\n"
"help.text"
-msgid "This feature does not work if the formatting characters * or _ are entered with an <link href=\"text/shared/00/00000005.xhp#IME\" name=\"Input Method Editor\">Input Method Editor</link>."
-msgstr "<link name=\"입력기\" href=\"text/shared/00/00000005.xhp#IME\">입력기</link>를 사용하여 서식 설정 문자 * 또는 _을 입력한 경우 이 기능은 작동하지 않습니다."
+msgid "This feature does not work if the formatting characters <item type=\"literal\">* / - _</item> are entered with an <link href=\"text/shared/00/00000005.xhp#IME\" name=\"Input Method Editor\">Input Method Editor</link>."
+msgstr ""
#: 06040100.xhp
msgctxt ""
diff --git a/source/ko/helpcontent2/source/text/shared/optionen.po b/source/ko/helpcontent2/source/text/shared/optionen.po
index aab236192e3..224d8600c77 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: 2018-05-08 15:10+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2018-04-20 04:14+0000\n"
"Last-Translator: Jihui Choi <jihui.choi@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -83,6 +83,22 @@ msgstr ""
#: 01000000.xhp
msgctxt ""
"01000000.xhp\n"
+"hd_id551527692881035\n"
+"help.text"
+msgid "Help"
+msgstr ""
+
+#: 01000000.xhp
+msgctxt ""
+"01000000.xhp\n"
+"par_id831527692885723\n"
+"help.text"
+msgid "Opens the help contents for the Options page displayed."
+msgstr ""
+
+#: 01000000.xhp
+msgctxt ""
+"01000000.xhp\n"
"hd_id3159149\n"
"help.text"
msgid "<link href=\"text/shared/optionen/01010000.xhp\" name=\"$[officename]\">%PRODUCTNAME</link>"
@@ -4565,8 +4581,8 @@ msgctxt ""
"01030300.xhp\n"
"par_idN10640\n"
"help.text"
-msgid "Options"
-msgstr "옵션"
+msgid "Security Options and Warnings"
+msgstr ""
#: 01030300.xhp
msgctxt ""
@@ -4597,8 +4613,8 @@ msgctxt ""
"01030300.xhp\n"
"hd_id3168736\n"
"help.text"
-msgid "Persistently save passwords protected by a master password"
-msgstr "암호를 마스터 암호로 보호하여 영구 저장합니다"
+msgid "Persistently save passwords for web connections"
+msgstr ""
#: 01030300.xhp
msgctxt ""
@@ -4613,8 +4629,24 @@ msgctxt ""
"01030300.xhp\n"
"hd_id3901791\n"
"help.text"
+msgid "Protected by a master password (recommended)"
+msgstr ""
+
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"par_id31527711486980\n"
+"help.text"
+msgid "Check to enable all connections' passwords to be protected by a master password."
+msgstr ""
+
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"hd_id141527711343312\n"
+"help.text"
msgid "Master Password"
-msgstr "마스터 암호"
+msgstr ""
#: 01030300.xhp
msgctxt ""
@@ -13733,7 +13765,7 @@ msgctxt ""
"java.xhp\n"
"hd_id3148618\n"
"help.text"
-msgid "Optional (unstable) options"
+msgid "Optional Features"
msgstr ""
#: java.xhp
@@ -13749,7 +13781,7 @@ msgctxt ""
"java.xhp\n"
"par_id3156344\n"
"help.text"
-msgid "It enables features that are not yet complete or contain known bugs. The list of these features is different version by version, or even it can be empty."
+msgid "Enables features that are not yet complete or may contain known bugs. The list of these features is different version by version, or even it can be empty."
msgstr ""
#: java.xhp
@@ -13765,7 +13797,7 @@ msgctxt ""
"java.xhp\n"
"par_id3156345\n"
"help.text"
-msgid "It enables macro recording, so the <link href=\"text/shared/guide/macro_recording.xhp\" name=\"Tools - Macros - Record Macro\"><item type=\"menuitem\">Tools - Macros - Record Macro</item></link> menu item will be available."
+msgid "Enables macro recording. The <link href=\"text/shared/guide/macro_recording.xhp\" name=\"Tools - Macros - Record Macro\"><item type=\"menuitem\">Tools - Macros - Record Macro</item></link> menu item is available."
msgstr ""
#: java.xhp
diff --git a/source/ko/officecfg/registry/data/org/openoffice/Office/UI.po b/source/ko/officecfg/registry/data/org/openoffice/Office/UI.po
index 753c58e9dcc..7a3233198cf 100644
--- a/source/ko/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/ko/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-22 13:17+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2018-05-19 23:01+0000\n"
"Last-Translator: Jihui Choi <jihui.choi@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -26520,8 +26520,8 @@ msgctxt ""
"..WriterCommands.UserInterface.Commands..uno:TextAttributes\n"
"Label\n"
"value.text"
-msgid "Text Attributes"
-msgstr "텍스트 속성"
+msgid "Text Attributes..."
+msgstr ""
#: WriterCommands.xcu
msgctxt ""
diff --git a/source/ko/readlicense_oo/docs.po b/source/ko/readlicense_oo/docs.po
index 4a0667bb5da..5f660b88b27 100644
--- a/source/ko/readlicense_oo/docs.po
+++ b/source/ko/readlicense_oo/docs.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-04-17 15:54+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2018-04-18 02:01+0000\n"
"Last-Translator: Jihui Choi <jihui.choi@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1524016909.000000\n"
#: readme.xrm
@@ -117,8 +117,8 @@ msgctxt ""
"readme.xrm\n"
"macxiOSX\n"
"readmeitem.text"
-msgid "MacOSX 10.8 (Mountain Lion) or higher"
-msgstr "MacOSX 10.8 (Mountain Lion) 이후 버전"
+msgid "MacOSX 10.9 (Mavericks) or higher"
+msgstr ""
#: readme.xrm
msgctxt ""
diff --git a/source/ko/sc/messages.po b/source/ko/sc/messages.po
index c9a13b709b4..81c1f528bf2 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-12 14:40+0200\n"
"PO-Revision-Date: 2018-05-19 23:01+0000\n"
"Last-Translator: Jihui Choi <jihui.choi@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1870,16 +1870,21 @@ msgid "Nested arrays are not supported."
msgstr "중첩 어레이는 지원되지 않습니다."
#: sc/inc/globstr.hrc:390
+msgctxt "STR_ERR_LONG_BAD_ARRAY_CONTENT"
+msgid "Unsupported inline array content."
+msgstr ""
+
+#: sc/inc/globstr.hrc:391
msgctxt "STR_UNDO_TEXTTOCOLUMNS"
msgid "Text to Columns"
msgstr "텍스트를 열로"
-#: sc/inc/globstr.hrc:391
+#: sc/inc/globstr.hrc:392
msgctxt "STR_DOC_UPDATED"
msgid "Your spreadsheet has been updated with changes saved by other users."
msgstr "스프레드시트가 다른 사용자가 저장한 변경 내용으로 업데이트되었습니다."
-#: sc/inc/globstr.hrc:392
+#: sc/inc/globstr.hrc:393
msgctxt "STR_DOC_WILLBESAVED"
msgid ""
"The spreadsheet must be saved now to activate sharing mode.\n"
@@ -1890,7 +1895,7 @@ msgstr ""
"\n"
"계속하시겠습니까?"
-#: sc/inc/globstr.hrc:393
+#: sc/inc/globstr.hrc:394
msgctxt "STR_DOC_WILLNOTBESAVED"
msgid ""
"Already resolved merge conflicts will be lost and your changes to the shared spreadsheet will not be saved.\n"
@@ -1901,7 +1906,7 @@ msgstr ""
"\n"
"계속하시겠습니까?"
-#: sc/inc/globstr.hrc:394
+#: sc/inc/globstr.hrc:395
msgctxt "STR_DOC_DISABLESHARED"
msgid ""
"Disabling shared mode of a spreadsheet hinders all other users of the shared spreadsheet to merge back their work.\n"
@@ -1912,7 +1917,7 @@ msgstr ""
"\n"
"계속하시겠습니까?"
-#: sc/inc/globstr.hrc:395
+#: sc/inc/globstr.hrc:396
msgctxt "STR_DOC_NOLONGERSHARED"
msgid ""
"This spreadsheet is no longer in shared mode.\n"
@@ -1923,7 +1928,7 @@ msgstr ""
"\n"
"스프레드시트를 별도의 파일로 저장하고 공유 스프레드시트의 변경 내용을 수동으로 병합하십시오."
-#: sc/inc/globstr.hrc:396
+#: sc/inc/globstr.hrc:397
msgctxt "STR_FILE_LOCKED_TRY_LATER"
msgid ""
"The shared spreadsheet file is locked due to a merge in progress by user: '%1'\n"
@@ -1934,7 +1939,7 @@ msgstr ""
"\n"
"잠긴 파일의 공유 모드는 비활성화할 수 없습니다. 나중에 다시 시도하십시오."
-#: sc/inc/globstr.hrc:397
+#: sc/inc/globstr.hrc:398
msgctxt "STR_FILE_LOCKED_SAVE_LATER"
msgid ""
"The shared spreadsheet file is locked due to a merge in progress by user: '%1'\n"
@@ -1945,147 +1950,147 @@ msgstr ""
"\n"
"변경 내용을 저장하려면 나중에 다시 시도하십시오."
-#: sc/inc/globstr.hrc:398
+#: sc/inc/globstr.hrc:399
msgctxt "STR_UNKNOWN_USER"
msgid "Unknown User"
msgstr "알 수 없는 사용자"
-#: sc/inc/globstr.hrc:399
+#: sc/inc/globstr.hrc:400
msgctxt "STR_SHAPE_AUTOSHAPE"
msgid "AutoShape"
msgstr "도형"
-#: sc/inc/globstr.hrc:400
+#: sc/inc/globstr.hrc:401
msgctxt "STR_SHAPE_RECTANGLE"
msgid "Rectangle"
msgstr "직사각형"
-#: sc/inc/globstr.hrc:401
+#: sc/inc/globstr.hrc:402
msgctxt "STR_SHAPE_LINE"
msgid "Line"
msgstr "선"
-#: sc/inc/globstr.hrc:402
+#: sc/inc/globstr.hrc:403
msgctxt "STR_SHAPE_OVAL"
msgid "Oval"
msgstr "타원"
-#: sc/inc/globstr.hrc:403
+#: sc/inc/globstr.hrc:404
msgctxt "STR_FORM_BUTTON"
msgid "Button"
msgstr "버튼"
-#: sc/inc/globstr.hrc:404
+#: sc/inc/globstr.hrc:405
msgctxt "STR_FORM_CHECKBOX"
msgid "Check Box"
msgstr "확인 상자"
-#: sc/inc/globstr.hrc:405
+#: sc/inc/globstr.hrc:406
msgctxt "STR_FORM_OPTIONBUTTON"
msgid "Option Button"
msgstr "옵션 버튼"
-#: sc/inc/globstr.hrc:406
+#: sc/inc/globstr.hrc:407
msgctxt "STR_FORM_LABEL"
msgid "Label"
msgstr "레이블"
-#: sc/inc/globstr.hrc:407
+#: sc/inc/globstr.hrc:408
msgctxt "STR_FORM_LISTBOX"
msgid "List Box"
msgstr "목록 상자"
-#: sc/inc/globstr.hrc:408
+#: sc/inc/globstr.hrc:409
msgctxt "STR_FORM_GROUPBOX"
msgid "Group Box"
msgstr "그룹 상자"
-#: sc/inc/globstr.hrc:409
+#: sc/inc/globstr.hrc:410
msgctxt "STR_FORM_DROPDOWN"
msgid "Drop Down"
msgstr "내려 놓기"
-#: sc/inc/globstr.hrc:410
+#: sc/inc/globstr.hrc:411
msgctxt "STR_FORM_SPINNER"
msgid "Spinner"
msgstr "스피너"
-#: sc/inc/globstr.hrc:411
+#: sc/inc/globstr.hrc:412
msgctxt "STR_FORM_SCROLLBAR"
msgid "Scroll Bar"
msgstr "스크롤 막대"
-#: sc/inc/globstr.hrc:412
+#: sc/inc/globstr.hrc:413
msgctxt "STR_STYLE_FAMILY_CELL"
msgid "Cell Styles"
msgstr "셀 스타일"
-#: sc/inc/globstr.hrc:413
+#: sc/inc/globstr.hrc:414
msgctxt "STR_STYLE_FAMILY_PAGE"
msgid "Page Styles"
msgstr "페이지 스타일"
-#: sc/inc/globstr.hrc:414
+#: sc/inc/globstr.hrc:415
msgctxt "STR_ERR_DATAPILOTSOURCE"
msgid "Pivot table source data is invalid."
msgstr "피벗 테이블 소스가 올바르지 않습니다."
-#: sc/inc/globstr.hrc:415
+#: sc/inc/globstr.hrc:416
msgctxt "STR_OPTIONS_WARN_SEPARATORS"
msgid "Because the current formula separator settings conflict with the locale, the formula separators have been reset to their default values."
msgstr "현재의 수식 구분자 설정이 로케일과 충돌하기 때문에 수식 구분자가 기본값으로 재설정되었습니다."
-#: sc/inc/globstr.hrc:416
+#: sc/inc/globstr.hrc:417
msgctxt "STR_UNDO_INSERT_CURRENT_DATE"
msgid "Insert Current Date"
msgstr "현재 날짜 입력"
-#: sc/inc/globstr.hrc:417
+#: sc/inc/globstr.hrc:418
msgctxt "STR_UNDO_INSERT_CURRENT_TIME"
msgid "Insert Current Time"
msgstr "현재 시간 입력"
-#: sc/inc/globstr.hrc:418
+#: sc/inc/globstr.hrc:419
msgctxt "STR_MANAGE_NAMES"
msgid "Manage Names..."
msgstr "이름 관리..."
-#: sc/inc/globstr.hrc:419
+#: sc/inc/globstr.hrc:420
msgctxt "STR_HEADER_NAME"
msgid "Name"
msgstr "이름"
-#: sc/inc/globstr.hrc:420
+#: sc/inc/globstr.hrc:421
msgctxt "STR_HEADER_RANGE_OR_EXPR"
msgid "Range or formula expression"
msgstr "범위 또는 수식 표현"
-#: sc/inc/globstr.hrc:421
+#: sc/inc/globstr.hrc:422
msgctxt "STR_HEADER_SCOPE"
msgid "Scope"
msgstr "범위"
-#: sc/inc/globstr.hrc:422
+#: sc/inc/globstr.hrc:423
msgctxt "STR_MULTI_SELECT"
msgid "(multiple)"
msgstr "(다중)"
-#: sc/inc/globstr.hrc:423
+#: sc/inc/globstr.hrc:424
msgctxt "STR_GLOBAL_SCOPE"
msgid "Document (Global)"
msgstr "문서 (전역)"
-#: sc/inc/globstr.hrc:424
+#: sc/inc/globstr.hrc:425
msgctxt "STR_ERR_NAME_EXISTS"
msgid "Invalid name. Already in use for the selected scope."
msgstr "잘못된 이름입니다. 선택된 범위에서 이미 사용되고 있습니다."
-#: sc/inc/globstr.hrc:425
+#: sc/inc/globstr.hrc:426
msgctxt "STR_ERR_NAME_INVALID"
msgid "Invalid name. Only use letters, numbers and underscore."
msgstr "잘못된 이름입니다. 문자, 숫자, 밑줄만 사용할 수 있습니다."
-#: sc/inc/globstr.hrc:426
+#: sc/inc/globstr.hrc:427
msgctxt "STR_UNSAVED_EXT_REF"
msgid ""
"This Document contains external references to unsaved documents.\n"
@@ -2096,217 +2101,217 @@ msgstr ""
"\n"
"계속 진행하시겠습니까? "
-#: sc/inc/globstr.hrc:427
+#: sc/inc/globstr.hrc:428
msgctxt "STR_CLOSE_WITH_UNSAVED_REFS"
msgid "This Document is referenced by another document and not yet saved. Closing it without saving will result in data loss."
msgstr "이 문서는 다른 문서에서 참조되고 있지만 아직 저장되지 않았습니다. 저장하지 않고 종료하면 데이터가 손실됩니다."
-#: sc/inc/globstr.hrc:428
+#: sc/inc/globstr.hrc:429
msgctxt "STR_HEADER_RANGE"
msgid "Range"
msgstr "범위"
-#: sc/inc/globstr.hrc:429
+#: sc/inc/globstr.hrc:430
msgctxt "STR_HEADER_COND"
msgid "First Condition"
msgstr "첫 번째 조건"
-#: sc/inc/globstr.hrc:430
+#: sc/inc/globstr.hrc:431
msgctxt "STR_COND_CONDITION"
msgid "Cell value is"
msgstr "셀 값은"
-#: sc/inc/globstr.hrc:431
+#: sc/inc/globstr.hrc:432
msgctxt "STR_COND_COLORSCALE"
msgid "ColorScale"
msgstr "컬러 스케일"
-#: sc/inc/globstr.hrc:432
+#: sc/inc/globstr.hrc:433
msgctxt "STR_COND_DATABAR"
msgid "DataBar"
msgstr "데이터 막대"
-#: sc/inc/globstr.hrc:433
+#: sc/inc/globstr.hrc:434
msgctxt "STR_COND_ICONSET"
msgid "IconSet"
msgstr "아이콘모음"
-#: sc/inc/globstr.hrc:434
+#: sc/inc/globstr.hrc:435
msgctxt "STR_COND_BETWEEN"
msgid "between"
msgstr "다음 값 사이"
-#: sc/inc/globstr.hrc:435
+#: sc/inc/globstr.hrc:436
msgctxt "STR_COND_NOTBETWEEN"
msgid "not between"
msgstr "지정한 값 이외"
-#: sc/inc/globstr.hrc:436
+#: sc/inc/globstr.hrc:437
msgctxt "STR_COND_UNIQUE"
msgid "unique"
msgstr "고유한"
-#: sc/inc/globstr.hrc:437
+#: sc/inc/globstr.hrc:438
msgctxt "STR_COND_DUPLICATE"
msgid "duplicate"
msgstr "중복"
-#: sc/inc/globstr.hrc:438
+#: sc/inc/globstr.hrc:439
msgctxt "STR_COND_FORMULA"
msgid "Formula is"
msgstr "수식"
-#: sc/inc/globstr.hrc:439
+#: sc/inc/globstr.hrc:440
msgctxt "STR_COND_TOP10"
msgid "Top Elements"
msgstr "상위 요소"
-#: sc/inc/globstr.hrc:440
+#: sc/inc/globstr.hrc:441
msgctxt "STR_COND_BOTTOM10"
msgid "Bottom Elements"
msgstr "하위 요소"
-#: sc/inc/globstr.hrc:441
+#: sc/inc/globstr.hrc:442
msgctxt "STR_COND_TOP_PERCENT"
msgid "Top Percent"
msgstr "상위 퍼센트"
-#: sc/inc/globstr.hrc:442
+#: sc/inc/globstr.hrc:443
msgctxt "STR_COND_DATE"
msgid "Date is"
msgstr "날짜:"
-#: sc/inc/globstr.hrc:443
+#: sc/inc/globstr.hrc:444
msgctxt "STR_COND_BOTTOM_PERCENT"
msgid "Bottom Percent"
msgstr "하위 퍼센트"
-#: sc/inc/globstr.hrc:444
+#: sc/inc/globstr.hrc:445
msgctxt "STR_COND_ABOVE_AVERAGE"
msgid "Above Average"
msgstr "평균 위"
-#: sc/inc/globstr.hrc:445
+#: sc/inc/globstr.hrc:446
msgctxt "STR_COND_BELOW_AVERAGE"
msgid "Below Average"
msgstr "평균 아래"
-#: sc/inc/globstr.hrc:446
+#: sc/inc/globstr.hrc:447
msgctxt "STR_COND_ABOVE_EQUAL_AVERAGE"
msgid "Above or equal Average"
msgstr "평균과 같거나 위"
-#: sc/inc/globstr.hrc:447
+#: sc/inc/globstr.hrc:448
msgctxt "STR_COND_BELOW_EQUAL_AVERAGE"
msgid "Below or equal Average"
msgstr "평균과 같거나 아래"
-#: sc/inc/globstr.hrc:448
+#: sc/inc/globstr.hrc:449
msgctxt "STR_COND_ERROR"
msgid "an Error code"
msgstr "오류 코드"
-#: sc/inc/globstr.hrc:449
+#: sc/inc/globstr.hrc:450
msgctxt "STR_COND_NOERROR"
msgid "not an Error code"
msgstr "오류 코드"
-#: sc/inc/globstr.hrc:450
+#: sc/inc/globstr.hrc:451
msgctxt "STR_COND_BEGINS_WITH"
msgid "Begins with"
msgstr "시작"
-#: sc/inc/globstr.hrc:451
+#: sc/inc/globstr.hrc:452
msgctxt "STR_COND_ENDS_WITH"
msgid "Ends with"
msgstr "마침"
-#: sc/inc/globstr.hrc:452
+#: sc/inc/globstr.hrc:453
msgctxt "STR_COND_CONTAINS"
msgid "Contains"
msgstr "포함"
-#: sc/inc/globstr.hrc:453
+#: sc/inc/globstr.hrc:454
msgctxt "STR_COND_NOT_CONTAINS"
msgid "Not Contains"
msgstr "미포함"
-#: sc/inc/globstr.hrc:454
+#: sc/inc/globstr.hrc:455
msgctxt "STR_COND_TODAY"
msgid "today"
msgstr "오늘"
-#: sc/inc/globstr.hrc:455
+#: sc/inc/globstr.hrc:456
msgctxt "STR_COND_YESTERDAY"
msgid "yesterday"
msgstr "어제"
-#: sc/inc/globstr.hrc:456
+#: sc/inc/globstr.hrc:457
msgctxt "STR_COND_TOMORROW"
msgid "tomorrow"
msgstr "내일"
-#: sc/inc/globstr.hrc:457
+#: sc/inc/globstr.hrc:458
msgctxt "STR_COND_LAST7DAYS"
msgid "in the last 7 days"
msgstr "최근 7일간"
-#: sc/inc/globstr.hrc:458
+#: sc/inc/globstr.hrc:459
msgctxt "STR_COND_THISWEEK"
msgid "this week"
msgstr "이번 주"
-#: sc/inc/globstr.hrc:459
+#: sc/inc/globstr.hrc:460
msgctxt "STR_COND_LASTWEEK"
msgid "last week"
msgstr "지난 주"
-#: sc/inc/globstr.hrc:460
+#: sc/inc/globstr.hrc:461
msgctxt "STR_COND_NEXTWEEK"
msgid "next week"
msgstr "다음 주"
-#: sc/inc/globstr.hrc:461
+#: sc/inc/globstr.hrc:462
msgctxt "STR_COND_THISMONTH"
msgid "this month"
msgstr "이번 달"
-#: sc/inc/globstr.hrc:462
+#: sc/inc/globstr.hrc:463
msgctxt "STR_COND_LASTMONTH"
msgid "last month"
msgstr "지난 달"
-#: sc/inc/globstr.hrc:463
+#: sc/inc/globstr.hrc:464
msgctxt "STR_COND_NEXTMONTH"
msgid "next month"
msgstr "다음 달"
-#: sc/inc/globstr.hrc:464
+#: sc/inc/globstr.hrc:465
msgctxt "STR_COND_THISYEAR"
msgid "this year"
msgstr "올해"
-#: sc/inc/globstr.hrc:465
+#: sc/inc/globstr.hrc:466
msgctxt "STR_COND_LASTYEAR"
msgid "last year"
msgstr "작년"
-#: sc/inc/globstr.hrc:466
+#: sc/inc/globstr.hrc:467
msgctxt "STR_COND_NEXTYEAR"
msgid "next year"
msgstr "내년"
-#: sc/inc/globstr.hrc:467
+#: sc/inc/globstr.hrc:468
msgctxt "STR_COND_AND"
msgid "and"
msgstr "와(과)"
-#: sc/inc/globstr.hrc:468
+#: sc/inc/globstr.hrc:469
msgctxt "STR_ERR_CONDFORMAT_PROTECTED"
msgid "Conditional Formats can not be created, deleted or changed in protected sheets."
msgstr "보호된 시트에서는 조건부 서식을 생성, 삭제, 변경할 수 없습니다."
-#: sc/inc/globstr.hrc:469
+#: sc/inc/globstr.hrc:470
msgctxt "STR_EDIT_EXISTING_COND_FORMATS"
msgid ""
"The selected cell already contains conditional formatting. You can either edit the existing conditional format or you define a new overlapping conditional format.\n"
@@ -2317,7 +2322,7 @@ msgstr ""
"\n"
" 기존 조건부 서식을 편집하겠습니까?"
-#: sc/inc/globstr.hrc:470
+#: sc/inc/globstr.hrc:471
msgctxt "STR_QUERY_FORMULA_RECALC_ONLOAD_ODS"
msgid ""
"This document was last saved by an application other than %PRODUCTNAME. Some formula cells may produce different results when recalculated.\n"
@@ -2328,7 +2333,7 @@ msgstr ""
"\n"
"이 문서의 모든 수식을 재계산하겠습니까?"
-#: sc/inc/globstr.hrc:471
+#: sc/inc/globstr.hrc:472
msgctxt "STR_QUERY_FORMULA_RECALC_ONLOAD_XLS"
msgid ""
"This document was last saved by Excel. Some formula cells may produce different results when recalculated.\n"
@@ -2339,77 +2344,77 @@ msgstr ""
"\n"
"이 문서의 모든 수식을 재계산하겠습니까?"
-#: sc/inc/globstr.hrc:472
+#: sc/inc/globstr.hrc:473
msgctxt "STR_NO_INSERT_DELETE_OVER_PIVOT_TABLE"
msgid "You cannot insert or delete cells when the affected range intersects with pivot table."
msgstr "피벗 테이블과 교차된 영역의 셀에 데이터를 삽입하거나 삭제할 수 없습니다."
-#: sc/inc/globstr.hrc:473
+#: sc/inc/globstr.hrc:474
msgctxt "STR_DPFIELD_GROUP_BY_SECONDS"
msgid "Seconds"
msgstr "초"
-#: sc/inc/globstr.hrc:474
+#: sc/inc/globstr.hrc:475
msgctxt "STR_DPFIELD_GROUP_BY_MINUTES"
msgid "Minutes"
msgstr "분"
-#: sc/inc/globstr.hrc:475
+#: sc/inc/globstr.hrc:476
msgctxt "STR_DPFIELD_GROUP_BY_HOURS"
msgid "Hours"
msgstr "시간"
-#: sc/inc/globstr.hrc:476
+#: sc/inc/globstr.hrc:477
msgctxt "STR_DPFIELD_GROUP_BY_DAYS"
msgid "Days"
msgstr "날짜"
-#: sc/inc/globstr.hrc:477
+#: sc/inc/globstr.hrc:478
msgctxt "STR_DPFIELD_GROUP_BY_MONTHS"
msgid "Months"
msgstr "월"
-#: sc/inc/globstr.hrc:478
+#: sc/inc/globstr.hrc:479
msgctxt "STR_DPFIELD_GROUP_BY_QUARTERS"
msgid "Quarters"
msgstr "분기"
-#: sc/inc/globstr.hrc:479
+#: sc/inc/globstr.hrc:480
msgctxt "STR_DPFIELD_GROUP_BY_YEARS"
msgid "Years"
msgstr "연도"
-#: sc/inc/globstr.hrc:480
+#: sc/inc/globstr.hrc:481
msgctxt "STR_INVALIDVAL"
msgid "Invalid target value."
msgstr "허용되지 않는 목표값."
-#: sc/inc/globstr.hrc:481
+#: sc/inc/globstr.hrc:482
msgctxt "STR_INVALIDVAR"
msgid "Undefined name for variable cell."
msgstr "가변 셀로서 정의되지 않은 이름"
-#: sc/inc/globstr.hrc:482
+#: sc/inc/globstr.hrc:483
msgctxt "STR_INVALIDFORM"
msgid "Undefined name as formula cell."
msgstr "수식 셀로서 정의되지 않은 이름."
-#: sc/inc/globstr.hrc:483
+#: sc/inc/globstr.hrc:484
msgctxt "STR_NOFORMULA"
msgid "Formula cell must contain a formula."
msgstr "수식 셀에는 수식이 포함되어야 합니다."
-#: sc/inc/globstr.hrc:484
+#: sc/inc/globstr.hrc:485
msgctxt "STR_INVALIDINPUT"
msgid "Invalid input."
msgstr "잘못된 입력입니다."
-#: sc/inc/globstr.hrc:485
+#: sc/inc/globstr.hrc:486
msgctxt "STR_INVALIDCONDITION"
msgid "Invalid condition."
msgstr "잘못된 조건입니다."
-#: sc/inc/globstr.hrc:486
+#: sc/inc/globstr.hrc:487
msgctxt "STR_QUERYREMOVE"
msgid ""
"Should the entry\n"
@@ -2420,133 +2425,133 @@ msgstr ""
"#\n"
"을(를) 지우겠습니까?"
-#: sc/inc/globstr.hrc:487
+#: sc/inc/globstr.hrc:488
msgctxt "STR_COPYLIST"
msgid "Copy List"
msgstr "목록 복사"
-#: sc/inc/globstr.hrc:488
+#: sc/inc/globstr.hrc:489
msgctxt "STR_COPYFROM"
msgid "List from"
msgstr "목록 가져오기"
-#: sc/inc/globstr.hrc:489
+#: sc/inc/globstr.hrc:490
msgctxt "STR_COPYERR"
msgid "Cells without text have been ignored."
msgstr "텍스트 없는 셀 무시"
-#: sc/inc/globstr.hrc:490
+#: sc/inc/globstr.hrc:491
#, c-format
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%s-click to follow hyperlink:"
msgstr "%s-클릭하여 다음 링크로 이동:"
-#: sc/inc/globstr.hrc:491
+#: sc/inc/globstr.hrc:492
msgctxt "STR_CLICKHYPERLINK"
msgid "click to open hyperlink:"
msgstr "클릭하여 다음 링크로 이동:"
-#: sc/inc/globstr.hrc:492
+#: sc/inc/globstr.hrc:493
msgctxt "STR_PRINT_PREVIEW_NODATA"
msgid "No Data"
msgstr "데이터 없음"
-#: sc/inc/globstr.hrc:493
+#: sc/inc/globstr.hrc:494
msgctxt "STR_PRINT_PREVIEW_EMPTY_RANGE"
msgid "Print Range Empty"
msgstr "빈 영역 인쇄"
-#: sc/inc/globstr.hrc:494
+#: sc/inc/globstr.hrc:495
msgctxt "STR_UNDO_CONDFORMAT"
msgid "Conditional Format"
msgstr "조건부 서식"
-#: sc/inc/globstr.hrc:495
+#: sc/inc/globstr.hrc:496
msgctxt "STR_UNDO_CONDFORMAT_LIST"
msgid "Conditional Formats"
msgstr "조건부 서식"
-#: sc/inc/globstr.hrc:496
+#: sc/inc/globstr.hrc:497
msgctxt "STR_UNDO_FORMULA_TO_VALUE"
msgid "Convert Formula To Value"
msgstr "수식을 값으로 변환"
-#: sc/inc/globstr.hrc:497
+#: sc/inc/globstr.hrc:498
msgctxt "STR_UNQUOTED_STRING"
msgid "Strings without quotes are interpreted as column/row labels."
msgstr "따옴표없는 문자열은 열/행 레이블로 취급합니다."
-#: sc/inc/globstr.hrc:498
+#: sc/inc/globstr.hrc:499
msgctxt "STR_ENTER_VALUE"
msgid "Enter a value!"
msgstr "값을 입력 하십시오!"
-#: sc/inc/globstr.hrc:499
+#: sc/inc/globstr.hrc:500
msgctxt "STR_TABLE_COUNT"
msgid "Sheet %1 of %2"
msgstr "%1 / %2 시트"
-#: sc/inc/globstr.hrc:500
+#: sc/inc/globstr.hrc:501
msgctxt "STR_FUNCTIONS_FOUND"
msgid "%1 and %2 more"
msgstr "%1와(과) %2 추가"
-#: sc/inc/globstr.hrc:501
+#: sc/inc/globstr.hrc:502
msgctxt "STR_GENERAL"
msgid "General"
msgstr "일반"
-#: sc/inc/globstr.hrc:502
+#: sc/inc/globstr.hrc:503
msgctxt "STR_NUMBER"
msgid "Number"
msgstr "숫자"
-#: sc/inc/globstr.hrc:503
+#: sc/inc/globstr.hrc:504
msgctxt "STR_PERCENT"
msgid "Percent"
msgstr "백분율"
-#: sc/inc/globstr.hrc:504
+#: sc/inc/globstr.hrc:505
msgctxt "STR_CURRENCY"
msgid "Currency"
msgstr "통화"
-#: sc/inc/globstr.hrc:505
+#: sc/inc/globstr.hrc:506
msgctxt "STR_DATE"
msgid "Date"
msgstr "날짜"
-#: sc/inc/globstr.hrc:506
+#: sc/inc/globstr.hrc:507
msgctxt "STR_TIME"
msgid "Time"
msgstr "시간"
-#: sc/inc/globstr.hrc:507
+#: sc/inc/globstr.hrc:508
msgctxt "STR_SCIENTIFIC"
msgid "Scientific"
msgstr "정밀"
-#: sc/inc/globstr.hrc:508
+#: sc/inc/globstr.hrc:509
msgctxt "STR_FRACTION"
msgid "Fraction"
msgstr "분수"
-#: sc/inc/globstr.hrc:509
+#: sc/inc/globstr.hrc:510
msgctxt "STR_BOOLEAN_VALUE"
msgid "Boolean Value"
msgstr "논리 값"
-#: sc/inc/globstr.hrc:510
+#: sc/inc/globstr.hrc:511
msgctxt "STR_TEXT"
msgid "Text"
msgstr "텍스트"
-#: sc/inc/globstr.hrc:511
+#: sc/inc/globstr.hrc:512
msgctxt "STR_QUERY_PIVOTTABLE_DELTAB"
msgid "The selected sheet(s) contain source data of related pivot tables that will be lost. Are you sure you want to delete the selected sheet(s)?"
msgstr "선택한 시트의 데이터를 사용하는 피벗 테이블이 있습니다. 선택한 시트를 삭제하면 해당 테이블을 사용할 수 없습니다. 계속하겠습니까?"
-#: sc/inc/globstr.hrc:512
+#: sc/inc/globstr.hrc:513
msgctxt "STR_ERR_NAME_INVALID_CELL_REF"
msgid "Invalid name. Reference to a cell, or a range of cells not allowed."
msgstr "잘못된 이름. 셀 참조, 또는 셀 범위는 허용되지 않습니다."
@@ -10488,8 +10493,8 @@ msgstr "모드"
#: sc/inc/scfuncs.hrc:3010
msgctxt "SC_OPCODE_T_TEST"
-msgid "Mode specifies the number of distribution tails to return. 1= one-tailed, 2 = two-tailed distribution"
-msgstr "모드에서는 구할 분포 수를 지정합니다. 1 = 단측 검증, 2 = 양측 검증"
+msgid "Mode specifies the number of distribution tails to return. 1 = one-tailed, 2 = two-tailed distribution"
+msgstr ""
#: sc/inc/scfuncs.hrc:3011
msgctxt "SC_OPCODE_T_TEST"
@@ -10533,8 +10538,8 @@ msgstr "모드"
#: sc/inc/scfuncs.hrc:3024
msgctxt "SC_OPCODE_T_TEST_MS"
-msgid "Mode specifies the number of distribution tails to return. 1= one-tailed, 2 = two-tailed distribution"
-msgstr "모드에서는 구할 분포 수를 지정합니다. 1 = 단측 검증, 2 = 양측 검증"
+msgid "Mode specifies the number of distribution tails to return. 1 = one-tailed, 2 = two-tailed distribution"
+msgstr ""
#: sc/inc/scfuncs.hrc:3025
msgctxt "SC_OPCODE_T_TEST_MS"
@@ -18020,22 +18025,22 @@ msgctxt "mergecellsdialog|MergeCellsDialog"
msgid "Merge Cells"
msgstr "셀 병합"
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:81
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:84
msgctxt "mergecellsdialog|label"
msgid "Some cells are not empty."
msgstr "일부 셀이 비어있지 않습니다."
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:96
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:99
msgctxt "mergecellsdialog|move-cells-radio"
msgid "Move the contents of the hidden cells into the first cell"
msgstr "숨겨진 셀의 내용을 첫 번째 셀로 이동합니다."
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:112
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:115
msgctxt "mergecellsdialog|empty-cells-radio"
msgid "Empty the contents of the hidden cells"
msgstr "숨겨진 셀의 내용 비우기"
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:128
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:131
msgctxt "mergecellsdialog|keep-content-radio"
msgid "Keep the contents of the hidden cells"
msgstr "숨겨진 셀의 내용 유지"
diff --git a/source/ko/sd/messages.po b/source/ko/sd/messages.po
index 0ff7c6da2f9..0bb89495f63 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2018-05-19 23:01+0000\n"
"Last-Translator: Jihui Choi <jihui.choi@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -16,167 +16,167 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1526770912.000000\n"
-#: sd/inc/DocumentRenderer.hrc:29
+#: sd/inc/DocumentRenderer.hrc:27
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Slides"
msgstr "슬라이드"
-#: sd/inc/DocumentRenderer.hrc:30
+#: sd/inc/DocumentRenderer.hrc:28
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Handouts"
msgstr "인쇄물"
-#: sd/inc/DocumentRenderer.hrc:31
+#: sd/inc/DocumentRenderer.hrc:29
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Notes"
msgstr "메모"
-#: sd/inc/DocumentRenderer.hrc:32
+#: sd/inc/DocumentRenderer.hrc:30
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Outline"
msgstr "개요"
-#: sd/inc/DocumentRenderer.hrc:37
+#: sd/inc/DocumentRenderer.hrc:35
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "According to layout"
msgstr "레이아웃에 따르기"
-#: sd/inc/DocumentRenderer.hrc:38
+#: sd/inc/DocumentRenderer.hrc:36
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "1"
msgstr "1"
-#: sd/inc/DocumentRenderer.hrc:39
+#: sd/inc/DocumentRenderer.hrc:37
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "2"
msgstr "2"
-#: sd/inc/DocumentRenderer.hrc:40
+#: sd/inc/DocumentRenderer.hrc:38
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "3"
msgstr "3"
-#: sd/inc/DocumentRenderer.hrc:41
+#: sd/inc/DocumentRenderer.hrc:39
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "4"
msgstr "4"
-#: sd/inc/DocumentRenderer.hrc:42
+#: sd/inc/DocumentRenderer.hrc:40
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "6"
msgstr "6"
-#: sd/inc/DocumentRenderer.hrc:43
+#: sd/inc/DocumentRenderer.hrc:41
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "9"
msgstr "9"
-#: sd/inc/DocumentRenderer.hrc:48
+#: sd/inc/DocumentRenderer.hrc:46
msgctxt "STR_IMPRESS_PRINT_UI_ORDER_CHOICES"
msgid "Left to right, then down"
msgstr "왼쪽에서 오른쪽으로, 그리고 아래쪽으로"
-#: sd/inc/DocumentRenderer.hrc:49
+#: sd/inc/DocumentRenderer.hrc:47
msgctxt "STR_IMPRESS_PRINT_UI_ORDER_CHOICES"
msgid "Top to bottom, then right"
msgstr "위쪽에서 아래쪽으로, 그리고 오른쪽으로"
-#: sd/inc/DocumentRenderer.hrc:54
+#: sd/inc/DocumentRenderer.hrc:52
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Original colors"
msgstr "원래 색상"
-#: sd/inc/DocumentRenderer.hrc:55
+#: sd/inc/DocumentRenderer.hrc:53
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Grayscale"
msgstr "회색조"
-#: sd/inc/DocumentRenderer.hrc:56
+#: sd/inc/DocumentRenderer.hrc:54
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Black & white"
msgstr "흑백"
-#: sd/inc/DocumentRenderer.hrc:61
+#: sd/inc/DocumentRenderer.hrc:59
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Original size"
msgstr "원래 크기"
-#: sd/inc/DocumentRenderer.hrc:62
+#: sd/inc/DocumentRenderer.hrc:60
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Fit to printable page"
msgstr "인쇄 가능한 페이지에 맞춤"
-#: sd/inc/DocumentRenderer.hrc:63
+#: sd/inc/DocumentRenderer.hrc:61
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Distribute on multiple sheets of paper"
msgstr "여러 용지로 나누기"
-#: sd/inc/DocumentRenderer.hrc:64
+#: sd/inc/DocumentRenderer.hrc:62
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Tile sheet of paper with repeated slides"
msgstr "반복되는 슬라이드를 바둑판식으로 배열"
-#: sd/inc/DocumentRenderer.hrc:69
+#: sd/inc/DocumentRenderer.hrc:67
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Original size"
msgstr "원래 크기"
-#: sd/inc/DocumentRenderer.hrc:70
+#: sd/inc/DocumentRenderer.hrc:68
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Fit to printable page"
msgstr "인쇄 가능한 페이지에 맞춤"
-#: sd/inc/DocumentRenderer.hrc:71
+#: sd/inc/DocumentRenderer.hrc:69
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Distribute on multiple sheets of paper"
msgstr "여러 용지로 나누기"
-#: sd/inc/DocumentRenderer.hrc:72
+#: sd/inc/DocumentRenderer.hrc:70
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Tile sheet of paper with repeated pages"
msgstr "반복되는 페이지를 바둑판식으로 배열"
-#: sd/inc/DocumentRenderer.hrc:77
+#: sd/inc/DocumentRenderer.hrc:75
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "All pages"
msgstr "모든 페이지"
-#: sd/inc/DocumentRenderer.hrc:78
+#: sd/inc/DocumentRenderer.hrc:76
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "Front sides / right pages"
msgstr "앞면 / 오른쪽 페이지"
-#: sd/inc/DocumentRenderer.hrc:79
+#: sd/inc/DocumentRenderer.hrc:77
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "Back sides / left pages"
msgstr "뒷면 / 왼쪽 페이지"
-#: sd/inc/DocumentRenderer.hrc:84
+#: sd/inc/DocumentRenderer.hrc:82
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~All slides"
msgstr "모든 슬라이드(~A)"
-#: sd/inc/DocumentRenderer.hrc:85
+#: sd/inc/DocumentRenderer.hrc:83
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~Slides"
msgstr "슬라이드(~S)"
-#: sd/inc/DocumentRenderer.hrc:86
+#: sd/inc/DocumentRenderer.hrc:84
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Se~lection"
msgstr "선택(~L)"
-#: sd/inc/DocumentRenderer.hrc:91
+#: sd/inc/DocumentRenderer.hrc:89
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~All pages"
msgstr "모든 페이지(~A)"
-#: sd/inc/DocumentRenderer.hrc:92
+#: sd/inc/DocumentRenderer.hrc:90
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Pa~ges"
msgstr "페이지(~G)"
-#: sd/inc/DocumentRenderer.hrc:93
+#: sd/inc/DocumentRenderer.hrc:91
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Se~lection"
msgstr "선택(~L)"
diff --git a/source/ko/svx/messages.po b/source/ko/svx/messages.po
index 3c783079560..49f5addc981 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: 2018-05-16 16:53+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2018-05-19 23:03+0000\n"
"Last-Translator: Jihui Choi <jihui.choi@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5179,8 +5179,8 @@ msgstr "버그 보고서에 사용자 프로필 정보의 일부를 포함시킬
#: svx/uiconfig/ui/safemodedialog.ui:432
msgctxt "safemodedialog|btn_create_zip"
-msgid "Create Zip Archive from User Profile"
-msgstr "사용자 프로필을 Zip으로 압축하기"
+msgid "Archive User Profile"
+msgstr ""
#: svx/uiconfig/ui/safemodedialog.ui:445
msgctxt "safemodedialog|linkbutton_profile"
@@ -8769,9 +8769,9 @@ msgid "Red"
msgstr "적색"
#: include/svx/strings.hrc:565
-msgctxt "RID_SVXSTR_COLOR_VIOLET"
-msgid "Violet"
-msgstr "보라색"
+msgctxt "RID_SVXSTR_COLOR_MAGENTA"
+msgid "Magenta"
+msgstr "자홍"
#: include/svx/strings.hrc:566
msgctxt "RID_SVXSTR_COLOR_PURPLE"
@@ -8835,9 +8835,9 @@ msgid "Light Red"
msgstr "연한 빨강"
#: include/svx/strings.hrc:579
-msgctxt "RID_SVXSTR_COLOR_LIGHTVIOLET"
-msgid "Light Violet"
-msgstr "밝은 보라색"
+msgctxt "RID_SVXSTR_COLOR_LIGHTMAGENTA"
+msgid "Light Magenta"
+msgstr ""
#: include/svx/strings.hrc:580
msgctxt "RID_SVXSTR_COLOR_LIGHTPURPLE"
@@ -8901,9 +8901,9 @@ msgid "Dark Red"
msgstr "어두운 빨간색"
#: include/svx/strings.hrc:593
-msgctxt "RID_SVXSTR_COLOR_DARKVIOLET1"
-msgid "Dark Violet"
-msgstr "어두운 보라색"
+msgctxt "RID_SVXSTR_COLOR_DARKMAGENTA"
+msgid "Dark Magenta"
+msgstr ""
#: include/svx/strings.hrc:594
msgctxt "RID_SVXSTR_COLOR_DARKPURPLE"
@@ -8937,55 +8937,55 @@ msgstr "어두운 라임색"
#. Elements of the Tonal color palette
#: include/svx/strings.hrc:601
+msgctxt "RID_SVXSTR_COLOR_VIOLET"
+msgid "Violet"
+msgstr "보라색"
+
+#: include/svx/strings.hrc:602
msgctxt "RID_SVXSTR_COLOR_VIOLET_OUG"
msgid "Violet (Out of Gamut)"
msgstr "보라색(색영역 외)"
-#: include/svx/strings.hrc:602
+#: include/svx/strings.hrc:603
msgctxt "RID_SVXSTR_COLOR_BLUE_OUG"
msgid "Blue (Out of Gamut)"
msgstr "파란색(색영역 외)"
-#: include/svx/strings.hrc:603
+#: include/svx/strings.hrc:604
msgctxt "RID_SVXSTR_COLOR_AZURE_OUG"
msgid "Azure (Out of Gamut)"
msgstr "담청색(색영역 외)"
-#: include/svx/strings.hrc:604
+#: include/svx/strings.hrc:605
msgctxt "RID_SVXSTR_COLOR_SPRINGGREEN_OUG"
msgid "Spring Green (Out of Gamut)"
msgstr "풀색(색영역 외)"
-#: include/svx/strings.hrc:605
+#: include/svx/strings.hrc:606
msgctxt "RID_SVXSTR_COLOR_GREEN_OUG"
msgid "Green (Out of Gamut)"
msgstr "녹색(색영역 외)"
-#: include/svx/strings.hrc:606
+#: include/svx/strings.hrc:607
msgctxt "RID_SVXSTR_COLOR_CHARTREUSEGREEN_OUG"
msgid "Chartreuse Green (Out of Gamut)"
msgstr "밝은 황록색(색영역 외)"
-#: include/svx/strings.hrc:607
+#: include/svx/strings.hrc:608
msgctxt "RID_SVXSTR_COLOR_ORANGE_OUG"
msgid "Orange (Out of Gamut)"
msgstr "주황색(색영역 외)"
-#: include/svx/strings.hrc:608
+#: include/svx/strings.hrc:609
msgctxt "RID_SVXSTR_COLOR_RED_OUG"
msgid "Red (Out of Gamut)"
msgstr "빨간색(색영역 외)"
-#: include/svx/strings.hrc:609
+#: include/svx/strings.hrc:610
msgctxt "RID_SVXSTR_COLOR_ROSE_OUG"
msgid "Rose (Out of Gamut)"
msgstr "장미색(색영역 외)"
-#: include/svx/strings.hrc:610
-msgctxt "RID_SVXSTR_COLOR_MAGENTA"
-msgid "Magenta"
-msgstr "자홍"
-
#: include/svx/strings.hrc:611
msgctxt "RID_SVXSTR_COLOR_AZURE"
msgid "Azure"
@@ -12096,13 +12096,13 @@ msgstr "오른쪽 화살표 글머리 기호"
#: include/svx/strings.hrc:1273
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_6"
-msgid "Check mark bullets"
-msgstr "체크 표시 글머리 기호"
+msgid "Cross mark bullets"
+msgstr ""
#: include/svx/strings.hrc:1274
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_7"
-msgid "Tick mark bullets"
-msgstr "눈금 표시 글머리 기호"
+msgid "Check mark bullets"
+msgstr ""
#: include/svx/strings.hrc:1275
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_0"
diff --git a/source/ko/sw/messages.po b/source/ko/sw/messages.po
index a9e29c7d2b6..5b3f696d5d0 100644
--- a/source/ko/sw/messages.po
+++ b/source/ko/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: 2018-05-22 13:17+0200\n"
+"POT-Creation-Date: 2018-06-12 14:41+0200\n"
"PO-Revision-Date: 2018-05-19 23:06+0000\n"
"Last-Translator: Jihui Choi <jihui.choi@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1180,13 +1180,13 @@ msgstr "인영구"
#: sw/inc/strings.hrc:172
msgctxt "STR_POOLCOLL_TOX_ILLUSH"
-msgid "Illustration Index Heading"
-msgstr "삽화 색인 제목"
+msgid "Figure Index Heading"
+msgstr ""
#: sw/inc/strings.hrc:173
msgctxt "STR_POOLCOLL_TOX_ILLUS1"
-msgid "Illustration Index 1"
-msgstr "삽화 색인 1"
+msgid "Figure Index 1"
+msgstr ""
#: sw/inc/strings.hrc:174
msgctxt "STR_POOLCOLL_TOX_OBJECTH"
@@ -3590,8 +3590,8 @@ msgstr "개체 표"
#: sw/inc/strings.hrc:672
msgctxt "STR_TOX_ILL"
-msgid "Illustration Index"
-msgstr "삽화 색인"
+msgid "Table of Figures"
+msgstr ""
#: sw/inc/strings.hrc:673
#, c-format
@@ -9244,72 +9244,72 @@ msgctxt "footnotepage|label5"
msgid "Continuation Notice"
msgstr "계속 시 주의 표시"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:49
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:55
msgctxt "footnotesendnotestabpage|ftnntnum"
msgid "_Restart numbering"
msgstr "번호 다시 매기기(_R)"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:91
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:93
msgctxt "footnotesendnotestabpage|ftnoffset_label"
msgid "_Start at:"
msgstr "시작(_S):"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:112
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:111
msgctxt "footnotesendnotestabpage|ftnntnumfmt"
msgid "Custom _format"
msgstr "사용자 지정 형식(_F)"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:155
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:150
msgctxt "footnotesendnotestabpage|ftnsuffix_label"
msgid "Aft_er:"
msgstr "이후(_E):"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:199
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:188
msgctxt "footnotesendnotestabpage|ftnprefix_label"
msgid "Be_fore:"
msgstr "전에(_F):"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:228
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:212
msgctxt "footnotesendnotestabpage|ftnntattextend"
msgid "Collec_t at end of text"
msgstr "텍스트 끝에 모으기(_T)"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:252
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:234
msgctxt "footnotesendnotestabpage|label1"
msgid "Footnotes"
msgstr "각주"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:289
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:271
msgctxt "footnotesendnotestabpage|endntattextend"
msgid "C_ollect at end of section"
msgstr "구역 끝에 모아두기(_O)"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:315
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:295
msgctxt "footnotesendnotestabpage|endntnum"
msgid "_Restart numbering"
msgstr "번호 다시 매기기(_R)"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:357
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:333
msgctxt "footnotesendnotestabpage|endoffset_label"
msgid "_Start at:"
msgstr "시작(_S):"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:378
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:351
msgctxt "footnotesendnotestabpage|endntnumfmt"
msgid "_Custom format"
msgstr "사용자 지정 형식(_C)"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:421
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:390
msgctxt "footnotesendnotestabpage|endsuffix_label"
msgid "Aft_er:"
msgstr "이후(_E):"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:465
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:428
msgctxt "footnotesendnotestabpage|endprefix_label"
msgid "Be_fore:"
msgstr "전에(_F):"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:500
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:458
msgctxt "footnotesendnotestabpage|label2"
msgid "Endnotes"
msgstr "미주"
@@ -9339,27 +9339,27 @@ msgctxt "formatsectiondialog|notes"
msgid "Footnotes/Endnotes"
msgstr "각주/미주"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:63
+#: sw/uiconfig/swriter/ui/formattablepage.ui:77
msgctxt "formattablepage|nameft"
msgid "_Name"
msgstr "이름(_N)"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:79
+#: sw/uiconfig/swriter/ui/formattablepage.ui:91
msgctxt "formattablepage|widthft"
msgid "W_idth"
msgstr "너비(_I)"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:110
+#: sw/uiconfig/swriter/ui/formattablepage.ui:120
msgctxt "formattablepage|relwidth"
msgid "Relati_ve"
msgstr "비례(_V)"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:155
+#: sw/uiconfig/swriter/ui/formattablepage.ui:160
msgctxt "formattablepage|label45"
msgid "Properties"
msgstr "속성"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:194
+#: sw/uiconfig/swriter/ui/formattablepage.ui:195
msgctxt "formattablepage|leftft"
msgid "Lef_t"
msgstr "왼쪽(_T)"
@@ -9369,62 +9369,62 @@ msgctxt "formattablepage|rightft"
msgid "Ri_ght"
msgstr "오른쪽(_G)"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:228
+#: sw/uiconfig/swriter/ui/formattablepage.ui:226
msgctxt "formattablepage|aboveft"
msgid "_Above"
msgstr "위(_A)"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:245
+#: sw/uiconfig/swriter/ui/formattablepage.ui:241
msgctxt "formattablepage|belowft"
msgid "_Below"
msgstr "아래(_B)"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:320
+#: sw/uiconfig/swriter/ui/formattablepage.ui:311
msgctxt "formattablepage|label46"
msgid "Spacing"
msgstr "간격"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:362
+#: sw/uiconfig/swriter/ui/formattablepage.ui:349
msgctxt "formattablepage|full"
msgid "A_utomatic"
msgstr "자동(_U)"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:380
+#: sw/uiconfig/swriter/ui/formattablepage.ui:365
msgctxt "formattablepage|left"
msgid "_Left"
msgstr "왼쪽 맞춤(_L)"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:398
+#: sw/uiconfig/swriter/ui/formattablepage.ui:381
msgctxt "formattablepage|fromleft"
msgid "_From left"
msgstr "왼쪽에서부터(_F)"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:416
+#: sw/uiconfig/swriter/ui/formattablepage.ui:397
msgctxt "formattablepage|right"
msgid "R_ight"
msgstr "오른쪽(_I)"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:435
+#: sw/uiconfig/swriter/ui/formattablepage.ui:413
msgctxt "formattablepage|center"
msgid "_Center"
msgstr "가운데(_C)"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:453
+#: sw/uiconfig/swriter/ui/formattablepage.ui:429
msgctxt "formattablepage|free"
msgid "_Manual"
msgstr "수동(_M)"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:478
+#: sw/uiconfig/swriter/ui/formattablepage.ui:452
msgctxt "formattablepage|label43"
msgid "Alignment"
msgstr "맞춤"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:522
+#: sw/uiconfig/swriter/ui/formattablepage.ui:491
msgctxt "formattablepage|label53"
msgid "Text _direction"
msgstr "텍스트 방향(_D)"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:553
+#: sw/uiconfig/swriter/ui/formattablepage.ui:519
msgctxt "formattablepage|label44"
msgid "Properties "
msgstr "속성 "
@@ -9779,22 +9779,27 @@ msgctxt "headerfootermenu|insert_pagenumber"
msgid "Insert Page Number"
msgstr "페이지 번호 삽입"
-#: sw/uiconfig/swriter/ui/indentpage.ui:52
+#: sw/uiconfig/swriter/ui/headerfootermenu.ui:42
+msgctxt "headerfootermenu|insert_pagecount"
+msgid "Insert Page Count"
+msgstr ""
+
+#: sw/uiconfig/swriter/ui/indentpage.ui:57
msgctxt "indentpage|label1"
msgid "_Before section"
msgstr "구역 전(_B)"
-#: sw/uiconfig/swriter/ui/indentpage.ui:67
+#: sw/uiconfig/swriter/ui/indentpage.ui:71
msgctxt "indentpage|label3"
msgid "_After section"
msgstr "구역 뒤에(_A)"
-#: sw/uiconfig/swriter/ui/indentpage.ui:113
+#: sw/uiconfig/swriter/ui/indentpage.ui:115
msgctxt "indentpage|label2"
msgid "Indent"
msgstr "들여쓰기"
-#: sw/uiconfig/swriter/ui/indentpage.ui:142
+#: sw/uiconfig/swriter/ui/indentpage.ui:155
msgctxt "indentpage|preview-atkobject"
msgid "Example"
msgstr "예제"
@@ -13285,8 +13290,8 @@ msgstr "양식 보호"
#: sw/uiconfig/swriter/ui/optcompatpage.ui:68
msgctxt "optcompatpage|format"
-msgid "MS Word-compatible trailing blanks"
-msgstr "MS Word 호환 후행 공백"
+msgid "Word-compatible trailing blanks"
+msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:69
msgctxt "optcompatpage|format"
@@ -13295,7 +13300,7 @@ msgstr "이전 문서와의 호환성을 위해 PDF 페이지 배경에 빈 줄
#: sw/uiconfig/swriter/ui/optcompatpage.ui:70
msgctxt "optcompatpage|format"
-msgid "A database field (e.g., MailMerge) with empty value hides its paragraph"
+msgid "Hide paragraphs of database fields (e.g., mail merge) with an empty value"
msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:71
@@ -15981,122 +15986,122 @@ msgctxt "tableproperties|background"
msgid "Background"
msgstr "배경"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:25
-msgctxt "tabletextflowpage|liststore1"
-msgid "Horizontal"
-msgstr "수평"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:29
-msgctxt "tabletextflowpage|liststore1"
-msgid "Vertical"
-msgstr "수직"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:33
-msgctxt "tabletextflowpage|liststore1"
-msgid "Use superordinate object settings"
-msgstr "현재 문자 방향의 설정을 적용"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:47
-msgctxt "tabletextflowpage|liststore2"
-msgid "Top"
-msgstr "위쪽"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:51
-msgctxt "tabletextflowpage|liststore2"
-msgid "Centered"
-msgstr "가운데"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:55
-msgctxt "tabletextflowpage|liststore2"
-msgid "Bottom"
-msgstr "아래쪽"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:97
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:53
msgctxt "tabletextflowpage|break"
msgid "_Break"
msgstr "중단(_B)"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:112
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:68
msgctxt "tabletextflowpage|page"
msgid "_Page"
msgstr "페이지(_P)"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:132
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:87
msgctxt "tabletextflowpage|column"
msgid "Col_umn"
msgstr "열(_U)"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:151
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:106
msgctxt "tabletextflowpage|before"
msgid "Be_fore"
msgstr "전에(_F)"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:171
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:125
msgctxt "tabletextflowpage|after"
msgid "_After"
msgstr "이후(_A)"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:203
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:158
msgctxt "tabletextflowpage|pagestyle"
msgid "With Page St_yle"
msgstr "페이지 스타일과 함께(_Y)"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:224
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:177
msgctxt "tabletextflowpage|pagenoft"
msgid "Page _number"
msgstr "페이지 번호(_N)"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:257
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:213
msgctxt "tabletextflowpage|pagestylelb-atkobject"
msgid "With Page Style"
msgstr "페이지 스타일과 함께"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:274
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:230
msgctxt "tabletextflowpage|split"
msgid "Allow _table to split across pages and columns"
msgstr "여러 페이지와 단에 걸쳐 표 나누기 허용(_T)"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:289
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:245
msgctxt "tabletextflowpage|splitrow"
msgid "Allow row to break a_cross pages and columns"
msgstr "페이지와 단에 걸쳐 행 나누기 허용(_C)"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:306
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:262
msgctxt "tabletextflowpage|keep"
msgid "_Keep with next paragraph"
msgstr "현재 단락과 다음 단락을 같은 페이지에 배치(_K)"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:328
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:284
msgctxt "tabletextflowpage|label40"
msgid "Text _orientation"
msgstr "텍스트 방향(_O)"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:361
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:298
+msgctxt "tabletextflowpage|liststore1"
+msgid "Horizontal"
+msgstr "수평"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:299
+msgctxt "tabletextflowpage|liststore1"
+msgid "Vertical"
+msgstr "수직"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:300
+msgctxt "tabletextflowpage|liststore1"
+msgid "Use superordinate object settings"
+msgstr "현재 문자 방향의 설정을 적용"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:321
msgctxt "tabletextflowpage|headline"
msgid "R_epeat heading"
msgstr "제목 반복(_E)"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:383
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:343
msgctxt "tabletextflowpage|label38"
msgid "The first "
msgstr "처음 "
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:396
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:356
msgctxt "tabletextflowpage|label39"
msgid "rows"
msgstr "행"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:434
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:395
msgctxt "tabletextflowpage|label35"
msgid "Text Flow"
msgstr "텍스트 흐름"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:467
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:428
msgctxt "tabletextflowpage|label41"
msgid "_Vertical alignment"
msgstr "세로 맞춤(_V)"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:495
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:442
+msgctxt "tabletextflowpage|liststore2"
+msgid "Top"
+msgstr "위쪽"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:443
+msgctxt "tabletextflowpage|liststore2"
+msgid "Centered"
+msgstr "가운데"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:444
+msgctxt "tabletextflowpage|liststore2"
+msgid "Bottom"
+msgstr "아래쪽"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:460
msgctxt "tabletextflowpage|label36"
msgid "Alignment"
msgstr "맞춤"
@@ -16878,8 +16883,8 @@ msgstr "알파벳순 색인"
#: sw/uiconfig/swriter/ui/tocindexpage.ui:58
msgctxt "tocindexpage|liststore1"
-msgid "Illustration Index"
-msgstr "삽화 색인"
+msgid "Table of Figures"
+msgstr ""
#: sw/uiconfig/swriter/ui/tocindexpage.ui:62
msgctxt "tocindexpage|liststore1"
diff --git a/source/ko/writerperfect/messages.po b/source/ko/writerperfect/messages.po
index 929fd9c79d7..a6b4fcec2ac 100644
--- a/source/ko/writerperfect/messages.po
+++ b/source/ko/writerperfect/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-16 16:54+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2018-05-19 23:07+0000\n"
"Last-Translator: Jihui Choi <jihui.choi@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -66,97 +66,97 @@ msgctxt "exportepub|generalft"
msgid "General"
msgstr "일반"
-#: writerperfect/uiconfig/ui/exportepub.ui:122
+#: writerperfect/uiconfig/ui/exportepub.ui:121
msgctxt "exportepub|versionft"
msgid "Version:"
msgstr "버전:"
-#: writerperfect/uiconfig/ui/exportepub.ui:139
+#: writerperfect/uiconfig/ui/exportepub.ui:138
msgctxt "exportepub|epub3"
msgid "EPUB 3.0"
msgstr "EPUB 3.0"
-#: writerperfect/uiconfig/ui/exportepub.ui:140
+#: writerperfect/uiconfig/ui/exportepub.ui:139
msgctxt "exportepub|epub2"
msgid "EPUB 2.0"
msgstr "EPUB 2.0"
-#: writerperfect/uiconfig/ui/exportepub.ui:175
+#: writerperfect/uiconfig/ui/exportepub.ui:174
msgctxt "exportepub|splitft"
msgid "Split method:"
msgstr "분할 방식:"
-#: writerperfect/uiconfig/ui/exportepub.ui:192
+#: writerperfect/uiconfig/ui/exportepub.ui:191
msgctxt "exportepub|splitpage"
msgid "Page break"
msgstr "페이지 나누기(~P)"
-#: writerperfect/uiconfig/ui/exportepub.ui:193
+#: writerperfect/uiconfig/ui/exportepub.ui:192
msgctxt "exportepub|splitheading"
msgid "Heading"
msgstr "제목"
-#: writerperfect/uiconfig/ui/exportepub.ui:228
+#: writerperfect/uiconfig/ui/exportepub.ui:227
msgctxt "exportepub|layoutft"
msgid "Layout method:"
msgstr "레이아웃 방식:"
-#: writerperfect/uiconfig/ui/exportepub.ui:245
+#: writerperfect/uiconfig/ui/exportepub.ui:244
msgctxt "exportepub|layoutreflowable"
msgid "Reflowable"
msgstr "자동공간조정"
-#: writerperfect/uiconfig/ui/exportepub.ui:246
+#: writerperfect/uiconfig/ui/exportepub.ui:245
msgctxt "exportepub|layoutfixed"
msgid "Fixed"
msgstr "고정"
-#: writerperfect/uiconfig/ui/exportepub.ui:281
+#: writerperfect/uiconfig/ui/exportepub.ui:280
msgctxt "exportepub|coverimageft"
msgid "Custom cover image:"
msgstr "사용자 지정 커버 이미지:"
-#: writerperfect/uiconfig/ui/exportepub.ui:311
+#: writerperfect/uiconfig/ui/exportepub.ui:310
msgctxt "exportepub|coverbutton"
msgid "Browse..."
msgstr "찾아보기..."
-#: writerperfect/uiconfig/ui/exportepub.ui:355
+#: writerperfect/uiconfig/ui/exportepub.ui:354
msgctxt "exportepub|mediadirft"
msgid "Custom media directory:"
msgstr "사용자 지정 미디어 디렉터리:"
-#: writerperfect/uiconfig/ui/exportepub.ui:385
+#: writerperfect/uiconfig/ui/exportepub.ui:384
msgctxt "exportepub|mediabutton"
msgid "Browse..."
msgstr "찾아보기..."
-#: writerperfect/uiconfig/ui/exportepub.ui:429
+#: writerperfect/uiconfig/ui/exportepub.ui:428
msgctxt "exportepub|metadataft"
msgid "Metadata"
msgstr "메타 데이터"
-#: writerperfect/uiconfig/ui/exportepub.ui:470
+#: writerperfect/uiconfig/ui/exportepub.ui:468
msgctxt "exportepub|identifierft"
msgid "Identifier:"
msgstr "식별자:"
-#: writerperfect/uiconfig/ui/exportepub.ui:485
+#: writerperfect/uiconfig/ui/exportepub.ui:483
msgctxt "exportepub|titleft"
msgid "Title:"
msgstr "제목:"
-#: writerperfect/uiconfig/ui/exportepub.ui:511
+#: writerperfect/uiconfig/ui/exportepub.ui:509
msgctxt "exportepub|authorft"
msgid "Author:"
msgstr "작성자:"
-#: writerperfect/uiconfig/ui/exportepub.ui:537
+#: writerperfect/uiconfig/ui/exportepub.ui:535
msgctxt "exportepub|languageft"
msgid "Language:"
msgstr "언어:"
-#: writerperfect/uiconfig/ui/exportepub.ui:563
+#: writerperfect/uiconfig/ui/exportepub.ui:561
msgctxt "exportepub|dateft"
msgid "Date:"
msgstr "날짜:"
diff --git a/source/kok/cui/messages.po b/source/kok/cui/messages.po
index cef8b65494d..0a0a3d09da9 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+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"
@@ -10461,106 +10461,106 @@ msgctxt "positionsizedialog|PositionAndSizeDialog"
msgid "Position and Size"
msgstr "स्थिती आनिक आकार"
-#: cui/uiconfig/ui/positionsizedialog.ui:107
+#: cui/uiconfig/ui/positionsizedialog.ui:136
#, fuzzy
msgctxt "positionsizedialog|RID_SVXPAGE_POSITION_SIZE"
msgid "Position and Size"
msgstr "स्थिती आनिक आकार"
-#: cui/uiconfig/ui/positionsizedialog.ui:129
+#: cui/uiconfig/ui/positionsizedialog.ui:182
#, fuzzy
msgctxt "positionsizedialog|RID_SVXPAGE_SWPOSSIZE"
msgid "Position and Size"
msgstr "स्थिती आनिक आकार"
-#: cui/uiconfig/ui/positionsizedialog.ui:152
+#: cui/uiconfig/ui/positionsizedialog.ui:229
msgctxt "positionsizedialog|RID_SVXPAGE_ANGLE"
msgid "Rotation"
msgstr "परिभ्रमण"
-#: cui/uiconfig/ui/positionsizedialog.ui:175
+#: cui/uiconfig/ui/positionsizedialog.ui:276
msgctxt "positionsizedialog|RID_SVXPAGE_SLANT"
msgid "Slant & Corner Radius"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:40
+#: cui/uiconfig/ui/possizetabpage.ui:61
#, fuzzy
msgctxt "possizetabpage|FT_POS_X"
msgid "Position _X:"
msgstr "स्थान"
-#: cui/uiconfig/ui/possizetabpage.ui:56
+#: cui/uiconfig/ui/possizetabpage.ui:75
#, fuzzy
msgctxt "possizetabpage|FT_POS_Y"
msgid "Position _Y:"
msgstr "स्थान"
-#: cui/uiconfig/ui/possizetabpage.ui:110
+#: cui/uiconfig/ui/possizetabpage.ui:128
msgctxt "possizetabpage|FT_POSREFERENCE"
msgid "_Base point:"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:148
+#: cui/uiconfig/ui/possizetabpage.ui:182
msgctxt "possizetabpage|label1"
msgid "Position"
msgstr "स्थान"
-#: cui/uiconfig/ui/possizetabpage.ui:190
+#: cui/uiconfig/ui/possizetabpage.ui:224
#, fuzzy
msgctxt "possizetabpage|FT_WIDTH"
msgid "Wi_dth:"
msgstr "रुंदाय"
-#: cui/uiconfig/ui/possizetabpage.ui:206
+#: cui/uiconfig/ui/possizetabpage.ui:238
#, fuzzy
msgctxt "possizetabpage|FT_HEIGHT"
msgid "H_eight:"
msgstr "उंचाय"
-#: cui/uiconfig/ui/possizetabpage.ui:247
+#: cui/uiconfig/ui/possizetabpage.ui:276
msgctxt "possizetabpage|CBX_SCALE"
msgid "_Keep ratio"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:279
+#: cui/uiconfig/ui/possizetabpage.ui:307
msgctxt "possizetabpage|FT_SIZEREFERENCE"
msgid "Base _point:"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:317
+#: cui/uiconfig/ui/possizetabpage.ui:361
msgctxt "possizetabpage|label2"
msgid "Size"
msgstr "आकार"
-#: cui/uiconfig/ui/possizetabpage.ui:356
+#: cui/uiconfig/ui/possizetabpage.ui:401
#, fuzzy
msgctxt "possizetabpage|TSB_POSPROTECT"
msgid "Positio_n"
msgstr "स्थान"
-#: cui/uiconfig/ui/possizetabpage.ui:373
+#: cui/uiconfig/ui/possizetabpage.ui:418
#, fuzzy
msgctxt "possizetabpage|TSB_SIZEPROTECT"
msgid "_Size"
msgstr "आकार"
-#: cui/uiconfig/ui/possizetabpage.ui:397
+#: cui/uiconfig/ui/possizetabpage.ui:441
#, fuzzy
msgctxt "possizetabpage|label3"
msgid "Protect"
msgstr "सुरक्षा"
-#: cui/uiconfig/ui/possizetabpage.ui:430
+#: cui/uiconfig/ui/possizetabpage.ui:475
msgctxt "possizetabpage|TSB_AUTOGROW_WIDTH"
msgid "_Fit width to text"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:447
+#: cui/uiconfig/ui/possizetabpage.ui:492
msgctxt "possizetabpage|TSB_AUTOGROW_HEIGHT"
msgid "Fit _height to text"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:471
+#: cui/uiconfig/ui/possizetabpage.ui:515
msgctxt "possizetabpage|label4"
msgid "Adapt"
msgstr ""
@@ -10773,50 +10773,50 @@ msgctxt "recordnumberdialog|label2"
msgid "go to record"
msgstr ""
-#: cui/uiconfig/ui/rotationtabpage.ui:52
+#: cui/uiconfig/ui/rotationtabpage.ui:56
#, fuzzy
msgctxt "rotationtabpage|FT_POS_X"
msgid "Position _X:"
msgstr "स्थान"
-#: cui/uiconfig/ui/rotationtabpage.ui:66
+#: cui/uiconfig/ui/rotationtabpage.ui:70
#, fuzzy
msgctxt "rotationtabpage|FT_POS_Y"
msgid "Position _Y:"
msgstr "स्थान"
-#: cui/uiconfig/ui/rotationtabpage.ui:116
+#: cui/uiconfig/ui/rotationtabpage.ui:123
msgctxt "rotationtabpage|FT_POSPRESETS"
msgid "_Default settings:"
msgstr ""
-#: cui/uiconfig/ui/rotationtabpage.ui:130
+#: cui/uiconfig/ui/rotationtabpage.ui:151
msgctxt "rotationtabpage|CTL_RECT|tooltip_text"
msgid "Rotation point"
msgstr ""
-#: cui/uiconfig/ui/rotationtabpage.ui:155
+#: cui/uiconfig/ui/rotationtabpage.ui:178
msgctxt "rotationtabpage|label1"
msgid "Pivot Point"
msgstr ""
-#: cui/uiconfig/ui/rotationtabpage.ui:197
+#: cui/uiconfig/ui/rotationtabpage.ui:220
msgctxt "rotationtabpage|FT_ANGLE"
msgid "_Angle:"
msgstr ""
-#: cui/uiconfig/ui/rotationtabpage.ui:238
+#: cui/uiconfig/ui/rotationtabpage.ui:263
msgctxt "rotationtabpage|FT_ANGLEPRESETS"
msgid "Default _settings:"
msgstr ""
-#: cui/uiconfig/ui/rotationtabpage.ui:252
+#: cui/uiconfig/ui/rotationtabpage.ui:287
#, fuzzy
msgctxt "rotationtabpage|CTL_ANGLE|tooltip_text"
msgid "Rotation Angle"
msgstr "परीभ्रमण कोण"
-#: cui/uiconfig/ui/rotationtabpage.ui:277
+#: cui/uiconfig/ui/rotationtabpage.ui:314
#, fuzzy
msgctxt "rotationtabpage|label2"
msgid "Rotation Angle"
@@ -11207,55 +11207,55 @@ msgctxt "similaritysearchdialog|relaxbox"
msgid "_Combine"
msgstr "एकठांय"
-#: cui/uiconfig/ui/slantcornertabpage.ui:50
+#: cui/uiconfig/ui/slantcornertabpage.ui:70
msgctxt "slantcornertabpage|label5"
msgid "_X:"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:88
+#: cui/uiconfig/ui/slantcornertabpage.ui:110
msgctxt "slantcornertabpage|label6"
msgid "_Y:"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:125
+#: cui/uiconfig/ui/slantcornertabpage.ui:149
msgctxt "slantcornertabpage|label3"
msgid "Control Point 1"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:159
+#: cui/uiconfig/ui/slantcornertabpage.ui:183
#, fuzzy
msgctxt "slantcornertabpage|FT_RADIUS"
msgid "_Radius:"
msgstr "त्रिज्या"
-#: cui/uiconfig/ui/slantcornertabpage.ui:189
+#: cui/uiconfig/ui/slantcornertabpage.ui:214
#, fuzzy
msgctxt "slantcornertabpage|label1"
msgid "Corner Radius"
msgstr "कोनसो त्रिज्या"
-#: cui/uiconfig/ui/slantcornertabpage.ui:223
+#: cui/uiconfig/ui/slantcornertabpage.ui:248
msgctxt "slantcornertabpage|FT_ANGLE"
msgid "_Angle:"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:253
+#: cui/uiconfig/ui/slantcornertabpage.ui:279
#, fuzzy
msgctxt "slantcornertabpage|label2"
msgid "Slant"
msgstr "चडउतार"
-#: cui/uiconfig/ui/slantcornertabpage.ui:294
+#: cui/uiconfig/ui/slantcornertabpage.ui:320
msgctxt "slantcornertabpage|label4"
msgid "_X:"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:332
+#: cui/uiconfig/ui/slantcornertabpage.ui:360
msgctxt "slantcornertabpage|label7"
msgid "_Y:"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:369
+#: cui/uiconfig/ui/slantcornertabpage.ui:399
msgctxt "slantcornertabpage|label8"
msgid "Control Point 2"
msgstr ""
@@ -11555,123 +11555,123 @@ msgctxt "storedwebconnectiondialog|change"
msgid "_Change Password..."
msgstr "गुप्त शब्द बदलात"
-#: cui/uiconfig/ui/swpossizepage.ui:74
+#: cui/uiconfig/ui/swpossizepage.ui:85
#, fuzzy
msgctxt "swpossizepage|widthft"
msgid "_Width:"
msgstr "रुंदाय"
-#: cui/uiconfig/ui/swpossizepage.ui:111
+#: cui/uiconfig/ui/swpossizepage.ui:123
#, fuzzy
msgctxt "swpossizepage|heightft"
msgid "H_eight:"
msgstr "उंचाय"
-#: cui/uiconfig/ui/swpossizepage.ui:128
+#: cui/uiconfig/ui/swpossizepage.ui:141
msgctxt "swpossizepage|ratio"
msgid "_Keep ratio"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:149
+#: cui/uiconfig/ui/swpossizepage.ui:162
msgctxt "swpossizepage|label2"
msgid "Size"
msgstr "आकार"
-#: cui/uiconfig/ui/swpossizepage.ui:205
+#: cui/uiconfig/ui/swpossizepage.ui:218
#, fuzzy
msgctxt "swpossizepage|topage"
msgid "To _page"
msgstr "पानांत"
-#: cui/uiconfig/ui/swpossizepage.ui:222
+#: cui/uiconfig/ui/swpossizepage.ui:234
#, fuzzy
msgctxt "swpossizepage|topara"
msgid "To paragrap_h"
msgstr "परिच्छेद"
-#: cui/uiconfig/ui/swpossizepage.ui:238
+#: cui/uiconfig/ui/swpossizepage.ui:250
#, fuzzy
msgctxt "swpossizepage|tochar"
msgid "To cha_racter"
msgstr "अक्षराक"
-#: cui/uiconfig/ui/swpossizepage.ui:254
+#: cui/uiconfig/ui/swpossizepage.ui:266
#, fuzzy
msgctxt "swpossizepage|aschar"
msgid "_As character"
msgstr "अक्षरासारके"
-#: cui/uiconfig/ui/swpossizepage.ui:270
+#: cui/uiconfig/ui/swpossizepage.ui:282
#, fuzzy
msgctxt "swpossizepage|toframe"
msgid "To _frame"
msgstr "चौकट"
-#: cui/uiconfig/ui/swpossizepage.ui:292
+#: cui/uiconfig/ui/swpossizepage.ui:304
msgctxt "swpossizepage|label1"
msgid "Anchor"
msgstr "नांगर"
-#: cui/uiconfig/ui/swpossizepage.ui:333
+#: cui/uiconfig/ui/swpossizepage.ui:344
#, fuzzy
msgctxt "swpossizepage|horiposft"
msgid "Hori_zontal:"
msgstr "आडवे"
-#: cui/uiconfig/ui/swpossizepage.ui:347
+#: cui/uiconfig/ui/swpossizepage.ui:358
msgctxt "swpossizepage|horibyft"
msgid "b_y:"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:361
+#: cui/uiconfig/ui/swpossizepage.ui:372
msgctxt "swpossizepage|vertbyft"
msgid "_by:"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:375
+#: cui/uiconfig/ui/swpossizepage.ui:386
msgctxt "swpossizepage|horitoft"
msgid "_to:"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:421
+#: cui/uiconfig/ui/swpossizepage.ui:433
#, fuzzy
msgctxt "swpossizepage|vertposft"
msgid "_Vertical:"
msgstr "उबे"
-#: cui/uiconfig/ui/swpossizepage.ui:457
+#: cui/uiconfig/ui/swpossizepage.ui:470
msgctxt "swpossizepage|verttoft"
msgid "t_o:"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:478
+#: cui/uiconfig/ui/swpossizepage.ui:492
msgctxt "swpossizepage|mirror"
msgid "_Mirror on even pages"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:495
+#: cui/uiconfig/ui/swpossizepage.ui:509
msgctxt "swpossizepage|followtextflow"
msgid "Follow te_xt flow"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:518
+#: cui/uiconfig/ui/swpossizepage.ui:532
msgctxt "swpossizepage|label11"
msgid "Position"
msgstr "स्थान"
-#: cui/uiconfig/ui/swpossizepage.ui:549
+#: cui/uiconfig/ui/swpossizepage.ui:563
#, fuzzy
msgctxt "swpossizepage|pos"
msgid "Positio_n"
msgstr "स्थान"
-#: cui/uiconfig/ui/swpossizepage.ui:565
+#: cui/uiconfig/ui/swpossizepage.ui:579
#, fuzzy
msgctxt "swpossizepage|size"
msgid "_Size"
msgstr "आकार"
-#: cui/uiconfig/ui/swpossizepage.ui:587
+#: cui/uiconfig/ui/swpossizepage.ui:601
#, fuzzy
msgctxt "swpossizepage|label3"
msgid "Protect"
@@ -11874,13 +11874,13 @@ msgctxt "textattrtabpage|label2"
msgid "Spacing to Borders"
msgstr ""
-#: cui/uiconfig/ui/textattrtabpage.ui:425
+#: cui/uiconfig/ui/textattrtabpage.ui:423
#, fuzzy
msgctxt "textattrtabpage|TSB_FULL_WIDTH"
msgid "Full _width"
msgstr "पुराय रुंदाय"
-#: cui/uiconfig/ui/textattrtabpage.ui:448
+#: cui/uiconfig/ui/textattrtabpage.ui:446
msgctxt "textattrtabpage|label3"
msgid "Text Anchor"
msgstr ""
diff --git a/source/kok/filter/source/config/fragments/filters.po b/source/kok/filter/source/config/fragments/filters.po
index d42f4c486b0..913a897899b 100644
--- a/source/kok/filter/source/config/fragments/filters.po
+++ b/source/kok/filter/source/config/fragments/filters.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-16 16:54+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2016-12-04 17:02+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -465,8 +465,8 @@ msgctxt ""
"MS Word 2003 XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Word 2003 XML"
-msgstr "मायक्रोसॉफ्ट वर्ड २००३ XML"
+msgid "Word 2003 XML"
+msgstr ""
#: MS_Word_2007_XML.xcu
msgctxt ""
@@ -1290,7 +1290,7 @@ msgctxt ""
"Calc MS Excel 2007 VBA XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Excel 2007-2016 XML (macro enabled)"
+msgid "Excel 2007–2019 (macro-enabled)"
msgstr ""
#: calc_MS_Excel_2007_XML.xcu
diff --git a/source/kok/filter/source/config/fragments/types.po b/source/kok/filter/source/config/fragments/types.po
index 8cf269c7127..2ba67262c24 100644
--- a/source/kok/filter/source/config/fragments/types.po
+++ b/source/kok/filter/source/config/fragments/types.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-08 15:11+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2015-11-11 21:24+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -296,8 +296,8 @@ msgctxt ""
"writer_MS_Word_2003_XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Word 2003 XML"
-msgstr "मायक्रोसॉफ्ट वर्ड २००३ XML"
+msgid "Word 2003 XML"
+msgstr ""
#: writer_MS_Word_2007_XML.xcu
msgctxt ""
diff --git a/source/kok/fpicker/messages.po b/source/kok/fpicker/messages.po
index ca1a6b284fe..280051949d9 100644
--- a/source/kok/fpicker/messages.po
+++ b/source/kok/fpicker/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+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"
@@ -277,14 +277,13 @@ msgstr ""
#: fpicker/uiconfig/ui/foldernamedialog.ui:8
msgctxt "foldernamedialog|FolderNameDialog"
-msgid "Folder Name ?"
+msgid "Folder Name"
msgstr ""
#: fpicker/uiconfig/ui/foldernamedialog.ui:91
-#, fuzzy
msgctxt "foldernamedialog|label2"
-msgid "Na_me"
-msgstr "नाव"
+msgid "Na_me:"
+msgstr ""
#: fpicker/uiconfig/ui/foldernamedialog.ui:122
#, fuzzy
diff --git a/source/kok/officecfg/registry/data/org/openoffice/Office/UI.po b/source/kok/officecfg/registry/data/org/openoffice/Office/UI.po
index 3311e1c57a4..9c6162416e1 100644
--- a/source/kok/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/kok/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-22 13:17+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2016-12-07 03:45+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -26989,8 +26989,8 @@ msgctxt ""
"..WriterCommands.UserInterface.Commands..uno:TextAttributes\n"
"Label\n"
"value.text"
-msgid "Text Attributes"
-msgstr "मजकूर गुणधर्म"
+msgid "Text Attributes..."
+msgstr ""
#: WriterCommands.xcu
msgctxt ""
diff --git a/source/kok/readlicense_oo/docs.po b/source/kok/readlicense_oo/docs.po
index 8cbcf44ca8c..208dc056ef7 100644
--- a/source/kok/readlicense_oo/docs.po
+++ b/source/kok/readlicense_oo/docs.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-04-17 15:54+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2016-05-02 00:22+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -140,7 +140,7 @@ msgctxt ""
"readme.xrm\n"
"macxiOSX\n"
"readmeitem.text"
-msgid "MacOSX 10.8 (Mountain Lion) or higher"
+msgid "MacOSX 10.9 (Mavericks) or higher"
msgstr ""
#: readme.xrm
diff --git a/source/kok/sc/messages.po b/source/kok/sc/messages.po
index b62bd1e698b..1dbcc1dd6b9 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-12 14:40+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"
@@ -1882,16 +1882,21 @@ msgid "Nested arrays are not supported."
msgstr ""
#: sc/inc/globstr.hrc:390
+msgctxt "STR_ERR_LONG_BAD_ARRAY_CONTENT"
+msgid "Unsupported inline array content."
+msgstr ""
+
+#: sc/inc/globstr.hrc:391
msgctxt "STR_UNDO_TEXTTOCOLUMNS"
msgid "Text to Columns"
msgstr ""
-#: sc/inc/globstr.hrc:391
+#: sc/inc/globstr.hrc:392
msgctxt "STR_DOC_UPDATED"
msgid "Your spreadsheet has been updated with changes saved by other users."
msgstr ""
-#: sc/inc/globstr.hrc:392
+#: sc/inc/globstr.hrc:393
msgctxt "STR_DOC_WILLBESAVED"
msgid ""
"The spreadsheet must be saved now to activate sharing mode.\n"
@@ -1899,7 +1904,7 @@ msgid ""
"Do you want to continue?"
msgstr ""
-#: sc/inc/globstr.hrc:393
+#: sc/inc/globstr.hrc:394
msgctxt "STR_DOC_WILLNOTBESAVED"
msgid ""
"Already resolved merge conflicts will be lost and your changes to the shared spreadsheet will not be saved.\n"
@@ -1907,7 +1912,7 @@ msgid ""
"Do you want to continue?"
msgstr ""
-#: sc/inc/globstr.hrc:394
+#: sc/inc/globstr.hrc:395
msgctxt "STR_DOC_DISABLESHARED"
msgid ""
"Disabling shared mode of a spreadsheet hinders all other users of the shared spreadsheet to merge back their work.\n"
@@ -1915,7 +1920,7 @@ msgid ""
"Do you want to continue?"
msgstr ""
-#: sc/inc/globstr.hrc:395
+#: sc/inc/globstr.hrc:396
msgctxt "STR_DOC_NOLONGERSHARED"
msgid ""
"This spreadsheet is no longer in shared mode.\n"
@@ -1923,7 +1928,7 @@ msgid ""
"Save your spreadsheet to a separate file and merge your changes to the shared spreadsheet manually."
msgstr ""
-#: sc/inc/globstr.hrc:396
+#: sc/inc/globstr.hrc:397
msgctxt "STR_FILE_LOCKED_TRY_LATER"
msgid ""
"The shared spreadsheet file is locked due to a merge in progress by user: '%1'\n"
@@ -1931,7 +1936,7 @@ msgid ""
"Sharing mode of a locked file cannot be disabled. Try again later."
msgstr ""
-#: sc/inc/globstr.hrc:397
+#: sc/inc/globstr.hrc:398
msgctxt "STR_FILE_LOCKED_SAVE_LATER"
msgid ""
"The shared spreadsheet file is locked due to a merge in progress by user: '%1'\n"
@@ -1939,154 +1944,154 @@ msgid ""
"Try again later to save your changes."
msgstr ""
-#: sc/inc/globstr.hrc:398
+#: sc/inc/globstr.hrc:399
msgctxt "STR_UNKNOWN_USER"
msgid "Unknown User"
msgstr "अज्ञात वापरपीOporichit Vaparpi"
-#: sc/inc/globstr.hrc:399
+#: sc/inc/globstr.hrc:400
msgctxt "STR_SHAPE_AUTOSHAPE"
msgid "AutoShape"
msgstr ""
-#: sc/inc/globstr.hrc:400
+#: sc/inc/globstr.hrc:401
msgctxt "STR_SHAPE_RECTANGLE"
msgid "Rectangle"
msgstr "आयत"
-#: sc/inc/globstr.hrc:401
+#: sc/inc/globstr.hrc:402
msgctxt "STR_SHAPE_LINE"
msgid "Line"
msgstr "वळ"
-#: sc/inc/globstr.hrc:402
+#: sc/inc/globstr.hrc:403
msgctxt "STR_SHAPE_OVAL"
msgid "Oval"
msgstr "तातयांकार"
-#: sc/inc/globstr.hrc:403
+#: sc/inc/globstr.hrc:404
msgctxt "STR_FORM_BUTTON"
msgid "Button"
msgstr "कळ"
-#: sc/inc/globstr.hrc:404
+#: sc/inc/globstr.hrc:405
#, fuzzy
msgctxt "STR_FORM_CHECKBOX"
msgid "Check Box"
msgstr "तपास पेटी"
-#: sc/inc/globstr.hrc:405
+#: sc/inc/globstr.hrc:406
msgctxt "STR_FORM_OPTIONBUTTON"
msgid "Option Button"
msgstr "पर्याय कळ"
-#: sc/inc/globstr.hrc:406
+#: sc/inc/globstr.hrc:407
msgctxt "STR_FORM_LABEL"
msgid "Label"
msgstr "लेबल"
-#: sc/inc/globstr.hrc:407
+#: sc/inc/globstr.hrc:408
msgctxt "STR_FORM_LISTBOX"
msgid "List Box"
msgstr "वळेरी पेटी"
-#: sc/inc/globstr.hrc:408
+#: sc/inc/globstr.hrc:409
msgctxt "STR_FORM_GROUPBOX"
msgid "Group Box"
msgstr "गट पेटी"
-#: sc/inc/globstr.hrc:409
+#: sc/inc/globstr.hrc:410
#, fuzzy
msgctxt "STR_FORM_DROPDOWN"
msgid "Drop Down"
msgstr "सकयल"
-#: sc/inc/globstr.hrc:410
+#: sc/inc/globstr.hrc:411
msgctxt "STR_FORM_SPINNER"
msgid "Spinner"
msgstr ""
-#: sc/inc/globstr.hrc:411
+#: sc/inc/globstr.hrc:412
#, fuzzy
msgctxt "STR_FORM_SCROLLBAR"
msgid "Scroll Bar"
msgstr "फिरवपाची पट्टी"
-#: sc/inc/globstr.hrc:412
+#: sc/inc/globstr.hrc:413
msgctxt "STR_STYLE_FAMILY_CELL"
msgid "Cell Styles"
msgstr "कक्ष शैली"
-#: sc/inc/globstr.hrc:413
+#: sc/inc/globstr.hrc:414
#, fuzzy
msgctxt "STR_STYLE_FAMILY_PAGE"
msgid "Page Styles"
msgstr "पान शैली"
-#: sc/inc/globstr.hrc:414
+#: sc/inc/globstr.hrc:415
#, fuzzy
msgctxt "STR_ERR_DATAPILOTSOURCE"
msgid "Pivot table source data is invalid."
msgstr "दिल्ली स्ट्रीम अमान्य"
-#: sc/inc/globstr.hrc:415
+#: sc/inc/globstr.hrc:416
msgctxt "STR_OPTIONS_WARN_SEPARATORS"
msgid "Because the current formula separator settings conflict with the locale, the formula separators have been reset to their default values."
msgstr ""
-#: sc/inc/globstr.hrc:416
+#: sc/inc/globstr.hrc:417
msgctxt "STR_UNDO_INSERT_CURRENT_DATE"
msgid "Insert Current Date"
msgstr ""
-#: sc/inc/globstr.hrc:417
+#: sc/inc/globstr.hrc:418
msgctxt "STR_UNDO_INSERT_CURRENT_TIME"
msgid "Insert Current Time"
msgstr ""
-#: sc/inc/globstr.hrc:418
+#: sc/inc/globstr.hrc:419
#, fuzzy
msgctxt "STR_MANAGE_NAMES"
msgid "Manage Names..."
msgstr "व्याप्ती नावां"
-#: sc/inc/globstr.hrc:419
+#: sc/inc/globstr.hrc:420
msgctxt "STR_HEADER_NAME"
msgid "Name"
msgstr "नाव"
-#: sc/inc/globstr.hrc:420
+#: sc/inc/globstr.hrc:421
msgctxt "STR_HEADER_RANGE_OR_EXPR"
msgid "Range or formula expression"
msgstr ""
-#: sc/inc/globstr.hrc:421
+#: sc/inc/globstr.hrc:422
msgctxt "STR_HEADER_SCOPE"
msgid "Scope"
msgstr "संधीsondhi"
-#: sc/inc/globstr.hrc:422
+#: sc/inc/globstr.hrc:423
msgctxt "STR_MULTI_SELECT"
msgid "(multiple)"
msgstr ""
-#: sc/inc/globstr.hrc:423
+#: sc/inc/globstr.hrc:424
#, fuzzy
msgctxt "STR_GLOBAL_SCOPE"
msgid "Document (Global)"
msgstr "दस्तावेज स्थिती"
-#: sc/inc/globstr.hrc:424
+#: sc/inc/globstr.hrc:425
msgctxt "STR_ERR_NAME_EXISTS"
msgid "Invalid name. Already in use for the selected scope."
msgstr ""
-#: sc/inc/globstr.hrc:425
+#: sc/inc/globstr.hrc:426
msgctxt "STR_ERR_NAME_INVALID"
msgid "Invalid name. Only use letters, numbers and underscore."
msgstr ""
-#: sc/inc/globstr.hrc:426
+#: sc/inc/globstr.hrc:427
msgctxt "STR_UNSAVED_EXT_REF"
msgid ""
"This Document contains external references to unsaved documents.\n"
@@ -2094,227 +2099,227 @@ msgid ""
"Do you want to continue?"
msgstr ""
-#: sc/inc/globstr.hrc:427
+#: sc/inc/globstr.hrc:428
msgctxt "STR_CLOSE_WITH_UNSAVED_REFS"
msgid "This Document is referenced by another document and not yet saved. Closing it without saving will result in data loss."
msgstr ""
-#: sc/inc/globstr.hrc:428
+#: sc/inc/globstr.hrc:429
msgctxt "STR_HEADER_RANGE"
msgid "Range"
msgstr "व्याप्ती"
-#: sc/inc/globstr.hrc:429
+#: sc/inc/globstr.hrc:430
msgctxt "STR_HEADER_COND"
msgid "First Condition"
msgstr ""
-#: sc/inc/globstr.hrc:430
+#: sc/inc/globstr.hrc:431
#, fuzzy
msgctxt "STR_COND_CONDITION"
msgid "Cell value is"
msgstr "कक्ष मोल आसा"
-#: sc/inc/globstr.hrc:431
+#: sc/inc/globstr.hrc:432
msgctxt "STR_COND_COLORSCALE"
msgid "ColorScale"
msgstr ""
-#: sc/inc/globstr.hrc:432
+#: sc/inc/globstr.hrc:433
msgctxt "STR_COND_DATABAR"
msgid "DataBar"
msgstr ""
-#: sc/inc/globstr.hrc:433
+#: sc/inc/globstr.hrc:434
msgctxt "STR_COND_ICONSET"
msgid "IconSet"
msgstr ""
-#: sc/inc/globstr.hrc:434
+#: sc/inc/globstr.hrc:435
#, fuzzy
msgctxt "STR_COND_BETWEEN"
msgid "between"
msgstr "मदीं"
-#: sc/inc/globstr.hrc:435
+#: sc/inc/globstr.hrc:436
#, fuzzy
msgctxt "STR_COND_NOTBETWEEN"
msgid "not between"
msgstr "मदीं ना"
-#: sc/inc/globstr.hrc:436
+#: sc/inc/globstr.hrc:437
msgctxt "STR_COND_UNIQUE"
msgid "unique"
msgstr ""
-#: sc/inc/globstr.hrc:437
+#: sc/inc/globstr.hrc:438
#, fuzzy
msgctxt "STR_COND_DUPLICATE"
msgid "duplicate"
msgstr "नक्कल"
-#: sc/inc/globstr.hrc:438
+#: sc/inc/globstr.hrc:439
#, fuzzy
msgctxt "STR_COND_FORMULA"
msgid "Formula is"
msgstr "सुत्र आसा"
-#: sc/inc/globstr.hrc:439
+#: sc/inc/globstr.hrc:440
msgctxt "STR_COND_TOP10"
msgid "Top Elements"
msgstr ""
-#: sc/inc/globstr.hrc:440
+#: sc/inc/globstr.hrc:441
msgctxt "STR_COND_BOTTOM10"
msgid "Bottom Elements"
msgstr ""
-#: sc/inc/globstr.hrc:441
+#: sc/inc/globstr.hrc:442
msgctxt "STR_COND_TOP_PERCENT"
msgid "Top Percent"
msgstr ""
-#: sc/inc/globstr.hrc:442
+#: sc/inc/globstr.hrc:443
msgctxt "STR_COND_DATE"
msgid "Date is"
msgstr ""
-#: sc/inc/globstr.hrc:443
+#: sc/inc/globstr.hrc:444
msgctxt "STR_COND_BOTTOM_PERCENT"
msgid "Bottom Percent"
msgstr ""
-#: sc/inc/globstr.hrc:444
+#: sc/inc/globstr.hrc:445
msgctxt "STR_COND_ABOVE_AVERAGE"
msgid "Above Average"
msgstr ""
-#: sc/inc/globstr.hrc:445
+#: sc/inc/globstr.hrc:446
msgctxt "STR_COND_BELOW_AVERAGE"
msgid "Below Average"
msgstr ""
-#: sc/inc/globstr.hrc:446
+#: sc/inc/globstr.hrc:447
msgctxt "STR_COND_ABOVE_EQUAL_AVERAGE"
msgid "Above or equal Average"
msgstr ""
-#: sc/inc/globstr.hrc:447
+#: sc/inc/globstr.hrc:448
msgctxt "STR_COND_BELOW_EQUAL_AVERAGE"
msgid "Below or equal Average"
msgstr ""
-#: sc/inc/globstr.hrc:448
+#: sc/inc/globstr.hrc:449
#, fuzzy
msgctxt "STR_COND_ERROR"
msgid "an Error code"
msgstr "त्रुटी संकेत"
-#: sc/inc/globstr.hrc:449
+#: sc/inc/globstr.hrc:450
#, fuzzy
msgctxt "STR_COND_NOERROR"
msgid "not an Error code"
msgstr "त्रुटी संकेत"
-#: sc/inc/globstr.hrc:450
+#: sc/inc/globstr.hrc:451
msgctxt "STR_COND_BEGINS_WITH"
msgid "Begins with"
msgstr ""
-#: sc/inc/globstr.hrc:451
+#: sc/inc/globstr.hrc:452
msgctxt "STR_COND_ENDS_WITH"
msgid "Ends with"
msgstr ""
-#: sc/inc/globstr.hrc:452
+#: sc/inc/globstr.hrc:453
#, fuzzy
msgctxt "STR_COND_CONTAINS"
msgid "Contains"
msgstr "समाविश्ट"
-#: sc/inc/globstr.hrc:453
+#: sc/inc/globstr.hrc:454
msgctxt "STR_COND_NOT_CONTAINS"
msgid "Not Contains"
msgstr ""
-#: sc/inc/globstr.hrc:454
+#: sc/inc/globstr.hrc:455
#, fuzzy
msgctxt "STR_COND_TODAY"
msgid "today"
msgstr "आयज"
-#: sc/inc/globstr.hrc:455
+#: sc/inc/globstr.hrc:456
#, fuzzy
msgctxt "STR_COND_YESTERDAY"
msgid "yesterday"
msgstr "कालkal"
-#: sc/inc/globstr.hrc:456
+#: sc/inc/globstr.hrc:457
msgctxt "STR_COND_TOMORROW"
msgid "tomorrow"
msgstr ""
-#: sc/inc/globstr.hrc:457
+#: sc/inc/globstr.hrc:458
msgctxt "STR_COND_LAST7DAYS"
msgid "in the last 7 days"
msgstr ""
-#: sc/inc/globstr.hrc:458
+#: sc/inc/globstr.hrc:459
msgctxt "STR_COND_THISWEEK"
msgid "this week"
msgstr ""
-#: sc/inc/globstr.hrc:459
+#: sc/inc/globstr.hrc:460
msgctxt "STR_COND_LASTWEEK"
msgid "last week"
msgstr ""
-#: sc/inc/globstr.hrc:460
+#: sc/inc/globstr.hrc:461
msgctxt "STR_COND_NEXTWEEK"
msgid "next week"
msgstr ""
-#: sc/inc/globstr.hrc:461
+#: sc/inc/globstr.hrc:462
msgctxt "STR_COND_THISMONTH"
msgid "this month"
msgstr ""
-#: sc/inc/globstr.hrc:462
+#: sc/inc/globstr.hrc:463
msgctxt "STR_COND_LASTMONTH"
msgid "last month"
msgstr ""
-#: sc/inc/globstr.hrc:463
+#: sc/inc/globstr.hrc:464
msgctxt "STR_COND_NEXTMONTH"
msgid "next month"
msgstr ""
-#: sc/inc/globstr.hrc:464
+#: sc/inc/globstr.hrc:465
msgctxt "STR_COND_THISYEAR"
msgid "this year"
msgstr ""
-#: sc/inc/globstr.hrc:465
+#: sc/inc/globstr.hrc:466
msgctxt "STR_COND_LASTYEAR"
msgid "last year"
msgstr ""
-#: sc/inc/globstr.hrc:466
+#: sc/inc/globstr.hrc:467
msgctxt "STR_COND_NEXTYEAR"
msgid "next year"
msgstr ""
-#: sc/inc/globstr.hrc:467
+#: sc/inc/globstr.hrc:468
msgctxt "STR_COND_AND"
msgid "and"
msgstr "आनिक"
-#: sc/inc/globstr.hrc:468
+#: sc/inc/globstr.hrc:469
msgctxt "STR_ERR_CONDFORMAT_PROTECTED"
msgid "Conditional Formats can not be created, deleted or changed in protected sheets."
msgstr ""
-#: sc/inc/globstr.hrc:469
+#: sc/inc/globstr.hrc:470
msgctxt "STR_EDIT_EXISTING_COND_FORMATS"
msgid ""
"The selected cell already contains conditional formatting. You can either edit the existing conditional format or you define a new overlapping conditional format.\n"
@@ -2322,7 +2327,7 @@ msgid ""
" Do you want to edit the existing conditional format?"
msgstr ""
-#: sc/inc/globstr.hrc:470
+#: sc/inc/globstr.hrc:471
msgctxt "STR_QUERY_FORMULA_RECALC_ONLOAD_ODS"
msgid ""
"This document was last saved by an application other than %PRODUCTNAME. Some formula cells may produce different results when recalculated.\n"
@@ -2330,7 +2335,7 @@ msgid ""
"Do you want to recalculate all formula cells in this document now?"
msgstr ""
-#: sc/inc/globstr.hrc:471
+#: sc/inc/globstr.hrc:472
msgctxt "STR_QUERY_FORMULA_RECALC_ONLOAD_XLS"
msgid ""
"This document was last saved by Excel. Some formula cells may produce different results when recalculated.\n"
@@ -2338,82 +2343,82 @@ msgid ""
"Do you want to recalculate all formula cells now?"
msgstr ""
-#: sc/inc/globstr.hrc:472
+#: sc/inc/globstr.hrc:473
msgctxt "STR_NO_INSERT_DELETE_OVER_PIVOT_TABLE"
msgid "You cannot insert or delete cells when the affected range intersects with pivot table."
msgstr ""
-#: sc/inc/globstr.hrc:473
+#: sc/inc/globstr.hrc:474
msgctxt "STR_DPFIELD_GROUP_BY_SECONDS"
msgid "Seconds"
msgstr "सेकंद"
-#: sc/inc/globstr.hrc:474
+#: sc/inc/globstr.hrc:475
msgctxt "STR_DPFIELD_GROUP_BY_MINUTES"
msgid "Minutes"
msgstr "मिनटां"
-#: sc/inc/globstr.hrc:475
+#: sc/inc/globstr.hrc:476
msgctxt "STR_DPFIELD_GROUP_BY_HOURS"
msgid "Hours"
msgstr "वरां"
-#: sc/inc/globstr.hrc:476
+#: sc/inc/globstr.hrc:477
msgctxt "STR_DPFIELD_GROUP_BY_DAYS"
msgid "Days"
msgstr "दिस"
-#: sc/inc/globstr.hrc:477
+#: sc/inc/globstr.hrc:478
msgctxt "STR_DPFIELD_GROUP_BY_MONTHS"
msgid "Months"
msgstr "म्हयने"
-#: sc/inc/globstr.hrc:478
+#: sc/inc/globstr.hrc:479
msgctxt "STR_DPFIELD_GROUP_BY_QUARTERS"
msgid "Quarters"
msgstr ""
-#: sc/inc/globstr.hrc:479
+#: sc/inc/globstr.hrc:480
#, fuzzy
msgctxt "STR_DPFIELD_GROUP_BY_YEARS"
msgid "Years"
msgstr "वर्स"
-#: sc/inc/globstr.hrc:480
+#: sc/inc/globstr.hrc:481
#, fuzzy
msgctxt "STR_INVALIDVAL"
msgid "Invalid target value."
msgstr "अमान्य लक्ष्य मोल"
-#: sc/inc/globstr.hrc:481
+#: sc/inc/globstr.hrc:482
#, fuzzy
msgctxt "STR_INVALIDVAR"
msgid "Undefined name for variable cell."
msgstr "बदलुपी कक्षाखातीर सांगूक नाशिल्ले नाव."
-#: sc/inc/globstr.hrc:482
+#: sc/inc/globstr.hrc:483
#, fuzzy
msgctxt "STR_INVALIDFORM"
msgid "Undefined name as formula cell."
msgstr "सुत्र कक्षाखातीर सांगूक नाशिल्ले नाव."
-#: sc/inc/globstr.hrc:483
+#: sc/inc/globstr.hrc:484
msgctxt "STR_NOFORMULA"
msgid "Formula cell must contain a formula."
msgstr ""
-#: sc/inc/globstr.hrc:484
+#: sc/inc/globstr.hrc:485
#, fuzzy
msgctxt "STR_INVALIDINPUT"
msgid "Invalid input."
msgstr "अमान्य वळेरी"
-#: sc/inc/globstr.hrc:485
+#: sc/inc/globstr.hrc:486
msgctxt "STR_INVALIDCONDITION"
msgid "Invalid condition."
msgstr ""
-#: sc/inc/globstr.hrc:486
+#: sc/inc/globstr.hrc:487
msgctxt "STR_QUERYREMOVE"
msgid ""
"Should the entry\n"
@@ -2421,136 +2426,136 @@ msgid ""
"be deleted?"
msgstr ""
-#: sc/inc/globstr.hrc:487
+#: sc/inc/globstr.hrc:488
msgctxt "STR_COPYLIST"
msgid "Copy List"
msgstr ""
-#: sc/inc/globstr.hrc:488
+#: sc/inc/globstr.hrc:489
msgctxt "STR_COPYFROM"
msgid "List from"
msgstr ""
-#: sc/inc/globstr.hrc:489
+#: sc/inc/globstr.hrc:490
msgctxt "STR_COPYERR"
msgid "Cells without text have been ignored."
msgstr ""
-#: sc/inc/globstr.hrc:490
+#: sc/inc/globstr.hrc:491
#, c-format
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%s-click to follow hyperlink:"
msgstr ""
-#: sc/inc/globstr.hrc:491
+#: sc/inc/globstr.hrc:492
msgctxt "STR_CLICKHYPERLINK"
msgid "click to open hyperlink:"
msgstr ""
-#: sc/inc/globstr.hrc:492
+#: sc/inc/globstr.hrc:493
msgctxt "STR_PRINT_PREVIEW_NODATA"
msgid "No Data"
msgstr ""
-#: sc/inc/globstr.hrc:493
+#: sc/inc/globstr.hrc:494
msgctxt "STR_PRINT_PREVIEW_EMPTY_RANGE"
msgid "Print Range Empty"
msgstr ""
-#: sc/inc/globstr.hrc:494
+#: sc/inc/globstr.hrc:495
#, fuzzy
msgctxt "STR_UNDO_CONDFORMAT"
msgid "Conditional Format"
msgstr "सशर्त रचना"
-#: sc/inc/globstr.hrc:495
+#: sc/inc/globstr.hrc:496
#, fuzzy
msgctxt "STR_UNDO_CONDFORMAT_LIST"
msgid "Conditional Formats"
msgstr "सशर्त रचना"
-#: sc/inc/globstr.hrc:496
+#: sc/inc/globstr.hrc:497
msgctxt "STR_UNDO_FORMULA_TO_VALUE"
msgid "Convert Formula To Value"
msgstr ""
-#: sc/inc/globstr.hrc:497
+#: sc/inc/globstr.hrc:498
msgctxt "STR_UNQUOTED_STRING"
msgid "Strings without quotes are interpreted as column/row labels."
msgstr ""
-#: sc/inc/globstr.hrc:498
+#: sc/inc/globstr.hrc:499
msgctxt "STR_ENTER_VALUE"
msgid "Enter a value!"
msgstr ""
-#: sc/inc/globstr.hrc:499
+#: sc/inc/globstr.hrc:500
msgctxt "STR_TABLE_COUNT"
msgid "Sheet %1 of %2"
msgstr ""
-#: sc/inc/globstr.hrc:500
+#: sc/inc/globstr.hrc:501
msgctxt "STR_FUNCTIONS_FOUND"
msgid "%1 and %2 more"
msgstr ""
-#: sc/inc/globstr.hrc:501
+#: sc/inc/globstr.hrc:502
msgctxt "STR_GENERAL"
msgid "General"
msgstr "सर्वसादारण"
-#: sc/inc/globstr.hrc:502
+#: sc/inc/globstr.hrc:503
msgctxt "STR_NUMBER"
msgid "Number"
msgstr "क्रमांक "
-#: sc/inc/globstr.hrc:503
+#: sc/inc/globstr.hrc:504
msgctxt "STR_PERCENT"
msgid "Percent"
msgstr ""
-#: sc/inc/globstr.hrc:504
+#: sc/inc/globstr.hrc:505
msgctxt "STR_CURRENCY"
msgid "Currency"
msgstr "चलन"
-#: sc/inc/globstr.hrc:505
+#: sc/inc/globstr.hrc:506
msgctxt "STR_DATE"
msgid "Date"
msgstr "तारीक"
-#: sc/inc/globstr.hrc:506
+#: sc/inc/globstr.hrc:507
msgctxt "STR_TIME"
msgid "Time"
msgstr "वेळ"
-#: sc/inc/globstr.hrc:507
+#: sc/inc/globstr.hrc:508
msgctxt "STR_SCIENTIFIC"
msgid "Scientific"
msgstr ""
-#: sc/inc/globstr.hrc:508
+#: sc/inc/globstr.hrc:509
#, fuzzy
msgctxt "STR_FRACTION"
msgid "Fraction"
msgstr "काम"
-#: sc/inc/globstr.hrc:509
+#: sc/inc/globstr.hrc:510
msgctxt "STR_BOOLEAN_VALUE"
msgid "Boolean Value"
msgstr ""
-#: sc/inc/globstr.hrc:510
+#: sc/inc/globstr.hrc:511
msgctxt "STR_TEXT"
msgid "Text"
msgstr "मजकूर"
-#: sc/inc/globstr.hrc:511
+#: sc/inc/globstr.hrc:512
msgctxt "STR_QUERY_PIVOTTABLE_DELTAB"
msgid "The selected sheet(s) contain source data of related pivot tables that will be lost. Are you sure you want to delete the selected sheet(s)?"
msgstr ""
-#: sc/inc/globstr.hrc:512
+#: sc/inc/globstr.hrc:513
msgctxt "STR_ERR_NAME_INVALID_CELL_REF"
msgid "Invalid name. Reference to a cell, or a range of cells not allowed."
msgstr ""
@@ -10711,8 +10716,8 @@ msgstr "स्थिती"
#: sc/inc/scfuncs.hrc:3010
msgctxt "SC_OPCODE_T_TEST"
-msgid "Mode specifies the number of distribution tails to return. 1= one-tailed, 2 = two-tailed distribution"
-msgstr "स्थिती परत करपाच्या वितरण पुच्छांची संख्या स्पश्ट करता.1=एक-पुच्छीय, 2 = द्वि-पुच्छीय वितरण"
+msgid "Mode specifies the number of distribution tails to return. 1 = one-tailed, 2 = two-tailed distribution"
+msgstr ""
#: sc/inc/scfuncs.hrc:3011
msgctxt "SC_OPCODE_T_TEST"
@@ -10758,8 +10763,8 @@ msgstr "स्थिती"
#: sc/inc/scfuncs.hrc:3024
msgctxt "SC_OPCODE_T_TEST_MS"
-msgid "Mode specifies the number of distribution tails to return. 1= one-tailed, 2 = two-tailed distribution"
-msgstr "स्थिती परत करपाच्या वितरण पुच्छांची संख्या स्पश्ट करता.1=एक-पुच्छीय, 2 = द्वि-पुच्छीय वितरण"
+msgid "Mode specifies the number of distribution tails to return. 1 = one-tailed, 2 = two-tailed distribution"
+msgstr ""
#: sc/inc/scfuncs.hrc:3025
msgctxt "SC_OPCODE_T_TEST_MS"
@@ -18562,22 +18567,22 @@ msgctxt "mergecellsdialog|MergeCellsDialog"
msgid "Merge Cells"
msgstr "कक्ष विलीन"
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:81
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:84
msgctxt "mergecellsdialog|label"
msgid "Some cells are not empty."
msgstr ""
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:96
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:99
msgctxt "mergecellsdialog|move-cells-radio"
msgid "Move the contents of the hidden cells into the first cell"
msgstr ""
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:112
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:115
msgctxt "mergecellsdialog|empty-cells-radio"
msgid "Empty the contents of the hidden cells"
msgstr ""
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:128
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:131
msgctxt "mergecellsdialog|keep-content-radio"
msgid "Keep the contents of the hidden cells"
msgstr ""
diff --git a/source/kok/sd/messages.po b/source/kok/sd/messages.po
index 988900e8ca9..3bf11dd67a1 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+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"
@@ -13,175 +13,175 @@ msgstr ""
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-#: sd/inc/DocumentRenderer.hrc:29
+#: sd/inc/DocumentRenderer.hrc:27
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Slides"
msgstr "दर्शिका"
-#: sd/inc/DocumentRenderer.hrc:30
+#: sd/inc/DocumentRenderer.hrc:28
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Handouts"
msgstr "पत्रकां"
-#: sd/inc/DocumentRenderer.hrc:31
+#: sd/inc/DocumentRenderer.hrc:29
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Notes"
msgstr "टीपणां"
-#: sd/inc/DocumentRenderer.hrc:32
+#: sd/inc/DocumentRenderer.hrc:30
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Outline"
msgstr "भायलीवळ"
-#: sd/inc/DocumentRenderer.hrc:37
+#: sd/inc/DocumentRenderer.hrc:35
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "According to layout"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:38
+#: sd/inc/DocumentRenderer.hrc:36
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "1"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:39
+#: sd/inc/DocumentRenderer.hrc:37
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "2"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:40
+#: sd/inc/DocumentRenderer.hrc:38
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "3"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:41
+#: sd/inc/DocumentRenderer.hrc:39
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "4"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:42
+#: sd/inc/DocumentRenderer.hrc:40
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "6"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:43
+#: sd/inc/DocumentRenderer.hrc:41
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "9"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:48
+#: sd/inc/DocumentRenderer.hrc:46
msgctxt "STR_IMPRESS_PRINT_UI_ORDER_CHOICES"
msgid "Left to right, then down"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:49
+#: sd/inc/DocumentRenderer.hrc:47
msgctxt "STR_IMPRESS_PRINT_UI_ORDER_CHOICES"
msgid "Top to bottom, then right"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:54
+#: sd/inc/DocumentRenderer.hrc:52
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Original colors"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:55
+#: sd/inc/DocumentRenderer.hrc:53
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Grayscale"
msgstr "कड्डें प्रमाण"
-#: sd/inc/DocumentRenderer.hrc:56
+#: sd/inc/DocumentRenderer.hrc:54
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Black & white"
msgstr "काळो आनिक धवो"
-#: sd/inc/DocumentRenderer.hrc:61
+#: sd/inc/DocumentRenderer.hrc:59
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Original size"
msgstr "मूळ आकार"
-#: sd/inc/DocumentRenderer.hrc:62
+#: sd/inc/DocumentRenderer.hrc:60
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Fit to printable page"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:63
+#: sd/inc/DocumentRenderer.hrc:61
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Distribute on multiple sheets of paper"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:64
+#: sd/inc/DocumentRenderer.hrc:62
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Tile sheet of paper with repeated slides"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:69
+#: sd/inc/DocumentRenderer.hrc:67
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Original size"
msgstr "मूळ आकार"
-#: sd/inc/DocumentRenderer.hrc:70
+#: sd/inc/DocumentRenderer.hrc:68
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Fit to printable page"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:71
+#: sd/inc/DocumentRenderer.hrc:69
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Distribute on multiple sheets of paper"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:72
+#: sd/inc/DocumentRenderer.hrc:70
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Tile sheet of paper with repeated pages"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:77
+#: sd/inc/DocumentRenderer.hrc:75
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "All pages"
msgstr "सगळीं पानांSogllea panamni"
-#: sd/inc/DocumentRenderer.hrc:78
+#: sd/inc/DocumentRenderer.hrc:76
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "Front sides / right pages"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:79
+#: sd/inc/DocumentRenderer.hrc:77
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "Back sides / left pages"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:84
+#: sd/inc/DocumentRenderer.hrc:82
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~All slides"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:85
+#: sd/inc/DocumentRenderer.hrc:83
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~Slides"
msgstr "दर्शिका"
-#: sd/inc/DocumentRenderer.hrc:86
+#: sd/inc/DocumentRenderer.hrc:84
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Se~lection"
msgstr "निवड"
-#: sd/inc/DocumentRenderer.hrc:91
+#: sd/inc/DocumentRenderer.hrc:89
#, fuzzy
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~All pages"
msgstr "सगळीं पानांSogllea panamni"
-#: sd/inc/DocumentRenderer.hrc:92
+#: sd/inc/DocumentRenderer.hrc:90
#, fuzzy
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Pa~ges"
msgstr "पानां"
-#: sd/inc/DocumentRenderer.hrc:93
+#: sd/inc/DocumentRenderer.hrc:91
#, fuzzy
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Se~lection"
diff --git a/source/kok/svx/messages.po b/source/kok/svx/messages.po
index 01c4423292e..1d0c6653183 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: 2018-05-16 16:53+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+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"
@@ -5539,7 +5539,7 @@ msgstr ""
#: svx/uiconfig/ui/safemodedialog.ui:432
msgctxt "safemodedialog|btn_create_zip"
-msgid "Create Zip Archive from User Profile"
+msgid "Archive User Profile"
msgstr ""
#: svx/uiconfig/ui/safemodedialog.ui:445
@@ -9219,9 +9219,9 @@ msgid "Red"
msgstr "तांबडो"
#: include/svx/strings.hrc:565
-msgctxt "RID_SVXSTR_COLOR_VIOLET"
-msgid "Violet"
-msgstr "जांबळो"
+msgctxt "RID_SVXSTR_COLOR_MAGENTA"
+msgid "Magenta"
+msgstr "मॅजेन्टा"
#: include/svx/strings.hrc:566
#, fuzzy
@@ -9287,8 +9287,8 @@ msgid "Light Red"
msgstr ""
#: include/svx/strings.hrc:579
-msgctxt "RID_SVXSTR_COLOR_LIGHTVIOLET"
-msgid "Light Violet"
+msgctxt "RID_SVXSTR_COLOR_LIGHTMAGENTA"
+msgid "Light Magenta"
msgstr ""
#: include/svx/strings.hrc:580
@@ -9355,8 +9355,8 @@ msgid "Dark Red"
msgstr "गडद तांबडो"
#: include/svx/strings.hrc:593
-msgctxt "RID_SVXSTR_COLOR_DARKVIOLET1"
-msgid "Dark Violet"
+msgctxt "RID_SVXSTR_COLOR_DARKMAGENTA"
+msgid "Dark Magenta"
msgstr ""
#: include/svx/strings.hrc:594
@@ -9391,55 +9391,55 @@ msgstr ""
#. Elements of the Tonal color palette
#: include/svx/strings.hrc:601
+msgctxt "RID_SVXSTR_COLOR_VIOLET"
+msgid "Violet"
+msgstr "जांबळो"
+
+#: include/svx/strings.hrc:602
msgctxt "RID_SVXSTR_COLOR_VIOLET_OUG"
msgid "Violet (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:602
+#: include/svx/strings.hrc:603
msgctxt "RID_SVXSTR_COLOR_BLUE_OUG"
msgid "Blue (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:603
+#: include/svx/strings.hrc:604
msgctxt "RID_SVXSTR_COLOR_AZURE_OUG"
msgid "Azure (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:604
+#: include/svx/strings.hrc:605
msgctxt "RID_SVXSTR_COLOR_SPRINGGREEN_OUG"
msgid "Spring Green (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:605
+#: include/svx/strings.hrc:606
msgctxt "RID_SVXSTR_COLOR_GREEN_OUG"
msgid "Green (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:606
+#: include/svx/strings.hrc:607
msgctxt "RID_SVXSTR_COLOR_CHARTREUSEGREEN_OUG"
msgid "Chartreuse Green (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:607
+#: include/svx/strings.hrc:608
msgctxt "RID_SVXSTR_COLOR_ORANGE_OUG"
msgid "Orange (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:608
+#: include/svx/strings.hrc:609
msgctxt "RID_SVXSTR_COLOR_RED_OUG"
msgid "Red (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:609
+#: include/svx/strings.hrc:610
msgctxt "RID_SVXSTR_COLOR_ROSE_OUG"
msgid "Rose (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:610
-msgctxt "RID_SVXSTR_COLOR_MAGENTA"
-msgid "Magenta"
-msgstr "मॅजेन्टा"
-
#: include/svx/strings.hrc:611
msgctxt "RID_SVXSTR_COLOR_AZURE"
msgid "Azure"
@@ -12656,13 +12656,13 @@ msgstr "उजवे टोकदार बाण बुलेट्स"
#: include/svx/strings.hrc:1273
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_6"
-msgid "Check mark bullets"
-msgstr "चौकट खूण बुलेट्स"
+msgid "Cross mark bullets"
+msgstr ""
#: include/svx/strings.hrc:1274
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_7"
-msgid "Tick mark bullets"
-msgstr "टीक खूण बुलेट्स"
+msgid "Check mark bullets"
+msgstr ""
#: include/svx/strings.hrc:1275
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_0"
diff --git a/source/kok/sw/messages.po b/source/kok/sw/messages.po
index 0a5f38b044a..a771989600a 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: 2018-05-22 13:17+0200\n"
+"POT-Creation-Date: 2018-06-12 14:41+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"
@@ -1222,13 +1222,13 @@ msgstr "म्हण"
#: sw/inc/strings.hrc:172
msgctxt "STR_POOLCOLL_TOX_ILLUSH"
-msgid "Illustration Index Heading"
-msgstr "रेखाटन वळेरी मथळो"
+msgid "Figure Index Heading"
+msgstr ""
#: sw/inc/strings.hrc:173
msgctxt "STR_POOLCOLL_TOX_ILLUS1"
-msgid "Illustration Index 1"
-msgstr "रेखाटन वळेरी 1"
+msgid "Figure Index 1"
+msgstr ""
#: sw/inc/strings.hrc:174
msgctxt "STR_POOLCOLL_TOX_OBJECTH"
@@ -3720,10 +3720,9 @@ msgid "Table of Objects"
msgstr ""
#: sw/inc/strings.hrc:672
-#, fuzzy
msgctxt "STR_TOX_ILL"
-msgid "Illustration Index"
-msgstr "रेखाटन वळेरी 1"
+msgid "Table of Figures"
+msgstr ""
#: sw/inc/strings.hrc:673
#, c-format
@@ -9718,81 +9717,81 @@ msgctxt "footnotepage|label5"
msgid "Continuation Notice"
msgstr "निरंतरताय शिटकावणी"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:49
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:55
#, fuzzy
msgctxt "footnotesendnotestabpage|ftnntnum"
msgid "_Restart numbering"
msgstr "क्रमांक दिवपाक परतून सुरवात"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:91
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:93
#, fuzzy
msgctxt "footnotesendnotestabpage|ftnoffset_label"
msgid "_Start at:"
msgstr "क सुरू करात"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:112
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:111
msgctxt "footnotesendnotestabpage|ftnntnumfmt"
msgid "Custom _format"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:155
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:150
#, fuzzy
msgctxt "footnotesendnotestabpage|ftnsuffix_label"
msgid "Aft_er:"
msgstr "उपरांत"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:199
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:188
#, fuzzy
msgctxt "footnotesendnotestabpage|ftnprefix_label"
msgid "Be_fore:"
msgstr "पयली"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:228
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:212
msgctxt "footnotesendnotestabpage|ftnntattextend"
msgid "Collec_t at end of text"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:252
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:234
#, fuzzy
msgctxt "footnotesendnotestabpage|label1"
msgid "Footnotes"
msgstr "तळटीपPaimyallen"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:289
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:271
msgctxt "footnotesendnotestabpage|endntattextend"
msgid "C_ollect at end of section"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:315
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:295
#, fuzzy
msgctxt "footnotesendnotestabpage|endntnum"
msgid "_Restart numbering"
msgstr "क्रमांक दिवपाक परतून सुरवात"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:357
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:333
#, fuzzy
msgctxt "footnotesendnotestabpage|endoffset_label"
msgid "_Start at:"
msgstr "क सुरू करात"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:378
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:351
msgctxt "footnotesendnotestabpage|endntnumfmt"
msgid "_Custom format"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:421
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:390
#, fuzzy
msgctxt "footnotesendnotestabpage|endsuffix_label"
msgid "Aft_er:"
msgstr "उपरांत"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:465
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:428
#, fuzzy
msgctxt "footnotesendnotestabpage|endprefix_label"
msgid "Be_fore:"
msgstr "पयली"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:500
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:458
#, fuzzy
msgctxt "footnotesendnotestabpage|label2"
msgid "Endnotes"
@@ -9826,29 +9825,29 @@ msgctxt "formatsectiondialog|notes"
msgid "Footnotes/Endnotes"
msgstr "तळटीपो..."
-#: sw/uiconfig/swriter/ui/formattablepage.ui:63
+#: sw/uiconfig/swriter/ui/formattablepage.ui:77
#, fuzzy
msgctxt "formattablepage|nameft"
msgid "_Name"
msgstr "नाव"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:79
+#: sw/uiconfig/swriter/ui/formattablepage.ui:91
#, fuzzy
msgctxt "formattablepage|widthft"
msgid "W_idth"
msgstr "रुंदाय"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:110
+#: sw/uiconfig/swriter/ui/formattablepage.ui:120
msgctxt "formattablepage|relwidth"
msgid "Relati_ve"
msgstr ""
-#: sw/uiconfig/swriter/ui/formattablepage.ui:155
+#: sw/uiconfig/swriter/ui/formattablepage.ui:160
msgctxt "formattablepage|label45"
msgid "Properties"
msgstr "वैशिश्ट्यां"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:194
+#: sw/uiconfig/swriter/ui/formattablepage.ui:195
#, fuzzy
msgctxt "formattablepage|leftft"
msgid "Lef_t"
@@ -9860,72 +9859,72 @@ msgctxt "formattablepage|rightft"
msgid "Ri_ght"
msgstr "उजवे"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:228
+#: sw/uiconfig/swriter/ui/formattablepage.ui:226
#, fuzzy
msgctxt "formattablepage|aboveft"
msgid "_Above"
msgstr "वयर"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:245
+#: sw/uiconfig/swriter/ui/formattablepage.ui:241
#, fuzzy
msgctxt "formattablepage|belowft"
msgid "_Below"
msgstr "सकयल"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:320
+#: sw/uiconfig/swriter/ui/formattablepage.ui:311
#, fuzzy
msgctxt "formattablepage|label46"
msgid "Spacing"
msgstr "अवकाश "
-#: sw/uiconfig/swriter/ui/formattablepage.ui:362
+#: sw/uiconfig/swriter/ui/formattablepage.ui:349
#, fuzzy
msgctxt "formattablepage|full"
msgid "A_utomatic"
msgstr "आपशीचSvoCholit"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:380
+#: sw/uiconfig/swriter/ui/formattablepage.ui:365
#, fuzzy
msgctxt "formattablepage|left"
msgid "_Left"
msgstr "दावे"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:398
+#: sw/uiconfig/swriter/ui/formattablepage.ui:381
#, fuzzy
msgctxt "formattablepage|fromleft"
msgid "_From left"
msgstr "दावेकडल्यान"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:416
+#: sw/uiconfig/swriter/ui/formattablepage.ui:397
#, fuzzy
msgctxt "formattablepage|right"
msgid "R_ight"
msgstr "उजवे"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:435
+#: sw/uiconfig/swriter/ui/formattablepage.ui:413
#, fuzzy
msgctxt "formattablepage|center"
msgid "_Center"
msgstr "केंद्र"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:453
+#: sw/uiconfig/swriter/ui/formattablepage.ui:429
#, fuzzy
msgctxt "formattablepage|free"
msgid "_Manual"
msgstr "हस्तुकीं"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:478
+#: sw/uiconfig/swriter/ui/formattablepage.ui:452
msgctxt "formattablepage|label43"
msgid "Alignment"
msgstr "सारके करप"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:522
+#: sw/uiconfig/swriter/ui/formattablepage.ui:491
#, fuzzy
msgctxt "formattablepage|label53"
msgid "Text _direction"
msgstr "मजकूर दिशा"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:553
+#: sw/uiconfig/swriter/ui/formattablepage.ui:519
#, fuzzy
msgctxt "formattablepage|label44"
msgid "Properties "
@@ -10312,22 +10311,27 @@ msgctxt "headerfootermenu|insert_pagenumber"
msgid "Insert Page Number"
msgstr ""
-#: sw/uiconfig/swriter/ui/indentpage.ui:52
+#: sw/uiconfig/swriter/ui/headerfootermenu.ui:42
+msgctxt "headerfootermenu|insert_pagecount"
+msgid "Insert Page Count"
+msgstr ""
+
+#: sw/uiconfig/swriter/ui/indentpage.ui:57
msgctxt "indentpage|label1"
msgid "_Before section"
msgstr ""
-#: sw/uiconfig/swriter/ui/indentpage.ui:67
+#: sw/uiconfig/swriter/ui/indentpage.ui:71
msgctxt "indentpage|label3"
msgid "_After section"
msgstr ""
-#: sw/uiconfig/swriter/ui/indentpage.ui:113
+#: sw/uiconfig/swriter/ui/indentpage.ui:115
msgctxt "indentpage|label2"
msgid "Indent"
msgstr "खांच मारातOntor sthan"
-#: sw/uiconfig/swriter/ui/indentpage.ui:142
+#: sw/uiconfig/swriter/ui/indentpage.ui:155
msgctxt "indentpage|preview-atkobject"
msgid "Example"
msgstr "देख"
@@ -14118,7 +14122,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:68
msgctxt "optcompatpage|format"
-msgid "MS Word-compatible trailing blanks"
+msgid "Word-compatible trailing blanks"
msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:69
@@ -14128,7 +14132,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:70
msgctxt "optcompatpage|format"
-msgid "A database field (e.g., MailMerge) with empty value hides its paragraph"
+msgid "Hide paragraphs of database fields (e.g., mail merge) with an empty value"
msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:71
@@ -17035,133 +17039,133 @@ msgctxt "tableproperties|background"
msgid "Background"
msgstr "फांटभूंय"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:25
-msgctxt "tabletextflowpage|liststore1"
-msgid "Horizontal"
-msgstr "आडवे"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:29
-msgctxt "tabletextflowpage|liststore1"
-msgid "Vertical"
-msgstr "उबे"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:33
-msgctxt "tabletextflowpage|liststore1"
-msgid "Use superordinate object settings"
-msgstr "उपवस्त मजकूर दिशा स्थापित वापरात"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:47
-msgctxt "tabletextflowpage|liststore2"
-msgid "Top"
-msgstr "वयर"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:51
-msgctxt "tabletextflowpage|liststore2"
-msgid "Centered"
-msgstr "केंद्रितCentred"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:55
-msgctxt "tabletextflowpage|liststore2"
-msgid "Bottom"
-msgstr "तळ"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:97
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:53
#, fuzzy
msgctxt "tabletextflowpage|break"
msgid "_Break"
msgstr "खण्ड"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:112
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:68
#, fuzzy
msgctxt "tabletextflowpage|page"
msgid "_Page"
msgstr "पान"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:132
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:87
#, fuzzy
msgctxt "tabletextflowpage|column"
msgid "Col_umn"
msgstr "स्तंभ"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:151
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:106
#, fuzzy
msgctxt "tabletextflowpage|before"
msgid "Be_fore"
msgstr "पयली"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:171
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:125
#, fuzzy
msgctxt "tabletextflowpage|after"
msgid "_After"
msgstr "उपरांत"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:203
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:158
#, fuzzy
msgctxt "tabletextflowpage|pagestyle"
msgid "With Page St_yle"
msgstr "पान शैलीचे सम्पादन"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:224
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:177
#, fuzzy
msgctxt "tabletextflowpage|pagenoft"
msgid "Page _number"
msgstr "पान क्रमांक"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:257
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:213
#, fuzzy
msgctxt "tabletextflowpage|pagestylelb-atkobject"
msgid "With Page Style"
msgstr "पान शैलीचे सम्पादन"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:274
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:230
msgctxt "tabletextflowpage|split"
msgid "Allow _table to split across pages and columns"
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:289
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:245
#, fuzzy
msgctxt "tabletextflowpage|splitrow"
msgid "Allow row to break a_cross pages and columns"
msgstr "वळीक पाना आनिक स्तंभांपलतडी खण्ड जावक दियात"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:306
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:262
#, fuzzy
msgctxt "tabletextflowpage|keep"
msgid "_Keep with next paragraph"
msgstr "फुडल्या परिच्छेदांत"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:328
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:284
msgctxt "tabletextflowpage|label40"
msgid "Text _orientation"
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:361
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:298
+msgctxt "tabletextflowpage|liststore1"
+msgid "Horizontal"
+msgstr "आडवे"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:299
+msgctxt "tabletextflowpage|liststore1"
+msgid "Vertical"
+msgstr "उबे"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:300
+msgctxt "tabletextflowpage|liststore1"
+msgid "Use superordinate object settings"
+msgstr "उपवस्त मजकूर दिशा स्थापित वापरात"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:321
#, fuzzy
msgctxt "tabletextflowpage|headline"
msgid "R_epeat heading"
msgstr "मथळो परतून करात"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:383
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:343
msgctxt "tabletextflowpage|label38"
msgid "The first "
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:396
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:356
msgctxt "tabletextflowpage|label39"
msgid "rows"
msgstr "रांगो"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:434
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:395
msgctxt "tabletextflowpage|label35"
msgid "Text Flow"
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:467
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:428
msgctxt "tabletextflowpage|label41"
msgid "_Vertical alignment"
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:495
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:442
+msgctxt "tabletextflowpage|liststore2"
+msgid "Top"
+msgstr "वयर"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:443
+msgctxt "tabletextflowpage|liststore2"
+msgid "Centered"
+msgstr "केंद्रितCentred"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:444
+msgctxt "tabletextflowpage|liststore2"
+msgid "Bottom"
+msgstr "तळ"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:460
msgctxt "tabletextflowpage|label36"
msgid "Alignment"
msgstr "सारके करप"
@@ -17986,10 +17990,9 @@ msgid "Alphabetical Index"
msgstr ""
#: sw/uiconfig/swriter/ui/tocindexpage.ui:58
-#, fuzzy
msgctxt "tocindexpage|liststore1"
-msgid "Illustration Index"
-msgstr "रेखाटन वळेरी 1"
+msgid "Table of Figures"
+msgstr ""
#: sw/uiconfig/swriter/ui/tocindexpage.ui:62
msgctxt "tocindexpage|liststore1"
diff --git a/source/kok/writerperfect/messages.po b/source/kok/writerperfect/messages.po
index 10a388c46d3..b0666e9283e 100644
--- a/source/kok/writerperfect/messages.po
+++ b/source/kok/writerperfect/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-16 16:54+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+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"
@@ -65,99 +65,99 @@ msgctxt "exportepub|generalft"
msgid "General"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:122
+#: writerperfect/uiconfig/ui/exportepub.ui:121
#, fuzzy
msgctxt "exportepub|versionft"
msgid "Version:"
msgstr "आवृत्ती:"
-#: writerperfect/uiconfig/ui/exportepub.ui:139
+#: writerperfect/uiconfig/ui/exportepub.ui:138
msgctxt "exportepub|epub3"
msgid "EPUB 3.0"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:140
+#: writerperfect/uiconfig/ui/exportepub.ui:139
msgctxt "exportepub|epub2"
msgid "EPUB 2.0"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:175
+#: writerperfect/uiconfig/ui/exportepub.ui:174
msgctxt "exportepub|splitft"
msgid "Split method:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:192
+#: writerperfect/uiconfig/ui/exportepub.ui:191
#, fuzzy
msgctxt "exportepub|splitpage"
msgid "Page break"
msgstr "पान खण्ड"
-#: writerperfect/uiconfig/ui/exportepub.ui:193
+#: writerperfect/uiconfig/ui/exportepub.ui:192
msgctxt "exportepub|splitheading"
msgid "Heading"
msgstr "मथळो"
-#: writerperfect/uiconfig/ui/exportepub.ui:228
+#: writerperfect/uiconfig/ui/exportepub.ui:227
msgctxt "exportepub|layoutft"
msgid "Layout method:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:245
+#: writerperfect/uiconfig/ui/exportepub.ui:244
msgctxt "exportepub|layoutreflowable"
msgid "Reflowable"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:246
+#: writerperfect/uiconfig/ui/exportepub.ui:245
msgctxt "exportepub|layoutfixed"
msgid "Fixed"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:281
+#: writerperfect/uiconfig/ui/exportepub.ui:280
msgctxt "exportepub|coverimageft"
msgid "Custom cover image:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:311
+#: writerperfect/uiconfig/ui/exportepub.ui:310
msgctxt "exportepub|coverbutton"
msgid "Browse..."
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:355
+#: writerperfect/uiconfig/ui/exportepub.ui:354
msgctxt "exportepub|mediadirft"
msgid "Custom media directory:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:385
+#: writerperfect/uiconfig/ui/exportepub.ui:384
msgctxt "exportepub|mediabutton"
msgid "Browse..."
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:429
+#: writerperfect/uiconfig/ui/exportepub.ui:428
msgctxt "exportepub|metadataft"
msgid "Metadata"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:470
+#: writerperfect/uiconfig/ui/exportepub.ui:468
msgctxt "exportepub|identifierft"
msgid "Identifier:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:485
+#: writerperfect/uiconfig/ui/exportepub.ui:483
msgctxt "exportepub|titleft"
msgid "Title:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:511
+#: writerperfect/uiconfig/ui/exportepub.ui:509
msgctxt "exportepub|authorft"
msgid "Author:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:537
+#: writerperfect/uiconfig/ui/exportepub.ui:535
msgctxt "exportepub|languageft"
msgid "Language:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:563
+#: writerperfect/uiconfig/ui/exportepub.ui:561
msgctxt "exportepub|dateft"
msgid "Date:"
msgstr ""
diff --git a/source/ks/cui/messages.po b/source/ks/cui/messages.po
index 034ff64143b..a8342d623b0 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+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"
@@ -10455,108 +10455,108 @@ msgctxt "positionsizedialog|PositionAndSizeDialog"
msgid "Position and Size"
msgstr "حالت اورسائز۔۔۔"
-#: cui/uiconfig/ui/positionsizedialog.ui:107
+#: cui/uiconfig/ui/positionsizedialog.ui:136
#, fuzzy
msgctxt "positionsizedialog|RID_SVXPAGE_POSITION_SIZE"
msgid "Position and Size"
msgstr "حالت اورسائز۔۔۔"
-#: cui/uiconfig/ui/positionsizedialog.ui:129
+#: cui/uiconfig/ui/positionsizedialog.ui:182
#, fuzzy
msgctxt "positionsizedialog|RID_SVXPAGE_SWPOSSIZE"
msgid "Position and Size"
msgstr "حالت اورسائز۔۔۔"
-#: cui/uiconfig/ui/positionsizedialog.ui:152
+#: cui/uiconfig/ui/positionsizedialog.ui:229
#, fuzzy
msgctxt "positionsizedialog|RID_SVXPAGE_ANGLE"
msgid "Rotation"
msgstr "اقتباس"
-#: cui/uiconfig/ui/positionsizedialog.ui:175
+#: cui/uiconfig/ui/positionsizedialog.ui:276
msgctxt "positionsizedialog|RID_SVXPAGE_SLANT"
msgid "Slant & Corner Radius"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:40
+#: cui/uiconfig/ui/possizetabpage.ui:61
#, fuzzy
msgctxt "possizetabpage|FT_POS_X"
msgid "Position _X:"
msgstr "مقام"
-#: cui/uiconfig/ui/possizetabpage.ui:56
+#: cui/uiconfig/ui/possizetabpage.ui:75
#, fuzzy
msgctxt "possizetabpage|FT_POS_Y"
msgid "Position _Y:"
msgstr "مقام"
-#: cui/uiconfig/ui/possizetabpage.ui:110
+#: cui/uiconfig/ui/possizetabpage.ui:128
msgctxt "possizetabpage|FT_POSREFERENCE"
msgid "_Base point:"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:148
+#: cui/uiconfig/ui/possizetabpage.ui:182
#, fuzzy
msgctxt "possizetabpage|label1"
msgid "Position"
msgstr "مقام"
-#: cui/uiconfig/ui/possizetabpage.ui:190
+#: cui/uiconfig/ui/possizetabpage.ui:224
#, fuzzy
msgctxt "possizetabpage|FT_WIDTH"
msgid "Wi_dth:"
msgstr "كھجر"
-#: cui/uiconfig/ui/possizetabpage.ui:206
+#: cui/uiconfig/ui/possizetabpage.ui:238
#, fuzzy
msgctxt "possizetabpage|FT_HEIGHT"
msgid "H_eight:"
msgstr "تھزر"
-#: cui/uiconfig/ui/possizetabpage.ui:247
+#: cui/uiconfig/ui/possizetabpage.ui:276
msgctxt "possizetabpage|CBX_SCALE"
msgid "_Keep ratio"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:279
+#: cui/uiconfig/ui/possizetabpage.ui:307
msgctxt "possizetabpage|FT_SIZEREFERENCE"
msgid "Base _point:"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:317
+#: cui/uiconfig/ui/possizetabpage.ui:361
msgctxt "possizetabpage|label2"
msgid "Size"
msgstr "سائز"
-#: cui/uiconfig/ui/possizetabpage.ui:356
+#: cui/uiconfig/ui/possizetabpage.ui:401
#, fuzzy
msgctxt "possizetabpage|TSB_POSPROTECT"
msgid "Positio_n"
msgstr "مقام"
-#: cui/uiconfig/ui/possizetabpage.ui:373
+#: cui/uiconfig/ui/possizetabpage.ui:418
#, fuzzy
msgctxt "possizetabpage|TSB_SIZEPROTECT"
msgid "_Size"
msgstr "سائز"
-#: cui/uiconfig/ui/possizetabpage.ui:397
+#: cui/uiconfig/ui/possizetabpage.ui:441
#, fuzzy
msgctxt "possizetabpage|label3"
msgid "Protect"
msgstr "تحفظ کرنا"
-#: cui/uiconfig/ui/possizetabpage.ui:430
+#: cui/uiconfig/ui/possizetabpage.ui:475
msgctxt "possizetabpage|TSB_AUTOGROW_WIDTH"
msgid "_Fit width to text"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:447
+#: cui/uiconfig/ui/possizetabpage.ui:492
msgctxt "possizetabpage|TSB_AUTOGROW_HEIGHT"
msgid "Fit _height to text"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:471
+#: cui/uiconfig/ui/possizetabpage.ui:515
msgctxt "possizetabpage|label4"
msgid "Adapt"
msgstr ""
@@ -10769,50 +10769,50 @@ msgctxt "recordnumberdialog|label2"
msgid "go to record"
msgstr ""
-#: cui/uiconfig/ui/rotationtabpage.ui:52
+#: cui/uiconfig/ui/rotationtabpage.ui:56
#, fuzzy
msgctxt "rotationtabpage|FT_POS_X"
msgid "Position _X:"
msgstr "مقام"
-#: cui/uiconfig/ui/rotationtabpage.ui:66
+#: cui/uiconfig/ui/rotationtabpage.ui:70
#, fuzzy
msgctxt "rotationtabpage|FT_POS_Y"
msgid "Position _Y:"
msgstr "مقام"
-#: cui/uiconfig/ui/rotationtabpage.ui:116
+#: cui/uiconfig/ui/rotationtabpage.ui:123
msgctxt "rotationtabpage|FT_POSPRESETS"
msgid "_Default settings:"
msgstr ""
-#: cui/uiconfig/ui/rotationtabpage.ui:130
+#: cui/uiconfig/ui/rotationtabpage.ui:151
msgctxt "rotationtabpage|CTL_RECT|tooltip_text"
msgid "Rotation point"
msgstr ""
-#: cui/uiconfig/ui/rotationtabpage.ui:155
+#: cui/uiconfig/ui/rotationtabpage.ui:178
msgctxt "rotationtabpage|label1"
msgid "Pivot Point"
msgstr ""
-#: cui/uiconfig/ui/rotationtabpage.ui:197
+#: cui/uiconfig/ui/rotationtabpage.ui:220
msgctxt "rotationtabpage|FT_ANGLE"
msgid "_Angle:"
msgstr ""
-#: cui/uiconfig/ui/rotationtabpage.ui:238
+#: cui/uiconfig/ui/rotationtabpage.ui:263
msgctxt "rotationtabpage|FT_ANGLEPRESETS"
msgid "Default _settings:"
msgstr ""
-#: cui/uiconfig/ui/rotationtabpage.ui:252
+#: cui/uiconfig/ui/rotationtabpage.ui:287
#, fuzzy
msgctxt "rotationtabpage|CTL_ANGLE|tooltip_text"
msgid "Rotation Angle"
msgstr "كون گتھ"
-#: cui/uiconfig/ui/rotationtabpage.ui:277
+#: cui/uiconfig/ui/rotationtabpage.ui:314
#, fuzzy
msgctxt "rotationtabpage|label2"
msgid "Rotation Angle"
@@ -11208,55 +11208,55 @@ msgctxt "similaritysearchdialog|relaxbox"
msgid "_Combine"
msgstr "جوڑنا"
-#: cui/uiconfig/ui/slantcornertabpage.ui:50
+#: cui/uiconfig/ui/slantcornertabpage.ui:70
msgctxt "slantcornertabpage|label5"
msgid "_X:"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:88
+#: cui/uiconfig/ui/slantcornertabpage.ui:110
msgctxt "slantcornertabpage|label6"
msgid "_Y:"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:125
+#: cui/uiconfig/ui/slantcornertabpage.ui:149
msgctxt "slantcornertabpage|label3"
msgid "Control Point 1"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:159
+#: cui/uiconfig/ui/slantcornertabpage.ui:183
#, fuzzy
msgctxt "slantcornertabpage|FT_RADIUS"
msgid "_Radius:"
msgstr "نصف قطر"
-#: cui/uiconfig/ui/slantcornertabpage.ui:189
+#: cui/uiconfig/ui/slantcornertabpage.ui:214
#, fuzzy
msgctxt "slantcornertabpage|label1"
msgid "Corner Radius"
msgstr "نصف قطر کون"
-#: cui/uiconfig/ui/slantcornertabpage.ui:223
+#: cui/uiconfig/ui/slantcornertabpage.ui:248
msgctxt "slantcornertabpage|FT_ANGLE"
msgid "_Angle:"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:253
+#: cui/uiconfig/ui/slantcornertabpage.ui:279
#, fuzzy
msgctxt "slantcornertabpage|label2"
msgid "Slant"
msgstr "سلانٹ"
-#: cui/uiconfig/ui/slantcornertabpage.ui:294
+#: cui/uiconfig/ui/slantcornertabpage.ui:320
msgctxt "slantcornertabpage|label4"
msgid "_X:"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:332
+#: cui/uiconfig/ui/slantcornertabpage.ui:360
msgctxt "slantcornertabpage|label7"
msgid "_Y:"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:369
+#: cui/uiconfig/ui/slantcornertabpage.ui:399
msgctxt "slantcornertabpage|label8"
msgid "Control Point 2"
msgstr ""
@@ -11557,124 +11557,124 @@ msgctxt "storedwebconnectiondialog|change"
msgid "_Change Password..."
msgstr "خفیہ لفظ كریو تبدیل ۔۔۔"
-#: cui/uiconfig/ui/swpossizepage.ui:74
+#: cui/uiconfig/ui/swpossizepage.ui:85
#, fuzzy
msgctxt "swpossizepage|widthft"
msgid "_Width:"
msgstr "كھجر"
-#: cui/uiconfig/ui/swpossizepage.ui:111
+#: cui/uiconfig/ui/swpossizepage.ui:123
#, fuzzy
msgctxt "swpossizepage|heightft"
msgid "H_eight:"
msgstr "تھزر"
-#: cui/uiconfig/ui/swpossizepage.ui:128
+#: cui/uiconfig/ui/swpossizepage.ui:141
msgctxt "swpossizepage|ratio"
msgid "_Keep ratio"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:149
+#: cui/uiconfig/ui/swpossizepage.ui:162
msgctxt "swpossizepage|label2"
msgid "Size"
msgstr "سائز"
-#: cui/uiconfig/ui/swpossizepage.ui:205
+#: cui/uiconfig/ui/swpossizepage.ui:218
#, fuzzy
msgctxt "swpossizepage|topage"
msgid "To _page"
msgstr "صفحہ میں"
-#: cui/uiconfig/ui/swpossizepage.ui:222
+#: cui/uiconfig/ui/swpossizepage.ui:234
#, fuzzy
msgctxt "swpossizepage|topara"
msgid "To paragrap_h"
msgstr "پیراگراف"
-#: cui/uiconfig/ui/swpossizepage.ui:238
+#: cui/uiconfig/ui/swpossizepage.ui:250
#, fuzzy
msgctxt "swpossizepage|tochar"
msgid "To cha_racter"
msgstr "لفظ میں"
-#: cui/uiconfig/ui/swpossizepage.ui:254
+#: cui/uiconfig/ui/swpossizepage.ui:266
#, fuzzy
msgctxt "swpossizepage|aschar"
msgid "_As character"
msgstr "الفاظ جیسے"
-#: cui/uiconfig/ui/swpossizepage.ui:270
+#: cui/uiconfig/ui/swpossizepage.ui:282
#, fuzzy
msgctxt "swpossizepage|toframe"
msgid "To _frame"
msgstr "فریم"
-#: cui/uiconfig/ui/swpossizepage.ui:292
+#: cui/uiconfig/ui/swpossizepage.ui:304
msgctxt "swpossizepage|label1"
msgid "Anchor"
msgstr "جوڑ"
-#: cui/uiconfig/ui/swpossizepage.ui:333
+#: cui/uiconfig/ui/swpossizepage.ui:344
#, fuzzy
msgctxt "swpossizepage|horiposft"
msgid "Hori_zontal:"
msgstr "س۪یود"
-#: cui/uiconfig/ui/swpossizepage.ui:347
+#: cui/uiconfig/ui/swpossizepage.ui:358
msgctxt "swpossizepage|horibyft"
msgid "b_y:"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:361
+#: cui/uiconfig/ui/swpossizepage.ui:372
msgctxt "swpossizepage|vertbyft"
msgid "_by:"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:375
+#: cui/uiconfig/ui/swpossizepage.ui:386
msgctxt "swpossizepage|horitoft"
msgid "_to:"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:421
+#: cui/uiconfig/ui/swpossizepage.ui:433
#, fuzzy
msgctxt "swpossizepage|vertposft"
msgid "_Vertical:"
msgstr "كھڈا"
-#: cui/uiconfig/ui/swpossizepage.ui:457
+#: cui/uiconfig/ui/swpossizepage.ui:470
msgctxt "swpossizepage|verttoft"
msgid "t_o:"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:478
+#: cui/uiconfig/ui/swpossizepage.ui:492
msgctxt "swpossizepage|mirror"
msgid "_Mirror on even pages"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:495
+#: cui/uiconfig/ui/swpossizepage.ui:509
msgctxt "swpossizepage|followtextflow"
msgid "Follow te_xt flow"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:518
+#: cui/uiconfig/ui/swpossizepage.ui:532
#, fuzzy
msgctxt "swpossizepage|label11"
msgid "Position"
msgstr "مقام"
-#: cui/uiconfig/ui/swpossizepage.ui:549
+#: cui/uiconfig/ui/swpossizepage.ui:563
#, fuzzy
msgctxt "swpossizepage|pos"
msgid "Positio_n"
msgstr "مقام"
-#: cui/uiconfig/ui/swpossizepage.ui:565
+#: cui/uiconfig/ui/swpossizepage.ui:579
#, fuzzy
msgctxt "swpossizepage|size"
msgid "_Size"
msgstr "سائز"
-#: cui/uiconfig/ui/swpossizepage.ui:587
+#: cui/uiconfig/ui/swpossizepage.ui:601
#, fuzzy
msgctxt "swpossizepage|label3"
msgid "Protect"
@@ -11878,13 +11878,13 @@ msgctxt "textattrtabpage|label2"
msgid "Spacing to Borders"
msgstr ""
-#: cui/uiconfig/ui/textattrtabpage.ui:425
+#: cui/uiconfig/ui/textattrtabpage.ui:423
#, fuzzy
msgctxt "textattrtabpage|TSB_FULL_WIDTH"
msgid "Full _width"
msgstr "پوری- چوڑائی"
-#: cui/uiconfig/ui/textattrtabpage.ui:448
+#: cui/uiconfig/ui/textattrtabpage.ui:446
msgctxt "textattrtabpage|label3"
msgid "Text Anchor"
msgstr ""
diff --git a/source/ks/filter/source/config/fragments/filters.po b/source/ks/filter/source/config/fragments/filters.po
index 7a1747a259e..d9aca560e45 100644
--- a/source/ks/filter/source/config/fragments/filters.po
+++ b/source/ks/filter/source/config/fragments/filters.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-16 16:54+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2016-12-04 20:25+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -465,8 +465,8 @@ msgctxt ""
"MS Word 2003 XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Word 2003 XML"
-msgstr "مائیکرو سافٹ ورڈ2003 XML"
+msgid "Word 2003 XML"
+msgstr ""
#: MS_Word_2007_XML.xcu
msgctxt ""
@@ -1290,7 +1290,7 @@ msgctxt ""
"Calc MS Excel 2007 VBA XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Excel 2007-2016 XML (macro enabled)"
+msgid "Excel 2007–2019 (macro-enabled)"
msgstr ""
#: calc_MS_Excel_2007_XML.xcu
diff --git a/source/ks/filter/source/config/fragments/types.po b/source/ks/filter/source/config/fragments/types.po
index 8e55a62cfe3..1774bf7406e 100644
--- a/source/ks/filter/source/config/fragments/types.po
+++ b/source/ks/filter/source/config/fragments/types.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-08 15:11+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2015-11-11 21:31+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -295,8 +295,8 @@ msgctxt ""
"writer_MS_Word_2003_XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Word 2003 XML"
-msgstr "مائیکرو سافٹ ورڈ2003 XML"
+msgid "Word 2003 XML"
+msgstr ""
#: writer_MS_Word_2007_XML.xcu
msgctxt ""
diff --git a/source/ks/fpicker/messages.po b/source/ks/fpicker/messages.po
index 1caa1eb8ae9..4cd6f264c3c 100644
--- a/source/ks/fpicker/messages.po
+++ b/source/ks/fpicker/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+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"
@@ -276,14 +276,13 @@ msgstr ""
#: fpicker/uiconfig/ui/foldernamedialog.ui:8
msgctxt "foldernamedialog|FolderNameDialog"
-msgid "Folder Name ?"
+msgid "Folder Name"
msgstr ""
#: fpicker/uiconfig/ui/foldernamedialog.ui:91
-#, fuzzy
msgctxt "foldernamedialog|label2"
-msgid "Na_me"
-msgstr "Name"
+msgid "Na_me:"
+msgstr ""
#: fpicker/uiconfig/ui/foldernamedialog.ui:122
#, fuzzy
diff --git a/source/ks/officecfg/registry/data/org/openoffice/Office/UI.po b/source/ks/officecfg/registry/data/org/openoffice/Office/UI.po
index e8de1a13c56..404a092beb7 100644
--- a/source/ks/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/ks/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-22 13:17+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2016-05-25 13:33+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -26983,8 +26983,8 @@ msgctxt ""
"..WriterCommands.UserInterface.Commands..uno:TextAttributes\n"
"Label\n"
"value.text"
-msgid "Text Attributes"
-msgstr "متن خصوصیات"
+msgid "Text Attributes..."
+msgstr ""
#: WriterCommands.xcu
msgctxt ""
diff --git a/source/ks/readlicense_oo/docs.po b/source/ks/readlicense_oo/docs.po
index 0d68386f576..893919a1645 100644
--- a/source/ks/readlicense_oo/docs.po
+++ b/source/ks/readlicense_oo/docs.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-04-17 15:54+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2016-03-11 12:16+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -116,7 +116,7 @@ msgctxt ""
"readme.xrm\n"
"macxiOSX\n"
"readmeitem.text"
-msgid "MacOSX 10.8 (Mountain Lion) or higher"
+msgid "MacOSX 10.9 (Mavericks) or higher"
msgstr ""
#: readme.xrm
diff --git a/source/ks/sc/messages.po b/source/ks/sc/messages.po
index 02d0a691305..33f4979df22 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-12 14:40+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"
@@ -1886,16 +1886,21 @@ msgid "Nested arrays are not supported."
msgstr ""
#: sc/inc/globstr.hrc:390
+msgctxt "STR_ERR_LONG_BAD_ARRAY_CONTENT"
+msgid "Unsupported inline array content."
+msgstr ""
+
+#: sc/inc/globstr.hrc:391
msgctxt "STR_UNDO_TEXTTOCOLUMNS"
msgid "Text to Columns"
msgstr ""
-#: sc/inc/globstr.hrc:391
+#: sc/inc/globstr.hrc:392
msgctxt "STR_DOC_UPDATED"
msgid "Your spreadsheet has been updated with changes saved by other users."
msgstr ""
-#: sc/inc/globstr.hrc:392
+#: sc/inc/globstr.hrc:393
msgctxt "STR_DOC_WILLBESAVED"
msgid ""
"The spreadsheet must be saved now to activate sharing mode.\n"
@@ -1903,7 +1908,7 @@ msgid ""
"Do you want to continue?"
msgstr ""
-#: sc/inc/globstr.hrc:393
+#: sc/inc/globstr.hrc:394
msgctxt "STR_DOC_WILLNOTBESAVED"
msgid ""
"Already resolved merge conflicts will be lost and your changes to the shared spreadsheet will not be saved.\n"
@@ -1911,7 +1916,7 @@ msgid ""
"Do you want to continue?"
msgstr ""
-#: sc/inc/globstr.hrc:394
+#: sc/inc/globstr.hrc:395
msgctxt "STR_DOC_DISABLESHARED"
msgid ""
"Disabling shared mode of a spreadsheet hinders all other users of the shared spreadsheet to merge back their work.\n"
@@ -1919,7 +1924,7 @@ msgid ""
"Do you want to continue?"
msgstr ""
-#: sc/inc/globstr.hrc:395
+#: sc/inc/globstr.hrc:396
msgctxt "STR_DOC_NOLONGERSHARED"
msgid ""
"This spreadsheet is no longer in shared mode.\n"
@@ -1927,7 +1932,7 @@ msgid ""
"Save your spreadsheet to a separate file and merge your changes to the shared spreadsheet manually."
msgstr ""
-#: sc/inc/globstr.hrc:396
+#: sc/inc/globstr.hrc:397
msgctxt "STR_FILE_LOCKED_TRY_LATER"
msgid ""
"The shared spreadsheet file is locked due to a merge in progress by user: '%1'\n"
@@ -1935,7 +1940,7 @@ msgid ""
"Sharing mode of a locked file cannot be disabled. Try again later."
msgstr ""
-#: sc/inc/globstr.hrc:397
+#: sc/inc/globstr.hrc:398
msgctxt "STR_FILE_LOCKED_SAVE_LATER"
msgid ""
"The shared spreadsheet file is locked due to a merge in progress by user: '%1'\n"
@@ -1943,159 +1948,159 @@ msgid ""
"Try again later to save your changes."
msgstr ""
-#: sc/inc/globstr.hrc:398
+#: sc/inc/globstr.hrc:399
msgctxt "STR_UNKNOWN_USER"
msgid "Unknown User"
msgstr ""
-#: sc/inc/globstr.hrc:399
+#: sc/inc/globstr.hrc:400
msgctxt "STR_SHAPE_AUTOSHAPE"
msgid "AutoShape"
msgstr ""
-#: sc/inc/globstr.hrc:400
+#: sc/inc/globstr.hrc:401
msgctxt "STR_SHAPE_RECTANGLE"
msgid "Rectangle"
msgstr "مستطیل"
-#: sc/inc/globstr.hrc:401
+#: sc/inc/globstr.hrc:402
#, fuzzy
msgctxt "STR_SHAPE_LINE"
msgid "Line"
msgstr "زندگی"
-#: sc/inc/globstr.hrc:402
+#: sc/inc/globstr.hrc:403
msgctxt "STR_SHAPE_OVAL"
msgid "Oval"
msgstr "بیضوی"
-#: sc/inc/globstr.hrc:403
+#: sc/inc/globstr.hrc:404
#, fuzzy
msgctxt "STR_FORM_BUTTON"
msgid "Button"
msgstr "بٹن "
-#: sc/inc/globstr.hrc:404
+#: sc/inc/globstr.hrc:405
#, fuzzy
msgctxt "STR_FORM_CHECKBOX"
msgid "Check Box"
msgstr "چیک باکس"
-#: sc/inc/globstr.hrc:405
+#: sc/inc/globstr.hrc:406
#, fuzzy
msgctxt "STR_FORM_OPTIONBUTTON"
msgid "Option Button"
msgstr "متبئدل بٹن"
-#: sc/inc/globstr.hrc:406
+#: sc/inc/globstr.hrc:407
#, fuzzy
msgctxt "STR_FORM_LABEL"
msgid "Label"
msgstr "لیبل"
-#: sc/inc/globstr.hrc:407
+#: sc/inc/globstr.hrc:408
#, fuzzy
msgctxt "STR_FORM_LISTBOX"
msgid "List Box"
msgstr "لسٹ باکس"
-#: sc/inc/globstr.hrc:408
+#: sc/inc/globstr.hrc:409
msgctxt "STR_FORM_GROUPBOX"
msgid "Group Box"
msgstr "گروپ باکس"
-#: sc/inc/globstr.hrc:409
+#: sc/inc/globstr.hrc:410
#, fuzzy
msgctxt "STR_FORM_DROPDOWN"
msgid "Drop Down"
msgstr "نیچےجاؤ"
-#: sc/inc/globstr.hrc:410
+#: sc/inc/globstr.hrc:411
msgctxt "STR_FORM_SPINNER"
msgid "Spinner"
msgstr ""
-#: sc/inc/globstr.hrc:411
+#: sc/inc/globstr.hrc:412
#, fuzzy
msgctxt "STR_FORM_SCROLLBAR"
msgid "Scroll Bar"
msgstr " سکرول بار"
-#: sc/inc/globstr.hrc:412
+#: sc/inc/globstr.hrc:413
msgctxt "STR_STYLE_FAMILY_CELL"
msgid "Cell Styles"
msgstr "سیل سٹائلس"
-#: sc/inc/globstr.hrc:413
+#: sc/inc/globstr.hrc:414
#, fuzzy
msgctxt "STR_STYLE_FAMILY_PAGE"
msgid "Page Styles"
msgstr "صفحك سٹائل"
-#: sc/inc/globstr.hrc:414
+#: sc/inc/globstr.hrc:415
#, fuzzy
msgctxt "STR_ERR_DATAPILOTSOURCE"
msgid "Pivot table source data is invalid."
msgstr "دیژ مژ سٹریم چھئ نا منظور ۔"
-#: sc/inc/globstr.hrc:415
+#: sc/inc/globstr.hrc:416
msgctxt "STR_OPTIONS_WARN_SEPARATORS"
msgid "Because the current formula separator settings conflict with the locale, the formula separators have been reset to their default values."
msgstr ""
-#: sc/inc/globstr.hrc:416
+#: sc/inc/globstr.hrc:417
msgctxt "STR_UNDO_INSERT_CURRENT_DATE"
msgid "Insert Current Date"
msgstr ""
-#: sc/inc/globstr.hrc:417
+#: sc/inc/globstr.hrc:418
msgctxt "STR_UNDO_INSERT_CURRENT_TIME"
msgid "Insert Current Time"
msgstr ""
-#: sc/inc/globstr.hrc:418
+#: sc/inc/globstr.hrc:419
#, fuzzy
msgctxt "STR_MANAGE_NAMES"
msgid "Manage Names..."
msgstr "حدناو"
-#: sc/inc/globstr.hrc:419
+#: sc/inc/globstr.hrc:420
msgctxt "STR_HEADER_NAME"
msgid "Name"
msgstr "ناو"
-#: sc/inc/globstr.hrc:420
+#: sc/inc/globstr.hrc:421
msgctxt "STR_HEADER_RANGE_OR_EXPR"
msgid "Range or formula expression"
msgstr ""
-#: sc/inc/globstr.hrc:421
+#: sc/inc/globstr.hrc:422
msgctxt "STR_HEADER_SCOPE"
msgid "Scope"
msgstr ""
-#: sc/inc/globstr.hrc:422
+#: sc/inc/globstr.hrc:423
msgctxt "STR_MULTI_SELECT"
msgid "(multiple)"
msgstr ""
-#: sc/inc/globstr.hrc:423
+#: sc/inc/globstr.hrc:424
#, fuzzy
msgctxt "STR_GLOBAL_SCOPE"
msgid "Document (Global)"
msgstr "دستاویزك طرز"
-#: sc/inc/globstr.hrc:424
+#: sc/inc/globstr.hrc:425
msgctxt "STR_ERR_NAME_EXISTS"
msgid "Invalid name. Already in use for the selected scope."
msgstr ""
-#: sc/inc/globstr.hrc:425
+#: sc/inc/globstr.hrc:426
msgctxt "STR_ERR_NAME_INVALID"
msgid "Invalid name. Only use letters, numbers and underscore."
msgstr ""
-#: sc/inc/globstr.hrc:426
+#: sc/inc/globstr.hrc:427
msgctxt "STR_UNSAVED_EXT_REF"
msgid ""
"This Document contains external references to unsaved documents.\n"
@@ -2103,226 +2108,226 @@ msgid ""
"Do you want to continue?"
msgstr ""
-#: sc/inc/globstr.hrc:427
+#: sc/inc/globstr.hrc:428
msgctxt "STR_CLOSE_WITH_UNSAVED_REFS"
msgid "This Document is referenced by another document and not yet saved. Closing it without saving will result in data loss."
msgstr ""
-#: sc/inc/globstr.hrc:428
+#: sc/inc/globstr.hrc:429
msgctxt "STR_HEADER_RANGE"
msgid "Range"
msgstr "حد"
-#: sc/inc/globstr.hrc:429
+#: sc/inc/globstr.hrc:430
msgctxt "STR_HEADER_COND"
msgid "First Condition"
msgstr ""
-#: sc/inc/globstr.hrc:430
+#: sc/inc/globstr.hrc:431
#, fuzzy
msgctxt "STR_COND_CONDITION"
msgid "Cell value is"
msgstr "Cell value is"
-#: sc/inc/globstr.hrc:431
+#: sc/inc/globstr.hrc:432
msgctxt "STR_COND_COLORSCALE"
msgid "ColorScale"
msgstr ""
-#: sc/inc/globstr.hrc:432
+#: sc/inc/globstr.hrc:433
msgctxt "STR_COND_DATABAR"
msgid "DataBar"
msgstr ""
-#: sc/inc/globstr.hrc:433
+#: sc/inc/globstr.hrc:434
msgctxt "STR_COND_ICONSET"
msgid "IconSet"
msgstr ""
-#: sc/inc/globstr.hrc:434
+#: sc/inc/globstr.hrc:435
#, fuzzy
msgctxt "STR_COND_BETWEEN"
msgid "between"
msgstr "منزسس"
-#: sc/inc/globstr.hrc:435
+#: sc/inc/globstr.hrc:436
#, fuzzy
msgctxt "STR_COND_NOTBETWEEN"
msgid "not between"
msgstr "منزس چھُنئ"
-#: sc/inc/globstr.hrc:436
+#: sc/inc/globstr.hrc:437
msgctxt "STR_COND_UNIQUE"
msgid "unique"
msgstr ""
-#: sc/inc/globstr.hrc:437
+#: sc/inc/globstr.hrc:438
#, fuzzy
msgctxt "STR_COND_DUPLICATE"
msgid "duplicate"
msgstr "نقل"
-#: sc/inc/globstr.hrc:438
+#: sc/inc/globstr.hrc:439
#, fuzzy
msgctxt "STR_COND_FORMULA"
msgid "Formula is"
msgstr "ضئبطہ چھئُ"
-#: sc/inc/globstr.hrc:439
+#: sc/inc/globstr.hrc:440
msgctxt "STR_COND_TOP10"
msgid "Top Elements"
msgstr ""
-#: sc/inc/globstr.hrc:440
+#: sc/inc/globstr.hrc:441
msgctxt "STR_COND_BOTTOM10"
msgid "Bottom Elements"
msgstr ""
-#: sc/inc/globstr.hrc:441
+#: sc/inc/globstr.hrc:442
msgctxt "STR_COND_TOP_PERCENT"
msgid "Top Percent"
msgstr ""
-#: sc/inc/globstr.hrc:442
+#: sc/inc/globstr.hrc:443
msgctxt "STR_COND_DATE"
msgid "Date is"
msgstr ""
-#: sc/inc/globstr.hrc:443
+#: sc/inc/globstr.hrc:444
msgctxt "STR_COND_BOTTOM_PERCENT"
msgid "Bottom Percent"
msgstr ""
-#: sc/inc/globstr.hrc:444
+#: sc/inc/globstr.hrc:445
msgctxt "STR_COND_ABOVE_AVERAGE"
msgid "Above Average"
msgstr ""
-#: sc/inc/globstr.hrc:445
+#: sc/inc/globstr.hrc:446
msgctxt "STR_COND_BELOW_AVERAGE"
msgid "Below Average"
msgstr ""
-#: sc/inc/globstr.hrc:446
+#: sc/inc/globstr.hrc:447
msgctxt "STR_COND_ABOVE_EQUAL_AVERAGE"
msgid "Above or equal Average"
msgstr ""
-#: sc/inc/globstr.hrc:447
+#: sc/inc/globstr.hrc:448
msgctxt "STR_COND_BELOW_EQUAL_AVERAGE"
msgid "Below or equal Average"
msgstr ""
-#: sc/inc/globstr.hrc:448
+#: sc/inc/globstr.hrc:449
#, fuzzy
msgctxt "STR_COND_ERROR"
msgid "an Error code"
msgstr "غلطی کوڈ"
-#: sc/inc/globstr.hrc:449
+#: sc/inc/globstr.hrc:450
#, fuzzy
msgctxt "STR_COND_NOERROR"
msgid "not an Error code"
msgstr "غلطی کوڈ"
-#: sc/inc/globstr.hrc:450
+#: sc/inc/globstr.hrc:451
msgctxt "STR_COND_BEGINS_WITH"
msgid "Begins with"
msgstr ""
-#: sc/inc/globstr.hrc:451
+#: sc/inc/globstr.hrc:452
msgctxt "STR_COND_ENDS_WITH"
msgid "Ends with"
msgstr ""
-#: sc/inc/globstr.hrc:452
+#: sc/inc/globstr.hrc:453
#, fuzzy
msgctxt "STR_COND_CONTAINS"
msgid "Contains"
msgstr "شامل"
-#: sc/inc/globstr.hrc:453
+#: sc/inc/globstr.hrc:454
msgctxt "STR_COND_NOT_CONTAINS"
msgid "Not Contains"
msgstr ""
-#: sc/inc/globstr.hrc:454
+#: sc/inc/globstr.hrc:455
#, fuzzy
msgctxt "STR_COND_TODAY"
msgid "today"
msgstr "آج"
-#: sc/inc/globstr.hrc:455
+#: sc/inc/globstr.hrc:456
msgctxt "STR_COND_YESTERDAY"
msgid "yesterday"
msgstr ""
-#: sc/inc/globstr.hrc:456
+#: sc/inc/globstr.hrc:457
msgctxt "STR_COND_TOMORROW"
msgid "tomorrow"
msgstr ""
-#: sc/inc/globstr.hrc:457
+#: sc/inc/globstr.hrc:458
msgctxt "STR_COND_LAST7DAYS"
msgid "in the last 7 days"
msgstr ""
-#: sc/inc/globstr.hrc:458
+#: sc/inc/globstr.hrc:459
msgctxt "STR_COND_THISWEEK"
msgid "this week"
msgstr ""
-#: sc/inc/globstr.hrc:459
+#: sc/inc/globstr.hrc:460
msgctxt "STR_COND_LASTWEEK"
msgid "last week"
msgstr ""
-#: sc/inc/globstr.hrc:460
+#: sc/inc/globstr.hrc:461
msgctxt "STR_COND_NEXTWEEK"
msgid "next week"
msgstr ""
-#: sc/inc/globstr.hrc:461
+#: sc/inc/globstr.hrc:462
msgctxt "STR_COND_THISMONTH"
msgid "this month"
msgstr ""
-#: sc/inc/globstr.hrc:462
+#: sc/inc/globstr.hrc:463
msgctxt "STR_COND_LASTMONTH"
msgid "last month"
msgstr ""
-#: sc/inc/globstr.hrc:463
+#: sc/inc/globstr.hrc:464
msgctxt "STR_COND_NEXTMONTH"
msgid "next month"
msgstr ""
-#: sc/inc/globstr.hrc:464
+#: sc/inc/globstr.hrc:465
msgctxt "STR_COND_THISYEAR"
msgid "this year"
msgstr ""
-#: sc/inc/globstr.hrc:465
+#: sc/inc/globstr.hrc:466
msgctxt "STR_COND_LASTYEAR"
msgid "last year"
msgstr ""
-#: sc/inc/globstr.hrc:466
+#: sc/inc/globstr.hrc:467
msgctxt "STR_COND_NEXTYEAR"
msgid "next year"
msgstr ""
-#: sc/inc/globstr.hrc:467
+#: sc/inc/globstr.hrc:468
msgctxt "STR_COND_AND"
msgid "and"
msgstr "بےیئ"
-#: sc/inc/globstr.hrc:468
+#: sc/inc/globstr.hrc:469
msgctxt "STR_ERR_CONDFORMAT_PROTECTED"
msgid "Conditional Formats can not be created, deleted or changed in protected sheets."
msgstr ""
-#: sc/inc/globstr.hrc:469
+#: sc/inc/globstr.hrc:470
msgctxt "STR_EDIT_EXISTING_COND_FORMATS"
msgid ""
"The selected cell already contains conditional formatting. You can either edit the existing conditional format or you define a new overlapping conditional format.\n"
@@ -2330,7 +2335,7 @@ msgid ""
" Do you want to edit the existing conditional format?"
msgstr ""
-#: sc/inc/globstr.hrc:470
+#: sc/inc/globstr.hrc:471
msgctxt "STR_QUERY_FORMULA_RECALC_ONLOAD_ODS"
msgid ""
"This document was last saved by an application other than %PRODUCTNAME. Some formula cells may produce different results when recalculated.\n"
@@ -2338,7 +2343,7 @@ msgid ""
"Do you want to recalculate all formula cells in this document now?"
msgstr ""
-#: sc/inc/globstr.hrc:471
+#: sc/inc/globstr.hrc:472
msgctxt "STR_QUERY_FORMULA_RECALC_ONLOAD_XLS"
msgid ""
"This document was last saved by Excel. Some formula cells may produce different results when recalculated.\n"
@@ -2346,81 +2351,81 @@ msgid ""
"Do you want to recalculate all formula cells now?"
msgstr ""
-#: sc/inc/globstr.hrc:472
+#: sc/inc/globstr.hrc:473
msgctxt "STR_NO_INSERT_DELETE_OVER_PIVOT_TABLE"
msgid "You cannot insert or delete cells when the affected range intersects with pivot table."
msgstr ""
-#: sc/inc/globstr.hrc:473
+#: sc/inc/globstr.hrc:474
msgctxt "STR_DPFIELD_GROUP_BY_SECONDS"
msgid "Seconds"
msgstr "سیکنڈس "
-#: sc/inc/globstr.hrc:474
+#: sc/inc/globstr.hrc:475
msgctxt "STR_DPFIELD_GROUP_BY_MINUTES"
msgid "Minutes"
msgstr "منٹس "
-#: sc/inc/globstr.hrc:475
+#: sc/inc/globstr.hrc:476
msgctxt "STR_DPFIELD_GROUP_BY_HOURS"
msgid "Hours"
msgstr "گھنٹئ"
-#: sc/inc/globstr.hrc:476
+#: sc/inc/globstr.hrc:477
msgctxt "STR_DPFIELD_GROUP_BY_DAYS"
msgid "Days"
msgstr "ایام "
-#: sc/inc/globstr.hrc:477
+#: sc/inc/globstr.hrc:478
msgctxt "STR_DPFIELD_GROUP_BY_MONTHS"
msgid "Months"
msgstr "مہینے"
-#: sc/inc/globstr.hrc:478
+#: sc/inc/globstr.hrc:479
msgctxt "STR_DPFIELD_GROUP_BY_QUARTERS"
msgid "Quarters"
msgstr ""
-#: sc/inc/globstr.hrc:479
+#: sc/inc/globstr.hrc:480
#, fuzzy
msgctxt "STR_DPFIELD_GROUP_BY_YEARS"
msgid "Years"
msgstr "وری"
-#: sc/inc/globstr.hrc:480
+#: sc/inc/globstr.hrc:481
#, fuzzy
msgctxt "STR_INVALIDVAL"
msgid "Invalid target value."
msgstr "نامنظورٹارگیٹ قئمتھ"
-#: sc/inc/globstr.hrc:481
+#: sc/inc/globstr.hrc:482
#, fuzzy
msgctxt "STR_INVALIDVAR"
msgid "Undefined name for variable cell."
msgstr "واضیاح كرنئی وئریبل سیل ہیوند ناو ۔"
-#: sc/inc/globstr.hrc:482
+#: sc/inc/globstr.hrc:483
#, fuzzy
msgctxt "STR_INVALIDFORM"
msgid "Undefined name as formula cell."
msgstr "واضیاح كرنئی وئریبل سیل ہیوند ناو ۔."
-#: sc/inc/globstr.hrc:483
+#: sc/inc/globstr.hrc:484
msgctxt "STR_NOFORMULA"
msgid "Formula cell must contain a formula."
msgstr ""
-#: sc/inc/globstr.hrc:484
+#: sc/inc/globstr.hrc:485
msgctxt "STR_INVALIDINPUT"
msgid "Invalid input."
msgstr ""
-#: sc/inc/globstr.hrc:485
+#: sc/inc/globstr.hrc:486
msgctxt "STR_INVALIDCONDITION"
msgid "Invalid condition."
msgstr ""
-#: sc/inc/globstr.hrc:486
+#: sc/inc/globstr.hrc:487
msgctxt "STR_QUERYREMOVE"
msgid ""
"Should the entry\n"
@@ -2428,137 +2433,137 @@ msgid ""
"be deleted?"
msgstr ""
-#: sc/inc/globstr.hrc:487
+#: sc/inc/globstr.hrc:488
msgctxt "STR_COPYLIST"
msgid "Copy List"
msgstr ""
-#: sc/inc/globstr.hrc:488
+#: sc/inc/globstr.hrc:489
msgctxt "STR_COPYFROM"
msgid "List from"
msgstr ""
-#: sc/inc/globstr.hrc:489
+#: sc/inc/globstr.hrc:490
msgctxt "STR_COPYERR"
msgid "Cells without text have been ignored."
msgstr ""
-#: sc/inc/globstr.hrc:490
+#: sc/inc/globstr.hrc:491
#, c-format
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%s-click to follow hyperlink:"
msgstr ""
-#: sc/inc/globstr.hrc:491
+#: sc/inc/globstr.hrc:492
msgctxt "STR_CLICKHYPERLINK"
msgid "click to open hyperlink:"
msgstr ""
-#: sc/inc/globstr.hrc:492
+#: sc/inc/globstr.hrc:493
msgctxt "STR_PRINT_PREVIEW_NODATA"
msgid "No Data"
msgstr ""
-#: sc/inc/globstr.hrc:493
+#: sc/inc/globstr.hrc:494
msgctxt "STR_PRINT_PREVIEW_EMPTY_RANGE"
msgid "Print Range Empty"
msgstr ""
-#: sc/inc/globstr.hrc:494
+#: sc/inc/globstr.hrc:495
#, fuzzy
msgctxt "STR_UNDO_CONDFORMAT"
msgid "Conditional Format"
msgstr "مشروط شکل دین "
-#: sc/inc/globstr.hrc:495
+#: sc/inc/globstr.hrc:496
#, fuzzy
msgctxt "STR_UNDO_CONDFORMAT_LIST"
msgid "Conditional Formats"
msgstr "مشروط شکل دین "
-#: sc/inc/globstr.hrc:496
+#: sc/inc/globstr.hrc:497
msgctxt "STR_UNDO_FORMULA_TO_VALUE"
msgid "Convert Formula To Value"
msgstr ""
-#: sc/inc/globstr.hrc:497
+#: sc/inc/globstr.hrc:498
msgctxt "STR_UNQUOTED_STRING"
msgid "Strings without quotes are interpreted as column/row labels."
msgstr ""
-#: sc/inc/globstr.hrc:498
+#: sc/inc/globstr.hrc:499
msgctxt "STR_ENTER_VALUE"
msgid "Enter a value!"
msgstr ""
-#: sc/inc/globstr.hrc:499
+#: sc/inc/globstr.hrc:500
msgctxt "STR_TABLE_COUNT"
msgid "Sheet %1 of %2"
msgstr ""
-#: sc/inc/globstr.hrc:500
+#: sc/inc/globstr.hrc:501
msgctxt "STR_FUNCTIONS_FOUND"
msgid "%1 and %2 more"
msgstr ""
-#: sc/inc/globstr.hrc:501
+#: sc/inc/globstr.hrc:502
msgctxt "STR_GENERAL"
msgid "General"
msgstr "عام"
-#: sc/inc/globstr.hrc:502
+#: sc/inc/globstr.hrc:503
#, fuzzy
msgctxt "STR_NUMBER"
msgid "Number"
msgstr "نمبر"
-#: sc/inc/globstr.hrc:503
+#: sc/inc/globstr.hrc:504
msgctxt "STR_PERCENT"
msgid "Percent"
msgstr ""
-#: sc/inc/globstr.hrc:504
+#: sc/inc/globstr.hrc:505
msgctxt "STR_CURRENCY"
msgid "Currency"
msgstr "کرنسی"
-#: sc/inc/globstr.hrc:505
+#: sc/inc/globstr.hrc:506
msgctxt "STR_DATE"
msgid "Date"
msgstr "تئاریخ"
-#: sc/inc/globstr.hrc:506
+#: sc/inc/globstr.hrc:507
msgctxt "STR_TIME"
msgid "Time"
msgstr "وقت"
-#: sc/inc/globstr.hrc:507
+#: sc/inc/globstr.hrc:508
msgctxt "STR_SCIENTIFIC"
msgid "Scientific"
msgstr ""
-#: sc/inc/globstr.hrc:508
+#: sc/inc/globstr.hrc:509
#, fuzzy
msgctxt "STR_FRACTION"
msgid "Fraction"
msgstr "عمل"
-#: sc/inc/globstr.hrc:509
+#: sc/inc/globstr.hrc:510
msgctxt "STR_BOOLEAN_VALUE"
msgid "Boolean Value"
msgstr ""
-#: sc/inc/globstr.hrc:510
+#: sc/inc/globstr.hrc:511
msgctxt "STR_TEXT"
msgid "Text"
msgstr "مواد"
-#: sc/inc/globstr.hrc:511
+#: sc/inc/globstr.hrc:512
msgctxt "STR_QUERY_PIVOTTABLE_DELTAB"
msgid "The selected sheet(s) contain source data of related pivot tables that will be lost. Are you sure you want to delete the selected sheet(s)?"
msgstr ""
-#: sc/inc/globstr.hrc:512
+#: sc/inc/globstr.hrc:513
msgctxt "STR_ERR_NAME_INVALID_CELL_REF"
msgid "Invalid name. Reference to a cell, or a range of cells not allowed."
msgstr ""
@@ -10757,8 +10762,8 @@ msgstr "طریقہ"
#: sc/inc/scfuncs.hrc:3010
msgctxt "SC_OPCODE_T_TEST"
-msgid "Mode specifies the number of distribution tails to return. 1= one-tailed, 2 = two-tailed distribution"
-msgstr "موڈ منقسم ٹیلس نمبر س كران واپسی خعطرئ مخصوص 1= اكھ -ٹیلڈ , 2 = زئ ٹیلڈ منقسم "
+msgid "Mode specifies the number of distribution tails to return. 1 = one-tailed, 2 = two-tailed distribution"
+msgstr ""
#: sc/inc/scfuncs.hrc:3011
msgctxt "SC_OPCODE_T_TEST"
@@ -10804,8 +10809,8 @@ msgstr "طریقہ"
#: sc/inc/scfuncs.hrc:3024
msgctxt "SC_OPCODE_T_TEST_MS"
-msgid "Mode specifies the number of distribution tails to return. 1= one-tailed, 2 = two-tailed distribution"
-msgstr "موڈ منقسم ٹیلس نمبر س كران واپسی خعطرئ مخصوص 1= اكھ -ٹیلڈ , 2 = زئ ٹیلڈ منقسم "
+msgid "Mode specifies the number of distribution tails to return. 1 = one-tailed, 2 = two-tailed distribution"
+msgstr ""
#: sc/inc/scfuncs.hrc:3025
msgctxt "SC_OPCODE_T_TEST_MS"
@@ -18637,22 +18642,22 @@ msgctxt "mergecellsdialog|MergeCellsDialog"
msgid "Merge Cells"
msgstr "سیلس ملاؤ"
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:81
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:84
msgctxt "mergecellsdialog|label"
msgid "Some cells are not empty."
msgstr ""
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:96
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:99
msgctxt "mergecellsdialog|move-cells-radio"
msgid "Move the contents of the hidden cells into the first cell"
msgstr ""
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:112
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:115
msgctxt "mergecellsdialog|empty-cells-radio"
msgid "Empty the contents of the hidden cells"
msgstr ""
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:128
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:131
msgctxt "mergecellsdialog|keep-content-radio"
msgid "Keep the contents of the hidden cells"
msgstr ""
diff --git a/source/ks/sd/messages.po b/source/ks/sd/messages.po
index e374c7e4d61..18f1ffb7ab0 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+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"
@@ -13,176 +13,176 @@ msgstr ""
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-#: sd/inc/DocumentRenderer.hrc:29
+#: sd/inc/DocumentRenderer.hrc:27
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Slides"
msgstr "سلائڈس"
-#: sd/inc/DocumentRenderer.hrc:30
+#: sd/inc/DocumentRenderer.hrc:28
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Handouts"
msgstr "ہینڈآؤٹس "
-#: sd/inc/DocumentRenderer.hrc:31
+#: sd/inc/DocumentRenderer.hrc:29
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Notes"
msgstr "نوٹس"
-#: sd/inc/DocumentRenderer.hrc:32
+#: sd/inc/DocumentRenderer.hrc:30
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Outline"
msgstr "آؤٹ لائن"
-#: sd/inc/DocumentRenderer.hrc:37
+#: sd/inc/DocumentRenderer.hrc:35
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "According to layout"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:38
+#: sd/inc/DocumentRenderer.hrc:36
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "1"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:39
+#: sd/inc/DocumentRenderer.hrc:37
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "2"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:40
+#: sd/inc/DocumentRenderer.hrc:38
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "3"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:41
+#: sd/inc/DocumentRenderer.hrc:39
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "4"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:42
+#: sd/inc/DocumentRenderer.hrc:40
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "6"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:43
+#: sd/inc/DocumentRenderer.hrc:41
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "9"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:48
+#: sd/inc/DocumentRenderer.hrc:46
msgctxt "STR_IMPRESS_PRINT_UI_ORDER_CHOICES"
msgid "Left to right, then down"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:49
+#: sd/inc/DocumentRenderer.hrc:47
msgctxt "STR_IMPRESS_PRINT_UI_ORDER_CHOICES"
msgid "Top to bottom, then right"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:54
+#: sd/inc/DocumentRenderer.hrc:52
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Original colors"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:55
+#: sd/inc/DocumentRenderer.hrc:53
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Grayscale"
msgstr "گرے اسكیل"
-#: sd/inc/DocumentRenderer.hrc:56
+#: sd/inc/DocumentRenderer.hrc:54
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Black & white"
msgstr "كریہن تئ سفید"
-#: sd/inc/DocumentRenderer.hrc:61
+#: sd/inc/DocumentRenderer.hrc:59
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Original size"
msgstr "اصل سائز "
-#: sd/inc/DocumentRenderer.hrc:62
+#: sd/inc/DocumentRenderer.hrc:60
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Fit to printable page"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:63
+#: sd/inc/DocumentRenderer.hrc:61
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Distribute on multiple sheets of paper"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:64
+#: sd/inc/DocumentRenderer.hrc:62
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Tile sheet of paper with repeated slides"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:69
+#: sd/inc/DocumentRenderer.hrc:67
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Original size"
msgstr "اصل سائز "
-#: sd/inc/DocumentRenderer.hrc:70
+#: sd/inc/DocumentRenderer.hrc:68
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Fit to printable page"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:71
+#: sd/inc/DocumentRenderer.hrc:69
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Distribute on multiple sheets of paper"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:72
+#: sd/inc/DocumentRenderer.hrc:70
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Tile sheet of paper with repeated pages"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:77
+#: sd/inc/DocumentRenderer.hrc:75
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "All pages"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:78
+#: sd/inc/DocumentRenderer.hrc:76
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "Front sides / right pages"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:79
+#: sd/inc/DocumentRenderer.hrc:77
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "Back sides / left pages"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:84
+#: sd/inc/DocumentRenderer.hrc:82
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~All slides"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:85
+#: sd/inc/DocumentRenderer.hrc:83
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~Slides"
msgstr "سلائڈس"
-#: sd/inc/DocumentRenderer.hrc:86
+#: sd/inc/DocumentRenderer.hrc:84
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Se~lection"
msgstr "انتخاب"
-#: sd/inc/DocumentRenderer.hrc:91
+#: sd/inc/DocumentRenderer.hrc:89
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~All pages"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:92
+#: sd/inc/DocumentRenderer.hrc:90
#, fuzzy
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Pa~ges"
msgstr "صفحئ"
-#: sd/inc/DocumentRenderer.hrc:93
+#: sd/inc/DocumentRenderer.hrc:91
#, fuzzy
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Se~lection"
diff --git a/source/ks/svx/messages.po b/source/ks/svx/messages.po
index 13e6deb2d6d..dcf3e253505 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: 2018-05-16 16:53+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+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"
@@ -5526,7 +5526,7 @@ msgstr ""
#: svx/uiconfig/ui/safemodedialog.ui:432
msgctxt "safemodedialog|btn_create_zip"
-msgid "Create Zip Archive from User Profile"
+msgid "Archive User Profile"
msgstr ""
#: svx/uiconfig/ui/safemodedialog.ui:445
@@ -9210,9 +9210,9 @@ msgid "Red"
msgstr "ۄزُل"
#: include/svx/strings.hrc:565
-msgctxt "RID_SVXSTR_COLOR_VIOLET"
-msgid "Violet"
-msgstr "بنفشی"
+msgctxt "RID_SVXSTR_COLOR_MAGENTA"
+msgid "Magenta"
+msgstr "وانگَن رنگ"
#: include/svx/strings.hrc:566
msgctxt "RID_SVXSTR_COLOR_PURPLE"
@@ -9277,8 +9277,8 @@ msgid "Light Red"
msgstr ""
#: include/svx/strings.hrc:579
-msgctxt "RID_SVXSTR_COLOR_LIGHTVIOLET"
-msgid "Light Violet"
+msgctxt "RID_SVXSTR_COLOR_LIGHTMAGENTA"
+msgid "Light Magenta"
msgstr ""
#: include/svx/strings.hrc:580
@@ -9345,8 +9345,8 @@ msgid "Dark Red"
msgstr "گہرا لال"
#: include/svx/strings.hrc:593
-msgctxt "RID_SVXSTR_COLOR_DARKVIOLET1"
-msgid "Dark Violet"
+msgctxt "RID_SVXSTR_COLOR_DARKMAGENTA"
+msgid "Dark Magenta"
msgstr ""
#: include/svx/strings.hrc:594
@@ -9381,55 +9381,55 @@ msgstr ""
#. Elements of the Tonal color palette
#: include/svx/strings.hrc:601
+msgctxt "RID_SVXSTR_COLOR_VIOLET"
+msgid "Violet"
+msgstr "بنفشی"
+
+#: include/svx/strings.hrc:602
msgctxt "RID_SVXSTR_COLOR_VIOLET_OUG"
msgid "Violet (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:602
+#: include/svx/strings.hrc:603
msgctxt "RID_SVXSTR_COLOR_BLUE_OUG"
msgid "Blue (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:603
+#: include/svx/strings.hrc:604
msgctxt "RID_SVXSTR_COLOR_AZURE_OUG"
msgid "Azure (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:604
+#: include/svx/strings.hrc:605
msgctxt "RID_SVXSTR_COLOR_SPRINGGREEN_OUG"
msgid "Spring Green (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:605
+#: include/svx/strings.hrc:606
msgctxt "RID_SVXSTR_COLOR_GREEN_OUG"
msgid "Green (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:606
+#: include/svx/strings.hrc:607
msgctxt "RID_SVXSTR_COLOR_CHARTREUSEGREEN_OUG"
msgid "Chartreuse Green (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:607
+#: include/svx/strings.hrc:608
msgctxt "RID_SVXSTR_COLOR_ORANGE_OUG"
msgid "Orange (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:608
+#: include/svx/strings.hrc:609
msgctxt "RID_SVXSTR_COLOR_RED_OUG"
msgid "Red (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:609
+#: include/svx/strings.hrc:610
msgctxt "RID_SVXSTR_COLOR_ROSE_OUG"
msgid "Rose (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:610
-msgctxt "RID_SVXSTR_COLOR_MAGENTA"
-msgid "Magenta"
-msgstr "وانگَن رنگ"
-
#: include/svx/strings.hrc:611
msgctxt "RID_SVXSTR_COLOR_AZURE"
msgid "Azure"
@@ -12636,12 +12636,12 @@ msgstr ""
#: include/svx/strings.hrc:1273
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_6"
-msgid "Check mark bullets"
+msgid "Cross mark bullets"
msgstr ""
#: include/svx/strings.hrc:1274
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_7"
-msgid "Tick mark bullets"
+msgid "Check mark bullets"
msgstr ""
#: include/svx/strings.hrc:1275
diff --git a/source/ks/sw/messages.po b/source/ks/sw/messages.po
index 587972328cf..e716e8e1176 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: 2018-05-22 13:17+0200\n"
+"POT-Creation-Date: 2018-06-12 14:41+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"
@@ -1224,13 +1224,13 @@ msgstr "اقتباس"
#: sw/inc/strings.hrc:172
msgctxt "STR_POOLCOLL_TOX_ILLUSH"
-msgid "Illustration Index Heading"
-msgstr "توضیح فہرست عنوان "
+msgid "Figure Index Heading"
+msgstr ""
#: sw/inc/strings.hrc:173
msgctxt "STR_POOLCOLL_TOX_ILLUS1"
-msgid "Illustration Index 1"
-msgstr "توضیح فہرست 1"
+msgid "Figure Index 1"
+msgstr ""
#: sw/inc/strings.hrc:174
#, fuzzy
@@ -3729,10 +3729,9 @@ msgid "Table of Objects"
msgstr ""
#: sw/inc/strings.hrc:672
-#, fuzzy
msgctxt "STR_TOX_ILL"
-msgid "Illustration Index"
-msgstr "توضیح فہرست 1"
+msgid "Table of Figures"
+msgstr ""
#: sw/inc/strings.hrc:673
#, c-format
@@ -9760,81 +9759,81 @@ msgctxt "footnotepage|label5"
msgid "Continuation Notice"
msgstr "جاری ہدایت"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:49
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:55
#, fuzzy
msgctxt "footnotesendnotestabpage|ftnntnum"
msgid "_Restart numbering"
msgstr "نمبردینادوبارہ شروع کرو"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:91
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:93
#, fuzzy
msgctxt "footnotesendnotestabpage|ftnoffset_label"
msgid "_Start at:"
msgstr "میں شروع کرو"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:112
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:111
msgctxt "footnotesendnotestabpage|ftnntnumfmt"
msgid "Custom _format"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:155
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:150
#, fuzzy
msgctxt "footnotesendnotestabpage|ftnsuffix_label"
msgid "Aft_er:"
msgstr "بعد"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:199
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:188
#, fuzzy
msgctxt "footnotesendnotestabpage|ftnprefix_label"
msgid "Be_fore:"
msgstr " پہلے"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:228
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:212
msgctxt "footnotesendnotestabpage|ftnntattextend"
msgid "Collec_t at end of text"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:252
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:234
#, fuzzy
msgctxt "footnotesendnotestabpage|label1"
msgid "Footnotes"
msgstr "حاشیہ كی تحریر "
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:289
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:271
msgctxt "footnotesendnotestabpage|endntattextend"
msgid "C_ollect at end of section"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:315
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:295
#, fuzzy
msgctxt "footnotesendnotestabpage|endntnum"
msgid "_Restart numbering"
msgstr "نمبردینادوبارہ شروع کرو"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:357
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:333
#, fuzzy
msgctxt "footnotesendnotestabpage|endoffset_label"
msgid "_Start at:"
msgstr "میں شروع کرو"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:378
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:351
msgctxt "footnotesendnotestabpage|endntnumfmt"
msgid "_Custom format"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:421
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:390
#, fuzzy
msgctxt "footnotesendnotestabpage|endsuffix_label"
msgid "Aft_er:"
msgstr "بعد"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:465
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:428
#, fuzzy
msgctxt "footnotesendnotestabpage|endprefix_label"
msgid "Be_fore:"
msgstr " پہلے"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:500
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:458
#, fuzzy
msgctxt "footnotesendnotestabpage|label2"
msgid "Endnotes"
@@ -9866,29 +9865,29 @@ msgctxt "formatsectiondialog|notes"
msgid "Footnotes/Endnotes"
msgstr "زیر ورق حاشیے"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:63
+#: sw/uiconfig/swriter/ui/formattablepage.ui:77
#, fuzzy
msgctxt "formattablepage|nameft"
msgid "_Name"
msgstr "نام"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:79
+#: sw/uiconfig/swriter/ui/formattablepage.ui:91
#, fuzzy
msgctxt "formattablepage|widthft"
msgid "W_idth"
msgstr "كھجر"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:110
+#: sw/uiconfig/swriter/ui/formattablepage.ui:120
msgctxt "formattablepage|relwidth"
msgid "Relati_ve"
msgstr ""
-#: sw/uiconfig/swriter/ui/formattablepage.ui:155
+#: sw/uiconfig/swriter/ui/formattablepage.ui:160
msgctxt "formattablepage|label45"
msgid "Properties"
msgstr "خصوصیات"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:194
+#: sw/uiconfig/swriter/ui/formattablepage.ui:195
#, fuzzy
msgctxt "formattablepage|leftft"
msgid "Lef_t"
@@ -9900,71 +9899,71 @@ msgctxt "formattablepage|rightft"
msgid "Ri_ght"
msgstr "دایاں"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:228
+#: sw/uiconfig/swriter/ui/formattablepage.ui:226
#, fuzzy
msgctxt "formattablepage|aboveft"
msgid "_Above"
msgstr "اوپر"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:245
+#: sw/uiconfig/swriter/ui/formattablepage.ui:241
#, fuzzy
msgctxt "formattablepage|belowft"
msgid "_Below"
msgstr "بوْنئ "
-#: sw/uiconfig/swriter/ui/formattablepage.ui:320
+#: sw/uiconfig/swriter/ui/formattablepage.ui:311
#, fuzzy
msgctxt "formattablepage|label46"
msgid "Spacing"
msgstr "فاصلہ دینا"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:362
+#: sw/uiconfig/swriter/ui/formattablepage.ui:349
#, fuzzy
msgctxt "formattablepage|full"
msgid "A_utomatic"
msgstr " پانئی "
-#: sw/uiconfig/swriter/ui/formattablepage.ui:380
+#: sw/uiconfig/swriter/ui/formattablepage.ui:365
#, fuzzy
msgctxt "formattablepage|left"
msgid "_Left"
msgstr "كھوفُر"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:398
+#: sw/uiconfig/swriter/ui/formattablepage.ui:381
#, fuzzy
msgctxt "formattablepage|fromleft"
msgid "_From left"
msgstr "كھوفر كینیتھ"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:416
+#: sw/uiconfig/swriter/ui/formattablepage.ui:397
#, fuzzy
msgctxt "formattablepage|right"
msgid "R_ight"
msgstr "دایاں"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:435
+#: sw/uiconfig/swriter/ui/formattablepage.ui:413
#, fuzzy
msgctxt "formattablepage|center"
msgid "_Center"
msgstr "مرکز"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:453
+#: sw/uiconfig/swriter/ui/formattablepage.ui:429
msgctxt "formattablepage|free"
msgid "_Manual"
msgstr ""
-#: sw/uiconfig/swriter/ui/formattablepage.ui:478
+#: sw/uiconfig/swriter/ui/formattablepage.ui:452
msgctxt "formattablepage|label43"
msgid "Alignment"
msgstr "ترتیب واری"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:522
+#: sw/uiconfig/swriter/ui/formattablepage.ui:491
#, fuzzy
msgctxt "formattablepage|label53"
msgid "Text _direction"
msgstr "ٹیسٹ تعلقات "
-#: sw/uiconfig/swriter/ui/formattablepage.ui:553
+#: sw/uiconfig/swriter/ui/formattablepage.ui:519
#, fuzzy
msgctxt "formattablepage|label44"
msgid "Properties "
@@ -10354,22 +10353,27 @@ msgctxt "headerfootermenu|insert_pagenumber"
msgid "Insert Page Number"
msgstr ""
-#: sw/uiconfig/swriter/ui/indentpage.ui:52
+#: sw/uiconfig/swriter/ui/headerfootermenu.ui:42
+msgctxt "headerfootermenu|insert_pagecount"
+msgid "Insert Page Count"
+msgstr ""
+
+#: sw/uiconfig/swriter/ui/indentpage.ui:57
msgctxt "indentpage|label1"
msgid "_Before section"
msgstr ""
-#: sw/uiconfig/swriter/ui/indentpage.ui:67
+#: sw/uiconfig/swriter/ui/indentpage.ui:71
msgctxt "indentpage|label3"
msgid "_After section"
msgstr ""
-#: sw/uiconfig/swriter/ui/indentpage.ui:113
+#: sw/uiconfig/swriter/ui/indentpage.ui:115
msgctxt "indentpage|label2"
msgid "Indent"
msgstr "انڈینٹ"
-#: sw/uiconfig/swriter/ui/indentpage.ui:142
+#: sw/uiconfig/swriter/ui/indentpage.ui:155
msgctxt "indentpage|preview-atkobject"
msgid "Example"
msgstr "مّثال"
@@ -14185,7 +14189,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:68
msgctxt "optcompatpage|format"
-msgid "MS Word-compatible trailing blanks"
+msgid "Word-compatible trailing blanks"
msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:69
@@ -14195,7 +14199,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:70
msgctxt "optcompatpage|format"
-msgid "A database field (e.g., MailMerge) with empty value hides its paragraph"
+msgid "Hide paragraphs of database fields (e.g., mail merge) with an empty value"
msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:71
@@ -17120,139 +17124,139 @@ msgctxt "tableproperties|background"
msgid "Background"
msgstr "پس منظر"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:25
-#, fuzzy
-msgctxt "tabletextflowpage|liststore1"
-msgid "Horizontal"
-msgstr "س۪یود"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:29
-#, fuzzy
-msgctxt "tabletextflowpage|liststore1"
-msgid "Vertical"
-msgstr "كھڈا"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:33
-msgctxt "tabletextflowpage|liststore1"
-msgid "Use superordinate object settings"
-msgstr "سوپر آرڈینیٹ سیٹینگس استعمال کریں"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:47
-#, fuzzy
-msgctxt "tabletextflowpage|liststore2"
-msgid "Top"
-msgstr "ہ۪یور"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:51
-#, fuzzy
-msgctxt "tabletextflowpage|liststore2"
-msgid "Centered"
-msgstr "منزیم"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:55
-#, fuzzy
-msgctxt "tabletextflowpage|liststore2"
-msgid "Bottom"
-msgstr "تلئكنئ"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:97
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:53
#, fuzzy
msgctxt "tabletextflowpage|break"
msgid "_Break"
msgstr "رخنہ"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:112
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:68
#, fuzzy
msgctxt "tabletextflowpage|page"
msgid "_Page"
msgstr "صفحہ"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:132
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:87
#, fuzzy
msgctxt "tabletextflowpage|column"
msgid "Col_umn"
msgstr "کالم"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:151
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:106
#, fuzzy
msgctxt "tabletextflowpage|before"
msgid "Be_fore"
msgstr " پہلے"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:171
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:125
#, fuzzy
msgctxt "tabletextflowpage|after"
msgid "_After"
msgstr "بعد"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:203
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:158
#, fuzzy
msgctxt "tabletextflowpage|pagestyle"
msgid "With Page St_yle"
msgstr "صفحہ كس سٹائلس ادارت"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:224
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:177
#, fuzzy
msgctxt "tabletextflowpage|pagenoft"
msgid "Page _number"
msgstr "صفحہ نمبر"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:257
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:213
#, fuzzy
msgctxt "tabletextflowpage|pagestylelb-atkobject"
msgid "With Page Style"
msgstr "صفحہ كس سٹائلس ادارت"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:274
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:230
msgctxt "tabletextflowpage|split"
msgid "Allow _table to split across pages and columns"
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:289
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:245
#, fuzzy
msgctxt "tabletextflowpage|splitrow"
msgid "Allow row to break a_cross pages and columns"
msgstr "صفحات اورکالمزکےمخالف قطارکوتوڑنا"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:306
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:262
#, fuzzy
msgctxt "tabletextflowpage|keep"
msgid "_Keep with next paragraph"
msgstr "برونٹھمس پیراگریفس سعتھ تھئویو"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:328
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:284
msgctxt "tabletextflowpage|label40"
msgid "Text _orientation"
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:361
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:298
+#, fuzzy
+msgctxt "tabletextflowpage|liststore1"
+msgid "Horizontal"
+msgstr "س۪یود"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:299
+#, fuzzy
+msgctxt "tabletextflowpage|liststore1"
+msgid "Vertical"
+msgstr "كھڈا"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:300
+msgctxt "tabletextflowpage|liststore1"
+msgid "Use superordinate object settings"
+msgstr "سوپر آرڈینیٹ سیٹینگس استعمال کریں"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:321
#, fuzzy
msgctxt "tabletextflowpage|headline"
msgid "R_epeat heading"
msgstr "عنوان دہرائیے"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:383
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:343
msgctxt "tabletextflowpage|label38"
msgid "The first "
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:396
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:356
#, fuzzy
msgctxt "tabletextflowpage|label39"
msgid "rows"
msgstr "سطر"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:434
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:395
msgctxt "tabletextflowpage|label35"
msgid "Text Flow"
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:467
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:428
msgctxt "tabletextflowpage|label41"
msgid "_Vertical alignment"
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:495
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:442
+#, fuzzy
+msgctxt "tabletextflowpage|liststore2"
+msgid "Top"
+msgstr "ہ۪یور"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:443
+#, fuzzy
+msgctxt "tabletextflowpage|liststore2"
+msgid "Centered"
+msgstr "منزیم"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:444
+#, fuzzy
+msgctxt "tabletextflowpage|liststore2"
+msgid "Bottom"
+msgstr "تلئكنئ"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:460
msgctxt "tabletextflowpage|label36"
msgid "Alignment"
msgstr "ترتیب واری"
@@ -18086,10 +18090,9 @@ msgid "Alphabetical Index"
msgstr ""
#: sw/uiconfig/swriter/ui/tocindexpage.ui:58
-#, fuzzy
msgctxt "tocindexpage|liststore1"
-msgid "Illustration Index"
-msgstr "توضیح فہرست 1"
+msgid "Table of Figures"
+msgstr ""
#: sw/uiconfig/swriter/ui/tocindexpage.ui:62
msgctxt "tocindexpage|liststore1"
diff --git a/source/ks/writerperfect/messages.po b/source/ks/writerperfect/messages.po
index 20edbb7cd94..183ce5bf24c 100644
--- a/source/ks/writerperfect/messages.po
+++ b/source/ks/writerperfect/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-16 16:54+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+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"
@@ -65,100 +65,100 @@ msgctxt "exportepub|generalft"
msgid "General"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:122
+#: writerperfect/uiconfig/ui/exportepub.ui:121
#, fuzzy
msgctxt "exportepub|versionft"
msgid "Version:"
msgstr "ترجمہ:"
-#: writerperfect/uiconfig/ui/exportepub.ui:139
+#: writerperfect/uiconfig/ui/exportepub.ui:138
msgctxt "exportepub|epub3"
msgid "EPUB 3.0"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:140
+#: writerperfect/uiconfig/ui/exportepub.ui:139
msgctxt "exportepub|epub2"
msgid "EPUB 2.0"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:175
+#: writerperfect/uiconfig/ui/exportepub.ui:174
msgctxt "exportepub|splitft"
msgid "Split method:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:192
+#: writerperfect/uiconfig/ui/exportepub.ui:191
#, fuzzy
msgctxt "exportepub|splitpage"
msgid "Page break"
msgstr "پیج بریک"
-#: writerperfect/uiconfig/ui/exportepub.ui:193
+#: writerperfect/uiconfig/ui/exportepub.ui:192
#, fuzzy
msgctxt "exportepub|splitheading"
msgid "Heading"
msgstr "عنوان"
-#: writerperfect/uiconfig/ui/exportepub.ui:228
+#: writerperfect/uiconfig/ui/exportepub.ui:227
msgctxt "exportepub|layoutft"
msgid "Layout method:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:245
+#: writerperfect/uiconfig/ui/exportepub.ui:244
msgctxt "exportepub|layoutreflowable"
msgid "Reflowable"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:246
+#: writerperfect/uiconfig/ui/exportepub.ui:245
msgctxt "exportepub|layoutfixed"
msgid "Fixed"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:281
+#: writerperfect/uiconfig/ui/exportepub.ui:280
msgctxt "exportepub|coverimageft"
msgid "Custom cover image:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:311
+#: writerperfect/uiconfig/ui/exportepub.ui:310
msgctxt "exportepub|coverbutton"
msgid "Browse..."
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:355
+#: writerperfect/uiconfig/ui/exportepub.ui:354
msgctxt "exportepub|mediadirft"
msgid "Custom media directory:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:385
+#: writerperfect/uiconfig/ui/exportepub.ui:384
msgctxt "exportepub|mediabutton"
msgid "Browse..."
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:429
+#: writerperfect/uiconfig/ui/exportepub.ui:428
msgctxt "exportepub|metadataft"
msgid "Metadata"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:470
+#: writerperfect/uiconfig/ui/exportepub.ui:468
msgctxt "exportepub|identifierft"
msgid "Identifier:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:485
+#: writerperfect/uiconfig/ui/exportepub.ui:483
msgctxt "exportepub|titleft"
msgid "Title:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:511
+#: writerperfect/uiconfig/ui/exportepub.ui:509
msgctxt "exportepub|authorft"
msgid "Author:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:537
+#: writerperfect/uiconfig/ui/exportepub.ui:535
msgctxt "exportepub|languageft"
msgid "Language:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:563
+#: writerperfect/uiconfig/ui/exportepub.ui:561
msgctxt "exportepub|dateft"
msgid "Date:"
msgstr ""
diff --git a/source/ky/cui/messages.po b/source/ky/cui/messages.po
index c94f1d314c0..bee52034293 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+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"
@@ -9838,97 +9838,97 @@ msgctxt "positionsizedialog|PositionAndSizeDialog"
msgid "Position and Size"
msgstr ""
-#: cui/uiconfig/ui/positionsizedialog.ui:107
+#: cui/uiconfig/ui/positionsizedialog.ui:136
msgctxt "positionsizedialog|RID_SVXPAGE_POSITION_SIZE"
msgid "Position and Size"
msgstr ""
-#: cui/uiconfig/ui/positionsizedialog.ui:129
+#: cui/uiconfig/ui/positionsizedialog.ui:182
msgctxt "positionsizedialog|RID_SVXPAGE_SWPOSSIZE"
msgid "Position and Size"
msgstr ""
-#: cui/uiconfig/ui/positionsizedialog.ui:152
+#: cui/uiconfig/ui/positionsizedialog.ui:229
msgctxt "positionsizedialog|RID_SVXPAGE_ANGLE"
msgid "Rotation"
msgstr ""
-#: cui/uiconfig/ui/positionsizedialog.ui:175
+#: cui/uiconfig/ui/positionsizedialog.ui:276
msgctxt "positionsizedialog|RID_SVXPAGE_SLANT"
msgid "Slant & Corner Radius"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:40
+#: cui/uiconfig/ui/possizetabpage.ui:61
msgctxt "possizetabpage|FT_POS_X"
msgid "Position _X:"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:56
+#: cui/uiconfig/ui/possizetabpage.ui:75
msgctxt "possizetabpage|FT_POS_Y"
msgid "Position _Y:"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:110
+#: cui/uiconfig/ui/possizetabpage.ui:128
msgctxt "possizetabpage|FT_POSREFERENCE"
msgid "_Base point:"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:148
+#: cui/uiconfig/ui/possizetabpage.ui:182
msgctxt "possizetabpage|label1"
msgid "Position"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:190
+#: cui/uiconfig/ui/possizetabpage.ui:224
msgctxt "possizetabpage|FT_WIDTH"
msgid "Wi_dth:"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:206
+#: cui/uiconfig/ui/possizetabpage.ui:238
msgctxt "possizetabpage|FT_HEIGHT"
msgid "H_eight:"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:247
+#: cui/uiconfig/ui/possizetabpage.ui:276
msgctxt "possizetabpage|CBX_SCALE"
msgid "_Keep ratio"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:279
+#: cui/uiconfig/ui/possizetabpage.ui:307
msgctxt "possizetabpage|FT_SIZEREFERENCE"
msgid "Base _point:"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:317
+#: cui/uiconfig/ui/possizetabpage.ui:361
msgctxt "possizetabpage|label2"
msgid "Size"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:356
+#: cui/uiconfig/ui/possizetabpage.ui:401
msgctxt "possizetabpage|TSB_POSPROTECT"
msgid "Positio_n"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:373
+#: cui/uiconfig/ui/possizetabpage.ui:418
msgctxt "possizetabpage|TSB_SIZEPROTECT"
msgid "_Size"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:397
+#: cui/uiconfig/ui/possizetabpage.ui:441
msgctxt "possizetabpage|label3"
msgid "Protect"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:430
+#: cui/uiconfig/ui/possizetabpage.ui:475
msgctxt "possizetabpage|TSB_AUTOGROW_WIDTH"
msgid "_Fit width to text"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:447
+#: cui/uiconfig/ui/possizetabpage.ui:492
msgctxt "possizetabpage|TSB_AUTOGROW_HEIGHT"
msgid "Fit _height to text"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:471
+#: cui/uiconfig/ui/possizetabpage.ui:515
msgctxt "possizetabpage|label4"
msgid "Adapt"
msgstr ""
@@ -10128,47 +10128,47 @@ msgctxt "recordnumberdialog|label2"
msgid "go to record"
msgstr ""
-#: cui/uiconfig/ui/rotationtabpage.ui:52
+#: cui/uiconfig/ui/rotationtabpage.ui:56
msgctxt "rotationtabpage|FT_POS_X"
msgid "Position _X:"
msgstr ""
-#: cui/uiconfig/ui/rotationtabpage.ui:66
+#: cui/uiconfig/ui/rotationtabpage.ui:70
msgctxt "rotationtabpage|FT_POS_Y"
msgid "Position _Y:"
msgstr ""
-#: cui/uiconfig/ui/rotationtabpage.ui:116
+#: cui/uiconfig/ui/rotationtabpage.ui:123
msgctxt "rotationtabpage|FT_POSPRESETS"
msgid "_Default settings:"
msgstr ""
-#: cui/uiconfig/ui/rotationtabpage.ui:130
+#: cui/uiconfig/ui/rotationtabpage.ui:151
msgctxt "rotationtabpage|CTL_RECT|tooltip_text"
msgid "Rotation point"
msgstr ""
-#: cui/uiconfig/ui/rotationtabpage.ui:155
+#: cui/uiconfig/ui/rotationtabpage.ui:178
msgctxt "rotationtabpage|label1"
msgid "Pivot Point"
msgstr ""
-#: cui/uiconfig/ui/rotationtabpage.ui:197
+#: cui/uiconfig/ui/rotationtabpage.ui:220
msgctxt "rotationtabpage|FT_ANGLE"
msgid "_Angle:"
msgstr ""
-#: cui/uiconfig/ui/rotationtabpage.ui:238
+#: cui/uiconfig/ui/rotationtabpage.ui:263
msgctxt "rotationtabpage|FT_ANGLEPRESETS"
msgid "Default _settings:"
msgstr ""
-#: cui/uiconfig/ui/rotationtabpage.ui:252
+#: cui/uiconfig/ui/rotationtabpage.ui:287
msgctxt "rotationtabpage|CTL_ANGLE|tooltip_text"
msgid "Rotation Angle"
msgstr ""
-#: cui/uiconfig/ui/rotationtabpage.ui:277
+#: cui/uiconfig/ui/rotationtabpage.ui:314
msgctxt "rotationtabpage|label2"
msgid "Rotation Angle"
msgstr ""
@@ -10548,52 +10548,52 @@ msgctxt "similaritysearchdialog|relaxbox"
msgid "_Combine"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:50
+#: cui/uiconfig/ui/slantcornertabpage.ui:70
msgctxt "slantcornertabpage|label5"
msgid "_X:"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:88
+#: cui/uiconfig/ui/slantcornertabpage.ui:110
msgctxt "slantcornertabpage|label6"
msgid "_Y:"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:125
+#: cui/uiconfig/ui/slantcornertabpage.ui:149
msgctxt "slantcornertabpage|label3"
msgid "Control Point 1"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:159
+#: cui/uiconfig/ui/slantcornertabpage.ui:183
msgctxt "slantcornertabpage|FT_RADIUS"
msgid "_Radius:"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:189
+#: cui/uiconfig/ui/slantcornertabpage.ui:214
msgctxt "slantcornertabpage|label1"
msgid "Corner Radius"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:223
+#: cui/uiconfig/ui/slantcornertabpage.ui:248
msgctxt "slantcornertabpage|FT_ANGLE"
msgid "_Angle:"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:253
+#: cui/uiconfig/ui/slantcornertabpage.ui:279
msgctxt "slantcornertabpage|label2"
msgid "Slant"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:294
+#: cui/uiconfig/ui/slantcornertabpage.ui:320
msgctxt "slantcornertabpage|label4"
msgid "_X:"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:332
+#: cui/uiconfig/ui/slantcornertabpage.ui:360
msgctxt "slantcornertabpage|label7"
msgid "_Y:"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:369
+#: cui/uiconfig/ui/slantcornertabpage.ui:399
msgctxt "slantcornertabpage|label8"
msgid "Control Point 2"
msgstr ""
@@ -10873,112 +10873,112 @@ msgctxt "storedwebconnectiondialog|change"
msgid "_Change Password..."
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:74
+#: cui/uiconfig/ui/swpossizepage.ui:85
msgctxt "swpossizepage|widthft"
msgid "_Width:"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:111
+#: cui/uiconfig/ui/swpossizepage.ui:123
msgctxt "swpossizepage|heightft"
msgid "H_eight:"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:128
+#: cui/uiconfig/ui/swpossizepage.ui:141
msgctxt "swpossizepage|ratio"
msgid "_Keep ratio"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:149
+#: cui/uiconfig/ui/swpossizepage.ui:162
msgctxt "swpossizepage|label2"
msgid "Size"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:205
+#: cui/uiconfig/ui/swpossizepage.ui:218
msgctxt "swpossizepage|topage"
msgid "To _page"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:222
+#: cui/uiconfig/ui/swpossizepage.ui:234
msgctxt "swpossizepage|topara"
msgid "To paragrap_h"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:238
+#: cui/uiconfig/ui/swpossizepage.ui:250
msgctxt "swpossizepage|tochar"
msgid "To cha_racter"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:254
+#: cui/uiconfig/ui/swpossizepage.ui:266
msgctxt "swpossizepage|aschar"
msgid "_As character"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:270
+#: cui/uiconfig/ui/swpossizepage.ui:282
msgctxt "swpossizepage|toframe"
msgid "To _frame"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:292
+#: cui/uiconfig/ui/swpossizepage.ui:304
msgctxt "swpossizepage|label1"
msgid "Anchor"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:333
+#: cui/uiconfig/ui/swpossizepage.ui:344
msgctxt "swpossizepage|horiposft"
msgid "Hori_zontal:"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:347
+#: cui/uiconfig/ui/swpossizepage.ui:358
msgctxt "swpossizepage|horibyft"
msgid "b_y:"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:361
+#: cui/uiconfig/ui/swpossizepage.ui:372
msgctxt "swpossizepage|vertbyft"
msgid "_by:"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:375
+#: cui/uiconfig/ui/swpossizepage.ui:386
msgctxt "swpossizepage|horitoft"
msgid "_to:"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:421
+#: cui/uiconfig/ui/swpossizepage.ui:433
msgctxt "swpossizepage|vertposft"
msgid "_Vertical:"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:457
+#: cui/uiconfig/ui/swpossizepage.ui:470
msgctxt "swpossizepage|verttoft"
msgid "t_o:"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:478
+#: cui/uiconfig/ui/swpossizepage.ui:492
msgctxt "swpossizepage|mirror"
msgid "_Mirror on even pages"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:495
+#: cui/uiconfig/ui/swpossizepage.ui:509
msgctxt "swpossizepage|followtextflow"
msgid "Follow te_xt flow"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:518
+#: cui/uiconfig/ui/swpossizepage.ui:532
msgctxt "swpossizepage|label11"
msgid "Position"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:549
+#: cui/uiconfig/ui/swpossizepage.ui:563
msgctxt "swpossizepage|pos"
msgid "Positio_n"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:565
+#: cui/uiconfig/ui/swpossizepage.ui:579
msgctxt "swpossizepage|size"
msgid "_Size"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:587
+#: cui/uiconfig/ui/swpossizepage.ui:601
msgctxt "swpossizepage|label3"
msgid "Protect"
msgstr ""
@@ -11168,12 +11168,12 @@ msgctxt "textattrtabpage|label2"
msgid "Spacing to Borders"
msgstr ""
-#: cui/uiconfig/ui/textattrtabpage.ui:425
+#: cui/uiconfig/ui/textattrtabpage.ui:423
msgctxt "textattrtabpage|TSB_FULL_WIDTH"
msgid "Full _width"
msgstr ""
-#: cui/uiconfig/ui/textattrtabpage.ui:448
+#: cui/uiconfig/ui/textattrtabpage.ui:446
msgctxt "textattrtabpage|label3"
msgid "Text Anchor"
msgstr ""
diff --git a/source/ky/filter/source/config/fragments/filters.po b/source/ky/filter/source/config/fragments/filters.po
index e46ad7a220a..e4cd8a02ef2 100644
--- a/source/ky/filter/source/config/fragments/filters.po
+++ b/source/ky/filter/source/config/fragments/filters.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-16 16:54+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2016-03-11 08:54+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -463,7 +463,7 @@ msgctxt ""
"MS Word 2003 XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Word 2003 XML"
+msgid "Word 2003 XML"
msgstr ""
#: MS_Word_2007_XML.xcu
@@ -1282,7 +1282,7 @@ msgctxt ""
"Calc MS Excel 2007 VBA XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Excel 2007-2016 XML (macro enabled)"
+msgid "Excel 2007–2019 (macro-enabled)"
msgstr ""
#: calc_MS_Excel_2007_XML.xcu
diff --git a/source/ky/filter/source/config/fragments/types.po b/source/ky/filter/source/config/fragments/types.po
index 620de4ef904..9945b97d202 100644
--- a/source/ky/filter/source/config/fragments/types.po
+++ b/source/ky/filter/source/config/fragments/types.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-08 15:11+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2015-11-11 21:15+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -292,7 +292,7 @@ msgctxt ""
"writer_MS_Word_2003_XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Word 2003 XML"
+msgid "Word 2003 XML"
msgstr ""
#: writer_MS_Word_2007_XML.xcu
diff --git a/source/ky/fpicker/messages.po b/source/ky/fpicker/messages.po
index 3f8b23fc510..732b9bb711d 100644
--- a/source/ky/fpicker/messages.po
+++ b/source/ky/fpicker/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+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"
@@ -263,12 +263,12 @@ msgstr ""
#: fpicker/uiconfig/ui/foldernamedialog.ui:8
msgctxt "foldernamedialog|FolderNameDialog"
-msgid "Folder Name ?"
+msgid "Folder Name"
msgstr ""
#: fpicker/uiconfig/ui/foldernamedialog.ui:91
msgctxt "foldernamedialog|label2"
-msgid "Na_me"
+msgid "Na_me:"
msgstr ""
#: fpicker/uiconfig/ui/foldernamedialog.ui:122
diff --git a/source/ky/officecfg/registry/data/org/openoffice/Office/UI.po b/source/ky/officecfg/registry/data/org/openoffice/Office/UI.po
index 40484742929..2133307cc5f 100644
--- a/source/ky/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/ky/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-22 13:17+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2016-07-05 01:55+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -26528,7 +26528,7 @@ msgctxt ""
"..WriterCommands.UserInterface.Commands..uno:TextAttributes\n"
"Label\n"
"value.text"
-msgid "Text Attributes"
+msgid "Text Attributes..."
msgstr ""
#: WriterCommands.xcu
diff --git a/source/ky/readlicense_oo/docs.po b/source/ky/readlicense_oo/docs.po
index 78fa518bd58..be0bea32b6a 100644
--- a/source/ky/readlicense_oo/docs.po
+++ b/source/ky/readlicense_oo/docs.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-04-17 15:54+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2016-03-11 11:48+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -117,7 +117,7 @@ msgctxt ""
"readme.xrm\n"
"macxiOSX\n"
"readmeitem.text"
-msgid "MacOSX 10.8 (Mountain Lion) or higher"
+msgid "MacOSX 10.9 (Mavericks) or higher"
msgstr ""
#: readme.xrm
diff --git a/source/ky/sc/messages.po b/source/ky/sc/messages.po
index 9d8bc68101a..7b2f306e797 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-12 14:40+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"
@@ -1832,16 +1832,21 @@ msgid "Nested arrays are not supported."
msgstr ""
#: sc/inc/globstr.hrc:390
+msgctxt "STR_ERR_LONG_BAD_ARRAY_CONTENT"
+msgid "Unsupported inline array content."
+msgstr ""
+
+#: sc/inc/globstr.hrc:391
msgctxt "STR_UNDO_TEXTTOCOLUMNS"
msgid "Text to Columns"
msgstr ""
-#: sc/inc/globstr.hrc:391
+#: sc/inc/globstr.hrc:392
msgctxt "STR_DOC_UPDATED"
msgid "Your spreadsheet has been updated with changes saved by other users."
msgstr ""
-#: sc/inc/globstr.hrc:392
+#: sc/inc/globstr.hrc:393
msgctxt "STR_DOC_WILLBESAVED"
msgid ""
"The spreadsheet must be saved now to activate sharing mode.\n"
@@ -1849,7 +1854,7 @@ msgid ""
"Do you want to continue?"
msgstr ""
-#: sc/inc/globstr.hrc:393
+#: sc/inc/globstr.hrc:394
msgctxt "STR_DOC_WILLNOTBESAVED"
msgid ""
"Already resolved merge conflicts will be lost and your changes to the shared spreadsheet will not be saved.\n"
@@ -1857,7 +1862,7 @@ msgid ""
"Do you want to continue?"
msgstr ""
-#: sc/inc/globstr.hrc:394
+#: sc/inc/globstr.hrc:395
msgctxt "STR_DOC_DISABLESHARED"
msgid ""
"Disabling shared mode of a spreadsheet hinders all other users of the shared spreadsheet to merge back their work.\n"
@@ -1865,7 +1870,7 @@ msgid ""
"Do you want to continue?"
msgstr ""
-#: sc/inc/globstr.hrc:395
+#: sc/inc/globstr.hrc:396
msgctxt "STR_DOC_NOLONGERSHARED"
msgid ""
"This spreadsheet is no longer in shared mode.\n"
@@ -1873,7 +1878,7 @@ msgid ""
"Save your spreadsheet to a separate file and merge your changes to the shared spreadsheet manually."
msgstr ""
-#: sc/inc/globstr.hrc:396
+#: sc/inc/globstr.hrc:397
msgctxt "STR_FILE_LOCKED_TRY_LATER"
msgid ""
"The shared spreadsheet file is locked due to a merge in progress by user: '%1'\n"
@@ -1881,7 +1886,7 @@ msgid ""
"Sharing mode of a locked file cannot be disabled. Try again later."
msgstr ""
-#: sc/inc/globstr.hrc:397
+#: sc/inc/globstr.hrc:398
msgctxt "STR_FILE_LOCKED_SAVE_LATER"
msgid ""
"The shared spreadsheet file is locked due to a merge in progress by user: '%1'\n"
@@ -1889,147 +1894,147 @@ msgid ""
"Try again later to save your changes."
msgstr ""
-#: sc/inc/globstr.hrc:398
+#: sc/inc/globstr.hrc:399
msgctxt "STR_UNKNOWN_USER"
msgid "Unknown User"
msgstr ""
-#: sc/inc/globstr.hrc:399
+#: sc/inc/globstr.hrc:400
msgctxt "STR_SHAPE_AUTOSHAPE"
msgid "AutoShape"
msgstr ""
-#: sc/inc/globstr.hrc:400
+#: sc/inc/globstr.hrc:401
msgctxt "STR_SHAPE_RECTANGLE"
msgid "Rectangle"
msgstr ""
-#: sc/inc/globstr.hrc:401
+#: sc/inc/globstr.hrc:402
msgctxt "STR_SHAPE_LINE"
msgid "Line"
msgstr ""
-#: sc/inc/globstr.hrc:402
+#: sc/inc/globstr.hrc:403
msgctxt "STR_SHAPE_OVAL"
msgid "Oval"
msgstr ""
-#: sc/inc/globstr.hrc:403
+#: sc/inc/globstr.hrc:404
msgctxt "STR_FORM_BUTTON"
msgid "Button"
msgstr ""
-#: sc/inc/globstr.hrc:404
+#: sc/inc/globstr.hrc:405
msgctxt "STR_FORM_CHECKBOX"
msgid "Check Box"
msgstr ""
-#: sc/inc/globstr.hrc:405
+#: sc/inc/globstr.hrc:406
msgctxt "STR_FORM_OPTIONBUTTON"
msgid "Option Button"
msgstr ""
-#: sc/inc/globstr.hrc:406
+#: sc/inc/globstr.hrc:407
msgctxt "STR_FORM_LABEL"
msgid "Label"
msgstr ""
-#: sc/inc/globstr.hrc:407
+#: sc/inc/globstr.hrc:408
msgctxt "STR_FORM_LISTBOX"
msgid "List Box"
msgstr ""
-#: sc/inc/globstr.hrc:408
+#: sc/inc/globstr.hrc:409
msgctxt "STR_FORM_GROUPBOX"
msgid "Group Box"
msgstr ""
-#: sc/inc/globstr.hrc:409
+#: sc/inc/globstr.hrc:410
msgctxt "STR_FORM_DROPDOWN"
msgid "Drop Down"
msgstr ""
-#: sc/inc/globstr.hrc:410
+#: sc/inc/globstr.hrc:411
msgctxt "STR_FORM_SPINNER"
msgid "Spinner"
msgstr ""
-#: sc/inc/globstr.hrc:411
+#: sc/inc/globstr.hrc:412
msgctxt "STR_FORM_SCROLLBAR"
msgid "Scroll Bar"
msgstr ""
-#: sc/inc/globstr.hrc:412
+#: sc/inc/globstr.hrc:413
msgctxt "STR_STYLE_FAMILY_CELL"
msgid "Cell Styles"
msgstr ""
-#: sc/inc/globstr.hrc:413
+#: sc/inc/globstr.hrc:414
msgctxt "STR_STYLE_FAMILY_PAGE"
msgid "Page Styles"
msgstr ""
-#: sc/inc/globstr.hrc:414
+#: sc/inc/globstr.hrc:415
msgctxt "STR_ERR_DATAPILOTSOURCE"
msgid "Pivot table source data is invalid."
msgstr ""
-#: sc/inc/globstr.hrc:415
+#: sc/inc/globstr.hrc:416
msgctxt "STR_OPTIONS_WARN_SEPARATORS"
msgid "Because the current formula separator settings conflict with the locale, the formula separators have been reset to their default values."
msgstr ""
-#: sc/inc/globstr.hrc:416
+#: sc/inc/globstr.hrc:417
msgctxt "STR_UNDO_INSERT_CURRENT_DATE"
msgid "Insert Current Date"
msgstr ""
-#: sc/inc/globstr.hrc:417
+#: sc/inc/globstr.hrc:418
msgctxt "STR_UNDO_INSERT_CURRENT_TIME"
msgid "Insert Current Time"
msgstr ""
-#: sc/inc/globstr.hrc:418
+#: sc/inc/globstr.hrc:419
msgctxt "STR_MANAGE_NAMES"
msgid "Manage Names..."
msgstr ""
-#: sc/inc/globstr.hrc:419
+#: sc/inc/globstr.hrc:420
msgctxt "STR_HEADER_NAME"
msgid "Name"
msgstr ""
-#: sc/inc/globstr.hrc:420
+#: sc/inc/globstr.hrc:421
msgctxt "STR_HEADER_RANGE_OR_EXPR"
msgid "Range or formula expression"
msgstr ""
-#: sc/inc/globstr.hrc:421
+#: sc/inc/globstr.hrc:422
msgctxt "STR_HEADER_SCOPE"
msgid "Scope"
msgstr ""
-#: sc/inc/globstr.hrc:422
+#: sc/inc/globstr.hrc:423
msgctxt "STR_MULTI_SELECT"
msgid "(multiple)"
msgstr ""
-#: sc/inc/globstr.hrc:423
+#: sc/inc/globstr.hrc:424
msgctxt "STR_GLOBAL_SCOPE"
msgid "Document (Global)"
msgstr ""
-#: sc/inc/globstr.hrc:424
+#: sc/inc/globstr.hrc:425
msgctxt "STR_ERR_NAME_EXISTS"
msgid "Invalid name. Already in use for the selected scope."
msgstr ""
-#: sc/inc/globstr.hrc:425
+#: sc/inc/globstr.hrc:426
msgctxt "STR_ERR_NAME_INVALID"
msgid "Invalid name. Only use letters, numbers and underscore."
msgstr ""
-#: sc/inc/globstr.hrc:426
+#: sc/inc/globstr.hrc:427
msgctxt "STR_UNSAVED_EXT_REF"
msgid ""
"This Document contains external references to unsaved documents.\n"
@@ -2037,217 +2042,217 @@ msgid ""
"Do you want to continue?"
msgstr ""
-#: sc/inc/globstr.hrc:427
+#: sc/inc/globstr.hrc:428
msgctxt "STR_CLOSE_WITH_UNSAVED_REFS"
msgid "This Document is referenced by another document and not yet saved. Closing it without saving will result in data loss."
msgstr ""
-#: sc/inc/globstr.hrc:428
+#: sc/inc/globstr.hrc:429
msgctxt "STR_HEADER_RANGE"
msgid "Range"
msgstr ""
-#: sc/inc/globstr.hrc:429
+#: sc/inc/globstr.hrc:430
msgctxt "STR_HEADER_COND"
msgid "First Condition"
msgstr ""
-#: sc/inc/globstr.hrc:430
+#: sc/inc/globstr.hrc:431
msgctxt "STR_COND_CONDITION"
msgid "Cell value is"
msgstr ""
-#: sc/inc/globstr.hrc:431
+#: sc/inc/globstr.hrc:432
msgctxt "STR_COND_COLORSCALE"
msgid "ColorScale"
msgstr ""
-#: sc/inc/globstr.hrc:432
+#: sc/inc/globstr.hrc:433
msgctxt "STR_COND_DATABAR"
msgid "DataBar"
msgstr ""
-#: sc/inc/globstr.hrc:433
+#: sc/inc/globstr.hrc:434
msgctxt "STR_COND_ICONSET"
msgid "IconSet"
msgstr ""
-#: sc/inc/globstr.hrc:434
+#: sc/inc/globstr.hrc:435
msgctxt "STR_COND_BETWEEN"
msgid "between"
msgstr ""
-#: sc/inc/globstr.hrc:435
+#: sc/inc/globstr.hrc:436
msgctxt "STR_COND_NOTBETWEEN"
msgid "not between"
msgstr ""
-#: sc/inc/globstr.hrc:436
+#: sc/inc/globstr.hrc:437
msgctxt "STR_COND_UNIQUE"
msgid "unique"
msgstr ""
-#: sc/inc/globstr.hrc:437
+#: sc/inc/globstr.hrc:438
msgctxt "STR_COND_DUPLICATE"
msgid "duplicate"
msgstr ""
-#: sc/inc/globstr.hrc:438
+#: sc/inc/globstr.hrc:439
msgctxt "STR_COND_FORMULA"
msgid "Formula is"
msgstr ""
-#: sc/inc/globstr.hrc:439
+#: sc/inc/globstr.hrc:440
msgctxt "STR_COND_TOP10"
msgid "Top Elements"
msgstr ""
-#: sc/inc/globstr.hrc:440
+#: sc/inc/globstr.hrc:441
msgctxt "STR_COND_BOTTOM10"
msgid "Bottom Elements"
msgstr ""
-#: sc/inc/globstr.hrc:441
+#: sc/inc/globstr.hrc:442
msgctxt "STR_COND_TOP_PERCENT"
msgid "Top Percent"
msgstr ""
-#: sc/inc/globstr.hrc:442
+#: sc/inc/globstr.hrc:443
msgctxt "STR_COND_DATE"
msgid "Date is"
msgstr ""
-#: sc/inc/globstr.hrc:443
+#: sc/inc/globstr.hrc:444
msgctxt "STR_COND_BOTTOM_PERCENT"
msgid "Bottom Percent"
msgstr ""
-#: sc/inc/globstr.hrc:444
+#: sc/inc/globstr.hrc:445
msgctxt "STR_COND_ABOVE_AVERAGE"
msgid "Above Average"
msgstr ""
-#: sc/inc/globstr.hrc:445
+#: sc/inc/globstr.hrc:446
msgctxt "STR_COND_BELOW_AVERAGE"
msgid "Below Average"
msgstr ""
-#: sc/inc/globstr.hrc:446
+#: sc/inc/globstr.hrc:447
msgctxt "STR_COND_ABOVE_EQUAL_AVERAGE"
msgid "Above or equal Average"
msgstr ""
-#: sc/inc/globstr.hrc:447
+#: sc/inc/globstr.hrc:448
msgctxt "STR_COND_BELOW_EQUAL_AVERAGE"
msgid "Below or equal Average"
msgstr ""
-#: sc/inc/globstr.hrc:448
+#: sc/inc/globstr.hrc:449
msgctxt "STR_COND_ERROR"
msgid "an Error code"
msgstr ""
-#: sc/inc/globstr.hrc:449
+#: sc/inc/globstr.hrc:450
msgctxt "STR_COND_NOERROR"
msgid "not an Error code"
msgstr ""
-#: sc/inc/globstr.hrc:450
+#: sc/inc/globstr.hrc:451
msgctxt "STR_COND_BEGINS_WITH"
msgid "Begins with"
msgstr ""
-#: sc/inc/globstr.hrc:451
+#: sc/inc/globstr.hrc:452
msgctxt "STR_COND_ENDS_WITH"
msgid "Ends with"
msgstr ""
-#: sc/inc/globstr.hrc:452
+#: sc/inc/globstr.hrc:453
msgctxt "STR_COND_CONTAINS"
msgid "Contains"
msgstr ""
-#: sc/inc/globstr.hrc:453
+#: sc/inc/globstr.hrc:454
msgctxt "STR_COND_NOT_CONTAINS"
msgid "Not Contains"
msgstr ""
-#: sc/inc/globstr.hrc:454
+#: sc/inc/globstr.hrc:455
msgctxt "STR_COND_TODAY"
msgid "today"
msgstr ""
-#: sc/inc/globstr.hrc:455
+#: sc/inc/globstr.hrc:456
msgctxt "STR_COND_YESTERDAY"
msgid "yesterday"
msgstr ""
-#: sc/inc/globstr.hrc:456
+#: sc/inc/globstr.hrc:457
msgctxt "STR_COND_TOMORROW"
msgid "tomorrow"
msgstr ""
-#: sc/inc/globstr.hrc:457
+#: sc/inc/globstr.hrc:458
msgctxt "STR_COND_LAST7DAYS"
msgid "in the last 7 days"
msgstr ""
-#: sc/inc/globstr.hrc:458
+#: sc/inc/globstr.hrc:459
msgctxt "STR_COND_THISWEEK"
msgid "this week"
msgstr ""
-#: sc/inc/globstr.hrc:459
+#: sc/inc/globstr.hrc:460
msgctxt "STR_COND_LASTWEEK"
msgid "last week"
msgstr ""
-#: sc/inc/globstr.hrc:460
+#: sc/inc/globstr.hrc:461
msgctxt "STR_COND_NEXTWEEK"
msgid "next week"
msgstr ""
-#: sc/inc/globstr.hrc:461
+#: sc/inc/globstr.hrc:462
msgctxt "STR_COND_THISMONTH"
msgid "this month"
msgstr ""
-#: sc/inc/globstr.hrc:462
+#: sc/inc/globstr.hrc:463
msgctxt "STR_COND_LASTMONTH"
msgid "last month"
msgstr ""
-#: sc/inc/globstr.hrc:463
+#: sc/inc/globstr.hrc:464
msgctxt "STR_COND_NEXTMONTH"
msgid "next month"
msgstr ""
-#: sc/inc/globstr.hrc:464
+#: sc/inc/globstr.hrc:465
msgctxt "STR_COND_THISYEAR"
msgid "this year"
msgstr ""
-#: sc/inc/globstr.hrc:465
+#: sc/inc/globstr.hrc:466
msgctxt "STR_COND_LASTYEAR"
msgid "last year"
msgstr ""
-#: sc/inc/globstr.hrc:466
+#: sc/inc/globstr.hrc:467
msgctxt "STR_COND_NEXTYEAR"
msgid "next year"
msgstr ""
-#: sc/inc/globstr.hrc:467
+#: sc/inc/globstr.hrc:468
msgctxt "STR_COND_AND"
msgid "and"
msgstr ""
-#: sc/inc/globstr.hrc:468
+#: sc/inc/globstr.hrc:469
msgctxt "STR_ERR_CONDFORMAT_PROTECTED"
msgid "Conditional Formats can not be created, deleted or changed in protected sheets."
msgstr ""
-#: sc/inc/globstr.hrc:469
+#: sc/inc/globstr.hrc:470
msgctxt "STR_EDIT_EXISTING_COND_FORMATS"
msgid ""
"The selected cell already contains conditional formatting. You can either edit the existing conditional format or you define a new overlapping conditional format.\n"
@@ -2255,7 +2260,7 @@ msgid ""
" Do you want to edit the existing conditional format?"
msgstr ""
-#: sc/inc/globstr.hrc:470
+#: sc/inc/globstr.hrc:471
msgctxt "STR_QUERY_FORMULA_RECALC_ONLOAD_ODS"
msgid ""
"This document was last saved by an application other than %PRODUCTNAME. Some formula cells may produce different results when recalculated.\n"
@@ -2263,7 +2268,7 @@ msgid ""
"Do you want to recalculate all formula cells in this document now?"
msgstr ""
-#: sc/inc/globstr.hrc:471
+#: sc/inc/globstr.hrc:472
msgctxt "STR_QUERY_FORMULA_RECALC_ONLOAD_XLS"
msgid ""
"This document was last saved by Excel. Some formula cells may produce different results when recalculated.\n"
@@ -2271,77 +2276,77 @@ msgid ""
"Do you want to recalculate all formula cells now?"
msgstr ""
-#: sc/inc/globstr.hrc:472
+#: sc/inc/globstr.hrc:473
msgctxt "STR_NO_INSERT_DELETE_OVER_PIVOT_TABLE"
msgid "You cannot insert or delete cells when the affected range intersects with pivot table."
msgstr ""
-#: sc/inc/globstr.hrc:473
+#: sc/inc/globstr.hrc:474
msgctxt "STR_DPFIELD_GROUP_BY_SECONDS"
msgid "Seconds"
msgstr ""
-#: sc/inc/globstr.hrc:474
+#: sc/inc/globstr.hrc:475
msgctxt "STR_DPFIELD_GROUP_BY_MINUTES"
msgid "Minutes"
msgstr ""
-#: sc/inc/globstr.hrc:475
+#: sc/inc/globstr.hrc:476
msgctxt "STR_DPFIELD_GROUP_BY_HOURS"
msgid "Hours"
msgstr ""
-#: sc/inc/globstr.hrc:476
+#: sc/inc/globstr.hrc:477
msgctxt "STR_DPFIELD_GROUP_BY_DAYS"
msgid "Days"
msgstr ""
-#: sc/inc/globstr.hrc:477
+#: sc/inc/globstr.hrc:478
msgctxt "STR_DPFIELD_GROUP_BY_MONTHS"
msgid "Months"
msgstr ""
-#: sc/inc/globstr.hrc:478
+#: sc/inc/globstr.hrc:479
msgctxt "STR_DPFIELD_GROUP_BY_QUARTERS"
msgid "Quarters"
msgstr ""
-#: sc/inc/globstr.hrc:479
+#: sc/inc/globstr.hrc:480
msgctxt "STR_DPFIELD_GROUP_BY_YEARS"
msgid "Years"
msgstr ""
-#: sc/inc/globstr.hrc:480
+#: sc/inc/globstr.hrc:481
msgctxt "STR_INVALIDVAL"
msgid "Invalid target value."
msgstr ""
-#: sc/inc/globstr.hrc:481
+#: sc/inc/globstr.hrc:482
msgctxt "STR_INVALIDVAR"
msgid "Undefined name for variable cell."
msgstr ""
-#: sc/inc/globstr.hrc:482
+#: sc/inc/globstr.hrc:483
msgctxt "STR_INVALIDFORM"
msgid "Undefined name as formula cell."
msgstr ""
-#: sc/inc/globstr.hrc:483
+#: sc/inc/globstr.hrc:484
msgctxt "STR_NOFORMULA"
msgid "Formula cell must contain a formula."
msgstr ""
-#: sc/inc/globstr.hrc:484
+#: sc/inc/globstr.hrc:485
msgctxt "STR_INVALIDINPUT"
msgid "Invalid input."
msgstr ""
-#: sc/inc/globstr.hrc:485
+#: sc/inc/globstr.hrc:486
msgctxt "STR_INVALIDCONDITION"
msgid "Invalid condition."
msgstr ""
-#: sc/inc/globstr.hrc:486
+#: sc/inc/globstr.hrc:487
msgctxt "STR_QUERYREMOVE"
msgid ""
"Should the entry\n"
@@ -2349,133 +2354,133 @@ msgid ""
"be deleted?"
msgstr ""
-#: sc/inc/globstr.hrc:487
+#: sc/inc/globstr.hrc:488
msgctxt "STR_COPYLIST"
msgid "Copy List"
msgstr ""
-#: sc/inc/globstr.hrc:488
+#: sc/inc/globstr.hrc:489
msgctxt "STR_COPYFROM"
msgid "List from"
msgstr ""
-#: sc/inc/globstr.hrc:489
+#: sc/inc/globstr.hrc:490
msgctxt "STR_COPYERR"
msgid "Cells without text have been ignored."
msgstr ""
-#: sc/inc/globstr.hrc:490
+#: sc/inc/globstr.hrc:491
#, c-format
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%s-click to follow hyperlink:"
msgstr ""
-#: sc/inc/globstr.hrc:491
+#: sc/inc/globstr.hrc:492
msgctxt "STR_CLICKHYPERLINK"
msgid "click to open hyperlink:"
msgstr ""
-#: sc/inc/globstr.hrc:492
+#: sc/inc/globstr.hrc:493
msgctxt "STR_PRINT_PREVIEW_NODATA"
msgid "No Data"
msgstr ""
-#: sc/inc/globstr.hrc:493
+#: sc/inc/globstr.hrc:494
msgctxt "STR_PRINT_PREVIEW_EMPTY_RANGE"
msgid "Print Range Empty"
msgstr ""
-#: sc/inc/globstr.hrc:494
+#: sc/inc/globstr.hrc:495
msgctxt "STR_UNDO_CONDFORMAT"
msgid "Conditional Format"
msgstr ""
-#: sc/inc/globstr.hrc:495
+#: sc/inc/globstr.hrc:496
msgctxt "STR_UNDO_CONDFORMAT_LIST"
msgid "Conditional Formats"
msgstr ""
-#: sc/inc/globstr.hrc:496
+#: sc/inc/globstr.hrc:497
msgctxt "STR_UNDO_FORMULA_TO_VALUE"
msgid "Convert Formula To Value"
msgstr ""
-#: sc/inc/globstr.hrc:497
+#: sc/inc/globstr.hrc:498
msgctxt "STR_UNQUOTED_STRING"
msgid "Strings without quotes are interpreted as column/row labels."
msgstr ""
-#: sc/inc/globstr.hrc:498
+#: sc/inc/globstr.hrc:499
msgctxt "STR_ENTER_VALUE"
msgid "Enter a value!"
msgstr ""
-#: sc/inc/globstr.hrc:499
+#: sc/inc/globstr.hrc:500
msgctxt "STR_TABLE_COUNT"
msgid "Sheet %1 of %2"
msgstr ""
-#: sc/inc/globstr.hrc:500
+#: sc/inc/globstr.hrc:501
msgctxt "STR_FUNCTIONS_FOUND"
msgid "%1 and %2 more"
msgstr ""
-#: sc/inc/globstr.hrc:501
+#: sc/inc/globstr.hrc:502
msgctxt "STR_GENERAL"
msgid "General"
msgstr ""
-#: sc/inc/globstr.hrc:502
+#: sc/inc/globstr.hrc:503
msgctxt "STR_NUMBER"
msgid "Number"
msgstr ""
-#: sc/inc/globstr.hrc:503
+#: sc/inc/globstr.hrc:504
msgctxt "STR_PERCENT"
msgid "Percent"
msgstr ""
-#: sc/inc/globstr.hrc:504
+#: sc/inc/globstr.hrc:505
msgctxt "STR_CURRENCY"
msgid "Currency"
msgstr ""
-#: sc/inc/globstr.hrc:505
+#: sc/inc/globstr.hrc:506
msgctxt "STR_DATE"
msgid "Date"
msgstr ""
-#: sc/inc/globstr.hrc:506
+#: sc/inc/globstr.hrc:507
msgctxt "STR_TIME"
msgid "Time"
msgstr ""
-#: sc/inc/globstr.hrc:507
+#: sc/inc/globstr.hrc:508
msgctxt "STR_SCIENTIFIC"
msgid "Scientific"
msgstr ""
-#: sc/inc/globstr.hrc:508
+#: sc/inc/globstr.hrc:509
msgctxt "STR_FRACTION"
msgid "Fraction"
msgstr ""
-#: sc/inc/globstr.hrc:509
+#: sc/inc/globstr.hrc:510
msgctxt "STR_BOOLEAN_VALUE"
msgid "Boolean Value"
msgstr ""
-#: sc/inc/globstr.hrc:510
+#: sc/inc/globstr.hrc:511
msgctxt "STR_TEXT"
msgid "Text"
msgstr ""
-#: sc/inc/globstr.hrc:511
+#: sc/inc/globstr.hrc:512
msgctxt "STR_QUERY_PIVOTTABLE_DELTAB"
msgid "The selected sheet(s) contain source data of related pivot tables that will be lost. Are you sure you want to delete the selected sheet(s)?"
msgstr ""
-#: sc/inc/globstr.hrc:512
+#: sc/inc/globstr.hrc:513
msgctxt "STR_ERR_NAME_INVALID_CELL_REF"
msgid "Invalid name. Reference to a cell, or a range of cells not allowed."
msgstr ""
@@ -10396,7 +10401,7 @@ msgstr ""
#: sc/inc/scfuncs.hrc:3010
msgctxt "SC_OPCODE_T_TEST"
-msgid "Mode specifies the number of distribution tails to return. 1= one-tailed, 2 = two-tailed distribution"
+msgid "Mode specifies the number of distribution tails to return. 1 = one-tailed, 2 = two-tailed distribution"
msgstr ""
#: sc/inc/scfuncs.hrc:3011
@@ -10441,7 +10446,7 @@ msgstr ""
#: sc/inc/scfuncs.hrc:3024
msgctxt "SC_OPCODE_T_TEST_MS"
-msgid "Mode specifies the number of distribution tails to return. 1= one-tailed, 2 = two-tailed distribution"
+msgid "Mode specifies the number of distribution tails to return. 1 = one-tailed, 2 = two-tailed distribution"
msgstr ""
#: sc/inc/scfuncs.hrc:3025
@@ -17922,22 +17927,22 @@ msgctxt "mergecellsdialog|MergeCellsDialog"
msgid "Merge Cells"
msgstr ""
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:81
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:84
msgctxt "mergecellsdialog|label"
msgid "Some cells are not empty."
msgstr ""
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:96
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:99
msgctxt "mergecellsdialog|move-cells-radio"
msgid "Move the contents of the hidden cells into the first cell"
msgstr ""
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:112
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:115
msgctxt "mergecellsdialog|empty-cells-radio"
msgid "Empty the contents of the hidden cells"
msgstr ""
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:128
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:131
msgctxt "mergecellsdialog|keep-content-radio"
msgid "Keep the contents of the hidden cells"
msgstr ""
diff --git a/source/ky/sd/messages.po b/source/ky/sd/messages.po
index 6f6972f7632..fff9c89e61c 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+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"
@@ -13,167 +13,167 @@ msgstr ""
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-#: sd/inc/DocumentRenderer.hrc:29
+#: sd/inc/DocumentRenderer.hrc:27
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Slides"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:30
+#: sd/inc/DocumentRenderer.hrc:28
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Handouts"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:31
+#: sd/inc/DocumentRenderer.hrc:29
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Notes"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:32
+#: sd/inc/DocumentRenderer.hrc:30
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Outline"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:37
+#: sd/inc/DocumentRenderer.hrc:35
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "According to layout"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:38
+#: sd/inc/DocumentRenderer.hrc:36
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "1"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:39
+#: sd/inc/DocumentRenderer.hrc:37
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "2"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:40
+#: sd/inc/DocumentRenderer.hrc:38
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "3"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:41
+#: sd/inc/DocumentRenderer.hrc:39
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "4"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:42
+#: sd/inc/DocumentRenderer.hrc:40
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "6"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:43
+#: sd/inc/DocumentRenderer.hrc:41
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "9"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:48
+#: sd/inc/DocumentRenderer.hrc:46
msgctxt "STR_IMPRESS_PRINT_UI_ORDER_CHOICES"
msgid "Left to right, then down"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:49
+#: sd/inc/DocumentRenderer.hrc:47
msgctxt "STR_IMPRESS_PRINT_UI_ORDER_CHOICES"
msgid "Top to bottom, then right"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:54
+#: sd/inc/DocumentRenderer.hrc:52
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Original colors"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:55
+#: sd/inc/DocumentRenderer.hrc:53
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Grayscale"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:56
+#: sd/inc/DocumentRenderer.hrc:54
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Black & white"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:61
+#: sd/inc/DocumentRenderer.hrc:59
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Original size"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:62
+#: sd/inc/DocumentRenderer.hrc:60
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Fit to printable page"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:63
+#: sd/inc/DocumentRenderer.hrc:61
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Distribute on multiple sheets of paper"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:64
+#: sd/inc/DocumentRenderer.hrc:62
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Tile sheet of paper with repeated slides"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:69
+#: sd/inc/DocumentRenderer.hrc:67
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Original size"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:70
+#: sd/inc/DocumentRenderer.hrc:68
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Fit to printable page"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:71
+#: sd/inc/DocumentRenderer.hrc:69
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Distribute on multiple sheets of paper"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:72
+#: sd/inc/DocumentRenderer.hrc:70
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Tile sheet of paper with repeated pages"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:77
+#: sd/inc/DocumentRenderer.hrc:75
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "All pages"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:78
+#: sd/inc/DocumentRenderer.hrc:76
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "Front sides / right pages"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:79
+#: sd/inc/DocumentRenderer.hrc:77
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "Back sides / left pages"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:84
+#: sd/inc/DocumentRenderer.hrc:82
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~All slides"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:85
+#: sd/inc/DocumentRenderer.hrc:83
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~Slides"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:86
+#: sd/inc/DocumentRenderer.hrc:84
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Se~lection"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:91
+#: sd/inc/DocumentRenderer.hrc:89
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~All pages"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:92
+#: sd/inc/DocumentRenderer.hrc:90
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Pa~ges"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:93
+#: sd/inc/DocumentRenderer.hrc:91
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Se~lection"
msgstr ""
diff --git a/source/ky/svx/messages.po b/source/ky/svx/messages.po
index 0fcfb978e3a..f9003617b13 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: 2018-05-16 16:53+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+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"
@@ -5150,7 +5150,7 @@ msgstr ""
#: svx/uiconfig/ui/safemodedialog.ui:432
msgctxt "safemodedialog|btn_create_zip"
-msgid "Create Zip Archive from User Profile"
+msgid "Archive User Profile"
msgstr ""
#: svx/uiconfig/ui/safemodedialog.ui:445
@@ -8742,8 +8742,8 @@ msgid "Red"
msgstr ""
#: include/svx/strings.hrc:565
-msgctxt "RID_SVXSTR_COLOR_VIOLET"
-msgid "Violet"
+msgctxt "RID_SVXSTR_COLOR_MAGENTA"
+msgid "Magenta"
msgstr ""
#: include/svx/strings.hrc:566
@@ -8808,8 +8808,8 @@ msgid "Light Red"
msgstr ""
#: include/svx/strings.hrc:579
-msgctxt "RID_SVXSTR_COLOR_LIGHTVIOLET"
-msgid "Light Violet"
+msgctxt "RID_SVXSTR_COLOR_LIGHTMAGENTA"
+msgid "Light Magenta"
msgstr ""
#: include/svx/strings.hrc:580
@@ -8874,8 +8874,8 @@ msgid "Dark Red"
msgstr ""
#: include/svx/strings.hrc:593
-msgctxt "RID_SVXSTR_COLOR_DARKVIOLET1"
-msgid "Dark Violet"
+msgctxt "RID_SVXSTR_COLOR_DARKMAGENTA"
+msgid "Dark Magenta"
msgstr ""
#: include/svx/strings.hrc:594
@@ -8910,55 +8910,55 @@ msgstr ""
#. Elements of the Tonal color palette
#: include/svx/strings.hrc:601
+msgctxt "RID_SVXSTR_COLOR_VIOLET"
+msgid "Violet"
+msgstr ""
+
+#: include/svx/strings.hrc:602
msgctxt "RID_SVXSTR_COLOR_VIOLET_OUG"
msgid "Violet (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:602
+#: include/svx/strings.hrc:603
msgctxt "RID_SVXSTR_COLOR_BLUE_OUG"
msgid "Blue (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:603
+#: include/svx/strings.hrc:604
msgctxt "RID_SVXSTR_COLOR_AZURE_OUG"
msgid "Azure (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:604
+#: include/svx/strings.hrc:605
msgctxt "RID_SVXSTR_COLOR_SPRINGGREEN_OUG"
msgid "Spring Green (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:605
+#: include/svx/strings.hrc:606
msgctxt "RID_SVXSTR_COLOR_GREEN_OUG"
msgid "Green (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:606
+#: include/svx/strings.hrc:607
msgctxt "RID_SVXSTR_COLOR_CHARTREUSEGREEN_OUG"
msgid "Chartreuse Green (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:607
+#: include/svx/strings.hrc:608
msgctxt "RID_SVXSTR_COLOR_ORANGE_OUG"
msgid "Orange (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:608
+#: include/svx/strings.hrc:609
msgctxt "RID_SVXSTR_COLOR_RED_OUG"
msgid "Red (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:609
+#: include/svx/strings.hrc:610
msgctxt "RID_SVXSTR_COLOR_ROSE_OUG"
msgid "Rose (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:610
-msgctxt "RID_SVXSTR_COLOR_MAGENTA"
-msgid "Magenta"
-msgstr ""
-
#: include/svx/strings.hrc:611
msgctxt "RID_SVXSTR_COLOR_AZURE"
msgid "Azure"
@@ -12052,12 +12052,12 @@ msgstr ""
#: include/svx/strings.hrc:1273
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_6"
-msgid "Check mark bullets"
+msgid "Cross mark bullets"
msgstr ""
#: include/svx/strings.hrc:1274
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_7"
-msgid "Tick mark bullets"
+msgid "Check mark bullets"
msgstr ""
#: include/svx/strings.hrc:1275
diff --git a/source/ky/sw/messages.po b/source/ky/sw/messages.po
index 784a420cbac..ce618d96b1a 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: 2018-05-22 13:17+0200\n"
+"POT-Creation-Date: 2018-06-12 14:41+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"
@@ -1175,12 +1175,12 @@ msgstr ""
#: sw/inc/strings.hrc:172
msgctxt "STR_POOLCOLL_TOX_ILLUSH"
-msgid "Illustration Index Heading"
+msgid "Figure Index Heading"
msgstr ""
#: sw/inc/strings.hrc:173
msgctxt "STR_POOLCOLL_TOX_ILLUS1"
-msgid "Illustration Index 1"
+msgid "Figure Index 1"
msgstr ""
#: sw/inc/strings.hrc:174
@@ -3580,7 +3580,7 @@ msgstr ""
#: sw/inc/strings.hrc:672
msgctxt "STR_TOX_ILL"
-msgid "Illustration Index"
+msgid "Table of Figures"
msgstr ""
#: sw/inc/strings.hrc:673
@@ -9229,72 +9229,72 @@ msgctxt "footnotepage|label5"
msgid "Continuation Notice"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:49
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:55
msgctxt "footnotesendnotestabpage|ftnntnum"
msgid "_Restart numbering"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:91
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:93
msgctxt "footnotesendnotestabpage|ftnoffset_label"
msgid "_Start at:"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:112
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:111
msgctxt "footnotesendnotestabpage|ftnntnumfmt"
msgid "Custom _format"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:155
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:150
msgctxt "footnotesendnotestabpage|ftnsuffix_label"
msgid "Aft_er:"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:199
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:188
msgctxt "footnotesendnotestabpage|ftnprefix_label"
msgid "Be_fore:"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:228
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:212
msgctxt "footnotesendnotestabpage|ftnntattextend"
msgid "Collec_t at end of text"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:252
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:234
msgctxt "footnotesendnotestabpage|label1"
msgid "Footnotes"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:289
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:271
msgctxt "footnotesendnotestabpage|endntattextend"
msgid "C_ollect at end of section"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:315
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:295
msgctxt "footnotesendnotestabpage|endntnum"
msgid "_Restart numbering"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:357
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:333
msgctxt "footnotesendnotestabpage|endoffset_label"
msgid "_Start at:"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:378
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:351
msgctxt "footnotesendnotestabpage|endntnumfmt"
msgid "_Custom format"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:421
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:390
msgctxt "footnotesendnotestabpage|endsuffix_label"
msgid "Aft_er:"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:465
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:428
msgctxt "footnotesendnotestabpage|endprefix_label"
msgid "Be_fore:"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:500
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:458
msgctxt "footnotesendnotestabpage|label2"
msgid "Endnotes"
msgstr ""
@@ -9324,27 +9324,27 @@ msgctxt "formatsectiondialog|notes"
msgid "Footnotes/Endnotes"
msgstr ""
-#: sw/uiconfig/swriter/ui/formattablepage.ui:63
+#: sw/uiconfig/swriter/ui/formattablepage.ui:77
msgctxt "formattablepage|nameft"
msgid "_Name"
msgstr ""
-#: sw/uiconfig/swriter/ui/formattablepage.ui:79
+#: sw/uiconfig/swriter/ui/formattablepage.ui:91
msgctxt "formattablepage|widthft"
msgid "W_idth"
msgstr ""
-#: sw/uiconfig/swriter/ui/formattablepage.ui:110
+#: sw/uiconfig/swriter/ui/formattablepage.ui:120
msgctxt "formattablepage|relwidth"
msgid "Relati_ve"
msgstr ""
-#: sw/uiconfig/swriter/ui/formattablepage.ui:155
+#: sw/uiconfig/swriter/ui/formattablepage.ui:160
msgctxt "formattablepage|label45"
msgid "Properties"
msgstr ""
-#: sw/uiconfig/swriter/ui/formattablepage.ui:194
+#: sw/uiconfig/swriter/ui/formattablepage.ui:195
msgctxt "formattablepage|leftft"
msgid "Lef_t"
msgstr ""
@@ -9354,62 +9354,62 @@ msgctxt "formattablepage|rightft"
msgid "Ri_ght"
msgstr ""
-#: sw/uiconfig/swriter/ui/formattablepage.ui:228
+#: sw/uiconfig/swriter/ui/formattablepage.ui:226
msgctxt "formattablepage|aboveft"
msgid "_Above"
msgstr ""
-#: sw/uiconfig/swriter/ui/formattablepage.ui:245
+#: sw/uiconfig/swriter/ui/formattablepage.ui:241
msgctxt "formattablepage|belowft"
msgid "_Below"
msgstr ""
-#: sw/uiconfig/swriter/ui/formattablepage.ui:320
+#: sw/uiconfig/swriter/ui/formattablepage.ui:311
msgctxt "formattablepage|label46"
msgid "Spacing"
msgstr ""
-#: sw/uiconfig/swriter/ui/formattablepage.ui:362
+#: sw/uiconfig/swriter/ui/formattablepage.ui:349
msgctxt "formattablepage|full"
msgid "A_utomatic"
msgstr ""
-#: sw/uiconfig/swriter/ui/formattablepage.ui:380
+#: sw/uiconfig/swriter/ui/formattablepage.ui:365
msgctxt "formattablepage|left"
msgid "_Left"
msgstr ""
-#: sw/uiconfig/swriter/ui/formattablepage.ui:398
+#: sw/uiconfig/swriter/ui/formattablepage.ui:381
msgctxt "formattablepage|fromleft"
msgid "_From left"
msgstr ""
-#: sw/uiconfig/swriter/ui/formattablepage.ui:416
+#: sw/uiconfig/swriter/ui/formattablepage.ui:397
msgctxt "formattablepage|right"
msgid "R_ight"
msgstr ""
-#: sw/uiconfig/swriter/ui/formattablepage.ui:435
+#: sw/uiconfig/swriter/ui/formattablepage.ui:413
msgctxt "formattablepage|center"
msgid "_Center"
msgstr ""
-#: sw/uiconfig/swriter/ui/formattablepage.ui:453
+#: sw/uiconfig/swriter/ui/formattablepage.ui:429
msgctxt "formattablepage|free"
msgid "_Manual"
msgstr ""
-#: sw/uiconfig/swriter/ui/formattablepage.ui:478
+#: sw/uiconfig/swriter/ui/formattablepage.ui:452
msgctxt "formattablepage|label43"
msgid "Alignment"
msgstr ""
-#: sw/uiconfig/swriter/ui/formattablepage.ui:522
+#: sw/uiconfig/swriter/ui/formattablepage.ui:491
msgctxt "formattablepage|label53"
msgid "Text _direction"
msgstr ""
-#: sw/uiconfig/swriter/ui/formattablepage.ui:553
+#: sw/uiconfig/swriter/ui/formattablepage.ui:519
msgctxt "formattablepage|label44"
msgid "Properties "
msgstr ""
@@ -9764,22 +9764,27 @@ msgctxt "headerfootermenu|insert_pagenumber"
msgid "Insert Page Number"
msgstr ""
-#: sw/uiconfig/swriter/ui/indentpage.ui:52
+#: sw/uiconfig/swriter/ui/headerfootermenu.ui:42
+msgctxt "headerfootermenu|insert_pagecount"
+msgid "Insert Page Count"
+msgstr ""
+
+#: sw/uiconfig/swriter/ui/indentpage.ui:57
msgctxt "indentpage|label1"
msgid "_Before section"
msgstr ""
-#: sw/uiconfig/swriter/ui/indentpage.ui:67
+#: sw/uiconfig/swriter/ui/indentpage.ui:71
msgctxt "indentpage|label3"
msgid "_After section"
msgstr ""
-#: sw/uiconfig/swriter/ui/indentpage.ui:113
+#: sw/uiconfig/swriter/ui/indentpage.ui:115
msgctxt "indentpage|label2"
msgid "Indent"
msgstr ""
-#: sw/uiconfig/swriter/ui/indentpage.ui:142
+#: sw/uiconfig/swriter/ui/indentpage.ui:155
msgctxt "indentpage|preview-atkobject"
msgid "Example"
msgstr ""
@@ -13277,7 +13282,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:68
msgctxt "optcompatpage|format"
-msgid "MS Word-compatible trailing blanks"
+msgid "Word-compatible trailing blanks"
msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:69
@@ -13287,7 +13292,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:70
msgctxt "optcompatpage|format"
-msgid "A database field (e.g., MailMerge) with empty value hides its paragraph"
+msgid "Hide paragraphs of database fields (e.g., mail merge) with an empty value"
msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:71
@@ -15970,122 +15975,122 @@ msgctxt "tableproperties|background"
msgid "Background"
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:25
-msgctxt "tabletextflowpage|liststore1"
-msgid "Horizontal"
-msgstr ""
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:29
-msgctxt "tabletextflowpage|liststore1"
-msgid "Vertical"
-msgstr ""
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:33
-msgctxt "tabletextflowpage|liststore1"
-msgid "Use superordinate object settings"
-msgstr ""
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:47
-msgctxt "tabletextflowpage|liststore2"
-msgid "Top"
-msgstr ""
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:51
-msgctxt "tabletextflowpage|liststore2"
-msgid "Centered"
-msgstr ""
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:55
-msgctxt "tabletextflowpage|liststore2"
-msgid "Bottom"
-msgstr ""
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:97
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:53
msgctxt "tabletextflowpage|break"
msgid "_Break"
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:112
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:68
msgctxt "tabletextflowpage|page"
msgid "_Page"
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:132
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:87
msgctxt "tabletextflowpage|column"
msgid "Col_umn"
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:151
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:106
msgctxt "tabletextflowpage|before"
msgid "Be_fore"
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:171
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:125
msgctxt "tabletextflowpage|after"
msgid "_After"
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:203
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:158
msgctxt "tabletextflowpage|pagestyle"
msgid "With Page St_yle"
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:224
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:177
msgctxt "tabletextflowpage|pagenoft"
msgid "Page _number"
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:257
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:213
msgctxt "tabletextflowpage|pagestylelb-atkobject"
msgid "With Page Style"
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:274
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:230
msgctxt "tabletextflowpage|split"
msgid "Allow _table to split across pages and columns"
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:289
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:245
msgctxt "tabletextflowpage|splitrow"
msgid "Allow row to break a_cross pages and columns"
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:306
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:262
msgctxt "tabletextflowpage|keep"
msgid "_Keep with next paragraph"
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:328
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:284
msgctxt "tabletextflowpage|label40"
msgid "Text _orientation"
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:361
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:298
+msgctxt "tabletextflowpage|liststore1"
+msgid "Horizontal"
+msgstr ""
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:299
+msgctxt "tabletextflowpage|liststore1"
+msgid "Vertical"
+msgstr ""
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:300
+msgctxt "tabletextflowpage|liststore1"
+msgid "Use superordinate object settings"
+msgstr ""
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:321
msgctxt "tabletextflowpage|headline"
msgid "R_epeat heading"
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:383
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:343
msgctxt "tabletextflowpage|label38"
msgid "The first "
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:396
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:356
msgctxt "tabletextflowpage|label39"
msgid "rows"
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:434
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:395
msgctxt "tabletextflowpage|label35"
msgid "Text Flow"
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:467
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:428
msgctxt "tabletextflowpage|label41"
msgid "_Vertical alignment"
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:495
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:442
+msgctxt "tabletextflowpage|liststore2"
+msgid "Top"
+msgstr ""
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:443
+msgctxt "tabletextflowpage|liststore2"
+msgid "Centered"
+msgstr ""
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:444
+msgctxt "tabletextflowpage|liststore2"
+msgid "Bottom"
+msgstr ""
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:460
msgctxt "tabletextflowpage|label36"
msgid "Alignment"
msgstr ""
@@ -16867,7 +16872,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/tocindexpage.ui:58
msgctxt "tocindexpage|liststore1"
-msgid "Illustration Index"
+msgid "Table of Figures"
msgstr ""
#: sw/uiconfig/swriter/ui/tocindexpage.ui:62
diff --git a/source/ky/writerperfect/messages.po b/source/ky/writerperfect/messages.po
index d75d501ec5e..19f35bc683a 100644
--- a/source/ky/writerperfect/messages.po
+++ b/source/ky/writerperfect/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-16 16:54+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+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"
@@ -63,97 +63,97 @@ msgctxt "exportepub|generalft"
msgid "General"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:122
+#: writerperfect/uiconfig/ui/exportepub.ui:121
msgctxt "exportepub|versionft"
msgid "Version:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:139
+#: writerperfect/uiconfig/ui/exportepub.ui:138
msgctxt "exportepub|epub3"
msgid "EPUB 3.0"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:140
+#: writerperfect/uiconfig/ui/exportepub.ui:139
msgctxt "exportepub|epub2"
msgid "EPUB 2.0"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:175
+#: writerperfect/uiconfig/ui/exportepub.ui:174
msgctxt "exportepub|splitft"
msgid "Split method:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:192
+#: writerperfect/uiconfig/ui/exportepub.ui:191
msgctxt "exportepub|splitpage"
msgid "Page break"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:193
+#: writerperfect/uiconfig/ui/exportepub.ui:192
msgctxt "exportepub|splitheading"
msgid "Heading"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:228
+#: writerperfect/uiconfig/ui/exportepub.ui:227
msgctxt "exportepub|layoutft"
msgid "Layout method:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:245
+#: writerperfect/uiconfig/ui/exportepub.ui:244
msgctxt "exportepub|layoutreflowable"
msgid "Reflowable"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:246
+#: writerperfect/uiconfig/ui/exportepub.ui:245
msgctxt "exportepub|layoutfixed"
msgid "Fixed"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:281
+#: writerperfect/uiconfig/ui/exportepub.ui:280
msgctxt "exportepub|coverimageft"
msgid "Custom cover image:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:311
+#: writerperfect/uiconfig/ui/exportepub.ui:310
msgctxt "exportepub|coverbutton"
msgid "Browse..."
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:355
+#: writerperfect/uiconfig/ui/exportepub.ui:354
msgctxt "exportepub|mediadirft"
msgid "Custom media directory:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:385
+#: writerperfect/uiconfig/ui/exportepub.ui:384
msgctxt "exportepub|mediabutton"
msgid "Browse..."
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:429
+#: writerperfect/uiconfig/ui/exportepub.ui:428
msgctxt "exportepub|metadataft"
msgid "Metadata"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:470
+#: writerperfect/uiconfig/ui/exportepub.ui:468
msgctxt "exportepub|identifierft"
msgid "Identifier:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:485
+#: writerperfect/uiconfig/ui/exportepub.ui:483
msgctxt "exportepub|titleft"
msgid "Title:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:511
+#: writerperfect/uiconfig/ui/exportepub.ui:509
msgctxt "exportepub|authorft"
msgid "Author:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:537
+#: writerperfect/uiconfig/ui/exportepub.ui:535
msgctxt "exportepub|languageft"
msgid "Language:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:563
+#: writerperfect/uiconfig/ui/exportepub.ui:561
msgctxt "exportepub|dateft"
msgid "Date:"
msgstr ""
diff --git a/source/lb/cui/messages.po b/source/lb/cui/messages.po
index 43f58a77ff4..2fb8fd7c10a 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+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"
@@ -10217,104 +10217,104 @@ msgctxt "positionsizedialog|PositionAndSizeDialog"
msgid "Position and Size"
msgstr ""
-#: cui/uiconfig/ui/positionsizedialog.ui:107
+#: cui/uiconfig/ui/positionsizedialog.ui:136
msgctxt "positionsizedialog|RID_SVXPAGE_POSITION_SIZE"
msgid "Position and Size"
msgstr ""
-#: cui/uiconfig/ui/positionsizedialog.ui:129
+#: cui/uiconfig/ui/positionsizedialog.ui:182
msgctxt "positionsizedialog|RID_SVXPAGE_SWPOSSIZE"
msgid "Position and Size"
msgstr ""
-#: cui/uiconfig/ui/positionsizedialog.ui:152
+#: cui/uiconfig/ui/positionsizedialog.ui:229
msgctxt "positionsizedialog|RID_SVXPAGE_ANGLE"
msgid "Rotation"
msgstr ""
-#: cui/uiconfig/ui/positionsizedialog.ui:175
+#: cui/uiconfig/ui/positionsizedialog.ui:276
msgctxt "positionsizedialog|RID_SVXPAGE_SLANT"
msgid "Slant & Corner Radius"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:40
+#: cui/uiconfig/ui/possizetabpage.ui:61
#, fuzzy
msgctxt "possizetabpage|FT_POS_X"
msgid "Position _X:"
msgstr "Positioun"
-#: cui/uiconfig/ui/possizetabpage.ui:56
+#: cui/uiconfig/ui/possizetabpage.ui:75
#, fuzzy
msgctxt "possizetabpage|FT_POS_Y"
msgid "Position _Y:"
msgstr "Positioun"
-#: cui/uiconfig/ui/possizetabpage.ui:110
+#: cui/uiconfig/ui/possizetabpage.ui:128
msgctxt "possizetabpage|FT_POSREFERENCE"
msgid "_Base point:"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:148
+#: cui/uiconfig/ui/possizetabpage.ui:182
msgctxt "possizetabpage|label1"
msgid "Position"
msgstr "Positioun"
-#: cui/uiconfig/ui/possizetabpage.ui:190
+#: cui/uiconfig/ui/possizetabpage.ui:224
#, fuzzy
msgctxt "possizetabpage|FT_WIDTH"
msgid "Wi_dth:"
msgstr "Breet"
-#: cui/uiconfig/ui/possizetabpage.ui:206
+#: cui/uiconfig/ui/possizetabpage.ui:238
#, fuzzy
msgctxt "possizetabpage|FT_HEIGHT"
msgid "H_eight:"
msgstr "Héicht"
-#: cui/uiconfig/ui/possizetabpage.ui:247
+#: cui/uiconfig/ui/possizetabpage.ui:276
msgctxt "possizetabpage|CBX_SCALE"
msgid "_Keep ratio"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:279
+#: cui/uiconfig/ui/possizetabpage.ui:307
msgctxt "possizetabpage|FT_SIZEREFERENCE"
msgid "Base _point:"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:317
+#: cui/uiconfig/ui/possizetabpage.ui:361
msgctxt "possizetabpage|label2"
msgid "Size"
msgstr "Gréisst"
-#: cui/uiconfig/ui/possizetabpage.ui:356
+#: cui/uiconfig/ui/possizetabpage.ui:401
#, fuzzy
msgctxt "possizetabpage|TSB_POSPROTECT"
msgid "Positio_n"
msgstr "Positioun"
-#: cui/uiconfig/ui/possizetabpage.ui:373
+#: cui/uiconfig/ui/possizetabpage.ui:418
#, fuzzy
msgctxt "possizetabpage|TSB_SIZEPROTECT"
msgid "_Size"
msgstr "Gréisst"
-#: cui/uiconfig/ui/possizetabpage.ui:397
+#: cui/uiconfig/ui/possizetabpage.ui:441
#, fuzzy
msgctxt "possizetabpage|label3"
msgid "Protect"
msgstr "Projet"
-#: cui/uiconfig/ui/possizetabpage.ui:430
+#: cui/uiconfig/ui/possizetabpage.ui:475
msgctxt "possizetabpage|TSB_AUTOGROW_WIDTH"
msgid "_Fit width to text"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:447
+#: cui/uiconfig/ui/possizetabpage.ui:492
msgctxt "possizetabpage|TSB_AUTOGROW_HEIGHT"
msgid "Fit _height to text"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:471
+#: cui/uiconfig/ui/possizetabpage.ui:515
msgctxt "possizetabpage|label4"
msgid "Adapt"
msgstr ""
@@ -10516,49 +10516,49 @@ msgctxt "recordnumberdialog|label2"
msgid "go to record"
msgstr ""
-#: cui/uiconfig/ui/rotationtabpage.ui:52
+#: cui/uiconfig/ui/rotationtabpage.ui:56
#, fuzzy
msgctxt "rotationtabpage|FT_POS_X"
msgid "Position _X:"
msgstr "Positioun"
-#: cui/uiconfig/ui/rotationtabpage.ui:66
+#: cui/uiconfig/ui/rotationtabpage.ui:70
#, fuzzy
msgctxt "rotationtabpage|FT_POS_Y"
msgid "Position _Y:"
msgstr "Positioun"
-#: cui/uiconfig/ui/rotationtabpage.ui:116
+#: cui/uiconfig/ui/rotationtabpage.ui:123
msgctxt "rotationtabpage|FT_POSPRESETS"
msgid "_Default settings:"
msgstr ""
-#: cui/uiconfig/ui/rotationtabpage.ui:130
+#: cui/uiconfig/ui/rotationtabpage.ui:151
msgctxt "rotationtabpage|CTL_RECT|tooltip_text"
msgid "Rotation point"
msgstr ""
-#: cui/uiconfig/ui/rotationtabpage.ui:155
+#: cui/uiconfig/ui/rotationtabpage.ui:178
msgctxt "rotationtabpage|label1"
msgid "Pivot Point"
msgstr ""
-#: cui/uiconfig/ui/rotationtabpage.ui:197
+#: cui/uiconfig/ui/rotationtabpage.ui:220
msgctxt "rotationtabpage|FT_ANGLE"
msgid "_Angle:"
msgstr ""
-#: cui/uiconfig/ui/rotationtabpage.ui:238
+#: cui/uiconfig/ui/rotationtabpage.ui:263
msgctxt "rotationtabpage|FT_ANGLEPRESETS"
msgid "Default _settings:"
msgstr ""
-#: cui/uiconfig/ui/rotationtabpage.ui:252
+#: cui/uiconfig/ui/rotationtabpage.ui:287
msgctxt "rotationtabpage|CTL_ANGLE|tooltip_text"
msgid "Rotation Angle"
msgstr ""
-#: cui/uiconfig/ui/rotationtabpage.ui:277
+#: cui/uiconfig/ui/rotationtabpage.ui:314
msgctxt "rotationtabpage|label2"
msgid "Rotation Angle"
msgstr ""
@@ -10946,52 +10946,52 @@ msgctxt "similaritysearchdialog|relaxbox"
msgid "_Combine"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:50
+#: cui/uiconfig/ui/slantcornertabpage.ui:70
msgctxt "slantcornertabpage|label5"
msgid "_X:"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:88
+#: cui/uiconfig/ui/slantcornertabpage.ui:110
msgctxt "slantcornertabpage|label6"
msgid "_Y:"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:125
+#: cui/uiconfig/ui/slantcornertabpage.ui:149
msgctxt "slantcornertabpage|label3"
msgid "Control Point 1"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:159
+#: cui/uiconfig/ui/slantcornertabpage.ui:183
msgctxt "slantcornertabpage|FT_RADIUS"
msgid "_Radius:"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:189
+#: cui/uiconfig/ui/slantcornertabpage.ui:214
msgctxt "slantcornertabpage|label1"
msgid "Corner Radius"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:223
+#: cui/uiconfig/ui/slantcornertabpage.ui:248
msgctxt "slantcornertabpage|FT_ANGLE"
msgid "_Angle:"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:253
+#: cui/uiconfig/ui/slantcornertabpage.ui:279
msgctxt "slantcornertabpage|label2"
msgid "Slant"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:294
+#: cui/uiconfig/ui/slantcornertabpage.ui:320
msgctxt "slantcornertabpage|label4"
msgid "_X:"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:332
+#: cui/uiconfig/ui/slantcornertabpage.ui:360
msgctxt "slantcornertabpage|label7"
msgid "_Y:"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:369
+#: cui/uiconfig/ui/slantcornertabpage.ui:399
msgctxt "slantcornertabpage|label8"
msgid "Control Point 2"
msgstr ""
@@ -11283,119 +11283,119 @@ msgctxt "storedwebconnectiondialog|change"
msgid "_Change Password..."
msgstr "~Passwuert änneren..."
-#: cui/uiconfig/ui/swpossizepage.ui:74
+#: cui/uiconfig/ui/swpossizepage.ui:85
#, fuzzy
msgctxt "swpossizepage|widthft"
msgid "_Width:"
msgstr "Breet"
-#: cui/uiconfig/ui/swpossizepage.ui:111
+#: cui/uiconfig/ui/swpossizepage.ui:123
#, fuzzy
msgctxt "swpossizepage|heightft"
msgid "H_eight:"
msgstr "Héicht"
-#: cui/uiconfig/ui/swpossizepage.ui:128
+#: cui/uiconfig/ui/swpossizepage.ui:141
msgctxt "swpossizepage|ratio"
msgid "_Keep ratio"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:149
+#: cui/uiconfig/ui/swpossizepage.ui:162
msgctxt "swpossizepage|label2"
msgid "Size"
msgstr "Gréisst"
-#: cui/uiconfig/ui/swpossizepage.ui:205
+#: cui/uiconfig/ui/swpossizepage.ui:218
#, fuzzy
msgctxt "swpossizepage|topage"
msgid "To _page"
msgstr "Op der ~Säit"
-#: cui/uiconfig/ui/swpossizepage.ui:222
+#: cui/uiconfig/ui/swpossizepage.ui:234
msgctxt "swpossizepage|topara"
msgid "To paragrap_h"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:238
+#: cui/uiconfig/ui/swpossizepage.ui:250
msgctxt "swpossizepage|tochar"
msgid "To cha_racter"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:254
+#: cui/uiconfig/ui/swpossizepage.ui:266
msgctxt "swpossizepage|aschar"
msgid "_As character"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:270
+#: cui/uiconfig/ui/swpossizepage.ui:282
msgctxt "swpossizepage|toframe"
msgid "To _frame"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:292
+#: cui/uiconfig/ui/swpossizepage.ui:304
msgctxt "swpossizepage|label1"
msgid "Anchor"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:333
+#: cui/uiconfig/ui/swpossizepage.ui:344
#, fuzzy
msgctxt "swpossizepage|horiposft"
msgid "Hori_zontal:"
msgstr "Horizontal"
-#: cui/uiconfig/ui/swpossizepage.ui:347
+#: cui/uiconfig/ui/swpossizepage.ui:358
msgctxt "swpossizepage|horibyft"
msgid "b_y:"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:361
+#: cui/uiconfig/ui/swpossizepage.ui:372
msgctxt "swpossizepage|vertbyft"
msgid "_by:"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:375
+#: cui/uiconfig/ui/swpossizepage.ui:386
msgctxt "swpossizepage|horitoft"
msgid "_to:"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:421
+#: cui/uiconfig/ui/swpossizepage.ui:433
#, fuzzy
msgctxt "swpossizepage|vertposft"
msgid "_Vertical:"
msgstr "~Vertikal"
-#: cui/uiconfig/ui/swpossizepage.ui:457
+#: cui/uiconfig/ui/swpossizepage.ui:470
msgctxt "swpossizepage|verttoft"
msgid "t_o:"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:478
+#: cui/uiconfig/ui/swpossizepage.ui:492
msgctxt "swpossizepage|mirror"
msgid "_Mirror on even pages"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:495
+#: cui/uiconfig/ui/swpossizepage.ui:509
msgctxt "swpossizepage|followtextflow"
msgid "Follow te_xt flow"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:518
+#: cui/uiconfig/ui/swpossizepage.ui:532
msgctxt "swpossizepage|label11"
msgid "Position"
msgstr "Positioun"
-#: cui/uiconfig/ui/swpossizepage.ui:549
+#: cui/uiconfig/ui/swpossizepage.ui:563
#, fuzzy
msgctxt "swpossizepage|pos"
msgid "Positio_n"
msgstr "Positioun"
-#: cui/uiconfig/ui/swpossizepage.ui:565
+#: cui/uiconfig/ui/swpossizepage.ui:579
#, fuzzy
msgctxt "swpossizepage|size"
msgid "_Size"
msgstr "Gréisst"
-#: cui/uiconfig/ui/swpossizepage.ui:587
+#: cui/uiconfig/ui/swpossizepage.ui:601
#, fuzzy
msgctxt "swpossizepage|label3"
msgid "Protect"
@@ -11594,12 +11594,12 @@ msgctxt "textattrtabpage|label2"
msgid "Spacing to Borders"
msgstr ""
-#: cui/uiconfig/ui/textattrtabpage.ui:425
+#: cui/uiconfig/ui/textattrtabpage.ui:423
msgctxt "textattrtabpage|TSB_FULL_WIDTH"
msgid "Full _width"
msgstr ""
-#: cui/uiconfig/ui/textattrtabpage.ui:448
+#: cui/uiconfig/ui/textattrtabpage.ui:446
msgctxt "textattrtabpage|label3"
msgid "Text Anchor"
msgstr ""
diff --git a/source/lb/filter/source/config/fragments/filters.po b/source/lb/filter/source/config/fragments/filters.po
index 6c41e880074..01e3997a3df 100644
--- a/source/lb/filter/source/config/fragments/filters.po
+++ b/source/lb/filter/source/config/fragments/filters.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-16 16:54+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2016-03-11 08:50+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -465,8 +465,8 @@ msgctxt ""
"MS Word 2003 XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Word 2003 XML"
-msgstr "Microsoft Word 2003 XML"
+msgid "Word 2003 XML"
+msgstr ""
#: MS_Word_2007_XML.xcu
msgctxt ""
@@ -1290,7 +1290,7 @@ msgctxt ""
"Calc MS Excel 2007 VBA XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Excel 2007-2016 XML (macro enabled)"
+msgid "Excel 2007–2019 (macro-enabled)"
msgstr ""
#: calc_MS_Excel_2007_XML.xcu
diff --git a/source/lb/filter/source/config/fragments/types.po b/source/lb/filter/source/config/fragments/types.po
index 20e1d27979b..260693f9877 100644
--- a/source/lb/filter/source/config/fragments/types.po
+++ b/source/lb/filter/source/config/fragments/types.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-08 15:11+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2015-11-11 21:27+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -296,8 +296,8 @@ msgctxt ""
"writer_MS_Word_2003_XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Word 2003 XML"
-msgstr "Microsoft Word 2003 XML"
+msgid "Word 2003 XML"
+msgstr ""
#: writer_MS_Word_2007_XML.xcu
msgctxt ""
diff --git a/source/lb/fpicker/messages.po b/source/lb/fpicker/messages.po
index 94de3494571..a9fdc4fef1c 100644
--- a/source/lb/fpicker/messages.po
+++ b/source/lb/fpicker/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+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"
@@ -265,14 +265,13 @@ msgstr ""
#: fpicker/uiconfig/ui/foldernamedialog.ui:8
msgctxt "foldernamedialog|FolderNameDialog"
-msgid "Folder Name ?"
+msgid "Folder Name"
msgstr ""
#: fpicker/uiconfig/ui/foldernamedialog.ui:91
-#, fuzzy
msgctxt "foldernamedialog|label2"
-msgid "Na_me"
-msgstr "Numm"
+msgid "Na_me:"
+msgstr ""
#: fpicker/uiconfig/ui/foldernamedialog.ui:122
msgctxt "foldernamedialog|label1"
diff --git a/source/lb/officecfg/registry/data/org/openoffice/Office/UI.po b/source/lb/officecfg/registry/data/org/openoffice/Office/UI.po
index e939a4ee56f..f0e7f0afc80 100644
--- a/source/lb/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/lb/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-22 13:17+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2016-07-05 02:00+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -26954,8 +26954,8 @@ msgctxt ""
"..WriterCommands.UserInterface.Commands..uno:TextAttributes\n"
"Label\n"
"value.text"
-msgid "Text Attributes"
-msgstr "Textattributer"
+msgid "Text Attributes..."
+msgstr ""
#: WriterCommands.xcu
msgctxt ""
diff --git a/source/lb/readlicense_oo/docs.po b/source/lb/readlicense_oo/docs.po
index fd50c5a90a4..c6d91f88aa9 100644
--- a/source/lb/readlicense_oo/docs.po
+++ b/source/lb/readlicense_oo/docs.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-04-17 15:54+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2016-05-02 00:29+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -117,7 +117,7 @@ msgctxt ""
"readme.xrm\n"
"macxiOSX\n"
"readmeitem.text"
-msgid "MacOSX 10.8 (Mountain Lion) or higher"
+msgid "MacOSX 10.9 (Mavericks) or higher"
msgstr ""
#: readme.xrm
diff --git a/source/lb/sc/messages.po b/source/lb/sc/messages.po
index 5172c79846c..a97ddf5787d 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-12 14:40+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"
@@ -1884,16 +1884,21 @@ msgid "Nested arrays are not supported."
msgstr ""
#: sc/inc/globstr.hrc:390
+msgctxt "STR_ERR_LONG_BAD_ARRAY_CONTENT"
+msgid "Unsupported inline array content."
+msgstr ""
+
+#: sc/inc/globstr.hrc:391
msgctxt "STR_UNDO_TEXTTOCOLUMNS"
msgid "Text to Columns"
msgstr ""
-#: sc/inc/globstr.hrc:391
+#: sc/inc/globstr.hrc:392
msgctxt "STR_DOC_UPDATED"
msgid "Your spreadsheet has been updated with changes saved by other users."
msgstr ""
-#: sc/inc/globstr.hrc:392
+#: sc/inc/globstr.hrc:393
msgctxt "STR_DOC_WILLBESAVED"
msgid ""
"The spreadsheet must be saved now to activate sharing mode.\n"
@@ -1901,7 +1906,7 @@ msgid ""
"Do you want to continue?"
msgstr ""
-#: sc/inc/globstr.hrc:393
+#: sc/inc/globstr.hrc:394
msgctxt "STR_DOC_WILLNOTBESAVED"
msgid ""
"Already resolved merge conflicts will be lost and your changes to the shared spreadsheet will not be saved.\n"
@@ -1909,7 +1914,7 @@ msgid ""
"Do you want to continue?"
msgstr ""
-#: sc/inc/globstr.hrc:394
+#: sc/inc/globstr.hrc:395
msgctxt "STR_DOC_DISABLESHARED"
msgid ""
"Disabling shared mode of a spreadsheet hinders all other users of the shared spreadsheet to merge back their work.\n"
@@ -1917,7 +1922,7 @@ msgid ""
"Do you want to continue?"
msgstr ""
-#: sc/inc/globstr.hrc:395
+#: sc/inc/globstr.hrc:396
msgctxt "STR_DOC_NOLONGERSHARED"
msgid ""
"This spreadsheet is no longer in shared mode.\n"
@@ -1925,7 +1930,7 @@ msgid ""
"Save your spreadsheet to a separate file and merge your changes to the shared spreadsheet manually."
msgstr ""
-#: sc/inc/globstr.hrc:396
+#: sc/inc/globstr.hrc:397
msgctxt "STR_FILE_LOCKED_TRY_LATER"
msgid ""
"The shared spreadsheet file is locked due to a merge in progress by user: '%1'\n"
@@ -1933,7 +1938,7 @@ msgid ""
"Sharing mode of a locked file cannot be disabled. Try again later."
msgstr ""
-#: sc/inc/globstr.hrc:397
+#: sc/inc/globstr.hrc:398
msgctxt "STR_FILE_LOCKED_SAVE_LATER"
msgid ""
"The shared spreadsheet file is locked due to a merge in progress by user: '%1'\n"
@@ -1941,152 +1946,152 @@ msgid ""
"Try again later to save your changes."
msgstr ""
-#: sc/inc/globstr.hrc:398
+#: sc/inc/globstr.hrc:399
msgctxt "STR_UNKNOWN_USER"
msgid "Unknown User"
msgstr "Onbekannte Benotzer"
-#: sc/inc/globstr.hrc:399
+#: sc/inc/globstr.hrc:400
msgctxt "STR_SHAPE_AUTOSHAPE"
msgid "AutoShape"
msgstr "AutoForm"
-#: sc/inc/globstr.hrc:400
+#: sc/inc/globstr.hrc:401
msgctxt "STR_SHAPE_RECTANGLE"
msgid "Rectangle"
msgstr "Rechteck"
-#: sc/inc/globstr.hrc:401
+#: sc/inc/globstr.hrc:402
msgctxt "STR_SHAPE_LINE"
msgid "Line"
msgstr "Zeil "
-#: sc/inc/globstr.hrc:402
+#: sc/inc/globstr.hrc:403
msgctxt "STR_SHAPE_OVAL"
msgid "Oval"
msgstr "Oval"
-#: sc/inc/globstr.hrc:403
+#: sc/inc/globstr.hrc:404
msgctxt "STR_FORM_BUTTON"
msgid "Button"
msgstr "Knäppchen"
-#: sc/inc/globstr.hrc:404
+#: sc/inc/globstr.hrc:405
msgctxt "STR_FORM_CHECKBOX"
msgid "Check Box"
msgstr "Kontrollfeld"
-#: sc/inc/globstr.hrc:405
+#: sc/inc/globstr.hrc:406
msgctxt "STR_FORM_OPTIONBUTTON"
msgid "Option Button"
msgstr "Optiounsfeld"
-#: sc/inc/globstr.hrc:406
+#: sc/inc/globstr.hrc:407
msgctxt "STR_FORM_LABEL"
msgid "Label"
msgstr "Bezeechnung"
-#: sc/inc/globstr.hrc:407
+#: sc/inc/globstr.hrc:408
msgctxt "STR_FORM_LISTBOX"
msgid "List Box"
msgstr "Lëschtfeld"
-#: sc/inc/globstr.hrc:408
+#: sc/inc/globstr.hrc:409
msgctxt "STR_FORM_GROUPBOX"
msgid "Group Box"
msgstr "Gruppëfeld"
-#: sc/inc/globstr.hrc:409
+#: sc/inc/globstr.hrc:410
msgctxt "STR_FORM_DROPDOWN"
msgid "Drop Down"
msgstr "Ausklappen"
-#: sc/inc/globstr.hrc:410
+#: sc/inc/globstr.hrc:411
msgctxt "STR_FORM_SPINNER"
msgid "Spinner"
msgstr "Drehfeld"
-#: sc/inc/globstr.hrc:411
+#: sc/inc/globstr.hrc:412
msgctxt "STR_FORM_SCROLLBAR"
msgid "Scroll Bar"
msgstr "Rollbalken"
-#: sc/inc/globstr.hrc:412
+#: sc/inc/globstr.hrc:413
#, fuzzy
msgctxt "STR_STYLE_FAMILY_CELL"
msgid "Cell Styles"
msgstr "Virlagen applizéieren"
-#: sc/inc/globstr.hrc:413
+#: sc/inc/globstr.hrc:414
#, fuzzy
msgctxt "STR_STYLE_FAMILY_PAGE"
msgid "Page Styles"
msgstr "Säitevirlag: "
-#: sc/inc/globstr.hrc:414
+#: sc/inc/globstr.hrc:415
msgctxt "STR_ERR_DATAPILOTSOURCE"
msgid "Pivot table source data is invalid."
msgstr ""
-#: sc/inc/globstr.hrc:415
+#: sc/inc/globstr.hrc:416
msgctxt "STR_OPTIONS_WARN_SEPARATORS"
msgid "Because the current formula separator settings conflict with the locale, the formula separators have been reset to their default values."
msgstr "Da die aktuellen Formeltrenner mit dem Gebietsschema in Konflikt stehen, wurden die Formeltrenner auf ihre Standardwerte zurückgesetzt."
-#: sc/inc/globstr.hrc:416
+#: sc/inc/globstr.hrc:417
msgctxt "STR_UNDO_INSERT_CURRENT_DATE"
msgid "Insert Current Date"
msgstr ""
-#: sc/inc/globstr.hrc:417
+#: sc/inc/globstr.hrc:418
msgctxt "STR_UNDO_INSERT_CURRENT_TIME"
msgid "Insert Current Time"
msgstr ""
-#: sc/inc/globstr.hrc:418
+#: sc/inc/globstr.hrc:419
#, fuzzy
msgctxt "STR_MANAGE_NAMES"
msgid "Manage Names..."
msgstr "Nimm verwalten"
-#: sc/inc/globstr.hrc:419
+#: sc/inc/globstr.hrc:420
msgctxt "STR_HEADER_NAME"
msgid "Name"
msgstr "Numm"
-#: sc/inc/globstr.hrc:420
+#: sc/inc/globstr.hrc:421
msgctxt "STR_HEADER_RANGE_OR_EXPR"
msgid "Range or formula expression"
msgstr ""
-#: sc/inc/globstr.hrc:421
+#: sc/inc/globstr.hrc:422
msgctxt "STR_HEADER_SCOPE"
msgid "Scope"
msgstr ""
-#: sc/inc/globstr.hrc:422
+#: sc/inc/globstr.hrc:423
#, fuzzy
msgctxt "STR_MULTI_SELECT"
msgid "(multiple)"
msgstr "(multipel)"
-#: sc/inc/globstr.hrc:423
+#: sc/inc/globstr.hrc:424
#, fuzzy
msgctxt "STR_GLOBAL_SCOPE"
msgid "Document (Global)"
msgstr "Dokument:"
-#: sc/inc/globstr.hrc:424
+#: sc/inc/globstr.hrc:425
msgctxt "STR_ERR_NAME_EXISTS"
msgid "Invalid name. Already in use for the selected scope."
msgstr ""
-#: sc/inc/globstr.hrc:425
+#: sc/inc/globstr.hrc:426
msgctxt "STR_ERR_NAME_INVALID"
msgid "Invalid name. Only use letters, numbers and underscore."
msgstr ""
-#: sc/inc/globstr.hrc:426
+#: sc/inc/globstr.hrc:427
msgctxt "STR_UNSAVED_EXT_REF"
msgid ""
"This Document contains external references to unsaved documents.\n"
@@ -2094,222 +2099,222 @@ msgid ""
"Do you want to continue?"
msgstr ""
-#: sc/inc/globstr.hrc:427
+#: sc/inc/globstr.hrc:428
msgctxt "STR_CLOSE_WITH_UNSAVED_REFS"
msgid "This Document is referenced by another document and not yet saved. Closing it without saving will result in data loss."
msgstr ""
-#: sc/inc/globstr.hrc:428
+#: sc/inc/globstr.hrc:429
msgctxt "STR_HEADER_RANGE"
msgid "Range"
msgstr "Beräich"
-#: sc/inc/globstr.hrc:429
+#: sc/inc/globstr.hrc:430
msgctxt "STR_HEADER_COND"
msgid "First Condition"
msgstr ""
-#: sc/inc/globstr.hrc:430
+#: sc/inc/globstr.hrc:431
msgctxt "STR_COND_CONDITION"
msgid "Cell value is"
msgstr ""
-#: sc/inc/globstr.hrc:431
+#: sc/inc/globstr.hrc:432
msgctxt "STR_COND_COLORSCALE"
msgid "ColorScale"
msgstr ""
-#: sc/inc/globstr.hrc:432
+#: sc/inc/globstr.hrc:433
msgctxt "STR_COND_DATABAR"
msgid "DataBar"
msgstr ""
-#: sc/inc/globstr.hrc:433
+#: sc/inc/globstr.hrc:434
msgctxt "STR_COND_ICONSET"
msgid "IconSet"
msgstr ""
-#: sc/inc/globstr.hrc:434
+#: sc/inc/globstr.hrc:435
#, fuzzy
msgctxt "STR_COND_BETWEEN"
msgid "between"
msgstr "tëschent"
-#: sc/inc/globstr.hrc:435
+#: sc/inc/globstr.hrc:436
#, fuzzy
msgctxt "STR_COND_NOTBETWEEN"
msgid "not between"
msgstr "net tëschent"
-#: sc/inc/globstr.hrc:436
+#: sc/inc/globstr.hrc:437
msgctxt "STR_COND_UNIQUE"
msgid "unique"
msgstr ""
-#: sc/inc/globstr.hrc:437
+#: sc/inc/globstr.hrc:438
msgctxt "STR_COND_DUPLICATE"
msgid "duplicate"
msgstr ""
-#: sc/inc/globstr.hrc:438
+#: sc/inc/globstr.hrc:439
#, fuzzy
msgctxt "STR_COND_FORMULA"
msgid "Formula is"
msgstr "Formellen"
-#: sc/inc/globstr.hrc:439
+#: sc/inc/globstr.hrc:440
msgctxt "STR_COND_TOP10"
msgid "Top Elements"
msgstr ""
-#: sc/inc/globstr.hrc:440
+#: sc/inc/globstr.hrc:441
msgctxt "STR_COND_BOTTOM10"
msgid "Bottom Elements"
msgstr ""
-#: sc/inc/globstr.hrc:441
+#: sc/inc/globstr.hrc:442
msgctxt "STR_COND_TOP_PERCENT"
msgid "Top Percent"
msgstr ""
-#: sc/inc/globstr.hrc:442
+#: sc/inc/globstr.hrc:443
msgctxt "STR_COND_DATE"
msgid "Date is"
msgstr ""
-#: sc/inc/globstr.hrc:443
+#: sc/inc/globstr.hrc:444
msgctxt "STR_COND_BOTTOM_PERCENT"
msgid "Bottom Percent"
msgstr ""
-#: sc/inc/globstr.hrc:444
+#: sc/inc/globstr.hrc:445
msgctxt "STR_COND_ABOVE_AVERAGE"
msgid "Above Average"
msgstr ""
-#: sc/inc/globstr.hrc:445
+#: sc/inc/globstr.hrc:446
msgctxt "STR_COND_BELOW_AVERAGE"
msgid "Below Average"
msgstr ""
-#: sc/inc/globstr.hrc:446
+#: sc/inc/globstr.hrc:447
msgctxt "STR_COND_ABOVE_EQUAL_AVERAGE"
msgid "Above or equal Average"
msgstr ""
-#: sc/inc/globstr.hrc:447
+#: sc/inc/globstr.hrc:448
msgctxt "STR_COND_BELOW_EQUAL_AVERAGE"
msgid "Below or equal Average"
msgstr ""
-#: sc/inc/globstr.hrc:448
+#: sc/inc/globstr.hrc:449
msgctxt "STR_COND_ERROR"
msgid "an Error code"
msgstr ""
-#: sc/inc/globstr.hrc:449
+#: sc/inc/globstr.hrc:450
msgctxt "STR_COND_NOERROR"
msgid "not an Error code"
msgstr ""
-#: sc/inc/globstr.hrc:450
+#: sc/inc/globstr.hrc:451
#, fuzzy
msgctxt "STR_COND_BEGINS_WITH"
msgid "Begins with"
msgstr "Fänkt u mat"
-#: sc/inc/globstr.hrc:451
+#: sc/inc/globstr.hrc:452
#, fuzzy
msgctxt "STR_COND_ENDS_WITH"
msgid "Ends with"
msgstr "Hält op mat"
-#: sc/inc/globstr.hrc:452
+#: sc/inc/globstr.hrc:453
msgctxt "STR_COND_CONTAINS"
msgid "Contains"
msgstr ""
-#: sc/inc/globstr.hrc:453
+#: sc/inc/globstr.hrc:454
msgctxt "STR_COND_NOT_CONTAINS"
msgid "Not Contains"
msgstr ""
-#: sc/inc/globstr.hrc:454
+#: sc/inc/globstr.hrc:455
msgctxt "STR_COND_TODAY"
msgid "today"
msgstr ""
-#: sc/inc/globstr.hrc:455
+#: sc/inc/globstr.hrc:456
msgctxt "STR_COND_YESTERDAY"
msgid "yesterday"
msgstr ""
-#: sc/inc/globstr.hrc:456
+#: sc/inc/globstr.hrc:457
msgctxt "STR_COND_TOMORROW"
msgid "tomorrow"
msgstr ""
-#: sc/inc/globstr.hrc:457
+#: sc/inc/globstr.hrc:458
msgctxt "STR_COND_LAST7DAYS"
msgid "in the last 7 days"
msgstr ""
-#: sc/inc/globstr.hrc:458
+#: sc/inc/globstr.hrc:459
msgctxt "STR_COND_THISWEEK"
msgid "this week"
msgstr ""
-#: sc/inc/globstr.hrc:459
+#: sc/inc/globstr.hrc:460
msgctxt "STR_COND_LASTWEEK"
msgid "last week"
msgstr ""
-#: sc/inc/globstr.hrc:460
+#: sc/inc/globstr.hrc:461
msgctxt "STR_COND_NEXTWEEK"
msgid "next week"
msgstr ""
-#: sc/inc/globstr.hrc:461
+#: sc/inc/globstr.hrc:462
msgctxt "STR_COND_THISMONTH"
msgid "this month"
msgstr ""
-#: sc/inc/globstr.hrc:462
+#: sc/inc/globstr.hrc:463
msgctxt "STR_COND_LASTMONTH"
msgid "last month"
msgstr ""
-#: sc/inc/globstr.hrc:463
+#: sc/inc/globstr.hrc:464
msgctxt "STR_COND_NEXTMONTH"
msgid "next month"
msgstr ""
-#: sc/inc/globstr.hrc:464
+#: sc/inc/globstr.hrc:465
msgctxt "STR_COND_THISYEAR"
msgid "this year"
msgstr ""
-#: sc/inc/globstr.hrc:465
+#: sc/inc/globstr.hrc:466
msgctxt "STR_COND_LASTYEAR"
msgid "last year"
msgstr ""
-#: sc/inc/globstr.hrc:466
+#: sc/inc/globstr.hrc:467
msgctxt "STR_COND_NEXTYEAR"
msgid "next year"
msgstr ""
-#: sc/inc/globstr.hrc:467
+#: sc/inc/globstr.hrc:468
msgctxt "STR_COND_AND"
msgid "and"
msgstr "an"
-#: sc/inc/globstr.hrc:468
+#: sc/inc/globstr.hrc:469
msgctxt "STR_ERR_CONDFORMAT_PROTECTED"
msgid "Conditional Formats can not be created, deleted or changed in protected sheets."
msgstr ""
-#: sc/inc/globstr.hrc:469
+#: sc/inc/globstr.hrc:470
msgctxt "STR_EDIT_EXISTING_COND_FORMATS"
msgid ""
"The selected cell already contains conditional formatting. You can either edit the existing conditional format or you define a new overlapping conditional format.\n"
@@ -2317,7 +2322,7 @@ msgid ""
" Do you want to edit the existing conditional format?"
msgstr ""
-#: sc/inc/globstr.hrc:470
+#: sc/inc/globstr.hrc:471
msgctxt "STR_QUERY_FORMULA_RECALC_ONLOAD_ODS"
msgid ""
"This document was last saved by an application other than %PRODUCTNAME. Some formula cells may produce different results when recalculated.\n"
@@ -2325,7 +2330,7 @@ msgid ""
"Do you want to recalculate all formula cells in this document now?"
msgstr ""
-#: sc/inc/globstr.hrc:471
+#: sc/inc/globstr.hrc:472
msgctxt "STR_QUERY_FORMULA_RECALC_ONLOAD_XLS"
msgid ""
"This document was last saved by Excel. Some formula cells may produce different results when recalculated.\n"
@@ -2333,80 +2338,80 @@ msgid ""
"Do you want to recalculate all formula cells now?"
msgstr ""
-#: sc/inc/globstr.hrc:472
+#: sc/inc/globstr.hrc:473
msgctxt "STR_NO_INSERT_DELETE_OVER_PIVOT_TABLE"
msgid "You cannot insert or delete cells when the affected range intersects with pivot table."
msgstr ""
-#: sc/inc/globstr.hrc:473
+#: sc/inc/globstr.hrc:474
msgctxt "STR_DPFIELD_GROUP_BY_SECONDS"
msgid "Seconds"
msgstr "Sekonnen"
-#: sc/inc/globstr.hrc:474
+#: sc/inc/globstr.hrc:475
msgctxt "STR_DPFIELD_GROUP_BY_MINUTES"
msgid "Minutes"
msgstr "Minutten"
-#: sc/inc/globstr.hrc:475
+#: sc/inc/globstr.hrc:476
msgctxt "STR_DPFIELD_GROUP_BY_HOURS"
msgid "Hours"
msgstr "Stonnen"
-#: sc/inc/globstr.hrc:476
+#: sc/inc/globstr.hrc:477
msgctxt "STR_DPFIELD_GROUP_BY_DAYS"
msgid "Days"
msgstr "Deeg"
-#: sc/inc/globstr.hrc:477
+#: sc/inc/globstr.hrc:478
#, fuzzy
msgctxt "STR_DPFIELD_GROUP_BY_MONTHS"
msgid "Months"
msgstr "Mount"
-#: sc/inc/globstr.hrc:478
+#: sc/inc/globstr.hrc:479
#, fuzzy
msgctxt "STR_DPFIELD_GROUP_BY_QUARTERS"
msgid "Quarters"
msgstr "Trimester"
-#: sc/inc/globstr.hrc:479
+#: sc/inc/globstr.hrc:480
#, fuzzy
msgctxt "STR_DPFIELD_GROUP_BY_YEARS"
msgid "Years"
msgstr "Joer"
-#: sc/inc/globstr.hrc:480
+#: sc/inc/globstr.hrc:481
msgctxt "STR_INVALIDVAL"
msgid "Invalid target value."
msgstr ""
-#: sc/inc/globstr.hrc:481
+#: sc/inc/globstr.hrc:482
msgctxt "STR_INVALIDVAR"
msgid "Undefined name for variable cell."
msgstr ""
-#: sc/inc/globstr.hrc:482
+#: sc/inc/globstr.hrc:483
msgctxt "STR_INVALIDFORM"
msgid "Undefined name as formula cell."
msgstr ""
-#: sc/inc/globstr.hrc:483
+#: sc/inc/globstr.hrc:484
msgctxt "STR_NOFORMULA"
msgid "Formula cell must contain a formula."
msgstr ""
-#: sc/inc/globstr.hrc:484
+#: sc/inc/globstr.hrc:485
msgctxt "STR_INVALIDINPUT"
msgid "Invalid input."
msgstr ""
-#: sc/inc/globstr.hrc:485
+#: sc/inc/globstr.hrc:486
msgctxt "STR_INVALIDCONDITION"
msgid "Invalid condition."
msgstr ""
-#: sc/inc/globstr.hrc:486
+#: sc/inc/globstr.hrc:487
msgctxt "STR_QUERYREMOVE"
msgid ""
"Should the entry\n"
@@ -2414,134 +2419,134 @@ msgid ""
"be deleted?"
msgstr ""
-#: sc/inc/globstr.hrc:487
+#: sc/inc/globstr.hrc:488
msgctxt "STR_COPYLIST"
msgid "Copy List"
msgstr ""
-#: sc/inc/globstr.hrc:488
+#: sc/inc/globstr.hrc:489
msgctxt "STR_COPYFROM"
msgid "List from"
msgstr ""
-#: sc/inc/globstr.hrc:489
+#: sc/inc/globstr.hrc:490
msgctxt "STR_COPYERR"
msgid "Cells without text have been ignored."
msgstr ""
-#: sc/inc/globstr.hrc:490
+#: sc/inc/globstr.hrc:491
#, c-format
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%s-click to follow hyperlink:"
msgstr ""
-#: sc/inc/globstr.hrc:491
+#: sc/inc/globstr.hrc:492
msgctxt "STR_CLICKHYPERLINK"
msgid "click to open hyperlink:"
msgstr ""
-#: sc/inc/globstr.hrc:492
+#: sc/inc/globstr.hrc:493
msgctxt "STR_PRINT_PREVIEW_NODATA"
msgid "No Data"
msgstr ""
-#: sc/inc/globstr.hrc:493
+#: sc/inc/globstr.hrc:494
msgctxt "STR_PRINT_PREVIEW_EMPTY_RANGE"
msgid "Print Range Empty"
msgstr ""
-#: sc/inc/globstr.hrc:494
+#: sc/inc/globstr.hrc:495
msgctxt "STR_UNDO_CONDFORMAT"
msgid "Conditional Format"
msgstr ""
-#: sc/inc/globstr.hrc:495
+#: sc/inc/globstr.hrc:496
msgctxt "STR_UNDO_CONDFORMAT_LIST"
msgid "Conditional Formats"
msgstr ""
-#: sc/inc/globstr.hrc:496
+#: sc/inc/globstr.hrc:497
msgctxt "STR_UNDO_FORMULA_TO_VALUE"
msgid "Convert Formula To Value"
msgstr ""
-#: sc/inc/globstr.hrc:497
+#: sc/inc/globstr.hrc:498
msgctxt "STR_UNQUOTED_STRING"
msgid "Strings without quotes are interpreted as column/row labels."
msgstr ""
-#: sc/inc/globstr.hrc:498
+#: sc/inc/globstr.hrc:499
msgctxt "STR_ENTER_VALUE"
msgid "Enter a value!"
msgstr ""
-#: sc/inc/globstr.hrc:499
+#: sc/inc/globstr.hrc:500
msgctxt "STR_TABLE_COUNT"
msgid "Sheet %1 of %2"
msgstr ""
-#: sc/inc/globstr.hrc:500
+#: sc/inc/globstr.hrc:501
msgctxt "STR_FUNCTIONS_FOUND"
msgid "%1 and %2 more"
msgstr ""
-#: sc/inc/globstr.hrc:501
+#: sc/inc/globstr.hrc:502
msgctxt "STR_GENERAL"
msgid "General"
msgstr "Allgemeng"
-#: sc/inc/globstr.hrc:502
+#: sc/inc/globstr.hrc:503
msgctxt "STR_NUMBER"
msgid "Number"
msgstr "Nummer"
-#: sc/inc/globstr.hrc:503
+#: sc/inc/globstr.hrc:504
msgctxt "STR_PERCENT"
msgid "Percent"
msgstr ""
-#: sc/inc/globstr.hrc:504
+#: sc/inc/globstr.hrc:505
msgctxt "STR_CURRENCY"
msgid "Currency"
msgstr "Währung"
-#: sc/inc/globstr.hrc:505
+#: sc/inc/globstr.hrc:506
msgctxt "STR_DATE"
msgid "Date"
msgstr "Datum"
-#: sc/inc/globstr.hrc:506
+#: sc/inc/globstr.hrc:507
msgctxt "STR_TIME"
msgid "Time"
msgstr "Zäit"
-#: sc/inc/globstr.hrc:507
+#: sc/inc/globstr.hrc:508
msgctxt "STR_SCIENTIFIC"
msgid "Scientific"
msgstr ""
-#: sc/inc/globstr.hrc:508
+#: sc/inc/globstr.hrc:509
#, fuzzy
msgctxt "STR_FRACTION"
msgid "Fraction"
msgstr "~Funktioun"
-#: sc/inc/globstr.hrc:509
+#: sc/inc/globstr.hrc:510
msgctxt "STR_BOOLEAN_VALUE"
msgid "Boolean Value"
msgstr ""
-#: sc/inc/globstr.hrc:510
+#: sc/inc/globstr.hrc:511
msgctxt "STR_TEXT"
msgid "Text"
msgstr "Text"
-#: sc/inc/globstr.hrc:511
+#: sc/inc/globstr.hrc:512
msgctxt "STR_QUERY_PIVOTTABLE_DELTAB"
msgid "The selected sheet(s) contain source data of related pivot tables that will be lost. Are you sure you want to delete the selected sheet(s)?"
msgstr ""
-#: sc/inc/globstr.hrc:512
+#: sc/inc/globstr.hrc:513
msgctxt "STR_ERR_NAME_INVALID_CELL_REF"
msgid "Invalid name. Reference to a cell, or a range of cells not allowed."
msgstr ""
@@ -10620,7 +10625,7 @@ msgstr "Modus"
#: sc/inc/scfuncs.hrc:3010
msgctxt "SC_OPCODE_T_TEST"
-msgid "Mode specifies the number of distribution tails to return. 1= one-tailed, 2 = two-tailed distribution"
+msgid "Mode specifies the number of distribution tails to return. 1 = one-tailed, 2 = two-tailed distribution"
msgstr ""
#: sc/inc/scfuncs.hrc:3011
@@ -10665,7 +10670,7 @@ msgstr "Modus"
#: sc/inc/scfuncs.hrc:3024
msgctxt "SC_OPCODE_T_TEST_MS"
-msgid "Mode specifies the number of distribution tails to return. 1= one-tailed, 2 = two-tailed distribution"
+msgid "Mode specifies the number of distribution tails to return. 1 = one-tailed, 2 = two-tailed distribution"
msgstr ""
#: sc/inc/scfuncs.hrc:3025
@@ -18387,22 +18392,22 @@ msgctxt "mergecellsdialog|MergeCellsDialog"
msgid "Merge Cells"
msgstr ""
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:81
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:84
msgctxt "mergecellsdialog|label"
msgid "Some cells are not empty."
msgstr ""
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:96
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:99
msgctxt "mergecellsdialog|move-cells-radio"
msgid "Move the contents of the hidden cells into the first cell"
msgstr ""
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:112
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:115
msgctxt "mergecellsdialog|empty-cells-radio"
msgid "Empty the contents of the hidden cells"
msgstr ""
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:128
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:131
msgctxt "mergecellsdialog|keep-content-radio"
msgid "Keep the contents of the hidden cells"
msgstr ""
diff --git a/source/lb/sd/messages.po b/source/lb/sd/messages.po
index 6ee8fdb9f9f..df999b6dc21 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+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"
@@ -13,173 +13,173 @@ msgstr ""
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-#: sd/inc/DocumentRenderer.hrc:29
+#: sd/inc/DocumentRenderer.hrc:27
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Slides"
msgstr "~Sliden"
-#: sd/inc/DocumentRenderer.hrc:30
+#: sd/inc/DocumentRenderer.hrc:28
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Handouts"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:31
+#: sd/inc/DocumentRenderer.hrc:29
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Notes"
msgstr "Noten"
-#: sd/inc/DocumentRenderer.hrc:32
+#: sd/inc/DocumentRenderer.hrc:30
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Outline"
msgstr "Konturen"
-#: sd/inc/DocumentRenderer.hrc:37
+#: sd/inc/DocumentRenderer.hrc:35
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "According to layout"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:38
+#: sd/inc/DocumentRenderer.hrc:36
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "1"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:39
+#: sd/inc/DocumentRenderer.hrc:37
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "2"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:40
+#: sd/inc/DocumentRenderer.hrc:38
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "3"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:41
+#: sd/inc/DocumentRenderer.hrc:39
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "4"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:42
+#: sd/inc/DocumentRenderer.hrc:40
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "6"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:43
+#: sd/inc/DocumentRenderer.hrc:41
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "9"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:48
+#: sd/inc/DocumentRenderer.hrc:46
msgctxt "STR_IMPRESS_PRINT_UI_ORDER_CHOICES"
msgid "Left to right, then down"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:49
+#: sd/inc/DocumentRenderer.hrc:47
msgctxt "STR_IMPRESS_PRINT_UI_ORDER_CHOICES"
msgid "Top to bottom, then right"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:54
+#: sd/inc/DocumentRenderer.hrc:52
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Original colors"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:55
+#: sd/inc/DocumentRenderer.hrc:53
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Grayscale"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:56
+#: sd/inc/DocumentRenderer.hrc:54
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Black & white"
msgstr "Schwaarz & wäiss"
-#: sd/inc/DocumentRenderer.hrc:61
+#: sd/inc/DocumentRenderer.hrc:59
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Original size"
msgstr "Original Gréisst"
-#: sd/inc/DocumentRenderer.hrc:62
+#: sd/inc/DocumentRenderer.hrc:60
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Fit to printable page"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:63
+#: sd/inc/DocumentRenderer.hrc:61
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Distribute on multiple sheets of paper"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:64
+#: sd/inc/DocumentRenderer.hrc:62
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Tile sheet of paper with repeated slides"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:69
+#: sd/inc/DocumentRenderer.hrc:67
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Original size"
msgstr "Original Gréisst"
-#: sd/inc/DocumentRenderer.hrc:70
+#: sd/inc/DocumentRenderer.hrc:68
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Fit to printable page"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:71
+#: sd/inc/DocumentRenderer.hrc:69
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Distribute on multiple sheets of paper"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:72
+#: sd/inc/DocumentRenderer.hrc:70
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Tile sheet of paper with repeated pages"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:77
+#: sd/inc/DocumentRenderer.hrc:75
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "All pages"
msgstr "All Säiten"
-#: sd/inc/DocumentRenderer.hrc:78
+#: sd/inc/DocumentRenderer.hrc:76
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "Front sides / right pages"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:79
+#: sd/inc/DocumentRenderer.hrc:77
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "Back sides / left pages"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:84
+#: sd/inc/DocumentRenderer.hrc:82
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~All slides"
msgstr "~All Sliden"
-#: sd/inc/DocumentRenderer.hrc:85
+#: sd/inc/DocumentRenderer.hrc:83
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~Slides"
msgstr "~Sliden"
-#: sd/inc/DocumentRenderer.hrc:86
+#: sd/inc/DocumentRenderer.hrc:84
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Se~lection"
msgstr "Auswiel"
-#: sd/inc/DocumentRenderer.hrc:91
+#: sd/inc/DocumentRenderer.hrc:89
#, fuzzy
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~All pages"
msgstr "~All Säiten"
-#: sd/inc/DocumentRenderer.hrc:92
+#: sd/inc/DocumentRenderer.hrc:90
#, fuzzy
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Pa~ges"
msgstr "Säiten"
-#: sd/inc/DocumentRenderer.hrc:93
+#: sd/inc/DocumentRenderer.hrc:91
#, fuzzy
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Se~lection"
diff --git a/source/lb/svx/messages.po b/source/lb/svx/messages.po
index f6804eef7a9..bc70d27b7b7 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: 2018-05-16 16:53+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+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"
@@ -5318,7 +5318,7 @@ msgstr ""
#: svx/uiconfig/ui/safemodedialog.ui:432
msgctxt "safemodedialog|btn_create_zip"
-msgid "Create Zip Archive from User Profile"
+msgid "Archive User Profile"
msgstr ""
#: svx/uiconfig/ui/safemodedialog.ui:445
@@ -8979,9 +8979,9 @@ msgid "Red"
msgstr "Rout"
#: include/svx/strings.hrc:565
-msgctxt "RID_SVXSTR_COLOR_VIOLET"
-msgid "Violet"
-msgstr ""
+msgctxt "RID_SVXSTR_COLOR_MAGENTA"
+msgid "Magenta"
+msgstr "Magenta"
#: include/svx/strings.hrc:566
msgctxt "RID_SVXSTR_COLOR_PURPLE"
@@ -9046,8 +9046,8 @@ msgid "Light Red"
msgstr "Hellrout"
#: include/svx/strings.hrc:579
-msgctxt "RID_SVXSTR_COLOR_LIGHTVIOLET"
-msgid "Light Violet"
+msgctxt "RID_SVXSTR_COLOR_LIGHTMAGENTA"
+msgid "Light Magenta"
msgstr ""
#: include/svx/strings.hrc:580
@@ -9112,8 +9112,8 @@ msgid "Dark Red"
msgstr ""
#: include/svx/strings.hrc:593
-msgctxt "RID_SVXSTR_COLOR_DARKVIOLET1"
-msgid "Dark Violet"
+msgctxt "RID_SVXSTR_COLOR_DARKMAGENTA"
+msgid "Dark Magenta"
msgstr ""
#: include/svx/strings.hrc:594
@@ -9148,55 +9148,55 @@ msgstr ""
#. Elements of the Tonal color palette
#: include/svx/strings.hrc:601
+msgctxt "RID_SVXSTR_COLOR_VIOLET"
+msgid "Violet"
+msgstr ""
+
+#: include/svx/strings.hrc:602
msgctxt "RID_SVXSTR_COLOR_VIOLET_OUG"
msgid "Violet (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:602
+#: include/svx/strings.hrc:603
msgctxt "RID_SVXSTR_COLOR_BLUE_OUG"
msgid "Blue (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:603
+#: include/svx/strings.hrc:604
msgctxt "RID_SVXSTR_COLOR_AZURE_OUG"
msgid "Azure (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:604
+#: include/svx/strings.hrc:605
msgctxt "RID_SVXSTR_COLOR_SPRINGGREEN_OUG"
msgid "Spring Green (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:605
+#: include/svx/strings.hrc:606
msgctxt "RID_SVXSTR_COLOR_GREEN_OUG"
msgid "Green (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:606
+#: include/svx/strings.hrc:607
msgctxt "RID_SVXSTR_COLOR_CHARTREUSEGREEN_OUG"
msgid "Chartreuse Green (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:607
+#: include/svx/strings.hrc:608
msgctxt "RID_SVXSTR_COLOR_ORANGE_OUG"
msgid "Orange (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:608
+#: include/svx/strings.hrc:609
msgctxt "RID_SVXSTR_COLOR_RED_OUG"
msgid "Red (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:609
+#: include/svx/strings.hrc:610
msgctxt "RID_SVXSTR_COLOR_ROSE_OUG"
msgid "Rose (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:610
-msgctxt "RID_SVXSTR_COLOR_MAGENTA"
-msgid "Magenta"
-msgstr "Magenta"
-
#: include/svx/strings.hrc:611
msgctxt "RID_SVXSTR_COLOR_AZURE"
msgid "Azure"
@@ -12340,12 +12340,12 @@ msgstr ""
#: include/svx/strings.hrc:1273
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_6"
-msgid "Check mark bullets"
+msgid "Cross mark bullets"
msgstr ""
#: include/svx/strings.hrc:1274
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_7"
-msgid "Tick mark bullets"
+msgid "Check mark bullets"
msgstr ""
#: include/svx/strings.hrc:1275
diff --git a/source/lb/sw/messages.po b/source/lb/sw/messages.po
index a0124eb6df3..f42560e8997 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: 2018-05-22 13:17+0200\n"
+"POT-Creation-Date: 2018-06-12 14:41+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"
@@ -1203,12 +1203,12 @@ msgstr ""
#: sw/inc/strings.hrc:172
msgctxt "STR_POOLCOLL_TOX_ILLUSH"
-msgid "Illustration Index Heading"
+msgid "Figure Index Heading"
msgstr ""
#: sw/inc/strings.hrc:173
msgctxt "STR_POOLCOLL_TOX_ILLUS1"
-msgid "Illustration Index 1"
+msgid "Figure Index 1"
msgstr ""
#: sw/inc/strings.hrc:174
@@ -3696,7 +3696,7 @@ msgstr ""
#: sw/inc/strings.hrc:672
msgctxt "STR_TOX_ILL"
-msgid "Illustration Index"
+msgid "Table of Figures"
msgstr ""
#: sw/inc/strings.hrc:673
@@ -9566,76 +9566,76 @@ msgctxt "footnotepage|label5"
msgid "Continuation Notice"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:49
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:55
msgctxt "footnotesendnotestabpage|ftnntnum"
msgid "_Restart numbering"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:91
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:93
msgctxt "footnotesendnotestabpage|ftnoffset_label"
msgid "_Start at:"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:112
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:111
msgctxt "footnotesendnotestabpage|ftnntnumfmt"
msgid "Custom _format"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:155
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:150
#, fuzzy
msgctxt "footnotesendnotestabpage|ftnsuffix_label"
msgid "Aft_er:"
msgstr "~Duerno "
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:199
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:188
#, fuzzy
msgctxt "footnotesendnotestabpage|ftnprefix_label"
msgid "Be_fore:"
msgstr "~Virdrun"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:228
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:212
msgctxt "footnotesendnotestabpage|ftnntattextend"
msgid "Collec_t at end of text"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:252
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:234
msgctxt "footnotesendnotestabpage|label1"
msgid "Footnotes"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:289
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:271
msgctxt "footnotesendnotestabpage|endntattextend"
msgid "C_ollect at end of section"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:315
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:295
msgctxt "footnotesendnotestabpage|endntnum"
msgid "_Restart numbering"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:357
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:333
msgctxt "footnotesendnotestabpage|endoffset_label"
msgid "_Start at:"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:378
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:351
msgctxt "footnotesendnotestabpage|endntnumfmt"
msgid "_Custom format"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:421
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:390
#, fuzzy
msgctxt "footnotesendnotestabpage|endsuffix_label"
msgid "Aft_er:"
msgstr "~Duerno "
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:465
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:428
#, fuzzy
msgctxt "footnotesendnotestabpage|endprefix_label"
msgid "Be_fore:"
msgstr "~Virdrun"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:500
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:458
msgctxt "footnotesendnotestabpage|label2"
msgid "Endnotes"
msgstr ""
@@ -9667,29 +9667,29 @@ msgctxt "formatsectiondialog|notes"
msgid "Footnotes/Endnotes"
msgstr ""
-#: sw/uiconfig/swriter/ui/formattablepage.ui:63
+#: sw/uiconfig/swriter/ui/formattablepage.ui:77
#, fuzzy
msgctxt "formattablepage|nameft"
msgid "_Name"
msgstr "Numm"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:79
+#: sw/uiconfig/swriter/ui/formattablepage.ui:91
#, fuzzy
msgctxt "formattablepage|widthft"
msgid "W_idth"
msgstr "Breet"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:110
+#: sw/uiconfig/swriter/ui/formattablepage.ui:120
msgctxt "formattablepage|relwidth"
msgid "Relati_ve"
msgstr ""
-#: sw/uiconfig/swriter/ui/formattablepage.ui:155
+#: sw/uiconfig/swriter/ui/formattablepage.ui:160
msgctxt "formattablepage|label45"
msgid "Properties"
msgstr "Eegeschaften"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:194
+#: sw/uiconfig/swriter/ui/formattablepage.ui:195
#, fuzzy
msgctxt "formattablepage|leftft"
msgid "Lef_t"
@@ -9701,69 +9701,69 @@ msgctxt "formattablepage|rightft"
msgid "Ri_ght"
msgstr "Riets"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:228
+#: sw/uiconfig/swriter/ui/formattablepage.ui:226
#, fuzzy
msgctxt "formattablepage|aboveft"
msgid "_Above"
msgstr "Am Ufank"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:245
+#: sw/uiconfig/swriter/ui/formattablepage.ui:241
#, fuzzy
msgctxt "formattablepage|belowft"
msgid "_Below"
msgstr "Am Enn"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:320
+#: sw/uiconfig/swriter/ui/formattablepage.ui:311
msgctxt "formattablepage|label46"
msgid "Spacing"
msgstr "Ofstand "
-#: sw/uiconfig/swriter/ui/formattablepage.ui:362
+#: sw/uiconfig/swriter/ui/formattablepage.ui:349
#, fuzzy
msgctxt "formattablepage|full"
msgid "A_utomatic"
msgstr "Automatesch"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:380
+#: sw/uiconfig/swriter/ui/formattablepage.ui:365
#, fuzzy
msgctxt "formattablepage|left"
msgid "_Left"
msgstr "Lénks"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:398
+#: sw/uiconfig/swriter/ui/formattablepage.ui:381
msgctxt "formattablepage|fromleft"
msgid "_From left"
msgstr ""
-#: sw/uiconfig/swriter/ui/formattablepage.ui:416
+#: sw/uiconfig/swriter/ui/formattablepage.ui:397
#, fuzzy
msgctxt "formattablepage|right"
msgid "R_ight"
msgstr "Riets"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:435
+#: sw/uiconfig/swriter/ui/formattablepage.ui:413
#, fuzzy
msgctxt "formattablepage|center"
msgid "_Center"
msgstr "Mëtt"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:453
+#: sw/uiconfig/swriter/ui/formattablepage.ui:429
#, fuzzy
msgctxt "formattablepage|free"
msgid "_Manual"
msgstr "Manuell"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:478
+#: sw/uiconfig/swriter/ui/formattablepage.ui:452
msgctxt "formattablepage|label43"
msgid "Alignment"
msgstr "Aus~riichten"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:522
+#: sw/uiconfig/swriter/ui/formattablepage.ui:491
msgctxt "formattablepage|label53"
msgid "Text _direction"
msgstr ""
-#: sw/uiconfig/swriter/ui/formattablepage.ui:553
+#: sw/uiconfig/swriter/ui/formattablepage.ui:519
#, fuzzy
msgctxt "formattablepage|label44"
msgid "Properties "
@@ -10145,23 +10145,28 @@ msgctxt "headerfootermenu|insert_pagenumber"
msgid "Insert Page Number"
msgstr ""
-#: sw/uiconfig/swriter/ui/indentpage.ui:52
+#: sw/uiconfig/swriter/ui/headerfootermenu.ui:42
+msgctxt "headerfootermenu|insert_pagecount"
+msgid "Insert Page Count"
+msgstr ""
+
+#: sw/uiconfig/swriter/ui/indentpage.ui:57
msgctxt "indentpage|label1"
msgid "_Before section"
msgstr ""
-#: sw/uiconfig/swriter/ui/indentpage.ui:67
+#: sw/uiconfig/swriter/ui/indentpage.ui:71
msgctxt "indentpage|label3"
msgid "_After section"
msgstr ""
-#: sw/uiconfig/swriter/ui/indentpage.ui:113
+#: sw/uiconfig/swriter/ui/indentpage.ui:115
#, fuzzy
msgctxt "indentpage|label2"
msgid "Indent"
msgstr "Arécklen"
-#: sw/uiconfig/swriter/ui/indentpage.ui:142
+#: sw/uiconfig/swriter/ui/indentpage.ui:155
msgctxt "indentpage|preview-atkobject"
msgid "Example"
msgstr "Beispill"
@@ -13818,7 +13823,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:68
msgctxt "optcompatpage|format"
-msgid "MS Word-compatible trailing blanks"
+msgid "Word-compatible trailing blanks"
msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:69
@@ -13828,7 +13833,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:70
msgctxt "optcompatpage|format"
-msgid "A database field (e.g., MailMerge) with empty value hides its paragraph"
+msgid "Hide paragraphs of database fields (e.g., mail merge) with an empty value"
msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:71
@@ -16646,131 +16651,131 @@ msgctxt "tableproperties|background"
msgid "Background"
msgstr "Hannergrond"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:25
-msgctxt "tabletextflowpage|liststore1"
-msgid "Horizontal"
-msgstr "Horizontal"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:29
-#, fuzzy
-msgctxt "tabletextflowpage|liststore1"
-msgid "Vertical"
-msgstr "~Vertikal"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:33
-msgctxt "tabletextflowpage|liststore1"
-msgid "Use superordinate object settings"
-msgstr ""
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:47
-msgctxt "tabletextflowpage|liststore2"
-msgid "Top"
-msgstr "Uewen"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:51
-#, fuzzy
-msgctxt "tabletextflowpage|liststore2"
-msgid "Centered"
-msgstr "~Zentréiert"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:55
-msgctxt "tabletextflowpage|liststore2"
-msgid "Bottom"
-msgstr "Ënnen"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:97
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:53
msgctxt "tabletextflowpage|break"
msgid "_Break"
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:112
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:68
#, fuzzy
msgctxt "tabletextflowpage|page"
msgid "_Page"
msgstr "Säit"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:132
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:87
#, fuzzy
msgctxt "tabletextflowpage|column"
msgid "Col_umn"
msgstr "Kolonn"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:151
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:106
#, fuzzy
msgctxt "tabletextflowpage|before"
msgid "Be_fore"
msgstr "~Virdrun"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:171
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:125
#, fuzzy
msgctxt "tabletextflowpage|after"
msgid "_After"
msgstr "~Duerno "
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:203
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:158
msgctxt "tabletextflowpage|pagestyle"
msgid "With Page St_yle"
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:224
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:177
#, fuzzy
msgctxt "tabletextflowpage|pagenoft"
msgid "Page _number"
msgstr "Säitennummeréierung"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:257
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:213
msgctxt "tabletextflowpage|pagestylelb-atkobject"
msgid "With Page Style"
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:274
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:230
msgctxt "tabletextflowpage|split"
msgid "Allow _table to split across pages and columns"
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:289
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:245
msgctxt "tabletextflowpage|splitrow"
msgid "Allow row to break a_cross pages and columns"
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:306
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:262
#, fuzzy
msgctxt "tabletextflowpage|keep"
msgid "_Keep with next paragraph"
msgstr "Paragraphen zesummenhalen"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:328
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:284
msgctxt "tabletextflowpage|label40"
msgid "Text _orientation"
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:361
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:298
+msgctxt "tabletextflowpage|liststore1"
+msgid "Horizontal"
+msgstr "Horizontal"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:299
+#, fuzzy
+msgctxt "tabletextflowpage|liststore1"
+msgid "Vertical"
+msgstr "~Vertikal"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:300
+msgctxt "tabletextflowpage|liststore1"
+msgid "Use superordinate object settings"
+msgstr ""
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:321
msgctxt "tabletextflowpage|headline"
msgid "R_epeat heading"
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:383
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:343
msgctxt "tabletextflowpage|label38"
msgid "The first "
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:396
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:356
#, fuzzy
msgctxt "tabletextflowpage|label39"
msgid "rows"
msgstr "Zeil"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:434
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:395
msgctxt "tabletextflowpage|label35"
msgid "Text Flow"
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:467
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:428
msgctxt "tabletextflowpage|label41"
msgid "_Vertical alignment"
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:495
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:442
+msgctxt "tabletextflowpage|liststore2"
+msgid "Top"
+msgstr "Uewen"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:443
+#, fuzzy
+msgctxt "tabletextflowpage|liststore2"
+msgid "Centered"
+msgstr "~Zentréiert"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:444
+msgctxt "tabletextflowpage|liststore2"
+msgid "Bottom"
+msgstr "Ënnen"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:460
msgctxt "tabletextflowpage|label36"
msgid "Alignment"
msgstr "Aus~riichten"
@@ -17585,7 +17590,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/tocindexpage.ui:58
msgctxt "tocindexpage|liststore1"
-msgid "Illustration Index"
+msgid "Table of Figures"
msgstr ""
#: sw/uiconfig/swriter/ui/tocindexpage.ui:62
diff --git a/source/lb/writerperfect/messages.po b/source/lb/writerperfect/messages.po
index 4f8d19e9756..fdb9f3ad46a 100644
--- a/source/lb/writerperfect/messages.po
+++ b/source/lb/writerperfect/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-16 16:54+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+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"
@@ -63,99 +63,99 @@ msgctxt "exportepub|generalft"
msgid "General"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:122
+#: writerperfect/uiconfig/ui/exportepub.ui:121
#, fuzzy
msgctxt "exportepub|versionft"
msgid "Version:"
msgstr "~Versioun:"
-#: writerperfect/uiconfig/ui/exportepub.ui:139
+#: writerperfect/uiconfig/ui/exportepub.ui:138
msgctxt "exportepub|epub3"
msgid "EPUB 3.0"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:140
+#: writerperfect/uiconfig/ui/exportepub.ui:139
msgctxt "exportepub|epub2"
msgid "EPUB 2.0"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:175
+#: writerperfect/uiconfig/ui/exportepub.ui:174
msgctxt "exportepub|splitft"
msgid "Split method:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:192
+#: writerperfect/uiconfig/ui/exportepub.ui:191
#, fuzzy
msgctxt "exportepub|splitpage"
msgid "Page break"
msgstr "Seitenum~bruch"
-#: writerperfect/uiconfig/ui/exportepub.ui:193
+#: writerperfect/uiconfig/ui/exportepub.ui:192
msgctxt "exportepub|splitheading"
msgid "Heading"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:228
+#: writerperfect/uiconfig/ui/exportepub.ui:227
msgctxt "exportepub|layoutft"
msgid "Layout method:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:245
+#: writerperfect/uiconfig/ui/exportepub.ui:244
msgctxt "exportepub|layoutreflowable"
msgid "Reflowable"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:246
+#: writerperfect/uiconfig/ui/exportepub.ui:245
msgctxt "exportepub|layoutfixed"
msgid "Fixed"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:281
+#: writerperfect/uiconfig/ui/exportepub.ui:280
msgctxt "exportepub|coverimageft"
msgid "Custom cover image:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:311
+#: writerperfect/uiconfig/ui/exportepub.ui:310
msgctxt "exportepub|coverbutton"
msgid "Browse..."
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:355
+#: writerperfect/uiconfig/ui/exportepub.ui:354
msgctxt "exportepub|mediadirft"
msgid "Custom media directory:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:385
+#: writerperfect/uiconfig/ui/exportepub.ui:384
msgctxt "exportepub|mediabutton"
msgid "Browse..."
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:429
+#: writerperfect/uiconfig/ui/exportepub.ui:428
msgctxt "exportepub|metadataft"
msgid "Metadata"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:470
+#: writerperfect/uiconfig/ui/exportepub.ui:468
msgctxt "exportepub|identifierft"
msgid "Identifier:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:485
+#: writerperfect/uiconfig/ui/exportepub.ui:483
msgctxt "exportepub|titleft"
msgid "Title:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:511
+#: writerperfect/uiconfig/ui/exportepub.ui:509
msgctxt "exportepub|authorft"
msgid "Author:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:537
+#: writerperfect/uiconfig/ui/exportepub.ui:535
msgctxt "exportepub|languageft"
msgid "Language:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:563
+#: writerperfect/uiconfig/ui/exportepub.ui:561
msgctxt "exportepub|dateft"
msgid "Date:"
msgstr ""
diff --git a/source/lo/cui/messages.po b/source/lo/cui/messages.po
index 6bcbd6d31c8..02dda394214 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+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"
@@ -10371,107 +10371,107 @@ msgctxt "positionsizedialog|PositionAndSizeDialog"
msgid "Position and Size"
msgstr "ຕຳແໜ່ງແລະ~ຂະໜາດ..."
-#: cui/uiconfig/ui/positionsizedialog.ui:107
+#: cui/uiconfig/ui/positionsizedialog.ui:136
#, fuzzy
msgctxt "positionsizedialog|RID_SVXPAGE_POSITION_SIZE"
msgid "Position and Size"
msgstr "ຕຳແໜ່ງແລະ~ຂະໜາດ..."
-#: cui/uiconfig/ui/positionsizedialog.ui:129
+#: cui/uiconfig/ui/positionsizedialog.ui:182
#, fuzzy
msgctxt "positionsizedialog|RID_SVXPAGE_SWPOSSIZE"
msgid "Position and Size"
msgstr "ຕຳແໜ່ງແລະ~ຂະໜາດ..."
-#: cui/uiconfig/ui/positionsizedialog.ui:152
+#: cui/uiconfig/ui/positionsizedialog.ui:229
msgctxt "positionsizedialog|RID_SVXPAGE_ANGLE"
msgid "Rotation"
msgstr "ການໝຸນ"
-#: cui/uiconfig/ui/positionsizedialog.ui:175
+#: cui/uiconfig/ui/positionsizedialog.ui:276
msgctxt "positionsizedialog|RID_SVXPAGE_SLANT"
msgid "Slant & Corner Radius"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:40
+#: cui/uiconfig/ui/possizetabpage.ui:61
#, fuzzy
msgctxt "possizetabpage|FT_POS_X"
msgid "Position _X:"
msgstr "ຕໍ່າແໜ່ງ"
-#: cui/uiconfig/ui/possizetabpage.ui:56
+#: cui/uiconfig/ui/possizetabpage.ui:75
#, fuzzy
msgctxt "possizetabpage|FT_POS_Y"
msgid "Position _Y:"
msgstr "ຕໍ່າແໜ່ງ"
-#: cui/uiconfig/ui/possizetabpage.ui:110
+#: cui/uiconfig/ui/possizetabpage.ui:128
msgctxt "possizetabpage|FT_POSREFERENCE"
msgid "_Base point:"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:148
+#: cui/uiconfig/ui/possizetabpage.ui:182
#, fuzzy
msgctxt "possizetabpage|label1"
msgid "Position"
msgstr "ຕໍ່າແໜ່ງ"
-#: cui/uiconfig/ui/possizetabpage.ui:190
+#: cui/uiconfig/ui/possizetabpage.ui:224
#, fuzzy
msgctxt "possizetabpage|FT_WIDTH"
msgid "Wi_dth:"
msgstr "ຄວາມກ້ວາງ"
-#: cui/uiconfig/ui/possizetabpage.ui:206
+#: cui/uiconfig/ui/possizetabpage.ui:238
#, fuzzy
msgctxt "possizetabpage|FT_HEIGHT"
msgid "H_eight:"
msgstr "ຄວາມສູງ"
-#: cui/uiconfig/ui/possizetabpage.ui:247
+#: cui/uiconfig/ui/possizetabpage.ui:276
msgctxt "possizetabpage|CBX_SCALE"
msgid "_Keep ratio"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:279
+#: cui/uiconfig/ui/possizetabpage.ui:307
msgctxt "possizetabpage|FT_SIZEREFERENCE"
msgid "Base _point:"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:317
+#: cui/uiconfig/ui/possizetabpage.ui:361
msgctxt "possizetabpage|label2"
msgid "Size"
msgstr "ຂະໜາດ"
-#: cui/uiconfig/ui/possizetabpage.ui:356
+#: cui/uiconfig/ui/possizetabpage.ui:401
#, fuzzy
msgctxt "possizetabpage|TSB_POSPROTECT"
msgid "Positio_n"
msgstr "ຕໍ່າແໜ່ງ"
-#: cui/uiconfig/ui/possizetabpage.ui:373
+#: cui/uiconfig/ui/possizetabpage.ui:418
#, fuzzy
msgctxt "possizetabpage|TSB_SIZEPROTECT"
msgid "_Size"
msgstr "ຂະໜາດ"
-#: cui/uiconfig/ui/possizetabpage.ui:397
+#: cui/uiconfig/ui/possizetabpage.ui:441
#, fuzzy
msgctxt "possizetabpage|label3"
msgid "Protect"
msgstr "~ປ້ອງກັນ"
-#: cui/uiconfig/ui/possizetabpage.ui:430
+#: cui/uiconfig/ui/possizetabpage.ui:475
msgctxt "possizetabpage|TSB_AUTOGROW_WIDTH"
msgid "_Fit width to text"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:447
+#: cui/uiconfig/ui/possizetabpage.ui:492
msgctxt "possizetabpage|TSB_AUTOGROW_HEIGHT"
msgid "Fit _height to text"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:471
+#: cui/uiconfig/ui/possizetabpage.ui:515
msgctxt "possizetabpage|label4"
msgid "Adapt"
msgstr ""
@@ -10684,50 +10684,50 @@ msgctxt "recordnumberdialog|label2"
msgid "go to record"
msgstr ""
-#: cui/uiconfig/ui/rotationtabpage.ui:52
+#: cui/uiconfig/ui/rotationtabpage.ui:56
#, fuzzy
msgctxt "rotationtabpage|FT_POS_X"
msgid "Position _X:"
msgstr "ຕໍ່າແໜ່ງ"
-#: cui/uiconfig/ui/rotationtabpage.ui:66
+#: cui/uiconfig/ui/rotationtabpage.ui:70
#, fuzzy
msgctxt "rotationtabpage|FT_POS_Y"
msgid "Position _Y:"
msgstr "ຕໍ່າແໜ່ງ"
-#: cui/uiconfig/ui/rotationtabpage.ui:116
+#: cui/uiconfig/ui/rotationtabpage.ui:123
msgctxt "rotationtabpage|FT_POSPRESETS"
msgid "_Default settings:"
msgstr ""
-#: cui/uiconfig/ui/rotationtabpage.ui:130
+#: cui/uiconfig/ui/rotationtabpage.ui:151
msgctxt "rotationtabpage|CTL_RECT|tooltip_text"
msgid "Rotation point"
msgstr ""
-#: cui/uiconfig/ui/rotationtabpage.ui:155
+#: cui/uiconfig/ui/rotationtabpage.ui:178
msgctxt "rotationtabpage|label1"
msgid "Pivot Point"
msgstr ""
-#: cui/uiconfig/ui/rotationtabpage.ui:197
+#: cui/uiconfig/ui/rotationtabpage.ui:220
msgctxt "rotationtabpage|FT_ANGLE"
msgid "_Angle:"
msgstr ""
-#: cui/uiconfig/ui/rotationtabpage.ui:238
+#: cui/uiconfig/ui/rotationtabpage.ui:263
msgctxt "rotationtabpage|FT_ANGLEPRESETS"
msgid "Default _settings:"
msgstr ""
-#: cui/uiconfig/ui/rotationtabpage.ui:252
+#: cui/uiconfig/ui/rotationtabpage.ui:287
#, fuzzy
msgctxt "rotationtabpage|CTL_ANGLE|tooltip_text"
msgid "Rotation Angle"
msgstr "ໝູນມູມ"
-#: cui/uiconfig/ui/rotationtabpage.ui:277
+#: cui/uiconfig/ui/rotationtabpage.ui:314
#, fuzzy
msgctxt "rotationtabpage|label2"
msgid "Rotation Angle"
@@ -11122,54 +11122,54 @@ msgctxt "similaritysearchdialog|relaxbox"
msgid "_Combine"
msgstr "ຮວມເຂົ້າກັນ"
-#: cui/uiconfig/ui/slantcornertabpage.ui:50
+#: cui/uiconfig/ui/slantcornertabpage.ui:70
msgctxt "slantcornertabpage|label5"
msgid "_X:"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:88
+#: cui/uiconfig/ui/slantcornertabpage.ui:110
msgctxt "slantcornertabpage|label6"
msgid "_Y:"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:125
+#: cui/uiconfig/ui/slantcornertabpage.ui:149
msgctxt "slantcornertabpage|label3"
msgid "Control Point 1"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:159
+#: cui/uiconfig/ui/slantcornertabpage.ui:183
#, fuzzy
msgctxt "slantcornertabpage|FT_RADIUS"
msgid "_Radius:"
msgstr "ລັດສະໝີ"
-#: cui/uiconfig/ui/slantcornertabpage.ui:189
+#: cui/uiconfig/ui/slantcornertabpage.ui:214
#, fuzzy
msgctxt "slantcornertabpage|label1"
msgid "Corner Radius"
msgstr "ລັດສະໝີຂອງມູມ"
-#: cui/uiconfig/ui/slantcornertabpage.ui:223
+#: cui/uiconfig/ui/slantcornertabpage.ui:248
msgctxt "slantcornertabpage|FT_ANGLE"
msgid "_Angle:"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:253
+#: cui/uiconfig/ui/slantcornertabpage.ui:279
msgctxt "slantcornertabpage|label2"
msgid "Slant"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:294
+#: cui/uiconfig/ui/slantcornertabpage.ui:320
msgctxt "slantcornertabpage|label4"
msgid "_X:"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:332
+#: cui/uiconfig/ui/slantcornertabpage.ui:360
msgctxt "slantcornertabpage|label7"
msgid "_Y:"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:369
+#: cui/uiconfig/ui/slantcornertabpage.ui:399
msgctxt "slantcornertabpage|label8"
msgid "Control Point 2"
msgstr ""
@@ -11465,125 +11465,125 @@ msgctxt "storedwebconnectiondialog|change"
msgid "_Change Password..."
msgstr "ປ່ຽນແປງ~ລະຫັດຜ່ານ..."
-#: cui/uiconfig/ui/swpossizepage.ui:74
+#: cui/uiconfig/ui/swpossizepage.ui:85
#, fuzzy
msgctxt "swpossizepage|widthft"
msgid "_Width:"
msgstr "ຄວາມກ້ວາງ"
-#: cui/uiconfig/ui/swpossizepage.ui:111
+#: cui/uiconfig/ui/swpossizepage.ui:123
#, fuzzy
msgctxt "swpossizepage|heightft"
msgid "H_eight:"
msgstr "ຄວາມສູງ"
-#: cui/uiconfig/ui/swpossizepage.ui:128
+#: cui/uiconfig/ui/swpossizepage.ui:141
msgctxt "swpossizepage|ratio"
msgid "_Keep ratio"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:149
+#: cui/uiconfig/ui/swpossizepage.ui:162
msgctxt "swpossizepage|label2"
msgid "Size"
msgstr "ຂະໜາດ"
-#: cui/uiconfig/ui/swpossizepage.ui:205
+#: cui/uiconfig/ui/swpossizepage.ui:218
#, fuzzy
msgctxt "swpossizepage|topage"
msgid "To _page"
msgstr "ທີ່ໜ້າ"
-#: cui/uiconfig/ui/swpossizepage.ui:222
+#: cui/uiconfig/ui/swpossizepage.ui:234
#, fuzzy
msgctxt "swpossizepage|topara"
msgid "To paragrap_h"
msgstr "ຫຍໍ້ໜ້າ"
-#: cui/uiconfig/ui/swpossizepage.ui:238
+#: cui/uiconfig/ui/swpossizepage.ui:250
#, fuzzy
msgctxt "swpossizepage|tochar"
msgid "To cha_racter"
msgstr "ຕົວອັກສອນ"
-#: cui/uiconfig/ui/swpossizepage.ui:254
+#: cui/uiconfig/ui/swpossizepage.ui:266
#, fuzzy
msgctxt "swpossizepage|aschar"
msgid "_As character"
msgstr "ເປັນຕົວອັກສອນ"
-#: cui/uiconfig/ui/swpossizepage.ui:270
+#: cui/uiconfig/ui/swpossizepage.ui:282
#, fuzzy
msgctxt "swpossizepage|toframe"
msgid "To _frame"
msgstr "ກອບ"
-#: cui/uiconfig/ui/swpossizepage.ui:292
+#: cui/uiconfig/ui/swpossizepage.ui:304
#, fuzzy
msgctxt "swpossizepage|label1"
msgid "Anchor"
msgstr "~ຫຼັັກ"
-#: cui/uiconfig/ui/swpossizepage.ui:333
+#: cui/uiconfig/ui/swpossizepage.ui:344
#, fuzzy
msgctxt "swpossizepage|horiposft"
msgid "Hori_zontal:"
msgstr "ແນວນອນ"
-#: cui/uiconfig/ui/swpossizepage.ui:347
+#: cui/uiconfig/ui/swpossizepage.ui:358
msgctxt "swpossizepage|horibyft"
msgid "b_y:"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:361
+#: cui/uiconfig/ui/swpossizepage.ui:372
msgctxt "swpossizepage|vertbyft"
msgid "_by:"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:375
+#: cui/uiconfig/ui/swpossizepage.ui:386
msgctxt "swpossizepage|horitoft"
msgid "_to:"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:421
+#: cui/uiconfig/ui/swpossizepage.ui:433
#, fuzzy
msgctxt "swpossizepage|vertposft"
msgid "_Vertical:"
msgstr "ແນວຕັ້ງ"
-#: cui/uiconfig/ui/swpossizepage.ui:457
+#: cui/uiconfig/ui/swpossizepage.ui:470
msgctxt "swpossizepage|verttoft"
msgid "t_o:"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:478
+#: cui/uiconfig/ui/swpossizepage.ui:492
msgctxt "swpossizepage|mirror"
msgid "_Mirror on even pages"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:495
+#: cui/uiconfig/ui/swpossizepage.ui:509
msgctxt "swpossizepage|followtextflow"
msgid "Follow te_xt flow"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:518
+#: cui/uiconfig/ui/swpossizepage.ui:532
#, fuzzy
msgctxt "swpossizepage|label11"
msgid "Position"
msgstr "ຕໍ່າແໜ່ງ"
-#: cui/uiconfig/ui/swpossizepage.ui:549
+#: cui/uiconfig/ui/swpossizepage.ui:563
#, fuzzy
msgctxt "swpossizepage|pos"
msgid "Positio_n"
msgstr "ຕໍ່າແໜ່ງ"
-#: cui/uiconfig/ui/swpossizepage.ui:565
+#: cui/uiconfig/ui/swpossizepage.ui:579
#, fuzzy
msgctxt "swpossizepage|size"
msgid "_Size"
msgstr "ຂະໜາດ"
-#: cui/uiconfig/ui/swpossizepage.ui:587
+#: cui/uiconfig/ui/swpossizepage.ui:601
#, fuzzy
msgctxt "swpossizepage|label3"
msgid "Protect"
@@ -11785,13 +11785,13 @@ msgctxt "textattrtabpage|label2"
msgid "Spacing to Borders"
msgstr ""
-#: cui/uiconfig/ui/textattrtabpage.ui:425
+#: cui/uiconfig/ui/textattrtabpage.ui:423
#, fuzzy
msgctxt "textattrtabpage|TSB_FULL_WIDTH"
msgid "Full _width"
msgstr "ກ້ວາງທັງໝົດ"
-#: cui/uiconfig/ui/textattrtabpage.ui:448
+#: cui/uiconfig/ui/textattrtabpage.ui:446
msgctxt "textattrtabpage|label3"
msgid "Text Anchor"
msgstr ""
diff --git a/source/lo/filter/source/config/fragments/filters.po b/source/lo/filter/source/config/fragments/filters.po
index 12f938abc02..bb4882b1d74 100644
--- a/source/lo/filter/source/config/fragments/filters.po
+++ b/source/lo/filter/source/config/fragments/filters.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-16 16:54+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2016-03-11 08:59+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -465,8 +465,8 @@ msgctxt ""
"MS Word 2003 XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Word 2003 XML"
-msgstr "Microsoft Word 2003 XML"
+msgid "Word 2003 XML"
+msgstr ""
#: MS_Word_2007_XML.xcu
msgctxt ""
@@ -1290,7 +1290,7 @@ msgctxt ""
"Calc MS Excel 2007 VBA XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Excel 2007-2016 XML (macro enabled)"
+msgid "Excel 2007–2019 (macro-enabled)"
msgstr ""
#: calc_MS_Excel_2007_XML.xcu
diff --git a/source/lo/filter/source/config/fragments/types.po b/source/lo/filter/source/config/fragments/types.po
index 1f6063bedc8..9fb77502fcb 100644
--- a/source/lo/filter/source/config/fragments/types.po
+++ b/source/lo/filter/source/config/fragments/types.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-08 15:11+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2015-11-11 21:26+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -295,8 +295,8 @@ msgctxt ""
"writer_MS_Word_2003_XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Word 2003 XML"
-msgstr "Microsoft Word 2003 XML"
+msgid "Word 2003 XML"
+msgstr ""
#: writer_MS_Word_2007_XML.xcu
msgctxt ""
diff --git a/source/lo/fpicker/messages.po b/source/lo/fpicker/messages.po
index 13d27c6d2b3..004cac26ae0 100644
--- a/source/lo/fpicker/messages.po
+++ b/source/lo/fpicker/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2018-02-15 09:21+0000\n"
"Last-Translator: phommasy <phommasy.ai@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -279,14 +279,13 @@ msgstr ""
#: fpicker/uiconfig/ui/foldernamedialog.ui:8
msgctxt "foldernamedialog|FolderNameDialog"
-msgid "Folder Name ?"
+msgid "Folder Name"
msgstr ""
#: fpicker/uiconfig/ui/foldernamedialog.ui:91
-#, fuzzy
msgctxt "foldernamedialog|label2"
-msgid "Na_me"
-msgstr "ຊື່"
+msgid "Na_me:"
+msgstr ""
#: fpicker/uiconfig/ui/foldernamedialog.ui:122
#, fuzzy
diff --git a/source/lo/helpcontent2/source/text/shared/00.po b/source/lo/helpcontent2/source/text/shared/00.po
index 3d2a0ca7fc9..ee7a67f7adf 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2016-05-08 01:00+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -397,7 +397,7 @@ msgctxt ""
"00000001.xhp\n"
"hd_id3149670\n"
"help.text"
-msgid "Back"
+msgid "Reset"
msgstr ""
#: 00000001.xhp
@@ -405,7 +405,7 @@ msgctxt ""
"00000001.xhp\n"
"par_id3145068\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optionsdialog/revert\">Resets modified values back to the $[officename] default values.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optionsdialog/revert\">Resets changes made to the current tab to those applicable when this dialog was opened.</ahelp>"
msgstr ""
#: 00000001.xhp
@@ -552,6 +552,54 @@ msgctxt ""
msgid "<variable id=\"ShiftF1\">Press Shift+F1 and point to a control to learn more about that control.</variable>"
msgstr ""
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"hd_id631527692833772\n"
+"help.text"
+msgid "Options dialog buttons"
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"hd_id831527692839432\n"
+"help.text"
+msgid "OK"
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"par_id471527692844934\n"
+"help.text"
+msgid "Save the changes in the page and close the Options dialog."
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"hd_id261527692850720\n"
+"help.text"
+msgid "Cancel"
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"par_id571527692855533\n"
+"help.text"
+msgid "Close the Options dialog and discard all changes done."
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"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 Options dialog."
+msgstr ""
+
#: 00000002.xhp
msgctxt ""
"00000002.xhp\n"
@@ -11125,7 +11173,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3151293\n"
"help.text"
-msgid "<variable id=\"linienstile\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Line Styles</emph> tab </variable>"
+msgid "<variable id=\"linienstile\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Line Styles</emph> tab</variable>"
msgstr ""
#: 00040502.xhp
@@ -11133,7 +11181,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3149317\n"
"help.text"
-msgid "<variable id=\"linienenden\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Arrow Styles</emph> tab </variable>"
+msgid "<variable id=\"linienenden\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Arrow Styles</emph> tab</variable>"
msgstr ""
#: 00040502.xhp
@@ -11173,7 +11221,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3154948\n"
"help.text"
-msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Area</emph> tab"
+msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Area</emph> tab."
msgstr ""
#: 00040502.xhp
@@ -11181,7 +11229,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3145607\n"
"help.text"
-msgid "Choose <emph>View - Styles</emph> - open context menu and choose <emph>Modify/New - Area</emph> tab (presentation documents)"
+msgid "Choose <emph>View - Styles</emph> - open context menu and choose <emph>Modify/New - Area</emph> tab (presentation documents)."
msgstr ""
#: 00040502.xhp
@@ -11189,7 +11237,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3152922\n"
"help.text"
-msgid "Choose <emph>Format - Title - Area</emph> tab (chart documents)"
+msgid "Choose <emph>Format - Title - Area</emph> tab (chart documents)."
msgstr ""
#: 00040502.xhp
@@ -11197,7 +11245,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3157894\n"
"help.text"
-msgid "Choose <emph>Format - Legend - Area</emph> tab (chart documents)"
+msgid "Choose <emph>Format - Legend - Area</emph> tab (chart documents)."
msgstr ""
#: 00040502.xhp
@@ -11205,7 +11253,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3144444\n"
"help.text"
-msgid "Choose <emph>Format - Chart Wall - Area</emph> tab (chart documents)"
+msgid "Choose <emph>Format - Chart Wall - Area</emph> tab (chart documents)."
msgstr ""
#: 00040502.xhp
@@ -11213,7 +11261,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3156543\n"
"help.text"
-msgid "Choose <emph>Format - Chart Floor - Area</emph> tab (chart documents)"
+msgid "Choose <emph>Format - Chart Floor - Area</emph> tab (chart documents)."
msgstr ""
#: 00040502.xhp
@@ -11221,7 +11269,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3150685\n"
"help.text"
-msgid "Choose <emph>Format - Chart Area - Area</emph> tab (chart documents)"
+msgid "Choose <emph>Format - Chart Area - Area</emph> tab (chart documents)."
msgstr ""
#: 00040502.xhp
@@ -11229,7 +11277,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3149664\n"
"help.text"
-msgid "Choose <emph>Slide - Properties - Background</emph> tab (in $[officename] Impress)"
+msgid "Choose <emph>Slide - Properties - Background</emph> tab (in $[officename] Impress)."
msgstr ""
#: 00040502.xhp
@@ -11237,7 +11285,15 @@ msgctxt ""
"00040502.xhp\n"
"par_id9149694\n"
"help.text"
-msgid "Choose <emph>Page - Properties - Background</emph> tab (in $[officename] Draw)"
+msgid "Choose <emph>Page - Properties - Background</emph> tab (in $[officename] Draw)."
+msgstr ""
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id841527083135387\n"
+"help.text"
+msgid "Choose <emph>Table - Properties - Background</emph> tab."
msgstr ""
#: 00040502.xhp
@@ -11349,7 +11405,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3150011\n"
"help.text"
-msgid "<variable id=\"schatte\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Shadow</emph> tab </variable>"
+msgid "<variable id=\"schatte\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Shadow</emph> tab</variable>"
msgstr ""
#: 00040502.xhp
@@ -11357,7 +11413,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3147441\n"
"help.text"
-msgid "<variable id=\"verlauf\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Gradients</emph> tab </variable>"
+msgid "<variable id=\"verlauf\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Gradients</emph> tab</variable>"
msgstr ""
#: 00040502.xhp
@@ -11365,7 +11421,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3155308\n"
"help.text"
-msgid "<variable id=\"schraffur\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Hatching</emph> tab </variable>"
+msgid "<variable id=\"schraffur\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Hatching</emph> tab</variable>"
msgstr ""
#: 00040502.xhp
@@ -11373,7 +11429,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3145800\n"
"help.text"
-msgid "<variable id=\"bitmap\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Bitmaps</emph> tab </variable>"
+msgid "<variable id=\"bitmap\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Bitmaps</emph> tab</variable>"
msgstr ""
#: 00040502.xhp
@@ -11413,7 +11469,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3156286\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F4 key </caseinline><caseinline select=\"IMPRESS\">F4 key </caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F4 key</caseinline><caseinline select=\"IMPRESS\">F4 key</caseinline></switchinline>"
msgstr ""
#: 00040502.xhp
@@ -11453,7 +11509,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3153099\n"
"help.text"
-msgid "<variable id=\"position2\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Position and Size</emph> tab </variable>"
+msgid "<variable id=\"position2\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Position and Size</emph> tab</variable>"
msgstr ""
#: 00040502.xhp
@@ -11485,7 +11541,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3145666\n"
"help.text"
-msgid "<variable id=\"ecke\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Slant & Corner Radius</emph> tab </variable>"
+msgid "<variable id=\"ecke\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Slant & Corner Radius</emph> tab</variable>"
msgstr ""
#: 00040502.xhp
@@ -11493,7 +11549,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3146081\n"
"help.text"
-msgid "<variable id=\"legende\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Callout</emph> tab (only for textbox callouts, not for custom shapes callouts) </variable>"
+msgid "<variable id=\"legende\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Callout</emph> tab (only for textbox callouts, not for custom shapes callouts)</variable>"
msgstr ""
#: 00040502.xhp
@@ -11517,7 +11573,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3149019\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F8 key </caseinline><caseinline select=\"IMPRESS\">F8 key </caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F8 key</caseinline><caseinline select=\"IMPRESS\">F8 key</caseinline></switchinline>"
msgstr ""
#: 00040502.xhp
@@ -11805,7 +11861,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3153076\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Align Center Horizontally </caseinline><defaultinline>Centered</defaultinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Align Center Horizontally</caseinline><defaultinline>Centered</defaultinline></switchinline>"
msgstr ""
#: 00040502.xhp
@@ -11845,7 +11901,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3150527\n"
"help.text"
-msgid "<variable id=\"font\">Click <emph>Fontwork</emph> icon on <emph>Drawing</emph> bar </variable>"
+msgid "<variable id=\"font\">Click <emph>Fontwork</emph> icon on <emph>Drawing</emph> bar</variable>"
msgstr ""
#: 00040502.xhp
diff --git a/source/lo/helpcontent2/source/text/shared/01.po b/source/lo/helpcontent2/source/text/shared/01.po
index 948f36e2e51..be3ef39a7b4 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: 2018-05-23 23:19+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2016-12-25 08:01+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -23587,6 +23587,22 @@ msgstr ""
#: 05210100.xhp
msgctxt ""
"05210100.xhp\n"
+"hd_id471527077476052\n"
+"help.text"
+msgid "Cell, Row or Table background selector"
+msgstr ""
+
+#: 05210100.xhp
+msgctxt ""
+"05210100.xhp\n"
+"par_id661527077493366\n"
+"help.text"
+msgid "Select the table object which background area is to be filled."
+msgstr ""
+
+#: 05210100.xhp
+msgctxt ""
+"05210100.xhp\n"
"hd_id3147373\n"
"help.text"
msgid "None"
@@ -31205,7 +31221,7 @@ msgctxt ""
"06040100.xhp\n"
"hd_id3145072\n"
"help.text"
-msgid "Automatic *bold* and _underline_"
+msgid "Automatic *bold*, /italic/, -strikeout- and _underline_"
msgstr ""
#: 06040100.xhp
@@ -31213,7 +31229,7 @@ msgctxt ""
"06040100.xhp\n"
"par_id3153577\n"
"help.text"
-msgid "Automatically applies bold formatting to text enclosed by asterisks (*), and underline to text enclosed by underscores ( _ ), for example, *bold*. The asterisks and underscores are not displayed after the formatting is applied."
+msgid "Automatically applies bold, italic, strikethrough or underline formatting to text enclosed by asterisks (*), slashes (/), hyphens (-), and underscores (_), respectively. These characters disappear after the formatting is applied."
msgstr ""
#: 06040100.xhp
@@ -31221,7 +31237,7 @@ msgctxt ""
"06040100.xhp\n"
"par_id3153127\n"
"help.text"
-msgid "This feature does not work if the formatting characters * or _ are entered with an <link href=\"text/shared/00/00000005.xhp#IME\" name=\"Input Method Editor\">Input Method Editor</link>."
+msgid "This feature does not work if the formatting characters <item type=\"literal\">* / - _</item> are entered with an <link href=\"text/shared/00/00000005.xhp#IME\" name=\"Input Method Editor\">Input Method Editor</link>."
msgstr ""
#: 06040100.xhp
diff --git a/source/lo/helpcontent2/source/text/shared/optionen.po b/source/lo/helpcontent2/source/text/shared/optionen.po
index 0ccbe9994e0..7d9c9f6abdd 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: 2018-05-08 15:10+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2016-05-08 01:00+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -83,6 +83,22 @@ msgstr ""
#: 01000000.xhp
msgctxt ""
"01000000.xhp\n"
+"hd_id551527692881035\n"
+"help.text"
+msgid "Help"
+msgstr ""
+
+#: 01000000.xhp
+msgctxt ""
+"01000000.xhp\n"
+"par_id831527692885723\n"
+"help.text"
+msgid "Opens the help contents for the Options page displayed."
+msgstr ""
+
+#: 01000000.xhp
+msgctxt ""
+"01000000.xhp\n"
"hd_id3159149\n"
"help.text"
msgid "<link href=\"text/shared/optionen/01010000.xhp\" name=\"$[officename]\">%PRODUCTNAME</link>"
@@ -4565,7 +4581,7 @@ msgctxt ""
"01030300.xhp\n"
"par_idN10640\n"
"help.text"
-msgid "Options"
+msgid "Security Options and Warnings"
msgstr ""
#: 01030300.xhp
@@ -4597,7 +4613,7 @@ msgctxt ""
"01030300.xhp\n"
"hd_id3168736\n"
"help.text"
-msgid "Persistently save passwords protected by a master password"
+msgid "Persistently save passwords for web connections"
msgstr ""
#: 01030300.xhp
@@ -4613,6 +4629,22 @@ msgctxt ""
"01030300.xhp\n"
"hd_id3901791\n"
"help.text"
+msgid "Protected by a master password (recommended)"
+msgstr ""
+
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"par_id31527711486980\n"
+"help.text"
+msgid "Check to enable all connections' passwords to be protected by a master password."
+msgstr ""
+
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"hd_id141527711343312\n"
+"help.text"
msgid "Master Password"
msgstr ""
@@ -13733,7 +13765,7 @@ msgctxt ""
"java.xhp\n"
"hd_id3148618\n"
"help.text"
-msgid "Optional (unstable) options"
+msgid "Optional Features"
msgstr ""
#: java.xhp
@@ -13749,7 +13781,7 @@ msgctxt ""
"java.xhp\n"
"par_id3156344\n"
"help.text"
-msgid "It enables features that are not yet complete or contain known bugs. The list of these features is different version by version, or even it can be empty."
+msgid "Enables features that are not yet complete or may contain known bugs. The list of these features is different version by version, or even it can be empty."
msgstr ""
#: java.xhp
@@ -13765,7 +13797,7 @@ msgctxt ""
"java.xhp\n"
"par_id3156345\n"
"help.text"
-msgid "It enables macro recording, so the <link href=\"text/shared/guide/macro_recording.xhp\" name=\"Tools - Macros - Record Macro\"><item type=\"menuitem\">Tools - Macros - Record Macro</item></link> menu item will be available."
+msgid "Enables macro recording. The <link href=\"text/shared/guide/macro_recording.xhp\" name=\"Tools - Macros - Record Macro\"><item type=\"menuitem\">Tools - Macros - Record Macro</item></link> menu item is available."
msgstr ""
#: java.xhp
diff --git a/source/lo/officecfg/registry/data/org/openoffice/Office/UI.po b/source/lo/officecfg/registry/data/org/openoffice/Office/UI.po
index 21545f1cc4c..3982e2a0086 100644
--- a/source/lo/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/lo/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-22 13:17+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2018-02-15 09:24+0000\n"
"Last-Translator: phommasy <phommasy.ai@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -26971,8 +26971,8 @@ msgctxt ""
"..WriterCommands.UserInterface.Commands..uno:TextAttributes\n"
"Label\n"
"value.text"
-msgid "Text Attributes"
-msgstr "ຄຸນສົມບັດຂໍ້ຄວາມ"
+msgid "Text Attributes..."
+msgstr ""
#: WriterCommands.xcu
msgctxt ""
diff --git a/source/lo/readlicense_oo/docs.po b/source/lo/readlicense_oo/docs.po
index 84826d98abc..4277373f971 100644
--- a/source/lo/readlicense_oo/docs.po
+++ b/source/lo/readlicense_oo/docs.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-04-17 15:54+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2016-03-11 12:09+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -117,7 +117,7 @@ msgctxt ""
"readme.xrm\n"
"macxiOSX\n"
"readmeitem.text"
-msgid "MacOSX 10.8 (Mountain Lion) or higher"
+msgid "MacOSX 10.9 (Mavericks) or higher"
msgstr ""
#: readme.xrm
diff --git a/source/lo/sc/messages.po b/source/lo/sc/messages.po
index cd0c2d25ea9..cdbb68759e2 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-12 14:40+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"
@@ -1862,16 +1862,21 @@ msgid "Nested arrays are not supported."
msgstr ""
#: sc/inc/globstr.hrc:390
+msgctxt "STR_ERR_LONG_BAD_ARRAY_CONTENT"
+msgid "Unsupported inline array content."
+msgstr ""
+
+#: sc/inc/globstr.hrc:391
msgctxt "STR_UNDO_TEXTTOCOLUMNS"
msgid "Text to Columns"
msgstr ""
-#: sc/inc/globstr.hrc:391
+#: sc/inc/globstr.hrc:392
msgctxt "STR_DOC_UPDATED"
msgid "Your spreadsheet has been updated with changes saved by other users."
msgstr ""
-#: sc/inc/globstr.hrc:392
+#: sc/inc/globstr.hrc:393
msgctxt "STR_DOC_WILLBESAVED"
msgid ""
"The spreadsheet must be saved now to activate sharing mode.\n"
@@ -1879,7 +1884,7 @@ msgid ""
"Do you want to continue?"
msgstr ""
-#: sc/inc/globstr.hrc:393
+#: sc/inc/globstr.hrc:394
msgctxt "STR_DOC_WILLNOTBESAVED"
msgid ""
"Already resolved merge conflicts will be lost and your changes to the shared spreadsheet will not be saved.\n"
@@ -1887,7 +1892,7 @@ msgid ""
"Do you want to continue?"
msgstr ""
-#: sc/inc/globstr.hrc:394
+#: sc/inc/globstr.hrc:395
msgctxt "STR_DOC_DISABLESHARED"
msgid ""
"Disabling shared mode of a spreadsheet hinders all other users of the shared spreadsheet to merge back their work.\n"
@@ -1895,7 +1900,7 @@ msgid ""
"Do you want to continue?"
msgstr ""
-#: sc/inc/globstr.hrc:395
+#: sc/inc/globstr.hrc:396
msgctxt "STR_DOC_NOLONGERSHARED"
msgid ""
"This spreadsheet is no longer in shared mode.\n"
@@ -1903,7 +1908,7 @@ msgid ""
"Save your spreadsheet to a separate file and merge your changes to the shared spreadsheet manually."
msgstr ""
-#: sc/inc/globstr.hrc:396
+#: sc/inc/globstr.hrc:397
msgctxt "STR_FILE_LOCKED_TRY_LATER"
msgid ""
"The shared spreadsheet file is locked due to a merge in progress by user: '%1'\n"
@@ -1911,7 +1916,7 @@ msgid ""
"Sharing mode of a locked file cannot be disabled. Try again later."
msgstr ""
-#: sc/inc/globstr.hrc:397
+#: sc/inc/globstr.hrc:398
msgctxt "STR_FILE_LOCKED_SAVE_LATER"
msgid ""
"The shared spreadsheet file is locked due to a merge in progress by user: '%1'\n"
@@ -1919,160 +1924,160 @@ msgid ""
"Try again later to save your changes."
msgstr ""
-#: sc/inc/globstr.hrc:398
+#: sc/inc/globstr.hrc:399
msgctxt "STR_UNKNOWN_USER"
msgid "Unknown User"
msgstr ""
-#: sc/inc/globstr.hrc:399
+#: sc/inc/globstr.hrc:400
msgctxt "STR_SHAPE_AUTOSHAPE"
msgid "AutoShape"
msgstr ""
-#: sc/inc/globstr.hrc:400
+#: sc/inc/globstr.hrc:401
#, fuzzy
msgctxt "STR_SHAPE_RECTANGLE"
msgid "Rectangle"
msgstr "ສີຫລ່ຽມສາກ"
-#: sc/inc/globstr.hrc:401
+#: sc/inc/globstr.hrc:402
#, fuzzy
msgctxt "STR_SHAPE_LINE"
msgid "Line"
msgstr "ຊີວິດ"
-#: sc/inc/globstr.hrc:402
+#: sc/inc/globstr.hrc:403
msgctxt "STR_SHAPE_OVAL"
msgid "Oval"
msgstr "ຮູບວົງຮີ່"
-#: sc/inc/globstr.hrc:403
+#: sc/inc/globstr.hrc:404
#, fuzzy
msgctxt "STR_FORM_BUTTON"
msgid "Button"
msgstr "ປຸ່ມ"
-#: sc/inc/globstr.hrc:404
+#: sc/inc/globstr.hrc:405
msgctxt "STR_FORM_CHECKBOX"
msgid "Check Box"
msgstr "ກ່ອງກວດກາ"
-#: sc/inc/globstr.hrc:405
+#: sc/inc/globstr.hrc:406
#, fuzzy
msgctxt "STR_FORM_OPTIONBUTTON"
msgid "Option Button"
msgstr "ຕົວເລືອກປຸ່ມ"
-#: sc/inc/globstr.hrc:406
+#: sc/inc/globstr.hrc:407
msgctxt "STR_FORM_LABEL"
msgid "Label"
msgstr "ປ້າຍ"
-#: sc/inc/globstr.hrc:407
+#: sc/inc/globstr.hrc:408
#, fuzzy
msgctxt "STR_FORM_LISTBOX"
msgid "List Box"
msgstr "ກອ່ງລາຍຊື່"
-#: sc/inc/globstr.hrc:408
+#: sc/inc/globstr.hrc:409
#, fuzzy
msgctxt "STR_FORM_GROUPBOX"
msgid "Group Box"
msgstr "ກ່ອງກຸ່ມ"
-#: sc/inc/globstr.hrc:409
+#: sc/inc/globstr.hrc:410
#, fuzzy
msgctxt "STR_FORM_DROPDOWN"
msgid "Drop Down"
msgstr "ວາງລົງ"
-#: sc/inc/globstr.hrc:410
+#: sc/inc/globstr.hrc:411
msgctxt "STR_FORM_SPINNER"
msgid "Spinner"
msgstr ""
-#: sc/inc/globstr.hrc:411
+#: sc/inc/globstr.hrc:412
#, fuzzy
msgctxt "STR_FORM_SCROLLBAR"
msgid "Scroll Bar"
msgstr "ແບບເລືອນທາງຂວາງ"
-#: sc/inc/globstr.hrc:412
+#: sc/inc/globstr.hrc:413
#, fuzzy
msgctxt "STR_STYLE_FAMILY_CELL"
msgid "Cell Styles"
msgstr "~ຮູບແບບເຊວ"
-#: sc/inc/globstr.hrc:413
+#: sc/inc/globstr.hrc:414
#, fuzzy
msgctxt "STR_STYLE_FAMILY_PAGE"
msgid "Page Styles"
msgstr "ຮູບແບບໜ້າ"
-#: sc/inc/globstr.hrc:414
+#: sc/inc/globstr.hrc:415
#, fuzzy
msgctxt "STR_ERR_DATAPILOTSOURCE"
msgid "Pivot table source data is invalid."
msgstr "ການໄຫລບໍ່ສາມາດເຮັດໄດ້"
-#: sc/inc/globstr.hrc:415
+#: sc/inc/globstr.hrc:416
msgctxt "STR_OPTIONS_WARN_SEPARATORS"
msgid "Because the current formula separator settings conflict with the locale, the formula separators have been reset to their default values."
msgstr ""
-#: sc/inc/globstr.hrc:416
+#: sc/inc/globstr.hrc:417
msgctxt "STR_UNDO_INSERT_CURRENT_DATE"
msgid "Insert Current Date"
msgstr ""
-#: sc/inc/globstr.hrc:417
+#: sc/inc/globstr.hrc:418
msgctxt "STR_UNDO_INSERT_CURRENT_TIME"
msgid "Insert Current Time"
msgstr ""
-#: sc/inc/globstr.hrc:418
+#: sc/inc/globstr.hrc:419
#, fuzzy
msgctxt "STR_MANAGE_NAMES"
msgid "Manage Names..."
msgstr "ຂອບເຂດຊື່"
-#: sc/inc/globstr.hrc:419
+#: sc/inc/globstr.hrc:420
msgctxt "STR_HEADER_NAME"
msgid "Name"
msgstr "ຊື່"
-#: sc/inc/globstr.hrc:420
+#: sc/inc/globstr.hrc:421
msgctxt "STR_HEADER_RANGE_OR_EXPR"
msgid "Range or formula expression"
msgstr ""
-#: sc/inc/globstr.hrc:421
+#: sc/inc/globstr.hrc:422
msgctxt "STR_HEADER_SCOPE"
msgid "Scope"
msgstr ""
-#: sc/inc/globstr.hrc:422
+#: sc/inc/globstr.hrc:423
msgctxt "STR_MULTI_SELECT"
msgid "(multiple)"
msgstr ""
-#: sc/inc/globstr.hrc:423
+#: sc/inc/globstr.hrc:424
#, fuzzy
msgctxt "STR_GLOBAL_SCOPE"
msgid "Document (Global)"
msgstr "ແບບເອກະສານ"
-#: sc/inc/globstr.hrc:424
+#: sc/inc/globstr.hrc:425
msgctxt "STR_ERR_NAME_EXISTS"
msgid "Invalid name. Already in use for the selected scope."
msgstr ""
-#: sc/inc/globstr.hrc:425
+#: sc/inc/globstr.hrc:426
msgctxt "STR_ERR_NAME_INVALID"
msgid "Invalid name. Only use letters, numbers and underscore."
msgstr ""
-#: sc/inc/globstr.hrc:426
+#: sc/inc/globstr.hrc:427
msgctxt "STR_UNSAVED_EXT_REF"
msgid ""
"This Document contains external references to unsaved documents.\n"
@@ -2080,225 +2085,225 @@ msgid ""
"Do you want to continue?"
msgstr ""
-#: sc/inc/globstr.hrc:427
+#: sc/inc/globstr.hrc:428
msgctxt "STR_CLOSE_WITH_UNSAVED_REFS"
msgid "This Document is referenced by another document and not yet saved. Closing it without saving will result in data loss."
msgstr ""
-#: sc/inc/globstr.hrc:428
+#: sc/inc/globstr.hrc:429
msgctxt "STR_HEADER_RANGE"
msgid "Range"
msgstr "ຂອບເຂດ"
-#: sc/inc/globstr.hrc:429
+#: sc/inc/globstr.hrc:430
msgctxt "STR_HEADER_COND"
msgid "First Condition"
msgstr ""
-#: sc/inc/globstr.hrc:430
+#: sc/inc/globstr.hrc:431
#, fuzzy
msgctxt "STR_COND_CONDITION"
msgid "Cell value is"
msgstr "ຄ່າເຊວແມ່ນ"
-#: sc/inc/globstr.hrc:431
+#: sc/inc/globstr.hrc:432
msgctxt "STR_COND_COLORSCALE"
msgid "ColorScale"
msgstr ""
-#: sc/inc/globstr.hrc:432
+#: sc/inc/globstr.hrc:433
msgctxt "STR_COND_DATABAR"
msgid "DataBar"
msgstr ""
-#: sc/inc/globstr.hrc:433
+#: sc/inc/globstr.hrc:434
msgctxt "STR_COND_ICONSET"
msgid "IconSet"
msgstr ""
-#: sc/inc/globstr.hrc:434
+#: sc/inc/globstr.hrc:435
#, fuzzy
msgctxt "STR_COND_BETWEEN"
msgid "between"
msgstr "ລະຫວ່າງ"
-#: sc/inc/globstr.hrc:435
+#: sc/inc/globstr.hrc:436
#, fuzzy
msgctxt "STR_COND_NOTBETWEEN"
msgid "not between"
msgstr "ບໍ່ຢູ່ໃນລະຫວ່າງ"
-#: sc/inc/globstr.hrc:436
+#: sc/inc/globstr.hrc:437
msgctxt "STR_COND_UNIQUE"
msgid "unique"
msgstr ""
-#: sc/inc/globstr.hrc:437
+#: sc/inc/globstr.hrc:438
#, fuzzy
msgctxt "STR_COND_DUPLICATE"
msgid "duplicate"
msgstr "ເຮັດສຳເນົາ"
-#: sc/inc/globstr.hrc:438
+#: sc/inc/globstr.hrc:439
#, fuzzy
msgctxt "STR_COND_FORMULA"
msgid "Formula is"
msgstr "ແບບແມ່ນ"
-#: sc/inc/globstr.hrc:439
+#: sc/inc/globstr.hrc:440
msgctxt "STR_COND_TOP10"
msgid "Top Elements"
msgstr ""
-#: sc/inc/globstr.hrc:440
+#: sc/inc/globstr.hrc:441
msgctxt "STR_COND_BOTTOM10"
msgid "Bottom Elements"
msgstr ""
-#: sc/inc/globstr.hrc:441
+#: sc/inc/globstr.hrc:442
msgctxt "STR_COND_TOP_PERCENT"
msgid "Top Percent"
msgstr ""
-#: sc/inc/globstr.hrc:442
+#: sc/inc/globstr.hrc:443
msgctxt "STR_COND_DATE"
msgid "Date is"
msgstr ""
-#: sc/inc/globstr.hrc:443
+#: sc/inc/globstr.hrc:444
msgctxt "STR_COND_BOTTOM_PERCENT"
msgid "Bottom Percent"
msgstr ""
-#: sc/inc/globstr.hrc:444
+#: sc/inc/globstr.hrc:445
msgctxt "STR_COND_ABOVE_AVERAGE"
msgid "Above Average"
msgstr ""
-#: sc/inc/globstr.hrc:445
+#: sc/inc/globstr.hrc:446
msgctxt "STR_COND_BELOW_AVERAGE"
msgid "Below Average"
msgstr ""
-#: sc/inc/globstr.hrc:446
+#: sc/inc/globstr.hrc:447
msgctxt "STR_COND_ABOVE_EQUAL_AVERAGE"
msgid "Above or equal Average"
msgstr ""
-#: sc/inc/globstr.hrc:447
+#: sc/inc/globstr.hrc:448
msgctxt "STR_COND_BELOW_EQUAL_AVERAGE"
msgid "Below or equal Average"
msgstr ""
-#: sc/inc/globstr.hrc:448
+#: sc/inc/globstr.hrc:449
#, fuzzy
msgctxt "STR_COND_ERROR"
msgid "an Error code"
msgstr "ລະຫັດຜິດ"
-#: sc/inc/globstr.hrc:449
+#: sc/inc/globstr.hrc:450
#, fuzzy
msgctxt "STR_COND_NOERROR"
msgid "not an Error code"
msgstr "ລະຫັດຜິດ"
-#: sc/inc/globstr.hrc:450
+#: sc/inc/globstr.hrc:451
msgctxt "STR_COND_BEGINS_WITH"
msgid "Begins with"
msgstr ""
-#: sc/inc/globstr.hrc:451
+#: sc/inc/globstr.hrc:452
msgctxt "STR_COND_ENDS_WITH"
msgid "Ends with"
msgstr ""
-#: sc/inc/globstr.hrc:452
+#: sc/inc/globstr.hrc:453
#, fuzzy
msgctxt "STR_COND_CONTAINS"
msgid "Contains"
msgstr "ບັນຈຸ"
-#: sc/inc/globstr.hrc:453
+#: sc/inc/globstr.hrc:454
msgctxt "STR_COND_NOT_CONTAINS"
msgid "Not Contains"
msgstr ""
-#: sc/inc/globstr.hrc:454
+#: sc/inc/globstr.hrc:455
msgctxt "STR_COND_TODAY"
msgid "today"
msgstr ""
-#: sc/inc/globstr.hrc:455
+#: sc/inc/globstr.hrc:456
msgctxt "STR_COND_YESTERDAY"
msgid "yesterday"
msgstr ""
-#: sc/inc/globstr.hrc:456
+#: sc/inc/globstr.hrc:457
msgctxt "STR_COND_TOMORROW"
msgid "tomorrow"
msgstr ""
-#: sc/inc/globstr.hrc:457
+#: sc/inc/globstr.hrc:458
msgctxt "STR_COND_LAST7DAYS"
msgid "in the last 7 days"
msgstr ""
-#: sc/inc/globstr.hrc:458
+#: sc/inc/globstr.hrc:459
msgctxt "STR_COND_THISWEEK"
msgid "this week"
msgstr ""
-#: sc/inc/globstr.hrc:459
+#: sc/inc/globstr.hrc:460
msgctxt "STR_COND_LASTWEEK"
msgid "last week"
msgstr ""
-#: sc/inc/globstr.hrc:460
+#: sc/inc/globstr.hrc:461
msgctxt "STR_COND_NEXTWEEK"
msgid "next week"
msgstr ""
-#: sc/inc/globstr.hrc:461
+#: sc/inc/globstr.hrc:462
msgctxt "STR_COND_THISMONTH"
msgid "this month"
msgstr ""
-#: sc/inc/globstr.hrc:462
+#: sc/inc/globstr.hrc:463
msgctxt "STR_COND_LASTMONTH"
msgid "last month"
msgstr ""
-#: sc/inc/globstr.hrc:463
+#: sc/inc/globstr.hrc:464
msgctxt "STR_COND_NEXTMONTH"
msgid "next month"
msgstr ""
-#: sc/inc/globstr.hrc:464
+#: sc/inc/globstr.hrc:465
msgctxt "STR_COND_THISYEAR"
msgid "this year"
msgstr ""
-#: sc/inc/globstr.hrc:465
+#: sc/inc/globstr.hrc:466
msgctxt "STR_COND_LASTYEAR"
msgid "last year"
msgstr ""
-#: sc/inc/globstr.hrc:466
+#: sc/inc/globstr.hrc:467
msgctxt "STR_COND_NEXTYEAR"
msgid "next year"
msgstr ""
-#: sc/inc/globstr.hrc:467
+#: sc/inc/globstr.hrc:468
msgctxt "STR_COND_AND"
msgid "and"
msgstr "ແລະ"
-#: sc/inc/globstr.hrc:468
+#: sc/inc/globstr.hrc:469
msgctxt "STR_ERR_CONDFORMAT_PROTECTED"
msgid "Conditional Formats can not be created, deleted or changed in protected sheets."
msgstr ""
-#: sc/inc/globstr.hrc:469
+#: sc/inc/globstr.hrc:470
msgctxt "STR_EDIT_EXISTING_COND_FORMATS"
msgid ""
"The selected cell already contains conditional formatting. You can either edit the existing conditional format or you define a new overlapping conditional format.\n"
@@ -2306,7 +2311,7 @@ msgid ""
" Do you want to edit the existing conditional format?"
msgstr ""
-#: sc/inc/globstr.hrc:470
+#: sc/inc/globstr.hrc:471
msgctxt "STR_QUERY_FORMULA_RECALC_ONLOAD_ODS"
msgid ""
"This document was last saved by an application other than %PRODUCTNAME. Some formula cells may produce different results when recalculated.\n"
@@ -2314,7 +2319,7 @@ msgid ""
"Do you want to recalculate all formula cells in this document now?"
msgstr ""
-#: sc/inc/globstr.hrc:471
+#: sc/inc/globstr.hrc:472
msgctxt "STR_QUERY_FORMULA_RECALC_ONLOAD_XLS"
msgid ""
"This document was last saved by Excel. Some formula cells may produce different results when recalculated.\n"
@@ -2322,81 +2327,81 @@ msgid ""
"Do you want to recalculate all formula cells now?"
msgstr ""
-#: sc/inc/globstr.hrc:472
+#: sc/inc/globstr.hrc:473
msgctxt "STR_NO_INSERT_DELETE_OVER_PIVOT_TABLE"
msgid "You cannot insert or delete cells when the affected range intersects with pivot table."
msgstr ""
-#: sc/inc/globstr.hrc:473
+#: sc/inc/globstr.hrc:474
msgctxt "STR_DPFIELD_GROUP_BY_SECONDS"
msgid "Seconds"
msgstr "ວິນາທີ"
-#: sc/inc/globstr.hrc:474
+#: sc/inc/globstr.hrc:475
msgctxt "STR_DPFIELD_GROUP_BY_MINUTES"
msgid "Minutes"
msgstr "ນາທີ່"
-#: sc/inc/globstr.hrc:475
+#: sc/inc/globstr.hrc:476
msgctxt "STR_DPFIELD_GROUP_BY_HOURS"
msgid "Hours"
msgstr "ຊົ່ວໂມງ"
-#: sc/inc/globstr.hrc:476
+#: sc/inc/globstr.hrc:477
msgctxt "STR_DPFIELD_GROUP_BY_DAYS"
msgid "Days"
msgstr "ມື້"
-#: sc/inc/globstr.hrc:477
+#: sc/inc/globstr.hrc:478
msgctxt "STR_DPFIELD_GROUP_BY_MONTHS"
msgid "Months"
msgstr "ເດືອນ"
-#: sc/inc/globstr.hrc:478
+#: sc/inc/globstr.hrc:479
msgctxt "STR_DPFIELD_GROUP_BY_QUARTERS"
msgid "Quarters"
msgstr ""
-#: sc/inc/globstr.hrc:479
+#: sc/inc/globstr.hrc:480
#, fuzzy
msgctxt "STR_DPFIELD_GROUP_BY_YEARS"
msgid "Years"
msgstr "ປີ"
-#: sc/inc/globstr.hrc:480
+#: sc/inc/globstr.hrc:481
#, fuzzy
msgctxt "STR_INVALIDVAL"
msgid "Invalid target value."
msgstr "ຄ່າເປົ້າໝາຍທີ່ໃຊ້ບໍ່ໄດ້."
-#: sc/inc/globstr.hrc:481
+#: sc/inc/globstr.hrc:482
#, fuzzy
msgctxt "STR_INVALIDVAR"
msgid "Undefined name for variable cell."
msgstr "ຊື່ທີ່ບໍ່ໄດ້ກຳນົດສຳລັບເຊວທີ່ປ່ຽນແປງ."
-#: sc/inc/globstr.hrc:482
+#: sc/inc/globstr.hrc:483
#, fuzzy
msgctxt "STR_INVALIDFORM"
msgid "Undefined name as formula cell."
msgstr "ຊື່ທີ່ບໍ່ໄດ້ກຳນົດທີ່ເປັນແບບເຊວ."
-#: sc/inc/globstr.hrc:483
+#: sc/inc/globstr.hrc:484
msgctxt "STR_NOFORMULA"
msgid "Formula cell must contain a formula."
msgstr ""
-#: sc/inc/globstr.hrc:484
+#: sc/inc/globstr.hrc:485
msgctxt "STR_INVALIDINPUT"
msgid "Invalid input."
msgstr ""
-#: sc/inc/globstr.hrc:485
+#: sc/inc/globstr.hrc:486
msgctxt "STR_INVALIDCONDITION"
msgid "Invalid condition."
msgstr ""
-#: sc/inc/globstr.hrc:486
+#: sc/inc/globstr.hrc:487
msgctxt "STR_QUERYREMOVE"
msgid ""
"Should the entry\n"
@@ -2404,137 +2409,137 @@ msgid ""
"be deleted?"
msgstr ""
-#: sc/inc/globstr.hrc:487
+#: sc/inc/globstr.hrc:488
msgctxt "STR_COPYLIST"
msgid "Copy List"
msgstr ""
-#: sc/inc/globstr.hrc:488
+#: sc/inc/globstr.hrc:489
msgctxt "STR_COPYFROM"
msgid "List from"
msgstr ""
-#: sc/inc/globstr.hrc:489
+#: sc/inc/globstr.hrc:490
msgctxt "STR_COPYERR"
msgid "Cells without text have been ignored."
msgstr ""
-#: sc/inc/globstr.hrc:490
+#: sc/inc/globstr.hrc:491
#, c-format
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%s-click to follow hyperlink:"
msgstr ""
-#: sc/inc/globstr.hrc:491
+#: sc/inc/globstr.hrc:492
msgctxt "STR_CLICKHYPERLINK"
msgid "click to open hyperlink:"
msgstr ""
-#: sc/inc/globstr.hrc:492
+#: sc/inc/globstr.hrc:493
msgctxt "STR_PRINT_PREVIEW_NODATA"
msgid "No Data"
msgstr ""
-#: sc/inc/globstr.hrc:493
+#: sc/inc/globstr.hrc:494
msgctxt "STR_PRINT_PREVIEW_EMPTY_RANGE"
msgid "Print Range Empty"
msgstr ""
-#: sc/inc/globstr.hrc:494
+#: sc/inc/globstr.hrc:495
#, fuzzy
msgctxt "STR_UNDO_CONDFORMAT"
msgid "Conditional Format"
msgstr "ການກຳນົດຮູບແບບເງື່ອນໄຂ"
-#: sc/inc/globstr.hrc:495
+#: sc/inc/globstr.hrc:496
#, fuzzy
msgctxt "STR_UNDO_CONDFORMAT_LIST"
msgid "Conditional Formats"
msgstr "ການກຳນົດຮູບແບບເງື່ອນໄຂ"
-#: sc/inc/globstr.hrc:496
+#: sc/inc/globstr.hrc:497
msgctxt "STR_UNDO_FORMULA_TO_VALUE"
msgid "Convert Formula To Value"
msgstr ""
-#: sc/inc/globstr.hrc:497
+#: sc/inc/globstr.hrc:498
msgctxt "STR_UNQUOTED_STRING"
msgid "Strings without quotes are interpreted as column/row labels."
msgstr ""
-#: sc/inc/globstr.hrc:498
+#: sc/inc/globstr.hrc:499
msgctxt "STR_ENTER_VALUE"
msgid "Enter a value!"
msgstr ""
-#: sc/inc/globstr.hrc:499
+#: sc/inc/globstr.hrc:500
msgctxt "STR_TABLE_COUNT"
msgid "Sheet %1 of %2"
msgstr ""
-#: sc/inc/globstr.hrc:500
+#: sc/inc/globstr.hrc:501
msgctxt "STR_FUNCTIONS_FOUND"
msgid "%1 and %2 more"
msgstr ""
-#: sc/inc/globstr.hrc:501
+#: sc/inc/globstr.hrc:502
#, fuzzy
msgctxt "STR_GENERAL"
msgid "General"
msgstr "ທົ່ວໄປ"
-#: sc/inc/globstr.hrc:502
+#: sc/inc/globstr.hrc:503
msgctxt "STR_NUMBER"
msgid "Number"
msgstr "ຕົວເລກ"
-#: sc/inc/globstr.hrc:503
+#: sc/inc/globstr.hrc:504
msgctxt "STR_PERCENT"
msgid "Percent"
msgstr ""
-#: sc/inc/globstr.hrc:504
+#: sc/inc/globstr.hrc:505
msgctxt "STR_CURRENCY"
msgid "Currency"
msgstr ""
-#: sc/inc/globstr.hrc:505
+#: sc/inc/globstr.hrc:506
msgctxt "STR_DATE"
msgid "Date"
msgstr "ວັນທີ່"
-#: sc/inc/globstr.hrc:506
+#: sc/inc/globstr.hrc:507
msgctxt "STR_TIME"
msgid "Time"
msgstr "ເວລາ"
-#: sc/inc/globstr.hrc:507
+#: sc/inc/globstr.hrc:508
msgctxt "STR_SCIENTIFIC"
msgid "Scientific"
msgstr ""
-#: sc/inc/globstr.hrc:508
+#: sc/inc/globstr.hrc:509
#, fuzzy
msgctxt "STR_FRACTION"
msgid "Fraction"
msgstr "ໜ້າທີ່"
-#: sc/inc/globstr.hrc:509
+#: sc/inc/globstr.hrc:510
msgctxt "STR_BOOLEAN_VALUE"
msgid "Boolean Value"
msgstr ""
-#: sc/inc/globstr.hrc:510
+#: sc/inc/globstr.hrc:511
msgctxt "STR_TEXT"
msgid "Text"
msgstr "ຂໍ້ຄວາມ"
-#: sc/inc/globstr.hrc:511
+#: sc/inc/globstr.hrc:512
msgctxt "STR_QUERY_PIVOTTABLE_DELTAB"
msgid "The selected sheet(s) contain source data of related pivot tables that will be lost. Are you sure you want to delete the selected sheet(s)?"
msgstr ""
-#: sc/inc/globstr.hrc:512
+#: sc/inc/globstr.hrc:513
msgctxt "STR_ERR_NAME_INVALID_CELL_REF"
msgid "Invalid name. Reference to a cell, or a range of cells not allowed."
msgstr ""
@@ -10687,8 +10692,8 @@ msgstr "ວິທີ"
#: sc/inc/scfuncs.hrc:3010
msgctxt "SC_OPCODE_T_TEST"
-msgid "Mode specifies the number of distribution tails to return. 1= one-tailed, 2 = two-tailed distribution"
-msgstr "ແບບວິທີລະບຸຕົວເລກຂອງຕອນທ້າຍການແຈກຍາຍເພື່ອສົ່ງຄືນ. 1= ຕອນທ້າຍທີ່ໜຶ່ງ, 2 = ການແຈກຍາຍຕອນທ້ານທີ່ສອງ"
+msgid "Mode specifies the number of distribution tails to return. 1 = one-tailed, 2 = two-tailed distribution"
+msgstr ""
#: sc/inc/scfuncs.hrc:3011
msgctxt "SC_OPCODE_T_TEST"
@@ -10734,8 +10739,8 @@ msgstr "ວິທີ"
#: sc/inc/scfuncs.hrc:3024
msgctxt "SC_OPCODE_T_TEST_MS"
-msgid "Mode specifies the number of distribution tails to return. 1= one-tailed, 2 = two-tailed distribution"
-msgstr "ແບບວິທີລະບຸຕົວເລກຂອງຕອນທ້າຍການແຈກຍາຍເພື່ອສົ່ງຄືນ. 1= ຕອນທ້າຍທີ່ໜຶ່ງ, 2 = ການແຈກຍາຍຕອນທ້ານທີ່ສອງ"
+msgid "Mode specifies the number of distribution tails to return. 1 = one-tailed, 2 = two-tailed distribution"
+msgstr ""
#: sc/inc/scfuncs.hrc:3025
msgctxt "SC_OPCODE_T_TEST_MS"
@@ -18509,22 +18514,22 @@ msgctxt "mergecellsdialog|MergeCellsDialog"
msgid "Merge Cells"
msgstr "ຮ່ວເຊວເຂົ້າກັນ"
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:81
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:84
msgctxt "mergecellsdialog|label"
msgid "Some cells are not empty."
msgstr ""
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:96
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:99
msgctxt "mergecellsdialog|move-cells-radio"
msgid "Move the contents of the hidden cells into the first cell"
msgstr ""
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:112
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:115
msgctxt "mergecellsdialog|empty-cells-radio"
msgid "Empty the contents of the hidden cells"
msgstr ""
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:128
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:131
msgctxt "mergecellsdialog|keep-content-radio"
msgid "Keep the contents of the hidden cells"
msgstr ""
diff --git a/source/lo/sd/messages.po b/source/lo/sd/messages.po
index 64d016cf638..978f97238ee 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+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"
@@ -13,174 +13,174 @@ msgstr ""
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-#: sd/inc/DocumentRenderer.hrc:29
+#: sd/inc/DocumentRenderer.hrc:27
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Slides"
msgstr "ສະໄລ້"
-#: sd/inc/DocumentRenderer.hrc:30
+#: sd/inc/DocumentRenderer.hrc:28
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Handouts"
msgstr "ສ່ົງໄປ"
-#: sd/inc/DocumentRenderer.hrc:31
+#: sd/inc/DocumentRenderer.hrc:29
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Notes"
msgstr "ບັນທຶກ"
-#: sd/inc/DocumentRenderer.hrc:32
+#: sd/inc/DocumentRenderer.hrc:30
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Outline"
msgstr "ໂຄງເສັນ"
-#: sd/inc/DocumentRenderer.hrc:37
+#: sd/inc/DocumentRenderer.hrc:35
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "According to layout"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:38
+#: sd/inc/DocumentRenderer.hrc:36
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "1"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:39
+#: sd/inc/DocumentRenderer.hrc:37
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "2"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:40
+#: sd/inc/DocumentRenderer.hrc:38
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "3"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:41
+#: sd/inc/DocumentRenderer.hrc:39
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "4"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:42
+#: sd/inc/DocumentRenderer.hrc:40
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "6"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:43
+#: sd/inc/DocumentRenderer.hrc:41
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "9"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:48
+#: sd/inc/DocumentRenderer.hrc:46
msgctxt "STR_IMPRESS_PRINT_UI_ORDER_CHOICES"
msgid "Left to right, then down"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:49
+#: sd/inc/DocumentRenderer.hrc:47
msgctxt "STR_IMPRESS_PRINT_UI_ORDER_CHOICES"
msgid "Top to bottom, then right"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:54
+#: sd/inc/DocumentRenderer.hrc:52
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Original colors"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:55
+#: sd/inc/DocumentRenderer.hrc:53
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Grayscale"
msgstr "ສີເທົາ"
-#: sd/inc/DocumentRenderer.hrc:56
+#: sd/inc/DocumentRenderer.hrc:54
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Black & white"
msgstr "ສະດຳ ແລະ ~ສີຂາວ"
-#: sd/inc/DocumentRenderer.hrc:61
+#: sd/inc/DocumentRenderer.hrc:59
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Original size"
msgstr "ຂະໜາດຕົວຈິງ"
-#: sd/inc/DocumentRenderer.hrc:62
+#: sd/inc/DocumentRenderer.hrc:60
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Fit to printable page"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:63
+#: sd/inc/DocumentRenderer.hrc:61
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Distribute on multiple sheets of paper"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:64
+#: sd/inc/DocumentRenderer.hrc:62
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Tile sheet of paper with repeated slides"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:69
+#: sd/inc/DocumentRenderer.hrc:67
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Original size"
msgstr "ຂະໜາດຕົວຈິງ"
-#: sd/inc/DocumentRenderer.hrc:70
+#: sd/inc/DocumentRenderer.hrc:68
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Fit to printable page"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:71
+#: sd/inc/DocumentRenderer.hrc:69
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Distribute on multiple sheets of paper"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:72
+#: sd/inc/DocumentRenderer.hrc:70
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Tile sheet of paper with repeated pages"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:77
+#: sd/inc/DocumentRenderer.hrc:75
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "All pages"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:78
+#: sd/inc/DocumentRenderer.hrc:76
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "Front sides / right pages"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:79
+#: sd/inc/DocumentRenderer.hrc:77
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "Back sides / left pages"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:84
+#: sd/inc/DocumentRenderer.hrc:82
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~All slides"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:85
+#: sd/inc/DocumentRenderer.hrc:83
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~Slides"
msgstr "ສະໄລ້"
-#: sd/inc/DocumentRenderer.hrc:86
+#: sd/inc/DocumentRenderer.hrc:84
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Se~lection"
msgstr "ການເລືອກ"
-#: sd/inc/DocumentRenderer.hrc:91
+#: sd/inc/DocumentRenderer.hrc:89
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~All pages"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:92
+#: sd/inc/DocumentRenderer.hrc:90
#, fuzzy
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Pa~ges"
msgstr "ໜ້າ"
-#: sd/inc/DocumentRenderer.hrc:93
+#: sd/inc/DocumentRenderer.hrc:91
#, fuzzy
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Se~lection"
diff --git a/source/lo/svx/messages.po b/source/lo/svx/messages.po
index adad26a7371..27f03d0bca4 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: 2018-05-16 16:53+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+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"
@@ -5484,7 +5484,7 @@ msgstr ""
#: svx/uiconfig/ui/safemodedialog.ui:432
msgctxt "safemodedialog|btn_create_zip"
-msgid "Create Zip Archive from User Profile"
+msgid "Archive User Profile"
msgstr ""
#: svx/uiconfig/ui/safemodedialog.ui:445
@@ -9165,9 +9165,9 @@ msgid "Red"
msgstr "ສີແດງ"
#: include/svx/strings.hrc:565
-msgctxt "RID_SVXSTR_COLOR_VIOLET"
-msgid "Violet"
-msgstr "ຄວາມຮຸນແຮງ"
+msgctxt "RID_SVXSTR_COLOR_MAGENTA"
+msgid "Magenta"
+msgstr ""
#: include/svx/strings.hrc:566
msgctxt "RID_SVXSTR_COLOR_PURPLE"
@@ -9233,8 +9233,8 @@ msgid "Light Red"
msgstr ""
#: include/svx/strings.hrc:579
-msgctxt "RID_SVXSTR_COLOR_LIGHTVIOLET"
-msgid "Light Violet"
+msgctxt "RID_SVXSTR_COLOR_LIGHTMAGENTA"
+msgid "Light Magenta"
msgstr ""
#: include/svx/strings.hrc:580
@@ -9301,8 +9301,8 @@ msgid "Dark Red"
msgstr "ແດງກ່ຳ"
#: include/svx/strings.hrc:593
-msgctxt "RID_SVXSTR_COLOR_DARKVIOLET1"
-msgid "Dark Violet"
+msgctxt "RID_SVXSTR_COLOR_DARKMAGENTA"
+msgid "Dark Magenta"
msgstr ""
#: include/svx/strings.hrc:594
@@ -9337,55 +9337,55 @@ msgstr ""
#. Elements of the Tonal color palette
#: include/svx/strings.hrc:601
+msgctxt "RID_SVXSTR_COLOR_VIOLET"
+msgid "Violet"
+msgstr "ຄວາມຮຸນແຮງ"
+
+#: include/svx/strings.hrc:602
msgctxt "RID_SVXSTR_COLOR_VIOLET_OUG"
msgid "Violet (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:602
+#: include/svx/strings.hrc:603
msgctxt "RID_SVXSTR_COLOR_BLUE_OUG"
msgid "Blue (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:603
+#: include/svx/strings.hrc:604
msgctxt "RID_SVXSTR_COLOR_AZURE_OUG"
msgid "Azure (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:604
+#: include/svx/strings.hrc:605
msgctxt "RID_SVXSTR_COLOR_SPRINGGREEN_OUG"
msgid "Spring Green (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:605
+#: include/svx/strings.hrc:606
msgctxt "RID_SVXSTR_COLOR_GREEN_OUG"
msgid "Green (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:606
+#: include/svx/strings.hrc:607
msgctxt "RID_SVXSTR_COLOR_CHARTREUSEGREEN_OUG"
msgid "Chartreuse Green (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:607
+#: include/svx/strings.hrc:608
msgctxt "RID_SVXSTR_COLOR_ORANGE_OUG"
msgid "Orange (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:608
+#: include/svx/strings.hrc:609
msgctxt "RID_SVXSTR_COLOR_RED_OUG"
msgid "Red (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:609
+#: include/svx/strings.hrc:610
msgctxt "RID_SVXSTR_COLOR_ROSE_OUG"
msgid "Rose (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:610
-msgctxt "RID_SVXSTR_COLOR_MAGENTA"
-msgid "Magenta"
-msgstr ""
-
#: include/svx/strings.hrc:611
msgctxt "RID_SVXSTR_COLOR_AZURE"
msgid "Azure"
@@ -12551,12 +12551,12 @@ msgstr ""
#: include/svx/strings.hrc:1273
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_6"
-msgid "Check mark bullets"
+msgid "Cross mark bullets"
msgstr ""
#: include/svx/strings.hrc:1274
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_7"
-msgid "Tick mark bullets"
+msgid "Check mark bullets"
msgstr ""
#: include/svx/strings.hrc:1275
diff --git a/source/lo/sw/messages.po b/source/lo/sw/messages.po
index 329f7848d93..04123007a8c 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: 2018-05-22 13:17+0200\n"
+"POT-Creation-Date: 2018-06-12 14:41+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"
@@ -1205,13 +1205,13 @@ msgstr "ໃບສະເໜີລາຄາ"
#: sw/inc/strings.hrc:172
msgctxt "STR_POOLCOLL_TOX_ILLUSH"
-msgid "Illustration Index Heading"
-msgstr "ສ່ວນຫົວດັດສະນີພາບປະກອບອະທິບາຍ"
+msgid "Figure Index Heading"
+msgstr ""
#: sw/inc/strings.hrc:173
msgctxt "STR_POOLCOLL_TOX_ILLUS1"
-msgid "Illustration Index 1"
-msgstr "ດັດສະນີພາບອະທິບາຍ 1"
+msgid "Figure Index 1"
+msgstr ""
#: sw/inc/strings.hrc:174
#, fuzzy
@@ -3697,10 +3697,9 @@ msgid "Table of Objects"
msgstr ""
#: sw/inc/strings.hrc:672
-#, fuzzy
msgctxt "STR_TOX_ILL"
-msgid "Illustration Index"
-msgstr "ດັດສະນີພາບອະທິບາຍ 1"
+msgid "Table of Figures"
+msgstr ""
#: sw/inc/strings.hrc:673
#, c-format
@@ -9714,81 +9713,81 @@ msgctxt "footnotepage|label5"
msgid "Continuation Notice"
msgstr "ສັງເກດຕໍ່ໄປເລື່ອຍໆ"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:49
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:55
#, fuzzy
msgctxt "footnotesendnotestabpage|ftnntnum"
msgid "_Restart numbering"
msgstr "ເຮັດການຈັດລຽນຕາມຕົວເລກຄືນ"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:91
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:93
#, fuzzy
msgctxt "footnotesendnotestabpage|ftnoffset_label"
msgid "_Start at:"
msgstr "~ເລີ່ມຕົ້ນທີ່"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:112
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:111
msgctxt "footnotesendnotestabpage|ftnntnumfmt"
msgid "Custom _format"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:155
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:150
#, fuzzy
msgctxt "footnotesendnotestabpage|ftnsuffix_label"
msgid "Aft_er:"
msgstr "~ຫຼັງ"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:199
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:188
#, fuzzy
msgctxt "footnotesendnotestabpage|ftnprefix_label"
msgid "Be_fore:"
msgstr "~ກ່ອນ"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:228
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:212
msgctxt "footnotesendnotestabpage|ftnntattextend"
msgid "Collec_t at end of text"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:252
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:234
#, fuzzy
msgctxt "footnotesendnotestabpage|label1"
msgid "Footnotes"
msgstr "ໝາຍເຫດທ້າຍໜ້າ"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:289
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:271
msgctxt "footnotesendnotestabpage|endntattextend"
msgid "C_ollect at end of section"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:315
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:295
#, fuzzy
msgctxt "footnotesendnotestabpage|endntnum"
msgid "_Restart numbering"
msgstr "ເຮັດການຈັດລຽນຕາມຕົວເລກຄືນ"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:357
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:333
#, fuzzy
msgctxt "footnotesendnotestabpage|endoffset_label"
msgid "_Start at:"
msgstr "~ເລີ່ມຕົ້ນທີ່"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:378
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:351
msgctxt "footnotesendnotestabpage|endntnumfmt"
msgid "_Custom format"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:421
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:390
#, fuzzy
msgctxt "footnotesendnotestabpage|endsuffix_label"
msgid "Aft_er:"
msgstr "~ຫຼັງ"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:465
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:428
#, fuzzy
msgctxt "footnotesendnotestabpage|endprefix_label"
msgid "Be_fore:"
msgstr "~ກ່ອນ"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:500
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:458
#, fuzzy
msgctxt "footnotesendnotestabpage|label2"
msgid "Endnotes"
@@ -9822,29 +9821,29 @@ msgctxt "formatsectiondialog|notes"
msgid "Footnotes/Endnotes"
msgstr "ໝາຍເຫດລຸ່ມສຸດໜ້າເຈ້ຍ~..."
-#: sw/uiconfig/swriter/ui/formattablepage.ui:63
+#: sw/uiconfig/swriter/ui/formattablepage.ui:77
#, fuzzy
msgctxt "formattablepage|nameft"
msgid "_Name"
msgstr "ຊື່"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:79
+#: sw/uiconfig/swriter/ui/formattablepage.ui:91
#, fuzzy
msgctxt "formattablepage|widthft"
msgid "W_idth"
msgstr "ຄວາມກ້ວາງ"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:110
+#: sw/uiconfig/swriter/ui/formattablepage.ui:120
msgctxt "formattablepage|relwidth"
msgid "Relati_ve"
msgstr ""
-#: sw/uiconfig/swriter/ui/formattablepage.ui:155
+#: sw/uiconfig/swriter/ui/formattablepage.ui:160
msgctxt "formattablepage|label45"
msgid "Properties"
msgstr "ຄຸນສົມບັດ"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:194
+#: sw/uiconfig/swriter/ui/formattablepage.ui:195
#, fuzzy
msgctxt "formattablepage|leftft"
msgid "Lef_t"
@@ -9856,71 +9855,71 @@ msgctxt "formattablepage|rightft"
msgid "Ri_ght"
msgstr "ຂວາ"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:228
+#: sw/uiconfig/swriter/ui/formattablepage.ui:226
#, fuzzy
msgctxt "formattablepage|aboveft"
msgid "_Above"
msgstr "ຂ້າງເທິງ"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:245
+#: sw/uiconfig/swriter/ui/formattablepage.ui:241
#, fuzzy
msgctxt "formattablepage|belowft"
msgid "_Below"
msgstr "ຂ້າງລຸ່ມ"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:320
+#: sw/uiconfig/swriter/ui/formattablepage.ui:311
msgctxt "formattablepage|label46"
msgid "Spacing"
msgstr "~ການເວັ້ນວ່າງ"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:362
+#: sw/uiconfig/swriter/ui/formattablepage.ui:349
#, fuzzy
msgctxt "formattablepage|full"
msgid "A_utomatic"
msgstr "ອັດຕະໂນມັດ"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:380
+#: sw/uiconfig/swriter/ui/formattablepage.ui:365
#, fuzzy
msgctxt "formattablepage|left"
msgid "_Left"
msgstr "ຊ້າຍ"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:398
+#: sw/uiconfig/swriter/ui/formattablepage.ui:381
#, fuzzy
msgctxt "formattablepage|fromleft"
msgid "_From left"
msgstr "ຈາກທາງຊ້າຍ"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:416
+#: sw/uiconfig/swriter/ui/formattablepage.ui:397
#, fuzzy
msgctxt "formattablepage|right"
msgid "R_ight"
msgstr "ຂວາ"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:435
+#: sw/uiconfig/swriter/ui/formattablepage.ui:413
#, fuzzy
msgctxt "formattablepage|center"
msgid "_Center"
msgstr "ທາງກາງ"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:453
+#: sw/uiconfig/swriter/ui/formattablepage.ui:429
#, fuzzy
msgctxt "formattablepage|free"
msgid "_Manual"
msgstr "~ດ້ວຍມື"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:478
+#: sw/uiconfig/swriter/ui/formattablepage.ui:452
msgctxt "formattablepage|label43"
msgid "Alignment"
msgstr "ຈັດລຽນ"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:522
+#: sw/uiconfig/swriter/ui/formattablepage.ui:491
#, fuzzy
msgctxt "formattablepage|label53"
msgid "Text _direction"
msgstr "~ທິດທາງຂໍ້ຄວາມ"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:553
+#: sw/uiconfig/swriter/ui/formattablepage.ui:519
#, fuzzy
msgctxt "formattablepage|label44"
msgid "Properties "
@@ -10310,22 +10309,27 @@ msgctxt "headerfootermenu|insert_pagenumber"
msgid "Insert Page Number"
msgstr ""
-#: sw/uiconfig/swriter/ui/indentpage.ui:52
+#: sw/uiconfig/swriter/ui/headerfootermenu.ui:42
+msgctxt "headerfootermenu|insert_pagecount"
+msgid "Insert Page Count"
+msgstr ""
+
+#: sw/uiconfig/swriter/ui/indentpage.ui:57
msgctxt "indentpage|label1"
msgid "_Before section"
msgstr ""
-#: sw/uiconfig/swriter/ui/indentpage.ui:67
+#: sw/uiconfig/swriter/ui/indentpage.ui:71
msgctxt "indentpage|label3"
msgid "_After section"
msgstr ""
-#: sw/uiconfig/swriter/ui/indentpage.ui:113
+#: sw/uiconfig/swriter/ui/indentpage.ui:115
msgctxt "indentpage|label2"
msgid "Indent"
msgstr "ປະທັບຕາ"
-#: sw/uiconfig/swriter/ui/indentpage.ui:142
+#: sw/uiconfig/swriter/ui/indentpage.ui:155
msgctxt "indentpage|preview-atkobject"
msgid "Example"
msgstr "ຕົວຢາງ"
@@ -14132,7 +14136,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:68
msgctxt "optcompatpage|format"
-msgid "MS Word-compatible trailing blanks"
+msgid "Word-compatible trailing blanks"
msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:69
@@ -14142,7 +14146,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:70
msgctxt "optcompatpage|format"
-msgid "A database field (e.g., MailMerge) with empty value hides its paragraph"
+msgid "Hide paragraphs of database fields (e.g., mail merge) with an empty value"
msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:71
@@ -17065,137 +17069,137 @@ msgctxt "tableproperties|background"
msgid "Background"
msgstr "ພື້ນຫຼັງ"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:25
-#, fuzzy
-msgctxt "tabletextflowpage|liststore1"
-msgid "Horizontal"
-msgstr "ແນວນອນ"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:29
-#, fuzzy
-msgctxt "tabletextflowpage|liststore1"
-msgid "Vertical"
-msgstr "ແນວຕັ້ງ"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:33
-msgctxt "tabletextflowpage|liststore1"
-msgid "Use superordinate object settings"
-msgstr "ນຳໃຊ້ການຕິດຕັ້ງຜູ້ສັ່ງການລະດັບສູງ"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:47
-#, fuzzy
-msgctxt "tabletextflowpage|liststore2"
-msgid "Top"
-msgstr "ເທິງ"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:51
-msgctxt "tabletextflowpage|liststore2"
-msgid "Centered"
-msgstr "ຈຸດສູນກາງ"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:55
-#, fuzzy
-msgctxt "tabletextflowpage|liststore2"
-msgid "Bottom"
-msgstr "ລຸ່ມ"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:97
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:53
#, fuzzy
msgctxt "tabletextflowpage|break"
msgid "_Break"
msgstr "~ຢຸດ"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:112
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:68
#, fuzzy
msgctxt "tabletextflowpage|page"
msgid "_Page"
msgstr "ໜ້າ"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:132
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:87
#, fuzzy
msgctxt "tabletextflowpage|column"
msgid "Col_umn"
msgstr "ຖັນ"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:151
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:106
#, fuzzy
msgctxt "tabletextflowpage|before"
msgid "Be_fore"
msgstr "~ກ່ອນ"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:171
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:125
#, fuzzy
msgctxt "tabletextflowpage|after"
msgid "_After"
msgstr "~ຫຼັງ"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:203
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:158
#, fuzzy
msgctxt "tabletextflowpage|pagestyle"
msgid "With Page St_yle"
msgstr "ແກ້ໄຂຮູບແບບໜ້າ"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:224
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:177
#, fuzzy
msgctxt "tabletextflowpage|pagenoft"
msgid "Page _number"
msgstr "ເລກໜ້າ"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:257
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:213
#, fuzzy
msgctxt "tabletextflowpage|pagestylelb-atkobject"
msgid "With Page Style"
msgstr "ແກ້ໄຂຮູບແບບໜ້າ"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:274
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:230
msgctxt "tabletextflowpage|split"
msgid "Allow _table to split across pages and columns"
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:289
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:245
#, fuzzy
msgctxt "tabletextflowpage|splitrow"
msgid "Allow row to break a_cross pages and columns"
msgstr "ອະນຸຍາດໃຫ້ແຖວຢຸດໜ້າກົງຂ້າມແລະຖັນ"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:306
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:262
#, fuzzy
msgctxt "tabletextflowpage|keep"
msgid "_Keep with next paragraph"
msgstr "~ຮັກສາຫຍໍ້ໜ້າຕໍ່ໄປ"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:328
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:284
msgctxt "tabletextflowpage|label40"
msgid "Text _orientation"
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:361
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:298
+#, fuzzy
+msgctxt "tabletextflowpage|liststore1"
+msgid "Horizontal"
+msgstr "ແນວນອນ"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:299
+#, fuzzy
+msgctxt "tabletextflowpage|liststore1"
+msgid "Vertical"
+msgstr "ແນວຕັ້ງ"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:300
+msgctxt "tabletextflowpage|liststore1"
+msgid "Use superordinate object settings"
+msgstr "ນຳໃຊ້ການຕິດຕັ້ງຜູ້ສັ່ງການລະດັບສູງ"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:321
#, fuzzy
msgctxt "tabletextflowpage|headline"
msgid "R_epeat heading"
msgstr "ເຮັດຄືນສ່ວນຫົວ"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:383
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:343
msgctxt "tabletextflowpage|label38"
msgid "The first "
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:396
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:356
msgctxt "tabletextflowpage|label39"
msgid "rows"
msgstr "ແຖວ"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:434
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:395
msgctxt "tabletextflowpage|label35"
msgid "Text Flow"
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:467
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:428
msgctxt "tabletextflowpage|label41"
msgid "_Vertical alignment"
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:495
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:442
+#, fuzzy
+msgctxt "tabletextflowpage|liststore2"
+msgid "Top"
+msgstr "ເທິງ"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:443
+msgctxt "tabletextflowpage|liststore2"
+msgid "Centered"
+msgstr "ຈຸດສູນກາງ"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:444
+#, fuzzy
+msgctxt "tabletextflowpage|liststore2"
+msgid "Bottom"
+msgstr "ລຸ່ມ"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:460
msgctxt "tabletextflowpage|label36"
msgid "Alignment"
msgstr "ຈັດລຽນ"
@@ -18033,10 +18037,9 @@ msgid "Alphabetical Index"
msgstr ""
#: sw/uiconfig/swriter/ui/tocindexpage.ui:58
-#, fuzzy
msgctxt "tocindexpage|liststore1"
-msgid "Illustration Index"
-msgstr "ດັດສະນີພາບອະທິບາຍ 1"
+msgid "Table of Figures"
+msgstr ""
#: sw/uiconfig/swriter/ui/tocindexpage.ui:62
msgctxt "tocindexpage|liststore1"
diff --git a/source/lo/writerperfect/messages.po b/source/lo/writerperfect/messages.po
index f9b94f120f0..b86b1f457d1 100644
--- a/source/lo/writerperfect/messages.po
+++ b/source/lo/writerperfect/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-16 16:54+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2018-02-04 14:48+0000\n"
"Last-Translator: phommasy <phommasy.ai@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -66,97 +66,97 @@ msgctxt "exportepub|generalft"
msgid "General"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:122
+#: writerperfect/uiconfig/ui/exportepub.ui:121
msgctxt "exportepub|versionft"
msgid "Version:"
msgstr "ລຸ້ນ:"
-#: writerperfect/uiconfig/ui/exportepub.ui:139
+#: writerperfect/uiconfig/ui/exportepub.ui:138
msgctxt "exportepub|epub3"
msgid "EPUB 3.0"
msgstr "EPUB 3.0"
-#: writerperfect/uiconfig/ui/exportepub.ui:140
+#: writerperfect/uiconfig/ui/exportepub.ui:139
msgctxt "exportepub|epub2"
msgid "EPUB 2.0"
msgstr "EPUB 2.0"
-#: writerperfect/uiconfig/ui/exportepub.ui:175
+#: writerperfect/uiconfig/ui/exportepub.ui:174
msgctxt "exportepub|splitft"
msgid "Split method:"
msgstr "ວິທີການແບ່ງປັນ:"
-#: writerperfect/uiconfig/ui/exportepub.ui:192
+#: writerperfect/uiconfig/ui/exportepub.ui:191
msgctxt "exportepub|splitpage"
msgid "Page break"
msgstr "ແບ່ງໜ້າ"
-#: writerperfect/uiconfig/ui/exportepub.ui:193
+#: writerperfect/uiconfig/ui/exportepub.ui:192
msgctxt "exportepub|splitheading"
msgid "Heading"
msgstr "ສ່ວນຫົວ"
-#: writerperfect/uiconfig/ui/exportepub.ui:228
+#: writerperfect/uiconfig/ui/exportepub.ui:227
msgctxt "exportepub|layoutft"
msgid "Layout method:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:245
+#: writerperfect/uiconfig/ui/exportepub.ui:244
msgctxt "exportepub|layoutreflowable"
msgid "Reflowable"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:246
+#: writerperfect/uiconfig/ui/exportepub.ui:245
msgctxt "exportepub|layoutfixed"
msgid "Fixed"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:281
+#: writerperfect/uiconfig/ui/exportepub.ui:280
msgctxt "exportepub|coverimageft"
msgid "Custom cover image:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:311
+#: writerperfect/uiconfig/ui/exportepub.ui:310
msgctxt "exportepub|coverbutton"
msgid "Browse..."
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:355
+#: writerperfect/uiconfig/ui/exportepub.ui:354
msgctxt "exportepub|mediadirft"
msgid "Custom media directory:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:385
+#: writerperfect/uiconfig/ui/exportepub.ui:384
msgctxt "exportepub|mediabutton"
msgid "Browse..."
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:429
+#: writerperfect/uiconfig/ui/exportepub.ui:428
msgctxt "exportepub|metadataft"
msgid "Metadata"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:470
+#: writerperfect/uiconfig/ui/exportepub.ui:468
msgctxt "exportepub|identifierft"
msgid "Identifier:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:485
+#: writerperfect/uiconfig/ui/exportepub.ui:483
msgctxt "exportepub|titleft"
msgid "Title:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:511
+#: writerperfect/uiconfig/ui/exportepub.ui:509
msgctxt "exportepub|authorft"
msgid "Author:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:537
+#: writerperfect/uiconfig/ui/exportepub.ui:535
msgctxt "exportepub|languageft"
msgid "Language:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:563
+#: writerperfect/uiconfig/ui/exportepub.ui:561
msgctxt "exportepub|dateft"
msgid "Date:"
msgstr ""
diff --git a/source/lt/chart2/messages.po b/source/lt/chart2/messages.po
index 3ec7b998462..27c888e5f96 100644
--- a/source/lt/chart2/messages.po
+++ b/source/lt/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: 2018-05-22 13:16+0200\n"
-"PO-Revision-Date: 2018-03-22 12:57+0000\n"
+"PO-Revision-Date: 2018-06-13 20:02+0000\n"
"Last-Translator: Modestas Rimkus <modestas.rimkus@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: lt\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1521723461.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1528920126.000000\n"
#: chart2/inc/strings.hrc:24
msgctxt "STR_DLG_CHART_WIZARD"
@@ -1161,7 +1161,7 @@ msgstr "Procentai"
#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:237
msgctxt "dlg_InsertErrorBars|RB_RANGE"
msgid "Cell _Range"
-msgstr "Langelių sritis"
+msgstr "Langelių blokas"
#: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:260
msgctxt "dlg_InsertErrorBars|label1"
@@ -1636,7 +1636,7 @@ msgstr "Procentai"
#: chart2/uiconfig/ui/sidebarerrorbar.ui:66
msgctxt "sidebarerrorbar|comboboxtext_type"
msgid "Cell Range or Data Table"
-msgstr "Langelių sritis arba duomenų lentelė"
+msgstr "Langelių blokas arba duomenų lentelė"
#: chart2/uiconfig/ui/sidebarerrorbar.ui:67
msgctxt "sidebarerrorbar|comboboxtext_type"
@@ -2501,7 +2501,7 @@ msgstr "Procentai"
#: chart2/uiconfig/ui/tp_ErrorBars.ui:172
msgctxt "tp_ErrorBars|RB_RANGE"
msgid "Cell _Range"
-msgstr "Langelių sritis"
+msgstr "Langelių blokas"
#: chart2/uiconfig/ui/tp_ErrorBars.ui:196
msgctxt "tp_ErrorBars|label1"
diff --git a/source/lt/cui/messages.po b/source/lt/cui/messages.po
index c835ba3ef9f..6833a183f4a 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2018-05-11 20:03+0000\n"
"Last-Translator: Modestas Rimkus <modestas.rimkus@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -9873,97 +9873,97 @@ msgctxt "positionsizedialog|PositionAndSizeDialog"
msgid "Position and Size"
msgstr "Padėtis ir dydis"
-#: cui/uiconfig/ui/positionsizedialog.ui:107
+#: cui/uiconfig/ui/positionsizedialog.ui:136
msgctxt "positionsizedialog|RID_SVXPAGE_POSITION_SIZE"
msgid "Position and Size"
msgstr "Padėtis ir dydis"
-#: cui/uiconfig/ui/positionsizedialog.ui:129
+#: cui/uiconfig/ui/positionsizedialog.ui:182
msgctxt "positionsizedialog|RID_SVXPAGE_SWPOSSIZE"
msgid "Position and Size"
msgstr "Padėtis ir dydis"
-#: cui/uiconfig/ui/positionsizedialog.ui:152
+#: cui/uiconfig/ui/positionsizedialog.ui:229
msgctxt "positionsizedialog|RID_SVXPAGE_ANGLE"
msgid "Rotation"
msgstr "Posūkis"
-#: cui/uiconfig/ui/positionsizedialog.ui:175
+#: cui/uiconfig/ui/positionsizedialog.ui:276
msgctxt "positionsizedialog|RID_SVXPAGE_SLANT"
msgid "Slant & Corner Radius"
msgstr "Nuožulnumas ir kampo spindulys"
-#: cui/uiconfig/ui/possizetabpage.ui:40
+#: cui/uiconfig/ui/possizetabpage.ui:61
msgctxt "possizetabpage|FT_POS_X"
msgid "Position _X:"
msgstr "Padėtis X:"
-#: cui/uiconfig/ui/possizetabpage.ui:56
+#: cui/uiconfig/ui/possizetabpage.ui:75
msgctxt "possizetabpage|FT_POS_Y"
msgid "Position _Y:"
msgstr "Padėtis Y:"
-#: cui/uiconfig/ui/possizetabpage.ui:110
+#: cui/uiconfig/ui/possizetabpage.ui:128
msgctxt "possizetabpage|FT_POSREFERENCE"
msgid "_Base point:"
msgstr "Pagrindinis taškas:"
-#: cui/uiconfig/ui/possizetabpage.ui:148
+#: cui/uiconfig/ui/possizetabpage.ui:182
msgctxt "possizetabpage|label1"
msgid "Position"
msgstr "Padėtis"
-#: cui/uiconfig/ui/possizetabpage.ui:190
+#: cui/uiconfig/ui/possizetabpage.ui:224
msgctxt "possizetabpage|FT_WIDTH"
msgid "Wi_dth:"
msgstr "Plotis:"
-#: cui/uiconfig/ui/possizetabpage.ui:206
+#: cui/uiconfig/ui/possizetabpage.ui:238
msgctxt "possizetabpage|FT_HEIGHT"
msgid "H_eight:"
msgstr "Aukštis:"
-#: cui/uiconfig/ui/possizetabpage.ui:247
+#: cui/uiconfig/ui/possizetabpage.ui:276
msgctxt "possizetabpage|CBX_SCALE"
msgid "_Keep ratio"
msgstr "Išlaikyti proporcijas"
-#: cui/uiconfig/ui/possizetabpage.ui:279
+#: cui/uiconfig/ui/possizetabpage.ui:307
msgctxt "possizetabpage|FT_SIZEREFERENCE"
msgid "Base _point:"
msgstr "Pagrindinis taškas:"
-#: cui/uiconfig/ui/possizetabpage.ui:317
+#: cui/uiconfig/ui/possizetabpage.ui:361
msgctxt "possizetabpage|label2"
msgid "Size"
msgstr "Dydis"
-#: cui/uiconfig/ui/possizetabpage.ui:356
+#: cui/uiconfig/ui/possizetabpage.ui:401
msgctxt "possizetabpage|TSB_POSPROTECT"
msgid "Positio_n"
msgstr "Padėtį"
-#: cui/uiconfig/ui/possizetabpage.ui:373
+#: cui/uiconfig/ui/possizetabpage.ui:418
msgctxt "possizetabpage|TSB_SIZEPROTECT"
msgid "_Size"
msgstr "Dydį"
-#: cui/uiconfig/ui/possizetabpage.ui:397
+#: cui/uiconfig/ui/possizetabpage.ui:441
msgctxt "possizetabpage|label3"
msgid "Protect"
msgstr "Apsaugoti"
-#: cui/uiconfig/ui/possizetabpage.ui:430
+#: cui/uiconfig/ui/possizetabpage.ui:475
msgctxt "possizetabpage|TSB_AUTOGROW_WIDTH"
msgid "_Fit width to text"
msgstr "Plotį prie teksto"
-#: cui/uiconfig/ui/possizetabpage.ui:447
+#: cui/uiconfig/ui/possizetabpage.ui:492
msgctxt "possizetabpage|TSB_AUTOGROW_HEIGHT"
msgid "Fit _height to text"
msgstr "Aukštį prie teksto"
-#: cui/uiconfig/ui/possizetabpage.ui:471
+#: cui/uiconfig/ui/possizetabpage.ui:515
msgctxt "possizetabpage|label4"
msgid "Adapt"
msgstr "Pritaikyti"
@@ -10163,47 +10163,47 @@ msgctxt "recordnumberdialog|label2"
msgid "go to record"
msgstr "pereiti prie įrašo"
-#: cui/uiconfig/ui/rotationtabpage.ui:52
+#: cui/uiconfig/ui/rotationtabpage.ui:56
msgctxt "rotationtabpage|FT_POS_X"
msgid "Position _X:"
msgstr "Padėtis X:"
-#: cui/uiconfig/ui/rotationtabpage.ui:66
+#: cui/uiconfig/ui/rotationtabpage.ui:70
msgctxt "rotationtabpage|FT_POS_Y"
msgid "Position _Y:"
msgstr "Padėtis Y:"
-#: cui/uiconfig/ui/rotationtabpage.ui:116
+#: cui/uiconfig/ui/rotationtabpage.ui:123
msgctxt "rotationtabpage|FT_POSPRESETS"
msgid "_Default settings:"
msgstr "Numatytosios nuostatos:"
-#: cui/uiconfig/ui/rotationtabpage.ui:130
+#: cui/uiconfig/ui/rotationtabpage.ui:151
msgctxt "rotationtabpage|CTL_RECT|tooltip_text"
msgid "Rotation point"
msgstr "Sukimo taškas"
-#: cui/uiconfig/ui/rotationtabpage.ui:155
+#: cui/uiconfig/ui/rotationtabpage.ui:178
msgctxt "rotationtabpage|label1"
msgid "Pivot Point"
msgstr "Sukimo taškas"
-#: cui/uiconfig/ui/rotationtabpage.ui:197
+#: cui/uiconfig/ui/rotationtabpage.ui:220
msgctxt "rotationtabpage|FT_ANGLE"
msgid "_Angle:"
msgstr "Kampas:"
-#: cui/uiconfig/ui/rotationtabpage.ui:238
+#: cui/uiconfig/ui/rotationtabpage.ui:263
msgctxt "rotationtabpage|FT_ANGLEPRESETS"
msgid "Default _settings:"
msgstr "Numatytosios nuostatos:"
-#: cui/uiconfig/ui/rotationtabpage.ui:252
+#: cui/uiconfig/ui/rotationtabpage.ui:287
msgctxt "rotationtabpage|CTL_ANGLE|tooltip_text"
msgid "Rotation Angle"
msgstr "Posūkio kampas"
-#: cui/uiconfig/ui/rotationtabpage.ui:277
+#: cui/uiconfig/ui/rotationtabpage.ui:314
msgctxt "rotationtabpage|label2"
msgid "Rotation Angle"
msgstr "Posūkio kampas"
@@ -10583,52 +10583,52 @@ msgctxt "similaritysearchdialog|relaxbox"
msgid "_Combine"
msgstr "Apjungti"
-#: cui/uiconfig/ui/slantcornertabpage.ui:50
+#: cui/uiconfig/ui/slantcornertabpage.ui:70
msgctxt "slantcornertabpage|label5"
msgid "_X:"
msgstr "_X:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:88
+#: cui/uiconfig/ui/slantcornertabpage.ui:110
msgctxt "slantcornertabpage|label6"
msgid "_Y:"
msgstr "_Y:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:125
+#: cui/uiconfig/ui/slantcornertabpage.ui:149
msgctxt "slantcornertabpage|label3"
msgid "Control Point 1"
msgstr "Pirmasis susietasis taškas"
-#: cui/uiconfig/ui/slantcornertabpage.ui:159
+#: cui/uiconfig/ui/slantcornertabpage.ui:183
msgctxt "slantcornertabpage|FT_RADIUS"
msgid "_Radius:"
msgstr "Spindulys:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:189
+#: cui/uiconfig/ui/slantcornertabpage.ui:214
msgctxt "slantcornertabpage|label1"
msgid "Corner Radius"
msgstr "Kampo spindulys"
-#: cui/uiconfig/ui/slantcornertabpage.ui:223
+#: cui/uiconfig/ui/slantcornertabpage.ui:248
msgctxt "slantcornertabpage|FT_ANGLE"
msgid "_Angle:"
msgstr "Kampas:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:253
+#: cui/uiconfig/ui/slantcornertabpage.ui:279
msgctxt "slantcornertabpage|label2"
msgid "Slant"
msgstr "Nuožulnumas"
-#: cui/uiconfig/ui/slantcornertabpage.ui:294
+#: cui/uiconfig/ui/slantcornertabpage.ui:320
msgctxt "slantcornertabpage|label4"
msgid "_X:"
msgstr "_X:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:332
+#: cui/uiconfig/ui/slantcornertabpage.ui:360
msgctxt "slantcornertabpage|label7"
msgid "_Y:"
msgstr "_Y:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:369
+#: cui/uiconfig/ui/slantcornertabpage.ui:399
msgctxt "slantcornertabpage|label8"
msgid "Control Point 2"
msgstr "Antrasis susietasis taškas"
@@ -10908,112 +10908,112 @@ msgctxt "storedwebconnectiondialog|change"
msgid "_Change Password..."
msgstr "Keisti slaptažodį…"
-#: cui/uiconfig/ui/swpossizepage.ui:74
+#: cui/uiconfig/ui/swpossizepage.ui:85
msgctxt "swpossizepage|widthft"
msgid "_Width:"
msgstr "Plotis:"
-#: cui/uiconfig/ui/swpossizepage.ui:111
+#: cui/uiconfig/ui/swpossizepage.ui:123
msgctxt "swpossizepage|heightft"
msgid "H_eight:"
msgstr "Aukštis:"
-#: cui/uiconfig/ui/swpossizepage.ui:128
+#: cui/uiconfig/ui/swpossizepage.ui:141
msgctxt "swpossizepage|ratio"
msgid "_Keep ratio"
msgstr "Išlaikyti proporcijas"
-#: cui/uiconfig/ui/swpossizepage.ui:149
+#: cui/uiconfig/ui/swpossizepage.ui:162
msgctxt "swpossizepage|label2"
msgid "Size"
msgstr "Dydis"
-#: cui/uiconfig/ui/swpossizepage.ui:205
+#: cui/uiconfig/ui/swpossizepage.ui:218
msgctxt "swpossizepage|topage"
msgid "To _page"
msgstr "Prie puslapio"
-#: cui/uiconfig/ui/swpossizepage.ui:222
+#: cui/uiconfig/ui/swpossizepage.ui:234
msgctxt "swpossizepage|topara"
msgid "To paragrap_h"
msgstr "Prie pastraipos"
-#: cui/uiconfig/ui/swpossizepage.ui:238
+#: cui/uiconfig/ui/swpossizepage.ui:250
msgctxt "swpossizepage|tochar"
msgid "To cha_racter"
msgstr "Prie rašmens"
-#: cui/uiconfig/ui/swpossizepage.ui:254
+#: cui/uiconfig/ui/swpossizepage.ui:266
msgctxt "swpossizepage|aschar"
msgid "_As character"
msgstr "Kaip rašmenį"
-#: cui/uiconfig/ui/swpossizepage.ui:270
+#: cui/uiconfig/ui/swpossizepage.ui:282
msgctxt "swpossizepage|toframe"
msgid "To _frame"
msgstr "Prie kadro"
-#: cui/uiconfig/ui/swpossizepage.ui:292
+#: cui/uiconfig/ui/swpossizepage.ui:304
msgctxt "swpossizepage|label1"
msgid "Anchor"
msgstr "Prieraišas"
-#: cui/uiconfig/ui/swpossizepage.ui:333
+#: cui/uiconfig/ui/swpossizepage.ui:344
msgctxt "swpossizepage|horiposft"
msgid "Hori_zontal:"
msgstr "Horizontaliai:"
-#: cui/uiconfig/ui/swpossizepage.ui:347
+#: cui/uiconfig/ui/swpossizepage.ui:358
msgctxt "swpossizepage|horibyft"
msgid "b_y:"
msgstr "per:"
-#: cui/uiconfig/ui/swpossizepage.ui:361
+#: cui/uiconfig/ui/swpossizepage.ui:372
msgctxt "swpossizepage|vertbyft"
msgid "_by:"
msgstr "per:"
-#: cui/uiconfig/ui/swpossizepage.ui:375
+#: cui/uiconfig/ui/swpossizepage.ui:386
msgctxt "swpossizepage|horitoft"
msgid "_to:"
msgstr "nuo:"
-#: cui/uiconfig/ui/swpossizepage.ui:421
+#: cui/uiconfig/ui/swpossizepage.ui:433
msgctxt "swpossizepage|vertposft"
msgid "_Vertical:"
msgstr "Vertikaliai:"
-#: cui/uiconfig/ui/swpossizepage.ui:457
+#: cui/uiconfig/ui/swpossizepage.ui:470
msgctxt "swpossizepage|verttoft"
msgid "t_o:"
msgstr "nuo:"
-#: cui/uiconfig/ui/swpossizepage.ui:478
+#: cui/uiconfig/ui/swpossizepage.ui:492
msgctxt "swpossizepage|mirror"
msgid "_Mirror on even pages"
msgstr "Priešingai lyginiuose puslapiuose"
-#: cui/uiconfig/ui/swpossizepage.ui:495
+#: cui/uiconfig/ui/swpossizepage.ui:509
msgctxt "swpossizepage|followtextflow"
msgid "Follow te_xt flow"
msgstr "Susieti su tekstu"
-#: cui/uiconfig/ui/swpossizepage.ui:518
+#: cui/uiconfig/ui/swpossizepage.ui:532
msgctxt "swpossizepage|label11"
msgid "Position"
msgstr "Padėtis"
-#: cui/uiconfig/ui/swpossizepage.ui:549
+#: cui/uiconfig/ui/swpossizepage.ui:563
msgctxt "swpossizepage|pos"
msgid "Positio_n"
msgstr "Padėtį"
-#: cui/uiconfig/ui/swpossizepage.ui:565
+#: cui/uiconfig/ui/swpossizepage.ui:579
msgctxt "swpossizepage|size"
msgid "_Size"
msgstr "Dydį"
-#: cui/uiconfig/ui/swpossizepage.ui:587
+#: cui/uiconfig/ui/swpossizepage.ui:601
msgctxt "swpossizepage|label3"
msgid "Protect"
msgstr "Apsaugoti"
@@ -11203,12 +11203,12 @@ msgctxt "textattrtabpage|label2"
msgid "Spacing to Borders"
msgstr "Atstumai iki kraštinių"
-#: cui/uiconfig/ui/textattrtabpage.ui:425
+#: cui/uiconfig/ui/textattrtabpage.ui:423
msgctxt "textattrtabpage|TSB_FULL_WIDTH"
msgid "Full _width"
msgstr "Visas plotis"
-#: cui/uiconfig/ui/textattrtabpage.ui:448
+#: cui/uiconfig/ui/textattrtabpage.ui:446
msgctxt "textattrtabpage|label3"
msgid "Text Anchor"
msgstr "Teksto prieraišas"
diff --git a/source/lt/extensions/messages.po b/source/lt/extensions/messages.po
index 12858db066b..1f060f2f4f3 100644
--- a/source/lt/extensions/messages.po
+++ b/source/lt/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: 2018-04-23 18:10+0200\n"
-"PO-Revision-Date: 2018-05-11 20:08+0000\n"
+"PO-Revision-Date: 2018-06-13 20:03+0000\n"
"Last-Translator: Modestas Rimkus <modestas.rimkus@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: lt\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1526069338.000000\n"
+"X-POOTLE-MTIME: 1528920194.000000\n"
#: extensions/inc/command.hrc:29
msgctxt "RID_RSC_ENUM_COMMAND_TYPE"
@@ -1477,7 +1477,7 @@ msgstr "Susietas langelis"
#: extensions/inc/strings.hrc:190
msgctxt "RID_STR_LIST_CELL_RANGE"
msgid "Source cell range"
-msgstr "Source cell range"
+msgstr ""
#: extensions/inc/strings.hrc:191
msgctxt "RID_STR_CELL_EXCHANGE_TYPE"
diff --git a/source/lt/filter/source/config/fragments/filters.po b/source/lt/filter/source/config/fragments/filters.po
index b0083c9ceb0..27e0273c10e 100644
--- a/source/lt/filter/source/config/fragments/filters.po
+++ b/source/lt/filter/source/config/fragments/filters.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-16 16:54+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2018-05-11 20:09+0000\n"
"Last-Translator: Modestas Rimkus <modestas.rimkus@gmail.com>\n"
"Language-Team: Lithuanian <komp_lt@konferencijos.lt>\n"
@@ -464,8 +464,8 @@ msgctxt ""
"MS Word 2003 XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Word 2003 XML"
-msgstr "Microsoft Word 2003 XML dokumentas"
+msgid "Word 2003 XML"
+msgstr ""
#: MS_Word_2007_XML.xcu
msgctxt ""
@@ -1283,8 +1283,8 @@ msgctxt ""
"Calc MS Excel 2007 VBA XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Excel 2007-2016 XML (macro enabled)"
-msgstr "Microsoft Excel 2007–2016 XML dokumentas (su makrokomandomis)"
+msgid "Excel 2007–2019 (macro-enabled)"
+msgstr ""
#: calc_MS_Excel_2007_XML.xcu
msgctxt ""
diff --git a/source/lt/filter/source/config/fragments/types.po b/source/lt/filter/source/config/fragments/types.po
index c8a58538167..eceaa2d355c 100644
--- a/source/lt/filter/source/config/fragments/types.po
+++ b/source/lt/filter/source/config/fragments/types.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-08 15:11+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2017-11-13 06:36+0000\n"
"Last-Translator: Modestas Rimkus <modestas.rimkus@gmail.com>\n"
"Language-Team: Lithuanian <komp_lt@konferencijos.lt>\n"
@@ -293,8 +293,8 @@ msgctxt ""
"writer_MS_Word_2003_XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Word 2003 XML"
-msgstr "Microsoft Word 2003 XML dokumentas"
+msgid "Word 2003 XML"
+msgstr ""
#: writer_MS_Word_2007_XML.xcu
msgctxt ""
diff --git a/source/lt/fpicker/messages.po b/source/lt/fpicker/messages.po
index def17e5f5a7..a39367f3d19 100644
--- a/source/lt/fpicker/messages.po
+++ b/source/lt/fpicker/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2018-03-22 13:03+0000\n"
"Last-Translator: Modestas Rimkus <modestas.rimkus@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -272,13 +272,13 @@ msgstr "Užšifruoti GPG raktu"
#: fpicker/uiconfig/ui/foldernamedialog.ui:8
msgctxt "foldernamedialog|FolderNameDialog"
-msgid "Folder Name ?"
-msgstr "Aplanko pavadinimas?"
+msgid "Folder Name"
+msgstr ""
#: fpicker/uiconfig/ui/foldernamedialog.ui:91
msgctxt "foldernamedialog|label2"
-msgid "Na_me"
-msgstr "Pavadinimas"
+msgid "Na_me:"
+msgstr ""
#: fpicker/uiconfig/ui/foldernamedialog.ui:122
msgctxt "foldernamedialog|label1"
diff --git a/source/lt/helpcontent2/source/text/scalc/guide.po b/source/lt/helpcontent2/source/text/scalc/guide.po
index a5f20eb75be..7540779d86a 100644
--- a/source/lt/helpcontent2/source/text/scalc/guide.po
+++ b/source/lt/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: 2018-05-22 13:16+0200\n"
-"PO-Revision-Date: 2018-05-22 17:36+0000\n"
+"PO-Revision-Date: 2018-06-14 10:59+0000\n"
"Last-Translator: eglejasu <egle.jasute@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: lt\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1527010570.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1528973940.000000\n"
#: address_auto.xhp
msgctxt ""
@@ -22,7 +22,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Recognizing Names as Addressing"
-msgstr "Lentelės antraščių naudojimas vietoj sričių koordinačių"
+msgstr "Lentelės antraščių naudojimas vietoj langelių bloko koordinačių"
#: address_auto.xhp
msgctxt ""
@@ -30,7 +30,7 @@ msgctxt ""
"bm_id3148797\n"
"help.text"
msgid "<bookmark_value>automatic addressing in tables</bookmark_value> <bookmark_value>natural language addressing</bookmark_value> <bookmark_value>formulas; using row/column labels</bookmark_value> <bookmark_value>text in cells; as addressing</bookmark_value> <bookmark_value>addressing; automatic</bookmark_value> <bookmark_value>name recognition on/off</bookmark_value> <bookmark_value>row headers;using in formulas</bookmark_value> <bookmark_value>column headers;using in formulas</bookmark_value> <bookmark_value>columns; finding labels automatically</bookmark_value> <bookmark_value>rows; finding labels automatically</bookmark_value> <bookmark_value>recognizing; column and row labels</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>automatinis adresavimas į lentelėses</bookmark_value> <bookmark_value>natūralios kalbos adresavimas</bookmark_value> <bookmark_value>formulės; stulpelių/eilučių etikečių naudojimas</bookmark_value> <bookmark_value>tekstas langeliuose; adresavimas kaip koordinatės</bookmark_value> <bookmark_value>adresavimas; automatinis</bookmark_value> <bookmark_value>vardo atpažinimas įjungti/išjungti</bookmark_value> <bookmark_value>eilutės antraštės; naudojimas formulėse</bookmark_value> <bookmark_value>stulpelio antraštės; naudojimas formulėse</bookmark_value> <bookmark_value>stulpeliai; automatinis etikečių ieškojimas</bookmark_value> <bookmark_value>eilutės; automatinis etikečių ieškojimas</bookmark_value> <bookmark_value>atpažinimas; eilučių ir stulpelių etiketės</bookmark_value>"
#: address_auto.xhp
msgctxt ""
@@ -46,7 +46,7 @@ msgctxt ""
"par_id3152597\n"
"help.text"
msgid "You can use cells with text to refer to the rows or to the columns that contain the cells."
-msgstr "Tekstinė stulpelio ar eilutės antraštė naudojama formulėje apibrėžia langelių sritį."
+msgstr "Formulėje galite naudoti tekstinę stulpelio ar eilutės antraštę vietoj stulpelio ar eilutės bloko koordinačių."
#: address_auto.xhp
msgctxt ""
@@ -54,7 +54,7 @@ msgctxt ""
"par_id3156283\n"
"help.text"
msgid "<image id=\"img_id3154942\" src=\"media/helpimg/names_as_addressing.png\" width=\"5.408cm\" height=\"2.212cm\" localize=\"true\"><alt id=\"alt_id3154942\">Example spreadsheet</alt></image>"
-msgstr "<image id=\"img_id3154942\" src=\"media/helpimg/names_as_addressing.png\" width=\"5.408cm\" height=\"2.212cm\" localize=\"true\"><alt id=\"alt_id3154942\">Lentelės pavyzdys</alt></image>"
+msgstr "<image id=\"img_id3154942\" src=\"media/helpimg/names_as_addressing.png\" width=\"5.408cm\" height=\"2.212cm\" localize=\"true\"><alt id=\"alt_id3154942\">Skaičiuoklės lentelės pavyzdys</alt></image>"
#: address_auto.xhp
msgctxt ""
@@ -62,7 +62,7 @@ msgctxt ""
"par_id3154512\n"
"help.text"
msgid "In the example spreadsheet, you can use the string <item type=\"literal\">'Column One'</item> in a formula to refer to the cell range <item type=\"literal\">B3</item> to <item type=\"literal\">B5</item>, or <item type=\"literal\">'Column Two'</item> for the cell range <item type=\"literal\">C2</item> to <item type=\"literal\">C5</item>. You can also use <item type=\"literal\">'Row One'</item> for the cell range <item type=\"literal\">B3</item> to <item type=\"literal\">D3</item>, or <item type=\"literal\">'Row Two'</item> for the cell range <item type=\"literal\">B4</item> to <item type=\"literal\">D4</item>. The result of a formula that uses a cell name, for example, <item type=\"literal\">SUM('Column One')</item>, is 600."
-msgstr "Paveikslėlyje parodytas pavyzdys, kur lentelės stulpelio antraštė <item type=\"literal\">„Pirmas stulpelis“</item>, formulėje suprantama kaip sritis nuo <item type=\"literal\">B3</item> iki <item type=\"literal\">B5</item> arba stulpelio antraštė <item type=\"literal\">„Antras stulpelis“</item> formulėje suprantama, kaip sritis nuo <item type=\"literal\">C2</item> iki <item type=\"literal\">C5</item>. Taip pat galite naudoti eilutės antraštę <item type=\"literal\">„Pirma eilutė“</item>, jei norite apibrėžti sritį nuo <item type=\"literal\">B3</item> iki <item type=\"literal\">D3</item> arba eilutės antraštę <item type=\"literal\">„Antra eilutė“</item>, jei norite apibrėžti sritį nuo <item type=\"literal\">B4</item> iki <item type=\"literal\">D4</item>. Pavyzdyje formulės <item type=\"literal\">SUM('Pirmas stulpelis')</item> rezultatas yra 600. "
+msgstr "Paveikslėlyje parodytas pavyzdys, kur skaičiuoklės lentelės stulpelio antraštė <item type=\"literal\">„Pirmas stulpelis“</item>, formulėje suprantama kaip langelių blokas nuo <item type=\"literal\">B3</item> iki <item type=\"literal\">B5</item> arba stulpelio antraštė <item type=\"literal\">„Antras stulpelis“</item> formulėje suprantama, kaip langelių blokas nuo <item type=\"literal\">C2</item> iki <item type=\"literal\">C5</item>. Taip pat galite naudoti eilutės antraštę <item type=\"literal\">„Pirma eilutė“</item>, jei norite apibrėžti langelių bloką nuo <item type=\"literal\">B3</item> iki <item type=\"literal\">D3</item> arba eilutės antraštę <item type=\"literal\">„Antra eilutė“</item>, jei norite apibrėžti langelių bloką nuo <item type=\"literal\">B4</item> iki <item type=\"literal\">D4</item>. Pavyzdyje formulės <item type=\"literal\">SUM('Pirmas stulpelis')</item> rezultatas yra 600. "
#: address_auto.xhp
msgctxt ""
@@ -70,7 +70,7 @@ msgctxt ""
"par_id3155443\n"
"help.text"
msgid "This function is active by default. To turn this function off, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Calc - Calculate</emph> and clear the <emph>Automatically find column and row labels</emph> check box."
-msgstr "Ši funkcija yra aktyvi pagal numatymą. Jei norite išjungti šią funkciją, pasirinkite <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Priemonės → Parinktys</emph></defaultinline></switchinline><emph>„%PRODUCTNAME“ skaičiuoklė → Skaičiavimai</emph> ir atšaukite žymimojo langelio <emph>Automatiškai aptikti stulpelių ir eilučių antraštes</emph> pažymėjimą."
+msgstr "Numatyta, kad ši funkcija yra aktyvi. Jei norite išjungti funkciją, pasirinkite <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>„%PRODUCTNAME“ → Parinktys </emph></caseinline><defaultinline><emph>Priemonės → Parinktys</emph></defaultinline></switchinline><emph>„%PRODUCTNAME“ skaičiuoklė → Skaičiavimai</emph> ir atšaukite žymimojo langelio <emph>Automatiškai aptikti stulpelių ir eilučių antraštes</emph> pažymėjimą."
#: address_auto.xhp
msgctxt ""
@@ -110,7 +110,7 @@ msgctxt ""
"par_id3156442\n"
"help.text"
msgid "By default, $[officename] automatically corrects many common typing errors and applies formatting while you type. You can immediately undo any automatic changes with <switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Z."
-msgstr "Pagal numatytąsias nuostatas „$[officename]“ programa automatiškai taiso daugumą dažnai pasitaikančių rinkimo klaidų ir renkamam tekstui pritaiko tam tikrą formatą. Automatinį pakeitimą galima atšaukti paspaudus klavišų kombinaciją <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>Command</emph></caseinline><defaultinline><emph>Vald</emph></defaultinline></switchinline><emph>+Z</emph>."
+msgstr "Numatyta, kad „$[officename]“ programa automatiškai taiso daugumą dažnai pasitaikančių rinkimo klaidų ir renkamam tekstui pritaiko tam tikrą formatą. Automatinį pakeitimą galite atšaukti paspaudę <switchinline select=\"sys\"><caseinline select=\"MAC\">klavišų kombinaciją </caseinline><defaultinline><emph>Vald</emph></defaultinline></switchinline><emph>+Z</emph>."
#: auto_off.xhp
msgctxt ""
@@ -118,7 +118,7 @@ msgctxt ""
"par_id3145273\n"
"help.text"
msgid "The following shows you how to deactivate and reactivate the automatic changes in $[officename] Calc:"
-msgstr "Toliau rašoma, kaip aktyvinti arba atšaukti „$[officename]“ skaičiuoklėje automatinius pakeitimus:"
+msgstr "Toliau rašoma, kaip „$[officename]“ skaičiuoklėje aktyvinti arba atšaukti automatinius pakeitimus:"
#: auto_off.xhp
msgctxt ""
@@ -142,7 +142,7 @@ msgctxt ""
"par_id3153878\n"
"help.text"
msgid "To turn the AutoInput on and off, set or remove the check mark in front of <link href=\"text/scalc/01/06130000.xhp\" name=\"Tools - AutoInput\"><emph>Tools - AutoInput</emph></link>."
-msgstr "Jei norite įjungti arba atšaukti Automatinę įvestį, pasirinkite meniu<link href=\"text/scalc/01/06130000.xhp\" name=\"Tools - AutoInput\"><emph>Priemonės → Automatinė įvestis</emph></link>. "
+msgstr "Jei norite įjungti arba atšaukti automatinę įvestį, pasirinkite meniu <link href=\"text/scalc/01/06130000.xhp\" name=\"Tools - AutoInput\"><emph>Priemonės → Automatinė įvestis</emph></link>. "
#: auto_off.xhp
msgctxt ""
@@ -214,7 +214,7 @@ msgctxt ""
"par_id3166425\n"
"help.text"
msgid "Choose <item type=\"menuitem\">Tools - AutoCorrect - AutoCorrect Options</item>. Go to the <item type=\"menuitem\">Replace</item> tab. Select the word pair and click <item type=\"menuitem\">Delete</item>."
-msgstr "Pasirinkite <item type=\"menuitem\">Priemonės → Automatinis rašybos taisymas</item>, atverkite kortelę <item type=\"menuitem\">Keitimas</item> ir pasirinkite norimą žodžių porą ir spustelėkite mygtuką <item type=\"menuitem\">Šalinti</item>."
+msgstr "Pasirinkite <item type=\"menuitem\">Priemonės → Automatinis rašybos taisymas</item>, atverkite kortelę <item type=\"menuitem\">Keitimas</item> ir pasirinkę norimą žodžių porą spustelėkite mygtuką <item type=\"menuitem\">Šalinti</item>."
#: auto_off.xhp
msgctxt ""
@@ -262,7 +262,7 @@ msgctxt ""
"par_id3147427\n"
"help.text"
msgid "The <emph>AutoFilter</emph> function inserts a combo box on one or more data columns that lets you select the records (rows) to be displayed."
-msgstr "<emph>Automatinio filtro</emph> funkcija įterpia jungtinį langelį į vieną ar kelis duomenų stulpelius. Jungtis langelis leidžia pasirinkti įrašus, kurie bus matomi stulpelyje."
+msgstr "<emph>Automatinio filtro</emph> funkcija įterpia jungtinį langelį į vieną ar kelis duomenų stulpelius. Jungtinis langelis leidžia pasirinkti įrašus, kurie bus matomi stulpelyje."
#: autofilter.xhp
msgctxt ""
@@ -294,7 +294,7 @@ msgctxt ""
"par_id3155064\n"
"help.text"
msgid "Only those rows whose contents meet the filter criteria are displayed. The other rows are filtered. You can see if rows have been filtered from the discontinuous row numbers. The column that has been used for the filter is identified by a different color for the arrow button."
-msgstr "Rodomos tik tos eilutės, kurios atitinka pasirinktus filtro kriterijus. Kitos eilutės nematomos. Pritaikius filtrą langelio išskleidžiamos rodyklės spalva pasikeičia."
+msgstr "Rodomos tik tos eilutės, kurios atitinka pasirinktus filtro kriterijus. Kitos eilutės nematomos. Kai pritaikote filtrą, langelio išskleidžiamos rodyklės spalva pasikeičia."
#: autofilter.xhp
msgctxt ""
@@ -334,7 +334,7 @@ msgctxt ""
"par_id3159236\n"
"help.text"
msgid "The arithmetic functions also take account of the cells that are not visible due to an applied filter. For example, a sum of an entire column will also total the values in the filtered cells. Apply the <link href=\"text/scalc/01/04060106.xhp\" name=\"SUBTOTAL\">SUBTOTAL</link> function if only the cells visible after the application of a filter are to be taken into account."
-msgstr "Aritmetinės funkcijos taip pat apskaičiuoja ir filtro paslėptus langelius. Pavyzdžiui skaičiuojant viso stulpelio sumą bus sudėti ir filtro paslėpti langeliai. Naudokite funkciją <link href=\"text/scalc/01/04060106.xhp\" name=\"SUBTOTAL\">Dalinis rezultatas</link> jei skaičiavime norite naudoti tiktai matomus langelius."
+msgstr "Aritmetinės funkcijos taip pat apskaičiuoja ir filtro paslėptus langelius. Pavyzdžiui, skaičiuojant viso stulpelio sumą bus pridėti ir filtro paslėpti langeliai. Naudokite funkciją <link href=\"text/scalc/01/04060106.xhp\" name=\"SUBTOTAL\">Dalinis rezultatas</link>, jei skaičiavime norite naudoti tiktai matomus langelius."
#: autofilter.xhp
msgctxt ""
@@ -342,7 +342,7 @@ msgctxt ""
"par_id3152985\n"
"help.text"
msgid "<link href=\"text/scalc/01/12040100.xhp\" name=\"Data - Filter - AutoFilter\">Data - Filter - AutoFilter</link>"
-msgstr "<link href=\"text/scalc/01/12040100.xhp\" name=\"Data - Filter - AutoFilter\">Duomenys→Filtras→Automatinis filtras</link>"
+msgstr "<link href=\"text/scalc/01/12040100.xhp\" name=\"Data - Filter - AutoFilter\">Duomenys → Filtras → Automatinis filtras</link>"
#: autofilter.xhp
msgctxt ""
@@ -366,7 +366,7 @@ msgctxt ""
"bm_id3155132\n"
"help.text"
msgid "<bookmark_value>tables; AutoFormat function</bookmark_value> <bookmark_value>defining;AutoFormat function for tables</bookmark_value> <bookmark_value>AutoFormat function</bookmark_value> <bookmark_value>formats; automatically formatting spreadsheets</bookmark_value> <bookmark_value>automatic formatting in spreadsheets</bookmark_value> <bookmark_value>sheets;AutoFormat function</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>lentelės; Automatinio formatavimo funkcija</bookmark_value> <bookmark_value>aprašymas; Automatinio formatavimo funkcija lentelėse</bookmark_value> <bookmark_value>Automatinio formatavimo funkcija</bookmark_value> <bookmark_value>formatai; automatinis dokumentų formatavimas</bookmark_value> <bookmark_value>automatinis formatavimas dokumentuose</bookmark_value> <bookmark_value>lakštai; automatinio formatavimo funkcija</bookmark_value>"
#: autoformat.xhp
msgctxt ""
@@ -374,7 +374,7 @@ msgctxt ""
"hd_id3155132\n"
"help.text"
msgid "<variable id=\"autoformat\"><link href=\"text/scalc/guide/autoformat.xhp\" name=\"Using AutoFormat for Tables\">Applying Automatic Formatting to a Selected Cell Range</link></variable>"
-msgstr "<variable id=\"autoformat\"><link href=\"text/scalc/guide/autoformat.xhp\" name=\"Using AutoFormat for Tables\">Automatinio formatavimo taikymas pasirinktam langelių sričiai</link></variable>"
+msgstr "<variable id=\"autoformat\"><link href=\"text/scalc/guide/autoformat.xhp\" name=\"Using AutoFormat for Tables\">Automatinio formatavimo taikymas pasirinktam langelių blokui</link></variable>"
#: autoformat.xhp
msgctxt ""
@@ -382,7 +382,7 @@ msgctxt ""
"par_id3149401\n"
"help.text"
msgid "You can use the AutoFormat feature to quickly apply a format to a sheet or a selected cell range."
-msgstr "Jūs galite naudoti automatinio formatavimo funkciją jei norite greitai pritaikyti tam tikrą formatą pasirinktam lakštui ar langelių sričiai."
+msgstr "Jūs galite naudoti automatinio formatavimo funkciją, jei norite greitai pritaikyti tam tikrą formatą pasirinktam lakštui ar langelių blokui."
#: autoformat.xhp
msgctxt ""
@@ -390,7 +390,7 @@ msgctxt ""
"par_idN10702\n"
"help.text"
msgid "To Apply an AutoFormat to a Sheet or Selected Cell Range"
-msgstr "Jei norite pritaikyti automatinio formatavimo funkciją lakštui arba langelių sričiai"
+msgstr "Automatinio formatavimo funkcijos pritaikymas lakštui arba langelių blokui"
#: autoformat.xhp
msgctxt ""
@@ -398,7 +398,7 @@ msgctxt ""
"par_idN106CE\n"
"help.text"
msgid "Select the cells, including the column and row headers, that you want to format."
-msgstr "Pažymėkite langelius kuriuos norite formatuoti"
+msgstr "Pažymėkite langelius, kuriuos norite formatuoti"
#: autoformat.xhp
msgctxt ""
@@ -406,7 +406,7 @@ msgctxt ""
"par_idN106D5\n"
"help.text"
msgid "Choose <item type=\"menuitem\">Format - AutoFormat</item>."
-msgstr "Pasirinkite<item type=\"menuitem\">Formatas→Automatinio formatavimo stiliai</item>."
+msgstr "Pasirinkite <item type=\"menuitem\">Formatas → Automatinio formatavimo stiliai</item>."
#: autoformat.xhp
msgctxt ""
@@ -414,7 +414,7 @@ msgctxt ""
"par_id3151242\n"
"help.text"
msgid "To select which properties to include in an AutoFormat, click <emph>More</emph>."
-msgstr "Pasirinkti kokias savybes įtraukti į automatinį formatą , spustelėkite mygtuką <emph> Daugiau</emph>."
+msgstr "Jei norite pasirinkti, kokias savybes įtraukti į automatinį formatą, spustelėkite mygtuką <emph> Daugiau</emph>."
#: autoformat.xhp
msgctxt ""
@@ -430,7 +430,7 @@ msgctxt ""
"par_idN1075D\n"
"help.text"
msgid "The format is applied to the selected range of cells."
-msgstr "Formatas pritaikytas pasirinktai langelių sričiai."
+msgstr "Formatas pritaikytas pasirinktam langelių blokui."
#: autoformat.xhp
msgctxt ""
@@ -438,7 +438,7 @@ msgctxt ""
"par_id3149210\n"
"help.text"
msgid "If you do not see any change in color of the cell contents, choose <item type=\"menuitem\">View - Value Highlighting</item>."
-msgstr "Jei nematote langelio turinio spalvos pasikeitimo, spustelėkite <item type=\"menuitem\">Rodymas→Reikšmės paryškinimas</item>."
+msgstr "Jei nematote langelio turinio spalvos pasikeitimo, spustelėkite <item type=\"menuitem\">Rodymas → Reikšmės paryškinimas</item>."
#: autoformat.xhp
msgctxt ""
@@ -454,7 +454,7 @@ msgctxt ""
"par_id3148868\n"
"help.text"
msgid "You can define a new AutoFormat that is available to all spreadsheets."
-msgstr "Jūs galite sukurti automatinį formatą kurį būtų galima pritaikyti visiem skaičiuoklės dokumentams."
+msgstr "Jūs galite sukurti automatinį formatą, kurį būtų galima pritaikyti visiem skaičiuoklės dokumentams."
#: autoformat.xhp
msgctxt ""
@@ -470,7 +470,7 @@ msgctxt ""
"par_id3145384\n"
"help.text"
msgid "Choose <item type=\"menuitem\">Edit - Select All</item>."
-msgstr "Pasirinkite<item type=\"menuitem\">Taisa→Pažymėti viską</item>."
+msgstr "Pasirinkite <item type=\"menuitem\">Taisa → Pažymėti viską</item>."
#: autoformat.xhp
msgctxt ""
@@ -478,7 +478,7 @@ msgctxt ""
"par_id3153815\n"
"help.text"
msgid "Choose <item type=\"menuitem\">Format - AutoFormat</item>."
-msgstr "Pasirinkite<item type=\"menuitem\">Formatas→Automatinio formatavimo stiliai</item>."
+msgstr "Pasirinkite <item type=\"menuitem\">Formatas → Automatinio formatavimo stiliai</item>."
#: autoformat.xhp
msgctxt ""
@@ -486,7 +486,7 @@ msgctxt ""
"par_idN107A9\n"
"help.text"
msgid "Click <emph>Add</emph>."
-msgstr "Spustelėkite mygtuką<emph>Pridėti</emph>."
+msgstr "Spustelėkite mygtuką <emph>Pridėti</emph>."
#: autoformat.xhp
msgctxt ""
@@ -494,7 +494,7 @@ msgctxt ""
"par_idN10760\n"
"help.text"
msgid "In the <emph>Name</emph> box of the <emph>Add AutoFormat</emph> dialog, enter a name for the format."
-msgstr "langelyje<emph>Pavadinimas</emph><emph></emph>įrašykite naujo formato pavadinimą."
+msgstr "Dialogo lango <emph>Pridėti</emph> laukelyje <emph>Pavadinimas</emph> įrašykite naujo formato pavadinimą."
#: autoformat.xhp
msgctxt ""
@@ -510,7 +510,7 @@ msgctxt ""
"par_id3159203\n"
"help.text"
msgid "<link href=\"text/scalc/01/05110000.xhp\" name=\"Format - AutoFormat\">Format - AutoFormat</link>"
-msgstr "<link href=\"text/scalc/01/05110000.xhp\" name=\"Format - AutoFormat\">Formatas→Automatinio formatavimo stiliai</link>"
+msgstr "<link href=\"text/scalc/01/05110000.xhp\" name=\"Format - AutoFormat\">Formatas → Automatinio formatavimo stiliai</link>"
#: background.xhp
msgctxt ""
@@ -526,7 +526,7 @@ msgctxt ""
"bm_id3149346\n"
"help.text"
msgid "<bookmark_value>spreadsheets; backgrounds</bookmark_value> <bookmark_value>backgrounds;cell ranges</bookmark_value> <bookmark_value>tables; backgrounds</bookmark_value> <bookmark_value>cells; backgrounds</bookmark_value> <bookmark_value>rows, see also cells</bookmark_value> <bookmark_value>columns, see also cells</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>dokumentas; fonai</bookmark_value> <bookmark_value>fonai; langelių sritys</bookmark_value> <bookmark_value>lentelės; fonai</bookmark_value> <bookmark_value>langeliai; fonai</bookmark_value> <bookmark_value>eilutės; taip pat žiūrėkite langelius</bookmark_value> <bookmark_value>stulpeliai; taip pat žiūrėkite langelius</bookmark_value>"
#: background.xhp
msgctxt ""
@@ -542,7 +542,7 @@ msgctxt ""
"par_id9520249\n"
"help.text"
msgid "You can define a background color or use a graphic as a background for cell ranges in $[officename] Calc."
-msgstr "Jūs galite nustatyti fono spalvą arba naudoti grafinį objektą kaip foną pasirinktai langelių sričiai \"$[officename] Calc\". "
+msgstr "Galite nustatyti fono spalvą arba naudoti grafinį objektą kaip foną pasirinktam „$[officename]“ skaičiuoklės langelių blokui. "
#: background.xhp
msgctxt ""
@@ -550,7 +550,7 @@ msgctxt ""
"hd_id3144760\n"
"help.text"
msgid "Applying a Background Color to a $[officename] Calc Spreadsheet"
-msgstr "Fono spalvos pritaikymas \"$[officename] Calc \"skaičiuoklės dokumentui"
+msgstr "Fono spalvos pritaikymas „$[officename]“ skaičiuoklės dokumentui"
#: background.xhp
msgctxt ""
@@ -566,7 +566,7 @@ msgctxt ""
"par_id3149260\n"
"help.text"
msgid "Choose <emph>Format - Cells</emph> (or <emph>Format Cells</emph> from the context menu)."
-msgstr "Pasirinkite<emph>Formatas→Langeliai</emph>(arba <emph>Formatuoti langelius</emph> iš kontekstinio meniu)."
+msgstr "Pasirinkite <emph>Formatas → Langeliai</emph> (arba kontekstinio meniu komandą <emph>Formatuoti langelius</emph>)."
#: background.xhp
msgctxt ""
@@ -574,7 +574,7 @@ msgctxt ""
"par_id3152938\n"
"help.text"
msgid "On the <emph>Background</emph> tab page, select the background color."
-msgstr "<emph>Fono</emph> puslapio skirtuke pasirinkite fono spalvą."
+msgstr "<emph>Fono</emph> kortelėje pasirinkite fono spalvą."
#: background.xhp
msgctxt ""
@@ -582,7 +582,7 @@ msgctxt ""
"hd_id3146974\n"
"help.text"
msgid "Graphics in the Background of Cells"
-msgstr "Grafiniai objektai langeliu fone."
+msgstr "Grafiniai objektai langelių fone."
#: background.xhp
msgctxt ""
@@ -590,7 +590,7 @@ msgctxt ""
"par_id3155414\n"
"help.text"
msgid "Choose <emph>Insert - Image - From File</emph>."
-msgstr "Pasirinkite<emph>Įterpimas→Paveikslas→Iš failo</emph>."
+msgstr "Pasirinkite <emph>Įterpimas → Paveikslas → Iš failo</emph>."
#: background.xhp
msgctxt ""
@@ -606,7 +606,7 @@ msgctxt ""
"par_id3153575\n"
"help.text"
msgid "The graphic is inserted anchored to the current cell. You can move and scale the graphic as you want. In your context menu you can use the <emph>Arrange - To Background</emph> command to place this in the background. To select a graphic that has been placed in the background, use the <switchinline select=\"appl\"><caseinline select=\"CALC\"><link href=\"text/scalc/01/02110000.xhp\" name=\"Navigator\">Navigator</link></caseinline><defaultinline>Navigator</defaultinline></switchinline>."
-msgstr "Grafikos objektas įkeltas ir pririštas prie pažymėto langelio, jį galite judinti ir keisti mastelį pagal savo nuožiūrą. Jei norite šį objektą nukelti į foną naudokite komandą <emph>Išdėstyti→Į foną</emph> kurią galite rasti kontekstiniame meniu. Pažymėti grafikos objektą kuris buvo nukeltas i foną naudokite <switchinline select=\"appl\"><caseinline select=\"CALC\"><link href=\"text/scalc/01/02110000.xhp\" name=\"Navigator\">Žvalgiklį</link></caseinline><defaultinline>Žvalgiklį</defaultinline></switchinline>."
+msgstr "Kai grafikos objektas įkeltas ir pririštas prie pažymėto langelio, galite jį tempti ir keisti mastelį savo nuožiūra. Jei norite šį objektą perkelti į foną, naudokite kontekstinio meniu komandą <emph>Išdėstyti → Į foną</emph>. Jei norite pažymėti grafikos objektą, kuris buvo nukeltas į foną naudokite <switchinline select=\"appl\"><caseinline select=\"CALC\"><link href=\"text/scalc/01/02110000.xhp\" name=\"Navigator\">Žvalgiklį</link></caseinline><defaultinline>Žvalgiklį</defaultinline></switchinline>."
#: background.xhp
msgctxt ""
@@ -622,7 +622,7 @@ msgctxt ""
"par_id3156180\n"
"help.text"
msgid "<link href=\"text/shared/01/05030600.xhp\" name=\"Background tab page\"><emph>Background</emph> tab page</link>"
-msgstr "<link href=\"text/shared/01/05030600.xhp\" name=\"Background tab page\"><emph>Fono</emph> puslapio skirtukas</link>"
+msgstr "<link href=\"text/shared/01/05030600.xhp\" name=\"Background tab page\"><emph>Fono</emph> kortelė</link>"
#: background.xhp
msgctxt ""
@@ -630,7 +630,7 @@ msgctxt ""
"par_id7601245\n"
"help.text"
msgid "<link href=\"text/scalc/guide/format_table.xhp\">Formatting Spreadsheets</link>"
-msgstr "<link href=\"text/scalc/guide/format_table.xhp\">Skaičiuoklės dokumento ženklinimas</link>"
+msgstr "<link href=\"text/scalc/guide/format_table.xhp\">Skaičiuoklės dokumento formatavimas</link>"
#: borders.xhp
msgctxt ""
@@ -646,7 +646,7 @@ msgctxt ""
"bm_id3457441\n"
"help.text"
msgid "<bookmark_value>cells;borders</bookmark_value> <bookmark_value>line arrangements with cells</bookmark_value> <bookmark_value>borders;cells</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>langeliai;kraštinės</bookmark_value> <bookmark_value>eilučių lygiavimas su langeliais</bookmark_value> <bookmark_value>kraštinės;langeliai</bookmark_value>"
#: borders.xhp
msgctxt ""
@@ -662,7 +662,7 @@ msgctxt ""
"par_id2320017\n"
"help.text"
msgid "You can apply a variety of different lines to selected cells."
-msgstr "Jūs galite pritaikyti daugybę skirtingų rėmelių pasirinktiems langeliams."
+msgstr "Pažymėtiems langeliams galite pritaikyti daugybę skirtingų rėmelių."
#: borders.xhp
msgctxt ""
@@ -678,7 +678,7 @@ msgctxt ""
"par_id9181188\n"
"help.text"
msgid "Choose <item type=\"menuitem\">Format - Cells</item>."
-msgstr "Pasirinkite<item type=\"menuitem\">Formatas→Langeliai</item>."
+msgstr "Pasirinkite <item type=\"menuitem\">Formatas → Langeliai</item>."
#: borders.xhp
msgctxt ""
@@ -686,7 +686,7 @@ msgctxt ""
"par_id9947508\n"
"help.text"
msgid "In the dialog, click the <emph>Borders</emph> tab."
-msgstr "Atsidariusiame dialogo lange spustelėkite skirtuką <emph> Kraštinės </emph>."
+msgstr "Atsidariusiame dialogo lange spustelėkite kortelę <emph>Kraštinės</emph>."
#: borders.xhp
msgctxt ""
@@ -694,7 +694,7 @@ msgctxt ""
"par_id7907956\n"
"help.text"
msgid "Choose the border options you want to apply and click OK."
-msgstr "Pasirinkite kraštinės nustatymus kuriuos norite pritaikyti pasirinktiems langeliams ir spustelėkite Gerai."
+msgstr "Pasirinkite kraštinės nustatymus, kuriuos norite pritaikyti pasirinktiems langeliams, ir spustelėkite Gerai."
#: borders.xhp
msgctxt ""
@@ -702,7 +702,7 @@ msgctxt ""
"par_id1342204\n"
"help.text"
msgid "The options in the <emph>Line arrangement</emph> area can be used to apply multiple border styles."
-msgstr "Pasirinkimai <emph>Linijos</emph> srityje gali būti naudojami norint pritaikyti daugiau nei vieną kraštinės stilių."
+msgstr "Jei norite pritaikyti daugiau nei vieną kraštinės stilių, naudokite srities <emph>Linijos</emph> parinktis."
#: borders.xhp
msgctxt ""
@@ -710,7 +710,7 @@ msgctxt ""
"hd_id4454481\n"
"help.text"
msgid "Selection of cells"
-msgstr "Langelių išdėstimas"
+msgstr "Langelių išdėstymas"
#: borders.xhp
msgctxt ""
@@ -718,7 +718,7 @@ msgctxt ""
"par_id7251503\n"
"help.text"
msgid "Depending on the selection of cells, the area looks different."
-msgstr "Langelių sritis atrodys skirtingai priklausant nuo pasirinkto langelių išdėstymo."
+msgstr "Langelių sritis atrodys taip kaip pasirinktas langelių išdėstymas."
#: borders.xhp
msgctxt ""
@@ -726,7 +726,7 @@ msgctxt ""
"par_id8716696\n"
"help.text"
msgid "Selection"
-msgstr "Pažymėta sritis"
+msgstr "Pažymėjimas"
#: borders.xhp
msgctxt ""
@@ -734,7 +734,7 @@ msgctxt ""
"par_id4677877\n"
"help.text"
msgid "Line arrangement area"
-msgstr "Kraštinių išdėstymas"
+msgstr "Kraštinių išdėstymo sritis"
#: borders.xhp
msgctxt ""
@@ -790,7 +790,7 @@ msgctxt ""
"par_id466322\n"
"help.text"
msgid "Cells in a block of 2x2 or more"
-msgstr "Langeliai bloke 2x2 arba didesniame"
+msgstr "Langelių blokas 2 x 2 arba didesnis"
#: borders.xhp
msgctxt ""
@@ -798,7 +798,7 @@ msgctxt ""
"par_id4511551\n"
"help.text"
msgid "<image id=\"img_id8139591\" src=\"media/helpimg/border_ca_4.png\" width=\"1.2602in\" height=\"1.5937in\"><alt id=\"alt_id8139591\">borders with a block selected</alt></image>"
-msgstr "<image id=\"img_id8139591\" src=\"media/helpimg/border_ca_4.png\" width=\"1.2602in\" height=\"1.5937in\"><alt id=\"alt_id8139591\">Langelių bloko 2x2 ar didesnio kraštinės</alt></image>"
+msgstr "<image id=\"img_id8139591\" src=\"media/helpimg/border_ca_4.png\" width=\"1.2602in\" height=\"1.5937in\"><alt id=\"alt_id8139591\">Langelių bloko 2 x 2 ar didesnio kraštinės</alt></image>"
#: borders.xhp
msgctxt ""
@@ -806,7 +806,7 @@ msgctxt ""
"par_id5383465\n"
"help.text"
msgid "You cannot apply borders to multiple selections."
-msgstr "Vienu metu kraštines galima pritaikyti tik vienai pažymėtai sričiai."
+msgstr "Vienu metu kraštines galima pritaikyti tik vienam pažymėtam blokui."
#: borders.xhp
msgctxt ""
@@ -814,7 +814,7 @@ msgctxt ""
"hd_id7790154\n"
"help.text"
msgid "Default Settings"
-msgstr "Išankstinės parinktys"
+msgstr "Numatytosios parinktys"
#: borders.xhp
msgctxt ""
@@ -822,7 +822,7 @@ msgctxt ""
"par_id2918485\n"
"help.text"
msgid "Click one of the <emph>Default</emph> icons to set or reset multiple borders."
-msgstr "Jei norite keisti lentelės kraštines, spustelėkite vieną iš <emph>Išankstinių parinkčių</emph> piktogramų."
+msgstr "Jei norite keisti lentelės kraštines, spustelėkite vieną iš <emph>Numatytųjų parinkčių</emph> piktogramų."
#: borders.xhp
msgctxt ""
@@ -830,7 +830,7 @@ msgctxt ""
"par_id1836909\n"
"help.text"
msgid "The thin gray lines inside an icon show the borders that will be reset or cleared."
-msgstr "Piktogramose esančios plonos pilkos linijos vaizduoja kraštines kurios bus atstatytos arba ištrintos."
+msgstr "Piktogramose esančios plonos pilkos linijos vaizduoja kraštines, kurios bus atkurtos arba ištrintos."
#: borders.xhp
msgctxt ""
@@ -838,7 +838,7 @@ msgctxt ""
"par_id5212561\n"
"help.text"
msgid "The dark lines inside an icon show the lines that will be set using the selected line style and color."
-msgstr "Piktogramose esančios tamsios linijos vaizduoja eilutes kurios bus pridėtos pagal pasirinkta stilių ir spalvą."
+msgstr "Piktogramose esančios tamsios linijos vaizduoja eilutes, kurios bus pridėtos pagal pasirinktą stilių ir spalvą."
#: borders.xhp
msgctxt ""
@@ -846,7 +846,7 @@ msgctxt ""
"par_id4818872\n"
"help.text"
msgid "The thick gray lines inside an icon show the lines that will not be changed."
-msgstr "Piktogramose esančios pastorintos pilkos linijos vaizduoja kraštines kurios liks nepakeistos"
+msgstr "Piktogramose esančios storesnės pilkos linijos vaizduoja kraštines, kurios liks nepakeistos"
#: borders.xhp
msgctxt ""
@@ -862,7 +862,7 @@ msgctxt ""
"par_id622577\n"
"help.text"
msgid "Select a block of about 8x8 cells, then choose <emph>Format - Cells - Borders</emph>."
-msgstr "Pažymėkite 8x8 langelių bloką, tada pasirinkite <emph>Formatas→Langeliai→Kraštinės</emph>."
+msgstr "Pažymėkite 8 x 8 langelių bloką, tada pasirinkite <emph>Formatas → Langeliai → Kraštinės</emph>."
#: borders.xhp
msgctxt ""
@@ -870,7 +870,7 @@ msgctxt ""
"par_id8119754\n"
"help.text"
msgid "<image id=\"img_id7261268\" src=\"media/helpimg/border_ca_5.png\" width=\"1.0937in\" height=\"0.2189in\"><alt id=\"alt_id7261268\">default icon row of Borders tab page</alt></image>"
-msgstr "<image id=\"img_id7261268\" src=\"media/helpimg/border_ca_5.png\" width=\"1.0937in\" height=\"0.2189in\"><alt id=\"alt_id7261268\">Išankstinių piktogramų juosta Kraštinių puslapio skirtuke</alt></image>"
+msgstr "<image id=\"img_id7261268\" src=\"media/helpimg/border_ca_5.png\" width=\"1.0937in\" height=\"0.2189in\"><alt id=\"alt_id7261268\">Numatytųjų piktogramų juosta Kraštinių kortelėje</alt></image>"
#: borders.xhp
msgctxt ""
@@ -878,7 +878,7 @@ msgctxt ""
"par_id8964201\n"
"help.text"
msgid "Click the left icon to clear all lines. This removes all outer borders, all inner lines, and all diagonal lines."
-msgstr "Spustelėdami kairiąją piktogramą ištrinsite visas išorines kraštines ir vidines linijas."
+msgstr "Jei spustelėsite kairiąją piktogramą, ištrinsite visas išorines kraštines ir vidines linijas."
#: borders.xhp
msgctxt ""
@@ -886,7 +886,7 @@ msgctxt ""
"par_id6048463\n"
"help.text"
msgid "Click the second icon from the left to set an outer border and to remove all other lines."
-msgstr "Spustelėdami antrą piktogramą iš kairės nustatysite išorines kraštines ir ištrinsite visas vidines linijas."
+msgstr "Jei spustelėsite antrą piktogramą iš kairės, nustatysite išorines kraštines ir ištrinsite visas vidines linijas."
#: borders.xhp
msgctxt ""
@@ -894,7 +894,7 @@ msgctxt ""
"par_id1495406\n"
"help.text"
msgid "Click the rightmost icon to set an outer border. The inner lines are not changed, except the diagonal lines, which will be removed."
-msgstr "Spustelėdami dešiniausią piktogramą nustatysite išorines kraštines ir ištrinsite viduje buvusias įstrižas linijas."
+msgstr "Jei spustelėsite dešiniausią piktogramą, nustatysite išorines kraštines ir ištrinsite viduje esančias įstrižas linijas."
#: borders.xhp
msgctxt ""
@@ -902,7 +902,7 @@ msgctxt ""
"par_id9269386\n"
"help.text"
msgid "Now you can continue to see which lines the other icons will set or remove."
-msgstr "Tęskite jei norite pamatyti kurias linijas pašalins ar nustatys likusios piktogramos."
+msgstr "Tęskite, jei norite pamatyti, kurios linijos bus ištrintos ar sukurtos spustelėjus likusias piktogramos."
#: borders.xhp
msgctxt ""
@@ -910,7 +910,7 @@ msgctxt ""
"hd_id3593554\n"
"help.text"
msgid "User Defined Settings"
-msgstr "Naudotojo aprašyti nustatymai"
+msgstr "Vartotojo aprašyti nustatymai"
#: borders.xhp
msgctxt ""
@@ -918,7 +918,7 @@ msgctxt ""
"par_id4018066\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 "<emph>Naudotojo aprašomame</emph> plote , spustelėdami galite nustatyti arba pašalinti pavienes linijas. Peržiūroje galite matyti linijas trijose skirtingose būsenose."
+msgstr "<emph>Vartotojo aprašymo</emph> srityje, spustelėję nustatysite arba pašalinsite pavienes linijas. Peržiūroje matysite linijas trijose skirtingose būsenose."
#: borders.xhp
msgctxt ""
@@ -926,7 +926,7 @@ msgctxt ""
"par_id8004699\n"
"help.text"
msgid "Repeatedly click an edge or a corner to switch through the three different states."
-msgstr "Norėdami keisti linijų būsena pakartotinai spustelėkite ant peržiūros kampų arba kraštų."
+msgstr "Jei norite keisti linijų būseną, pakartotinai spustelėkite peržiūros kampus arba kraštes."
#: borders.xhp
msgctxt ""
@@ -934,7 +934,7 @@ msgctxt ""
"par_id8037659\n"
"help.text"
msgid "Line types"
-msgstr "Linijos tipai"
+msgstr "Linijų tipai"
#: borders.xhp
msgctxt ""
@@ -966,7 +966,7 @@ msgctxt ""
"par_id4065065\n"
"help.text"
msgid "<image id=\"img_id9379863\" src=\"media/helpimg/border_ca_7.png\" width=\"1.2602in\" height=\"1.1252in\"><alt id=\"alt_id9379863\">solid line for user defined border</alt></image>"
-msgstr "<image id=\"img_id9379863\" src=\"media/helpimg/border_ca_7.png\" width=\"1.2602in\" height=\"1.1252in\"><alt id=\"alt_id9379863\">vientisa linija naudotojo apibrėžtoms kraštinėms</alt></image>"
+msgstr "<image id=\"img_id9379863\" src=\"media/helpimg/border_ca_7.png\" width=\"1.2602in\" height=\"1.1252in\"><alt id=\"alt_id9379863\">vientisa linija vartotojo apibrėžtoms kraštinėms</alt></image>"
#: borders.xhp
msgctxt ""
@@ -974,7 +974,7 @@ msgctxt ""
"par_id6987823\n"
"help.text"
msgid "A black line sets the corresponding line of the selected cells. The line is shown as a dotted line when you choose the 0.05 pt line style. Double lines are shown when you select a double line style."
-msgstr "Juoda linija nustato pasirinktų langelių atitinkančią liniją. Linijos storį pakeitus į 0.05 tšk. ji bus vaizduojama kaip punktyrinė. Pasirinkus dvigubos linijos stilių ,juodoji linija peržiūroje taip pat taps dviguba."
+msgstr "Juoda linija nustato pasirinktų langelių atitinkančią liniją. Jei linijos storį nurodysite 0,05 tšk., ji bus vaizduojama punktyrine. Jei pasirinksite dvigubos linijos stilių, juoda linija peržiūroje taps dviguba."
#: borders.xhp
msgctxt ""
@@ -990,7 +990,7 @@ msgctxt ""
"par_id6653340\n"
"help.text"
msgid "<image id=\"img_id6972563\" src=\"media/helpimg/border_ca_gray.png\" width=\"1.2602in\" height=\"1.1252in\"><alt id=\"alt_id6972563\">gray line for user defined border</alt></image>"
-msgstr "<image id=\"img_id6972563\" src=\"media/helpimg/border_ca_gray.png\" width=\"1.2602in\" height=\"1.1252in\"><alt id=\"alt_id6972563\">pilka linija naudotojo apibrėžtoms kraštinėms</alt></image>"
+msgstr "<image id=\"img_id6972563\" src=\"media/helpimg/border_ca_gray.png\" width=\"1.2602in\" height=\"1.1252in\"><alt id=\"alt_id6972563\">pilka linija vartotojo apibrėžtoms kraštinėms</alt></image>"
#: borders.xhp
msgctxt ""
@@ -998,7 +998,7 @@ msgctxt ""
"par_id2278817\n"
"help.text"
msgid "A gray line is shown when the corresponding line of the selected cells will not be changed. No line will be set or removed at this position."
-msgstr "Pilka linija bus rodoma kai pasirinktų langelių atitinkama linija nesikeis. Nei viena linija nebus pašalinta ar nustatyta šioje vietoje."
+msgstr "Jei pažymėtų langelių linija nesikeičia, tai ji vaizduojama pilka linija. Tokiu būdu nei viena linija nebus pašalinta ar nustatyta."
#: borders.xhp
msgctxt ""
@@ -1014,7 +1014,7 @@ msgctxt ""
"par_id52491\n"
"help.text"
msgid "<image id=\"img_id3801080\" src=\"media/helpimg/border_ca_white.png\" width=\"1.2602in\" height=\"1.1252in\"><alt id=\"alt_id3801080\">white line for user defined border</alt></image>"
-msgstr "<image id=\"img_id3801080\" src=\"media/helpimg/border_ca_white.png\" width=\"1.2602in\" height=\"1.1252in\"><alt id=\"alt_id3801080\">balta linija naudotojo apibrėžtoms kraštinėms</alt></image>"
+msgstr "<image id=\"img_id3801080\" src=\"media/helpimg/border_ca_white.png\" width=\"1.2602in\" height=\"1.1252in\"><alt id=\"alt_id3801080\">balta linija vartotojo apibrėžtoms kraštinėms</alt></image>"
#: borders.xhp
msgctxt ""
@@ -1022,7 +1022,7 @@ msgctxt ""
"par_id372325\n"
"help.text"
msgid "A white line is shown when the corresponding line of the selected cells will be removed."
-msgstr "Balta linija bus rodoma kai pasirinktų langelių atitinkama linija bus pašalinta"
+msgstr "Balta linija bus rodoma, kai pašalinsite tam tikrą liniją. "
#: borders.xhp
msgctxt ""
@@ -1038,7 +1038,7 @@ msgctxt ""
"par_id4230780\n"
"help.text"
msgid "Select a single cell, then choose <emph>Format - Cells - Borders</emph>."
-msgstr "Pažymėkite vieną langelį, tada pasirinkite<emph>Formatas→Langeliai→Kraštinės</emph>."
+msgstr "Pažymėkite vieną langelį, tada pasirinkite <emph>Formatas → Langeliai → Kraštinės</emph>."
#: borders.xhp
msgctxt ""
@@ -1046,7 +1046,7 @@ msgctxt ""
"par_id1712393\n"
"help.text"
msgid "Click the lower edge to set a very thin line as a lower border. All other lines will be removed from the cell."
-msgstr "Spustelėkite apatinį kraštą jei norite apatinę kraštinę nustatyti kaip ploną liniją. Visos kitos langelio linijos bus pašalintos."
+msgstr "Spustelėkite apatinę kraštinę, jei apatinei kraštinei norite nustatyti ploną liniją. Visos kitos langelio linijos bus pašalintos."
#: borders.xhp
msgctxt ""
@@ -1062,7 +1062,7 @@ msgctxt ""
"par_id5759453\n"
"help.text"
msgid "Choose a thicker line style and click the lower edge. This sets a thicker line as a lower border."
-msgstr "Pasirinkite storesnį linijos stilių ir spustelėkite apatinį kraštą jei norite apatinę kraštinę padaryti storesnę."
+msgstr "Pasirinkite storesnę liniją ir spustelėkite apatinę kraštinę, jei norite apatinę kraštinę nustatyti storesnę."
#: borders.xhp
msgctxt ""
@@ -1070,7 +1070,7 @@ msgctxt ""
"par_id6342051\n"
"help.text"
msgid "<image id=\"img_id7431562\" src=\"media/helpimg/border_ca_7.png\" width=\"1.2602in\" height=\"1.1252in\"><alt id=\"alt_id7431562\">setting a thick line as a border</alt></image>"
-msgstr "<image id=\"img_id7431562\" src=\"media/helpimg/border_ca_7.png\" width=\"1.2602in\" height=\"1.1252in\"><alt id=\"alt_id7431562\">kraštinės nustatomos kaip storos linijos</alt></image>"
+msgstr "<image id=\"img_id7431562\" src=\"media/helpimg/border_ca_7.png\" width=\"1.2602in\" height=\"1.1252in\"><alt id=\"alt_id7431562\">kraštinių linijos pastorinamos</alt></image>"
#: borders.xhp
msgctxt ""
@@ -1078,7 +1078,7 @@ msgctxt ""
"par_id5775322\n"
"help.text"
msgid "Click the second <emph>Default</emph> icon from the left to set all four borders. Then repeatedly click the lower edge until a white line is shown. This removes the lower border."
-msgstr "Jei norite nustatyti visas keturias kraštines spustelėkite antrą iš kairės <emph>Išankstinių parinkčių</emph> piktogramą, tada spustelėkite apatinį kraštą tiek kartų kol pasirodys balta linija, tai panaikins apatinę kraštinę, bet nustatys visas kitas."
+msgstr "Jei norite nustatyti visas keturias kraštines, spustelėkite antrąją iš kairės <emph>Numatytųjų parinkčių</emph> piktogramą, spustelėkite apatinę kraštinę keletą kartų kol pasirodys balta linija. Apatinė linija bus pašalinta, bet visos kitos bus nustatytos."
#: borders.xhp
msgctxt ""
@@ -1094,7 +1094,7 @@ msgctxt ""
"par_id8102053\n"
"help.text"
msgid "You can combine several line types and styles. The last image shows how to set thick outer borders (the thick black lines), while any diagonal lines inside the cell will not be touched (gray lines)."
-msgstr "Jūs galite sudėti keletą skirtingų linijų tipų ir stilių. Paskutinė nuotrauka vaizduoja kaip išorines linijas padaryti juodas ir storas, o vidines įstrižas linijas palikti nepakeistas."
+msgstr "Jūs galite sudėti keletą skirtingų linijų tipų ir stilių. Paskutiniame paveikslėlyje matoma, kaip išorinės linijos padaromos juodomis ir storomis, o vidinės įstrižos linijos paliekamos nepakeistos."
#: borders.xhp
msgctxt ""
@@ -1102,7 +1102,7 @@ msgctxt ""
"par_id2102420\n"
"help.text"
msgid "<image id=\"img_id5380718\" src=\"media/helpimg/border_ca_9.png\" width=\"1.2602in\" height=\"1.1252in\"><alt id=\"alt_id5380718\">advanced example for cell borders</alt></image>"
-msgstr "<image id=\"img_id5380718\" src=\"media/helpimg/border_ca_9.png\" width=\"1.2602in\" height=\"1.1252in\"><alt id=\"alt_id5380718\">papildomas pavyzdys langelių kraštinėms</alt></image>"
+msgstr "<image id=\"img_id5380718\" src=\"media/helpimg/border_ca_9.png\" width=\"1.2602in\" height=\"1.1252in\"><alt id=\"alt_id5380718\">langelių kraštinių pavyzdys</alt></image>"
#: calc_date.xhp
msgctxt ""
@@ -1118,7 +1118,7 @@ msgctxt ""
"bm_id3146120\n"
"help.text"
msgid "<bookmark_value>dates; in cells</bookmark_value> <bookmark_value>times; in cells</bookmark_value> <bookmark_value>cells;date and time formats</bookmark_value> <bookmark_value>current date and time values</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>datos; langeliuose</bookmark_value> <bookmark_value>laikas; langeliuose</bookmark_value> <bookmark_value>langeliai; datos ir laiko formatai</bookmark_value> <bookmark_value>esamos datos ir laiko reikšmės</bookmark_value>"
#: calc_date.xhp
msgctxt ""
@@ -1134,7 +1134,7 @@ msgctxt ""
"par_id3154320\n"
"help.text"
msgid "In $[officename] Calc, you can perform calculations with current date and time values. As an example, to find out exactly how old you are in seconds or hours, follow the following steps:"
-msgstr "\"$[officename] Calc\" jūs galite atlikti įvairius veiksmus su dabartine data ir laiku. Pavyzdžiui, norint sužinoti savo amžių valandomis ar sekundėmis sekite šiuos žingsnius: "
+msgstr "„$[officename]“ skaičiuoklėje galite atlikti įvairius veiksmus su dabartine data ir laiku. Pavyzdžiui, jei norite sužinoti savo amžių valandomis ar sekundėmis atlikite šiuos žingsnius: "
#: calc_date.xhp
msgctxt ""
@@ -1142,7 +1142,7 @@ msgctxt ""
"par_id3150750\n"
"help.text"
msgid "In a spreadsheet, enter your birthday in cell A1."
-msgstr "A1 langelyje skaičiuoklės dokumente įrašykite savo gimimo data."
+msgstr "Skaičiuoklės dokumento A1 langelyje įrašykite savo gimimo datą."
#: calc_date.xhp
msgctxt ""
@@ -1150,7 +1150,7 @@ msgctxt ""
"par_id3145642\n"
"help.text"
msgid "Enter the following formula in cell A3: <item type=\"literal\">=NOW()-A1</item>"
-msgstr "Įrašykite šią formulę: <item type=\"literal\">=NOW()-A1</item> A3 langelyje."
+msgstr "Įrašykite formulę: <item type=\"literal\">=NOW()-A1</item> A3 langelyje."
#: calc_date.xhp
msgctxt ""
@@ -1158,7 +1158,7 @@ msgctxt ""
"par_id3149020\n"
"help.text"
msgid "After pressing the Enter key you will see the result in date format. Since the result should show the difference between two dates as a number of days, you must format cell A3 as a number."
-msgstr "Spustelėję įvedimo mygtuką pamatysite rezultatą datos formatu. Kadangi rezultatas turėtu būti dienų skaičius tarp dviejų datų, formatuokite A3 langelio turinį kaip skaičių."
+msgstr "Spustelėję įvedimo mygtuką pamatysite rezultatą datos formatu. Kadangi rezultatas turėtų būti dienų skaičius tarp dviejų datų, langeliui A3 nustatykite skaičiaus formatą."
#: calc_date.xhp
msgctxt ""
@@ -1166,7 +1166,7 @@ msgctxt ""
"par_id3155335\n"
"help.text"
msgid "Place the cursor in cell A3, right-click to open a context menu and choose <emph>Format Cells</emph>."
-msgstr "Užveskite žymeklį ant A3 langelio, spustelėkite dešinį pelės mygtuką ir atsidariusiame kontekstiniame meniu pasirinkite <emph>Langelių formatas</emph>."
+msgstr "Nutempkite žymeklį ant A3 langelio, spustelėkite dešinį pelės klavišą ir atsidariusiame kontekstiniame meniu pasirinkite <emph>Langelių formatas</emph>."
#: calc_date.xhp
msgctxt ""
@@ -1174,7 +1174,7 @@ msgctxt ""
"par_id3147343\n"
"help.text"
msgid "The <item type=\"menuitem\">Format Cells</item> dialog appears. On the <item type=\"menuitem\">Numbers</item> tab, the \"Number\" category will appear already highlighted. The format is set to \"General\", which causes the result of a calculation containing date entries to be displayed as a date. To display the result as a number, set the number format to \"-1,234\" and close the dialog with the <item type=\"menuitem\">OK</item> button."
-msgstr "Atsidarys <item type=\"menuitem\">Langelių formatavimo</item> dialogo langas. Puslapio skiltyje<item type=\"menuitem\">Skaičiai</item> kategorija „skaičiai“ ir skaičių formatas „Bendras“ bus automatiškai parinkti šis formatas padaro, kad skaičiavimai kurie turi savyje data atsakymą irgi rodytų datos formatu. Norint skaičiavimo rezultatą vaizduoti skaičiais, skaičiaus formatą pasirinkite „-1,234“.Dialogo langą uždarykite spustelėdami mygtuką <item type=\"menuitem\">Gerai</item>."
+msgstr "Atidaromas <item type=\"menuitem\">Langelių formatavimo</item> dialogo langas. Kortelėje <item type=\"menuitem\">Skaičiai</item> automatiškai parenkama kategorija „Skaičiai“ ir skaičių formatas „Bendras“. Formulių, kuriose naudojamos datos, rezultatas rodomas datos formatu. Jei norite formulių rezultatus pateikti skaičių formatu, pasirinkite „-1,234“. Dialogo langą uždarusite spustelėję mygtuką <item type=\"menuitem\">Gerai</item>."
#: calc_date.xhp
msgctxt ""
@@ -1190,7 +1190,7 @@ msgctxt ""
"par_id3150304\n"
"help.text"
msgid "Experiment with some additional formulas: in A4 enter =A3*24 to calculate the hours, in A5 enter =A4*60 for the minutes, and in A6 enter =A5*60 for seconds. Press the Enter key after each formula."
-msgstr "Paeksperimentuokite su keliomis papildomomis formulėmis, kad gautumėte laiką valandomis langelyje A4 įrašykite formulę =A3*24, minutėmis langelyje A5 įrašykite formulę =A4*60, sekundėmis langelyje A6 įrašykite formulę =A5*60. Parašę kiekvieną formulę spustelėkite įvesties mygtuką."
+msgstr "Paeksperimentuokite su keliomis papildomomis formulėmis: langelyje A4 įrašykite formulę =A3*24 ir pamatysite rezultatą valandomis, langelyje A5 įrašykite formulę =A4*60 ir rezultatą pamatysite minutėmis, langelyje A6 įrašykite formulę =A5*60 ir rezultatą pamatysite sekundėmis. Parašę kiekvieną formulę spustelėkite įvesties mygtuką."
#: calc_date.xhp
msgctxt ""
@@ -1198,7 +1198,7 @@ msgctxt ""
"par_id3149207\n"
"help.text"
msgid "The time since your date of birth will be calculated and displayed in the various units. The values are calculated as of the exact moment when you entered the last formula and pressed the Enter key. This value is not automatically updated, although \"Now\" continuously changes. In the <emph>Data</emph> menu, the menu item <emph>Calculate - AutoCalculate</emph> is normally active; however, automatic calculation does not apply to the function NOW. This ensures that your computer is not solely occupied with updating the sheet."
-msgstr "Jūsų amžius bus apskaičiuotas ir atvaizduotas dienomis, valandomis, minutėmis ir sekundėmis. Šios reikšmės apskaičiuojamos jums parašius paskutinę formulę ir spustelėjus įvesties mygtuką.<emph>Duomenų</emph> meniu pasirinkimas <emph>Skaičiavimas→Automatinis skaičiavimas</emph>paprastai yra aktyvuotas, bet automatinis skaičiavimas komandai „Now“ negalioja, kadangi komandos „Now“ reikšmė nuolatos keičiasi ir nuolatinis lakšto atnaujinimas gali sulėtinti kompiuterio darbą."
+msgstr "Jūsų amžius bus apskaičiuotas ir pavaizduotas dienomis, valandomis, minutėmis ir sekundėmis iki šio momento. Bus apskaičiuojamos to momento reikšmės, kai parašysite paskutinę formulę ir spustelėsite įvesties mygtuką. Reikšmė automatiškai neatnaujinama, nors funkcijos NOW rezultatas nuolat keičiasi. <emph>Duomenų</emph> meniu <emph>Skaičiavimas → Automatinis skaičiavimas</emph> paprastai yra aktyvuotas, bet automatinis skaičiavimas funkcijai NOW netaikomas, kadangi jos rezultatas nuolatos keičiasi, o nuolatinis lakšto atnaujinimas gali sulėtinti kompiuterio darbą."
#: calc_series.xhp
msgctxt ""
@@ -1206,7 +1206,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Automatically Calculating Series"
-msgstr ""
+msgstr "Automatinis sekos apskaičiavimas"
#: calc_series.xhp
msgctxt ""
@@ -1214,7 +1214,7 @@ msgctxt ""
"bm_id3150769\n"
"help.text"
msgid "<bookmark_value>series; calculating</bookmark_value> <bookmark_value>calculating; series</bookmark_value> <bookmark_value>linear series</bookmark_value> <bookmark_value>growth series</bookmark_value> <bookmark_value>date series</bookmark_value> <bookmark_value>powers of 2 calculations</bookmark_value> <bookmark_value>cells; filling automatically</bookmark_value> <bookmark_value>automatic cell filling</bookmark_value> <bookmark_value>AutoFill function</bookmark_value> <bookmark_value>filling;cells, automatically</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>seka; skaičiuojama</bookmark_value> <bookmark_value>skaičiuojama; seka</bookmark_value> <bookmark_value>tiesinė seka</bookmark_value> <bookmark_value>didėjanti seka</bookmark_value> <bookmark_value>datos seka</bookmark_value> <bookmark_value>dviejų skaičiavimų galia</bookmark_value> <bookmark_value>langeliai; automatinis užpildymas</bookmark_value> <bookmark_value>automatinis langelių užpildymas</bookmark_value> <bookmark_value>Automatininko užpildymo funkcija</bookmark_value> <bookmark_value>užpildymas;langeliai, automatiškai</bookmark_value>"
#: calc_series.xhp
msgctxt ""
@@ -1222,7 +1222,7 @@ msgctxt ""
"hd_id3150769\n"
"help.text"
msgid "<variable id=\"calc_series\"><link href=\"text/scalc/guide/calc_series.xhp\" name=\"Automatically Calculating Series\">Automatically Filling in Data Based on Adjacent Cells</link></variable>"
-msgstr ""
+msgstr "<variable id=\"calc_series\"><link href=\"text/scalc/guide/calc_series.xhp\" name=\"Automatically Calculating Series\">Automatiškai nustatomi duomenys atsižvelgiant į gretimus langelius</link></variable>"
#: calc_series.xhp
msgctxt ""
@@ -1230,7 +1230,7 @@ msgctxt ""
"par_idN106A8\n"
"help.text"
msgid "You can automatically fill cells with data with the AutoFill command or the Series command."
-msgstr ""
+msgstr "Galite automatiškai užpildyti langelius duomenimis naudodami automatinio užpildymo arba sekos komandą."
#: calc_series.xhp
msgctxt ""
@@ -1238,7 +1238,7 @@ msgctxt ""
"par_idN106D3\n"
"help.text"
msgid "Using AutoFill"
-msgstr ""
+msgstr "Automatinio užpildymo naudojimas"
#: calc_series.xhp
msgctxt ""
@@ -1246,7 +1246,7 @@ msgctxt ""
"par_idN106D7\n"
"help.text"
msgid "AutoFill automatically generates a data series based on a defined pattern."
-msgstr ""
+msgstr "Automatinio užpildymo funkcija automatiškai generuoja duomenų seką remdamasi nurodytu šablonu."
#: calc_series.xhp
msgctxt ""
@@ -1254,7 +1254,7 @@ msgctxt ""
"par_id3154319\n"
"help.text"
msgid "On a sheet, click in a cell, and type a number."
-msgstr ""
+msgstr "Lakšte spustelėkite langelį ir įrašykite bet kokį skaičių."
#: calc_series.xhp
msgctxt ""
@@ -1262,7 +1262,7 @@ msgctxt ""
"par_idN106CB\n"
"help.text"
msgid "Click in another cell and then click back in the cell where you typed the number."
-msgstr ""
+msgstr "Spustelėkite kitą langelį ir tada vėl spustelėkite langelį, kur anksčiau įrašėte skaičių."
#: calc_series.xhp
msgctxt ""
@@ -1270,7 +1270,7 @@ msgctxt ""
"par_id3145272\n"
"help.text"
msgid "Drag the fill handle in the bottom right corner of the cell across the cells that you want to fill, and release the mouse button."
-msgstr ""
+msgstr "Nuspaudę langelio apatinėje dešinėje pusėje esantį tempkite tempkite tiek langelių, kiek norite užpildyti."
#: calc_series.xhp
msgctxt ""
@@ -1278,7 +1278,7 @@ msgctxt ""
"par_id3145801\n"
"help.text"
msgid "The cells are filled with ascending numbers."
-msgstr ""
+msgstr "Langeliai užpildyti didėjančiais skaičiais."
#: calc_series.xhp
msgctxt ""
@@ -1286,7 +1286,7 @@ msgctxt ""
"par_idN106EE\n"
"help.text"
msgid "To quickly create a list of consecutive days, enter <item type=\"literal\">Monday</item> in a cell, and drag the fill handle."
-msgstr ""
+msgstr "Jei norite sukurti nuosekliai einančių dienų seką, į pasirinktą langelį įrašykite <item type=\"literal\">Pirmadienis</item> ir tempkite užpildymo kvadratėlį tiek langelių, kiek norite užpildyti."
#: calc_series.xhp
msgctxt ""
@@ -1294,7 +1294,7 @@ msgctxt ""
"par_id9720145\n"
"help.text"
msgid "Hold down <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> if you do not want to fill the cells with different values."
-msgstr ""
+msgstr "Jei norite nukopijuoti langelio turinį į kitus langelius, tempdami užpildymo kvadratėlį laikykite nuspaudę <switchinline select=\"sys\"><caseinline select=\"MAC\">klavišą </caseinline><defaultinline>Vald.</defaultinline></switchinline>."
#: calc_series.xhp
msgctxt ""
@@ -1302,7 +1302,7 @@ msgctxt ""
"par_id3154490\n"
"help.text"
msgid "If you select two or more adjacent cells that contain different numbers, and drag, the remaining cells are filled with the arithmetic pattern that is recognized in the numbers. The AutoFill function also recognizes customized lists that are defined under <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 Calc - Sort Lists</item>."
-msgstr ""
+msgstr "Jeigu pažymėsite du gretimus langelius su skirtingais skaičiais juose ir tempsite užpildymo kvadratėlį, tušti langeliai bus užpildyti aritmetinės pirmų dviejų skaičių progresijos nariais. Automatinio užpildymo funkcija tai pat atpažįsta apibrėžtus sąrašus skaičiuoklės parinktyse: <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"menuitem\">„%PRODUCTNAME“ - parinktys </item></caseinline><defaultinline><item type=\"menuitem\">Priemonės → Parinktys </item></defaultinline></switchinline><item type=\"menuitem\"> → „%PRODUCTNAME“ skaičiuoklė → Rikiavimas</item>. "
#: calc_series.xhp
msgctxt ""
@@ -1310,7 +1310,7 @@ msgctxt ""
"par_idN10737\n"
"help.text"
msgid "You can double-click the fill handle to automatically fill all empty columns of the current data block. For example, first enter Jan into A1 and drag the fill handle down to A12 to get the twelve months in the first column. Now enter some values into B1 and C1. Select those two cells, and double-click the fill handle. This fills automatically the data block B1:C12."
-msgstr ""
+msgstr "Jei norite automatiškai užpildyti lentelėje esančio stulpelio tuščius langelius du kartus spustelėkite užpildymo rankenėlę. Pavyzdžiui į langelį A1 įveskite Sausis ir laikydami užpildymo rankenėlę temkite iki langelio A12, kad visi 12 langelių būtų užpildyti su mėnesių pavadinimais. Dabar į langelius B1 ir C1 kažką įrašykite ir du kartus spustelėkite užpildymo rankenėlę, tai turėtų automatiškai užpildyti visus langelius B1: C12 lentelėje."
#: calc_series.xhp
msgctxt ""
@@ -1318,7 +1318,7 @@ msgctxt ""
"par_idN10713\n"
"help.text"
msgid "Using a Defined Series"
-msgstr ""
+msgstr "Apibrėžtos sekos naudojimas"
#: calc_series.xhp
msgctxt ""
@@ -1326,7 +1326,7 @@ msgctxt ""
"par_id3150749\n"
"help.text"
msgid "Select the cell range in the sheet that you want to fill."
-msgstr ""
+msgstr "Lakšte pažymėkite langelių bloką, kurį norite užpildyti"
#: calc_series.xhp
msgctxt ""
@@ -1334,7 +1334,7 @@ msgctxt ""
"par_id3154754\n"
"help.text"
msgid "Choose <item type=\"menuitem\">Sheet - Fill Cells - Series</item>."
-msgstr ""
+msgstr "Pasirinkite <item type=\"menuitem\">Lakštas → Užpildyti langelius → Seka</item>."
#: calc_series.xhp
msgctxt ""
@@ -1342,7 +1342,7 @@ msgctxt ""
"par_idN10716\n"
"help.text"
msgid "Select the parameters for the series."
-msgstr ""
+msgstr "Pasirinkite parametrus, kuriuos norite pritaikyti sekai."
#: calc_series.xhp
msgctxt ""
@@ -1350,7 +1350,7 @@ msgctxt ""
"par_idN10731\n"
"help.text"
msgid "If you select a <emph>linear</emph> series, the increment that you enter is <emph>added</emph> to each consecutive number in the series to create the next value."
-msgstr ""
+msgstr "Jei pasirinkote <emph>Tiesinę</emph> seką, pokytis, kurį įvedėte, <emph> pridedamas</emph> kiekvienam skaičiui sekoje."
#: calc_series.xhp
msgctxt ""
@@ -1358,7 +1358,7 @@ msgctxt ""
"par_idN1073C\n"
"help.text"
msgid "If you select a <emph>growth</emph> series, the increment that you enter is <emph>multiplied</emph> by each consecutive number to create the next value."
-msgstr ""
+msgstr "Jei pasirinkote <emph>Geometrinę</emph> seką, iš pokyčio, kurį įvedėte, <emph> padauginamas</emph> kiekvienas skaičiaus sekoje."
#: calc_series.xhp
msgctxt ""
@@ -1366,7 +1366,7 @@ msgctxt ""
"par_idN10747\n"
"help.text"
msgid "If you select a <emph>date</emph> series, the increment that you enter is added to the time unit that you specify."
-msgstr ""
+msgstr "Jei pasirinkote <emph>Datos</emph> seką, pokytis, kurį įvedėte, pridedamas prie laiko vieneto, kurį nurodėte."
#: calc_series.xhp
msgctxt ""
@@ -1374,7 +1374,7 @@ msgctxt ""
"par_id3159173\n"
"help.text"
msgid "<link href=\"text/shared/optionen/01060400.xhp\" name=\"Sort lists\">Sort lists</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/optionen/01060400.xhp\" name=\"Sort lists\">Rikiavimas</link>"
#: calc_timevalues.xhp
msgctxt ""
@@ -1382,7 +1382,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Calculating Time Differences"
-msgstr ""
+msgstr "Laiko skirtumų skaičiavimas"
#: calc_timevalues.xhp
msgctxt ""
@@ -1390,7 +1390,7 @@ msgctxt ""
"bm_id3150769\n"
"help.text"
msgid "<bookmark_value>calculating;time differences</bookmark_value><bookmark_value>time differences</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>skaičiuojama;laiko skirtumas</bookmark_value><bookmark_value>laiko skirtumas</bookmark_value>"
#: calc_timevalues.xhp
msgctxt ""
@@ -1398,7 +1398,7 @@ msgctxt ""
"hd_id3150769\n"
"help.text"
msgid "<variable id=\"calc_timevalues\"><link href=\"text/scalc/guide/calc_timevalues.xhp\" name=\"Calculating Time Differences\">Calculating Time Differences</link></variable>"
-msgstr ""
+msgstr "<variable id=\"calc_timevalues\"><link href=\"text/scalc/guide/calc_timevalues.xhp\" name=\"Calculating Time Differences\">Laiko skirtumų skaičiavimas</link></variable>"
#: calc_timevalues.xhp
msgctxt ""
@@ -1406,7 +1406,7 @@ msgctxt ""
"par_id3149263\n"
"help.text"
msgid "If you want to calculate time differences, for example, the time between 23:30 and 01:10 in the same night, use the following formula:"
-msgstr ""
+msgstr "Jei norite apskaičiuoti laikų skirtumus, pavyzdžiui, laiko tarpą tarp 23:30 ir 01:10, naudokite formulę:"
#: calc_timevalues.xhp
msgctxt ""
@@ -1414,7 +1414,7 @@ msgctxt ""
"par_id3159153\n"
"help.text"
msgid "=(B2<A2)+B2-A2"
-msgstr ""
+msgstr "=(B2<A2)+B2-A2"
#: calc_timevalues.xhp
msgctxt ""
@@ -1422,7 +1422,7 @@ msgctxt ""
"par_id3152598\n"
"help.text"
msgid "The later time is B2 and the earlier time is A2. The result of the example is 01:40 or 1 hour and 40 minutes."
-msgstr ""
+msgstr "Langelyje B2 įvedus vėlesnį laiką, o langelyje A2 įvedus ankstesnį laiką, rezultatas bus 1 valanda ir 40 minučių."
#: calc_timevalues.xhp
msgctxt ""
@@ -1430,7 +1430,7 @@ msgctxt ""
"par_id3145271\n"
"help.text"
msgid "In the formula, an entire 24-hour day has a value of 1 and one hour has a value of 1/24. The logical value in parentheses is 0 or 1, corresponding to 0 or 24 hours. The result returned by the formula is automatically issued in time format due to the sequence of the operands."
-msgstr ""
+msgstr "Formulėje 24 valandų diena atitinka 1, o viena valanda atitinka 1/24. Loginės reikšmės 0 ir 1 skliausteliuose atitinka 0 arba 24 valandas. Formulės rezultatas automatiškai išreiškiamas laiko formatu dėl operandų sekos."
#: calculate.xhp
msgctxt ""
@@ -1438,7 +1438,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Calculating in Spreadsheets"
-msgstr ""
+msgstr "Skaičiavimas skaičiuoklės dokumente"
#: calculate.xhp
msgctxt ""
@@ -1446,7 +1446,7 @@ msgctxt ""
"bm_id3150791\n"
"help.text"
msgid "<bookmark_value>spreadsheets; calculating</bookmark_value><bookmark_value>calculating; spreadsheets</bookmark_value><bookmark_value>formulas; calculating</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>dokumentai; skaičiuojamas</bookmark_value><bookmark_value>skaičiuojamas; dokumentai</bookmark_value><bookmark_value>formulės; skaičiuojamas</bookmark_value>"
#: calculate.xhp
msgctxt ""
@@ -1454,7 +1454,7 @@ msgctxt ""
"hd_id3150791\n"
"help.text"
msgid "<variable id=\"calculate\"><link href=\"text/scalc/guide/calculate.xhp\" name=\"Calculating in Spreadsheets\">Calculating in Spreadsheets</link></variable>"
-msgstr ""
+msgstr "<variable id=\"calculate\"><link href=\"text/scalc/guide/calculate.xhp\" name=\"Calculating in Spreadsheets\">Skaičiavimas skaičiuoklės dokumente</link></variable>"
#: calculate.xhp
msgctxt ""
@@ -1462,7 +1462,7 @@ msgctxt ""
"par_id3146120\n"
"help.text"
msgid "The following is an example of a calculation in $[officename] Calc."
-msgstr ""
+msgstr "Toliau pateikiamas skaičiavimo pavyzdys „$[officename]“ skaičiuoklėje."
#: calculate.xhp
msgctxt ""
@@ -1470,7 +1470,7 @@ msgctxt ""
"par_id3153951\n"
"help.text"
msgid "Click in a cell, and type a number"
-msgstr ""
+msgstr "Spustelėkite langelį ir įrašykite bet kokį skaičių."
#: calculate.xhp
msgctxt ""
@@ -1478,7 +1478,7 @@ msgctxt ""
"par_idN10656\n"
"help.text"
msgid "Press Enter."
-msgstr ""
+msgstr "Spustelėkite įvesties klavišą."
#: calculate.xhp
msgctxt ""
@@ -1486,7 +1486,7 @@ msgctxt ""
"par_idN1065D\n"
"help.text"
msgid "The cursor moves down to the next cell."
-msgstr ""
+msgstr "Žymeklis turėtų pereiti į kitą langelį."
#: calculate.xhp
msgctxt ""
@@ -1494,7 +1494,7 @@ msgctxt ""
"par_id3155064\n"
"help.text"
msgid "Enter another number."
-msgstr ""
+msgstr "Įrašykite dar vieną skaičių."
#: calculate.xhp
msgctxt ""
@@ -1502,7 +1502,7 @@ msgctxt ""
"par_idN1066F\n"
"help.text"
msgid "Press the Tab key."
-msgstr ""
+msgstr "Spustelėkite Tab klavišą."
#: calculate.xhp
msgctxt ""
@@ -1510,7 +1510,7 @@ msgctxt ""
"par_idN10676\n"
"help.text"
msgid "The cursor moves to the right into the next cell."
-msgstr ""
+msgstr "Žymeklis perkeliamas į gretimą langelį dešinėje."
#: calculate.xhp
msgctxt ""
@@ -1518,7 +1518,7 @@ msgctxt ""
"par_id3154253\n"
"help.text"
msgid "Type in a formula, for example, <item type=\"literal\">=A3 * A4 / 100.</item>"
-msgstr ""
+msgstr "Įrašykite formulę, pavyzdžiui, <item type=\"literal\">=A3*A4/100.</item>"
#: calculate.xhp
msgctxt ""
@@ -1526,7 +1526,7 @@ msgctxt ""
"par_idN1068B\n"
"help.text"
msgid "Press Enter."
-msgstr ""
+msgstr "Spustelėkite įvesties klavišą."
#: calculate.xhp
msgctxt ""
@@ -1534,7 +1534,7 @@ msgctxt ""
"par_id3147343\n"
"help.text"
msgid "The result of the formula appears in the cell. If you want, you can edit the formula in the input line of the Formula bar."
-msgstr ""
+msgstr "Langelyje pasirodo formulės rezultatas. Formulę taisyti galite formulių juostoje esančioje įvesties eilutėje."
#: calculate.xhp
msgctxt ""
@@ -1542,7 +1542,7 @@ msgctxt ""
"par_id3155378\n"
"help.text"
msgid "When you edit a formula, the new result is calculated automatically."
-msgstr ""
+msgstr "Pertvarkius formulę rezultatas automatiškai perskaičiuojamas."
#: cell_enter.xhp
msgctxt ""
@@ -1550,7 +1550,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Entering Values"
-msgstr ""
+msgstr "Reikšmių įvedimas."
#: cell_enter.xhp
msgctxt ""
@@ -1558,7 +1558,7 @@ msgctxt ""
"bm_id3150868\n"
"help.text"
msgid "<bookmark_value>values; inserting in multiple cells</bookmark_value> <bookmark_value>inserting;values</bookmark_value> <bookmark_value>cell ranges;selecting for data entries</bookmark_value> <bookmark_value>areas, see also cell ranges</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>reikšmės; įterpiama į kelis langelius</bookmark_value> <bookmark_value>įterpiama;reikšmės</bookmark_value> <bookmark_value>langelių sritis;duomenų įrašų pasirinkimas</bookmark_value> <bookmark_value>plotas; taip pat žiūrėti langelių sritis</bookmark_value>"
#: cell_enter.xhp
msgctxt ""
@@ -1566,7 +1566,7 @@ msgctxt ""
"hd_id3405255\n"
"help.text"
msgid "<variable id=\"cell_enter\"><link href=\"text/scalc/guide/cell_enter.xhp\">Entering Values</link></variable>"
-msgstr ""
+msgstr "<variable id=\"cell_enter\"><link href=\"text/scalc/guide/cell_enter.xhp\">Reikšmių įvedimas.</link></variable>"
#: cell_enter.xhp
msgctxt ""
@@ -1574,7 +1574,7 @@ msgctxt ""
"par_id7147129\n"
"help.text"
msgid "Calc can simplify entering data and values into multiple cells. You can change some settings to conform to your preferences."
-msgstr ""
+msgstr "Skaičiuoklėje galite paprasčiau įvesti duomenis į keletą langelių blokų iškart. Galite pakeisti keletą parametrų ir prisitaikyti parinktis."
#: cell_enter.xhp
msgctxt ""
@@ -1582,7 +1582,7 @@ msgctxt ""
"hd_id5621509\n"
"help.text"
msgid "To Enter Values Into a Range of Cells Manually"
-msgstr ""
+msgstr "Reikšmių įvedimas į langelių blokus rankiniu būdų"
#: cell_enter.xhp
msgctxt ""
@@ -1590,7 +1590,7 @@ msgctxt ""
"par_id8200018\n"
"help.text"
msgid "There are two features that assist you when you enter a block of data manually."
-msgstr ""
+msgstr "Į langelių bloką įvesti duomenis rankiniu būdu padeda dvi programos galimybės."
#: cell_enter.xhp
msgctxt ""
@@ -1598,7 +1598,7 @@ msgctxt ""
"hd_id1867427\n"
"help.text"
msgid "Area Detection for New Rows"
-msgstr ""
+msgstr "Vietos ieškojimas naujoms eilutėms"
#: cell_enter.xhp
msgctxt ""
@@ -1606,7 +1606,7 @@ msgctxt ""
"par_id7908871\n"
"help.text"
msgid "In the row below a heading row, you can advance from one cell to the next with the Tab key. After you enter the value into the last cell in the current row, press Enter. Calc positions the cursor below the first cell of the current block."
-msgstr ""
+msgstr "Pirmoje eilutėje po antrašte galite judėti iš vieno langelio į kitą dešinėn spustelėdami Tab klavišą. Įvedę duomenis į paskutinį eilutės langelį spustelėkite įvesties klavišą ir skaičiuoklė automatiškai perkels žymeklį į kitos eilutės pirmą langelį."
#: cell_enter.xhp
msgctxt ""
@@ -1614,7 +1614,7 @@ msgctxt ""
"par_id6196783\n"
"help.text"
msgid "<image id=\"img_id6473586\" src=\"media/helpimg/area1.png\" width=\"4.8335in\" height=\"1.5937in\"><alt id=\"alt_id6473586\">area detection</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id6473586\" src=\"media/helpimg/area1.png\" width=\"4.8335in\" height=\"1.5937in\"><alt id=\"alt_id6473586\">vietos aptikimas</alt></image>"
#: cell_enter.xhp
msgctxt ""
@@ -1622,7 +1622,7 @@ msgctxt ""
"par_id8118839\n"
"help.text"
msgid "In row 3, press Tab to advance from cell B3 to C3, D3, and E3. Then press Enter to advance to B4."
-msgstr ""
+msgstr "Jei trečioje eilutėje norite judėti iš langelio B3 į C3, po to į D3 ir į E3 spustelėkite Tab klavišą. Jei norite pereiti į B4 langelį, spustelėkite įvesties klavišą."
#: cell_enter.xhp
msgctxt ""
@@ -1630,7 +1630,7 @@ msgctxt ""
"hd_id3583788\n"
"help.text"
msgid "Area Selection"
-msgstr ""
+msgstr "Langelių bloko žymėjimas"
#: cell_enter.xhp
msgctxt ""
@@ -1638,7 +1638,7 @@ msgctxt ""
"par_id2011780\n"
"help.text"
msgid "Use drag-and-drop to select the area where you want to input values. But start dragging from the last cell of the area and release the mouse button when you have selected the first cell. Now you can start to input values. Always press the Tab key to advance to the next cell. You will not leave the selected area."
-msgstr ""
+msgstr "Žymekliu pažymėkite langelių bloką, kurį norite užpildyti, nuo apatinio bloko langelio iki pirmojo. Pradėkite vesti duomenis į pirmąjį langelį. Jei norite pereiti į kitą langelį, spustelėkite Tab klavišą. Kol langelių blokas pažymėtas, priėję pažymėto bloko eilutės paskutinį lankelį ir spustelėję Tab klavišą, pereisite į kitos to pačio bloko eilutės pirmąjį langelį, o priėję bloko paskutinį langelį ir paspaudę Tab klavišą, grįšite į bloko pradžią."
#: cell_enter.xhp
msgctxt ""
@@ -1646,7 +1646,7 @@ msgctxt ""
"par_id7044282\n"
"help.text"
msgid "<image id=\"img_id2811365\" src=\"media/helpimg/area2.png\" width=\"4.8335in\" height=\"1.5937in\"><alt id=\"alt_id2811365\">area selection</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id2811365\" src=\"media/helpimg/area2.png\" width=\"4.8335in\" height=\"1.5937in\"><alt id=\"alt_id2811365\">langelių bloko pažymėjimas</alt></image>"
#: cell_enter.xhp
msgctxt ""
@@ -1654,7 +1654,7 @@ msgctxt ""
"par_id3232520\n"
"help.text"
msgid "Select the area from E7 to B3. Now B3 is waiting for your input. Press Tab to advance to the next cell within the selected area."
-msgstr ""
+msgstr "Pažymėkite langelių bloką nuo langelio B3 iki langelio E7. Pradėkite rašyti duomenys į aktyvų langelį. Jei norite pereiti į kitą langelį spustelėkite Tab klavišą."
#: cell_enter.xhp
msgctxt ""
@@ -1662,7 +1662,7 @@ msgctxt ""
"hd_id8950163\n"
"help.text"
msgid "To Enter Values to a Range of Cells Automatically"
-msgstr ""
+msgstr "Reikšmių įrašymas į langelių blokus automatiškai"
#: cell_enter.xhp
msgctxt ""
@@ -1670,7 +1670,7 @@ msgctxt ""
"par_id633869\n"
"help.text"
msgid "See <link href=\"text/scalc/guide/calc_series.xhp\">Automatically Filling in Data Based on Adjacent Cells</link>."
-msgstr ""
+msgstr "Žiūrėkite <link href=\"text/scalc/guide/calc_series.xhp\">Automatiškas langelių užpildymas duomenimis naudojantis gretimais langeliais</link>."
#: cell_protect.xhp
msgctxt ""
@@ -1678,7 +1678,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Protecting Cells from Changes"
-msgstr ""
+msgstr "Langelių saugojimas nuo pakeitimų"
#: cell_protect.xhp
msgctxt ""
@@ -1686,7 +1686,7 @@ msgctxt ""
"bm_id3146119\n"
"help.text"
msgid "<bookmark_value>protecting;cells and sheets</bookmark_value> <bookmark_value>cells; protecting</bookmark_value> <bookmark_value>cell protection; enabling</bookmark_value> <bookmark_value>sheets; protecting</bookmark_value> <bookmark_value>documents; protecting</bookmark_value> <bookmark_value>cells; hiding for printing</bookmark_value> <bookmark_value>changing; sheet protection</bookmark_value> <bookmark_value>hiding;formulas</bookmark_value> <bookmark_value>formulas;hiding</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>saugojimas;langeliai ir lakštai</bookmark_value> <bookmark_value>langeliai; saugojimas</bookmark_value> <bookmark_value>langelių saugojimas; įgalinama</bookmark_value> <bookmark_value>lakštai;saugojimas</bookmark_value> <bookmark_value>dokumentai; saugojimas</bookmark_value> <bookmark_value>langeliai; paslėpti nuo spausdinimo</bookmark_value> <bookmark_value>keitimas;lakšto saugojimas</bookmark_value> <bookmark_value>slėpimas;formulės</bookmark_value> <bookmark_value>formulės;slėpimas</bookmark_value>"
#: cell_protect.xhp
msgctxt ""
@@ -1694,7 +1694,7 @@ msgctxt ""
"hd_id3146119\n"
"help.text"
msgid "<variable id=\"cell_protect\"><link href=\"text/scalc/guide/cell_protect.xhp\" name=\"Protecting Cells from Changes\">Protecting Cells from Changes</link></variable>"
-msgstr ""
+msgstr "<variable id=\"cell_protect\"><link href=\"text/scalc/guide/cell_protect.xhp\" name=\"Protecting Cells from Changes\">Langelių saugojimas nuo pakeitimų</link></variable>"
#: cell_protect.xhp
msgctxt ""
@@ -1702,7 +1702,7 @@ msgctxt ""
"par_id3153368\n"
"help.text"
msgid "In <item type=\"productname\">%PRODUCTNAME</item> Calc you can protect sheets and the document as a whole. You can choose whether the cells are protected against accidental changes, whether the formulas can be viewed from within Calc, whether the cells are visible or whether the cells can be printed."
-msgstr ""
+msgstr "<item type=\"productname\">„%PRODUCTNAME“</item> skaičiuoklėje galite apsaugoti lakštą arba dokumentą. Galite nustatyti ar langeliai bus apsaugoti nuo atsitiktinių pakeitimų, ar langeliuose įrašytos formulės bus rodomos ar ne, taip pat galite nustatyti ar langeliai bus matomi spausdinimo metu."
#: cell_protect.xhp
msgctxt ""
@@ -1710,7 +1710,7 @@ msgctxt ""
"par_id3145261\n"
"help.text"
msgid "Protection can be provided by means of a password, but it does not have to be. If you have assigned a password, protection can only be removed once the correct password has been entered."
-msgstr ""
+msgstr "Dokumentą galite apsaugoti slaptažodžiu. Slaptažodžio apsauga gali būti pašalinta tik įvedus tą patį slaptažodį."
#: cell_protect.xhp
msgctxt ""
@@ -1718,7 +1718,7 @@ msgctxt ""
"par_id3148576\n"
"help.text"
msgid "Note that the cell protection for cells with the <emph>Protected</emph> attribute is only effective when you protect the whole sheet. In the default condition, every cell has the <emph>Protected</emph> attribute. Therefore you must remove the attribute selectively for those cells where the user may make changes. You then protect the whole sheet and save the document."
-msgstr ""
+msgstr "Atkreipkite dėmesį, kad langelis bus <emph>Apsaugotas</emph> tik, jei visas lakštas bus apsaugotas. Apsaugojus visą dokumentą, kiekvienas langelis bus <emph>Apsaugos</emph>. Todėl, jei norėsite keisti langelių turinį, turėsite pašalinti apsaugą ir baigę darbą vėl apsaugoti lakštą ir įrašyti dokumentą."
#: cell_protect.xhp
msgctxt ""
@@ -1726,7 +1726,7 @@ msgctxt ""
"par_id5974303\n"
"help.text"
msgid "These protection features are just switches to prevent accidental action. The features are not intended to provide any secure protection. For example, by exporting a sheet to another file format, a user may be able to surpass the protection features. There is only one secure protection: the password that you can apply when saving an OpenDocument file. A file that has been saved with a password can be opened only with the same password."
-msgstr ""
+msgstr "Šios apsaugos priemonės neapsaugo jūsų dokumento, jos tik padeda išvengti atsitiktinio dokumento sugadinimo. Yra tik vienas saugus būdas iš tikrųjų apsaugoti jūsų failą: slaptažodžio nustatymas įrašant dokumento failą. Dokumento failas, kuris buvo įrašytas su slaptažodžiu gali būti atidarytas tik įvedus tą patį slaptažodį."
#: cell_protect.xhp
msgctxt ""
@@ -1734,7 +1734,7 @@ msgctxt ""
"par_idN1066B\n"
"help.text"
msgid "Select the cells that you want to specify the cell protection options for."
-msgstr ""
+msgstr "Pažymėkite langelius, kuriems norite koreguoti apsaugos nustatymus."
#: cell_protect.xhp
msgctxt ""
@@ -1742,7 +1742,7 @@ msgctxt ""
"par_id3149019\n"
"help.text"
msgid "Choose <item type=\"menuitem\">Format - Cells</item> and click the <emph>Cell Protection</emph> tab."
-msgstr ""
+msgstr "Pasirinkite <item type=\"menuitem\">Formatas → Langeliai</item> ir spustelėkite kortelę <emph>Langelio apsauga</emph>."
#: cell_protect.xhp
msgctxt ""
@@ -1750,7 +1750,7 @@ msgctxt ""
"par_id3152985\n"
"help.text"
msgid "Select the protection options that you want. All options will be applied only after you protect the sheet from the Tools menu - see below."
-msgstr ""
+msgstr "Pasirinkite jums norimus apsaugos nustatymus. Visi langelio apsaugos nustatymai bus pritaikyti tik apsaugojus lakštą – žiūrėkite žemiau."
#: cell_protect.xhp
msgctxt ""
@@ -1758,7 +1758,7 @@ msgctxt ""
"par_id31529866655\n"
"help.text"
msgid "Uncheck <emph>Protected</emph> to allow the user to change the currently selected cells."
-msgstr ""
+msgstr "Jei norite leisti vartotojui koreguoti pasirinktus langelius, nuimkite varnelę nuo <emph>Apsaugoti</emph> ."
#: cell_protect.xhp
msgctxt ""
@@ -1766,7 +1766,7 @@ msgctxt ""
"par_id3152898\n"
"help.text"
msgid "Select <emph>Protected</emph> to prevent changes to the contents and the format of a cell."
-msgstr ""
+msgstr "Jei norite neleisti koreguoti pažymėtų langelių turinį ir formatą, pažymėkite žymimąjį langelį <emph>Apsaugoti</emph> ."
#: cell_protect.xhp
msgctxt ""
@@ -1774,7 +1774,7 @@ msgctxt ""
"par_idN1069A\n"
"help.text"
msgid "Select <emph>Hide formula</emph> to hide and to protect formulas from changes."
-msgstr ""
+msgstr "Jei norite paslėpti ir apsaugoti langeliuose esančias formules, pažymėkite žymimąjį langelį <emph>Slėpti formulę</emph>."
#: cell_protect.xhp
msgctxt ""
@@ -1782,7 +1782,7 @@ msgctxt ""
"par_idN106A1\n"
"help.text"
msgid "Select <emph>Hide when printing</emph> to hide protected cells in the printed document. The cells are not hidden onscreen."
-msgstr ""
+msgstr "Jei norite paslėpti langelius spausdinant dokumentą, pažymėkite žymimąjį langelį <emph>Slėpti spausdinant</emph>. Ekrane langelius vis dar matysite, jie bus paslėpti tik spausdinimo metu."
#: cell_protect.xhp
msgctxt ""
@@ -1790,7 +1790,7 @@ msgctxt ""
"par_id3152872\n"
"help.text"
msgid "Click <emph>OK</emph>."
-msgstr ""
+msgstr "Spustelėkite mygtuką <emph>Gerai</emph>."
#: cell_protect.xhp
msgctxt ""
@@ -1798,7 +1798,7 @@ msgctxt ""
"par_id3145362\n"
"help.text"
msgid "Apply the protection options."
-msgstr ""
+msgstr "Apsaugos nustatymų taikymas."
#: cell_protect.xhp
msgctxt ""
@@ -1806,7 +1806,7 @@ msgctxt ""
"par_idN106C0\n"
"help.text"
msgid "To protect the cells from being changed / viewed / printed according to your settings in the <emph>Format - Cells</emph> dialog, choose <item type=\"menuitem\">Tools - Protect Sheet</item>."
-msgstr ""
+msgstr "Jei norite apsaugoti langelius pagal jūsų pasirinktus nustatymus, dialogo lange <emph>Formatas → Langeliai</emph> pasirinkite <item type=\"menuitem\">Priemonės → Apsaugoti lakštą</item>."
#: cell_protect.xhp
msgctxt ""
@@ -1814,7 +1814,7 @@ msgctxt ""
"par_idN106C7\n"
"help.text"
msgid "To protect the structure of the document, for example the count, <link href=\"text/scalc/guide/rename_table.xhp\">names</link>, and order of the sheets, from being changed, choose <item type=\"menuitem\">Tools - Protect Spreadsheet</item>."
-msgstr ""
+msgstr "Jei norite apsaugoti dokumento struktūrą nuo pakeitimų, pavyzdžiui, lakštų <link href=\"text/scalc/guide/rename_table.xhp\">pavadinimus</link> ar eiliškumą, pasirinkite <item type=\"menuitem\">Priemonės → Apsaugoti dokumentą</item>."
#: cell_protect.xhp
msgctxt ""
@@ -1822,7 +1822,7 @@ msgctxt ""
"par_idN106CF\n"
"help.text"
msgid "(Optional) Enter a password."
-msgstr ""
+msgstr "(Neprivaloma) Įveskite slaptažodį."
#: cell_protect.xhp
msgctxt ""
@@ -1830,7 +1830,7 @@ msgctxt ""
"par_idN106D2\n"
"help.text"
msgid "If you forget your password, you cannot deactivate the protection. If you only want to protect cells from accidental changes, set the sheet protection, but do not enter a password."
-msgstr ""
+msgstr "Jei pamiršite savo slaptažodį, lakšto apsaugos išjungti negalėsite. Jei norite apsaugoti langelius tik nuo atsitiktinių veiksmų, nustatykite lakšto apsaugą, bet jokio slaptažodžio neveskite. "
#: cell_protect.xhp
msgctxt ""
@@ -1838,7 +1838,7 @@ msgctxt ""
"par_id3153810\n"
"help.text"
msgid "Click <emph>OK</emph>."
-msgstr ""
+msgstr "Spustelėkite mygtuką <emph>Gerai</emph>."
#: cell_unprotect.xhp
msgctxt ""
@@ -1846,7 +1846,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Unprotecting Cells"
-msgstr ""
+msgstr "Langelių apsaugos pašalinimas"
#: cell_unprotect.xhp
msgctxt ""
@@ -1854,7 +1854,7 @@ msgctxt ""
"bm_id3153252\n"
"help.text"
msgid "<bookmark_value>cell protection; unprotecting</bookmark_value> <bookmark_value>protecting; unprotecting cells</bookmark_value> <bookmark_value>unprotecting cells</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>langelių saugojimas; neapsaugotas</bookmark_value> <bookmark_value>saugojimas;nesaugomi langeliai</bookmark_value> <bookmark_value>nesaugomi langeliai</bookmark_value>"
#: cell_unprotect.xhp
msgctxt ""
@@ -1862,7 +1862,7 @@ msgctxt ""
"hd_id3153252\n"
"help.text"
msgid "<variable id=\"cell_unprotect\"><link href=\"text/scalc/guide/cell_unprotect.xhp\" name=\"Unprotecting Cells\">Unprotecting Cells</link> </variable>"
-msgstr ""
+msgstr "<variable id=\"cell_unprotect\"><link href=\"text/scalc/guide/cell_unprotect.xhp\" name=\"Unprotecting Cells\">Langelių apsaugos pašalinimas</link></variable>"
#: cell_unprotect.xhp
msgctxt ""
@@ -1870,7 +1870,7 @@ msgctxt ""
"par_id3151112\n"
"help.text"
msgid "Click the sheet for which you want to cancel the protection."
-msgstr ""
+msgstr "Pasirinkite lakštą, kurio apsaugą norite atšaukti."
#: cell_unprotect.xhp
msgctxt ""
@@ -1878,7 +1878,7 @@ msgctxt ""
"par_id3149656\n"
"help.text"
msgid "Select <emph>Tools - Protect Sheet</emph> or <emph>Tools - Protect Spreadsheet</emph> to remove the check mark indicating the protected status."
-msgstr ""
+msgstr "Pasirinkite <emph> Priemonės → Apsaugoti lakštą</emph> arba <emph>Priemonės → Apsaugoti dokumentą</emph> ir atšaukite žymimųjų langelių pažymėjimą."
#: cell_unprotect.xhp
msgctxt ""
@@ -1886,7 +1886,7 @@ msgctxt ""
"par_id3145171\n"
"help.text"
msgid "If you have assigned a password, enter it in this dialog and click <emph>OK</emph>."
-msgstr ""
+msgstr "Jeigu saugodami lakštą ar dokumentą buvote nustatę slaptažodį, jį įveskite ir spustelėkite mygtuką <emph>Gerai</emph>."
#: cell_unprotect.xhp
msgctxt ""
@@ -1894,7 +1894,7 @@ msgctxt ""
"par_id3153771\n"
"help.text"
msgid "The cells can now be edited, the formulas can be viewed, and all cells can be printed until you reactivate the protection for the sheet or document."
-msgstr ""
+msgstr "Langelių turiniai vėl gali būti koreguojami, formulės rodomos, ir visi langeliai bus matomi spausdinant dokumentą."
#: cellcopy.xhp
msgctxt ""
@@ -1902,7 +1902,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Only Copy Visible Cells"
-msgstr ""
+msgstr "Tik matomų langelių kopijavimas"
#: cellcopy.xhp
msgctxt ""
@@ -1910,7 +1910,7 @@ msgctxt ""
"bm_id3150440\n"
"help.text"
msgid "<bookmark_value>cells; copying/deleting/formatting/moving</bookmark_value> <bookmark_value>rows;visible and invisible</bookmark_value> <bookmark_value>copying; visible cells only</bookmark_value> <bookmark_value>formatting;visible cells only</bookmark_value> <bookmark_value>moving;visible cells only</bookmark_value> <bookmark_value>deleting;visible cells only</bookmark_value> <bookmark_value>invisible cells</bookmark_value> <bookmark_value>filters;copying visible cells only</bookmark_value> <bookmark_value>hidden cells</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>langeliai; kopijavimas/trynimas/formatavimas/judinimas</bookmark_value> <bookmark_value>eilutės;matomi ir nematomi</bookmark_value> <bookmark_value>kopijavimas;tik matomus langelius</bookmark_value> <bookmark_value>formatavimas;tik matomus langelius</bookmark_value> <bookmark_value>judinimas;tik matomus langelius</bookmark_value> <bookmark_value>trynimas;tik matomus langelius</bookmark_value> <bookmark_value>nematomi langeliai</bookmark_value> <bookmark_value>filtrai;tik matomų langelių kopijavimas</bookmark_value> <bookmark_value>paslėpti langeliai</bookmark_value>"
#: cellcopy.xhp
msgctxt ""
@@ -1918,7 +1918,7 @@ msgctxt ""
"hd_id3150440\n"
"help.text"
msgid "<variable id=\"cellcopy\"><link href=\"text/scalc/guide/cellcopy.xhp\" name=\"Only Copy Visible Cells\">Only Copy Visible Cells</link></variable>"
-msgstr ""
+msgstr "<variable id=\"cellcopy\"><link href=\"text/scalc/guide/cellcopy.xhp\" name=\"Only Copy Visible Cells\">Tik matomų langelių kopijavimas</link></variable>"
#: cellcopy.xhp
msgctxt ""
@@ -1926,7 +1926,7 @@ msgctxt ""
"par_id3148577\n"
"help.text"
msgid "Assume you have hidden a few rows in a cell range. Now you want to copy, delete, or format only the remaining visible rows."
-msgstr ""
+msgstr "Tarkime, paslėpėte keletą eilučių langelių bloke ir dabar norite kopijuoti, ištrinti ar formatuoti tik likusius matomus langelius."
#: cellcopy.xhp
msgctxt ""
@@ -1934,7 +1934,7 @@ msgctxt ""
"par_id3154729\n"
"help.text"
msgid "$[officename] behavior depends on how the cells were made invisible, by a filter or manually."
-msgstr ""
+msgstr "„$[officename]“ veikimas priklausys nuo to, kaip langeliai paslėpti: filtruojant ar rankiniu būdu. "
#: cellcopy.xhp
msgctxt ""
@@ -1942,7 +1942,7 @@ msgctxt ""
"par_id3155603\n"
"help.text"
msgid "Method and Action"
-msgstr ""
+msgstr "Metodas ir veiksmai"
#: cellcopy.xhp
msgctxt ""
@@ -1950,7 +1950,7 @@ msgctxt ""
"par_id3150751\n"
"help.text"
msgid "Result"
-msgstr ""
+msgstr "Rezultatas"
#: cellcopy.xhp
msgctxt ""
@@ -1958,7 +1958,7 @@ msgctxt ""
"par_id3149018\n"
"help.text"
msgid "Cells were filtered by AutoFilters, standard filters or advanced filters."
-msgstr ""
+msgstr "Langeliai buvo filtruoti automatiniu filtru, standartiniu filtru ar išplėstiniu filtru."
#: cellcopy.xhp
msgctxt ""
@@ -1966,7 +1966,7 @@ msgctxt ""
"par_id3150044\n"
"help.text"
msgid "Copy, delete, move, or format a selection of currently visible cells."
-msgstr ""
+msgstr "Kopijuoti, šalinti, perkelti ar formatuoti matomus pažymėtus langelius."
#: cellcopy.xhp
msgctxt ""
@@ -1974,7 +1974,7 @@ msgctxt ""
"par_id3146918\n"
"help.text"
msgid "Only the visible cells of the selection are copied, deleted, moved, or formatted."
-msgstr ""
+msgstr "Tik matomi pažymėti langeliai bus kopijuojami, šalinami, perkeliami ar formatuojami."
#: cellcopy.xhp
msgctxt ""
@@ -1982,7 +1982,7 @@ msgctxt ""
"par_id3166427\n"
"help.text"
msgid "Cells were hidden using the <emph>Hide</emph> command in the context menu of the row or column headers, or through an <link href=\"text/scalc/01/12080000.xhp\" name=\"outline\">outline</link>."
-msgstr ""
+msgstr "Langeliai buvo paslėpti naudojant stulpelio ar eilutės kontekstinio meniu komandą <emph>Slėpti</emph> arba <link href=\"text/scalc/01/12080000.xhp\" name=\"outline\">struktūrą</link>."
#: cellcopy.xhp
msgctxt ""
@@ -1990,7 +1990,7 @@ msgctxt ""
"par_id3152990\n"
"help.text"
msgid "Copy, delete, move, or format a selection of currently visible cells."
-msgstr ""
+msgstr "Kopijuoti, šalinti, perkelti ar formatuoti matomus pažymėtus langelius."
#: cellcopy.xhp
msgctxt ""
@@ -1998,7 +1998,7 @@ msgctxt ""
"par_id3154371\n"
"help.text"
msgid "All cells of the selection, including the hidden cells, are copied, deleted, moved, or formatted."
-msgstr ""
+msgstr "Visi pažymėti langeliai, įskaitant paslėptus langelius bus kopijuojami, šalinami, perkeliami ar formatuojami."
#: cellreference_dragdrop.xhp
msgctxt ""
@@ -2006,7 +2006,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Referencing Cells by Drag-and-Drop"
-msgstr ""
+msgstr "Langelių nuorodos įterpimas tempiant"
#: cellreference_dragdrop.xhp
msgctxt ""
@@ -2014,7 +2014,7 @@ msgctxt ""
"bm_id3154686\n"
"help.text"
msgid "<bookmark_value>drag and drop; referencing cells</bookmark_value> <bookmark_value>cells; referencing by drag and drop </bookmark_value> <bookmark_value>references;inserting by drag and drop</bookmark_value> <bookmark_value>inserting;references, by drag and drop</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>vilkimas;nuorodos į langelius</bookmark_value> <bookmark_value>langeliai;nurodymas vilkimu</bookmark_value> <bookmark_value>nurodymas; įtraukimas vilkimu</bookmark_value> <bookmark_value>įtraukimas; nurodymas vilkimu</bookmark_value>"
#: cellreference_dragdrop.xhp
msgctxt ""
@@ -2022,7 +2022,7 @@ msgctxt ""
"hd_id3154686\n"
"help.text"
msgid "<variable id=\"cellreference_dragdrop\"><link href=\"text/scalc/guide/cellreference_dragdrop.xhp\" name=\"Referencing Cells by Drag-and-Drop\">Referencing Cells by Drag-and-Drop</link></variable>"
-msgstr ""
+msgstr "<variable id=\"cellreference_dragdrop\"><link href=\"text/scalc/guide/cellreference_dragdrop.xhp\" name=\"Referencing Cells by Drag-and-Drop\">Langelių bloko nuorodos įterpimas tempiant</link></variable>"
#: cellreference_dragdrop.xhp
msgctxt ""
@@ -2030,7 +2030,7 @@ msgctxt ""
"par_id3156444\n"
"help.text"
msgid "With the help of the Navigator you can reference cells from one sheet to another sheet in the same document or in a different document. The cells can be inserted as a copy, link, or hyperlink. The range to be inserted must be defined with a name in the original file so that it can be inserted in the target file."
-msgstr ""
+msgstr "Žvalgiklio pagalba galite įterpti langelių nuorodą į kitą to paties ar kito skaičiuoklės dokumento lakštą. Langelių nuoroda gali būti įterpta kaip kopija, saitas ar hipersaitas. Pagrindiniame dokumente pasirinktas langelių blokas turi būti su tokiu pavadinimu, kad jį būtų galima įterpti tiksliniame dokumente."
#: cellreference_dragdrop.xhp
msgctxt ""
@@ -2038,7 +2038,7 @@ msgctxt ""
"par_id3152576\n"
"help.text"
msgid "Open the document that contains the source cells."
-msgstr ""
+msgstr "Atverkite dokumentą, kuriame yra pirminiai langeliai."
#: cellreference_dragdrop.xhp
msgctxt ""
@@ -2046,7 +2046,7 @@ msgctxt ""
"par_id3154011\n"
"help.text"
msgid "To set the source range as the range, select the cells and choose <emph>Sheet - Named Ranges and Expressions - Define</emph>. Save the source document, and do not close it."
-msgstr ""
+msgstr "Jei norite nustatyti pirminį langelių bloką, pažymėkite langelius ir pasirinkite <emph>Lakštas → Pavadintos sritys ir reiškiniai → Aprašyti</emph>. Įrašykite dokumentą, bet neužverkite."
#: cellreference_dragdrop.xhp
msgctxt ""
@@ -2054,7 +2054,7 @@ msgctxt ""
"par_id3151073\n"
"help.text"
msgid "Open the sheet in which you want to insert something."
-msgstr ""
+msgstr "Atverkite lakštą, kuriame norite įterpti pasirinkto bloko kopija, saitą ar hipersaitą."
#: cellreference_dragdrop.xhp
msgctxt ""
@@ -2062,7 +2062,7 @@ msgctxt ""
"par_id3154732\n"
"help.text"
msgid "Open the <link href=\"text/scalc/01/02110000.xhp\" name=\"Navigator\">Navigator</link>. In the lower box of the Navigator select the source file."
-msgstr ""
+msgstr "Averkite <link href=\"text/scalc/01/02110000.xhp\" name=\"Navigator\">Žvalgiklį</link>. Apatinėje Žvalgiklio srityje pasirinkite pirminį dokumentą."
#: cellreference_dragdrop.xhp
msgctxt ""
@@ -2070,7 +2070,7 @@ msgctxt ""
"par_id3150752\n"
"help.text"
msgid "In the Navigator, the source file object appears under \"Range names\"."
-msgstr ""
+msgstr "Pirminio failo objektas pasirodo Žvalgiklio punkte „Sričių vardai“."
#: cellreference_dragdrop.xhp
msgctxt ""
@@ -2078,7 +2078,7 @@ msgctxt ""
"par_id3154754\n"
"help.text"
msgid "Using the <emph>Drag Mode</emph> icon in Navigator, choose whether you want the reference to be a hyperlink, link, or copy."
-msgstr ""
+msgstr "Spustelėję <emph>Tempimo veiksenos</emph> piktogramą, galite pasirinkti, kaip įterpti bloko nuorodą: kopija, saitu ar hipersaitu."
#: cellreference_dragdrop.xhp
msgctxt ""
@@ -2086,7 +2086,7 @@ msgctxt ""
"par_id3154256\n"
"help.text"
msgid "Click the name under \"Range names\" in the Navigator, and drag into the cell of the current sheet where you want to insert the reference."
-msgstr ""
+msgstr "Pasirinkite savo sukurtą bloką Žvalgiklio „Sričių vardų“ sąraše ir tempkite ją į pasirinktą langelį lakšte."
#: cellreference_dragdrop.xhp
msgctxt ""
@@ -2094,7 +2094,7 @@ msgctxt ""
"par_id3149565\n"
"help.text"
msgid "This method can also be used to insert a range from another sheet of the same document into the current sheet. Select the active document as source in step 4 above."
-msgstr ""
+msgstr "Šis metodas gali būti naudojamas įterpiant langelių bloką į kitą to paties dokumento lakštą. Aukščiau 4 žingsnyje nustatykite aktyviu pirminį dokumentą."
#: cellreferences.xhp
msgctxt ""
@@ -2102,7 +2102,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Referencing a Cell in Another Document"
-msgstr ""
+msgstr "Langelio nuoroda kitame dokumente"
#: cellreferences.xhp
msgctxt ""
@@ -2110,7 +2110,7 @@ msgctxt ""
"bm_id3147436\n"
"help.text"
msgid "<bookmark_value>sheet references</bookmark_value> <bookmark_value>references; to cells in other sheets/documents</bookmark_value> <bookmark_value>cells; operating in another document</bookmark_value> <bookmark_value>documents;references</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>lakštų nuorodos</bookmark_value> <bookmark_value>nuorodos; į langelius kituose lakštuose/dokumentuose</bookmark_value> <bookmark_value>langeliai; veikiantis kitame dokumente</bookmark_value> <bookmark_value>dokumentai; nuorodos</bookmark_value>"
#: cellreferences.xhp
msgctxt ""
@@ -2118,7 +2118,7 @@ msgctxt ""
"hd_id3147436\n"
"help.text"
msgid "<variable id=\"cellreferences\"><link href=\"text/scalc/guide/cellreferences.xhp\" name=\"Referencing Other Sheets\">Referencing Other Sheets</link></variable>"
-msgstr ""
+msgstr "<variable id=\"cellreferences\"><link href=\"text/scalc/guide/cellreferences.xhp\" name=\"Referencing Other Sheets\">Langelio nuoroda kitame dokumente</link></variable>"
#: cellreferences.xhp
msgctxt ""
@@ -2126,7 +2126,7 @@ msgctxt ""
"par_id9663075\n"
"help.text"
msgid "In a sheet cell you can show a reference to a cell in another sheet."
-msgstr ""
+msgstr "Lakšto langelyje galite įterpti kitame lakšte esančio langelio nuorodą."
#: cellreferences.xhp
msgctxt ""
@@ -2134,7 +2134,7 @@ msgctxt ""
"par_id1879329\n"
"help.text"
msgid "In the same way, a reference can also be made to a cell from another document provided that this document has already been saved as a file."
-msgstr ""
+msgstr "Tokiu pačiu būdu galima įterpti kitame dokumente esančio langelio nuorodą, jei tas dokumentas buvo įrašytas."
#: cellreferences.xhp
msgctxt ""
@@ -2142,7 +2142,7 @@ msgctxt ""
"hd_id7122409\n"
"help.text"
msgid "To Reference a Cell in the Same Document"
-msgstr ""
+msgstr "Langelio nuorodo įterpimas į to pačio dokumento kitą langelį"
#: cellreferences.xhp
msgctxt ""
@@ -2150,7 +2150,7 @@ msgctxt ""
"par_id2078005\n"
"help.text"
msgid "Open a new, empty spreadsheet."
-msgstr ""
+msgstr "Atverkite naują, tuščia dokumentą."
#: cellreferences.xhp
msgctxt ""
@@ -2158,7 +2158,7 @@ msgctxt ""
"par_id4943693\n"
"help.text"
msgid "By way of example, enter the following formula in cell A1 of Sheet1:"
-msgstr ""
+msgstr "Pagal pavyzį įrašykite formulę į Lakštas1 A1 langelį:"
#: cellreferences.xhp
msgctxt ""
@@ -2166,7 +2166,7 @@ msgctxt ""
"par_id9064302\n"
"help.text"
msgid "<item type=\"literal\">=Sheet2.A1</item>"
-msgstr ""
+msgstr "<item type=\"literal\">=Lakštas2.A1</item>"
#: cellreferences.xhp
msgctxt ""
@@ -2174,7 +2174,7 @@ msgctxt ""
"par_id7609790\n"
"help.text"
msgid "Click the <emph>Sheet 2</emph> tab at the bottom of the spreadsheet. Set the cursor in cell A1 there and enter text or a number."
-msgstr ""
+msgstr "Spustelėkite dokumento apačioje lakšto ąselę <emph>Lakštas2</emph>. Tempkite žymeklį į A1 langelį ir įrašykite norimą tekstą arba skaičių."
#: cellreferences.xhp
msgctxt ""
@@ -2182,7 +2182,7 @@ msgctxt ""
"par_id809961\n"
"help.text"
msgid "If you switch back to Sheet1, you will see the same content in cell A1 there. If the contents of Sheet2.A1 change, then the contents of Sheet1.A1 also change."
-msgstr ""
+msgstr "Jeigu grįžtumėte į Lakštas1, pamatytumėte tą pati tekstą arba skaičių langelyje A1. Jei pakeisite Lakštas2.A1 langelio turinį, langelio Lakštas1.A1 turinys taip pat pasikeis."
#: cellreferences.xhp
msgctxt ""
@@ -2190,7 +2190,7 @@ msgctxt ""
"hd_id9209570\n"
"help.text"
msgid "To Reference a Cell in Another Document"
-msgstr ""
+msgstr "Langelio nuorodos įterpimas į kitą dokumentą"
#: cellreferences.xhp
msgctxt ""
@@ -2198,7 +2198,7 @@ msgctxt ""
"par_id5949278\n"
"help.text"
msgid "Choose <emph>File - Open</emph>, to load an existing spreadsheet document."
-msgstr ""
+msgstr "Pasirinkite <emph>Failas → Atverti</emph> ir atverkite kokį nors skaičiuoklės dokumentą."
#: cellreferences.xhp
msgctxt ""
@@ -2206,7 +2206,7 @@ msgctxt ""
"par_id8001953\n"
"help.text"
msgid "Choose <emph>File - New</emph>, to open a new spreadsheet document. Set the cursor in the cell where you want to insert the external data and enter an equals sign to indicate that you want to begin a formula."
-msgstr ""
+msgstr "Pasirinkite <emph>Failas → Naujas</emph> ir sukurkite naują skaičiuoklės dokumentą. Tempkite žymeklį į langelį, kur norite įterpti kito dokumento langelio duomenis, ir rašykite formulę pradėdami lygybės ženklu."
#: cellreferences.xhp
msgctxt ""
@@ -2214,7 +2214,7 @@ msgctxt ""
"par_id8571123\n"
"help.text"
msgid "Now switch to the document you have just loaded. Click the cell with the data that you want to insert in the new document."
-msgstr ""
+msgstr "Pasirinkite dokumentą, kurį atvėrėte ir spustelėkite langelį su duomenimis, kuriuos norite įkelti į kitą dokumentą."
#: cellreferences.xhp
msgctxt ""
@@ -2222,7 +2222,7 @@ msgctxt ""
"par_id8261665\n"
"help.text"
msgid "Switch back to the new spreadsheet. In the input line you will now see how $[officename] Calc has added the reference to the formula for you."
-msgstr ""
+msgstr "Grįžkite į naujai sukurtą dokumentą. Įvesties eilutėje dabar matysite „$[officename]“ skaičiuoklės įterptą nuorodą formulėje."
#: cellreferences.xhp
msgctxt ""
@@ -2230,7 +2230,7 @@ msgctxt ""
"par_id5888241\n"
"help.text"
msgid "The reference to a cell of another document contains the name of the other document in single inverted commas, then a hash #, then the name of the sheet of the other document, followed by a point and the name of the cell."
-msgstr ""
+msgstr "Įvesties eilutėje esančioje nuorodoje tarp viengubų kabučių yra dokumento pavadinimas, tada grotelės #, lakšto pavadinimas ir po taško langelio koordinatės."
#: cellreferences.xhp
msgctxt ""
@@ -2238,7 +2238,7 @@ msgctxt ""
"par_id7697683\n"
"help.text"
msgid "Confirm the formula by clicking the green check mark."
-msgstr ""
+msgstr "Patvirtinkite formulę spustelėję žalią varnelę dešinėje."
#: cellreferences.xhp
msgctxt ""
@@ -2246,7 +2246,7 @@ msgctxt ""
"par_id7099826\n"
"help.text"
msgid "If you drag the box in the lower right corner of the active cell to select a range of cells, $[officename] automatically inserts the corresponding references in the adjacent cells. As a result, the sheet name is preceded with a \"$\" sign to designate it as an absolute reference."
-msgstr ""
+msgstr "Jeigu tempdami kvadratėlį esantį aktyviojo langelio dešiniajame apatiniame kampe pažymėsite aplinkui esančius langelius, „$[officename]“ automatiškai įterps atitinkamas nuorodas į gretimus langelius. Formulėje prieš lakšto pavadinimą įterpiamas ženklas „$“ nusakantis absoliučiąsias langelio koordinates."
#: cellreferences.xhp
msgctxt ""
@@ -2254,7 +2254,7 @@ msgctxt ""
"par_id674459\n"
"help.text"
msgid "If you examine the name of the other document in this formula, you will notice that it is written as a <link href=\"text/shared/00/00000002.xhp#url\" name=\"URL\">URL</link>. This means that you can also enter a URL from the Internet."
-msgstr ""
+msgstr "Jeigu patikrintumėte dokumento pavadinimą formulėje, pamatytumėte jog jis parašytas kaip <link href=\"text/shared/00/00000002.xhp#url\" name=\"URL\">URL</link>. Tai reiškia, kad vietoj dokumento pavadinimo galite įrašyti URL adresą."
#: cellreferences_url.xhp
msgctxt ""
@@ -2262,7 +2262,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "References to Other Sheets and Referencing URLs"
-msgstr ""
+msgstr "Nuorodos į kitus lakštus ir URL adresas."
#: cellreferences_url.xhp
msgctxt ""
@@ -2270,7 +2270,7 @@ msgctxt ""
"bm_id3150441\n"
"help.text"
msgid "<bookmark_value>HTML; in sheet cells</bookmark_value><bookmark_value>references; URL in cells</bookmark_value><bookmark_value>cells; Internet references</bookmark_value><bookmark_value>URL; in Calc</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>HTML;lakštų langeliuose</bookmark_value><bookmark_value>nuorodos;URL adresas langeliuose</bookmark_value><bookmark_value>langeliai; nuorodos į internetą</bookmark_value><bookmark_value>URL adresas; Skaičiuoklėje</bookmark_value>"
#: cellreferences_url.xhp
msgctxt ""
@@ -2278,7 +2278,7 @@ msgctxt ""
"hd_id3150441\n"
"help.text"
msgid "<variable id=\"cellreferences_url\"><link href=\"text/scalc/guide/cellreferences_url.xhp\" name=\"Referencing URLs\">Referencing URLs</link></variable>"
-msgstr ""
+msgstr "<variable id=\"cellreferences_url\"><link href=\"text/scalc/guide/cellreferences_url.xhp\" name=\"Referencing URLs\">URL adresas</link></variable>"
#: cellreferences_url.xhp
msgctxt ""
@@ -2286,7 +2286,7 @@ msgctxt ""
"par_id1955626\n"
"help.text"
msgid "For example, if you found an Internet page containing current stock exchange information in spreadsheet cells, you can load this page in $[officename] Calc by using the following procedure:"
-msgstr ""
+msgstr "Pavyzdžiui, jei internetiniame puslapyje radote biržos informaciją pateiktą skaičiuoklės lentele, tai galite įkelti ją į „$[officename]“ skaičiuoklę atlikdami šiuos žingsnius:"
#: cellreferences_url.xhp
msgctxt ""
@@ -2294,7 +2294,7 @@ msgctxt ""
"par_id3152993\n"
"help.text"
msgid "In a $[officename] Calc document, position the cursor in the cell into which you want to insert the external data."
-msgstr ""
+msgstr "„ $[officename]“ skaičiuoklėje nutempkite žymeklį į langelį, kur norite įkelti išorinius duomenys."
#: cellreferences_url.xhp
msgctxt ""
@@ -2302,7 +2302,7 @@ msgctxt ""
"par_id3145384\n"
"help.text"
msgid "Choose <item type=\"menuitem\">Sheet - Link to External Data</item>. The <link href=\"text/scalc/01/04090000.xhp\" name=\"External Data\"><item type=\"menuitem\">External Data</item></link> dialog appears."
-msgstr ""
+msgstr "Pasirinkite <item type=\"menuitem\">Lakštas → Saitas į išorinius duomenys</item> ir atverkite dialogo langą <link href=\"text/scalc/01/04090000.xhp\" name=\"External Data\"><item type=\"menuitem\">Išoriniai duomenys</item></link>."
#: cellreferences_url.xhp
msgctxt ""
@@ -2310,7 +2310,7 @@ msgctxt ""
"par_id3152892\n"
"help.text"
msgid "Enter the URL of the document or Web page in the dialog. The URL must be in the format: http://www.my-bank.com/table.html. The URL for local or local area network files is the path seen in the <item type=\"menuitem\">File - Open</item> dialog."
-msgstr ""
+msgstr "Į dialogo langą įrašykite dokumento ar tinklalapio URL adresą, kurio formtas turi būti http://www.manobankas.com/table.html. Kompiuteryje arba vietiniame tinkle esančių dokumentų adresą galite rasti pasirinkę <item type=\"menuitem\">Failas → Atverti</item>."
#: cellreferences_url.xhp
msgctxt ""
@@ -2318,7 +2318,7 @@ msgctxt ""
"par_id3153068\n"
"help.text"
msgid "$[officename] loads the Web page or file in the \"background\", that is, without displaying it. In the large list box of the <item type=\"menuitem\">External Data</item> dialog, you can see the name of all the sheets or named ranges you can choose from."
-msgstr ""
+msgstr "„$[officename]“ nerodydama pakrauna tinklalapį ar failą. <item type=\"menuitem\">Išorinių duomenų</item> dialogo lange apatinėje srityje galite matyti visų lakštų arba blokų pavadinimus."
#: cellreferences_url.xhp
msgctxt ""
@@ -2326,7 +2326,7 @@ msgctxt ""
"par_id3153914\n"
"help.text"
msgid "Select one or more sheets or named ranges. You can also activate the automatic update function every \"n\" seconds and click <item type=\"menuitem\">OK</item>."
-msgstr ""
+msgstr "Pasirinkite vieną ar daugiau lakštų arba blokų pavadinimų. Taip pat galite aktyvuoti automatinio atnaujinimo funkciją nurodę kas kiek sekundžių atnaujinti. Spustelėkite mygtuką <item type=\"menuitem\">Gerai</item>."
#: cellreferences_url.xhp
msgctxt ""
@@ -2334,7 +2334,7 @@ msgctxt ""
"par_id3157979\n"
"help.text"
msgid "The contents will be inserted as a link in the $[officename] Calc document."
-msgstr ""
+msgstr "Saitai bus įterpti „$[officename]“ skaičiuoklės dokumente."
#: cellreferences_url.xhp
msgctxt ""
@@ -2342,7 +2342,7 @@ msgctxt ""
"par_id3144768\n"
"help.text"
msgid "Save your spreadsheet. When you open it again later, $[officename] Calc will update the linked cells following an inquiry."
-msgstr ""
+msgstr "Įrašykite skaičiuoklės dokumentą. Kai kitą kartą atidarysite „$[officename]“ skaičiuoklę, langeliai su saitais bus automatiškai atnaujinti."
#: cellreferences_url.xhp
msgctxt ""
@@ -2350,7 +2350,7 @@ msgctxt ""
"par_id3159204\n"
"help.text"
msgid "Under <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01040900.xhp\" name=\"Spreadsheet - General\"><item type=\"menuitem\">%PRODUCTNAME Calc - General</item></link> you can choose to have the update, when opened, automatically carried out either always, upon request or never. The update can be started manually in the dialog under <item type=\"menuitem\">Edit - Links</item>."
-msgstr ""
+msgstr "Jei norite pasirinkti nuorodų atnaujinimo laiką, pasirinkite <switchinline select=\"sys\"><caseinline select=\"MAC\">„%PRODUCTNAME“ → Parinktys</caseinline><defaultinline>Priemonės → Parinktys</defaultinline></switchinline><link href=\"text/shared/optionen/01040900.xhp\" name=\"Spreadsheet - General\"><item type=\"menuitem\"> „%PRODUCTNAME“ Skaičiuoklė → Bendros parinktys</item></link>>. Jei norite atnaujinti nuorodas rakiniu būdu, pasirinkite <item type=\"menuitem\">Taisa → Saitai į išorinius failus</item>."
#: cellstyle_by_formula.xhp
msgctxt ""
@@ -2358,7 +2358,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Assigning Formats by Formula"
-msgstr ""
+msgstr "Langelių formatų nustatymas naudojant funkciją"
#: cellstyle_by_formula.xhp
msgctxt ""
@@ -2366,7 +2366,7 @@ msgctxt ""
"bm_id3145673\n"
"help.text"
msgid "<bookmark_value>formats; assigning by formulas</bookmark_value> <bookmark_value>cell formats; assigning by formulas</bookmark_value> <bookmark_value>STYLE function example</bookmark_value> <bookmark_value>cell styles;assigning by formulas</bookmark_value> <bookmark_value>formulas;assigning cell formats</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>formatai; priskyrimas pagal formules</bookmark_value> <bookmark_value>langelių formatai; priskyrimas pagal formules</bookmark_value> <bookmark_value>STYLE funkcija pavyzdys</bookmark_value> <bookmark_value>langelių stiliai; priskyrimas pagal formules</bookmark_value> <bookmark_value>formulės; langelių formatų priskyrimas</bookmark_value>"
#: cellstyle_by_formula.xhp
msgctxt ""
@@ -2374,7 +2374,7 @@ msgctxt ""
"hd_id3145673\n"
"help.text"
msgid "<variable id=\"cellstyle_by_formula\"><link href=\"text/scalc/guide/cellstyle_by_formula.xhp\" name=\"Assigning Formats by Formula\">Assigning Formats by Formula</link></variable>"
-msgstr ""
+msgstr "<variable id=\"cellstyle_by_formula\"><link href=\"text/scalc/guide/cellstyle_by_formula.xhp\" name=\"Assigning Formats by Formula\">Langelių formatų nustatymas naudojant funkciją</link></variable>"
#: cellstyle_by_formula.xhp
msgctxt ""
@@ -2382,7 +2382,7 @@ msgctxt ""
"par_id3150275\n"
"help.text"
msgid "The STYLE() function can be added to an existing formula in a cell. For example, together with the CURRENT function, you can color a cell depending on its value. The formula =...+STYLE(IF(CURRENT()>3; \"Red\"; \"Green\")) applies the cell style \"Red\" to cells if the value is greater than 3, otherwise the cell style \"Green\" is applied."
-msgstr ""
+msgstr "Funkcija STYLE() gali būti įterpta į langelyje jau esamą formulę. Pavyzdžiui, naudodami funkciją STYLE() kartu su funkcija CURRENT galite keisti langelių stilių priklausomai nuo juose esančių reikšmių. Formulė =...+STYLE(IF(CURRENT()>3; \"Raudona\"; \"Žalia\")) pakeis rezultato teksto spalvą į raudoną, jei langelyje esantis skaičius didesnis už 3, kitais atvejais rezultato spalva bus pakeistas į žalią."
#: cellstyle_by_formula.xhp
msgctxt ""
@@ -2390,7 +2390,7 @@ msgctxt ""
"par_id3151385\n"
"help.text"
msgid "If you would like to apply a formula to all cells in a selected area, you can use the <item type=\"menuitem\">Find & Replace</item> dialog."
-msgstr ""
+msgstr "Jeigu norite pritaikyti formulę visiems pažymėtiems langeliams, naudokite <item type=\"menuitem\">Taisa → Ieškoti ir keisti</item> dialogo langą."
#: cellstyle_by_formula.xhp
msgctxt ""
@@ -2398,7 +2398,7 @@ msgctxt ""
"par_id3149456\n"
"help.text"
msgid "Select all the desired cells."
-msgstr ""
+msgstr "Pažymėkite visus norimus langelius."
#: cellstyle_by_formula.xhp
msgctxt ""
@@ -2406,7 +2406,7 @@ msgctxt ""
"par_id3148797\n"
"help.text"
msgid "Select the menu command <emph>Edit - Find & Replace</emph>."
-msgstr ""
+msgstr "Pasirinkite meniu komandą <emph>Taisa → Ieškoti ir keisti</emph>."
#: cellstyle_by_formula.xhp
msgctxt ""
@@ -2414,7 +2414,7 @@ msgctxt ""
"par_id3150767\n"
"help.text"
msgid "For the <item type=\"menuitem\">Find</item> term, enter: .<item type=\"literal\">*</item>"
-msgstr ""
+msgstr "<item type=\"menuitem\">Ko ieškoti</item> laukelyje įveskite: .<item type=\"literal\"> *</item>"
#: cellstyle_by_formula.xhp
msgctxt ""
@@ -2422,7 +2422,7 @@ msgctxt ""
"par_id3153770\n"
"help.text"
msgid "\".*\" is a regular expression that designates the contents of the current cell."
-msgstr ""
+msgstr "\".*\" nusako esamo langelio turinį."
#: cellstyle_by_formula.xhp
msgctxt ""
@@ -2430,7 +2430,7 @@ msgctxt ""
"par_id3153143\n"
"help.text"
msgid "Enter the following formula in the <item type=\"menuitem\">Replace</item> field: <item type=\"literal\">=&+STYLE(IF(CURRENT()>3;\"Red\";\"Green\"))</item>"
-msgstr ""
+msgstr "Laukelyje <item type=\"menuitem\">Kuo pakeisti</item> įveskite šią formulę: <item type=\"literal\">=&+STYLE(IF(CURRENT()>3;\"Raudona\";\"Žalia\"))</item>"
#: cellstyle_by_formula.xhp
msgctxt ""
@@ -2438,7 +2438,7 @@ msgctxt ""
"par_id3146975\n"
"help.text"
msgid "The \"&\" symbol designates the current contents of the <emph>Find</emph> field. The line must begin with an equal sign, since it is a formula. It is assumed that the cell styles \"Red\" and \"Green\" already exist."
-msgstr ""
+msgstr "Ženklas „&“ nuskaito, kas parašyta laukelyje <emph>Ko ieškoti</emph>. Formulė turi būti pradedama rašyti lygybe ir stiliai „Raudonas“, „Žalias“ turi egzistuoti. "
#: cellstyle_by_formula.xhp
msgctxt ""
@@ -2446,7 +2446,7 @@ msgctxt ""
"par_id3149262\n"
"help.text"
msgid "Mark the fields <link href=\"text/shared/01/02100000.xhp\" name=\"Regular expressions\"><emph>Regular expressions</emph></link> and <emph>Current selection only</emph>. Click <emph>Find All</emph>."
-msgstr ""
+msgstr "Pažymėkite žymimuosius langelius <link href=\"text/shared/01/02100000.xhp\" name=\"Regular expressions\"><emph>Reguliarieji reiškiniai</emph></link> ir <emph>Tik pažymėtoje srityje</emph>. Spustelėkite <emph>Ieškoti visų</emph>."
#: cellstyle_by_formula.xhp
msgctxt ""
@@ -2454,7 +2454,7 @@ msgctxt ""
"par_id3144767\n"
"help.text"
msgid "All cells with contents that were included in the selection are now highlighted."
-msgstr ""
+msgstr "Visi ne tušti langeliai, kurie buvo pažymėti, dabar yra paryškinti."
#: cellstyle_by_formula.xhp
msgctxt ""
@@ -2462,7 +2462,7 @@ msgctxt ""
"par_id3147127\n"
"help.text"
msgid "Click <item type=\"menuitem\">Replace all</item>."
-msgstr ""
+msgstr "Spustelėkite <item type=\"menuitem\">Pakeisti visus</item>."
#: cellstyle_conditional.xhp
msgctxt ""
@@ -2470,7 +2470,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Applying Conditional Formatting"
-msgstr ""
+msgstr "Sąlyginio formatavimo taikymas"
#: cellstyle_conditional.xhp
msgctxt ""
@@ -2478,7 +2478,7 @@ msgctxt ""
"bm_id3149263\n"
"help.text"
msgid "<bookmark_value>conditional formatting; cells</bookmark_value> <bookmark_value>cells; conditional formatting</bookmark_value> <bookmark_value>formatting; conditional formatting</bookmark_value> <bookmark_value>styles;conditional styles</bookmark_value> <bookmark_value>cell formats; conditional</bookmark_value> <bookmark_value>random numbers;examples</bookmark_value> <bookmark_value>cell styles; copying</bookmark_value> <bookmark_value>copying; cell styles</bookmark_value> <bookmark_value>tables; copying cell styles</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>sąlyginis formatavimas; langeliai</bookmark_value> <bookmark_value>langeliai; sąlyginis formatavimas</bookmark_value> <bookmark_value>formatavimas; sąlyginis formatavimas</bookmark_value> <bookmark_value>stiliai;sąlyginiai stiliai</bookmark_value> <bookmark_value>langelių formatai; sąlyginiai</bookmark_value> <bookmark_value>atsitiktiniai skaičiai;pavyzdžiai</bookmark_value> <bookmark_value>langelių stiliai;kopijavimas</bookmark_value> <bookmark_value>kopijavimas; langelių stiliai</bookmark_value> <bookmark_value>lentelės; langelių stilių kopijavimas</bookmark_value>"
#: cellstyle_conditional.xhp
msgctxt ""
@@ -2486,7 +2486,7 @@ msgctxt ""
"hd_id3149263\n"
"help.text"
msgid "<variable id=\"cellstyle_conditional\"><link href=\"text/scalc/guide/cellstyle_conditional.xhp\" name=\"Applying Conditional Formatting\">Applying Conditional Formatting</link></variable>"
-msgstr ""
+msgstr "<variable id=\"cellstyle_conditional\"><link href=\"text/scalc/guide/cellstyle_conditional.xhp\" name=\"Applying Conditional Formatting\">Sąlyginio formatavimo taikymas</link></variable>"
#: cellstyle_conditional.xhp
msgctxt ""
@@ -2494,7 +2494,7 @@ msgctxt ""
"par_id3159156\n"
"help.text"
msgid "Using the menu command <emph>Format - Conditional formatting</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 ""
+msgstr "Pasirinkite <emph>Formatas → Sąlyginis formatavimas</emph> ir atsivėrusiame dialogo lange galite kurti sąlygas pažymėtiems langeliams. Langelių, kurie atitiks sukurtas sąlygas, formatai bus pakeistas. "
#: cellstyle_conditional.xhp
msgctxt ""
@@ -2502,7 +2502,7 @@ msgctxt ""
"par_id8039796\n"
"help.text"
msgid "To apply conditional formatting, AutoCalculate must be enabled. Choose <emph>Data - Calculate - AutoCalculate</emph> (you see a check mark next to the command when AutoCalculate is enabled)."
-msgstr ""
+msgstr "Jei norite pritaikyti sąlyginį formatavimą, tai pirma reikia aktyvuoti automatinį skaičiavimą. Pasirinkite <emph>Duomenys → Skaičiavimas → Automatinis skaičiavimas</emph> (jeigu automatinis skaičiavimas jau aktyvuotas kairėje bus pažymėtas žymimasis langelis)."
#: cellstyle_conditional.xhp
msgctxt ""
@@ -2510,7 +2510,7 @@ msgctxt ""
"par_id3154944\n"
"help.text"
msgid "With conditional formatting, you can, for example, highlight the totals that exceed the average value of all totals. If the totals change, the formatting changes correspondingly, without having to apply other styles manually."
-msgstr ""
+msgstr "Sąlyginis formatavimas leidžia paryškinti reikšmes, kurios viršija visų reikšmių vidurkį. Kai pasikeičia reikšmės, formatavimas taip pat pasikeičia."
#: cellstyle_conditional.xhp
msgctxt ""
@@ -2518,7 +2518,7 @@ msgctxt ""
"hd_id4480727\n"
"help.text"
msgid "To Define the Conditions"
-msgstr ""
+msgstr "Sąlygos aprašymas"
#: cellstyle_conditional.xhp
msgctxt ""
@@ -2526,7 +2526,7 @@ msgctxt ""
"par_id3154490\n"
"help.text"
msgid "Select the cells to which you want to apply a conditional style."
-msgstr ""
+msgstr "Pažymėkite langelius, kuriems pritaikysite sąlyginį stilių."
#: cellstyle_conditional.xhp
msgctxt ""
@@ -2534,7 +2534,7 @@ msgctxt ""
"par_id3155603\n"
"help.text"
msgid "Choose <emph>Format - Conditional Formatting</emph>."
-msgstr ""
+msgstr "Pasirinkite <emph>Formatas → Sąlyginis formatavimas</emph>."
#: cellstyle_conditional.xhp
msgctxt ""
@@ -2542,7 +2542,7 @@ msgctxt ""
"par_id3146969\n"
"help.text"
msgid "Enter the condition(s) into the dialog box. The dialog is described in detail in <link href=\"text/scalc/01/05120000.xhp\" name=\"$[officename] Help\">$[officename] Help</link>, and an example is provided below:"
-msgstr ""
+msgstr "Nurodykite sąlygas atsivėrusiame dialogo lange. Jei norite daugiau sužinoti apie šį dialogo langą pasirinkite <link href=\"text/scalc/01/05120000.xhp\" name=\"$[officename] Help\">„$[officename]“ žinyną</link> ir galite panagrinėti pateiktą pavyzdį:"
#: cellstyle_conditional.xhp
msgctxt ""
@@ -2550,7 +2550,7 @@ msgctxt ""
"hd_id3155766\n"
"help.text"
msgid "Example of Conditional Formatting: Highlighting Totals Above/Under the Average Value"
-msgstr ""
+msgstr "Sąlyginio formatavimo pavyzdys: didesnės arba lygios vidurkiui reikšmės paryškinimas."
#: cellstyle_conditional.xhp
msgctxt ""
@@ -2558,7 +2558,7 @@ msgctxt ""
"hd_id4341868\n"
"help.text"
msgid "Step1: Generate Number Values"
-msgstr ""
+msgstr "1 žingsnis: Užpildykite langelius skaičiais"
#: cellstyle_conditional.xhp
msgctxt ""
@@ -2566,7 +2566,7 @@ msgctxt ""
"par_id3150043\n"
"help.text"
msgid "You want to give certain values in your tables particular emphasis. For example, in a table of turnovers, you can show all the values above the average in green and all those below the average in red. This is possible with conditional formatting."
-msgstr ""
+msgstr "Sakykime, skirtingoms reikšmėms norite suteikti skirtingus paryškinimus. Pavyzdžiui, naudodami sąlyginį formatavimą, lentelėje esančias reikšmes mažesnes už jų vidurkį pritaikykime raudoną spalvą, o reikšmėms didesnėms už vidurkį – žalią spalvą."
#: cellstyle_conditional.xhp
msgctxt ""
@@ -2574,7 +2574,7 @@ msgctxt ""
"par_id3155337\n"
"help.text"
msgid "First of all, write a table in which a few different values occur. For your test you can create tables with any random numbers:"
-msgstr ""
+msgstr "Pirma sukurkite lentelę su atsitiktiniais skaičiais. Tam galite naudoti formulę:"
#: cellstyle_conditional.xhp
msgctxt ""
@@ -2582,7 +2582,7 @@ msgctxt ""
"par_id3149565\n"
"help.text"
msgid "In one of the cells enter the formula =RAND(), and you will obtain a random number between 0 and 1. If you want integers of between 0 and 50, enter the formula =INT(RAND()*50)."
-msgstr ""
+msgstr "=RAND(), kuri sukurs atsitiktinį skaičių tarp 0 ir 1 arba galite naudoti formulę =INT(RAND()*50), kuri sukurs sveikąjį atsitiktinį skaičių tarp 0 ir 50."
#: cellstyle_conditional.xhp
msgctxt ""
@@ -2590,7 +2590,7 @@ msgctxt ""
"par_id3149258\n"
"help.text"
msgid "Copy the formula to create a row of random numbers. Click the bottom right corner of the selected cell, and drag to the right until the desired cell range is selected."
-msgstr ""
+msgstr "Nukopijuokite formulę į kitus langelius, kad sukurtumėte visą eilutę atsitiktinių skaičių. Paspauskite apatiniame dešiniajame langelio kampe esantį kvadratėlį ir tempkite jį dešinėn tiek langelių, kiek norite jų pažymėti."
#: cellstyle_conditional.xhp
msgctxt ""
@@ -2598,7 +2598,7 @@ msgctxt ""
"par_id3159236\n"
"help.text"
msgid "In the same way as described above, drag down the corner of the rightmost cell in order to create more rows of random numbers."
-msgstr ""
+msgstr "Tokiu pačiu būdu tempkite dešinio langelio dešinį apatinį kvadratėlį ir sukurkite daugiau eilučių su atsitiktiniais skaičiais."
#: cellstyle_conditional.xhp
msgctxt ""
@@ -2606,7 +2606,7 @@ msgctxt ""
"hd_id3149211\n"
"help.text"
msgid "Step 2: Define Cell Styles"
-msgstr ""
+msgstr "2 žingsnis: Langelių stilių sukūrimas"
#: cellstyle_conditional.xhp
msgctxt ""
@@ -2614,7 +2614,7 @@ msgctxt ""
"par_id3154659\n"
"help.text"
msgid "The next step is to apply a cell style to all values that represent above-average turnover, and one to those that are below the average. Ensure that the Styles window is visible before proceeding."
-msgstr ""
+msgstr "Toliau pritaikykite stilių visiems langeliams, kurie turi didesnes ir mažesnes reikšmes nei visų reikšmių vidurkis. Įsitikinkite, kad Stilių langas yra atvertas. "
#: cellstyle_conditional.xhp
msgctxt ""
@@ -2622,7 +2622,7 @@ msgctxt ""
"par_id3150883\n"
"help.text"
msgid "Click in a blank cell and select the command <emph>Format Cells</emph> in the context menu."
-msgstr ""
+msgstr "Spustelėkite tuščią langelį dešiniu pelės klavišu ir kontekstiniame meniu pasirinkite komandą <emph>Langelių formatas</emph>."
#: cellstyle_conditional.xhp
msgctxt ""
@@ -2630,7 +2630,7 @@ msgctxt ""
"par_id3155529\n"
"help.text"
msgid "In the <emph>Format Cells</emph> dialog on the <emph>Background</emph> tab, select a background color. Click <emph>OK</emph>."
-msgstr ""
+msgstr "<emph>Langelių formato</emph> dialogo lange pasirinkite kortelę <emph>Fonas</emph> ir nustatykite norimą spalvą. Spustelėkite mygtuką <emph>Gerai</emph>."
#: cellstyle_conditional.xhp
msgctxt ""
@@ -2638,7 +2638,7 @@ msgctxt ""
"par_id3154484\n"
"help.text"
msgid "In the Styles window, click the <emph>New Style from Selection</emph> icon. Enter the name of the new style. For this example, name the style \"Above\"."
-msgstr ""
+msgstr "Stilių lange spustelėkite piktogramą <emph>Naujas stilius pagal atranką</emph> ir įveskite naujo stiliaus pavadinimą, pavyzdžiui, pavadinkite stilių „Daugiau“."
#: cellstyle_conditional.xhp
msgctxt ""
@@ -2646,7 +2646,7 @@ msgctxt ""
"par_id3152889\n"
"help.text"
msgid "To define a second style, click again in a blank cell and proceed as described above. Assign a different background color for the cell and assign a name (for this example, \"Below\")."
-msgstr ""
+msgstr "Jei norite aprašyti kitą stilių, atlikite minėtus žingsnius dar kartą pasirinkdami kitą spalva ir kitą stiliaus pavadinimą (pavyzdžiui, „Mažiau“)."
#: cellstyle_conditional.xhp
msgctxt ""
@@ -2654,7 +2654,7 @@ msgctxt ""
"hd_id3148704\n"
"help.text"
msgid "Step 3: Calculate Average"
-msgstr ""
+msgstr "3 žingsnis: Vidurkio skaičiavimas"
#: cellstyle_conditional.xhp
msgctxt ""
@@ -2662,7 +2662,7 @@ msgctxt ""
"par_id3148837\n"
"help.text"
msgid "In our particular example, we are calculating the average of the random values. The result is placed in a cell:"
-msgstr ""
+msgstr "Pavyzdyje, skaičiuojame atsitiktinių skaičių vidurkį ir rezultatą įrašome į pasirinktą langelį."
#: cellstyle_conditional.xhp
msgctxt ""
@@ -2670,7 +2670,7 @@ msgctxt ""
"par_id3144768\n"
"help.text"
msgid "Set the cursor in a blank cell, for example, J14, and choose <emph>Insert - Function</emph>."
-msgstr ""
+msgstr "Esant žymekliui tuščiame langelyje, pavyzdžiui langelio J14, pasirinkite <emph>Įterpimas → Funkcija</emph>."
#: cellstyle_conditional.xhp
msgctxt ""
@@ -2678,7 +2678,7 @@ msgctxt ""
"par_id3156016\n"
"help.text"
msgid "Select the AVERAGE function. Use the mouse to select all your random numbers. If you cannot see the entire range, because the Function Wizard is obscuring it, you can temporarily shrink the dialog using the <link href=\"text/shared/00/00000001.xhp#eingabesymbol\" name=\"Shrink or Maximize\"><item type=\"menuitem\">Shrink / Maximize</item></link> icon."
-msgstr ""
+msgstr "Pasirinkite funkciją AVERAGE. Pele pažymėkite visus prieš tai sukurtus atsitiktinius skaičius. Jeigu nematote visų langelių, nes Funkcijos vediklis juos užstoja, laikinai sutraukti jį spustelėję <link href=\"text/shared/00/00000001.xhp#eingabesymbol\" name=\"Shrink or Maximize\"><item type=\"menuitem\">Suskleidimo arba Išskleidimo</item></link> mygtuką."
#: cellstyle_conditional.xhp
msgctxt ""
@@ -2686,7 +2686,7 @@ msgctxt ""
"par_id3153246\n"
"help.text"
msgid "Close the Function Wizard with <item type=\"menuitem\">OK</item>."
-msgstr ""
+msgstr "Funkcijos vediklis užveriamas spustelėjus <item type=\"menuitem\">Gerai</item>."
#: cellstyle_conditional.xhp
msgctxt ""
@@ -2694,7 +2694,7 @@ msgctxt ""
"hd_id3149898\n"
"help.text"
msgid "Step 4: Apply Cell Styles"
-msgstr ""
+msgstr "4 žingsnis: Langelių stilių pritaikymas"
#: cellstyle_conditional.xhp
msgctxt ""
@@ -2702,7 +2702,7 @@ msgctxt ""
"par_id3149126\n"
"help.text"
msgid "Now you can apply the conditional formatting to the sheet:"
-msgstr ""
+msgstr "Dabar lakštui galite pritaikyti sąlyginį formatavimą:"
#: cellstyle_conditional.xhp
msgctxt ""
@@ -2710,7 +2710,7 @@ msgctxt ""
"par_id3150049\n"
"help.text"
msgid "Select all cells with the random numbers."
-msgstr ""
+msgstr "Pažymėkite visus langelius su atsitiktiniais skaičiais."
#: cellstyle_conditional.xhp
msgctxt ""
@@ -2718,7 +2718,7 @@ msgctxt ""
"par_id3153801\n"
"help.text"
msgid "Choose the <emph>Format - Conditional Formatting</emph> command to open the corresponding dialog."
-msgstr ""
+msgstr "Pasirinkite <emph>Formatas → Sąlyginis formatavimas</emph>."
#: cellstyle_conditional.xhp
msgctxt ""
@@ -2726,7 +2726,7 @@ msgctxt ""
"par_id3153013\n"
"help.text"
msgid "Define the condition as follows: If cell value is less than J14, format with cell style \"Below\", and if cell value is greater than or equal to J14, format with cell style \"Above\"."
-msgstr ""
+msgstr "Atsidariusiame dialogo lange, sąlygas aprašykite kaip nurodyta: jei langelio reikšmė mažesnė už langelio J14 reikšmę, langelio formatas pasikeičia į formatą„Mažiau“, o jei langelio reikšmė didesnė už langelio J14 reikšmę, langelio formatas pasikeičia į formatą „Daugiau“."
#: cellstyle_conditional.xhp
msgctxt ""
@@ -2734,7 +2734,7 @@ msgctxt ""
"hd_id3155761\n"
"help.text"
msgid "Step 5: Copy Cell Style"
-msgstr ""
+msgstr "5 žingsnis: Langelio stiliaus kopijavimas"
#: cellstyle_conditional.xhp
msgctxt ""
@@ -2742,7 +2742,7 @@ msgctxt ""
"par_id3145320\n"
"help.text"
msgid "To apply the conditional formatting to other cells later:"
-msgstr ""
+msgstr "Sąlyginio formatavimo pritaikymas kitiems langeliams:"
#: cellstyle_conditional.xhp
msgctxt ""
@@ -2750,7 +2750,7 @@ msgctxt ""
"par_id3153074\n"
"help.text"
msgid "Click one of the cells that has been assigned conditional formatting."
-msgstr ""
+msgstr "Spustelėkite vieną iš langelių su nustatytu sąlyginiu formatavimu."
#: cellstyle_conditional.xhp
msgctxt ""
@@ -2758,7 +2758,7 @@ msgctxt ""
"par_id3149051\n"
"help.text"
msgid "Copy the cell to the clipboard."
-msgstr ""
+msgstr "Nukopijuokite langelį į iškarpinę."
#: cellstyle_conditional.xhp
msgctxt ""
@@ -2766,7 +2766,7 @@ msgctxt ""
"par_id3150436\n"
"help.text"
msgid "Select the cells that are to receive this same formatting."
-msgstr ""
+msgstr "Pažymėkite langelius, kuriems norite pritaikyti šį formatavimą."
#: cellstyle_conditional.xhp
msgctxt ""
@@ -2774,7 +2774,7 @@ msgctxt ""
"par_id3147298\n"
"help.text"
msgid "Choose <emph>Edit - Paste Special</emph>. The <emph>Paste Special</emph> dialog appears."
-msgstr ""
+msgstr "Pasirinkite <emph>Taisa → Įdėti kitaip</emph>. Atveriamas <emph>Įdėti kitaip</emph> dialogo langas."
#: cellstyle_conditional.xhp
msgctxt ""
@@ -2782,7 +2782,7 @@ msgctxt ""
"par_id3166465\n"
"help.text"
msgid "In the <emph>Selection</emph> area, check only the <emph>Formats</emph> box. All other boxes must be unchecked. Click <emph>OK</emph>."
-msgstr ""
+msgstr "Srityje <emph>Ką įdėti</emph> pažymėkite žymimąjį langelį <emph>Formatus</emph>, o visų kitų pažymėjimus tšaaukite. Spustelėkite mygtuką <emph>Gerai</emph>."
#: cellstyle_conditional.xhp
msgctxt ""
@@ -2790,7 +2790,7 @@ msgctxt ""
"par_id3159123\n"
"help.text"
msgid "<link href=\"text/scalc/01/05120000.xhp\" name=\"Format - Conditional formatting\">Format - Conditional formatting</link>"
-msgstr ""
+msgstr "<link href=\"text/scalc/01/05120000.xhp\" name=\"Format - Conditional formatting\">Formatas → Sąlyginis formatavimas</link>"
#: cellstyle_minusvalue.xhp
msgctxt ""
@@ -2798,7 +2798,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Highlighting Negative Numbers"
-msgstr ""
+msgstr "Neigiamų skaičių paryškinimas"
#: cellstyle_minusvalue.xhp
msgctxt ""
@@ -2806,7 +2806,7 @@ msgctxt ""
"bm_id3147434\n"
"help.text"
msgid "<bookmark_value>negative numbers</bookmark_value> <bookmark_value>numbers; highlighting negative numbers</bookmark_value> <bookmark_value>highlighting;negative numbers</bookmark_value> <bookmark_value>colors;negative numbers</bookmark_value> <bookmark_value>number formats;colors for negative numbers</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>neigiami skaičiai</bookmark_value> <bookmark_value>skaičiai; neigiamų skaičių pabrėžimas</bookmark_value> <bookmark_value>pabrėžimas; neigiami skaičiai</bookmark_value> <bookmark_value>spalvos; neigiami skaičiai</bookmark_value> <bookmark_value>skaičių formatai;spalvos neigiamiems skaičiams</bookmark_value> "
#: cellstyle_minusvalue.xhp
msgctxt ""
@@ -2814,7 +2814,7 @@ msgctxt ""
"hd_id3147434\n"
"help.text"
msgid "<variable id=\"cellstyle_minusvalue\"><link href=\"text/scalc/guide/cellstyle_minusvalue.xhp\" name=\"Highlighting Negative Numbers\">Highlighting Negative Numbers</link></variable>"
-msgstr ""
+msgstr "<variable id=\"cellstyle_minusvalue\"><link href=\"text/scalc/guide/cellstyle_minusvalue.xhp\" name=\"Highlighting Negative Numbers\">Neigiamų skaičių paryškinimas</link></variable>"
#: cellstyle_minusvalue.xhp
msgctxt ""
@@ -2822,7 +2822,7 @@ msgctxt ""
"par_id3153878\n"
"help.text"
msgid "You can format cells with a number format that highlights negative numbers in red. Alternatively, you can define your own number format in which negative numbers are highlighted in other colors."
-msgstr ""
+msgstr "Galite formatuoti skaičius naudodami skaičių formatą, kuris pakeičia neigiamų skaičių spalvą į raudoną. Taip pat galite aprašyti norimą skaičių formatą, kur neigiami skaičiai nuspalvinami kita spalva."
#: cellstyle_minusvalue.xhp
msgctxt ""
@@ -2830,7 +2830,7 @@ msgctxt ""
"par_id3155600\n"
"help.text"
msgid "Select the cells and choose <emph>Format - Cells</emph>."
-msgstr ""
+msgstr "Pažymėkite langelius ir pasirinkite <emph>Formatas → Langeliai</emph>."
#: cellstyle_minusvalue.xhp
msgctxt ""
@@ -2838,7 +2838,7 @@ msgctxt ""
"par_id3146969\n"
"help.text"
msgid "On the <emph>Numbers</emph> tab, select a number format and mark <emph>Negative numbers red</emph> check box. Click <emph>OK</emph>."
-msgstr ""
+msgstr "Dialogo lango kortelėje <emph>Skaičiai</emph> pasirinkite norimą formatą ir pažymėkite žymimąjį langelį <emph>Neigiami skaičiai → raudoni</emph>. Spustelėkite mygtuką <emph>Gerai</emph>."
#: cellstyle_minusvalue.xhp
msgctxt ""
@@ -2846,7 +2846,7 @@ msgctxt ""
"par_id3145640\n"
"help.text"
msgid "The cell number format is defined in two parts. The format for positive numbers and zero is defined in front of the semicolon; after the semicolon the formula for negative numbers is defined. You can change the code (RED) under <item type=\"menuitem\">Format code</item>. For example, instead of RED, enter <item type=\"literal\">YELLOW</item>. If the new code appears in the list after clicking the <item type=\"menuitem\">Add</item> icon, this is a valid entry."
-msgstr ""
+msgstr "Langelio skaičiaus formato kodas susideda iš dviejų dalių. Teigiamų skaičių ir nulio formatas aprašomas prieš kabliataškį, o neigiami skaičiai aprašomi po kabliataškio. <item type=\"menuitem\">Formato kode</item> esantį žodį (RED) galite keisti. Pavyzdžiui, vietoj RED įrašykite <item type=\"literal\">YELLOW</item>. Teisingai aprašytas formato kodas spustelėjus mygtuką <item type=\"menuitem\">Pridėti</item> pasirodo formatų sąraše."
#: consolidate.xhp
msgctxt ""
@@ -2854,7 +2854,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Consolidating Data"
-msgstr ""
+msgstr "Duomenų suderinimas"
#: consolidate.xhp
msgctxt ""
@@ -2862,7 +2862,7 @@ msgctxt ""
"bm_id3150791\n"
"help.text"
msgid "<bookmark_value>consolidating data</bookmark_value> <bookmark_value>ranges; combining</bookmark_value> <bookmark_value>combining;cell ranges</bookmark_value> <bookmark_value>tables; combining</bookmark_value> <bookmark_value>data; merging cell ranges</bookmark_value> <bookmark_value>merging;data ranges</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>duomenų suderinimas</bookmark_value> <bookmark_value>sritys; derinimas</bookmark_value> <bookmark_value>derinimas;langelių sritis</bookmark_value> <bookmark_value>lentelės; derinimas</bookmark_value> <bookmark_value>duomenys; langelių srities sujungimas</bookmark_value> <bookmark_value>jungimas;duomenų sritys</bookmark_value>"
#: consolidate.xhp
msgctxt ""
@@ -2870,7 +2870,7 @@ msgctxt ""
"hd_id3150791\n"
"help.text"
msgid "<variable id=\"consolidate\"><link href=\"text/scalc/guide/consolidate.xhp\" name=\"Consolidating Data\">Consolidating Data</link></variable>"
-msgstr ""
+msgstr "<variable id=\"consolidate\"><link href=\"text/scalc/guide/consolidate.xhp\" name=\"Consolidating Data\">Duomenų suderinimas</link></variable>"
#: consolidate.xhp
msgctxt ""
@@ -2878,7 +2878,7 @@ msgctxt ""
"par_id3153191\n"
"help.text"
msgid "During consolidation, the contents of the cells from several sheets will be combined in one place."
-msgstr ""
+msgstr "Vykdant suderinimą duomenys iš skirtingų lakštų bus sujungti į vieną vietą."
#: consolidate.xhp
msgctxt ""
@@ -2886,7 +2886,7 @@ msgctxt ""
"hd_id892056\n"
"help.text"
msgid "To Combine Cell Contents"
-msgstr ""
+msgstr "Langelių turinio sujungimas"
#: consolidate.xhp
msgctxt ""
@@ -2894,7 +2894,7 @@ msgctxt ""
"par_id3151073\n"
"help.text"
msgid "Open the document that contains the cell ranges to be consolidated."
-msgstr ""
+msgstr "Atverkite dokumentą, kuriame yra suderinimui paruošti duomenys."
#: consolidate.xhp
msgctxt ""
@@ -2902,7 +2902,7 @@ msgctxt ""
"par_id3154513\n"
"help.text"
msgid "Choose <item type=\"menuitem\">Data - Consolidate</item> to open the <emph>Consolidate</emph> dialog."
-msgstr ""
+msgstr "Jei norite atverti <emph>Suderinimo</emph> dialogo langą, pasirinkite <item type=\"menuitem\">Duomenys → Suderinti</item>."
#: consolidate.xhp
msgctxt ""
@@ -2910,7 +2910,7 @@ msgctxt ""
"par_id3147345\n"
"help.text"
msgid "From the <emph>Source data area</emph> box select a source cell range to consolidate with other areas."
-msgstr ""
+msgstr "<emph>Šaltinio duomenų srities</emph> srityje nurodykite langelių bloką, kurį norite suderinti su kitais blokais."
#: consolidate.xhp
msgctxt ""
@@ -2918,7 +2918,7 @@ msgctxt ""
"par_id3149209\n"
"help.text"
msgid "If the range is not named, click in the field next to the <emph>Source data area</emph>. A blinking text cursor appears. Type a reference for the first source data range or select the range with the mouse."
-msgstr ""
+msgstr "Jei langelių blokas neturi pavadinimo, spustelėkite laukelį šalia <emph>Šaltinio duomenų srities</emph> laukelio ir užrašykite bloko koordinates arba pažymėkite bloką pele."
#: consolidate.xhp
msgctxt ""
@@ -2926,7 +2926,7 @@ msgctxt ""
"par_id3155529\n"
"help.text"
msgid "Click <emph>Add</emph> to insert the selected range in the <emph>Consolidation areas</emph> field."
-msgstr ""
+msgstr "Spustelėkite mygtuką <emph>Pridėti</emph> ir pridėsite pasirinktą bloką prie <emph>Suderinimo sričių</emph>."
#: consolidate.xhp
msgctxt ""
@@ -2934,7 +2934,7 @@ msgctxt ""
"par_id3153816\n"
"help.text"
msgid "Select additional ranges and click <emph>Add</emph> after each selection."
-msgstr ""
+msgstr "Kas kart pažymėję bloką spustelėkite mygtuką <emph>Pridėti</emph>."
#: consolidate.xhp
msgctxt ""
@@ -2942,7 +2942,7 @@ msgctxt ""
"par_id3157983\n"
"help.text"
msgid "Specify where you want to display the result by selecting a target range from the <emph>Copy results to</emph> box."
-msgstr ""
+msgstr "Dialogo lango srityje <emph>Kopijuoti rezultatus į</emph> nurodykite langelių bloką, kur bus įrašomi rezultatai."
#: consolidate.xhp
msgctxt ""
@@ -2950,7 +2950,7 @@ msgctxt ""
"par_id3150215\n"
"help.text"
msgid "If the target range is not named, click in the field next to <emph>Copy results to</emph> and enter the reference of the target range. Alternatively, you can select the range using the mouse or position the cursor in the top left cell of the target range."
-msgstr ""
+msgstr "Jei langelių blokas neturi pavadinimo, spustelėkite laukelį šalia<emph>Kopijuoti rezultatus į </emph> ir įrašykite bloko koordinates arba pele pažymėkite rezultatų bloką lakšte."
#: consolidate.xhp
msgctxt ""
@@ -2958,7 +2958,7 @@ msgctxt ""
"par_id3153813\n"
"help.text"
msgid "Select a function from the <emph>Function</emph> box. The function specifies how the values of the consolidation ranges are linked. The \"Sum\" function is the default setting."
-msgstr ""
+msgstr "Pasirinkite funkciją dialogo lango srityje <emph>Funkcija</emph>. Pasirinkta funkcija parodo, kaip bus susietos pasirinktų langelių reikšmės. Numatyta, kad pasirinkta funkcija SUM."
#: consolidate.xhp
msgctxt ""
@@ -2966,7 +2966,7 @@ msgctxt ""
"par_id3149315\n"
"help.text"
msgid "Click <emph>OK</emph> to consolidate the ranges."
-msgstr ""
+msgstr "Jei norite suderintus blokus, spustelėkite mygtuką <emph>Gerai</emph>."
#: consolidate.xhp
msgctxt ""
@@ -2974,7 +2974,7 @@ msgctxt ""
"par_idN107DE\n"
"help.text"
msgid "Additional Settings"
-msgstr ""
+msgstr "Papildomos nuostatos"
#: consolidate.xhp
msgctxt ""
@@ -2982,7 +2982,7 @@ msgctxt ""
"par_id3147250\n"
"help.text"
msgid "Click <emph>More</emph> in the <emph>Consolidate</emph> dialog to display additional settings:"
-msgstr ""
+msgstr "Jei norite matyti daugiau nustatymų, spustelėkite išskleidimo mygtuką <emph>Parinktys</emph> esantį dialogo lange <emph>Suderinimas</emph>."
#: consolidate.xhp
msgctxt ""
@@ -2990,7 +2990,7 @@ msgctxt ""
"par_id3156400\n"
"help.text"
msgid "Select <emph>Link to source data</emph> to insert the formulas that generate the results in the target range, rather than the actual results. If you link the data, any values modified in the source range are automatically updated in the target range."
-msgstr ""
+msgstr "Pažymėkite žymimąjį langelį <emph>Susieti su šaltinio duomenimis</emph>, jei norite, kad rezultatų bloke esančiuose langeliuose būtų kuriamos formulės. Tai atlikus kaskart pakeitus duomenis šaltinio srityje, rezultatai atsinaujinami."
#: consolidate.xhp
msgctxt ""
@@ -2998,7 +2998,7 @@ msgctxt ""
"par_id3150538\n"
"help.text"
msgid "The corresponding cell references in the target range are inserted in consecutive rows, which are automatically ordered and then hidden from view. Only the final result, based on the selected function, is displayed."
-msgstr ""
+msgstr "Langeliai iš pradinių blokų nurodomi atitinkamose vietose rezultatų bloke, jie surūšiuojami ir paslepiami. Ekrane parodomas tik galutinis rezultatas kuris nustatomas atsižvelgiant į pasirinktą funkciją."
#: consolidate.xhp
msgctxt ""
@@ -3006,7 +3006,7 @@ msgctxt ""
"par_id3149945\n"
"help.text"
msgid "Under <emph>Consolidate by</emph>, select either <emph>Row labels</emph> or <emph>Column labels</emph> if the cells of the source data range are not to be consolidated corresponding to the identical position of the cell in the range, but instead according to a matching row label or column label."
-msgstr ""
+msgstr "Dialogo lango srityje <emph>Suderinti pagal</emph>, pažymėkite žymimąjį langelį prie pasirinkimo <emph>Eilučių antraštes</emph> arba <emph>Stulpelių antraštes</emph>, jei norite, kad pirminių duomenų langelių blokas ir rezultatų blokas būtų suderinti ne pagal atitinkamus langelius, bet atsižvelgiant į eilučių ar stulpelių antraštes."
#: consolidate.xhp
msgctxt ""
@@ -3014,7 +3014,7 @@ msgctxt ""
"par_id3157871\n"
"help.text"
msgid "To consolidate by row labels or column labels, the label must be contained in the selected source ranges."
-msgstr ""
+msgstr "Jei norite suderinti langelių blokus pagal eilučių ar stulpelių antraštes, turite užtikrint, kad pirminių duomenų blokas turi atitinkamą antraštę."
#: consolidate.xhp
msgctxt ""
@@ -3022,7 +3022,7 @@ msgctxt ""
"par_id3150478\n"
"help.text"
msgid "The text in the labels must be identical, so that rows or columns can be accurately matched. If the row or column label does not match any that exist in the target range, it will be appended as a new row or column."
-msgstr ""
+msgstr "Tekstas antraštėse turi būti identiškas, kad eilutės arba stulpeliai galėtų būti tiksliai suderinti. Jei eilutės ar stulpelio antraštė neatitinka antraščių esančių rezultatų bloke, tai ji bus pridėta kaip nauja eilutė arba stulpelis."
#: consolidate.xhp
msgctxt ""
@@ -3030,7 +3030,7 @@ msgctxt ""
"par_id3147468\n"
"help.text"
msgid "The data from the consolidation ranges and target range will be saved when you save the document. If you later open a document in which consolidation has been defined, this data will again be available."
-msgstr ""
+msgstr "Duomenys suderintuose blokuose bus išsaugoti jums išsaugojus visą dokumentą. Iš naujo atvėrus dokumentą kuriame aprašytas suderinimas, duomenys vėl bus prieinami."
#: consolidate.xhp
msgctxt ""
@@ -3038,7 +3038,7 @@ msgctxt ""
"par_id3153039\n"
"help.text"
msgid "<link href=\"text/scalc/01/12070000.xhp\" name=\"Data - Consolidate\">Data - Consolidate</link>"
-msgstr ""
+msgstr "<link href=\"text/scalc/01/12070000.xhp\" name=\"Data - Consolidate\">Duomenys → Suderinimas</link>"
#: csv_files.xhp
msgctxt ""
@@ -3046,7 +3046,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Importing and Exporting CSV Files"
-msgstr ""
+msgstr "CSV formato failų importavimas ir eksportavimas"
#: csv_files.xhp
msgctxt ""
@@ -3054,7 +3054,7 @@ msgctxt ""
"bm_id892361\n"
"help.text"
msgid "<bookmark_value>number series import</bookmark_value><bookmark_value>data series import</bookmark_value><bookmark_value>exporting; tables as text</bookmark_value><bookmark_value>importing; tables as text</bookmark_value><bookmark_value>delimited values and files</bookmark_value><bookmark_value>comma separated files and values</bookmark_value><bookmark_value>text file import and export</bookmark_value><bookmark_value>csv files;importing and exporting</bookmark_value><bookmark_value>tables; importing/exporting as text</bookmark_value><bookmark_value>text documents; importing to spreadsheets</bookmark_value><bookmark_value>opening;text csv files</bookmark_value><bookmark_value>saving;as text csv</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>skaičių serijos importavimas</bookmark_value><bookmark_value>duomenų serijos importavimas</bookmark_value><bookmark_value>eksportavimas; lenteles kaip tekstą</bookmark_value><bookmark_value>importavimas; lenteles kaip tekstą</bookmark_value><bookmark_value>reikšmių ir failų atribojimas</bookmark_value><bookmark_value>kableliais atskirti failai ir reiksmės</bookmark_value><bookmark_value>tekstinių failų importavimas ir eksportavimas</bookmark_value><bookmark_value>csv failai;importavimas ir eksportavimas</bookmark_value><bookmark_value>lentelės; importavimas/eksportavimas kaip tekstą</bookmark_value><bookmark_value>tekstiniai dokumentai; importavimas į skaičiuoklės dokumentus</bookmark_value><bookmark_value>atverimas; tekstinių csv failų</bookmark_value><bookmark_value>saugojimas; kaip csv tekstą</bookmark_value>"
#: csv_files.xhp
msgctxt ""
@@ -3062,7 +3062,7 @@ msgctxt ""
"par_idN10862\n"
"help.text"
msgid "<variable id=\"csv_files\"><link href=\"text/scalc/guide/csv_files.xhp\">Opening and Saving Text CSV Files</link></variable>"
-msgstr ""
+msgstr "<variable id=\"csv_files\"><link href=\"text/scalc/guide/csv_files.xhp\">CSV formato failų importavimas ir eksportavimas</link></variable>"
#: csv_files.xhp
msgctxt ""
@@ -3070,7 +3070,7 @@ msgctxt ""
"par_idN10880\n"
"help.text"
msgid "Comma Separated Values (CSV) is a text file format that you can use to exchange data from a database or a spreadsheet between applications. Each line in a Text CSV file represents a record in the database, or a row in a spreadsheet. Each field in a database record or cell in a spreadsheet row is usually separated by a comma. However, you can use other characters to delimit a field, such as a tabulator character."
-msgstr ""
+msgstr "Kableliais atskirtos reikšmės (CSV) yra tekstinio failo formatas kurį galite naudoti duomenų mainymui tarp skirtingų duomenų bazių ar skaičiuoklės dokumentų ir programų. Kiekviena eilutė tekstiniame CSV faile atstoja įrašą duomenų bazėje ar skaičiuoklės dokumente. Kiekvienas laukas duomenų bazėje ar langelis skaičiuoklės dokumente yra atskiriamas kableliu. Tačiau galima naudoti ir kitokius ženklus atskirti laukus, tokius kaip tabuliavimo ženklą."
#: csv_files.xhp
msgctxt ""
@@ -3078,7 +3078,7 @@ msgctxt ""
"par_idN10886\n"
"help.text"
msgid "If the field or cell contains a comma, the field or cell <emph>must</emph> be enclosed by single quotes (') or double quotes (\")."
-msgstr ""
+msgstr "Jei laukas ar langelis talpina kablelį, laukas ar langelis <emph>turi</emph> būti užbaigtas vienguba (') arba dviguba kabute (“)."
#: csv_files.xhp
msgctxt ""
@@ -3086,7 +3086,7 @@ msgctxt ""
"par_idN10890\n"
"help.text"
msgid "To Open a Text CSV File in Calc"
-msgstr ""
+msgstr "Atverti tekstinį CSV failą skaičiuoklėje"
#: csv_files.xhp
msgctxt ""
@@ -3094,7 +3094,7 @@ msgctxt ""
"par_idN10897\n"
"help.text"
msgid "Choose <item type=\"menuitem\">File - Open</item>."
-msgstr ""
+msgstr "Pasirinkite <item type=\"menuitem\">Failas → Atverti</item>."
#: csv_files.xhp
msgctxt ""
@@ -3102,7 +3102,7 @@ msgctxt ""
"par_idN1089F\n"
"help.text"
msgid "Locate the CSV file that you want to open."
-msgstr ""
+msgstr "Suraskite CSV failą kurį norite atverti."
#: csv_files.xhp
msgctxt ""
@@ -3110,7 +3110,7 @@ msgctxt ""
"par_idN108A2\n"
"help.text"
msgid "If the file has a *.csv extension, select the file."
-msgstr ""
+msgstr "Jei failas turi *.csv prievardį, jį pasirinkite."
#: csv_files.xhp
msgctxt ""
@@ -3118,7 +3118,7 @@ msgctxt ""
"par_idN108A5\n"
"help.text"
msgid "If the CSV file has another extension, select the file, and then select \"Text CSV\" in the <item type=\"menuitem\">File type</item> box"
-msgstr ""
+msgstr "Jei failas turi kitokį prievardį, pažymėkite failą ir <item type=\"menuitem\">Failo tipo</item> laukelyje pasirinkite \"Text CSV\""
#: csv_files.xhp
msgctxt ""
@@ -3126,7 +3126,7 @@ msgctxt ""
"par_idN1082D\n"
"help.text"
msgid "Click <item type=\"menuitem\">Open</item>."
-msgstr ""
+msgstr "Spustelėkite mygtuką <item type=\"menuitem\">Atverti</item>."
#: csv_files.xhp
msgctxt ""
@@ -3134,7 +3134,7 @@ msgctxt ""
"par_idN10834\n"
"help.text"
msgid "The <item type=\"menuitem\">Text Import</item> dialog opens."
-msgstr ""
+msgstr "Atsidaro dialogo langas <item type=\"menuitem\">Teksto importavimas</item>."
#: csv_files.xhp
msgctxt ""
@@ -3142,7 +3142,7 @@ msgctxt ""
"par_idN108B1\n"
"help.text"
msgid "Specify the options to divide the text in the file into columns."
-msgstr ""
+msgstr "Nurodykite nustatymus, kad failo tekstas būtų suskirstytas į stulpelius."
#: csv_files.xhp
msgctxt ""
@@ -3150,7 +3150,7 @@ msgctxt ""
"par_idN108BB\n"
"help.text"
msgid "You can preview the layout of the imported data at the bottom of the <item type=\"menuitem\">Text Import</item> dialog."
-msgstr ""
+msgstr "Importuotus duomenys galite peržiūrėti <item type=\"menuitem\">Teksto importavimo</item> dialogo lango apačioje."
#: csv_files.xhp
msgctxt ""
@@ -3158,7 +3158,7 @@ msgctxt ""
"par_id8444166\n"
"help.text"
msgid "Right-click a column in the preview to set the format or to hide the column."
-msgstr ""
+msgstr "Jei norite paslėpti stulpelį ar pakeisti jo formatą spustelėkite dešinį pelės klavišą žymekliui esant virš stulpelio."
#: csv_files.xhp
msgctxt ""
@@ -3166,7 +3166,7 @@ msgctxt ""
"par_idN108E2\n"
"help.text"
msgid "Check the text delimiter box that matches the character used as text delimiter in the file. In case of an unlisted delimiter, type the character into the input box."
-msgstr ""
+msgstr "Patikrinkite ar skirtuko parinkčių srityje pažymėti skirtukai atitinka skirtukus naudojamus faile. Jei norimas skirtukas nėra sąraše, įveskite jį į laukelį kairėje."
#: csv_files.xhp
msgctxt ""
@@ -3174,7 +3174,7 @@ msgctxt ""
"par_idN108C5\n"
"help.text"
msgid "Click <item type=\"menuitem\">OK</item>."
-msgstr ""
+msgstr "Spustelėkite mygtuką <item type=\"menuitem\">Gerai</item>."
#: csv_files.xhp
msgctxt ""
@@ -3182,7 +3182,7 @@ msgctxt ""
"par_idN108FA\n"
"help.text"
msgid "To Save a Sheet as a Text CSV File"
-msgstr ""
+msgstr "Išsaugoti lakštą kaip tekstinį CSV failą"
#: csv_files.xhp
msgctxt ""
@@ -3190,7 +3190,7 @@ msgctxt ""
"par_idN106FC\n"
"help.text"
msgid "When you export a spreadsheet to CSV format, only the data on the current sheet is saved. All other information, including formulas and formatting, is lost."
-msgstr ""
+msgstr "Jums eksportavus skaičiuoklės dokumentą CSV formatu, tik duomenys kurie buvo rodomi lakšte yra išsaugomi. Visa kita informacija, įskaitant formules ir formatus prarandama."
#: csv_files.xhp
msgctxt ""
@@ -3198,7 +3198,7 @@ msgctxt ""
"par_idN10901\n"
"help.text"
msgid "Open the Calc sheet that you want to save as a Text CSV file."
-msgstr ""
+msgstr "Atverkite skaičiuoklės lakštą kurį norite išsaugoti kaip CSV failą."
#: csv_files.xhp
msgctxt ""
@@ -3206,7 +3206,7 @@ msgctxt ""
"par_idN107AF\n"
"help.text"
msgid "Only the current sheet can be exported."
-msgstr ""
+msgstr "Tik esamas lakštas gali būti eksportuojamas."
#: csv_files.xhp
msgctxt ""
@@ -3214,7 +3214,7 @@ msgctxt ""
"par_idN10905\n"
"help.text"
msgid "Choose <item type=\"menuitem\">File - Save as</item>."
-msgstr ""
+msgstr "Pasirinkite<item type=\"menuitem\">Failas → Įrašyti kaip</item>."
#: csv_files.xhp
msgctxt ""
@@ -3222,7 +3222,7 @@ msgctxt ""
"par_idN10915\n"
"help.text"
msgid "In the <item type=\"menuitem\">File name</item> box, enter a name for the file."
-msgstr ""
+msgstr "<item type=\"menuitem\">Failo vardas</item>laukelyje įveskite failo pavadinimą."
#: csv_files.xhp
msgctxt ""
@@ -3230,7 +3230,7 @@ msgctxt ""
"par_idN1090D\n"
"help.text"
msgid "In the <item type=\"menuitem\">File type</item> box, select \"Text CSV\"."
-msgstr ""
+msgstr "<item type=\"menuitem\">Failo tipas</item> laukelyje pasirinkite \"Text CSV\"."
#: csv_files.xhp
msgctxt ""
@@ -3238,7 +3238,7 @@ msgctxt ""
"par_idN107DD\n"
"help.text"
msgid "(Optional) Set the field options for the Text CSV file."
-msgstr ""
+msgstr "(Neprivalomas) Nustatykite CSV failo lauko parinktis."
#: csv_files.xhp
msgctxt ""
@@ -3246,7 +3246,7 @@ msgctxt ""
"par_idN1091C\n"
"help.text"
msgid "Select <item type=\"menuitem\">Edit filter settings</item>."
-msgstr ""
+msgstr "Pasirinkite <item type=\"menuitem\">Taisyti filtro nuostatas</item>."
#: csv_files.xhp
msgctxt ""
@@ -3254,7 +3254,7 @@ msgctxt ""
"par_idN107ED\n"
"help.text"
msgid "In the <item type=\"menuitem\">Export of text files</item> dialog, select the options that you want."
-msgstr ""
+msgstr "<item type=\"menuitem\">Eksportuoti teksto failą</item> dialogo lange pasirinkite norimus nustatymus."
#: csv_files.xhp
msgctxt ""
@@ -3262,7 +3262,7 @@ msgctxt ""
"par_idN107F4\n"
"help.text"
msgid "Click <item type=\"menuitem\">OK</item>."
-msgstr ""
+msgstr "Spustelėkite mygtuką <item type=\"menuitem\">Gerai</item>."
#: csv_files.xhp
msgctxt ""
@@ -3270,7 +3270,7 @@ msgctxt ""
"par_idN107FC\n"
"help.text"
msgid "Click <item type=\"menuitem\">Save</item>."
-msgstr ""
+msgstr "Spustelėkite mygtuką <item type=\"menuitem\">Išsaugoti</item>."
#: csv_files.xhp
msgctxt ""
@@ -3278,7 +3278,7 @@ msgctxt ""
"par_id3153487\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01060100.xhp\" name=\"Spreadsheet - View\">%PRODUCTNAME Calc - View</link>"
-msgstr ""
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">„%PRODUCTNAME“ → Parinktys</caseinline><defaultinline>Priemonės → Parinktys</defaultinline></switchinline> → <link href=\"text/shared/optionen/01060100.xhp\" name=\"Spreadsheet - View\">„%PRODUCTNAME“ → Rodymas</link>"
#: csv_files.xhp
msgctxt ""
@@ -3286,7 +3286,7 @@ msgctxt ""
"par_id3153008\n"
"help.text"
msgid "<link href=\"text/shared/00/00000207.xhp\" name=\"Export text files\">Export text files</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/00/00000207.xhp\" name=\"Export text files\">Tekstinio failo eksportavimas</link>"
#: csv_files.xhp
msgctxt ""
@@ -3294,7 +3294,7 @@ msgctxt ""
"par_id3155595\n"
"help.text"
msgid "<link href=\"text/shared/00/00000208.xhp\" name=\"Import text files\">Import text files</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/00/00000208.xhp\" name=\"Import text files\">Tekstinio failo importavimas</link>"
#: csv_formula.xhp
msgctxt ""
@@ -3302,7 +3302,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Importing and Exporting Text Files"
-msgstr ""
+msgstr "Tekstinių failų importavimas ir eksportavimas"
#: csv_formula.xhp
msgctxt ""
@@ -3310,7 +3310,7 @@ msgctxt ""
"bm_id3153726\n"
"help.text"
msgid "<bookmark_value>csv files;formulas</bookmark_value> <bookmark_value>formulas; importing/exporting as csv files</bookmark_value> <bookmark_value>exporting;formulas as csv files</bookmark_value> <bookmark_value>importing;csv files with formulas</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>csv failai;formulės</bookmark_value> <bookmark_value>formulės; importavimas/eksportavimas kaip csv failą</bookmark_value> <bookmark_value>eksportavimas;formulės kaip csv failą</bookmark_value> <bookmark_value>importavimas;csv failai su formulėmis</bookmark_value>"
#: csv_formula.xhp
msgctxt ""
@@ -3318,7 +3318,7 @@ msgctxt ""
"hd_id3153726\n"
"help.text"
msgid "<variable id=\"csv_formula\"><link href=\"text/scalc/guide/csv_formula.xhp\" name=\"Importing and Exporting Text Files\">Importing and Exporting CSV Text Files with Formulas</link></variable>"
-msgstr ""
+msgstr "<variable id=\"csv_formula\"><link href=\"text/scalc/guide/csv_formula.xhp\" name=\"Importing and Exporting Text Files\">CSV tekstinių failų su formulėmis importavimas ir eksportavimas </link></variable>"
#: csv_formula.xhp
msgctxt ""
@@ -3326,7 +3326,7 @@ msgctxt ""
"par_id3149402\n"
"help.text"
msgid "Comma separated values (CSV) files are text files that contain the cell contents of a single sheet. Commas, semicolons, or other characters can be used as the field delimiters between the cells. Text strings are put in quotation marks, numbers are written without quotation marks."
-msgstr ""
+msgstr "Kableliais atskirtos reikšmės (CSV) tekstiniai failai talpina vieno lakšto langelių turinį. Kableliai, kabliataškiai ar kitokie ženklai gali būti naudojami lauko tarp langelių ribojimui. Teksto eilutės rašomos tarp kabučių, o skaičiai rašomi be kabučių."
#: csv_formula.xhp
msgctxt ""
@@ -3334,7 +3334,7 @@ msgctxt ""
"hd_id3150715\n"
"help.text"
msgid "To Import a CSV File"
-msgstr ""
+msgstr "Importuoti CSV failą"
#: csv_formula.xhp
msgctxt ""
@@ -3342,7 +3342,7 @@ msgctxt ""
"par_id3153709\n"
"help.text"
msgid "Choose <emph>File - Open</emph>."
-msgstr ""
+msgstr "Pasirinkite<emph>Failas → Atverti</emph>."
#: csv_formula.xhp
msgctxt ""
@@ -3350,7 +3350,7 @@ msgctxt ""
"par_id3155445\n"
"help.text"
msgid "In the <emph>File type</emph> field, select the format \"Text CSV\". Select the file and click <emph>Open</emph>. When a file has the .csv extension, the file type is automatically recognized."
-msgstr ""
+msgstr "Laukelyje <emph>Failo tipas</emph> pasirinkite formatą \"Text CSV\". Pažymėkite failą ir spustelėkite mygtuką <emph>Atverti</emph>. Kai failas turi prievardį .csv, failo tipas yra automatiškai atpažįstamas."
#: csv_formula.xhp
msgctxt ""
@@ -3358,7 +3358,7 @@ msgctxt ""
"par_id3149565\n"
"help.text"
msgid "You will see the <item type=\"menuitem\">Text Import</item> dialog. Click <item type=\"menuitem\">OK</item>."
-msgstr ""
+msgstr "Pamatysite <item type=\"menuitem\">Teksto importo</item> dialogo langą. Spustelėkite mygtuką <item type=\"menuitem\">Gerai</item>."
#: csv_formula.xhp
msgctxt ""
@@ -3366,7 +3366,7 @@ msgctxt ""
"par_id3149255\n"
"help.text"
msgid "If the csv file contains formulas, but you want to import the results of those formulas, then 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 clear the <emph>Formulas</emph> check box."
-msgstr ""
+msgstr "Jei csv faile yra formulės, bet jūs norite įkelti tik formulių rezultatus, pasirinkite <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>„%PRODUCTNAME“ → Parinktys</emph></caseinline><defaultinline><emph>Priemonės → Parinktys</emph></defaultinline></switchinline><emph> → „%PRODUCTNAME“ Skaičiuoklė → Rodymas</emph> ir nuimkite žymeklį nuo žymimojo langelio <emph>Formulės</emph>."
#: csv_formula.xhp
msgctxt ""
@@ -3374,7 +3374,7 @@ msgctxt ""
"hd_id3154022\n"
"help.text"
msgid "To Export Formulas and Values as CSV Files"
-msgstr ""
+msgstr "Eksportuoti formulės ir reikšmes kaip CSV failą"
#: csv_formula.xhp
msgctxt ""
@@ -3382,7 +3382,7 @@ msgctxt ""
"par_id3150342\n"
"help.text"
msgid "Click the sheet to be written as a csv file."
-msgstr ""
+msgstr "Spustelėkite ant lakšto kurį norite įrašyti kaip csv failą."
#: csv_formula.xhp
msgctxt ""
@@ -3390,7 +3390,7 @@ msgctxt ""
"par_id3166423\n"
"help.text"
msgid "If you want to export the formulas as formulas, for example, in the form =SUM(A1:B5), proceed as follows:"
-msgstr ""
+msgstr "Jei norite eksportuoti formules kaip formules, o ne formulių rezultatus, pavyzdžiui formatu =SUM(A1:B5), sekite šiuos žingsnius:"
#: csv_formula.xhp
msgctxt ""
@@ -3398,7 +3398,7 @@ msgctxt ""
"par_id3155111\n"
"help.text"
msgid "Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Calc - View</emph>."
-msgstr ""
+msgstr "Pasirinkite<switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>„%PRODUCTNAME“ → Parinktys</emph></caseinline><defaultinline><emph>Priemonės → parinktys</emph></defaultinline></switchinline><emph> → „%PRODUCTNAME“ Skaičiuoklė → Rodymas</emph>."
#: csv_formula.xhp
msgctxt ""
@@ -3406,7 +3406,7 @@ msgctxt ""
"par_id3150200\n"
"help.text"
msgid "Under <emph>Display</emph>, mark the <emph>Formulas</emph> check box. Click <emph>OK</emph>."
-msgstr ""
+msgstr "Srityje <emph>Rodoma</emph>, pažymėkite žymimąjį langelį <emph>Formulės</emph>. Spustelėkite mygtuką <emph>Gerai</emph>."
#: csv_formula.xhp
msgctxt ""
@@ -3414,7 +3414,7 @@ msgctxt ""
"par_id3154484\n"
"help.text"
msgid "If you want to export the calculation results instead of the formulas, do not mark <emph>Formulas</emph>."
-msgstr ""
+msgstr "Jei norite eksportuoti formulių rezultatus vietoj formulių žymimojo langelio <emph>Formulės</emph> nežymėkite."
#: csv_formula.xhp
msgctxt ""
@@ -3422,7 +3422,7 @@ msgctxt ""
"par_id3148702\n"
"help.text"
msgid "Choose <emph>File - Save as</emph>. You will see the <emph>Save as</emph> dialog."
-msgstr ""
+msgstr "Pasirinkite <emph>Failas → Įrašyti kaip</emph>. Pamatysite <emph>Įrašyti kaip</emph> dialogo langą."
#: csv_formula.xhp
msgctxt ""
@@ -3430,7 +3430,7 @@ msgctxt ""
"par_id3153912\n"
"help.text"
msgid "In the <item type=\"menuitem\">File type</item> field select the format \"Text CSV\"."
-msgstr ""
+msgstr "<item type=\"menuitem\">Failo tipo</item> laukelyje pasirinkite formatą \"Text CSV\"."
#: csv_formula.xhp
msgctxt ""
@@ -3438,7 +3438,7 @@ msgctxt ""
"par_id3157978\n"
"help.text"
msgid "Enter a name and click <emph>Save</emph>."
-msgstr ""
+msgstr "Įveskite pavadinimą ir spustelėkite mygtuką <emph>Įrašyti</emph>."
#: csv_formula.xhp
msgctxt ""
@@ -3446,7 +3446,7 @@ msgctxt ""
"par_id3152869\n"
"help.text"
msgid "From the <emph>Export of text files</emph> dialog that appears, select the character set and the field and text delimiters for the data to be exported, and confirm with <emph>OK</emph>."
-msgstr ""
+msgstr "Atsidariusiame dialogo lange <emph>Eksportuoti teksto failą</emph>, pasirinkite norimus parametrus ir spustelėkite mygtuką <emph>Gerai</emph>."
#: csv_formula.xhp
msgctxt ""
@@ -3454,7 +3454,7 @@ msgctxt ""
"par_id3150050\n"
"help.text"
msgid "If necessary, after you have saved, clear the <emph>Formulas</emph> check box to see the calculated results in the table again."
-msgstr ""
+msgstr "Jei norite vėl lentelėje matyti formulių rezultatus, nuimkite žymėjimą nuo žymimojo langelio <emph>Formulės</emph>."
#: csv_formula.xhp
msgctxt ""
@@ -3462,7 +3462,7 @@ msgctxt ""
"par_id3153487\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01060100.xhp\" name=\"Spreadsheet - View\">%PRODUCTNAME Calc - View</link>"
-msgstr ""
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">„%PRODUCTNAME“ → Parinktys</caseinline><defaultinline>Priemonės → Parinktys</defaultinline></switchinline> → <link href=\"text/shared/optionen/01060100.xhp\" name=\"Spreadsheet - View\">„%PRODUCTNAME“ → Rodymas</link>"
#: csv_formula.xhp
msgctxt ""
@@ -3470,7 +3470,7 @@ msgctxt ""
"par_id3153008\n"
"help.text"
msgid "<link href=\"text/shared/00/00000207.xhp\" name=\"Export text files\">Export text files</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/00/00000207.xhp\" name=\"Export text files\">Tekstinio failo eksportavimas</link>"
#: csv_formula.xhp
msgctxt ""
@@ -3478,7 +3478,7 @@ msgctxt ""
"par_id3155595\n"
"help.text"
msgid "<link href=\"text/shared/00/00000208.xhp\" name=\"Import text files\">Import text files</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/00/00000208.xhp\" name=\"Import text files\">Tekstinio failo importavimas</link>"
#: currency_format.xhp
msgctxt ""
@@ -3486,7 +3486,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Cells in Currency Format"
-msgstr ""
+msgstr "Langelių valiutos formatas"
#: currency_format.xhp
msgctxt ""
@@ -3494,7 +3494,7 @@ msgctxt ""
"bm_id3156329\n"
"help.text"
msgid "<bookmark_value>currency formats; spreadsheets</bookmark_value><bookmark_value>cells; currency formats</bookmark_value><bookmark_value>international currency formats</bookmark_value><bookmark_value>formats; currency formats in cells</bookmark_value><bookmark_value>currencies; default currencies</bookmark_value><bookmark_value>defaults;currency formats</bookmark_value><bookmark_value>changing;currency formats</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>valiutos formatai; skaičiuoklės dokumentai</bookmark_value><bookmark_value>langeliai; valiutos formatai</bookmark_value><bookmark_value>tarptautiniai valiutos formatai</bookmark_value><bookmark_value>formatai; valiutų formatai langeliuose</bookmark_value><bookmark_value>valiutos; numatyta valiuta</bookmark_value><bookmark_value>numatytas; valiutos formatas</bookmark_value><bookmark_value>keitimas;valiutos formato</bookmark_value>"
#: currency_format.xhp
msgctxt ""
@@ -3502,7 +3502,7 @@ msgctxt ""
"hd_id3156329\n"
"help.text"
msgid "<variable id=\"currency_format\"><link href=\"text/scalc/guide/currency_format.xhp\" name=\"Cells in Currency Format\">Cells in Currency Format</link></variable>"
-msgstr ""
+msgstr "<variable id=\"currency_format\"><link href=\"text/scalc/guide/currency_format.xhp\" name=\"Cells in Currency Format\">Langelių valiutos formatas</link></variable>"
#: currency_format.xhp
msgctxt ""
@@ -3510,7 +3510,7 @@ msgctxt ""
"par_id3153968\n"
"help.text"
msgid "In <item type=\"productname\">%PRODUCTNAME</item> Calc you can give numbers any currency format. When you click the <item type=\"menuitem\">Currency</item> icon <image id=\"img_id3150791\" src=\"cmd/sc_currencyfield.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3150791\">Icon</alt></image> in the <item type=\"menuitem\">Formatting</item> bar to format a number, the cell is given the default currency format set under <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\"> - Language Settings - Languages</item>."
-msgstr ""
+msgstr "<item type=\"productname\">„%PRODUCTNAME“</item> Skaičiuoklėje galite skaičiams suteikti, bet kokį valiutos formatą. Spustelėjus <item type=\"menuitem\">Valiutos</item> piktogramą<image id=\"img_id3150791\" src=\"cmd/sc_currencyfield.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3150791\">piktograma</alt></image><item type=\"menuitem\"> Formatavimo</item> juostoje, langelio valiutos formatas nustatomas pagal numatytąjį formatą <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"menuitem\">„%PRODUCTNAME“ → Parinktys</item></caseinline><defaultinline><item type=\"menuitem\">Priemonės → Parinktys</item></defaultinline></switchinline><item type=\"menuitem\"> → Kalbos nuostatos → Kalba</item>."
#: currency_format.xhp
msgctxt ""
@@ -3518,7 +3518,7 @@ msgctxt ""
"par_id3150010\n"
"help.text"
msgid "Exchanging of <item type=\"productname\">%PRODUCTNAME</item> Calc documents can lead to misunderstandings, if your <item type=\"productname\">%PRODUCTNAME</item> Calc document is loaded by a user who uses a different default currency format."
-msgstr ""
+msgstr "Mainantis <item type=\"productname\">„%PRODUCTNAME“</item> Skaičiuoklės dokumentu gali kilti nesusipratimų, jei jūsų <item type=\"productname\">„%PRODUCTNAME“</item> Skaičiuoklės dokumentas atidaromas vartotojo kuris naudoja kitokį numatytąjį valiutos formatą."
#: currency_format.xhp
msgctxt ""
@@ -3526,7 +3526,7 @@ msgctxt ""
"par_id3156442\n"
"help.text"
msgid "In <item type=\"productname\">%PRODUCTNAME</item> Calc you can define that a number that you have formatted as \"1,234.50 €\", still remains in euros in another country and does not become dollars."
-msgstr ""
+msgstr "<item type=\"productname\">„%PRODUCTNAME“</item> Skaičiuoklėje galite nustatyti, kad skaičius kurio formatą nustatėte į \"1,234.50 €\", kitoje šalyje liktu eurais ir nepasikeistu į dolerius."
#: currency_format.xhp
msgctxt ""
@@ -3534,7 +3534,7 @@ msgctxt ""
"par_id3151075\n"
"help.text"
msgid "You can change the currency format in the <item type=\"menuitem\">Format Cells</item> dialog (choose <item type=\"menuitem\">Format - Cells - Numbers</item> tab) by two country settings. In the <item type=\"menuitem\">Language</item> combo box select the basic setting for decimal and thousands separators. In the <item type=\"menuitem\">Format</item> list box you can select the currency symbol and its position."
-msgstr ""
+msgstr "Valiutos formatą galite pakeisti nuėję į <item type=\"menuitem\">Langelių formatavimo</item> dialogo langą (pasirinke <item type=\"menuitem\">Formatas → Langeliai → Skaičiai</item> kortelės ąselę).<item type=\"menuitem\">Kalbos</item> jungtiniame laukelyje pasirinkite pagrindinius nustatymus dešimtainiams ir tūkstančių separatoriams. <item type=\"menuitem\">Formatas</item> sąrašo laukelyje galite pasirinkti valiutos simboli ir jo vietą langelyje."
#: currency_format.xhp
msgctxt ""
@@ -3542,7 +3542,7 @@ msgctxt ""
"par_id3150749\n"
"help.text"
msgid "For example, if the language is set to \"Default\" and you are using a german locale setting, the currency format will be \"1.234,00 €\". A point is used before the thousand digits and a comma before the decimal places. If you now select the subordinate currency format \"$ English (US)\" from the <item type=\"menuitem\">Format</item> list box , you will get the following format: \"$ 1.234,00\". As you can see, the separators have remained the same. Only the currency symbol has been changed and converted, but the underlying format of the notation remains the same as in the locale setting."
-msgstr ""
+msgstr "Pavyzdžiui jei kalba nustatyta į \"Numatytąja\" ir jūs naudojate vokiečių kalbos nustatymus, valiutos formatas atrodys taip: \"1.234,00 €\". Prieš tūkstančius padedamas taškas, o kablelis padedamas atskiriant dešimtainius skaičius. Jei dabar pasirinksite pavaldų valiutos formatą: \"$ Anglų (JAV)\" iš <item type=\"menuitem\">Formatas</item> sąrašo laukelio, skaičiaus formatas atrodys taip: \"$ 1.234,00\". Separatoriai nepasikeitė, tik valiutos simboliai buvo perdėti ir konvertuoti, o pagrindinis žymėjimo formatas išliko toks pat koks buvo pasirinktas kalbos nustatymuose."
#: currency_format.xhp
msgctxt ""
@@ -3550,7 +3550,7 @@ msgctxt ""
"par_id3145640\n"
"help.text"
msgid "If, under <item type=\"menuitem\">Language</item>, you convert the cells to \"English (US)\", the English-language locale setting is also transferred and the default currency format is now \"$ 1,234.00\"."
-msgstr ""
+msgstr "Jei <item type=\"menuitem\">Kalbos</item> laukelyje langelius konvertuosite į \"Anglų(JAV)\", Anglų kalbos nustatymai bus nustatyti kaip numatytieji nustatymai ir valiutos formatas bus \"$ 1,234.00\"."
#: currency_format.xhp
msgctxt ""
@@ -3558,7 +3558,7 @@ msgctxt ""
"par_id3154255\n"
"help.text"
msgid "<link href=\"text/shared/01/05020300.xhp\" name=\"Format - Cells - Numbers\">Format - Cells - Numbers</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/05020300.xhp\" name=\"Format - Cells - Numbers\">Formatas → Langeliai → Skaičiai</link>"
#: database_define.xhp
msgctxt ""
@@ -3566,7 +3566,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Defining Database Ranges"
-msgstr ""
+msgstr "Duomenų bazės apibrėžimas"
#: database_define.xhp
msgctxt ""
@@ -3574,7 +3574,7 @@ msgctxt ""
"bm_id3154758\n"
"help.text"
msgid "<bookmark_value>tables; database ranges</bookmark_value> <bookmark_value>database ranges; defining</bookmark_value> <bookmark_value>ranges; defining database ranges</bookmark_value> <bookmark_value>defining;database ranges</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Lentelės; duomenų bazės sritys</bookmark_value> <bookmark_value>duomenų bazės sritys; apibrėžimas</bookmark_value> <bookmark_value>sritys; duomenų bazės srities apibrėžimas</bookmark_value> <bookmark_value>apibrėžimas; duomenų bazės sritys</bookmark_value>"
#: database_define.xhp
msgctxt ""
@@ -3582,7 +3582,7 @@ msgctxt ""
"hd_id3154758\n"
"help.text"
msgid "<variable id=\"database_define\"><link href=\"text/scalc/guide/database_define.xhp\" name=\"Defining Database Ranges\">Defining a Database Range</link></variable>"
-msgstr ""
+msgstr "<variable id=\"database_define\"><link href=\"text/scalc/guide/database_define.xhp\" name=\"Defining Database Ranges\">Duomenų bazės apibrėžimas</link></variable>"
#: database_define.xhp
msgctxt ""
@@ -3590,7 +3590,7 @@ msgctxt ""
"par_id3153768\n"
"help.text"
msgid "You can define a range of cells in a spreadsheet to use as a database. Each row in this database range corresponds to a database record and each cell in a row corresponds to a database field. You can sort, group, search, and perform calculations on the range as you would in a database."
-msgstr ""
+msgstr "Skaičiuoklės dokumente galite apibrėžti langelių sritį ir ja naudoti kaip duomenų bazę. Kiekviena eilutė šioje duomenų bazės srityje atitinka duomenų bazės įrašą ir kiekvienas langelis eilutėje atitinka duomenų bazės lauką. Šią sritį jūs galite rūšiuoti, grupuoti ir joje atlikti įvairius skaičiavimus taip pat kaip ir duomenų bazėje."
#: database_define.xhp
msgctxt ""
@@ -3598,7 +3598,7 @@ msgctxt ""
"par_id3145801\n"
"help.text"
msgid "You can only edit and access a database range in the spreadsheet that contains the range. You cannot access the database range in the %PRODUCTNAME Data Sources view."
-msgstr ""
+msgstr "Šią duomenų bazės sritį galite koreguoti tik skaičiuoklės dokumente kuriame ji yra. „%PRODUCTNAME“ Duomenų šaltinio peržiūroje šios srities pasiekti negalite."
#: database_define.xhp
msgctxt ""
@@ -3606,7 +3606,7 @@ msgctxt ""
"par_idN10648\n"
"help.text"
msgid "To define a database range"
-msgstr ""
+msgstr "Duomenų bazės srities aprašymas"
#: database_define.xhp
msgctxt ""
@@ -3614,7 +3614,7 @@ msgctxt ""
"par_id3155064\n"
"help.text"
msgid "Select the range of cells that you want to define as a database range."
-msgstr ""
+msgstr "Pažymėkite langelių bloką, kurį norite aprašyti kaip duomenų bazės sritį."
#: database_define.xhp
msgctxt ""
@@ -3622,7 +3622,7 @@ msgctxt ""
"par_idN10654\n"
"help.text"
msgid "Choose <item type=\"menuitem\">Data - Define Range</item>."
-msgstr ""
+msgstr "Pasirinkite <item type=\"menuitem\">Duomenys → Srities apibrėžimas</item>."
#: database_define.xhp
msgctxt ""
@@ -3630,7 +3630,7 @@ msgctxt ""
"par_id3153715\n"
"help.text"
msgid "In the <emph>Name</emph> box, enter a name for the database range."
-msgstr ""
+msgstr "<emph>Pavadinimo</emph> laukelyje įrašykite duomenų bazės srities pavadinimą."
#: database_define.xhp
msgctxt ""
@@ -3638,7 +3638,7 @@ msgctxt ""
"par_idN1066A\n"
"help.text"
msgid "Click <emph>More</emph>."
-msgstr ""
+msgstr "Spustelėkite mygtuką <emph>Parinktys</emph>."
#: database_define.xhp
msgctxt ""
@@ -3646,7 +3646,7 @@ msgctxt ""
"par_id3154253\n"
"help.text"
msgid "Specify the options for the database range."
-msgstr ""
+msgstr "Nurodykite norimus duomenų bazės srities nustatymus."
#: database_define.xhp
msgctxt ""
@@ -3654,7 +3654,7 @@ msgctxt ""
"par_idN10675\n"
"help.text"
msgid "Click <emph>OK</emph>."
-msgstr ""
+msgstr "Spustelėkite mygtuką <emph>Gerai</emph>."
#: database_filter.xhp
msgctxt ""
@@ -3662,7 +3662,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Filtering Cell Ranges"
-msgstr ""
+msgstr "Filtro pritaikymas langelių blokui"
#: database_filter.xhp
msgctxt ""
@@ -3670,7 +3670,7 @@ msgctxt ""
"bm_id3153541\n"
"help.text"
msgid "<bookmark_value>cell ranges;applying/removing filters</bookmark_value> <bookmark_value>filtering;cell ranges/database ranges</bookmark_value> <bookmark_value>database ranges;applying/removing filters</bookmark_value> <bookmark_value>removing;cell range filters</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>langelių blokas;filtrų taikymas/šalinimas</bookmark_value> <bookmark_value>filtravimas;langelių blokai/duomenų bazės sritys</bookmark_value> <bookmark_value>duomenų bazės sritys;filtrų taikymas/šalinimas</bookmark_value> <bookmark_value>šalinimas;filtro pritaikymas langelių blokui</bookmark_value>"
#: database_filter.xhp
msgctxt ""
@@ -3678,7 +3678,7 @@ msgctxt ""
"hd_id3153541\n"
"help.text"
msgid "<variable id=\"database_filter\"><link href=\"text/scalc/guide/database_filter.xhp\" name=\"Filtering Cell Ranges\">Filtering Cell Ranges</link></variable>"
-msgstr ""
+msgstr "<variable id=\"database_filter\"><link href=\"text/scalc/guide/database_filter.xhp\" name=\"Filtering Cell Ranges\">Filtro pritaikymas langelių blokui</link></variable>"
#: database_filter.xhp
msgctxt ""
@@ -3686,7 +3686,7 @@ msgctxt ""
"par_id3145069\n"
"help.text"
msgid "You can use several filters to filter cell ranges in spreadsheets. A standard filter uses the options that you specify to filter the data. An AutoFilter filters data according to a specific value or string. An advanced filter uses filter criteria from specified cells."
-msgstr ""
+msgstr "Skaičiuoklės dokumente langelių bloko filtravimui galite naudoti keletą skirtingų filtrų. Įprastas filtras filtruoja, duomenys pagal pasirinktas filtro parinktis. Automatinis filtras filtruoja duomenys atsižvelgiant į norimą reikšmę ar tekstą. Papildomas filtras duomenų filtravimui naudoja kriterijus nurodytus pasirinktame langelyje."
#: database_filter.xhp
msgctxt ""
@@ -3694,7 +3694,7 @@ msgctxt ""
"par_idN10682\n"
"help.text"
msgid "To Apply a Standard Filter to a Cell Range"
-msgstr ""
+msgstr "Įprasto filtro pritaikymas langelių blokui"
#: database_filter.xhp
msgctxt ""
@@ -3702,7 +3702,7 @@ msgctxt ""
"par_id3150398\n"
"help.text"
msgid "Click in a cell range."
-msgstr ""
+msgstr "Spustelėkite ant langelių bloko"
#: database_filter.xhp
msgctxt ""
@@ -3710,7 +3710,7 @@ msgctxt ""
"par_idN10693\n"
"help.text"
msgid "Choose <item type=\"menuitem\">Data - Filter - Standard Filter</item>."
-msgstr ""
+msgstr "Pasirinkite <item type=\"menuitem\">Duomenys → Daugiau filtrų → įprastas filtras</item>."
#: database_filter.xhp
msgctxt ""
@@ -3718,7 +3718,7 @@ msgctxt ""
"par_id3156422\n"
"help.text"
msgid "In the <emph>Standard Filter</emph> dialog, specify the filter options that you want."
-msgstr ""
+msgstr "Atsidariusiame <emph>Įprasto filtro</emph> dialogo lange, pasirinkite norimas filtro parinktis."
#: database_filter.xhp
msgctxt ""
@@ -3726,7 +3726,7 @@ msgctxt ""
"par_idN106A5\n"
"help.text"
msgid "Click <emph>OK</emph>."
-msgstr ""
+msgstr "Spustelėkite mygtuką <emph>Gerai</emph>."
#: database_filter.xhp
msgctxt ""
@@ -3734,7 +3734,7 @@ msgctxt ""
"par_id3153143\n"
"help.text"
msgid "The records that match the filter options that you specified are shown."
-msgstr ""
+msgstr "Tik įrašai atitinkantys filtro parinktis bus rodomi."
#: database_filter.xhp
msgctxt ""
@@ -3742,7 +3742,7 @@ msgctxt ""
"par_id3153728\n"
"help.text"
msgid "To Apply an AutoFilter to a Cell Range"
-msgstr ""
+msgstr "Automatinio filtro pritaikymas langelių blokui"
#: database_filter.xhp
msgctxt ""
@@ -3750,7 +3750,7 @@ msgctxt ""
"par_id3144764\n"
"help.text"
msgid "Click in a cell range or a database range."
-msgstr ""
+msgstr "Spustelėkite ant langelių bloko ar duomenų bazės srities."
#: database_filter.xhp
msgctxt ""
@@ -3758,7 +3758,7 @@ msgctxt ""
"par_id9303872\n"
"help.text"
msgid "If you want to apply multiple AutoFilters to the same sheet, you must first define database ranges, then apply the AutoFilters to the database ranges."
-msgstr ""
+msgstr "Jei norite pritaikyti kelis automatinius filtrus vienam lakštui, pirmiausia turite apibrėžti duomenų bazės sritį ir tik tada pritaikyti automatinį jai filtrą."
#: database_filter.xhp
msgctxt ""
@@ -3766,7 +3766,7 @@ msgctxt ""
"par_id3154944\n"
"help.text"
msgid "Choose <item type=\"menuitem\">Data - Filter - AutoFilter</item>."
-msgstr ""
+msgstr "Pasirinkite <item type=\"menuitem\">Duomenys → Automatinis filtras</item>."
#: database_filter.xhp
msgctxt ""
@@ -3774,7 +3774,7 @@ msgctxt ""
"par_idN106DB\n"
"help.text"
msgid "An arrow button is added to the head of each column in the database range."
-msgstr ""
+msgstr "Kiekvieno langelių srities ar duomenų bazės srities stulpelio viršuje atsiras rodyklės mygtukas."
#: database_filter.xhp
msgctxt ""
@@ -3782,7 +3782,7 @@ msgctxt ""
"par_id3153878\n"
"help.text"
msgid "Click the arrow button in the column that contains the value or string that you want to set as the filter criteria."
-msgstr ""
+msgstr "Spustelėkite ant rodyklės mygtuko stulpelio viršuje."
#: database_filter.xhp
msgctxt ""
@@ -3790,7 +3790,7 @@ msgctxt ""
"par_idN10749\n"
"help.text"
msgid "Select the value or string that you want to use as the filter criteria."
-msgstr ""
+msgstr "Pasirinkite reikšmę arba tekstą kurį norite naudoti kaip filtro kriterijų."
#: database_filter.xhp
msgctxt ""
@@ -3798,7 +3798,7 @@ msgctxt ""
"par_idN1074C\n"
"help.text"
msgid "The records that match the filter criteria that you selected are shown."
-msgstr ""
+msgstr "Tik įrašai atitinkantys jūsų pasirinktus filtro kriterijus bus rodomi."
#: database_filter.xhp
msgctxt ""
@@ -3806,7 +3806,7 @@ msgctxt ""
"par_idN106E8\n"
"help.text"
msgid "To Remove a Filter From a Cell Range"
-msgstr ""
+msgstr "Filtro šalinimas nuo langelių srities"
#: database_filter.xhp
msgctxt ""
@@ -3814,7 +3814,7 @@ msgctxt ""
"par_idN1075C\n"
"help.text"
msgid "Click in a filtered cell range."
-msgstr ""
+msgstr "Spustelėkite ant langelių srities su filtru."
#: database_filter.xhp
msgctxt ""
@@ -3822,7 +3822,7 @@ msgctxt ""
"par_idN106EC\n"
"help.text"
msgid "Choose <item type=\"menuitem\">Data - Filter - Reset Filter</item>."
-msgstr ""
+msgstr "Pasirinkite <item type=\"menuitem\">Duomenys → Daugiau filtrų → Atstatyti filtrą</item>."
#: database_filter.xhp
msgctxt ""
@@ -3830,7 +3830,7 @@ msgctxt ""
"par_id4525284\n"
"help.text"
msgid "<link href=\"https://wiki.documentfoundation.org/Documentation/How_Tos/Defining_a_Data_Range\" name=\"wiki.documentfoundation.org Defining a Data Range\">Wiki page about defining a data range</link>"
-msgstr ""
+msgstr "<link href=\"https://wiki.documentfoundation.org/Documentation/How_Tos/Defining_a_Data_Range\" name=\"wiki.documentfoundation.org Defining a Data Range\">Viki saitas aprašantis duomenų sritį</link>"
#: database_sort.xhp
msgctxt ""
@@ -3838,7 +3838,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Sorting Data"
-msgstr ""
+msgstr "Duomenų rikiavimas"
#: database_sort.xhp
msgctxt ""
@@ -3846,7 +3846,7 @@ msgctxt ""
"bm_id3150767\n"
"help.text"
msgid "<bookmark_value>database ranges; sorting</bookmark_value> <bookmark_value>sorting; database ranges</bookmark_value> <bookmark_value>data;sorting in databases</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>duomenų bazės sritys; rikiavimas</bookmark_value> <bookmark_value>rikiavimas; duomenų bazės sritys</bookmark_value> <bookmark_value>duomenys;duomenų bazės rikiavimas</bookmark_value>"
#: database_sort.xhp
msgctxt ""
@@ -3854,7 +3854,7 @@ msgctxt ""
"hd_id3150767\n"
"help.text"
msgid "<variable id=\"database_sort\"><link href=\"text/scalc/guide/database_sort.xhp\" name=\"Sorting Database Ranges\">Sorting Data</link></variable>"
-msgstr ""
+msgstr "<variable id=\"database_sort\"><link href=\"text/scalc/guide/database_sort.xhp\" name=\"Sorting Database Ranges\">Duomenų rikiavimas</link></variable>"
#: database_sort.xhp
msgctxt ""
@@ -3862,7 +3862,7 @@ msgctxt ""
"par_id3145751\n"
"help.text"
msgid "Click in a database range."
-msgstr ""
+msgstr "Spustelėkite ant duomenų bazės srities."
#: database_sort.xhp
msgctxt ""
@@ -3870,7 +3870,7 @@ msgctxt ""
"par_id121020081121549\n"
"help.text"
msgid "If you select a range of cells, only these cells will get sorted. If you just click one cell without selecting, then the whole database range will get sorted."
-msgstr ""
+msgstr "Jei pažymėjote langelių sritį, tik pažymėti langeliai bus surikiuoti. Jei spustelėjote tik vieną langelį, visa duomenų bazė bus surikiuota."
#: database_sort.xhp
msgctxt ""
@@ -3878,7 +3878,7 @@ msgctxt ""
"par_idN10635\n"
"help.text"
msgid "Choose <item type=\"menuitem\">Data - Sort</item>."
-msgstr ""
+msgstr "Pasirinkite <item type=\"menuitem\">Duomenys → Rikiuoti</item>."
#: database_sort.xhp
msgctxt ""
@@ -3886,7 +3886,7 @@ msgctxt ""
"par_id121020081121547\n"
"help.text"
msgid "The range of cells that will get sorted is shown in inverted colors."
-msgstr ""
+msgstr "Langelių sritis kuri bus rikiuojama rodoma invertuotomis spalvomis."
#: database_sort.xhp
msgctxt ""
@@ -3894,7 +3894,7 @@ msgctxt ""
"par_idN10645\n"
"help.text"
msgid "Select the sort options that you want."
-msgstr ""
+msgstr "Pasirinkite norimas rikiavimo parinktis."
#: database_sort.xhp
msgctxt ""
@@ -3902,7 +3902,7 @@ msgctxt ""
"par_idN1063D\n"
"help.text"
msgid "Click <emph>OK</emph>."
-msgstr ""
+msgstr "Spustelėkite mygtuką <emph>Gerai</emph>."
#: database_sort.xhp
msgctxt ""
@@ -3910,7 +3910,7 @@ msgctxt ""
"par_id1846980\n"
"help.text"
msgid "<link href=\"https://wiki.documentfoundation.org/Documentation/How_Tos/Defining_a_Data_Range\" name=\"wiki.documentfoundation.org: Defining a Data Range\">Wiki page about defining a data range</link>"
-msgstr ""
+msgstr "<link href=\"https://wiki.documentfoundation.org/Documentation/How_Tos/Defining_a_Data_Range\" name=\"wiki.documentfoundation.org: Defining a Data Range\">Viki saite apie duomenų bazės sritį</link>"
#: datapilot.xhp
msgctxt ""
@@ -3918,7 +3918,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Pivot Table"
-msgstr ""
+msgstr "Suvestinė lentelė"
#: datapilot.xhp
msgctxt ""
@@ -3926,7 +3926,7 @@ msgctxt ""
"bm_id3150448\n"
"help.text"
msgid "<bookmark_value>pivot table function; introduction</bookmark_value><bookmark_value>DataPilot, see pivot table function</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>suvestinė lentelė; įvedimas</bookmark_value><bookmark_value>DataPilot; žiūrėkite suvestinės lentelės funkcijas</bookmark_value>"
#: datapilot.xhp
msgctxt ""
@@ -3934,7 +3934,7 @@ msgctxt ""
"hd_id3150448\n"
"help.text"
msgid "<variable id=\"datapilot\"><link href=\"text/scalc/guide/datapilot.xhp\" name=\"Pivot Table\">Pivot Table</link></variable>"
-msgstr ""
+msgstr "<variable id=\"datapilot\"><link href=\"text/scalc/guide/datapilot.xhp\" name=\"Pivot Table\">Suvestinė lentelė</link></variable>"
#: datapilot.xhp
msgctxt ""
@@ -3942,7 +3942,7 @@ msgctxt ""
"par_id3156024\n"
"help.text"
msgid "The <emph>pivot table</emph> (formerly known as <emph>DataPilot</emph>) allows you to combine, compare, and analyze large amounts of data. You can view different summaries of the source data, you can display the details of areas of interest, and you can create reports."
-msgstr ""
+msgstr "<emph>Suvestinė lentelė</emph> leidžia jums jungti, lyginti ir analizuoti didelius duomenų kiekius. Galite apžvelgti skirtingas šaltinio duomenų santraukas, rodyti svarbias lentelės dalis ir kurti ataskaitas."
#: datapilot.xhp
msgctxt ""
@@ -3950,7 +3950,7 @@ msgctxt ""
"par_id3145069\n"
"help.text"
msgid "A table that has been created as a <link href=\"text/scalc/01/12090000.xhp\" name=\"pivot table\">pivot table</link> is an interactive table. Data can be arranged, rearranged or summarized according to different points of view."
-msgstr ""
+msgstr "<link href=\"text/scalc/01/12090000.xhp\" name=\"pivot table\">Suvestinė lentelė</link> yra, interaktyvi, duomenys gali būti tvarkomi,pertvarkomi, skirstomi atsižvelgiant į skirtingus požiūrius."
#: datapilot_createtable.xhp
msgctxt ""
@@ -3958,7 +3958,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Creating Pivot Tables"
-msgstr ""
+msgstr "Suvestinių lentelių kūrimas"
#: datapilot_createtable.xhp
msgctxt ""
@@ -3966,7 +3966,7 @@ msgctxt ""
"bm_id3148491\n"
"help.text"
msgid "<bookmark_value>pivot tables</bookmark_value> <bookmark_value>pivot table function; calling up and applying</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>suvestinės lentelės</bookmark_value> <bookmark_value>suvestinių lentelių funkcijos; raginimas ir taikymas</bookmark_value>"
#: datapilot_createtable.xhp
msgctxt ""
@@ -3974,7 +3974,7 @@ msgctxt ""
"hd_id3148491\n"
"help.text"
msgid "<variable id=\"datapilot_createtable\"><link href=\"text/scalc/guide/datapilot_createtable.xhp\" name=\"Creating Pivot Tables\">Creating Pivot Tables</link></variable>"
-msgstr ""
+msgstr "<variable id=\"datapilot_createtable\"><link href=\"text/scalc/guide/datapilot_createtable.xhp\" name=\"Creating Pivot Tables\">Suvestinių lentelių kūrimas</link></variable>"
#: datapilot_createtable.xhp
msgctxt ""
@@ -3982,7 +3982,7 @@ msgctxt ""
"par_id3156023\n"
"help.text"
msgid "Position the cursor within a range of cells containing values, row and column headings."
-msgstr ""
+msgstr "Užveskite žymeklį ant langelių srities, kuri užpildyta reikšmėmis, turi eilučių ir stulpelių antraštes."
#: datapilot_createtable.xhp
msgctxt ""
@@ -3990,7 +3990,7 @@ msgctxt ""
"par_id3147264\n"
"help.text"
msgid "Choose <emph>Insert - Pivot Table</emph>. The <emph>Select Source</emph> dialog appears. Choose <emph>Current selection</emph> and confirm with <emph>OK</emph>. The table headings are shown as buttons in the <emph>Pivot Table</emph> dialog. Drag these buttons as required and drop them into the layout areas \"Page Fields\", \"Column Fields\", \"Row Fields\" and \"Data Fields\"."
-msgstr ""
+msgstr "Pasirinkite <emph>Įterpimas → Suvestinė lentelė</emph>.<emph> Šaltinio parinkčių</emph> dialogo lange pasirinkite žymimąjį langelį <emph>Šiuo metu pažymėta sritis</emph> ir spustelėkite mygtuką <emph>Gerai</emph>. Lentelės antraštės <emph>Suvestinės lentelės</emph> dialogo lange vaizduojamos kaip mygtukai. Vilkite šiuos mygtukus į išdėstymo laukus: „Puslapių laukai“, „Stulpelių laukai“, „Eilučių laukai“, „Duomenų laukai“."
#: datapilot_createtable.xhp
msgctxt ""
@@ -3998,7 +3998,7 @@ msgctxt ""
"par_id3150868\n"
"help.text"
msgid "Drag the desired buttons into one of the four areas."
-msgstr ""
+msgstr "Vilkite mygtukus į norimus laukus."
#: datapilot_createtable.xhp
msgctxt ""
@@ -4006,7 +4006,7 @@ msgctxt ""
"par_id7599414\n"
"help.text"
msgid "Drag a button to the <emph>Page Fields</emph> area to create a button and a listbox on top of the generated pivot table. The listbox can be used to filter the pivot table by the contents of the selected item. You can use drag-and-drop within the generated pivot table to use another page field as a filter."
-msgstr ""
+msgstr "Jei norite sukurti sąrašo langelius virš sukurtos suvestinės lentelės, vilkite mygtukus į <emph>Puslapio laukų</emph> lauką. Sąrašo langeliai gali būt naudojami filtruojant lentelės turinį. Taip pat vilkimo būdu sukurtoje suvestinėje lentelėje galite naudoti kitą puslapio lauką kaip filtrą."
#: datapilot_createtable.xhp
msgctxt ""
@@ -4014,7 +4014,7 @@ msgctxt ""
"par_id3154011\n"
"help.text"
msgid "If the button is dropped in the <emph>Data Fields</emph> area it will be given a caption that also shows the formula that will be used to calculate the data."
-msgstr ""
+msgstr "Įvilkę mygtuką į <emph>Duomenų laukų</emph> lauką duosite jam pavadinimą rodantį formulę, kuri bus naudojama skaičiuojant duomenis."
#: datapilot_createtable.xhp
msgctxt ""
@@ -4022,7 +4022,7 @@ msgctxt ""
"par_id3146974\n"
"help.text"
msgid "By double-clicking on one of the fields in the <emph>Data Fields</emph> area you can call up the <link href=\"text/scalc/01/12090105.xhp\" name=\"Data Field\"><emph>Data Field</emph></link> dialog."
-msgstr ""
+msgstr "Du kartus spustelėja <emph>Duomenų laukų</emph> lauką, galite iškviesti <link href=\"text/scalc/01/12090105.xhp\" name=\"Data Field\"><emph>Duomenų lauko</emph></link> dialogo langą."
#: datapilot_createtable.xhp
msgctxt ""
@@ -4030,7 +4030,7 @@ msgctxt ""
"par_id3156286\n"
"help.text"
msgid "Use the <item type=\"menuitem\">Data Field</item> dialog to select the calculations to be used for the data. To make a multiple selection, press the <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> key while clicking the desired calculation."
-msgstr ""
+msgstr "Naudokite <item type=\"menuitem\">Duomenų lauko</item> dialogo langą pasirinkdami skaičiavimo būdą kurį norite pritaikyti savo duomenims. Jei norite pažymėti kelis skaičiavimo būdus laikydami mygtuką <switchinline select=\"sys\"><caseinline select=\"MAC\">Komanda</caseinline><defaultinline>Vald</defaultinline></switchinline> spustelėkite norimus skaičiavimo būdus."
#: datapilot_createtable.xhp
msgctxt ""
@@ -4038,7 +4038,7 @@ msgctxt ""
"par_id3150329\n"
"help.text"
msgid "The order of the buttons can be changed at any time by moving them to a different position in the area with the mouse."
-msgstr ""
+msgstr "Jei norite pakeisti mygtukų eilės tvarką, tiesiog apkeiskite juos vietom su pele."
#: datapilot_createtable.xhp
msgctxt ""
@@ -4046,7 +4046,7 @@ msgctxt ""
"par_id3153714\n"
"help.text"
msgid "Remove a button by dragging it back to the area of the other buttons at the right of the dialog."
-msgstr ""
+msgstr "Jei norite pašalinti mygtuką, vilkite jį atgal į galimų laukų lauką dialogo lango dešinėje."
#: datapilot_createtable.xhp
msgctxt ""
@@ -4054,7 +4054,7 @@ msgctxt ""
"par_id3147338\n"
"help.text"
msgid "To open the <link href=\"text/scalc/01/12090105.xhp\" name=\"Data Field\"><emph>Data Field</emph></link> dialog, double-click one of the buttons in the <emph>Row Fields</emph> or <emph>Column Fields</emph> area. Use the dialog to select if and to what extent <item type=\"productname\">%PRODUCTNAME</item> calculates display subtotals."
-msgstr ""
+msgstr "Jei norite atidaryti <link href=\"text/scalc/01/12090105.xhp\" name=\"Data Field\"><emph>Duomenų lauko</emph></link> dialogo langą, du kartus suptelėkite ant bet kurio mygtuko esančio <emph>Eilučių laukų</emph> lauke arba <emph>Stulpelio laukų</emph> lauke. Naudokite šį dialogo langą nustatyti kokio didžio gali būti <item type=\"productname\">„%PRODUCTNAME“</item> apskaičiuojamos tarpinės sumos."
#: datapilot_createtable.xhp
msgctxt ""
@@ -4062,7 +4062,7 @@ msgctxt ""
"par_id3154020\n"
"help.text"
msgid "Exit the Pivot Table dialog by pressing OK. A <emph>Filter</emph> button will now be inserted, or a page button for every data field that you dropped in the <emph>Page Fields</emph> area. The pivot table is inserted further down."
-msgstr ""
+msgstr "Išeikite iš suvestinės lentelės dialogo lango, spustelėję mygtuką gerai. <emph>Filtro</emph> mygtukai bus pridėti prie kiekvienos antraštės kurią įvilkote į <emph>Puslapio laukų</emph> lauką."
#: datapilot_deletetable.xhp
msgctxt ""
@@ -4070,7 +4070,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Deleting Pivot Tables"
-msgstr ""
+msgstr "Suvestinės lentelės šalinimas"
#: datapilot_deletetable.xhp
msgctxt ""
@@ -4078,7 +4078,7 @@ msgctxt ""
"bm_id3153726\n"
"help.text"
msgid "<bookmark_value>pivot table function; deleting tables</bookmark_value> <bookmark_value>deleting;pivot tables</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>suvestinės lentelės funkcijos; lentelių šalinimas</bookmark_value> <bookmark_value>šalinimas; suvestinės lentelės</bookmark_value>"
#: datapilot_deletetable.xhp
msgctxt ""
@@ -4086,7 +4086,7 @@ msgctxt ""
"hd_id3153726\n"
"help.text"
msgid "<variable id=\"datapilot_deletetable\"><link href=\"text/scalc/guide/datapilot_deletetable.xhp\" name=\"Deleting Pivot Tables\">Deleting Pivot Tables</link></variable>"
-msgstr ""
+msgstr "<variable id=\"datapilot_deletetable\"><link href=\"text/scalc/guide/datapilot_deletetable.xhp\" name=\"Deleting Pivot Tables\">Suvestinių lentelių šalinimas</link></variable>"
#: datapilot_deletetable.xhp
msgctxt ""
@@ -4094,7 +4094,7 @@ msgctxt ""
"par_id3154014\n"
"help.text"
msgid "In order to delete a pivot table, click any cell in the pivot table, then choose <emph>Delete</emph> in the context menu."
-msgstr ""
+msgstr "Jei norite pašalinti suvestinę lentelę, spustelėkite, bet kurį langelį lentelėje ir pasirinkite <emph>Šalinti</emph> kontekstiniame meniu."
#: datapilot_deletetable.xhp
msgctxt ""
@@ -4102,7 +4102,7 @@ msgctxt ""
"par_id141525148751543\n"
"help.text"
msgid "If you delete a pivot table linked to a pivot chart, the pivot chart is also deleted. A dialog box opens to confirm the pivot chart deletion."
-msgstr ""
+msgstr "Jei ištrinsite suvestinę lentelę kuri yra susieta su suvestinę diagrama, diagrama taip pat bus ištrinta."
#: datapilot_edittable.xhp
msgctxt ""
@@ -4110,7 +4110,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Editing Pivot Tables"
-msgstr ""
+msgstr "Suvestinių lentelių koregavimas"
#: datapilot_edittable.xhp
msgctxt ""
@@ -4118,7 +4118,7 @@ msgctxt ""
"bm_id3148663\n"
"help.text"
msgid "<bookmark_value>pivot table function; editing tables</bookmark_value><bookmark_value>editing;pivot tables</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>suvestinių lentelių funkcijos; lentelių koregavimas</bookmark_value><bookmark_value>koregavimas;suvestinės lentelės</bookmark_value>"
#: datapilot_edittable.xhp
msgctxt ""
@@ -4126,7 +4126,7 @@ msgctxt ""
"hd_id3148663\n"
"help.text"
msgid "<variable id=\"datapilot_edittable\"><link href=\"text/scalc/guide/datapilot_edittable.xhp\" name=\"Editing Pivot Tables\">Editing Pivot Tables</link></variable>"
-msgstr ""
+msgstr "<variable id=\"datapilot_edittable\"><link href=\"text/scalc/guide/datapilot_edittable.xhp\" name=\"Editing Pivot Tables\">Suvestinių lentelių koregavimas</link></variable>"
#: datapilot_edittable.xhp
msgctxt ""
@@ -4134,7 +4134,7 @@ msgctxt ""
"par_id3150868\n"
"help.text"
msgid "Click one of the buttons in the pivot table and hold the mouse button down. A special symbol will appear next to the mouse pointer."
-msgstr ""
+msgstr "Spustelėkite vieną iš suvestinės lentelė mygtukų ir laikykite jį nuspaudę. Ypatingas simbolis atsiras prie pelės žymeklio."
#: datapilot_edittable.xhp
msgctxt ""
@@ -4142,7 +4142,7 @@ msgctxt ""
"par_id3145786\n"
"help.text"
msgid "By dragging the button to a different position in the same row you can alter the order of the columns. If you drag a button to the left edge of the table into the row headings area, you can change a column into a row."
-msgstr ""
+msgstr "Vilkdami mygtuką į kitą tos pačios eilutės vietą, jūs galite koreguoti stulpelių tvarką lentelėje. Vilkdami mygtuką į eilučių stulpelį kairėje, jūs galite stulpelį paversti eilute."
#: datapilot_edittable.xhp
msgctxt ""
@@ -4150,7 +4150,7 @@ msgctxt ""
"par_id1648915\n"
"help.text"
msgid "In the Pivot Table dialog, you can drag a button to the <emph>Page Fields</emph> area to create a button and a listbox on top of the pivot table. The listbox can be used to filter the pivot table by the contents of the selected item. You can use drag-and-drop within the pivot table to use another page field as a filter."
-msgstr ""
+msgstr "Jei norite sukurti sąrašo langelius virš sukurtos suvestinės lentelės, vilkite mygtukus į <emph>Puslapio laukų</emph> lauką. Sąrašo langeliai gali būt naudojami filtruojant lentelės turinį. Taip pat vilkimo būdu sukurtoje suvestinėje lentelėje galite naudoti kitą puslapio lauką kaip filtrą."
#: datapilot_edittable.xhp
msgctxt ""
@@ -4158,7 +4158,7 @@ msgctxt ""
"par_id3147434\n"
"help.text"
msgid "To remove a button from the table, just drag it out of the pivot table. Release the mouse button when the mouse pointer positioned within the sheet has become a 'not allowed' icon. The button is deleted."
-msgstr ""
+msgstr "Norėdami pašalinti mygtuką iš lentelės vilkite jį iš lentelės kol pamatysite piktogramą 'neleidžiama' ir atleiskite. Mygtukas bus pašalintas."
#: datapilot_edittable.xhp
msgctxt ""
@@ -4166,7 +4166,7 @@ msgctxt ""
"par_id3156442\n"
"help.text"
msgid "To edit the pivot table, click a cell inside the pivot table and open the context menu. In the context menu you find the command <emph>Edit Layout</emph>, which displays the <emph>Pivot Table</emph> dialog for the current pivot table."
-msgstr ""
+msgstr "Jei norite koreguoti suvestinę lentelę, spustelėkite ant, bet kokio langelio lentelėje ir atidarę kontekstinį meniu spustelėkite komandą <emph>Taisyti maketą</emph>. Atsidarys naudojamos <emph>Suvestinės lentelės </emph> dialogo langas."
#: datapilot_edittable.xhp
msgctxt ""
@@ -4174,7 +4174,7 @@ msgctxt ""
"par_id2666096\n"
"help.text"
msgid "In the pivot table, you can use drag-and-drop or cut/paste commands to rearrange the order of data fields."
-msgstr ""
+msgstr "Suvestinėje lentelėje, naudodamiesi vilkimo principu arba iškirpimo/įklijavimo komanda galite pertvarkyti ir perstatyti duomenys lentelėje."
#: datapilot_edittable.xhp
msgctxt ""
@@ -4182,7 +4182,7 @@ msgctxt ""
"par_id266609688\n"
"help.text"
msgid "You can assign custom display names to fields, field members, subtotals (with some restrictions), and grand totals inside pivot tables. A custom display name is assigned to an item by overwriting the original name with another name."
-msgstr ""
+msgstr "Lentelės laukams, laukų elementams ir tarpinėms sumoms galite priskirti savo pavadinimus. Jūsų sukurti pavadinimai bus priskirti perrašant originalius pavadinimus."
#: datapilot_filtertable.xhp
msgctxt ""
@@ -4190,7 +4190,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Filtering Pivot Tables"
-msgstr ""
+msgstr "Suvestinės lentelės filtravimas"
#: datapilot_filtertable.xhp
msgctxt ""
@@ -4198,7 +4198,7 @@ msgctxt ""
"bm_id3150792\n"
"help.text"
msgid "<bookmark_value>pivot table function; filtering tables</bookmark_value><bookmark_value>filtering;pivot tables</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>suvestinės lentelės funkcijos; lentelių filtravimas</bookmark_value> <bookmark_value>filtravimas; suvestinės lentelės</bookmark_value>"
#: datapilot_filtertable.xhp
msgctxt ""
@@ -4206,7 +4206,7 @@ msgctxt ""
"hd_id3150792\n"
"help.text"
msgid "<variable id=\"datapilot_filtertable\"><link href=\"text/scalc/guide/datapilot_filtertable.xhp\" name=\"Filtering Pivot Tables\">Filtering Pivot Tables</link></variable>"
-msgstr ""
+msgstr "<variable id=\"datapilot_filtertable\"><link href=\"text/scalc/guide/datapilot_filtertable.xhp\" name=\"Filtering Pivot Tables\">Suvestinės lentelės filtravimas</link></variable>"
#: datapilot_filtertable.xhp
msgctxt ""
@@ -4214,7 +4214,7 @@ msgctxt ""
"par_id3153192\n"
"help.text"
msgid "You can use filters to remove unwanted data from a pivot table."
-msgstr ""
+msgstr "Naudodami filtrus galite pašalinti nereikalingus duomenys iš suvestinės lentelės."
#: datapilot_filtertable.xhp
msgctxt ""
@@ -4222,7 +4222,7 @@ msgctxt ""
"par_id3150441\n"
"help.text"
msgid "Click the <emph>Filter</emph> button in the sheet to call up the dialog for the filter conditions. Alternatively, call up the context menu of the pivot table and select the <emph>Filter</emph> command. The <link href=\"text/scalc/01/12090103.xhp\" name=\"Filter\"><emph>Filter</emph></link> dialog appears. Here you can filter the pivot table."
-msgstr ""
+msgstr "Spustelėkite <emph>Filtro</emph> mygtuką lakšte, kad iškviestumėte dialogo langą filtro sąlygoms nustatyti. Taip pat galite iškviesti suvestinės lentelės kontekstinį menių ir pasirinkti komandą <emph>Filtras</emph>. Atsidarys <link href=\"text/scalc/01/12090103.xhp\" name=\"Filter\"><emph>Filtro</emph></link> dialogo langas, kuriame galite nustatyti suvestinės lentelės filtro sąlygas."
#: datapilot_filtertable.xhp
msgctxt ""
@@ -4230,7 +4230,7 @@ msgctxt ""
"par_id315044199\n"
"help.text"
msgid "You can also click the arrow on a button in the pivot table to show a pop-up window. In this pop-up window, you can edit the visibility settings of the associated field."
-msgstr ""
+msgstr "Taip pat gali spustelėti rodyklės mygtuką suvestinėje lentelėje, taip atverdami filtro iškylantį langą. Šiame lange galite koreguoti lentelės matomumą atitinkamuose laukuose."
#: datapilot_filtertable.xhp
msgctxt ""
@@ -4238,7 +4238,7 @@ msgctxt ""
"par_id0720201001344485\n"
"help.text"
msgid "The pop-up window displays a list of field members associated with that field. A check box is placed to the left of each field member name. When a field has an alternative display name that differs from its original name, that name is displayed in the list."
-msgstr ""
+msgstr "Iškylančiajame lange galite matyti sąrašą lauko elementų susijusių su lauku. Prie kiekvieno lauko elemento yra žymimasis langelis, jei laukas turi pakeista pavadinimą, kuris skiriasi nuo originalaus pavadinimo, sąraše bus rodomas pakeistas pavadinimas."
#: datapilot_filtertable.xhp
msgctxt ""
@@ -4246,7 +4246,7 @@ msgctxt ""
"par_id0720201001344449\n"
"help.text"
msgid "Enable or disable a checkbox to show or hide the associated field member in the pivot table."
-msgstr ""
+msgstr "Jei norite paslėpti ar rodyti atitinkamus suvestinės lentelės lauko elementus pažymėkite ar atžymėkite žymimuosius langelius."
#: datapilot_filtertable.xhp
msgctxt ""
@@ -4254,7 +4254,7 @@ msgctxt ""
"par_id0720201001344493\n"
"help.text"
msgid "Enable or disable the <emph>All</emph> checkbox to show all or none of the field members."
-msgstr ""
+msgstr "Pažymėkite arba atžymėkite žymimąjį langelį <emph>Visi</emph> jei norite paslėpti arba rodyti visus lauko elementus."
#: datapilot_filtertable.xhp
msgctxt ""
@@ -4262,7 +4262,7 @@ msgctxt ""
"par_id0720201001344431\n"
"help.text"
msgid "Select a field member in the pop-up window and click the <item type=\"menuitem\">Show only the current item</item> button to show only the selected field member. All other field members are hidden in the pivot table."
-msgstr ""
+msgstr "Pažymėkite norima lauko elementą iškylančiajame lange ir spustelėkite mygtuką <item type=\"menuitem\">Rodyti tik dabartinį elementą</item>, tik pasirinktas elementas bus rodomas. Visi kiti lentelės elementai paslepiami suvestinėje lentelėje."
#: datapilot_filtertable.xhp
msgctxt ""
@@ -4270,7 +4270,7 @@ msgctxt ""
"par_id0720201001344484\n"
"help.text"
msgid "Select a field member in the pop-up window and click the <item type=\"menuitem\">Hide only the current item</item> button to hide only the selected field member. All other field members are shown in the pivot table."
-msgstr ""
+msgstr "Pažymėkite norima lauko elementą iškylančiajame lange ir spustelėkite mygtuką <item type=\"menuitem\">Slėpti tik dabartinį elementą</item>, tik pasirinktas elementas bus slepiamas. Visi kiti lentelės elementai rodomi suvestinėje lentelėje."
#: datapilot_filtertable.xhp
msgctxt ""
@@ -4278,7 +4278,7 @@ msgctxt ""
"par_id0720201001344578\n"
"help.text"
msgid "Commands enable you to sort the field members in ascending order, descending order, or using a custom sort list."
-msgstr ""
+msgstr "Komandos jums leidžia rikiuoti lentelės elementus didėjimo tvarka, mažėjimo tvarka arba pagal jūsų sukurtą rikiavimo sąrašą."
#: datapilot_filtertable.xhp
msgctxt ""
@@ -4286,7 +4286,7 @@ msgctxt ""
"par_id0720201001344584\n"
"help.text"
msgid "To edit the custom sort lists, open <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Calc - Sort Lists."
-msgstr ""
+msgstr "Jei norite redaguoti tinkinta rikiavimo sąrašą, atidarykite<switchinline select=\"sys\"><caseinline select=\"MAC\">„%PRODUCTNAME“ → Parinktys</caseinline><defaultinline>Priemonės → Parinktys</defaultinline></switchinline> → „%PRODUCTNAME“ Skaičiuoklė → Rikiavimas."
#: datapilot_filtertable.xhp
msgctxt ""
@@ -4294,7 +4294,7 @@ msgctxt ""
"par_id0720201001344811\n"
"help.text"
msgid "The arrow to open the pop-up window is normally black. When the field contains one or more hidden field members, the arrow is blue and displays a tiny square at its lower-right corner."
-msgstr ""
+msgstr "Paprastai rodyklė atidaranti iškylantį langą yra juoda, bet jei tame lentelės lauke yra bent vienas paslėptas elementas, rodyklė bus mėlyna ir turės mažą kvadratą apatiniame dešiniajame kampe."
#: datapilot_filtertable.xhp
msgctxt ""
@@ -4302,7 +4302,7 @@ msgctxt ""
"par_id0720201001344884\n"
"help.text"
msgid "You can also open the pop-up window by positioning the cell cursor at the button and pressing <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+D."
-msgstr ""
+msgstr "Iškylantį langą taip pat galite atidaryti, laikydami žymeklį lentelės apačioje ir spustelėdami klavišą <switchinline select=\"sys\"><caseinline select=\"MAC\">Komandą</caseinline><defaultinline>Vald.</defaultinline></switchinline> ir klavišą D tuo pačiu metu."
#: datapilot_grouping.xhp
msgctxt ""
@@ -4310,7 +4310,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Grouping Pivot Tables"
-msgstr ""
+msgstr "Suvestinių lentelių grupavimas"
#: datapilot_grouping.xhp
msgctxt ""
@@ -4318,7 +4318,7 @@ msgctxt ""
"bm_id4195684\n"
"help.text"
msgid "<bookmark_value>grouping; pivot tables</bookmark_value><bookmark_value>pivot table function;grouping table entries</bookmark_value><bookmark_value>ungrouping entries in pivot tables</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>grupavimas; suvestinė lentelė</bookmark_value><bookmark_value>suvestinės lentelės funkcijos; lentelės įrašų grupavimas</bookmark_value><bookmark_value>suvestinės lentelės įrašų atskyrimas.</bookmark_value>"
#: datapilot_grouping.xhp
msgctxt ""
@@ -4326,7 +4326,7 @@ msgctxt ""
"par_idN10643\n"
"help.text"
msgid "<variable id=\"datapilot_grouping\"><link href=\"text/scalc/guide/datapilot_grouping.xhp\">Grouping Pivot Tables</link></variable>"
-msgstr ""
+msgstr "<variable id=\"datapilot_grouping\"><link href=\"text/scalc/guide/datapilot_grouping.xhp\">Suvestinių lentelių grupavimas</link></variable>"
#: datapilot_grouping.xhp
msgctxt ""
@@ -4334,7 +4334,7 @@ msgctxt ""
"par_idN10661\n"
"help.text"
msgid "The resulting pivot table can contain many different entries. By grouping the entries, you can improve the visible result."
-msgstr ""
+msgstr "Užpildyta suvestinė lentelė gali būti pilna įvairiausių įrašų. Grupuojant įrašus galima geriau matyti gautus rezultatus."
#: datapilot_grouping.xhp
msgctxt ""
@@ -4342,7 +4342,7 @@ msgctxt ""
"par_idN10667\n"
"help.text"
msgid "Select a cell or range of cells in the pivot table."
-msgstr ""
+msgstr "Pažymėkite langelį ar langelių sritį suvestinėje lentelėje."
#: datapilot_grouping.xhp
msgctxt ""
@@ -4350,7 +4350,7 @@ msgctxt ""
"par_idN1066B\n"
"help.text"
msgid "Choose <emph>Data - Group and Outline - Group</emph>."
-msgstr ""
+msgstr "Pasirinkite <emph>Duomenys → Grupavimas ir Struktūra → Grupuoti</emph>."
#: datapilot_grouping.xhp
msgctxt ""
@@ -4358,7 +4358,7 @@ msgctxt ""
"par_idN1066E\n"
"help.text"
msgid "Depending on the format of the selected cells, either a new group field is added to the pivot table, or you see one of the two <link href=\"text/scalc/01/12090400.xhp\">Grouping</link> dialogs, either for numeric values, or for date values."
-msgstr ""
+msgstr "Priklausomai nuo pažymėtų langelių formato, lentelėje bus sukurtas naujas grupės laukelis arba atsidarys vienas iš dviejų <link href=\"text/scalc/01/12090400.xhp\">Grupavimo</link> dialogų langų, skaičių reikšmių grupavimui arba datų grupavimui."
#: datapilot_grouping.xhp
msgctxt ""
@@ -4366,7 +4366,7 @@ msgctxt ""
"par_id3328653\n"
"help.text"
msgid "The pivot table must be organized in a way that grouping can be applied."
-msgstr ""
+msgstr "Suvestinė lentelė turi būtu parengta grupavimui."
#: datapilot_grouping.xhp
msgctxt ""
@@ -4374,7 +4374,7 @@ msgctxt ""
"par_idN10682\n"
"help.text"
msgid "To remove a grouping, click inside the group, then choose <emph>Data - Group and Outline - Ungroup</emph>."
-msgstr ""
+msgstr "Jei norite panaikinti grupavimą, spustelėkite, bet kurią suvestinės lentelė vietą ir pasirinkite <emph>Duomenys → Grupavimas ir Struktūra → Išgrupuoti</emph>."
#: datapilot_tipps.xhp
msgctxt ""
@@ -4382,7 +4382,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Selecting Pivot Table Output Ranges"
-msgstr ""
+msgstr "Suvestinės lentelės išvedimo srities žymėjimas"
#: datapilot_tipps.xhp
msgctxt ""
@@ -4390,7 +4390,7 @@ msgctxt ""
"bm_id3148663\n"
"help.text"
msgid "<bookmark_value>pivot table function; preventing data overwriting</bookmark_value><bookmark_value>output ranges of pivot tables</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>suvestinės lentelės funkcijos; kelio užkirtimas duomenų perašymui</bookmark_value><bookmark_value>suvestinės lentelės išvedimo sritys</bookmark_value>"
#: datapilot_tipps.xhp
msgctxt ""
@@ -4398,7 +4398,7 @@ msgctxt ""
"hd_id3148663\n"
"help.text"
msgid "<variable id=\"datapilot_tipps\"><link href=\"text/scalc/guide/datapilot_tipps.xhp\" name=\"Selecting Pivot Table Output Ranges\">Selecting Pivot Table Output Ranges</link></variable>"
-msgstr ""
+msgstr "<variable id=\"datapilot_tipps\"><link href=\"text/scalc/guide/datapilot_tipps.xhp\" name=\"Selecting Pivot Table Output Ranges\">Suvestinės lentelės išvedimo srities žymėjimas</link></variable>"
#: datapilot_tipps.xhp
msgctxt ""
@@ -4406,7 +4406,7 @@ msgctxt ""
"par_id3154123\n"
"help.text"
msgid "Click the button <emph>More</emph> in the <emph>Pivot Table</emph> dialog. The dialog will be extended."
-msgstr ""
+msgstr "Spustelėkite mygtuką <emph>Šaltinis ir paskirtis</emph> <emph>Suvestinės lentelės</emph> dialogo lange. "
#: datapilot_tipps.xhp
msgctxt ""
@@ -4414,7 +4414,7 @@ msgctxt ""
"par_id3153771\n"
"help.text"
msgid "You can select a named range in which the pivot table is to be created, from the <emph>Results to</emph> box. If the results range does not have a name, enter the coordinates of the upper left cell of the range into the field to the right of the <emph>Results to</emph> box. You can also click on the appropriate cell to have the coordinates entered accordingly."
-msgstr ""
+msgstr "Dialogo lango dalyje <emph>Paskirtis</emph>, galite pasirinkti sritį kurio norite sukurti suvestinę lentelę. Jei norima sritis neturi pavadinimo, į <emph>Pažymėtos srities</emph> laukelį įverskite srities viršutinio kairio langelio koordinates arba spustelėkite ant norimo langelio ir koordinatės bus įvestos automatiškai."
#: datapilot_tipps.xhp
msgctxt ""
@@ -4422,7 +4422,7 @@ msgctxt ""
"par_id3146974\n"
"help.text"
msgid "If you mark the <emph>Ignore empty rows</emph> check box, they will not be taken into account when the pivot table is created."
-msgstr ""
+msgstr "Jei pažymėsite žymimąjį langelį <emph>Nepaisyti tuščių langelių</emph>, sukūrus suvestinę lentelę tušti langeliai bus pašalinti."
#: datapilot_tipps.xhp
msgctxt ""
@@ -4430,7 +4430,7 @@ msgctxt ""
"par_id3145273\n"
"help.text"
msgid "If the <emph>Identify categories</emph> check box is marked, the categories will be identified by their headings and assigned accordingly when the pivot table is created."
-msgstr ""
+msgstr "Jei pažymėsite žymimąjį langelį <emph>Aptikti kategorijas</emph>, kategorijos bus atpažintos pagal antraštes ir sukūrus suvestinę lentelę atitinkamai suskirstytos."
#: datapilot_updatetable.xhp
msgctxt ""
@@ -4438,7 +4438,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Updating Pivot Tables"
-msgstr ""
+msgstr "Suvestinės lentelės atnaujinimas"
#: datapilot_updatetable.xhp
msgctxt ""
@@ -4446,7 +4446,7 @@ msgctxt ""
"bm_id3150792\n"
"help.text"
msgid "<bookmark_value>pivot table import</bookmark_value><bookmark_value>pivot table function; refreshing tables</bookmark_value><bookmark_value>recalculating;pivot tables</bookmark_value><bookmark_value>updating;pivot tables</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>suvestinės lentelės importavimas</bookmark_value><bookmark_value>suvestinės lentelės funkcijos; lentelių atnaujinimas</bookmark_value><bookmark_value>perskaičiavimas; suvestinės lentelės</bookmark_value><bookmark_value>atnaujinimas;suvestinės lentelės</bookmark_value>"
#: datapilot_updatetable.xhp
msgctxt ""
@@ -4454,7 +4454,7 @@ msgctxt ""
"hd_id3150792\n"
"help.text"
msgid "<variable id=\"datapilot_updatetable\"><link href=\"text/scalc/guide/datapilot_updatetable.xhp\" name=\"Updating Pivot Tables\">Updating Pivot Tables</link></variable>"
-msgstr ""
+msgstr "<variable id=\"datapilot_updatetable\"><link href=\"text/scalc/guide/datapilot_updatetable.xhp\" name=\"Updating Pivot Tables\">Suvestinės lentelės atnaujinimas</link></variable>"
#: datapilot_updatetable.xhp
msgctxt ""
@@ -4462,7 +4462,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 ""
+msgstr "Jei šaltinio lakštas buvo koreguotas, „$[officename]“ perskaičiuos suvestinę lentelę. Jei norite perskaičiuoti lentelę, pasirinkite <emph>Duomenys → Suvestinė lentelė → Atnaujinti</emph>. Sekite tuos pačius žingsnius jei suvestinė lentelė buvo įkelta iš Excel į „ $[officename]“ Skaičiuoklę"
#: dbase_files.xhp
msgctxt ""
@@ -4470,7 +4470,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Importing and Exporting dBASE Files"
-msgstr ""
+msgstr "dBASE formato failų importavimas ir eksportavimas"
#: dbase_files.xhp
msgctxt ""
@@ -4478,7 +4478,7 @@ msgctxt ""
"bm_id1226844\n"
"help.text"
msgid "<bookmark_value>exporting;spreadsheets to dBASE</bookmark_value> <bookmark_value>importing;dBASE files</bookmark_value> <bookmark_value>dBASE import/export</bookmark_value> <bookmark_value>spreadsheets; importing from/exporting to dBASE files</bookmark_value> <bookmark_value>tables in databases;importing dBASE files</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>eksportavimas; skaičiuoklės dokumentą į dBASE</bookmark_value> <bookmark_value>importavimas;dBASE failai</bookmark_value> <bookmark_value>dBASE importavimas/eksportavimas</bookmark_value> <bookmark_value>skaičiuoklės dokumentai; importavimas iš/eksportavimas į dBASE failus</bookmark_value> <bookmark_value>lentelės duomenų bazėse;importavimas sBASE failų</bookmark_value>"
#: dbase_files.xhp
msgctxt ""
@@ -4486,7 +4486,7 @@ msgctxt ""
"par_idN10738\n"
"help.text"
msgid "<variable id=\"dbase_files\"><link href=\"text/scalc/guide/dbase_files.xhp\">Importing and Exporting dBASE Files</link></variable>"
-msgstr ""
+msgstr "<variable id=\"dbase_files\"><link href=\"text/scalc/guide/dbase_files.xhp\">dBASE formato failų importavimas ir eksportavimas</link></variable>"
#: dbase_files.xhp
msgctxt ""
@@ -4494,7 +4494,7 @@ msgctxt ""
"par_idN10756\n"
"help.text"
msgid "You can open and save data in the dBASE file format (*.dbf file extension) in $[officename] Base or a spreadsheet. In %PRODUCTNAME Base, a dBASE database is a folder that contains files with the .dbf file extension. Each file corresponds to a table in the database. Formulas and formatting are lost when you open and save a dBASE file from %PRODUCTNAME."
-msgstr ""
+msgstr "Jūs galite atverti ir išsaugoti duomenys dBASE formatu ( prievardis *.dbf) „$[officename]“ Duomenų bazėje arba skaičiuoklės dokumente. „%PRODUCTNAME“ Duomenų bazėje, yra dBASE duomenų bazės aplankas kuriame talpinami visi failai su .dbf prievardžiais. Kiekvienas failas priklauso lentelei duomenų bazėje. Visos formulės ir formatavimai prarandami atveriant arba saugant dBASE failą iš „%PRODUCTNAME“."
#: dbase_files.xhp
msgctxt ""
@@ -4502,7 +4502,7 @@ msgctxt ""
"par_idN10759\n"
"help.text"
msgid "To Import a dBASE File Into a Spreadsheet"
-msgstr ""
+msgstr "dBase failo importavimas į skaičiuoklės dokumentą"
#: dbase_files.xhp
msgctxt ""
@@ -4510,7 +4510,7 @@ msgctxt ""
"par_idN10760\n"
"help.text"
msgid "Choose <emph>File - Open</emph>."
-msgstr ""
+msgstr "Pasirinkite <emph>Failas → Atverti</emph>."
#: dbase_files.xhp
msgctxt ""
@@ -4518,7 +4518,7 @@ msgctxt ""
"par_idN1071F\n"
"help.text"
msgid "Locate the *.dbf file that you want to import."
-msgstr ""
+msgstr "Suraskite *.dbf failą kurį norite importuoti."
#: dbase_files.xhp
msgctxt ""
@@ -4526,7 +4526,7 @@ msgctxt ""
"par_idN10768\n"
"help.text"
msgid "Click <emph>Open</emph>."
-msgstr ""
+msgstr "Spustelėkite mygtuką <emph>Atverti</emph>."
#: dbase_files.xhp
msgctxt ""
@@ -4534,7 +4534,7 @@ msgctxt ""
"par_idN10730\n"
"help.text"
msgid "The <emph>Import dBASE files</emph> dialog opens."
-msgstr ""
+msgstr "<emph>Importuoti dBASE failą</emph>dialogo langas atsivėrė."
#: dbase_files.xhp
msgctxt ""
@@ -4542,7 +4542,7 @@ msgctxt ""
"par_idN10774\n"
"help.text"
msgid "Click <emph>OK</emph>."
-msgstr ""
+msgstr "Spustelėkite mygtuką <emph>Gerai</emph>."
#: dbase_files.xhp
msgctxt ""
@@ -4550,7 +4550,7 @@ msgctxt ""
"par_idN10777\n"
"help.text"
msgid "The dBASE file opens as a new Calc spreadsheet."
-msgstr ""
+msgstr "dBASE failas atsiveria kaip naujas Skaičiuoklės dokumentas."
#: dbase_files.xhp
msgctxt ""
@@ -4558,7 +4558,7 @@ msgctxt ""
"par_idN1074E\n"
"help.text"
msgid "If you want to save the spreadsheet as a dBASE file, do not alter or delete the first row in the imported file. This row contains information that is required by a dBASE database."
-msgstr ""
+msgstr "Jei norite išsaugoti skaičiuoklės dokumentą kaip dBASE failą, nekeiskite ir neištrinkite pirmos importuoto failo eilutės. Šioje eilutėje yra informacija reikalinga dBASE duomenų bazei."
#: dbase_files.xhp
msgctxt ""
@@ -4566,7 +4566,7 @@ msgctxt ""
"par_idN1077A\n"
"help.text"
msgid "To Import a dBASE File Into a Database Table"
-msgstr ""
+msgstr "dBase failo importavimas į Duomenų bazės lentelę"
#: dbase_files.xhp
msgctxt ""
@@ -4574,7 +4574,7 @@ msgctxt ""
"par_idN1076C\n"
"help.text"
msgid "A %PRODUCTNAME Base database table is actually a link to an existing database."
-msgstr ""
+msgstr "„%PRODUCTNAME“ Duomenų bazės lentelė yra saitas į jau egzistuojančia duomenų bazę."
#: dbase_files.xhp
msgctxt ""
@@ -4582,7 +4582,7 @@ msgctxt ""
"par_idN10796\n"
"help.text"
msgid "Choose <item type=\"menuitem\">File - New - Database</item>."
-msgstr ""
+msgstr "Pasirinkite <item type=\"menuitem\">Failas → Naujas → Duomenų bazė</item>."
#: dbase_files.xhp
msgctxt ""
@@ -4590,7 +4590,7 @@ msgctxt ""
"par_idN10786\n"
"help.text"
msgid "In the <emph>File name</emph> box of the <emph>Save As</emph> dialog, enter a name for the database."
-msgstr ""
+msgstr "<emph>Failo pavadinimo</emph> laukelyje <emph>Išsaugoti kaip</emph> dialogo lange, įveskite duomenų bazės pavadinimą."
#: dbase_files.xhp
msgctxt ""
@@ -4598,7 +4598,7 @@ msgctxt ""
"par_idN10792\n"
"help.text"
msgid "Click <emph>Save</emph>."
-msgstr ""
+msgstr "Spustelėkite mygtuką <emph>Išsaugoti</emph>."
#: dbase_files.xhp
msgctxt ""
@@ -4606,7 +4606,7 @@ msgctxt ""
"par_idN1079A\n"
"help.text"
msgid "In the <emph>Database type </emph>box of the <emph>Database Properties</emph> dialog, select \"dBASE\"."
-msgstr ""
+msgstr "<emph>Duomenų bazės tipo</emph> laukelyje <emph>Duomenų bazės savybių</emph> dialogo lange pasirinkite „dBASE“."
#: dbase_files.xhp
msgctxt ""
@@ -4614,7 +4614,7 @@ msgctxt ""
"par_idN107A6\n"
"help.text"
msgid "Click <emph>Next</emph>."
-msgstr ""
+msgstr "Spustelėkite mygtuką<emph>Toliau</emph>."
#: dbase_files.xhp
msgctxt ""
@@ -4622,7 +4622,7 @@ msgctxt ""
"par_idN107AE\n"
"help.text"
msgid "Click <emph>Browse</emph>."
-msgstr ""
+msgstr "Spustelėkite mygtuką <emph>Baigti</emph>."
#: dbase_files.xhp
msgctxt ""
@@ -4630,7 +4630,7 @@ msgctxt ""
"par_idN107B6\n"
"help.text"
msgid "Locate the directory that contains the dBASE file, and click <emph>OK</emph>."
-msgstr ""
+msgstr "Nustatykite katalogo, kuris talpina dBASE failą, vietą ir spustelėkite mygtuką <emph>Gerai</emph>."
#: dbase_files.xhp
msgctxt ""
@@ -4638,7 +4638,7 @@ msgctxt ""
"par_idN107BE\n"
"help.text"
msgid "Click <emph>Create</emph>."
-msgstr ""
+msgstr "Spustelėkite mygtuką<emph>Išsaugoti</emph>."
#: dbase_files.xhp
msgctxt ""
@@ -4646,7 +4646,7 @@ msgctxt ""
"par_idN107F1\n"
"help.text"
msgid "To Save a Spreadsheet as a dBASE File"
-msgstr ""
+msgstr "Skaičiuoklės dokumento išsaugojimas dBASE formatu."
#: dbase_files.xhp
msgctxt ""
@@ -4654,7 +4654,7 @@ msgctxt ""
"par_idN107F8\n"
"help.text"
msgid "Choose <emph>File - Save As</emph>."
-msgstr ""
+msgstr "Pasirinkite <emph>Failas → Įrašyti kaip</emph>."
#: dbase_files.xhp
msgctxt ""
@@ -4662,7 +4662,7 @@ msgctxt ""
"par_idN10800\n"
"help.text"
msgid "In the <emph>File format</emph> box, select \"dBASE file\"."
-msgstr ""
+msgstr "<emph>Failo formato</emph> laukelyje, pasirinkite „dBASE failas“"
#: dbase_files.xhp
msgctxt ""
@@ -4670,7 +4670,7 @@ msgctxt ""
"par_idN107F9\n"
"help.text"
msgid "In the <emph>File name</emph> box, type a name for the dBASE file."
-msgstr ""
+msgstr "<emph>Failo pavadinimo</emph> laukelyje įveskite dBASE failo pavadinimą."
#: dbase_files.xhp
msgctxt ""
@@ -4678,7 +4678,7 @@ msgctxt ""
"par_idN10801\n"
"help.text"
msgid "Click <emph>Save</emph>."
-msgstr ""
+msgstr "Spustelėkite mygtuką <emph>Išsaugoti</emph>."
#: dbase_files.xhp
msgctxt ""
@@ -4686,7 +4686,7 @@ msgctxt ""
"par_idN10808\n"
"help.text"
msgid "Only the data on the current sheet is exported."
-msgstr ""
+msgstr "Tik esamo lakšto duomenys bus išsaugoti."
#: design.xhp
msgctxt ""
@@ -4694,7 +4694,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Selecting Themes for Sheets"
-msgstr ""
+msgstr "Lakšto temos pasirinkimas"
#: design.xhp
msgctxt ""
@@ -4702,7 +4702,7 @@ msgctxt ""
"bm_id3150791\n"
"help.text"
msgid "<bookmark_value>theme selection for sheets</bookmark_value><bookmark_value>layout;spreadsheets</bookmark_value><bookmark_value>cell styles; selecting</bookmark_value><bookmark_value>selecting;formatting themes</bookmark_value><bookmark_value>sheets;formatting themes</bookmark_value><bookmark_value>formats;themes for sheets</bookmark_value><bookmark_value>formatting;themes for sheets</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>Lakšto temos pasirinkimas</bookmark_value><bookmark_value>iišdėstimas;skaičiuoklės dokumentas</bookmark_value><bookmark_value>langelių stiliai;pasirinkimas</bookmark_value><bookmark_value>pasirinkimas; temų formatavimas</bookmark_value><bookmark_value>lakštai; temų formatavimas </bookmark_value><bookmark_value>formatai;temos lakštams</bookmark_value><bookmark_value>formatavimas;temos lakštams</bookmark_value>"
#: design.xhp
msgctxt ""
@@ -4710,7 +4710,7 @@ msgctxt ""
"hd_id3150791\n"
"help.text"
msgid "<variable id=\"design\"><link href=\"text/scalc/guide/design.xhp\" name=\"Selecting Themes for Sheets\">Selecting Themes for Sheets</link> </variable>"
-msgstr ""
+msgstr "<variable id=\"design\"><link href=\"text/scalc/guide/design.xhp\" name=\"Selecting Themes for Sheets\">Lakšto temos pasirinkimas</link></variable>"
#: design.xhp
msgctxt ""
@@ -4718,7 +4718,7 @@ msgctxt ""
"par_id3145786\n"
"help.text"
msgid "$[officename] Calc comes with a predefined set of formatting themes that you can apply to your spreadsheets."
-msgstr ""
+msgstr "„$[officename]“ Skaičiuoklė ateina su išlanksto paruoštomis formatavimo temomis, kurias galite pritaikyti savo skaičiuoklės dokumentui."
#: design.xhp
msgctxt ""
@@ -4726,7 +4726,7 @@ msgctxt ""
"par_id3154490\n"
"help.text"
msgid "It is not possible to add themes to Calc, and they cannot be modified. However, you can modify their styles after you apply them to a spreadsheet."
-msgstr ""
+msgstr "Naujų temų į Skaičiuoklę pridėti ir koreguoti esamų temų neįmanoma, tačiau galima keisti esamų temų stilius."
#: design.xhp
msgctxt ""
@@ -4734,7 +4734,7 @@ msgctxt ""
"par_id3154757\n"
"help.text"
msgid "Before you format a sheet with a theme, you have to apply at least one custom cell style to the cells on the sheet. You can then change the cell formatting by selecting and applying a theme in the <emph>Theme Selection</emph> dialog."
-msgstr ""
+msgstr "Prieš formatuojant lakšto temą, jūs privalote pritaikyti, bent vieną savo kūrybos stilių, bet kokiam lakšto langeliui. Tada galite keisti langelio formatavimą pritaikydami jam skirtingas temas <emph>Temų pasirinkimo</emph> dialogo lange."
#: design.xhp
msgctxt ""
@@ -4742,7 +4742,7 @@ msgctxt ""
"par_id3156382\n"
"help.text"
msgid "To apply a custom cell style to a cell, you can open the Styles window and, in its lower list box, set the Custom Styles view. A list of the existing custom defined cell styles will be displayed. Double click a name from the Styles window to apply this style to the selected cells."
-msgstr ""
+msgstr "Jei norite pritaikyti pasirinktą stilių langeliui, jūs galite atidaryti Stilių langą ir jo apatiniame sąrašo laukelyje pasirinkti Pritaikyti stiliai. Bus parodomas sąrašas egzistuojančių langelių stilių. Du kartus spustelėkite norima stilių, kad jį pritaikytumėte pažymėtiems langeliams."
#: design.xhp
msgctxt ""
@@ -4750,7 +4750,7 @@ msgctxt ""
"par_id3153963\n"
"help.text"
msgid "To apply a theme to a spreadsheet:"
-msgstr ""
+msgstr "Temos pritaikymas lakštui:"
#: design.xhp
msgctxt ""
@@ -4758,7 +4758,7 @@ msgctxt ""
"par_id3146920\n"
"help.text"
msgid "Click the <emph>Choose Themes</emph> icon in the <emph>Tools</emph> bar."
-msgstr ""
+msgstr "Spustelėkite <emph>Stiliaus</emph> piktogramą <emph>Priemonių</emph> juostoje."
#: design.xhp
msgctxt ""
@@ -4766,7 +4766,7 @@ msgctxt ""
"par_id3148488\n"
"help.text"
msgid "The <emph>Theme Selection</emph> dialog appears. This dialog lists the available themes for the whole spreadsheet and the Styles window lists the custom styles for specific cells."
-msgstr ""
+msgstr "Atsidarys <emph>Stilių pasirinkimo</emph> dialogo langas. Šis dialogo langas rodo visų prieinamų stilių sąrašą."
#: design.xhp
msgctxt ""
@@ -4774,7 +4774,7 @@ msgctxt ""
"par_id3155114\n"
"help.text"
msgid "In the <emph>Theme Selection </emph>dialog, select the theme that you want to apply to the spreadsheet."
-msgstr ""
+msgstr "<emph>Stilių pasirinkimo</emph> dialogo lange pasirinkite temą kurią norite pritaikyti skaičiuoklės dokumentui."
#: design.xhp
msgctxt ""
@@ -4782,7 +4782,7 @@ msgctxt ""
"par_id3150090\n"
"help.text"
msgid "Click OK"
-msgstr ""
+msgstr "Spustelėkite mygtuką <emph>Gerai</emph>"
#: design.xhp
msgctxt ""
@@ -4790,7 +4790,7 @@ msgctxt ""
"par_id3150201\n"
"help.text"
msgid "As soon as you select another theme in the <emph>Theme Selection</emph> dialog, some of the properties of the custom style will be applied to the current spreadsheet. The modifications will be immediately visible in your spreadsheet."
-msgstr ""
+msgstr "Pakeitus temą <emph>Temų pasirinkimo</emph> dialogo lange, kai kurios pritaikytų stilių savybės bus pritaikytos skaičiuoklės dokumentui. Pakeitimai bus iškarot matome dokumente."
#: design.xhp
msgctxt ""
@@ -4798,7 +4798,7 @@ msgctxt ""
"par_id3146979\n"
"help.text"
msgid "<link href=\"text/scalc/02/06080000.xhp\" name=\"Theme selection\">Theme selection</link>"
-msgstr ""
+msgstr "<link href=\"text/scalc/02/06080000.xhp\" name=\"Theme selection\">Temų Pasirinkimas</link>"
#: edit_multitables.xhp
msgctxt ""
@@ -4806,7 +4806,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Copying to Multiple Sheets"
-msgstr ""
+msgstr "Duomenų kopijavimas į kelis lakštus"
#: edit_multitables.xhp
msgctxt ""
@@ -4814,7 +4814,7 @@ msgctxt ""
"bm_id3149456\n"
"help.text"
msgid "<bookmark_value>copying;values, to multiple sheets</bookmark_value><bookmark_value>pasting;values in multiple sheets</bookmark_value><bookmark_value>data;inserting in multiple sheets</bookmark_value> <bookmark_value>sheets; simultaneous multiple filling</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>kopijavimas; reikšmės, keli lakštai</bookmark_value><bookmark_value>įterpimas;reikšmės keliuose lakštuose</bookmark_value><bookmark_value>duomenys;įterpimas į kelis lakštus</bookmark_value><bookmark_value>lakštai; kelių lakštų pildymas vienu metu</bookmark_value>"
#: edit_multitables.xhp
msgctxt ""
@@ -4822,7 +4822,7 @@ msgctxt ""
"hd_id3149456\n"
"help.text"
msgid "<variable id=\"edit_multitables\"><link href=\"text/scalc/guide/edit_multitables.xhp\" name=\"Copying to Multiple Sheets\">Copying to Multiple Sheets</link> </variable>"
-msgstr ""
+msgstr "<variable id=\"edit_multitables\"><link href=\"text/scalc/guide/edit_multitables.xhp\" name=\"Copying to Multiple Sheets\">Duomenų kopijavimas į kelis lakštus</link></variable>"
#: edit_multitables.xhp
msgctxt ""
@@ -4830,7 +4830,7 @@ msgctxt ""
"par_id3150868\n"
"help.text"
msgid "In $[officename] Calc, you can insert values, text or formulas that are simultaneously copied to other selected sheets of your document."
-msgstr ""
+msgstr "„$[officename]“ Skaičiuoklėje, galite vesti reikšmes ar formules ir jas iškarto kopijuoti į kitus pasirinktus lakštus."
#: edit_multitables.xhp
msgctxt ""
@@ -4838,7 +4838,7 @@ msgctxt ""
"par_id3153768\n"
"help.text"
msgid "Select all desired sheets by holding down the <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> key and clicking the corresponding register tabs that are still gray at the bottom margin of the workspace. All selected register tabs are now white."
-msgstr ""
+msgstr "Jei norite pažymėti keletą lakštų laikykite klavišą <switchinline select=\"sys\"><caseinline select=\"MAC\">Komanda</caseinline><defaultinline>Vald.</defaultinline></switchinline> ir spustelėkite ant pilkos spalvos atitinkamų ąselių programos apačioje. Visos pasirinktos ąselės yra baltos spalvos."
#: edit_multitables.xhp
msgctxt ""
@@ -4846,7 +4846,7 @@ msgctxt ""
"par_idN10614\n"
"help.text"
msgid "You can use Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Page Up or Page Down to select multiple sheets using the keyboard."
-msgstr ""
+msgstr "Laikydami nuspaudę klavišus Lyg2 ir<switchinline select=\"sys\"><caseinline select=\"MAC\">Komandą</caseinline><defaultinline>Vald.</defaultinline></switchinline> naudokite klavišus Psl. aukš. ir Psl. žem. lakštų žymėjimui."
#: edit_multitables.xhp
msgctxt ""
@@ -4854,7 +4854,7 @@ msgctxt ""
"par_id3147435\n"
"help.text"
msgid "Now when you insert values, text or formulas into the active sheet, they will also appear in the identical positions in the other selected sheets. For example, data entered in cell A1 of the active sheet is automatically entered into cell A1 of any other seleted sheet."
-msgstr ""
+msgstr "Dabar jums įvedus reikšmes, tekstą ar formules į aktyvų lakštą, tos pačios reikšmės atsiras ir kituose lakštuose identiškose pozicijose. Pavyzdžiui duomenys įvesti į aktyvaus lakšto A1 langelį bus iškarto nukopijuoti į visų kitų pasirinktų lakštų A1 langelį."
#: filters.xhp
msgctxt ""
@@ -4862,7 +4862,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Applying Filters"
-msgstr ""
+msgstr "Filtrų taikymas"
#: filters.xhp
msgctxt ""
@@ -4870,7 +4870,7 @@ msgctxt ""
"bm_id3153896\n"
"help.text"
msgid "<bookmark_value>filters; applying/removing</bookmark_value> <bookmark_value>rows;removing/redisplaying with filters</bookmark_value> <bookmark_value>removing;filters</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>filtrai; pritaikymas/šalinimas</bookmark_value> <bookmark_value>eilutės; filtrų šalinimas/rodymas</bookmark_value> <bookmark_value>šalinimas/filtrai</bookmark_value>"
#: filters.xhp
msgctxt ""
@@ -4878,7 +4878,7 @@ msgctxt ""
"hd_id3153896\n"
"help.text"
msgid "<variable id=\"filters\"><link href=\"text/scalc/guide/filters.xhp\" name=\"Applying Filters\">Applying Filters</link></variable>"
-msgstr ""
+msgstr "<variable id=\"filters\"><link href=\"text/scalc/guide/filters.xhp\" name=\"Applying Filters\">Filtrų taikymas</link></variable>"
#: filters.xhp
msgctxt ""
@@ -4886,7 +4886,7 @@ msgctxt ""
"par_id3150869\n"
"help.text"
msgid "Filters and advanced filters allow you to work on certain filtered rows (records) of a data range. In the spreadsheets in $[officename] there are various possibilities for applying filters."
-msgstr ""
+msgstr "Filtrai ir papildomi filtrai leidžia jums dirbti su tam tikrais išfiltruotais srities įrašais. Skaičiuoklės dokumente „ $[officename]“ yra daug skirtingų būdų filtrų pritaikymui."
#: filters.xhp
msgctxt ""
@@ -4894,7 +4894,7 @@ msgctxt ""
"par_id3155131\n"
"help.text"
msgid "One use for the <emph>AutoFilter</emph> function is to quickly restrict the display to records with identical entries in a data field."
-msgstr ""
+msgstr "Vienas iš būdų kaip naudoti <emph>Automatinį filtrą</emph> yra greitai apriboti vienodų įrašu rodymą langelių srityje."
#: filters.xhp
msgctxt ""
@@ -4902,7 +4902,7 @@ msgctxt ""
"par_id3146119\n"
"help.text"
msgid "In the <emph>Standard Filter</emph> dialog, you can also define ranges which contain the values in particular data fields. You can use the standard filter to connect the conditions with either a logical AND or a logical OR operator."
-msgstr ""
+msgstr "<emph>Įprasto filtro</emph> dialogo lange, galite apibrėžti sritis kurios talpina tam tikrus duomenų laukus. Taip pat galite naudoti įprastinį filtrą sąlygų sujungimui su IR ar ARBA operatoriais."
#: filters.xhp
msgctxt ""
@@ -4910,7 +4910,7 @@ msgctxt ""
"par_id3150010\n"
"help.text"
msgid "The <emph>Advanced filter</emph> allows up to a total of eight filter conditions. With advanced filters you enter the conditions directly into the sheet."
-msgstr ""
+msgstr "<emph>Papildomas filtras</emph> leidžia pritaikyti iki aštuonių filtro sąlygų. Papildomų filtrų sąlygas įvedate tiesiai į lakštą."
#: filters.xhp
msgctxt ""
@@ -4918,7 +4918,7 @@ msgctxt ""
"par_id9384746\n"
"help.text"
msgid "To remove a filter, so that you see all cells again, click inside the area where the filter was applied, then choose <item type=\"menuitem\">Data - Filter - Reset Filter</item>."
-msgstr ""
+msgstr "Jei norite pašalinti filtrą, spustelėkite. bet kokį langelį filtro srityje ir pasirinkite <item type=\"menuitem\">Duomenys → Daugiau filtrų → Atstatyti filtrą</item>."
#: filters.xhp
msgctxt ""
@@ -4926,7 +4926,7 @@ msgctxt ""
"par_idN10663\n"
"help.text"
msgid "When you select multiple rows from an area where a filter was applied, then this selection can include rows that are visible and rows that are hidden by the filter. If you then apply formatting, or delete the selected rows, this action then applies only to the visible rows. The hidden rows are not affected."
-msgstr ""
+msgstr "Pažymėjus langelių sritį, vietoje kur yra pritaikytas filtras, bus pažymėti ir filtro paslėpti langeliai. Tačiau jei pasirinktai sričiai pritaikysite formatavimą ar ištrinsite ją, paslėpti langeliai liks nepakeisti."
#: filters.xhp
msgctxt ""
@@ -4934,7 +4934,7 @@ msgctxt ""
"par_id218817\n"
"help.text"
msgid "This is the opposite to rows that you have hidden manually by the <emph>Format - Rows - Hide Rows</emph> command. Manually hidden rows are deleted when you delete a selection that contains them."
-msgstr ""
+msgstr "Tai yra priešinga eilutėms kurios buvo paslėptos naudojant <emph>Formatas → Eilutės → Slėpti</emph> komandą. Rankiniu būdu paslėptos eilutės bus ištrinto jei sritis kur jos yra bus ištrintos."
#: finding.xhp
msgctxt ""
@@ -4942,7 +4942,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Finding and Replacing in Calc"
-msgstr ""
+msgstr "Ieškojimas ir keitimas Skaičiuoklėje"
#: finding.xhp
msgctxt ""
@@ -4950,7 +4950,7 @@ msgctxt ""
"bm_id3769341\n"
"help.text"
msgid "<bookmark_value>searching, see also finding</bookmark_value><bookmark_value>finding;formulas/values/text/objects</bookmark_value><bookmark_value>replacing; cell contents</bookmark_value><bookmark_value>formatting;multiple cell texts</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>ieškojimas; taip pat radimas</bookmark_value><bookmark_value>ieškojimas;formulės/reikšmės/tekstai/objektai</bookmark_value><bookmark_value>keitimas;langelių turinys</bookmark_value><bookmark_value>formatavimas;kelių langelių tekstas</bookmark_value>"
#: finding.xhp
msgctxt ""
@@ -4958,7 +4958,7 @@ msgctxt ""
"hd_id3149204\n"
"help.text"
msgid "<variable id=\"finding\"><link href=\"text/scalc/guide/finding.xhp\">Finding and Replacing in Calc</link></variable>"
-msgstr ""
+msgstr "<variable id=\"finding\"><link href=\"text/scalc/guide/finding.xhp\">Ieškojimas ir keitimas Skaičiuoklėje</link></variable>"
#: finding.xhp
msgctxt ""
@@ -4966,7 +4966,7 @@ msgctxt ""
"par_id9363689\n"
"help.text"
msgid "In spreadsheet documents you can find words, formulas, and styles. You can navigate from one result to the next, or you can highlight all matching cells at once, then apply another format or replace the cell content by other content."
-msgstr ""
+msgstr "Skaičiuoklės dokumente galite ieškoti formules, žodžius, stilius. Galite naršyti nuo vieno rezultato į kitą arba galite pažymėti visus langelius su vienodu turiniu ir jiems pritaikyti norimą formatą arba pakeisti jų turinį kitu."
#: finding.xhp
msgctxt ""
@@ -4974,7 +4974,7 @@ msgctxt ""
"hd_id3610644\n"
"help.text"
msgid "The Find & Replace dialog"
-msgstr ""
+msgstr "Ieškoti ir keisti dialogo langas"
#: finding.xhp
msgctxt ""
@@ -4982,7 +4982,7 @@ msgctxt ""
"par_id2224494\n"
"help.text"
msgid "Cells can contain text or numbers that were entered directly as in a text document. But cells can also contain text or numbers as the result of a calculation. For example, if a cell contains the formula =1+2 it displays the result 3. You must decide whether to search for the 1 respective 2, or to search the 3."
-msgstr ""
+msgstr "Langeliai gali talpinti skaičius kurie buvo įvesti rankinių būdu. Tačiau, langeliai taip pat gali talpinti tekstą ir skaičius kurie yra skaičiavimo rezultatai. Pavyzdžiui, jei langelis talpina formulę =1+2, langelyje rodomas tik rezultatas 3. Jūs turite nuspręsti ieškoti 1, 2 ar 3."
#: finding.xhp
msgctxt ""
@@ -4990,7 +4990,7 @@ msgctxt ""
"hd_id2423780\n"
"help.text"
msgid "To find formulas or values"
-msgstr ""
+msgstr "Formulių arba reikšmių radimas"
#: finding.xhp
msgctxt ""
@@ -4998,7 +4998,7 @@ msgctxt ""
"par_id2569658\n"
"help.text"
msgid "You can specify in the Find & Replace dialog either to find the parts of a formula or the results of a calculation."
-msgstr ""
+msgstr "Ieškoti ir keisti dialogo lange galite nurodyti ką ieškoti ar formules ar skaičiavimų rezultatų."
#: finding.xhp
msgctxt ""
@@ -5006,7 +5006,7 @@ msgctxt ""
"par_id6394238\n"
"help.text"
msgid "Choose <emph>Edit - Find & Replace</emph> to open the Find & Replace dialog."
-msgstr ""
+msgstr "Jei norite atidaryti Ieškoti ir keisti dialogo langą pasirinkite <emph>Taisa → Ieškoti ir keisti</emph>."
#: finding.xhp
msgctxt ""
@@ -5014,7 +5014,7 @@ msgctxt ""
"par_id7214270\n"
"help.text"
msgid "Click <emph>More Options</emph> to expand the dialog."
-msgstr ""
+msgstr "Spustelėkite <emph>Kitos parinktys</emph> jei norite išplėsti dialogo langą."
#: finding.xhp
msgctxt ""
@@ -5022,7 +5022,7 @@ msgctxt ""
"par_id2186346\n"
"help.text"
msgid "Select \"Formulas\" or \"Values\" in the <emph>Search in</emph> list box."
-msgstr ""
+msgstr "<emph>Kur ieškoti</emph> laukelyje pasirinkite „Formulėse“ arba „Reikšmėse“."
#: finding.xhp
msgctxt ""
@@ -5030,7 +5030,7 @@ msgctxt ""
"par_id1331217\n"
"help.text"
msgid "With \"Formulas\" you will find all parts of the formulas."
-msgstr ""
+msgstr "Naudodami „Formulių“ sąlygą rasite visas formulių dalis."
#: finding.xhp
msgctxt ""
@@ -5038,7 +5038,7 @@ msgctxt ""
"par_id393993\n"
"help.text"
msgid "With \"Values\" you will find the results of the calculations."
-msgstr ""
+msgstr "Naudodami „Reikšmių“ sąlygą rasite skaičiavimų rezultatus."
#: finding.xhp
msgctxt ""
@@ -5046,7 +5046,7 @@ msgctxt ""
"par_id3163853\n"
"help.text"
msgid "Cell contents can be formatted in different ways. For example, a number can be formatted as a currency, to be displayed with a currency symbol. You see the currency symbol in the cell, but you cannot search for it."
-msgstr ""
+msgstr "Langelių turinys gali būti formatuojamas skirtingais būdais. Pavyzdžiui, skaičius gali būti nurodomas kaip valiuta, ir langelyje bus rodomas su valiutos simboliu. Tačiau Ieškoti ir keisti komanda šio simbolio neaptiks."
#: finding.xhp
msgctxt ""
@@ -5054,7 +5054,7 @@ msgctxt ""
"hd_id7359233\n"
"help.text"
msgid "Finding text"
-msgstr ""
+msgstr "Teksto ieškojimas"
#: finding.xhp
msgctxt ""
@@ -5062,7 +5062,7 @@ msgctxt ""
"par_id6549272\n"
"help.text"
msgid "Choose <emph>Edit - Find & Replace</emph> to open the Find & Replace dialog."
-msgstr ""
+msgstr "Jei norite atidaryti Ieškoti ir keisti dialogo langą pasirinkite <emph>Taisa → Ieškoti ir keisti</emph>."
#: finding.xhp
msgctxt ""
@@ -5070,7 +5070,7 @@ msgctxt ""
"par_id6529740\n"
"help.text"
msgid "Enter the text to find in the <emph>Find</emph> text box."
-msgstr ""
+msgstr "Tekstą kurį norite rasti įveskite į <emph>Ko ieškote</emph> laukelį."
#: finding.xhp
msgctxt ""
@@ -5078,7 +5078,7 @@ msgctxt ""
"par_id9121982\n"
"help.text"
msgid "Either click <emph>Find Next</emph> or <emph>Find All</emph>."
-msgstr ""
+msgstr "Spustelėkite <emph>Ieškoti kito</emph> arba <emph>Ieškoti visų</emph>."
#: finding.xhp
msgctxt ""
@@ -5086,7 +5086,7 @@ msgctxt ""
"par_id3808404\n"
"help.text"
msgid "When you click <emph>Find Next</emph>, Calc will select the next cell that contains your text. You can watch and edit the text, then click <emph>Find Next</emph> again to advance to the next found cell."
-msgstr ""
+msgstr "Spustelėjus mygtuką <emph>Ieškoti kito</emph>, Skaičiuoklė pažymės sekanti langelį kuris turės nurodytą tekstą, galite apžiūrėti ir koreguoti tekstą ir vėl spustelėti mygtuką <emph>Ieškoti kito</emph>, kad būtų surastas sekantis langelis su nurodytu turiniu."
#: finding.xhp
msgctxt ""
@@ -5094,7 +5094,7 @@ msgctxt ""
"par_id2394482\n"
"help.text"
msgid "If you closed the dialog, you can press a key combination (<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+F) to find the next cell without opening the dialog."
-msgstr ""
+msgstr "Jei išjungėte dialogo langą, galite spustelėti mygtukus <switchinline select=\"sys\"><caseinline select=\"MAC\">Komanda</caseinline><defaultinline>Vald.</defaultinline></switchinline>+Lyg2+F, kad surastumėte sekantį langelį, neatidarant dialogo lango."
#: finding.xhp
msgctxt ""
@@ -5102,7 +5102,7 @@ msgctxt ""
"par_id631733\n"
"help.text"
msgid "By default, Calc searches the current sheet. Check the <emph>All sheets</emph> box to search through all sheets of the document."
-msgstr ""
+msgstr "Numatyta, kad Skaičiuoklė ieško tik dabartinį lakštą. Pažymėkite žymimąjį langelį <emph>Visuose lakštuose</emph>, kad ieškojimas vyktų visuose lakštuose."
#: finding.xhp
msgctxt ""
@@ -5110,7 +5110,7 @@ msgctxt ""
"par_id7811822\n"
"help.text"
msgid "When you click <emph>Find All</emph>, Calc selects all cells that contain your entry. Now you can for example set all found cells to bold, or apply a Cell Style to all at once."
-msgstr ""
+msgstr "Spustelėjus mygtuką <emph>Ieškoti visų</emph>, Skaičiuoklė pažymės visus langelius su nurodytu turiniu. Dabar galite visiems langeliams vienu metu pritaikyti norimą stilių ar juos tiesiog pašalinti."
#: finding.xhp
msgctxt ""
@@ -5118,7 +5118,7 @@ msgctxt ""
"hd_id8531449\n"
"help.text"
msgid "The Navigator"
-msgstr ""
+msgstr "Žvalgiklis"
#: finding.xhp
msgctxt ""
@@ -5126,7 +5126,7 @@ msgctxt ""
"par_id9183935\n"
"help.text"
msgid "Choose <emph>View - Navigator</emph> to open the Navigator window."
-msgstr ""
+msgstr "Pasirinkite <emph>Rodymas → Žvalgiklis</emph>, kad atidarytumėte žvalgiklio langą."
#: finding.xhp
msgctxt ""
@@ -5134,7 +5134,7 @@ msgctxt ""
"par_id946684\n"
"help.text"
msgid "The Navigator is the main tool for finding and selecting objects."
-msgstr ""
+msgstr "Žvalgiklis naudojamas objektų ieškojimui ir žymėjimui."
#: finding.xhp
msgctxt ""
@@ -5142,7 +5142,7 @@ msgctxt ""
"par_id9607226\n"
"help.text"
msgid "Use the Navigator for inserting objects and links within the same document or from other open documents."
-msgstr ""
+msgstr "Naudokite Žvalgiklį objektų ir saitų įterpimui ir to pačio ar iš kitų dokumentų."
#: format_table.xhp
msgctxt ""
@@ -5150,7 +5150,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Formatting Spreadsheets"
-msgstr ""
+msgstr "Skaičiuoklės dokumentų formatavimas"
#: format_table.xhp
msgctxt ""
@@ -5158,7 +5158,7 @@ msgctxt ""
"bm_id3154125\n"
"help.text"
msgid "<bookmark_value>text in cells; formatting</bookmark_value><bookmark_value>spreadsheets;formatting</bookmark_value><bookmark_value>backgrounds;cells and pages</bookmark_value><bookmark_value>borders;cells and pages</bookmark_value><bookmark_value>formatting;spreadsheets</bookmark_value><bookmark_value>numbers; formatting options for selected cells</bookmark_value><bookmark_value>cells; number formats</bookmark_value><bookmark_value>currencies;formats</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>tekstas langeliuose; formatavimas</bookmark_value><bookmark_value>skaičiuoklės dokumentas;formatavimas</bookmark_value><bookmark_value>fonai;langeliai ir puslapiai</bookmark_value><bookmark_value>kraštinės;langeliai ir puslapiai</bookmark_value><bookmark_value>formatavimas;skaičiuoklės dokumentas</bookmark_value><bookmark_value>skaičiai; formatavimo parinktys langelių žymėjimui</bookmark_value><bookmark_value>langeliai; skaičių formatas</bookmark_value><bookmark_value> valiutos; formatai</bookmark_value>"
#: format_table.xhp
msgctxt ""
@@ -5166,7 +5166,7 @@ msgctxt ""
"hd_id3154125\n"
"help.text"
msgid "<variable id=\"format_table\"><link href=\"text/scalc/guide/format_table.xhp\" name=\"Designing Spreadsheets\">Formatting Spreadsheets</link></variable>"
-msgstr ""
+msgstr "<variable id=\"format_table\"><link href=\"text/scalc/guide/format_table.xhp\" name=\"Designing Spreadsheets\">Skaičiuoklės dokumentų formatavimas</link></variable>"
#: format_table.xhp
msgctxt ""
@@ -5174,7 +5174,7 @@ msgctxt ""
"hd_id3153912\n"
"help.text"
msgid "Formatting Text in a Spreadsheet"
-msgstr ""
+msgstr "Teksto formatavimas Skaičiuoklės dokumente"
#: format_table.xhp
msgctxt ""
@@ -5182,7 +5182,7 @@ msgctxt ""
"par_id3144772\n"
"help.text"
msgid "Select the text you want to format."
-msgstr ""
+msgstr "Pažymėkite tekstą kurį norite formatuoti."
#: format_table.xhp
msgctxt ""
@@ -5190,7 +5190,7 @@ msgctxt ""
"par_id3155268\n"
"help.text"
msgid "Choose the desired text attributes from the <emph>Formatting </emph>Bar. You can also choose <emph>Format - Cells</emph>. The <emph>Format Cells</emph> dialog will appear in which you can choose various text attributes on the <emph>Font</emph> tab page."
-msgstr ""
+msgstr "Pasirinkite norimus teksto atributus iš <emph>Formatavimo</emph> juostos. Taip pat galite pasirinkti <emph>Formatas → Langeliai</emph>.Atsivėrusiame <emph>Langelių formato</emph> dialogo lange galite pasirinkti norimus atributus <emph>Šrifto</emph> ąselėje."
#: format_table.xhp
msgctxt ""
@@ -5198,7 +5198,7 @@ msgctxt ""
"hd_id3149899\n"
"help.text"
msgid "Formatting Numbers in a Spreadsheet"
-msgstr ""
+msgstr "Skaičių formatavimas Skaičiuoklės dokumente"
#: format_table.xhp
msgctxt ""
@@ -5206,7 +5206,7 @@ msgctxt ""
"par_id3159226\n"
"help.text"
msgid "Select the cells containing the numbers you want to format."
-msgstr ""
+msgstr "Pažymėkite langelių sritį su skaičiais kurią norite formatuoti."
#: format_table.xhp
msgctxt ""
@@ -5214,7 +5214,7 @@ msgctxt ""
"par_id3150046\n"
"help.text"
msgid "To format numbers in the default currency format or as percentages, use the icons on the <emph>Formatting </emph>Bar. For other formats, choose <emph>Format - Cells</emph>. You can choose from the preset formats or define your own on the <emph>Numbers</emph> tab page."
-msgstr ""
+msgstr "Jei norite pakeisti skaičių formatą į valiuotą arba procentus, naudokite piktogramas <emph>Formatavimo</emph> juostoje. Jei norite daugiau formatų pasirinkite <emph>Formatas → Langeliai</emph>. Čia galite pasirinkti norima formatą arba sukurti savo <emph>Skaičių</emph> puslapio ąselėje."
#: format_table.xhp
msgctxt ""
@@ -5222,7 +5222,7 @@ msgctxt ""
"hd_id3153483\n"
"help.text"
msgid "Formatting Borders and Backgrounds for Cells and Pages"
-msgstr ""
+msgstr "Sričių ir puslapių kraštinių ir fono formatavimas."
#: format_table.xhp
msgctxt ""
@@ -5230,7 +5230,7 @@ msgctxt ""
"par_id3154733\n"
"help.text"
msgid "You can assign a format to any group of cells by first selecting the cells (for multiple selection, hold down the <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> key when clicking), and then activating the <emph>Format Cells</emph> dialog in <item type=\"menuitem\">Format - Cell</item>. In this dialog, you can select attributes such as shadows and backgrounds."
-msgstr ""
+msgstr "Jūs galite pritaikyti formatą, bet kokiai langelių sričiai, pažymėkite langelių sritį (jei norite pažymėti kelis langelius laikykite nuspaudę mygtuką <switchinline select=\"sys\"><caseinline select=\"MAC\">Komandą</caseinline><defaultinline>Vald.</defaultinline></switchinline> ir spustelėkite norimus langelius) ir aktyvuokite <emph>Langelių formato</emph> dialogo langą pasirinkdami <item type=\"menuitem\">Formatas → Langeliai</item>. Šiame dialogo lange galite pasirinkti norimus atributus langeliams. "
#: format_table.xhp
msgctxt ""
@@ -5238,7 +5238,7 @@ msgctxt ""
"par_id3145116\n"
"help.text"
msgid "To apply formatting attributes to an entire sheet, choose <emph>Format - Page</emph>. You can define headers and footers, for example, to appear on each printed page."
-msgstr ""
+msgstr "Jei norite pritaikyti formatavimą visam lakštui pasirinkite <emph>Formatas → Puslapis</emph>. Jūs galite apibrėžti puslapio antraštes, pavyzdžiui, kad jas rodytų spausdinant."
#: format_table.xhp
msgctxt ""
@@ -5246,7 +5246,7 @@ msgctxt ""
"par_id3145389\n"
"help.text"
msgid "An image that you have loaded with <item type=\"menuitem\">Format - Page - Background</item> is only visible in print or in the print preview. To display a background image on screen as well, insert the graphic image by choosing <item type=\"menuitem\">Insert - Image - From File</item> and arrange the image behind the cells by choosing <item type=\"menuitem\">Format - Arrange - To Background</item>. Use the <link href=\"text/scalc/01/02110000.xhp\" name=\"Navigator\">Navigator</link> to select the background image."
-msgstr ""
+msgstr "Paveikslas kurį pakrovėte <item type=\"menuitem\">Formatas → Puslapis → Fonas</item>, bus matomas tik spausdinant. Jei norite matyti fono paveikslą ekrane, įterpkite paveikslėlį pasirinkę <item type=\"menuitem\">Įterpimas → Paveikslas</item> ir išdėstykite paveikslą už langelių pasirinkite<item type=\"menuitem\">Formatas → Išdėstyti → Perkelti į pagrindą</item>. Naudokite <link href=\"text/scalc/01/02110000.xhp\" name=\"Navigator\">Žvalgiklį</link> paveikslo radimui."
#: format_table.xhp
msgctxt ""
@@ -5254,7 +5254,7 @@ msgctxt ""
"par_id2837916\n"
"help.text"
msgid "<link href=\"text/shared/01/05020300.xhp\">Number Formatting Options</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/05020300.xhp\">Skaičiaus formatavimo parinktys</link>"
#: format_table.xhp
msgctxt ""
@@ -5262,7 +5262,7 @@ msgctxt ""
"par_id2614215\n"
"help.text"
msgid "<link href=\"text/scalc/guide/background.xhp\">Backgrounds for Cells</link>"
-msgstr ""
+msgstr "<link href=\"text/scalc/guide/background.xhp\">Langelių fonai</link>"
#: format_value.xhp
msgctxt ""
@@ -5270,7 +5270,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Formatting Numbers With Decimals"
-msgstr ""
+msgstr "Dešimtainių skaičių formatavimas"
#: format_value.xhp
msgctxt ""
@@ -5278,7 +5278,7 @@ msgctxt ""
"bm_id3145367\n"
"help.text"
msgid "<bookmark_value>numbers;formatting decimals</bookmark_value> <bookmark_value>formats; numbers in tables</bookmark_value> <bookmark_value>tables; number formats</bookmark_value> <bookmark_value>defaults; number formats in spreadsheets</bookmark_value> <bookmark_value>decimal places;formatting numbers</bookmark_value> <bookmark_value>formatting;numbers with decimals</bookmark_value> <bookmark_value>formatting;adding/deleting decimal places</bookmark_value> <bookmark_value>number formats; adding/deleting decimal places in cells</bookmark_value> <bookmark_value>deleting; decimal places</bookmark_value> <bookmark_value>decimal places; adding/deleting</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>skaičiai; dešimtainių formatavimas</bookmark_value> <bookmark_value>formatai; skaičiai lentelėse</bookmark_value> <bookmark_value>lentelės; skaičių formatai</bookmark_value> <bookmark_value>numatytas; skaičių formatas skaičiuoklės dokumente</bookmark_value> <bookmark_value>dešimtainis skaičius; skaičių formatavimas</bookmark_value> <bookmark_value>formatavimas; dešimtainiai skaičiai</bookmark_value> <bookmark_value>formatavimas; pridėti/šalinti skaičius po kablelio</bookmark_value> <bookmark_value>skaičių formatai; pridėti/šalinti dešimtainius skaičius langeliuose</bookmark_value> <bookmark_value>šalinimas;skaičiai po kablelio</bookmark_value> <bookmark_value>skaičiai po kablelio; pridėti/salinti</bookmark_value>"
#: format_value.xhp
msgctxt ""
@@ -5286,7 +5286,7 @@ msgctxt ""
"hd_id3145367\n"
"help.text"
msgid "<variable id=\"format_value\"><link href=\"text/scalc/guide/format_value.xhp\" name=\"Formatting Numbers With Decimals\">Formatting Numbers With Decimals</link></variable>"
-msgstr ""
+msgstr "<variable id=\"format_value\"><link href=\"text/scalc/guide/format_value.xhp\" name=\"Formatting Numbers With Decimals\">Dešimtainių skaičių formatavimas</link></variable>"
#: format_value.xhp
msgctxt ""
@@ -5294,7 +5294,7 @@ msgctxt ""
"par_id3148576\n"
"help.text"
msgid "Enter a number into the sheet, for example, 1234.5678. This number will be displayed in the default number format, with two decimal places. You will see 1234.57 when you confirm the entry. Only the display in the document will be rounded off; internally, the number retains all four decimal places after the decimal point."
-msgstr ""
+msgstr "Lakšte įveskite skaičių, pavyzdžiui 1234.5678. Šis skaičius bus rodomas numatytu skaičių formatu, su dviems skaičiais po kablelio. Patvirtinę įrašą jūs matysite 1234.57. Tik rodomas skaičius bus suapvalinamas; viduje skaičius liks su keturiais skaičiais po kablelio."
#: format_value.xhp
msgctxt ""
@@ -5302,7 +5302,7 @@ msgctxt ""
"par_id3154012\n"
"help.text"
msgid "To format numbers with decimals:"
-msgstr ""
+msgstr "Dešimtainių skaičių formatavimas:"
#: format_value.xhp
msgctxt ""
@@ -5310,7 +5310,7 @@ msgctxt ""
"par_id3147394\n"
"help.text"
msgid "Set the cursor at the number and choose <emph>Format - Cells</emph> to start the <emph>Format Cells</emph> dialog."
-msgstr ""
+msgstr "Jei norite atverti <emph>Langelių formato</emph> dialogo langą užveskite žymeklį ant skaičiaus ir pasirinkite <emph>Formatas → Langeliai</emph>."
#: format_value.xhp
msgctxt ""
@@ -5318,7 +5318,7 @@ msgctxt ""
"par_id3153157\n"
"help.text"
msgid "On the <emph>Numbers</emph> tab you will see a selection of predefined number formats. In the bottom right in the dialog you will see a preview of how your current number would look if you were to give it a particular format."
-msgstr ""
+msgstr "Puslapio ąselėje <emph>Skaičiai</emph> matysite numatytus skaičių formatus. Dešinėje dialogo lango pusėje galite matyti kaip atrodytų skaičiai jums pritaikius tam tikrą formulę."
#: format_value.xhp
msgctxt ""
@@ -5326,7 +5326,7 @@ msgctxt ""
"par_id3155766\n"
"help.text"
msgid "<image id=\"img_id3149021\" src=\"cmd/sc_numberformatincdecimals.png\" width=\"0.222in\" height=\"0.222in\"><alt id=\"alt_id3149021\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3149021\" src=\"cmd/sc_numberformatincdecimals.png\" width=\"0.222in\" height=\"0.222in\"><alt id=\"alt_id3149021\">Piktograma</alt></image>"
#: format_value.xhp
msgctxt ""
@@ -5334,7 +5334,7 @@ msgctxt ""
"par_id3149256\n"
"help.text"
msgid "If you only want to modify the number of the decimal places displayed, the easiest method is to use the <emph>Number Format: Add Decimal Place</emph> or <emph>Number Format: Delete Decimal Place</emph> icons on the Formatting Bar."
-msgstr ""
+msgstr "Jei norite modifikuoti tik skaičius po kablelio, lengviausias metodas būtų naudoti <emph>Skaičiaus formatą: pridėti skaičius po kablelio</emph> arba <emph>Skaičiaus formatą: Šalinti skaičius po kablelio</emph> piktogramas esančias Formatavimo juostoje."
#: format_value_userdef.xhp
msgctxt ""
@@ -5342,7 +5342,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "User-defined Number Formats"
-msgstr ""
+msgstr "Vartotojo nustatyti skaičiaus formatai"
#: format_value_userdef.xhp
msgctxt ""
@@ -5350,7 +5350,7 @@ msgctxt ""
"bm_id3143268\n"
"help.text"
msgid "<bookmark_value>numbers;user-defined formatting</bookmark_value> <bookmark_value>formatting; user-defined numbers</bookmark_value> <bookmark_value>number formats; millions</bookmark_value> <bookmark_value>format codes; user-defined number formats</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>skaičiai;vartotojo nustatyti formatai</bookmark_value> <bookmark_value>formatavimas; vartotojo nustatyti skaičiai</bookmark_value> <bookmark_value>skaičių formatai; milijonai</bookmark_value> <bookmark_value>formatų kodai; vartotojo nustatyti formatai</bookmark_value>"
#: format_value_userdef.xhp
msgctxt ""
@@ -5358,7 +5358,7 @@ msgctxt ""
"hd_id3143268\n"
"help.text"
msgid "<variable id=\"format_value_userdef\"><link href=\"text/scalc/guide/format_value_userdef.xhp\" name=\"User-defined Number Formats\">User-defined Number Formats</link></variable>"
-msgstr ""
+msgstr "<variable id=\"format_value_userdef\"><link href=\"text/scalc/guide/format_value_userdef.xhp\" name=\"User-defined Number Formats\">Vartotojo nustatyti skaičiaus formatai</link></variable>"
#: format_value_userdef.xhp
msgctxt ""
@@ -5366,7 +5366,7 @@ msgctxt ""
"par_id3150400\n"
"help.text"
msgid "You can define your own number formats to display numbers in <item type=\"productname\">%PRODUCTNAME</item> Calc."
-msgstr ""
+msgstr "Jūs galite sukurti savo skaičiaus formatą kurį, po to galite naudoti per <item type=\"productname\">„%PRODUCTNAME“</item> Skaičiuoklę."
#: format_value_userdef.xhp
msgctxt ""
@@ -5374,7 +5374,7 @@ msgctxt ""
"par_id3150767\n"
"help.text"
msgid "As an example, to display the number 10,200,000 as 10.2 Million:"
-msgstr ""
+msgstr "Pavyzdžiui skaičių 10,200,000 rodyti milijonais, 10.2 Milijonai."
#: format_value_userdef.xhp
msgctxt ""
@@ -5382,7 +5382,7 @@ msgctxt ""
"par_id3150868\n"
"help.text"
msgid "Select the cells to which you want to apply a new, user-defined format."
-msgstr ""
+msgstr "Pažymėkite langelius, kuriems norite pritaikyti vartotojo nustatytą formatą."
#: format_value_userdef.xhp
msgctxt ""
@@ -5390,7 +5390,7 @@ msgctxt ""
"par_id3149664\n"
"help.text"
msgid "Choose <emph>Format - Cells - Numbers</emph>."
-msgstr ""
+msgstr "Pasirinkite <emph>Formatas → Langeliai → Skaičiai</emph>."
#: format_value_userdef.xhp
msgctxt ""
@@ -5398,7 +5398,7 @@ msgctxt ""
"par_id3149260\n"
"help.text"
msgid "In the <emph>Categories</emph> list box select \"User-defined\"."
-msgstr ""
+msgstr "<emph>Kategorijų</emph> laukelyje pasirinkite „Naudotojo aprašyta“."
#: format_value_userdef.xhp
msgctxt ""
@@ -5406,7 +5406,7 @@ msgctxt ""
"par_id3148646\n"
"help.text"
msgid "In the <emph>Format code</emph> text box enter the following code:"
-msgstr ""
+msgstr "<emph>Formato kodo</emph> laukelyje įrašykite kodą:"
#: format_value_userdef.xhp
msgctxt ""
@@ -5414,7 +5414,7 @@ msgctxt ""
"par_id3152596\n"
"help.text"
msgid "0.0,, \"Million\""
-msgstr ""
+msgstr "0.0,, \"Milijonai\""
#: format_value_userdef.xhp
msgctxt ""
@@ -5422,7 +5422,7 @@ msgctxt ""
"par_id3144764\n"
"help.text"
msgid "Click OK."
-msgstr ""
+msgstr "Spustelėkite mygtuką <emph>Gerai</emph>"
#: format_value_userdef.xhp
msgctxt ""
@@ -5430,7 +5430,7 @@ msgctxt ""
"par_id3155417\n"
"help.text"
msgid "The following table shows the effects of rounding, thousands delimiters (,), decimal delimiters (.) and the placeholders # and 0."
-msgstr ""
+msgstr "Lentelė apačioje rodo kaip veikia tūkstančių skyriklis (,), dešimtainių skaičių skyriklis (.) ir rėmeliai # ir 0."
#: format_value_userdef.xhp
msgctxt ""
@@ -5438,7 +5438,7 @@ msgctxt ""
"par_id3146971\n"
"help.text"
msgid "Number"
-msgstr ""
+msgstr "Skaičiai"
#: format_value_userdef.xhp
msgctxt ""
@@ -5446,7 +5446,7 @@ msgctxt ""
"par_id3154757\n"
"help.text"
msgid ".#,, \"Million\""
-msgstr ""
+msgstr ".#,, \"Milijonai\""
#: format_value_userdef.xhp
msgctxt ""
@@ -5454,7 +5454,7 @@ msgctxt ""
"par_id3147338\n"
"help.text"
msgid "0.0,, \"Million\""
-msgstr ""
+msgstr "0.0,, \"Milijonai\""
#: format_value_userdef.xhp
msgctxt ""
@@ -5462,7 +5462,7 @@ msgctxt ""
"par_id3146920\n"
"help.text"
msgid "#,, \"Million\""
-msgstr ""
+msgstr "#,, \"Milijonai\""
#: format_value_userdef.xhp
msgctxt ""
@@ -5470,7 +5470,7 @@ msgctxt ""
"par_id3147344\n"
"help.text"
msgid "10200000"
-msgstr ""
+msgstr "10200000"
#: format_value_userdef.xhp
msgctxt ""
@@ -5478,7 +5478,7 @@ msgctxt ""
"par_id3147003\n"
"help.text"
msgid "10.2 Million"
-msgstr ""
+msgstr "10.2 Milijonai"
#: format_value_userdef.xhp
msgctxt ""
@@ -5486,7 +5486,7 @@ msgctxt ""
"par_id3166426\n"
"help.text"
msgid "10.2 Million"
-msgstr ""
+msgstr "10.2 Milijonai"
#: format_value_userdef.xhp
msgctxt ""
@@ -5494,7 +5494,7 @@ msgctxt ""
"par_id3155113\n"
"help.text"
msgid "10 Million"
-msgstr ""
+msgstr "10 Milijonų"
#: format_value_userdef.xhp
msgctxt ""
@@ -5502,7 +5502,7 @@ msgctxt ""
"par_id3150369\n"
"help.text"
msgid "500000"
-msgstr ""
+msgstr "500000"
#: format_value_userdef.xhp
msgctxt ""
@@ -5510,7 +5510,7 @@ msgctxt ""
"par_id3145585\n"
"help.text"
msgid ".5 Million"
-msgstr ""
+msgstr ".5 Milijono"
#: format_value_userdef.xhp
msgctxt ""
@@ -5518,7 +5518,7 @@ msgctxt ""
"par_id3154486\n"
"help.text"
msgid "0.5 Million"
-msgstr ""
+msgstr "0.5 Milijono"
#: format_value_userdef.xhp
msgctxt ""
@@ -5526,7 +5526,7 @@ msgctxt ""
"par_id3146114\n"
"help.text"
msgid "1 Million"
-msgstr ""
+msgstr "1 Milijonas"
#: format_value_userdef.xhp
msgctxt ""
@@ -5534,7 +5534,7 @@ msgctxt ""
"par_id3155810\n"
"help.text"
msgid "100000000"
-msgstr ""
+msgstr "100000000"
#: format_value_userdef.xhp
msgctxt ""
@@ -5542,7 +5542,7 @@ msgctxt ""
"par_id3153818\n"
"help.text"
msgid "100. Million"
-msgstr ""
+msgstr "100. Milijonų"
#: format_value_userdef.xhp
msgctxt ""
@@ -5550,7 +5550,7 @@ msgctxt ""
"par_id3151241\n"
"help.text"
msgid "100.0 Million"
-msgstr ""
+msgstr "100.0 Milijonų"
#: format_value_userdef.xhp
msgctxt ""
@@ -5558,7 +5558,7 @@ msgctxt ""
"par_id3144771\n"
"help.text"
msgid "100 Million"
-msgstr ""
+msgstr "100 Milijonų"
#: formula_copy.xhp
msgctxt ""
@@ -5566,7 +5566,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Copying Formulas"
-msgstr ""
+msgstr "Formulių kopijavimas"
#: formula_copy.xhp
msgctxt ""
@@ -5574,7 +5574,7 @@ msgctxt ""
"bm_id3151113\n"
"help.text"
msgid "<bookmark_value>formulas; copying and pasting</bookmark_value><bookmark_value>copying; formulas</bookmark_value><bookmark_value>pasting;formulas</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>formulės; kopijavimas ir įklijavimas</bookmark_value><bookmark_value>kopijavimas; formulės</bookmark_value><bookmark_value>įklijavimas;formulės</bookmark_value>"
#: formula_copy.xhp
msgctxt ""
@@ -5582,7 +5582,7 @@ msgctxt ""
"hd_id3151113\n"
"help.text"
msgid "<variable id=\"formula_copy\"><link href=\"text/scalc/guide/formula_copy.xhp\" name=\"Copying Formulas\">Copying Formulas</link></variable>"
-msgstr ""
+msgstr "<variable id=\"formula_copy\"><link href=\"text/scalc/guide/formula_copy.xhp\" name=\"Copying Formulas\">Formulių kopijavimas</link></variable>"
#: formula_copy.xhp
msgctxt ""
@@ -5590,7 +5590,7 @@ msgctxt ""
"par_id3156424\n"
"help.text"
msgid "There are various ways to copy a formula. One suggested method is:"
-msgstr ""
+msgstr "Yra daug būdu nukopijuoti formulę.Vienas siūlomų būdų yra toks:"
#: formula_copy.xhp
msgctxt ""
@@ -5598,7 +5598,7 @@ msgctxt ""
"par_id3150439\n"
"help.text"
msgid "Select the cell containing the formula."
-msgstr ""
+msgstr "Pažymėkite langelį kuriame yra formulė."
#: formula_copy.xhp
msgctxt ""
@@ -5606,7 +5606,7 @@ msgctxt ""
"par_id3154319\n"
"help.text"
msgid "Choose <emph>Edit - Copy</emph>, or press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+C to copy it."
-msgstr ""
+msgstr "Pasirinkite <emph>Taisa → Kopijuoti</emph> arba spustelėkite klavišus <switchinline select=\"sys\"><caseinline select=\"MAC\">Komanda</caseinline><defaultinline>Vald.</defaultinline></switchinline> ir C."
#: formula_copy.xhp
msgctxt ""
@@ -5614,7 +5614,7 @@ msgctxt ""
"par_id3159155\n"
"help.text"
msgid "Select the cell into which you want the formula to be copied."
-msgstr ""
+msgstr "Pažymėkite langelį į kurį norite įklijuoti formulę."
#: formula_copy.xhp
msgctxt ""
@@ -5622,7 +5622,7 @@ msgctxt ""
"par_id3153728\n"
"help.text"
msgid "Choose <emph>Edit - Paste</emph>, or press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+V. The formula will be positioned in the new cell."
-msgstr ""
+msgstr "Pasirinkite <emph>Taisa → Įdėti</emph> arba spustelėkite klavišus <switchinline select=\"sys\"><caseinline select=\"MAC\">Komanda</caseinline><defaultinline>Vald.</defaultinline></switchinline> ir V."
#: formula_copy.xhp
msgctxt ""
@@ -5630,7 +5630,7 @@ msgctxt ""
"par_id3149961\n"
"help.text"
msgid "If you want to copy a formula into multiple cells, there is a quick and easy way to copy into adjacent cell areas:"
-msgstr ""
+msgstr "Jei norite įklijuoti formulę į kelis langelius, tam yra greitas ir paprastas būdas"
#: formula_copy.xhp
msgctxt ""
@@ -5638,7 +5638,7 @@ msgctxt ""
"par_id3149400\n"
"help.text"
msgid "Select the cell containing the formula."
-msgstr ""
+msgstr "Pažymėkite langelį kuriame yra formulė."
#: formula_copy.xhp
msgctxt ""
@@ -5646,7 +5646,7 @@ msgctxt ""
"par_id3154018\n"
"help.text"
msgid "Position the mouse on the bottom right of the highlighted border of the cell, and continue holding down the mouse button until the pointer changes to a cross-hair symbol."
-msgstr ""
+msgstr "Nuspauskite langelio dešiniajame apatiniame kampe esantį kvadratą."
#: formula_copy.xhp
msgctxt ""
@@ -5654,7 +5654,7 @@ msgctxt ""
"par_id3150749\n"
"help.text"
msgid "With the mouse button pressed, drag it down or to the right over all the cells into which you want to copy the formula."
-msgstr ""
+msgstr "Laikydami nuospaude pelės klavišą, vilkite kvadratą per langelius į kuriuos norite nukopijuoti formulę."
#: formula_copy.xhp
msgctxt ""
@@ -5662,7 +5662,7 @@ msgctxt ""
"par_id3153714\n"
"help.text"
msgid "When you release the mouse button, the formula will be copied into the cells and automatically adjusted."
-msgstr ""
+msgstr "Jums atleidus pelės klavišą, formulės bus nukopijuotos ir automatiškai suderintos."
#: formula_copy.xhp
msgctxt ""
@@ -5670,7 +5670,7 @@ msgctxt ""
"par_id3156385\n"
"help.text"
msgid "If you do not want values and texts to be automatically adjusted, then hold down the <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> key when dragging. Formulas, however, are always adjusted accordingly."
-msgstr ""
+msgstr "Jei nenorit, kad reikšmės būtų automatiškai pritaikytos vilkdami kvadratą laikykite nuspaudę klavišą <switchinline select=\"sys\"><caseinline select=\"MAC\">Komanda</caseinline><defaultinline>Vald.</defaultinline></switchinline>.Formulės visada pritaikomos atitinkamai."
#: formula_enter.xhp
msgctxt ""
@@ -5678,7 +5678,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Entering Formulas"
-msgstr ""
+msgstr "Formulių įvedimas"
#: formula_enter.xhp
msgctxt ""
@@ -5686,7 +5686,7 @@ msgctxt ""
"bm_id3150868\n"
"help.text"
msgid "<bookmark_value>formula bar; input line</bookmark_value><bookmark_value>input line in formula bar</bookmark_value><bookmark_value>formulas; inputting</bookmark_value><bookmark_value>inserting;formulas</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>formulių juosta; įvedimo eilutė</bookmark_value><bookmark_value> įvedimo eilutė formulių juostoje</bookmark_value><bookmark_value>formulės; įvedimas</bookmark_value><bookmark_value>įterpimas;formulės</bookmark_value>"
#: formula_enter.xhp
msgctxt ""
@@ -5694,7 +5694,7 @@ msgctxt ""
"hd_id3150868\n"
"help.text"
msgid "<variable id=\"formula_enter\"><link href=\"text/scalc/guide/formula_enter.xhp\" name=\"Entering Formulas\">Entering Formulas</link></variable>"
-msgstr ""
+msgstr "<variable id=\"formula_enter\"><link href=\"text/scalc/guide/formula_enter.xhp\" name=\"Entering Formulas\">Formulių įvedimas</link></variable>"
#: formula_enter.xhp
msgctxt ""
@@ -5702,7 +5702,7 @@ msgctxt ""
"par_id6848353\n"
"help.text"
msgid "You can enter formulas in several ways: using the icons, or by typing on the keyboard, or by a mixture of both methods."
-msgstr ""
+msgstr "Yra keli būdai įvesti formules: naudojant piktogramas, rašant ranka arba naudojant abu šiuos metodus."
#: formula_enter.xhp
msgctxt ""
@@ -5710,7 +5710,7 @@ msgctxt ""
"par_id3145364\n"
"help.text"
msgid "Click the cell in which you want to enter the formula."
-msgstr ""
+msgstr "Spustelėkite ant langelio į kurį norite įvesti formulę."
#: formula_enter.xhp
msgctxt ""
@@ -5718,7 +5718,7 @@ msgctxt ""
"par_id3150012\n"
"help.text"
msgid "Click the <emph>Function</emph> icon on the Formula Bar."
-msgstr ""
+msgstr "Spustelėkite <emph>Formulės</emph> piktogramą formulių juostoje."
#: formula_enter.xhp
msgctxt ""
@@ -5726,7 +5726,7 @@ msgctxt ""
"par_id3156441\n"
"help.text"
msgid "You will now see an equals sign in the input line and you can begin to input the formula."
-msgstr ""
+msgstr "Įvesties eilutėje atsiras lygybės ženklas, galite pradėti rašyti formulę."
#: formula_enter.xhp
msgctxt ""
@@ -5734,7 +5734,7 @@ msgctxt ""
"par_id3153726\n"
"help.text"
msgid "After entering the required values, press Enter or click <emph>Accept</emph> to insert the result in the active cell. If you want to clear your entry in the input line, press Escape or click <emph>Cancel</emph>."
-msgstr ""
+msgstr "Įvedę reikšmes, spustelėkite įvesties klavišą arba mygtuką <emph>Priimti</emph>, skaičiavimo rezultatai bus įrašyti į aktyvų langelį. Jie norite išvalyti įvesties eilutę spustelėkite klavišą Gr arba mygtuką <emph>Atsisakyti</emph>."
#: formula_enter.xhp
msgctxt ""
@@ -5742,7 +5742,7 @@ msgctxt ""
"par_id3147394\n"
"help.text"
msgid "You can also enter the values and the formulas directly into the cells, even if you cannot see an input cursor. Formulas must always begin with an equals sign."
-msgstr ""
+msgstr "Formules ir reikšmes galite rašyti tiesiai į langelius, net jei nematote įvesties žymeklio. Formulės visada privalo prasidėti su lygybės ženklu."
#: formula_enter.xhp
msgctxt ""
@@ -5750,7 +5750,7 @@ msgctxt ""
"par_id4206976\n"
"help.text"
msgid "You can also press the + or - key on the numerical keyboard to start a formula. NumLock must be \"on\". For example, press the following keys in succession:"
-msgstr ""
+msgstr "Taip pat formulei pradėti gali spustelėti + arba - klavišus klaviatūroje. Didžiosios raidės turi būti aktyvuotos. Pavyzdžiui spustelėkite šiuos klavišus: "
#: formula_enter.xhp
msgctxt ""
@@ -5758,7 +5758,7 @@ msgctxt ""
"par_id1836909\n"
"help.text"
msgid "+ 5 0 - 8 Enter"
-msgstr ""
+msgstr "+ 5 0 - 8 Įvesti"
#: formula_enter.xhp
msgctxt ""
@@ -5766,7 +5766,7 @@ msgctxt ""
"par_id8171330\n"
"help.text"
msgid "You see the result <item type=\"literal\">42</item> in the cell. The cell contains the formula <item type=\"literal\">=+50-8</item>."
-msgstr ""
+msgstr "Langelyje matysite rezultatą <item type=\"literal\">42</item>. Formulėje yra formulė<item type=\"literal\">=+50-8</item>."
#: formula_enter.xhp
msgctxt ""
@@ -5774,7 +5774,7 @@ msgctxt ""
"par_id3155764\n"
"help.text"
msgid "If you are editing a formula with references, the references and the associated cells will be highlighted with the same color. You can now resize the reference border using the mouse, and the reference in the formula displayed in the input line also changes. <emph>Show references in color</emph> can be deactivated under <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01060300.xhp\" name=\"Spreadsheet - View\">%PRODUCTNAME Calc - View</link>."
-msgstr ""
+msgstr "Jei koreguojate formulę su nuoroda į kitus langelius, nuorodos gretimuose langeliuose bus paryškintos ta pačia spalva. Langelių nuorodos dydį galite pakeisti naudodami pelę, taip pasikeis ir nuorodos formulėse.<emph>Spalvotų nuorodų rodymas</emph> gali būti išjungtas <switchinline select=\"sys\"><caseinline select=\"MAC\">„%PRODUCTNAME“ → Parinktys</caseinline><defaultinline>Priemonės → Parinktys</defaultinline></switchinline> → <link href=\"text/shared/optionen/01060300.xhp\" name=\"Spreadsheet - View\">„%PRODUCTNAME“ Skaičiuoklė → Rodymas</link>."
#: formula_enter.xhp
msgctxt ""
@@ -5782,7 +5782,7 @@ msgctxt ""
"par_id3149210\n"
"help.text"
msgid "<variable id=\"tip\">If you would like to view the calculation of individual elements of a formula, select the respective elements and press F9. For example, in the formula =SUM(A1:B12)*SUM(C1:D12) select the section SUM(C1:D12) and press F9 to view the subtotal for this area. </variable>"
-msgstr ""
+msgstr "<variable id=\"tip\">Jei norite skaičiuoti individualius formulės elementus, pažymėkite norimą formulės elementą ir spustelėkite klavišą F9. Pavyzdžiui, formulėje =SUM(A1:B12)*SUM(C1:D12) pažemėją dalį SUM(C1:D12) ir spustelėję klavišą F9 pamatysite skaičiavimo tarpinę sumą.</variable>"
#: formula_enter.xhp
msgctxt ""
@@ -5790,7 +5790,7 @@ msgctxt ""
"par_id3150304\n"
"help.text"
msgid "If an error occurs when creating the formula, an <link href=\"text/scalc/05/02140000.xhp\" name=\"error message\">error message</link> appears in the active cell."
-msgstr ""
+msgstr "Jei kuriant formulę padarysite klaidą, užrašas <link href=\"text/scalc/05/02140000.xhp\" name=\"error message\">Klaida</link> atsiras formulės langelyje."
#: formula_enter.xhp
msgctxt ""
@@ -5798,7 +5798,7 @@ msgctxt ""
"par_id3152993\n"
"help.text"
msgid "<link href=\"text/scalc/main0206.xhp\" name=\"Formula bar\">Formula bar</link>"
-msgstr ""
+msgstr "<link href=\"text/scalc/main0206.xhp\" name=\"Formula bar\">Formulių juosta</link>"
#: formula_value.xhp
msgctxt ""
@@ -5806,7 +5806,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Displaying Formulas or Values"
-msgstr ""
+msgstr "Formulių arba reikšmių rodymas"
#: formula_value.xhp
msgctxt ""
@@ -5814,7 +5814,7 @@ msgctxt ""
"bm_id3153195\n"
"help.text"
msgid "<bookmark_value>formulas; displaying in cells</bookmark_value><bookmark_value>values; displaying in tables</bookmark_value><bookmark_value>tables; displaying formulas/values</bookmark_value><bookmark_value>results display vs. formulas display</bookmark_value><bookmark_value>displaying; formulas instead of results</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>formulės; rodyti langeliai</bookmark_value><bookmark_value>reikšmės; rodymas lentelėse</bookmark_value><bookmark_value>lentelės; reikšmių/formulių rodymas</bookmark_value><bookmark_value>rezultatų rodymas prieš formulių rodymą</bookmark_value><bookmark_value>rodymas;formulės vietoi rezultatų</bookmark_value>"
#: formula_value.xhp
msgctxt ""
@@ -5822,7 +5822,7 @@ msgctxt ""
"hd_id3153195\n"
"help.text"
msgid "<variable id=\"formula_value\"><link href=\"text/scalc/guide/formula_value.xhp\" name=\"Displaying Formulas or Values\">Displaying Formulas or Values</link></variable>"
-msgstr ""
+msgstr "<variable id=\"formula_value\"><link href=\"text/scalc/guide/formula_value.xhp\" name=\"Displaying Formulas or Values\">Formulių arba reikšmių rodymas</link></variable>"
#: formula_value.xhp
msgctxt ""
@@ -5830,7 +5830,7 @@ msgctxt ""
"par_id3150010\n"
"help.text"
msgid "If you want to display the formulas in the cells, for example in the form =SUM(A1:B5), proceed as follows:"
-msgstr ""
+msgstr "Jei norite rodyti formules langeliuose, pavyzdžiui =SUM(A1:B5) forma, sekite šiuos žingsnius:"
#: formula_value.xhp
msgctxt ""
@@ -5838,7 +5838,7 @@ msgctxt ""
"par_id3151116\n"
"help.text"
msgid "Choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Calc - View</emph>."
-msgstr ""
+msgstr "Pasirinkite<switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>„%PRODUCTNAME“ → Parinktys</emph></caseinline><defaultinline><emph>Priemonės → Parinktys</emph></defaultinline></switchinline><emph> → „%PRODUCTNAME“ Skaičiuoklė → Rodymas</emph>."
#: formula_value.xhp
msgctxt ""
@@ -5846,7 +5846,7 @@ msgctxt ""
"par_id3146120\n"
"help.text"
msgid "In the <emph>Display</emph> area mark the <emph>Formulas</emph> box. Click OK."
-msgstr ""
+msgstr "Dalyje <emph>Rodoma</emph> pažymėkite žymimąjį langelį <emph>Formulės</emph>. Spustelėkite mygtuką <emph>Gerai</emph>."
#: formula_value.xhp
msgctxt ""
@@ -5854,7 +5854,7 @@ msgctxt ""
"par_id3147396\n"
"help.text"
msgid "If you want to view the calculation results instead of the formula, do not mark the Formulas box."
-msgstr ""
+msgstr "Jei norite matyti tik skaičiavimų rezultatus formulių žymimojo langelio nežymėkite."
#: formula_value.xhp
msgctxt ""
@@ -5862,7 +5862,7 @@ msgctxt ""
"par_id3153157\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01060100.xhp\" name=\"Spreadsheet - View\">%PRODUCTNAME Calc - View</link>"
-msgstr ""
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">„%PRODUCTNAME“ → Parinktys</caseinline><defaultinline>Priemonės → Parinktys</defaultinline></switchinline> → <link href=\"text/shared/optionen/01060100.xhp\" name=\"Spreadsheet - View\">„%PRODUCTNAME“ → Rodymas</link>"
#: formulas.xhp
msgctxt ""
@@ -5870,7 +5870,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Calculating With Formulas"
-msgstr ""
+msgstr "Skaičiavimas naudojant formules"
#: formulas.xhp
msgctxt ""
@@ -5878,7 +5878,7 @@ msgctxt ""
"bm_id3155411\n"
"help.text"
msgid "<bookmark_value>formulas;calculating with</bookmark_value><bookmark_value>calculating; with formulas</bookmark_value><bookmark_value>examples;formula calculation</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>formulės; skaičiuojama su</bookmark_value><bookmark_value>skaičiuojama; su formulėmis</bookmark_value><bookmark_value> pavyzdžiai; formulių skaičiavimas</bookmark_value>"
#: formulas.xhp
msgctxt ""
@@ -5886,7 +5886,7 @@ msgctxt ""
"hd_id3155411\n"
"help.text"
msgid "<variable id=\"formulas\"><link href=\"text/scalc/guide/formulas.xhp\" name=\"Calculating With Formulas\">Calculating With Formulas</link></variable>"
-msgstr ""
+msgstr "<variable id=\"formulas\"><link href=\"text/scalc/guide/formulas.xhp\" name=\"Calculating With Formulas\">Skaičiavimas naudojant formules</link></variable>"
#: formulas.xhp
msgctxt ""
@@ -5894,7 +5894,7 @@ msgctxt ""
"par_id3156281\n"
"help.text"
msgid "All formulas begin with an equals sign. The formulas can contain numbers, text, arithmetic operators, logic operators, or functions."
-msgstr ""
+msgstr "Formulės pradedamos rašyti lygybės ženklu priekyje. Formulėse gali būti skaičiai, tekstai, aritmetiniai operatoriai, loginiai operatoriai arba funkcijos."
#: formulas.xhp
msgctxt ""
@@ -5902,7 +5902,7 @@ msgctxt ""
"par_id3145272\n"
"help.text"
msgid "Remember that the basic arithmetic operators (+, -, *, /) can be used in formulas using the \"Multiplication and Division before Addition and Subtraction\" rule. Instead of writing =SUM(A1:B1) you can write =A1+B1."
-msgstr ""
+msgstr "Atsiminkite, kad pagrindiniai operatoriai (+, -, *, /) gali būti naudojami formulėse naudojant „Daugybos ir dalybos veiksmai eina prieš sumą ir atimtį“ taisyklę. Vietoj to, kad rašytumėte =SUM(A1:B1), rašykite =A1+B1."
#: formulas.xhp
msgctxt ""
@@ -5910,7 +5910,7 @@ msgctxt ""
"par_id3146119\n"
"help.text"
msgid "Parentheses can also be used. The result of the formula =(1+2)*3 produces a different result than =1+2*3."
-msgstr ""
+msgstr "Poriniai skliaustai taip pat gali būti naudojami formulėse. Formulė =(1+2)*3 pateikia kitokį rezultatą nei formulė =1+2*3."
#: formulas.xhp
msgctxt ""
@@ -5918,7 +5918,7 @@ msgctxt ""
"par_id3156285\n"
"help.text"
msgid "Here are a few examples of $[officename] Calc formulas:"
-msgstr ""
+msgstr "Keli „$[officename]“ Skaičiuoklės formulių pavyzdžiai:"
#: formulas.xhp
msgctxt ""
@@ -5926,7 +5926,7 @@ msgctxt ""
"par_id3154015\n"
"help.text"
msgid "=A1+10"
-msgstr ""
+msgstr "=A1+10"
#: formulas.xhp
msgctxt ""
@@ -5934,7 +5934,7 @@ msgctxt ""
"par_id3146972\n"
"help.text"
msgid "Displays the contents of cell A1 plus 10."
-msgstr ""
+msgstr "Apskaičiuoja langelio A1 ir 10 sumą."
#: formulas.xhp
msgctxt ""
@@ -5942,7 +5942,7 @@ msgctxt ""
"par_id3145643\n"
"help.text"
msgid "=A1*16%"
-msgstr ""
+msgstr "=A1*16%"
#: formulas.xhp
msgctxt ""
@@ -5950,7 +5950,7 @@ msgctxt ""
"par_id3154255\n"
"help.text"
msgid "Displays 16% of the contents of A1."
-msgstr ""
+msgstr "Apskaičiuoja 16% langelio A1."
#: formulas.xhp
msgctxt ""
@@ -5958,7 +5958,7 @@ msgctxt ""
"par_id3146917\n"
"help.text"
msgid "=A1 * A2"
-msgstr ""
+msgstr "=A1 * A2"
#: formulas.xhp
msgctxt ""
@@ -5966,7 +5966,7 @@ msgctxt ""
"par_id3146315\n"
"help.text"
msgid "Displays the result of the multiplication of A1 and A2."
-msgstr ""
+msgstr "Apskaičiuoja langelio A1 ir langelio A2 sandaugą."
#: formulas.xhp
msgctxt ""
@@ -5974,7 +5974,7 @@ msgctxt ""
"par_id3154022\n"
"help.text"
msgid "=ROUND(A1;1)"
-msgstr ""
+msgstr "=ROUND(A1;1)"
#: formulas.xhp
msgctxt ""
@@ -5982,7 +5982,7 @@ msgctxt ""
"par_id3150363\n"
"help.text"
msgid "Displays the contents of cell A1 rounded to one decimal place."
-msgstr ""
+msgstr "Apvalina A1 langelio turinį, vieno skaitmens po kablelio tikslumu."
#: formulas.xhp
msgctxt ""
@@ -5990,7 +5990,7 @@ msgctxt ""
"par_id3150209\n"
"help.text"
msgid "=EFFECTIVE(5%;12)"
-msgstr ""
+msgstr "=EFFECTIVE(5%;12)"
#: formulas.xhp
msgctxt ""
@@ -5998,7 +5998,7 @@ msgctxt ""
"par_id3150883\n"
"help.text"
msgid "Calculates the effective interest for 5% annual nominal interest with 12 payments a year."
-msgstr ""
+msgstr "Apskaičiuoja 5% metinių nominaliųjų palūkanų mokant 12 kartų per metus."
#: formulas.xhp
msgctxt ""
@@ -6006,7 +6006,7 @@ msgctxt ""
"par_id3146114\n"
"help.text"
msgid "=B8-SUM(B10:B14)"
-msgstr ""
+msgstr "=B8-SUM(B10:B14)"
#: formulas.xhp
msgctxt ""
@@ -6014,7 +6014,7 @@ msgctxt ""
"par_id3154486\n"
"help.text"
msgid "Calculates B8 minus the sum of the cells B10 to B14."
-msgstr ""
+msgstr "Apskaičiuoja langelių B10 ir B14 sumą ir ją atima iš langelio B8."
#: formulas.xhp
msgctxt ""
@@ -6022,7 +6022,7 @@ msgctxt ""
"par_id3152890\n"
"help.text"
msgid "=SUM(B8;SUM(B10:B14))"
-msgstr ""
+msgstr "=SUM(B8;SUM(B10:B14))"
#: formulas.xhp
msgctxt ""
@@ -6030,7 +6030,7 @@ msgctxt ""
"par_id3159171\n"
"help.text"
msgid "Calculates the sum of cells B10 to B14 and adds the value to B8."
-msgstr ""
+msgstr "Apskaičiuoja langelių B10 ir B14 sumą ir prie jų sumos prideda langelio B8 reikšmę."
#: formulas.xhp
msgctxt ""
@@ -6038,7 +6038,7 @@ msgctxt ""
"par_id3150109\n"
"help.text"
msgid "It is also possible to nest functions in formulas, as shown in the example. You can also nest functions within functions. The Function Wizard assists you with nested functions."
-msgstr ""
+msgstr "Galite naudoti funkcijas formulėse, kaip rodoma pavyzdyje. Taip pat galite funkcijas naudoti kitose funkcijose. Funkcijos vedlys padeda naudojant formules."
#: formulas.xhp
msgctxt ""
@@ -6046,7 +6046,7 @@ msgctxt ""
"par_id3150213\n"
"help.text"
msgid "<link href=\"text/scalc/01/04060100.xhp\" name=\"Functions list\">Functions list</link>"
-msgstr ""
+msgstr "<link href=\"text/scalc/01/04060100.xhp\" name=\"Functions list\">Funkcijų sąrašas</link>"
#: formulas.xhp
msgctxt ""
@@ -6054,7 +6054,7 @@ msgctxt ""
"par_id3152869\n"
"help.text"
msgid "<link href=\"text/scalc/01/04060000.xhp\" name=\"AutoPilot: Functions\">Function Wizard</link>"
-msgstr ""
+msgstr "<link href=\"text/scalc/01/04060000.xhp\" name=\"AutoPilot: Functions\">Funkcijos vedlys</link>"
#: fraction_enter.xhp
msgctxt ""
@@ -6062,7 +6062,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Entering Fractions"
-msgstr ""
+msgstr "Trupmenų įvedimas"
#: fraction_enter.xhp
msgctxt ""
@@ -6070,7 +6070,7 @@ msgctxt ""
"bm_id3155411\n"
"help.text"
msgid "<bookmark_value>fractions; entering</bookmark_value><bookmark_value>numbers; entering fractions </bookmark_value><bookmark_value>inserting;fractions</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>trupmenos; įvedimas</bookmark_value><bookmark_value>skaičiai; trupmenu įvedimas</bookmark_value><bookmark_value>įterpimas;trupmenos</bookmark_value>"
#: fraction_enter.xhp
msgctxt ""
@@ -6078,7 +6078,7 @@ msgctxt ""
"hd_id3155411\n"
"help.text"
msgid "<variable id=\"fraction_enter\"><link href=\"text/scalc/guide/fraction_enter.xhp\" name=\"Entering Fractions \">Entering Fractions </link></variable>"
-msgstr ""
+msgstr "<variable id=\"fraction_enter\"><link href=\"text/scalc/guide/fraction_enter.xhp\" name=\"Entering Fractions \">Trupmenų įvedimas</link></variable>"
#: fraction_enter.xhp
msgctxt ""
@@ -6086,7 +6086,7 @@ msgctxt ""
"par_id3153968\n"
"help.text"
msgid "You can enter a fractional number in a cell and use it for calculation:"
-msgstr ""
+msgstr "Galite įvesti trupmenas ir su jomis atlikti skaičiavimus:"
#: fraction_enter.xhp
msgctxt ""
@@ -6094,7 +6094,7 @@ msgctxt ""
"par_id3155133\n"
"help.text"
msgid "Enter \"0 1/5\" in a cell (without the quotation marks) and press the input key. In the input line above the spreadsheet you will see the value 0.2, which is used for the calculation."
-msgstr ""
+msgstr "Į langelį įveskite \"0 1/5\" (be kabučių) ir spustelėkite įvesties mygtuką. Įvesties eilutėje virš lakšto pamatysite reikšmę 0.2, kuri yra naudojama skaičiavimams"
#: fraction_enter.xhp
msgctxt ""
@@ -6102,7 +6102,7 @@ msgctxt ""
"par_id3145750\n"
"help.text"
msgid "If you enter “0 1/2” AutoCorrect causes the three characters 1, / and 2 to be replaced by a single character, ½. The same applies to 1/4 and 3/4. This replacement is defined in <emph>Tools - AutoCorrect - AutoCorrect Options - Options</emph> tab."
-msgstr ""
+msgstr "Jei įvesite „0 1/2“ Automatinis taisymas visus trys ženklus 1, / ir 2 pakeis į vieną ženklą, ½. Tas pats galioja ir kitoms trupmenoms. Pakeitimas aprašomas <emph>Priemonės → Automatinio taisymo parinktys → Parinktys</emph> ąselėje."
#: fraction_enter.xhp
msgctxt ""
@@ -6110,7 +6110,7 @@ msgctxt ""
"par_id3145367\n"
"help.text"
msgid "If you want to see multi-digit fractions such as \"1/10\", you must change the cell format to the multi-digit fraction view. Open the context menu of the cell, and choose <emph>Format cells. </emph>Select \"Fraction\" from the <emph>Category</emph> field, and then select \"-1234 10/81\". You can then enter fractions such as 12/31 or 12/32 - the fractions are, however, automatically reduced, so that in the last example you would see 3/8."
-msgstr ""
+msgstr "Jei norite matyti kelių skaitmenų trupmenas, tokias kaip \"1/10\", jums reikia pakeisti langelio formatą į kelių skaitmenų trupmenas. Atverkite kontekstinį langelio meniu ir pasirinkite <emph>Langelių formatas.</emph> Pažymėkite „Trupmena“ <emph>Kategorijų</emph> lauke, ir pasirinkite \"-1234 10/81\". Tada galite vesti tokias trupmenas kaip 12/31 ar 12/32, trupmenos automatiškai suprastinamos, tai vietoj paskutinės trupmenos matysite 3/8."
#: goalseek.xhp
msgctxt ""
@@ -6118,7 +6118,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Applying Goal Seek"
-msgstr ""
+msgstr "Sprendiklio pritaikymas"
#: goalseek.xhp
msgctxt ""
@@ -6126,7 +6126,7 @@ msgctxt ""
"bm_id3145068\n"
"help.text"
msgid "<bookmark_value>goal seeking;example</bookmark_value><bookmark_value>equations in goal seek</bookmark_value><bookmark_value>calculating;variables in equations</bookmark_value><bookmark_value>variables;calculating equations</bookmark_value><bookmark_value>examples;goal seek</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>sprendimas;pavyzdys</bookmark_value><bookmark_value>lygtis sprendiklyje</bookmark_value><bookmark_value>skaičiavimai;kintamieji lygtyse</bookmark_value><bookmark_value>kintamieji;lygčių skaičiavimas</bookmark_value><bookmark_value>pavyzdžiai; sprendiklis</bookmark_value>"
#: goalseek.xhp
msgctxt ""
@@ -6134,7 +6134,7 @@ msgctxt ""
"hd_id3145068\n"
"help.text"
msgid "<variable id=\"goalseek\"><link href=\"text/scalc/guide/goalseek.xhp\" name=\"Applying Goal Seek\">Applying Goal Seek</link></variable>"
-msgstr ""
+msgstr "<variable id=\"goalseek\"><link href=\"text/scalc/guide/goalseek.xhp\" name=\"Applying Goal Seek\">Sprendiklio pritaikymas</link></variable>"
#: goalseek.xhp
msgctxt ""
@@ -6142,7 +6142,7 @@ msgctxt ""
"par_id3145171\n"
"help.text"
msgid "With the help of Goal Seek you can calculate a value that, as part of a formula, leads to the result you specify for the formula. You thus define the formula with several fixed values and one variable value and the result of the formula."
-msgstr ""
+msgstr "Su sprendiklio pagalba jūs galite apskaičiuoti reikšmę kurią galite įterpti į formulę. Su sprendikliu galite apibrėžti formulę su sutvarkytomis reikšmėmis, vienu kintamuoju ir formulės rezultatu."
#: goalseek.xhp
msgctxt ""
@@ -6150,7 +6150,7 @@ msgctxt ""
"hd_id3153966\n"
"help.text"
msgid "Goal Seek Example"
-msgstr ""
+msgstr "Sprendiklio sprendimo pavyzdys."
#: goalseek.xhp
msgctxt ""
@@ -6158,7 +6158,7 @@ msgctxt ""
"par_id3150871\n"
"help.text"
msgid "To calculate annual interest (I), create a table with the values for the capital (C), number of years (n), and interest rate (i). The formula is:"
-msgstr ""
+msgstr "Jei norite apskaičiuoti metines palūkanas, sukurkite lentelė su trim stulpeliais: kapitalu (C), metų skaičiumi (n) ir palūkanų norma (i). Formulė atrodo taip:"
#: goalseek.xhp
msgctxt ""
@@ -6166,7 +6166,7 @@ msgctxt ""
"par_id3152596\n"
"help.text"
msgid "I = C * n* i"
-msgstr ""
+msgstr "I = C * n* i"
#: goalseek.xhp
msgctxt ""
@@ -6174,7 +6174,7 @@ msgctxt ""
"par_id3155335\n"
"help.text"
msgid "Let us assume that the interest rate <item type=\"literal\">i</item> of 7.5% and the number of years <item type=\"literal\">n</item> (1) will remain constant. However, you want to know how much the investment capital <item type=\"literal\">C</item> would have to be modified in order to attain a particular return <item type=\"literal\">I</item>. For this example, calculate how much capital <item type=\"literal\">C</item> would be required if you want an annual return of $15,000."
-msgstr ""
+msgstr "Įsivaizduokime, kad palūkanų norma <item type=\"literal\">i</item> yra 7.5%, metų skaičius <item type=\"literal\">n</item> (1) liks pastovus. Tačiau jūs norite sužinoti investicinį kapitalą <item type=\"literal\">C</item>, kuris turės būt koreguojamas norint gauti skirtingą rezultatą <item type=\"literal\">I</item>. Pavyzdžiui apskaičiuokite koks turi būti kapitalas <item type=\"literal\">C</item>, kad metinė grąža būtų $15,000."
#: goalseek.xhp
msgctxt ""
@@ -6182,7 +6182,7 @@ msgctxt ""
"par_id3155960\n"
"help.text"
msgid "Enter each of the values for Capital <item type=\"literal\">C</item> (an arbitrary value like <item type=\"literal\">$100,000</item>), number of years <item type=\"literal\">n </item>(<item type=\"literal\">1</item>), and interest rate <item type=\"literal\">i</item> (<item type=\"literal\">7.5%</item>) in one cell each. Enter the formula to calculate the interest <item type=\"literal\">I</item> in another cell. Instead of <item type=\"literal\">C</item>, <item type=\"literal\">n</item>, and <item type=\"literal\">i</item> use the <link href=\"text/scalc/guide/relativ_absolut_ref.xhp\">reference to the cell</link> with the corresponding value."
-msgstr ""
+msgstr "Įveskite visų kapitalų reikšmes <item type=\"literal\">C</item> (grubiai tariant apie <item type=\"literal\">$100,000</item>), metų skaičių <item type=\"literal\">n</item> (<item type=\"literal\">1</item>), ir palūkanų normą<item type=\"literal\">i</item> (<item type=\"literal\">7.5%</item>) po kartą į langelį. Į atskirą langelį įveskite palūkanų <item type=\"literal\">I</item> skaičiavimo formulę. Formulėje vietoj <item type=\"literal\">C</item>, <item type=\"literal\">n</item>, ir <item type=\"literal\">i</item> naudokite <link href=\"text/scalc/guide/relativ_absolut_ref.xhp\">langelių koordinates</link> ."
#: goalseek.xhp
msgctxt ""
@@ -6190,7 +6190,7 @@ msgctxt ""
"par_id3147001\n"
"help.text"
msgid "Place the cursor in the cell containing the interest <item type=\"literal\">I</item>, and choose <emph>Tools - Goal Seek</emph>. The <emph>Goal Seek</emph> dialog appears."
-msgstr ""
+msgstr "Užveskite žymeklį ant langelio su palūkanomis <item type=\"literal\">I</item>, ir pasirinkite <emph>Priemonės → Sprendiklis</emph>. Atsivers <emph>Sprendiklio</emph> dialogo langas."
#: goalseek.xhp
msgctxt ""
@@ -6198,7 +6198,7 @@ msgctxt ""
"par_id3150088\n"
"help.text"
msgid "The correct cell is already entered in the field <emph>Formula Cell</emph>."
-msgstr ""
+msgstr "<emph>Paskirties langelyje</emph> jau turėtų būt įvestos formulės langelio koordinatės."
#: goalseek.xhp
msgctxt ""
@@ -6206,7 +6206,7 @@ msgctxt ""
"par_id3166426\n"
"help.text"
msgid "Place the cursor in the field <emph>Variable Cell</emph>. In the sheet, click in the cell that contains the value to be changed, in this example it is the cell with the capital value <item type=\"literal\">C</item>."
-msgstr ""
+msgstr "Užveskite žymeklį ant laukelio <emph>Keičiami langeliai</emph>. Lakšte spustelėkite ant langelio kurio reikšmę norite pakeisti, šiuo pavyzdžiu spustelėkite langelį kuriame yra kapitalo reikšmė <item type=\"literal\">C</item>."
#: goalseek.xhp
msgctxt ""
@@ -6214,7 +6214,7 @@ msgctxt ""
"par_id3150369\n"
"help.text"
msgid "Enter the expected result of the formula in the <emph>Target Value</emph> text box. In this example, the value is 15,000. Click <emph>OK</emph>."
-msgstr ""
+msgstr "<emph>Reikšmės</emph> laukelyje įveskite norima formulės rezultatą. Šiuo atveju įveskite 15,000 ir spustelėkite mygtuką <emph>Gerai</emph>."
#: goalseek.xhp
msgctxt ""
@@ -6222,7 +6222,7 @@ msgctxt ""
"par_id3146978\n"
"help.text"
msgid "A dialog appears informing you that the Goal Seek was successful. Click <emph>Yes</emph> to enter the result in the cell with the variable value."
-msgstr ""
+msgstr "Atsivėres dialogo langas jums praneš, kad sprendimas buvo sėkmingas. Spustelėkite mygtuką <emph>Išlaikyti rezultatą</emph> jei norite pakeista reikšmę palikti langelyje."
#: goalseek.xhp
msgctxt ""
@@ -6230,7 +6230,7 @@ msgctxt ""
"par_id3149409\n"
"help.text"
msgid "<link href=\"text/scalc/01/06040000.xhp\" name=\"Goal Seek\">Goal Seek</link>"
-msgstr ""
+msgstr "<link href=\"text/scalc/01/06040000.xhp\" name=\"Goal Seek\">Sprendiklis</link>"
#: html_doc.xhp
msgctxt ""
@@ -6238,7 +6238,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Saving and Opening Sheets in HTML"
-msgstr ""
+msgstr "Lakštų saugojimas ir atvėrimas HTML formatu."
#: html_doc.xhp
msgctxt ""
@@ -6246,7 +6246,7 @@ msgctxt ""
"bm_id3150542\n"
"help.text"
msgid "<bookmark_value>HTML; sheets</bookmark_value><bookmark_value>sheets; HTML</bookmark_value><bookmark_value>saving; sheets in HTML</bookmark_value><bookmark_value>opening; sheets in HTML</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>HTML; lakštai</bookmark_value><bookmark_value>lakštai; HTML</bookmark_value><bookmark_value>saugojimas; lakštai HTML</bookmark_value><bookmark_value>atvėrimas; lakštai HTML</bookmark_value>"
#: html_doc.xhp
msgctxt ""
@@ -6254,7 +6254,7 @@ msgctxt ""
"hd_id3150542\n"
"help.text"
msgid "<variable id=\"html_doc\"><link href=\"text/scalc/guide/html_doc.xhp\" name=\"Saving and Opening Sheets in HTML\">Saving and Opening Sheets in HTML</link></variable>"
-msgstr ""
+msgstr "<variable id=\"html_doc\"><link href=\"text/scalc/guide/html_doc.xhp\" name=\"Saving and Opening Sheets in HTML\">Lakštų saugojimas ir atvėrimas HTML formatu.</link></variable>"
#: html_doc.xhp
msgctxt ""
@@ -6262,7 +6262,7 @@ msgctxt ""
"hd_id3154124\n"
"help.text"
msgid "Saving Sheets in HTML"
-msgstr ""
+msgstr "Lakštų saugojimas HTML formatu"
#: html_doc.xhp
msgctxt ""
@@ -6270,7 +6270,7 @@ msgctxt ""
"par_id3145785\n"
"help.text"
msgid "<item type=\"productname\">%PRODUCTNAME</item> Calc saves all the sheets of a Calc document together as an HTML document. At the beginning of the HTML document, a heading and a list of hyperlinks are automatically added which lead to the individual sheets within the document."
-msgstr ""
+msgstr "<item type=\"productname\">„%PRODUCTNAME“</item> Skaičiuoklė visus skaičiuoklės dokumento lakštus saugo kartu kaip HTML dokumentą. HTML dokumento pradžioje automatiškai pridedamos antraštės ir visi hipersaitai, taip paliekami individualus lakštai dokumente."
#: html_doc.xhp
msgctxt ""
@@ -6278,7 +6278,7 @@ msgctxt ""
"par_id3155854\n"
"help.text"
msgid "Numbers are shown as written. In addition, in the <SDVAL> HTML tag, the exact internal number value is written so that after opening the HTML document with <item type=\"productname\">%PRODUCTNAME</item> you know you have the exact values."
-msgstr ""
+msgstr "Skaičiai rodomi taip pat kaip ir parašomi. Papildomai <SDVAL>HTML etiketėje yra parašoma ta pati vidinio numerio vertė, kad atvėrus HTML dokumentą naudojant <item type=\"productname\">„%PRODUCTNAME“</item>, jūs žinotumėte tokias pats reikšmes."
#: html_doc.xhp
msgctxt ""
@@ -6286,7 +6286,7 @@ msgctxt ""
"par_id3153188\n"
"help.text"
msgid "To save the current Calc document as HTML, choose <emph>File - Save As</emph>."
-msgstr ""
+msgstr "Norėdami išsaugoti Skaičiuoklės dokumentą HTML formatu, pasirinkite <emph>Failas → Įrašyti kaip</emph>."
#: html_doc.xhp
msgctxt ""
@@ -6294,7 +6294,7 @@ msgctxt ""
"par_id3148645\n"
"help.text"
msgid "In the <emph>File type</emph> list box, in the area with the other <item type=\"productname\">%PRODUCTNAME</item> Calc filters, choose the file type \"HTML Document (<item type=\"productname\">%PRODUCTNAME</item> Calc)\"."
-msgstr ""
+msgstr "<emph>Failo tipo</emph> laukelyje prie kitų <item type=\"productname\">„%PRODUCTNAME“</item> Skaičiuoklės filtrų, pasirinkite failo tipą „HTML Dokumentas(<item type=\"productname\">„%PRODUCTNAME“</item> Skaičiuoklė)“."
#: html_doc.xhp
msgctxt ""
@@ -6302,7 +6302,7 @@ msgctxt ""
"par_id3154729\n"
"help.text"
msgid "Enter a <emph>File name</emph> and click <emph>Save</emph>."
-msgstr ""
+msgstr "Įveskite <emph>Failo pavadinimą</emph> ir spustelėkite mygtuką <emph>Įrašyti</emph>."
#: html_doc.xhp
msgctxt ""
@@ -6310,7 +6310,7 @@ msgctxt ""
"hd_id3149379\n"
"help.text"
msgid "Opening Sheets in HTML"
-msgstr ""
+msgstr "Lakštų atvėrimas HTML formatu."
#: html_doc.xhp
msgctxt ""
@@ -6318,7 +6318,7 @@ msgctxt ""
"par_id3149959\n"
"help.text"
msgid "<item type=\"productname\">%PRODUCTNAME</item> offers various filters for opening HTML files, which you can select under <emph>File - Open</emph> in the <emph>Files of type</emph> list box:"
-msgstr ""
+msgstr "<item type=\"productname\">„%PRODUCTNAME“</item> siūlo daugybę filtrų norint atidaryti failą kuris yra HTML formato, juos galite pasirinkti <emph>Failas → Atverti</emph> <emph>Failo tipo</emph> laukelyje:"
#: html_doc.xhp
msgctxt ""
@@ -6326,7 +6326,7 @@ msgctxt ""
"par_id3146969\n"
"help.text"
msgid "Choose the file type \"HTML Document (<item type=\"productname\">%PRODUCTNAME</item> Calc)\" to open in <item type=\"productname\">%PRODUCTNAME</item> Calc."
-msgstr ""
+msgstr "Pasirinkite failo tipą „HTML Dokumentas(<item type=\"productname\">„%PRODUCTNAME““</item> Skaičiuoklė)“, kad atvertumėte jį <item type=\"productname\">„%PRODUCTNAME“</item> Skaičiuoklėje."
#: html_doc.xhp
msgctxt ""
@@ -6334,7 +6334,7 @@ msgctxt ""
"par_id3155446\n"
"help.text"
msgid "All <item type=\"productname\">%PRODUCTNAME</item> Calc options are now available to you. However, not all options that <item type=\"productname\">%PRODUCTNAME</item> Calc offers for editing can be saved in HTML format."
-msgstr ""
+msgstr "Visos <item type=\"productname\">„%PRODUCTNAME“</item> Skaičiuoklės parinktys dabar yra jums prieinamos. Tačiau ne visi <item type=\"productname\">„%PRODUCTNAME“</item> Skaičiuoklės siūlomi koregavimai gali būti išsaugomi HTML formatu. "
#: html_doc.xhp
msgctxt ""
@@ -6342,7 +6342,7 @@ msgctxt ""
"par_id3150370\n"
"help.text"
msgid "<link href=\"text/shared/01/01020000.xhp\" name=\"File - Open\">File - Open</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/01020000.xhp\" name=\"File - Open\">Failas → Atverti</link>"
#: html_doc.xhp
msgctxt ""
@@ -6350,7 +6350,7 @@ msgctxt ""
"par_id3150199\n"
"help.text"
msgid "<link href=\"text/shared/01/01070000.xhp\" name=\"File - Save As\">File - Save As</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/01070000.xhp\" name=\"File - Save As\">Failas → Įrašyti kaip</link>"
#: integer_leading_zero.xhp
msgctxt ""
@@ -6358,7 +6358,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Entering a Number with Leading Zeros"
-msgstr ""
+msgstr "Skaičių įvedimas su nuliu priekyje"
#: integer_leading_zero.xhp
msgctxt ""
@@ -6366,7 +6366,7 @@ msgctxt ""
"bm_id3147560\n"
"help.text"
msgid "<bookmark_value>zero values; entering leading zeros</bookmark_value> <bookmark_value>numbers; with leading zeros</bookmark_value> <bookmark_value>leading zeros</bookmark_value> <bookmark_value>integers with leading zeros</bookmark_value> <bookmark_value>cells; changing text/number formats</bookmark_value> <bookmark_value>formats; changing text/number</bookmark_value> <bookmark_value>text in cells; changing to numbers</bookmark_value> <bookmark_value>converting;text with leading zeros, into numbers</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value> nulis reikšmių; nulio priekyje įvedimas</bookmark_value> <bookmark_value>skaičiai; su nuliu priekyje</bookmark_value> <bookmark_value>nulis priekyje</bookmark_value> <bookmark_value>kintamieji su nuliu priekyje</bookmark_value> <bookmark_value>langeliai; teksto/skaičių formato keitimas</bookmark_value> <bookmark_value>formatai; teksto/skaičių keitimas</bookmark_value> <bookmark_value>tekstas langeliuose; keitimas į skaičius</bookmark_value> <bookmark_value>konvertavimas;skaičiai su nuliu priekyje, į skaičius</bookmark_value>"
#: integer_leading_zero.xhp
msgctxt ""
@@ -6374,7 +6374,7 @@ msgctxt ""
"hd_id3147560\n"
"help.text"
msgid "<variable id=\"integer_leading_zero\"><link href=\"text/scalc/guide/integer_leading_zero.xhp\" name=\"Entering a Number with Leading Zeros\">Entering a Number with Leading Zeros</link></variable>"
-msgstr ""
+msgstr "<variable id=\"integer_leading_zero\"><link href=\"text/scalc/guide/integer_leading_zero.xhp\" name=\"Entering a Number with Leading Zeros\">Skaičių įvedimas su nuliu priekyje</link></variable>"
#: integer_leading_zero.xhp
msgctxt ""
@@ -6382,7 +6382,7 @@ msgctxt ""
"par_id3153194\n"
"help.text"
msgid "There are various ways to enter integers starting with a zero:"
-msgstr ""
+msgstr "Yra ne vienas būdas parašyti kintamąjį su nuliu priekyje."
#: integer_leading_zero.xhp
msgctxt ""
@@ -6390,7 +6390,7 @@ msgctxt ""
"par_id3146119\n"
"help.text"
msgid "Enter the number as text. The easiest way is to enter the number starting with an apostrophe (for example, <item type=\"input\">'0987</item>). The apostrophe will not appear in the cell, and the number will be formatted as text. Because it is in text format, however, you cannot calculate with this number."
-msgstr ""
+msgstr "Įveskite skaičių kaip tekstą. Tai yra lengviausias būdas, langelį pradėkite su apostrofu (pavyzdžiui <item type=\"input\">'0987</item>). Apostrofas langelyje rodomas nebus, o skaičius bus konvertuotas į tekstą. Kadangi tai yra tekstas, jokių skaičiavimu su šiuo skaičiumi atlikti neįmanoma."
#: integer_leading_zero.xhp
msgctxt ""
@@ -6398,7 +6398,7 @@ msgctxt ""
"par_id3154013\n"
"help.text"
msgid "Format a cell with a number format such as <item type=\"input\">\\0000</item>. This format can be assigned in the <emph>Format code</emph> field under the <emph>Format - Cells - Numbers</emph> tab, and defines the cell display as \"always put a zero first and then the integer, having at least three places, and filled with zeros at the left if less than three digits\"."
-msgstr ""
+msgstr "Formatuokite langelį į <item type=\"input\">\\0000</item> formatą. Šį formatą galite nustatyti <emph>Formato kodo</emph> laukelyje, kuris yra <emph>Formatas → langeliai → skaičiai</emph> ąselėje. Šis kodas apibrėžia langelio rodymai kaip „ visada rašyti nulį priekyje, tada kintamąjį kuris turi bent tris skaitmenis ir tada užpildyti kairę pusę nuliu."
#: integer_leading_zero.xhp
msgctxt ""
@@ -6406,7 +6406,7 @@ msgctxt ""
"par_id3153158\n"
"help.text"
msgid "If you want to apply a numerical format to a column of numbers in text format (for example, text \"000123\" becomes number \"123\"), do the following:"
-msgstr ""
+msgstr "Jei norite skaičių formatą pritaikyti visam stulpeliui skaičių kurie parašyti teksto formatu (pavyzdžiui „000123“ taptų „123“), sekite šiuos žingsnius:"
#: integer_leading_zero.xhp
msgctxt ""
@@ -6414,7 +6414,7 @@ msgctxt ""
"par_id3149377\n"
"help.text"
msgid "Select the column in which the digits are found in text format. Set the cell format in that column as \"Number\"."
-msgstr ""
+msgstr "Pažymėkite stulpelį kuriame surašyti skaičiai teksto formatu. Skaičių formatą stulpelyje pakeiskite į „Skaičių“."
#: integer_leading_zero.xhp
msgctxt ""
@@ -6422,7 +6422,7 @@ msgctxt ""
"par_id3154944\n"
"help.text"
msgid "Choose <emph>Edit - Find & Replace</emph>"
-msgstr ""
+msgstr "Pasirinkite <emph>Taisa → Ieškoti ir keisti</emph>"
#: integer_leading_zero.xhp
msgctxt ""
@@ -6430,7 +6430,7 @@ msgctxt ""
"par_id3154510\n"
"help.text"
msgid "In the <emph>Find</emph> box, enter <item type=\"input\">^[0-9]</item>"
-msgstr ""
+msgstr "<emph>Ko ieškoti</emph> laukelyje įveskite <item type=\"input\">^[0-9]</item>"
#: integer_leading_zero.xhp
msgctxt ""
@@ -6438,7 +6438,7 @@ msgctxt ""
"par_id3155068\n"
"help.text"
msgid "In the <emph>Replace</emph> box, enter <item type=\"input\">&</item>"
-msgstr ""
+msgstr "<emph>Kuo pakeisti</emph> laukelyje įveskite <item type=\"input\">&</item>"
#: integer_leading_zero.xhp
msgctxt ""
@@ -6446,7 +6446,7 @@ msgctxt ""
"par_id3149018\n"
"help.text"
msgid "Check <emph>Regular expressions</emph>"
-msgstr ""
+msgstr "Pažymėkite žymimąjį langelį <emph>Reguliarieji reiškiniai</emph>"
#: integer_leading_zero.xhp
msgctxt ""
@@ -6454,7 +6454,7 @@ msgctxt ""
"par_id3156382\n"
"help.text"
msgid "Check <emph>Current selection only</emph>"
-msgstr ""
+msgstr "Pažymėkite žymimąjį langelį <emph>Tik pažymėtoje srityje</emph>"
#: integer_leading_zero.xhp
msgctxt ""
@@ -6462,7 +6462,7 @@ msgctxt ""
"par_id3146916\n"
"help.text"
msgid "Click <emph>Replace All</emph>"
-msgstr ""
+msgstr "Spustelėkite mygtuką <emph>Pakeisti visus</emph>."
#: keyboard.xhp
msgctxt ""
@@ -6470,7 +6470,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Shortcut Keys (%PRODUCTNAME Calc Accessibility)"
-msgstr ""
+msgstr "Spartieji klavišai („%PRODUCTNAME“ Skaičiuoklės Prieinamumas)"
#: keyboard.xhp
msgctxt ""
@@ -6478,7 +6478,7 @@ msgctxt ""
"bm_id3145120\n"
"help.text"
msgid "<bookmark_value>accessibility; %PRODUCTNAME Calc shortcuts</bookmark_value><bookmark_value>shortcut keys;%PRODUCTNAME Calc accessibility</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>prieinamumas; „%PRODUCTNAME“ Skaičiuoklės spartieji klavišai</bookmark_value><bookmark_value>Spartieji klavišai;„%PRODUCTNAME“ Skaičiuoklės prieinamumas</bookmark_value>"
#: keyboard.xhp
msgctxt ""
@@ -6486,7 +6486,7 @@ msgctxt ""
"hd_id3145120\n"
"help.text"
msgid "<variable id=\"keyboard\"><link href=\"text/scalc/guide/keyboard.xhp\" name=\"Shortcut Keys (%PRODUCTNAME Calc Accessibility)\">Shortcut Keys (<item type=\"productname\">%PRODUCTNAME</item> Calc Accessibility)</link></variable>"
-msgstr ""
+msgstr "<variable id=\"keyboard\"><link href=\"text/scalc/guide/keyboard.xhp\" name=\"Shortcut Keys (%PRODUCTNAME Calc Accessibility)\">Spartieji klavišai(<item type=\"productname\">„%PRODUCTNAME“</item> Skaičiuoklės Prieinamumas)</link></variable>"
#: keyboard.xhp
msgctxt ""
@@ -6502,7 +6502,7 @@ msgctxt ""
"hd_id3153360\n"
"help.text"
msgid "Cell Selection Mode"
-msgstr "Langelio atrankos veiksena"
+msgstr "Langelio pažymėjimo veiksena"
#: keyboard.xhp
msgctxt ""
@@ -6510,7 +6510,7 @@ msgctxt ""
"par_id3150870\n"
"help.text"
msgid "<image id=\"img_id3150439\" src=\"formula/res/refinp1.png\" width=\"0.1327inch\" height=\"0.1327inch\"><alt id=\"alt_id3150439\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3150439\" src=\"formula/res/refinp1.png\" width=\"0.1327inch\" height=\"0.1327inch\"><alt id=\"alt_id3150439\">Piktograma</alt></image>"
#: keyboard.xhp
msgctxt ""
@@ -6518,7 +6518,7 @@ msgctxt ""
"par_id3154319\n"
"help.text"
msgid "In a text box that has a button to minimize the dialog, press <item type=\"keycode\">F2</item> to enter the cell selection mode. Select any number of cells, then press <item type=\"keycode\">F2</item> again to show the dialog."
-msgstr "Žymekliui esant dialogo lango teksto laukelyje, kuris turi mygtuką Parinkti ir spustelėjus klavišą <item type=\"keycode\">F2</item>, dialogo langas sumažinamas iki to teksto laukelio. Pasirinkus lakšto sritį ir dar kartą spustelėjus klavišą <item type=\"keycode\">F2</item> dialogo langas vėl atveriamas."
+msgstr "Žymekliui esant dialogo lango teksto laukelyje, prie kurio yra mygtukas Suskleisti ir spustelėjus klavišą <item type=\"keycode\">F2</item>, dialogo langas sumažinamas iki to teksto laukelio. Pasirinkus lakšto sritį ir dar kartą spustelėjus klavišą <item type=\"keycode\">F2</item> dialogo langas vėl išskleidžiamas."
#: keyboard.xhp
msgctxt ""
@@ -6526,7 +6526,7 @@ msgctxt ""
"par_id3145272\n"
"help.text"
msgid "In the cell selection mode, you can use the common navigation keys to select cells."
-msgstr "Langelio atrankos veiksenoje langelių atrankai galite naudoti įprastus naršymo klavišus."
+msgstr "Langelio pažymėjimo veiksenoje langelių žymėjimui galite naudoti įprastus naršymo klavišus."
#: keyboard.xhp
msgctxt ""
@@ -6550,7 +6550,7 @@ msgctxt ""
"par_id3147394\n"
"help.text"
msgid "Press <item type=\"keycode\">F6</item> or <item type=\"keycode\">Shift+F6</item> until the vertical or horizontal outline window has the focus."
-msgstr "Sparčiuoju klavišu <item type=\"keycode\">F6</item> arba <item type=\"keycode\">Lyg2+F6</item> židinys perkeliamas į kitą valdiklių grupę ar dialogo lango elementą vertikaliai arba horizontaliai."
+msgstr "Sparčiuoju klavišu <item type=\"keycode\">F6</item> arba <item type=\"keycode\">Lyg2 + F6</item> židinys perkeliamas į kitą valdiklių grupę ar dialogo lango elementą vertikaliai arba horizontaliai."
#: keyboard.xhp
msgctxt ""
@@ -6566,7 +6566,7 @@ msgctxt ""
"par_id3156286\n"
"help.text"
msgid "<item type=\"keycode\">Shift+Tab</item> - cycle through all visible buttons in the opposite direction."
-msgstr "Sparčiuoju klavišu <item type=\"keycode\">Lyg2+Tab</item> židinys perkeliamas į kitą mygtuką arba dialogo lango elementą priešinga kryptimi."
+msgstr "Sparčiuoju klavišu <item type=\"keycode\">Lyg2 + Tab</item> židinys perkeliamas į kitą mygtuką arba dialogo lango elementą priešinga kryptimi."
#: keyboard.xhp
msgctxt ""
@@ -6590,7 +6590,7 @@ msgctxt ""
"par_id3155446\n"
"help.text"
msgid "Press <item type=\"keycode\">Enter</item> to activate the focused button."
-msgstr "Klavišu <item type=\"keycode\"> Įvesti </item> aktyvuojamas židinio mygtukas."
+msgstr "Klavišu <item type=\"keycode\">Įvesti</item> aktyvuojamas židinio mygtukas."
#: keyboard.xhp
msgctxt ""
@@ -6598,7 +6598,7 @@ msgctxt ""
"par_id3154253\n"
"help.text"
msgid "Use <item type=\"keycode\">Up</item>, <item type=\"keycode\">Down</item>, <item type=\"keycode\">Left</item>, or <item type=\"keycode\">Right</item> arrow to cycle through all buttons in the current level."
-msgstr "Klavišais <item type=\"keycode\">Aukštyn</item>, <item type=\"keycode\">Žemyn</item>, <item type=\"keycode\">Kairėn</item>, arba <item type=\"keycode\">Dešinėn</item> pereinama į kitą vykdomojo lygio mygtuką nurodyta kryptimi."
+msgstr "Klavišais <item type=\"keycode\">Aukštyn</item>, <item type=\"keycode\">Žemyn</item>, <item type=\"keycode\">Kairėn</item> arba <item type=\"keycode\">Dešinėn</item> pereinama į kitą vykdomojo lygio mygtuką pasirinkta kryptimi."
#: keyboard.xhp
msgctxt ""
@@ -6622,7 +6622,7 @@ msgctxt ""
"par_id3155333\n"
"help.text"
msgid "Press <item type=\"keycode\">F6</item> until the <emph>Drawing</emph> toolbar is selected."
-msgstr "Spausdami klavišą <item type=\"keycode\">F6</item> perkeliate židinį į <emph>Grafikos objekto</emph> mygtukų juostą."
+msgstr "Spaudinėkite klavišą <item type=\"keycode\">F6</item> kol perkelsite židinį į <emph>Grafikos objekto</emph> mygtukų juostą."
#: keyboard.xhp
msgctxt ""
@@ -6630,7 +6630,7 @@ msgctxt ""
"par_id3150345\n"
"help.text"
msgid "If the selection tool is active, press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Enter. This selects the first drawing object or graphic in the sheet."
-msgstr "Rodyklių klavišų pagalba pasirinkite norimą mygtuką ir paspauskite klavišus <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Vald</defaultinline></switchinline>+Įvesti. Šis spartusis klavišas leidžia pasirinkti mygtuką Grafikos objekto juostoje arba grafikos objektą lakšte."
+msgstr "Rodyklių klavišų pagalba pasirinkite norimą mygtuką ir paspauskite klavišus <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Vald</defaultinline></switchinline> + Įvesti. Ši klavišų kombinacija leidžia pasirinkti mygtuką Grafikos objekto juostoje arba grafikos objektą lakšte."
#: keyboard.xhp
msgctxt ""
@@ -6638,7 +6638,7 @@ msgctxt ""
"par_id3159240\n"
"help.text"
msgid "With <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F6 you set the focus to the document."
-msgstr "Spausdami klavišus <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Vald</defaultinline></switchinline>+F6 perkeliate židinį į dokumentą."
+msgstr "Spausdami klavišų kombinaciją <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Vald</defaultinline></switchinline>+F6 perkeliate židinį į dokumentą."
#: keyboard.xhp
msgctxt ""
@@ -6646,7 +6646,7 @@ msgctxt ""
"par_id3155379\n"
"help.text"
msgid "Now you can use <item type=\"keycode\">Tab</item> to select the next drawing object or graphic and <item type=\"keycode\">Shift+Tab</item> to select the previous one."
-msgstr "Spasudami klavišą <item type=\"keycode\">Tab</item> pažymite kitą grafikos objektą, o spausdami klavišus <item type=\"keycode\">Lyg2+Tab</item>pažymite ankstesnį grafikos objektą."
+msgstr "Spausdami klavišą <item type=\"keycode\">Tab</item> pažymite kitą grafikos objektą, o spausdami klavišus <item type=\"keycode\">Lyg2 + Tab</item> pažymite ankstesnį grafikos objektą."
#: line_fix.xhp
msgctxt ""
@@ -6654,7 +6654,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Freezing Rows or Columns as Headers"
-msgstr ""
+msgstr "Eilučių ir stulpelių fiksavimas"
#: line_fix.xhp
msgctxt ""
@@ -6662,7 +6662,7 @@ msgctxt ""
"bm_id3154684\n"
"help.text"
msgid "<bookmark_value>tables; freezing</bookmark_value> <bookmark_value>title rows; freezing during table split</bookmark_value> <bookmark_value>rows; freezing</bookmark_value> <bookmark_value>columns; freezing</bookmark_value> <bookmark_value>freezing rows or columns</bookmark_value> <bookmark_value>headers; freezing during table split</bookmark_value> <bookmark_value>scrolling prevention in tables</bookmark_value> <bookmark_value>windows; splitting</bookmark_value> <bookmark_value>tables; splitting windows</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>lentelės; fiksavimas</bookmark_value> <bookmark_value>pavadinimo eilutė; lentelės dalinimo fiksavimas</bookmark_value> <bookmark_value>eilutės; fiksavimas</bookmark_value> <bookmark_value>stulpelio; fiksavimas</bookmark_value> <bookmark_value>eilučių ar stulpelių fiksavimas</bookmark_value> <bookmark_value>antraštės; fiksavimas dalinant lentelę</bookmark_value> <bookmark_value>slinkimo draudimas lentelėse</bookmark_value> <bookmark_value>langai; dalinimas</bookmark_value> <bookmark_value>lentelės; langelių dalinimas</bookmark_value>"
#: line_fix.xhp
msgctxt ""
@@ -6670,7 +6670,7 @@ msgctxt ""
"hd_id3154684\n"
"help.text"
msgid "<variable id=\"line_fix\"><link href=\"text/scalc/guide/line_fix.xhp\" name=\"Freezing Rows or Columns as Headers\">Freezing Rows or Columns as Headers</link> </variable>"
-msgstr ""
+msgstr "<variable id=\"line_fix\"><link href=\"text/scalc/guide/line_fix.xhp\" name=\"Freezing Rows or Columns as Headers\">Eilučių ir stulpelių fiksavimas</link></variable>"
#: line_fix.xhp
msgctxt ""
@@ -6678,7 +6678,7 @@ msgctxt ""
"par_id3148576\n"
"help.text"
msgid "If you have long rows or columns of data that extend beyond the viewable area of the sheet, you can freeze some rows or columns, which allows you to see the frozen columns or rows as you scroll through the rest of the data."
-msgstr ""
+msgstr "Jei turite ilgas eilutes ar stulpelius kurie išsiplečia už matomos lakšto dalies, jūs galite fiksuoti tas eilutes ar stulpelius, tai jums leis slinkti žemyn ar į šonus ir toliau matyti fiksuotas eilutes ar stulpelius."
#: line_fix.xhp
msgctxt ""
@@ -6686,7 +6686,7 @@ msgctxt ""
"par_id3156441\n"
"help.text"
msgid "Select the row below, or the column to the right of the row or column that you want to be in the frozen region. All rows above, or all columns to the left of the selection are frozen."
-msgstr ""
+msgstr "Pažymėkite eilute esančią žemiau arba stulpelį esantį dešinėje nuo eilutės ar stulpelio kurį norite fiksuoti. Visos eilutės virš pasirinktos arba visi stulpeliai į kairę nuo pasirinkto bus užfiksuoti."
#: line_fix.xhp
msgctxt ""
@@ -6694,7 +6694,7 @@ msgctxt ""
"par_id3153158\n"
"help.text"
msgid "To freeze both horizontally and vertically, select the <emph>cell</emph> that is below the row and to the right of the column that you want to freeze."
-msgstr ""
+msgstr "Jei norite fiksuoti horizontaliai ir vertikaliai, pažymėkite <emph>langelį</emph> kuris yra žemiau normos eilutės ir į dešinę nuo norimo užfiksuoti stulpelio."
#: line_fix.xhp
msgctxt ""
@@ -6702,7 +6702,7 @@ msgctxt ""
"par_id3156286\n"
"help.text"
msgid "Choose <item type=\"menuitem\">View - Freeze Cells - Freeze Rows and Columns</item>."
-msgstr ""
+msgstr "Pasirinkite <item type=\"menuitem\">Rodymas → Fiksuot langelius → Fiksuoti eilutes ir stulpelius</item>."
#: line_fix.xhp
msgctxt ""
@@ -6710,7 +6710,7 @@ msgctxt ""
"par_id3151073\n"
"help.text"
msgid "To deactivate, choose <item type=\"menuitem\">View - Freeze Cells - Freeze Rows and Columns</item> again."
-msgstr ""
+msgstr "Jei norite nuimti fiksavimą vėl pasirinkite <item type=\"menuitem\">Rodymas → Fiksuot langelius → Fiksuoti eilutes ir stulpelius</item>."
#: line_fix.xhp
msgctxt ""
@@ -6718,7 +6718,7 @@ msgctxt ""
"par_id3155335\n"
"help.text"
msgid "If the area defined is to be scrollable, apply the <item type=\"menuitem\">View - Split Window</item> command."
-msgstr ""
+msgstr "Jie laukas kuriam norite pritaikyti fiksavimą yra slenkamas pasirinkite komandą <item type=\"menuitem\">Rodymas → skaidyti langą</item>."
#: line_fix.xhp
msgctxt ""
@@ -6726,7 +6726,7 @@ msgctxt ""
"par_id3147345\n"
"help.text"
msgid "If you want to print a certain row on all pages of a document, choose <item type=\"menuitem\">Format - Print ranges - Edit</item>."
-msgstr ""
+msgstr "Jei norite atspausdinti pasirinktą eilutę visuose dokumento lapuose, pasirinkite <item type=\"menuitem\">Formatas → Spausdinimo sritis → Taisyti</item>."
#: line_fix.xhp
msgctxt ""
@@ -6734,7 +6734,7 @@ msgctxt ""
"par_id3147004\n"
"help.text"
msgid "<link href=\"text/scalc/01/07090000.xhp\" name=\"View - Freeze Cells - Freeze Rows and Columns\">View - Freeze Cells - Freeze Rows and Columns</link>"
-msgstr ""
+msgstr "<link href=\"text/scalc/01/07090000.xhp\" name=\"View - Freeze Cells - Freeze Rows and Columns\">Rodymas → Fiksuoti langelius → Fiksuoti eilutes ir stulpelius</link>"
#: line_fix.xhp
msgctxt ""
@@ -6742,7 +6742,7 @@ msgctxt ""
"par_id3150088\n"
"help.text"
msgid "<link href=\"text/scalc/01/07080000.xhp\" name=\"View - Split\">View - Split Window</link>"
-msgstr ""
+msgstr "<link href=\"text/scalc/01/07080000.xhp\" name=\"View - Split\">Rodymas → Skaidyti langą</link>"
#: line_fix.xhp
msgctxt ""
@@ -6750,7 +6750,7 @@ msgctxt ""
"par_id3150304\n"
"help.text"
msgid "<link href=\"text/scalc/01/05080300.xhp\" name=\"Format - Print ranges - Edit\">Format - Print ranges - Edit</link>"
-msgstr ""
+msgstr "<link href=\"text/scalc/01/05080300.xhp\" name=\"Format - Print ranges - Edit\">Formatas → Spausdinimo sritis → Taisyti</link>"
#: main.xhp
msgctxt ""
@@ -6758,7 +6758,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Instructions for Using $[officename] Calc"
-msgstr ""
+msgstr "„$[officename]“ Skaičiuoklės naudojimo instrukcijos"
#: main.xhp
msgctxt ""
@@ -6766,7 +6766,7 @@ msgctxt ""
"bm_id3150770\n"
"help.text"
msgid "<bookmark_value>HowTos for Calc</bookmark_value><bookmark_value>instructions; $[officename] Calc</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>HowTos skaičiuoklei</bookmark_value><bookmark_value>instrukcijos; „$[officename]“ Skaičiuoklė</bookmark_value>"
#: main.xhp
msgctxt ""
@@ -6774,7 +6774,7 @@ msgctxt ""
"hd_id3150770\n"
"help.text"
msgid "<variable id=\"main\"><link href=\"text/scalc/guide/main.xhp\" name=\"Instructions for Using $[officename] Calc\">Instructions for Using $[officename] Calc</link></variable>"
-msgstr ""
+msgstr "<variable id=\"main\"><link href=\"text/scalc/guide/main.xhp\" name=\"Instructions for Using $[officename] Calc\">„$[officename]“ Skaičiuoklės naudojimo instrukcijos</link></variable>"
#: main.xhp
msgctxt ""
@@ -6782,7 +6782,7 @@ msgctxt ""
"hd_id3145748\n"
"help.text"
msgid "Formatting Tables and Cells"
-msgstr ""
+msgstr "Lentelių ir langelių formatavimas"
#: main.xhp
msgctxt ""
@@ -6790,7 +6790,7 @@ msgctxt ""
"hd_id3154022\n"
"help.text"
msgid "Entering Values and Formulas"
-msgstr ""
+msgstr "Reikšmių ir formulių įvedimas"
#: main.xhp
msgctxt ""
@@ -6798,7 +6798,7 @@ msgctxt ""
"hd_id3152899\n"
"help.text"
msgid "Entering References"
-msgstr ""
+msgstr "Nuorodų įvedimas"
#: main.xhp
msgctxt ""
@@ -6806,7 +6806,7 @@ msgctxt ""
"hd_id3155382\n"
"help.text"
msgid "Database Ranges in Tables"
-msgstr ""
+msgstr "Duomenų bazės sritis lentelėse"
#: main.xhp
msgctxt ""
@@ -6814,7 +6814,7 @@ msgctxt ""
"hd_id3159229\n"
"help.text"
msgid "Advanced Calculations"
-msgstr ""
+msgstr "Išplėstiniai skaičiavimai"
#: main.xhp
msgctxt ""
@@ -6822,7 +6822,7 @@ msgctxt ""
"hd_id3153070\n"
"help.text"
msgid "Printing and Print Preview"
-msgstr ""
+msgstr "Spausdinimas ir spausdinimo peržiūra"
#: main.xhp
msgctxt ""
@@ -6830,7 +6830,7 @@ msgctxt ""
"hd_id3150437\n"
"help.text"
msgid "Importing and Exporting Documents"
-msgstr ""
+msgstr "Dokumentų importavimas ir eksportavimas"
#: main.xhp
msgctxt ""
@@ -6838,7 +6838,7 @@ msgctxt ""
"hd_id3166464\n"
"help.text"
msgid "Miscellaneous"
-msgstr ""
+msgstr "Įvairūs"
#: mark_cells.xhp
msgctxt ""
@@ -6846,7 +6846,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Selecting Multiple Cells"
-msgstr ""
+msgstr "Kelių langelių žymėjimas"
#: mark_cells.xhp
msgctxt ""
@@ -6854,7 +6854,7 @@ msgctxt ""
"bm_id3153361\n"
"help.text"
msgid "<bookmark_value>cells; selecting</bookmark_value> <bookmark_value>marking cells</bookmark_value> <bookmark_value>selecting;cells</bookmark_value> <bookmark_value>multiple cells selection</bookmark_value> <bookmark_value>selection modes in spreadsheets</bookmark_value> <bookmark_value>tables; selecting ranges</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>langeliai; žymėjimas</bookmark_value> <bookmark_value>langelių žymėjimas</bookmark_value> <bookmark_value>žymėjimas;langeliai</bookmark_value> <bookmark_value>kelių langelių žymėjimas</bookmark_value> <bookmark_value>žymėjimo būdai skaičiuoklės dokumente</bookmark_value> <bookmark_value>lentelės; langelių bolo žymėjimas</bookmark_value>"
#: mark_cells.xhp
msgctxt ""
@@ -6862,7 +6862,7 @@ msgctxt ""
"hd_id3153361\n"
"help.text"
msgid "<variable id=\"mark_cells\"><link href=\"text/scalc/guide/mark_cells.xhp\" name=\"Selecting Multiple Cells\">Selecting Multiple Cells</link></variable>"
-msgstr ""
+msgstr "<variable id=\"mark_cells\"><link href=\"text/scalc/guide/mark_cells.xhp\" name=\"Selecting Multiple Cells\">Kelių langelių žymėjimas</link></variable>"
#: mark_cells.xhp
msgctxt ""
@@ -6870,7 +6870,7 @@ msgctxt ""
"hd_id3145272\n"
"help.text"
msgid "Select a rectangular range"
-msgstr ""
+msgstr "Pažymėkite stačiakampį langelių bloką"
#: mark_cells.xhp
msgctxt ""
@@ -6878,7 +6878,7 @@ msgctxt ""
"par_id3149261\n"
"help.text"
msgid "With the mouse button pressed, drag from one corner to the diagonally opposed corner of the range."
-msgstr ""
+msgstr "Nuspaudę pelės klavišą, vilkite iš vieno stačiakampio kampo į priešingą."
#: mark_cells.xhp
msgctxt ""
@@ -6886,7 +6886,7 @@ msgctxt ""
"hd_id3151119\n"
"help.text"
msgid "Mark a single cell"
-msgstr ""
+msgstr "Vieno langelio žymėjimas"
#: mark_cells.xhp
msgctxt ""
@@ -6894,7 +6894,7 @@ msgctxt ""
"par_id3146975\n"
"help.text"
msgid "Do one of the following:"
-msgstr ""
+msgstr "Atlikite vieną iš šių veiksmų:"
#: mark_cells.xhp
msgctxt ""
@@ -6902,7 +6902,7 @@ msgctxt ""
"par_id3163710\n"
"help.text"
msgid "Click, then Shift-click the cell."
-msgstr ""
+msgstr "Spustelėkite langelį ir tada spustelėkite jį nuspaudę laikydami Lyg2 klavišą."
#: mark_cells.xhp
msgctxt ""
@@ -6910,7 +6910,7 @@ msgctxt ""
"par_id3149959\n"
"help.text"
msgid "Pressing the mouse button, drag a range across two cells, do not release the mouse button, and then drag back to the first cell. Release the mouse button. You can now move the individual cell by drag and drop."
-msgstr ""
+msgstr "Nuspaudę pelės kalviška vilkite per du langelius, neatleidę klavišo vilkite atgal prie pirmo langelio. Atleiskite klavišą, dabar galite vilktį langelį į kitas vietas vilkimo būdu."
#: mark_cells.xhp
msgctxt ""
@@ -6918,7 +6918,7 @@ msgctxt ""
"hd_id3154942\n"
"help.text"
msgid "Select various dispersed cells"
-msgstr ""
+msgstr "Išsiskirsčiusių langelių žymėjimas."
#: mark_cells.xhp
msgctxt ""
@@ -6926,7 +6926,7 @@ msgctxt ""
"par_id1001200901072060\n"
"help.text"
msgid "Do one of the following:"
-msgstr ""
+msgstr "Atlikite vieną iš šių veiksmų:"
#: mark_cells.xhp
msgctxt ""
@@ -6934,7 +6934,7 @@ msgctxt ""
"par_id3156284\n"
"help.text"
msgid "Mark at least one cell. Then while pressing <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>, click each of the additional cells."
-msgstr ""
+msgstr "Pažymėkite vieną ar daugiau langelių, tada laikydami nuspaudę klavišą <switchinline select=\"sys\"><caseinline select=\"MAC\">Komanda</caseinline><defaultinline>Vald.</defaultinline></switchinline>, spustelėkite ant kitų langelių."
#: mark_cells.xhp
msgctxt ""
@@ -6942,7 +6942,7 @@ msgctxt ""
"par_id1001200901072023\n"
"help.text"
msgid "Click the STD / EXT / ADD area in the status bar until it shows ADD. Now click all cells that you want to select."
-msgstr ""
+msgstr "Spustelėkite Išplėstinės / Atrankinės / Pridėtinės / Blokinės atrankos laukelį ir pasirinkite Pridėtinę atranką."
#: mark_cells.xhp
msgctxt ""
@@ -6950,7 +6950,7 @@ msgctxt ""
"hd_id3146971\n"
"help.text"
msgid "Switch marking mode"
-msgstr ""
+msgstr "Žymėjimo būdo keitimas"
#: mark_cells.xhp
msgctxt ""
@@ -6958,7 +6958,7 @@ msgctxt ""
"par_id3155064\n"
"help.text"
msgid "On the status bar, click the box with the legend STD / EXT / ADD to switch the marking mode:"
-msgstr ""
+msgstr "Būsenos juostoje spustelėkite ant laukelio su skirtingai atrankos būdais ir keiskite atrankos būdą į norimą:"
#: mark_cells.xhp
msgctxt ""
@@ -6966,7 +6966,7 @@ msgctxt ""
"par_id3159264\n"
"help.text"
msgid "Field contents"
-msgstr ""
+msgstr "Įprastinė atranka"
#: mark_cells.xhp
msgctxt ""
@@ -6974,7 +6974,7 @@ msgctxt ""
"par_id3155337\n"
"help.text"
msgid "Effect of clicking the mouse"
-msgstr ""
+msgstr "Pelės pasaudimo poveikis"
#: mark_cells.xhp
msgctxt ""
@@ -6982,7 +6982,7 @@ msgctxt ""
"par_id3149568\n"
"help.text"
msgid "STD"
-msgstr ""
+msgstr "Blokinė atranka"
#: mark_cells.xhp
msgctxt ""
@@ -6990,7 +6990,7 @@ msgctxt ""
"par_id3148486\n"
"help.text"
msgid "A mouse click selects the cell you have clicked on. Unmarks all marked cells."
-msgstr ""
+msgstr "Pelės klavišo spustelėjimas pažymi langelį, bet nuima žymėjimą nuo visų kitų langelių."
#: mark_cells.xhp
msgctxt ""
@@ -6998,7 +6998,7 @@ msgctxt ""
"par_id3150090\n"
"help.text"
msgid "EXT"
-msgstr ""
+msgstr "Išplėstinė atranka"
#: mark_cells.xhp
msgctxt ""
@@ -7006,7 +7006,7 @@ msgctxt ""
"par_id3150305\n"
"help.text"
msgid "A mouse click marks a rectangular range from the current cell to the cell you clicked. Alternatively, Shift-click a cell."
-msgstr ""
+msgstr "Pelės klavišo spustelėjimas pažymi stačiakampį nuo pradinio langelio iki langelio kurį spustelėjote. Veikia taip pat kaip ir žymėjimas naudojant Lyg2 klavišą."
#: mark_cells.xhp
msgctxt ""
@@ -7014,7 +7014,7 @@ msgctxt ""
"par_id3145587\n"
"help.text"
msgid "ADD"
-msgstr ""
+msgstr "Pridėtinė atranka"
#: mark_cells.xhp
msgctxt ""
@@ -7022,7 +7022,7 @@ msgctxt ""
"par_id3154368\n"
"help.text"
msgid "A mouse click in a cell adds it to the already marked cells. A mouse click in a marked cell unmarks it. Alternatively, <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>-click the cells."
-msgstr ""
+msgstr "Pelės klavišo spustelėjimas prideda langelį prie jau pažymėtų langelių. Spustelėjus pažymėta langelį, žymėjimas nuima. Veikia taip pat kaip ir žymėjimas naudojant <switchinline select=\"sys\"><caseinline select=\"MAC\">Komanda</caseinline><defaultinline>Vald.</defaultinline></switchinline> klavišą."
#: mark_cells.xhp
msgctxt ""
@@ -7030,7 +7030,7 @@ msgctxt ""
"par_id3154487\n"
"help.text"
msgid "<link href=\"text/scalc/main0208.xhp\" name=\"Status bar\">Status bar</link>"
-msgstr ""
+msgstr "<link href=\"text/scalc/main0208.xhp\" name=\"Status bar\">Būsenos juosta</link>"
#: matrixformula.xhp
msgctxt ""
@@ -7038,7 +7038,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Entering Matrix Formulas"
-msgstr ""
+msgstr "Matricos formulių įvedimas"
#: matrixformula.xhp
msgctxt ""
@@ -7046,7 +7046,7 @@ msgctxt ""
"bm_id3153969\n"
"help.text"
msgid "<bookmark_value>matrices; entering matrix formulas</bookmark_value><bookmark_value>formulas; matrix formulas</bookmark_value><bookmark_value>inserting;matrix formulas</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>matrica; matricos formulių įvedimas</bookmark_value><bookmark_value>formulės; matricos formulės</bookmark_value><bookmark_value> įvedimas; matricos formulės</bookmark_value>"
#: matrixformula.xhp
msgctxt ""
@@ -7054,7 +7054,7 @@ msgctxt ""
"hd_id3153969\n"
"help.text"
msgid "<variable id=\"matrixformula\"><link href=\"text/scalc/guide/matrixformula.xhp\" name=\"Entering Matrix Formulas\">Entering Matrix Formulas</link></variable>"
-msgstr ""
+msgstr "<variable id=\"matrixformula\"><link href=\"text/scalc/guide/matrixformula.xhp\" name=\"Entering Matrix Formulas\">Matricos formulių įvedimas</link></variable>"
#: matrixformula.xhp
msgctxt ""
@@ -7062,7 +7062,7 @@ msgctxt ""
"par_id3153144\n"
"help.text"
msgid "The following is an example of how you can enter a matrix formula, without going into the details of matrix functions."
-msgstr ""
+msgstr "Toliau matysite pavyzdį kaip įvesti matricos formulę, nesigilinant į matricos funkcijas."
#: matrixformula.xhp
msgctxt ""
@@ -7070,7 +7070,7 @@ msgctxt ""
"par_id3153188\n"
"help.text"
msgid "Assume you have entered 10 numbers in Columns A and B (A1:A10 and B1:B10), and would like to calculate the sum of each row in Column C."
-msgstr ""
+msgstr "Įsivaizduokite, kad jūs įvedėte 10 skaičių į stulpelius A ir B (A1:A10 ir B1:B10) ir norite apskaičiuoti jų sumą stulpelyje C."
#: matrixformula.xhp
msgctxt ""
@@ -7078,7 +7078,7 @@ msgctxt ""
"par_id3154321\n"
"help.text"
msgid "Using the mouse, select the range C1:C10, in which the results are to be displayed."
-msgstr ""
+msgstr "Naudodami pelę pažymėkite langelių bloką C1:C10, į kurį norite įvesti rezultatus."
#: matrixformula.xhp
msgctxt ""
@@ -7086,7 +7086,7 @@ msgctxt ""
"par_id3149260\n"
"help.text"
msgid "Press F2, or click in the input line of the Formula bar."
-msgstr ""
+msgstr "Spustelėkite klavišą F2 arba spustelėkite ant įvesties eilutės."
#: matrixformula.xhp
msgctxt ""
@@ -7094,7 +7094,7 @@ msgctxt ""
"par_id3154944\n"
"help.text"
msgid "Enter an equal sign (=)."
-msgstr ""
+msgstr "Įrašykite lygybės ženklą (=)."
#: matrixformula.xhp
msgctxt ""
@@ -7102,7 +7102,7 @@ msgctxt ""
"par_id3145252\n"
"help.text"
msgid "Select the range A1:A10, which contains the first values for the sum formula."
-msgstr ""
+msgstr "Pažymėkite langelių bloką A1:A10, kuriame yra pirma sumos reikšmė."
#: matrixformula.xhp
msgctxt ""
@@ -7110,7 +7110,7 @@ msgctxt ""
"par_id3144767\n"
"help.text"
msgid "Press the (+) key from the numerical keypad."
-msgstr ""
+msgstr "Įveskite pliuso ženklą (+)."
#: matrixformula.xhp
msgctxt ""
@@ -7118,7 +7118,7 @@ msgctxt ""
"par_id3154018\n"
"help.text"
msgid "Select the numbers in the second column in cells B1:B10."
-msgstr ""
+msgstr "Pažymėkite langelių bloką B1:B10, kuriame yra antra sumos reikšmė."
#: matrixformula.xhp
msgctxt ""
@@ -7126,7 +7126,7 @@ msgctxt ""
"par_id3150716\n"
"help.text"
msgid "End the input with the matrix key combination: Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Enter."
-msgstr ""
+msgstr "Užbaikite įvedimą su matricos klavišų kombinacija: Lyg2+<switchinline select=\"sys\"><caseinline select=\"MAC\">Komanda</caseinline><defaultinline>Vald.</defaultinline></switchinline>+Įvestis."
#: matrixformula.xhp
msgctxt ""
@@ -7134,7 +7134,7 @@ msgctxt ""
"par_id3145640\n"
"help.text"
msgid "The matrix area is automatically protected against modifications, such as deleting rows or columns. It is, however, possible to edit any formatting, such as the cell background."
-msgstr ""
+msgstr "Matricos laukas yra automatiškai apsaugotas nuo pakeitimų, tokių kaip eilučių trynimas ar koregavimas, tačiau langelių formatas gali būti keičiamas."
#: move_dragdrop.xhp
msgctxt ""
@@ -7142,7 +7142,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Moving Cells by Drag-and-Drop"
-msgstr ""
+msgstr "Langelių judinimas vilkimo būdu"
#: move_dragdrop.xhp
msgctxt ""
@@ -7150,7 +7150,7 @@ msgctxt ""
"bm_id3155686\n"
"help.text"
msgid "<bookmark_value>drag and drop; moving cells</bookmark_value><bookmark_value>cells; moving by drag and drop </bookmark_value><bookmark_value>rows;moving by drag and drop</bookmark_value><bookmark_value>columns;moving by drag and drop</bookmark_value><bookmark_value>moving;cells, rows and columns by drag and drop</bookmark_value><bookmark_value>inserting;cells, by drag and drop</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>vilkimas; lnagelių judinimas</bookmark_value><bookmark_value>langeliai; judinimas vilkimu</bookmark_value><bookmark_value>eilutės; judinimas vilkimu</bookmark_value><bookmark_value>stulpeliai; judinimas vilkimu</bookmark_value><bookmark_value>judinimas; langelių, eilučių, stulpelių vilkimas</bookmark_value><bookmark_value>įterpimas; langeliai vilkimu</bookmark_value>"
#: move_dragdrop.xhp
msgctxt ""
@@ -7158,7 +7158,7 @@ msgctxt ""
"hd_id986358\n"
"help.text"
msgid "<variable id=\"move_dragdrop\"><link href=\"text/scalc/guide/move_dragdrop.xhp\">Moving Cells by Drag-and-Drop</link></variable>"
-msgstr ""
+msgstr "<variable id=\"move_dragdrop\"><link href=\"text/scalc/guide/move_dragdrop.xhp\">Langelių judinimas vilkimo būdu</link></variable>"
#: move_dragdrop.xhp
msgctxt ""
@@ -7166,7 +7166,7 @@ msgctxt ""
"par_id2760093\n"
"help.text"
msgid "When you drag-and-drop a selection of cells, rows or columns on a Calc sheet, the cells (including the ones in selected rows or columns) normally overwrite the existing cells in the area where you drop. This is the normal <emph>overwrite mode</emph>."
-msgstr ""
+msgstr "Perkeliant langelių bloką, eilutę ar stulpelį skaičiuoklės lakšte, langeliai (įskaitant pažymėtus langelius) perrašo langelius toje vietoje į kur perkeliami langeliai.Tai normalus <emph>Perrašymo režimas</emph>."
#: move_dragdrop.xhp
msgctxt ""
@@ -7174,7 +7174,7 @@ msgctxt ""
"par_id2760101\n"
"help.text"
msgid "Note that to drag-and-drop entire rows or columns, you must select the rows or columns you want to move (or copy) first, then start dragging from selected cells, not from the row or column headers (cells would be deselected by this)."
-msgstr ""
+msgstr "Atsiminkite, kad jei norite vilkti eilutes ar stulpelius, pirmiausia jūs turite pažymėti eilutes arba stulpelius jūs norite vilkti (arba kopijuoti) ir tik tada pradėti vilkti nuo pažymėtų langelių, ne nuo eilučių ar stulpelių antraščių (taip langeliai bus atžymimami)."
#: move_dragdrop.xhp
msgctxt ""
@@ -7182,7 +7182,7 @@ msgctxt ""
"par_id9527268\n"
"help.text"
msgid "When you hold down the <switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline> key while releasing the mouse button, you enter the <emph>insert mode</emph>."
-msgstr ""
+msgstr "Kai laikote nuspaudę <switchinline select=\"sys\"><caseinline select=\"MAC\">Pasirinkimas</caseinline><defaultinline>Alt</defaultinline></switchinline> klavišą ir paleidžiate pelės klavišą, jūs pradedate <emph>įterpimo būsena</emph>."
#: move_dragdrop.xhp
msgctxt ""
@@ -7190,7 +7190,7 @@ msgctxt ""
"par_id79653\n"
"help.text"
msgid "In insert mode, the existing cells where you drop will be shifted to the right or to the bottom, and the dropped cells are inserted into the now empty positions without overwriting."
-msgstr ""
+msgstr "Įterpimo būsenoje, egzistuojami langeliai kurie buvo paleidimo vietoje bus patraukti į dešinę arba į apačia, o paleisti langeliai įterpiami dabar jau tuščioje vietoje neprarandant duomenų."
#: move_dragdrop.xhp
msgctxt ""
diff --git a/source/lt/helpcontent2/source/text/shared/00.po b/source/lt/helpcontent2/source/text/shared/00.po
index 1db3531d7d0..4426c6de624 100644
--- a/source/lt/helpcontent2/source/text/shared/00.po
+++ b/source/lt/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: 2018-05-22 13:16+0200\n"
-"PO-Revision-Date: 2018-05-01 10:56+0000\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
+"PO-Revision-Date: 2018-05-25 19:47+0000\n"
"Last-Translator: Modestas Rimkus <modestas.rimkus@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: lt\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1525172164.000000\n"
+"X-POOTLE-MTIME: 1527277627.000000\n"
#: 00000001.xhp
msgctxt ""
@@ -397,16 +397,16 @@ msgctxt ""
"00000001.xhp\n"
"hd_id3149670\n"
"help.text"
-msgid "Back"
-msgstr "Atstatyti"
+msgid "Reset"
+msgstr ""
#: 00000001.xhp
msgctxt ""
"00000001.xhp\n"
"par_id3145068\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optionsdialog/revert\">Resets modified values back to the $[officename] default values.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/optionsdialog/revert\">Pakeistos reikšmės atstatomos į numatytąsias „$[officename]“ reiškmes.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optionsdialog/revert\">Resets changes made to the current tab to those applicable when this dialog was opened.</ahelp>"
+msgstr ""
#: 00000001.xhp
msgctxt ""
@@ -552,6 +552,54 @@ msgctxt ""
msgid "<variable id=\"ShiftF1\">Press Shift+F1 and point to a control to learn more about that control.</variable>"
msgstr ""
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"hd_id631527692833772\n"
+"help.text"
+msgid "Options dialog buttons"
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"hd_id831527692839432\n"
+"help.text"
+msgid "OK"
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"par_id471527692844934\n"
+"help.text"
+msgid "Save the changes in the page and close the Options dialog."
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"hd_id261527692850720\n"
+"help.text"
+msgid "Cancel"
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"par_id571527692855533\n"
+"help.text"
+msgid "Close the Options dialog and discard all changes done."
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"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 Options dialog."
+msgstr ""
+
#: 00000002.xhp
msgctxt ""
"00000002.xhp\n"
@@ -5279,7 +5327,7 @@ msgctxt ""
"par_id389416\n"
"help.text"
msgid "<variable id=\"webhtml\">Choose <emph>File - Preview in Web Browser</emph></variable>"
-msgstr ""
+msgstr "<variable id=\"webhtml\">Pasirinkite komandas <emph>Failas → Peržiūrėti naršyklėje</emph></variable>"
#: 00000401.xhp
msgctxt ""
@@ -5335,7 +5383,7 @@ msgctxt ""
"par_id3149140\n"
"help.text"
msgid "Key Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+N"
-msgstr ""
+msgstr "Paspauskite klavišų kombinaciją <emph>Lyg2+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Vald</defaultinline></switchinline>+N</emph>"
#: 00000401.xhp
msgctxt ""
@@ -5431,7 +5479,7 @@ msgctxt ""
"par_id3146137\n"
"help.text"
msgid "Choose <emph>File - Open</emph>"
-msgstr ""
+msgstr "Pasirinkite komandas <emph>Failas → Atverti</emph>"
#: 00000401.xhp
msgctxt ""
@@ -5439,7 +5487,7 @@ msgctxt ""
"par_id3152944\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+O"
-msgstr ""
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Vald</defaultinline></switchinline>+O"
#: 00000401.xhp
msgctxt ""
@@ -5447,7 +5495,7 @@ msgctxt ""
"par_id3155341\n"
"help.text"
msgid "On the <emph>Standard</emph> Bar, click"
-msgstr ""
+msgstr "<emph>Standartinėje</emph> mygtukų juostoje spustelėkite mygtuką"
#: 00000401.xhp
msgctxt ""
@@ -5487,7 +5535,7 @@ msgctxt ""
"par_id3145609\n"
"help.text"
msgid "<variable id=\"autobrief\">Choose <emph>File - Wizards</emph></variable>"
-msgstr ""
+msgstr "<variable id=\"autobrief\">Pasirinkite komandas <emph>Failas → Vedikliai</emph></variable>"
#: 00000401.xhp
msgctxt ""
@@ -5495,7 +5543,7 @@ msgctxt ""
"par_id3149245\n"
"help.text"
msgid "<variable id=\"autopilotbrief\">Choose <emph>File - Wizards - Letter</emph></variable>"
-msgstr ""
+msgstr "<variable id=\"autopilotbrief\">Pasirinkite komandas <emph>Failas → Vedikliai → Laiškas</emph></variable>"
#: 00000401.xhp
msgctxt ""
@@ -5503,7 +5551,7 @@ msgctxt ""
"par_id3154758\n"
"help.text"
msgid "<variable id=\"autopilotbrief1\">Choose <emph>File - Wizards - Letter - Page design</emph></variable>"
-msgstr ""
+msgstr "<variable id=\"autopilotbrief1\">Pasirinkite komandas <emph>Failas → Vedikliai → Laiškas</emph>, tada kortelę <emph>Puslapio projektas</emph></variable>"
#: 00000401.xhp
msgctxt ""
@@ -5511,7 +5559,7 @@ msgctxt ""
"par_id3152360\n"
"help.text"
msgid "<variable id=\"autopilotbrief2\">Choose <emph>File - Wizards - Letter - Letterhead layout</emph></variable>"
-msgstr ""
+msgstr "<variable id=\"autopilotbrief2\">Pasirinkite komandas <emph>Failas → Vedikliai → Laiškas</emph>, tada kortelę <emph>Laiško popieriaus maketas</emph></variable>"
#: 00000401.xhp
msgctxt ""
@@ -5519,7 +5567,7 @@ msgctxt ""
"par_id3159413\n"
"help.text"
msgid "<variable id=\"autopilotbrief3\">Choose <emph>File - Wizards - Letter - Printed items</emph></variable>"
-msgstr ""
+msgstr "<variable id=\"autopilotbrief3\">Pasirinkite komandas <emph>Failas → Vedikliai → Laiškas</emph>, tada kortelę <emph>Spausdintini elementai</emph></variable>"
#: 00000401.xhp
msgctxt ""
@@ -5527,7 +5575,7 @@ msgctxt ""
"par_id3152771\n"
"help.text"
msgid "<variable id=\"autopilotbrief4\">Choose <emph>File - Wizards - Letter - Recipient and sender</emph></variable>"
-msgstr ""
+msgstr "<variable id=\"autopilotbrief4\">Pasirinkite komandas <emph>Failas → Vedikliai → Laiškas</emph>, tada kortelę <emph>Gavėjas ir siuntėjas</emph></variable>"
#: 00000401.xhp
msgctxt ""
@@ -5535,7 +5583,7 @@ msgctxt ""
"par_id3153524\n"
"help.text"
msgid "<variable id=\"autopilotbrief5\">Choose <emph>File - Wizards - Letter - Footer</emph></variable>"
-msgstr ""
+msgstr "<variable id=\"autopilotbrief5\">Pasirinkite komandas <emph>Failas → Vedikliai → Laiškas</emph>, tada kortelę <emph>Puslapinė poraštė</emph></variable>"
#: 00000401.xhp
msgctxt ""
@@ -5543,7 +5591,7 @@ msgctxt ""
"par_id3154224\n"
"help.text"
msgid "<variable id=\"autopilotbrief6\">Choose <emph>File - Wizards - Letter - </emph><emph>Name and Location</emph></variable>"
-msgstr ""
+msgstr "<variable id=\"autopilotbrief6\">Pasirinkite komandas <emph>Failas → Vedikliai → Laiškas</emph>, tada kortelę <emph>Vardas ir vieta</emph></variable>"
#: 00000401.xhp
msgctxt ""
@@ -5551,7 +5599,7 @@ msgctxt ""
"par_id3144760\n"
"help.text"
msgid "<variable id=\"autopilotfax\">Choose <emph>File - Wizards - Fax</emph></variable>"
-msgstr ""
+msgstr "<variable id=\"autopilotfax\">Pasirinkite komandas <emph>Failas → Vedikliai → Faksimilė</emph></variable>"
#: 00000401.xhp
msgctxt ""
@@ -5559,7 +5607,7 @@ msgctxt ""
"par_id3147085\n"
"help.text"
msgid "<variable id=\"autopilotfax1\">Choose <emph>File - Wizards - Fax - Page Design</emph></variable>"
-msgstr ""
+msgstr "<variable id=\"autopilotfax1\">Pasirinkite komandas <emph>Failas → Vedikliai → Faksimilė</emph>, tada kortelę <emph>Puslapio projektas</emph></variable>"
#: 00000401.xhp
msgctxt ""
@@ -5567,7 +5615,7 @@ msgctxt ""
"par_id3151042\n"
"help.text"
msgid "<variable id=\"autopilotfax2\">Choose <emph>File - Wizards - Fax - Items to include</emph></variable>"
-msgstr ""
+msgstr "<variable id=\"autopilotfax2\">Pasirinkite komandas <emph>Failas → Vedikliai → Faksimilė</emph>, tada kortelę <emph>Naudotini elementai</emph></variable>"
#: 00000401.xhp
msgctxt ""
@@ -5575,7 +5623,7 @@ msgctxt ""
"par_id3154330\n"
"help.text"
msgid "<variable id=\"autopilotfax3\">Choose <emph>File - Wizards - Fax - Sender and Recipient</emph></variable>"
-msgstr ""
+msgstr "<variable id=\"autopilotfax3\">Pasirinkite komandas <emph>Failas → Vedikliai → Faksimilė</emph>, tada kortelę <emph>Siuntėjas ir gavėjas</emph></variable>"
#: 00000401.xhp
msgctxt ""
@@ -5583,7 +5631,7 @@ msgctxt ""
"par_id3150651\n"
"help.text"
msgid "<variable id=\"autopilotfax4\">Choose <emph>File - Wizards - Fax - Footer</emph></variable>"
-msgstr ""
+msgstr "<variable id=\"autopilotfax4\">Pasirinkite komandas <emph>Failas → Vedikliai → Faksimilė</emph>, tada kortelę <emph>Puslapinė poraštė</emph></variable>"
#: 00000401.xhp
msgctxt ""
@@ -5591,7 +5639,7 @@ msgctxt ""
"par_id3154685\n"
"help.text"
msgid "<variable id=\"autopilotfax5\">Choose <emph>File - Wizards - Fax - Name and location</emph></variable>"
-msgstr ""
+msgstr "<variable id=\"autopilotfax5\">Pasirinkite komandas <emph>Failas → Vedikliai → Faksimilė</emph>, tada kortelę <emph>Vardas ir vieta</emph></variable>"
#: 00000401.xhp
msgctxt ""
@@ -5599,7 +5647,7 @@ msgctxt ""
"par_id3153190\n"
"help.text"
msgid "<variable id=\"autopilotagenda\">Choose <emph>File - Wizards - Agenda</emph></variable>"
-msgstr ""
+msgstr "<variable id=\"autopilotagenda\">Pasirinkite komandas <emph>Failas → Vedikliai → Darbotvarkė</emph></variable>"
#: 00000401.xhp
msgctxt ""
@@ -5607,7 +5655,7 @@ msgctxt ""
"par_id3155860\n"
"help.text"
msgid "<variable id=\"autopilotagenda1\">Choose <emph>File - Wizards - Agenda - Page Design</emph></variable>"
-msgstr ""
+msgstr "<variable id=\"autopilotagenda1\">Pasirinkite komandas <emph>Failas → Vedikliai → Darbotvarkė</emph>, tada kortelę <emph>Puslapio projektas</emph></variable>"
#: 00000401.xhp
msgctxt ""
@@ -5615,7 +5663,7 @@ msgctxt ""
"par_id3146906\n"
"help.text"
msgid "<variable id=\"autopilotagenda2\">Choose <emph>File - Wizards - Agenda - General Attributes</emph></variable>"
-msgstr ""
+msgstr "<variable id=\"autopilotagenda2\">Pasirinkite komandas <emph>Failas → Vedikliai → Darbotvarkė</emph>, tada kortelę <emph>Bendroji informacija</emph></variable>"
#: 00000401.xhp
msgctxt ""
@@ -5623,7 +5671,7 @@ msgctxt ""
"par_id3152578\n"
"help.text"
msgid "<variable id=\"autopilotagenda3\">Choose <emph>File - Wizards - Agenda - Headings</emph></variable>"
-msgstr ""
+msgstr "<variable id=\"autopilotagenda3\">Pasirinkite komandas <emph>Failas → Vedikliai → Darbotvarkė</emph>, tada kortelę <emph>Naudotinos antraštės</emph></variable>"
#: 00000401.xhp
msgctxt ""
@@ -5631,7 +5679,7 @@ msgctxt ""
"par_id3155368\n"
"help.text"
msgid "<variable id=\"autopilotagenda4\">Choose <emph>File - Wizards - Agenda - Names</emph></variable>"
-msgstr ""
+msgstr "<variable id=\"autopilotagenda4\">Pasirinkite komandas <emph>Failas → Vedikliai → Darbotvarkė</emph>, tada kortelę <emph>Vardai</emph></variable>"
#: 00000401.xhp
msgctxt ""
@@ -5639,7 +5687,7 @@ msgctxt ""
"par_id3146923\n"
"help.text"
msgid "<variable id=\"autopilotagenda5\">Choose <emph>File - Wizards - Agenda - Topics</emph></variable>"
-msgstr ""
+msgstr "<variable id=\"autopilotagenda5\">Pasirinkite komandas <emph>Failas → Vedikliai → Darbotvarkė</emph>, tada kortelę <emph>Darbotvarkės elementai</emph></variable>"
#: 00000401.xhp
msgctxt ""
@@ -5647,7 +5695,7 @@ msgctxt ""
"par_id3149066\n"
"help.text"
msgid "<variable id=\"autopilotagenda6\">Choose <emph>File - Wizards - Agenda - Title and Location</emph></variable>"
-msgstr ""
+msgstr "<variable id=\"autopilotagenda6\">Pasirinkite komandas <emph>Failas → Vedikliai → Darbotvarkė</emph>, tada kortelę <emph>Vardas ir vieta</emph></variable>"
#: 00000401.xhp
msgctxt ""
@@ -5655,7 +5703,7 @@ msgctxt ""
"par_id3149288\n"
"help.text"
msgid "<variable id=\"dtapt\">Choose <emph>File - Wizards - Presentation</emph></variable>"
-msgstr ""
+msgstr "<variable id=\"dtapt\">Pasirinkite komandas <emph>Failas → Vedikliai → Pateiktis</emph></variable>"
#: 00000401.xhp
msgctxt ""
@@ -11126,7 +11174,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3151293\n"
"help.text"
-msgid "<variable id=\"linienstile\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Line Styles</emph> tab </variable>"
+msgid "<variable id=\"linienstile\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Line Styles</emph> tab</variable>"
msgstr ""
#: 00040502.xhp
@@ -11134,7 +11182,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3149317\n"
"help.text"
-msgid "<variable id=\"linienenden\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Arrow Styles</emph> tab </variable>"
+msgid "<variable id=\"linienenden\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Arrow Styles</emph> tab</variable>"
msgstr ""
#: 00040502.xhp
@@ -11174,7 +11222,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3154948\n"
"help.text"
-msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Area</emph> tab"
+msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Area</emph> tab."
msgstr ""
#: 00040502.xhp
@@ -11182,7 +11230,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3145607\n"
"help.text"
-msgid "Choose <emph>View - Styles</emph> - open context menu and choose <emph>Modify/New - Area</emph> tab (presentation documents)"
+msgid "Choose <emph>View - Styles</emph> - open context menu and choose <emph>Modify/New - Area</emph> tab (presentation documents)."
msgstr ""
#: 00040502.xhp
@@ -11190,7 +11238,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3152922\n"
"help.text"
-msgid "Choose <emph>Format - Title - Area</emph> tab (chart documents)"
+msgid "Choose <emph>Format - Title - Area</emph> tab (chart documents)."
msgstr ""
#: 00040502.xhp
@@ -11198,7 +11246,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3157894\n"
"help.text"
-msgid "Choose <emph>Format - Legend - Area</emph> tab (chart documents)"
+msgid "Choose <emph>Format - Legend - Area</emph> tab (chart documents)."
msgstr ""
#: 00040502.xhp
@@ -11206,7 +11254,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3144444\n"
"help.text"
-msgid "Choose <emph>Format - Chart Wall - Area</emph> tab (chart documents)"
+msgid "Choose <emph>Format - Chart Wall - Area</emph> tab (chart documents)."
msgstr ""
#: 00040502.xhp
@@ -11214,7 +11262,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3156543\n"
"help.text"
-msgid "Choose <emph>Format - Chart Floor - Area</emph> tab (chart documents)"
+msgid "Choose <emph>Format - Chart Floor - Area</emph> tab (chart documents)."
msgstr ""
#: 00040502.xhp
@@ -11222,7 +11270,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3150685\n"
"help.text"
-msgid "Choose <emph>Format - Chart Area - Area</emph> tab (chart documents)"
+msgid "Choose <emph>Format - Chart Area - Area</emph> tab (chart documents)."
msgstr ""
#: 00040502.xhp
@@ -11230,7 +11278,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3149664\n"
"help.text"
-msgid "Choose <emph>Slide - Properties - Background</emph> tab (in $[officename] Impress)"
+msgid "Choose <emph>Slide - Properties - Background</emph> tab (in $[officename] Impress)."
msgstr ""
#: 00040502.xhp
@@ -11238,7 +11286,15 @@ msgctxt ""
"00040502.xhp\n"
"par_id9149694\n"
"help.text"
-msgid "Choose <emph>Page - Properties - Background</emph> tab (in $[officename] Draw)"
+msgid "Choose <emph>Page - Properties - Background</emph> tab (in $[officename] Draw)."
+msgstr ""
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id841527083135387\n"
+"help.text"
+msgid "Choose <emph>Table - Properties - Background</emph> tab."
msgstr ""
#: 00040502.xhp
@@ -11350,7 +11406,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3150011\n"
"help.text"
-msgid "<variable id=\"schatte\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Shadow</emph> tab </variable>"
+msgid "<variable id=\"schatte\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Shadow</emph> tab</variable>"
msgstr ""
#: 00040502.xhp
@@ -11358,7 +11414,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3147441\n"
"help.text"
-msgid "<variable id=\"verlauf\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Gradients</emph> tab </variable>"
+msgid "<variable id=\"verlauf\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Gradients</emph> tab</variable>"
msgstr ""
#: 00040502.xhp
@@ -11366,7 +11422,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3155308\n"
"help.text"
-msgid "<variable id=\"schraffur\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Hatching</emph> tab </variable>"
+msgid "<variable id=\"schraffur\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Hatching</emph> tab</variable>"
msgstr ""
#: 00040502.xhp
@@ -11374,7 +11430,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3145800\n"
"help.text"
-msgid "<variable id=\"bitmap\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Bitmaps</emph> tab </variable>"
+msgid "<variable id=\"bitmap\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Bitmaps</emph> tab</variable>"
msgstr ""
#: 00040502.xhp
@@ -11414,7 +11470,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3156286\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F4 key </caseinline><caseinline select=\"IMPRESS\">F4 key </caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F4 key</caseinline><caseinline select=\"IMPRESS\">F4 key</caseinline></switchinline>"
msgstr ""
#: 00040502.xhp
@@ -11454,7 +11510,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3153099\n"
"help.text"
-msgid "<variable id=\"position2\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Position and Size</emph> tab </variable>"
+msgid "<variable id=\"position2\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Position and Size</emph> tab</variable>"
msgstr ""
#: 00040502.xhp
@@ -11486,7 +11542,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3145666\n"
"help.text"
-msgid "<variable id=\"ecke\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Slant & Corner Radius</emph> tab </variable>"
+msgid "<variable id=\"ecke\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Slant & Corner Radius</emph> tab</variable>"
msgstr ""
#: 00040502.xhp
@@ -11494,7 +11550,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3146081\n"
"help.text"
-msgid "<variable id=\"legende\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Callout</emph> tab (only for textbox callouts, not for custom shapes callouts) </variable>"
+msgid "<variable id=\"legende\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Callout</emph> tab (only for textbox callouts, not for custom shapes callouts)</variable>"
msgstr ""
#: 00040502.xhp
@@ -11518,7 +11574,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3149019\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F8 key </caseinline><caseinline select=\"IMPRESS\">F8 key </caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F8 key</caseinline><caseinline select=\"IMPRESS\">F8 key</caseinline></switchinline>"
msgstr ""
#: 00040502.xhp
@@ -11806,7 +11862,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3153076\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Align Center Horizontally </caseinline><defaultinline>Centered</defaultinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Align Center Horizontally</caseinline><defaultinline>Centered</defaultinline></switchinline>"
msgstr ""
#: 00040502.xhp
@@ -11846,7 +11902,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3150527\n"
"help.text"
-msgid "<variable id=\"font\">Click <emph>Fontwork</emph> icon on <emph>Drawing</emph> bar </variable>"
+msgid "<variable id=\"font\">Click <emph>Fontwork</emph> icon on <emph>Drawing</emph> bar</variable>"
msgstr ""
#: 00040502.xhp
diff --git a/source/lt/helpcontent2/source/text/shared/01.po b/source/lt/helpcontent2/source/text/shared/01.po
index 8c4813fa3c9..da2b6183042 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: 2018-05-23 23:19+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2018-04-12 19:03+0000\n"
"Last-Translator: Modestas Rimkus <modestas.rimkus@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -23587,6 +23587,22 @@ msgstr ""
#: 05210100.xhp
msgctxt ""
"05210100.xhp\n"
+"hd_id471527077476052\n"
+"help.text"
+msgid "Cell, Row or Table background selector"
+msgstr ""
+
+#: 05210100.xhp
+msgctxt ""
+"05210100.xhp\n"
+"par_id661527077493366\n"
+"help.text"
+msgid "Select the table object which background area is to be filled."
+msgstr ""
+
+#: 05210100.xhp
+msgctxt ""
+"05210100.xhp\n"
"hd_id3147373\n"
"help.text"
msgid "None"
@@ -31205,24 +31221,24 @@ msgctxt ""
"06040100.xhp\n"
"hd_id3145072\n"
"help.text"
-msgid "Automatic *bold* and _underline_"
-msgstr "Automatinis *pusjuodis* ir _pabraukimas_"
+msgid "Automatic *bold*, /italic/, -strikeout- and _underline_"
+msgstr ""
#: 06040100.xhp
msgctxt ""
"06040100.xhp\n"
"par_id3153577\n"
"help.text"
-msgid "Automatically applies bold formatting to text enclosed by asterisks (*), and underline to text enclosed by underscores ( _ ), for example, *bold*. The asterisks and underscores are not displayed after the formatting is applied."
-msgstr "Tekstui, parašytam tarp žvaigždučių (*), automatiškai pritaikomas pusjuodis stilius, o tekstas tarp pabraukimo brūkšnių ( _ ) pabraukiamas, pavyzdžiui, *pusjuodis*. Pritaikius formatą žvaigždutės ir pabraukimo brūkšniai neberodomi."
+msgid "Automatically applies bold, italic, strikethrough or underline formatting to text enclosed by asterisks (*), slashes (/), hyphens (-), and underscores (_), respectively. These characters disappear after the formatting is applied."
+msgstr ""
#: 06040100.xhp
msgctxt ""
"06040100.xhp\n"
"par_id3153127\n"
"help.text"
-msgid "This feature does not work if the formatting characters * or _ are entered with an <link href=\"text/shared/00/00000005.xhp#IME\" name=\"Input Method Editor\">Input Method Editor</link>."
-msgstr "Ši funkcija neveikia, jei formatavimo ženklai * arba _ įvedami <link href=\"text/shared/00/00000005.xhp#IME\" name=\"įvedimo metodo rengyklė\">įvedimo metodo rengykle</link>."
+msgid "This feature does not work if the formatting characters <item type=\"literal\">* / - _</item> are entered with an <link href=\"text/shared/00/00000005.xhp#IME\" name=\"Input Method Editor\">Input Method Editor</link>."
+msgstr ""
#: 06040100.xhp
msgctxt ""
diff --git a/source/lt/helpcontent2/source/text/shared/optionen.po b/source/lt/helpcontent2/source/text/shared/optionen.po
index 6d0013d02e0..b8fc0c7abc6 100644
--- a/source/lt/helpcontent2/source/text/shared/optionen.po
+++ b/source/lt/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: 2018-05-08 15:10+0200\n"
-"PO-Revision-Date: 2018-05-23 20:02+0000\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
+"PO-Revision-Date: 2018-05-24 19:46+0000\n"
"Last-Translator: Modestas Rimkus <modestas.rimkus@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: lt\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1527105736.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1527191168.000000\n"
#: 01000000.xhp
msgctxt ""
@@ -83,6 +83,22 @@ msgstr "Pastaba „macOS“ naudotojams: žinyne dažnai minimos meniu komandos
#: 01000000.xhp
msgctxt ""
"01000000.xhp\n"
+"hd_id551527692881035\n"
+"help.text"
+msgid "Help"
+msgstr ""
+
+#: 01000000.xhp
+msgctxt ""
+"01000000.xhp\n"
+"par_id831527692885723\n"
+"help.text"
+msgid "Opens the help contents for the Options page displayed."
+msgstr ""
+
+#: 01000000.xhp
+msgctxt ""
+"01000000.xhp\n"
"hd_id3159149\n"
"help.text"
msgid "<link href=\"text/shared/optionen/01010000.xhp\" name=\"$[officename]\">%PRODUCTNAME</link>"
@@ -4565,8 +4581,8 @@ msgctxt ""
"01030300.xhp\n"
"par_idN10640\n"
"help.text"
-msgid "Options"
-msgstr "Parinktys"
+msgid "Security Options and Warnings"
+msgstr ""
#: 01030300.xhp
msgctxt ""
@@ -4597,8 +4613,8 @@ msgctxt ""
"01030300.xhp\n"
"hd_id3168736\n"
"help.text"
-msgid "Persistently save passwords protected by a master password"
-msgstr "Įrašyti žiniatinklio ryšių slaptažodžius"
+msgid "Persistently save passwords for web connections"
+msgstr ""
#: 01030300.xhp
msgctxt ""
@@ -4613,8 +4629,24 @@ msgctxt ""
"01030300.xhp\n"
"hd_id3901791\n"
"help.text"
+msgid "Protected by a master password (recommended)"
+msgstr ""
+
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"par_id31527711486980\n"
+"help.text"
+msgid "Check to enable all connections' passwords to be protected by a master password."
+msgstr ""
+
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"hd_id141527711343312\n"
+"help.text"
msgid "Master Password"
-msgstr "Pagrindinis slaptažodis"
+msgstr ""
#: 01030300.xhp
msgctxt ""
@@ -7465,7 +7497,7 @@ msgctxt ""
"hd_id5241028\n"
"help.text"
msgid "Tolerate white lines of PDF page backgrounds for compatibility with old documents"
-msgstr ""
+msgstr "Toleruoti baltas linijas PDF dokumentų puslapių fone dėl suderinamumo su senų formatų dokumentais"
#: 01041000.xhp
msgctxt ""
@@ -7481,7 +7513,7 @@ msgctxt ""
"par_idN10845\n"
"help.text"
msgid "Use as Default"
-msgstr ""
+msgstr "Nustatyti numatytosiomis"
#: 01041000.xhp
msgctxt ""
@@ -7489,7 +7521,7 @@ msgctxt ""
"par_idN10848\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/optcompatpage/default\">Click to use the current settings on this tab page as the default for further sessions with %PRODUCTNAME.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/optcompatpage/default\">Šiame lange nustatytos parinktys įrašomos numatytosiomis ir toliau visada taikomos darbo su „%PRODUCTNAME“ programa metu.</ahelp>"
#: 01041000.xhp
msgctxt ""
@@ -7497,7 +7529,7 @@ msgctxt ""
"par_idN10977\n"
"help.text"
msgid "The factory defaults are set as follows. Enabled are the following options, while all other options are disabled:"
-msgstr ""
+msgstr "Programos diegimo metu įgalinamos tik žemiau išvardintos numatytosios parinktys, o visos kitos paliekamos išjungtos:"
#: 01041000.xhp
msgctxt ""
@@ -7537,7 +7569,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "AutoCaption"
-msgstr ""
+msgstr "Pavadinimų įterpimas"
#: 01041100.xhp
msgctxt ""
@@ -7545,7 +7577,7 @@ msgctxt ""
"bm_id5164036\n"
"help.text"
msgid "<bookmark_value>automatic captions (Writer)</bookmark_value><bookmark_value>AutoCaption function in %PRODUCTNAME Writer</bookmark_value><bookmark_value>captions;automatic captions (Writer)</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>automatiniai pavadinimai (tekstų rengyklė)</bookmark_value><bookmark_value>pavadinimų įterpimas %PRODUCTNAME tekstų rengyklėje</bookmark_value><bookmark_value>pavadinimai;automatiniai pavadinimai (tekstų rengyklė)</bookmark_value>"
#: 01041100.xhp
msgctxt ""
@@ -7553,7 +7585,7 @@ msgctxt ""
"par_idN10561\n"
"help.text"
msgid "<link href=\"text/shared/optionen/01041100.xhp\">AutoCaption</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/optionen/01041100.xhp\">Pavadinimų įterpimas</link>"
#: 01041100.xhp
msgctxt ""
@@ -7561,7 +7593,7 @@ msgctxt ""
"par_idN10571\n"
"help.text"
msgid "Specifies the settings for captions that are automatically added to inserted objects."
-msgstr ""
+msgstr "Nustatomos automatinių įterptų objektų pavadinimų parinktys."
#: 01041100.xhp
msgctxt ""
@@ -7569,7 +7601,7 @@ msgctxt ""
"par_idN10588\n"
"help.text"
msgid "Add captions automatically when inserting"
-msgstr ""
+msgstr "Automatiškai pridėti pavadinimą, kai įterpiama:"
#: 01041100.xhp
msgctxt ""
@@ -7577,7 +7609,7 @@ msgctxt ""
"par_idN1058C\n"
"help.text"
msgid "<ahelp hid=\".\">Select the object type for which the AutoCaption settings are to be valid.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Pasirenkamas objekto, kuriam taikytinos čia nustatomos pavadinimų įterpimo parinktys, tipas.</ahelp>"
#: 01041100.xhp
msgctxt ""
@@ -7585,7 +7617,7 @@ msgctxt ""
"par_idN1058F\n"
"help.text"
msgid "Caption"
-msgstr ""
+msgstr "Pavadinimas"
#: 01041100.xhp
msgctxt ""
@@ -7593,7 +7625,7 @@ msgctxt ""
"par_idN10593\n"
"help.text"
msgid "Defines the options to be applied to the selected object type. These options are identical to those in the <emph>Insert - Caption</emph> menu, which is available when an object is selected. Below the settings is a preview of the object category, together with numbering type."
-msgstr ""
+msgstr "Nustatomos pažymėto tipo objektams taikytinos parinktys. Šios parinktys yra tokios pat, kaip ir esančios meniu <emph>Įterpimas → Pavadinimas</emph>. Šis meniu veiksnus tik tada, kai yra pažymėtas objektas. Po parinktimis rodoma pavadinimo peržiūra su kategorija ir numeriu."
#: 01041100.xhp
msgctxt ""
@@ -7601,7 +7633,7 @@ msgctxt ""
"hd_id3146798\n"
"help.text"
msgid "Category"
-msgstr ""
+msgstr "Kategorija"
#: 01041100.xhp
msgctxt ""
@@ -7609,7 +7641,7 @@ msgctxt ""
"par_id3155419\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/optcaptionpage/category\">Specifies the category of the selected object.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/optcaptionpage/category\">Nurodoma pažymėto objekto kategorija.</ahelp>"
#: 01041100.xhp
msgctxt ""
@@ -7617,7 +7649,7 @@ msgctxt ""
"hd_id3155628\n"
"help.text"
msgid "Numbering"
-msgstr ""
+msgstr "Numeravimas"
#: 01041100.xhp
msgctxt ""
@@ -7625,7 +7657,7 @@ msgctxt ""
"par_id3149233\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/optcaptionpage/numbering\">Specifies the type of numbering required.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/optcaptionpage/numbering\">Nurodomas norimas numeravimo tipas.</ahelp>"
#: 01041100.xhp
msgctxt ""
@@ -7633,7 +7665,7 @@ msgctxt ""
"hd_id3149457\n"
"help.text"
msgid "Separator"
-msgstr ""
+msgstr "Skirtukas"
#: 01041100.xhp
msgctxt ""
@@ -7641,7 +7673,7 @@ msgctxt ""
"par_idN106E2\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/optcaptionpage/separator\">Defines the character to be displayed after the number of the heading or chapter level.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/optcaptionpage/separator\">Nurodoma, kokį rašmenį rodyti po pasirinkto lygmens antraštės arba skyriaus pavadinimo numerio.</ahelp>"
#: 01041100.xhp
msgctxt ""
@@ -7649,7 +7681,7 @@ msgctxt ""
"hd_id3154514\n"
"help.text"
msgid "Position"
-msgstr ""
+msgstr "Padėtis"
#: 01041100.xhp
msgctxt ""
@@ -7657,7 +7689,7 @@ msgctxt ""
"par_id3151384\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/optcaptionpage/position\">Determines the position of the caption with respect to the object.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/optcaptionpage/position\">Nurodoma pavadinimo padėtis objekto atžvilgiu.</ahelp>"
#: 01041100.xhp
msgctxt ""
@@ -7665,7 +7697,7 @@ msgctxt ""
"par_idN1064E\n"
"help.text"
msgid "Numbering captions by chapter"
-msgstr ""
+msgstr "Numeravimas pagal skyrius"
#: 01041100.xhp
msgctxt ""
@@ -7673,7 +7705,7 @@ msgctxt ""
"hd_id3145609\n"
"help.text"
msgid "Level"
-msgstr ""
+msgstr "Lygmuo"
#: 01041100.xhp
msgctxt ""
@@ -7681,7 +7713,7 @@ msgctxt ""
"par_id3153898\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/optcaptionpage/level\">Specifies the headings or chapter levels where you want the numbering to start.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/optcaptionpage/level\">Nurodomas antraščių arba skyrių pavadinimų lygmuo, kuriuo pradėti numeravimą.</ahelp>"
#: 01041100.xhp
msgctxt ""
@@ -7689,7 +7721,7 @@ msgctxt ""
"par_id3153524\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/optcaptionpage/chapseparator\">Defines the character to be displayed after the number of the heading or chapter level.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/optcaptionpage/chapseparator\">Nurodoma, kokį rašmenį rodyti po pasirinkto lygmens antraštės arba skyriaus pavadinimo numerio.</ahelp>"
#: 01041100.xhp
msgctxt ""
@@ -7697,7 +7729,7 @@ msgctxt ""
"par_idN106A8\n"
"help.text"
msgid "Category and frame format"
-msgstr ""
+msgstr "Kategorijos ir kadro formatas"
#: 01041100.xhp
msgctxt ""
@@ -7705,7 +7737,7 @@ msgctxt ""
"par_idN106AE\n"
"help.text"
msgid "Character style"
-msgstr ""
+msgstr "Rašmenų stilius"
#: 01041100.xhp
msgctxt ""
@@ -7713,7 +7745,7 @@ msgctxt ""
"par_idN106B4\n"
"help.text"
msgid "<ahelp hid=\".\">Specifies the character style.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Pasirenkamas rašmenų stilius.</ahelp>"
#: 01041100.xhp
msgctxt ""
@@ -7721,7 +7753,7 @@ msgctxt ""
"hd_id3143280\n"
"help.text"
msgid "Apply border and shadow"
-msgstr ""
+msgstr "Pritaikyti kraštinę ir šešėlį"
#: 01041100.xhp
msgctxt ""
@@ -7729,7 +7761,7 @@ msgctxt ""
"par_id3149826\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/optcaptionpage/applyborder\">Applies the border and shadow of the object to the caption frame.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/optcaptionpage/applyborder\">Objekto kraštinė ir šešėlis pritaikomi pavadinimo kadrui.</ahelp>"
#: 01050000.xhp
msgctxt ""
@@ -7737,7 +7769,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "HTML Document Options"
-msgstr ""
+msgstr "Tinklalapių parinktys"
#: 01050000.xhp
msgctxt ""
@@ -7745,7 +7777,7 @@ msgctxt ""
"hd_id3149233\n"
"help.text"
msgid "%PRODUCTNAME Writer/Web Options"
-msgstr ""
+msgstr "„%PRODUCTNAME“ tinklalapių rengyklės parinktys"
#: 01050000.xhp
msgctxt ""
@@ -7753,7 +7785,7 @@ msgctxt ""
"par_id3145120\n"
"help.text"
msgid "<variable id=\"webbrowser\"><ahelp hid=\"SID_SW_ONLINEOPTIONS\">Defines the basic settings for $[officename] documents in HTML format.</ahelp></variable>"
-msgstr ""
+msgstr "<variable id=\"webbrowser\"><ahelp hid=\"SID_SW_ONLINEOPTIONS\">Čia nustatomos pagrindinės „$[officename]“ programa HTML formatu rengiamų dokumentų (tinklalapių) parinktys.</ahelp></variable>"
#: 01050100.xhp
msgctxt ""
@@ -7761,7 +7793,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Grid"
-msgstr ""
+msgstr "Tinklelis"
#: 01050100.xhp
msgctxt ""
@@ -7769,7 +7801,7 @@ msgctxt ""
"bm_id3147226\n"
"help.text"
msgid "<bookmark_value>grids; defaults (Writer/Calc)</bookmark_value> <bookmark_value>defaults; grids (Writer/Calc)</bookmark_value> <bookmark_value>snap grid defaults (Writer/Calc)</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>tinkleliai; numatytosios nuostatos (teksto rengyklė, skaičiuoklė)</bookmark_value> <bookmark_value>numatytosios nuostatos; tinkleliai (tekstų rengyklė, skaičiuoklė)</bookmark_value> <bookmark_value>pritraukimas prie tinklelio (tekstų rengyklė, skaičiuoklė)</bookmark_value>"
#: 01050100.xhp
msgctxt ""
@@ -7777,7 +7809,7 @@ msgctxt ""
"hd_id3147226\n"
"help.text"
msgid "<link href=\"text/shared/optionen/01050100.xhp\" name=\"Grid\">Grid</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/optionen/01050100.xhp\" name=\"Tinklelis\">Tinklelis</link>"
#: 01050100.xhp
msgctxt ""
@@ -13736,7 +13768,7 @@ msgctxt ""
"java.xhp\n"
"hd_id3148618\n"
"help.text"
-msgid "Optional (unstable) options"
+msgid "Optional Features"
msgstr ""
#: java.xhp
@@ -13752,7 +13784,7 @@ msgctxt ""
"java.xhp\n"
"par_id3156344\n"
"help.text"
-msgid "It enables features that are not yet complete or contain known bugs. The list of these features is different version by version, or even it can be empty."
+msgid "Enables features that are not yet complete or may contain known bugs. The list of these features is different version by version, or even it can be empty."
msgstr ""
#: java.xhp
@@ -13768,7 +13800,7 @@ msgctxt ""
"java.xhp\n"
"par_id3156345\n"
"help.text"
-msgid "It enables macro recording, so the <link href=\"text/shared/guide/macro_recording.xhp\" name=\"Tools - Macros - Record Macro\"><item type=\"menuitem\">Tools - Macros - Record Macro</item></link> menu item will be available."
+msgid "Enables macro recording. The <link href=\"text/shared/guide/macro_recording.xhp\" name=\"Tools - Macros - Record Macro\"><item type=\"menuitem\">Tools - Macros - Record Macro</item></link> menu item is available."
msgstr ""
#: java.xhp
diff --git a/source/lt/officecfg/registry/data/org/openoffice/Office/UI.po b/source/lt/officecfg/registry/data/org/openoffice/Office/UI.po
index ffe7f300aca..15437aea449 100644
--- a/source/lt/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/lt/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-22 13:17+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2018-05-20 07:36+0000\n"
"Last-Translator: Modestas Rimkus <modestas.rimkus@gmail.com>\n"
"Language-Team: Lithuanian <komp_lt@konferencijos.lt>\n"
@@ -26538,8 +26538,8 @@ msgctxt ""
"..WriterCommands.UserInterface.Commands..uno:TextAttributes\n"
"Label\n"
"value.text"
-msgid "Text Attributes"
-msgstr "Teksto požymiai"
+msgid "Text Attributes..."
+msgstr ""
#: WriterCommands.xcu
msgctxt ""
diff --git a/source/lt/readlicense_oo/docs.po b/source/lt/readlicense_oo/docs.po
index 9d9f4b04bc9..4436b7b6345 100644
--- a/source/lt/readlicense_oo/docs.po
+++ b/source/lt/readlicense_oo/docs.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-04-17 15:54+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2018-05-11 20:13+0000\n"
"Last-Translator: Modestas Rimkus <modestas.rimkus@gmail.com>\n"
"Language-Team: Lithuanian <komp_lt@konferencijos.lt>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-Project-Style: openoffice\n"
"X-POOTLE-MTIME: 1526069635.000000\n"
@@ -118,8 +118,8 @@ msgctxt ""
"readme.xrm\n"
"macxiOSX\n"
"readmeitem.text"
-msgid "MacOSX 10.8 (Mountain Lion) or higher"
-msgstr "MacOSX 10.8 (Mountain Lion) arba naujesnė OS"
+msgid "MacOSX 10.9 (Mavericks) or higher"
+msgstr ""
#: readme.xrm
msgctxt ""
diff --git a/source/lt/sc/messages.po b/source/lt/sc/messages.po
index 6ebe7ef121d..ccfecbea1ae 100644
--- a/source/lt/sc/messages.po
+++ b/source/lt/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: 2018-05-22 13:16+0200\n"
-"PO-Revision-Date: 2018-04-29 18:25+0000\n"
+"POT-Creation-Date: 2018-06-12 14:40+0200\n"
+"PO-Revision-Date: 2018-06-13 20:52+0000\n"
"Last-Translator: Modestas Rimkus <modestas.rimkus@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: lt\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1525026350.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1528923162.000000\n"
#: sc/inc/compiler.hrc:27
msgctxt "RID_FUNCTION_CATEGORIES"
@@ -1164,7 +1164,7 @@ msgid ""
msgstr ""
"Jei norite taikyti automatinį formatą,\n"
"reikia pažymėti bent\n"
-"3x3 langelių sritį."
+"3x3 langelių bloką."
#: sc/inc/globstr.hrc:256
msgctxt "STR_OPTIONAL"
@@ -1865,16 +1865,21 @@ msgid "Nested arrays are not supported."
msgstr "Įdėtiniai masyvai neleistini."
#: sc/inc/globstr.hrc:390
+msgctxt "STR_ERR_LONG_BAD_ARRAY_CONTENT"
+msgid "Unsupported inline array content."
+msgstr ""
+
+#: sc/inc/globstr.hrc:391
msgctxt "STR_UNDO_TEXTTOCOLUMNS"
msgid "Text to Columns"
msgstr "Tekstas į stulpelius"
-#: sc/inc/globstr.hrc:391
+#: sc/inc/globstr.hrc:392
msgctxt "STR_DOC_UPDATED"
msgid "Your spreadsheet has been updated with changes saved by other users."
msgstr "Skaičiuoklės dokumentas buvo atnaujintas įtraukus kitų naudotojų pakeitimus."
-#: sc/inc/globstr.hrc:392
+#: sc/inc/globstr.hrc:393
msgctxt "STR_DOC_WILLBESAVED"
msgid ""
"The spreadsheet must be saved now to activate sharing mode.\n"
@@ -1885,7 +1890,7 @@ msgstr ""
"\n"
"Ar tęsti?"
-#: sc/inc/globstr.hrc:393
+#: sc/inc/globstr.hrc:394
msgctxt "STR_DOC_WILLNOTBESAVED"
msgid ""
"Already resolved merge conflicts will be lost and your changes to the shared spreadsheet will not be saved.\n"
@@ -1896,7 +1901,7 @@ msgstr ""
"\n"
"Ar tęsti?"
-#: sc/inc/globstr.hrc:394
+#: sc/inc/globstr.hrc:395
msgctxt "STR_DOC_DISABLESHARED"
msgid ""
"Disabling shared mode of a spreadsheet hinders all other users of the shared spreadsheet to merge back their work.\n"
@@ -1907,7 +1912,7 @@ msgstr ""
"\n"
"Ar tęsti?"
-#: sc/inc/globstr.hrc:395
+#: sc/inc/globstr.hrc:396
msgctxt "STR_DOC_NOLONGERSHARED"
msgid ""
"This spreadsheet is no longer in shared mode.\n"
@@ -1918,7 +1923,7 @@ msgstr ""
"\n"
"Įrašykite dokumentą į atskirą failą, kurį turėsite rankiniu būdu sujungti su bendrintu dokumentu."
-#: sc/inc/globstr.hrc:396
+#: sc/inc/globstr.hrc:397
msgctxt "STR_FILE_LOCKED_TRY_LATER"
msgid ""
"The shared spreadsheet file is locked due to a merge in progress by user: '%1'\n"
@@ -1929,7 +1934,7 @@ msgstr ""
"\n"
"Užsklęsto dokumento bendrinimo atšaukti negalima. Pamėginkite vėliau."
-#: sc/inc/globstr.hrc:397
+#: sc/inc/globstr.hrc:398
msgctxt "STR_FILE_LOCKED_SAVE_LATER"
msgid ""
"The shared spreadsheet file is locked due to a merge in progress by user: '%1'\n"
@@ -1940,147 +1945,147 @@ msgstr ""
"\n"
"Pamėginkite savo pakeitimus įrašyti vėliau."
-#: sc/inc/globstr.hrc:398
+#: sc/inc/globstr.hrc:399
msgctxt "STR_UNKNOWN_USER"
msgid "Unknown User"
msgstr "Nežinomas naudotojas"
-#: sc/inc/globstr.hrc:399
+#: sc/inc/globstr.hrc:400
msgctxt "STR_SHAPE_AUTOSHAPE"
msgid "AutoShape"
msgstr "Autofigūros"
-#: sc/inc/globstr.hrc:400
+#: sc/inc/globstr.hrc:401
msgctxt "STR_SHAPE_RECTANGLE"
msgid "Rectangle"
msgstr "Stačiakampis"
-#: sc/inc/globstr.hrc:401
+#: sc/inc/globstr.hrc:402
msgctxt "STR_SHAPE_LINE"
msgid "Line"
msgstr "Linija"
-#: sc/inc/globstr.hrc:402
+#: sc/inc/globstr.hrc:403
msgctxt "STR_SHAPE_OVAL"
msgid "Oval"
msgstr "Ovalas"
-#: sc/inc/globstr.hrc:403
+#: sc/inc/globstr.hrc:404
msgctxt "STR_FORM_BUTTON"
msgid "Button"
msgstr "Mygtukas"
-#: sc/inc/globstr.hrc:404
+#: sc/inc/globstr.hrc:405
msgctxt "STR_FORM_CHECKBOX"
msgid "Check Box"
msgstr "Žymimasis langelis"
-#: sc/inc/globstr.hrc:405
+#: sc/inc/globstr.hrc:406
msgctxt "STR_FORM_OPTIONBUTTON"
msgid "Option Button"
msgstr "Akutė"
-#: sc/inc/globstr.hrc:406
+#: sc/inc/globstr.hrc:407
msgctxt "STR_FORM_LABEL"
msgid "Label"
msgstr "Žymė"
-#: sc/inc/globstr.hrc:407
+#: sc/inc/globstr.hrc:408
msgctxt "STR_FORM_LISTBOX"
msgid "List Box"
msgstr "Sąrašo langelis"
-#: sc/inc/globstr.hrc:408
+#: sc/inc/globstr.hrc:409
msgctxt "STR_FORM_GROUPBOX"
msgid "Group Box"
msgstr "Valdiklių grupė"
-#: sc/inc/globstr.hrc:409
+#: sc/inc/globstr.hrc:410
msgctxt "STR_FORM_DROPDOWN"
msgid "Drop Down"
msgstr "Išskleidžiamasis sąrašas"
-#: sc/inc/globstr.hrc:410
+#: sc/inc/globstr.hrc:411
msgctxt "STR_FORM_SPINNER"
msgid "Spinner"
msgstr "Suktukas"
-#: sc/inc/globstr.hrc:411
+#: sc/inc/globstr.hrc:412
msgctxt "STR_FORM_SCROLLBAR"
msgid "Scroll Bar"
msgstr "Slankjuostė"
-#: sc/inc/globstr.hrc:412
+#: sc/inc/globstr.hrc:413
msgctxt "STR_STYLE_FAMILY_CELL"
msgid "Cell Styles"
msgstr "Langelių stiliai"
-#: sc/inc/globstr.hrc:413
+#: sc/inc/globstr.hrc:414
msgctxt "STR_STYLE_FAMILY_PAGE"
msgid "Page Styles"
msgstr "Puslapio stiliai"
-#: sc/inc/globstr.hrc:414
+#: sc/inc/globstr.hrc:415
msgctxt "STR_ERR_DATAPILOTSOURCE"
msgid "Pivot table source data is invalid."
msgstr "Suvestinės lentelės šaltinio duomenys neteisingi."
-#: sc/inc/globstr.hrc:415
+#: sc/inc/globstr.hrc:416
msgctxt "STR_OPTIONS_WARN_SEPARATORS"
msgid "Because the current formula separator settings conflict with the locale, the formula separators have been reset to their default values."
msgstr "Kadangi skiriasi dabartinės formulių skirtukų ir lokalės nuostatos, nustatytos numatytosios formulių skirtukų reikšmės."
-#: sc/inc/globstr.hrc:416
+#: sc/inc/globstr.hrc:417
msgctxt "STR_UNDO_INSERT_CURRENT_DATE"
msgid "Insert Current Date"
msgstr "Įterpti dabartinę datą"
-#: sc/inc/globstr.hrc:417
+#: sc/inc/globstr.hrc:418
msgctxt "STR_UNDO_INSERT_CURRENT_TIME"
msgid "Insert Current Time"
msgstr "Įterpti dabartinį laiką"
-#: sc/inc/globstr.hrc:418
+#: sc/inc/globstr.hrc:419
msgctxt "STR_MANAGE_NAMES"
msgid "Manage Names..."
msgstr "Tvarkyti pavadinimus…"
-#: sc/inc/globstr.hrc:419
+#: sc/inc/globstr.hrc:420
msgctxt "STR_HEADER_NAME"
msgid "Name"
msgstr "Pavadinimas"
-#: sc/inc/globstr.hrc:420
+#: sc/inc/globstr.hrc:421
msgctxt "STR_HEADER_RANGE_OR_EXPR"
msgid "Range or formula expression"
msgstr "Sritis arba formulė"
-#: sc/inc/globstr.hrc:421
+#: sc/inc/globstr.hrc:422
msgctxt "STR_HEADER_SCOPE"
msgid "Scope"
msgstr "Apimtis"
-#: sc/inc/globstr.hrc:422
+#: sc/inc/globstr.hrc:423
msgctxt "STR_MULTI_SELECT"
msgid "(multiple)"
msgstr "(keletas)"
-#: sc/inc/globstr.hrc:423
+#: sc/inc/globstr.hrc:424
msgctxt "STR_GLOBAL_SCOPE"
msgid "Document (Global)"
msgstr "Dokumentas (globalus)"
-#: sc/inc/globstr.hrc:424
+#: sc/inc/globstr.hrc:425
msgctxt "STR_ERR_NAME_EXISTS"
msgid "Invalid name. Already in use for the selected scope."
msgstr "Netinkamas pavadinimas. Toks jau naudojamas pažymėtai sričiai."
-#: sc/inc/globstr.hrc:425
+#: sc/inc/globstr.hrc:426
msgctxt "STR_ERR_NAME_INVALID"
msgid "Invalid name. Only use letters, numbers and underscore."
msgstr "Netinkamas pavadinimas. Galima naudoti tik raides, skaičius ir pabraukimo brūkšnį."
-#: sc/inc/globstr.hrc:426
+#: sc/inc/globstr.hrc:427
msgctxt "STR_UNSAVED_EXT_REF"
msgid ""
"This Document contains external references to unsaved documents.\n"
@@ -2091,218 +2096,218 @@ msgstr ""
"\n"
"Ar norite tęsti?"
-#: sc/inc/globstr.hrc:427
+#: sc/inc/globstr.hrc:428
msgctxt "STR_CLOSE_WITH_UNSAVED_REFS"
msgid "This Document is referenced by another document and not yet saved. Closing it without saving will result in data loss."
msgstr "Šis dokumentas nuoroda susietas su kitu ir dar neįrašytas. Užvėrus neįrašytą dokumentą bus prarasti duomenys."
-#: sc/inc/globstr.hrc:428
+#: sc/inc/globstr.hrc:429
msgctxt "STR_HEADER_RANGE"
msgid "Range"
msgstr "Sritis"
-#: sc/inc/globstr.hrc:429
+#: sc/inc/globstr.hrc:430
msgctxt "STR_HEADER_COND"
msgid "First Condition"
msgstr "Pirmoji sąlyga"
-#: sc/inc/globstr.hrc:430
+#: sc/inc/globstr.hrc:431
msgctxt "STR_COND_CONDITION"
msgid "Cell value is"
msgstr "Langelio reikšmė"
-#: sc/inc/globstr.hrc:431
+#: sc/inc/globstr.hrc:432
msgctxt "STR_COND_COLORSCALE"
msgid "ColorScale"
msgstr "Spalvų_skalė"
-#: sc/inc/globstr.hrc:432
+#: sc/inc/globstr.hrc:433
msgctxt "STR_COND_DATABAR"
msgid "DataBar"
msgstr "Histograma"
-#: sc/inc/globstr.hrc:433
+#: sc/inc/globstr.hrc:434
msgctxt "STR_COND_ICONSET"
msgid "IconSet"
msgstr "Piktogramų_rinkinys"
-#: sc/inc/globstr.hrc:434
+#: sc/inc/globstr.hrc:435
msgctxt "STR_COND_BETWEEN"
msgid "between"
msgstr "yra tarp"
-#: sc/inc/globstr.hrc:435
+#: sc/inc/globstr.hrc:436
msgctxt "STR_COND_NOTBETWEEN"
msgid "not between"
msgstr "nėra tarp"
-#: sc/inc/globstr.hrc:436
+#: sc/inc/globstr.hrc:437
msgctxt "STR_COND_UNIQUE"
msgid "unique"
msgstr "unikalus"
-#: sc/inc/globstr.hrc:437
+#: sc/inc/globstr.hrc:438
msgctxt "STR_COND_DUPLICATE"
msgid "duplicate"
msgstr "yra dublikatas"
-#: sc/inc/globstr.hrc:438
+#: sc/inc/globstr.hrc:439
msgctxt "STR_COND_FORMULA"
msgid "Formula is"
msgstr "Formulė"
-#: sc/inc/globstr.hrc:439
+#: sc/inc/globstr.hrc:440
msgctxt "STR_COND_TOP10"
msgid "Top Elements"
msgstr "Pirmieji"
-#: sc/inc/globstr.hrc:440
+#: sc/inc/globstr.hrc:441
msgctxt "STR_COND_BOTTOM10"
msgid "Bottom Elements"
msgstr "Paskutinieji"
-#: sc/inc/globstr.hrc:441
+#: sc/inc/globstr.hrc:442
msgctxt "STR_COND_TOP_PERCENT"
msgid "Top Percent"
msgstr "Pirmųjų dalis"
-#: sc/inc/globstr.hrc:442
+#: sc/inc/globstr.hrc:443
msgctxt "STR_COND_DATE"
msgid "Date is"
msgstr "Data"
-#: sc/inc/globstr.hrc:443
+#: sc/inc/globstr.hrc:444
msgctxt "STR_COND_BOTTOM_PERCENT"
msgid "Bottom Percent"
msgstr "Paskutiniųjų dalis"
-#: sc/inc/globstr.hrc:444
+#: sc/inc/globstr.hrc:445
msgctxt "STR_COND_ABOVE_AVERAGE"
msgid "Above Average"
msgstr "Daugiau už vidurkį"
-#: sc/inc/globstr.hrc:445
+#: sc/inc/globstr.hrc:446
msgctxt "STR_COND_BELOW_AVERAGE"
msgid "Below Average"
msgstr "Mažiau už vidurkį"
-#: sc/inc/globstr.hrc:446
+#: sc/inc/globstr.hrc:447
msgctxt "STR_COND_ABOVE_EQUAL_AVERAGE"
msgid "Above or equal Average"
msgstr "Daugiau arba lygu vidurkiui"
-#: sc/inc/globstr.hrc:447
+#: sc/inc/globstr.hrc:448
msgctxt "STR_COND_BELOW_EQUAL_AVERAGE"
msgid "Below or equal Average"
msgstr "Mažiau arba lygu vidurkiui"
-#: sc/inc/globstr.hrc:448
+#: sc/inc/globstr.hrc:449
msgctxt "STR_COND_ERROR"
msgid "an Error code"
msgstr "Klaidos kodas"
-#: sc/inc/globstr.hrc:449
+#: sc/inc/globstr.hrc:450
msgctxt "STR_COND_NOERROR"
msgid "not an Error code"
msgstr "Klaidos kodas"
-#: sc/inc/globstr.hrc:450
+#: sc/inc/globstr.hrc:451
msgctxt "STR_COND_BEGINS_WITH"
msgid "Begins with"
msgstr "Prasideda"
-#: sc/inc/globstr.hrc:451
+#: sc/inc/globstr.hrc:452
msgctxt "STR_COND_ENDS_WITH"
msgid "Ends with"
msgstr "Baigiasi"
-#: sc/inc/globstr.hrc:452
+#: sc/inc/globstr.hrc:453
msgctxt "STR_COND_CONTAINS"
msgid "Contains"
msgstr "Turi"
-#: sc/inc/globstr.hrc:453
+#: sc/inc/globstr.hrc:454
msgctxt "STR_COND_NOT_CONTAINS"
msgid "Not Contains"
msgstr "Neturi"
-#: sc/inc/globstr.hrc:454
+#: sc/inc/globstr.hrc:455
msgctxt "STR_COND_TODAY"
msgid "today"
msgstr "šiandien"
-#: sc/inc/globstr.hrc:455
+#: sc/inc/globstr.hrc:456
msgctxt "STR_COND_YESTERDAY"
msgid "yesterday"
msgstr "vakar"
-#: sc/inc/globstr.hrc:456
+#: sc/inc/globstr.hrc:457
msgctxt "STR_COND_TOMORROW"
msgid "tomorrow"
msgstr "rytoj"
-#: sc/inc/globstr.hrc:457
+#: sc/inc/globstr.hrc:458
msgctxt "STR_COND_LAST7DAYS"
msgid "in the last 7 days"
msgstr "per pastarąsias 7 d."
-#: sc/inc/globstr.hrc:458
+#: sc/inc/globstr.hrc:459
msgctxt "STR_COND_THISWEEK"
msgid "this week"
msgstr "ši savaitė"
-#: sc/inc/globstr.hrc:459
+#: sc/inc/globstr.hrc:460
msgctxt "STR_COND_LASTWEEK"
msgid "last week"
msgstr "praėjusi savaitė"
-#: sc/inc/globstr.hrc:460
+#: sc/inc/globstr.hrc:461
msgctxt "STR_COND_NEXTWEEK"
msgid "next week"
msgstr "kita savaitė"
-#: sc/inc/globstr.hrc:461
+#: sc/inc/globstr.hrc:462
msgctxt "STR_COND_THISMONTH"
msgid "this month"
msgstr "šis mėnuo"
-#: sc/inc/globstr.hrc:462
+#: sc/inc/globstr.hrc:463
msgctxt "STR_COND_LASTMONTH"
msgid "last month"
msgstr "praėjęs mėnuo"
-#: sc/inc/globstr.hrc:463
+#: sc/inc/globstr.hrc:464
msgctxt "STR_COND_NEXTMONTH"
msgid "next month"
msgstr "kitas mėnuo"
-#: sc/inc/globstr.hrc:464
+#: sc/inc/globstr.hrc:465
msgctxt "STR_COND_THISYEAR"
msgid "this year"
msgstr "šie metai"
-#: sc/inc/globstr.hrc:465
+#: sc/inc/globstr.hrc:466
msgctxt "STR_COND_LASTYEAR"
msgid "last year"
msgstr "praėję metai"
-#: sc/inc/globstr.hrc:466
+#: sc/inc/globstr.hrc:467
msgctxt "STR_COND_NEXTYEAR"
msgid "next year"
msgstr "kiti metai"
-#: sc/inc/globstr.hrc:467
+#: sc/inc/globstr.hrc:468
#, fuzzy
msgctxt "STR_COND_AND"
msgid "and"
msgstr "ir"
-#: sc/inc/globstr.hrc:468
+#: sc/inc/globstr.hrc:469
msgctxt "STR_ERR_CONDFORMAT_PROTECTED"
msgid "Conditional Formats can not be created, deleted or changed in protected sheets."
msgstr ""
-#: sc/inc/globstr.hrc:469
+#: sc/inc/globstr.hrc:470
msgctxt "STR_EDIT_EXISTING_COND_FORMATS"
msgid ""
"The selected cell already contains conditional formatting. You can either edit the existing conditional format or you define a new overlapping conditional format.\n"
@@ -2313,7 +2318,7 @@ msgstr ""
"\n"
" Ar norite keisti esamą sąlyginį formatą?"
-#: sc/inc/globstr.hrc:470
+#: sc/inc/globstr.hrc:471
msgctxt "STR_QUERY_FORMULA_RECALC_ONLOAD_ODS"
msgid ""
"This document was last saved by an application other than %PRODUCTNAME. Some formula cells may produce different results when recalculated.\n"
@@ -2324,7 +2329,7 @@ msgstr ""
"\n"
"Ar perskaičiuoti visas formules šio dokumento langeliuose?"
-#: sc/inc/globstr.hrc:471
+#: sc/inc/globstr.hrc:472
msgctxt "STR_QUERY_FORMULA_RECALC_ONLOAD_XLS"
msgid ""
"This document was last saved by Excel. Some formula cells may produce different results when recalculated.\n"
@@ -2335,77 +2340,77 @@ msgstr ""
"\n"
"Ar perskaičiuoti visas formules šio dokumento langeliuose?"
-#: sc/inc/globstr.hrc:472
+#: sc/inc/globstr.hrc:473
msgctxt "STR_NO_INSERT_DELETE_OVER_PIVOT_TABLE"
msgid "You cannot insert or delete cells when the affected range intersects with pivot table."
msgstr "Negalima įterpti ar šalinti langelių srityje, kuri kertasi su suvestine lentele."
-#: sc/inc/globstr.hrc:473
+#: sc/inc/globstr.hrc:474
msgctxt "STR_DPFIELD_GROUP_BY_SECONDS"
msgid "Seconds"
msgstr "Sekundės"
-#: sc/inc/globstr.hrc:474
+#: sc/inc/globstr.hrc:475
msgctxt "STR_DPFIELD_GROUP_BY_MINUTES"
msgid "Minutes"
msgstr "min."
-#: sc/inc/globstr.hrc:475
+#: sc/inc/globstr.hrc:476
msgctxt "STR_DPFIELD_GROUP_BY_HOURS"
msgid "Hours"
msgstr "Valandos"
-#: sc/inc/globstr.hrc:476
+#: sc/inc/globstr.hrc:477
msgctxt "STR_DPFIELD_GROUP_BY_DAYS"
msgid "Days"
msgstr "dienos"
-#: sc/inc/globstr.hrc:477
+#: sc/inc/globstr.hrc:478
msgctxt "STR_DPFIELD_GROUP_BY_MONTHS"
msgid "Months"
msgstr "Mėnesiai"
-#: sc/inc/globstr.hrc:478
+#: sc/inc/globstr.hrc:479
msgctxt "STR_DPFIELD_GROUP_BY_QUARTERS"
msgid "Quarters"
msgstr "Ketvirčiai"
-#: sc/inc/globstr.hrc:479
+#: sc/inc/globstr.hrc:480
msgctxt "STR_DPFIELD_GROUP_BY_YEARS"
msgid "Years"
msgstr "Metai"
-#: sc/inc/globstr.hrc:480
+#: sc/inc/globstr.hrc:481
msgctxt "STR_INVALIDVAL"
msgid "Invalid target value."
msgstr "Neteisinga tikslo reikšmė."
-#: sc/inc/globstr.hrc:481
+#: sc/inc/globstr.hrc:482
msgctxt "STR_INVALIDVAR"
msgid "Undefined name for variable cell."
msgstr "Nenurodytas kintamųjų langelio vardas."
-#: sc/inc/globstr.hrc:482
+#: sc/inc/globstr.hrc:483
msgctxt "STR_INVALIDFORM"
msgid "Undefined name as formula cell."
msgstr "Neatpažintas formulės langelio vardas."
-#: sc/inc/globstr.hrc:483
+#: sc/inc/globstr.hrc:484
msgctxt "STR_NOFORMULA"
msgid "Formula cell must contain a formula."
msgstr "Langelis turi turėti formulę."
-#: sc/inc/globstr.hrc:484
+#: sc/inc/globstr.hrc:485
msgctxt "STR_INVALIDINPUT"
msgid "Invalid input."
msgstr "Neleistini pradiniai duomenys."
-#: sc/inc/globstr.hrc:485
+#: sc/inc/globstr.hrc:486
msgctxt "STR_INVALIDCONDITION"
msgid "Invalid condition."
msgstr "Neleistina sąlyga."
-#: sc/inc/globstr.hrc:486
+#: sc/inc/globstr.hrc:487
msgctxt "STR_QUERYREMOVE"
msgid ""
"Should the entry\n"
@@ -2415,133 +2420,133 @@ msgstr ""
"Ar pašalinti įrašą\n"
"#?"
-#: sc/inc/globstr.hrc:487
+#: sc/inc/globstr.hrc:488
msgctxt "STR_COPYLIST"
msgid "Copy List"
msgstr "Kopijuoti sąrašą"
-#: sc/inc/globstr.hrc:488
+#: sc/inc/globstr.hrc:489
msgctxt "STR_COPYFROM"
msgid "List from"
msgstr "Sąrašas iš"
-#: sc/inc/globstr.hrc:489
+#: sc/inc/globstr.hrc:490
msgctxt "STR_COPYERR"
msgid "Cells without text have been ignored."
msgstr "Langelių be teksto nepaisyta."
-#: sc/inc/globstr.hrc:490
+#: sc/inc/globstr.hrc:491
#, c-format
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%s-click to follow hyperlink:"
msgstr "Spustelėkite nuspaudę klavišą „%s“, jei norite eiti saitu:"
-#: sc/inc/globstr.hrc:491
+#: sc/inc/globstr.hrc:492
msgctxt "STR_CLICKHYPERLINK"
msgid "click to open hyperlink:"
msgstr "Spustelėkite, jei norite atverti hipersaitą:"
-#: sc/inc/globstr.hrc:492
+#: sc/inc/globstr.hrc:493
msgctxt "STR_PRINT_PREVIEW_NODATA"
msgid "No Data"
msgstr "Nėra duomenų"
-#: sc/inc/globstr.hrc:493
+#: sc/inc/globstr.hrc:494
msgctxt "STR_PRINT_PREVIEW_EMPTY_RANGE"
msgid "Print Range Empty"
msgstr "Spausdinimo rėžis tuščias"
-#: sc/inc/globstr.hrc:494
+#: sc/inc/globstr.hrc:495
msgctxt "STR_UNDO_CONDFORMAT"
msgid "Conditional Format"
msgstr "Sąlyginis formatavimas"
-#: sc/inc/globstr.hrc:495
+#: sc/inc/globstr.hrc:496
msgctxt "STR_UNDO_CONDFORMAT_LIST"
msgid "Conditional Formats"
msgstr "Sąlyginiai formatai"
-#: sc/inc/globstr.hrc:496
+#: sc/inc/globstr.hrc:497
msgctxt "STR_UNDO_FORMULA_TO_VALUE"
msgid "Convert Formula To Value"
msgstr "Formulę pakeisti reikšme"
-#: sc/inc/globstr.hrc:497
+#: sc/inc/globstr.hrc:498
msgctxt "STR_UNQUOTED_STRING"
msgid "Strings without quotes are interpreted as column/row labels."
msgstr "Tekstas be kabučių laikomas stulpelių arba eilučių antraštėmis."
-#: sc/inc/globstr.hrc:498
+#: sc/inc/globstr.hrc:499
msgctxt "STR_ENTER_VALUE"
msgid "Enter a value!"
msgstr "Įveskite reikšmę!"
-#: sc/inc/globstr.hrc:499
+#: sc/inc/globstr.hrc:500
msgctxt "STR_TABLE_COUNT"
msgid "Sheet %1 of %2"
msgstr "%1 lakštas iš %2"
-#: sc/inc/globstr.hrc:500
+#: sc/inc/globstr.hrc:501
msgctxt "STR_FUNCTIONS_FOUND"
msgid "%1 and %2 more"
msgstr "%1 ir dar %2"
-#: sc/inc/globstr.hrc:501
+#: sc/inc/globstr.hrc:502
msgctxt "STR_GENERAL"
msgid "General"
msgstr "Bendras"
-#: sc/inc/globstr.hrc:502
+#: sc/inc/globstr.hrc:503
msgctxt "STR_NUMBER"
msgid "Number"
msgstr "Skaičius"
-#: sc/inc/globstr.hrc:503
+#: sc/inc/globstr.hrc:504
msgctxt "STR_PERCENT"
msgid "Percent"
msgstr "Procentai"
-#: sc/inc/globstr.hrc:504
+#: sc/inc/globstr.hrc:505
msgctxt "STR_CURRENCY"
msgid "Currency"
msgstr "Valiuta"
-#: sc/inc/globstr.hrc:505
+#: sc/inc/globstr.hrc:506
msgctxt "STR_DATE"
msgid "Date"
msgstr "Data"
-#: sc/inc/globstr.hrc:506
+#: sc/inc/globstr.hrc:507
msgctxt "STR_TIME"
msgid "Time"
msgstr "Laikas"
-#: sc/inc/globstr.hrc:507
+#: sc/inc/globstr.hrc:508
msgctxt "STR_SCIENTIFIC"
msgid "Scientific"
msgstr "Eksponentinis"
-#: sc/inc/globstr.hrc:508
+#: sc/inc/globstr.hrc:509
msgctxt "STR_FRACTION"
msgid "Fraction"
msgstr "Trupmena"
-#: sc/inc/globstr.hrc:509
+#: sc/inc/globstr.hrc:510
msgctxt "STR_BOOLEAN_VALUE"
msgid "Boolean Value"
msgstr "Loginė reikšmė"
-#: sc/inc/globstr.hrc:510
+#: sc/inc/globstr.hrc:511
msgctxt "STR_TEXT"
msgid "Text"
msgstr "Tekstas"
-#: sc/inc/globstr.hrc:511
+#: sc/inc/globstr.hrc:512
msgctxt "STR_QUERY_PIVOTTABLE_DELTAB"
msgid "The selected sheet(s) contain source data of related pivot tables that will be lost. Are you sure you want to delete the selected sheet(s)?"
msgstr ""
-#: sc/inc/globstr.hrc:512
+#: sc/inc/globstr.hrc:513
msgctxt "STR_ERR_NAME_INVALID_CELL_REF"
msgid "Invalid name. Reference to a cell, or a range of cells not allowed."
msgstr ""
@@ -2812,7 +2817,7 @@ msgstr "Duomenų bazė"
#: sc/inc/scfuncs.hrc:39
msgctxt "SC_OPCODE_DB_COUNT"
msgid "The range of cells containing data."
-msgstr "Langelių su duomenimis sritis."
+msgstr "Langelių su duomenimis blokas."
#: sc/inc/scfuncs.hrc:40
msgctxt "SC_OPCODE_DB_COUNT"
@@ -2832,7 +2837,7 @@ msgstr "Paieškos kriterijus"
#: sc/inc/scfuncs.hrc:43
msgctxt "SC_OPCODE_DB_COUNT"
msgid "Defines the cell range containing the search criteria."
-msgstr "Apibrėžia langelių, tenkinančių paieškos kriterijų, sritį."
+msgstr "Apibrėžia langelių, tenkinančių paieškos kriterijų, bloką."
#: sc/inc/scfuncs.hrc:49
msgctxt "SC_OPCODE_DB_COUNT_2"
@@ -2847,7 +2852,7 @@ msgstr "Duomenų bazė"
#: sc/inc/scfuncs.hrc:51
msgctxt "SC_OPCODE_DB_COUNT_2"
msgid "The range of cells containing data."
-msgstr "Langelių su duomenimis sritis."
+msgstr "Langelių su duomenimis blokas."
#: sc/inc/scfuncs.hrc:52
msgctxt "SC_OPCODE_DB_COUNT_2"
@@ -2867,7 +2872,7 @@ msgstr "Paieškos kriterijus"
#: sc/inc/scfuncs.hrc:55
msgctxt "SC_OPCODE_DB_COUNT_2"
msgid "Defines the cell range containing the search criteria."
-msgstr "Apibrėžia langelių, tenkinančių paieškos kriterijų, sritį."
+msgstr "Apibrėžia langelių, tenkinančių paieškos kriterijų, bloką."
#: sc/inc/scfuncs.hrc:61
msgctxt "SC_OPCODE_DB_AVERAGE"
@@ -2882,7 +2887,7 @@ msgstr "Duomenų bazė"
#: sc/inc/scfuncs.hrc:63
msgctxt "SC_OPCODE_DB_AVERAGE"
msgid "The range of cells containing data."
-msgstr "Langelių su duomenimis sritis."
+msgstr "Langelių su duomenimis blokas."
#: sc/inc/scfuncs.hrc:64
msgctxt "SC_OPCODE_DB_AVERAGE"
@@ -2902,7 +2907,7 @@ msgstr "Paieškos kriterijus"
#: sc/inc/scfuncs.hrc:67
msgctxt "SC_OPCODE_DB_AVERAGE"
msgid "Defines the cell range containing the search criteria."
-msgstr "Apibrėžia langelių, tenkinančių paieškos kriterijų, sritį."
+msgstr "Apibrėžia langelių, tenkinančių paieškos kriterijų, bloką."
#: sc/inc/scfuncs.hrc:73
msgctxt "SC_OPCODE_DB_GET"
@@ -2917,7 +2922,7 @@ msgstr "Duomenų bazė"
#: sc/inc/scfuncs.hrc:75
msgctxt "SC_OPCODE_DB_GET"
msgid "The range of cells containing data."
-msgstr "Langelių su duomenimis sritis."
+msgstr "Langelių su duomenimis blokas."
#: sc/inc/scfuncs.hrc:76
msgctxt "SC_OPCODE_DB_GET"
@@ -2937,7 +2942,7 @@ msgstr "Paieškos kriterijus"
#: sc/inc/scfuncs.hrc:79
msgctxt "SC_OPCODE_DB_GET"
msgid "Defines the cell range containing the search criteria."
-msgstr "Apibrėžia langelių, tenkinančių paieškos kriterijų, sritį."
+msgstr "Apibrėžia langelių, tenkinančių paieškos kriterijų, bloką."
#: sc/inc/scfuncs.hrc:85
msgctxt "SC_OPCODE_DB_MAX"
@@ -2952,7 +2957,7 @@ msgstr "Duomenų bazė"
#: sc/inc/scfuncs.hrc:87
msgctxt "SC_OPCODE_DB_MAX"
msgid "The range of cells containing data."
-msgstr "Langelių su duomenimis sritis."
+msgstr "Langelių su duomenimis blokas."
#: sc/inc/scfuncs.hrc:88
msgctxt "SC_OPCODE_DB_MAX"
@@ -2972,7 +2977,7 @@ msgstr "Paieškos kriterijus"
#: sc/inc/scfuncs.hrc:91
msgctxt "SC_OPCODE_DB_MAX"
msgid "Defines the cell range containing the search criteria."
-msgstr "Apibrėžia langelių, tenkinančių paieškos kriterijų, sritį."
+msgstr "Apibrėžia langelių, tenkinančių paieškos kriterijų, bloką."
#: sc/inc/scfuncs.hrc:97
msgctxt "SC_OPCODE_DB_MIN"
@@ -2987,7 +2992,7 @@ msgstr "Duomenų bazė"
#: sc/inc/scfuncs.hrc:99
msgctxt "SC_OPCODE_DB_MIN"
msgid "The range of cells containing data."
-msgstr "Langelių su duomenimis sritis."
+msgstr "Langelių su duomenimis blokas."
#: sc/inc/scfuncs.hrc:100
msgctxt "SC_OPCODE_DB_MIN"
@@ -3007,7 +3012,7 @@ msgstr "Paieškos kriterijus"
#: sc/inc/scfuncs.hrc:103
msgctxt "SC_OPCODE_DB_MIN"
msgid "Defines the cell range containing the search criteria."
-msgstr "Apibrėžia langelių, tenkinančių paieškos kriterijų, sritį."
+msgstr "Apibrėžia langelių, tenkinančių paieškos kriterijų, bloką."
#: sc/inc/scfuncs.hrc:109
msgctxt "SC_OPCODE_DB_PRODUCT"
@@ -3022,7 +3027,7 @@ msgstr "Duomenų bazė"
#: sc/inc/scfuncs.hrc:111
msgctxt "SC_OPCODE_DB_PRODUCT"
msgid "The range of cells containing data."
-msgstr "Langelių su duomenimis sritis."
+msgstr "Langelių su duomenimis blokas."
#: sc/inc/scfuncs.hrc:112
msgctxt "SC_OPCODE_DB_PRODUCT"
@@ -3042,7 +3047,7 @@ msgstr "Paieškos kriterijus"
#: sc/inc/scfuncs.hrc:115
msgctxt "SC_OPCODE_DB_PRODUCT"
msgid "Defines the cell range containing the search criteria."
-msgstr "Apibrėžia langelių, tenkinančių paieškos kriterijų, sritį."
+msgstr "Apibrėžia langelių, tenkinančių paieškos kriterijų, bloką."
#: sc/inc/scfuncs.hrc:121
msgctxt "SC_OPCODE_DB_STD_DEV"
@@ -3057,7 +3062,7 @@ msgstr "Duomenų bazė"
#: sc/inc/scfuncs.hrc:123
msgctxt "SC_OPCODE_DB_STD_DEV"
msgid "The range of cells containing data."
-msgstr "Langelių su duomenimis sritis."
+msgstr "Langelių su duomenimis blokas."
#: sc/inc/scfuncs.hrc:124
msgctxt "SC_OPCODE_DB_STD_DEV"
@@ -3077,7 +3082,7 @@ msgstr "Paieškos kriterijus"
#: sc/inc/scfuncs.hrc:127
msgctxt "SC_OPCODE_DB_STD_DEV"
msgid "Defines the cell range containing the search criteria."
-msgstr "Apibrėžia langelių, tenkinančių paieškos kriterijų, sritį."
+msgstr "Apibrėžia langelių, tenkinančių paieškos kriterijų, bloką."
#: sc/inc/scfuncs.hrc:133
msgctxt "SC_OPCODE_DB_STD_DEV_P"
@@ -3092,7 +3097,7 @@ msgstr "Duomenų bazė"
#: sc/inc/scfuncs.hrc:135
msgctxt "SC_OPCODE_DB_STD_DEV_P"
msgid "The range of cells containing data."
-msgstr "Langelių su duomenimis sritis."
+msgstr "Langelių su duomenimis blokas."
#: sc/inc/scfuncs.hrc:136
msgctxt "SC_OPCODE_DB_STD_DEV_P"
@@ -3112,12 +3117,12 @@ msgstr "Paieškos kriterijus"
#: sc/inc/scfuncs.hrc:139
msgctxt "SC_OPCODE_DB_STD_DEV_P"
msgid "Defines the cell range containing the search criteria."
-msgstr "Apibrėžia langelių, tenkinančių paieškos kriterijų, sritį."
+msgstr "Apibrėžia langelių, tenkinančių paieškos kriterijų, bloką."
#: sc/inc/scfuncs.hrc:145
msgctxt "SC_OPCODE_DB_SUM"
msgid "Adds all the cells of a data range where the contents match the search criteria."
-msgstr "Prideda duomenų srities visus langelius, kurie tenkina paieškos kriterijų"
+msgstr "Prideda visus duomenų srities langelius, kurie tenkina paieškos kriterijų."
#: sc/inc/scfuncs.hrc:146
msgctxt "SC_OPCODE_DB_SUM"
@@ -3127,7 +3132,7 @@ msgstr "Duomenų bazė"
#: sc/inc/scfuncs.hrc:147
msgctxt "SC_OPCODE_DB_SUM"
msgid "The range of cells containing data."
-msgstr "Langelių su duomenimis sritis."
+msgstr "Langelių su duomenimis blokas."
#: sc/inc/scfuncs.hrc:148
msgctxt "SC_OPCODE_DB_SUM"
@@ -3147,12 +3152,12 @@ msgstr "Paieškos kriterijus"
#: sc/inc/scfuncs.hrc:151
msgctxt "SC_OPCODE_DB_SUM"
msgid "Defines the cell range containing the search criteria."
-msgstr "Apibrėžia langelių, tenkinančių paieškos kriterijų, sritį."
+msgstr "Apibrėžia langelių, tenkinančių paieškos kriterijų, bloką."
#: sc/inc/scfuncs.hrc:157
msgctxt "SC_OPCODE_DB_VAR"
msgid "Determines the variance of all the cells in a data range where the contents match the search criteria."
-msgstr "Rezultatas yra visų langelių, kurių turinys tenkina paieškos kriterijų, dispersija"
+msgstr "Rezultatas yra visų langelių, kurių turinys tenkina paieškos kriterijų, dispersija."
#: sc/inc/scfuncs.hrc:158
msgctxt "SC_OPCODE_DB_VAR"
@@ -3162,7 +3167,7 @@ msgstr "Duomenų bazė"
#: sc/inc/scfuncs.hrc:159
msgctxt "SC_OPCODE_DB_VAR"
msgid "The range of cells containing data."
-msgstr "Langelių su duomenimis sritis."
+msgstr "Langelių su duomenimis blokas."
#: sc/inc/scfuncs.hrc:160
msgctxt "SC_OPCODE_DB_VAR"
@@ -3182,12 +3187,12 @@ msgstr "Paieškos kriterijus"
#: sc/inc/scfuncs.hrc:163
msgctxt "SC_OPCODE_DB_VAR"
msgid "Defines the cell range containing the search criteria."
-msgstr "Apibrėžia langelių, tenkinančių paieškos kriterijų, sritį."
+msgstr "Apibrėžia langelių, tenkinančių paieškos kriterijų, bloką."
#: sc/inc/scfuncs.hrc:169
msgctxt "SC_OPCODE_DB_VAR_P"
msgid "Determines variance of a population based on all cells in a data range where contents match the search criteria."
-msgstr "Apibrėžia populiacijos išdėstytos visuose duomenų srities langeliuose, kurių turinys tenkina paieškos kriterijų, dispersiją"
+msgstr "Apibrėžia populiacijos išdėstytos visuose duomenų srities langeliuose, kurių turinys tenkina paieškos kriterijų, dispersiją."
#: sc/inc/scfuncs.hrc:170
msgctxt "SC_OPCODE_DB_VAR_P"
@@ -3197,7 +3202,7 @@ msgstr "Duomenų bazė"
#: sc/inc/scfuncs.hrc:171
msgctxt "SC_OPCODE_DB_VAR_P"
msgid "The range of cells containing data."
-msgstr "Langelių su duomenimis sritis."
+msgstr "Langelių su duomenimis blokas."
#: sc/inc/scfuncs.hrc:172
msgctxt "SC_OPCODE_DB_VAR_P"
@@ -3217,7 +3222,7 @@ msgstr "Paieškos kriterijus"
#: sc/inc/scfuncs.hrc:175
msgctxt "SC_OPCODE_DB_VAR_P"
msgid "Defines the cell range containing the search criteria."
-msgstr "Apibrėžia langelių, tenkinančių paieškos kriterijų, sritį."
+msgstr "Apibrėžia langelių, tenkinančių paieškos kriterijų, bloką."
#: sc/inc/scfuncs.hrc:181
msgctxt "SC_OPCODE_GET_DATE"
@@ -5275,18 +5280,17 @@ msgstr "Reiškinio a^b laipsnio rodiklis b."
#: sc/inc/scfuncs.hrc:944
msgctxt "SC_OPCODE_COUNT_EMPTY_CELLS"
msgid "Counts the blank cells in a specified range."
-msgstr "Suskaičiuoja nurodytos srities tuščius langelius."
+msgstr "Suskaičiuoja nurodyto bloko tuščius langelius."
#: sc/inc/scfuncs.hrc:945
-#, fuzzy
msgctxt "SC_OPCODE_COUNT_EMPTY_CELLS"
msgid "Range"
-msgstr "Sritis"
+msgstr "Blokas"
#: sc/inc/scfuncs.hrc:946
msgctxt "SC_OPCODE_COUNT_EMPTY_CELLS"
msgid "The range in which empty cells are to be counted."
-msgstr "Sritis, kur skaičiuojami tušti langeliai."
+msgstr "Blokas, kur skaičiuojami tušti langeliai."
#: sc/inc/scfuncs.hrc:952
msgctxt "SC_OPCODE_PI"
@@ -5344,15 +5348,14 @@ msgid "Totals the arguments that meet the condition."
msgstr "Argumentų, tenkinančių sąlygą, skaičius."
#: sc/inc/scfuncs.hrc:983
-#, fuzzy
msgctxt "SC_OPCODE_SUM_IF"
msgid "Range"
-msgstr "Sritis"
+msgstr "Blokas"
#: sc/inc/scfuncs.hrc:984
msgctxt "SC_OPCODE_SUM_IF"
msgid "The range to be evaluated by the criteria given."
-msgstr "Langelių sritis, kuriai taikomas nurodytas kriterijus."
+msgstr "Langelių blokas, kuriam taikomas nurodytas kriterijus."
#: sc/inc/scfuncs.hrc:985
msgctxt "SC_OPCODE_SUM_IF"
@@ -5365,15 +5368,14 @@ msgid "The criteria to be applied to the range."
msgstr "Sričiai taikomas kriterijus."
#: sc/inc/scfuncs.hrc:987
-#, fuzzy
msgctxt "SC_OPCODE_SUM_IF"
msgid "Sum range"
-msgstr "sumos_sritis"
+msgstr "sumos_blokas"
#: sc/inc/scfuncs.hrc:988
msgctxt "SC_OPCODE_SUM_IF"
msgid "The range from which the values are to be totalled."
-msgstr "Sritis, kurios reikšmės sudedamos."
+msgstr "Blokas, kurio reikšmės sudedamos."
#: sc/inc/scfuncs.hrc:994
msgctxt "SC_OPCODE_AVERAGE_IF"
@@ -5381,15 +5383,14 @@ msgid "Averages the arguments that meet the conditions."
msgstr "Apskaičiuojamas argumentų, tenkinančių sąlygas, vidurkis."
#: sc/inc/scfuncs.hrc:995
-#, fuzzy
msgctxt "SC_OPCODE_AVERAGE_IF"
msgid "Range"
-msgstr "Sritis"
+msgstr "Blokas"
#: sc/inc/scfuncs.hrc:996
msgctxt "SC_OPCODE_AVERAGE_IF"
msgid "The range to be evaluated by the criteria given."
-msgstr "Langelių sritis, kuriai taikomas nurodytas kriterijus."
+msgstr "Langelių blokas, kuriam taikomas nurodytas kriterijus."
#: sc/inc/scfuncs.hrc:997
msgctxt "SC_OPCODE_AVERAGE_IF"
@@ -5399,40 +5400,37 @@ msgstr "Kriterijai"
#: sc/inc/scfuncs.hrc:998
msgctxt "SC_OPCODE_AVERAGE_IF"
msgid "The criteria to be applied to the range."
-msgstr "Sričiai taikomas kriterijus."
+msgstr "Blokui taikomas kriterijus."
#: sc/inc/scfuncs.hrc:999
-#, fuzzy
msgctxt "SC_OPCODE_AVERAGE_IF"
msgid "Average range"
-msgstr "vidurkio_sritis"
+msgstr "vidurkio_blokas"
#: sc/inc/scfuncs.hrc:1000
msgctxt "SC_OPCODE_AVERAGE_IF"
msgid "The range from which the values are to be averaged."
-msgstr "Sritis, kurios reikšmių vidurkis skaičiuojamas."
+msgstr "Blokas, kurio reikšmių vidurkis skaičiuojamas."
#: sc/inc/scfuncs.hrc:1005
msgctxt "SC_OPCODE_SUM_IFS"
msgid "Totals the values of cells in a range that meet multiple criteria in multiple ranges."
-msgstr "Apskaičiuojama langelių, tenkinančių keletą kriterijų keliuose rėžiuose, reikšmių suma."
+msgstr "Apskaičiuojama langelių, tenkinančių keletą kriterijų keliuose blokuose, reikšmių suma."
#: sc/inc/scfuncs.hrc:1006
-#, fuzzy
msgctxt "SC_OPCODE_SUM_IFS"
msgid "Sum range"
-msgstr "sumos_sritis"
+msgstr "sumos_blokas"
#: sc/inc/scfuncs.hrc:1007
msgctxt "SC_OPCODE_SUM_IFS"
msgid "The range from which the values are to be totalled."
-msgstr "Sritis, kurios reikšmės sudedamos."
+msgstr "Blokas, kurio reikšmės sudedamos."
#: sc/inc/scfuncs.hrc:1008
-#, fuzzy
msgctxt "SC_OPCODE_SUM_IFS"
msgid "Range "
-msgstr "Sritis"
+msgstr "Blokas"
#: sc/inc/scfuncs.hrc:1009
msgctxt "SC_OPCODE_SUM_IFS"
@@ -5456,21 +5454,19 @@ msgid "Averages the value of the cells that meet multiple criteria in multiple r
msgstr "Apskaičiuojamas langelių, tenkinančių keletą kriterijų keliuose rėžiuose, reikšmių vidurkis."
#: sc/inc/scfuncs.hrc:1018
-#, fuzzy
msgctxt "SC_OPCODE_AVERAGE_IFS"
msgid "Average range"
-msgstr "vidurkio_sritis"
+msgstr "vidurkio_blokas"
#: sc/inc/scfuncs.hrc:1019
msgctxt "SC_OPCODE_AVERAGE_IFS"
msgid "The range from which the values are to be averaged."
-msgstr "Sritis, kurios reikšmių vidurkis skaičiuojamas."
+msgstr "Blokas, kurio reikšmių vidurkis skaičiuojamas."
#: sc/inc/scfuncs.hrc:1020
-#, fuzzy
msgctxt "SC_OPCODE_AVERAGE_IFS"
msgid "Range "
-msgstr "Sritis"
+msgstr "Blokas"
#: sc/inc/scfuncs.hrc:1021
msgctxt "SC_OPCODE_AVERAGE_IFS"
@@ -5494,10 +5490,9 @@ msgid "Counts the cells that meet multiple criteria in multiple ranges."
msgstr "Suskaičiuojami langeliai, tenkinantys keletą kriterijų keliuose rėžiuose."
#: sc/inc/scfuncs.hrc:1030
-#, fuzzy
msgctxt "SC_OPCODE_COUNT_IFS"
msgid "Range "
-msgstr "Sritis"
+msgstr "Blokas"
#: sc/inc/scfuncs.hrc:1031
msgctxt "SC_OPCODE_COUNT_IFS"
@@ -5521,15 +5516,14 @@ msgid "Counts the arguments which meet the set conditions."
msgstr "Suskaičiuojami argumentai, tenkinantys nustatytus kriterijus."
#: sc/inc/scfuncs.hrc:1040
-#, fuzzy
msgctxt "SC_OPCODE_COUNT_IF"
msgid "Range"
-msgstr "Sritis"
+msgstr "Blokas"
#: sc/inc/scfuncs.hrc:1041
msgctxt "SC_OPCODE_COUNT_IF"
msgid "The range of cells to be evaluated by the criteria given."
-msgstr "Langelių sritis, kuriai taikomas nurodytas kriterijus."
+msgstr "Langelių blokas, kuriam taikomas nurodytas kriterijus."
#: sc/inc/scfuncs.hrc:1042
msgctxt "SC_OPCODE_COUNT_IF"
@@ -5539,7 +5533,7 @@ msgstr "Kriterijai"
#: sc/inc/scfuncs.hrc:1043
msgctxt "SC_OPCODE_COUNT_IF"
msgid "The criteria to be applied to the range."
-msgstr "Sričiai taikomas kriterijus."
+msgstr "Blokui taikomas kriterijus."
#: sc/inc/scfuncs.hrc:1049
msgctxt "SC_OPCODE_SQRT"
@@ -6137,15 +6131,14 @@ msgid "Function index. Is an index of the possible functions Total, Max, ..."
msgstr "Funkcijų rodyklė. Galimų funkcijų rodyklė: Total, Max, …"
#: sc/inc/scfuncs.hrc:1348
-#, fuzzy
msgctxt "SC_OPCODE_SUB_TOTAL"
msgid "Range"
-msgstr "Sritis"
+msgstr "Blokas"
#: sc/inc/scfuncs.hrc:1349
msgctxt "SC_OPCODE_SUB_TOTAL"
msgid "The cells of the range which are to be taken into account."
-msgstr "Srities langeliai, kuriems taikoma funkcija."
+msgstr "Bloko langeliai, kuriems taikoma funkcija."
#: sc/inc/scfuncs.hrc:1355
msgctxt "SC_OPCODE_AGGREGATE"
@@ -6180,7 +6173,7 @@ msgstr ""
#: sc/inc/scfuncs.hrc:1361
msgctxt "SC_OPCODE_AGGREGATE"
msgid "The cell(s) of the range which are to be taken into account."
-msgstr "Srities langeliai, kuriems taikoma funkcija."
+msgstr "Bloko langeliai, kuriems taikoma funkcija."
#: sc/inc/scfuncs.hrc:1362
msgctxt "SC_OPCODE_AGGREGATE"
@@ -6190,7 +6183,7 @@ msgstr ""
#: sc/inc/scfuncs.hrc:1363
msgctxt "SC_OPCODE_AGGREGATE"
msgid "The cells of the range which are to be taken into account or mandatory 2nd argument for certain functions."
-msgstr "Srities langeliai, kuriems taikoma funkcija, arba privalomas antrasis tam tikrų funkcijų argumentas."
+msgstr "Bloko langeliai, kuriems taikoma funkcija, arba privalomas antrasis tam tikrų funkcijų argumentas."
#: sc/inc/scfuncs.hrc:1369
msgctxt "SC_OPCODE_INT"
@@ -10581,8 +10574,8 @@ msgstr "Metodas"
#: sc/inc/scfuncs.hrc:3010
msgctxt "SC_OPCODE_T_TEST"
-msgid "Mode specifies the number of distribution tails to return. 1= one-tailed, 2 = two-tailed distribution"
-msgstr "Jei būsena=1, skaičiuojamas vienpusis skirstinys, jei 2, tai skaičiuojamas dvipusis skirstinys"
+msgid "Mode specifies the number of distribution tails to return. 1 = one-tailed, 2 = two-tailed distribution"
+msgstr ""
#: sc/inc/scfuncs.hrc:3011
msgctxt "SC_OPCODE_T_TEST"
@@ -10629,8 +10622,8 @@ msgstr "Metodas"
#: sc/inc/scfuncs.hrc:3024
msgctxt "SC_OPCODE_T_TEST_MS"
-msgid "Mode specifies the number of distribution tails to return. 1= one-tailed, 2 = two-tailed distribution"
-msgstr "Jei veiksena=1, skaičiuojamas vienpusis skirstinys, jei 2, skaičiuojamas dvipusis skirstinys."
+msgid "Mode specifies the number of distribution tails to return. 1 = one-tailed, 2 = two-tailed distribution"
+msgstr ""
#: sc/inc/scfuncs.hrc:3025
msgctxt "SC_OPCODE_T_TEST_MS"
@@ -18304,22 +18297,22 @@ msgctxt "mergecellsdialog|MergeCellsDialog"
msgid "Merge Cells"
msgstr "Langelių suliejimas"
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:81
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:84
msgctxt "mergecellsdialog|label"
msgid "Some cells are not empty."
msgstr "Kai kurie langeliai yra netušti."
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:96
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:99
msgctxt "mergecellsdialog|move-cells-radio"
msgid "Move the contents of the hidden cells into the first cell"
msgstr "Slepiamų langelių turinį perkelti į pirmąjį langelį"
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:112
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:115
msgctxt "mergecellsdialog|empty-cells-radio"
msgid "Empty the contents of the hidden cells"
msgstr "Pašalinti slepiamų langelių turinį"
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:128
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:131
msgctxt "mergecellsdialog|keep-content-radio"
msgid "Keep the contents of the hidden cells"
msgstr "Išlaikyti slepiamų langelių turinį"
diff --git a/source/lt/sd/messages.po b/source/lt/sd/messages.po
index a7ec89bc3a4..2a04cbff873 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2018-05-11 20:00+0000\n"
"Last-Translator: Modestas Rimkus <modestas.rimkus@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -16,167 +16,167 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1526068836.000000\n"
-#: sd/inc/DocumentRenderer.hrc:29
+#: sd/inc/DocumentRenderer.hrc:27
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Slides"
msgstr "Skaidrės"
-#: sd/inc/DocumentRenderer.hrc:30
+#: sd/inc/DocumentRenderer.hrc:28
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Handouts"
msgstr "Dalijamoji medžiaga"
-#: sd/inc/DocumentRenderer.hrc:31
+#: sd/inc/DocumentRenderer.hrc:29
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Notes"
msgstr "Pastabos"
-#: sd/inc/DocumentRenderer.hrc:32
+#: sd/inc/DocumentRenderer.hrc:30
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Outline"
msgstr "Struktūra"
-#: sd/inc/DocumentRenderer.hrc:37
+#: sd/inc/DocumentRenderer.hrc:35
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "According to layout"
msgstr "Pagal maketą"
-#: sd/inc/DocumentRenderer.hrc:38
+#: sd/inc/DocumentRenderer.hrc:36
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "1"
msgstr "1"
-#: sd/inc/DocumentRenderer.hrc:39
+#: sd/inc/DocumentRenderer.hrc:37
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "2"
msgstr "2"
-#: sd/inc/DocumentRenderer.hrc:40
+#: sd/inc/DocumentRenderer.hrc:38
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "3"
msgstr "3"
-#: sd/inc/DocumentRenderer.hrc:41
+#: sd/inc/DocumentRenderer.hrc:39
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "4"
msgstr "4"
-#: sd/inc/DocumentRenderer.hrc:42
+#: sd/inc/DocumentRenderer.hrc:40
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "6"
msgstr "6"
-#: sd/inc/DocumentRenderer.hrc:43
+#: sd/inc/DocumentRenderer.hrc:41
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "9"
msgstr "9"
-#: sd/inc/DocumentRenderer.hrc:48
+#: sd/inc/DocumentRenderer.hrc:46
msgctxt "STR_IMPRESS_PRINT_UI_ORDER_CHOICES"
msgid "Left to right, then down"
msgstr "Iš kairės į dešinę, tada žemyn"
-#: sd/inc/DocumentRenderer.hrc:49
+#: sd/inc/DocumentRenderer.hrc:47
msgctxt "STR_IMPRESS_PRINT_UI_ORDER_CHOICES"
msgid "Top to bottom, then right"
msgstr "Iš viršaus į apačią, tada dešinėn"
-#: sd/inc/DocumentRenderer.hrc:54
+#: sd/inc/DocumentRenderer.hrc:52
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Original colors"
msgstr "Originalios spalvos"
-#: sd/inc/DocumentRenderer.hrc:55
+#: sd/inc/DocumentRenderer.hrc:53
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Grayscale"
msgstr "Nespalvota su pustoniais"
-#: sd/inc/DocumentRenderer.hrc:56
+#: sd/inc/DocumentRenderer.hrc:54
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Black & white"
msgstr "Nespalvota"
-#: sd/inc/DocumentRenderer.hrc:61
+#: sd/inc/DocumentRenderer.hrc:59
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Original size"
msgstr "Originalus dydis"
-#: sd/inc/DocumentRenderer.hrc:62
+#: sd/inc/DocumentRenderer.hrc:60
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Fit to printable page"
msgstr "Pritaikyti prie puslapio dydžio"
-#: sd/inc/DocumentRenderer.hrc:63
+#: sd/inc/DocumentRenderer.hrc:61
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Distribute on multiple sheets of paper"
msgstr "Skaidyti į keletą lapų"
-#: sd/inc/DocumentRenderer.hrc:64
+#: sd/inc/DocumentRenderer.hrc:62
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Tile sheet of paper with repeated slides"
msgstr "Puslapyje išdėstyti vienodas skaidres"
-#: sd/inc/DocumentRenderer.hrc:69
+#: sd/inc/DocumentRenderer.hrc:67
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Original size"
msgstr "Originalus dydis"
-#: sd/inc/DocumentRenderer.hrc:70
+#: sd/inc/DocumentRenderer.hrc:68
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Fit to printable page"
msgstr "Pritaikyti prie puslapio dydžio"
-#: sd/inc/DocumentRenderer.hrc:71
+#: sd/inc/DocumentRenderer.hrc:69
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Distribute on multiple sheets of paper"
msgstr "Skaidyti į keletą lapų"
-#: sd/inc/DocumentRenderer.hrc:72
+#: sd/inc/DocumentRenderer.hrc:70
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Tile sheet of paper with repeated pages"
msgstr "Puslapyje išdėstyti vienodus lapus"
-#: sd/inc/DocumentRenderer.hrc:77
+#: sd/inc/DocumentRenderer.hrc:75
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "All pages"
msgstr "Visi puslapiai"
-#: sd/inc/DocumentRenderer.hrc:78
+#: sd/inc/DocumentRenderer.hrc:76
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "Front sides / right pages"
msgstr "Priekis (dešinieji puslapiai)"
-#: sd/inc/DocumentRenderer.hrc:79
+#: sd/inc/DocumentRenderer.hrc:77
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "Back sides / left pages"
msgstr "Nugara (kairieji puslapiai)"
-#: sd/inc/DocumentRenderer.hrc:84
+#: sd/inc/DocumentRenderer.hrc:82
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~All slides"
msgstr "Visos skaidrės"
-#: sd/inc/DocumentRenderer.hrc:85
+#: sd/inc/DocumentRenderer.hrc:83
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~Slides"
msgstr "Skaidrės"
-#: sd/inc/DocumentRenderer.hrc:86
+#: sd/inc/DocumentRenderer.hrc:84
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Se~lection"
msgstr "Atranka"
-#: sd/inc/DocumentRenderer.hrc:91
+#: sd/inc/DocumentRenderer.hrc:89
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~All pages"
msgstr "Visi lapai"
-#: sd/inc/DocumentRenderer.hrc:92
+#: sd/inc/DocumentRenderer.hrc:90
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Pa~ges"
msgstr "Lapai"
-#: sd/inc/DocumentRenderer.hrc:93
+#: sd/inc/DocumentRenderer.hrc:91
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Se~lection"
msgstr "Atranka"
diff --git a/source/lt/svx/messages.po b/source/lt/svx/messages.po
index bb28fca89a9..97e47092d3e 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: 2018-05-16 16:53+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2018-05-22 18:48+0000\n"
"Last-Translator: Modestas Rimkus <modestas.rimkus@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1527014908.000000\n"
#: svx/inc/fieldunit.hrc:30
@@ -5246,8 +5246,8 @@ msgstr "Prie pranešimo apie klaidą galima pridėti tam tikrus naudotojo profil
#: svx/uiconfig/ui/safemodedialog.ui:432
msgctxt "safemodedialog|btn_create_zip"
-msgid "Create Zip Archive from User Profile"
-msgstr "Kurti naudotojo profilio „Zip“ paką"
+msgid "Archive User Profile"
+msgstr ""
#: svx/uiconfig/ui/safemodedialog.ui:445
msgctxt "safemodedialog|linkbutton_profile"
@@ -8843,9 +8843,9 @@ msgid "Red"
msgstr "Raudona"
#: include/svx/strings.hrc:565
-msgctxt "RID_SVXSTR_COLOR_VIOLET"
-msgid "Violet"
-msgstr "Šviesiai violetinė"
+msgctxt "RID_SVXSTR_COLOR_MAGENTA"
+msgid "Magenta"
+msgstr "Purpurinė"
#: include/svx/strings.hrc:566
msgctxt "RID_SVXSTR_COLOR_PURPLE"
@@ -8911,8 +8911,8 @@ msgid "Light Red"
msgstr "Šviesiai raudona"
#: include/svx/strings.hrc:579
-msgctxt "RID_SVXSTR_COLOR_LIGHTVIOLET"
-msgid "Light Violet"
+msgctxt "RID_SVXSTR_COLOR_LIGHTMAGENTA"
+msgid "Light Magenta"
msgstr ""
#: include/svx/strings.hrc:580
@@ -8978,10 +8978,9 @@ msgid "Dark Red"
msgstr "Tamsiai raudonas"
#: include/svx/strings.hrc:593
-#, fuzzy
-msgctxt "RID_SVXSTR_COLOR_DARKVIOLET1"
-msgid "Dark Violet"
-msgstr "Tamsiai violetinė"
+msgctxt "RID_SVXSTR_COLOR_DARKMAGENTA"
+msgid "Dark Magenta"
+msgstr ""
#: include/svx/strings.hrc:594
msgctxt "RID_SVXSTR_COLOR_DARKPURPLE"
@@ -9015,55 +9014,55 @@ msgstr ""
#. Elements of the Tonal color palette
#: include/svx/strings.hrc:601
+msgctxt "RID_SVXSTR_COLOR_VIOLET"
+msgid "Violet"
+msgstr "Šviesiai violetinė"
+
+#: include/svx/strings.hrc:602
msgctxt "RID_SVXSTR_COLOR_VIOLET_OUG"
msgid "Violet (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:602
+#: include/svx/strings.hrc:603
msgctxt "RID_SVXSTR_COLOR_BLUE_OUG"
msgid "Blue (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:603
+#: include/svx/strings.hrc:604
msgctxt "RID_SVXSTR_COLOR_AZURE_OUG"
msgid "Azure (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:604
+#: include/svx/strings.hrc:605
msgctxt "RID_SVXSTR_COLOR_SPRINGGREEN_OUG"
msgid "Spring Green (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:605
+#: include/svx/strings.hrc:606
msgctxt "RID_SVXSTR_COLOR_GREEN_OUG"
msgid "Green (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:606
+#: include/svx/strings.hrc:607
msgctxt "RID_SVXSTR_COLOR_CHARTREUSEGREEN_OUG"
msgid "Chartreuse Green (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:607
+#: include/svx/strings.hrc:608
msgctxt "RID_SVXSTR_COLOR_ORANGE_OUG"
msgid "Orange (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:608
+#: include/svx/strings.hrc:609
msgctxt "RID_SVXSTR_COLOR_RED_OUG"
msgid "Red (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:609
+#: include/svx/strings.hrc:610
msgctxt "RID_SVXSTR_COLOR_ROSE_OUG"
msgid "Rose (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:610
-msgctxt "RID_SVXSTR_COLOR_MAGENTA"
-msgid "Magenta"
-msgstr "Purpurinė"
-
#: include/svx/strings.hrc:611
msgctxt "RID_SVXSTR_COLOR_AZURE"
msgid "Azure"
@@ -12181,13 +12180,13 @@ msgstr "Rodyklės dešinėn"
#: include/svx/strings.hrc:1273
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_6"
-msgid "Check mark bullets"
-msgstr "Kryželiai"
+msgid "Cross mark bullets"
+msgstr ""
#: include/svx/strings.hrc:1274
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_7"
-msgid "Tick mark bullets"
-msgstr "Varnelės"
+msgid "Check mark bullets"
+msgstr ""
#: include/svx/strings.hrc:1275
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_0"
diff --git a/source/lt/sw/messages.po b/source/lt/sw/messages.po
index a0af2c57215..36e2141c897 100644
--- a/source/lt/sw/messages.po
+++ b/source/lt/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: 2018-05-22 13:17+0200\n"
-"PO-Revision-Date: 2018-05-22 17:36+0000\n"
+"POT-Creation-Date: 2018-06-12 14:41+0200\n"
+"PO-Revision-Date: 2018-05-24 18:57+0000\n"
"Last-Translator: Modestas Rimkus <modestas.rimkus@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: lt\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1527010587.000000\n"
+"X-POOTLE-MTIME: 1527188263.000000\n"
#: sw/inc/app.hrc:29
msgctxt "RID_PARAGRAPHSTYLEFAMILY"
@@ -1006,7 +1006,7 @@ msgstr "Pavadinimas"
#: sw/inc/strings.hrc:137
msgctxt "STR_POOLCOLL_LABEL_ABB"
msgid "Illustration"
-msgstr "Paveikslas"
+msgstr "Iliustracija"
#: sw/inc/strings.hrc:138
msgctxt "STR_POOLCOLL_LABEL_TABLE"
@@ -1026,7 +1026,7 @@ msgstr "Grafikos objektas"
#: sw/inc/strings.hrc:141
msgctxt "STR_POOLCOLL_LABEL_FIGURE"
msgid "Figure"
-msgstr ""
+msgstr "Paveikslas"
#: sw/inc/strings.hrc:142
msgctxt "STR_POOLCOLL_JAKETADRESS"
@@ -1180,13 +1180,13 @@ msgstr "Citata"
#: sw/inc/strings.hrc:172
msgctxt "STR_POOLCOLL_TOX_ILLUSH"
-msgid "Illustration Index Heading"
-msgstr "Iliustracijų rodyklės antraštė"
+msgid "Figure Index Heading"
+msgstr ""
#: sw/inc/strings.hrc:173
msgctxt "STR_POOLCOLL_TOX_ILLUS1"
-msgid "Illustration Index 1"
-msgstr "Iliustracijų rodyklė 1"
+msgid "Figure Index 1"
+msgstr ""
#: sw/inc/strings.hrc:174
msgctxt "STR_POOLCOLL_TOX_OBJECTH"
@@ -3590,8 +3590,8 @@ msgstr "Objektų lentelė"
#: sw/inc/strings.hrc:672
msgctxt "STR_TOX_ILL"
-msgid "Illustration Index"
-msgstr "Paveikslų rodyklė"
+msgid "Table of Figures"
+msgstr ""
#: sw/inc/strings.hrc:673
#, c-format
@@ -9249,72 +9249,72 @@ msgctxt "footnotepage|label5"
msgid "Continuation Notice"
msgstr "Tęsinys"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:49
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:55
msgctxt "footnotesendnotestabpage|ftnntnum"
msgid "_Restart numbering"
msgstr "Numeruoti iš naujo"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:91
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:93
msgctxt "footnotesendnotestabpage|ftnoffset_label"
msgid "_Start at:"
msgstr "Pradėti nuo:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:112
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:111
msgctxt "footnotesendnotestabpage|ftnntnumfmt"
msgid "Custom _format"
msgstr "Pasirinktinis formatas"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:155
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:150
msgctxt "footnotesendnotestabpage|ftnsuffix_label"
msgid "Aft_er:"
msgstr "Iš dešinės:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:199
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:188
msgctxt "footnotesendnotestabpage|ftnprefix_label"
msgid "Be_fore:"
msgstr "Iš kairės:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:228
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:212
msgctxt "footnotesendnotestabpage|ftnntattextend"
msgid "Collec_t at end of text"
msgstr "Sudėti teksto pabaigoje"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:252
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:234
msgctxt "footnotesendnotestabpage|label1"
msgid "Footnotes"
msgstr "Išnašos"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:289
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:271
msgctxt "footnotesendnotestabpage|endntattextend"
msgid "C_ollect at end of section"
msgstr "Sudėti sekcijos pabaigoje"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:315
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:295
msgctxt "footnotesendnotestabpage|endntnum"
msgid "_Restart numbering"
msgstr "Numeruoti iš naujo"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:357
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:333
msgctxt "footnotesendnotestabpage|endoffset_label"
msgid "_Start at:"
msgstr "Pradėti nuo:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:378
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:351
msgctxt "footnotesendnotestabpage|endntnumfmt"
msgid "_Custom format"
msgstr "Pasirinktinis formatas"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:421
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:390
msgctxt "footnotesendnotestabpage|endsuffix_label"
msgid "Aft_er:"
msgstr "Iš dešinės:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:465
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:428
msgctxt "footnotesendnotestabpage|endprefix_label"
msgid "Be_fore:"
msgstr "Iš kairės:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:500
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:458
msgctxt "footnotesendnotestabpage|label2"
msgid "Endnotes"
msgstr "Galinės išnašos"
@@ -9344,27 +9344,27 @@ msgctxt "formatsectiondialog|notes"
msgid "Footnotes/Endnotes"
msgstr "Išnašos"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:63
+#: sw/uiconfig/swriter/ui/formattablepage.ui:77
msgctxt "formattablepage|nameft"
msgid "_Name"
msgstr "Pavadinimas"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:79
+#: sw/uiconfig/swriter/ui/formattablepage.ui:91
msgctxt "formattablepage|widthft"
msgid "W_idth"
msgstr "Plotis"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:110
+#: sw/uiconfig/swriter/ui/formattablepage.ui:120
msgctxt "formattablepage|relwidth"
msgid "Relati_ve"
msgstr "Santykinis"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:155
+#: sw/uiconfig/swriter/ui/formattablepage.ui:160
msgctxt "formattablepage|label45"
msgid "Properties"
msgstr "Savybės"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:194
+#: sw/uiconfig/swriter/ui/formattablepage.ui:195
msgctxt "formattablepage|leftft"
msgid "Lef_t"
msgstr "Kairėje"
@@ -9374,62 +9374,62 @@ msgctxt "formattablepage|rightft"
msgid "Ri_ght"
msgstr "Dešinėje"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:228
+#: sw/uiconfig/swriter/ui/formattablepage.ui:226
msgctxt "formattablepage|aboveft"
msgid "_Above"
msgstr "Viršuje"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:245
+#: sw/uiconfig/swriter/ui/formattablepage.ui:241
msgctxt "formattablepage|belowft"
msgid "_Below"
msgstr "Apačioje"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:320
+#: sw/uiconfig/swriter/ui/formattablepage.ui:311
msgctxt "formattablepage|label46"
msgid "Spacing"
msgstr "Atstumas"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:362
+#: sw/uiconfig/swriter/ui/formattablepage.ui:349
msgctxt "formattablepage|full"
msgid "A_utomatic"
msgstr "Automatinė"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:380
+#: sw/uiconfig/swriter/ui/formattablepage.ui:365
msgctxt "formattablepage|left"
msgid "_Left"
msgstr "Kairinė"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:398
+#: sw/uiconfig/swriter/ui/formattablepage.ui:381
msgctxt "formattablepage|fromleft"
msgid "_From left"
msgstr "Iš kairės"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:416
+#: sw/uiconfig/swriter/ui/formattablepage.ui:397
msgctxt "formattablepage|right"
msgid "R_ight"
msgstr "Dešininė"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:435
+#: sw/uiconfig/swriter/ui/formattablepage.ui:413
msgctxt "formattablepage|center"
msgid "_Center"
msgstr "Centrinė"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:453
+#: sw/uiconfig/swriter/ui/formattablepage.ui:429
msgctxt "formattablepage|free"
msgid "_Manual"
msgstr "Rankiniu būdu"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:478
+#: sw/uiconfig/swriter/ui/formattablepage.ui:452
msgctxt "formattablepage|label43"
msgid "Alignment"
msgstr "Lygiuotė"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:522
+#: sw/uiconfig/swriter/ui/formattablepage.ui:491
msgctxt "formattablepage|label53"
msgid "Text _direction"
msgstr "Teksto kryptis"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:553
+#: sw/uiconfig/swriter/ui/formattablepage.ui:519
msgctxt "formattablepage|label44"
msgid "Properties "
msgstr "Savybės "
@@ -9785,22 +9785,27 @@ msgctxt "headerfootermenu|insert_pagenumber"
msgid "Insert Page Number"
msgstr ""
-#: sw/uiconfig/swriter/ui/indentpage.ui:52
+#: sw/uiconfig/swriter/ui/headerfootermenu.ui:42
+msgctxt "headerfootermenu|insert_pagecount"
+msgid "Insert Page Count"
+msgstr ""
+
+#: sw/uiconfig/swriter/ui/indentpage.ui:57
msgctxt "indentpage|label1"
msgid "_Before section"
msgstr "Prieš sekciją"
-#: sw/uiconfig/swriter/ui/indentpage.ui:67
+#: sw/uiconfig/swriter/ui/indentpage.ui:71
msgctxt "indentpage|label3"
msgid "_After section"
msgstr "Po sekcijos"
-#: sw/uiconfig/swriter/ui/indentpage.ui:113
+#: sw/uiconfig/swriter/ui/indentpage.ui:115
msgctxt "indentpage|label2"
msgid "Indent"
msgstr "Įtrauka"
-#: sw/uiconfig/swriter/ui/indentpage.ui:142
+#: sw/uiconfig/swriter/ui/indentpage.ui:155
msgctxt "indentpage|preview-atkobject"
msgid "Example"
msgstr "Pavyzdys"
@@ -13351,17 +13356,17 @@ msgstr "Apsaugoti formą"
#: sw/uiconfig/swriter/ui/optcompatpage.ui:68
msgctxt "optcompatpage|format"
-msgid "MS Word-compatible trailing blanks"
+msgid "Word-compatible trailing blanks"
msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:69
msgctxt "optcompatpage|format"
msgid "Tolerate white lines of PDF page backgrounds for compatibility with old documents"
-msgstr ""
+msgstr "Toleruoti baltas linijas PDF dokumentų puslapių fone dėl suderinamumo su senų formatų dokumentais"
#: sw/uiconfig/swriter/ui/optcompatpage.ui:70
msgctxt "optcompatpage|format"
-msgid "A database field (e.g., MailMerge) with empty value hides its paragraph"
+msgid "Hide paragraphs of database fields (e.g., mail merge) with an empty value"
msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:71
@@ -16064,122 +16069,122 @@ msgctxt "tableproperties|background"
msgid "Background"
msgstr "Fonas"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:25
-msgctxt "tabletextflowpage|liststore1"
-msgid "Horizontal"
-msgstr "Horizontaliai"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:29
-msgctxt "tabletextflowpage|liststore1"
-msgid "Vertical"
-msgstr "Vertikaliai"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:33
-msgctxt "tabletextflowpage|liststore1"
-msgid "Use superordinate object settings"
-msgstr "Naudoti ankstesnio objekto nuostatas"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:47
-msgctxt "tabletextflowpage|liststore2"
-msgid "Top"
-msgstr "Viršutinė"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:51
-msgctxt "tabletextflowpage|liststore2"
-msgid "Centered"
-msgstr "Centrinė"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:55
-msgctxt "tabletextflowpage|liststore2"
-msgid "Bottom"
-msgstr "Apatinė"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:97
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:53
msgctxt "tabletextflowpage|break"
msgid "_Break"
msgstr "Įterpti lūžį"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:112
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:68
msgctxt "tabletextflowpage|page"
msgid "_Page"
msgstr "Puslapio"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:132
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:87
msgctxt "tabletextflowpage|column"
msgid "Col_umn"
msgstr "Skilties"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:151
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:106
msgctxt "tabletextflowpage|before"
msgid "Be_fore"
msgstr "Prieš"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:171
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:125
msgctxt "tabletextflowpage|after"
msgid "_After"
msgstr "Po"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:203
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:158
msgctxt "tabletextflowpage|pagestyle"
msgid "With Page St_yle"
msgstr "Su puslapio stiliumi"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:224
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:177
msgctxt "tabletextflowpage|pagenoft"
msgid "Page _number"
msgstr "Puslapio numeris"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:257
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:213
msgctxt "tabletextflowpage|pagestylelb-atkobject"
msgid "With Page Style"
msgstr "Su puslapio stiliumi"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:274
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:230
msgctxt "tabletextflowpage|split"
msgid "Allow _table to split across pages and columns"
msgstr "Galima skaidyti lentelę ties puslapių ir skilčių lūžiais"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:289
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:245
msgctxt "tabletextflowpage|splitrow"
msgid "Allow row to break a_cross pages and columns"
msgstr "Galima skaidyti eilutę ties puslapių ir skilčių lūžiais"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:306
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:262
msgctxt "tabletextflowpage|keep"
msgid "_Keep with next paragraph"
msgstr "Susieti su kita pastraipa"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:328
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:284
msgctxt "tabletextflowpage|label40"
msgid "Text _orientation"
msgstr "Teksto kryptis"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:361
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:298
+msgctxt "tabletextflowpage|liststore1"
+msgid "Horizontal"
+msgstr "Horizontaliai"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:299
+msgctxt "tabletextflowpage|liststore1"
+msgid "Vertical"
+msgstr "Vertikaliai"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:300
+msgctxt "tabletextflowpage|liststore1"
+msgid "Use superordinate object settings"
+msgstr "Naudoti ankstesnio objekto nuostatas"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:321
msgctxt "tabletextflowpage|headline"
msgid "R_epeat heading"
msgstr "Kartoti antraštę"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:383
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:343
msgctxt "tabletextflowpage|label38"
msgid "The first "
msgstr "Pirmąsias "
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:396
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:356
msgctxt "tabletextflowpage|label39"
msgid "rows"
msgstr "eil."
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:434
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:395
msgctxt "tabletextflowpage|label35"
msgid "Text Flow"
msgstr "Teksto skaidymas"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:467
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:428
msgctxt "tabletextflowpage|label41"
msgid "_Vertical alignment"
msgstr "Vertikalioji lygiuotė"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:495
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:442
+msgctxt "tabletextflowpage|liststore2"
+msgid "Top"
+msgstr "Viršutinė"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:443
+msgctxt "tabletextflowpage|liststore2"
+msgid "Centered"
+msgstr "Centrinė"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:444
+msgctxt "tabletextflowpage|liststore2"
+msgid "Bottom"
+msgstr "Apatinė"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:460
msgctxt "tabletextflowpage|label36"
msgid "Alignment"
msgstr "Lygiuotė"
@@ -16962,8 +16967,8 @@ msgstr "Abėcėlinė rodyklė"
#: sw/uiconfig/swriter/ui/tocindexpage.ui:58
msgctxt "tocindexpage|liststore1"
-msgid "Illustration Index"
-msgstr "Paveikslų rodyklė"
+msgid "Table of Figures"
+msgstr ""
#: sw/uiconfig/swriter/ui/tocindexpage.ui:62
msgctxt "tocindexpage|liststore1"
diff --git a/source/lt/writerperfect/messages.po b/source/lt/writerperfect/messages.po
index 33ce0b53efa..e15683f4837 100644
--- a/source/lt/writerperfect/messages.po
+++ b/source/lt/writerperfect/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-16 16:54+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2018-03-28 21:02+0000\n"
"Last-Translator: Modestas Rimkus <modestas.rimkus@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -66,97 +66,97 @@ msgctxt "exportepub|generalft"
msgid "General"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:122
+#: writerperfect/uiconfig/ui/exportepub.ui:121
msgctxt "exportepub|versionft"
msgid "Version:"
msgstr "Versija:"
-#: writerperfect/uiconfig/ui/exportepub.ui:139
+#: writerperfect/uiconfig/ui/exportepub.ui:138
msgctxt "exportepub|epub3"
msgid "EPUB 3.0"
msgstr "EPUB 3.0"
-#: writerperfect/uiconfig/ui/exportepub.ui:140
+#: writerperfect/uiconfig/ui/exportepub.ui:139
msgctxt "exportepub|epub2"
msgid "EPUB 2.0"
msgstr "EPUB 2.0"
-#: writerperfect/uiconfig/ui/exportepub.ui:175
+#: writerperfect/uiconfig/ui/exportepub.ui:174
msgctxt "exportepub|splitft"
msgid "Split method:"
msgstr "Skaidymo metodas:"
-#: writerperfect/uiconfig/ui/exportepub.ui:192
+#: writerperfect/uiconfig/ui/exportepub.ui:191
msgctxt "exportepub|splitpage"
msgid "Page break"
msgstr "Pagal puslapius"
-#: writerperfect/uiconfig/ui/exportepub.ui:193
+#: writerperfect/uiconfig/ui/exportepub.ui:192
msgctxt "exportepub|splitheading"
msgid "Heading"
msgstr "Pagal antraštes"
-#: writerperfect/uiconfig/ui/exportepub.ui:228
+#: writerperfect/uiconfig/ui/exportepub.ui:227
msgctxt "exportepub|layoutft"
msgid "Layout method:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:245
+#: writerperfect/uiconfig/ui/exportepub.ui:244
msgctxt "exportepub|layoutreflowable"
msgid "Reflowable"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:246
+#: writerperfect/uiconfig/ui/exportepub.ui:245
msgctxt "exportepub|layoutfixed"
msgid "Fixed"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:281
+#: writerperfect/uiconfig/ui/exportepub.ui:280
msgctxt "exportepub|coverimageft"
msgid "Custom cover image:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:311
+#: writerperfect/uiconfig/ui/exportepub.ui:310
msgctxt "exportepub|coverbutton"
msgid "Browse..."
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:355
+#: writerperfect/uiconfig/ui/exportepub.ui:354
msgctxt "exportepub|mediadirft"
msgid "Custom media directory:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:385
+#: writerperfect/uiconfig/ui/exportepub.ui:384
msgctxt "exportepub|mediabutton"
msgid "Browse..."
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:429
+#: writerperfect/uiconfig/ui/exportepub.ui:428
msgctxt "exportepub|metadataft"
msgid "Metadata"
msgstr "Metaduomenys"
-#: writerperfect/uiconfig/ui/exportepub.ui:470
+#: writerperfect/uiconfig/ui/exportepub.ui:468
msgctxt "exportepub|identifierft"
msgid "Identifier:"
msgstr "Identifikatorius:"
-#: writerperfect/uiconfig/ui/exportepub.ui:485
+#: writerperfect/uiconfig/ui/exportepub.ui:483
msgctxt "exportepub|titleft"
msgid "Title:"
msgstr "Pavadinimas:"
-#: writerperfect/uiconfig/ui/exportepub.ui:511
+#: writerperfect/uiconfig/ui/exportepub.ui:509
msgctxt "exportepub|authorft"
msgid "Author:"
msgstr "Autorius:"
-#: writerperfect/uiconfig/ui/exportepub.ui:537
+#: writerperfect/uiconfig/ui/exportepub.ui:535
msgctxt "exportepub|languageft"
msgid "Language:"
msgstr "Kalba:"
-#: writerperfect/uiconfig/ui/exportepub.ui:563
+#: writerperfect/uiconfig/ui/exportepub.ui:561
msgctxt "exportepub|dateft"
msgid "Date:"
msgstr "Data:"
diff --git a/source/lv/cui/messages.po b/source/lv/cui/messages.po
index 6678e8bb8ce..e42ace146f2 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2018-03-04 08:04+0000\n"
"Last-Translator: Ingmārs Dīriņš <melhiors14@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -9879,97 +9879,97 @@ msgctxt "positionsizedialog|PositionAndSizeDialog"
msgid "Position and Size"
msgstr "Novietojums un izmērs"
-#: cui/uiconfig/ui/positionsizedialog.ui:107
+#: cui/uiconfig/ui/positionsizedialog.ui:136
msgctxt "positionsizedialog|RID_SVXPAGE_POSITION_SIZE"
msgid "Position and Size"
msgstr "Novietojums un izmērs"
-#: cui/uiconfig/ui/positionsizedialog.ui:129
+#: cui/uiconfig/ui/positionsizedialog.ui:182
msgctxt "positionsizedialog|RID_SVXPAGE_SWPOSSIZE"
msgid "Position and Size"
msgstr "Novietojums un izmērs"
-#: cui/uiconfig/ui/positionsizedialog.ui:152
+#: cui/uiconfig/ui/positionsizedialog.ui:229
msgctxt "positionsizedialog|RID_SVXPAGE_ANGLE"
msgid "Rotation"
msgstr "Rotācija"
-#: cui/uiconfig/ui/positionsizedialog.ui:175
+#: cui/uiconfig/ui/positionsizedialog.ui:276
msgctxt "positionsizedialog|RID_SVXPAGE_SLANT"
msgid "Slant & Corner Radius"
msgstr "Slīpuma un stūra rādiuss"
-#: cui/uiconfig/ui/possizetabpage.ui:40
+#: cui/uiconfig/ui/possizetabpage.ui:61
msgctxt "possizetabpage|FT_POS_X"
msgid "Position _X:"
msgstr "Pozīcija _X:"
-#: cui/uiconfig/ui/possizetabpage.ui:56
+#: cui/uiconfig/ui/possizetabpage.ui:75
msgctxt "possizetabpage|FT_POS_Y"
msgid "Position _Y:"
msgstr "Pozīcija _Y:"
-#: cui/uiconfig/ui/possizetabpage.ui:110
+#: cui/uiconfig/ui/possizetabpage.ui:128
msgctxt "possizetabpage|FT_POSREFERENCE"
msgid "_Base point:"
msgstr "_Atskaites punkts:"
-#: cui/uiconfig/ui/possizetabpage.ui:148
+#: cui/uiconfig/ui/possizetabpage.ui:182
msgctxt "possizetabpage|label1"
msgid "Position"
msgstr "Pozīcija"
-#: cui/uiconfig/ui/possizetabpage.ui:190
+#: cui/uiconfig/ui/possizetabpage.ui:224
msgctxt "possizetabpage|FT_WIDTH"
msgid "Wi_dth:"
msgstr "Pla_tums:"
-#: cui/uiconfig/ui/possizetabpage.ui:206
+#: cui/uiconfig/ui/possizetabpage.ui:238
msgctxt "possizetabpage|FT_HEIGHT"
msgid "H_eight:"
msgstr "Au_gstums:"
-#: cui/uiconfig/ui/possizetabpage.ui:247
+#: cui/uiconfig/ui/possizetabpage.ui:276
msgctxt "possizetabpage|CBX_SCALE"
msgid "_Keep ratio"
msgstr "Sa_glabāt attiecību"
-#: cui/uiconfig/ui/possizetabpage.ui:279
+#: cui/uiconfig/ui/possizetabpage.ui:307
msgctxt "possizetabpage|FT_SIZEREFERENCE"
msgid "Base _point:"
msgstr "Atskaites _punkts:"
-#: cui/uiconfig/ui/possizetabpage.ui:317
+#: cui/uiconfig/ui/possizetabpage.ui:361
msgctxt "possizetabpage|label2"
msgid "Size"
msgstr "Izmērs"
-#: cui/uiconfig/ui/possizetabpage.ui:356
+#: cui/uiconfig/ui/possizetabpage.ui:401
msgctxt "possizetabpage|TSB_POSPROTECT"
msgid "Positio_n"
msgstr "Pozīci_ja"
-#: cui/uiconfig/ui/possizetabpage.ui:373
+#: cui/uiconfig/ui/possizetabpage.ui:418
msgctxt "possizetabpage|TSB_SIZEPROTECT"
msgid "_Size"
msgstr "Izmēr_s"
-#: cui/uiconfig/ui/possizetabpage.ui:397
+#: cui/uiconfig/ui/possizetabpage.ui:441
msgctxt "possizetabpage|label3"
msgid "Protect"
msgstr "Aizsargāt"
-#: cui/uiconfig/ui/possizetabpage.ui:430
+#: cui/uiconfig/ui/possizetabpage.ui:475
msgctxt "possizetabpage|TSB_AUTOGROW_WIDTH"
msgid "_Fit width to text"
msgstr "_Pielāgot platumu tekstam"
-#: cui/uiconfig/ui/possizetabpage.ui:447
+#: cui/uiconfig/ui/possizetabpage.ui:492
msgctxt "possizetabpage|TSB_AUTOGROW_HEIGHT"
msgid "Fit _height to text"
msgstr "Pielāgot _augstumu tekstam"
-#: cui/uiconfig/ui/possizetabpage.ui:471
+#: cui/uiconfig/ui/possizetabpage.ui:515
msgctxt "possizetabpage|label4"
msgid "Adapt"
msgstr "Pielāgot"
@@ -10169,47 +10169,47 @@ msgctxt "recordnumberdialog|label2"
msgid "go to record"
msgstr "iet uz ierakstu"
-#: cui/uiconfig/ui/rotationtabpage.ui:52
+#: cui/uiconfig/ui/rotationtabpage.ui:56
msgctxt "rotationtabpage|FT_POS_X"
msgid "Position _X:"
msgstr "Pozīcija _X:"
-#: cui/uiconfig/ui/rotationtabpage.ui:66
+#: cui/uiconfig/ui/rotationtabpage.ui:70
msgctxt "rotationtabpage|FT_POS_Y"
msgid "Position _Y:"
msgstr "Pozīcija _Y:"
-#: cui/uiconfig/ui/rotationtabpage.ui:116
+#: cui/uiconfig/ui/rotationtabpage.ui:123
msgctxt "rotationtabpage|FT_POSPRESETS"
msgid "_Default settings:"
msgstr "Noklusētie iestatījumi:"
-#: cui/uiconfig/ui/rotationtabpage.ui:130
+#: cui/uiconfig/ui/rotationtabpage.ui:151
msgctxt "rotationtabpage|CTL_RECT|tooltip_text"
msgid "Rotation point"
msgstr "Rotācijas punkts"
-#: cui/uiconfig/ui/rotationtabpage.ui:155
+#: cui/uiconfig/ui/rotationtabpage.ui:178
msgctxt "rotationtabpage|label1"
msgid "Pivot Point"
msgstr "Pivot punkts"
-#: cui/uiconfig/ui/rotationtabpage.ui:197
+#: cui/uiconfig/ui/rotationtabpage.ui:220
msgctxt "rotationtabpage|FT_ANGLE"
msgid "_Angle:"
msgstr "Leņķis:"
-#: cui/uiconfig/ui/rotationtabpage.ui:238
+#: cui/uiconfig/ui/rotationtabpage.ui:263
msgctxt "rotationtabpage|FT_ANGLEPRESETS"
msgid "Default _settings:"
msgstr "Noklusējuma ie_statījumi:"
-#: cui/uiconfig/ui/rotationtabpage.ui:252
+#: cui/uiconfig/ui/rotationtabpage.ui:287
msgctxt "rotationtabpage|CTL_ANGLE|tooltip_text"
msgid "Rotation Angle"
msgstr "Rotācijas leņķis"
-#: cui/uiconfig/ui/rotationtabpage.ui:277
+#: cui/uiconfig/ui/rotationtabpage.ui:314
msgctxt "rotationtabpage|label2"
msgid "Rotation Angle"
msgstr "Rotācijas leņķis"
@@ -10589,52 +10589,52 @@ msgctxt "similaritysearchdialog|relaxbox"
msgid "_Combine"
msgstr "_Apvienot"
-#: cui/uiconfig/ui/slantcornertabpage.ui:50
+#: cui/uiconfig/ui/slantcornertabpage.ui:70
msgctxt "slantcornertabpage|label5"
msgid "_X:"
msgstr "_X:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:88
+#: cui/uiconfig/ui/slantcornertabpage.ui:110
msgctxt "slantcornertabpage|label6"
msgid "_Y:"
msgstr "_Y:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:125
+#: cui/uiconfig/ui/slantcornertabpage.ui:149
msgctxt "slantcornertabpage|label3"
msgid "Control Point 1"
msgstr "Kontroles punkts 1"
-#: cui/uiconfig/ui/slantcornertabpage.ui:159
+#: cui/uiconfig/ui/slantcornertabpage.ui:183
msgctxt "slantcornertabpage|FT_RADIUS"
msgid "_Radius:"
msgstr "Rādiuss:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:189
+#: cui/uiconfig/ui/slantcornertabpage.ui:214
msgctxt "slantcornertabpage|label1"
msgid "Corner Radius"
msgstr "Stūra rādiuss"
-#: cui/uiconfig/ui/slantcornertabpage.ui:223
+#: cui/uiconfig/ui/slantcornertabpage.ui:248
msgctxt "slantcornertabpage|FT_ANGLE"
msgid "_Angle:"
msgstr "Leņķis:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:253
+#: cui/uiconfig/ui/slantcornertabpage.ui:279
msgctxt "slantcornertabpage|label2"
msgid "Slant"
msgstr "Slīpums"
-#: cui/uiconfig/ui/slantcornertabpage.ui:294
+#: cui/uiconfig/ui/slantcornertabpage.ui:320
msgctxt "slantcornertabpage|label4"
msgid "_X:"
msgstr "_X:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:332
+#: cui/uiconfig/ui/slantcornertabpage.ui:360
msgctxt "slantcornertabpage|label7"
msgid "_Y:"
msgstr "_Y:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:369
+#: cui/uiconfig/ui/slantcornertabpage.ui:399
msgctxt "slantcornertabpage|label8"
msgid "Control Point 2"
msgstr "Kontroles punkts 2"
@@ -10914,112 +10914,112 @@ msgctxt "storedwebconnectiondialog|change"
msgid "_Change Password..."
msgstr "_Mainīt paroli..."
-#: cui/uiconfig/ui/swpossizepage.ui:74
+#: cui/uiconfig/ui/swpossizepage.ui:85
msgctxt "swpossizepage|widthft"
msgid "_Width:"
msgstr "_Platums:"
-#: cui/uiconfig/ui/swpossizepage.ui:111
+#: cui/uiconfig/ui/swpossizepage.ui:123
msgctxt "swpossizepage|heightft"
msgid "H_eight:"
msgstr "Au_gstums:"
-#: cui/uiconfig/ui/swpossizepage.ui:128
+#: cui/uiconfig/ui/swpossizepage.ui:141
msgctxt "swpossizepage|ratio"
msgid "_Keep ratio"
msgstr "Sa_glabāt attiecību"
-#: cui/uiconfig/ui/swpossizepage.ui:149
+#: cui/uiconfig/ui/swpossizepage.ui:162
msgctxt "swpossizepage|label2"
msgid "Size"
msgstr "Izmērs"
-#: cui/uiconfig/ui/swpossizepage.ui:205
+#: cui/uiconfig/ui/swpossizepage.ui:218
msgctxt "swpossizepage|topage"
msgid "To _page"
msgstr "Pie la_ppuses"
-#: cui/uiconfig/ui/swpossizepage.ui:222
+#: cui/uiconfig/ui/swpossizepage.ui:234
msgctxt "swpossizepage|topara"
msgid "To paragrap_h"
msgstr "Pie rindk_opas"
-#: cui/uiconfig/ui/swpossizepage.ui:238
+#: cui/uiconfig/ui/swpossizepage.ui:250
msgctxt "swpossizepage|tochar"
msgid "To cha_racter"
msgstr "Pie _rakstzīmes"
-#: cui/uiconfig/ui/swpossizepage.ui:254
+#: cui/uiconfig/ui/swpossizepage.ui:266
msgctxt "swpossizepage|aschar"
msgid "_As character"
msgstr "Kā r_akstzīmi"
-#: cui/uiconfig/ui/swpossizepage.ui:270
+#: cui/uiconfig/ui/swpossizepage.ui:282
msgctxt "swpossizepage|toframe"
msgid "To _frame"
msgstr "Pie iet_vara"
-#: cui/uiconfig/ui/swpossizepage.ui:292
+#: cui/uiconfig/ui/swpossizepage.ui:304
msgctxt "swpossizepage|label1"
msgid "Anchor"
msgstr "Enkurs"
-#: cui/uiconfig/ui/swpossizepage.ui:333
+#: cui/uiconfig/ui/swpossizepage.ui:344
msgctxt "swpossizepage|horiposft"
msgid "Hori_zontal:"
msgstr "Hori_zontāli:"
-#: cui/uiconfig/ui/swpossizepage.ui:347
+#: cui/uiconfig/ui/swpossizepage.ui:358
msgctxt "swpossizepage|horibyft"
msgid "b_y:"
msgstr "p_ar:"
-#: cui/uiconfig/ui/swpossizepage.ui:361
+#: cui/uiconfig/ui/swpossizepage.ui:372
msgctxt "swpossizepage|vertbyft"
msgid "_by:"
msgstr "_par:"
-#: cui/uiconfig/ui/swpossizepage.ui:375
+#: cui/uiconfig/ui/swpossizepage.ui:386
msgctxt "swpossizepage|horitoft"
msgid "_to:"
msgstr "_pie:"
-#: cui/uiconfig/ui/swpossizepage.ui:421
+#: cui/uiconfig/ui/swpossizepage.ui:433
msgctxt "swpossizepage|vertposft"
msgid "_Vertical:"
msgstr "_Vertikāli:"
-#: cui/uiconfig/ui/swpossizepage.ui:457
+#: cui/uiconfig/ui/swpossizepage.ui:470
msgctxt "swpossizepage|verttoft"
msgid "t_o:"
msgstr "pi_e:"
-#: cui/uiconfig/ui/swpossizepage.ui:478
+#: cui/uiconfig/ui/swpossizepage.ui:492
msgctxt "swpossizepage|mirror"
msgid "_Mirror on even pages"
msgstr "Spo_guļot pāra lappuses"
-#: cui/uiconfig/ui/swpossizepage.ui:495
+#: cui/uiconfig/ui/swpossizepage.ui:509
msgctxt "swpossizepage|followtextflow"
msgid "Follow te_xt flow"
msgstr "Sekot te_ksta plūsmai"
-#: cui/uiconfig/ui/swpossizepage.ui:518
+#: cui/uiconfig/ui/swpossizepage.ui:532
msgctxt "swpossizepage|label11"
msgid "Position"
msgstr "Pozīcija"
-#: cui/uiconfig/ui/swpossizepage.ui:549
+#: cui/uiconfig/ui/swpossizepage.ui:563
msgctxt "swpossizepage|pos"
msgid "Positio_n"
msgstr "Pozīci_ja"
-#: cui/uiconfig/ui/swpossizepage.ui:565
+#: cui/uiconfig/ui/swpossizepage.ui:579
msgctxt "swpossizepage|size"
msgid "_Size"
msgstr "Izmēr_s"
-#: cui/uiconfig/ui/swpossizepage.ui:587
+#: cui/uiconfig/ui/swpossizepage.ui:601
msgctxt "swpossizepage|label3"
msgid "Protect"
msgstr "Aizsargāt"
@@ -11209,12 +11209,12 @@ msgctxt "textattrtabpage|label2"
msgid "Spacing to Borders"
msgstr "Atstarpes līdz malām"
-#: cui/uiconfig/ui/textattrtabpage.ui:425
+#: cui/uiconfig/ui/textattrtabpage.ui:423
msgctxt "textattrtabpage|TSB_FULL_WIDTH"
msgid "Full _width"
msgstr "Pilns platu_ms"
-#: cui/uiconfig/ui/textattrtabpage.ui:448
+#: cui/uiconfig/ui/textattrtabpage.ui:446
msgctxt "textattrtabpage|label3"
msgid "Text Anchor"
msgstr "Teksta enkurs"
diff --git a/source/lv/filter/source/config/fragments/filters.po b/source/lv/filter/source/config/fragments/filters.po
index 74042612d4e..0cf2f891ae6 100644
--- a/source/lv/filter/source/config/fragments/filters.po
+++ b/source/lv/filter/source/config/fragments/filters.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: 2018-05-16 16:54+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2018-03-04 11:27+0000\n"
"Last-Translator: Ingmārs Dīriņš <melhiors14@gmail.com>\n"
"Language-Team: Latvian <lata-l10n@googlegroups.com>\n"
@@ -463,8 +463,8 @@ msgctxt ""
"MS Word 2003 XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Word 2003 XML"
-msgstr "Microsoft Word 2003 XML"
+msgid "Word 2003 XML"
+msgstr ""
#: MS_Word_2007_XML.xcu
msgctxt ""
@@ -1282,8 +1282,8 @@ msgctxt ""
"Calc MS Excel 2007 VBA XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Excel 2007-2016 XML (macro enabled)"
-msgstr "Microsoft Excel 2007-2016 XML (ar makro)"
+msgid "Excel 2007–2019 (macro-enabled)"
+msgstr ""
#: calc_MS_Excel_2007_XML.xcu
msgctxt ""
diff --git a/source/lv/filter/source/config/fragments/types.po b/source/lv/filter/source/config/fragments/types.po
index f18716de19a..fd93ed3e3bc 100644
--- a/source/lv/filter/source/config/fragments/types.po
+++ b/source/lv/filter/source/config/fragments/types.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: 2018-05-08 15:11+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2018-03-04 11:28+0000\n"
"Last-Translator: Ingmārs Dīriņš <melhiors14@gmail.com>\n"
"Language-Team: Latvian <lata-l10n@googlegroups.com>\n"
@@ -292,8 +292,8 @@ msgctxt ""
"writer_MS_Word_2003_XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Word 2003 XML"
-msgstr "Microsoft Word 2003 XML"
+msgid "Word 2003 XML"
+msgstr ""
#: writer_MS_Word_2007_XML.xcu
msgctxt ""
diff --git a/source/lv/fpicker/messages.po b/source/lv/fpicker/messages.po
index 3fbb44b3117..723a2c34f0e 100644
--- a/source/lv/fpicker/messages.po
+++ b/source/lv/fpicker/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2018-03-03 14:24+0000\n"
"Last-Translator: Ingmārs Dīriņš <melhiors14@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -272,13 +272,13 @@ msgstr ""
#: fpicker/uiconfig/ui/foldernamedialog.ui:8
msgctxt "foldernamedialog|FolderNameDialog"
-msgid "Folder Name ?"
-msgstr "Mapes nosaukums ?"
+msgid "Folder Name"
+msgstr ""
#: fpicker/uiconfig/ui/foldernamedialog.ui:91
msgctxt "foldernamedialog|label2"
-msgid "Na_me"
-msgstr "Nosauku_ms"
+msgid "Na_me:"
+msgstr ""
#: fpicker/uiconfig/ui/foldernamedialog.ui:122
msgctxt "foldernamedialog|label1"
diff --git a/source/lv/helpcontent2/source/text/shared/00.po b/source/lv/helpcontent2/source/text/shared/00.po
index 3f85a55d41e..62e35c6cf0f 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2017-01-27 21:27+0000\n"
"Last-Translator: Ingmārs Dīriņš <melhiors14@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -397,15 +397,15 @@ msgctxt ""
"00000001.xhp\n"
"hd_id3149670\n"
"help.text"
-msgid "Back"
-msgstr "Atpakaļ"
+msgid "Reset"
+msgstr ""
#: 00000001.xhp
msgctxt ""
"00000001.xhp\n"
"par_id3145068\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optionsdialog/revert\">Resets modified values back to the $[officename] default values.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optionsdialog/revert\">Resets changes made to the current tab to those applicable when this dialog was opened.</ahelp>"
msgstr ""
#: 00000001.xhp
@@ -552,6 +552,54 @@ msgctxt ""
msgid "<variable id=\"ShiftF1\">Press Shift+F1 and point to a control to learn more about that control.</variable>"
msgstr ""
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"hd_id631527692833772\n"
+"help.text"
+msgid "Options dialog buttons"
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"hd_id831527692839432\n"
+"help.text"
+msgid "OK"
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"par_id471527692844934\n"
+"help.text"
+msgid "Save the changes in the page and close the Options dialog."
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"hd_id261527692850720\n"
+"help.text"
+msgid "Cancel"
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"par_id571527692855533\n"
+"help.text"
+msgid "Close the Options dialog and discard all changes done."
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"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 Options dialog."
+msgstr ""
+
#: 00000002.xhp
msgctxt ""
"00000002.xhp\n"
@@ -11125,7 +11173,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3151293\n"
"help.text"
-msgid "<variable id=\"linienstile\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Line Styles</emph> tab </variable>"
+msgid "<variable id=\"linienstile\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Line Styles</emph> tab</variable>"
msgstr ""
#: 00040502.xhp
@@ -11133,7 +11181,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3149317\n"
"help.text"
-msgid "<variable id=\"linienenden\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Arrow Styles</emph> tab </variable>"
+msgid "<variable id=\"linienenden\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Arrow Styles</emph> tab</variable>"
msgstr ""
#: 00040502.xhp
@@ -11173,7 +11221,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3154948\n"
"help.text"
-msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Area</emph> tab"
+msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Area</emph> tab."
msgstr ""
#: 00040502.xhp
@@ -11181,7 +11229,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3145607\n"
"help.text"
-msgid "Choose <emph>View - Styles</emph> - open context menu and choose <emph>Modify/New - Area</emph> tab (presentation documents)"
+msgid "Choose <emph>View - Styles</emph> - open context menu and choose <emph>Modify/New - Area</emph> tab (presentation documents)."
msgstr ""
#: 00040502.xhp
@@ -11189,47 +11237,47 @@ msgctxt ""
"00040502.xhp\n"
"par_id3152922\n"
"help.text"
-msgid "Choose <emph>Format - Title - Area</emph> tab (chart documents)"
-msgstr "Izvēlieties <emph>Formatēt - Virsraksts - Laukums</emph> cilni (diagrammu dokumenti)"
+msgid "Choose <emph>Format - Title - Area</emph> tab (chart documents)."
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3157894\n"
"help.text"
-msgid "Choose <emph>Format - Legend - Area</emph> tab (chart documents)"
-msgstr "Izvēlieties <emph>Formatēt - Leģenda - Laukums</emph> cilni (diagrammu dokumenti)"
+msgid "Choose <emph>Format - Legend - Area</emph> tab (chart documents)."
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3144444\n"
"help.text"
-msgid "Choose <emph>Format - Chart Wall - Area</emph> tab (chart documents)"
-msgstr "Izvēlieties <emph>Formatēt - Diagrammas siena - Laukums</emph> cilni (diagrammu dokumenti)"
+msgid "Choose <emph>Format - Chart Wall - Area</emph> tab (chart documents)."
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3156543\n"
"help.text"
-msgid "Choose <emph>Format - Chart Floor - Area</emph> tab (chart documents)"
-msgstr "Izvēlieties <emph>Formatēt - Diagrammas grīda - Laukums</emph> cilni (diagrammu dokumenti)"
+msgid "Choose <emph>Format - Chart Floor - Area</emph> tab (chart documents)."
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3150685\n"
"help.text"
-msgid "Choose <emph>Format - Chart Area - Area</emph> tab (chart documents)"
-msgstr "Izvēlieties <emph>Formatēt - Diagrammas laukums - Laukums</emph> cilni (diagrammu dokumenti)"
+msgid "Choose <emph>Format - Chart Area - Area</emph> tab (chart documents)."
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3149664\n"
"help.text"
-msgid "Choose <emph>Slide - Properties - Background</emph> tab (in $[officename] Impress)"
+msgid "Choose <emph>Slide - Properties - Background</emph> tab (in $[officename] Impress)."
msgstr ""
#: 00040502.xhp
@@ -11237,7 +11285,15 @@ msgctxt ""
"00040502.xhp\n"
"par_id9149694\n"
"help.text"
-msgid "Choose <emph>Page - Properties - Background</emph> tab (in $[officename] Draw)"
+msgid "Choose <emph>Page - Properties - Background</emph> tab (in $[officename] Draw)."
+msgstr ""
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id841527083135387\n"
+"help.text"
+msgid "Choose <emph>Table - Properties - Background</emph> tab."
msgstr ""
#: 00040502.xhp
@@ -11349,7 +11405,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3150011\n"
"help.text"
-msgid "<variable id=\"schatte\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Shadow</emph> tab </variable>"
+msgid "<variable id=\"schatte\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Shadow</emph> tab</variable>"
msgstr ""
#: 00040502.xhp
@@ -11357,7 +11413,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3147441\n"
"help.text"
-msgid "<variable id=\"verlauf\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Gradients</emph> tab </variable>"
+msgid "<variable id=\"verlauf\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Gradients</emph> tab</variable>"
msgstr ""
#: 00040502.xhp
@@ -11365,7 +11421,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3155308\n"
"help.text"
-msgid "<variable id=\"schraffur\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Hatching</emph> tab </variable>"
+msgid "<variable id=\"schraffur\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Hatching</emph> tab</variable>"
msgstr ""
#: 00040502.xhp
@@ -11373,7 +11429,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3145800\n"
"help.text"
-msgid "<variable id=\"bitmap\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Bitmaps</emph> tab </variable>"
+msgid "<variable id=\"bitmap\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Bitmaps</emph> tab</variable>"
msgstr ""
#: 00040502.xhp
@@ -11413,7 +11469,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3156286\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F4 key </caseinline><caseinline select=\"IMPRESS\">F4 key </caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F4 key</caseinline><caseinline select=\"IMPRESS\">F4 key</caseinline></switchinline>"
msgstr ""
#: 00040502.xhp
@@ -11453,7 +11509,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3153099\n"
"help.text"
-msgid "<variable id=\"position2\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Position and Size</emph> tab </variable>"
+msgid "<variable id=\"position2\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Position and Size</emph> tab</variable>"
msgstr ""
#: 00040502.xhp
@@ -11485,7 +11541,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3145666\n"
"help.text"
-msgid "<variable id=\"ecke\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Slant & Corner Radius</emph> tab </variable>"
+msgid "<variable id=\"ecke\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Slant & Corner Radius</emph> tab</variable>"
msgstr ""
#: 00040502.xhp
@@ -11493,7 +11549,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3146081\n"
"help.text"
-msgid "<variable id=\"legende\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Callout</emph> tab (only for textbox callouts, not for custom shapes callouts) </variable>"
+msgid "<variable id=\"legende\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Callout</emph> tab (only for textbox callouts, not for custom shapes callouts)</variable>"
msgstr ""
#: 00040502.xhp
@@ -11517,7 +11573,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3149019\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F8 key </caseinline><caseinline select=\"IMPRESS\">F8 key </caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F8 key</caseinline><caseinline select=\"IMPRESS\">F8 key</caseinline></switchinline>"
msgstr ""
#: 00040502.xhp
@@ -11805,7 +11861,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3153076\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Align Center Horizontally </caseinline><defaultinline>Centered</defaultinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Align Center Horizontally</caseinline><defaultinline>Centered</defaultinline></switchinline>"
msgstr ""
#: 00040502.xhp
@@ -11845,7 +11901,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3150527\n"
"help.text"
-msgid "<variable id=\"font\">Click <emph>Fontwork</emph> icon on <emph>Drawing</emph> bar </variable>"
+msgid "<variable id=\"font\">Click <emph>Fontwork</emph> icon on <emph>Drawing</emph> bar</variable>"
msgstr ""
#: 00040502.xhp
diff --git a/source/lv/helpcontent2/source/text/shared/01.po b/source/lv/helpcontent2/source/text/shared/01.po
index 8768561f051..aaa90ce5d49 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: 2018-05-23 23:19+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2017-06-02 09:11+0000\n"
"Last-Translator: Ingmārs Dīriņš <melhiors14@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -23587,6 +23587,22 @@ msgstr ""
#: 05210100.xhp
msgctxt ""
"05210100.xhp\n"
+"hd_id471527077476052\n"
+"help.text"
+msgid "Cell, Row or Table background selector"
+msgstr ""
+
+#: 05210100.xhp
+msgctxt ""
+"05210100.xhp\n"
+"par_id661527077493366\n"
+"help.text"
+msgid "Select the table object which background area is to be filled."
+msgstr ""
+
+#: 05210100.xhp
+msgctxt ""
+"05210100.xhp\n"
"hd_id3147373\n"
"help.text"
msgid "None"
@@ -31205,15 +31221,15 @@ msgctxt ""
"06040100.xhp\n"
"hd_id3145072\n"
"help.text"
-msgid "Automatic *bold* and _underline_"
-msgstr "Automātiski *trekns* un _pasvītrots_"
+msgid "Automatic *bold*, /italic/, -strikeout- and _underline_"
+msgstr ""
#: 06040100.xhp
msgctxt ""
"06040100.xhp\n"
"par_id3153577\n"
"help.text"
-msgid "Automatically applies bold formatting to text enclosed by asterisks (*), and underline to text enclosed by underscores ( _ ), for example, *bold*. The asterisks and underscores are not displayed after the formatting is applied."
+msgid "Automatically applies bold, italic, strikethrough or underline formatting to text enclosed by asterisks (*), slashes (/), hyphens (-), and underscores (_), respectively. These characters disappear after the formatting is applied."
msgstr ""
#: 06040100.xhp
@@ -31221,7 +31237,7 @@ msgctxt ""
"06040100.xhp\n"
"par_id3153127\n"
"help.text"
-msgid "This feature does not work if the formatting characters * or _ are entered with an <link href=\"text/shared/00/00000005.xhp#IME\" name=\"Input Method Editor\">Input Method Editor</link>."
+msgid "This feature does not work if the formatting characters <item type=\"literal\">* / - _</item> are entered with an <link href=\"text/shared/00/00000005.xhp#IME\" name=\"Input Method Editor\">Input Method Editor</link>."
msgstr ""
#: 06040100.xhp
diff --git a/source/lv/helpcontent2/source/text/shared/optionen.po b/source/lv/helpcontent2/source/text/shared/optionen.po
index cc1ab87f30d..065ee034557 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: 2018-05-08 15:10+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2016-12-04 11:32+0000\n"
"Last-Translator: Ingmārs Dīriņš <melhiors14@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -83,6 +83,22 @@ msgstr ""
#: 01000000.xhp
msgctxt ""
"01000000.xhp\n"
+"hd_id551527692881035\n"
+"help.text"
+msgid "Help"
+msgstr ""
+
+#: 01000000.xhp
+msgctxt ""
+"01000000.xhp\n"
+"par_id831527692885723\n"
+"help.text"
+msgid "Opens the help contents for the Options page displayed."
+msgstr ""
+
+#: 01000000.xhp
+msgctxt ""
+"01000000.xhp\n"
"hd_id3159149\n"
"help.text"
msgid "<link href=\"text/shared/optionen/01010000.xhp\" name=\"$[officename]\">%PRODUCTNAME</link>"
@@ -4565,8 +4581,8 @@ msgctxt ""
"01030300.xhp\n"
"par_idN10640\n"
"help.text"
-msgid "Options"
-msgstr "Opcijas"
+msgid "Security Options and Warnings"
+msgstr ""
#: 01030300.xhp
msgctxt ""
@@ -4597,7 +4613,7 @@ msgctxt ""
"01030300.xhp\n"
"hd_id3168736\n"
"help.text"
-msgid "Persistently save passwords protected by a master password"
+msgid "Persistently save passwords for web connections"
msgstr ""
#: 01030300.xhp
@@ -4613,6 +4629,22 @@ msgctxt ""
"01030300.xhp\n"
"hd_id3901791\n"
"help.text"
+msgid "Protected by a master password (recommended)"
+msgstr ""
+
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"par_id31527711486980\n"
+"help.text"
+msgid "Check to enable all connections' passwords to be protected by a master password."
+msgstr ""
+
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"hd_id141527711343312\n"
+"help.text"
msgid "Master Password"
msgstr ""
@@ -13733,8 +13765,8 @@ msgctxt ""
"java.xhp\n"
"hd_id3148618\n"
"help.text"
-msgid "Optional (unstable) options"
-msgstr "Papildu (nestabilās) opcijas"
+msgid "Optional Features"
+msgstr ""
#: java.xhp
msgctxt ""
@@ -13749,7 +13781,7 @@ msgctxt ""
"java.xhp\n"
"par_id3156344\n"
"help.text"
-msgid "It enables features that are not yet complete or contain known bugs. The list of these features is different version by version, or even it can be empty."
+msgid "Enables features that are not yet complete or may contain known bugs. The list of these features is different version by version, or even it can be empty."
msgstr ""
#: java.xhp
@@ -13765,7 +13797,7 @@ msgctxt ""
"java.xhp\n"
"par_id3156345\n"
"help.text"
-msgid "It enables macro recording, so the <link href=\"text/shared/guide/macro_recording.xhp\" name=\"Tools - Macros - Record Macro\"><item type=\"menuitem\">Tools - Macros - Record Macro</item></link> menu item will be available."
+msgid "Enables macro recording. The <link href=\"text/shared/guide/macro_recording.xhp\" name=\"Tools - Macros - Record Macro\"><item type=\"menuitem\">Tools - Macros - Record Macro</item></link> menu item is available."
msgstr ""
#: java.xhp
diff --git a/source/lv/officecfg/registry/data/org/openoffice/Office/UI.po b/source/lv/officecfg/registry/data/org/openoffice/Office/UI.po
index 34230268a15..85062a27973 100644
--- a/source/lv/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/lv/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-22 13:17+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2018-03-03 14:29+0000\n"
"Last-Translator: Ingmārs Dīriņš <melhiors14@gmail.com>\n"
"Language-Team: Latvian <lata-l10n@googlegroups.com>\n"
@@ -26544,8 +26544,8 @@ msgctxt ""
"..WriterCommands.UserInterface.Commands..uno:TextAttributes\n"
"Label\n"
"value.text"
-msgid "Text Attributes"
-msgstr "Teksta atribūti"
+msgid "Text Attributes..."
+msgstr ""
#: WriterCommands.xcu
msgctxt ""
diff --git a/source/lv/readlicense_oo/docs.po b/source/lv/readlicense_oo/docs.po
index 7231befab31..383a98d03af 100644
--- a/source/lv/readlicense_oo/docs.po
+++ b/source/lv/readlicense_oo/docs.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: 2018-04-17 15:54+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2016-05-02 00:49+0000\n"
"Last-Translator: Ingmārs Dīriņš <melhiors14@gmail.com>\n"
"Language-Team: Latvian <lata-l10n@googlegroups.com>\n"
@@ -117,8 +117,8 @@ msgctxt ""
"readme.xrm\n"
"macxiOSX\n"
"readmeitem.text"
-msgid "MacOSX 10.8 (Mountain Lion) or higher"
-msgstr "MacOSX 10.8 (Mountain Lion) vai jaunāks"
+msgid "MacOSX 10.9 (Mavericks) or higher"
+msgstr ""
#: readme.xrm
msgctxt ""
diff --git a/source/lv/sc/messages.po b/source/lv/sc/messages.po
index d8b775b1ed5..df509dad0a6 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-12 14:40+0200\n"
"PO-Revision-Date: 2018-03-04 10:01+0000\n"
"Last-Translator: Ingmārs Dīriņš <melhiors14@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1870,17 +1870,22 @@ msgid "Nested arrays are not supported."
msgstr "Iegultie masīvi netiek atbalstīti."
#: sc/inc/globstr.hrc:390
+msgctxt "STR_ERR_LONG_BAD_ARRAY_CONTENT"
+msgid "Unsupported inline array content."
+msgstr ""
+
+#: sc/inc/globstr.hrc:391
#, fuzzy
msgctxt "STR_UNDO_TEXTTOCOLUMNS"
msgid "Text to Columns"
msgstr "Teksts par kolonnām"
-#: sc/inc/globstr.hrc:391
+#: sc/inc/globstr.hrc:392
msgctxt "STR_DOC_UPDATED"
msgid "Your spreadsheet has been updated with changes saved by other users."
msgstr "Jūsu izklājlapa ir papildināta ar citu lietotāju izmaiņām."
-#: sc/inc/globstr.hrc:392
+#: sc/inc/globstr.hrc:393
msgctxt "STR_DOC_WILLBESAVED"
msgid ""
"The spreadsheet must be saved now to activate sharing mode.\n"
@@ -1891,7 +1896,7 @@ msgstr ""
"\n"
"Vai vēlaties turpināt?"
-#: sc/inc/globstr.hrc:393
+#: sc/inc/globstr.hrc:394
msgctxt "STR_DOC_WILLNOTBESAVED"
msgid ""
"Already resolved merge conflicts will be lost and your changes to the shared spreadsheet will not be saved.\n"
@@ -1902,7 +1907,7 @@ msgstr ""
"\n"
"Vai vēlaties turpināt?"
-#: sc/inc/globstr.hrc:394
+#: sc/inc/globstr.hrc:395
msgctxt "STR_DOC_DISABLESHARED"
msgid ""
"Disabling shared mode of a spreadsheet hinders all other users of the shared spreadsheet to merge back their work.\n"
@@ -1913,7 +1918,7 @@ msgstr ""
"\n"
"Vai vēlaties turpināt?"
-#: sc/inc/globstr.hrc:395
+#: sc/inc/globstr.hrc:396
msgctxt "STR_DOC_NOLONGERSHARED"
msgid ""
"This spreadsheet is no longer in shared mode.\n"
@@ -1924,7 +1929,7 @@ msgstr ""
"\n"
"Saglabājiet savu izklājlapu atsevišķā datnē un apvienojiet savas izmaiņas pašrocīgi."
-#: sc/inc/globstr.hrc:396
+#: sc/inc/globstr.hrc:397
msgctxt "STR_FILE_LOCKED_TRY_LATER"
msgid ""
"The shared spreadsheet file is locked due to a merge in progress by user: '%1'\n"
@@ -1935,7 +1940,7 @@ msgstr ""
"\n"
"Aizslēgtai datnei nevar izslēgt koplietošanas režīmu. Mēģiniet vēlāk."
-#: sc/inc/globstr.hrc:397
+#: sc/inc/globstr.hrc:398
msgctxt "STR_FILE_LOCKED_SAVE_LATER"
msgid ""
"The shared spreadsheet file is locked due to a merge in progress by user: '%1'\n"
@@ -1946,148 +1951,148 @@ msgstr ""
"\n"
"Lai saglabātu savas izmaiņas, mēģiniet vēlāk."
-#: sc/inc/globstr.hrc:398
+#: sc/inc/globstr.hrc:399
msgctxt "STR_UNKNOWN_USER"
msgid "Unknown User"
msgstr "Nezināms lietotājs"
-#: sc/inc/globstr.hrc:399
+#: sc/inc/globstr.hrc:400
msgctxt "STR_SHAPE_AUTOSHAPE"
msgid "AutoShape"
msgstr "Automātiskās figūras"
-#: sc/inc/globstr.hrc:400
+#: sc/inc/globstr.hrc:401
msgctxt "STR_SHAPE_RECTANGLE"
msgid "Rectangle"
msgstr "Taisnstūris"
-#: sc/inc/globstr.hrc:401
+#: sc/inc/globstr.hrc:402
msgctxt "STR_SHAPE_LINE"
msgid "Line"
msgstr "Līnija"
-#: sc/inc/globstr.hrc:402
+#: sc/inc/globstr.hrc:403
msgctxt "STR_SHAPE_OVAL"
msgid "Oval"
msgstr "Ovāls"
-#: sc/inc/globstr.hrc:403
+#: sc/inc/globstr.hrc:404
msgctxt "STR_FORM_BUTTON"
msgid "Button"
msgstr "Poga"
-#: sc/inc/globstr.hrc:404
+#: sc/inc/globstr.hrc:405
msgctxt "STR_FORM_CHECKBOX"
msgid "Check Box"
msgstr "Atzīmes rūtiņa"
-#: sc/inc/globstr.hrc:405
+#: sc/inc/globstr.hrc:406
msgctxt "STR_FORM_OPTIONBUTTON"
msgid "Option Button"
msgstr "Opciju poga"
-#: sc/inc/globstr.hrc:406
+#: sc/inc/globstr.hrc:407
msgctxt "STR_FORM_LABEL"
msgid "Label"
msgstr "Etiķete"
-#: sc/inc/globstr.hrc:407
+#: sc/inc/globstr.hrc:408
msgctxt "STR_FORM_LISTBOX"
msgid "List Box"
msgstr "Saraksta lodziņš"
-#: sc/inc/globstr.hrc:408
+#: sc/inc/globstr.hrc:409
msgctxt "STR_FORM_GROUPBOX"
msgid "Group Box"
msgstr "Grupas lauks"
-#: sc/inc/globstr.hrc:409
+#: sc/inc/globstr.hrc:410
msgctxt "STR_FORM_DROPDOWN"
msgid "Drop Down"
msgstr "Nolaižamais saraksts"
-#: sc/inc/globstr.hrc:410
+#: sc/inc/globstr.hrc:411
msgctxt "STR_FORM_SPINNER"
msgid "Spinner"
msgstr "Spinner"
-#: sc/inc/globstr.hrc:411
+#: sc/inc/globstr.hrc:412
msgctxt "STR_FORM_SCROLLBAR"
msgid "Scroll Bar"
msgstr "Ritjosla"
-#: sc/inc/globstr.hrc:412
+#: sc/inc/globstr.hrc:413
msgctxt "STR_STYLE_FAMILY_CELL"
msgid "Cell Styles"
msgstr "Šūnu stili"
-#: sc/inc/globstr.hrc:413
+#: sc/inc/globstr.hrc:414
msgctxt "STR_STYLE_FAMILY_PAGE"
msgid "Page Styles"
msgstr "Lappušu stili"
-#: sc/inc/globstr.hrc:414
+#: sc/inc/globstr.hrc:415
msgctxt "STR_ERR_DATAPILOTSOURCE"
msgid "Pivot table source data is invalid."
msgstr "Pivot tabulas avota dati nav derīgi."
-#: sc/inc/globstr.hrc:415
+#: sc/inc/globstr.hrc:416
msgctxt "STR_OPTIONS_WARN_SEPARATORS"
msgid "Because the current formula separator settings conflict with the locale, the formula separators have been reset to their default values."
msgstr "Tā kā pašreizējie formulas atdalīšanas iestatījumi konfliktē ar lokāli, formulas atdalītāji ir atiestatīti uz to noklusējuma vērtībām."
-#: sc/inc/globstr.hrc:416
+#: sc/inc/globstr.hrc:417
msgctxt "STR_UNDO_INSERT_CURRENT_DATE"
msgid "Insert Current Date"
msgstr "Ievietot pašreizējo datumu"
-#: sc/inc/globstr.hrc:417
+#: sc/inc/globstr.hrc:418
msgctxt "STR_UNDO_INSERT_CURRENT_TIME"
msgid "Insert Current Time"
msgstr "Ievietot pašreizējo laiku"
-#: sc/inc/globstr.hrc:418
+#: sc/inc/globstr.hrc:419
msgctxt "STR_MANAGE_NAMES"
msgid "Manage Names..."
msgstr "Pārvaldīt nosaukumus..."
-#: sc/inc/globstr.hrc:419
+#: sc/inc/globstr.hrc:420
#, fuzzy
msgctxt "STR_HEADER_NAME"
msgid "Name"
msgstr "Nosaukums"
-#: sc/inc/globstr.hrc:420
+#: sc/inc/globstr.hrc:421
msgctxt "STR_HEADER_RANGE_OR_EXPR"
msgid "Range or formula expression"
msgstr "Diapazons vai formulas izteiksme"
-#: sc/inc/globstr.hrc:421
+#: sc/inc/globstr.hrc:422
msgctxt "STR_HEADER_SCOPE"
msgid "Scope"
msgstr "Darbības apgabals"
-#: sc/inc/globstr.hrc:422
+#: sc/inc/globstr.hrc:423
msgctxt "STR_MULTI_SELECT"
msgid "(multiple)"
msgstr "(daudzkārtējs)"
-#: sc/inc/globstr.hrc:423
+#: sc/inc/globstr.hrc:424
msgctxt "STR_GLOBAL_SCOPE"
msgid "Document (Global)"
msgstr "Dokuments (globāls)"
-#: sc/inc/globstr.hrc:424
+#: sc/inc/globstr.hrc:425
msgctxt "STR_ERR_NAME_EXISTS"
msgid "Invalid name. Already in use for the selected scope."
msgstr "Nederīgs nosaukums. Jau tiek izmantots izvēlētajā apgabalā."
-#: sc/inc/globstr.hrc:425
+#: sc/inc/globstr.hrc:426
msgctxt "STR_ERR_NAME_INVALID"
msgid "Invalid name. Only use letters, numbers and underscore."
msgstr "Nederīgs nosaukums. Lietojiet tikai burtus, ciparus un pasvītru."
-#: sc/inc/globstr.hrc:426
+#: sc/inc/globstr.hrc:427
msgctxt "STR_UNSAVED_EXT_REF"
msgid ""
"This Document contains external references to unsaved documents.\n"
@@ -2098,217 +2103,217 @@ msgstr ""
"\n"
"Vai vēlaties turpināt?"
-#: sc/inc/globstr.hrc:427
+#: sc/inc/globstr.hrc:428
msgctxt "STR_CLOSE_WITH_UNSAVED_REFS"
msgid "This Document is referenced by another document and not yet saved. Closing it without saving will result in data loss."
msgstr "Uz šo dokumentu ir norādes no cita dokumenta, un tas vēl nav saglabāts. Ja dokumentu aizver nesaglabājot, var pazust dati."
-#: sc/inc/globstr.hrc:428
+#: sc/inc/globstr.hrc:429
msgctxt "STR_HEADER_RANGE"
msgid "Range"
msgstr "Diapazons"
-#: sc/inc/globstr.hrc:429
+#: sc/inc/globstr.hrc:430
msgctxt "STR_HEADER_COND"
msgid "First Condition"
msgstr "Pirmais nosacījums"
-#: sc/inc/globstr.hrc:430
+#: sc/inc/globstr.hrc:431
msgctxt "STR_COND_CONDITION"
msgid "Cell value is"
msgstr "Šūnas vērtība"
-#: sc/inc/globstr.hrc:431
+#: sc/inc/globstr.hrc:432
msgctxt "STR_COND_COLORSCALE"
msgid "ColorScale"
msgstr "Krāsu skala"
-#: sc/inc/globstr.hrc:432
+#: sc/inc/globstr.hrc:433
msgctxt "STR_COND_DATABAR"
msgid "DataBar"
msgstr "Datu josla"
-#: sc/inc/globstr.hrc:433
+#: sc/inc/globstr.hrc:434
msgctxt "STR_COND_ICONSET"
msgid "IconSet"
msgstr "Ikonu kopa"
-#: sc/inc/globstr.hrc:434
+#: sc/inc/globstr.hrc:435
msgctxt "STR_COND_BETWEEN"
msgid "between"
msgstr "starp"
-#: sc/inc/globstr.hrc:435
+#: sc/inc/globstr.hrc:436
msgctxt "STR_COND_NOTBETWEEN"
msgid "not between"
msgstr "nav starp"
-#: sc/inc/globstr.hrc:436
+#: sc/inc/globstr.hrc:437
msgctxt "STR_COND_UNIQUE"
msgid "unique"
msgstr "unikāla"
-#: sc/inc/globstr.hrc:437
+#: sc/inc/globstr.hrc:438
msgctxt "STR_COND_DUPLICATE"
msgid "duplicate"
msgstr "nav unikāla"
-#: sc/inc/globstr.hrc:438
+#: sc/inc/globstr.hrc:439
msgctxt "STR_COND_FORMULA"
msgid "Formula is"
msgstr "Formula ir"
-#: sc/inc/globstr.hrc:439
+#: sc/inc/globstr.hrc:440
msgctxt "STR_COND_TOP10"
msgid "Top Elements"
msgstr "ir viena no lielākajām"
-#: sc/inc/globstr.hrc:440
+#: sc/inc/globstr.hrc:441
msgctxt "STR_COND_BOTTOM10"
msgid "Bottom Elements"
msgstr "ir viena no mazākajām"
-#: sc/inc/globstr.hrc:441
+#: sc/inc/globstr.hrc:442
msgctxt "STR_COND_TOP_PERCENT"
msgid "Top Percent"
msgstr "ir lielāko vērtību grupā"
-#: sc/inc/globstr.hrc:442
+#: sc/inc/globstr.hrc:443
msgctxt "STR_COND_DATE"
msgid "Date is"
msgstr "Datums ir"
-#: sc/inc/globstr.hrc:443
+#: sc/inc/globstr.hrc:444
msgctxt "STR_COND_BOTTOM_PERCENT"
msgid "Bottom Percent"
msgstr "ir mazāko vērtību grupā"
-#: sc/inc/globstr.hrc:444
+#: sc/inc/globstr.hrc:445
msgctxt "STR_COND_ABOVE_AVERAGE"
msgid "Above Average"
msgstr "ir virs vidējā"
-#: sc/inc/globstr.hrc:445
+#: sc/inc/globstr.hrc:446
msgctxt "STR_COND_BELOW_AVERAGE"
msgid "Below Average"
msgstr "ir zem vidējā"
-#: sc/inc/globstr.hrc:446
+#: sc/inc/globstr.hrc:447
msgctxt "STR_COND_ABOVE_EQUAL_AVERAGE"
msgid "Above or equal Average"
msgstr "ne mazāka par vidējo"
-#: sc/inc/globstr.hrc:447
+#: sc/inc/globstr.hrc:448
msgctxt "STR_COND_BELOW_EQUAL_AVERAGE"
msgid "Below or equal Average"
msgstr "ne lielāka par vidējo"
-#: sc/inc/globstr.hrc:448
+#: sc/inc/globstr.hrc:449
msgctxt "STR_COND_ERROR"
msgid "an Error code"
msgstr "ir kļūdas kods"
-#: sc/inc/globstr.hrc:449
+#: sc/inc/globstr.hrc:450
msgctxt "STR_COND_NOERROR"
msgid "not an Error code"
msgstr "nav kļūdas kods"
-#: sc/inc/globstr.hrc:450
+#: sc/inc/globstr.hrc:451
msgctxt "STR_COND_BEGINS_WITH"
msgid "Begins with"
msgstr "sākas ar"
-#: sc/inc/globstr.hrc:451
+#: sc/inc/globstr.hrc:452
msgctxt "STR_COND_ENDS_WITH"
msgid "Ends with"
msgstr "beidzas ar"
-#: sc/inc/globstr.hrc:452
+#: sc/inc/globstr.hrc:453
msgctxt "STR_COND_CONTAINS"
msgid "Contains"
msgstr "satur"
-#: sc/inc/globstr.hrc:453
+#: sc/inc/globstr.hrc:454
msgctxt "STR_COND_NOT_CONTAINS"
msgid "Not Contains"
msgstr "nesatur"
-#: sc/inc/globstr.hrc:454
+#: sc/inc/globstr.hrc:455
msgctxt "STR_COND_TODAY"
msgid "today"
msgstr "šodien"
-#: sc/inc/globstr.hrc:455
+#: sc/inc/globstr.hrc:456
msgctxt "STR_COND_YESTERDAY"
msgid "yesterday"
msgstr "vakar"
-#: sc/inc/globstr.hrc:456
+#: sc/inc/globstr.hrc:457
msgctxt "STR_COND_TOMORROW"
msgid "tomorrow"
msgstr "rīt"
-#: sc/inc/globstr.hrc:457
+#: sc/inc/globstr.hrc:458
msgctxt "STR_COND_LAST7DAYS"
msgid "in the last 7 days"
msgstr "pēdējās 7 dienās"
-#: sc/inc/globstr.hrc:458
+#: sc/inc/globstr.hrc:459
msgctxt "STR_COND_THISWEEK"
msgid "this week"
msgstr "šonedēļ"
-#: sc/inc/globstr.hrc:459
+#: sc/inc/globstr.hrc:460
msgctxt "STR_COND_LASTWEEK"
msgid "last week"
msgstr "pagājušajā nedēļā"
-#: sc/inc/globstr.hrc:460
+#: sc/inc/globstr.hrc:461
msgctxt "STR_COND_NEXTWEEK"
msgid "next week"
msgstr "nākamnedēļ"
-#: sc/inc/globstr.hrc:461
+#: sc/inc/globstr.hrc:462
msgctxt "STR_COND_THISMONTH"
msgid "this month"
msgstr "šomēnes"
-#: sc/inc/globstr.hrc:462
+#: sc/inc/globstr.hrc:463
msgctxt "STR_COND_LASTMONTH"
msgid "last month"
msgstr "pagājušajā mēnesī"
-#: sc/inc/globstr.hrc:463
+#: sc/inc/globstr.hrc:464
msgctxt "STR_COND_NEXTMONTH"
msgid "next month"
msgstr "nākamajā mēnesī"
-#: sc/inc/globstr.hrc:464
+#: sc/inc/globstr.hrc:465
msgctxt "STR_COND_THISYEAR"
msgid "this year"
msgstr "šogad"
-#: sc/inc/globstr.hrc:465
+#: sc/inc/globstr.hrc:466
msgctxt "STR_COND_LASTYEAR"
msgid "last year"
msgstr "pagājušajā gadā"
-#: sc/inc/globstr.hrc:466
+#: sc/inc/globstr.hrc:467
msgctxt "STR_COND_NEXTYEAR"
msgid "next year"
msgstr "nākamajā gadā"
-#: sc/inc/globstr.hrc:467
+#: sc/inc/globstr.hrc:468
msgctxt "STR_COND_AND"
msgid "and"
msgstr "un"
-#: sc/inc/globstr.hrc:468
+#: sc/inc/globstr.hrc:469
msgctxt "STR_ERR_CONDFORMAT_PROTECTED"
msgid "Conditional Formats can not be created, deleted or changed in protected sheets."
msgstr ""
-#: sc/inc/globstr.hrc:469
+#: sc/inc/globstr.hrc:470
msgctxt "STR_EDIT_EXISTING_COND_FORMATS"
msgid ""
"The selected cell already contains conditional formatting. You can either edit the existing conditional format or you define a new overlapping conditional format.\n"
@@ -2319,7 +2324,7 @@ msgstr ""
"\n"
"Vai vēlaties rediģēt esošo formatēšanu ar nosacījumu?"
-#: sc/inc/globstr.hrc:470
+#: sc/inc/globstr.hrc:471
msgctxt "STR_QUERY_FORMULA_RECALC_ONLOAD_ODS"
msgid ""
"This document was last saved by an application other than %PRODUCTNAME. Some formula cells may produce different results when recalculated.\n"
@@ -2330,7 +2335,7 @@ msgstr ""
"\n"
"Vai vēlaties tagad pārrēķināt visas formulu šūnas šajā dokumentā?"
-#: sc/inc/globstr.hrc:471
+#: sc/inc/globstr.hrc:472
msgctxt "STR_QUERY_FORMULA_RECALC_ONLOAD_XLS"
msgid ""
"This document was last saved by Excel. Some formula cells may produce different results when recalculated.\n"
@@ -2341,77 +2346,77 @@ msgstr ""
"\n"
"Vai vēlaties tagad pārrēķināt visas formulu šūnas šajā dokumentā?"
-#: sc/inc/globstr.hrc:472
+#: sc/inc/globstr.hrc:473
msgctxt "STR_NO_INSERT_DELETE_OVER_PIVOT_TABLE"
msgid "You cannot insert or delete cells when the affected range intersects with pivot table."
msgstr "Ja mērķa apgabals pārklājas ar pivot tabulu, nevar ievietot vai dzēst šūnas."
-#: sc/inc/globstr.hrc:473
+#: sc/inc/globstr.hrc:474
msgctxt "STR_DPFIELD_GROUP_BY_SECONDS"
msgid "Seconds"
msgstr "Sekundes"
-#: sc/inc/globstr.hrc:474
+#: sc/inc/globstr.hrc:475
msgctxt "STR_DPFIELD_GROUP_BY_MINUTES"
msgid "Minutes"
msgstr "Minūtes"
-#: sc/inc/globstr.hrc:475
+#: sc/inc/globstr.hrc:476
msgctxt "STR_DPFIELD_GROUP_BY_HOURS"
msgid "Hours"
msgstr "Stundas"
-#: sc/inc/globstr.hrc:476
+#: sc/inc/globstr.hrc:477
msgctxt "STR_DPFIELD_GROUP_BY_DAYS"
msgid "Days"
msgstr "Dienas"
-#: sc/inc/globstr.hrc:477
+#: sc/inc/globstr.hrc:478
msgctxt "STR_DPFIELD_GROUP_BY_MONTHS"
msgid "Months"
msgstr "Mēneši"
-#: sc/inc/globstr.hrc:478
+#: sc/inc/globstr.hrc:479
msgctxt "STR_DPFIELD_GROUP_BY_QUARTERS"
msgid "Quarters"
msgstr "Ceturkšņi"
-#: sc/inc/globstr.hrc:479
+#: sc/inc/globstr.hrc:480
msgctxt "STR_DPFIELD_GROUP_BY_YEARS"
msgid "Years"
msgstr "Gadi"
-#: sc/inc/globstr.hrc:480
+#: sc/inc/globstr.hrc:481
msgctxt "STR_INVALIDVAL"
msgid "Invalid target value."
msgstr "Nederīga mērķa vērtība."
-#: sc/inc/globstr.hrc:481
+#: sc/inc/globstr.hrc:482
msgctxt "STR_INVALIDVAR"
msgid "Undefined name for variable cell."
msgstr "Nedefinēts nosaukums mainīgā šūnai."
-#: sc/inc/globstr.hrc:482
+#: sc/inc/globstr.hrc:483
msgctxt "STR_INVALIDFORM"
msgid "Undefined name as formula cell."
msgstr "Nedefinēts nosaukums formulas šūnai."
-#: sc/inc/globstr.hrc:483
+#: sc/inc/globstr.hrc:484
msgctxt "STR_NOFORMULA"
msgid "Formula cell must contain a formula."
msgstr "Formulas šūnā jābūt formulai."
-#: sc/inc/globstr.hrc:484
+#: sc/inc/globstr.hrc:485
msgctxt "STR_INVALIDINPUT"
msgid "Invalid input."
msgstr "Nederīga ievade."
-#: sc/inc/globstr.hrc:485
+#: sc/inc/globstr.hrc:486
msgctxt "STR_INVALIDCONDITION"
msgid "Invalid condition."
msgstr "Nederīgs nosacījums."
-#: sc/inc/globstr.hrc:486
+#: sc/inc/globstr.hrc:487
msgctxt "STR_QUERYREMOVE"
msgid ""
"Should the entry\n"
@@ -2422,133 +2427,133 @@ msgstr ""
"#\n"
"ir jādzēš?"
-#: sc/inc/globstr.hrc:487
+#: sc/inc/globstr.hrc:488
msgctxt "STR_COPYLIST"
msgid "Copy List"
msgstr "Kopēt sarakstu"
-#: sc/inc/globstr.hrc:488
+#: sc/inc/globstr.hrc:489
msgctxt "STR_COPYFROM"
msgid "List from"
msgstr "Saraksts no"
-#: sc/inc/globstr.hrc:489
+#: sc/inc/globstr.hrc:490
msgctxt "STR_COPYERR"
msgid "Cells without text have been ignored."
msgstr "Šūnas bez teksta tika ignorētas."
-#: sc/inc/globstr.hrc:490
+#: sc/inc/globstr.hrc:491
#, c-format
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%s-click to follow hyperlink:"
msgstr "%s-klikšķis, lai sekotu hipersaitei:"
-#: sc/inc/globstr.hrc:491
+#: sc/inc/globstr.hrc:492
msgctxt "STR_CLICKHYPERLINK"
msgid "click to open hyperlink:"
msgstr "klikšķis, lai atvērtu hipersaiti:"
-#: sc/inc/globstr.hrc:492
+#: sc/inc/globstr.hrc:493
msgctxt "STR_PRINT_PREVIEW_NODATA"
msgid "No Data"
msgstr "Nav datu"
-#: sc/inc/globstr.hrc:493
+#: sc/inc/globstr.hrc:494
msgctxt "STR_PRINT_PREVIEW_EMPTY_RANGE"
msgid "Print Range Empty"
msgstr "Drukāšanas diapazons ir tukšs"
-#: sc/inc/globstr.hrc:494
+#: sc/inc/globstr.hrc:495
msgctxt "STR_UNDO_CONDFORMAT"
msgid "Conditional Format"
msgstr "Nosacījuma formāts"
-#: sc/inc/globstr.hrc:495
+#: sc/inc/globstr.hrc:496
msgctxt "STR_UNDO_CONDFORMAT_LIST"
msgid "Conditional Formats"
msgstr "Nosacījuma formāti"
-#: sc/inc/globstr.hrc:496
+#: sc/inc/globstr.hrc:497
msgctxt "STR_UNDO_FORMULA_TO_VALUE"
msgid "Convert Formula To Value"
msgstr "Konvertēt formulu uz vērtību"
-#: sc/inc/globstr.hrc:497
+#: sc/inc/globstr.hrc:498
msgctxt "STR_UNQUOTED_STRING"
msgid "Strings without quotes are interpreted as column/row labels."
msgstr "Virknes, kas nav pēdiņās, tiks interpretētas kā kolonnu/rindu etiķetes."
-#: sc/inc/globstr.hrc:498
+#: sc/inc/globstr.hrc:499
msgctxt "STR_ENTER_VALUE"
msgid "Enter a value!"
msgstr "Ievadiet vērtību!"
-#: sc/inc/globstr.hrc:499
+#: sc/inc/globstr.hrc:500
msgctxt "STR_TABLE_COUNT"
msgid "Sheet %1 of %2"
msgstr "Loksne %1 no %2"
-#: sc/inc/globstr.hrc:500
+#: sc/inc/globstr.hrc:501
msgctxt "STR_FUNCTIONS_FOUND"
msgid "%1 and %2 more"
msgstr "%1 un vēl %2"
-#: sc/inc/globstr.hrc:501
+#: sc/inc/globstr.hrc:502
msgctxt "STR_GENERAL"
msgid "General"
msgstr "Vispārīgi"
-#: sc/inc/globstr.hrc:502
+#: sc/inc/globstr.hrc:503
msgctxt "STR_NUMBER"
msgid "Number"
msgstr "Skaitlis"
-#: sc/inc/globstr.hrc:503
+#: sc/inc/globstr.hrc:504
msgctxt "STR_PERCENT"
msgid "Percent"
msgstr "Procents"
-#: sc/inc/globstr.hrc:504
+#: sc/inc/globstr.hrc:505
msgctxt "STR_CURRENCY"
msgid "Currency"
msgstr "Valūta"
-#: sc/inc/globstr.hrc:505
+#: sc/inc/globstr.hrc:506
msgctxt "STR_DATE"
msgid "Date"
msgstr "Datums"
-#: sc/inc/globstr.hrc:506
+#: sc/inc/globstr.hrc:507
msgctxt "STR_TIME"
msgid "Time"
msgstr "Laiks"
-#: sc/inc/globstr.hrc:507
+#: sc/inc/globstr.hrc:508
msgctxt "STR_SCIENTIFIC"
msgid "Scientific"
msgstr "Zinātnisks"
-#: sc/inc/globstr.hrc:508
+#: sc/inc/globstr.hrc:509
msgctxt "STR_FRACTION"
msgid "Fraction"
msgstr "Daļskaitlis"
-#: sc/inc/globstr.hrc:509
+#: sc/inc/globstr.hrc:510
msgctxt "STR_BOOLEAN_VALUE"
msgid "Boolean Value"
msgstr "Būla vērtība"
-#: sc/inc/globstr.hrc:510
+#: sc/inc/globstr.hrc:511
msgctxt "STR_TEXT"
msgid "Text"
msgstr "Teksts"
-#: sc/inc/globstr.hrc:511
+#: sc/inc/globstr.hrc:512
msgctxt "STR_QUERY_PIVOTTABLE_DELTAB"
msgid "The selected sheet(s) contain source data of related pivot tables that will be lost. Are you sure you want to delete the selected sheet(s)?"
msgstr "Izvēlētā(s) loksne(s) satur saistīto pivot tabulu avota datus, kuri zudīs. Vai tiešām vēlaties dzēst izvēlēto(-ās) loksni(-es)?"
-#: sc/inc/globstr.hrc:512
+#: sc/inc/globstr.hrc:513
msgctxt "STR_ERR_NAME_INVALID_CELL_REF"
msgid "Invalid name. Reference to a cell, or a range of cells not allowed."
msgstr "Nederīgs nosaukums. Norāde uz šūnu vai šūnu diapazonu nav atļauta."
@@ -10660,8 +10665,8 @@ msgstr "Veids"
#: sc/inc/scfuncs.hrc:3010
msgctxt "SC_OPCODE_T_TEST"
-msgid "Mode specifies the number of distribution tails to return. 1= one-tailed, 2 = two-tailed distribution"
-msgstr "Alternatīvās hipotēzes veids. 1 = vienpusēja, 2 = divpusēja"
+msgid "Mode specifies the number of distribution tails to return. 1 = one-tailed, 2 = two-tailed distribution"
+msgstr ""
#: sc/inc/scfuncs.hrc:3011
msgctxt "SC_OPCODE_T_TEST"
@@ -10708,8 +10713,8 @@ msgstr "Veids"
#: sc/inc/scfuncs.hrc:3024
msgctxt "SC_OPCODE_T_TEST_MS"
-msgid "Mode specifies the number of distribution tails to return. 1= one-tailed, 2 = two-tailed distribution"
-msgstr "Alternatīvās hipotēzes veids. 1 = vienpusēja, 2 = divpusēja"
+msgid "Mode specifies the number of distribution tails to return. 1 = one-tailed, 2 = two-tailed distribution"
+msgstr ""
#: sc/inc/scfuncs.hrc:3025
msgctxt "SC_OPCODE_T_TEST_MS"
@@ -18356,22 +18361,22 @@ msgctxt "mergecellsdialog|MergeCellsDialog"
msgid "Merge Cells"
msgstr "Sapludināt šūnas"
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:81
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:84
msgctxt "mergecellsdialog|label"
msgid "Some cells are not empty."
msgstr "Dažas šūnas nav tukšas."
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:96
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:99
msgctxt "mergecellsdialog|move-cells-radio"
msgid "Move the contents of the hidden cells into the first cell"
msgstr "Pārvietot slēpto šūnu saturu uz pirmo šūnu"
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:112
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:115
msgctxt "mergecellsdialog|empty-cells-radio"
msgid "Empty the contents of the hidden cells"
msgstr "Iztukšot slēpto šūnu saturu"
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:128
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:131
msgctxt "mergecellsdialog|keep-content-radio"
msgid "Keep the contents of the hidden cells"
msgstr "Paturēt slēpto šūnu saturu"
diff --git a/source/lv/sd/messages.po b/source/lv/sd/messages.po
index 63f61dfa9b3..630c91d0f99 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+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"
@@ -13,170 +13,170 @@ msgstr ""
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-#: sd/inc/DocumentRenderer.hrc:29
+#: sd/inc/DocumentRenderer.hrc:27
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Slides"
msgstr "Slaidi"
-#: sd/inc/DocumentRenderer.hrc:30
+#: sd/inc/DocumentRenderer.hrc:28
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Handouts"
msgstr "Izdales lapas"
-#: sd/inc/DocumentRenderer.hrc:31
+#: sd/inc/DocumentRenderer.hrc:29
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Notes"
msgstr "Piezīmes"
-#: sd/inc/DocumentRenderer.hrc:32
+#: sd/inc/DocumentRenderer.hrc:30
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Outline"
msgstr "Struktūra"
-#: sd/inc/DocumentRenderer.hrc:37
+#: sd/inc/DocumentRenderer.hrc:35
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "According to layout"
msgstr "Saskaņā ar izkārtojumu"
-#: sd/inc/DocumentRenderer.hrc:38
+#: sd/inc/DocumentRenderer.hrc:36
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "1"
msgstr "1"
-#: sd/inc/DocumentRenderer.hrc:39
+#: sd/inc/DocumentRenderer.hrc:37
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "2"
msgstr "2"
-#: sd/inc/DocumentRenderer.hrc:40
+#: sd/inc/DocumentRenderer.hrc:38
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "3"
msgstr "3"
-#: sd/inc/DocumentRenderer.hrc:41
+#: sd/inc/DocumentRenderer.hrc:39
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "4"
msgstr "4"
-#: sd/inc/DocumentRenderer.hrc:42
+#: sd/inc/DocumentRenderer.hrc:40
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "6"
msgstr "6"
-#: sd/inc/DocumentRenderer.hrc:43
+#: sd/inc/DocumentRenderer.hrc:41
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "9"
msgstr "9"
-#: sd/inc/DocumentRenderer.hrc:48
+#: sd/inc/DocumentRenderer.hrc:46
msgctxt "STR_IMPRESS_PRINT_UI_ORDER_CHOICES"
msgid "Left to right, then down"
msgstr "No kreisās uz labo, tad uz leju"
-#: sd/inc/DocumentRenderer.hrc:49
+#: sd/inc/DocumentRenderer.hrc:47
msgctxt "STR_IMPRESS_PRINT_UI_ORDER_CHOICES"
msgid "Top to bottom, then right"
msgstr "No augšas uz leju, tad pa labi"
-#: sd/inc/DocumentRenderer.hrc:54
+#: sd/inc/DocumentRenderer.hrc:52
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Original colors"
msgstr "Sākotnējās krāsas"
-#: sd/inc/DocumentRenderer.hrc:55
+#: sd/inc/DocumentRenderer.hrc:53
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Grayscale"
msgstr "Pelēktoņu"
-#: sd/inc/DocumentRenderer.hrc:56
+#: sd/inc/DocumentRenderer.hrc:54
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Black & white"
msgstr "Melnbalts"
-#: sd/inc/DocumentRenderer.hrc:61
+#: sd/inc/DocumentRenderer.hrc:59
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Original size"
msgstr "Sākotnējais izmērs"
-#: sd/inc/DocumentRenderer.hrc:62
+#: sd/inc/DocumentRenderer.hrc:60
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Fit to printable page"
msgstr "Pielāgot drukājamajai lappusei"
-#: sd/inc/DocumentRenderer.hrc:63
+#: sd/inc/DocumentRenderer.hrc:61
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Distribute on multiple sheets of paper"
msgstr "Izvērst uz vairākām papīra loksnēm"
-#: sd/inc/DocumentRenderer.hrc:64
+#: sd/inc/DocumentRenderer.hrc:62
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Tile sheet of paper with repeated slides"
msgstr "Salikt papīra loksni ar atkārtotiem slaidiem"
-#: sd/inc/DocumentRenderer.hrc:69
+#: sd/inc/DocumentRenderer.hrc:67
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Original size"
msgstr "Sākotnējais izmērs"
-#: sd/inc/DocumentRenderer.hrc:70
+#: sd/inc/DocumentRenderer.hrc:68
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Fit to printable page"
msgstr "Pielāgot drukājamajai lappusei"
-#: sd/inc/DocumentRenderer.hrc:71
+#: sd/inc/DocumentRenderer.hrc:69
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Distribute on multiple sheets of paper"
msgstr "Izvērst uz vairākām papīra loksnēm"
-#: sd/inc/DocumentRenderer.hrc:72
+#: sd/inc/DocumentRenderer.hrc:70
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Tile sheet of paper with repeated pages"
msgstr "Salikt papīra loksni ar atkārtotām lappusēm"
-#: sd/inc/DocumentRenderer.hrc:77
+#: sd/inc/DocumentRenderer.hrc:75
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "All pages"
msgstr "Visas lappuses"
-#: sd/inc/DocumentRenderer.hrc:78
+#: sd/inc/DocumentRenderer.hrc:76
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "Front sides / right pages"
msgstr "Priekšpuses / labās lappuses"
-#: sd/inc/DocumentRenderer.hrc:79
+#: sd/inc/DocumentRenderer.hrc:77
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "Back sides / left pages"
msgstr "Aizmugures / kreisās lappuses"
-#: sd/inc/DocumentRenderer.hrc:84
+#: sd/inc/DocumentRenderer.hrc:82
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~All slides"
msgstr "Visi _slaidi"
-#: sd/inc/DocumentRenderer.hrc:85
+#: sd/inc/DocumentRenderer.hrc:83
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~Slides"
msgstr "Slaidi"
-#: sd/inc/DocumentRenderer.hrc:86
+#: sd/inc/DocumentRenderer.hrc:84
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Se~lection"
msgstr "Izvē~lētais"
-#: sd/inc/DocumentRenderer.hrc:91
+#: sd/inc/DocumentRenderer.hrc:89
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~All pages"
msgstr "Vis~as lappuses"
-#: sd/inc/DocumentRenderer.hrc:92
+#: sd/inc/DocumentRenderer.hrc:90
#, fuzzy
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Pa~ges"
msgstr "Lappuses"
-#: sd/inc/DocumentRenderer.hrc:93
+#: sd/inc/DocumentRenderer.hrc:91
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Se~lection"
msgstr "Izvē~lētais"
diff --git a/source/lv/svx/messages.po b/source/lv/svx/messages.po
index 4e052e4d385..19e72b53042 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: 2018-05-16 16:53+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+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"
@@ -5209,8 +5209,8 @@ msgstr "Jūs kļūdas ziņojumā varat iekļaut arī saistošas jūsu lietotāja
#: svx/uiconfig/ui/safemodedialog.ui:432
msgctxt "safemodedialog|btn_create_zip"
-msgid "Create Zip Archive from User Profile"
-msgstr "Izveidot Zip arhīvu no lietotāja profila"
+msgid "Archive User Profile"
+msgstr ""
#: svx/uiconfig/ui/safemodedialog.ui:445
msgctxt "safemodedialog|linkbutton_profile"
@@ -8806,9 +8806,9 @@ msgid "Red"
msgstr "Sarkans"
#: include/svx/strings.hrc:565
-msgctxt "RID_SVXSTR_COLOR_VIOLET"
-msgid "Violet"
-msgstr "Violets"
+msgctxt "RID_SVXSTR_COLOR_MAGENTA"
+msgid "Magenta"
+msgstr "Fuksīns"
#: include/svx/strings.hrc:566
msgctxt "RID_SVXSTR_COLOR_PURPLE"
@@ -8874,8 +8874,8 @@ msgid "Light Red"
msgstr "Gaiši sarkans"
#: include/svx/strings.hrc:579
-msgctxt "RID_SVXSTR_COLOR_LIGHTVIOLET"
-msgid "Light Violet"
+msgctxt "RID_SVXSTR_COLOR_LIGHTMAGENTA"
+msgid "Light Magenta"
msgstr ""
#: include/svx/strings.hrc:580
@@ -8941,10 +8941,9 @@ msgid "Dark Red"
msgstr "Tumši sarkans"
#: include/svx/strings.hrc:593
-#, fuzzy
-msgctxt "RID_SVXSTR_COLOR_DARKVIOLET1"
-msgid "Dark Violet"
-msgstr "Tumši violets"
+msgctxt "RID_SVXSTR_COLOR_DARKMAGENTA"
+msgid "Dark Magenta"
+msgstr ""
#: include/svx/strings.hrc:594
msgctxt "RID_SVXSTR_COLOR_DARKPURPLE"
@@ -8978,55 +8977,55 @@ msgstr ""
#. Elements of the Tonal color palette
#: include/svx/strings.hrc:601
+msgctxt "RID_SVXSTR_COLOR_VIOLET"
+msgid "Violet"
+msgstr "Violets"
+
+#: include/svx/strings.hrc:602
msgctxt "RID_SVXSTR_COLOR_VIOLET_OUG"
msgid "Violet (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:602
+#: include/svx/strings.hrc:603
msgctxt "RID_SVXSTR_COLOR_BLUE_OUG"
msgid "Blue (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:603
+#: include/svx/strings.hrc:604
msgctxt "RID_SVXSTR_COLOR_AZURE_OUG"
msgid "Azure (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:604
+#: include/svx/strings.hrc:605
msgctxt "RID_SVXSTR_COLOR_SPRINGGREEN_OUG"
msgid "Spring Green (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:605
+#: include/svx/strings.hrc:606
msgctxt "RID_SVXSTR_COLOR_GREEN_OUG"
msgid "Green (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:606
+#: include/svx/strings.hrc:607
msgctxt "RID_SVXSTR_COLOR_CHARTREUSEGREEN_OUG"
msgid "Chartreuse Green (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:607
+#: include/svx/strings.hrc:608
msgctxt "RID_SVXSTR_COLOR_ORANGE_OUG"
msgid "Orange (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:608
+#: include/svx/strings.hrc:609
msgctxt "RID_SVXSTR_COLOR_RED_OUG"
msgid "Red (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:609
+#: include/svx/strings.hrc:610
msgctxt "RID_SVXSTR_COLOR_ROSE_OUG"
msgid "Rose (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:610
-msgctxt "RID_SVXSTR_COLOR_MAGENTA"
-msgid "Magenta"
-msgstr "Fuksīns"
-
#: include/svx/strings.hrc:611
msgctxt "RID_SVXSTR_COLOR_AZURE"
msgid "Azure"
@@ -12144,13 +12143,13 @@ msgstr "Uz labo pusi vērstas bultas"
#: include/svx/strings.hrc:1273
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_6"
-msgid "Check mark bullets"
-msgstr "Krustiņa aizzīmes"
+msgid "Cross mark bullets"
+msgstr ""
#: include/svx/strings.hrc:1274
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_7"
-msgid "Tick mark bullets"
-msgstr "Ķeksīša aizzīmes"
+msgid "Check mark bullets"
+msgstr ""
#: include/svx/strings.hrc:1275
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_0"
diff --git a/source/lv/sw/messages.po b/source/lv/sw/messages.po
index 818a2c0af75..51bd99edfbe 100644
--- a/source/lv/sw/messages.po
+++ b/source/lv/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: 2018-05-22 13:17+0200\n"
+"POT-Creation-Date: 2018-06-12 14:41+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"
@@ -1194,13 +1194,13 @@ msgstr "Citāts"
#: sw/inc/strings.hrc:172
msgctxt "STR_POOLCOLL_TOX_ILLUSH"
-msgid "Illustration Index Heading"
-msgstr "Attēlu rādītāja virsraksts"
+msgid "Figure Index Heading"
+msgstr ""
#: sw/inc/strings.hrc:173
msgctxt "STR_POOLCOLL_TOX_ILLUS1"
-msgid "Illustration Index 1"
-msgstr "Attēlu rādītājs 1"
+msgid "Figure Index 1"
+msgstr ""
#: sw/inc/strings.hrc:174
msgctxt "STR_POOLCOLL_TOX_OBJECTH"
@@ -3607,8 +3607,8 @@ msgstr "Objektu tabula"
#: sw/inc/strings.hrc:672
msgctxt "STR_TOX_ILL"
-msgid "Illustration Index"
-msgstr "Attēlu rādītājs"
+msgid "Table of Figures"
+msgstr ""
#: sw/inc/strings.hrc:673
#, c-format
@@ -9272,72 +9272,72 @@ msgctxt "footnotepage|label5"
msgid "Continuation Notice"
msgstr "Turpinājuma norāde"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:49
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:55
msgctxt "footnotesendnotestabpage|ftnntnum"
msgid "_Restart numbering"
msgstr "Sākt numu_rēšanu no jauna"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:91
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:93
msgctxt "footnotesendnotestabpage|ftnoffset_label"
msgid "_Start at:"
msgstr "_Sākt no:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:112
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:111
msgctxt "footnotesendnotestabpage|ftnntnumfmt"
msgid "Custom _format"
msgstr "Pielāgots _formāts"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:155
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:150
msgctxt "footnotesendnotestabpage|ftnsuffix_label"
msgid "Aft_er:"
msgstr "Pē_c:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:199
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:188
msgctxt "footnotesendnotestabpage|ftnprefix_label"
msgid "Be_fore:"
msgstr "Pir_ms:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:228
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:212
msgctxt "footnotesendnotestabpage|ftnntattextend"
msgid "Collec_t at end of text"
msgstr "Apkopo_t teksta beigās"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:252
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:234
msgctxt "footnotesendnotestabpage|label1"
msgid "Footnotes"
msgstr "Vēres"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:289
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:271
msgctxt "footnotesendnotestabpage|endntattextend"
msgid "C_ollect at end of section"
msgstr "Apk_opot sadaļas beigās"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:315
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:295
msgctxt "footnotesendnotestabpage|endntnum"
msgid "_Restart numbering"
msgstr "Sākt numu_rēšanu no jauna"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:357
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:333
msgctxt "footnotesendnotestabpage|endoffset_label"
msgid "_Start at:"
msgstr "_Sākt no:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:378
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:351
msgctxt "footnotesendnotestabpage|endntnumfmt"
msgid "_Custom format"
msgstr "_Pielāgots formāts"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:421
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:390
msgctxt "footnotesendnotestabpage|endsuffix_label"
msgid "Aft_er:"
msgstr "Pē_c:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:465
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:428
msgctxt "footnotesendnotestabpage|endprefix_label"
msgid "Be_fore:"
msgstr "Pir_ms:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:500
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:458
msgctxt "footnotesendnotestabpage|label2"
msgid "Endnotes"
msgstr "Beigu vēres"
@@ -9367,27 +9367,27 @@ msgctxt "formatsectiondialog|notes"
msgid "Footnotes/Endnotes"
msgstr "Vēres un beigu vēres"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:63
+#: sw/uiconfig/swriter/ui/formattablepage.ui:77
msgctxt "formattablepage|nameft"
msgid "_Name"
msgstr "_Nosaukums"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:79
+#: sw/uiconfig/swriter/ui/formattablepage.ui:91
msgctxt "formattablepage|widthft"
msgid "W_idth"
msgstr "P_latums"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:110
+#: sw/uiconfig/swriter/ui/formattablepage.ui:120
msgctxt "formattablepage|relwidth"
msgid "Relati_ve"
msgstr "Relatī_vs"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:155
+#: sw/uiconfig/swriter/ui/formattablepage.ui:160
msgctxt "formattablepage|label45"
msgid "Properties"
msgstr "Īpašības"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:194
+#: sw/uiconfig/swriter/ui/formattablepage.ui:195
msgctxt "formattablepage|leftft"
msgid "Lef_t"
msgstr "_Kreisā"
@@ -9397,62 +9397,62 @@ msgctxt "formattablepage|rightft"
msgid "Ri_ght"
msgstr "_Labā"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:228
+#: sw/uiconfig/swriter/ui/formattablepage.ui:226
msgctxt "formattablepage|aboveft"
msgid "_Above"
msgstr "_Virs"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:245
+#: sw/uiconfig/swriter/ui/formattablepage.ui:241
msgctxt "formattablepage|belowft"
msgid "_Below"
msgstr "_Zem"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:320
+#: sw/uiconfig/swriter/ui/formattablepage.ui:311
msgctxt "formattablepage|label46"
msgid "Spacing"
msgstr "Atstarpes"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:362
+#: sw/uiconfig/swriter/ui/formattablepage.ui:349
msgctxt "formattablepage|full"
msgid "A_utomatic"
msgstr "A_utomātiska"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:380
+#: sw/uiconfig/swriter/ui/formattablepage.ui:365
msgctxt "formattablepage|left"
msgid "_Left"
msgstr "Pa _kreisi"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:398
+#: sw/uiconfig/swriter/ui/formattablepage.ui:381
msgctxt "formattablepage|fromleft"
msgid "_From left"
msgstr "A_r nobīdi"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:416
+#: sw/uiconfig/swriter/ui/formattablepage.ui:397
msgctxt "formattablepage|right"
msgid "R_ight"
msgstr "Pa _labi"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:435
+#: sw/uiconfig/swriter/ui/formattablepage.ui:413
msgctxt "formattablepage|center"
msgid "_Center"
msgstr "_Vidū"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:453
+#: sw/uiconfig/swriter/ui/formattablepage.ui:429
msgctxt "formattablepage|free"
msgid "_Manual"
msgstr "_Pašrocīga"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:478
+#: sw/uiconfig/swriter/ui/formattablepage.ui:452
msgctxt "formattablepage|label43"
msgid "Alignment"
msgstr "Līdzināšana"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:522
+#: sw/uiconfig/swriter/ui/formattablepage.ui:491
msgctxt "formattablepage|label53"
msgid "Text _direction"
msgstr "Teksta _virziens"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:553
+#: sw/uiconfig/swriter/ui/formattablepage.ui:519
msgctxt "formattablepage|label44"
msgid "Properties "
msgstr "Īpašības "
@@ -9807,22 +9807,27 @@ msgctxt "headerfootermenu|insert_pagenumber"
msgid "Insert Page Number"
msgstr ""
-#: sw/uiconfig/swriter/ui/indentpage.ui:52
+#: sw/uiconfig/swriter/ui/headerfootermenu.ui:42
+msgctxt "headerfootermenu|insert_pagecount"
+msgid "Insert Page Count"
+msgstr ""
+
+#: sw/uiconfig/swriter/ui/indentpage.ui:57
msgctxt "indentpage|label1"
msgid "_Before section"
msgstr "_Pirms sadaļas"
-#: sw/uiconfig/swriter/ui/indentpage.ui:67
+#: sw/uiconfig/swriter/ui/indentpage.ui:71
msgctxt "indentpage|label3"
msgid "_After section"
msgstr "Pēc s_adaļas"
-#: sw/uiconfig/swriter/ui/indentpage.ui:113
+#: sw/uiconfig/swriter/ui/indentpage.ui:115
msgctxt "indentpage|label2"
msgid "Indent"
msgstr "Atkāpe"
-#: sw/uiconfig/swriter/ui/indentpage.ui:142
+#: sw/uiconfig/swriter/ui/indentpage.ui:155
msgctxt "indentpage|preview-atkobject"
msgid "Example"
msgstr "Piemērs"
@@ -13342,8 +13347,8 @@ msgstr "Aizsargāt formu"
#: sw/uiconfig/swriter/ui/optcompatpage.ui:68
msgctxt "optcompatpage|format"
-msgid "MS Word-compatible trailing blanks"
-msgstr "Ar MS Word saderīgas beigu atstarpes"
+msgid "Word-compatible trailing blanks"
+msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:69
msgctxt "optcompatpage|format"
@@ -13352,7 +13357,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:70
msgctxt "optcompatpage|format"
-msgid "A database field (e.g., MailMerge) with empty value hides its paragraph"
+msgid "Hide paragraphs of database fields (e.g., mail merge) with an empty value"
msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:71
@@ -16041,122 +16046,122 @@ msgctxt "tableproperties|background"
msgid "Background"
msgstr "Fons"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:25
-msgctxt "tabletextflowpage|liststore1"
-msgid "Horizontal"
-msgstr "Horizontāli"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:29
-msgctxt "tabletextflowpage|liststore1"
-msgid "Vertical"
-msgstr "Vertikāli"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:33
-msgctxt "tabletextflowpage|liststore1"
-msgid "Use superordinate object settings"
-msgstr "Izmantot virsobjekta iestatījumus"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:47
-msgctxt "tabletextflowpage|liststore2"
-msgid "Top"
-msgstr "Augša"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:51
-msgctxt "tabletextflowpage|liststore2"
-msgid "Centered"
-msgstr "Centrēts"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:55
-msgctxt "tabletextflowpage|liststore2"
-msgid "Bottom"
-msgstr "Apakša"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:97
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:53
msgctxt "tabletextflowpage|break"
msgid "_Break"
msgstr "_Atdalītājs"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:112
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:68
msgctxt "tabletextflowpage|page"
msgid "_Page"
msgstr "_Lappuse"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:132
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:87
msgctxt "tabletextflowpage|column"
msgid "Col_umn"
msgstr "_Kolonna"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:151
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:106
msgctxt "tabletextflowpage|before"
msgid "Be_fore"
msgstr "Pir_ms"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:171
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:125
msgctxt "tabletextflowpage|after"
msgid "_After"
msgstr "_Pēc"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:203
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:158
msgctxt "tabletextflowpage|pagestyle"
msgid "With Page St_yle"
msgstr "Ar _lappušu stilu"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:224
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:177
msgctxt "tabletextflowpage|pagenoft"
msgid "Page _number"
msgstr "Lappuses _numurs"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:257
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:213
msgctxt "tabletextflowpage|pagestylelb-atkobject"
msgid "With Page Style"
msgstr "Ar lappuses stilu"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:274
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:230
msgctxt "tabletextflowpage|split"
msgid "Allow _table to split across pages and columns"
msgstr "Atļaut _tabulai sadalīties pa vairākām lappusēm vai kolonnām"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:289
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:245
msgctxt "tabletextflowpage|splitrow"
msgid "Allow row to break a_cross pages and columns"
msgstr "Atļaut _rindai sadalīties pa vairākām lappusēm un kolonnām"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:306
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:262
msgctxt "tabletextflowpage|keep"
msgid "_Keep with next paragraph"
msgstr "Turēties pie nākamās rind_kopas"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:328
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:284
msgctxt "tabletextflowpage|label40"
msgid "Text _orientation"
msgstr "Teksta _orientācija"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:361
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:298
+msgctxt "tabletextflowpage|liststore1"
+msgid "Horizontal"
+msgstr "Horizontāli"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:299
+msgctxt "tabletextflowpage|liststore1"
+msgid "Vertical"
+msgstr "Vertikāli"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:300
+msgctxt "tabletextflowpage|liststore1"
+msgid "Use superordinate object settings"
+msgstr "Izmantot virsobjekta iestatījumus"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:321
msgctxt "tabletextflowpage|headline"
msgid "R_epeat heading"
msgstr "At_kārtot virsrakstu"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:383
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:343
msgctxt "tabletextflowpage|label38"
msgid "The first "
msgstr "Pirmais"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:396
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:356
msgctxt "tabletextflowpage|label39"
msgid "rows"
msgstr "rindas"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:434
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:395
msgctxt "tabletextflowpage|label35"
msgid "Text Flow"
msgstr "Teksta plūsma"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:467
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:428
msgctxt "tabletextflowpage|label41"
msgid "_Vertical alignment"
msgstr "_Vertikālā līdzināšana"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:495
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:442
+msgctxt "tabletextflowpage|liststore2"
+msgid "Top"
+msgstr "Augša"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:443
+msgctxt "tabletextflowpage|liststore2"
+msgid "Centered"
+msgstr "Centrēts"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:444
+msgctxt "tabletextflowpage|liststore2"
+msgid "Bottom"
+msgstr "Apakša"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:460
msgctxt "tabletextflowpage|label36"
msgid "Alignment"
msgstr "Līdzināšana"
@@ -16938,8 +16943,8 @@ msgstr "Alfabētiskais rādītājs"
#: sw/uiconfig/swriter/ui/tocindexpage.ui:58
msgctxt "tocindexpage|liststore1"
-msgid "Illustration Index"
-msgstr "Attēlu rādītājs"
+msgid "Table of Figures"
+msgstr ""
#: sw/uiconfig/swriter/ui/tocindexpage.ui:62
msgctxt "tocindexpage|liststore1"
diff --git a/source/lv/writerperfect/messages.po b/source/lv/writerperfect/messages.po
index 774e6228448..04ec8b33893 100644
--- a/source/lv/writerperfect/messages.po
+++ b/source/lv/writerperfect/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-16 16:54+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+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"
@@ -65,97 +65,97 @@ msgctxt "exportepub|generalft"
msgid "General"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:122
+#: writerperfect/uiconfig/ui/exportepub.ui:121
msgctxt "exportepub|versionft"
msgid "Version:"
msgstr "Versija:"
-#: writerperfect/uiconfig/ui/exportepub.ui:139
+#: writerperfect/uiconfig/ui/exportepub.ui:138
msgctxt "exportepub|epub3"
msgid "EPUB 3.0"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:140
+#: writerperfect/uiconfig/ui/exportepub.ui:139
msgctxt "exportepub|epub2"
msgid "EPUB 2.0"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:175
+#: writerperfect/uiconfig/ui/exportepub.ui:174
msgctxt "exportepub|splitft"
msgid "Split method:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:192
+#: writerperfect/uiconfig/ui/exportepub.ui:191
msgctxt "exportepub|splitpage"
msgid "Page break"
msgstr "Lappuses atdalītājs"
-#: writerperfect/uiconfig/ui/exportepub.ui:193
+#: writerperfect/uiconfig/ui/exportepub.ui:192
msgctxt "exportepub|splitheading"
msgid "Heading"
msgstr "Virsraksts"
-#: writerperfect/uiconfig/ui/exportepub.ui:228
+#: writerperfect/uiconfig/ui/exportepub.ui:227
msgctxt "exportepub|layoutft"
msgid "Layout method:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:245
+#: writerperfect/uiconfig/ui/exportepub.ui:244
msgctxt "exportepub|layoutreflowable"
msgid "Reflowable"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:246
+#: writerperfect/uiconfig/ui/exportepub.ui:245
msgctxt "exportepub|layoutfixed"
msgid "Fixed"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:281
+#: writerperfect/uiconfig/ui/exportepub.ui:280
msgctxt "exportepub|coverimageft"
msgid "Custom cover image:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:311
+#: writerperfect/uiconfig/ui/exportepub.ui:310
msgctxt "exportepub|coverbutton"
msgid "Browse..."
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:355
+#: writerperfect/uiconfig/ui/exportepub.ui:354
msgctxt "exportepub|mediadirft"
msgid "Custom media directory:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:385
+#: writerperfect/uiconfig/ui/exportepub.ui:384
msgctxt "exportepub|mediabutton"
msgid "Browse..."
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:429
+#: writerperfect/uiconfig/ui/exportepub.ui:428
msgctxt "exportepub|metadataft"
msgid "Metadata"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:470
+#: writerperfect/uiconfig/ui/exportepub.ui:468
msgctxt "exportepub|identifierft"
msgid "Identifier:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:485
+#: writerperfect/uiconfig/ui/exportepub.ui:483
msgctxt "exportepub|titleft"
msgid "Title:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:511
+#: writerperfect/uiconfig/ui/exportepub.ui:509
msgctxt "exportepub|authorft"
msgid "Author:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:537
+#: writerperfect/uiconfig/ui/exportepub.ui:535
msgctxt "exportepub|languageft"
msgid "Language:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:563
+#: writerperfect/uiconfig/ui/exportepub.ui:561
msgctxt "exportepub|dateft"
msgid "Date:"
msgstr ""
diff --git a/source/mai/cui/messages.po b/source/mai/cui/messages.po
index e7705323876..74800648c31 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+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"
@@ -10411,108 +10411,108 @@ msgctxt "positionsizedialog|PositionAndSizeDialog"
msgid "Position and Size"
msgstr "स्थिति आओर आकार (~z)..."
-#: cui/uiconfig/ui/positionsizedialog.ui:107
+#: cui/uiconfig/ui/positionsizedialog.ui:136
#, fuzzy
msgctxt "positionsizedialog|RID_SVXPAGE_POSITION_SIZE"
msgid "Position and Size"
msgstr "स्थिति आओर आकार (~z)..."
-#: cui/uiconfig/ui/positionsizedialog.ui:129
+#: cui/uiconfig/ui/positionsizedialog.ui:182
#, fuzzy
msgctxt "positionsizedialog|RID_SVXPAGE_SWPOSSIZE"
msgid "Position and Size"
msgstr "स्थिति आओर आकार (~z)..."
-#: cui/uiconfig/ui/positionsizedialog.ui:152
+#: cui/uiconfig/ui/positionsizedialog.ui:229
#, fuzzy
msgctxt "positionsizedialog|RID_SVXPAGE_ANGLE"
msgid "Rotation"
msgstr "उद्धरण"
-#: cui/uiconfig/ui/positionsizedialog.ui:175
+#: cui/uiconfig/ui/positionsizedialog.ui:276
msgctxt "positionsizedialog|RID_SVXPAGE_SLANT"
msgid "Slant & Corner Radius"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:40
+#: cui/uiconfig/ui/possizetabpage.ui:61
#, fuzzy
msgctxt "possizetabpage|FT_POS_X"
msgid "Position _X:"
msgstr "स्थिति"
-#: cui/uiconfig/ui/possizetabpage.ui:56
+#: cui/uiconfig/ui/possizetabpage.ui:75
#, fuzzy
msgctxt "possizetabpage|FT_POS_Y"
msgid "Position _Y:"
msgstr "स्थिति"
-#: cui/uiconfig/ui/possizetabpage.ui:110
+#: cui/uiconfig/ui/possizetabpage.ui:128
msgctxt "possizetabpage|FT_POSREFERENCE"
msgid "_Base point:"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:148
+#: cui/uiconfig/ui/possizetabpage.ui:182
#, fuzzy
msgctxt "possizetabpage|label1"
msgid "Position"
msgstr "स्थिति"
-#: cui/uiconfig/ui/possizetabpage.ui:190
+#: cui/uiconfig/ui/possizetabpage.ui:224
#, fuzzy
msgctxt "possizetabpage|FT_WIDTH"
msgid "Wi_dth:"
msgstr "चओड़ाइ"
-#: cui/uiconfig/ui/possizetabpage.ui:206
+#: cui/uiconfig/ui/possizetabpage.ui:238
#, fuzzy
msgctxt "possizetabpage|FT_HEIGHT"
msgid "H_eight:"
msgstr "उँचाइ"
-#: cui/uiconfig/ui/possizetabpage.ui:247
+#: cui/uiconfig/ui/possizetabpage.ui:276
msgctxt "possizetabpage|CBX_SCALE"
msgid "_Keep ratio"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:279
+#: cui/uiconfig/ui/possizetabpage.ui:307
msgctxt "possizetabpage|FT_SIZEREFERENCE"
msgid "Base _point:"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:317
+#: cui/uiconfig/ui/possizetabpage.ui:361
msgctxt "possizetabpage|label2"
msgid "Size"
msgstr "आकार"
-#: cui/uiconfig/ui/possizetabpage.ui:356
+#: cui/uiconfig/ui/possizetabpage.ui:401
#, fuzzy
msgctxt "possizetabpage|TSB_POSPROTECT"
msgid "Positio_n"
msgstr "स्थिति"
-#: cui/uiconfig/ui/possizetabpage.ui:373
+#: cui/uiconfig/ui/possizetabpage.ui:418
#, fuzzy
msgctxt "possizetabpage|TSB_SIZEPROTECT"
msgid "_Size"
msgstr "आकार"
-#: cui/uiconfig/ui/possizetabpage.ui:397
+#: cui/uiconfig/ui/possizetabpage.ui:441
#, fuzzy
msgctxt "possizetabpage|label3"
msgid "Protect"
msgstr "रक्षा करू (~P)"
-#: cui/uiconfig/ui/possizetabpage.ui:430
+#: cui/uiconfig/ui/possizetabpage.ui:475
msgctxt "possizetabpage|TSB_AUTOGROW_WIDTH"
msgid "_Fit width to text"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:447
+#: cui/uiconfig/ui/possizetabpage.ui:492
msgctxt "possizetabpage|TSB_AUTOGROW_HEIGHT"
msgid "Fit _height to text"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:471
+#: cui/uiconfig/ui/possizetabpage.ui:515
msgctxt "possizetabpage|label4"
msgid "Adapt"
msgstr ""
@@ -10725,50 +10725,50 @@ msgctxt "recordnumberdialog|label2"
msgid "go to record"
msgstr ""
-#: cui/uiconfig/ui/rotationtabpage.ui:52
+#: cui/uiconfig/ui/rotationtabpage.ui:56
#, fuzzy
msgctxt "rotationtabpage|FT_POS_X"
msgid "Position _X:"
msgstr "स्थिति"
-#: cui/uiconfig/ui/rotationtabpage.ui:66
+#: cui/uiconfig/ui/rotationtabpage.ui:70
#, fuzzy
msgctxt "rotationtabpage|FT_POS_Y"
msgid "Position _Y:"
msgstr "स्थिति"
-#: cui/uiconfig/ui/rotationtabpage.ui:116
+#: cui/uiconfig/ui/rotationtabpage.ui:123
msgctxt "rotationtabpage|FT_POSPRESETS"
msgid "_Default settings:"
msgstr ""
-#: cui/uiconfig/ui/rotationtabpage.ui:130
+#: cui/uiconfig/ui/rotationtabpage.ui:151
msgctxt "rotationtabpage|CTL_RECT|tooltip_text"
msgid "Rotation point"
msgstr ""
-#: cui/uiconfig/ui/rotationtabpage.ui:155
+#: cui/uiconfig/ui/rotationtabpage.ui:178
msgctxt "rotationtabpage|label1"
msgid "Pivot Point"
msgstr ""
-#: cui/uiconfig/ui/rotationtabpage.ui:197
+#: cui/uiconfig/ui/rotationtabpage.ui:220
msgctxt "rotationtabpage|FT_ANGLE"
msgid "_Angle:"
msgstr ""
-#: cui/uiconfig/ui/rotationtabpage.ui:238
+#: cui/uiconfig/ui/rotationtabpage.ui:263
msgctxt "rotationtabpage|FT_ANGLEPRESETS"
msgid "Default _settings:"
msgstr ""
-#: cui/uiconfig/ui/rotationtabpage.ui:252
+#: cui/uiconfig/ui/rotationtabpage.ui:287
#, fuzzy
msgctxt "rotationtabpage|CTL_ANGLE|tooltip_text"
msgid "Rotation Angle"
msgstr "घुमाव कोण"
-#: cui/uiconfig/ui/rotationtabpage.ui:277
+#: cui/uiconfig/ui/rotationtabpage.ui:314
#, fuzzy
msgctxt "rotationtabpage|label2"
msgid "Rotation Angle"
@@ -11163,55 +11163,55 @@ msgctxt "similaritysearchdialog|relaxbox"
msgid "_Combine"
msgstr "मिलाबू (~i)"
-#: cui/uiconfig/ui/slantcornertabpage.ui:50
+#: cui/uiconfig/ui/slantcornertabpage.ui:70
msgctxt "slantcornertabpage|label5"
msgid "_X:"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:88
+#: cui/uiconfig/ui/slantcornertabpage.ui:110
msgctxt "slantcornertabpage|label6"
msgid "_Y:"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:125
+#: cui/uiconfig/ui/slantcornertabpage.ui:149
msgctxt "slantcornertabpage|label3"
msgid "Control Point 1"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:159
+#: cui/uiconfig/ui/slantcornertabpage.ui:183
#, fuzzy
msgctxt "slantcornertabpage|FT_RADIUS"
msgid "_Radius:"
msgstr "त्रिज्या"
-#: cui/uiconfig/ui/slantcornertabpage.ui:189
+#: cui/uiconfig/ui/slantcornertabpage.ui:214
#, fuzzy
msgctxt "slantcornertabpage|label1"
msgid "Corner Radius"
msgstr "कोणीय त्रिज्या"
-#: cui/uiconfig/ui/slantcornertabpage.ui:223
+#: cui/uiconfig/ui/slantcornertabpage.ui:248
msgctxt "slantcornertabpage|FT_ANGLE"
msgid "_Angle:"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:253
+#: cui/uiconfig/ui/slantcornertabpage.ui:279
#, fuzzy
msgctxt "slantcornertabpage|label2"
msgid "Slant"
msgstr "तिरछा"
-#: cui/uiconfig/ui/slantcornertabpage.ui:294
+#: cui/uiconfig/ui/slantcornertabpage.ui:320
msgctxt "slantcornertabpage|label4"
msgid "_X:"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:332
+#: cui/uiconfig/ui/slantcornertabpage.ui:360
msgctxt "slantcornertabpage|label7"
msgid "_Y:"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:369
+#: cui/uiconfig/ui/slantcornertabpage.ui:399
msgctxt "slantcornertabpage|label8"
msgid "Control Point 2"
msgstr ""
@@ -11511,124 +11511,124 @@ msgctxt "storedwebconnectiondialog|change"
msgid "_Change Password..."
msgstr "कूटशब्द बदलू (~P)..."
-#: cui/uiconfig/ui/swpossizepage.ui:74
+#: cui/uiconfig/ui/swpossizepage.ui:85
#, fuzzy
msgctxt "swpossizepage|widthft"
msgid "_Width:"
msgstr "चओड़ाइ"
-#: cui/uiconfig/ui/swpossizepage.ui:111
+#: cui/uiconfig/ui/swpossizepage.ui:123
#, fuzzy
msgctxt "swpossizepage|heightft"
msgid "H_eight:"
msgstr "उँचाइ"
-#: cui/uiconfig/ui/swpossizepage.ui:128
+#: cui/uiconfig/ui/swpossizepage.ui:141
msgctxt "swpossizepage|ratio"
msgid "_Keep ratio"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:149
+#: cui/uiconfig/ui/swpossizepage.ui:162
msgctxt "swpossizepage|label2"
msgid "Size"
msgstr "आकार"
-#: cui/uiconfig/ui/swpossizepage.ui:205
+#: cui/uiconfig/ui/swpossizepage.ui:218
#, fuzzy
msgctxt "swpossizepage|topage"
msgid "To _page"
msgstr "पृष्ठमे"
-#: cui/uiconfig/ui/swpossizepage.ui:222
+#: cui/uiconfig/ui/swpossizepage.ui:234
#, fuzzy
msgctxt "swpossizepage|topara"
msgid "To paragrap_h"
msgstr "अनुच्छेद"
-#: cui/uiconfig/ui/swpossizepage.ui:238
+#: cui/uiconfig/ui/swpossizepage.ui:250
#, fuzzy
msgctxt "swpossizepage|tochar"
msgid "To cha_racter"
msgstr "संप्रतीकमे"
-#: cui/uiconfig/ui/swpossizepage.ui:254
+#: cui/uiconfig/ui/swpossizepage.ui:266
#, fuzzy
msgctxt "swpossizepage|aschar"
msgid "_As character"
msgstr "संप्रतीक जहिना"
-#: cui/uiconfig/ui/swpossizepage.ui:270
+#: cui/uiconfig/ui/swpossizepage.ui:282
#, fuzzy
msgctxt "swpossizepage|toframe"
msgid "To _frame"
msgstr "फ्रेम"
-#: cui/uiconfig/ui/swpossizepage.ui:292
+#: cui/uiconfig/ui/swpossizepage.ui:304
msgctxt "swpossizepage|label1"
msgid "Anchor"
msgstr "ऐन्कर"
-#: cui/uiconfig/ui/swpossizepage.ui:333
+#: cui/uiconfig/ui/swpossizepage.ui:344
#, fuzzy
msgctxt "swpossizepage|horiposft"
msgid "Hori_zontal:"
msgstr "क्षैतिज"
-#: cui/uiconfig/ui/swpossizepage.ui:347
+#: cui/uiconfig/ui/swpossizepage.ui:358
msgctxt "swpossizepage|horibyft"
msgid "b_y:"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:361
+#: cui/uiconfig/ui/swpossizepage.ui:372
msgctxt "swpossizepage|vertbyft"
msgid "_by:"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:375
+#: cui/uiconfig/ui/swpossizepage.ui:386
msgctxt "swpossizepage|horitoft"
msgid "_to:"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:421
+#: cui/uiconfig/ui/swpossizepage.ui:433
#, fuzzy
msgctxt "swpossizepage|vertposft"
msgid "_Vertical:"
msgstr "लम्बवत"
-#: cui/uiconfig/ui/swpossizepage.ui:457
+#: cui/uiconfig/ui/swpossizepage.ui:470
msgctxt "swpossizepage|verttoft"
msgid "t_o:"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:478
+#: cui/uiconfig/ui/swpossizepage.ui:492
msgctxt "swpossizepage|mirror"
msgid "_Mirror on even pages"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:495
+#: cui/uiconfig/ui/swpossizepage.ui:509
msgctxt "swpossizepage|followtextflow"
msgid "Follow te_xt flow"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:518
+#: cui/uiconfig/ui/swpossizepage.ui:532
#, fuzzy
msgctxt "swpossizepage|label11"
msgid "Position"
msgstr "स्थिति"
-#: cui/uiconfig/ui/swpossizepage.ui:549
+#: cui/uiconfig/ui/swpossizepage.ui:563
#, fuzzy
msgctxt "swpossizepage|pos"
msgid "Positio_n"
msgstr "स्थिति"
-#: cui/uiconfig/ui/swpossizepage.ui:565
+#: cui/uiconfig/ui/swpossizepage.ui:579
#, fuzzy
msgctxt "swpossizepage|size"
msgid "_Size"
msgstr "आकार"
-#: cui/uiconfig/ui/swpossizepage.ui:587
+#: cui/uiconfig/ui/swpossizepage.ui:601
#, fuzzy
msgctxt "swpossizepage|label3"
msgid "Protect"
@@ -11831,13 +11831,13 @@ msgctxt "textattrtabpage|label2"
msgid "Spacing to Borders"
msgstr ""
-#: cui/uiconfig/ui/textattrtabpage.ui:425
+#: cui/uiconfig/ui/textattrtabpage.ui:423
#, fuzzy
msgctxt "textattrtabpage|TSB_FULL_WIDTH"
msgid "Full _width"
msgstr "पूरा-चओड़ाइ"
-#: cui/uiconfig/ui/textattrtabpage.ui:448
+#: cui/uiconfig/ui/textattrtabpage.ui:446
msgctxt "textattrtabpage|label3"
msgid "Text Anchor"
msgstr ""
diff --git a/source/mai/filter/source/config/fragments/filters.po b/source/mai/filter/source/config/fragments/filters.po
index 98b1f8e708f..07c88f40016 100644
--- a/source/mai/filter/source/config/fragments/filters.po
+++ b/source/mai/filter/source/config/fragments/filters.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-16 16:54+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2016-03-11 09:20+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -465,8 +465,8 @@ msgctxt ""
"MS Word 2003 XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Word 2003 XML"
-msgstr "Microsoft वर्ड 2003 XML"
+msgid "Word 2003 XML"
+msgstr ""
#: MS_Word_2007_XML.xcu
msgctxt ""
@@ -1290,7 +1290,7 @@ msgctxt ""
"Calc MS Excel 2007 VBA XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Excel 2007-2016 XML (macro enabled)"
+msgid "Excel 2007–2019 (macro-enabled)"
msgstr ""
#: calc_MS_Excel_2007_XML.xcu
diff --git a/source/mai/filter/source/config/fragments/types.po b/source/mai/filter/source/config/fragments/types.po
index 1d9fbcb0771..bbacbd48dd1 100644
--- a/source/mai/filter/source/config/fragments/types.po
+++ b/source/mai/filter/source/config/fragments/types.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-08 15:11+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2015-11-11 21:49+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -295,8 +295,8 @@ msgctxt ""
"writer_MS_Word_2003_XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Word 2003 XML"
-msgstr "Microsoft वर्ड 2003 XML"
+msgid "Word 2003 XML"
+msgstr ""
#: writer_MS_Word_2007_XML.xcu
msgctxt ""
diff --git a/source/mai/fpicker/messages.po b/source/mai/fpicker/messages.po
index c62fec9b796..b16f550af52 100644
--- a/source/mai/fpicker/messages.po
+++ b/source/mai/fpicker/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+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"
@@ -276,14 +276,13 @@ msgstr ""
#: fpicker/uiconfig/ui/foldernamedialog.ui:8
msgctxt "foldernamedialog|FolderNameDialog"
-msgid "Folder Name ?"
+msgid "Folder Name"
msgstr ""
#: fpicker/uiconfig/ui/foldernamedialog.ui:91
-#, fuzzy
msgctxt "foldernamedialog|label2"
-msgid "Na_me"
-msgstr "नाम"
+msgid "Na_me:"
+msgstr ""
#: fpicker/uiconfig/ui/foldernamedialog.ui:122
#, fuzzy
diff --git a/source/mai/officecfg/registry/data/org/openoffice/Office/UI.po b/source/mai/officecfg/registry/data/org/openoffice/Office/UI.po
index 57ea318f3bb..7a5ea7d651d 100644
--- a/source/mai/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/mai/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-22 13:17+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2016-07-05 02:45+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -26995,8 +26995,8 @@ msgctxt ""
"..WriterCommands.UserInterface.Commands..uno:TextAttributes\n"
"Label\n"
"value.text"
-msgid "Text Attributes"
-msgstr "पाठ गुण"
+msgid "Text Attributes..."
+msgstr ""
#: WriterCommands.xcu
msgctxt ""
diff --git a/source/mai/readlicense_oo/docs.po b/source/mai/readlicense_oo/docs.po
index c236d40f03e..8828368a6d3 100644
--- a/source/mai/readlicense_oo/docs.po
+++ b/source/mai/readlicense_oo/docs.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-04-17 15:54+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2016-03-11 12:45+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -116,7 +116,7 @@ msgctxt ""
"readme.xrm\n"
"macxiOSX\n"
"readmeitem.text"
-msgid "MacOSX 10.8 (Mountain Lion) or higher"
+msgid "MacOSX 10.9 (Mavericks) or higher"
msgstr ""
#: readme.xrm
diff --git a/source/mai/sc/messages.po b/source/mai/sc/messages.po
index c5070582716..7b5adecdf09 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-12 14:40+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"
@@ -1883,16 +1883,21 @@ msgid "Nested arrays are not supported."
msgstr ""
#: sc/inc/globstr.hrc:390
+msgctxt "STR_ERR_LONG_BAD_ARRAY_CONTENT"
+msgid "Unsupported inline array content."
+msgstr ""
+
+#: sc/inc/globstr.hrc:391
msgctxt "STR_UNDO_TEXTTOCOLUMNS"
msgid "Text to Columns"
msgstr ""
-#: sc/inc/globstr.hrc:391
+#: sc/inc/globstr.hrc:392
msgctxt "STR_DOC_UPDATED"
msgid "Your spreadsheet has been updated with changes saved by other users."
msgstr ""
-#: sc/inc/globstr.hrc:392
+#: sc/inc/globstr.hrc:393
msgctxt "STR_DOC_WILLBESAVED"
msgid ""
"The spreadsheet must be saved now to activate sharing mode.\n"
@@ -1900,7 +1905,7 @@ msgid ""
"Do you want to continue?"
msgstr ""
-#: sc/inc/globstr.hrc:393
+#: sc/inc/globstr.hrc:394
msgctxt "STR_DOC_WILLNOTBESAVED"
msgid ""
"Already resolved merge conflicts will be lost and your changes to the shared spreadsheet will not be saved.\n"
@@ -1908,7 +1913,7 @@ msgid ""
"Do you want to continue?"
msgstr ""
-#: sc/inc/globstr.hrc:394
+#: sc/inc/globstr.hrc:395
msgctxt "STR_DOC_DISABLESHARED"
msgid ""
"Disabling shared mode of a spreadsheet hinders all other users of the shared spreadsheet to merge back their work.\n"
@@ -1916,7 +1921,7 @@ msgid ""
"Do you want to continue?"
msgstr ""
-#: sc/inc/globstr.hrc:395
+#: sc/inc/globstr.hrc:396
msgctxt "STR_DOC_NOLONGERSHARED"
msgid ""
"This spreadsheet is no longer in shared mode.\n"
@@ -1924,7 +1929,7 @@ msgid ""
"Save your spreadsheet to a separate file and merge your changes to the shared spreadsheet manually."
msgstr ""
-#: sc/inc/globstr.hrc:396
+#: sc/inc/globstr.hrc:397
msgctxt "STR_FILE_LOCKED_TRY_LATER"
msgid ""
"The shared spreadsheet file is locked due to a merge in progress by user: '%1'\n"
@@ -1932,7 +1937,7 @@ msgid ""
"Sharing mode of a locked file cannot be disabled. Try again later."
msgstr ""
-#: sc/inc/globstr.hrc:397
+#: sc/inc/globstr.hrc:398
msgctxt "STR_FILE_LOCKED_SAVE_LATER"
msgid ""
"The shared spreadsheet file is locked due to a merge in progress by user: '%1'\n"
@@ -1940,152 +1945,152 @@ msgid ""
"Try again later to save your changes."
msgstr ""
-#: sc/inc/globstr.hrc:398
+#: sc/inc/globstr.hrc:399
msgctxt "STR_UNKNOWN_USER"
msgid "Unknown User"
msgstr ""
-#: sc/inc/globstr.hrc:399
+#: sc/inc/globstr.hrc:400
msgctxt "STR_SHAPE_AUTOSHAPE"
msgid "AutoShape"
msgstr ""
-#: sc/inc/globstr.hrc:400
+#: sc/inc/globstr.hrc:401
msgctxt "STR_SHAPE_RECTANGLE"
msgid "Rectangle"
msgstr "आयत"
-#: sc/inc/globstr.hrc:401
+#: sc/inc/globstr.hrc:402
msgctxt "STR_SHAPE_LINE"
msgid "Line"
msgstr "रेखा"
-#: sc/inc/globstr.hrc:402
+#: sc/inc/globstr.hrc:403
msgctxt "STR_SHAPE_OVAL"
msgid "Oval"
msgstr "अंडाकार"
-#: sc/inc/globstr.hrc:403
+#: sc/inc/globstr.hrc:404
msgctxt "STR_FORM_BUTTON"
msgid "Button"
msgstr "बटन"
-#: sc/inc/globstr.hrc:404
+#: sc/inc/globstr.hrc:405
msgctxt "STR_FORM_CHECKBOX"
msgid "Check Box"
msgstr "जाँच बाक्स"
-#: sc/inc/globstr.hrc:405
+#: sc/inc/globstr.hrc:406
msgctxt "STR_FORM_OPTIONBUTTON"
msgid "Option Button"
msgstr "विकल्प बटन"
-#: sc/inc/globstr.hrc:406
+#: sc/inc/globstr.hrc:407
msgctxt "STR_FORM_LABEL"
msgid "Label"
msgstr "लेबल"
-#: sc/inc/globstr.hrc:407
+#: sc/inc/globstr.hrc:408
msgctxt "STR_FORM_LISTBOX"
msgid "List Box"
msgstr "सूची बाक्स"
-#: sc/inc/globstr.hrc:408
+#: sc/inc/globstr.hrc:409
msgctxt "STR_FORM_GROUPBOX"
msgid "Group Box"
msgstr "समूह बाक्स"
-#: sc/inc/globstr.hrc:409
+#: sc/inc/globstr.hrc:410
#, fuzzy
msgctxt "STR_FORM_DROPDOWN"
msgid "Drop Down"
msgstr "नीच्चाँ गिराबू"
-#: sc/inc/globstr.hrc:410
+#: sc/inc/globstr.hrc:411
msgctxt "STR_FORM_SPINNER"
msgid "Spinner"
msgstr ""
-#: sc/inc/globstr.hrc:411
+#: sc/inc/globstr.hrc:412
msgctxt "STR_FORM_SCROLLBAR"
msgid "Scroll Bar"
msgstr "स्क्राल पट्टी"
-#: sc/inc/globstr.hrc:412
+#: sc/inc/globstr.hrc:413
msgctxt "STR_STYLE_FAMILY_CELL"
msgid "Cell Styles"
msgstr "सेल शैलीसभ"
-#: sc/inc/globstr.hrc:413
+#: sc/inc/globstr.hrc:414
#, fuzzy
msgctxt "STR_STYLE_FAMILY_PAGE"
msgid "Page Styles"
msgstr "पृष्ठ शैली"
-#: sc/inc/globstr.hrc:414
+#: sc/inc/globstr.hrc:415
#, fuzzy
msgctxt "STR_ERR_DATAPILOTSOURCE"
msgid "Pivot table source data is invalid."
msgstr "देल गेल धारा अमान्य अछि."
-#: sc/inc/globstr.hrc:415
+#: sc/inc/globstr.hrc:416
msgctxt "STR_OPTIONS_WARN_SEPARATORS"
msgid "Because the current formula separator settings conflict with the locale, the formula separators have been reset to their default values."
msgstr ""
-#: sc/inc/globstr.hrc:416
+#: sc/inc/globstr.hrc:417
msgctxt "STR_UNDO_INSERT_CURRENT_DATE"
msgid "Insert Current Date"
msgstr ""
-#: sc/inc/globstr.hrc:417
+#: sc/inc/globstr.hrc:418
msgctxt "STR_UNDO_INSERT_CURRENT_TIME"
msgid "Insert Current Time"
msgstr ""
-#: sc/inc/globstr.hrc:418
+#: sc/inc/globstr.hrc:419
#, fuzzy
msgctxt "STR_MANAGE_NAMES"
msgid "Manage Names..."
msgstr "फैलावक नाम"
-#: sc/inc/globstr.hrc:419
+#: sc/inc/globstr.hrc:420
msgctxt "STR_HEADER_NAME"
msgid "Name"
msgstr "नाम"
-#: sc/inc/globstr.hrc:420
+#: sc/inc/globstr.hrc:421
msgctxt "STR_HEADER_RANGE_OR_EXPR"
msgid "Range or formula expression"
msgstr ""
-#: sc/inc/globstr.hrc:421
+#: sc/inc/globstr.hrc:422
msgctxt "STR_HEADER_SCOPE"
msgid "Scope"
msgstr ""
-#: sc/inc/globstr.hrc:422
+#: sc/inc/globstr.hrc:423
msgctxt "STR_MULTI_SELECT"
msgid "(multiple)"
msgstr ""
-#: sc/inc/globstr.hrc:423
+#: sc/inc/globstr.hrc:424
#, fuzzy
msgctxt "STR_GLOBAL_SCOPE"
msgid "Document (Global)"
msgstr "दस्तावेजक प्रकार"
-#: sc/inc/globstr.hrc:424
+#: sc/inc/globstr.hrc:425
msgctxt "STR_ERR_NAME_EXISTS"
msgid "Invalid name. Already in use for the selected scope."
msgstr ""
-#: sc/inc/globstr.hrc:425
+#: sc/inc/globstr.hrc:426
msgctxt "STR_ERR_NAME_INVALID"
msgid "Invalid name. Only use letters, numbers and underscore."
msgstr ""
-#: sc/inc/globstr.hrc:426
+#: sc/inc/globstr.hrc:427
msgctxt "STR_UNSAVED_EXT_REF"
msgid ""
"This Document contains external references to unsaved documents.\n"
@@ -2093,226 +2098,226 @@ msgid ""
"Do you want to continue?"
msgstr ""
-#: sc/inc/globstr.hrc:427
+#: sc/inc/globstr.hrc:428
msgctxt "STR_CLOSE_WITH_UNSAVED_REFS"
msgid "This Document is referenced by another document and not yet saved. Closing it without saving will result in data loss."
msgstr ""
-#: sc/inc/globstr.hrc:428
+#: sc/inc/globstr.hrc:429
msgctxt "STR_HEADER_RANGE"
msgid "Range"
msgstr "परिसर"
-#: sc/inc/globstr.hrc:429
+#: sc/inc/globstr.hrc:430
msgctxt "STR_HEADER_COND"
msgid "First Condition"
msgstr ""
-#: sc/inc/globstr.hrc:430
+#: sc/inc/globstr.hrc:431
#, fuzzy
msgctxt "STR_COND_CONDITION"
msgid "Cell value is"
msgstr "कोशिका मान अछि"
-#: sc/inc/globstr.hrc:431
+#: sc/inc/globstr.hrc:432
msgctxt "STR_COND_COLORSCALE"
msgid "ColorScale"
msgstr ""
-#: sc/inc/globstr.hrc:432
+#: sc/inc/globstr.hrc:433
msgctxt "STR_COND_DATABAR"
msgid "DataBar"
msgstr ""
-#: sc/inc/globstr.hrc:433
+#: sc/inc/globstr.hrc:434
msgctxt "STR_COND_ICONSET"
msgid "IconSet"
msgstr ""
-#: sc/inc/globstr.hrc:434
+#: sc/inc/globstr.hrc:435
#, fuzzy
msgctxt "STR_COND_BETWEEN"
msgid "between"
msgstr "एकरा बीच"
-#: sc/inc/globstr.hrc:435
+#: sc/inc/globstr.hrc:436
#, fuzzy
msgctxt "STR_COND_NOTBETWEEN"
msgid "not between"
msgstr "नहि एकरा बीच"
-#: sc/inc/globstr.hrc:436
+#: sc/inc/globstr.hrc:437
msgctxt "STR_COND_UNIQUE"
msgid "unique"
msgstr ""
-#: sc/inc/globstr.hrc:437
+#: sc/inc/globstr.hrc:438
#, fuzzy
msgctxt "STR_COND_DUPLICATE"
msgid "duplicate"
msgstr "नकल"
-#: sc/inc/globstr.hrc:438
+#: sc/inc/globstr.hrc:439
#, fuzzy
msgctxt "STR_COND_FORMULA"
msgid "Formula is"
msgstr "सूत्र अछि"
-#: sc/inc/globstr.hrc:439
+#: sc/inc/globstr.hrc:440
msgctxt "STR_COND_TOP10"
msgid "Top Elements"
msgstr ""
-#: sc/inc/globstr.hrc:440
+#: sc/inc/globstr.hrc:441
msgctxt "STR_COND_BOTTOM10"
msgid "Bottom Elements"
msgstr ""
-#: sc/inc/globstr.hrc:441
+#: sc/inc/globstr.hrc:442
msgctxt "STR_COND_TOP_PERCENT"
msgid "Top Percent"
msgstr ""
-#: sc/inc/globstr.hrc:442
+#: sc/inc/globstr.hrc:443
msgctxt "STR_COND_DATE"
msgid "Date is"
msgstr ""
-#: sc/inc/globstr.hrc:443
+#: sc/inc/globstr.hrc:444
msgctxt "STR_COND_BOTTOM_PERCENT"
msgid "Bottom Percent"
msgstr ""
-#: sc/inc/globstr.hrc:444
+#: sc/inc/globstr.hrc:445
msgctxt "STR_COND_ABOVE_AVERAGE"
msgid "Above Average"
msgstr ""
-#: sc/inc/globstr.hrc:445
+#: sc/inc/globstr.hrc:446
msgctxt "STR_COND_BELOW_AVERAGE"
msgid "Below Average"
msgstr ""
-#: sc/inc/globstr.hrc:446
+#: sc/inc/globstr.hrc:447
msgctxt "STR_COND_ABOVE_EQUAL_AVERAGE"
msgid "Above or equal Average"
msgstr ""
-#: sc/inc/globstr.hrc:447
+#: sc/inc/globstr.hrc:448
msgctxt "STR_COND_BELOW_EQUAL_AVERAGE"
msgid "Below or equal Average"
msgstr ""
-#: sc/inc/globstr.hrc:448
+#: sc/inc/globstr.hrc:449
#, fuzzy
msgctxt "STR_COND_ERROR"
msgid "an Error code"
msgstr "त्रुटि कोड"
-#: sc/inc/globstr.hrc:449
+#: sc/inc/globstr.hrc:450
#, fuzzy
msgctxt "STR_COND_NOERROR"
msgid "not an Error code"
msgstr "त्रुटि कोड"
-#: sc/inc/globstr.hrc:450
+#: sc/inc/globstr.hrc:451
msgctxt "STR_COND_BEGINS_WITH"
msgid "Begins with"
msgstr ""
-#: sc/inc/globstr.hrc:451
+#: sc/inc/globstr.hrc:452
msgctxt "STR_COND_ENDS_WITH"
msgid "Ends with"
msgstr ""
-#: sc/inc/globstr.hrc:452
+#: sc/inc/globstr.hrc:453
#, fuzzy
msgctxt "STR_COND_CONTAINS"
msgid "Contains"
msgstr "समाहित करैछ"
-#: sc/inc/globstr.hrc:453
+#: sc/inc/globstr.hrc:454
msgctxt "STR_COND_NOT_CONTAINS"
msgid "Not Contains"
msgstr ""
-#: sc/inc/globstr.hrc:454
+#: sc/inc/globstr.hrc:455
#, fuzzy
msgctxt "STR_COND_TODAY"
msgid "today"
msgstr "आइ"
-#: sc/inc/globstr.hrc:455
+#: sc/inc/globstr.hrc:456
msgctxt "STR_COND_YESTERDAY"
msgid "yesterday"
msgstr ""
-#: sc/inc/globstr.hrc:456
+#: sc/inc/globstr.hrc:457
msgctxt "STR_COND_TOMORROW"
msgid "tomorrow"
msgstr ""
-#: sc/inc/globstr.hrc:457
+#: sc/inc/globstr.hrc:458
msgctxt "STR_COND_LAST7DAYS"
msgid "in the last 7 days"
msgstr ""
-#: sc/inc/globstr.hrc:458
+#: sc/inc/globstr.hrc:459
msgctxt "STR_COND_THISWEEK"
msgid "this week"
msgstr ""
-#: sc/inc/globstr.hrc:459
+#: sc/inc/globstr.hrc:460
msgctxt "STR_COND_LASTWEEK"
msgid "last week"
msgstr ""
-#: sc/inc/globstr.hrc:460
+#: sc/inc/globstr.hrc:461
msgctxt "STR_COND_NEXTWEEK"
msgid "next week"
msgstr ""
-#: sc/inc/globstr.hrc:461
+#: sc/inc/globstr.hrc:462
msgctxt "STR_COND_THISMONTH"
msgid "this month"
msgstr ""
-#: sc/inc/globstr.hrc:462
+#: sc/inc/globstr.hrc:463
msgctxt "STR_COND_LASTMONTH"
msgid "last month"
msgstr ""
-#: sc/inc/globstr.hrc:463
+#: sc/inc/globstr.hrc:464
msgctxt "STR_COND_NEXTMONTH"
msgid "next month"
msgstr ""
-#: sc/inc/globstr.hrc:464
+#: sc/inc/globstr.hrc:465
msgctxt "STR_COND_THISYEAR"
msgid "this year"
msgstr ""
-#: sc/inc/globstr.hrc:465
+#: sc/inc/globstr.hrc:466
msgctxt "STR_COND_LASTYEAR"
msgid "last year"
msgstr ""
-#: sc/inc/globstr.hrc:466
+#: sc/inc/globstr.hrc:467
msgctxt "STR_COND_NEXTYEAR"
msgid "next year"
msgstr ""
-#: sc/inc/globstr.hrc:467
+#: sc/inc/globstr.hrc:468
msgctxt "STR_COND_AND"
msgid "and"
msgstr "आओर"
-#: sc/inc/globstr.hrc:468
+#: sc/inc/globstr.hrc:469
msgctxt "STR_ERR_CONDFORMAT_PROTECTED"
msgid "Conditional Formats can not be created, deleted or changed in protected sheets."
msgstr ""
-#: sc/inc/globstr.hrc:469
+#: sc/inc/globstr.hrc:470
msgctxt "STR_EDIT_EXISTING_COND_FORMATS"
msgid ""
"The selected cell already contains conditional formatting. You can either edit the existing conditional format or you define a new overlapping conditional format.\n"
@@ -2320,7 +2325,7 @@ msgid ""
" Do you want to edit the existing conditional format?"
msgstr ""
-#: sc/inc/globstr.hrc:470
+#: sc/inc/globstr.hrc:471
msgctxt "STR_QUERY_FORMULA_RECALC_ONLOAD_ODS"
msgid ""
"This document was last saved by an application other than %PRODUCTNAME. Some formula cells may produce different results when recalculated.\n"
@@ -2328,7 +2333,7 @@ msgid ""
"Do you want to recalculate all formula cells in this document now?"
msgstr ""
-#: sc/inc/globstr.hrc:471
+#: sc/inc/globstr.hrc:472
msgctxt "STR_QUERY_FORMULA_RECALC_ONLOAD_XLS"
msgid ""
"This document was last saved by Excel. Some formula cells may produce different results when recalculated.\n"
@@ -2336,82 +2341,82 @@ msgid ""
"Do you want to recalculate all formula cells now?"
msgstr ""
-#: sc/inc/globstr.hrc:472
+#: sc/inc/globstr.hrc:473
msgctxt "STR_NO_INSERT_DELETE_OVER_PIVOT_TABLE"
msgid "You cannot insert or delete cells when the affected range intersects with pivot table."
msgstr ""
-#: sc/inc/globstr.hrc:473
+#: sc/inc/globstr.hrc:474
msgctxt "STR_DPFIELD_GROUP_BY_SECONDS"
msgid "Seconds"
msgstr "सेकेंड"
-#: sc/inc/globstr.hrc:474
+#: sc/inc/globstr.hrc:475
msgctxt "STR_DPFIELD_GROUP_BY_MINUTES"
msgid "Minutes"
msgstr "मिनट"
-#: sc/inc/globstr.hrc:475
+#: sc/inc/globstr.hrc:476
msgctxt "STR_DPFIELD_GROUP_BY_HOURS"
msgid "Hours"
msgstr "घंटा"
-#: sc/inc/globstr.hrc:476
+#: sc/inc/globstr.hrc:477
msgctxt "STR_DPFIELD_GROUP_BY_DAYS"
msgid "Days"
msgstr "दिनसभ"
-#: sc/inc/globstr.hrc:477
+#: sc/inc/globstr.hrc:478
msgctxt "STR_DPFIELD_GROUP_BY_MONTHS"
msgid "Months"
msgstr "महीनासभ"
-#: sc/inc/globstr.hrc:478
+#: sc/inc/globstr.hrc:479
msgctxt "STR_DPFIELD_GROUP_BY_QUARTERS"
msgid "Quarters"
msgstr ""
-#: sc/inc/globstr.hrc:479
+#: sc/inc/globstr.hrc:480
#, fuzzy
msgctxt "STR_DPFIELD_GROUP_BY_YEARS"
msgid "Years"
msgstr "वर्ष"
-#: sc/inc/globstr.hrc:480
+#: sc/inc/globstr.hrc:481
#, fuzzy
msgctxt "STR_INVALIDVAL"
msgid "Invalid target value."
msgstr "लक्ष्यक' मूल्य अमान्य अछि."
-#: sc/inc/globstr.hrc:481
+#: sc/inc/globstr.hrc:482
#, fuzzy
msgctxt "STR_INVALIDVAR"
msgid "Undefined name for variable cell."
msgstr "चर कोष्ठ क' लेल अपरिभाषित कएल गेल नाम."
-#: sc/inc/globstr.hrc:482
+#: sc/inc/globstr.hrc:483
#, fuzzy
msgctxt "STR_INVALIDFORM"
msgid "Undefined name as formula cell."
msgstr "सूत्र कोष्ठ क' लेल अपरिभाषित नाम."
-#: sc/inc/globstr.hrc:483
+#: sc/inc/globstr.hrc:484
msgctxt "STR_NOFORMULA"
msgid "Formula cell must contain a formula."
msgstr ""
-#: sc/inc/globstr.hrc:484
+#: sc/inc/globstr.hrc:485
#, fuzzy
msgctxt "STR_INVALIDINPUT"
msgid "Invalid input."
msgstr "अवैध अनुक्रमणिका."
-#: sc/inc/globstr.hrc:485
+#: sc/inc/globstr.hrc:486
msgctxt "STR_INVALIDCONDITION"
msgid "Invalid condition."
msgstr ""
-#: sc/inc/globstr.hrc:486
+#: sc/inc/globstr.hrc:487
msgctxt "STR_QUERYREMOVE"
msgid ""
"Should the entry\n"
@@ -2419,137 +2424,137 @@ msgid ""
"be deleted?"
msgstr ""
-#: sc/inc/globstr.hrc:487
+#: sc/inc/globstr.hrc:488
msgctxt "STR_COPYLIST"
msgid "Copy List"
msgstr ""
-#: sc/inc/globstr.hrc:488
+#: sc/inc/globstr.hrc:489
msgctxt "STR_COPYFROM"
msgid "List from"
msgstr ""
-#: sc/inc/globstr.hrc:489
+#: sc/inc/globstr.hrc:490
msgctxt "STR_COPYERR"
msgid "Cells without text have been ignored."
msgstr ""
-#: sc/inc/globstr.hrc:490
+#: sc/inc/globstr.hrc:491
#, c-format
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%s-click to follow hyperlink:"
msgstr ""
-#: sc/inc/globstr.hrc:491
+#: sc/inc/globstr.hrc:492
msgctxt "STR_CLICKHYPERLINK"
msgid "click to open hyperlink:"
msgstr ""
-#: sc/inc/globstr.hrc:492
+#: sc/inc/globstr.hrc:493
msgctxt "STR_PRINT_PREVIEW_NODATA"
msgid "No Data"
msgstr ""
-#: sc/inc/globstr.hrc:493
+#: sc/inc/globstr.hrc:494
msgctxt "STR_PRINT_PREVIEW_EMPTY_RANGE"
msgid "Print Range Empty"
msgstr ""
-#: sc/inc/globstr.hrc:494
+#: sc/inc/globstr.hrc:495
#, fuzzy
msgctxt "STR_UNDO_CONDFORMAT"
msgid "Conditional Format"
msgstr "सशर्त प्रारूप"
-#: sc/inc/globstr.hrc:495
+#: sc/inc/globstr.hrc:496
#, fuzzy
msgctxt "STR_UNDO_CONDFORMAT_LIST"
msgid "Conditional Formats"
msgstr "सशर्त प्रारूप"
-#: sc/inc/globstr.hrc:496
+#: sc/inc/globstr.hrc:497
msgctxt "STR_UNDO_FORMULA_TO_VALUE"
msgid "Convert Formula To Value"
msgstr ""
-#: sc/inc/globstr.hrc:497
+#: sc/inc/globstr.hrc:498
msgctxt "STR_UNQUOTED_STRING"
msgid "Strings without quotes are interpreted as column/row labels."
msgstr ""
-#: sc/inc/globstr.hrc:498
+#: sc/inc/globstr.hrc:499
msgctxt "STR_ENTER_VALUE"
msgid "Enter a value!"
msgstr ""
-#: sc/inc/globstr.hrc:499
+#: sc/inc/globstr.hrc:500
msgctxt "STR_TABLE_COUNT"
msgid "Sheet %1 of %2"
msgstr ""
-#: sc/inc/globstr.hrc:500
+#: sc/inc/globstr.hrc:501
msgctxt "STR_FUNCTIONS_FOUND"
msgid "%1 and %2 more"
msgstr ""
-#: sc/inc/globstr.hrc:501
+#: sc/inc/globstr.hrc:502
msgctxt "STR_GENERAL"
msgid "General"
msgstr "सामान्य"
-#: sc/inc/globstr.hrc:502
+#: sc/inc/globstr.hrc:503
#, fuzzy
msgctxt "STR_NUMBER"
msgid "Number"
msgstr "सँख्या"
-#: sc/inc/globstr.hrc:503
+#: sc/inc/globstr.hrc:504
msgctxt "STR_PERCENT"
msgid "Percent"
msgstr ""
-#: sc/inc/globstr.hrc:504
+#: sc/inc/globstr.hrc:505
msgctxt "STR_CURRENCY"
msgid "Currency"
msgstr "मुद्रा"
-#: sc/inc/globstr.hrc:505
+#: sc/inc/globstr.hrc:506
msgctxt "STR_DATE"
msgid "Date"
msgstr "दिनांक"
-#: sc/inc/globstr.hrc:506
+#: sc/inc/globstr.hrc:507
msgctxt "STR_TIME"
msgid "Time"
msgstr "समय"
-#: sc/inc/globstr.hrc:507
+#: sc/inc/globstr.hrc:508
msgctxt "STR_SCIENTIFIC"
msgid "Scientific"
msgstr ""
-#: sc/inc/globstr.hrc:508
+#: sc/inc/globstr.hrc:509
#, fuzzy
msgctxt "STR_FRACTION"
msgid "Fraction"
msgstr "प्रकार्य"
-#: sc/inc/globstr.hrc:509
+#: sc/inc/globstr.hrc:510
msgctxt "STR_BOOLEAN_VALUE"
msgid "Boolean Value"
msgstr ""
-#: sc/inc/globstr.hrc:510
+#: sc/inc/globstr.hrc:511
msgctxt "STR_TEXT"
msgid "Text"
msgstr "पाठ"
-#: sc/inc/globstr.hrc:511
+#: sc/inc/globstr.hrc:512
msgctxt "STR_QUERY_PIVOTTABLE_DELTAB"
msgid "The selected sheet(s) contain source data of related pivot tables that will be lost. Are you sure you want to delete the selected sheet(s)?"
msgstr ""
-#: sc/inc/globstr.hrc:512
+#: sc/inc/globstr.hrc:513
msgctxt "STR_ERR_NAME_INVALID_CELL_REF"
msgid "Invalid name. Reference to a cell, or a range of cells not allowed."
msgstr ""
@@ -10787,8 +10792,8 @@ msgstr "मोड"
#: sc/inc/scfuncs.hrc:3010
msgctxt "SC_OPCODE_T_TEST"
-msgid "Mode specifies the number of distribution tails to return. 1= one-tailed, 2 = two-tailed distribution"
-msgstr "प्रकार वापस कएल जाएबला वितरण टइलसक संख्याकेँ निर्दिष्ट करैत अछि. 1= असगर-टइल कएल गेल , 2 = दुइ-टइल कएल गेल वितरण"
+msgid "Mode specifies the number of distribution tails to return. 1 = one-tailed, 2 = two-tailed distribution"
+msgstr ""
#: sc/inc/scfuncs.hrc:3011
msgctxt "SC_OPCODE_T_TEST"
@@ -10834,8 +10839,8 @@ msgstr "मोड"
#: sc/inc/scfuncs.hrc:3024
msgctxt "SC_OPCODE_T_TEST_MS"
-msgid "Mode specifies the number of distribution tails to return. 1= one-tailed, 2 = two-tailed distribution"
-msgstr "प्रकार वापस कएल जाएबला वितरण टइलसक संख्याकेँ निर्दिष्ट करैत अछि. 1= असगर-टइल कएल गेल , 2 = दुइ-टइल कएल गेल वितरण"
+msgid "Mode specifies the number of distribution tails to return. 1 = one-tailed, 2 = two-tailed distribution"
+msgstr ""
#: sc/inc/scfuncs.hrc:3025
msgctxt "SC_OPCODE_T_TEST_MS"
@@ -18675,22 +18680,22 @@ msgctxt "mergecellsdialog|MergeCellsDialog"
msgid "Merge Cells"
msgstr "कोष्ठसभकेँ मिलाबू"
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:81
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:84
msgctxt "mergecellsdialog|label"
msgid "Some cells are not empty."
msgstr ""
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:96
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:99
msgctxt "mergecellsdialog|move-cells-radio"
msgid "Move the contents of the hidden cells into the first cell"
msgstr ""
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:112
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:115
msgctxt "mergecellsdialog|empty-cells-radio"
msgid "Empty the contents of the hidden cells"
msgstr ""
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:128
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:131
msgctxt "mergecellsdialog|keep-content-radio"
msgid "Keep the contents of the hidden cells"
msgstr ""
diff --git a/source/mai/sd/messages.po b/source/mai/sd/messages.po
index 7710592002b..a835fcd533e 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+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"
@@ -13,174 +13,174 @@ msgstr ""
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-#: sd/inc/DocumentRenderer.hrc:29
+#: sd/inc/DocumentRenderer.hrc:27
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Slides"
msgstr "स्लाइड"
-#: sd/inc/DocumentRenderer.hrc:30
+#: sd/inc/DocumentRenderer.hrc:28
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Handouts"
msgstr "हैंडआउटसभ"
-#: sd/inc/DocumentRenderer.hrc:31
+#: sd/inc/DocumentRenderer.hrc:29
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Notes"
msgstr "टिप्पणी"
-#: sd/inc/DocumentRenderer.hrc:32
+#: sd/inc/DocumentRenderer.hrc:30
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Outline"
msgstr "बाहरी रूपरेखा"
-#: sd/inc/DocumentRenderer.hrc:37
+#: sd/inc/DocumentRenderer.hrc:35
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "According to layout"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:38
+#: sd/inc/DocumentRenderer.hrc:36
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "1"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:39
+#: sd/inc/DocumentRenderer.hrc:37
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "2"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:40
+#: sd/inc/DocumentRenderer.hrc:38
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "3"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:41
+#: sd/inc/DocumentRenderer.hrc:39
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "4"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:42
+#: sd/inc/DocumentRenderer.hrc:40
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "6"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:43
+#: sd/inc/DocumentRenderer.hrc:41
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "9"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:48
+#: sd/inc/DocumentRenderer.hrc:46
msgctxt "STR_IMPRESS_PRINT_UI_ORDER_CHOICES"
msgid "Left to right, then down"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:49
+#: sd/inc/DocumentRenderer.hrc:47
msgctxt "STR_IMPRESS_PRINT_UI_ORDER_CHOICES"
msgid "Top to bottom, then right"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:54
+#: sd/inc/DocumentRenderer.hrc:52
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Original colors"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:55
+#: sd/inc/DocumentRenderer.hrc:53
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Grayscale"
msgstr "ग्रेस्केल"
-#: sd/inc/DocumentRenderer.hrc:56
+#: sd/inc/DocumentRenderer.hrc:54
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Black & white"
msgstr "करिया आओर उज्जर (~w)"
-#: sd/inc/DocumentRenderer.hrc:61
+#: sd/inc/DocumentRenderer.hrc:59
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Original size"
msgstr "मूल आकार (~r)"
-#: sd/inc/DocumentRenderer.hrc:62
+#: sd/inc/DocumentRenderer.hrc:60
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Fit to printable page"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:63
+#: sd/inc/DocumentRenderer.hrc:61
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Distribute on multiple sheets of paper"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:64
+#: sd/inc/DocumentRenderer.hrc:62
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Tile sheet of paper with repeated slides"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:69
+#: sd/inc/DocumentRenderer.hrc:67
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Original size"
msgstr "मूल आकार (~r)"
-#: sd/inc/DocumentRenderer.hrc:70
+#: sd/inc/DocumentRenderer.hrc:68
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Fit to printable page"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:71
+#: sd/inc/DocumentRenderer.hrc:69
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Distribute on multiple sheets of paper"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:72
+#: sd/inc/DocumentRenderer.hrc:70
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Tile sheet of paper with repeated pages"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:77
+#: sd/inc/DocumentRenderer.hrc:75
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "All pages"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:78
+#: sd/inc/DocumentRenderer.hrc:76
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "Front sides / right pages"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:79
+#: sd/inc/DocumentRenderer.hrc:77
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "Back sides / left pages"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:84
+#: sd/inc/DocumentRenderer.hrc:82
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~All slides"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:85
+#: sd/inc/DocumentRenderer.hrc:83
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~Slides"
msgstr "स्लाइड"
-#: sd/inc/DocumentRenderer.hrc:86
+#: sd/inc/DocumentRenderer.hrc:84
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Se~lection"
msgstr "चुनाव"
-#: sd/inc/DocumentRenderer.hrc:91
+#: sd/inc/DocumentRenderer.hrc:89
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~All pages"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:92
+#: sd/inc/DocumentRenderer.hrc:90
#, fuzzy
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Pa~ges"
msgstr "पृष्ठसभ"
-#: sd/inc/DocumentRenderer.hrc:93
+#: sd/inc/DocumentRenderer.hrc:91
#, fuzzy
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Se~lection"
diff --git a/source/mai/svx/messages.po b/source/mai/svx/messages.po
index c515ca74141..6bb0b228612 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: 2018-05-16 16:53+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+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"
@@ -5523,7 +5523,7 @@ msgstr ""
#: svx/uiconfig/ui/safemodedialog.ui:432
msgctxt "safemodedialog|btn_create_zip"
-msgid "Create Zip Archive from User Profile"
+msgid "Archive User Profile"
msgstr ""
#: svx/uiconfig/ui/safemodedialog.ui:445
@@ -9203,9 +9203,9 @@ msgid "Red"
msgstr "लाल"
#: include/svx/strings.hrc:565
-msgctxt "RID_SVXSTR_COLOR_VIOLET"
-msgid "Violet"
-msgstr "बैंगनी"
+msgctxt "RID_SVXSTR_COLOR_MAGENTA"
+msgid "Magenta"
+msgstr "मैजेन्टा"
#: include/svx/strings.hrc:566
msgctxt "RID_SVXSTR_COLOR_PURPLE"
@@ -9270,8 +9270,8 @@ msgid "Light Red"
msgstr ""
#: include/svx/strings.hrc:579
-msgctxt "RID_SVXSTR_COLOR_LIGHTVIOLET"
-msgid "Light Violet"
+msgctxt "RID_SVXSTR_COLOR_LIGHTMAGENTA"
+msgid "Light Magenta"
msgstr ""
#: include/svx/strings.hrc:580
@@ -9338,8 +9338,8 @@ msgid "Dark Red"
msgstr "गहिर लाल"
#: include/svx/strings.hrc:593
-msgctxt "RID_SVXSTR_COLOR_DARKVIOLET1"
-msgid "Dark Violet"
+msgctxt "RID_SVXSTR_COLOR_DARKMAGENTA"
+msgid "Dark Magenta"
msgstr ""
#: include/svx/strings.hrc:594
@@ -9374,55 +9374,55 @@ msgstr ""
#. Elements of the Tonal color palette
#: include/svx/strings.hrc:601
+msgctxt "RID_SVXSTR_COLOR_VIOLET"
+msgid "Violet"
+msgstr "बैंगनी"
+
+#: include/svx/strings.hrc:602
msgctxt "RID_SVXSTR_COLOR_VIOLET_OUG"
msgid "Violet (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:602
+#: include/svx/strings.hrc:603
msgctxt "RID_SVXSTR_COLOR_BLUE_OUG"
msgid "Blue (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:603
+#: include/svx/strings.hrc:604
msgctxt "RID_SVXSTR_COLOR_AZURE_OUG"
msgid "Azure (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:604
+#: include/svx/strings.hrc:605
msgctxt "RID_SVXSTR_COLOR_SPRINGGREEN_OUG"
msgid "Spring Green (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:605
+#: include/svx/strings.hrc:606
msgctxt "RID_SVXSTR_COLOR_GREEN_OUG"
msgid "Green (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:606
+#: include/svx/strings.hrc:607
msgctxt "RID_SVXSTR_COLOR_CHARTREUSEGREEN_OUG"
msgid "Chartreuse Green (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:607
+#: include/svx/strings.hrc:608
msgctxt "RID_SVXSTR_COLOR_ORANGE_OUG"
msgid "Orange (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:608
+#: include/svx/strings.hrc:609
msgctxt "RID_SVXSTR_COLOR_RED_OUG"
msgid "Red (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:609
+#: include/svx/strings.hrc:610
msgctxt "RID_SVXSTR_COLOR_ROSE_OUG"
msgid "Rose (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:610
-msgctxt "RID_SVXSTR_COLOR_MAGENTA"
-msgid "Magenta"
-msgstr "मैजेन्टा"
-
#: include/svx/strings.hrc:611
msgctxt "RID_SVXSTR_COLOR_AZURE"
msgid "Azure"
@@ -12629,12 +12629,12 @@ msgstr ""
#: include/svx/strings.hrc:1273
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_6"
-msgid "Check mark bullets"
+msgid "Cross mark bullets"
msgstr ""
#: include/svx/strings.hrc:1274
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_7"
-msgid "Tick mark bullets"
+msgid "Check mark bullets"
msgstr ""
#: include/svx/strings.hrc:1275
diff --git a/source/mai/sw/messages.po b/source/mai/sw/messages.po
index fb65129fa10..a1b10cdc989 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: 2018-05-22 13:17+0200\n"
+"POT-Creation-Date: 2018-06-12 14:41+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"
@@ -1236,13 +1236,13 @@ msgstr "उद्धरण"
#: sw/inc/strings.hrc:172
msgctxt "STR_POOLCOLL_TOX_ILLUSH"
-msgid "Illustration Index Heading"
-msgstr "दृष्टान्त अनुक्रमणिका शीर्षक"
+msgid "Figure Index Heading"
+msgstr ""
#: sw/inc/strings.hrc:173
msgctxt "STR_POOLCOLL_TOX_ILLUS1"
-msgid "Illustration Index 1"
-msgstr "दृष्टान्त अनुक्रमणिका 1"
+msgid "Figure Index 1"
+msgstr ""
#: sw/inc/strings.hrc:174
#, fuzzy
@@ -3741,10 +3741,9 @@ msgid "Table of Objects"
msgstr ""
#: sw/inc/strings.hrc:672
-#, fuzzy
msgctxt "STR_TOX_ILL"
-msgid "Illustration Index"
-msgstr "दृष्टान्त अनुक्रमणिका 1"
+msgid "Table of Figures"
+msgstr ""
#: sw/inc/strings.hrc:673
#, c-format
@@ -9778,81 +9777,81 @@ msgctxt "footnotepage|label5"
msgid "Continuation Notice"
msgstr "सातत्यक सूचना"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:49
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:55
#, fuzzy
msgctxt "footnotesendnotestabpage|ftnntnum"
msgid "_Restart numbering"
msgstr "क्रमांकण फिनु प्रारंभ करू"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:91
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:93
#, fuzzy
msgctxt "footnotesendnotestabpage|ftnoffset_label"
msgid "_Start at:"
msgstr "एतए आरँभ (~S)"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:112
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:111
msgctxt "footnotesendnotestabpage|ftnntnumfmt"
msgid "Custom _format"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:155
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:150
#, fuzzy
msgctxt "footnotesendnotestabpage|ftnsuffix_label"
msgid "Aft_er:"
msgstr "दहिन्ना"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:199
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:188
#, fuzzy
msgctxt "footnotesendnotestabpage|ftnprefix_label"
msgid "Be_fore:"
msgstr "पहिने"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:228
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:212
msgctxt "footnotesendnotestabpage|ftnntattextend"
msgid "Collec_t at end of text"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:252
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:234
#, fuzzy
msgctxt "footnotesendnotestabpage|label1"
msgid "Footnotes"
msgstr "पाद टिप्पणी"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:289
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:271
msgctxt "footnotesendnotestabpage|endntattextend"
msgid "C_ollect at end of section"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:315
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:295
#, fuzzy
msgctxt "footnotesendnotestabpage|endntnum"
msgid "_Restart numbering"
msgstr "क्रमांकण फिनु प्रारंभ करू"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:357
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:333
#, fuzzy
msgctxt "footnotesendnotestabpage|endoffset_label"
msgid "_Start at:"
msgstr "एतए आरँभ (~S)"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:378
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:351
msgctxt "footnotesendnotestabpage|endntnumfmt"
msgid "_Custom format"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:421
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:390
#, fuzzy
msgctxt "footnotesendnotestabpage|endsuffix_label"
msgid "Aft_er:"
msgstr "दहिन्ना"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:465
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:428
#, fuzzy
msgctxt "footnotesendnotestabpage|endprefix_label"
msgid "Be_fore:"
msgstr "पहिने"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:500
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:458
#, fuzzy
msgctxt "footnotesendnotestabpage|label2"
msgid "Endnotes"
@@ -9886,29 +9885,29 @@ msgctxt "formatsectiondialog|notes"
msgid "Footnotes/Endnotes"
msgstr "पाद टीका (~F)..."
-#: sw/uiconfig/swriter/ui/formattablepage.ui:63
+#: sw/uiconfig/swriter/ui/formattablepage.ui:77
#, fuzzy
msgctxt "formattablepage|nameft"
msgid "_Name"
msgstr "नाम"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:79
+#: sw/uiconfig/swriter/ui/formattablepage.ui:91
#, fuzzy
msgctxt "formattablepage|widthft"
msgid "W_idth"
msgstr "चओड़ाइ"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:110
+#: sw/uiconfig/swriter/ui/formattablepage.ui:120
msgctxt "formattablepage|relwidth"
msgid "Relati_ve"
msgstr ""
-#: sw/uiconfig/swriter/ui/formattablepage.ui:155
+#: sw/uiconfig/swriter/ui/formattablepage.ui:160
msgctxt "formattablepage|label45"
msgid "Properties"
msgstr "गुणसभ"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:194
+#: sw/uiconfig/swriter/ui/formattablepage.ui:195
#, fuzzy
msgctxt "formattablepage|leftft"
msgid "Lef_t"
@@ -9920,72 +9919,72 @@ msgctxt "formattablepage|rightft"
msgid "Ri_ght"
msgstr "दहिन्ना"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:228
+#: sw/uiconfig/swriter/ui/formattablepage.ui:226
#, fuzzy
msgctxt "formattablepage|aboveft"
msgid "_Above"
msgstr "उप्पर"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:245
+#: sw/uiconfig/swriter/ui/formattablepage.ui:241
#, fuzzy
msgctxt "formattablepage|belowft"
msgid "_Below"
msgstr "नीच्चाँ"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:320
+#: sw/uiconfig/swriter/ui/formattablepage.ui:311
#, fuzzy
msgctxt "formattablepage|label46"
msgid "Spacing"
msgstr "अंतर देनाइ"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:362
+#: sw/uiconfig/swriter/ui/formattablepage.ui:349
#, fuzzy
msgctxt "formattablepage|full"
msgid "A_utomatic"
msgstr "स्वचालित"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:380
+#: sw/uiconfig/swriter/ui/formattablepage.ui:365
#, fuzzy
msgctxt "formattablepage|left"
msgid "_Left"
msgstr "बामाँ"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:398
+#: sw/uiconfig/swriter/ui/formattablepage.ui:381
#, fuzzy
msgctxt "formattablepage|fromleft"
msgid "_From left"
msgstr "बामाँ तरफसँ"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:416
+#: sw/uiconfig/swriter/ui/formattablepage.ui:397
#, fuzzy
msgctxt "formattablepage|right"
msgid "R_ight"
msgstr "दहिन्ना"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:435
+#: sw/uiconfig/swriter/ui/formattablepage.ui:413
#, fuzzy
msgctxt "formattablepage|center"
msgid "_Center"
msgstr "केंद्र"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:453
+#: sw/uiconfig/swriter/ui/formattablepage.ui:429
#, fuzzy
msgctxt "formattablepage|free"
msgid "_Manual"
msgstr "दस्ती (~M)"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:478
+#: sw/uiconfig/swriter/ui/formattablepage.ui:452
msgctxt "formattablepage|label43"
msgid "Alignment"
msgstr "सँरेखण "
-#: sw/uiconfig/swriter/ui/formattablepage.ui:522
+#: sw/uiconfig/swriter/ui/formattablepage.ui:491
#, fuzzy
msgctxt "formattablepage|label53"
msgid "Text _direction"
msgstr "पाठ दिशा (~d)"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:553
+#: sw/uiconfig/swriter/ui/formattablepage.ui:519
#, fuzzy
msgctxt "formattablepage|label44"
msgid "Properties "
@@ -10377,22 +10376,27 @@ msgctxt "headerfootermenu|insert_pagenumber"
msgid "Insert Page Number"
msgstr ""
-#: sw/uiconfig/swriter/ui/indentpage.ui:52
+#: sw/uiconfig/swriter/ui/headerfootermenu.ui:42
+msgctxt "headerfootermenu|insert_pagecount"
+msgid "Insert Page Count"
+msgstr ""
+
+#: sw/uiconfig/swriter/ui/indentpage.ui:57
msgctxt "indentpage|label1"
msgid "_Before section"
msgstr ""
-#: sw/uiconfig/swriter/ui/indentpage.ui:67
+#: sw/uiconfig/swriter/ui/indentpage.ui:71
msgctxt "indentpage|label3"
msgid "_After section"
msgstr ""
-#: sw/uiconfig/swriter/ui/indentpage.ui:113
+#: sw/uiconfig/swriter/ui/indentpage.ui:115
msgctxt "indentpage|label2"
msgid "Indent"
msgstr "हाशिया"
-#: sw/uiconfig/swriter/ui/indentpage.ui:142
+#: sw/uiconfig/swriter/ui/indentpage.ui:155
msgctxt "indentpage|preview-atkobject"
msgid "Example"
msgstr "उदाहरण"
@@ -14211,7 +14215,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:68
msgctxt "optcompatpage|format"
-msgid "MS Word-compatible trailing blanks"
+msgid "Word-compatible trailing blanks"
msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:69
@@ -14221,7 +14225,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:70
msgctxt "optcompatpage|format"
-msgid "A database field (e.g., MailMerge) with empty value hides its paragraph"
+msgid "Hide paragraphs of database fields (e.g., mail merge) with an empty value"
msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:71
@@ -17147,138 +17151,138 @@ msgctxt "tableproperties|background"
msgid "Background"
msgstr "पृष्ठभूमि"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:25
-#, fuzzy
-msgctxt "tabletextflowpage|liststore1"
-msgid "Horizontal"
-msgstr "क्षैतिज"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:29
-#, fuzzy
-msgctxt "tabletextflowpage|liststore1"
-msgid "Vertical"
-msgstr "लम्बवत"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:33
-msgctxt "tabletextflowpage|liststore1"
-msgid "Use superordinate object settings"
-msgstr "अधिअक्षीय वस्तु जमावटक प्रयोग करू"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:47
-#, fuzzy
-msgctxt "tabletextflowpage|liststore2"
-msgid "Top"
-msgstr "उप्पर"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:51
-msgctxt "tabletextflowpage|liststore2"
-msgid "Centered"
-msgstr "केंद्रित"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:55
-#, fuzzy
-msgctxt "tabletextflowpage|liststore2"
-msgid "Bottom"
-msgstr "नीच्चाँ "
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:97
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:53
#, fuzzy
msgctxt "tabletextflowpage|break"
msgid "_Break"
msgstr "खण्डन (~B)"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:112
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:68
#, fuzzy
msgctxt "tabletextflowpage|page"
msgid "_Page"
msgstr "पृष्ठ"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:132
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:87
#, fuzzy
msgctxt "tabletextflowpage|column"
msgid "Col_umn"
msgstr "कॉलम"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:151
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:106
#, fuzzy
msgctxt "tabletextflowpage|before"
msgid "Be_fore"
msgstr "पहिने"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:171
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:125
#, fuzzy
msgctxt "tabletextflowpage|after"
msgid "_After"
msgstr "दहिन्ना"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:203
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:158
#, fuzzy
msgctxt "tabletextflowpage|pagestyle"
msgid "With Page St_yle"
msgstr "पृष्ठ शैली क' संपादन"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:224
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:177
#, fuzzy
msgctxt "tabletextflowpage|pagenoft"
msgid "Page _number"
msgstr "पृष्ठ संख्या"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:257
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:213
#, fuzzy
msgctxt "tabletextflowpage|pagestylelb-atkobject"
msgid "With Page Style"
msgstr "पृष्ठ शैली क' संपादन"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:274
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:230
msgctxt "tabletextflowpage|split"
msgid "Allow _table to split across pages and columns"
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:289
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:245
#, fuzzy
msgctxt "tabletextflowpage|splitrow"
msgid "Allow row to break a_cross pages and columns"
msgstr "पृष्ठ आओर कॉलमक गिर्द पंक्ति तोड़बाक अनुमति दिअ'"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:306
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:262
#, fuzzy
msgctxt "tabletextflowpage|keep"
msgid "_Keep with next paragraph"
msgstr "आगाँक अऩुच्छेद सँग राखू"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:328
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:284
msgctxt "tabletextflowpage|label40"
msgid "Text _orientation"
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:361
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:298
+#, fuzzy
+msgctxt "tabletextflowpage|liststore1"
+msgid "Horizontal"
+msgstr "क्षैतिज"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:299
+#, fuzzy
+msgctxt "tabletextflowpage|liststore1"
+msgid "Vertical"
+msgstr "लम्बवत"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:300
+msgctxt "tabletextflowpage|liststore1"
+msgid "Use superordinate object settings"
+msgstr "अधिअक्षीय वस्तु जमावटक प्रयोग करू"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:321
#, fuzzy
msgctxt "tabletextflowpage|headline"
msgid "R_epeat heading"
msgstr "शीर्षक दोहराबू"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:383
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:343
msgctxt "tabletextflowpage|label38"
msgid "The first "
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:396
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:356
#, fuzzy
msgctxt "tabletextflowpage|label39"
msgid "rows"
msgstr "पँक्ति"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:434
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:395
msgctxt "tabletextflowpage|label35"
msgid "Text Flow"
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:467
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:428
msgctxt "tabletextflowpage|label41"
msgid "_Vertical alignment"
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:495
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:442
+#, fuzzy
+msgctxt "tabletextflowpage|liststore2"
+msgid "Top"
+msgstr "उप्पर"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:443
+msgctxt "tabletextflowpage|liststore2"
+msgid "Centered"
+msgstr "केंद्रित"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:444
+#, fuzzy
+msgctxt "tabletextflowpage|liststore2"
+msgid "Bottom"
+msgstr "नीच्चाँ "
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:460
msgctxt "tabletextflowpage|label36"
msgid "Alignment"
msgstr "सँरेखण "
@@ -18116,10 +18120,9 @@ msgid "Alphabetical Index"
msgstr ""
#: sw/uiconfig/swriter/ui/tocindexpage.ui:58
-#, fuzzy
msgctxt "tocindexpage|liststore1"
-msgid "Illustration Index"
-msgstr "दृष्टान्त अनुक्रमणिका 1"
+msgid "Table of Figures"
+msgstr ""
#: sw/uiconfig/swriter/ui/tocindexpage.ui:62
msgctxt "tocindexpage|liststore1"
diff --git a/source/mai/writerperfect/messages.po b/source/mai/writerperfect/messages.po
index 60735ac202a..551b439eb75 100644
--- a/source/mai/writerperfect/messages.po
+++ b/source/mai/writerperfect/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-16 16:54+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+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"
@@ -65,99 +65,99 @@ msgctxt "exportepub|generalft"
msgid "General"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:122
+#: writerperfect/uiconfig/ui/exportepub.ui:121
#, fuzzy
msgctxt "exportepub|versionft"
msgid "Version:"
msgstr "संस्करण (~V):"
-#: writerperfect/uiconfig/ui/exportepub.ui:139
+#: writerperfect/uiconfig/ui/exportepub.ui:138
msgctxt "exportepub|epub3"
msgid "EPUB 3.0"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:140
+#: writerperfect/uiconfig/ui/exportepub.ui:139
msgctxt "exportepub|epub2"
msgid "EPUB 2.0"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:175
+#: writerperfect/uiconfig/ui/exportepub.ui:174
msgctxt "exportepub|splitft"
msgid "Split method:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:192
+#: writerperfect/uiconfig/ui/exportepub.ui:191
#, fuzzy
msgctxt "exportepub|splitpage"
msgid "Page break"
msgstr "पृष्ठ खण्डन"
-#: writerperfect/uiconfig/ui/exportepub.ui:193
+#: writerperfect/uiconfig/ui/exportepub.ui:192
msgctxt "exportepub|splitheading"
msgid "Heading"
msgstr "शीर्षक"
-#: writerperfect/uiconfig/ui/exportepub.ui:228
+#: writerperfect/uiconfig/ui/exportepub.ui:227
msgctxt "exportepub|layoutft"
msgid "Layout method:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:245
+#: writerperfect/uiconfig/ui/exportepub.ui:244
msgctxt "exportepub|layoutreflowable"
msgid "Reflowable"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:246
+#: writerperfect/uiconfig/ui/exportepub.ui:245
msgctxt "exportepub|layoutfixed"
msgid "Fixed"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:281
+#: writerperfect/uiconfig/ui/exportepub.ui:280
msgctxt "exportepub|coverimageft"
msgid "Custom cover image:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:311
+#: writerperfect/uiconfig/ui/exportepub.ui:310
msgctxt "exportepub|coverbutton"
msgid "Browse..."
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:355
+#: writerperfect/uiconfig/ui/exportepub.ui:354
msgctxt "exportepub|mediadirft"
msgid "Custom media directory:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:385
+#: writerperfect/uiconfig/ui/exportepub.ui:384
msgctxt "exportepub|mediabutton"
msgid "Browse..."
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:429
+#: writerperfect/uiconfig/ui/exportepub.ui:428
msgctxt "exportepub|metadataft"
msgid "Metadata"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:470
+#: writerperfect/uiconfig/ui/exportepub.ui:468
msgctxt "exportepub|identifierft"
msgid "Identifier:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:485
+#: writerperfect/uiconfig/ui/exportepub.ui:483
msgctxt "exportepub|titleft"
msgid "Title:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:511
+#: writerperfect/uiconfig/ui/exportepub.ui:509
msgctxt "exportepub|authorft"
msgid "Author:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:537
+#: writerperfect/uiconfig/ui/exportepub.ui:535
msgctxt "exportepub|languageft"
msgid "Language:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:563
+#: writerperfect/uiconfig/ui/exportepub.ui:561
msgctxt "exportepub|dateft"
msgid "Date:"
msgstr ""
diff --git a/source/mk/cui/messages.po b/source/mk/cui/messages.po
index c46f5a6194a..41c89e0f689 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+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"
@@ -10385,107 +10385,107 @@ msgctxt "positionsizedialog|PositionAndSizeDialog"
msgid "Position and Size"
msgstr "По~зиција и големина..."
-#: cui/uiconfig/ui/positionsizedialog.ui:107
+#: cui/uiconfig/ui/positionsizedialog.ui:136
#, fuzzy
msgctxt "positionsizedialog|RID_SVXPAGE_POSITION_SIZE"
msgid "Position and Size"
msgstr "По~зиција и големина..."
-#: cui/uiconfig/ui/positionsizedialog.ui:129
+#: cui/uiconfig/ui/positionsizedialog.ui:182
#, fuzzy
msgctxt "positionsizedialog|RID_SVXPAGE_SWPOSSIZE"
msgid "Position and Size"
msgstr "По~зиција и големина..."
-#: cui/uiconfig/ui/positionsizedialog.ui:152
+#: cui/uiconfig/ui/positionsizedialog.ui:229
msgctxt "positionsizedialog|RID_SVXPAGE_ANGLE"
msgid "Rotation"
msgstr "Ротација"
-#: cui/uiconfig/ui/positionsizedialog.ui:175
+#: cui/uiconfig/ui/positionsizedialog.ui:276
msgctxt "positionsizedialog|RID_SVXPAGE_SLANT"
msgid "Slant & Corner Radius"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:40
+#: cui/uiconfig/ui/possizetabpage.ui:61
#, fuzzy
msgctxt "possizetabpage|FT_POS_X"
msgid "Position _X:"
msgstr "Позиција"
-#: cui/uiconfig/ui/possizetabpage.ui:56
+#: cui/uiconfig/ui/possizetabpage.ui:75
#, fuzzy
msgctxt "possizetabpage|FT_POS_Y"
msgid "Position _Y:"
msgstr "Позиција"
-#: cui/uiconfig/ui/possizetabpage.ui:110
+#: cui/uiconfig/ui/possizetabpage.ui:128
msgctxt "possizetabpage|FT_POSREFERENCE"
msgid "_Base point:"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:148
+#: cui/uiconfig/ui/possizetabpage.ui:182
msgctxt "possizetabpage|label1"
msgid "Position"
msgstr "Позиција"
-#: cui/uiconfig/ui/possizetabpage.ui:190
+#: cui/uiconfig/ui/possizetabpage.ui:224
#, fuzzy
msgctxt "possizetabpage|FT_WIDTH"
msgid "Wi_dth:"
msgstr "Ширина"
-#: cui/uiconfig/ui/possizetabpage.ui:206
+#: cui/uiconfig/ui/possizetabpage.ui:238
#, fuzzy
msgctxt "possizetabpage|FT_HEIGHT"
msgid "H_eight:"
msgstr "Висина"
-#: cui/uiconfig/ui/possizetabpage.ui:247
+#: cui/uiconfig/ui/possizetabpage.ui:276
#, fuzzy
msgctxt "possizetabpage|CBX_SCALE"
msgid "_Keep ratio"
msgstr "Задржи ја пропорцијата"
-#: cui/uiconfig/ui/possizetabpage.ui:279
+#: cui/uiconfig/ui/possizetabpage.ui:307
msgctxt "possizetabpage|FT_SIZEREFERENCE"
msgid "Base _point:"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:317
+#: cui/uiconfig/ui/possizetabpage.ui:361
msgctxt "possizetabpage|label2"
msgid "Size"
msgstr "Големина"
-#: cui/uiconfig/ui/possizetabpage.ui:356
+#: cui/uiconfig/ui/possizetabpage.ui:401
#, fuzzy
msgctxt "possizetabpage|TSB_POSPROTECT"
msgid "Positio_n"
msgstr "Позиција"
-#: cui/uiconfig/ui/possizetabpage.ui:373
+#: cui/uiconfig/ui/possizetabpage.ui:418
#, fuzzy
msgctxt "possizetabpage|TSB_SIZEPROTECT"
msgid "_Size"
msgstr "Големина"
-#: cui/uiconfig/ui/possizetabpage.ui:397
+#: cui/uiconfig/ui/possizetabpage.ui:441
#, fuzzy
msgctxt "possizetabpage|label3"
msgid "Protect"
msgstr "~Заштити"
-#: cui/uiconfig/ui/possizetabpage.ui:430
+#: cui/uiconfig/ui/possizetabpage.ui:475
msgctxt "possizetabpage|TSB_AUTOGROW_WIDTH"
msgid "_Fit width to text"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:447
+#: cui/uiconfig/ui/possizetabpage.ui:492
msgctxt "possizetabpage|TSB_AUTOGROW_HEIGHT"
msgid "Fit _height to text"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:471
+#: cui/uiconfig/ui/possizetabpage.ui:515
msgctxt "possizetabpage|label4"
msgid "Adapt"
msgstr ""
@@ -10698,50 +10698,50 @@ msgctxt "recordnumberdialog|label2"
msgid "go to record"
msgstr ""
-#: cui/uiconfig/ui/rotationtabpage.ui:52
+#: cui/uiconfig/ui/rotationtabpage.ui:56
#, fuzzy
msgctxt "rotationtabpage|FT_POS_X"
msgid "Position _X:"
msgstr "Позиција"
-#: cui/uiconfig/ui/rotationtabpage.ui:66
+#: cui/uiconfig/ui/rotationtabpage.ui:70
#, fuzzy
msgctxt "rotationtabpage|FT_POS_Y"
msgid "Position _Y:"
msgstr "Позиција"
-#: cui/uiconfig/ui/rotationtabpage.ui:116
+#: cui/uiconfig/ui/rotationtabpage.ui:123
msgctxt "rotationtabpage|FT_POSPRESETS"
msgid "_Default settings:"
msgstr ""
-#: cui/uiconfig/ui/rotationtabpage.ui:130
+#: cui/uiconfig/ui/rotationtabpage.ui:151
msgctxt "rotationtabpage|CTL_RECT|tooltip_text"
msgid "Rotation point"
msgstr ""
-#: cui/uiconfig/ui/rotationtabpage.ui:155
+#: cui/uiconfig/ui/rotationtabpage.ui:178
msgctxt "rotationtabpage|label1"
msgid "Pivot Point"
msgstr ""
-#: cui/uiconfig/ui/rotationtabpage.ui:197
+#: cui/uiconfig/ui/rotationtabpage.ui:220
msgctxt "rotationtabpage|FT_ANGLE"
msgid "_Angle:"
msgstr ""
-#: cui/uiconfig/ui/rotationtabpage.ui:238
+#: cui/uiconfig/ui/rotationtabpage.ui:263
msgctxt "rotationtabpage|FT_ANGLEPRESETS"
msgid "Default _settings:"
msgstr ""
-#: cui/uiconfig/ui/rotationtabpage.ui:252
+#: cui/uiconfig/ui/rotationtabpage.ui:287
#, fuzzy
msgctxt "rotationtabpage|CTL_ANGLE|tooltip_text"
msgid "Rotation Angle"
msgstr "Агол на ротација"
-#: cui/uiconfig/ui/rotationtabpage.ui:277
+#: cui/uiconfig/ui/rotationtabpage.ui:314
#, fuzzy
msgctxt "rotationtabpage|label2"
msgid "Rotation Angle"
@@ -11133,55 +11133,55 @@ msgctxt "similaritysearchdialog|relaxbox"
msgid "_Combine"
msgstr "Комб~инирај"
-#: cui/uiconfig/ui/slantcornertabpage.ui:50
+#: cui/uiconfig/ui/slantcornertabpage.ui:70
msgctxt "slantcornertabpage|label5"
msgid "_X:"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:88
+#: cui/uiconfig/ui/slantcornertabpage.ui:110
msgctxt "slantcornertabpage|label6"
msgid "_Y:"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:125
+#: cui/uiconfig/ui/slantcornertabpage.ui:149
msgctxt "slantcornertabpage|label3"
msgid "Control Point 1"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:159
+#: cui/uiconfig/ui/slantcornertabpage.ui:183
#, fuzzy
msgctxt "slantcornertabpage|FT_RADIUS"
msgid "_Radius:"
msgstr "Радиус"
-#: cui/uiconfig/ui/slantcornertabpage.ui:189
+#: cui/uiconfig/ui/slantcornertabpage.ui:214
#, fuzzy
msgctxt "slantcornertabpage|label1"
msgid "Corner Radius"
msgstr "Радиус на агол"
-#: cui/uiconfig/ui/slantcornertabpage.ui:223
+#: cui/uiconfig/ui/slantcornertabpage.ui:248
msgctxt "slantcornertabpage|FT_ANGLE"
msgid "_Angle:"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:253
+#: cui/uiconfig/ui/slantcornertabpage.ui:279
#, fuzzy
msgctxt "slantcornertabpage|label2"
msgid "Slant"
msgstr "Закосеност"
-#: cui/uiconfig/ui/slantcornertabpage.ui:294
+#: cui/uiconfig/ui/slantcornertabpage.ui:320
msgctxt "slantcornertabpage|label4"
msgid "_X:"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:332
+#: cui/uiconfig/ui/slantcornertabpage.ui:360
msgctxt "slantcornertabpage|label7"
msgid "_Y:"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:369
+#: cui/uiconfig/ui/slantcornertabpage.ui:399
msgctxt "slantcornertabpage|label8"
msgid "Control Point 2"
msgstr ""
@@ -11478,124 +11478,124 @@ msgctxt "storedwebconnectiondialog|change"
msgid "_Change Password..."
msgstr "Измени ~лозинка..."
-#: cui/uiconfig/ui/swpossizepage.ui:74
+#: cui/uiconfig/ui/swpossizepage.ui:85
#, fuzzy
msgctxt "swpossizepage|widthft"
msgid "_Width:"
msgstr "Ширина"
-#: cui/uiconfig/ui/swpossizepage.ui:111
+#: cui/uiconfig/ui/swpossizepage.ui:123
#, fuzzy
msgctxt "swpossizepage|heightft"
msgid "H_eight:"
msgstr "Висина"
-#: cui/uiconfig/ui/swpossizepage.ui:128
+#: cui/uiconfig/ui/swpossizepage.ui:141
#, fuzzy
msgctxt "swpossizepage|ratio"
msgid "_Keep ratio"
msgstr "Задржи ја пропорцијата"
-#: cui/uiconfig/ui/swpossizepage.ui:149
+#: cui/uiconfig/ui/swpossizepage.ui:162
msgctxt "swpossizepage|label2"
msgid "Size"
msgstr "Големина"
-#: cui/uiconfig/ui/swpossizepage.ui:205
+#: cui/uiconfig/ui/swpossizepage.ui:218
#, fuzzy
msgctxt "swpossizepage|topage"
msgid "To _page"
msgstr "На страница"
-#: cui/uiconfig/ui/swpossizepage.ui:222
+#: cui/uiconfig/ui/swpossizepage.ui:234
#, fuzzy
msgctxt "swpossizepage|topara"
msgid "To paragrap_h"
msgstr "На пасус"
-#: cui/uiconfig/ui/swpossizepage.ui:238
+#: cui/uiconfig/ui/swpossizepage.ui:250
#, fuzzy
msgctxt "swpossizepage|tochar"
msgid "To cha_racter"
msgstr "На знак"
-#: cui/uiconfig/ui/swpossizepage.ui:254
+#: cui/uiconfig/ui/swpossizepage.ui:266
#, fuzzy
msgctxt "swpossizepage|aschar"
msgid "_As character"
msgstr "Како знак"
-#: cui/uiconfig/ui/swpossizepage.ui:270
+#: cui/uiconfig/ui/swpossizepage.ui:282
#, fuzzy
msgctxt "swpossizepage|toframe"
msgid "To _frame"
msgstr "Во рамка"
-#: cui/uiconfig/ui/swpossizepage.ui:292
+#: cui/uiconfig/ui/swpossizepage.ui:304
msgctxt "swpossizepage|label1"
msgid "Anchor"
msgstr "Котва"
-#: cui/uiconfig/ui/swpossizepage.ui:333
+#: cui/uiconfig/ui/swpossizepage.ui:344
#, fuzzy
msgctxt "swpossizepage|horiposft"
msgid "Hori_zontal:"
msgstr "Хоризонтално"
-#: cui/uiconfig/ui/swpossizepage.ui:347
+#: cui/uiconfig/ui/swpossizepage.ui:358
msgctxt "swpossizepage|horibyft"
msgid "b_y:"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:361
+#: cui/uiconfig/ui/swpossizepage.ui:372
msgctxt "swpossizepage|vertbyft"
msgid "_by:"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:375
+#: cui/uiconfig/ui/swpossizepage.ui:386
msgctxt "swpossizepage|horitoft"
msgid "_to:"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:421
+#: cui/uiconfig/ui/swpossizepage.ui:433
#, fuzzy
msgctxt "swpossizepage|vertposft"
msgid "_Vertical:"
msgstr "Вертикално"
-#: cui/uiconfig/ui/swpossizepage.ui:457
+#: cui/uiconfig/ui/swpossizepage.ui:470
msgctxt "swpossizepage|verttoft"
msgid "t_o:"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:478
+#: cui/uiconfig/ui/swpossizepage.ui:492
msgctxt "swpossizepage|mirror"
msgid "_Mirror on even pages"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:495
+#: cui/uiconfig/ui/swpossizepage.ui:509
msgctxt "swpossizepage|followtextflow"
msgid "Follow te_xt flow"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:518
+#: cui/uiconfig/ui/swpossizepage.ui:532
msgctxt "swpossizepage|label11"
msgid "Position"
msgstr "Позиција"
-#: cui/uiconfig/ui/swpossizepage.ui:549
+#: cui/uiconfig/ui/swpossizepage.ui:563
#, fuzzy
msgctxt "swpossizepage|pos"
msgid "Positio_n"
msgstr "Позиција"
-#: cui/uiconfig/ui/swpossizepage.ui:565
+#: cui/uiconfig/ui/swpossizepage.ui:579
#, fuzzy
msgctxt "swpossizepage|size"
msgid "_Size"
msgstr "Големина"
-#: cui/uiconfig/ui/swpossizepage.ui:587
+#: cui/uiconfig/ui/swpossizepage.ui:601
#, fuzzy
msgctxt "swpossizepage|label3"
msgid "Protect"
@@ -11799,13 +11799,13 @@ msgctxt "textattrtabpage|label2"
msgid "Spacing to Borders"
msgstr ""
-#: cui/uiconfig/ui/textattrtabpage.ui:425
+#: cui/uiconfig/ui/textattrtabpage.ui:423
#, fuzzy
msgctxt "textattrtabpage|TSB_FULL_WIDTH"
msgid "Full _width"
msgstr "Цела ширина"
-#: cui/uiconfig/ui/textattrtabpage.ui:448
+#: cui/uiconfig/ui/textattrtabpage.ui:446
msgctxt "textattrtabpage|label3"
msgid "Text Anchor"
msgstr ""
diff --git a/source/mk/filter/source/config/fragments/filters.po b/source/mk/filter/source/config/fragments/filters.po
index eea30cf1f1d..635542a1466 100644
--- a/source/mk/filter/source/config/fragments/filters.po
+++ b/source/mk/filter/source/config/fragments/filters.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-16 16:54+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2016-03-11 11:54+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -465,8 +465,8 @@ msgctxt ""
"MS Word 2003 XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Word 2003 XML"
-msgstr "Microsoft Word 2003 XML"
+msgid "Word 2003 XML"
+msgstr ""
#: MS_Word_2007_XML.xcu
msgctxt ""
@@ -1290,7 +1290,7 @@ msgctxt ""
"Calc MS Excel 2007 VBA XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Excel 2007-2016 XML (macro enabled)"
+msgid "Excel 2007–2019 (macro-enabled)"
msgstr ""
#: calc_MS_Excel_2007_XML.xcu
diff --git a/source/mk/filter/source/config/fragments/types.po b/source/mk/filter/source/config/fragments/types.po
index 8745deb90e4..f171f5496d4 100644
--- a/source/mk/filter/source/config/fragments/types.po
+++ b/source/mk/filter/source/config/fragments/types.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-08 15:11+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2015-11-11 21:49+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -295,8 +295,8 @@ msgctxt ""
"writer_MS_Word_2003_XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Word 2003 XML"
-msgstr "Microsoft Word 2003 XML"
+msgid "Word 2003 XML"
+msgstr ""
#: writer_MS_Word_2007_XML.xcu
msgctxt ""
diff --git a/source/mk/fpicker/messages.po b/source/mk/fpicker/messages.po
index fc3aefa708b..eebc04c57f5 100644
--- a/source/mk/fpicker/messages.po
+++ b/source/mk/fpicker/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+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"
@@ -278,14 +278,13 @@ msgstr ""
#: fpicker/uiconfig/ui/foldernamedialog.ui:8
msgctxt "foldernamedialog|FolderNameDialog"
-msgid "Folder Name ?"
+msgid "Folder Name"
msgstr ""
#: fpicker/uiconfig/ui/foldernamedialog.ui:91
-#, fuzzy
msgctxt "foldernamedialog|label2"
-msgid "Na_me"
-msgstr "Име"
+msgid "Na_me:"
+msgstr ""
#: fpicker/uiconfig/ui/foldernamedialog.ui:122
#, fuzzy
diff --git a/source/mk/helpcontent2/source/text/shared/00.po b/source/mk/helpcontent2/source/text/shared/00.po
index 7166b606eb1..f5743992d36 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2016-05-24 18:43+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -397,16 +397,16 @@ msgctxt ""
"00000001.xhp\n"
"hd_id3149670\n"
"help.text"
-msgid "Back"
-msgstr "Назад"
+msgid "Reset"
+msgstr ""
#: 00000001.xhp
msgctxt ""
"00000001.xhp\n"
"par_id3145068\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optionsdialog/revert\">Resets modified values back to the $[officename] default values.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/optionsdialog/revert\">Променетите вредности повторно ги ресетира во вредностите стандардни за $[officename].</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optionsdialog/revert\">Resets changes made to the current tab to those applicable when this dialog was opened.</ahelp>"
+msgstr ""
#: 00000001.xhp
msgctxt ""
@@ -552,6 +552,54 @@ msgctxt ""
msgid "<variable id=\"ShiftF1\">Press Shift+F1 and point to a control to learn more about that control.</variable>"
msgstr ""
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"hd_id631527692833772\n"
+"help.text"
+msgid "Options dialog buttons"
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"hd_id831527692839432\n"
+"help.text"
+msgid "OK"
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"par_id471527692844934\n"
+"help.text"
+msgid "Save the changes in the page and close the Options dialog."
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"hd_id261527692850720\n"
+"help.text"
+msgid "Cancel"
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"par_id571527692855533\n"
+"help.text"
+msgid "Close the Options dialog and discard all changes done."
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"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 Options dialog."
+msgstr ""
+
#: 00000002.xhp
msgctxt ""
"00000002.xhp\n"
@@ -11125,16 +11173,16 @@ msgctxt ""
"00040502.xhp\n"
"par_id3151293\n"
"help.text"
-msgid "<variable id=\"linienstile\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Line Styles</emph> tab </variable>"
-msgstr "<variable id=\"linienstile\">Изберете <emph>Форматирај - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Објект - </emph></caseinline><caseinline select=\"CALC\"><emph>Графика - </emph></caseinline></switchinline><emph>Линија - Стилови на линија</emph></variable>"
+msgid "<variable id=\"linienstile\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Line Styles</emph> tab</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3149317\n"
"help.text"
-msgid "<variable id=\"linienenden\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Arrow Styles</emph> tab </variable>"
-msgstr "<variable id=\"linienenden\">Изберете <emph>Форматирај - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Објект - </emph></caseinline><caseinline select=\"CALC\"><emph>Графика - </emph></caseinline></switchinline><emph>Линија - Стилови на стрелка</emph></variable>"
+msgid "<variable id=\"linienenden\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Arrow Styles</emph> tab</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
@@ -11173,15 +11221,15 @@ msgctxt ""
"00040502.xhp\n"
"par_id3154948\n"
"help.text"
-msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Area</emph> tab"
-msgstr "Изберете <emph>Форматирај - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Објект - </emph></caseinline><caseinline select=\"CALC\"><emph>Графика - </emph></caseinline></switchinline><emph>Област - Област</emph>"
+msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Area</emph> tab."
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3145607\n"
"help.text"
-msgid "Choose <emph>View - Styles</emph> - open context menu and choose <emph>Modify/New - Area</emph> tab (presentation documents)"
+msgid "Choose <emph>View - Styles</emph> - open context menu and choose <emph>Modify/New - Area</emph> tab (presentation documents)."
msgstr ""
#: 00040502.xhp
@@ -11189,47 +11237,47 @@ msgctxt ""
"00040502.xhp\n"
"par_id3152922\n"
"help.text"
-msgid "Choose <emph>Format - Title - Area</emph> tab (chart documents)"
-msgstr "Изберете го ливчето <emph>Форматирај - Наслов - Област</emph> (документи со графикони)"
+msgid "Choose <emph>Format - Title - Area</emph> tab (chart documents)."
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3157894\n"
"help.text"
-msgid "Choose <emph>Format - Legend - Area</emph> tab (chart documents)"
-msgstr "Изберете го ливчето <emph>Форматирај - Легенда - Област</emph> (документи со графикони)"
+msgid "Choose <emph>Format - Legend - Area</emph> tab (chart documents)."
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3144444\n"
"help.text"
-msgid "Choose <emph>Format - Chart Wall - Area</emph> tab (chart documents)"
-msgstr "Изберете го ливчето <emph>Форматирај - Ѕид на графиконот - Област</emph> (документи со графикони)"
+msgid "Choose <emph>Format - Chart Wall - Area</emph> tab (chart documents)."
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3156543\n"
"help.text"
-msgid "Choose <emph>Format - Chart Floor - Area</emph> tab (chart documents)"
-msgstr "Изберете го ливчето <emph>Форматирај - Под на графиконот - Област</emph> (документи со графикони)"
+msgid "Choose <emph>Format - Chart Floor - Area</emph> tab (chart documents)."
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3150685\n"
"help.text"
-msgid "Choose <emph>Format - Chart Area - Area</emph> tab (chart documents)"
-msgstr "Изберете го ливчето <emph>Форматирај - Област на графиконот - Област</emph> (документи со графикони)"
+msgid "Choose <emph>Format - Chart Area - Area</emph> tab (chart documents)."
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3149664\n"
"help.text"
-msgid "Choose <emph>Slide - Properties - Background</emph> tab (in $[officename] Impress)"
+msgid "Choose <emph>Slide - Properties - Background</emph> tab (in $[officename] Impress)."
msgstr ""
#: 00040502.xhp
@@ -11237,7 +11285,15 @@ msgctxt ""
"00040502.xhp\n"
"par_id9149694\n"
"help.text"
-msgid "Choose <emph>Page - Properties - Background</emph> tab (in $[officename] Draw)"
+msgid "Choose <emph>Page - Properties - Background</emph> tab (in $[officename] Draw)."
+msgstr ""
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id841527083135387\n"
+"help.text"
+msgid "Choose <emph>Table - Properties - Background</emph> tab."
msgstr ""
#: 00040502.xhp
@@ -11349,32 +11405,32 @@ msgctxt ""
"00040502.xhp\n"
"par_id3150011\n"
"help.text"
-msgid "<variable id=\"schatte\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Shadow</emph> tab </variable>"
-msgstr "<variable id=\"schatte\">Изберете <emph>Форматирај - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Објект - </emph></caseinline><caseinline select=\"CALC\"><emph>Графика - </emph></caseinline></switchinline><emph>Област - Сенка</emph></variable>"
+msgid "<variable id=\"schatte\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Shadow</emph> tab</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3147441\n"
"help.text"
-msgid "<variable id=\"verlauf\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Gradients</emph> tab </variable>"
-msgstr "<variable id=\"verlauf\">Изберете <emph>Форматирај - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Објект - </emph></caseinline><caseinline select=\"CALC\"><emph>Графика - </emph></caseinline></switchinline><emph>Област - Градиенти</emph></variable>"
+msgid "<variable id=\"verlauf\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Gradients</emph> tab</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3155308\n"
"help.text"
-msgid "<variable id=\"schraffur\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Hatching</emph> tab </variable>"
-msgstr "<variable id=\"schraffur\">Изберете <emph>Форматирај - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Објект - </emph></caseinline><caseinline select=\"CALC\"><emph>Графика - </emph></caseinline></switchinline><emph>Област - Шрафура</emph></variable>"
+msgid "<variable id=\"schraffur\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Hatching</emph> tab</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3145800\n"
"help.text"
-msgid "<variable id=\"bitmap\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Bitmaps</emph> tab </variable>"
-msgstr "<variable id=\"bitmap\">Изберете <emph>Форматирај - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Објект - </emph></caseinline><caseinline select=\"CALC\"><emph>Графика - </emph></caseinline></switchinline><emph>Област - Битмапи</emph></variable>"
+msgid "<variable id=\"bitmap\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Bitmaps</emph> tab</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
@@ -11413,8 +11469,8 @@ msgctxt ""
"00040502.xhp\n"
"par_id3156286\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F4 key </caseinline><caseinline select=\"IMPRESS\">F4 key </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"DRAW\">Тастер F4</caseinline><caseinline select=\"IMPRESS\">Тастер F4</caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F4 key</caseinline><caseinline select=\"IMPRESS\">F4 key</caseinline></switchinline>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
@@ -11453,8 +11509,8 @@ msgctxt ""
"00040502.xhp\n"
"par_id3153099\n"
"help.text"
-msgid "<variable id=\"position2\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Position and Size</emph> tab </variable>"
-msgstr "<variable id=\"position2\">Изберете <emph>Форматирај - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Објект - </emph></caseinline><caseinline select=\"CALC\"><emph>Графика - </emph></caseinline></switchinline><emph>Позиција и големина - Позиција и големина</emph></variable>"
+msgid "<variable id=\"position2\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Position and Size</emph> tab</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
@@ -11485,16 +11541,16 @@ msgctxt ""
"00040502.xhp\n"
"par_id3145666\n"
"help.text"
-msgid "<variable id=\"ecke\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Slant & Corner Radius</emph> tab </variable>"
-msgstr "<variable id=\"ecke\">Изберете <emph>Форматирај - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Објект - </emph></caseinline><caseinline select=\"CALC\"><emph>Графика - </emph></caseinline></switchinline><emph>Позиција и големина - Косина и радиус на агол</emph></variable>"
+msgid "<variable id=\"ecke\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Slant & Corner Radius</emph> tab</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3146081\n"
"help.text"
-msgid "<variable id=\"legende\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Callout</emph> tab (only for textbox callouts, not for custom shapes callouts) </variable>"
-msgstr "<variable id=\"legende\">Изберете го јазичето<emph>Форматирај- </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Објект - </emph></caseinline><caseinline select=\"CALC\"><emph>Графика - </emph></caseinline></switchinline><emph>Позиција и големина - Легенда</emph>(само за текстуелни балончиња, не за балончиња со облик по избор)</variable>"
+msgid "<variable id=\"legende\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Callout</emph> tab (only for textbox callouts, not for custom shapes callouts)</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
@@ -11517,8 +11573,8 @@ msgctxt ""
"00040502.xhp\n"
"par_id3149019\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F8 key </caseinline><caseinline select=\"IMPRESS\">F8 key </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"DRAW\">Тастер F8</caseinline><caseinline select=\"IMPRESS\">Тастер F8</caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F8 key</caseinline><caseinline select=\"IMPRESS\">F8 key</caseinline></switchinline>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
@@ -11805,8 +11861,8 @@ msgctxt ""
"00040502.xhp\n"
"par_id3153076\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Align Center Horizontally </caseinline><defaultinline>Centered</defaultinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Порамни го центарот хоризонтално </caseinline><defaultinline>Центрирано</defaultinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Align Center Horizontally</caseinline><defaultinline>Centered</defaultinline></switchinline>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
@@ -11845,8 +11901,8 @@ msgctxt ""
"00040502.xhp\n"
"par_id3150527\n"
"help.text"
-msgid "<variable id=\"font\">Click <emph>Fontwork</emph> icon on <emph>Drawing</emph> bar </variable>"
-msgstr "<variable id=\"font\">Кликнете на иконата <emph>Текст ефекти</emph> на лентата <emph>Цртеж</emph></variable>"
+msgid "<variable id=\"font\">Click <emph>Fontwork</emph> icon on <emph>Drawing</emph> bar</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
diff --git a/source/mk/helpcontent2/source/text/shared/01.po b/source/mk/helpcontent2/source/text/shared/01.po
index 78a744125d9..2f160057234 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: 2018-05-23 23:19+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2016-07-06 12:44+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -23587,6 +23587,22 @@ msgstr ""
#: 05210100.xhp
msgctxt ""
"05210100.xhp\n"
+"hd_id471527077476052\n"
+"help.text"
+msgid "Cell, Row or Table background selector"
+msgstr ""
+
+#: 05210100.xhp
+msgctxt ""
+"05210100.xhp\n"
+"par_id661527077493366\n"
+"help.text"
+msgid "Select the table object which background area is to be filled."
+msgstr ""
+
+#: 05210100.xhp
+msgctxt ""
+"05210100.xhp\n"
"hd_id3147373\n"
"help.text"
msgid "None"
@@ -31205,24 +31221,24 @@ msgctxt ""
"06040100.xhp\n"
"hd_id3145072\n"
"help.text"
-msgid "Automatic *bold* and _underline_"
-msgstr "Automatic *bold* and _underline_"
+msgid "Automatic *bold*, /italic/, -strikeout- and _underline_"
+msgstr ""
#: 06040100.xhp
msgctxt ""
"06040100.xhp\n"
"par_id3153577\n"
"help.text"
-msgid "Automatically applies bold formatting to text enclosed by asterisks (*), and underline to text enclosed by underscores ( _ ), for example, *bold*. The asterisks and underscores are not displayed after the formatting is applied."
-msgstr "Automatically applies bold formatting to text enclosed by asterisks (*), and underline to text enclosed by underscores ( _ ), for example, *bold*. The asterisks and underscores are not displayed after the formatting is applied."
+msgid "Automatically applies bold, italic, strikethrough or underline formatting to text enclosed by asterisks (*), slashes (/), hyphens (-), and underscores (_), respectively. These characters disappear after the formatting is applied."
+msgstr ""
#: 06040100.xhp
msgctxt ""
"06040100.xhp\n"
"par_id3153127\n"
"help.text"
-msgid "This feature does not work if the formatting characters * or _ are entered with an <link href=\"text/shared/00/00000005.xhp#IME\" name=\"Input Method Editor\">Input Method Editor</link>."
-msgstr "This feature does not work if the formatting characters * or _ are entered with an <link href=\"text/shared/00/00000005.xhp#IME\" name=\"Input Method Editor\">Input Method Editor</link>."
+msgid "This feature does not work if the formatting characters <item type=\"literal\">* / - _</item> are entered with an <link href=\"text/shared/00/00000005.xhp#IME\" name=\"Input Method Editor\">Input Method Editor</link>."
+msgstr ""
#: 06040100.xhp
msgctxt ""
diff --git a/source/mk/helpcontent2/source/text/shared/optionen.po b/source/mk/helpcontent2/source/text/shared/optionen.po
index 6a1a6ad02a7..b03478afd97 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: 2018-05-08 15:10+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2016-07-06 13:11+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -83,6 +83,22 @@ msgstr ""
#: 01000000.xhp
msgctxt ""
"01000000.xhp\n"
+"hd_id551527692881035\n"
+"help.text"
+msgid "Help"
+msgstr ""
+
+#: 01000000.xhp
+msgctxt ""
+"01000000.xhp\n"
+"par_id831527692885723\n"
+"help.text"
+msgid "Opens the help contents for the Options page displayed."
+msgstr ""
+
+#: 01000000.xhp
+msgctxt ""
+"01000000.xhp\n"
"hd_id3159149\n"
"help.text"
msgid "<link href=\"text/shared/optionen/01010000.xhp\" name=\"$[officename]\">%PRODUCTNAME</link>"
@@ -4565,8 +4581,8 @@ msgctxt ""
"01030300.xhp\n"
"par_idN10640\n"
"help.text"
-msgid "Options"
-msgstr "Опции"
+msgid "Security Options and Warnings"
+msgstr ""
#: 01030300.xhp
msgctxt ""
@@ -4597,7 +4613,7 @@ msgctxt ""
"01030300.xhp\n"
"hd_id3168736\n"
"help.text"
-msgid "Persistently save passwords protected by a master password"
+msgid "Persistently save passwords for web connections"
msgstr ""
#: 01030300.xhp
@@ -4613,6 +4629,22 @@ msgctxt ""
"01030300.xhp\n"
"hd_id3901791\n"
"help.text"
+msgid "Protected by a master password (recommended)"
+msgstr ""
+
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"par_id31527711486980\n"
+"help.text"
+msgid "Check to enable all connections' passwords to be protected by a master password."
+msgstr ""
+
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"hd_id141527711343312\n"
+"help.text"
msgid "Master Password"
msgstr ""
@@ -13733,7 +13765,7 @@ msgctxt ""
"java.xhp\n"
"hd_id3148618\n"
"help.text"
-msgid "Optional (unstable) options"
+msgid "Optional Features"
msgstr ""
#: java.xhp
@@ -13749,7 +13781,7 @@ msgctxt ""
"java.xhp\n"
"par_id3156344\n"
"help.text"
-msgid "It enables features that are not yet complete or contain known bugs. The list of these features is different version by version, or even it can be empty."
+msgid "Enables features that are not yet complete or may contain known bugs. The list of these features is different version by version, or even it can be empty."
msgstr ""
#: java.xhp
@@ -13765,7 +13797,7 @@ msgctxt ""
"java.xhp\n"
"par_id3156345\n"
"help.text"
-msgid "It enables macro recording, so the <link href=\"text/shared/guide/macro_recording.xhp\" name=\"Tools - Macros - Record Macro\"><item type=\"menuitem\">Tools - Macros - Record Macro</item></link> menu item will be available."
+msgid "Enables macro recording. The <link href=\"text/shared/guide/macro_recording.xhp\" name=\"Tools - Macros - Record Macro\"><item type=\"menuitem\">Tools - Macros - Record Macro</item></link> menu item is available."
msgstr ""
#: java.xhp
diff --git a/source/mk/officecfg/registry/data/org/openoffice/Office/UI.po b/source/mk/officecfg/registry/data/org/openoffice/Office/UI.po
index b8750be3fd8..721395ce9b8 100644
--- a/source/mk/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/mk/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-22 13:17+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2016-12-23 12:13+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -26983,8 +26983,8 @@ msgctxt ""
"..WriterCommands.UserInterface.Commands..uno:TextAttributes\n"
"Label\n"
"value.text"
-msgid "Text Attributes"
-msgstr "Атрибути на текст"
+msgid "Text Attributes..."
+msgstr ""
#: WriterCommands.xcu
msgctxt ""
diff --git a/source/mk/readlicense_oo/docs.po b/source/mk/readlicense_oo/docs.po
index 9a0a942a918..849cad1ba0c 100644
--- a/source/mk/readlicense_oo/docs.po
+++ b/source/mk/readlicense_oo/docs.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-04-17 15:54+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2016-03-11 14:19+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -117,7 +117,7 @@ msgctxt ""
"readme.xrm\n"
"macxiOSX\n"
"readmeitem.text"
-msgid "MacOSX 10.8 (Mountain Lion) or higher"
+msgid "MacOSX 10.9 (Mavericks) or higher"
msgstr ""
#: readme.xrm
diff --git a/source/mk/sc/messages.po b/source/mk/sc/messages.po
index a31e3107cd9..fc028e44eda 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-12 14:40+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"
@@ -1879,17 +1879,22 @@ msgid "Nested arrays are not supported."
msgstr "Вгнездени низи не се поддржани."
#: sc/inc/globstr.hrc:390
+msgctxt "STR_ERR_LONG_BAD_ARRAY_CONTENT"
+msgid "Unsupported inline array content."
+msgstr ""
+
+#: sc/inc/globstr.hrc:391
#, fuzzy
msgctxt "STR_UNDO_TEXTTOCOLUMNS"
msgid "Text to Columns"
msgstr "Те~кст во колони..."
-#: sc/inc/globstr.hrc:391
+#: sc/inc/globstr.hrc:392
msgctxt "STR_DOC_UPDATED"
msgid "Your spreadsheet has been updated with changes saved by other users."
msgstr "Вашата табеларна пресметка беше ажурирана со промените зачувани од другите корисници."
-#: sc/inc/globstr.hrc:392
+#: sc/inc/globstr.hrc:393
msgctxt "STR_DOC_WILLBESAVED"
msgid ""
"The spreadsheet must be saved now to activate sharing mode.\n"
@@ -1900,7 +1905,7 @@ msgstr ""
"\n"
"Дали сакате да продолжите?"
-#: sc/inc/globstr.hrc:393
+#: sc/inc/globstr.hrc:394
msgctxt "STR_DOC_WILLNOTBESAVED"
msgid ""
"Already resolved merge conflicts will be lost and your changes to the shared spreadsheet will not be saved.\n"
@@ -1911,7 +1916,7 @@ msgstr ""
"\n"
"Дали сакате да продолжите?"
-#: sc/inc/globstr.hrc:394
+#: sc/inc/globstr.hrc:395
msgctxt "STR_DOC_DISABLESHARED"
msgid ""
"Disabling shared mode of a spreadsheet hinders all other users of the shared spreadsheet to merge back their work.\n"
@@ -1922,7 +1927,7 @@ msgstr ""
"\n"
"Дали сакате да продолжите?"
-#: sc/inc/globstr.hrc:395
+#: sc/inc/globstr.hrc:396
msgctxt "STR_DOC_NOLONGERSHARED"
msgid ""
"This spreadsheet is no longer in shared mode.\n"
@@ -1933,7 +1938,7 @@ msgstr ""
"\n"
"Зачувајте ја вашата табеларна пресметка во посебна датотека и спојте ги рачно вашите промени со споделената табеларна пресметка."
-#: sc/inc/globstr.hrc:396
+#: sc/inc/globstr.hrc:397
msgctxt "STR_FILE_LOCKED_TRY_LATER"
msgid ""
"The shared spreadsheet file is locked due to a merge in progress by user: '%1'\n"
@@ -1944,7 +1949,7 @@ msgstr ""
"\n"
"Споделениот режим на заклучената датотека не може да се исклучи. Пробајте повторно подоцна."
-#: sc/inc/globstr.hrc:397
+#: sc/inc/globstr.hrc:398
msgctxt "STR_FILE_LOCKED_SAVE_LATER"
msgid ""
"The shared spreadsheet file is locked due to a merge in progress by user: '%1'\n"
@@ -1955,153 +1960,153 @@ msgstr ""
"\n"
"Пробајте подоцна повторно да ги снимите вашите промени."
-#: sc/inc/globstr.hrc:398
+#: sc/inc/globstr.hrc:399
msgctxt "STR_UNKNOWN_USER"
msgid "Unknown User"
msgstr "Непознат корисник"
-#: sc/inc/globstr.hrc:399
+#: sc/inc/globstr.hrc:400
msgctxt "STR_SHAPE_AUTOSHAPE"
msgid "AutoShape"
msgstr ""
-#: sc/inc/globstr.hrc:400
+#: sc/inc/globstr.hrc:401
msgctxt "STR_SHAPE_RECTANGLE"
msgid "Rectangle"
msgstr "Правоаголник"
-#: sc/inc/globstr.hrc:401
+#: sc/inc/globstr.hrc:402
msgctxt "STR_SHAPE_LINE"
msgid "Line"
msgstr "Линија"
-#: sc/inc/globstr.hrc:402
+#: sc/inc/globstr.hrc:403
msgctxt "STR_SHAPE_OVAL"
msgid "Oval"
msgstr "Елипсовидна"
-#: sc/inc/globstr.hrc:403
+#: sc/inc/globstr.hrc:404
msgctxt "STR_FORM_BUTTON"
msgid "Button"
msgstr "Копче"
-#: sc/inc/globstr.hrc:404
+#: sc/inc/globstr.hrc:405
msgctxt "STR_FORM_CHECKBOX"
msgid "Check Box"
msgstr "Поле за означување"
-#: sc/inc/globstr.hrc:405
+#: sc/inc/globstr.hrc:406
msgctxt "STR_FORM_OPTIONBUTTON"
msgid "Option Button"
msgstr "Копче за опција"
-#: sc/inc/globstr.hrc:406
+#: sc/inc/globstr.hrc:407
msgctxt "STR_FORM_LABEL"
msgid "Label"
msgstr "Ознака"
-#: sc/inc/globstr.hrc:407
+#: sc/inc/globstr.hrc:408
#, fuzzy
msgctxt "STR_FORM_LISTBOX"
msgid "List Box"
msgstr "Поле со листа"
-#: sc/inc/globstr.hrc:408
+#: sc/inc/globstr.hrc:409
msgctxt "STR_FORM_GROUPBOX"
msgid "Group Box"
msgstr "Поле за групирање"
-#: sc/inc/globstr.hrc:409
+#: sc/inc/globstr.hrc:410
#, fuzzy
msgctxt "STR_FORM_DROPDOWN"
msgid "Drop Down"
msgstr "Спушти долу"
-#: sc/inc/globstr.hrc:410
+#: sc/inc/globstr.hrc:411
msgctxt "STR_FORM_SPINNER"
msgid "Spinner"
msgstr ""
-#: sc/inc/globstr.hrc:411
+#: sc/inc/globstr.hrc:412
#, fuzzy
msgctxt "STR_FORM_SCROLLBAR"
msgid "Scroll Bar"
msgstr "Лента за движење"
-#: sc/inc/globstr.hrc:412
+#: sc/inc/globstr.hrc:413
msgctxt "STR_STYLE_FAMILY_CELL"
msgid "Cell Styles"
msgstr "Стилови на ќелија"
-#: sc/inc/globstr.hrc:413
+#: sc/inc/globstr.hrc:414
msgctxt "STR_STYLE_FAMILY_PAGE"
msgid "Page Styles"
msgstr "Стилови на страница"
-#: sc/inc/globstr.hrc:414
+#: sc/inc/globstr.hrc:415
#, fuzzy
msgctxt "STR_ERR_DATAPILOTSOURCE"
msgid "Pivot table source data is invalid."
msgstr "Дадениот поток е невалиден."
-#: sc/inc/globstr.hrc:415
+#: sc/inc/globstr.hrc:416
msgctxt "STR_OPTIONS_WARN_SEPARATORS"
msgid "Because the current formula separator settings conflict with the locale, the formula separators have been reset to their default values."
msgstr ""
-#: sc/inc/globstr.hrc:416
+#: sc/inc/globstr.hrc:417
msgctxt "STR_UNDO_INSERT_CURRENT_DATE"
msgid "Insert Current Date"
msgstr ""
-#: sc/inc/globstr.hrc:417
+#: sc/inc/globstr.hrc:418
msgctxt "STR_UNDO_INSERT_CURRENT_TIME"
msgid "Insert Current Time"
msgstr ""
-#: sc/inc/globstr.hrc:418
+#: sc/inc/globstr.hrc:419
#, fuzzy
msgctxt "STR_MANAGE_NAMES"
msgid "Manage Names..."
msgstr "Имиња на опсези"
-#: sc/inc/globstr.hrc:419
+#: sc/inc/globstr.hrc:420
msgctxt "STR_HEADER_NAME"
msgid "Name"
msgstr "Име"
-#: sc/inc/globstr.hrc:420
+#: sc/inc/globstr.hrc:421
msgctxt "STR_HEADER_RANGE_OR_EXPR"
msgid "Range or formula expression"
msgstr ""
-#: sc/inc/globstr.hrc:421
+#: sc/inc/globstr.hrc:422
msgctxt "STR_HEADER_SCOPE"
msgid "Scope"
msgstr "Опсег"
-#: sc/inc/globstr.hrc:422
+#: sc/inc/globstr.hrc:423
msgctxt "STR_MULTI_SELECT"
msgid "(multiple)"
msgstr ""
-#: sc/inc/globstr.hrc:423
+#: sc/inc/globstr.hrc:424
#, fuzzy
msgctxt "STR_GLOBAL_SCOPE"
msgid "Document (Global)"
msgstr "Режим на документ"
-#: sc/inc/globstr.hrc:424
+#: sc/inc/globstr.hrc:425
msgctxt "STR_ERR_NAME_EXISTS"
msgid "Invalid name. Already in use for the selected scope."
msgstr ""
-#: sc/inc/globstr.hrc:425
+#: sc/inc/globstr.hrc:426
msgctxt "STR_ERR_NAME_INVALID"
msgid "Invalid name. Only use letters, numbers and underscore."
msgstr ""
-#: sc/inc/globstr.hrc:426
+#: sc/inc/globstr.hrc:427
msgctxt "STR_UNSAVED_EXT_REF"
msgid ""
"This Document contains external references to unsaved documents.\n"
@@ -2109,227 +2114,227 @@ msgid ""
"Do you want to continue?"
msgstr ""
-#: sc/inc/globstr.hrc:427
+#: sc/inc/globstr.hrc:428
msgctxt "STR_CLOSE_WITH_UNSAVED_REFS"
msgid "This Document is referenced by another document and not yet saved. Closing it without saving will result in data loss."
msgstr ""
-#: sc/inc/globstr.hrc:428
+#: sc/inc/globstr.hrc:429
msgctxt "STR_HEADER_RANGE"
msgid "Range"
msgstr "Опсег"
-#: sc/inc/globstr.hrc:429
+#: sc/inc/globstr.hrc:430
msgctxt "STR_HEADER_COND"
msgid "First Condition"
msgstr ""
-#: sc/inc/globstr.hrc:430
+#: sc/inc/globstr.hrc:431
#, fuzzy
msgctxt "STR_COND_CONDITION"
msgid "Cell value is"
msgstr "Вредноста на ќелијата"
-#: sc/inc/globstr.hrc:431
+#: sc/inc/globstr.hrc:432
msgctxt "STR_COND_COLORSCALE"
msgid "ColorScale"
msgstr ""
-#: sc/inc/globstr.hrc:432
+#: sc/inc/globstr.hrc:433
msgctxt "STR_COND_DATABAR"
msgid "DataBar"
msgstr ""
-#: sc/inc/globstr.hrc:433
+#: sc/inc/globstr.hrc:434
msgctxt "STR_COND_ICONSET"
msgid "IconSet"
msgstr ""
-#: sc/inc/globstr.hrc:434
+#: sc/inc/globstr.hrc:435
#, fuzzy
msgctxt "STR_COND_BETWEEN"
msgid "between"
msgstr "е меѓу"
-#: sc/inc/globstr.hrc:435
+#: sc/inc/globstr.hrc:436
#, fuzzy
msgctxt "STR_COND_NOTBETWEEN"
msgid "not between"
msgstr "не е меѓу"
-#: sc/inc/globstr.hrc:436
+#: sc/inc/globstr.hrc:437
msgctxt "STR_COND_UNIQUE"
msgid "unique"
msgstr ""
-#: sc/inc/globstr.hrc:437
+#: sc/inc/globstr.hrc:438
#, fuzzy
msgctxt "STR_COND_DUPLICATE"
msgid "duplicate"
msgstr "Дуплирај"
-#: sc/inc/globstr.hrc:438
+#: sc/inc/globstr.hrc:439
#, fuzzy
msgctxt "STR_COND_FORMULA"
msgid "Formula is"
msgstr "Формулата"
-#: sc/inc/globstr.hrc:439
+#: sc/inc/globstr.hrc:440
msgctxt "STR_COND_TOP10"
msgid "Top Elements"
msgstr ""
-#: sc/inc/globstr.hrc:440
+#: sc/inc/globstr.hrc:441
msgctxt "STR_COND_BOTTOM10"
msgid "Bottom Elements"
msgstr ""
-#: sc/inc/globstr.hrc:441
+#: sc/inc/globstr.hrc:442
msgctxt "STR_COND_TOP_PERCENT"
msgid "Top Percent"
msgstr ""
-#: sc/inc/globstr.hrc:442
+#: sc/inc/globstr.hrc:443
msgctxt "STR_COND_DATE"
msgid "Date is"
msgstr ""
-#: sc/inc/globstr.hrc:443
+#: sc/inc/globstr.hrc:444
msgctxt "STR_COND_BOTTOM_PERCENT"
msgid "Bottom Percent"
msgstr ""
-#: sc/inc/globstr.hrc:444
+#: sc/inc/globstr.hrc:445
msgctxt "STR_COND_ABOVE_AVERAGE"
msgid "Above Average"
msgstr ""
-#: sc/inc/globstr.hrc:445
+#: sc/inc/globstr.hrc:446
msgctxt "STR_COND_BELOW_AVERAGE"
msgid "Below Average"
msgstr ""
-#: sc/inc/globstr.hrc:446
+#: sc/inc/globstr.hrc:447
msgctxt "STR_COND_ABOVE_EQUAL_AVERAGE"
msgid "Above or equal Average"
msgstr ""
-#: sc/inc/globstr.hrc:447
+#: sc/inc/globstr.hrc:448
msgctxt "STR_COND_BELOW_EQUAL_AVERAGE"
msgid "Below or equal Average"
msgstr ""
-#: sc/inc/globstr.hrc:448
+#: sc/inc/globstr.hrc:449
#, fuzzy
msgctxt "STR_COND_ERROR"
msgid "an Error code"
msgstr "Код на грешката"
-#: sc/inc/globstr.hrc:449
+#: sc/inc/globstr.hrc:450
#, fuzzy
msgctxt "STR_COND_NOERROR"
msgid "not an Error code"
msgstr "Код на грешката"
-#: sc/inc/globstr.hrc:450
+#: sc/inc/globstr.hrc:451
msgctxt "STR_COND_BEGINS_WITH"
msgid "Begins with"
msgstr ""
-#: sc/inc/globstr.hrc:451
+#: sc/inc/globstr.hrc:452
msgctxt "STR_COND_ENDS_WITH"
msgid "Ends with"
msgstr ""
-#: sc/inc/globstr.hrc:452
+#: sc/inc/globstr.hrc:453
#, fuzzy
msgctxt "STR_COND_CONTAINS"
msgid "Contains"
msgstr "Содржи"
-#: sc/inc/globstr.hrc:453
+#: sc/inc/globstr.hrc:454
msgctxt "STR_COND_NOT_CONTAINS"
msgid "Not Contains"
msgstr ""
-#: sc/inc/globstr.hrc:454
+#: sc/inc/globstr.hrc:455
#, fuzzy
msgctxt "STR_COND_TODAY"
msgid "today"
msgstr "Денес"
-#: sc/inc/globstr.hrc:455
+#: sc/inc/globstr.hrc:456
msgctxt "STR_COND_YESTERDAY"
msgid "yesterday"
msgstr ""
-#: sc/inc/globstr.hrc:456
+#: sc/inc/globstr.hrc:457
msgctxt "STR_COND_TOMORROW"
msgid "tomorrow"
msgstr ""
-#: sc/inc/globstr.hrc:457
+#: sc/inc/globstr.hrc:458
msgctxt "STR_COND_LAST7DAYS"
msgid "in the last 7 days"
msgstr ""
-#: sc/inc/globstr.hrc:458
+#: sc/inc/globstr.hrc:459
msgctxt "STR_COND_THISWEEK"
msgid "this week"
msgstr ""
-#: sc/inc/globstr.hrc:459
+#: sc/inc/globstr.hrc:460
msgctxt "STR_COND_LASTWEEK"
msgid "last week"
msgstr ""
-#: sc/inc/globstr.hrc:460
+#: sc/inc/globstr.hrc:461
msgctxt "STR_COND_NEXTWEEK"
msgid "next week"
msgstr ""
-#: sc/inc/globstr.hrc:461
+#: sc/inc/globstr.hrc:462
msgctxt "STR_COND_THISMONTH"
msgid "this month"
msgstr ""
-#: sc/inc/globstr.hrc:462
+#: sc/inc/globstr.hrc:463
msgctxt "STR_COND_LASTMONTH"
msgid "last month"
msgstr ""
-#: sc/inc/globstr.hrc:463
+#: sc/inc/globstr.hrc:464
msgctxt "STR_COND_NEXTMONTH"
msgid "next month"
msgstr ""
-#: sc/inc/globstr.hrc:464
+#: sc/inc/globstr.hrc:465
msgctxt "STR_COND_THISYEAR"
msgid "this year"
msgstr ""
-#: sc/inc/globstr.hrc:465
+#: sc/inc/globstr.hrc:466
msgctxt "STR_COND_LASTYEAR"
msgid "last year"
msgstr ""
-#: sc/inc/globstr.hrc:466
+#: sc/inc/globstr.hrc:467
msgctxt "STR_COND_NEXTYEAR"
msgid "next year"
msgstr ""
-#: sc/inc/globstr.hrc:467
+#: sc/inc/globstr.hrc:468
#, fuzzy
msgctxt "STR_COND_AND"
msgid "and"
msgstr "и"
-#: sc/inc/globstr.hrc:468
+#: sc/inc/globstr.hrc:469
msgctxt "STR_ERR_CONDFORMAT_PROTECTED"
msgid "Conditional Formats can not be created, deleted or changed in protected sheets."
msgstr ""
-#: sc/inc/globstr.hrc:469
+#: sc/inc/globstr.hrc:470
msgctxt "STR_EDIT_EXISTING_COND_FORMATS"
msgid ""
"The selected cell already contains conditional formatting. You can either edit the existing conditional format or you define a new overlapping conditional format.\n"
@@ -2337,7 +2342,7 @@ msgid ""
" Do you want to edit the existing conditional format?"
msgstr ""
-#: sc/inc/globstr.hrc:470
+#: sc/inc/globstr.hrc:471
msgctxt "STR_QUERY_FORMULA_RECALC_ONLOAD_ODS"
msgid ""
"This document was last saved by an application other than %PRODUCTNAME. Some formula cells may produce different results when recalculated.\n"
@@ -2345,7 +2350,7 @@ msgid ""
"Do you want to recalculate all formula cells in this document now?"
msgstr ""
-#: sc/inc/globstr.hrc:471
+#: sc/inc/globstr.hrc:472
msgctxt "STR_QUERY_FORMULA_RECALC_ONLOAD_XLS"
msgid ""
"This document was last saved by Excel. Some formula cells may produce different results when recalculated.\n"
@@ -2353,84 +2358,84 @@ msgid ""
"Do you want to recalculate all formula cells now?"
msgstr ""
-#: sc/inc/globstr.hrc:472
+#: sc/inc/globstr.hrc:473
msgctxt "STR_NO_INSERT_DELETE_OVER_PIVOT_TABLE"
msgid "You cannot insert or delete cells when the affected range intersects with pivot table."
msgstr ""
-#: sc/inc/globstr.hrc:473
+#: sc/inc/globstr.hrc:474
msgctxt "STR_DPFIELD_GROUP_BY_SECONDS"
msgid "Seconds"
msgstr "Секунди"
-#: sc/inc/globstr.hrc:474
+#: sc/inc/globstr.hrc:475
msgctxt "STR_DPFIELD_GROUP_BY_MINUTES"
msgid "Minutes"
msgstr "Минути"
-#: sc/inc/globstr.hrc:475
+#: sc/inc/globstr.hrc:476
msgctxt "STR_DPFIELD_GROUP_BY_HOURS"
msgid "Hours"
msgstr "Часови"
-#: sc/inc/globstr.hrc:476
+#: sc/inc/globstr.hrc:477
msgctxt "STR_DPFIELD_GROUP_BY_DAYS"
msgid "Days"
msgstr "Денови"
-#: sc/inc/globstr.hrc:477
+#: sc/inc/globstr.hrc:478
msgctxt "STR_DPFIELD_GROUP_BY_MONTHS"
msgid "Months"
msgstr "Месеци"
-#: sc/inc/globstr.hrc:478
+#: sc/inc/globstr.hrc:479
#, fuzzy
msgctxt "STR_DPFIELD_GROUP_BY_QUARTERS"
msgid "Quarters"
msgstr "Тромесечје"
-#: sc/inc/globstr.hrc:479
+#: sc/inc/globstr.hrc:480
#, fuzzy
msgctxt "STR_DPFIELD_GROUP_BY_YEARS"
msgid "Years"
msgstr "Година"
-#: sc/inc/globstr.hrc:480
+#: sc/inc/globstr.hrc:481
#, fuzzy
msgctxt "STR_INVALIDVAL"
msgid "Invalid target value."
msgstr "Невалидна целна вредност."
-#: sc/inc/globstr.hrc:481
+#: sc/inc/globstr.hrc:482
#, fuzzy
msgctxt "STR_INVALIDVAR"
msgid "Undefined name for variable cell."
msgstr "Недефинирано име за ќелијата за променлива."
-#: sc/inc/globstr.hrc:482
+#: sc/inc/globstr.hrc:483
#, fuzzy
msgctxt "STR_INVALIDFORM"
msgid "Undefined name as formula cell."
msgstr "Недефинирано име како ќелија со формула."
-#: sc/inc/globstr.hrc:483
+#: sc/inc/globstr.hrc:484
msgctxt "STR_NOFORMULA"
msgid "Formula cell must contain a formula."
msgstr ""
-#: sc/inc/globstr.hrc:484
+#: sc/inc/globstr.hrc:485
#, fuzzy
msgctxt "STR_INVALIDINPUT"
msgid "Invalid input."
msgstr "Неправилен внес."
-#: sc/inc/globstr.hrc:485
+#: sc/inc/globstr.hrc:486
#, fuzzy
msgctxt "STR_INVALIDCONDITION"
msgid "Invalid condition."
msgstr "Неправилен услов."
-#: sc/inc/globstr.hrc:486
+#: sc/inc/globstr.hrc:487
msgctxt "STR_QUERYREMOVE"
msgid ""
"Should the entry\n"
@@ -2438,136 +2443,136 @@ msgid ""
"be deleted?"
msgstr ""
-#: sc/inc/globstr.hrc:487
+#: sc/inc/globstr.hrc:488
msgctxt "STR_COPYLIST"
msgid "Copy List"
msgstr ""
-#: sc/inc/globstr.hrc:488
+#: sc/inc/globstr.hrc:489
msgctxt "STR_COPYFROM"
msgid "List from"
msgstr ""
-#: sc/inc/globstr.hrc:489
+#: sc/inc/globstr.hrc:490
msgctxt "STR_COPYERR"
msgid "Cells without text have been ignored."
msgstr ""
-#: sc/inc/globstr.hrc:490
+#: sc/inc/globstr.hrc:491
#, c-format
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%s-click to follow hyperlink:"
msgstr ""
-#: sc/inc/globstr.hrc:491
+#: sc/inc/globstr.hrc:492
msgctxt "STR_CLICKHYPERLINK"
msgid "click to open hyperlink:"
msgstr ""
-#: sc/inc/globstr.hrc:492
+#: sc/inc/globstr.hrc:493
msgctxt "STR_PRINT_PREVIEW_NODATA"
msgid "No Data"
msgstr ""
-#: sc/inc/globstr.hrc:493
+#: sc/inc/globstr.hrc:494
msgctxt "STR_PRINT_PREVIEW_EMPTY_RANGE"
msgid "Print Range Empty"
msgstr ""
-#: sc/inc/globstr.hrc:494
+#: sc/inc/globstr.hrc:495
#, fuzzy
msgctxt "STR_UNDO_CONDFORMAT"
msgid "Conditional Format"
msgstr "Условно форматирање"
-#: sc/inc/globstr.hrc:495
+#: sc/inc/globstr.hrc:496
#, fuzzy
msgctxt "STR_UNDO_CONDFORMAT_LIST"
msgid "Conditional Formats"
msgstr "Условно форматирање"
-#: sc/inc/globstr.hrc:496
+#: sc/inc/globstr.hrc:497
msgctxt "STR_UNDO_FORMULA_TO_VALUE"
msgid "Convert Formula To Value"
msgstr ""
-#: sc/inc/globstr.hrc:497
+#: sc/inc/globstr.hrc:498
msgctxt "STR_UNQUOTED_STRING"
msgid "Strings without quotes are interpreted as column/row labels."
msgstr ""
-#: sc/inc/globstr.hrc:498
+#: sc/inc/globstr.hrc:499
msgctxt "STR_ENTER_VALUE"
msgid "Enter a value!"
msgstr ""
-#: sc/inc/globstr.hrc:499
+#: sc/inc/globstr.hrc:500
msgctxt "STR_TABLE_COUNT"
msgid "Sheet %1 of %2"
msgstr ""
-#: sc/inc/globstr.hrc:500
+#: sc/inc/globstr.hrc:501
msgctxt "STR_FUNCTIONS_FOUND"
msgid "%1 and %2 more"
msgstr ""
-#: sc/inc/globstr.hrc:501
+#: sc/inc/globstr.hrc:502
msgctxt "STR_GENERAL"
msgid "General"
msgstr "Општо"
-#: sc/inc/globstr.hrc:502
+#: sc/inc/globstr.hrc:503
msgctxt "STR_NUMBER"
msgid "Number"
msgstr "Број"
-#: sc/inc/globstr.hrc:503
+#: sc/inc/globstr.hrc:504
msgctxt "STR_PERCENT"
msgid "Percent"
msgstr ""
-#: sc/inc/globstr.hrc:504
+#: sc/inc/globstr.hrc:505
msgctxt "STR_CURRENCY"
msgid "Currency"
msgstr "Валута"
-#: sc/inc/globstr.hrc:505
+#: sc/inc/globstr.hrc:506
msgctxt "STR_DATE"
msgid "Date"
msgstr "Датум"
-#: sc/inc/globstr.hrc:506
+#: sc/inc/globstr.hrc:507
msgctxt "STR_TIME"
msgid "Time"
msgstr "Време"
-#: sc/inc/globstr.hrc:507
+#: sc/inc/globstr.hrc:508
msgctxt "STR_SCIENTIFIC"
msgid "Scientific"
msgstr ""
-#: sc/inc/globstr.hrc:508
+#: sc/inc/globstr.hrc:509
#, fuzzy
msgctxt "STR_FRACTION"
msgid "Fraction"
msgstr "Функција"
-#: sc/inc/globstr.hrc:509
+#: sc/inc/globstr.hrc:510
msgctxt "STR_BOOLEAN_VALUE"
msgid "Boolean Value"
msgstr ""
-#: sc/inc/globstr.hrc:510
+#: sc/inc/globstr.hrc:511
msgctxt "STR_TEXT"
msgid "Text"
msgstr "Текст"
-#: sc/inc/globstr.hrc:511
+#: sc/inc/globstr.hrc:512
msgctxt "STR_QUERY_PIVOTTABLE_DELTAB"
msgid "The selected sheet(s) contain source data of related pivot tables that will be lost. Are you sure you want to delete the selected sheet(s)?"
msgstr ""
-#: sc/inc/globstr.hrc:512
+#: sc/inc/globstr.hrc:513
msgctxt "STR_ERR_NAME_INVALID_CELL_REF"
msgid "Invalid name. Reference to a cell, or a range of cells not allowed."
msgstr ""
@@ -10745,8 +10750,8 @@ msgstr "Режим"
#: sc/inc/scfuncs.hrc:3010
msgctxt "SC_OPCODE_T_TEST"
-msgid "Mode specifies the number of distribution tails to return. 1= one-tailed, 2 = two-tailed distribution"
-msgstr "Режимот го определува видот на тестот. 1= едностран, 2 = двостран тест."
+msgid "Mode specifies the number of distribution tails to return. 1 = one-tailed, 2 = two-tailed distribution"
+msgstr ""
#: sc/inc/scfuncs.hrc:3011
msgctxt "SC_OPCODE_T_TEST"
@@ -10792,8 +10797,8 @@ msgstr "Режим"
#: sc/inc/scfuncs.hrc:3024
msgctxt "SC_OPCODE_T_TEST_MS"
-msgid "Mode specifies the number of distribution tails to return. 1= one-tailed, 2 = two-tailed distribution"
-msgstr "Режимот го определува видот на тестот. 1= едностран, 2 = двостран тест."
+msgid "Mode specifies the number of distribution tails to return. 1 = one-tailed, 2 = two-tailed distribution"
+msgstr ""
#: sc/inc/scfuncs.hrc:3025
msgctxt "SC_OPCODE_T_TEST_MS"
@@ -18625,22 +18630,22 @@ msgctxt "mergecellsdialog|MergeCellsDialog"
msgid "Merge Cells"
msgstr "Спој ќелии"
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:81
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:84
msgctxt "mergecellsdialog|label"
msgid "Some cells are not empty."
msgstr ""
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:96
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:99
msgctxt "mergecellsdialog|move-cells-radio"
msgid "Move the contents of the hidden cells into the first cell"
msgstr ""
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:112
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:115
msgctxt "mergecellsdialog|empty-cells-radio"
msgid "Empty the contents of the hidden cells"
msgstr ""
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:128
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:131
msgctxt "mergecellsdialog|keep-content-radio"
msgid "Keep the contents of the hidden cells"
msgstr ""
diff --git a/source/mk/sd/messages.po b/source/mk/sd/messages.po
index 49e8448157f..3a9e551d6e8 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+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"
@@ -13,175 +13,175 @@ msgstr ""
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-#: sd/inc/DocumentRenderer.hrc:29
+#: sd/inc/DocumentRenderer.hrc:27
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Slides"
msgstr "Слајдови"
-#: sd/inc/DocumentRenderer.hrc:30
+#: sd/inc/DocumentRenderer.hrc:28
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Handouts"
msgstr "Извадоци"
-#: sd/inc/DocumentRenderer.hrc:31
+#: sd/inc/DocumentRenderer.hrc:29
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Notes"
msgstr "Белешки"
-#: sd/inc/DocumentRenderer.hrc:32
+#: sd/inc/DocumentRenderer.hrc:30
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Outline"
msgstr "Главни црти"
-#: sd/inc/DocumentRenderer.hrc:37
+#: sd/inc/DocumentRenderer.hrc:35
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "According to layout"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:38
+#: sd/inc/DocumentRenderer.hrc:36
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "1"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:39
+#: sd/inc/DocumentRenderer.hrc:37
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "2"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:40
+#: sd/inc/DocumentRenderer.hrc:38
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "3"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:41
+#: sd/inc/DocumentRenderer.hrc:39
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "4"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:42
+#: sd/inc/DocumentRenderer.hrc:40
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "6"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:43
+#: sd/inc/DocumentRenderer.hrc:41
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "9"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:48
+#: sd/inc/DocumentRenderer.hrc:46
msgctxt "STR_IMPRESS_PRINT_UI_ORDER_CHOICES"
msgid "Left to right, then down"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:49
+#: sd/inc/DocumentRenderer.hrc:47
msgctxt "STR_IMPRESS_PRINT_UI_ORDER_CHOICES"
msgid "Top to bottom, then right"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:54
+#: sd/inc/DocumentRenderer.hrc:52
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Original colors"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:55
+#: sd/inc/DocumentRenderer.hrc:53
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Grayscale"
msgstr "Сиви нијанси"
-#: sd/inc/DocumentRenderer.hrc:56
+#: sd/inc/DocumentRenderer.hrc:54
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Black & white"
msgstr "Црно-~бело"
-#: sd/inc/DocumentRenderer.hrc:61
+#: sd/inc/DocumentRenderer.hrc:59
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Original size"
msgstr "О~ригинална големина"
-#: sd/inc/DocumentRenderer.hrc:62
+#: sd/inc/DocumentRenderer.hrc:60
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Fit to printable page"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:63
+#: sd/inc/DocumentRenderer.hrc:61
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Distribute on multiple sheets of paper"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:64
+#: sd/inc/DocumentRenderer.hrc:62
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Tile sheet of paper with repeated slides"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:69
+#: sd/inc/DocumentRenderer.hrc:67
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Original size"
msgstr "О~ригинална големина"
-#: sd/inc/DocumentRenderer.hrc:70
+#: sd/inc/DocumentRenderer.hrc:68
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Fit to printable page"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:71
+#: sd/inc/DocumentRenderer.hrc:69
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Distribute on multiple sheets of paper"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:72
+#: sd/inc/DocumentRenderer.hrc:70
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Tile sheet of paper with repeated pages"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:77
+#: sd/inc/DocumentRenderer.hrc:75
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "All pages"
msgstr "Сите страници"
-#: sd/inc/DocumentRenderer.hrc:78
+#: sd/inc/DocumentRenderer.hrc:76
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "Front sides / right pages"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:79
+#: sd/inc/DocumentRenderer.hrc:77
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "Back sides / left pages"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:84
+#: sd/inc/DocumentRenderer.hrc:82
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~All slides"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:85
+#: sd/inc/DocumentRenderer.hrc:83
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~Slides"
msgstr "Слајдови"
-#: sd/inc/DocumentRenderer.hrc:86
+#: sd/inc/DocumentRenderer.hrc:84
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Se~lection"
msgstr "Избор"
-#: sd/inc/DocumentRenderer.hrc:91
+#: sd/inc/DocumentRenderer.hrc:89
#, fuzzy
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~All pages"
msgstr "Сите страници"
-#: sd/inc/DocumentRenderer.hrc:92
+#: sd/inc/DocumentRenderer.hrc:90
#, fuzzy
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Pa~ges"
msgstr "Страници"
-#: sd/inc/DocumentRenderer.hrc:93
+#: sd/inc/DocumentRenderer.hrc:91
#, fuzzy
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Se~lection"
diff --git a/source/mk/svx/messages.po b/source/mk/svx/messages.po
index c41e4004ffb..06219e465db 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: 2018-05-16 16:53+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+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"
@@ -5533,7 +5533,7 @@ msgstr ""
#: svx/uiconfig/ui/safemodedialog.ui:432
msgctxt "safemodedialog|btn_create_zip"
-msgid "Create Zip Archive from User Profile"
+msgid "Archive User Profile"
msgstr ""
#: svx/uiconfig/ui/safemodedialog.ui:445
@@ -9193,9 +9193,9 @@ msgid "Red"
msgstr "Црвена"
#: include/svx/strings.hrc:565
-msgctxt "RID_SVXSTR_COLOR_VIOLET"
-msgid "Violet"
-msgstr "Виолетова"
+msgctxt "RID_SVXSTR_COLOR_MAGENTA"
+msgid "Magenta"
+msgstr "Магента"
#: include/svx/strings.hrc:566
msgctxt "RID_SVXSTR_COLOR_PURPLE"
@@ -9260,8 +9260,8 @@ msgid "Light Red"
msgstr ""
#: include/svx/strings.hrc:579
-msgctxt "RID_SVXSTR_COLOR_LIGHTVIOLET"
-msgid "Light Violet"
+msgctxt "RID_SVXSTR_COLOR_LIGHTMAGENTA"
+msgid "Light Magenta"
msgstr ""
#: include/svx/strings.hrc:580
@@ -9328,8 +9328,8 @@ msgid "Dark Red"
msgstr "Темноцрвена"
#: include/svx/strings.hrc:593
-msgctxt "RID_SVXSTR_COLOR_DARKVIOLET1"
-msgid "Dark Violet"
+msgctxt "RID_SVXSTR_COLOR_DARKMAGENTA"
+msgid "Dark Magenta"
msgstr ""
#: include/svx/strings.hrc:594
@@ -9364,55 +9364,55 @@ msgstr ""
#. Elements of the Tonal color palette
#: include/svx/strings.hrc:601
+msgctxt "RID_SVXSTR_COLOR_VIOLET"
+msgid "Violet"
+msgstr "Виолетова"
+
+#: include/svx/strings.hrc:602
msgctxt "RID_SVXSTR_COLOR_VIOLET_OUG"
msgid "Violet (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:602
+#: include/svx/strings.hrc:603
msgctxt "RID_SVXSTR_COLOR_BLUE_OUG"
msgid "Blue (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:603
+#: include/svx/strings.hrc:604
msgctxt "RID_SVXSTR_COLOR_AZURE_OUG"
msgid "Azure (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:604
+#: include/svx/strings.hrc:605
msgctxt "RID_SVXSTR_COLOR_SPRINGGREEN_OUG"
msgid "Spring Green (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:605
+#: include/svx/strings.hrc:606
msgctxt "RID_SVXSTR_COLOR_GREEN_OUG"
msgid "Green (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:606
+#: include/svx/strings.hrc:607
msgctxt "RID_SVXSTR_COLOR_CHARTREUSEGREEN_OUG"
msgid "Chartreuse Green (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:607
+#: include/svx/strings.hrc:608
msgctxt "RID_SVXSTR_COLOR_ORANGE_OUG"
msgid "Orange (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:608
+#: include/svx/strings.hrc:609
msgctxt "RID_SVXSTR_COLOR_RED_OUG"
msgid "Red (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:609
+#: include/svx/strings.hrc:610
msgctxt "RID_SVXSTR_COLOR_ROSE_OUG"
msgid "Rose (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:610
-msgctxt "RID_SVXSTR_COLOR_MAGENTA"
-msgid "Magenta"
-msgstr "Магента"
-
#: include/svx/strings.hrc:611
msgctxt "RID_SVXSTR_COLOR_AZURE"
msgid "Azure"
@@ -12621,12 +12621,12 @@ msgstr ""
#: include/svx/strings.hrc:1273
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_6"
-msgid "Check mark bullets"
+msgid "Cross mark bullets"
msgstr ""
#: include/svx/strings.hrc:1274
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_7"
-msgid "Tick mark bullets"
+msgid "Check mark bullets"
msgstr ""
#: include/svx/strings.hrc:1275
diff --git a/source/mk/sw/messages.po b/source/mk/sw/messages.po
index a5c08b0d539..5dd4fc23b32 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: 2018-05-22 13:17+0200\n"
+"POT-Creation-Date: 2018-06-12 14:41+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"
@@ -1236,13 +1236,13 @@ msgstr "Наводници"
#: sw/inc/strings.hrc:172
msgctxt "STR_POOLCOLL_TOX_ILLUSH"
-msgid "Illustration Index Heading"
-msgstr "Заглавие на индекс на илустрации"
+msgid "Figure Index Heading"
+msgstr ""
#: sw/inc/strings.hrc:173
msgctxt "STR_POOLCOLL_TOX_ILLUS1"
-msgid "Illustration Index 1"
-msgstr "Индекс на илустрации 1"
+msgid "Figure Index 1"
+msgstr ""
#: sw/inc/strings.hrc:174
#, fuzzy
@@ -3730,10 +3730,9 @@ msgid "Table of Objects"
msgstr ""
#: sw/inc/strings.hrc:672
-#, fuzzy
msgctxt "STR_TOX_ILL"
-msgid "Illustration Index"
-msgstr "Индекс на илустрации 1"
+msgid "Table of Figures"
+msgstr ""
#: sw/inc/strings.hrc:673
#, c-format
@@ -9741,81 +9740,81 @@ msgctxt "footnotepage|label5"
msgid "Continuation Notice"
msgstr "Известување за продолжување"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:49
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:55
#, fuzzy
msgctxt "footnotesendnotestabpage|ftnntnum"
msgid "_Restart numbering"
msgstr "Рестартирај нумерирање"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:91
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:93
#, fuzzy
msgctxt "footnotesendnotestabpage|ftnoffset_label"
msgid "_Start at:"
msgstr "Почн~и со"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:112
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:111
msgctxt "footnotesendnotestabpage|ftnntnumfmt"
msgid "Custom _format"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:155
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:150
#, fuzzy
msgctxt "footnotesendnotestabpage|ftnsuffix_label"
msgid "Aft_er:"
msgstr "По"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:199
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:188
#, fuzzy
msgctxt "footnotesendnotestabpage|ftnprefix_label"
msgid "Be_fore:"
msgstr "Пред"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:228
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:212
msgctxt "footnotesendnotestabpage|ftnntattextend"
msgid "Collec_t at end of text"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:252
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:234
#, fuzzy
msgctxt "footnotesendnotestabpage|label1"
msgid "Footnotes"
msgstr "Фуснота"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:289
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:271
msgctxt "footnotesendnotestabpage|endntattextend"
msgid "C_ollect at end of section"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:315
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:295
#, fuzzy
msgctxt "footnotesendnotestabpage|endntnum"
msgid "_Restart numbering"
msgstr "Рестартирај нумерирање"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:357
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:333
#, fuzzy
msgctxt "footnotesendnotestabpage|endoffset_label"
msgid "_Start at:"
msgstr "Почн~и со"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:378
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:351
msgctxt "footnotesendnotestabpage|endntnumfmt"
msgid "_Custom format"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:421
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:390
#, fuzzy
msgctxt "footnotesendnotestabpage|endsuffix_label"
msgid "Aft_er:"
msgstr "По"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:465
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:428
#, fuzzy
msgctxt "footnotesendnotestabpage|endprefix_label"
msgid "Be_fore:"
msgstr "Пред"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:500
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:458
#, fuzzy
msgctxt "footnotesendnotestabpage|label2"
msgid "Endnotes"
@@ -9847,29 +9846,29 @@ msgctxt "formatsectiondialog|notes"
msgid "Footnotes/Endnotes"
msgstr "~Фусноти/Забелешки..."
-#: sw/uiconfig/swriter/ui/formattablepage.ui:63
+#: sw/uiconfig/swriter/ui/formattablepage.ui:77
#, fuzzy
msgctxt "formattablepage|nameft"
msgid "_Name"
msgstr "Име"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:79
+#: sw/uiconfig/swriter/ui/formattablepage.ui:91
#, fuzzy
msgctxt "formattablepage|widthft"
msgid "W_idth"
msgstr "Ширина"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:110
+#: sw/uiconfig/swriter/ui/formattablepage.ui:120
msgctxt "formattablepage|relwidth"
msgid "Relati_ve"
msgstr ""
-#: sw/uiconfig/swriter/ui/formattablepage.ui:155
+#: sw/uiconfig/swriter/ui/formattablepage.ui:160
msgctxt "formattablepage|label45"
msgid "Properties"
msgstr "Својства"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:194
+#: sw/uiconfig/swriter/ui/formattablepage.ui:195
#, fuzzy
msgctxt "formattablepage|leftft"
msgid "Lef_t"
@@ -9881,71 +9880,71 @@ msgctxt "formattablepage|rightft"
msgid "Ri_ght"
msgstr "Десно"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:228
+#: sw/uiconfig/swriter/ui/formattablepage.ui:226
#, fuzzy
msgctxt "formattablepage|aboveft"
msgid "_Above"
msgstr "Над"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:245
+#: sw/uiconfig/swriter/ui/formattablepage.ui:241
#, fuzzy
msgctxt "formattablepage|belowft"
msgid "_Below"
msgstr "Под"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:320
+#: sw/uiconfig/swriter/ui/formattablepage.ui:311
msgctxt "formattablepage|label46"
msgid "Spacing"
msgstr "Растојание"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:362
+#: sw/uiconfig/swriter/ui/formattablepage.ui:349
#, fuzzy
msgctxt "formattablepage|full"
msgid "A_utomatic"
msgstr "Автоматски"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:380
+#: sw/uiconfig/swriter/ui/formattablepage.ui:365
#, fuzzy
msgctxt "formattablepage|left"
msgid "_Left"
msgstr "Лево"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:398
+#: sw/uiconfig/swriter/ui/formattablepage.ui:381
#, fuzzy
msgctxt "formattablepage|fromleft"
msgid "_From left"
msgstr "Од лево"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:416
+#: sw/uiconfig/swriter/ui/formattablepage.ui:397
#, fuzzy
msgctxt "formattablepage|right"
msgid "R_ight"
msgstr "Десно"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:435
+#: sw/uiconfig/swriter/ui/formattablepage.ui:413
#, fuzzy
msgctxt "formattablepage|center"
msgid "_Center"
msgstr "Во средина"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:453
+#: sw/uiconfig/swriter/ui/formattablepage.ui:429
#, fuzzy
msgctxt "formattablepage|free"
msgid "_Manual"
msgstr "Рачно"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:478
+#: sw/uiconfig/swriter/ui/formattablepage.ui:452
msgctxt "formattablepage|label43"
msgid "Alignment"
msgstr "Порамнување"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:522
+#: sw/uiconfig/swriter/ui/formattablepage.ui:491
#, fuzzy
msgctxt "formattablepage|label53"
msgid "Text _direction"
msgstr "Насока на текстот"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:553
+#: sw/uiconfig/swriter/ui/formattablepage.ui:519
#, fuzzy
msgctxt "formattablepage|label44"
msgid "Properties "
@@ -10333,24 +10332,29 @@ msgctxt "headerfootermenu|insert_pagenumber"
msgid "Insert Page Number"
msgstr ""
-#: sw/uiconfig/swriter/ui/indentpage.ui:52
+#: sw/uiconfig/swriter/ui/headerfootermenu.ui:42
+msgctxt "headerfootermenu|insert_pagecount"
+msgid "Insert Page Count"
+msgstr ""
+
+#: sw/uiconfig/swriter/ui/indentpage.ui:57
#, fuzzy
msgctxt "indentpage|label1"
msgid "_Before section"
msgstr "Пред секција"
-#: sw/uiconfig/swriter/ui/indentpage.ui:67
+#: sw/uiconfig/swriter/ui/indentpage.ui:71
#, fuzzy
msgctxt "indentpage|label3"
msgid "_After section"
msgstr "После секција"
-#: sw/uiconfig/swriter/ui/indentpage.ui:113
+#: sw/uiconfig/swriter/ui/indentpage.ui:115
msgctxt "indentpage|label2"
msgid "Indent"
msgstr "Вовлекување"
-#: sw/uiconfig/swriter/ui/indentpage.ui:142
+#: sw/uiconfig/swriter/ui/indentpage.ui:155
msgctxt "indentpage|preview-atkobject"
msgid "Example"
msgstr "Пример"
@@ -14154,7 +14158,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:68
msgctxt "optcompatpage|format"
-msgid "MS Word-compatible trailing blanks"
+msgid "Word-compatible trailing blanks"
msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:69
@@ -14164,7 +14168,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:70
msgctxt "optcompatpage|format"
-msgid "A database field (e.g., MailMerge) with empty value hides its paragraph"
+msgid "Hide paragraphs of database fields (e.g., mail merge) with an empty value"
msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:71
@@ -17066,136 +17070,136 @@ msgctxt "tableproperties|background"
msgid "Background"
msgstr "Подлога"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:25
-msgctxt "tabletextflowpage|liststore1"
-msgid "Horizontal"
-msgstr "Хоризонтално"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:29
-msgctxt "tabletextflowpage|liststore1"
-msgid "Vertical"
-msgstr "Вертикално"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:33
-msgctxt "tabletextflowpage|liststore1"
-msgid "Use superordinate object settings"
-msgstr "Користи поставувања за надредениот објект"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:47
-#, fuzzy
-msgctxt "tabletextflowpage|liststore2"
-msgid "Top"
-msgstr "Горе"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:51
-msgctxt "tabletextflowpage|liststore2"
-msgid "Centered"
-msgstr "Центрирано"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:55
-#, fuzzy
-msgctxt "tabletextflowpage|liststore2"
-msgid "Bottom"
-msgstr "Долу"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:97
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:53
#, fuzzy
msgctxt "tabletextflowpage|break"
msgid "_Break"
msgstr "~Прелом"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:112
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:68
#, fuzzy
msgctxt "tabletextflowpage|page"
msgid "_Page"
msgstr "Страница"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:132
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:87
#, fuzzy
msgctxt "tabletextflowpage|column"
msgid "Col_umn"
msgstr "Колона"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:151
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:106
#, fuzzy
msgctxt "tabletextflowpage|before"
msgid "Be_fore"
msgstr "Пред"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:171
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:125
#, fuzzy
msgctxt "tabletextflowpage|after"
msgid "_After"
msgstr "По"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:203
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:158
#, fuzzy
msgctxt "tabletextflowpage|pagestyle"
msgid "With Page St_yle"
msgstr "Уреди стил на страница"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:224
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:177
#, fuzzy
msgctxt "tabletextflowpage|pagenoft"
msgid "Page _number"
msgstr "Број на страница"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:257
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:213
#, fuzzy
msgctxt "tabletextflowpage|pagestylelb-atkobject"
msgid "With Page Style"
msgstr "Уреди стил на страница"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:274
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:230
msgctxt "tabletextflowpage|split"
msgid "Allow _table to split across pages and columns"
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:289
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:245
#, fuzzy
msgctxt "tabletextflowpage|splitrow"
msgid "Allow row to break a_cross pages and columns"
msgstr "Дозволи прелом на редот преку страници и колони"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:306
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:262
#, fuzzy
msgctxt "tabletextflowpage|keep"
msgid "_Keep with next paragraph"
msgstr "Задржи со следниот пасус"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:328
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:284
msgctxt "tabletextflowpage|label40"
msgid "Text _orientation"
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:361
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:298
+msgctxt "tabletextflowpage|liststore1"
+msgid "Horizontal"
+msgstr "Хоризонтално"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:299
+msgctxt "tabletextflowpage|liststore1"
+msgid "Vertical"
+msgstr "Вертикално"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:300
+msgctxt "tabletextflowpage|liststore1"
+msgid "Use superordinate object settings"
+msgstr "Користи поставувања за надредениот објект"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:321
#, fuzzy
msgctxt "tabletextflowpage|headline"
msgid "R_epeat heading"
msgstr "Повтори заглавие"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:383
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:343
msgctxt "tabletextflowpage|label38"
msgid "The first "
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:396
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:356
#, fuzzy
msgctxt "tabletextflowpage|label39"
msgid "rows"
msgstr "ред"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:434
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:395
msgctxt "tabletextflowpage|label35"
msgid "Text Flow"
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:467
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:428
msgctxt "tabletextflowpage|label41"
msgid "_Vertical alignment"
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:495
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:442
+#, fuzzy
+msgctxt "tabletextflowpage|liststore2"
+msgid "Top"
+msgstr "Горе"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:443
+msgctxt "tabletextflowpage|liststore2"
+msgid "Centered"
+msgstr "Центрирано"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:444
+#, fuzzy
+msgctxt "tabletextflowpage|liststore2"
+msgid "Bottom"
+msgstr "Долу"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:460
msgctxt "tabletextflowpage|label36"
msgid "Alignment"
msgstr "Порамнување"
@@ -18016,10 +18020,9 @@ msgid "Alphabetical Index"
msgstr ""
#: sw/uiconfig/swriter/ui/tocindexpage.ui:58
-#, fuzzy
msgctxt "tocindexpage|liststore1"
-msgid "Illustration Index"
-msgstr "Индекс на илустрации 1"
+msgid "Table of Figures"
+msgstr ""
#: sw/uiconfig/swriter/ui/tocindexpage.ui:62
msgctxt "tocindexpage|liststore1"
diff --git a/source/mk/writerperfect/messages.po b/source/mk/writerperfect/messages.po
index bc970f61913..d4a8cd649c2 100644
--- a/source/mk/writerperfect/messages.po
+++ b/source/mk/writerperfect/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-16 16:54+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+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"
@@ -65,99 +65,99 @@ msgctxt "exportepub|generalft"
msgid "General"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:122
+#: writerperfect/uiconfig/ui/exportepub.ui:121
#, fuzzy
msgctxt "exportepub|versionft"
msgid "Version:"
msgstr "~Верзија:"
-#: writerperfect/uiconfig/ui/exportepub.ui:139
+#: writerperfect/uiconfig/ui/exportepub.ui:138
msgctxt "exportepub|epub3"
msgid "EPUB 3.0"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:140
+#: writerperfect/uiconfig/ui/exportepub.ui:139
msgctxt "exportepub|epub2"
msgid "EPUB 2.0"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:175
+#: writerperfect/uiconfig/ui/exportepub.ui:174
msgctxt "exportepub|splitft"
msgid "Split method:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:192
+#: writerperfect/uiconfig/ui/exportepub.ui:191
#, fuzzy
msgctxt "exportepub|splitpage"
msgid "Page break"
msgstr "Прелом на страница"
-#: writerperfect/uiconfig/ui/exportepub.ui:193
+#: writerperfect/uiconfig/ui/exportepub.ui:192
msgctxt "exportepub|splitheading"
msgid "Heading"
msgstr "Заглавие"
-#: writerperfect/uiconfig/ui/exportepub.ui:228
+#: writerperfect/uiconfig/ui/exportepub.ui:227
msgctxt "exportepub|layoutft"
msgid "Layout method:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:245
+#: writerperfect/uiconfig/ui/exportepub.ui:244
msgctxt "exportepub|layoutreflowable"
msgid "Reflowable"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:246
+#: writerperfect/uiconfig/ui/exportepub.ui:245
msgctxt "exportepub|layoutfixed"
msgid "Fixed"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:281
+#: writerperfect/uiconfig/ui/exportepub.ui:280
msgctxt "exportepub|coverimageft"
msgid "Custom cover image:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:311
+#: writerperfect/uiconfig/ui/exportepub.ui:310
msgctxt "exportepub|coverbutton"
msgid "Browse..."
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:355
+#: writerperfect/uiconfig/ui/exportepub.ui:354
msgctxt "exportepub|mediadirft"
msgid "Custom media directory:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:385
+#: writerperfect/uiconfig/ui/exportepub.ui:384
msgctxt "exportepub|mediabutton"
msgid "Browse..."
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:429
+#: writerperfect/uiconfig/ui/exportepub.ui:428
msgctxt "exportepub|metadataft"
msgid "Metadata"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:470
+#: writerperfect/uiconfig/ui/exportepub.ui:468
msgctxt "exportepub|identifierft"
msgid "Identifier:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:485
+#: writerperfect/uiconfig/ui/exportepub.ui:483
msgctxt "exportepub|titleft"
msgid "Title:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:511
+#: writerperfect/uiconfig/ui/exportepub.ui:509
msgctxt "exportepub|authorft"
msgid "Author:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:537
+#: writerperfect/uiconfig/ui/exportepub.ui:535
msgctxt "exportepub|languageft"
msgid "Language:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:563
+#: writerperfect/uiconfig/ui/exportepub.ui:561
msgctxt "exportepub|dateft"
msgid "Date:"
msgstr ""
diff --git a/source/ml/cui/messages.po b/source/ml/cui/messages.po
index 274160d61fa..2774a0cf0a8 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+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"
@@ -10135,106 +10135,106 @@ msgctxt "positionsizedialog|PositionAndSizeDialog"
msgid "Position and Size"
msgstr "സ്ഥാനവും അകലവും"
-#: cui/uiconfig/ui/positionsizedialog.ui:107
+#: cui/uiconfig/ui/positionsizedialog.ui:136
#, fuzzy
msgctxt "positionsizedialog|RID_SVXPAGE_POSITION_SIZE"
msgid "Position and Size"
msgstr "സ്ഥാനവും അകലവും"
-#: cui/uiconfig/ui/positionsizedialog.ui:129
+#: cui/uiconfig/ui/positionsizedialog.ui:182
#, fuzzy
msgctxt "positionsizedialog|RID_SVXPAGE_SWPOSSIZE"
msgid "Position and Size"
msgstr "സ്ഥാനവും അകലവും"
-#: cui/uiconfig/ui/positionsizedialog.ui:152
+#: cui/uiconfig/ui/positionsizedialog.ui:229
msgctxt "positionsizedialog|RID_SVXPAGE_ANGLE"
msgid "Rotation"
msgstr "കറങ്ങല്"
-#: cui/uiconfig/ui/positionsizedialog.ui:175
+#: cui/uiconfig/ui/positionsizedialog.ui:276
msgctxt "positionsizedialog|RID_SVXPAGE_SLANT"
msgid "Slant & Corner Radius"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:40
+#: cui/uiconfig/ui/possizetabpage.ui:61
#, fuzzy
msgctxt "possizetabpage|FT_POS_X"
msgid "Position _X:"
msgstr "സ്ഥാനം"
-#: cui/uiconfig/ui/possizetabpage.ui:56
+#: cui/uiconfig/ui/possizetabpage.ui:75
#, fuzzy
msgctxt "possizetabpage|FT_POS_Y"
msgid "Position _Y:"
msgstr "സ്ഥാനം"
-#: cui/uiconfig/ui/possizetabpage.ui:110
+#: cui/uiconfig/ui/possizetabpage.ui:128
msgctxt "possizetabpage|FT_POSREFERENCE"
msgid "_Base point:"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:148
+#: cui/uiconfig/ui/possizetabpage.ui:182
msgctxt "possizetabpage|label1"
msgid "Position"
msgstr "സ്ഥാനം"
-#: cui/uiconfig/ui/possizetabpage.ui:190
+#: cui/uiconfig/ui/possizetabpage.ui:224
#, fuzzy
msgctxt "possizetabpage|FT_WIDTH"
msgid "Wi_dth:"
msgstr "വീതി"
-#: cui/uiconfig/ui/possizetabpage.ui:206
+#: cui/uiconfig/ui/possizetabpage.ui:238
#, fuzzy
msgctxt "possizetabpage|FT_HEIGHT"
msgid "H_eight:"
msgstr "ഉയരം"
-#: cui/uiconfig/ui/possizetabpage.ui:247
+#: cui/uiconfig/ui/possizetabpage.ui:276
#, fuzzy
msgctxt "possizetabpage|CBX_SCALE"
msgid "_Keep ratio"
msgstr "റേഷ്യോ സൂക്ഷിയ്ക്കുക"
-#: cui/uiconfig/ui/possizetabpage.ui:279
+#: cui/uiconfig/ui/possizetabpage.ui:307
msgctxt "possizetabpage|FT_SIZEREFERENCE"
msgid "Base _point:"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:317
+#: cui/uiconfig/ui/possizetabpage.ui:361
msgctxt "possizetabpage|label2"
msgid "Size"
msgstr "വ്യാപ്തി"
-#: cui/uiconfig/ui/possizetabpage.ui:356
+#: cui/uiconfig/ui/possizetabpage.ui:401
#, fuzzy
msgctxt "possizetabpage|TSB_POSPROTECT"
msgid "Positio_n"
msgstr "സ്ഥാനം"
-#: cui/uiconfig/ui/possizetabpage.ui:373
+#: cui/uiconfig/ui/possizetabpage.ui:418
msgctxt "possizetabpage|TSB_SIZEPROTECT"
msgid "_Size"
msgstr "പരിമാണം"
-#: cui/uiconfig/ui/possizetabpage.ui:397
+#: cui/uiconfig/ui/possizetabpage.ui:441
#, fuzzy
msgctxt "possizetabpage|label3"
msgid "Protect"
msgstr "സംരക്ഷിക്കുക"
-#: cui/uiconfig/ui/possizetabpage.ui:430
+#: cui/uiconfig/ui/possizetabpage.ui:475
msgctxt "possizetabpage|TSB_AUTOGROW_WIDTH"
msgid "_Fit width to text"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:447
+#: cui/uiconfig/ui/possizetabpage.ui:492
msgctxt "possizetabpage|TSB_AUTOGROW_HEIGHT"
msgid "Fit _height to text"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:471
+#: cui/uiconfig/ui/possizetabpage.ui:515
msgctxt "possizetabpage|label4"
msgid "Adapt"
msgstr ""
@@ -10447,52 +10447,52 @@ msgctxt "recordnumberdialog|label2"
msgid "go to record"
msgstr ""
-#: cui/uiconfig/ui/rotationtabpage.ui:52
+#: cui/uiconfig/ui/rotationtabpage.ui:56
#, fuzzy
msgctxt "rotationtabpage|FT_POS_X"
msgid "Position _X:"
msgstr "സ്ഥാനം"
-#: cui/uiconfig/ui/rotationtabpage.ui:66
+#: cui/uiconfig/ui/rotationtabpage.ui:70
#, fuzzy
msgctxt "rotationtabpage|FT_POS_Y"
msgid "Position _Y:"
msgstr "സ്ഥാനം"
-#: cui/uiconfig/ui/rotationtabpage.ui:116
+#: cui/uiconfig/ui/rotationtabpage.ui:123
#, fuzzy
msgctxt "rotationtabpage|FT_POSPRESETS"
msgid "_Default settings:"
msgstr "സ്വതവേയുള്ള സജ്ജീകരണങ്ങള്‍"
-#: cui/uiconfig/ui/rotationtabpage.ui:130
+#: cui/uiconfig/ui/rotationtabpage.ui:151
msgctxt "rotationtabpage|CTL_RECT|tooltip_text"
msgid "Rotation point"
msgstr ""
-#: cui/uiconfig/ui/rotationtabpage.ui:155
+#: cui/uiconfig/ui/rotationtabpage.ui:178
msgctxt "rotationtabpage|label1"
msgid "Pivot Point"
msgstr ""
-#: cui/uiconfig/ui/rotationtabpage.ui:197
+#: cui/uiconfig/ui/rotationtabpage.ui:220
#, fuzzy
msgctxt "rotationtabpage|FT_ANGLE"
msgid "_Angle:"
msgstr "കോണം"
-#: cui/uiconfig/ui/rotationtabpage.ui:238
+#: cui/uiconfig/ui/rotationtabpage.ui:263
#, fuzzy
msgctxt "rotationtabpage|FT_ANGLEPRESETS"
msgid "Default _settings:"
msgstr "സ്വതവേയുള്ള സജ്ജീകരണങ്ങള്‍"
-#: cui/uiconfig/ui/rotationtabpage.ui:252
+#: cui/uiconfig/ui/rotationtabpage.ui:287
msgctxt "rotationtabpage|CTL_ANGLE|tooltip_text"
msgid "Rotation Angle"
msgstr "Rotation Angle"
-#: cui/uiconfig/ui/rotationtabpage.ui:277
+#: cui/uiconfig/ui/rotationtabpage.ui:314
msgctxt "rotationtabpage|label2"
msgid "Rotation Angle"
msgstr "Rotation Angle"
@@ -10885,56 +10885,56 @@ msgctxt "similaritysearchdialog|relaxbox"
msgid "_Combine"
msgstr "യോജിപ്പിക്കുക"
-#: cui/uiconfig/ui/slantcornertabpage.ui:50
+#: cui/uiconfig/ui/slantcornertabpage.ui:70
msgctxt "slantcornertabpage|label5"
msgid "_X:"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:88
+#: cui/uiconfig/ui/slantcornertabpage.ui:110
msgctxt "slantcornertabpage|label6"
msgid "_Y:"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:125
+#: cui/uiconfig/ui/slantcornertabpage.ui:149
msgctxt "slantcornertabpage|label3"
msgid "Control Point 1"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:159
+#: cui/uiconfig/ui/slantcornertabpage.ui:183
#, fuzzy
msgctxt "slantcornertabpage|FT_RADIUS"
msgid "_Radius:"
msgstr "വ്യാസാര്ദ്ധം"
-#: cui/uiconfig/ui/slantcornertabpage.ui:189
+#: cui/uiconfig/ui/slantcornertabpage.ui:214
#, fuzzy
msgctxt "slantcornertabpage|label1"
msgid "Corner Radius"
msgstr "കോര്‍ണര്‍ റേഡിയസ്"
-#: cui/uiconfig/ui/slantcornertabpage.ui:223
+#: cui/uiconfig/ui/slantcornertabpage.ui:248
#, fuzzy
msgctxt "slantcornertabpage|FT_ANGLE"
msgid "_Angle:"
msgstr "കോണം"
-#: cui/uiconfig/ui/slantcornertabpage.ui:253
+#: cui/uiconfig/ui/slantcornertabpage.ui:279
#, fuzzy
msgctxt "slantcornertabpage|label2"
msgid "Slant"
msgstr "സ്ലാന്റ്"
-#: cui/uiconfig/ui/slantcornertabpage.ui:294
+#: cui/uiconfig/ui/slantcornertabpage.ui:320
msgctxt "slantcornertabpage|label4"
msgid "_X:"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:332
+#: cui/uiconfig/ui/slantcornertabpage.ui:360
msgctxt "slantcornertabpage|label7"
msgid "_Y:"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:369
+#: cui/uiconfig/ui/slantcornertabpage.ui:399
msgctxt "slantcornertabpage|label8"
msgid "Control Point 2"
msgstr ""
@@ -11228,123 +11228,123 @@ msgctxt "storedwebconnectiondialog|change"
msgid "_Change Password..."
msgstr "രഹസ്യവാക്ക് മാറ്റു_ക..."
-#: cui/uiconfig/ui/swpossizepage.ui:74
+#: cui/uiconfig/ui/swpossizepage.ui:85
msgctxt "swpossizepage|widthft"
msgid "_Width:"
msgstr "വീതി"
-#: cui/uiconfig/ui/swpossizepage.ui:111
+#: cui/uiconfig/ui/swpossizepage.ui:123
#, fuzzy
msgctxt "swpossizepage|heightft"
msgid "H_eight:"
msgstr "ഉയരം"
-#: cui/uiconfig/ui/swpossizepage.ui:128
+#: cui/uiconfig/ui/swpossizepage.ui:141
#, fuzzy
msgctxt "swpossizepage|ratio"
msgid "_Keep ratio"
msgstr "റേഷ്യോ സൂക്ഷിയ്ക്കുക"
-#: cui/uiconfig/ui/swpossizepage.ui:149
+#: cui/uiconfig/ui/swpossizepage.ui:162
msgctxt "swpossizepage|label2"
msgid "Size"
msgstr "വ്യാപ്തി"
-#: cui/uiconfig/ui/swpossizepage.ui:205
+#: cui/uiconfig/ui/swpossizepage.ui:218
#, fuzzy
msgctxt "swpossizepage|topage"
msgid "To _page"
msgstr "ഏതു് താള്‍"
-#: cui/uiconfig/ui/swpossizepage.ui:222
+#: cui/uiconfig/ui/swpossizepage.ui:234
#, fuzzy
msgctxt "swpossizepage|topara"
msgid "To paragrap_h"
msgstr "ഖണ്ഡിക"
-#: cui/uiconfig/ui/swpossizepage.ui:238
+#: cui/uiconfig/ui/swpossizepage.ui:250
#, fuzzy
msgctxt "swpossizepage|tochar"
msgid "To cha_racter"
msgstr "അക്ഷരമായി"
-#: cui/uiconfig/ui/swpossizepage.ui:254
+#: cui/uiconfig/ui/swpossizepage.ui:266
#, fuzzy
msgctxt "swpossizepage|aschar"
msgid "_As character"
msgstr "അക്ഷരമായി"
-#: cui/uiconfig/ui/swpossizepage.ui:270
+#: cui/uiconfig/ui/swpossizepage.ui:282
#, fuzzy
msgctxt "swpossizepage|toframe"
msgid "To _frame"
msgstr "ഫ്രെയിം"
-#: cui/uiconfig/ui/swpossizepage.ui:292
+#: cui/uiconfig/ui/swpossizepage.ui:304
msgctxt "swpossizepage|label1"
msgid "Anchor"
msgstr "ചേര്ക്കുക"
-#: cui/uiconfig/ui/swpossizepage.ui:333
+#: cui/uiconfig/ui/swpossizepage.ui:344
#, fuzzy
msgctxt "swpossizepage|horiposft"
msgid "Hori_zontal:"
msgstr "കുറുകെ"
-#: cui/uiconfig/ui/swpossizepage.ui:347
+#: cui/uiconfig/ui/swpossizepage.ui:358
msgctxt "swpossizepage|horibyft"
msgid "b_y:"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:361
+#: cui/uiconfig/ui/swpossizepage.ui:372
msgctxt "swpossizepage|vertbyft"
msgid "_by:"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:375
+#: cui/uiconfig/ui/swpossizepage.ui:386
#, fuzzy
msgctxt "swpossizepage|horitoft"
msgid "_to:"
msgstr "വരെ"
-#: cui/uiconfig/ui/swpossizepage.ui:421
+#: cui/uiconfig/ui/swpossizepage.ui:433
#, fuzzy
msgctxt "swpossizepage|vertposft"
msgid "_Vertical:"
msgstr "കുത്തനെ"
-#: cui/uiconfig/ui/swpossizepage.ui:457
+#: cui/uiconfig/ui/swpossizepage.ui:470
msgctxt "swpossizepage|verttoft"
msgid "t_o:"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:478
+#: cui/uiconfig/ui/swpossizepage.ui:492
msgctxt "swpossizepage|mirror"
msgid "_Mirror on even pages"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:495
+#: cui/uiconfig/ui/swpossizepage.ui:509
msgctxt "swpossizepage|followtextflow"
msgid "Follow te_xt flow"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:518
+#: cui/uiconfig/ui/swpossizepage.ui:532
msgctxt "swpossizepage|label11"
msgid "Position"
msgstr "സ്ഥാനം"
-#: cui/uiconfig/ui/swpossizepage.ui:549
+#: cui/uiconfig/ui/swpossizepage.ui:563
#, fuzzy
msgctxt "swpossizepage|pos"
msgid "Positio_n"
msgstr "സ്ഥാനം"
-#: cui/uiconfig/ui/swpossizepage.ui:565
+#: cui/uiconfig/ui/swpossizepage.ui:579
msgctxt "swpossizepage|size"
msgid "_Size"
msgstr "പരിമാണം"
-#: cui/uiconfig/ui/swpossizepage.ui:587
+#: cui/uiconfig/ui/swpossizepage.ui:601
#, fuzzy
msgctxt "swpossizepage|label3"
msgid "Protect"
@@ -11549,13 +11549,13 @@ msgctxt "textattrtabpage|label2"
msgid "Spacing to Borders"
msgstr ""
-#: cui/uiconfig/ui/textattrtabpage.ui:425
+#: cui/uiconfig/ui/textattrtabpage.ui:423
#, fuzzy
msgctxt "textattrtabpage|TSB_FULL_WIDTH"
msgid "Full _width"
msgstr "പൂര്ണ്ണ വീതി"
-#: cui/uiconfig/ui/textattrtabpage.ui:448
+#: cui/uiconfig/ui/textattrtabpage.ui:446
msgctxt "textattrtabpage|label3"
msgid "Text Anchor"
msgstr ""
diff --git a/source/ml/filter/source/config/fragments/filters.po b/source/ml/filter/source/config/fragments/filters.po
index c1f979f12fd..0676e5ea41c 100644
--- a/source/ml/filter/source/config/fragments/filters.po
+++ b/source/ml/filter/source/config/fragments/filters.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-16 16:54+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2016-03-11 12:00+0000\n"
"Last-Translator: ansonjacob <ansonjacob.aj@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -467,8 +467,8 @@ msgctxt ""
"MS Word 2003 XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Word 2003 XML"
-msgstr "മൈക്രോസോഫ്റ്റ് വേര്ഡ് 2003 XML"
+msgid "Word 2003 XML"
+msgstr ""
#: MS_Word_2007_XML.xcu
msgctxt ""
@@ -1295,7 +1295,7 @@ msgctxt ""
"Calc MS Excel 2007 VBA XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Excel 2007-2016 XML (macro enabled)"
+msgid "Excel 2007–2019 (macro-enabled)"
msgstr ""
#: calc_MS_Excel_2007_XML.xcu
diff --git a/source/ml/filter/source/config/fragments/types.po b/source/ml/filter/source/config/fragments/types.po
index c63fbaffbe7..5fc6b9b894f 100644
--- a/source/ml/filter/source/config/fragments/types.po
+++ b/source/ml/filter/source/config/fragments/types.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-08 15:11+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2015-11-11 22:12+0000\n"
"Last-Translator: ansonjacob <ansonjacob.aj@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -295,8 +295,8 @@ msgctxt ""
"writer_MS_Word_2003_XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Word 2003 XML"
-msgstr "Microsoft Word 2003 XML"
+msgid "Word 2003 XML"
+msgstr ""
#: writer_MS_Word_2007_XML.xcu
msgctxt ""
diff --git a/source/ml/fpicker/messages.po b/source/ml/fpicker/messages.po
index b0e66260605..4e65bd6c71f 100644
--- a/source/ml/fpicker/messages.po
+++ b/source/ml/fpicker/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+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"
@@ -271,13 +271,13 @@ msgstr ""
#: fpicker/uiconfig/ui/foldernamedialog.ui:8
msgctxt "foldernamedialog|FolderNameDialog"
-msgid "Folder Name ?"
-msgstr "ഫോള്‍ഡര്‍ നാമം?"
+msgid "Folder Name"
+msgstr ""
#: fpicker/uiconfig/ui/foldernamedialog.ui:91
msgctxt "foldernamedialog|label2"
-msgid "Na_me"
-msgstr "പേര‍്"
+msgid "Na_me:"
+msgstr ""
#: fpicker/uiconfig/ui/foldernamedialog.ui:122
msgctxt "foldernamedialog|label1"
diff --git a/source/ml/officecfg/registry/data/org/openoffice/Office/UI.po b/source/ml/officecfg/registry/data/org/openoffice/Office/UI.po
index 8f2bc7b0ce0..52f4409140a 100644
--- a/source/ml/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/ml/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-22 13:17+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2016-07-05 03:04+0000\n"
"Last-Translator: ansonjacob <ansonjacob.aj@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -26939,8 +26939,8 @@ msgctxt ""
"..WriterCommands.UserInterface.Commands..uno:TextAttributes\n"
"Label\n"
"value.text"
-msgid "Text Attributes"
-msgstr "ടെക്സ്റ്റ് ആറ്റ്റിബ്യൂട്സ്"
+msgid "Text Attributes..."
+msgstr ""
#: WriterCommands.xcu
msgctxt ""
diff --git a/source/ml/readlicense_oo/docs.po b/source/ml/readlicense_oo/docs.po
index a19b69cbf3a..9a5d74409c2 100644
--- a/source/ml/readlicense_oo/docs.po
+++ b/source/ml/readlicense_oo/docs.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: read-me\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-04-17 15:54+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2016-03-11 14:24+0000\n"
"Last-Translator: ansonjacob <ansonjacob.aj@gmail.com>\n"
"Language-Team: <en@li.org>\n"
@@ -117,7 +117,7 @@ msgctxt ""
"readme.xrm\n"
"macxiOSX\n"
"readmeitem.text"
-msgid "MacOSX 10.8 (Mountain Lion) or higher"
+msgid "MacOSX 10.9 (Mavericks) or higher"
msgstr ""
#: readme.xrm
diff --git a/source/ml/sc/messages.po b/source/ml/sc/messages.po
index 1e2ae58561f..98f64f50cfe 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-12 14:40+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"
@@ -1870,16 +1870,21 @@ msgid "Nested arrays are not supported."
msgstr "നെസ്റ്റഡ് അറേകള്‍ പിന്തുണയ്ക്കുന്നില്ല."
#: sc/inc/globstr.hrc:390
+msgctxt "STR_ERR_LONG_BAD_ARRAY_CONTENT"
+msgid "Unsupported inline array content."
+msgstr ""
+
+#: sc/inc/globstr.hrc:391
msgctxt "STR_UNDO_TEXTTOCOLUMNS"
msgid "Text to Columns"
msgstr "Text to Columns"
-#: sc/inc/globstr.hrc:391
+#: sc/inc/globstr.hrc:392
msgctxt "STR_DOC_UPDATED"
msgid "Your spreadsheet has been updated with changes saved by other users."
msgstr "Your spreadsheet has been updated with changes saved by other users."
-#: sc/inc/globstr.hrc:392
+#: sc/inc/globstr.hrc:393
msgctxt "STR_DOC_WILLBESAVED"
msgid ""
"The spreadsheet must be saved now to activate sharing mode.\n"
@@ -1890,7 +1895,7 @@ msgstr ""
"\n"
"Do you want to continue?"
-#: sc/inc/globstr.hrc:393
+#: sc/inc/globstr.hrc:394
msgctxt "STR_DOC_WILLNOTBESAVED"
msgid ""
"Already resolved merge conflicts will be lost and your changes to the shared spreadsheet will not be saved.\n"
@@ -1901,7 +1906,7 @@ msgstr ""
"\n"
"Do you want to continue?"
-#: sc/inc/globstr.hrc:394
+#: sc/inc/globstr.hrc:395
msgctxt "STR_DOC_DISABLESHARED"
msgid ""
"Disabling shared mode of a spreadsheet hinders all other users of the shared spreadsheet to merge back their work.\n"
@@ -1912,7 +1917,7 @@ msgstr ""
"\n"
"Do you want to continue?"
-#: sc/inc/globstr.hrc:395
+#: sc/inc/globstr.hrc:396
msgctxt "STR_DOC_NOLONGERSHARED"
msgid ""
"This spreadsheet is no longer in shared mode.\n"
@@ -1923,7 +1928,7 @@ msgstr ""
"\n"
"Save your spreadsheet to a separate file and merge your changes to the shared spreadsheet manually."
-#: sc/inc/globstr.hrc:396
+#: sc/inc/globstr.hrc:397
msgctxt "STR_FILE_LOCKED_TRY_LATER"
msgid ""
"The shared spreadsheet file is locked due to a merge in progress by user: '%1'\n"
@@ -1934,7 +1939,7 @@ msgstr ""
"\n"
"Sharing mode of a locked file cannot be disabled. Try again later."
-#: sc/inc/globstr.hrc:397
+#: sc/inc/globstr.hrc:398
msgctxt "STR_FILE_LOCKED_SAVE_LATER"
msgid ""
"The shared spreadsheet file is locked due to a merge in progress by user: '%1'\n"
@@ -1945,148 +1950,148 @@ msgstr ""
"\n"
"Try again later to save your changes."
-#: sc/inc/globstr.hrc:398
+#: sc/inc/globstr.hrc:399
msgctxt "STR_UNKNOWN_USER"
msgid "Unknown User"
msgstr "അപരിചിതനായ ഉപയോക്താവു്"
-#: sc/inc/globstr.hrc:399
+#: sc/inc/globstr.hrc:400
msgctxt "STR_SHAPE_AUTOSHAPE"
msgid "AutoShape"
msgstr "ഓട്ടോഷേപ്പ്"
-#: sc/inc/globstr.hrc:400
+#: sc/inc/globstr.hrc:401
msgctxt "STR_SHAPE_RECTANGLE"
msgid "Rectangle"
msgstr "ചതുര്ഭുജം"
-#: sc/inc/globstr.hrc:401
+#: sc/inc/globstr.hrc:402
msgctxt "STR_SHAPE_LINE"
msgid "Line"
msgstr "വരി"
-#: sc/inc/globstr.hrc:402
+#: sc/inc/globstr.hrc:403
msgctxt "STR_SHAPE_OVAL"
msgid "Oval"
msgstr "ദീര്ഘവൃത്തം"
-#: sc/inc/globstr.hrc:403
+#: sc/inc/globstr.hrc:404
msgctxt "STR_FORM_BUTTON"
msgid "Button"
msgstr "ബട്ടണ്‍"
-#: sc/inc/globstr.hrc:404
+#: sc/inc/globstr.hrc:405
msgctxt "STR_FORM_CHECKBOX"
msgid "Check Box"
msgstr "ചെക്ക് ബോക്സ്"
-#: sc/inc/globstr.hrc:405
+#: sc/inc/globstr.hrc:406
msgctxt "STR_FORM_OPTIONBUTTON"
msgid "Option Button"
msgstr "ഐച്ഛിക ബട്ടണ്‍"
-#: sc/inc/globstr.hrc:406
+#: sc/inc/globstr.hrc:407
msgctxt "STR_FORM_LABEL"
msgid "Label"
msgstr "ലേബല്"
-#: sc/inc/globstr.hrc:407
+#: sc/inc/globstr.hrc:408
msgctxt "STR_FORM_LISTBOX"
msgid "List Box"
msgstr "ലിസ്റ്റ് ബോക്സ്"
-#: sc/inc/globstr.hrc:408
+#: sc/inc/globstr.hrc:409
msgctxt "STR_FORM_GROUPBOX"
msgid "Group Box"
msgstr "ഗ്രൂപ്പ് ബോക്സ്"
-#: sc/inc/globstr.hrc:409
+#: sc/inc/globstr.hrc:410
msgctxt "STR_FORM_DROPDOWN"
msgid "Drop Down"
msgstr "ഡ്രോപ്പ് ഡൌണ്‍"
-#: sc/inc/globstr.hrc:410
+#: sc/inc/globstr.hrc:411
msgctxt "STR_FORM_SPINNER"
msgid "Spinner"
msgstr "സ്പിന്നര്‍"
-#: sc/inc/globstr.hrc:411
+#: sc/inc/globstr.hrc:412
msgctxt "STR_FORM_SCROLLBAR"
msgid "Scroll Bar"
msgstr "സ്ക്രോള്‍ ബാര്‍"
-#: sc/inc/globstr.hrc:412
+#: sc/inc/globstr.hrc:413
msgctxt "STR_STYLE_FAMILY_CELL"
msgid "Cell Styles"
msgstr "സെല് ശൈലി"
-#: sc/inc/globstr.hrc:413
+#: sc/inc/globstr.hrc:414
msgctxt "STR_STYLE_FAMILY_PAGE"
msgid "Page Styles"
msgstr "പേജിന്റെ ശൈലി"
-#: sc/inc/globstr.hrc:414
+#: sc/inc/globstr.hrc:415
msgctxt "STR_ERR_DATAPILOTSOURCE"
msgid "Pivot table source data is invalid."
msgstr "പിവോട്ട് ടേബിള്‍ സോഴ്സ് ഡേറ്റാ തെറ്റാണു്."
-#: sc/inc/globstr.hrc:415
+#: sc/inc/globstr.hrc:416
msgctxt "STR_OPTIONS_WARN_SEPARATORS"
msgid "Because the current formula separator settings conflict with the locale, the formula separators have been reset to their default values."
msgstr "Because the current formula separator settings conflict with the locale, the formula separators have been reset to their default values."
-#: sc/inc/globstr.hrc:416
+#: sc/inc/globstr.hrc:417
msgctxt "STR_UNDO_INSERT_CURRENT_DATE"
msgid "Insert Current Date"
msgstr "നിലവിലുള്ള തീയതി ചേര്‍ക്കുക"
-#: sc/inc/globstr.hrc:417
+#: sc/inc/globstr.hrc:418
msgctxt "STR_UNDO_INSERT_CURRENT_TIME"
msgid "Insert Current Time"
msgstr "നിലവിലുള്ള സമയം ചേര്‍ക്കുക"
-#: sc/inc/globstr.hrc:418
+#: sc/inc/globstr.hrc:419
msgctxt "STR_MANAGE_NAMES"
msgid "Manage Names..."
msgstr "പേരുകള്‍ കൈകാര്യം ചെയ്യുക..."
-#: sc/inc/globstr.hrc:419
+#: sc/inc/globstr.hrc:420
#, fuzzy
msgctxt "STR_HEADER_NAME"
msgid "Name"
msgstr "നാമം"
-#: sc/inc/globstr.hrc:420
+#: sc/inc/globstr.hrc:421
msgctxt "STR_HEADER_RANGE_OR_EXPR"
msgid "Range or formula expression"
msgstr ""
-#: sc/inc/globstr.hrc:421
+#: sc/inc/globstr.hrc:422
msgctxt "STR_HEADER_SCOPE"
msgid "Scope"
msgstr "പരിധി"
-#: sc/inc/globstr.hrc:422
+#: sc/inc/globstr.hrc:423
msgctxt "STR_MULTI_SELECT"
msgid "(multiple)"
msgstr "(അനവധി)"
-#: sc/inc/globstr.hrc:423
+#: sc/inc/globstr.hrc:424
msgctxt "STR_GLOBAL_SCOPE"
msgid "Document (Global)"
msgstr "രേഖ (ഗ്ലോബല്‍)"
-#: sc/inc/globstr.hrc:424
+#: sc/inc/globstr.hrc:425
msgctxt "STR_ERR_NAME_EXISTS"
msgid "Invalid name. Already in use for the selected scope."
msgstr "തെറ്റായ പേരു്. തെരഞ്ഞെടുത്ത പരിധിയില്‍ ഉപയോഗത്തില്‍."
-#: sc/inc/globstr.hrc:425
+#: sc/inc/globstr.hrc:426
msgctxt "STR_ERR_NAME_INVALID"
msgid "Invalid name. Only use letters, numbers and underscore."
msgstr "തെറ്റായ പേരു്. അക്കങ്ങള്‍, അക്ഷരങ്ങള്‍, അണ്ടര്‍സ്കോര്‍ എന്നിവ മാത്രം ഉപയോഗിയ്ക്കുക."
-#: sc/inc/globstr.hrc:426
+#: sc/inc/globstr.hrc:427
msgctxt "STR_UNSAVED_EXT_REF"
msgid ""
"This Document contains external references to unsaved documents.\n"
@@ -2097,218 +2102,218 @@ msgstr ""
"\n"
"തുടരണമോ?"
-#: sc/inc/globstr.hrc:427
+#: sc/inc/globstr.hrc:428
msgctxt "STR_CLOSE_WITH_UNSAVED_REFS"
msgid "This Document is referenced by another document and not yet saved. Closing it without saving will result in data loss."
msgstr "ഈ രേഖ മറ്റൊരു രേഖയ്ക്കു് ആവശ്യമാകുന്നു, സൂക്ഷിച്ചിട്ടില്ല. സൂക്ഷിയ്ക്കാതെ ഇതു് അടയ്ക്കുന്നതു് ഡേറ്റാ നഷ്ടമാക്കുന്നു."
-#: sc/inc/globstr.hrc:428
+#: sc/inc/globstr.hrc:429
msgctxt "STR_HEADER_RANGE"
msgid "Range"
msgstr "പരന്പര"
-#: sc/inc/globstr.hrc:429
+#: sc/inc/globstr.hrc:430
msgctxt "STR_HEADER_COND"
msgid "First Condition"
msgstr "ആദ്യത്തെ സ്ഥിതി"
-#: sc/inc/globstr.hrc:430
+#: sc/inc/globstr.hrc:431
msgctxt "STR_COND_CONDITION"
msgid "Cell value is"
msgstr "സെല്‍ മൂല്ല്യം"
-#: sc/inc/globstr.hrc:431
+#: sc/inc/globstr.hrc:432
msgctxt "STR_COND_COLORSCALE"
msgid "ColorScale"
msgstr "കളര്‍സ്കേല്‍"
-#: sc/inc/globstr.hrc:432
+#: sc/inc/globstr.hrc:433
msgctxt "STR_COND_DATABAR"
msgid "DataBar"
msgstr "ഡേറ്റാബാര്‍"
-#: sc/inc/globstr.hrc:433
+#: sc/inc/globstr.hrc:434
msgctxt "STR_COND_ICONSET"
msgid "IconSet"
msgstr "ഐക്കണ്‍സെറ്റ്"
-#: sc/inc/globstr.hrc:434
+#: sc/inc/globstr.hrc:435
msgctxt "STR_COND_BETWEEN"
msgid "between"
msgstr "ഇടയ്ക്കു്"
-#: sc/inc/globstr.hrc:435
+#: sc/inc/globstr.hrc:436
msgctxt "STR_COND_NOTBETWEEN"
msgid "not between"
msgstr "ഇടയ്ക്കല്ല"
-#: sc/inc/globstr.hrc:436
+#: sc/inc/globstr.hrc:437
msgctxt "STR_COND_UNIQUE"
msgid "unique"
msgstr "ഏകീകൃതം"
-#: sc/inc/globstr.hrc:437
+#: sc/inc/globstr.hrc:438
msgctxt "STR_COND_DUPLICATE"
msgid "duplicate"
msgstr "തനിപ്പകര്‍പ്പ്"
-#: sc/inc/globstr.hrc:438
+#: sc/inc/globstr.hrc:439
msgctxt "STR_COND_FORMULA"
msgid "Formula is"
msgstr "സൂത്രവാക്യം"
-#: sc/inc/globstr.hrc:439
+#: sc/inc/globstr.hrc:440
msgctxt "STR_COND_TOP10"
msgid "Top Elements"
msgstr "ടോപ്പ് എലമെന്റുകള്‍"
-#: sc/inc/globstr.hrc:440
+#: sc/inc/globstr.hrc:441
msgctxt "STR_COND_BOTTOM10"
msgid "Bottom Elements"
msgstr "താഴെയുള്ള എലമെന്റുകള്‍"
-#: sc/inc/globstr.hrc:441
+#: sc/inc/globstr.hrc:442
msgctxt "STR_COND_TOP_PERCENT"
msgid "Top Percent"
msgstr "കൂടിയ ശതമാനം"
-#: sc/inc/globstr.hrc:442
+#: sc/inc/globstr.hrc:443
msgctxt "STR_COND_DATE"
msgid "Date is"
msgstr "തീയതി"
-#: sc/inc/globstr.hrc:443
+#: sc/inc/globstr.hrc:444
msgctxt "STR_COND_BOTTOM_PERCENT"
msgid "Bottom Percent"
msgstr "കുറഞ്ഞ ശതമാനം"
-#: sc/inc/globstr.hrc:444
+#: sc/inc/globstr.hrc:445
msgctxt "STR_COND_ABOVE_AVERAGE"
msgid "Above Average"
msgstr "ശരാശരിയേക്കാള്‍ കൂടുതല്‍"
-#: sc/inc/globstr.hrc:445
+#: sc/inc/globstr.hrc:446
msgctxt "STR_COND_BELOW_AVERAGE"
msgid "Below Average"
msgstr "ശരാശരിയേക്കാള്‍ കുറവു്"
-#: sc/inc/globstr.hrc:446
+#: sc/inc/globstr.hrc:447
msgctxt "STR_COND_ABOVE_EQUAL_AVERAGE"
msgid "Above or equal Average"
msgstr "കൂടുതല്‍ അല്ലെങ്കില്‍ സമമായ ശരാശരി"
-#: sc/inc/globstr.hrc:447
+#: sc/inc/globstr.hrc:448
msgctxt "STR_COND_BELOW_EQUAL_AVERAGE"
msgid "Below or equal Average"
msgstr "കുറഞ്ഞതു് അല്ലെങ്കില്‍ സമമായ ശരാശരി"
-#: sc/inc/globstr.hrc:448
+#: sc/inc/globstr.hrc:449
msgctxt "STR_COND_ERROR"
msgid "an Error code"
msgstr "ഒരു പിശക് കോഡ്"
-#: sc/inc/globstr.hrc:449
+#: sc/inc/globstr.hrc:450
msgctxt "STR_COND_NOERROR"
msgid "not an Error code"
msgstr "ഒരു പിശക് കോഡല്ല"
-#: sc/inc/globstr.hrc:450
+#: sc/inc/globstr.hrc:451
msgctxt "STR_COND_BEGINS_WITH"
msgid "Begins with"
msgstr "ആരംഭിയ്ക്കുന്നതു്"
-#: sc/inc/globstr.hrc:451
+#: sc/inc/globstr.hrc:452
msgctxt "STR_COND_ENDS_WITH"
msgid "Ends with"
msgstr "ഇങ്ങനെ അവസാനിയ്ക്കുന്നു"
-#: sc/inc/globstr.hrc:452
+#: sc/inc/globstr.hrc:453
msgctxt "STR_COND_CONTAINS"
msgid "Contains"
msgstr "അടങ്ങുന്നു"
-#: sc/inc/globstr.hrc:453
+#: sc/inc/globstr.hrc:454
msgctxt "STR_COND_NOT_CONTAINS"
msgid "Not Contains"
msgstr "അടങ്ങുന്നില്ല"
-#: sc/inc/globstr.hrc:454
+#: sc/inc/globstr.hrc:455
msgctxt "STR_COND_TODAY"
msgid "today"
msgstr "ഇന്ന്"
-#: sc/inc/globstr.hrc:455
+#: sc/inc/globstr.hrc:456
msgctxt "STR_COND_YESTERDAY"
msgid "yesterday"
msgstr "ഇന്നലെ"
-#: sc/inc/globstr.hrc:456
+#: sc/inc/globstr.hrc:457
msgctxt "STR_COND_TOMORROW"
msgid "tomorrow"
msgstr "നാളെ"
-#: sc/inc/globstr.hrc:457
+#: sc/inc/globstr.hrc:458
msgctxt "STR_COND_LAST7DAYS"
msgid "in the last 7 days"
msgstr "അവസാന 7 ദിവസങ്ങളില്‍"
-#: sc/inc/globstr.hrc:458
+#: sc/inc/globstr.hrc:459
msgctxt "STR_COND_THISWEEK"
msgid "this week"
msgstr "ഈ ആഴ്ച"
-#: sc/inc/globstr.hrc:459
+#: sc/inc/globstr.hrc:460
msgctxt "STR_COND_LASTWEEK"
msgid "last week"
msgstr "കഴിഞ്ഞ ആഴ്ച"
-#: sc/inc/globstr.hrc:460
+#: sc/inc/globstr.hrc:461
msgctxt "STR_COND_NEXTWEEK"
msgid "next week"
msgstr "അടുത്ത ആഴ്ച"
-#: sc/inc/globstr.hrc:461
+#: sc/inc/globstr.hrc:462
msgctxt "STR_COND_THISMONTH"
msgid "this month"
msgstr "ഈ മാസം"
-#: sc/inc/globstr.hrc:462
+#: sc/inc/globstr.hrc:463
msgctxt "STR_COND_LASTMONTH"
msgid "last month"
msgstr "കഴിഞ്ഞ മാസം"
-#: sc/inc/globstr.hrc:463
+#: sc/inc/globstr.hrc:464
msgctxt "STR_COND_NEXTMONTH"
msgid "next month"
msgstr "അടുത്ത മാസം"
-#: sc/inc/globstr.hrc:464
+#: sc/inc/globstr.hrc:465
msgctxt "STR_COND_THISYEAR"
msgid "this year"
msgstr "ഈ വര്‍ഷം"
-#: sc/inc/globstr.hrc:465
+#: sc/inc/globstr.hrc:466
msgctxt "STR_COND_LASTYEAR"
msgid "last year"
msgstr "കഴിഞ്ഞ വര്‍ഷം"
-#: sc/inc/globstr.hrc:466
+#: sc/inc/globstr.hrc:467
msgctxt "STR_COND_NEXTYEAR"
msgid "next year"
msgstr "അടുത്ത വര്‍ഷം"
-#: sc/inc/globstr.hrc:467
+#: sc/inc/globstr.hrc:468
#, fuzzy
msgctxt "STR_COND_AND"
msgid "and"
msgstr "ഉം"
-#: sc/inc/globstr.hrc:468
+#: sc/inc/globstr.hrc:469
msgctxt "STR_ERR_CONDFORMAT_PROTECTED"
msgid "Conditional Formats can not be created, deleted or changed in protected sheets."
msgstr ""
-#: sc/inc/globstr.hrc:469
+#: sc/inc/globstr.hrc:470
msgctxt "STR_EDIT_EXISTING_COND_FORMATS"
msgid ""
"The selected cell already contains conditional formatting. You can either edit the existing conditional format or you define a new overlapping conditional format.\n"
@@ -2319,7 +2324,7 @@ msgstr ""
"\n"
"നിങ്ങള്‍ക്കു് നിലവിലുള്ള കണ്ടീഷണല്‍ ഫോര്‍മാറ്റില്‍ മാറ്റം വരുത്തണമോ?"
-#: sc/inc/globstr.hrc:470
+#: sc/inc/globstr.hrc:471
msgctxt "STR_QUERY_FORMULA_RECALC_ONLOAD_ODS"
msgid ""
"This document was last saved by an application other than %PRODUCTNAME. Some formula cells may produce different results when recalculated.\n"
@@ -2330,7 +2335,7 @@ msgstr ""
"\n"
"ഈ രേഖയില്‍ എല്ലാ സൂത്രവാക്യ സെല്ലുകളും നിങ്ങള്‍ക്കു് വീണ്ടും കണക്കു കൂട്ടണമോ?"
-#: sc/inc/globstr.hrc:471
+#: sc/inc/globstr.hrc:472
msgctxt "STR_QUERY_FORMULA_RECALC_ONLOAD_XLS"
msgid ""
"This document was last saved by Excel. Some formula cells may produce different results when recalculated.\n"
@@ -2341,77 +2346,77 @@ msgstr ""
"\n"
"ഈ രേഖയില്‍ നിങ്ങള്‍ക്കു് എല്ലാ ഫോര്‍മുലാ സെല്ലുകളും വീണ്ടും കണക്കു് കൂട്ടണമോ?"
-#: sc/inc/globstr.hrc:472
+#: sc/inc/globstr.hrc:473
msgctxt "STR_NO_INSERT_DELETE_OVER_PIVOT_TABLE"
msgid "You cannot insert or delete cells when the affected range intersects with pivot table."
msgstr "പിവോട്ട് ടേബിളുമായി ബാധകമുള്ള പരിധികള്‍ കൂട്ടിമുട്ടുമ്പോള്‍ നിങ്ങള്‍ക്കു് സെല്ലുകള്‍ വെട്ടി നീക്കുവാനോ ചേര്‍ക്കുവാനോ സാധ്യമല്ല."
-#: sc/inc/globstr.hrc:473
+#: sc/inc/globstr.hrc:474
msgctxt "STR_DPFIELD_GROUP_BY_SECONDS"
msgid "Seconds"
msgstr "സെക്കന്‍ഡുകള്‍"
-#: sc/inc/globstr.hrc:474
+#: sc/inc/globstr.hrc:475
msgctxt "STR_DPFIELD_GROUP_BY_MINUTES"
msgid "Minutes"
msgstr "മിനിട്ടുകള്"
-#: sc/inc/globstr.hrc:475
+#: sc/inc/globstr.hrc:476
msgctxt "STR_DPFIELD_GROUP_BY_HOURS"
msgid "Hours"
msgstr "മണിക്കൂറുകള്‍"
-#: sc/inc/globstr.hrc:476
+#: sc/inc/globstr.hrc:477
msgctxt "STR_DPFIELD_GROUP_BY_DAYS"
msgid "Days"
msgstr "ദിവസങ്ങള്‍"
-#: sc/inc/globstr.hrc:477
+#: sc/inc/globstr.hrc:478
msgctxt "STR_DPFIELD_GROUP_BY_MONTHS"
msgid "Months"
msgstr "മാസം"
-#: sc/inc/globstr.hrc:478
+#: sc/inc/globstr.hrc:479
msgctxt "STR_DPFIELD_GROUP_BY_QUARTERS"
msgid "Quarters"
msgstr "ക്വാര്‍ട്ടര്‍‌"
-#: sc/inc/globstr.hrc:479
+#: sc/inc/globstr.hrc:480
msgctxt "STR_DPFIELD_GROUP_BY_YEARS"
msgid "Years"
msgstr "വര്ഷം"
-#: sc/inc/globstr.hrc:480
+#: sc/inc/globstr.hrc:481
msgctxt "STR_INVALIDVAL"
msgid "Invalid target value."
msgstr "അസാധുവായ ലക്ഷ്യ മൂല്യം"
-#: sc/inc/globstr.hrc:481
+#: sc/inc/globstr.hrc:482
msgctxt "STR_INVALIDVAR"
msgid "Undefined name for variable cell."
msgstr "പരിവര്ത്തന സെല്ലിന‍് നിര്‍വചിക്കാത്ത പേര‍്. "
-#: sc/inc/globstr.hrc:482
+#: sc/inc/globstr.hrc:483
msgctxt "STR_INVALIDFORM"
msgid "Undefined name as formula cell."
msgstr "സൂതേരവാക്യ സെല്ലിന‍് നിര്‍വചിക്കാത്ത പേര‍്. "
-#: sc/inc/globstr.hrc:483
+#: sc/inc/globstr.hrc:484
msgctxt "STR_NOFORMULA"
msgid "Formula cell must contain a formula."
msgstr ""
-#: sc/inc/globstr.hrc:484
+#: sc/inc/globstr.hrc:485
msgctxt "STR_INVALIDINPUT"
msgid "Invalid input."
msgstr "തെറ്റായ ഇന്‍പുട്ട്."
-#: sc/inc/globstr.hrc:485
+#: sc/inc/globstr.hrc:486
msgctxt "STR_INVALIDCONDITION"
msgid "Invalid condition."
msgstr "തെറ്റായ ഉപാധി."
-#: sc/inc/globstr.hrc:486
+#: sc/inc/globstr.hrc:487
msgctxt "STR_QUERYREMOVE"
msgid ""
"Should the entry\n"
@@ -2419,137 +2424,137 @@ msgid ""
"be deleted?"
msgstr ""
-#: sc/inc/globstr.hrc:487
+#: sc/inc/globstr.hrc:488
msgctxt "STR_COPYLIST"
msgid "Copy List"
msgstr ""
-#: sc/inc/globstr.hrc:488
+#: sc/inc/globstr.hrc:489
msgctxt "STR_COPYFROM"
msgid "List from"
msgstr ""
-#: sc/inc/globstr.hrc:489
+#: sc/inc/globstr.hrc:490
msgctxt "STR_COPYERR"
msgid "Cells without text have been ignored."
msgstr ""
-#: sc/inc/globstr.hrc:490
+#: sc/inc/globstr.hrc:491
#, c-format
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%s-click to follow hyperlink:"
msgstr ""
-#: sc/inc/globstr.hrc:491
+#: sc/inc/globstr.hrc:492
msgctxt "STR_CLICKHYPERLINK"
msgid "click to open hyperlink:"
msgstr ""
-#: sc/inc/globstr.hrc:492
+#: sc/inc/globstr.hrc:493
msgctxt "STR_PRINT_PREVIEW_NODATA"
msgid "No Data"
msgstr ""
-#: sc/inc/globstr.hrc:493
+#: sc/inc/globstr.hrc:494
msgctxt "STR_PRINT_PREVIEW_EMPTY_RANGE"
msgid "Print Range Empty"
msgstr ""
-#: sc/inc/globstr.hrc:494
+#: sc/inc/globstr.hrc:495
#, fuzzy
msgctxt "STR_UNDO_CONDFORMAT"
msgid "Conditional Format"
msgstr "കണ്ടീഷനല്‍ ഫോര്‍മാറ്റിങ്"
-#: sc/inc/globstr.hrc:495
+#: sc/inc/globstr.hrc:496
#, fuzzy
msgctxt "STR_UNDO_CONDFORMAT_LIST"
msgid "Conditional Formats"
msgstr "കണ്ടീഷനല്‍ ഫോര്‍മാറ്റിങ്"
-#: sc/inc/globstr.hrc:496
+#: sc/inc/globstr.hrc:497
msgctxt "STR_UNDO_FORMULA_TO_VALUE"
msgid "Convert Formula To Value"
msgstr ""
-#: sc/inc/globstr.hrc:497
+#: sc/inc/globstr.hrc:498
msgctxt "STR_UNQUOTED_STRING"
msgid "Strings without quotes are interpreted as column/row labels."
msgstr ""
-#: sc/inc/globstr.hrc:498
+#: sc/inc/globstr.hrc:499
msgctxt "STR_ENTER_VALUE"
msgid "Enter a value!"
msgstr ""
-#: sc/inc/globstr.hrc:499
+#: sc/inc/globstr.hrc:500
msgctxt "STR_TABLE_COUNT"
msgid "Sheet %1 of %2"
msgstr ""
-#: sc/inc/globstr.hrc:500
+#: sc/inc/globstr.hrc:501
msgctxt "STR_FUNCTIONS_FOUND"
msgid "%1 and %2 more"
msgstr ""
-#: sc/inc/globstr.hrc:501
+#: sc/inc/globstr.hrc:502
#, fuzzy
msgctxt "STR_GENERAL"
msgid "General"
msgstr "സാധാരണ"
-#: sc/inc/globstr.hrc:502
+#: sc/inc/globstr.hrc:503
msgctxt "STR_NUMBER"
msgid "Number"
msgstr "സംഖ്യ"
-#: sc/inc/globstr.hrc:503
+#: sc/inc/globstr.hrc:504
msgctxt "STR_PERCENT"
msgid "Percent"
msgstr "ശതമാനം"
-#: sc/inc/globstr.hrc:504
+#: sc/inc/globstr.hrc:505
msgctxt "STR_CURRENCY"
msgid "Currency"
msgstr "നാണയം"
-#: sc/inc/globstr.hrc:505
+#: sc/inc/globstr.hrc:506
msgctxt "STR_DATE"
msgid "Date"
msgstr "തീയതി"
-#: sc/inc/globstr.hrc:506
+#: sc/inc/globstr.hrc:507
msgctxt "STR_TIME"
msgid "Time"
msgstr "സമയം"
-#: sc/inc/globstr.hrc:507
+#: sc/inc/globstr.hrc:508
msgctxt "STR_SCIENTIFIC"
msgid "Scientific"
msgstr "ശാസ്ത്രീയം"
-#: sc/inc/globstr.hrc:508
+#: sc/inc/globstr.hrc:509
#, fuzzy
msgctxt "STR_FRACTION"
msgid "Fraction"
msgstr "ഫങ്ഷന്"
-#: sc/inc/globstr.hrc:509
+#: sc/inc/globstr.hrc:510
msgctxt "STR_BOOLEAN_VALUE"
msgid "Boolean Value"
msgstr "ബൂളിയന്‍ മൂല്ല്യം"
-#: sc/inc/globstr.hrc:510
+#: sc/inc/globstr.hrc:511
msgctxt "STR_TEXT"
msgid "Text"
msgstr "ടെക്സ്റ്റ്"
-#: sc/inc/globstr.hrc:511
+#: sc/inc/globstr.hrc:512
msgctxt "STR_QUERY_PIVOTTABLE_DELTAB"
msgid "The selected sheet(s) contain source data of related pivot tables that will be lost. Are you sure you want to delete the selected sheet(s)?"
msgstr ""
-#: sc/inc/globstr.hrc:512
+#: sc/inc/globstr.hrc:513
msgctxt "STR_ERR_NAME_INVALID_CELL_REF"
msgid "Invalid name. Reference to a cell, or a range of cells not allowed."
msgstr ""
@@ -10725,8 +10730,8 @@ msgstr "രീതി"
#: sc/inc/scfuncs.hrc:3010
msgctxt "SC_OPCODE_T_TEST"
-msgid "Mode specifies the number of distribution tails to return. 1= one-tailed, 2 = two-tailed distribution"
-msgstr "മോഡ് തിരികെ വരാന് പോകുന്ന വിതരണത്തിന്റെ എണ്ണം എടുത്തു പറയും. 1= ഒരു വാലുള്ള, 2 = രണ്ട് വാലുള്ള വിതരണം"
+msgid "Mode specifies the number of distribution tails to return. 1 = one-tailed, 2 = two-tailed distribution"
+msgstr ""
#: sc/inc/scfuncs.hrc:3011
msgctxt "SC_OPCODE_T_TEST"
@@ -10772,8 +10777,8 @@ msgstr "രീതി"
#: sc/inc/scfuncs.hrc:3024
msgctxt "SC_OPCODE_T_TEST_MS"
-msgid "Mode specifies the number of distribution tails to return. 1= one-tailed, 2 = two-tailed distribution"
-msgstr "മോഡ് തിരികെ വരാന് പോകുന്ന വിതരണത്തിന്റെ എണ്ണം എടുത്തു പറയും. 1= ഒരു വാലുള്ള, 2 = രണ്ട് വാലുള്ള വിതരണം"
+msgid "Mode specifies the number of distribution tails to return. 1 = one-tailed, 2 = two-tailed distribution"
+msgstr ""
#: sc/inc/scfuncs.hrc:3025
msgctxt "SC_OPCODE_T_TEST_MS"
@@ -18588,22 +18593,22 @@ msgctxt "mergecellsdialog|MergeCellsDialog"
msgid "Merge Cells"
msgstr "സെല്ലുകള്‍ കൂട്ടിച്ചേര്‍ക്കുക"
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:81
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:84
msgctxt "mergecellsdialog|label"
msgid "Some cells are not empty."
msgstr ""
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:96
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:99
msgctxt "mergecellsdialog|move-cells-radio"
msgid "Move the contents of the hidden cells into the first cell"
msgstr ""
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:112
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:115
msgctxt "mergecellsdialog|empty-cells-radio"
msgid "Empty the contents of the hidden cells"
msgstr ""
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:128
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:131
msgctxt "mergecellsdialog|keep-content-radio"
msgid "Keep the contents of the hidden cells"
msgstr ""
diff --git a/source/ml/sd/messages.po b/source/ml/sd/messages.po
index 784d4227b50..2f8e3e6b4bc 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+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"
@@ -13,177 +13,177 @@ msgstr ""
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-#: sd/inc/DocumentRenderer.hrc:29
+#: sd/inc/DocumentRenderer.hrc:27
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Slides"
msgstr "സ്ലൈഡുകള്"
-#: sd/inc/DocumentRenderer.hrc:30
+#: sd/inc/DocumentRenderer.hrc:28
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Handouts"
msgstr "ഹാന്ഡൌട്ട്സ്"
-#: sd/inc/DocumentRenderer.hrc:31
+#: sd/inc/DocumentRenderer.hrc:29
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Notes"
msgstr "കുറിപ്പുകള്"
-#: sd/inc/DocumentRenderer.hrc:32
+#: sd/inc/DocumentRenderer.hrc:30
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Outline"
msgstr "ബാഹ്യ രേഖ"
-#: sd/inc/DocumentRenderer.hrc:37
+#: sd/inc/DocumentRenderer.hrc:35
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "According to layout"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:38
+#: sd/inc/DocumentRenderer.hrc:36
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "1"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:39
+#: sd/inc/DocumentRenderer.hrc:37
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "2"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:40
+#: sd/inc/DocumentRenderer.hrc:38
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "3"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:41
+#: sd/inc/DocumentRenderer.hrc:39
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "4"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:42
+#: sd/inc/DocumentRenderer.hrc:40
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "6"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:43
+#: sd/inc/DocumentRenderer.hrc:41
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "9"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:48
+#: sd/inc/DocumentRenderer.hrc:46
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_ORDER_CHOICES"
msgid "Left to right, then down"
msgstr "ഇടത്തു് നിന്നും വലത്തേക്കു്, പിന്നീടു് താഴേക്കു്"
-#: sd/inc/DocumentRenderer.hrc:49
+#: sd/inc/DocumentRenderer.hrc:47
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_ORDER_CHOICES"
msgid "Top to bottom, then right"
msgstr "മുകളില്‍ നിന്നും താഴേക്കു്, പിന്നെ വലത്തേക്കു്"
-#: sd/inc/DocumentRenderer.hrc:54
+#: sd/inc/DocumentRenderer.hrc:52
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Original colors"
msgstr "യഥാര്‍ത്ഥ നിറങ്ങള്‍"
-#: sd/inc/DocumentRenderer.hrc:55
+#: sd/inc/DocumentRenderer.hrc:53
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Grayscale"
msgstr "ഗ്രെസ്കെല്‍"
-#: sd/inc/DocumentRenderer.hrc:56
+#: sd/inc/DocumentRenderer.hrc:54
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Black & white"
msgstr "കറുപ്പും വെളിപ്പും"
-#: sd/inc/DocumentRenderer.hrc:61
+#: sd/inc/DocumentRenderer.hrc:59
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Original size"
msgstr "യഥാര്‍ത്ഥ വ്യാപ്തി"
-#: sd/inc/DocumentRenderer.hrc:62
+#: sd/inc/DocumentRenderer.hrc:60
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Fit to printable page"
msgstr "പ്രിന്റ് ചെയ്യുന്ന താളിനു് പാകമാക്കുക"
-#: sd/inc/DocumentRenderer.hrc:63
+#: sd/inc/DocumentRenderer.hrc:61
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Distribute on multiple sheets of paper"
msgstr "അനവധി ഷീറ്റുകളില്‍ വിതരണം ചെയ്യുക"
-#: sd/inc/DocumentRenderer.hrc:64
+#: sd/inc/DocumentRenderer.hrc:62
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Tile sheet of paper with repeated slides"
msgstr "ആവര്‍ത്തിച്ചുള്ള സ്ലൈഡുകളുള്ള ടൈല്‍ ഷീറ്റ്"
-#: sd/inc/DocumentRenderer.hrc:69
+#: sd/inc/DocumentRenderer.hrc:67
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Original size"
msgstr "യഥാര്‍ത്ഥ വ്യാപ്തി"
-#: sd/inc/DocumentRenderer.hrc:70
+#: sd/inc/DocumentRenderer.hrc:68
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Fit to printable page"
msgstr "പ്രിന്റ് ചെയ്യുന്ന താളിനു് പാകമാക്കുക"
-#: sd/inc/DocumentRenderer.hrc:71
+#: sd/inc/DocumentRenderer.hrc:69
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Distribute on multiple sheets of paper"
msgstr "അനവധി ഷീറ്റുകളില്‍ വിതരണം ചെയ്യുക"
-#: sd/inc/DocumentRenderer.hrc:72
+#: sd/inc/DocumentRenderer.hrc:70
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Tile sheet of paper with repeated pages"
msgstr "ആവര്‍ത്തിച്ചുള്ള താളുകളുള്ള ടൈല്‍ ഷീറ്റ്"
-#: sd/inc/DocumentRenderer.hrc:77
+#: sd/inc/DocumentRenderer.hrc:75
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "All pages"
msgstr "എല്ലാം"
-#: sd/inc/DocumentRenderer.hrc:78
+#: sd/inc/DocumentRenderer.hrc:76
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "Front sides / right pages"
msgstr "മുന്‍ താളുകള്‍ / വലത്തുള്ള താളുകള്‍"
-#: sd/inc/DocumentRenderer.hrc:79
+#: sd/inc/DocumentRenderer.hrc:77
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "Back sides / left pages"
msgstr "പിന്‍ വശങ്ങള്‍ / ഇടത്തുള്ള താളുകള്‍"
-#: sd/inc/DocumentRenderer.hrc:84
+#: sd/inc/DocumentRenderer.hrc:82
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~All slides"
msgstr "എല്ലാ സ്ലൈഡും"
-#: sd/inc/DocumentRenderer.hrc:85
+#: sd/inc/DocumentRenderer.hrc:83
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~Slides"
msgstr "സ്ലൈഡുകള്"
-#: sd/inc/DocumentRenderer.hrc:86
+#: sd/inc/DocumentRenderer.hrc:84
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Se~lection"
msgstr "തെ~രഞ്ഞെടുക്കല്‍"
-#: sd/inc/DocumentRenderer.hrc:91
+#: sd/inc/DocumentRenderer.hrc:89
#, fuzzy
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~All pages"
msgstr "~എല്ലാം താളുകളും"
-#: sd/inc/DocumentRenderer.hrc:92
+#: sd/inc/DocumentRenderer.hrc:90
#, fuzzy
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Pa~ges"
msgstr "പേജുകള്"
-#: sd/inc/DocumentRenderer.hrc:93
+#: sd/inc/DocumentRenderer.hrc:91
#, fuzzy
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Se~lection"
diff --git a/source/ml/svx/messages.po b/source/ml/svx/messages.po
index 8d24e7a9396..a4a523515ce 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: 2018-05-16 16:53+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+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"
@@ -5514,7 +5514,7 @@ msgstr ""
#: svx/uiconfig/ui/safemodedialog.ui:432
msgctxt "safemodedialog|btn_create_zip"
-msgid "Create Zip Archive from User Profile"
+msgid "Archive User Profile"
msgstr ""
#: svx/uiconfig/ui/safemodedialog.ui:445
@@ -9187,9 +9187,9 @@ msgid "Red"
msgstr "ചുവപ്പ്"
#: include/svx/strings.hrc:565
-msgctxt "RID_SVXSTR_COLOR_VIOLET"
-msgid "Violet"
-msgstr "വയലറ്റ്"
+msgctxt "RID_SVXSTR_COLOR_MAGENTA"
+msgid "Magenta"
+msgstr "മജന്ഡ"
#: include/svx/strings.hrc:566
#, fuzzy
@@ -9257,8 +9257,8 @@ msgid "Light Red"
msgstr "ഇളം ചുവപ്പു്"
#: include/svx/strings.hrc:579
-msgctxt "RID_SVXSTR_COLOR_LIGHTVIOLET"
-msgid "Light Violet"
+msgctxt "RID_SVXSTR_COLOR_LIGHTMAGENTA"
+msgid "Light Magenta"
msgstr ""
#: include/svx/strings.hrc:580
@@ -9324,8 +9324,8 @@ msgid "Dark Red"
msgstr "കടുത്ത ചുവപ്പ്"
#: include/svx/strings.hrc:593
-msgctxt "RID_SVXSTR_COLOR_DARKVIOLET1"
-msgid "Dark Violet"
+msgctxt "RID_SVXSTR_COLOR_DARKMAGENTA"
+msgid "Dark Magenta"
msgstr ""
#: include/svx/strings.hrc:594
@@ -9360,55 +9360,55 @@ msgstr ""
#. Elements of the Tonal color palette
#: include/svx/strings.hrc:601
+msgctxt "RID_SVXSTR_COLOR_VIOLET"
+msgid "Violet"
+msgstr "വയലറ്റ്"
+
+#: include/svx/strings.hrc:602
msgctxt "RID_SVXSTR_COLOR_VIOLET_OUG"
msgid "Violet (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:602
+#: include/svx/strings.hrc:603
msgctxt "RID_SVXSTR_COLOR_BLUE_OUG"
msgid "Blue (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:603
+#: include/svx/strings.hrc:604
msgctxt "RID_SVXSTR_COLOR_AZURE_OUG"
msgid "Azure (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:604
+#: include/svx/strings.hrc:605
msgctxt "RID_SVXSTR_COLOR_SPRINGGREEN_OUG"
msgid "Spring Green (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:605
+#: include/svx/strings.hrc:606
msgctxt "RID_SVXSTR_COLOR_GREEN_OUG"
msgid "Green (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:606
+#: include/svx/strings.hrc:607
msgctxt "RID_SVXSTR_COLOR_CHARTREUSEGREEN_OUG"
msgid "Chartreuse Green (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:607
+#: include/svx/strings.hrc:608
msgctxt "RID_SVXSTR_COLOR_ORANGE_OUG"
msgid "Orange (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:608
+#: include/svx/strings.hrc:609
msgctxt "RID_SVXSTR_COLOR_RED_OUG"
msgid "Red (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:609
+#: include/svx/strings.hrc:610
msgctxt "RID_SVXSTR_COLOR_ROSE_OUG"
msgid "Rose (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:610
-msgctxt "RID_SVXSTR_COLOR_MAGENTA"
-msgid "Magenta"
-msgstr "മജന്ഡ"
-
#: include/svx/strings.hrc:611
msgctxt "RID_SVXSTR_COLOR_AZURE"
msgid "Azure"
@@ -12556,13 +12556,13 @@ msgstr "വലത്തേക്കു് ചൂണ്ടുന്ന ആരോ
#: include/svx/strings.hrc:1273
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_6"
-msgid "Check mark bullets"
-msgstr "അടയാള ബുള്ളറ്റുകള്‍ പരിശോധിയ്ക്കുക"
+msgid "Cross mark bullets"
+msgstr ""
#: include/svx/strings.hrc:1274
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_7"
-msgid "Tick mark bullets"
-msgstr "ടിക്ക് മാര്‍ക്ക് ബുള്ളറ്റുകള്‍"
+msgid "Check mark bullets"
+msgstr ""
#: include/svx/strings.hrc:1275
#, fuzzy
diff --git a/source/ml/sw/messages.po b/source/ml/sw/messages.po
index 7fd6ab9e2ea..bf3d1c11c86 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: 2018-05-22 13:17+0200\n"
+"POT-Creation-Date: 2018-06-12 14:41+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"
@@ -1224,13 +1224,13 @@ msgstr "ക്വൊട്ടെഷന്"
#: sw/inc/strings.hrc:172
msgctxt "STR_POOLCOLL_TOX_ILLUSH"
-msgid "Illustration Index Heading"
-msgstr "ഉദാഹരണം അനുക്രമണികയുടെ തലക്കെട്ട്"
+msgid "Figure Index Heading"
+msgstr ""
#: sw/inc/strings.hrc:173
msgctxt "STR_POOLCOLL_TOX_ILLUS1"
-msgid "Illustration Index 1"
-msgstr "ഉദാഹരണ അനുക്രമണിക 1"
+msgid "Figure Index 1"
+msgstr ""
#: sw/inc/strings.hrc:174
msgctxt "STR_POOLCOLL_TOX_OBJECTH"
@@ -3720,10 +3720,9 @@ msgid "Table of Objects"
msgstr ""
#: sw/inc/strings.hrc:672
-#, fuzzy
msgctxt "STR_TOX_ILL"
-msgid "Illustration Index"
-msgstr "ഉദാഹരണ അനുക്രമണിക 1"
+msgid "Table of Figures"
+msgstr ""
#: sw/inc/strings.hrc:673
#, c-format
@@ -9677,81 +9676,81 @@ msgctxt "footnotepage|label5"
msgid "Continuation Notice"
msgstr "തുടരുന്നു എന്ന അറിയിപ്പു്"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:49
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:55
#, fuzzy
msgctxt "footnotesendnotestabpage|ftnntnum"
msgid "_Restart numbering"
msgstr "സംഖ്യയിടുന്നത് പുനരാരംഭിക്കുക"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:91
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:93
#, fuzzy
msgctxt "footnotesendnotestabpage|ftnoffset_label"
msgid "_Start at:"
msgstr "ആരംഭിയ്ക്കേണ്ടതു് എവിടെ"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:112
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:111
msgctxt "footnotesendnotestabpage|ftnntnumfmt"
msgid "Custom _format"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:155
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:150
#, fuzzy
msgctxt "footnotesendnotestabpage|ftnsuffix_label"
msgid "Aft_er:"
msgstr "ശേഷം"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:199
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:188
#, fuzzy
msgctxt "footnotesendnotestabpage|ftnprefix_label"
msgid "Be_fore:"
msgstr "_മുമ്പ്"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:228
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:212
msgctxt "footnotesendnotestabpage|ftnntattextend"
msgid "Collec_t at end of text"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:252
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:234
#, fuzzy
msgctxt "footnotesendnotestabpage|label1"
msgid "Footnotes"
msgstr "അടിക്കുറിപ്പ്"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:289
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:271
msgctxt "footnotesendnotestabpage|endntattextend"
msgid "C_ollect at end of section"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:315
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:295
#, fuzzy
msgctxt "footnotesendnotestabpage|endntnum"
msgid "_Restart numbering"
msgstr "സംഖ്യയിടുന്നത് പുനരാരംഭിക്കുക"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:357
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:333
#, fuzzy
msgctxt "footnotesendnotestabpage|endoffset_label"
msgid "_Start at:"
msgstr "ആരംഭിയ്ക്കേണ്ടതു് എവിടെ"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:378
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:351
msgctxt "footnotesendnotestabpage|endntnumfmt"
msgid "_Custom format"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:421
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:390
#, fuzzy
msgctxt "footnotesendnotestabpage|endsuffix_label"
msgid "Aft_er:"
msgstr "ശേഷം"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:465
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:428
#, fuzzy
msgctxt "footnotesendnotestabpage|endprefix_label"
msgid "Be_fore:"
msgstr "_മുമ്പ്"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:500
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:458
#, fuzzy
msgctxt "footnotesendnotestabpage|label2"
msgid "Endnotes"
@@ -9784,27 +9783,27 @@ msgctxt "formatsectiondialog|notes"
msgid "Footnotes/Endnotes"
msgstr "അടിക്കുറിപ്പുകള്"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:63
+#: sw/uiconfig/swriter/ui/formattablepage.ui:77
msgctxt "formattablepage|nameft"
msgid "_Name"
msgstr "പേരു്"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:79
+#: sw/uiconfig/swriter/ui/formattablepage.ui:91
msgctxt "formattablepage|widthft"
msgid "W_idth"
msgstr "വീതി"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:110
+#: sw/uiconfig/swriter/ui/formattablepage.ui:120
msgctxt "formattablepage|relwidth"
msgid "Relati_ve"
msgstr "ബന്ധപ്പെട്ട"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:155
+#: sw/uiconfig/swriter/ui/formattablepage.ui:160
msgctxt "formattablepage|label45"
msgid "Properties"
msgstr "ഗുണഗണങ്ങള്‍"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:194
+#: sw/uiconfig/swriter/ui/formattablepage.ui:195
msgctxt "formattablepage|leftft"
msgid "Lef_t"
msgstr "ഇടത്ത്"
@@ -9814,62 +9813,62 @@ msgctxt "formattablepage|rightft"
msgid "Ri_ght"
msgstr "വലത്ത്"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:228
+#: sw/uiconfig/swriter/ui/formattablepage.ui:226
msgctxt "formattablepage|aboveft"
msgid "_Above"
msgstr "മുകളില്"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:245
+#: sw/uiconfig/swriter/ui/formattablepage.ui:241
msgctxt "formattablepage|belowft"
msgid "_Below"
msgstr "താഴെ"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:320
+#: sw/uiconfig/swriter/ui/formattablepage.ui:311
msgctxt "formattablepage|label46"
msgid "Spacing"
msgstr "അകലമിടുക"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:362
+#: sw/uiconfig/swriter/ui/formattablepage.ui:349
msgctxt "formattablepage|full"
msgid "A_utomatic"
msgstr "സ്വയം പ്രവര്ത്തിക്കുന്ന"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:380
+#: sw/uiconfig/swriter/ui/formattablepage.ui:365
msgctxt "formattablepage|left"
msgid "_Left"
msgstr "ഇടത്ത്"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:398
+#: sw/uiconfig/swriter/ui/formattablepage.ui:381
msgctxt "formattablepage|fromleft"
msgid "_From left"
msgstr "ഇടത്തു നിന്നും"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:416
+#: sw/uiconfig/swriter/ui/formattablepage.ui:397
msgctxt "formattablepage|right"
msgid "R_ight"
msgstr "വലത്ത് നിന്നും"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:435
+#: sw/uiconfig/swriter/ui/formattablepage.ui:413
msgctxt "formattablepage|center"
msgid "_Center"
msgstr "മദ്ധ്യഭാഗം"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:453
+#: sw/uiconfig/swriter/ui/formattablepage.ui:429
msgctxt "formattablepage|free"
msgid "_Manual"
msgstr "മാനുവല്"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:478
+#: sw/uiconfig/swriter/ui/formattablepage.ui:452
msgctxt "formattablepage|label43"
msgid "Alignment"
msgstr "ക്രമീകരണം"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:522
+#: sw/uiconfig/swriter/ui/formattablepage.ui:491
msgctxt "formattablepage|label53"
msgid "Text _direction"
msgstr "ടെക്സ്റ്റ് ദിശ"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:553
+#: sw/uiconfig/swriter/ui/formattablepage.ui:519
msgctxt "formattablepage|label44"
msgid "Properties "
msgstr "ഗുണഗണങ്ങള്‍ "
@@ -10250,24 +10249,29 @@ msgctxt "headerfootermenu|insert_pagenumber"
msgid "Insert Page Number"
msgstr ""
-#: sw/uiconfig/swriter/ui/indentpage.ui:52
+#: sw/uiconfig/swriter/ui/headerfootermenu.ui:42
+msgctxt "headerfootermenu|insert_pagecount"
+msgid "Insert Page Count"
+msgstr ""
+
+#: sw/uiconfig/swriter/ui/indentpage.ui:57
#, fuzzy
msgctxt "indentpage|label1"
msgid "_Before section"
msgstr "വിഭാഗത്തിനു് മുമ്പു്"
-#: sw/uiconfig/swriter/ui/indentpage.ui:67
+#: sw/uiconfig/swriter/ui/indentpage.ui:71
#, fuzzy
msgctxt "indentpage|label3"
msgid "_After section"
msgstr "വിഭാഗത്തിനു് ശേഷം"
-#: sw/uiconfig/swriter/ui/indentpage.ui:113
+#: sw/uiconfig/swriter/ui/indentpage.ui:115
msgctxt "indentpage|label2"
msgid "Indent"
msgstr "ഇന്‍ഡെന്റ്"
-#: sw/uiconfig/swriter/ui/indentpage.ui:142
+#: sw/uiconfig/swriter/ui/indentpage.ui:155
msgctxt "indentpage|preview-atkobject"
msgid "Example"
msgstr "ഉദാഹരണം"
@@ -14007,7 +14011,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:68
msgctxt "optcompatpage|format"
-msgid "MS Word-compatible trailing blanks"
+msgid "Word-compatible trailing blanks"
msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:69
@@ -14017,7 +14021,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:70
msgctxt "optcompatpage|format"
-msgid "A database field (e.g., MailMerge) with empty value hides its paragraph"
+msgid "Hide paragraphs of database fields (e.g., mail merge) with an empty value"
msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:71
@@ -16881,123 +16885,123 @@ msgctxt "tableproperties|background"
msgid "Background"
msgstr "പശ്ചാത്തലം"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:25
-msgctxt "tabletextflowpage|liststore1"
-msgid "Horizontal"
-msgstr "കുറുകെ"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:29
-msgctxt "tabletextflowpage|liststore1"
-msgid "Vertical"
-msgstr "കുത്തനെ"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:33
-msgctxt "tabletextflowpage|liststore1"
-msgid "Use superordinate object settings"
-msgstr "സൂപ്പര്‍ഓര്‍ഡിനേറ്റ് ഒബ്ജക്ട് ക്രമീകരണങ്ങള്‍ ഉപയോഗിക്കുക"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:47
-msgctxt "tabletextflowpage|liststore2"
-msgid "Top"
-msgstr "മുകളില്‍"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:51
-msgctxt "tabletextflowpage|liststore2"
-msgid "Centered"
-msgstr "മദ്ധ്യത്തില്‍"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:55
-msgctxt "tabletextflowpage|liststore2"
-msgid "Bottom"
-msgstr "താഴെ"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:97
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:53
msgctxt "tabletextflowpage|break"
msgid "_Break"
msgstr "വിഭജനം"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:112
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:68
msgctxt "tabletextflowpage|page"
msgid "_Page"
msgstr "പേജ്"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:132
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:87
msgctxt "tabletextflowpage|column"
msgid "Col_umn"
msgstr "സ്തംഭം"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:151
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:106
msgctxt "tabletextflowpage|before"
msgid "Be_fore"
msgstr "_മുമ്പ്"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:171
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:125
msgctxt "tabletextflowpage|after"
msgid "_After"
msgstr "ശേഷം"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:203
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:158
msgctxt "tabletextflowpage|pagestyle"
msgid "With Page St_yle"
msgstr "പേജ് ശൈലിയോടുകൂടി"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:224
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:177
msgctxt "tabletextflowpage|pagenoft"
msgid "Page _number"
msgstr "പേജിന്റെ സംഖ്യ"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:257
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:213
#, fuzzy
msgctxt "tabletextflowpage|pagestylelb-atkobject"
msgid "With Page Style"
msgstr "പേജ് ശൈലിയോടുകൂടി"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:274
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:230
msgctxt "tabletextflowpage|split"
msgid "Allow _table to split across pages and columns"
msgstr "പട്ടികകള് പേജുകളുടെയും കോളങ്ങളുടെയും എതിരെ വിഭജിക്കാന് അനുവദിക്കുക"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:289
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:245
msgctxt "tabletextflowpage|splitrow"
msgid "Allow row to break a_cross pages and columns"
msgstr "നിരകള് പേജുകളുടെയും കോളങ്ങളുടെയും എതിരെ വിഭജിക്കാന് അനുവദിക്കുക"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:306
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:262
msgctxt "tabletextflowpage|keep"
msgid "_Keep with next paragraph"
msgstr "അടുത്ത ഖണ്ഡികയുടെ കൂടെ വയ്ക്കുക"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:328
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:284
msgctxt "tabletextflowpage|label40"
msgid "Text _orientation"
msgstr "ടെക്സ്റ്റ് _ഒറിയന്റേഷന്‍"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:361
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:298
+msgctxt "tabletextflowpage|liststore1"
+msgid "Horizontal"
+msgstr "കുറുകെ"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:299
+msgctxt "tabletextflowpage|liststore1"
+msgid "Vertical"
+msgstr "കുത്തനെ"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:300
+msgctxt "tabletextflowpage|liststore1"
+msgid "Use superordinate object settings"
+msgstr "സൂപ്പര്‍ഓര്‍ഡിനേറ്റ് ഒബ്ജക്ട് ക്രമീകരണങ്ങള്‍ ഉപയോഗിക്കുക"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:321
msgctxt "tabletextflowpage|headline"
msgid "R_epeat heading"
msgstr "തലക്കെട്ട് വീണ്ടും ചെയ്യുക "
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:383
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:343
msgctxt "tabletextflowpage|label38"
msgid "The first "
msgstr "ആദ്യത്തെ"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:396
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:356
msgctxt "tabletextflowpage|label39"
msgid "rows"
msgstr "വരികള്‍"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:434
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:395
msgctxt "tabletextflowpage|label35"
msgid "Text Flow"
msgstr "ടെക്സ്റ്റ് ഒഴുക്ക്"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:467
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:428
msgctxt "tabletextflowpage|label41"
msgid "_Vertical alignment"
msgstr "കുത്തനെയുള്ള ക്രമീകരണം"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:495
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:442
+msgctxt "tabletextflowpage|liststore2"
+msgid "Top"
+msgstr "മുകളില്‍"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:443
+msgctxt "tabletextflowpage|liststore2"
+msgid "Centered"
+msgstr "മദ്ധ്യത്തില്‍"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:444
+msgctxt "tabletextflowpage|liststore2"
+msgid "Bottom"
+msgstr "താഴെ"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:460
msgctxt "tabletextflowpage|label36"
msgid "Alignment"
msgstr "ക്രമീകരണം"
@@ -17823,10 +17827,9 @@ msgid "Alphabetical Index"
msgstr ""
#: sw/uiconfig/swriter/ui/tocindexpage.ui:58
-#, fuzzy
msgctxt "tocindexpage|liststore1"
-msgid "Illustration Index"
-msgstr "ഉദാഹരണ അനുക്രമണിക 1"
+msgid "Table of Figures"
+msgstr ""
#: sw/uiconfig/swriter/ui/tocindexpage.ui:62
msgctxt "tocindexpage|liststore1"
diff --git a/source/ml/writerperfect/messages.po b/source/ml/writerperfect/messages.po
index b9ccb26183e..574907c400c 100644
--- a/source/ml/writerperfect/messages.po
+++ b/source/ml/writerperfect/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-16 16:54+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+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"
@@ -65,98 +65,98 @@ msgctxt "exportepub|generalft"
msgid "General"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:122
+#: writerperfect/uiconfig/ui/exportepub.ui:121
msgctxt "exportepub|versionft"
msgid "Version:"
msgstr "പതിപ്പു്:"
-#: writerperfect/uiconfig/ui/exportepub.ui:139
+#: writerperfect/uiconfig/ui/exportepub.ui:138
msgctxt "exportepub|epub3"
msgid "EPUB 3.0"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:140
+#: writerperfect/uiconfig/ui/exportepub.ui:139
msgctxt "exportepub|epub2"
msgid "EPUB 2.0"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:175
+#: writerperfect/uiconfig/ui/exportepub.ui:174
msgctxt "exportepub|splitft"
msgid "Split method:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:192
+#: writerperfect/uiconfig/ui/exportepub.ui:191
msgctxt "exportepub|splitpage"
msgid "Page break"
msgstr "താള്‍ വിഭജിക്കുക"
-#: writerperfect/uiconfig/ui/exportepub.ui:193
+#: writerperfect/uiconfig/ui/exportepub.ui:192
#, fuzzy
msgctxt "exportepub|splitheading"
msgid "Heading"
msgstr "ശീര്ഷകം"
-#: writerperfect/uiconfig/ui/exportepub.ui:228
+#: writerperfect/uiconfig/ui/exportepub.ui:227
msgctxt "exportepub|layoutft"
msgid "Layout method:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:245
+#: writerperfect/uiconfig/ui/exportepub.ui:244
msgctxt "exportepub|layoutreflowable"
msgid "Reflowable"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:246
+#: writerperfect/uiconfig/ui/exportepub.ui:245
msgctxt "exportepub|layoutfixed"
msgid "Fixed"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:281
+#: writerperfect/uiconfig/ui/exportepub.ui:280
msgctxt "exportepub|coverimageft"
msgid "Custom cover image:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:311
+#: writerperfect/uiconfig/ui/exportepub.ui:310
msgctxt "exportepub|coverbutton"
msgid "Browse..."
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:355
+#: writerperfect/uiconfig/ui/exportepub.ui:354
msgctxt "exportepub|mediadirft"
msgid "Custom media directory:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:385
+#: writerperfect/uiconfig/ui/exportepub.ui:384
msgctxt "exportepub|mediabutton"
msgid "Browse..."
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:429
+#: writerperfect/uiconfig/ui/exportepub.ui:428
msgctxt "exportepub|metadataft"
msgid "Metadata"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:470
+#: writerperfect/uiconfig/ui/exportepub.ui:468
msgctxt "exportepub|identifierft"
msgid "Identifier:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:485
+#: writerperfect/uiconfig/ui/exportepub.ui:483
msgctxt "exportepub|titleft"
msgid "Title:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:511
+#: writerperfect/uiconfig/ui/exportepub.ui:509
msgctxt "exportepub|authorft"
msgid "Author:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:537
+#: writerperfect/uiconfig/ui/exportepub.ui:535
msgctxt "exportepub|languageft"
msgid "Language:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:563
+#: writerperfect/uiconfig/ui/exportepub.ui:561
msgctxt "exportepub|dateft"
msgid "Date:"
msgstr ""
diff --git a/source/mn/cui/messages.po b/source/mn/cui/messages.po
index 87cf4e0e81b..723e830b051 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2018-03-22 22:29+0000\n"
"Last-Translator: Bachka <ichinnorovb@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -10433,107 +10433,107 @@ msgctxt "positionsizedialog|PositionAndSizeDialog"
msgid "Position and Size"
msgstr "~Байрлал ба хэмжээ..."
-#: cui/uiconfig/ui/positionsizedialog.ui:107
+#: cui/uiconfig/ui/positionsizedialog.ui:136
#, fuzzy
msgctxt "positionsizedialog|RID_SVXPAGE_POSITION_SIZE"
msgid "Position and Size"
msgstr "~Байрлал ба хэмжээ..."
-#: cui/uiconfig/ui/positionsizedialog.ui:129
+#: cui/uiconfig/ui/positionsizedialog.ui:182
#, fuzzy
msgctxt "positionsizedialog|RID_SVXPAGE_SWPOSSIZE"
msgid "Position and Size"
msgstr "~Байрлал ба хэмжээ..."
-#: cui/uiconfig/ui/positionsizedialog.ui:152
+#: cui/uiconfig/ui/positionsizedialog.ui:229
msgctxt "positionsizedialog|RID_SVXPAGE_ANGLE"
msgid "Rotation"
msgstr "Эргүүлэлт"
-#: cui/uiconfig/ui/positionsizedialog.ui:175
+#: cui/uiconfig/ui/positionsizedialog.ui:276
msgctxt "positionsizedialog|RID_SVXPAGE_SLANT"
msgid "Slant & Corner Radius"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:40
+#: cui/uiconfig/ui/possizetabpage.ui:61
#, fuzzy
msgctxt "possizetabpage|FT_POS_X"
msgid "Position _X:"
msgstr " Байрлал"
-#: cui/uiconfig/ui/possizetabpage.ui:56
+#: cui/uiconfig/ui/possizetabpage.ui:75
#, fuzzy
msgctxt "possizetabpage|FT_POS_Y"
msgid "Position _Y:"
msgstr " Байрлал"
-#: cui/uiconfig/ui/possizetabpage.ui:110
+#: cui/uiconfig/ui/possizetabpage.ui:128
msgctxt "possizetabpage|FT_POSREFERENCE"
msgid "_Base point:"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:148
+#: cui/uiconfig/ui/possizetabpage.ui:182
#, fuzzy
msgctxt "possizetabpage|label1"
msgid "Position"
msgstr " Байрлал"
-#: cui/uiconfig/ui/possizetabpage.ui:190
+#: cui/uiconfig/ui/possizetabpage.ui:224
#, fuzzy
msgctxt "possizetabpage|FT_WIDTH"
msgid "Wi_dth:"
msgstr "Өргөн"
-#: cui/uiconfig/ui/possizetabpage.ui:206
+#: cui/uiconfig/ui/possizetabpage.ui:238
#, fuzzy
msgctxt "possizetabpage|FT_HEIGHT"
msgid "H_eight:"
msgstr "Өндөр"
-#: cui/uiconfig/ui/possizetabpage.ui:247
+#: cui/uiconfig/ui/possizetabpage.ui:276
msgctxt "possizetabpage|CBX_SCALE"
msgid "_Keep ratio"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:279
+#: cui/uiconfig/ui/possizetabpage.ui:307
msgctxt "possizetabpage|FT_SIZEREFERENCE"
msgid "Base _point:"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:317
+#: cui/uiconfig/ui/possizetabpage.ui:361
msgctxt "possizetabpage|label2"
msgid "Size"
msgstr "Хэмжээ"
-#: cui/uiconfig/ui/possizetabpage.ui:356
+#: cui/uiconfig/ui/possizetabpage.ui:401
#, fuzzy
msgctxt "possizetabpage|TSB_POSPROTECT"
msgid "Positio_n"
msgstr " Байрлал"
-#: cui/uiconfig/ui/possizetabpage.ui:373
+#: cui/uiconfig/ui/possizetabpage.ui:418
#, fuzzy
msgctxt "possizetabpage|TSB_SIZEPROTECT"
msgid "_Size"
msgstr "Хэмжээ"
-#: cui/uiconfig/ui/possizetabpage.ui:397
+#: cui/uiconfig/ui/possizetabpage.ui:441
#, fuzzy
msgctxt "possizetabpage|label3"
msgid "Protect"
msgstr "~Түгжээ"
-#: cui/uiconfig/ui/possizetabpage.ui:430
+#: cui/uiconfig/ui/possizetabpage.ui:475
msgctxt "possizetabpage|TSB_AUTOGROW_WIDTH"
msgid "_Fit width to text"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:447
+#: cui/uiconfig/ui/possizetabpage.ui:492
msgctxt "possizetabpage|TSB_AUTOGROW_HEIGHT"
msgid "Fit _height to text"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:471
+#: cui/uiconfig/ui/possizetabpage.ui:515
msgctxt "possizetabpage|label4"
msgid "Adapt"
msgstr ""
@@ -10744,50 +10744,50 @@ msgctxt "recordnumberdialog|label2"
msgid "go to record"
msgstr ""
-#: cui/uiconfig/ui/rotationtabpage.ui:52
+#: cui/uiconfig/ui/rotationtabpage.ui:56
#, fuzzy
msgctxt "rotationtabpage|FT_POS_X"
msgid "Position _X:"
msgstr " Байрлал"
-#: cui/uiconfig/ui/rotationtabpage.ui:66
+#: cui/uiconfig/ui/rotationtabpage.ui:70
#, fuzzy
msgctxt "rotationtabpage|FT_POS_Y"
msgid "Position _Y:"
msgstr " Байрлал"
-#: cui/uiconfig/ui/rotationtabpage.ui:116
+#: cui/uiconfig/ui/rotationtabpage.ui:123
msgctxt "rotationtabpage|FT_POSPRESETS"
msgid "_Default settings:"
msgstr ""
-#: cui/uiconfig/ui/rotationtabpage.ui:130
+#: cui/uiconfig/ui/rotationtabpage.ui:151
msgctxt "rotationtabpage|CTL_RECT|tooltip_text"
msgid "Rotation point"
msgstr ""
-#: cui/uiconfig/ui/rotationtabpage.ui:155
+#: cui/uiconfig/ui/rotationtabpage.ui:178
msgctxt "rotationtabpage|label1"
msgid "Pivot Point"
msgstr ""
-#: cui/uiconfig/ui/rotationtabpage.ui:197
+#: cui/uiconfig/ui/rotationtabpage.ui:220
msgctxt "rotationtabpage|FT_ANGLE"
msgid "_Angle:"
msgstr ""
-#: cui/uiconfig/ui/rotationtabpage.ui:238
+#: cui/uiconfig/ui/rotationtabpage.ui:263
msgctxt "rotationtabpage|FT_ANGLEPRESETS"
msgid "Default _settings:"
msgstr ""
-#: cui/uiconfig/ui/rotationtabpage.ui:252
+#: cui/uiconfig/ui/rotationtabpage.ui:287
#, fuzzy
msgctxt "rotationtabpage|CTL_ANGLE|tooltip_text"
msgid "Rotation Angle"
msgstr "Эргүүлэлтийн өнцөг"
-#: cui/uiconfig/ui/rotationtabpage.ui:277
+#: cui/uiconfig/ui/rotationtabpage.ui:314
#, fuzzy
msgctxt "rotationtabpage|label2"
msgid "Rotation Angle"
@@ -11184,55 +11184,55 @@ msgctxt "similaritysearchdialog|relaxbox"
msgid "_Combine"
msgstr "хослуулах"
-#: cui/uiconfig/ui/slantcornertabpage.ui:50
+#: cui/uiconfig/ui/slantcornertabpage.ui:70
msgctxt "slantcornertabpage|label5"
msgid "_X:"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:88
+#: cui/uiconfig/ui/slantcornertabpage.ui:110
msgctxt "slantcornertabpage|label6"
msgid "_Y:"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:125
+#: cui/uiconfig/ui/slantcornertabpage.ui:149
msgctxt "slantcornertabpage|label3"
msgid "Control Point 1"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:159
+#: cui/uiconfig/ui/slantcornertabpage.ui:183
#, fuzzy
msgctxt "slantcornertabpage|FT_RADIUS"
msgid "_Radius:"
msgstr "Радиус"
-#: cui/uiconfig/ui/slantcornertabpage.ui:189
+#: cui/uiconfig/ui/slantcornertabpage.ui:214
#, fuzzy
msgctxt "slantcornertabpage|label1"
msgid "Corner Radius"
msgstr "Булангийн радиус"
-#: cui/uiconfig/ui/slantcornertabpage.ui:223
+#: cui/uiconfig/ui/slantcornertabpage.ui:248
msgctxt "slantcornertabpage|FT_ANGLE"
msgid "_Angle:"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:253
+#: cui/uiconfig/ui/slantcornertabpage.ui:279
#, fuzzy
msgctxt "slantcornertabpage|label2"
msgid "Slant"
msgstr "Налуу"
-#: cui/uiconfig/ui/slantcornertabpage.ui:294
+#: cui/uiconfig/ui/slantcornertabpage.ui:320
msgctxt "slantcornertabpage|label4"
msgid "_X:"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:332
+#: cui/uiconfig/ui/slantcornertabpage.ui:360
msgctxt "slantcornertabpage|label7"
msgid "_Y:"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:369
+#: cui/uiconfig/ui/slantcornertabpage.ui:399
msgctxt "slantcornertabpage|label8"
msgid "Control Point 2"
msgstr ""
@@ -11532,124 +11532,124 @@ msgctxt "storedwebconnectiondialog|change"
msgid "_Change Password..."
msgstr "~Нууц үг өөрчлөх..."
-#: cui/uiconfig/ui/swpossizepage.ui:74
+#: cui/uiconfig/ui/swpossizepage.ui:85
#, fuzzy
msgctxt "swpossizepage|widthft"
msgid "_Width:"
msgstr "Өргөн"
-#: cui/uiconfig/ui/swpossizepage.ui:111
+#: cui/uiconfig/ui/swpossizepage.ui:123
#, fuzzy
msgctxt "swpossizepage|heightft"
msgid "H_eight:"
msgstr "Өндөр"
-#: cui/uiconfig/ui/swpossizepage.ui:128
+#: cui/uiconfig/ui/swpossizepage.ui:141
msgctxt "swpossizepage|ratio"
msgid "_Keep ratio"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:149
+#: cui/uiconfig/ui/swpossizepage.ui:162
msgctxt "swpossizepage|label2"
msgid "Size"
msgstr "Хэмжээ"
-#: cui/uiconfig/ui/swpossizepage.ui:205
+#: cui/uiconfig/ui/swpossizepage.ui:218
#, fuzzy
msgctxt "swpossizepage|topage"
msgid "To _page"
msgstr "хуудас руу"
-#: cui/uiconfig/ui/swpossizepage.ui:222
+#: cui/uiconfig/ui/swpossizepage.ui:234
#, fuzzy
msgctxt "swpossizepage|topara"
msgid "To paragrap_h"
msgstr "Параграф"
-#: cui/uiconfig/ui/swpossizepage.ui:238
+#: cui/uiconfig/ui/swpossizepage.ui:250
#, fuzzy
msgctxt "swpossizepage|tochar"
msgid "To cha_racter"
msgstr "Тэмдэгт рүү"
-#: cui/uiconfig/ui/swpossizepage.ui:254
+#: cui/uiconfig/ui/swpossizepage.ui:266
#, fuzzy
msgctxt "swpossizepage|aschar"
msgid "_As character"
msgstr "Тэмдэгтээр"
-#: cui/uiconfig/ui/swpossizepage.ui:270
+#: cui/uiconfig/ui/swpossizepage.ui:282
#, fuzzy
msgctxt "swpossizepage|toframe"
msgid "To _frame"
msgstr "Блок"
-#: cui/uiconfig/ui/swpossizepage.ui:292
+#: cui/uiconfig/ui/swpossizepage.ui:304
msgctxt "swpossizepage|label1"
msgid "Anchor"
msgstr "Гадас"
-#: cui/uiconfig/ui/swpossizepage.ui:333
+#: cui/uiconfig/ui/swpossizepage.ui:344
#, fuzzy
msgctxt "swpossizepage|horiposft"
msgid "Hori_zontal:"
msgstr "Хэвтээ"
-#: cui/uiconfig/ui/swpossizepage.ui:347
+#: cui/uiconfig/ui/swpossizepage.ui:358
msgctxt "swpossizepage|horibyft"
msgid "b_y:"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:361
+#: cui/uiconfig/ui/swpossizepage.ui:372
msgctxt "swpossizepage|vertbyft"
msgid "_by:"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:375
+#: cui/uiconfig/ui/swpossizepage.ui:386
msgctxt "swpossizepage|horitoft"
msgid "_to:"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:421
+#: cui/uiconfig/ui/swpossizepage.ui:433
#, fuzzy
msgctxt "swpossizepage|vertposft"
msgid "_Vertical:"
msgstr "Босоо"
-#: cui/uiconfig/ui/swpossizepage.ui:457
+#: cui/uiconfig/ui/swpossizepage.ui:470
msgctxt "swpossizepage|verttoft"
msgid "t_o:"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:478
+#: cui/uiconfig/ui/swpossizepage.ui:492
msgctxt "swpossizepage|mirror"
msgid "_Mirror on even pages"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:495
+#: cui/uiconfig/ui/swpossizepage.ui:509
msgctxt "swpossizepage|followtextflow"
msgid "Follow te_xt flow"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:518
+#: cui/uiconfig/ui/swpossizepage.ui:532
#, fuzzy
msgctxt "swpossizepage|label11"
msgid "Position"
msgstr " Байрлал"
-#: cui/uiconfig/ui/swpossizepage.ui:549
+#: cui/uiconfig/ui/swpossizepage.ui:563
#, fuzzy
msgctxt "swpossizepage|pos"
msgid "Positio_n"
msgstr " Байрлал"
-#: cui/uiconfig/ui/swpossizepage.ui:565
+#: cui/uiconfig/ui/swpossizepage.ui:579
#, fuzzy
msgctxt "swpossizepage|size"
msgid "_Size"
msgstr "Хэмжээ"
-#: cui/uiconfig/ui/swpossizepage.ui:587
+#: cui/uiconfig/ui/swpossizepage.ui:601
#, fuzzy
msgctxt "swpossizepage|label3"
msgid "Protect"
@@ -11856,13 +11856,13 @@ msgctxt "textattrtabpage|label2"
msgid "Spacing to Borders"
msgstr ""
-#: cui/uiconfig/ui/textattrtabpage.ui:425
+#: cui/uiconfig/ui/textattrtabpage.ui:423
#, fuzzy
msgctxt "textattrtabpage|TSB_FULL_WIDTH"
msgid "Full _width"
msgstr "Бүтэн-өргөн"
-#: cui/uiconfig/ui/textattrtabpage.ui:448
+#: cui/uiconfig/ui/textattrtabpage.ui:446
msgctxt "textattrtabpage|label3"
msgid "Text Anchor"
msgstr ""
diff --git a/source/mn/filter/source/config/fragments/filters.po b/source/mn/filter/source/config/fragments/filters.po
index 02347621c09..4a8c7340096 100644
--- a/source/mn/filter/source/config/fragments/filters.po
+++ b/source/mn/filter/source/config/fragments/filters.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-16 16:54+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2016-03-11 10:34+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -466,8 +466,8 @@ msgctxt ""
"MS Word 2003 XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Word 2003 XML"
-msgstr "Microsoft Word 2003 XML"
+msgid "Word 2003 XML"
+msgstr ""
#: MS_Word_2007_XML.xcu
msgctxt ""
@@ -1292,7 +1292,7 @@ msgctxt ""
"Calc MS Excel 2007 VBA XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Excel 2007-2016 XML (macro enabled)"
+msgid "Excel 2007–2019 (macro-enabled)"
msgstr ""
#: calc_MS_Excel_2007_XML.xcu
diff --git a/source/mn/filter/source/config/fragments/types.po b/source/mn/filter/source/config/fragments/types.po
index 97f585111da..7a9c8b7a9c0 100644
--- a/source/mn/filter/source/config/fragments/types.po
+++ b/source/mn/filter/source/config/fragments/types.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-08 15:11+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2015-11-11 21:56+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -294,8 +294,8 @@ msgctxt ""
"writer_MS_Word_2003_XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Word 2003 XML"
-msgstr "Microsoft Word 2003 XML"
+msgid "Word 2003 XML"
+msgstr ""
#: writer_MS_Word_2007_XML.xcu
msgctxt ""
diff --git a/source/mn/fpicker/messages.po b/source/mn/fpicker/messages.po
index 6e160667461..9fccf27f48d 100644
--- a/source/mn/fpicker/messages.po
+++ b/source/mn/fpicker/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+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"
@@ -272,13 +272,13 @@ msgstr ""
#: fpicker/uiconfig/ui/foldernamedialog.ui:8
msgctxt "foldernamedialog|FolderNameDialog"
-msgid "Folder Name ?"
-msgstr "Хавтасны нэр?"
+msgid "Folder Name"
+msgstr ""
#: fpicker/uiconfig/ui/foldernamedialog.ui:91
msgctxt "foldernamedialog|label2"
-msgid "Na_me"
-msgstr "_Нэр"
+msgid "Na_me:"
+msgstr ""
#: fpicker/uiconfig/ui/foldernamedialog.ui:122
msgctxt "foldernamedialog|label1"
diff --git a/source/mn/officecfg/registry/data/org/openoffice/Office/UI.po b/source/mn/officecfg/registry/data/org/openoffice/Office/UI.po
index 0db293af9ce..4a0867334cd 100644
--- a/source/mn/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/mn/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-22 13:17+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2018-03-22 22:35+0000\n"
"Last-Translator: Bachka <ichinnorovb@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -27005,8 +27005,8 @@ msgctxt ""
"..WriterCommands.UserInterface.Commands..uno:TextAttributes\n"
"Label\n"
"value.text"
-msgid "Text Attributes"
-msgstr "Бичвэрийн атрибут"
+msgid "Text Attributes..."
+msgstr ""
#: WriterCommands.xcu
msgctxt ""
diff --git a/source/mn/readlicense_oo/docs.po b/source/mn/readlicense_oo/docs.po
index dba366c1c2f..f2424a84583 100644
--- a/source/mn/readlicense_oo/docs.po
+++ b/source/mn/readlicense_oo/docs.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-04-17 15:54+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2016-03-11 13:14+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -117,7 +117,7 @@ msgctxt ""
"readme.xrm\n"
"macxiOSX\n"
"readmeitem.text"
-msgid "MacOSX 10.8 (Mountain Lion) or higher"
+msgid "MacOSX 10.9 (Mavericks) or higher"
msgstr ""
#: readme.xrm
diff --git a/source/mn/sc/messages.po b/source/mn/sc/messages.po
index f9bdc66204f..db05d255027 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-12 14:40+0200\n"
"PO-Revision-Date: 2018-03-22 22:36+0000\n"
"Last-Translator: Bachka <ichinnorovb@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1884,17 +1884,22 @@ msgid "Nested arrays are not supported."
msgstr "Шаталсан матриц дэмжигдээгүй."
#: sc/inc/globstr.hrc:390
+msgctxt "STR_ERR_LONG_BAD_ARRAY_CONTENT"
+msgid "Unsupported inline array content."
+msgstr ""
+
+#: sc/inc/globstr.hrc:391
#, fuzzy
msgctxt "STR_UNDO_TEXTTOCOLUMNS"
msgid "Text to Columns"
msgstr "~Бичвэрийг багана руу..."
-#: sc/inc/globstr.hrc:391
+#: sc/inc/globstr.hrc:392
msgctxt "STR_DOC_UPDATED"
msgid "Your spreadsheet has been updated with changes saved by other users."
msgstr "Таны хүснэгт баримт бусад хэрэглэгчдийн хадгалсан өөрчлөлтийн хүлээн авлаа."
-#: sc/inc/globstr.hrc:392
+#: sc/inc/globstr.hrc:393
msgctxt "STR_DOC_WILLBESAVED"
msgid ""
"The spreadsheet must be saved now to activate sharing mode.\n"
@@ -1905,7 +1910,7 @@ msgstr ""
"\n"
"Та үргэлжлүүлэхийг хүсэж байна уу?"
-#: sc/inc/globstr.hrc:393
+#: sc/inc/globstr.hrc:394
msgctxt "STR_DOC_WILLNOTBESAVED"
msgid ""
"Already resolved merge conflicts will be lost and your changes to the shared spreadsheet will not be saved.\n"
@@ -1916,7 +1921,7 @@ msgstr ""
"\n"
"Та үргэлжлүүлэхийг хүсэж байна уу?"
-#: sc/inc/globstr.hrc:394
+#: sc/inc/globstr.hrc:395
msgctxt "STR_DOC_DISABLESHARED"
msgid ""
"Disabling shared mode of a spreadsheet hinders all other users of the shared spreadsheet to merge back their work.\n"
@@ -1927,7 +1932,7 @@ msgstr ""
"\n"
"Та үргэлжлүүлэхийг хүсэж байна уу?"
-#: sc/inc/globstr.hrc:395
+#: sc/inc/globstr.hrc:396
msgctxt "STR_DOC_NOLONGERSHARED"
msgid ""
"This spreadsheet is no longer in shared mode.\n"
@@ -1938,7 +1943,7 @@ msgstr ""
"\n"
"Та хүснэгт баримтаа тусад нь файлд хадгалаад өөрийн өөрчлөлтөө хамтын хүснэгт баримт руугаа гараар нэгтгэнэ үү."
-#: sc/inc/globstr.hrc:396
+#: sc/inc/globstr.hrc:397
msgctxt "STR_FILE_LOCKED_TRY_LATER"
msgid ""
"The shared spreadsheet file is locked due to a merge in progress by user: '%1'\n"
@@ -1949,7 +1954,7 @@ msgstr ""
"\n"
"Түгжигдсэн файлын хамтын горим хаагдах боломжгүй. Дараа дахин оролдоно уу."
-#: sc/inc/globstr.hrc:397
+#: sc/inc/globstr.hrc:398
msgctxt "STR_FILE_LOCKED_SAVE_LATER"
msgid ""
"The shared spreadsheet file is locked due to a merge in progress by user: '%1'\n"
@@ -1960,158 +1965,158 @@ msgstr ""
"\n"
"Өөрийн өөрчлөлтөө хадгалахын тулд дараа дахин оролдоно уу."
-#: sc/inc/globstr.hrc:398
+#: sc/inc/globstr.hrc:399
msgctxt "STR_UNKNOWN_USER"
msgid "Unknown User"
msgstr "Тодорхойгүй хэрэглэгч"
-#: sc/inc/globstr.hrc:399
+#: sc/inc/globstr.hrc:400
msgctxt "STR_SHAPE_AUTOSHAPE"
msgid "AutoShape"
msgstr ""
-#: sc/inc/globstr.hrc:400
+#: sc/inc/globstr.hrc:401
msgctxt "STR_SHAPE_RECTANGLE"
msgid "Rectangle"
msgstr "Тэгш өнцөгт"
-#: sc/inc/globstr.hrc:401
+#: sc/inc/globstr.hrc:402
#, fuzzy
msgctxt "STR_SHAPE_LINE"
msgid "Line"
msgstr "Амьдрал"
-#: sc/inc/globstr.hrc:402
+#: sc/inc/globstr.hrc:403
msgctxt "STR_SHAPE_OVAL"
msgid "Oval"
msgstr "Зууван"
-#: sc/inc/globstr.hrc:403
+#: sc/inc/globstr.hrc:404
msgctxt "STR_FORM_BUTTON"
msgid "Button"
msgstr "Товч"
-#: sc/inc/globstr.hrc:404
+#: sc/inc/globstr.hrc:405
msgctxt "STR_FORM_CHECKBOX"
msgid "Check Box"
msgstr "Чек бокс"
-#: sc/inc/globstr.hrc:405
+#: sc/inc/globstr.hrc:406
#, fuzzy
msgctxt "STR_FORM_OPTIONBUTTON"
msgid "Option Button"
msgstr "Өөрчлөлтийн товчлуур"
-#: sc/inc/globstr.hrc:406
+#: sc/inc/globstr.hrc:407
#, fuzzy
msgctxt "STR_FORM_LABEL"
msgid "Label"
msgstr "Гарчиг"
-#: sc/inc/globstr.hrc:407
+#: sc/inc/globstr.hrc:408
#, fuzzy
msgctxt "STR_FORM_LISTBOX"
msgid "List Box"
msgstr "Жагсаалт бокс"
-#: sc/inc/globstr.hrc:408
+#: sc/inc/globstr.hrc:409
msgctxt "STR_FORM_GROUPBOX"
msgid "Group Box"
msgstr "Бүлэг бокс"
-#: sc/inc/globstr.hrc:409
+#: sc/inc/globstr.hrc:410
#, fuzzy
msgctxt "STR_FORM_DROPDOWN"
msgid "Drop Down"
msgstr "Унагах"
-#: sc/inc/globstr.hrc:410
+#: sc/inc/globstr.hrc:411
msgctxt "STR_FORM_SPINNER"
msgid "Spinner"
msgstr ""
-#: sc/inc/globstr.hrc:411
+#: sc/inc/globstr.hrc:412
#, fuzzy
msgctxt "STR_FORM_SCROLLBAR"
msgid "Scroll Bar"
msgstr "Гүйлгэгч"
-#: sc/inc/globstr.hrc:412
+#: sc/inc/globstr.hrc:413
msgctxt "STR_STYLE_FAMILY_CELL"
msgid "Cell Styles"
msgstr "Нүдний загвар"
-#: sc/inc/globstr.hrc:413
+#: sc/inc/globstr.hrc:414
#, fuzzy
msgctxt "STR_STYLE_FAMILY_PAGE"
msgid "Page Styles"
msgstr "Хуудасны загвар"
-#: sc/inc/globstr.hrc:414
+#: sc/inc/globstr.hrc:415
#, fuzzy
msgctxt "STR_ERR_DATAPILOTSOURCE"
msgid "Pivot table source data is invalid."
msgstr "Өгсөн урсгал хүчингүй"
-#: sc/inc/globstr.hrc:415
+#: sc/inc/globstr.hrc:416
msgctxt "STR_OPTIONS_WARN_SEPARATORS"
msgid "Because the current formula separator settings conflict with the locale, the formula separators have been reset to their default values."
msgstr ""
-#: sc/inc/globstr.hrc:416
+#: sc/inc/globstr.hrc:417
msgctxt "STR_UNDO_INSERT_CURRENT_DATE"
msgid "Insert Current Date"
msgstr ""
-#: sc/inc/globstr.hrc:417
+#: sc/inc/globstr.hrc:418
msgctxt "STR_UNDO_INSERT_CURRENT_TIME"
msgid "Insert Current Time"
msgstr ""
-#: sc/inc/globstr.hrc:418
+#: sc/inc/globstr.hrc:419
#, fuzzy
msgctxt "STR_MANAGE_NAMES"
msgid "Manage Names..."
msgstr "Мужийн нэр"
-#: sc/inc/globstr.hrc:419
+#: sc/inc/globstr.hrc:420
msgctxt "STR_HEADER_NAME"
msgid "Name"
msgstr "Нэр"
-#: sc/inc/globstr.hrc:420
+#: sc/inc/globstr.hrc:421
msgctxt "STR_HEADER_RANGE_OR_EXPR"
msgid "Range or formula expression"
msgstr ""
-#: sc/inc/globstr.hrc:421
+#: sc/inc/globstr.hrc:422
msgctxt "STR_HEADER_SCOPE"
msgid "Scope"
msgstr "Хүчинтэй муж"
-#: sc/inc/globstr.hrc:422
+#: sc/inc/globstr.hrc:423
#, fuzzy
msgctxt "STR_MULTI_SELECT"
msgid "(multiple)"
msgstr "олон дахин давтагдсан"
-#: sc/inc/globstr.hrc:423
+#: sc/inc/globstr.hrc:424
#, fuzzy
msgctxt "STR_GLOBAL_SCOPE"
msgid "Document (Global)"
msgstr "Баримтын горим"
-#: sc/inc/globstr.hrc:424
+#: sc/inc/globstr.hrc:425
msgctxt "STR_ERR_NAME_EXISTS"
msgid "Invalid name. Already in use for the selected scope."
msgstr ""
-#: sc/inc/globstr.hrc:425
+#: sc/inc/globstr.hrc:426
msgctxt "STR_ERR_NAME_INVALID"
msgid "Invalid name. Only use letters, numbers and underscore."
msgstr ""
-#: sc/inc/globstr.hrc:426
+#: sc/inc/globstr.hrc:427
msgctxt "STR_UNSAVED_EXT_REF"
msgid ""
"This Document contains external references to unsaved documents.\n"
@@ -2119,227 +2124,227 @@ msgid ""
"Do you want to continue?"
msgstr ""
-#: sc/inc/globstr.hrc:427
+#: sc/inc/globstr.hrc:428
msgctxt "STR_CLOSE_WITH_UNSAVED_REFS"
msgid "This Document is referenced by another document and not yet saved. Closing it without saving will result in data loss."
msgstr ""
-#: sc/inc/globstr.hrc:428
+#: sc/inc/globstr.hrc:429
msgctxt "STR_HEADER_RANGE"
msgid "Range"
msgstr "Муж"
-#: sc/inc/globstr.hrc:429
+#: sc/inc/globstr.hrc:430
msgctxt "STR_HEADER_COND"
msgid "First Condition"
msgstr ""
-#: sc/inc/globstr.hrc:430
+#: sc/inc/globstr.hrc:431
#, fuzzy
msgctxt "STR_COND_CONDITION"
msgid "Cell value is"
msgstr "Нүдний утга нь"
-#: sc/inc/globstr.hrc:431
+#: sc/inc/globstr.hrc:432
msgctxt "STR_COND_COLORSCALE"
msgid "ColorScale"
msgstr ""
-#: sc/inc/globstr.hrc:432
+#: sc/inc/globstr.hrc:433
msgctxt "STR_COND_DATABAR"
msgid "DataBar"
msgstr ""
-#: sc/inc/globstr.hrc:433
+#: sc/inc/globstr.hrc:434
msgctxt "STR_COND_ICONSET"
msgid "IconSet"
msgstr ""
-#: sc/inc/globstr.hrc:434
+#: sc/inc/globstr.hrc:435
#, fuzzy
msgctxt "STR_COND_BETWEEN"
msgid "between"
msgstr "хооронд"
-#: sc/inc/globstr.hrc:435
+#: sc/inc/globstr.hrc:436
#, fuzzy
msgctxt "STR_COND_NOTBETWEEN"
msgid "not between"
msgstr "хооронд биш"
-#: sc/inc/globstr.hrc:436
+#: sc/inc/globstr.hrc:437
#, fuzzy
msgctxt "STR_COND_UNIQUE"
msgid "unique"
msgstr "цор ганц"
-#: sc/inc/globstr.hrc:437
+#: sc/inc/globstr.hrc:438
#, fuzzy
msgctxt "STR_COND_DUPLICATE"
msgid "duplicate"
msgstr "Хувилах"
-#: sc/inc/globstr.hrc:438
+#: sc/inc/globstr.hrc:439
#, fuzzy
msgctxt "STR_COND_FORMULA"
msgid "Formula is"
msgstr "Томьёо нь"
-#: sc/inc/globstr.hrc:439
+#: sc/inc/globstr.hrc:440
msgctxt "STR_COND_TOP10"
msgid "Top Elements"
msgstr ""
-#: sc/inc/globstr.hrc:440
+#: sc/inc/globstr.hrc:441
msgctxt "STR_COND_BOTTOM10"
msgid "Bottom Elements"
msgstr ""
-#: sc/inc/globstr.hrc:441
+#: sc/inc/globstr.hrc:442
msgctxt "STR_COND_TOP_PERCENT"
msgid "Top Percent"
msgstr ""
-#: sc/inc/globstr.hrc:442
+#: sc/inc/globstr.hrc:443
msgctxt "STR_COND_DATE"
msgid "Date is"
msgstr ""
-#: sc/inc/globstr.hrc:443
+#: sc/inc/globstr.hrc:444
msgctxt "STR_COND_BOTTOM_PERCENT"
msgid "Bottom Percent"
msgstr ""
-#: sc/inc/globstr.hrc:444
+#: sc/inc/globstr.hrc:445
msgctxt "STR_COND_ABOVE_AVERAGE"
msgid "Above Average"
msgstr ""
-#: sc/inc/globstr.hrc:445
+#: sc/inc/globstr.hrc:446
msgctxt "STR_COND_BELOW_AVERAGE"
msgid "Below Average"
msgstr ""
-#: sc/inc/globstr.hrc:446
+#: sc/inc/globstr.hrc:447
msgctxt "STR_COND_ABOVE_EQUAL_AVERAGE"
msgid "Above or equal Average"
msgstr ""
-#: sc/inc/globstr.hrc:447
+#: sc/inc/globstr.hrc:448
msgctxt "STR_COND_BELOW_EQUAL_AVERAGE"
msgid "Below or equal Average"
msgstr ""
-#: sc/inc/globstr.hrc:448
+#: sc/inc/globstr.hrc:449
#, fuzzy
msgctxt "STR_COND_ERROR"
msgid "an Error code"
msgstr "Алдааны код"
-#: sc/inc/globstr.hrc:449
+#: sc/inc/globstr.hrc:450
#, fuzzy
msgctxt "STR_COND_NOERROR"
msgid "not an Error code"
msgstr "Алдааны код"
-#: sc/inc/globstr.hrc:450
+#: sc/inc/globstr.hrc:451
msgctxt "STR_COND_BEGINS_WITH"
msgid "Begins with"
msgstr ""
-#: sc/inc/globstr.hrc:451
+#: sc/inc/globstr.hrc:452
msgctxt "STR_COND_ENDS_WITH"
msgid "Ends with"
msgstr ""
-#: sc/inc/globstr.hrc:452
+#: sc/inc/globstr.hrc:453
#, fuzzy
msgctxt "STR_COND_CONTAINS"
msgid "Contains"
msgstr "Агуулдаг"
-#: sc/inc/globstr.hrc:453
+#: sc/inc/globstr.hrc:454
msgctxt "STR_COND_NOT_CONTAINS"
msgid "Not Contains"
msgstr ""
-#: sc/inc/globstr.hrc:454
+#: sc/inc/globstr.hrc:455
#, fuzzy
msgctxt "STR_COND_TODAY"
msgid "today"
msgstr "Өнөөдөр"
-#: sc/inc/globstr.hrc:455
+#: sc/inc/globstr.hrc:456
msgctxt "STR_COND_YESTERDAY"
msgid "yesterday"
msgstr ""
-#: sc/inc/globstr.hrc:456
+#: sc/inc/globstr.hrc:457
msgctxt "STR_COND_TOMORROW"
msgid "tomorrow"
msgstr ""
-#: sc/inc/globstr.hrc:457
+#: sc/inc/globstr.hrc:458
msgctxt "STR_COND_LAST7DAYS"
msgid "in the last 7 days"
msgstr ""
-#: sc/inc/globstr.hrc:458
+#: sc/inc/globstr.hrc:459
msgctxt "STR_COND_THISWEEK"
msgid "this week"
msgstr ""
-#: sc/inc/globstr.hrc:459
+#: sc/inc/globstr.hrc:460
msgctxt "STR_COND_LASTWEEK"
msgid "last week"
msgstr ""
-#: sc/inc/globstr.hrc:460
+#: sc/inc/globstr.hrc:461
msgctxt "STR_COND_NEXTWEEK"
msgid "next week"
msgstr ""
-#: sc/inc/globstr.hrc:461
+#: sc/inc/globstr.hrc:462
msgctxt "STR_COND_THISMONTH"
msgid "this month"
msgstr ""
-#: sc/inc/globstr.hrc:462
+#: sc/inc/globstr.hrc:463
msgctxt "STR_COND_LASTMONTH"
msgid "last month"
msgstr ""
-#: sc/inc/globstr.hrc:463
+#: sc/inc/globstr.hrc:464
msgctxt "STR_COND_NEXTMONTH"
msgid "next month"
msgstr ""
-#: sc/inc/globstr.hrc:464
+#: sc/inc/globstr.hrc:465
msgctxt "STR_COND_THISYEAR"
msgid "this year"
msgstr ""
-#: sc/inc/globstr.hrc:465
+#: sc/inc/globstr.hrc:466
msgctxt "STR_COND_LASTYEAR"
msgid "last year"
msgstr ""
-#: sc/inc/globstr.hrc:466
+#: sc/inc/globstr.hrc:467
msgctxt "STR_COND_NEXTYEAR"
msgid "next year"
msgstr ""
-#: sc/inc/globstr.hrc:467
+#: sc/inc/globstr.hrc:468
msgctxt "STR_COND_AND"
msgid "and"
msgstr "ба"
-#: sc/inc/globstr.hrc:468
+#: sc/inc/globstr.hrc:469
msgctxt "STR_ERR_CONDFORMAT_PROTECTED"
msgid "Conditional Formats can not be created, deleted or changed in protected sheets."
msgstr ""
-#: sc/inc/globstr.hrc:469
+#: sc/inc/globstr.hrc:470
msgctxt "STR_EDIT_EXISTING_COND_FORMATS"
msgid ""
"The selected cell already contains conditional formatting. You can either edit the existing conditional format or you define a new overlapping conditional format.\n"
@@ -2347,7 +2352,7 @@ msgid ""
" Do you want to edit the existing conditional format?"
msgstr ""
-#: sc/inc/globstr.hrc:470
+#: sc/inc/globstr.hrc:471
msgctxt "STR_QUERY_FORMULA_RECALC_ONLOAD_ODS"
msgid ""
"This document was last saved by an application other than %PRODUCTNAME. Some formula cells may produce different results when recalculated.\n"
@@ -2355,7 +2360,7 @@ msgid ""
"Do you want to recalculate all formula cells in this document now?"
msgstr ""
-#: sc/inc/globstr.hrc:471
+#: sc/inc/globstr.hrc:472
msgctxt "STR_QUERY_FORMULA_RECALC_ONLOAD_XLS"
msgid ""
"This document was last saved by Excel. Some formula cells may produce different results when recalculated.\n"
@@ -2363,85 +2368,85 @@ msgid ""
"Do you want to recalculate all formula cells now?"
msgstr ""
-#: sc/inc/globstr.hrc:472
+#: sc/inc/globstr.hrc:473
msgctxt "STR_NO_INSERT_DELETE_OVER_PIVOT_TABLE"
msgid "You cannot insert or delete cells when the affected range intersects with pivot table."
msgstr ""
-#: sc/inc/globstr.hrc:473
+#: sc/inc/globstr.hrc:474
msgctxt "STR_DPFIELD_GROUP_BY_SECONDS"
msgid "Seconds"
msgstr "Секунд"
-#: sc/inc/globstr.hrc:474
+#: sc/inc/globstr.hrc:475
msgctxt "STR_DPFIELD_GROUP_BY_MINUTES"
msgid "Minutes"
msgstr "Минут"
-#: sc/inc/globstr.hrc:475
+#: sc/inc/globstr.hrc:476
msgctxt "STR_DPFIELD_GROUP_BY_HOURS"
msgid "Hours"
msgstr "Цаг"
-#: sc/inc/globstr.hrc:476
+#: sc/inc/globstr.hrc:477
#, fuzzy
msgctxt "STR_DPFIELD_GROUP_BY_DAYS"
msgid "Days"
msgstr "Өдөр"
-#: sc/inc/globstr.hrc:477
+#: sc/inc/globstr.hrc:478
#, fuzzy
msgctxt "STR_DPFIELD_GROUP_BY_MONTHS"
msgid "Months"
msgstr "Сар"
-#: sc/inc/globstr.hrc:478
+#: sc/inc/globstr.hrc:479
#, fuzzy
msgctxt "STR_DPFIELD_GROUP_BY_QUARTERS"
msgid "Quarters"
msgstr "Улирал"
-#: sc/inc/globstr.hrc:479
+#: sc/inc/globstr.hrc:480
msgctxt "STR_DPFIELD_GROUP_BY_YEARS"
msgid "Years"
msgstr "Жилүүд"
-#: sc/inc/globstr.hrc:480
+#: sc/inc/globstr.hrc:481
#, fuzzy
msgctxt "STR_INVALIDVAL"
msgid "Invalid target value."
msgstr "Буруу товлосон утга"
-#: sc/inc/globstr.hrc:481
+#: sc/inc/globstr.hrc:482
#, fuzzy
msgctxt "STR_INVALIDVAR"
msgid "Undefined name for variable cell."
msgstr "Хувьсагч нүдний нэр тодорхойгүй"
-#: sc/inc/globstr.hrc:482
+#: sc/inc/globstr.hrc:483
#, fuzzy
msgctxt "STR_INVALIDFORM"
msgid "Undefined name as formula cell."
msgstr "Томьёо нүдний нэр тодорхойгүй"
-#: sc/inc/globstr.hrc:483
+#: sc/inc/globstr.hrc:484
msgctxt "STR_NOFORMULA"
msgid "Formula cell must contain a formula."
msgstr ""
-#: sc/inc/globstr.hrc:484
+#: sc/inc/globstr.hrc:485
#, fuzzy
msgctxt "STR_INVALIDINPUT"
msgid "Invalid input."
msgstr "Хүчингүй оролт."
-#: sc/inc/globstr.hrc:485
+#: sc/inc/globstr.hrc:486
#, fuzzy
msgctxt "STR_INVALIDCONDITION"
msgid "Invalid condition."
msgstr "Хүчингүй нөхцөл."
-#: sc/inc/globstr.hrc:486
+#: sc/inc/globstr.hrc:487
msgctxt "STR_QUERYREMOVE"
msgid ""
"Should the entry\n"
@@ -2449,137 +2454,137 @@ msgid ""
"be deleted?"
msgstr ""
-#: sc/inc/globstr.hrc:487
+#: sc/inc/globstr.hrc:488
msgctxt "STR_COPYLIST"
msgid "Copy List"
msgstr ""
-#: sc/inc/globstr.hrc:488
+#: sc/inc/globstr.hrc:489
msgctxt "STR_COPYFROM"
msgid "List from"
msgstr ""
-#: sc/inc/globstr.hrc:489
+#: sc/inc/globstr.hrc:490
msgctxt "STR_COPYERR"
msgid "Cells without text have been ignored."
msgstr ""
-#: sc/inc/globstr.hrc:490
+#: sc/inc/globstr.hrc:491
#, c-format
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%s-click to follow hyperlink:"
msgstr ""
-#: sc/inc/globstr.hrc:491
+#: sc/inc/globstr.hrc:492
msgctxt "STR_CLICKHYPERLINK"
msgid "click to open hyperlink:"
msgstr ""
-#: sc/inc/globstr.hrc:492
+#: sc/inc/globstr.hrc:493
msgctxt "STR_PRINT_PREVIEW_NODATA"
msgid "No Data"
msgstr ""
-#: sc/inc/globstr.hrc:493
+#: sc/inc/globstr.hrc:494
msgctxt "STR_PRINT_PREVIEW_EMPTY_RANGE"
msgid "Print Range Empty"
msgstr ""
-#: sc/inc/globstr.hrc:494
+#: sc/inc/globstr.hrc:495
#, fuzzy
msgctxt "STR_UNDO_CONDFORMAT"
msgid "Conditional Format"
msgstr "Нөхцөлт хэлбэржүүлэлт"
-#: sc/inc/globstr.hrc:495
+#: sc/inc/globstr.hrc:496
#, fuzzy
msgctxt "STR_UNDO_CONDFORMAT_LIST"
msgid "Conditional Formats"
msgstr "Нөхцөлт хэлбэржүүлэлт"
-#: sc/inc/globstr.hrc:496
+#: sc/inc/globstr.hrc:497
msgctxt "STR_UNDO_FORMULA_TO_VALUE"
msgid "Convert Formula To Value"
msgstr ""
-#: sc/inc/globstr.hrc:497
+#: sc/inc/globstr.hrc:498
msgctxt "STR_UNQUOTED_STRING"
msgid "Strings without quotes are interpreted as column/row labels."
msgstr ""
-#: sc/inc/globstr.hrc:498
+#: sc/inc/globstr.hrc:499
msgctxt "STR_ENTER_VALUE"
msgid "Enter a value!"
msgstr ""
-#: sc/inc/globstr.hrc:499
+#: sc/inc/globstr.hrc:500
msgctxt "STR_TABLE_COUNT"
msgid "Sheet %1 of %2"
msgstr ""
-#: sc/inc/globstr.hrc:500
+#: sc/inc/globstr.hrc:501
msgctxt "STR_FUNCTIONS_FOUND"
msgid "%1 and %2 more"
msgstr ""
-#: sc/inc/globstr.hrc:501
+#: sc/inc/globstr.hrc:502
msgctxt "STR_GENERAL"
msgid "General"
msgstr "Ерөнхий"
-#: sc/inc/globstr.hrc:502
+#: sc/inc/globstr.hrc:503
#, fuzzy
msgctxt "STR_NUMBER"
msgid "Number"
msgstr "Тоо"
-#: sc/inc/globstr.hrc:503
+#: sc/inc/globstr.hrc:504
msgctxt "STR_PERCENT"
msgid "Percent"
msgstr "Хувь"
-#: sc/inc/globstr.hrc:504
+#: sc/inc/globstr.hrc:505
msgctxt "STR_CURRENCY"
msgid "Currency"
msgstr "Мөнгөн тэмдэгт"
-#: sc/inc/globstr.hrc:505
+#: sc/inc/globstr.hrc:506
msgctxt "STR_DATE"
msgid "Date"
msgstr "Огноо"
-#: sc/inc/globstr.hrc:506
+#: sc/inc/globstr.hrc:507
msgctxt "STR_TIME"
msgid "Time"
msgstr "Хугацаа"
-#: sc/inc/globstr.hrc:507
+#: sc/inc/globstr.hrc:508
msgctxt "STR_SCIENTIFIC"
msgid "Scientific"
msgstr ""
-#: sc/inc/globstr.hrc:508
+#: sc/inc/globstr.hrc:509
#, fuzzy
msgctxt "STR_FRACTION"
msgid "Fraction"
msgstr "Функц"
-#: sc/inc/globstr.hrc:509
+#: sc/inc/globstr.hrc:510
msgctxt "STR_BOOLEAN_VALUE"
msgid "Boolean Value"
msgstr ""
-#: sc/inc/globstr.hrc:510
+#: sc/inc/globstr.hrc:511
msgctxt "STR_TEXT"
msgid "Text"
msgstr "Бичвэр"
-#: sc/inc/globstr.hrc:511
+#: sc/inc/globstr.hrc:512
msgctxt "STR_QUERY_PIVOTTABLE_DELTAB"
msgid "The selected sheet(s) contain source data of related pivot tables that will be lost. Are you sure you want to delete the selected sheet(s)?"
msgstr ""
-#: sc/inc/globstr.hrc:512
+#: sc/inc/globstr.hrc:513
msgctxt "STR_ERR_NAME_INVALID_CELL_REF"
msgid "Invalid name. Reference to a cell, or a range of cells not allowed."
msgstr ""
@@ -10791,8 +10796,8 @@ msgstr "Горим"
#: sc/inc/scfuncs.hrc:3010
msgctxt "SC_OPCODE_T_TEST"
-msgid "Mode specifies the number of distribution tails to return. 1= one-tailed, 2 = two-tailed distribution"
-msgstr "Горим = 1 нэг талын, горим = 2 хоёр талын шалгалтыг тооцоолно."
+msgid "Mode specifies the number of distribution tails to return. 1 = one-tailed, 2 = two-tailed distribution"
+msgstr ""
#: sc/inc/scfuncs.hrc:3011
msgctxt "SC_OPCODE_T_TEST"
@@ -10838,8 +10843,8 @@ msgstr "Горим"
#: sc/inc/scfuncs.hrc:3024
msgctxt "SC_OPCODE_T_TEST_MS"
-msgid "Mode specifies the number of distribution tails to return. 1= one-tailed, 2 = two-tailed distribution"
-msgstr "Горим = 1 нэг талын, горим = 2 хоёр талын шалгалтыг тооцоолно."
+msgid "Mode specifies the number of distribution tails to return. 1 = one-tailed, 2 = two-tailed distribution"
+msgstr ""
#: sc/inc/scfuncs.hrc:3025
msgctxt "SC_OPCODE_T_TEST_MS"
@@ -18691,22 +18696,22 @@ msgctxt "mergecellsdialog|MergeCellsDialog"
msgid "Merge Cells"
msgstr "Нүднүүд нэгтгэх"
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:81
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:84
msgctxt "mergecellsdialog|label"
msgid "Some cells are not empty."
msgstr ""
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:96
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:99
msgctxt "mergecellsdialog|move-cells-radio"
msgid "Move the contents of the hidden cells into the first cell"
msgstr ""
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:112
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:115
msgctxt "mergecellsdialog|empty-cells-radio"
msgid "Empty the contents of the hidden cells"
msgstr ""
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:128
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:131
msgctxt "mergecellsdialog|keep-content-radio"
msgid "Keep the contents of the hidden cells"
msgstr ""
diff --git a/source/mn/sd/messages.po b/source/mn/sd/messages.po
index 293046920d7..0f392a7ec4b 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2018-03-22 22:36+0000\n"
"Last-Translator: Bachka <ichinnorovb@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -16,174 +16,174 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1521758184.000000\n"
-#: sd/inc/DocumentRenderer.hrc:29
+#: sd/inc/DocumentRenderer.hrc:27
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Slides"
msgstr "Слайдууд"
-#: sd/inc/DocumentRenderer.hrc:30
+#: sd/inc/DocumentRenderer.hrc:28
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Handouts"
msgstr "Тараах материалууд"
-#: sd/inc/DocumentRenderer.hrc:31
+#: sd/inc/DocumentRenderer.hrc:29
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Notes"
msgstr "Тэмдэглэлүүд"
-#: sd/inc/DocumentRenderer.hrc:32
+#: sd/inc/DocumentRenderer.hrc:30
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Outline"
msgstr "Бүдүүвч"
-#: sd/inc/DocumentRenderer.hrc:37
+#: sd/inc/DocumentRenderer.hrc:35
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "According to layout"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:38
+#: sd/inc/DocumentRenderer.hrc:36
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "1"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:39
+#: sd/inc/DocumentRenderer.hrc:37
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "2"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:40
+#: sd/inc/DocumentRenderer.hrc:38
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "3"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:41
+#: sd/inc/DocumentRenderer.hrc:39
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "4"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:42
+#: sd/inc/DocumentRenderer.hrc:40
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "6"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:43
+#: sd/inc/DocumentRenderer.hrc:41
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "9"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:48
+#: sd/inc/DocumentRenderer.hrc:46
msgctxt "STR_IMPRESS_PRINT_UI_ORDER_CHOICES"
msgid "Left to right, then down"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:49
+#: sd/inc/DocumentRenderer.hrc:47
msgctxt "STR_IMPRESS_PRINT_UI_ORDER_CHOICES"
msgid "Top to bottom, then right"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:54
+#: sd/inc/DocumentRenderer.hrc:52
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Original colors"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:55
+#: sd/inc/DocumentRenderer.hrc:53
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Grayscale"
msgstr "Сааралжилт"
-#: sd/inc/DocumentRenderer.hrc:56
+#: sd/inc/DocumentRenderer.hrc:54
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Black & white"
msgstr "~Хар & цагаан"
-#: sd/inc/DocumentRenderer.hrc:61
+#: sd/inc/DocumentRenderer.hrc:59
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Original size"
msgstr "Жинхэнэ хэмжээ"
-#: sd/inc/DocumentRenderer.hrc:62
+#: sd/inc/DocumentRenderer.hrc:60
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Fit to printable page"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:63
+#: sd/inc/DocumentRenderer.hrc:61
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Distribute on multiple sheets of paper"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:64
+#: sd/inc/DocumentRenderer.hrc:62
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Tile sheet of paper with repeated slides"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:69
+#: sd/inc/DocumentRenderer.hrc:67
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Original size"
msgstr "Жинхэнэ хэмжээ"
-#: sd/inc/DocumentRenderer.hrc:70
+#: sd/inc/DocumentRenderer.hrc:68
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Fit to printable page"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:71
+#: sd/inc/DocumentRenderer.hrc:69
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Distribute on multiple sheets of paper"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:72
+#: sd/inc/DocumentRenderer.hrc:70
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Tile sheet of paper with repeated pages"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:77
+#: sd/inc/DocumentRenderer.hrc:75
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "All pages"
msgstr "Бүх хуудас"
-#: sd/inc/DocumentRenderer.hrc:78
+#: sd/inc/DocumentRenderer.hrc:76
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "Front sides / right pages"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:79
+#: sd/inc/DocumentRenderer.hrc:77
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "Back sides / left pages"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:84
+#: sd/inc/DocumentRenderer.hrc:82
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~All slides"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:85
+#: sd/inc/DocumentRenderer.hrc:83
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~Slides"
msgstr "Слайдууд"
-#: sd/inc/DocumentRenderer.hrc:86
+#: sd/inc/DocumentRenderer.hrc:84
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Se~lection"
msgstr "Сонголт"
-#: sd/inc/DocumentRenderer.hrc:91
+#: sd/inc/DocumentRenderer.hrc:89
#, fuzzy
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~All pages"
msgstr "Бүх хуудас"
-#: sd/inc/DocumentRenderer.hrc:92
+#: sd/inc/DocumentRenderer.hrc:90
#, fuzzy
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Pa~ges"
msgstr "Хуудаснууд"
-#: sd/inc/DocumentRenderer.hrc:93
+#: sd/inc/DocumentRenderer.hrc:91
#, fuzzy
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Se~lection"
diff --git a/source/mn/svx/messages.po b/source/mn/svx/messages.po
index 286f67a75f2..a0149e593c5 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: 2018-05-16 16:53+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2018-03-22 22:38+0000\n"
"Last-Translator: Bachka <ichinnorovb@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5553,7 +5553,7 @@ msgstr ""
#: svx/uiconfig/ui/safemodedialog.ui:432
msgctxt "safemodedialog|btn_create_zip"
-msgid "Create Zip Archive from User Profile"
+msgid "Archive User Profile"
msgstr ""
#: svx/uiconfig/ui/safemodedialog.ui:445
@@ -9229,9 +9229,9 @@ msgid "Red"
msgstr "Улаан"
#: include/svx/strings.hrc:565
-msgctxt "RID_SVXSTR_COLOR_VIOLET"
-msgid "Violet"
-msgstr "Нил хөх ягаан"
+msgctxt "RID_SVXSTR_COLOR_MAGENTA"
+msgid "Magenta"
+msgstr "Ягаан"
#: include/svx/strings.hrc:566
msgctxt "RID_SVXSTR_COLOR_PURPLE"
@@ -9296,8 +9296,8 @@ msgid "Light Red"
msgstr "Цайвар улаан"
#: include/svx/strings.hrc:579
-msgctxt "RID_SVXSTR_COLOR_LIGHTVIOLET"
-msgid "Light Violet"
+msgctxt "RID_SVXSTR_COLOR_LIGHTMAGENTA"
+msgid "Light Magenta"
msgstr ""
#: include/svx/strings.hrc:580
@@ -9363,8 +9363,8 @@ msgid "Dark Red"
msgstr "Хүрэн улаан"
#: include/svx/strings.hrc:593
-msgctxt "RID_SVXSTR_COLOR_DARKVIOLET1"
-msgid "Dark Violet"
+msgctxt "RID_SVXSTR_COLOR_DARKMAGENTA"
+msgid "Dark Magenta"
msgstr ""
#: include/svx/strings.hrc:594
@@ -9399,55 +9399,55 @@ msgstr ""
#. Elements of the Tonal color palette
#: include/svx/strings.hrc:601
+msgctxt "RID_SVXSTR_COLOR_VIOLET"
+msgid "Violet"
+msgstr "Нил хөх ягаан"
+
+#: include/svx/strings.hrc:602
msgctxt "RID_SVXSTR_COLOR_VIOLET_OUG"
msgid "Violet (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:602
+#: include/svx/strings.hrc:603
msgctxt "RID_SVXSTR_COLOR_BLUE_OUG"
msgid "Blue (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:603
+#: include/svx/strings.hrc:604
msgctxt "RID_SVXSTR_COLOR_AZURE_OUG"
msgid "Azure (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:604
+#: include/svx/strings.hrc:605
msgctxt "RID_SVXSTR_COLOR_SPRINGGREEN_OUG"
msgid "Spring Green (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:605
+#: include/svx/strings.hrc:606
msgctxt "RID_SVXSTR_COLOR_GREEN_OUG"
msgid "Green (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:606
+#: include/svx/strings.hrc:607
msgctxt "RID_SVXSTR_COLOR_CHARTREUSEGREEN_OUG"
msgid "Chartreuse Green (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:607
+#: include/svx/strings.hrc:608
msgctxt "RID_SVXSTR_COLOR_ORANGE_OUG"
msgid "Orange (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:608
+#: include/svx/strings.hrc:609
msgctxt "RID_SVXSTR_COLOR_RED_OUG"
msgid "Red (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:609
+#: include/svx/strings.hrc:610
msgctxt "RID_SVXSTR_COLOR_ROSE_OUG"
msgid "Rose (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:610
-msgctxt "RID_SVXSTR_COLOR_MAGENTA"
-msgid "Magenta"
-msgstr "Ягаан"
-
#: include/svx/strings.hrc:611
msgctxt "RID_SVXSTR_COLOR_AZURE"
msgid "Azure"
@@ -12658,12 +12658,12 @@ msgstr ""
#: include/svx/strings.hrc:1273
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_6"
-msgid "Check mark bullets"
+msgid "Cross mark bullets"
msgstr ""
#: include/svx/strings.hrc:1274
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_7"
-msgid "Tick mark bullets"
+msgid "Check mark bullets"
msgstr ""
#: include/svx/strings.hrc:1275
diff --git a/source/mn/sw/messages.po b/source/mn/sw/messages.po
index e469be4f531..ba66dd51370 100644
--- a/source/mn/sw/messages.po
+++ b/source/mn/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: 2018-05-22 13:17+0200\n"
+"POT-Creation-Date: 2018-06-12 14:41+0200\n"
"PO-Revision-Date: 2018-03-22 22:39+0000\n"
"Last-Translator: Bachka <ichinnorovb@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1239,13 +1239,13 @@ msgstr "Ишлэл"
#: sw/inc/strings.hrc:172
msgctxt "STR_POOLCOLL_TOX_ILLUSH"
-msgid "Illustration Index Heading"
-msgstr "Дүрслэл индексийн толгой"
+msgid "Figure Index Heading"
+msgstr ""
#: sw/inc/strings.hrc:173
msgctxt "STR_POOLCOLL_TOX_ILLUS1"
-msgid "Illustration Index 1"
-msgstr "Дүрслэл индекс 1"
+msgid "Figure Index 1"
+msgstr ""
#: sw/inc/strings.hrc:174
#, fuzzy
@@ -3745,10 +3745,9 @@ msgid "Table of Objects"
msgstr ""
#: sw/inc/strings.hrc:672
-#, fuzzy
msgctxt "STR_TOX_ILL"
-msgid "Illustration Index"
-msgstr "Дүрслэл индекс 1"
+msgid "Table of Figures"
+msgstr ""
#: sw/inc/strings.hrc:673
#, c-format
@@ -9779,81 +9778,81 @@ msgctxt "footnotepage|label5"
msgid "Continuation Notice"
msgstr "Зөвлөмж бичвэрийн олон хуудастай зүүлт"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:49
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:55
#, fuzzy
msgctxt "footnotesendnotestabpage|ftnntnum"
msgid "_Restart numbering"
msgstr "Дугаарлалт дахин эхлүүлэх"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:91
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:93
#, fuzzy
msgctxt "footnotesendnotestabpage|ftnoffset_label"
msgid "_Start at:"
msgstr "~Эхлэл"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:112
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:111
msgctxt "footnotesendnotestabpage|ftnntnumfmt"
msgid "Custom _format"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:155
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:150
#, fuzzy
msgctxt "footnotesendnotestabpage|ftnsuffix_label"
msgid "Aft_er:"
msgstr "Дараа"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:199
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:188
#, fuzzy
msgctxt "footnotesendnotestabpage|ftnprefix_label"
msgid "Be_fore:"
msgstr "Өмнө "
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:228
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:212
msgctxt "footnotesendnotestabpage|ftnntattextend"
msgid "Collec_t at end of text"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:252
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:234
#, fuzzy
msgctxt "footnotesendnotestabpage|label1"
msgid "Footnotes"
msgstr "Зүүлт"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:289
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:271
msgctxt "footnotesendnotestabpage|endntattextend"
msgid "C_ollect at end of section"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:315
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:295
#, fuzzy
msgctxt "footnotesendnotestabpage|endntnum"
msgid "_Restart numbering"
msgstr "Дугаарлалт дахин эхлүүлэх"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:357
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:333
#, fuzzy
msgctxt "footnotesendnotestabpage|endoffset_label"
msgid "_Start at:"
msgstr "~Эхлэл"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:378
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:351
msgctxt "footnotesendnotestabpage|endntnumfmt"
msgid "_Custom format"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:421
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:390
#, fuzzy
msgctxt "footnotesendnotestabpage|endsuffix_label"
msgid "Aft_er:"
msgstr "Дараа"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:465
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:428
#, fuzzy
msgctxt "footnotesendnotestabpage|endprefix_label"
msgid "Be_fore:"
msgstr "Өмнө "
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:500
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:458
#, fuzzy
msgctxt "footnotesendnotestabpage|label2"
msgid "Endnotes"
@@ -9887,30 +9886,30 @@ msgctxt "formatsectiondialog|notes"
msgid "Footnotes/Endnotes"
msgstr "~Зүүлт..."
-#: sw/uiconfig/swriter/ui/formattablepage.ui:63
+#: sw/uiconfig/swriter/ui/formattablepage.ui:77
#, fuzzy
msgctxt "formattablepage|nameft"
msgid "_Name"
msgstr "Нэр"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:79
+#: sw/uiconfig/swriter/ui/formattablepage.ui:91
#, fuzzy
msgctxt "formattablepage|widthft"
msgid "W_idth"
msgstr "Өргөн"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:110
+#: sw/uiconfig/swriter/ui/formattablepage.ui:120
#, fuzzy
msgctxt "formattablepage|relwidth"
msgid "Relati_ve"
msgstr "харьцангуй"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:155
+#: sw/uiconfig/swriter/ui/formattablepage.ui:160
msgctxt "formattablepage|label45"
msgid "Properties"
msgstr "Тодруулга"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:194
+#: sw/uiconfig/swriter/ui/formattablepage.ui:195
#, fuzzy
msgctxt "formattablepage|leftft"
msgid "Lef_t"
@@ -9922,70 +9921,70 @@ msgctxt "formattablepage|rightft"
msgid "Ri_ght"
msgstr "Баруун"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:228
+#: sw/uiconfig/swriter/ui/formattablepage.ui:226
#, fuzzy
msgctxt "formattablepage|aboveft"
msgid "_Above"
msgstr "Дээр талд нь"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:245
+#: sw/uiconfig/swriter/ui/formattablepage.ui:241
#, fuzzy
msgctxt "formattablepage|belowft"
msgid "_Below"
msgstr "Доод"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:320
+#: sw/uiconfig/swriter/ui/formattablepage.ui:311
msgctxt "formattablepage|label46"
msgid "Spacing"
msgstr "Алслалт"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:362
+#: sw/uiconfig/swriter/ui/formattablepage.ui:349
msgctxt "formattablepage|full"
msgid "A_utomatic"
msgstr "А_втоматаар"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:380
+#: sw/uiconfig/swriter/ui/formattablepage.ui:365
#, fuzzy
msgctxt "formattablepage|left"
msgid "_Left"
msgstr "Зүүн"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:398
+#: sw/uiconfig/swriter/ui/formattablepage.ui:381
#, fuzzy
msgctxt "formattablepage|fromleft"
msgid "_From left"
msgstr "Зүүнээс"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:416
+#: sw/uiconfig/swriter/ui/formattablepage.ui:397
#, fuzzy
msgctxt "formattablepage|right"
msgid "R_ight"
msgstr "Баруун"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:435
+#: sw/uiconfig/swriter/ui/formattablepage.ui:413
#, fuzzy
msgctxt "formattablepage|center"
msgid "_Center"
msgstr "Төв"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:453
+#: sw/uiconfig/swriter/ui/formattablepage.ui:429
#, fuzzy
msgctxt "formattablepage|free"
msgid "_Manual"
msgstr "Махчлан"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:478
+#: sw/uiconfig/swriter/ui/formattablepage.ui:452
msgctxt "formattablepage|label43"
msgid "Alignment"
msgstr "Жигдрүүлэлт"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:522
+#: sw/uiconfig/swriter/ui/formattablepage.ui:491
#, fuzzy
msgctxt "formattablepage|label53"
msgid "Text _direction"
msgstr "Холболт шалгах"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:553
+#: sw/uiconfig/swriter/ui/formattablepage.ui:519
#, fuzzy
msgctxt "formattablepage|label44"
msgid "Properties "
@@ -10379,22 +10378,27 @@ msgctxt "headerfootermenu|insert_pagenumber"
msgid "Insert Page Number"
msgstr ""
-#: sw/uiconfig/swriter/ui/indentpage.ui:52
+#: sw/uiconfig/swriter/ui/headerfootermenu.ui:42
+msgctxt "headerfootermenu|insert_pagecount"
+msgid "Insert Page Count"
+msgstr ""
+
+#: sw/uiconfig/swriter/ui/indentpage.ui:57
msgctxt "indentpage|label1"
msgid "_Before section"
msgstr ""
-#: sw/uiconfig/swriter/ui/indentpage.ui:67
+#: sw/uiconfig/swriter/ui/indentpage.ui:71
msgctxt "indentpage|label3"
msgid "_After section"
msgstr ""
-#: sw/uiconfig/swriter/ui/indentpage.ui:113
+#: sw/uiconfig/swriter/ui/indentpage.ui:115
msgctxt "indentpage|label2"
msgid "Indent"
msgstr "Догол мөр"
-#: sw/uiconfig/swriter/ui/indentpage.ui:142
+#: sw/uiconfig/swriter/ui/indentpage.ui:155
msgctxt "indentpage|preview-atkobject"
msgid "Example"
msgstr "Жишээ"
@@ -14221,7 +14225,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:68
msgctxt "optcompatpage|format"
-msgid "MS Word-compatible trailing blanks"
+msgid "Word-compatible trailing blanks"
msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:69
@@ -14231,7 +14235,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:70
msgctxt "optcompatpage|format"
-msgid "A database field (e.g., MailMerge) with empty value hides its paragraph"
+msgid "Hide paragraphs of database fields (e.g., mail merge) with an empty value"
msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:71
@@ -17158,136 +17162,136 @@ msgctxt "tableproperties|background"
msgid "Background"
msgstr "Дэвсгэр"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:25
-msgctxt "tabletextflowpage|liststore1"
-msgid "Horizontal"
-msgstr "Хэвтээ"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:29
-msgctxt "tabletextflowpage|liststore1"
-msgid "Vertical"
-msgstr "Босоо"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:33
-msgctxt "tabletextflowpage|liststore1"
-msgid "Use superordinate object settings"
-msgstr "Дээд төвшний объектын тохиргоог хэрэглэ"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:47
-#, fuzzy
-msgctxt "tabletextflowpage|liststore2"
-msgid "Top"
-msgstr "Дээр"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:51
-msgctxt "tabletextflowpage|liststore2"
-msgid "Centered"
-msgstr "Голлуулсан"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:55
-#, fuzzy
-msgctxt "tabletextflowpage|liststore2"
-msgid "Bottom"
-msgstr "Доор"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:97
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:53
msgctxt "tabletextflowpage|break"
msgid "_Break"
msgstr "_Таслах"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:112
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:68
#, fuzzy
msgctxt "tabletextflowpage|page"
msgid "_Page"
msgstr "Хуудас"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:132
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:87
#, fuzzy
msgctxt "tabletextflowpage|column"
msgid "Col_umn"
msgstr "Багана"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:151
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:106
#, fuzzy
msgctxt "tabletextflowpage|before"
msgid "Be_fore"
msgstr "Өмнө "
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:171
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:125
#, fuzzy
msgctxt "tabletextflowpage|after"
msgid "_After"
msgstr "Дараа"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:203
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:158
#, fuzzy
msgctxt "tabletextflowpage|pagestyle"
msgid "With Page St_yle"
msgstr "Хуудасны загвар засах"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:224
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:177
#, fuzzy
msgctxt "tabletextflowpage|pagenoft"
msgid "Page _number"
msgstr "Хуудасны дугаар"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:257
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:213
#, fuzzy
msgctxt "tabletextflowpage|pagestylelb-atkobject"
msgid "With Page Style"
msgstr "Хуудасны загвар засах"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:274
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:230
msgctxt "tabletextflowpage|split"
msgid "Allow _table to split across pages and columns"
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:289
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:245
#, fuzzy
msgctxt "tabletextflowpage|splitrow"
msgid "Allow row to break a_cross pages and columns"
msgstr "Хуудас ба баганын төгсгөлд мөр нугалахыг зөвшөөрөх"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:306
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:262
#, fuzzy
msgctxt "tabletextflowpage|keep"
msgid "_Keep with next paragraph"
msgstr "Параграфуудыг хамт барих"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:328
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:284
#, fuzzy
msgctxt "tabletextflowpage|label40"
msgid "Text _orientation"
msgstr "Бичвэрийн хандлага"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:361
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:298
+msgctxt "tabletextflowpage|liststore1"
+msgid "Horizontal"
+msgstr "Хэвтээ"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:299
+msgctxt "tabletextflowpage|liststore1"
+msgid "Vertical"
+msgstr "Босоо"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:300
+msgctxt "tabletextflowpage|liststore1"
+msgid "Use superordinate object settings"
+msgstr "Дээд төвшний объектын тохиргоог хэрэглэ"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:321
#, fuzzy
msgctxt "tabletextflowpage|headline"
msgid "R_epeat heading"
msgstr "Гарчиг давтах"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:383
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:343
msgctxt "tabletextflowpage|label38"
msgid "The first "
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:396
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:356
#, fuzzy
msgctxt "tabletextflowpage|label39"
msgid "rows"
msgstr "мөр"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:434
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:395
msgctxt "tabletextflowpage|label35"
msgid "Text Flow"
msgstr "Бичвэр Урсгал"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:467
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:428
msgctxt "tabletextflowpage|label41"
msgid "_Vertical alignment"
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:495
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:442
+#, fuzzy
+msgctxt "tabletextflowpage|liststore2"
+msgid "Top"
+msgstr "Дээр"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:443
+msgctxt "tabletextflowpage|liststore2"
+msgid "Centered"
+msgstr "Голлуулсан"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:444
+#, fuzzy
+msgctxt "tabletextflowpage|liststore2"
+msgid "Bottom"
+msgstr "Доор"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:460
msgctxt "tabletextflowpage|label36"
msgid "Alignment"
msgstr "Жигдрүүлэлт"
@@ -18133,10 +18137,9 @@ msgid "Alphabetical Index"
msgstr ""
#: sw/uiconfig/swriter/ui/tocindexpage.ui:58
-#, fuzzy
msgctxt "tocindexpage|liststore1"
-msgid "Illustration Index"
-msgstr "Дүрслэл индекс 1"
+msgid "Table of Figures"
+msgstr ""
#: sw/uiconfig/swriter/ui/tocindexpage.ui:62
msgctxt "tocindexpage|liststore1"
diff --git a/source/mn/writerperfect/messages.po b/source/mn/writerperfect/messages.po
index 7de6e77a54f..a8308b4342b 100644
--- a/source/mn/writerperfect/messages.po
+++ b/source/mn/writerperfect/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-16 16:54+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+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"
@@ -65,99 +65,99 @@ msgctxt "exportepub|generalft"
msgid "General"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:122
+#: writerperfect/uiconfig/ui/exportepub.ui:121
#, fuzzy
msgctxt "exportepub|versionft"
msgid "Version:"
msgstr "Х~увилбар:"
-#: writerperfect/uiconfig/ui/exportepub.ui:139
+#: writerperfect/uiconfig/ui/exportepub.ui:138
msgctxt "exportepub|epub3"
msgid "EPUB 3.0"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:140
+#: writerperfect/uiconfig/ui/exportepub.ui:139
msgctxt "exportepub|epub2"
msgid "EPUB 2.0"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:175
+#: writerperfect/uiconfig/ui/exportepub.ui:174
msgctxt "exportepub|splitft"
msgid "Split method:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:192
+#: writerperfect/uiconfig/ui/exportepub.ui:191
#, fuzzy
msgctxt "exportepub|splitpage"
msgid "Page break"
msgstr "Хуудас таслах"
-#: writerperfect/uiconfig/ui/exportepub.ui:193
+#: writerperfect/uiconfig/ui/exportepub.ui:192
msgctxt "exportepub|splitheading"
msgid "Heading"
msgstr "Гарчиг"
-#: writerperfect/uiconfig/ui/exportepub.ui:228
+#: writerperfect/uiconfig/ui/exportepub.ui:227
msgctxt "exportepub|layoutft"
msgid "Layout method:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:245
+#: writerperfect/uiconfig/ui/exportepub.ui:244
msgctxt "exportepub|layoutreflowable"
msgid "Reflowable"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:246
+#: writerperfect/uiconfig/ui/exportepub.ui:245
msgctxt "exportepub|layoutfixed"
msgid "Fixed"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:281
+#: writerperfect/uiconfig/ui/exportepub.ui:280
msgctxt "exportepub|coverimageft"
msgid "Custom cover image:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:311
+#: writerperfect/uiconfig/ui/exportepub.ui:310
msgctxt "exportepub|coverbutton"
msgid "Browse..."
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:355
+#: writerperfect/uiconfig/ui/exportepub.ui:354
msgctxt "exportepub|mediadirft"
msgid "Custom media directory:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:385
+#: writerperfect/uiconfig/ui/exportepub.ui:384
msgctxt "exportepub|mediabutton"
msgid "Browse..."
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:429
+#: writerperfect/uiconfig/ui/exportepub.ui:428
msgctxt "exportepub|metadataft"
msgid "Metadata"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:470
+#: writerperfect/uiconfig/ui/exportepub.ui:468
msgctxt "exportepub|identifierft"
msgid "Identifier:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:485
+#: writerperfect/uiconfig/ui/exportepub.ui:483
msgctxt "exportepub|titleft"
msgid "Title:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:511
+#: writerperfect/uiconfig/ui/exportepub.ui:509
msgctxt "exportepub|authorft"
msgid "Author:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:537
+#: writerperfect/uiconfig/ui/exportepub.ui:535
msgctxt "exportepub|languageft"
msgid "Language:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:563
+#: writerperfect/uiconfig/ui/exportepub.ui:561
msgctxt "exportepub|dateft"
msgid "Date:"
msgstr ""
diff --git a/source/mni/cui/messages.po b/source/mni/cui/messages.po
index e6a3d5d8ab7..69d7a055c04 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+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"
@@ -10496,104 +10496,104 @@ msgctxt "positionsizedialog|PositionAndSizeDialog"
msgid "Position and Size"
msgstr "পোজিসন অমসুং মচাও-মরাক"
-#: cui/uiconfig/ui/positionsizedialog.ui:107
+#: cui/uiconfig/ui/positionsizedialog.ui:136
msgctxt "positionsizedialog|RID_SVXPAGE_POSITION_SIZE"
msgid "Position and Size"
msgstr "পোজিসন অমসুং মচাও-মরাক"
-#: cui/uiconfig/ui/positionsizedialog.ui:129
+#: cui/uiconfig/ui/positionsizedialog.ui:182
msgctxt "positionsizedialog|RID_SVXPAGE_SWPOSSIZE"
msgid "Position and Size"
msgstr "পোজিসন অমসুং মচাও-মরাক"
-#: cui/uiconfig/ui/positionsizedialog.ui:152
+#: cui/uiconfig/ui/positionsizedialog.ui:229
msgctxt "positionsizedialog|RID_SVXPAGE_ANGLE"
msgid "Rotation"
msgstr "লৈবা"
-#: cui/uiconfig/ui/positionsizedialog.ui:175
+#: cui/uiconfig/ui/positionsizedialog.ui:276
msgctxt "positionsizedialog|RID_SVXPAGE_SLANT"
msgid "Slant & Corner Radius"
msgstr "ঙামথবা অমসুং কোর্নর রেদিযস"
-#: cui/uiconfig/ui/possizetabpage.ui:40
+#: cui/uiconfig/ui/possizetabpage.ui:61
#, fuzzy
msgctxt "possizetabpage|FT_POS_X"
msgid "Position _X:"
msgstr "സ്ഥാനം"
-#: cui/uiconfig/ui/possizetabpage.ui:56
+#: cui/uiconfig/ui/possizetabpage.ui:75
#, fuzzy
msgctxt "possizetabpage|FT_POS_Y"
msgid "Position _Y:"
msgstr "സ്ഥാനം"
-#: cui/uiconfig/ui/possizetabpage.ui:110
+#: cui/uiconfig/ui/possizetabpage.ui:128
msgctxt "possizetabpage|FT_POSREFERENCE"
msgid "_Base point:"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:148
+#: cui/uiconfig/ui/possizetabpage.ui:182
msgctxt "possizetabpage|label1"
msgid "Position"
msgstr "സ്ഥാനം"
-#: cui/uiconfig/ui/possizetabpage.ui:190
+#: cui/uiconfig/ui/possizetabpage.ui:224
#, fuzzy
msgctxt "possizetabpage|FT_WIDTH"
msgid "Wi_dth:"
msgstr "অপাকপা"
-#: cui/uiconfig/ui/possizetabpage.ui:206
+#: cui/uiconfig/ui/possizetabpage.ui:238
#, fuzzy
msgctxt "possizetabpage|FT_HEIGHT"
msgid "H_eight:"
msgstr "অৱাংবা"
-#: cui/uiconfig/ui/possizetabpage.ui:247
+#: cui/uiconfig/ui/possizetabpage.ui:276
#, fuzzy
msgctxt "possizetabpage|CBX_SCALE"
msgid "_Keep ratio"
msgstr "রেসিও থম্মু"
-#: cui/uiconfig/ui/possizetabpage.ui:279
+#: cui/uiconfig/ui/possizetabpage.ui:307
msgctxt "possizetabpage|FT_SIZEREFERENCE"
msgid "Base _point:"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:317
+#: cui/uiconfig/ui/possizetabpage.ui:361
msgctxt "possizetabpage|label2"
msgid "Size"
msgstr "মচাও-মরাক"
-#: cui/uiconfig/ui/possizetabpage.ui:356
+#: cui/uiconfig/ui/possizetabpage.ui:401
#, fuzzy
msgctxt "possizetabpage|TSB_POSPROTECT"
msgid "Positio_n"
msgstr "സ്ഥാനം"
-#: cui/uiconfig/ui/possizetabpage.ui:373
+#: cui/uiconfig/ui/possizetabpage.ui:418
#, fuzzy
msgctxt "possizetabpage|TSB_SIZEPROTECT"
msgid "_Size"
msgstr "মচাও-মরাক"
-#: cui/uiconfig/ui/possizetabpage.ui:397
+#: cui/uiconfig/ui/possizetabpage.ui:441
msgctxt "possizetabpage|label3"
msgid "Protect"
msgstr "ঙাক-শেনবা"
-#: cui/uiconfig/ui/possizetabpage.ui:430
+#: cui/uiconfig/ui/possizetabpage.ui:475
msgctxt "possizetabpage|TSB_AUTOGROW_WIDTH"
msgid "_Fit width to text"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:447
+#: cui/uiconfig/ui/possizetabpage.ui:492
msgctxt "possizetabpage|TSB_AUTOGROW_HEIGHT"
msgid "Fit _height to text"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:471
+#: cui/uiconfig/ui/possizetabpage.ui:515
msgctxt "possizetabpage|label4"
msgid "Adapt"
msgstr "চান্নবা"
@@ -10798,50 +10798,50 @@ msgctxt "recordnumberdialog|label2"
msgid "go to record"
msgstr "রেকোর্দতা চৎপিযু"
-#: cui/uiconfig/ui/rotationtabpage.ui:52
+#: cui/uiconfig/ui/rotationtabpage.ui:56
#, fuzzy
msgctxt "rotationtabpage|FT_POS_X"
msgid "Position _X:"
msgstr "സ്ഥാനം"
-#: cui/uiconfig/ui/rotationtabpage.ui:66
+#: cui/uiconfig/ui/rotationtabpage.ui:70
#, fuzzy
msgctxt "rotationtabpage|FT_POS_Y"
msgid "Position _Y:"
msgstr "സ്ഥാനം"
-#: cui/uiconfig/ui/rotationtabpage.ui:116
+#: cui/uiconfig/ui/rotationtabpage.ui:123
msgctxt "rotationtabpage|FT_POSPRESETS"
msgid "_Default settings:"
msgstr ""
-#: cui/uiconfig/ui/rotationtabpage.ui:130
+#: cui/uiconfig/ui/rotationtabpage.ui:151
msgctxt "rotationtabpage|CTL_RECT|tooltip_text"
msgid "Rotation point"
msgstr "লৈবগী পোইন্ত"
-#: cui/uiconfig/ui/rotationtabpage.ui:155
+#: cui/uiconfig/ui/rotationtabpage.ui:178
#, fuzzy
msgctxt "rotationtabpage|label1"
msgid "Pivot Point"
msgstr "পাইভোত পাইন্ত"
-#: cui/uiconfig/ui/rotationtabpage.ui:197
+#: cui/uiconfig/ui/rotationtabpage.ui:220
msgctxt "rotationtabpage|FT_ANGLE"
msgid "_Angle:"
msgstr ""
-#: cui/uiconfig/ui/rotationtabpage.ui:238
+#: cui/uiconfig/ui/rotationtabpage.ui:263
msgctxt "rotationtabpage|FT_ANGLEPRESETS"
msgid "Default _settings:"
msgstr ""
-#: cui/uiconfig/ui/rotationtabpage.ui:252
+#: cui/uiconfig/ui/rotationtabpage.ui:287
msgctxt "rotationtabpage|CTL_ANGLE|tooltip_text"
msgid "Rotation Angle"
msgstr "লৈবগী এঙ্গল"
-#: cui/uiconfig/ui/rotationtabpage.ui:277
+#: cui/uiconfig/ui/rotationtabpage.ui:314
msgctxt "rotationtabpage|label2"
msgid "Rotation Angle"
msgstr "লৈবগী এঙ্গল"
@@ -11232,54 +11232,54 @@ msgctxt "similaritysearchdialog|relaxbox"
msgid "_Combine"
msgstr "পুনশিনবা"
-#: cui/uiconfig/ui/slantcornertabpage.ui:50
+#: cui/uiconfig/ui/slantcornertabpage.ui:70
msgctxt "slantcornertabpage|label5"
msgid "_X:"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:88
+#: cui/uiconfig/ui/slantcornertabpage.ui:110
msgctxt "slantcornertabpage|label6"
msgid "_Y:"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:125
+#: cui/uiconfig/ui/slantcornertabpage.ui:149
msgctxt "slantcornertabpage|label3"
msgid "Control Point 1"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:159
+#: cui/uiconfig/ui/slantcornertabpage.ui:183
#, fuzzy
msgctxt "slantcornertabpage|FT_RADIUS"
msgid "_Radius:"
msgstr "রেদিয়স"
-#: cui/uiconfig/ui/slantcornertabpage.ui:189
+#: cui/uiconfig/ui/slantcornertabpage.ui:214
#, fuzzy
msgctxt "slantcornertabpage|label1"
msgid "Corner Radius"
msgstr "কোর্নর রেদিযস"
-#: cui/uiconfig/ui/slantcornertabpage.ui:223
+#: cui/uiconfig/ui/slantcornertabpage.ui:248
msgctxt "slantcornertabpage|FT_ANGLE"
msgid "_Angle:"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:253
+#: cui/uiconfig/ui/slantcornertabpage.ui:279
msgctxt "slantcornertabpage|label2"
msgid "Slant"
msgstr "ঙামথবা"
-#: cui/uiconfig/ui/slantcornertabpage.ui:294
+#: cui/uiconfig/ui/slantcornertabpage.ui:320
msgctxt "slantcornertabpage|label4"
msgid "_X:"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:332
+#: cui/uiconfig/ui/slantcornertabpage.ui:360
msgctxt "slantcornertabpage|label7"
msgid "_Y:"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:369
+#: cui/uiconfig/ui/slantcornertabpage.ui:399
msgctxt "slantcornertabpage|label8"
msgid "Control Point 2"
msgstr ""
@@ -11577,125 +11577,125 @@ msgctxt "storedwebconnectiondialog|change"
msgid "_Change Password..."
msgstr "পাসৱর্দ শিন্দোকপা..."
-#: cui/uiconfig/ui/swpossizepage.ui:74
+#: cui/uiconfig/ui/swpossizepage.ui:85
#, fuzzy
msgctxt "swpossizepage|widthft"
msgid "_Width:"
msgstr "অপাকপা"
-#: cui/uiconfig/ui/swpossizepage.ui:111
+#: cui/uiconfig/ui/swpossizepage.ui:123
#, fuzzy
msgctxt "swpossizepage|heightft"
msgid "H_eight:"
msgstr "অৱাংবা"
-#: cui/uiconfig/ui/swpossizepage.ui:128
+#: cui/uiconfig/ui/swpossizepage.ui:141
#, fuzzy
msgctxt "swpossizepage|ratio"
msgid "_Keep ratio"
msgstr "রেসিও থম্মু"
-#: cui/uiconfig/ui/swpossizepage.ui:149
+#: cui/uiconfig/ui/swpossizepage.ui:162
msgctxt "swpossizepage|label2"
msgid "Size"
msgstr "মচাও-মরাক"
-#: cui/uiconfig/ui/swpossizepage.ui:205
+#: cui/uiconfig/ui/swpossizepage.ui:218
#, fuzzy
msgctxt "swpossizepage|topage"
msgid "To _page"
msgstr "লমাইদা"
-#: cui/uiconfig/ui/swpossizepage.ui:222
+#: cui/uiconfig/ui/swpossizepage.ui:234
#, fuzzy
msgctxt "swpossizepage|topara"
msgid "To paragrap_h"
msgstr "পেরেগ্ৰাফ"
-#: cui/uiconfig/ui/swpossizepage.ui:238
+#: cui/uiconfig/ui/swpossizepage.ui:250
#, fuzzy
msgctxt "swpossizepage|tochar"
msgid "To cha_racter"
msgstr "ময়েক্তা"
-#: cui/uiconfig/ui/swpossizepage.ui:254
+#: cui/uiconfig/ui/swpossizepage.ui:266
#, fuzzy
msgctxt "swpossizepage|aschar"
msgid "_As character"
msgstr "ময়েক ওইনা"
-#: cui/uiconfig/ui/swpossizepage.ui:270
+#: cui/uiconfig/ui/swpossizepage.ui:282
#, fuzzy
msgctxt "swpossizepage|toframe"
msgid "To _frame"
msgstr "ফ্রেম"
-#: cui/uiconfig/ui/swpossizepage.ui:292
+#: cui/uiconfig/ui/swpossizepage.ui:304
msgctxt "swpossizepage|label1"
msgid "Anchor"
msgstr "এঙ্কর"
-#: cui/uiconfig/ui/swpossizepage.ui:333
+#: cui/uiconfig/ui/swpossizepage.ui:344
#, fuzzy
msgctxt "swpossizepage|horiposft"
msgid "Hori_zontal:"
msgstr "মফৈ ওইবা"
-#: cui/uiconfig/ui/swpossizepage.ui:347
+#: cui/uiconfig/ui/swpossizepage.ui:358
msgctxt "swpossizepage|horibyft"
msgid "b_y:"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:361
+#: cui/uiconfig/ui/swpossizepage.ui:372
msgctxt "swpossizepage|vertbyft"
msgid "_by:"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:375
+#: cui/uiconfig/ui/swpossizepage.ui:386
#, fuzzy
msgctxt "swpossizepage|horitoft"
msgid "_to:"
msgstr "মথক:"
-#: cui/uiconfig/ui/swpossizepage.ui:421
+#: cui/uiconfig/ui/swpossizepage.ui:433
#, fuzzy
msgctxt "swpossizepage|vertposft"
msgid "_Vertical:"
msgstr "মযুং ওইবা"
-#: cui/uiconfig/ui/swpossizepage.ui:457
+#: cui/uiconfig/ui/swpossizepage.ui:470
msgctxt "swpossizepage|verttoft"
msgid "t_o:"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:478
+#: cui/uiconfig/ui/swpossizepage.ui:492
msgctxt "swpossizepage|mirror"
msgid "_Mirror on even pages"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:495
+#: cui/uiconfig/ui/swpossizepage.ui:509
msgctxt "swpossizepage|followtextflow"
msgid "Follow te_xt flow"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:518
+#: cui/uiconfig/ui/swpossizepage.ui:532
msgctxt "swpossizepage|label11"
msgid "Position"
msgstr "സ്ഥാനം"
-#: cui/uiconfig/ui/swpossizepage.ui:549
+#: cui/uiconfig/ui/swpossizepage.ui:563
#, fuzzy
msgctxt "swpossizepage|pos"
msgid "Positio_n"
msgstr "സ്ഥാനം"
-#: cui/uiconfig/ui/swpossizepage.ui:565
+#: cui/uiconfig/ui/swpossizepage.ui:579
#, fuzzy
msgctxt "swpossizepage|size"
msgid "_Size"
msgstr "মচাও-মরাক"
-#: cui/uiconfig/ui/swpossizepage.ui:587
+#: cui/uiconfig/ui/swpossizepage.ui:601
msgctxt "swpossizepage|label3"
msgid "Protect"
msgstr "ঙাক-শেনবা"
@@ -11899,13 +11899,13 @@ msgctxt "textattrtabpage|label2"
msgid "Spacing to Borders"
msgstr "ফিবানদা স্পেসিং"
-#: cui/uiconfig/ui/textattrtabpage.ui:425
+#: cui/uiconfig/ui/textattrtabpage.ui:423
#, fuzzy
msgctxt "textattrtabpage|TSB_FULL_WIDTH"
msgid "Full _width"
msgstr "অপাকপা-পুম্নমক"
-#: cui/uiconfig/ui/textattrtabpage.ui:448
+#: cui/uiconfig/ui/textattrtabpage.ui:446
#, fuzzy
msgctxt "textattrtabpage|label3"
msgid "Text Anchor"
diff --git a/source/mni/filter/source/config/fragments/filters.po b/source/mni/filter/source/config/fragments/filters.po
index 50489210f87..30d745f0bfd 100644
--- a/source/mni/filter/source/config/fragments/filters.po
+++ b/source/mni/filter/source/config/fragments/filters.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-16 16:54+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2016-03-11 12:56+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -465,8 +465,8 @@ msgctxt ""
"MS Word 2003 XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Word 2003 XML"
-msgstr "মাইক্ৰোসোফত ৱাৰ্দ 2003 XML"
+msgid "Word 2003 XML"
+msgstr ""
#: MS_Word_2007_XML.xcu
msgctxt ""
@@ -1290,7 +1290,7 @@ msgctxt ""
"Calc MS Excel 2007 VBA XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Excel 2007-2016 XML (macro enabled)"
+msgid "Excel 2007–2019 (macro-enabled)"
msgstr ""
#: calc_MS_Excel_2007_XML.xcu
diff --git a/source/mni/filter/source/config/fragments/types.po b/source/mni/filter/source/config/fragments/types.po
index efe3b4dab68..94fe75f96f1 100644
--- a/source/mni/filter/source/config/fragments/types.po
+++ b/source/mni/filter/source/config/fragments/types.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-08 15:11+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2017-05-16 09:25+0000\n"
"Last-Translator: Christian Lohmaier <lohmaier+pootle@googlemail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -296,8 +296,8 @@ msgctxt ""
"writer_MS_Word_2003_XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Word 2003 XML"
-msgstr "মাইক্ৰোসোফত ৱাৰ্দ 2003 XML"
+msgid "Word 2003 XML"
+msgstr ""
#: writer_MS_Word_2007_XML.xcu
msgctxt ""
diff --git a/source/mni/fpicker/messages.po b/source/mni/fpicker/messages.po
index 26d49f3a057..4d374ccd3de 100644
--- a/source/mni/fpicker/messages.po
+++ b/source/mni/fpicker/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+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"
@@ -278,14 +278,13 @@ msgstr ""
#: fpicker/uiconfig/ui/foldernamedialog.ui:8
msgctxt "foldernamedialog|FolderNameDialog"
-msgid "Folder Name ?"
+msgid "Folder Name"
msgstr ""
#: fpicker/uiconfig/ui/foldernamedialog.ui:91
-#, fuzzy
msgctxt "foldernamedialog|label2"
-msgid "Na_me"
-msgstr "মিং"
+msgid "Na_me:"
+msgstr ""
#: fpicker/uiconfig/ui/foldernamedialog.ui:122
#, fuzzy
diff --git a/source/mni/officecfg/registry/data/org/openoffice/Office/UI.po b/source/mni/officecfg/registry/data/org/openoffice/Office/UI.po
index e13a063fec4..5a61ca423c3 100644
--- a/source/mni/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/mni/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-22 13:17+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2017-05-16 09:25+0000\n"
"Last-Translator: Christian Lohmaier <lohmaier+pootle@googlemail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -27005,8 +27005,8 @@ msgctxt ""
"..WriterCommands.UserInterface.Commands..uno:TextAttributes\n"
"Label\n"
"value.text"
-msgid "Text Attributes"
-msgstr "তেক্সত এত্রিবিয়ুতস"
+msgid "Text Attributes..."
+msgstr ""
#: WriterCommands.xcu
msgctxt ""
diff --git a/source/mni/readlicense_oo/docs.po b/source/mni/readlicense_oo/docs.po
index 600e4f665a2..6ef1efbc88b 100644
--- a/source/mni/readlicense_oo/docs.po
+++ b/source/mni/readlicense_oo/docs.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-04-17 15:54+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2016-03-11 15:32+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -130,7 +130,7 @@ msgctxt ""
"readme.xrm\n"
"macxiOSX\n"
"readmeitem.text"
-msgid "MacOSX 10.8 (Mountain Lion) or higher"
+msgid "MacOSX 10.9 (Mavericks) or higher"
msgstr ""
#: readme.xrm
diff --git a/source/mni/sc/messages.po b/source/mni/sc/messages.po
index ef3b47753a1..ef32c014dfc 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-12 14:40+0200\n"
"PO-Revision-Date: 2018-01-15 17:44+0000\n"
"Last-Translator: Christian Lohmaier <lohmaier+pootle@googlemail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1892,18 +1892,23 @@ msgid "Nested arrays are not supported."
msgstr ""
#: sc/inc/globstr.hrc:390
+msgctxt "STR_ERR_LONG_BAD_ARRAY_CONTENT"
+msgid "Unsupported inline array content."
+msgstr ""
+
+#: sc/inc/globstr.hrc:391
msgctxt "STR_UNDO_TEXTTOCOLUMNS"
msgid "Text to Columns"
msgstr ""
-#: sc/inc/globstr.hrc:391
+#: sc/inc/globstr.hrc:392
msgctxt "STR_DOC_UPDATED"
msgid "Your spreadsheet has been updated with changes saved by other users."
msgstr ""
"മറ്റുള്ള ഉപയോക്താക്കള്‍ സംഭരിച്ച മാറ്റങ്ങളോടു കൂടി താങ്കളുടെ സ്പ്രെഡ്ഷീറ്റ് \n"
" അപ്ഡേറ്റ് ചെയ്തിരിക്കുന്നു"
-#: sc/inc/globstr.hrc:392
+#: sc/inc/globstr.hrc:393
msgctxt "STR_DOC_WILLBESAVED"
msgid ""
"The spreadsheet must be saved now to activate sharing mode.\n"
@@ -1911,7 +1916,7 @@ msgid ""
"Do you want to continue?"
msgstr ""
-#: sc/inc/globstr.hrc:393
+#: sc/inc/globstr.hrc:394
msgctxt "STR_DOC_WILLNOTBESAVED"
msgid ""
"Already resolved merge conflicts will be lost and your changes to the shared spreadsheet will not be saved.\n"
@@ -1919,7 +1924,7 @@ msgid ""
"Do you want to continue?"
msgstr ""
-#: sc/inc/globstr.hrc:394
+#: sc/inc/globstr.hrc:395
msgctxt "STR_DOC_DISABLESHARED"
msgid ""
"Disabling shared mode of a spreadsheet hinders all other users of the shared spreadsheet to merge back their work.\n"
@@ -1927,7 +1932,7 @@ msgid ""
"Do you want to continue?"
msgstr ""
-#: sc/inc/globstr.hrc:395
+#: sc/inc/globstr.hrc:396
msgctxt "STR_DOC_NOLONGERSHARED"
msgid ""
"This spreadsheet is no longer in shared mode.\n"
@@ -1935,7 +1940,7 @@ msgid ""
"Save your spreadsheet to a separate file and merge your changes to the shared spreadsheet manually."
msgstr ""
-#: sc/inc/globstr.hrc:396
+#: sc/inc/globstr.hrc:397
msgctxt "STR_FILE_LOCKED_TRY_LATER"
msgid ""
"The shared spreadsheet file is locked due to a merge in progress by user: '%1'\n"
@@ -1943,7 +1948,7 @@ msgid ""
"Sharing mode of a locked file cannot be disabled. Try again later."
msgstr ""
-#: sc/inc/globstr.hrc:397
+#: sc/inc/globstr.hrc:398
msgctxt "STR_FILE_LOCKED_SAVE_LATER"
msgid ""
"The shared spreadsheet file is locked due to a merge in progress by user: '%1'\n"
@@ -1951,157 +1956,157 @@ msgid ""
"Try again later to save your changes."
msgstr ""
-#: sc/inc/globstr.hrc:398
+#: sc/inc/globstr.hrc:399
msgctxt "STR_UNKNOWN_USER"
msgid "Unknown User"
msgstr "শকখঙদবা শিজিন্নরিবা"
-#: sc/inc/globstr.hrc:399
+#: sc/inc/globstr.hrc:400
msgctxt "STR_SHAPE_AUTOSHAPE"
msgid "AutoShape"
msgstr ""
-#: sc/inc/globstr.hrc:400
+#: sc/inc/globstr.hrc:401
msgctxt "STR_SHAPE_RECTANGLE"
msgid "Rectangle"
msgstr "রেক্তেঙ্গল"
-#: sc/inc/globstr.hrc:401
+#: sc/inc/globstr.hrc:402
msgctxt "STR_SHAPE_LINE"
msgid "Line"
msgstr "পরিং"
-#: sc/inc/globstr.hrc:402
+#: sc/inc/globstr.hrc:403
msgctxt "STR_SHAPE_OVAL"
msgid "Oval"
msgstr "য়েরুম মওং মানবা"
-#: sc/inc/globstr.hrc:403
+#: sc/inc/globstr.hrc:404
msgctxt "STR_FORM_BUTTON"
msgid "Button"
msgstr "বতন"
-#: sc/inc/globstr.hrc:404
+#: sc/inc/globstr.hrc:405
#, fuzzy
msgctxt "STR_FORM_CHECKBOX"
msgid "Check Box"
msgstr "অশোয়বা থিনবা উপু"
-#: sc/inc/globstr.hrc:405
+#: sc/inc/globstr.hrc:406
msgctxt "STR_FORM_OPTIONBUTTON"
msgid "Option Button"
msgstr "অপাম্বা বতন"
-#: sc/inc/globstr.hrc:406
+#: sc/inc/globstr.hrc:407
msgctxt "STR_FORM_LABEL"
msgid "Label"
msgstr "লেবেল"
-#: sc/inc/globstr.hrc:407
+#: sc/inc/globstr.hrc:408
#, fuzzy
msgctxt "STR_FORM_LISTBOX"
msgid "List Box"
msgstr "মিং পরিংগী উপু"
-#: sc/inc/globstr.hrc:408
+#: sc/inc/globstr.hrc:409
#, fuzzy
msgctxt "STR_FORM_GROUPBOX"
msgid "Group Box"
msgstr "কাংলুপগী উপু"
-#: sc/inc/globstr.hrc:409
+#: sc/inc/globstr.hrc:410
#, fuzzy
msgctxt "STR_FORM_DROPDOWN"
msgid "Drop Down"
msgstr "মখাদা থাদবা"
-#: sc/inc/globstr.hrc:410
+#: sc/inc/globstr.hrc:411
msgctxt "STR_FORM_SPINNER"
msgid "Spinner"
msgstr ""
-#: sc/inc/globstr.hrc:411
+#: sc/inc/globstr.hrc:412
#, fuzzy
msgctxt "STR_FORM_SCROLLBAR"
msgid "Scroll Bar"
msgstr "স্ক্ৰোল বার"
-#: sc/inc/globstr.hrc:412
+#: sc/inc/globstr.hrc:413
msgctxt "STR_STYLE_FAMILY_CELL"
msgid "Cell Styles"
msgstr "কাখলগী মওংশিং"
-#: sc/inc/globstr.hrc:413
+#: sc/inc/globstr.hrc:414
#, fuzzy
msgctxt "STR_STYLE_FAMILY_PAGE"
msgid "Page Styles"
msgstr "লমায় মওং"
-#: sc/inc/globstr.hrc:414
+#: sc/inc/globstr.hrc:415
#, fuzzy
msgctxt "STR_ERR_DATAPILOTSOURCE"
msgid "Pivot table source data is invalid."
msgstr "পীরিবা স্ত্রীম অসি চতন্দ্রে."
-#: sc/inc/globstr.hrc:415
+#: sc/inc/globstr.hrc:416
msgctxt "STR_OPTIONS_WARN_SEPARATORS"
msgid "Because the current formula separator settings conflict with the locale, the formula separators have been reset to their default values."
msgstr ""
-#: sc/inc/globstr.hrc:416
+#: sc/inc/globstr.hrc:417
msgctxt "STR_UNDO_INSERT_CURRENT_DATE"
msgid "Insert Current Date"
msgstr "চৎলিবা তাং হাপচিল্লো"
-#: sc/inc/globstr.hrc:417
+#: sc/inc/globstr.hrc:418
msgctxt "STR_UNDO_INSERT_CURRENT_TIME"
msgid "Insert Current Time"
msgstr "হৌজিক্কী মতম হাপচিল্লো"
-#: sc/inc/globstr.hrc:418
+#: sc/inc/globstr.hrc:419
#, fuzzy
msgctxt "STR_MANAGE_NAMES"
msgid "Manage Names..."
msgstr "থাক্কী মিংশিং"
-#: sc/inc/globstr.hrc:419
+#: sc/inc/globstr.hrc:420
#, fuzzy
msgctxt "STR_HEADER_NAME"
msgid "Name"
msgstr "মিং"
-#: sc/inc/globstr.hrc:420
+#: sc/inc/globstr.hrc:421
msgctxt "STR_HEADER_RANGE_OR_EXPR"
msgid "Range or formula expression"
msgstr ""
-#: sc/inc/globstr.hrc:421
+#: sc/inc/globstr.hrc:422
msgctxt "STR_HEADER_SCOPE"
msgid "Scope"
msgstr "স্কোপ"
-#: sc/inc/globstr.hrc:422
+#: sc/inc/globstr.hrc:423
msgctxt "STR_MULTI_SELECT"
msgid "(multiple)"
msgstr ""
-#: sc/inc/globstr.hrc:423
+#: sc/inc/globstr.hrc:424
#, fuzzy
msgctxt "STR_GLOBAL_SCOPE"
msgid "Document (Global)"
msgstr "দোকুমেন্ত মখল"
-#: sc/inc/globstr.hrc:424
+#: sc/inc/globstr.hrc:425
msgctxt "STR_ERR_NAME_EXISTS"
msgid "Invalid name. Already in use for the selected scope."
msgstr ""
-#: sc/inc/globstr.hrc:425
+#: sc/inc/globstr.hrc:426
msgctxt "STR_ERR_NAME_INVALID"
msgid "Invalid name. Only use letters, numbers and underscore."
msgstr ""
-#: sc/inc/globstr.hrc:426
+#: sc/inc/globstr.hrc:427
msgctxt "STR_UNSAVED_EXT_REF"
msgid ""
"This Document contains external references to unsaved documents.\n"
@@ -2109,228 +2114,228 @@ msgid ""
"Do you want to continue?"
msgstr ""
-#: sc/inc/globstr.hrc:427
+#: sc/inc/globstr.hrc:428
msgctxt "STR_CLOSE_WITH_UNSAVED_REFS"
msgid "This Document is referenced by another document and not yet saved. Closing it without saving will result in data loss."
msgstr ""
-#: sc/inc/globstr.hrc:428
+#: sc/inc/globstr.hrc:429
msgctxt "STR_HEADER_RANGE"
msgid "Range"
msgstr "রেন্জ"
-#: sc/inc/globstr.hrc:429
+#: sc/inc/globstr.hrc:430
msgctxt "STR_HEADER_COND"
msgid "First Condition"
msgstr ""
-#: sc/inc/globstr.hrc:430
+#: sc/inc/globstr.hrc:431
#, fuzzy
msgctxt "STR_COND_CONDITION"
msgid "Cell value is"
msgstr "কাখল ভেল্যু অসি"
-#: sc/inc/globstr.hrc:431
+#: sc/inc/globstr.hrc:432
msgctxt "STR_COND_COLORSCALE"
msgid "ColorScale"
msgstr ""
-#: sc/inc/globstr.hrc:432
+#: sc/inc/globstr.hrc:433
msgctxt "STR_COND_DATABAR"
msgid "DataBar"
msgstr ""
-#: sc/inc/globstr.hrc:433
+#: sc/inc/globstr.hrc:434
msgctxt "STR_COND_ICONSET"
msgid "IconSet"
msgstr ""
-#: sc/inc/globstr.hrc:434
+#: sc/inc/globstr.hrc:435
#, fuzzy
msgctxt "STR_COND_BETWEEN"
msgid "between"
msgstr "মরক্তা"
-#: sc/inc/globstr.hrc:435
+#: sc/inc/globstr.hrc:436
#, fuzzy
msgctxt "STR_COND_NOTBETWEEN"
msgid "not between"
msgstr "মরক্তা নত্তবা"
-#: sc/inc/globstr.hrc:436
+#: sc/inc/globstr.hrc:437
msgctxt "STR_COND_UNIQUE"
msgid "unique"
msgstr ""
-#: sc/inc/globstr.hrc:437
+#: sc/inc/globstr.hrc:438
#, fuzzy
msgctxt "STR_COND_DUPLICATE"
msgid "duplicate"
msgstr "শাশিন্নবা"
-#: sc/inc/globstr.hrc:438
+#: sc/inc/globstr.hrc:439
#, fuzzy
msgctxt "STR_COND_FORMULA"
msgid "Formula is"
msgstr "ফোরমুলা অসি"
-#: sc/inc/globstr.hrc:439
+#: sc/inc/globstr.hrc:440
msgctxt "STR_COND_TOP10"
msgid "Top Elements"
msgstr ""
-#: sc/inc/globstr.hrc:440
+#: sc/inc/globstr.hrc:441
msgctxt "STR_COND_BOTTOM10"
msgid "Bottom Elements"
msgstr ""
-#: sc/inc/globstr.hrc:441
+#: sc/inc/globstr.hrc:442
msgctxt "STR_COND_TOP_PERCENT"
msgid "Top Percent"
msgstr ""
-#: sc/inc/globstr.hrc:442
+#: sc/inc/globstr.hrc:443
msgctxt "STR_COND_DATE"
msgid "Date is"
msgstr ""
-#: sc/inc/globstr.hrc:443
+#: sc/inc/globstr.hrc:444
msgctxt "STR_COND_BOTTOM_PERCENT"
msgid "Bottom Percent"
msgstr ""
-#: sc/inc/globstr.hrc:444
+#: sc/inc/globstr.hrc:445
msgctxt "STR_COND_ABOVE_AVERAGE"
msgid "Above Average"
msgstr ""
-#: sc/inc/globstr.hrc:445
+#: sc/inc/globstr.hrc:446
msgctxt "STR_COND_BELOW_AVERAGE"
msgid "Below Average"
msgstr ""
-#: sc/inc/globstr.hrc:446
+#: sc/inc/globstr.hrc:447
msgctxt "STR_COND_ABOVE_EQUAL_AVERAGE"
msgid "Above or equal Average"
msgstr ""
-#: sc/inc/globstr.hrc:447
+#: sc/inc/globstr.hrc:448
msgctxt "STR_COND_BELOW_EQUAL_AVERAGE"
msgid "Below or equal Average"
msgstr ""
-#: sc/inc/globstr.hrc:448
+#: sc/inc/globstr.hrc:449
#, fuzzy
msgctxt "STR_COND_ERROR"
msgid "an Error code"
msgstr "অশোয়বা কোদ"
-#: sc/inc/globstr.hrc:449
+#: sc/inc/globstr.hrc:450
#, fuzzy
msgctxt "STR_COND_NOERROR"
msgid "not an Error code"
msgstr "অশোয়বা কোদ"
-#: sc/inc/globstr.hrc:450
+#: sc/inc/globstr.hrc:451
msgctxt "STR_COND_BEGINS_WITH"
msgid "Begins with"
msgstr ""
-#: sc/inc/globstr.hrc:451
+#: sc/inc/globstr.hrc:452
msgctxt "STR_COND_ENDS_WITH"
msgid "Ends with"
msgstr ""
-#: sc/inc/globstr.hrc:452
+#: sc/inc/globstr.hrc:453
#, fuzzy
msgctxt "STR_COND_CONTAINS"
msgid "Contains"
msgstr "য়াওই"
-#: sc/inc/globstr.hrc:453
+#: sc/inc/globstr.hrc:454
msgctxt "STR_COND_NOT_CONTAINS"
msgid "Not Contains"
msgstr ""
-#: sc/inc/globstr.hrc:454
+#: sc/inc/globstr.hrc:455
#, fuzzy
msgctxt "STR_COND_TODAY"
msgid "today"
msgstr "ঙসি"
-#: sc/inc/globstr.hrc:455
+#: sc/inc/globstr.hrc:456
#, fuzzy
msgctxt "STR_COND_YESTERDAY"
msgid "yesterday"
msgstr "ঙরাং"
-#: sc/inc/globstr.hrc:456
+#: sc/inc/globstr.hrc:457
msgctxt "STR_COND_TOMORROW"
msgid "tomorrow"
msgstr ""
-#: sc/inc/globstr.hrc:457
+#: sc/inc/globstr.hrc:458
msgctxt "STR_COND_LAST7DAYS"
msgid "in the last 7 days"
msgstr ""
-#: sc/inc/globstr.hrc:458
+#: sc/inc/globstr.hrc:459
msgctxt "STR_COND_THISWEEK"
msgid "this week"
msgstr ""
-#: sc/inc/globstr.hrc:459
+#: sc/inc/globstr.hrc:460
msgctxt "STR_COND_LASTWEEK"
msgid "last week"
msgstr ""
-#: sc/inc/globstr.hrc:460
+#: sc/inc/globstr.hrc:461
msgctxt "STR_COND_NEXTWEEK"
msgid "next week"
msgstr ""
-#: sc/inc/globstr.hrc:461
+#: sc/inc/globstr.hrc:462
msgctxt "STR_COND_THISMONTH"
msgid "this month"
msgstr ""
-#: sc/inc/globstr.hrc:462
+#: sc/inc/globstr.hrc:463
msgctxt "STR_COND_LASTMONTH"
msgid "last month"
msgstr ""
-#: sc/inc/globstr.hrc:463
+#: sc/inc/globstr.hrc:464
msgctxt "STR_COND_NEXTMONTH"
msgid "next month"
msgstr ""
-#: sc/inc/globstr.hrc:464
+#: sc/inc/globstr.hrc:465
msgctxt "STR_COND_THISYEAR"
msgid "this year"
msgstr ""
-#: sc/inc/globstr.hrc:465
+#: sc/inc/globstr.hrc:466
msgctxt "STR_COND_LASTYEAR"
msgid "last year"
msgstr ""
-#: sc/inc/globstr.hrc:466
+#: sc/inc/globstr.hrc:467
msgctxt "STR_COND_NEXTYEAR"
msgid "next year"
msgstr ""
-#: sc/inc/globstr.hrc:467
+#: sc/inc/globstr.hrc:468
#, fuzzy
msgctxt "STR_COND_AND"
msgid "and"
msgstr "অমশুং"
-#: sc/inc/globstr.hrc:468
+#: sc/inc/globstr.hrc:469
msgctxt "STR_ERR_CONDFORMAT_PROTECTED"
msgid "Conditional Formats can not be created, deleted or changed in protected sheets."
msgstr ""
-#: sc/inc/globstr.hrc:469
+#: sc/inc/globstr.hrc:470
msgctxt "STR_EDIT_EXISTING_COND_FORMATS"
msgid ""
"The selected cell already contains conditional formatting. You can either edit the existing conditional format or you define a new overlapping conditional format.\n"
@@ -2338,7 +2343,7 @@ msgid ""
" Do you want to edit the existing conditional format?"
msgstr ""
-#: sc/inc/globstr.hrc:470
+#: sc/inc/globstr.hrc:471
msgctxt "STR_QUERY_FORMULA_RECALC_ONLOAD_ODS"
msgid ""
"This document was last saved by an application other than %PRODUCTNAME. Some formula cells may produce different results when recalculated.\n"
@@ -2349,7 +2354,7 @@ msgstr ""
" \n"
" Do you want to recalculate all formula cells in this document now?"
-#: sc/inc/globstr.hrc:471
+#: sc/inc/globstr.hrc:472
msgctxt "STR_QUERY_FORMULA_RECALC_ONLOAD_XLS"
msgid ""
"This document was last saved by Excel. Some formula cells may produce different results when recalculated.\n"
@@ -2357,81 +2362,81 @@ msgid ""
"Do you want to recalculate all formula cells now?"
msgstr ""
-#: sc/inc/globstr.hrc:472
+#: sc/inc/globstr.hrc:473
msgctxt "STR_NO_INSERT_DELETE_OVER_PIVOT_TABLE"
msgid "You cannot insert or delete cells when the affected range intersects with pivot table."
msgstr ""
-#: sc/inc/globstr.hrc:473
+#: sc/inc/globstr.hrc:474
msgctxt "STR_DPFIELD_GROUP_BY_SECONDS"
msgid "Seconds"
msgstr "সেকেন্দ"
-#: sc/inc/globstr.hrc:474
+#: sc/inc/globstr.hrc:475
msgctxt "STR_DPFIELD_GROUP_BY_MINUTES"
msgid "Minutes"
msgstr "মিনিত"
-#: sc/inc/globstr.hrc:475
+#: sc/inc/globstr.hrc:476
msgctxt "STR_DPFIELD_GROUP_BY_HOURS"
msgid "Hours"
msgstr "পুংশিং"
-#: sc/inc/globstr.hrc:476
+#: sc/inc/globstr.hrc:477
msgctxt "STR_DPFIELD_GROUP_BY_DAYS"
msgid "Days"
msgstr "নুমিৎ"
-#: sc/inc/globstr.hrc:477
+#: sc/inc/globstr.hrc:478
msgctxt "STR_DPFIELD_GROUP_BY_MONTHS"
msgid "Months"
msgstr "থা"
-#: sc/inc/globstr.hrc:478
+#: sc/inc/globstr.hrc:479
msgctxt "STR_DPFIELD_GROUP_BY_QUARTERS"
msgid "Quarters"
msgstr ""
-#: sc/inc/globstr.hrc:479
+#: sc/inc/globstr.hrc:480
msgctxt "STR_DPFIELD_GROUP_BY_YEARS"
msgid "Years"
msgstr "চহী"
-#: sc/inc/globstr.hrc:480
+#: sc/inc/globstr.hrc:481
#, fuzzy
msgctxt "STR_INVALIDVAL"
msgid "Invalid target value."
msgstr "চতন্দ্রবা পান্দম থম্লিবা ভেল্যু."
-#: sc/inc/globstr.hrc:481
+#: sc/inc/globstr.hrc:482
#, fuzzy
msgctxt "STR_INVALIDVAR"
msgid "Undefined name for variable cell."
msgstr "হোংগনবা কাখলগী শন্দোকনা তাক্তবা মিং."
-#: sc/inc/globstr.hrc:482
+#: sc/inc/globstr.hrc:483
#, fuzzy
msgctxt "STR_INVALIDFORM"
msgid "Undefined name as formula cell."
msgstr "ফোর্মুলা কাখলগুম্না শন্দোকনা তাক্তবা মিং."
-#: sc/inc/globstr.hrc:483
+#: sc/inc/globstr.hrc:484
msgctxt "STR_NOFORMULA"
msgid "Formula cell must contain a formula."
msgstr ""
-#: sc/inc/globstr.hrc:484
+#: sc/inc/globstr.hrc:485
#, fuzzy
msgctxt "STR_INVALIDINPUT"
msgid "Invalid input."
msgstr "শিজিন্নবা য়াদ্রবা ইন্দেক্স"
-#: sc/inc/globstr.hrc:485
+#: sc/inc/globstr.hrc:486
msgctxt "STR_INVALIDCONDITION"
msgid "Invalid condition."
msgstr ""
-#: sc/inc/globstr.hrc:486
+#: sc/inc/globstr.hrc:487
msgctxt "STR_QUERYREMOVE"
msgid ""
"Should the entry\n"
@@ -2442,139 +2447,139 @@ msgstr ""
" #\n"
" মুত্থতকদ্রা ?"
-#: sc/inc/globstr.hrc:487
+#: sc/inc/globstr.hrc:488
msgctxt "STR_COPYLIST"
msgid "Copy List"
msgstr "মিং পরিং শিল্লো"
-#: sc/inc/globstr.hrc:488
+#: sc/inc/globstr.hrc:489
msgctxt "STR_COPYFROM"
msgid "List from"
msgstr "...দগী মিং পরিং"
-#: sc/inc/globstr.hrc:489
+#: sc/inc/globstr.hrc:490
msgctxt "STR_COPYERR"
msgid "Cells without text have been ignored."
msgstr "তেক্স য়াওদবা কাখলশিং করিসু খন্দ্রে."
-#: sc/inc/globstr.hrc:490
+#: sc/inc/globstr.hrc:491
#, c-format
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%s-click to follow hyperlink:"
msgstr ""
-#: sc/inc/globstr.hrc:491
+#: sc/inc/globstr.hrc:492
msgctxt "STR_CLICKHYPERLINK"
msgid "click to open hyperlink:"
msgstr ""
-#: sc/inc/globstr.hrc:492
+#: sc/inc/globstr.hrc:493
msgctxt "STR_PRINT_PREVIEW_NODATA"
msgid "No Data"
msgstr ""
-#: sc/inc/globstr.hrc:493
+#: sc/inc/globstr.hrc:494
msgctxt "STR_PRINT_PREVIEW_EMPTY_RANGE"
msgid "Print Range Empty"
msgstr ""
-#: sc/inc/globstr.hrc:494
+#: sc/inc/globstr.hrc:495
#, fuzzy
msgctxt "STR_UNDO_CONDFORMAT"
msgid "Conditional Format"
msgstr "ফিবমগী ওইবা ফোরমেত তৌবা"
-#: sc/inc/globstr.hrc:495
+#: sc/inc/globstr.hrc:496
#, fuzzy
msgctxt "STR_UNDO_CONDFORMAT_LIST"
msgid "Conditional Formats"
msgstr "ফিবমগী ওইবা ফোরমেত তৌবা"
-#: sc/inc/globstr.hrc:496
+#: sc/inc/globstr.hrc:497
msgctxt "STR_UNDO_FORMULA_TO_VALUE"
msgid "Convert Formula To Value"
msgstr ""
-#: sc/inc/globstr.hrc:497
+#: sc/inc/globstr.hrc:498
msgctxt "STR_UNQUOTED_STRING"
msgid "Strings without quotes are interpreted as column/row labels."
msgstr ""
-#: sc/inc/globstr.hrc:498
+#: sc/inc/globstr.hrc:499
msgctxt "STR_ENTER_VALUE"
msgid "Enter a value!"
msgstr ""
-#: sc/inc/globstr.hrc:499
+#: sc/inc/globstr.hrc:500
msgctxt "STR_TABLE_COUNT"
msgid "Sheet %1 of %2"
msgstr ""
-#: sc/inc/globstr.hrc:500
+#: sc/inc/globstr.hrc:501
msgctxt "STR_FUNCTIONS_FOUND"
msgid "%1 and %2 more"
msgstr ""
-#: sc/inc/globstr.hrc:501
+#: sc/inc/globstr.hrc:502
#, fuzzy
msgctxt "STR_GENERAL"
msgid "General"
msgstr "জেনরেল"
-#: sc/inc/globstr.hrc:502
+#: sc/inc/globstr.hrc:503
#, fuzzy
msgctxt "STR_NUMBER"
msgid "Number"
msgstr "মশিং"
-#: sc/inc/globstr.hrc:503
+#: sc/inc/globstr.hrc:504
msgctxt "STR_PERCENT"
msgid "Percent"
msgstr "চাদা"
-#: sc/inc/globstr.hrc:504
+#: sc/inc/globstr.hrc:505
#, fuzzy
msgctxt "STR_CURRENCY"
msgid "Currency"
msgstr "শেল"
-#: sc/inc/globstr.hrc:505
+#: sc/inc/globstr.hrc:506
msgctxt "STR_DATE"
msgid "Date"
msgstr "তারিখ"
-#: sc/inc/globstr.hrc:506
+#: sc/inc/globstr.hrc:507
msgctxt "STR_TIME"
msgid "Time"
msgstr "মতম"
-#: sc/inc/globstr.hrc:507
+#: sc/inc/globstr.hrc:508
msgctxt "STR_SCIENTIFIC"
msgid "Scientific"
msgstr ""
-#: sc/inc/globstr.hrc:508
+#: sc/inc/globstr.hrc:509
#, fuzzy
msgctxt "STR_FRACTION"
msgid "Fraction"
msgstr "ফঙ্কসন"
-#: sc/inc/globstr.hrc:509
+#: sc/inc/globstr.hrc:510
msgctxt "STR_BOOLEAN_VALUE"
msgid "Boolean Value"
msgstr ""
-#: sc/inc/globstr.hrc:510
+#: sc/inc/globstr.hrc:511
msgctxt "STR_TEXT"
msgid "Text"
msgstr "তেক্স"
-#: sc/inc/globstr.hrc:511
+#: sc/inc/globstr.hrc:512
msgctxt "STR_QUERY_PIVOTTABLE_DELTAB"
msgid "The selected sheet(s) contain source data of related pivot tables that will be lost. Are you sure you want to delete the selected sheet(s)?"
msgstr ""
-#: sc/inc/globstr.hrc:512
+#: sc/inc/globstr.hrc:513
msgctxt "STR_ERR_NAME_INVALID_CELL_REF"
msgid "Invalid name. Reference to a cell, or a range of cells not allowed."
msgstr ""
@@ -10824,8 +10829,8 @@ msgstr "মওং"
#: sc/inc/scfuncs.hrc:3010
msgctxt "SC_OPCODE_T_TEST"
-msgid "Mode specifies the number of distribution tails to return. 1= one-tailed, 2 = two-tailed distribution"
-msgstr "মোদনা তাইলশিংগী য়েন্থোকপগী মশিংবু হল্লকনবা মশক তাকই. 1= তেইল-অমা ওইবা, 2 = তেইল-অনী ওইবা য়েন্থোকপা"
+msgid "Mode specifies the number of distribution tails to return. 1 = one-tailed, 2 = two-tailed distribution"
+msgstr ""
#: sc/inc/scfuncs.hrc:3011
msgctxt "SC_OPCODE_T_TEST"
@@ -10871,8 +10876,8 @@ msgstr "মওং"
#: sc/inc/scfuncs.hrc:3024
msgctxt "SC_OPCODE_T_TEST_MS"
-msgid "Mode specifies the number of distribution tails to return. 1= one-tailed, 2 = two-tailed distribution"
-msgstr "মোদনা তাইলশিংগী য়েন্থোকপগী মশিংবু হল্লকনবা মশক তাকই. 1= তেইল-অমা ওইবা, 2 = তেইল-অনী ওইবা য়েন্থোকপা"
+msgid "Mode specifies the number of distribution tails to return. 1 = one-tailed, 2 = two-tailed distribution"
+msgstr ""
#: sc/inc/scfuncs.hrc:3025
msgctxt "SC_OPCODE_T_TEST_MS"
@@ -18747,22 +18752,22 @@ msgctxt "mergecellsdialog|MergeCellsDialog"
msgid "Merge Cells"
msgstr "কাখল মচাশিং মাংহনবা(মুত্থত্পা)"
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:81
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:84
msgctxt "mergecellsdialog|label"
msgid "Some cells are not empty."
msgstr ""
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:96
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:99
msgctxt "mergecellsdialog|move-cells-radio"
msgid "Move the contents of the hidden cells into the first cell"
msgstr ""
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:112
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:115
msgctxt "mergecellsdialog|empty-cells-radio"
msgid "Empty the contents of the hidden cells"
msgstr ""
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:128
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:131
msgctxt "mergecellsdialog|keep-content-radio"
msgid "Keep the contents of the hidden cells"
msgstr ""
diff --git a/source/mni/sd/messages.po b/source/mni/sd/messages.po
index a8b63f7501f..5894884c273 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+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"
@@ -13,177 +13,177 @@ msgstr ""
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-#: sd/inc/DocumentRenderer.hrc:29
+#: sd/inc/DocumentRenderer.hrc:27
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Slides"
msgstr "স্লাইদশিং"
-#: sd/inc/DocumentRenderer.hrc:30
+#: sd/inc/DocumentRenderer.hrc:28
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Handouts"
msgstr "হেন্দআউতস"
-#: sd/inc/DocumentRenderer.hrc:31
+#: sd/inc/DocumentRenderer.hrc:29
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Notes"
msgstr "মরুওইবা ৱারোলশিং"
-#: sd/inc/DocumentRenderer.hrc:32
+#: sd/inc/DocumentRenderer.hrc:30
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Outline"
msgstr "আউতলাইন"
-#: sd/inc/DocumentRenderer.hrc:37
+#: sd/inc/DocumentRenderer.hrc:35
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "According to layout"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:38
+#: sd/inc/DocumentRenderer.hrc:36
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "1"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:39
+#: sd/inc/DocumentRenderer.hrc:37
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "2"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:40
+#: sd/inc/DocumentRenderer.hrc:38
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "3"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:41
+#: sd/inc/DocumentRenderer.hrc:39
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "4"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:42
+#: sd/inc/DocumentRenderer.hrc:40
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "6"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:43
+#: sd/inc/DocumentRenderer.hrc:41
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "9"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:48
+#: sd/inc/DocumentRenderer.hrc:46
msgctxt "STR_IMPRESS_PRINT_UI_ORDER_CHOICES"
msgid "Left to right, then down"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:49
+#: sd/inc/DocumentRenderer.hrc:47
msgctxt "STR_IMPRESS_PRINT_UI_ORDER_CHOICES"
msgid "Top to bottom, then right"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:54
+#: sd/inc/DocumentRenderer.hrc:52
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Original colors"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:55
+#: sd/inc/DocumentRenderer.hrc:53
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Grayscale"
msgstr "গ্রেস্কেল"
-#: sd/inc/DocumentRenderer.hrc:56
+#: sd/inc/DocumentRenderer.hrc:54
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Black & white"
msgstr "অমুবা & অঙৌবা"
-#: sd/inc/DocumentRenderer.hrc:61
+#: sd/inc/DocumentRenderer.hrc:59
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Original size"
msgstr "মশাগী অশেংবা মচাও-মরাক"
-#: sd/inc/DocumentRenderer.hrc:62
+#: sd/inc/DocumentRenderer.hrc:60
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Fit to printable page"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:63
+#: sd/inc/DocumentRenderer.hrc:61
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Distribute on multiple sheets of paper"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:64
+#: sd/inc/DocumentRenderer.hrc:62
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Tile sheet of paper with repeated slides"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:69
+#: sd/inc/DocumentRenderer.hrc:67
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Original size"
msgstr "মশাগী অশেংবা মচাও-মরাক"
-#: sd/inc/DocumentRenderer.hrc:70
+#: sd/inc/DocumentRenderer.hrc:68
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Fit to printable page"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:71
+#: sd/inc/DocumentRenderer.hrc:69
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Distribute on multiple sheets of paper"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:72
+#: sd/inc/DocumentRenderer.hrc:70
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Tile sheet of paper with repeated pages"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:77
+#: sd/inc/DocumentRenderer.hrc:75
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "All pages"
msgstr "লামায পুম্নমক"
-#: sd/inc/DocumentRenderer.hrc:78
+#: sd/inc/DocumentRenderer.hrc:76
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "Front sides / right pages"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:79
+#: sd/inc/DocumentRenderer.hrc:77
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "Back sides / left pages"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:84
+#: sd/inc/DocumentRenderer.hrc:82
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~All slides"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:85
+#: sd/inc/DocumentRenderer.hrc:83
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~Slides"
msgstr "স্লাইদশিং"
-#: sd/inc/DocumentRenderer.hrc:86
+#: sd/inc/DocumentRenderer.hrc:84
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Se~lection"
msgstr "অখনবা (~l)"
-#: sd/inc/DocumentRenderer.hrc:91
+#: sd/inc/DocumentRenderer.hrc:89
#, fuzzy
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~All pages"
msgstr "লামায পুম্নমক"
-#: sd/inc/DocumentRenderer.hrc:92
+#: sd/inc/DocumentRenderer.hrc:90
#, fuzzy
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Pa~ges"
msgstr "লমায়শিং"
-#: sd/inc/DocumentRenderer.hrc:93
+#: sd/inc/DocumentRenderer.hrc:91
#, fuzzy
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Se~lection"
diff --git a/source/mni/svx/messages.po b/source/mni/svx/messages.po
index 6d4e412d8a6..12019bd755a 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: 2018-05-16 16:53+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+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"
@@ -5525,7 +5525,7 @@ msgstr ""
#: svx/uiconfig/ui/safemodedialog.ui:432
msgctxt "safemodedialog|btn_create_zip"
-msgid "Create Zip Archive from User Profile"
+msgid "Archive User Profile"
msgstr ""
#: svx/uiconfig/ui/safemodedialog.ui:445
@@ -9220,9 +9220,9 @@ msgid "Red"
msgstr "অঙাংবা"
#: include/svx/strings.hrc:565
-msgctxt "RID_SVXSTR_COLOR_VIOLET"
-msgid "Violet"
-msgstr "মঙ্গ্রা মচু"
+msgctxt "RID_SVXSTR_COLOR_MAGENTA"
+msgid "Magenta"
+msgstr "শৌগ্রি মপাল মচু"
#: include/svx/strings.hrc:566
msgctxt "RID_SVXSTR_COLOR_PURPLE"
@@ -9287,8 +9287,8 @@ msgid "Light Red"
msgstr ""
#: include/svx/strings.hrc:579
-msgctxt "RID_SVXSTR_COLOR_LIGHTVIOLET"
-msgid "Light Violet"
+msgctxt "RID_SVXSTR_COLOR_LIGHTMAGENTA"
+msgid "Light Magenta"
msgstr ""
#: include/svx/strings.hrc:580
@@ -9355,8 +9355,8 @@ msgid "Dark Red"
msgstr "মুশিনবা অঙাংবা"
#: include/svx/strings.hrc:593
-msgctxt "RID_SVXSTR_COLOR_DARKVIOLET1"
-msgid "Dark Violet"
+msgctxt "RID_SVXSTR_COLOR_DARKMAGENTA"
+msgid "Dark Magenta"
msgstr ""
#: include/svx/strings.hrc:594
@@ -9391,55 +9391,55 @@ msgstr ""
#. Elements of the Tonal color palette
#: include/svx/strings.hrc:601
+msgctxt "RID_SVXSTR_COLOR_VIOLET"
+msgid "Violet"
+msgstr "মঙ্গ্রা মচু"
+
+#: include/svx/strings.hrc:602
msgctxt "RID_SVXSTR_COLOR_VIOLET_OUG"
msgid "Violet (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:602
+#: include/svx/strings.hrc:603
msgctxt "RID_SVXSTR_COLOR_BLUE_OUG"
msgid "Blue (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:603
+#: include/svx/strings.hrc:604
msgctxt "RID_SVXSTR_COLOR_AZURE_OUG"
msgid "Azure (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:604
+#: include/svx/strings.hrc:605
msgctxt "RID_SVXSTR_COLOR_SPRINGGREEN_OUG"
msgid "Spring Green (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:605
+#: include/svx/strings.hrc:606
msgctxt "RID_SVXSTR_COLOR_GREEN_OUG"
msgid "Green (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:606
+#: include/svx/strings.hrc:607
msgctxt "RID_SVXSTR_COLOR_CHARTREUSEGREEN_OUG"
msgid "Chartreuse Green (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:607
+#: include/svx/strings.hrc:608
msgctxt "RID_SVXSTR_COLOR_ORANGE_OUG"
msgid "Orange (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:608
+#: include/svx/strings.hrc:609
msgctxt "RID_SVXSTR_COLOR_RED_OUG"
msgid "Red (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:609
+#: include/svx/strings.hrc:610
msgctxt "RID_SVXSTR_COLOR_ROSE_OUG"
msgid "Rose (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:610
-msgctxt "RID_SVXSTR_COLOR_MAGENTA"
-msgid "Magenta"
-msgstr "শৌগ্রি মপাল মচু"
-
#: include/svx/strings.hrc:611
msgctxt "RID_SVXSTR_COLOR_AZURE"
msgid "Azure"
@@ -12653,12 +12653,12 @@ msgstr ""
#: include/svx/strings.hrc:1273
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_6"
-msgid "Check mark bullets"
+msgid "Cross mark bullets"
msgstr ""
#: include/svx/strings.hrc:1274
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_7"
-msgid "Tick mark bullets"
+msgid "Check mark bullets"
msgstr ""
#: include/svx/strings.hrc:1275
diff --git a/source/mni/sw/messages.po b/source/mni/sw/messages.po
index 61bd06c76b4..2b81b79686e 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: 2018-05-22 13:17+0200\n"
+"POT-Creation-Date: 2018-06-12 14:41+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"
@@ -1239,13 +1239,13 @@ msgstr "ক্বোতেসন"
#: sw/inc/strings.hrc:172
msgctxt "STR_POOLCOLL_TOX_ILLUSH"
-msgid "Illustration Index Heading"
-msgstr "খুদমগী ইন্দেক্স মিংথোল"
+msgid "Figure Index Heading"
+msgstr ""
#: sw/inc/strings.hrc:173
msgctxt "STR_POOLCOLL_TOX_ILLUS1"
-msgid "Illustration Index 1"
-msgstr "খুদমগী ইন্দেক্স 1"
+msgid "Figure Index 1"
+msgstr ""
#: sw/inc/strings.hrc:174
#, fuzzy
@@ -3756,10 +3756,9 @@ msgid "Table of Objects"
msgstr ""
#: sw/inc/strings.hrc:672
-#, fuzzy
msgctxt "STR_TOX_ILL"
-msgid "Illustration Index"
-msgstr "খুদমগী ইন্দেক্স 1"
+msgid "Table of Figures"
+msgstr ""
#: sw/inc/strings.hrc:673
#, c-format
@@ -9789,81 +9788,81 @@ msgctxt "footnotepage|label5"
msgid "Continuation Notice"
msgstr "মখা চত্থবগী খঙহনবা"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:49
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:55
#, fuzzy
msgctxt "footnotesendnotestabpage|ftnntnum"
msgid "_Restart numbering"
msgstr "নম্বরীং হন্না হৌহল্লু"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:91
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:93
#, fuzzy
msgctxt "footnotesendnotestabpage|ftnoffset_label"
msgid "_Start at:"
msgstr " ~দা হৌহল্লু"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:112
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:111
msgctxt "footnotesendnotestabpage|ftnntnumfmt"
msgid "Custom _format"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:155
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:150
#, fuzzy
msgctxt "footnotesendnotestabpage|ftnsuffix_label"
msgid "Aft_er:"
msgstr "মতুং"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:199
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:188
#, fuzzy
msgctxt "footnotesendnotestabpage|ftnprefix_label"
msgid "Be_fore:"
msgstr "মমাং"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:228
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:212
msgctxt "footnotesendnotestabpage|ftnntattextend"
msgid "Collec_t at end of text"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:252
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:234
#, fuzzy
msgctxt "footnotesendnotestabpage|label1"
msgid "Footnotes"
msgstr "ফুতনোত"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:289
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:271
msgctxt "footnotesendnotestabpage|endntattextend"
msgid "C_ollect at end of section"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:315
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:295
#, fuzzy
msgctxt "footnotesendnotestabpage|endntnum"
msgid "_Restart numbering"
msgstr "নম্বরীং হন্না হৌহল্লু"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:357
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:333
#, fuzzy
msgctxt "footnotesendnotestabpage|endoffset_label"
msgid "_Start at:"
msgstr " ~দা হৌহল্লু"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:378
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:351
msgctxt "footnotesendnotestabpage|endntnumfmt"
msgid "_Custom format"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:421
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:390
#, fuzzy
msgctxt "footnotesendnotestabpage|endsuffix_label"
msgid "Aft_er:"
msgstr "মতুং"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:465
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:428
#, fuzzy
msgctxt "footnotesendnotestabpage|endprefix_label"
msgid "Be_fore:"
msgstr "মমাং"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:500
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:458
#, fuzzy
msgctxt "footnotesendnotestabpage|label2"
msgid "Endnotes"
@@ -9895,30 +9894,30 @@ msgctxt "formatsectiondialog|notes"
msgid "Footnotes/Endnotes"
msgstr "মখাগী ৱারোল..."
-#: sw/uiconfig/swriter/ui/formattablepage.ui:63
+#: sw/uiconfig/swriter/ui/formattablepage.ui:77
#, fuzzy
msgctxt "formattablepage|nameft"
msgid "_Name"
msgstr "মিং"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:79
+#: sw/uiconfig/swriter/ui/formattablepage.ui:91
#, fuzzy
msgctxt "formattablepage|widthft"
msgid "W_idth"
msgstr "অপাকপা"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:110
+#: sw/uiconfig/swriter/ui/formattablepage.ui:120
msgctxt "formattablepage|relwidth"
msgid "Relati_ve"
msgstr ""
-#: sw/uiconfig/swriter/ui/formattablepage.ui:155
+#: sw/uiconfig/swriter/ui/formattablepage.ui:160
#, fuzzy
msgctxt "formattablepage|label45"
msgid "Properties"
msgstr "মগুনশিং"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:194
+#: sw/uiconfig/swriter/ui/formattablepage.ui:195
#, fuzzy
msgctxt "formattablepage|leftft"
msgid "Lef_t"
@@ -9930,71 +9929,71 @@ msgctxt "formattablepage|rightft"
msgid "Ri_ght"
msgstr "য়েত্থংবা"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:228
+#: sw/uiconfig/swriter/ui/formattablepage.ui:226
#, fuzzy
msgctxt "formattablepage|aboveft"
msgid "_Above"
msgstr "মথক্তা"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:245
+#: sw/uiconfig/swriter/ui/formattablepage.ui:241
#, fuzzy
msgctxt "formattablepage|belowft"
msgid "_Below"
msgstr "মখা"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:320
+#: sw/uiconfig/swriter/ui/formattablepage.ui:311
#, fuzzy
msgctxt "formattablepage|label46"
msgid "Spacing"
msgstr "হাংহল্লিবা"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:362
+#: sw/uiconfig/swriter/ui/formattablepage.ui:349
#, fuzzy
msgctxt "formattablepage|full"
msgid "A_utomatic"
msgstr "মশামথন্ত তৌজবা"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:380
+#: sw/uiconfig/swriter/ui/formattablepage.ui:365
#, fuzzy
msgctxt "formattablepage|left"
msgid "_Left"
msgstr "ওইথংবা"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:398
+#: sw/uiconfig/swriter/ui/formattablepage.ui:381
#, fuzzy
msgctxt "formattablepage|fromleft"
msgid "_From left"
msgstr "ওইরোমদগী"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:416
+#: sw/uiconfig/swriter/ui/formattablepage.ui:397
#, fuzzy
msgctxt "formattablepage|right"
msgid "R_ight"
msgstr "য়েত্থংবা"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:435
+#: sw/uiconfig/swriter/ui/formattablepage.ui:413
msgctxt "formattablepage|center"
msgid "_Center"
msgstr "_Centre"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:453
+#: sw/uiconfig/swriter/ui/formattablepage.ui:429
#, fuzzy
msgctxt "formattablepage|free"
msgid "_Manual"
msgstr "খুত্কী ওইবা"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:478
+#: sw/uiconfig/swriter/ui/formattablepage.ui:452
msgctxt "formattablepage|label43"
msgid "Alignment"
msgstr "পরিং চান্নহনবা"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:522
+#: sw/uiconfig/swriter/ui/formattablepage.ui:491
#, fuzzy
msgctxt "formattablepage|label53"
msgid "Text _direction"
msgstr "তেক্সতকী মাইকৈ"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:553
+#: sw/uiconfig/swriter/ui/formattablepage.ui:519
#, fuzzy
msgctxt "formattablepage|label44"
msgid "Properties "
@@ -10385,22 +10384,27 @@ msgctxt "headerfootermenu|insert_pagenumber"
msgid "Insert Page Number"
msgstr ""
-#: sw/uiconfig/swriter/ui/indentpage.ui:52
+#: sw/uiconfig/swriter/ui/headerfootermenu.ui:42
+msgctxt "headerfootermenu|insert_pagecount"
+msgid "Insert Page Count"
+msgstr ""
+
+#: sw/uiconfig/swriter/ui/indentpage.ui:57
msgctxt "indentpage|label1"
msgid "_Before section"
msgstr ""
-#: sw/uiconfig/swriter/ui/indentpage.ui:67
+#: sw/uiconfig/swriter/ui/indentpage.ui:71
msgctxt "indentpage|label3"
msgid "_After section"
msgstr ""
-#: sw/uiconfig/swriter/ui/indentpage.ui:113
+#: sw/uiconfig/swriter/ui/indentpage.ui:115
msgctxt "indentpage|label2"
msgid "Indent"
msgstr "ইন্দেন্ত"
-#: sw/uiconfig/swriter/ui/indentpage.ui:142
+#: sw/uiconfig/swriter/ui/indentpage.ui:155
msgctxt "indentpage|preview-atkobject"
msgid "Example"
msgstr "খুদম"
@@ -14204,7 +14208,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:68
msgctxt "optcompatpage|format"
-msgid "MS Word-compatible trailing blanks"
+msgid "Word-compatible trailing blanks"
msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:69
@@ -14214,7 +14218,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:70
msgctxt "optcompatpage|format"
-msgid "A database field (e.g., MailMerge) with empty value hides its paragraph"
+msgid "Hide paragraphs of database fields (e.g., mail merge) with an empty value"
msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:71
@@ -17150,138 +17154,138 @@ msgctxt "tableproperties|background"
msgid "Background"
msgstr "হৌরকফম"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:25
-#, fuzzy
-msgctxt "tabletextflowpage|liststore1"
-msgid "Horizontal"
-msgstr "মরাক ওইবা"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:29
-#, fuzzy
-msgctxt "tabletextflowpage|liststore1"
-msgid "Vertical"
-msgstr "ময়ুং ওইবা"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:33
-msgctxt "tabletextflowpage|liststore1"
-msgid "Use superordinate object settings"
-msgstr "সুপওৰ্দিনেত ওবজেক্ত সেতিস শিজিন্নৌ"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:47
-msgctxt "tabletextflowpage|liststore2"
-msgid "Top"
-msgstr "মথক"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:51
-#, fuzzy
-msgctxt "tabletextflowpage|liststore2"
-msgid "Centered"
-msgstr "ময়াই ওইরবা"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:55
-msgctxt "tabletextflowpage|liststore2"
-msgid "Bottom"
-msgstr "মখা"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:97
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:53
#, fuzzy
msgctxt "tabletextflowpage|break"
msgid "_Break"
msgstr "~থুগাইবা"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:112
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:68
#, fuzzy
msgctxt "tabletextflowpage|page"
msgid "_Page"
msgstr "পেজর"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:132
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:87
#, fuzzy
msgctxt "tabletextflowpage|column"
msgid "Col_umn"
msgstr "কলম"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:151
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:106
#, fuzzy
msgctxt "tabletextflowpage|before"
msgid "Be_fore"
msgstr "মমাং"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:171
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:125
#, fuzzy
msgctxt "tabletextflowpage|after"
msgid "_After"
msgstr "মতুং"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:203
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:158
#, fuzzy
msgctxt "tabletextflowpage|pagestyle"
msgid "With Page St_yle"
msgstr "লমায় মওং শেমদোক্লো"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:224
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:177
#, fuzzy
msgctxt "tabletextflowpage|pagenoft"
msgid "Page _number"
msgstr "লমাই মশিং"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:257
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:213
#, fuzzy
msgctxt "tabletextflowpage|pagestylelb-atkobject"
msgid "With Page Style"
msgstr "লমায় মওং শেমদোক্লো"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:274
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:230
msgctxt "tabletextflowpage|split"
msgid "Allow _table to split across pages and columns"
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:289
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:245
#, fuzzy
msgctxt "tabletextflowpage|splitrow"
msgid "Allow row to break a_cross pages and columns"
msgstr "লমায় অমসুং কলমশিংগী মরক্তা পরেং থুগাইবা য়াহল্লো"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:306
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:262
#, fuzzy
msgctxt "tabletextflowpage|keep"
msgid "_Keep with next paragraph"
msgstr "মথংগী পেরেগ্ৰাফকা লোয়ননা থম্মু"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:328
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:284
#, fuzzy
msgctxt "tabletextflowpage|label40"
msgid "Text _orientation"
msgstr "তেক্স ওরিযেন্তেসন"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:361
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:298
+#, fuzzy
+msgctxt "tabletextflowpage|liststore1"
+msgid "Horizontal"
+msgstr "মরাক ওইবা"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:299
+#, fuzzy
+msgctxt "tabletextflowpage|liststore1"
+msgid "Vertical"
+msgstr "ময়ুং ওইবা"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:300
+msgctxt "tabletextflowpage|liststore1"
+msgid "Use superordinate object settings"
+msgstr "সুপওৰ্দিনেত ওবজেক্ত সেতিস শিজিন্নৌ"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:321
#, fuzzy
msgctxt "tabletextflowpage|headline"
msgid "R_epeat heading"
msgstr "মিংথোল হল্লু"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:383
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:343
msgctxt "tabletextflowpage|label38"
msgid "The first "
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:396
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:356
#, fuzzy
msgctxt "tabletextflowpage|label39"
msgid "rows"
msgstr "পরেং"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:434
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:395
msgctxt "tabletextflowpage|label35"
msgid "Text Flow"
msgstr "তেক্স ফ্লো"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:467
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:428
msgctxt "tabletextflowpage|label41"
msgid "_Vertical alignment"
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:495
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:442
+msgctxt "tabletextflowpage|liststore2"
+msgid "Top"
+msgstr "মথক"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:443
+#, fuzzy
+msgctxt "tabletextflowpage|liststore2"
+msgid "Centered"
+msgstr "ময়াই ওইরবা"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:444
+msgctxt "tabletextflowpage|liststore2"
+msgid "Bottom"
+msgstr "মখা"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:460
msgctxt "tabletextflowpage|label36"
msgid "Alignment"
msgstr "পরিং চান্নহনবা"
@@ -18117,10 +18121,9 @@ msgid "Alphabetical Index"
msgstr ""
#: sw/uiconfig/swriter/ui/tocindexpage.ui:58
-#, fuzzy
msgctxt "tocindexpage|liststore1"
-msgid "Illustration Index"
-msgstr "খুদমগী ইন্দেক্স 1"
+msgid "Table of Figures"
+msgstr ""
#: sw/uiconfig/swriter/ui/tocindexpage.ui:62
msgctxt "tocindexpage|liststore1"
diff --git a/source/mni/writerperfect/messages.po b/source/mni/writerperfect/messages.po
index 1a8030a1b2d..dec13199471 100644
--- a/source/mni/writerperfect/messages.po
+++ b/source/mni/writerperfect/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-16 16:54+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+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"
@@ -65,100 +65,100 @@ msgctxt "exportepub|generalft"
msgid "General"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:122
+#: writerperfect/uiconfig/ui/exportepub.ui:121
#, fuzzy
msgctxt "exportepub|versionft"
msgid "Version:"
msgstr "ভর্সন:"
-#: writerperfect/uiconfig/ui/exportepub.ui:139
+#: writerperfect/uiconfig/ui/exportepub.ui:138
msgctxt "exportepub|epub3"
msgid "EPUB 3.0"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:140
+#: writerperfect/uiconfig/ui/exportepub.ui:139
msgctxt "exportepub|epub2"
msgid "EPUB 2.0"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:175
+#: writerperfect/uiconfig/ui/exportepub.ui:174
msgctxt "exportepub|splitft"
msgid "Split method:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:192
+#: writerperfect/uiconfig/ui/exportepub.ui:191
#, fuzzy
msgctxt "exportepub|splitpage"
msgid "Page break"
msgstr "লমাইগী অহাংবা"
-#: writerperfect/uiconfig/ui/exportepub.ui:193
+#: writerperfect/uiconfig/ui/exportepub.ui:192
#, fuzzy
msgctxt "exportepub|splitheading"
msgid "Heading"
msgstr "মকোক্কী মমিং"
-#: writerperfect/uiconfig/ui/exportepub.ui:228
+#: writerperfect/uiconfig/ui/exportepub.ui:227
msgctxt "exportepub|layoutft"
msgid "Layout method:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:245
+#: writerperfect/uiconfig/ui/exportepub.ui:244
msgctxt "exportepub|layoutreflowable"
msgid "Reflowable"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:246
+#: writerperfect/uiconfig/ui/exportepub.ui:245
msgctxt "exportepub|layoutfixed"
msgid "Fixed"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:281
+#: writerperfect/uiconfig/ui/exportepub.ui:280
msgctxt "exportepub|coverimageft"
msgid "Custom cover image:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:311
+#: writerperfect/uiconfig/ui/exportepub.ui:310
msgctxt "exportepub|coverbutton"
msgid "Browse..."
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:355
+#: writerperfect/uiconfig/ui/exportepub.ui:354
msgctxt "exportepub|mediadirft"
msgid "Custom media directory:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:385
+#: writerperfect/uiconfig/ui/exportepub.ui:384
msgctxt "exportepub|mediabutton"
msgid "Browse..."
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:429
+#: writerperfect/uiconfig/ui/exportepub.ui:428
msgctxt "exportepub|metadataft"
msgid "Metadata"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:470
+#: writerperfect/uiconfig/ui/exportepub.ui:468
msgctxt "exportepub|identifierft"
msgid "Identifier:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:485
+#: writerperfect/uiconfig/ui/exportepub.ui:483
msgctxt "exportepub|titleft"
msgid "Title:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:511
+#: writerperfect/uiconfig/ui/exportepub.ui:509
msgctxt "exportepub|authorft"
msgid "Author:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:537
+#: writerperfect/uiconfig/ui/exportepub.ui:535
msgctxt "exportepub|languageft"
msgid "Language:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:563
+#: writerperfect/uiconfig/ui/exportepub.ui:561
msgctxt "exportepub|dateft"
msgid "Date:"
msgstr ""
diff --git a/source/mr/cui/messages.po b/source/mr/cui/messages.po
index 182e731e7c0..9432c4d695e 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+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"
@@ -10332,97 +10332,97 @@ msgctxt "positionsizedialog|PositionAndSizeDialog"
msgid "Position and Size"
msgstr "ठिकाण आणि आकार"
-#: cui/uiconfig/ui/positionsizedialog.ui:107
+#: cui/uiconfig/ui/positionsizedialog.ui:136
msgctxt "positionsizedialog|RID_SVXPAGE_POSITION_SIZE"
msgid "Position and Size"
msgstr "ठिकाण आणि आकार"
-#: cui/uiconfig/ui/positionsizedialog.ui:129
+#: cui/uiconfig/ui/positionsizedialog.ui:182
msgctxt "positionsizedialog|RID_SVXPAGE_SWPOSSIZE"
msgid "Position and Size"
msgstr "ठिकाण आणि आकार"
-#: cui/uiconfig/ui/positionsizedialog.ui:152
+#: cui/uiconfig/ui/positionsizedialog.ui:229
msgctxt "positionsizedialog|RID_SVXPAGE_ANGLE"
msgid "Rotation"
msgstr "रोटेशन"
-#: cui/uiconfig/ui/positionsizedialog.ui:175
+#: cui/uiconfig/ui/positionsizedialog.ui:276
msgctxt "positionsizedialog|RID_SVXPAGE_SLANT"
msgid "Slant & Corner Radius"
msgstr "उतार आणि कोपऱ्याचे त्रिज्या"
-#: cui/uiconfig/ui/possizetabpage.ui:40
+#: cui/uiconfig/ui/possizetabpage.ui:61
msgctxt "possizetabpage|FT_POS_X"
msgid "Position _X:"
msgstr "ठिकाण (_X):"
-#: cui/uiconfig/ui/possizetabpage.ui:56
+#: cui/uiconfig/ui/possizetabpage.ui:75
msgctxt "possizetabpage|FT_POS_Y"
msgid "Position _Y:"
msgstr "ठिकाण Y (_Y):"
-#: cui/uiconfig/ui/possizetabpage.ui:110
+#: cui/uiconfig/ui/possizetabpage.ui:128
msgctxt "possizetabpage|FT_POSREFERENCE"
msgid "_Base point:"
msgstr "बेस पॉइंट (_B):"
-#: cui/uiconfig/ui/possizetabpage.ui:148
+#: cui/uiconfig/ui/possizetabpage.ui:182
msgctxt "possizetabpage|label1"
msgid "Position"
msgstr "ठिकाण"
-#: cui/uiconfig/ui/possizetabpage.ui:190
+#: cui/uiconfig/ui/possizetabpage.ui:224
msgctxt "possizetabpage|FT_WIDTH"
msgid "Wi_dth:"
msgstr "रूंदी (_d):"
-#: cui/uiconfig/ui/possizetabpage.ui:206
+#: cui/uiconfig/ui/possizetabpage.ui:238
msgctxt "possizetabpage|FT_HEIGHT"
msgid "H_eight:"
msgstr "ऊंची (_e):"
-#: cui/uiconfig/ui/possizetabpage.ui:247
+#: cui/uiconfig/ui/possizetabpage.ui:276
msgctxt "possizetabpage|CBX_SCALE"
msgid "_Keep ratio"
msgstr " प्रमाण जपवा (_K)"
-#: cui/uiconfig/ui/possizetabpage.ui:279
+#: cui/uiconfig/ui/possizetabpage.ui:307
msgctxt "possizetabpage|FT_SIZEREFERENCE"
msgid "Base _point:"
msgstr "बेस पॉइंट (_P):"
-#: cui/uiconfig/ui/possizetabpage.ui:317
+#: cui/uiconfig/ui/possizetabpage.ui:361
msgctxt "possizetabpage|label2"
msgid "Size"
msgstr "आकार"
-#: cui/uiconfig/ui/possizetabpage.ui:356
+#: cui/uiconfig/ui/possizetabpage.ui:401
msgctxt "possizetabpage|TSB_POSPROTECT"
msgid "Positio_n"
msgstr "ठिकाण (_n)"
-#: cui/uiconfig/ui/possizetabpage.ui:373
+#: cui/uiconfig/ui/possizetabpage.ui:418
msgctxt "possizetabpage|TSB_SIZEPROTECT"
msgid "_Size"
msgstr "आकार (_S)"
-#: cui/uiconfig/ui/possizetabpage.ui:397
+#: cui/uiconfig/ui/possizetabpage.ui:441
msgctxt "possizetabpage|label3"
msgid "Protect"
msgstr "सुरक्षा"
-#: cui/uiconfig/ui/possizetabpage.ui:430
+#: cui/uiconfig/ui/possizetabpage.ui:475
msgctxt "possizetabpage|TSB_AUTOGROW_WIDTH"
msgid "_Fit width to text"
msgstr "मजकूरला रूंदीत बसवा (_F)"
-#: cui/uiconfig/ui/possizetabpage.ui:447
+#: cui/uiconfig/ui/possizetabpage.ui:492
msgctxt "possizetabpage|TSB_AUTOGROW_HEIGHT"
msgid "Fit _height to text"
msgstr "मजकूरला ऊंचीत बसवा (_h)"
-#: cui/uiconfig/ui/possizetabpage.ui:471
+#: cui/uiconfig/ui/possizetabpage.ui:515
msgctxt "possizetabpage|label4"
msgid "Adapt"
msgstr "अनुवाद"
@@ -10633,51 +10633,51 @@ msgctxt "recordnumberdialog|label2"
msgid "go to record"
msgstr "रेकॉर्ड करा"
-#: cui/uiconfig/ui/rotationtabpage.ui:52
+#: cui/uiconfig/ui/rotationtabpage.ui:56
msgctxt "rotationtabpage|FT_POS_X"
msgid "Position _X:"
msgstr "ठिकाण (_X):"
-#: cui/uiconfig/ui/rotationtabpage.ui:66
+#: cui/uiconfig/ui/rotationtabpage.ui:70
msgctxt "rotationtabpage|FT_POS_Y"
msgid "Position _Y:"
msgstr "ठिकाण Y (_Y):"
-#: cui/uiconfig/ui/rotationtabpage.ui:116
+#: cui/uiconfig/ui/rotationtabpage.ui:123
#, fuzzy
msgctxt "rotationtabpage|FT_POSPRESETS"
msgid "_Default settings:"
msgstr "पूर्वनिर्धारित सेटिंग्ज (_D)"
-#: cui/uiconfig/ui/rotationtabpage.ui:130
+#: cui/uiconfig/ui/rotationtabpage.ui:151
msgctxt "rotationtabpage|CTL_RECT|tooltip_text"
msgid "Rotation point"
msgstr "रोटेशन पॉइंट"
-#: cui/uiconfig/ui/rotationtabpage.ui:155
+#: cui/uiconfig/ui/rotationtabpage.ui:178
#, fuzzy
msgctxt "rotationtabpage|label1"
msgid "Pivot Point"
msgstr "पिवोट पॉइंट"
-#: cui/uiconfig/ui/rotationtabpage.ui:197
+#: cui/uiconfig/ui/rotationtabpage.ui:220
#, fuzzy
msgctxt "rotationtabpage|FT_ANGLE"
msgid "_Angle:"
msgstr "कोन"
-#: cui/uiconfig/ui/rotationtabpage.ui:238
+#: cui/uiconfig/ui/rotationtabpage.ui:263
#, fuzzy
msgctxt "rotationtabpage|FT_ANGLEPRESETS"
msgid "Default _settings:"
msgstr "पूर्वनिर्धारित सेटिंग्ज (_s)"
-#: cui/uiconfig/ui/rotationtabpage.ui:252
+#: cui/uiconfig/ui/rotationtabpage.ui:287
msgctxt "rotationtabpage|CTL_ANGLE|tooltip_text"
msgid "Rotation Angle"
msgstr "रोटेशन कोन"
-#: cui/uiconfig/ui/rotationtabpage.ui:277
+#: cui/uiconfig/ui/rotationtabpage.ui:314
msgctxt "rotationtabpage|label2"
msgid "Rotation Angle"
msgstr "रोटेशन कोन"
@@ -11068,55 +11068,55 @@ msgctxt "similaritysearchdialog|relaxbox"
msgid "_Combine"
msgstr "एकत्रीत करा (_C)"
-#: cui/uiconfig/ui/slantcornertabpage.ui:50
+#: cui/uiconfig/ui/slantcornertabpage.ui:70
msgctxt "slantcornertabpage|label5"
msgid "_X:"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:88
+#: cui/uiconfig/ui/slantcornertabpage.ui:110
msgctxt "slantcornertabpage|label6"
msgid "_Y:"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:125
+#: cui/uiconfig/ui/slantcornertabpage.ui:149
msgctxt "slantcornertabpage|label3"
msgid "Control Point 1"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:159
+#: cui/uiconfig/ui/slantcornertabpage.ui:183
#, fuzzy
msgctxt "slantcornertabpage|FT_RADIUS"
msgid "_Radius:"
msgstr "त्रिज्या (_R)"
-#: cui/uiconfig/ui/slantcornertabpage.ui:189
+#: cui/uiconfig/ui/slantcornertabpage.ui:214
#, fuzzy
msgctxt "slantcornertabpage|label1"
msgid "Corner Radius"
msgstr "कोपरा त्रिज्या"
-#: cui/uiconfig/ui/slantcornertabpage.ui:223
+#: cui/uiconfig/ui/slantcornertabpage.ui:248
#, fuzzy
msgctxt "slantcornertabpage|FT_ANGLE"
msgid "_Angle:"
msgstr "कोन"
-#: cui/uiconfig/ui/slantcornertabpage.ui:253
+#: cui/uiconfig/ui/slantcornertabpage.ui:279
msgctxt "slantcornertabpage|label2"
msgid "Slant"
msgstr "उतार"
-#: cui/uiconfig/ui/slantcornertabpage.ui:294
+#: cui/uiconfig/ui/slantcornertabpage.ui:320
msgctxt "slantcornertabpage|label4"
msgid "_X:"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:332
+#: cui/uiconfig/ui/slantcornertabpage.ui:360
msgctxt "slantcornertabpage|label7"
msgid "_Y:"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:369
+#: cui/uiconfig/ui/slantcornertabpage.ui:399
msgctxt "slantcornertabpage|label8"
msgid "Control Point 2"
msgstr ""
@@ -11409,118 +11409,118 @@ msgctxt "storedwebconnectiondialog|change"
msgid "_Change Password..."
msgstr "पासवर्ड बदला (_C)..."
-#: cui/uiconfig/ui/swpossizepage.ui:74
+#: cui/uiconfig/ui/swpossizepage.ui:85
msgctxt "swpossizepage|widthft"
msgid "_Width:"
msgstr "रूंदी (_W):"
-#: cui/uiconfig/ui/swpossizepage.ui:111
+#: cui/uiconfig/ui/swpossizepage.ui:123
msgctxt "swpossizepage|heightft"
msgid "H_eight:"
msgstr "ऊंची (_e):"
-#: cui/uiconfig/ui/swpossizepage.ui:128
+#: cui/uiconfig/ui/swpossizepage.ui:141
msgctxt "swpossizepage|ratio"
msgid "_Keep ratio"
msgstr " प्रमाण जपवा (_K)"
-#: cui/uiconfig/ui/swpossizepage.ui:149
+#: cui/uiconfig/ui/swpossizepage.ui:162
msgctxt "swpossizepage|label2"
msgid "Size"
msgstr "आकार"
-#: cui/uiconfig/ui/swpossizepage.ui:205
+#: cui/uiconfig/ui/swpossizepage.ui:218
msgctxt "swpossizepage|topage"
msgid "To _page"
msgstr "पृष्ठ करिता (_p)"
-#: cui/uiconfig/ui/swpossizepage.ui:222
+#: cui/uiconfig/ui/swpossizepage.ui:234
msgctxt "swpossizepage|topara"
msgid "To paragrap_h"
msgstr "परिच्छेद करिता (_h)"
-#: cui/uiconfig/ui/swpossizepage.ui:238
+#: cui/uiconfig/ui/swpossizepage.ui:250
msgctxt "swpossizepage|tochar"
msgid "To cha_racter"
msgstr "अक्षर करिता (_r)"
-#: cui/uiconfig/ui/swpossizepage.ui:254
+#: cui/uiconfig/ui/swpossizepage.ui:266
msgctxt "swpossizepage|aschar"
msgid "_As character"
msgstr "अक्षर नुरूप (_A)"
-#: cui/uiconfig/ui/swpossizepage.ui:270
+#: cui/uiconfig/ui/swpossizepage.ui:282
msgctxt "swpossizepage|toframe"
msgid "To _frame"
msgstr "फ्रेम करिता (_f)"
-#: cui/uiconfig/ui/swpossizepage.ui:292
+#: cui/uiconfig/ui/swpossizepage.ui:304
msgctxt "swpossizepage|label1"
msgid "Anchor"
msgstr "अँकर"
-#: cui/uiconfig/ui/swpossizepage.ui:333
+#: cui/uiconfig/ui/swpossizepage.ui:344
#, fuzzy
msgctxt "swpossizepage|horiposft"
msgid "Hori_zontal:"
msgstr "आडवे (_z)"
-#: cui/uiconfig/ui/swpossizepage.ui:347
+#: cui/uiconfig/ui/swpossizepage.ui:358
#, fuzzy
msgctxt "swpossizepage|horibyft"
msgid "b_y:"
msgstr "मार्फत (_y)"
-#: cui/uiconfig/ui/swpossizepage.ui:361
+#: cui/uiconfig/ui/swpossizepage.ui:372
#, fuzzy
msgctxt "swpossizepage|vertbyft"
msgid "_by:"
msgstr "मार्फत (_B)"
-#: cui/uiconfig/ui/swpossizepage.ui:375
+#: cui/uiconfig/ui/swpossizepage.ui:386
#, fuzzy
msgctxt "swpossizepage|horitoft"
msgid "_to:"
msgstr "करिता (_t)"
-#: cui/uiconfig/ui/swpossizepage.ui:421
+#: cui/uiconfig/ui/swpossizepage.ui:433
#, fuzzy
msgctxt "swpossizepage|vertposft"
msgid "_Vertical:"
msgstr "उभे (_V)"
-#: cui/uiconfig/ui/swpossizepage.ui:457
+#: cui/uiconfig/ui/swpossizepage.ui:470
#, fuzzy
msgctxt "swpossizepage|verttoft"
msgid "t_o:"
msgstr "करिता (_o)"
-#: cui/uiconfig/ui/swpossizepage.ui:478
+#: cui/uiconfig/ui/swpossizepage.ui:492
msgctxt "swpossizepage|mirror"
msgid "_Mirror on even pages"
msgstr "सम पृष्ठांवरील मिरर (_M)"
-#: cui/uiconfig/ui/swpossizepage.ui:495
+#: cui/uiconfig/ui/swpossizepage.ui:509
msgctxt "swpossizepage|followtextflow"
msgid "Follow te_xt flow"
msgstr "मजकूर प्रवाह अनुकरण करा (_x)"
-#: cui/uiconfig/ui/swpossizepage.ui:518
+#: cui/uiconfig/ui/swpossizepage.ui:532
msgctxt "swpossizepage|label11"
msgid "Position"
msgstr "ठिकाण"
-#: cui/uiconfig/ui/swpossizepage.ui:549
+#: cui/uiconfig/ui/swpossizepage.ui:563
msgctxt "swpossizepage|pos"
msgid "Positio_n"
msgstr "ठिकाण (_n)"
-#: cui/uiconfig/ui/swpossizepage.ui:565
+#: cui/uiconfig/ui/swpossizepage.ui:579
msgctxt "swpossizepage|size"
msgid "_Size"
msgstr "आकार (_S)"
-#: cui/uiconfig/ui/swpossizepage.ui:587
+#: cui/uiconfig/ui/swpossizepage.ui:601
msgctxt "swpossizepage|label3"
msgid "Protect"
msgstr "सुरक्षा"
@@ -11716,12 +11716,12 @@ msgctxt "textattrtabpage|label2"
msgid "Spacing to Borders"
msgstr "किनाऱ्यांकरिता मोकळी जागा"
-#: cui/uiconfig/ui/textattrtabpage.ui:425
+#: cui/uiconfig/ui/textattrtabpage.ui:423
msgctxt "textattrtabpage|TSB_FULL_WIDTH"
msgid "Full _width"
msgstr "संपूर्ण रूंदी (_w)"
-#: cui/uiconfig/ui/textattrtabpage.ui:448
+#: cui/uiconfig/ui/textattrtabpage.ui:446
#, fuzzy
msgctxt "textattrtabpage|label3"
msgid "Text Anchor"
diff --git a/source/mr/filter/source/config/fragments/filters.po b/source/mr/filter/source/config/fragments/filters.po
index 61aadcd1242..e25907c2fb1 100644
--- a/source/mr/filter/source/config/fragments/filters.po
+++ b/source/mr/filter/source/config/fragments/filters.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: 2018-05-16 16:54+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2016-03-11 14:18+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Marathi <kde-i18n-doc@kde.org>\n"
@@ -465,8 +465,8 @@ msgctxt ""
"MS Word 2003 XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Word 2003 XML"
-msgstr "Microsoft वर्ड् 2003 XML"
+msgid "Word 2003 XML"
+msgstr ""
#: MS_Word_2007_XML.xcu
msgctxt ""
@@ -1293,7 +1293,7 @@ msgctxt ""
"Calc MS Excel 2007 VBA XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Excel 2007-2016 XML (macro enabled)"
+msgid "Excel 2007–2019 (macro-enabled)"
msgstr ""
#: calc_MS_Excel_2007_XML.xcu
diff --git a/source/mr/filter/source/config/fragments/types.po b/source/mr/filter/source/config/fragments/types.po
index b396c148c44..d0ab8c284c6 100644
--- a/source/mr/filter/source/config/fragments/types.po
+++ b/source/mr/filter/source/config/fragments/types.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: 2018-05-08 15:11+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2015-11-11 22:24+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Marathi <kde-i18n-doc@kde.org>\n"
@@ -295,8 +295,8 @@ msgctxt ""
"writer_MS_Word_2003_XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Word 2003 XML"
-msgstr "मायक्रोसॉफ्ट वर्ड 2003 XML"
+msgid "Word 2003 XML"
+msgstr ""
#: writer_MS_Word_2007_XML.xcu
msgctxt ""
diff --git a/source/mr/fpicker/messages.po b/source/mr/fpicker/messages.po
index 26614b720f6..3778cfff6eb 100644
--- a/source/mr/fpicker/messages.po
+++ b/source/mr/fpicker/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+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"
@@ -280,13 +280,13 @@ msgstr ""
#: fpicker/uiconfig/ui/foldernamedialog.ui:8
msgctxt "foldernamedialog|FolderNameDialog"
-msgid "Folder Name ?"
-msgstr "फोल्डर नाव ?"
+msgid "Folder Name"
+msgstr ""
#: fpicker/uiconfig/ui/foldernamedialog.ui:91
msgctxt "foldernamedialog|label2"
-msgid "Na_me"
-msgstr "नाव (_m)"
+msgid "Na_me:"
+msgstr ""
#: fpicker/uiconfig/ui/foldernamedialog.ui:122
#, fuzzy
diff --git a/source/mr/officecfg/registry/data/org/openoffice/Office/UI.po b/source/mr/officecfg/registry/data/org/openoffice/Office/UI.po
index 1fd849e69e0..174837edbd5 100644
--- a/source/mr/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/mr/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-22 13:17+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2016-07-05 03:26+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Marathi <kde-i18n-doc@kde.org>\n"
@@ -26954,8 +26954,8 @@ msgctxt ""
"..WriterCommands.UserInterface.Commands..uno:TextAttributes\n"
"Label\n"
"value.text"
-msgid "Text Attributes"
-msgstr "मजकूर गुणधर्म"
+msgid "Text Attributes..."
+msgstr ""
#: WriterCommands.xcu
msgctxt ""
diff --git a/source/mr/readlicense_oo/docs.po b/source/mr/readlicense_oo/docs.po
index a9d84593f02..2c04331612d 100644
--- a/source/mr/readlicense_oo/docs.po
+++ b/source/mr/readlicense_oo/docs.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: 2018-04-17 15:54+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2016-03-11 17:04+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: Marathi <kde-i18n-doc@kde.org>\n"
@@ -117,7 +117,7 @@ msgctxt ""
"readme.xrm\n"
"macxiOSX\n"
"readmeitem.text"
-msgid "MacOSX 10.8 (Mountain Lion) or higher"
+msgid "MacOSX 10.9 (Mavericks) or higher"
msgstr ""
#: readme.xrm
diff --git a/source/mr/sc/messages.po b/source/mr/sc/messages.po
index b1cc50781cf..ebfaabf56b9 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-12 14:40+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"
@@ -1874,16 +1874,21 @@ msgid "Nested arrays are not supported."
msgstr "नेस्टेड अर्रे समूहाने आधार दिलेला नाही."
#: sc/inc/globstr.hrc:390
+msgctxt "STR_ERR_LONG_BAD_ARRAY_CONTENT"
+msgid "Unsupported inline array content."
+msgstr ""
+
+#: sc/inc/globstr.hrc:391
msgctxt "STR_UNDO_TEXTTOCOLUMNS"
msgid "Text to Columns"
msgstr "स्तंभातील मजकूर"
-#: sc/inc/globstr.hrc:391
+#: sc/inc/globstr.hrc:392
msgctxt "STR_DOC_UPDATED"
msgid "Your spreadsheet has been updated with changes saved by other users."
msgstr "आपले स्प्रेडशीटइतर वापरकर्त्याने जतन केलेल्या बदलानी अद्ययावत करण्यात आले आहे."
-#: sc/inc/globstr.hrc:392
+#: sc/inc/globstr.hrc:393
msgctxt "STR_DOC_WILLBESAVED"
msgid ""
"The spreadsheet must be saved now to activate sharing mode.\n"
@@ -1894,7 +1899,7 @@ msgstr ""
"\n"
"आपणास चालू ठेवायचे आहे का?"
-#: sc/inc/globstr.hrc:393
+#: sc/inc/globstr.hrc:394
msgctxt "STR_DOC_WILLNOTBESAVED"
msgid ""
"Already resolved merge conflicts will be lost and your changes to the shared spreadsheet will not be saved.\n"
@@ -1905,7 +1910,7 @@ msgstr ""
"\n"
"तुम्हाला पुढे जायचे?"
-#: sc/inc/globstr.hrc:394
+#: sc/inc/globstr.hrc:395
msgctxt "STR_DOC_DISABLESHARED"
msgid ""
"Disabling shared mode of a spreadsheet hinders all other users of the shared spreadsheet to merge back their work.\n"
@@ -1916,7 +1921,7 @@ msgstr ""
"\n"
"तुम्हाला पुढे जायचे?"
-#: sc/inc/globstr.hrc:395
+#: sc/inc/globstr.hrc:396
msgctxt "STR_DOC_NOLONGERSHARED"
msgid ""
"This spreadsheet is no longer in shared mode.\n"
@@ -1927,7 +1932,7 @@ msgstr ""
"\n"
"धारिकेस स्वतंत्र ठेवण्यासाठी आपली स्प्रेडशीट जतन करा आणि भागीदारीच्या स्प्रेडशीटकडे आपल्या बदलांना मॅन्युएली मिसळा."
-#: sc/inc/globstr.hrc:396
+#: sc/inc/globstr.hrc:397
msgctxt "STR_FILE_LOCKED_TRY_LATER"
msgid ""
"The shared spreadsheet file is locked due to a merge in progress by user: '%1'\n"
@@ -1938,7 +1943,7 @@ msgstr ""
"\n"
"सुरक्षाबंद असलेली धारिकेची भागीदारी अवस्था असक्षम करू शकत नाही. नंतर पुन्हा प्रयत्न करा."
-#: sc/inc/globstr.hrc:397
+#: sc/inc/globstr.hrc:398
msgctxt "STR_FILE_LOCKED_SAVE_LATER"
msgid ""
"The shared spreadsheet file is locked due to a merge in progress by user: '%1'\n"
@@ -1949,147 +1954,147 @@ msgstr ""
"\n"
"आपल्या बदलांना जतन करण्यासाठी नंतर पुन्हा प्रयत्न करा."
-#: sc/inc/globstr.hrc:398
+#: sc/inc/globstr.hrc:399
msgctxt "STR_UNKNOWN_USER"
msgid "Unknown User"
msgstr "अपरिचीत वापरकर्ता"
-#: sc/inc/globstr.hrc:399
+#: sc/inc/globstr.hrc:400
msgctxt "STR_SHAPE_AUTOSHAPE"
msgid "AutoShape"
msgstr "स्वयंआकार"
-#: sc/inc/globstr.hrc:400
+#: sc/inc/globstr.hrc:401
msgctxt "STR_SHAPE_RECTANGLE"
msgid "Rectangle"
msgstr "आयत"
-#: sc/inc/globstr.hrc:401
+#: sc/inc/globstr.hrc:402
msgctxt "STR_SHAPE_LINE"
msgid "Line"
msgstr "ओळ"
-#: sc/inc/globstr.hrc:402
+#: sc/inc/globstr.hrc:403
msgctxt "STR_SHAPE_OVAL"
msgid "Oval"
msgstr "लंबगोल"
-#: sc/inc/globstr.hrc:403
+#: sc/inc/globstr.hrc:404
msgctxt "STR_FORM_BUTTON"
msgid "Button"
msgstr "कळ"
-#: sc/inc/globstr.hrc:404
+#: sc/inc/globstr.hrc:405
msgctxt "STR_FORM_CHECKBOX"
msgid "Check Box"
msgstr "चेक बाक्स्"
-#: sc/inc/globstr.hrc:405
+#: sc/inc/globstr.hrc:406
msgctxt "STR_FORM_OPTIONBUTTON"
msgid "Option Button"
msgstr "पर्याय बटन"
-#: sc/inc/globstr.hrc:406
+#: sc/inc/globstr.hrc:407
msgctxt "STR_FORM_LABEL"
msgid "Label"
msgstr "लेबल"
-#: sc/inc/globstr.hrc:407
+#: sc/inc/globstr.hrc:408
msgctxt "STR_FORM_LISTBOX"
msgid "List Box"
msgstr "सूची पेटी"
-#: sc/inc/globstr.hrc:408
+#: sc/inc/globstr.hrc:409
msgctxt "STR_FORM_GROUPBOX"
msgid "Group Box"
msgstr "गट पेटी"
-#: sc/inc/globstr.hrc:409
+#: sc/inc/globstr.hrc:410
msgctxt "STR_FORM_DROPDOWN"
msgid "Drop Down"
msgstr "ड्रॉप डाऊन"
-#: sc/inc/globstr.hrc:410
+#: sc/inc/globstr.hrc:411
msgctxt "STR_FORM_SPINNER"
msgid "Spinner"
msgstr "स्पिनर"
-#: sc/inc/globstr.hrc:411
+#: sc/inc/globstr.hrc:412
msgctxt "STR_FORM_SCROLLBAR"
msgid "Scroll Bar"
msgstr "स्क्रोल पट्टी"
-#: sc/inc/globstr.hrc:412
+#: sc/inc/globstr.hrc:413
msgctxt "STR_STYLE_FAMILY_CELL"
msgid "Cell Styles"
msgstr "कप्पा शैली"
-#: sc/inc/globstr.hrc:413
+#: sc/inc/globstr.hrc:414
msgctxt "STR_STYLE_FAMILY_PAGE"
msgid "Page Styles"
msgstr "पान शैली"
-#: sc/inc/globstr.hrc:414
+#: sc/inc/globstr.hrc:415
msgctxt "STR_ERR_DATAPILOTSOURCE"
msgid "Pivot table source data is invalid."
msgstr "पिवोट तक्ता स्त्रोत डाटा अवैध आहे."
-#: sc/inc/globstr.hrc:415
+#: sc/inc/globstr.hrc:416
msgctxt "STR_OPTIONS_WARN_SEPARATORS"
msgid "Because the current formula separator settings conflict with the locale, the formula separators have been reset to their default values."
msgstr "सध्याचे फॉर्म्युला सेपरेटर सेटिंग्ज लोकलसह मतभेदीय असल्यामुळे, सूत्र फॉर्म्युला सेपरेटर्स्ला पूर्वनिर्धारित मूल्यांकरीता मूळस्थितीत आणले आहे."
-#: sc/inc/globstr.hrc:416
+#: sc/inc/globstr.hrc:417
msgctxt "STR_UNDO_INSERT_CURRENT_DATE"
msgid "Insert Current Date"
msgstr "सध्याचे दिनांक अंतर्भुत करा"
-#: sc/inc/globstr.hrc:417
+#: sc/inc/globstr.hrc:418
msgctxt "STR_UNDO_INSERT_CURRENT_TIME"
msgid "Insert Current Time"
msgstr "सध्याची वेळ अंतर्भुत करा"
-#: sc/inc/globstr.hrc:418
+#: sc/inc/globstr.hrc:419
msgctxt "STR_MANAGE_NAMES"
msgid "Manage Names..."
msgstr "नावे व्यवस्थापीत करा..."
-#: sc/inc/globstr.hrc:419
+#: sc/inc/globstr.hrc:420
msgctxt "STR_HEADER_NAME"
msgid "Name"
msgstr "नाव"
-#: sc/inc/globstr.hrc:420
+#: sc/inc/globstr.hrc:421
msgctxt "STR_HEADER_RANGE_OR_EXPR"
msgid "Range or formula expression"
msgstr ""
-#: sc/inc/globstr.hrc:421
+#: sc/inc/globstr.hrc:422
msgctxt "STR_HEADER_SCOPE"
msgid "Scope"
msgstr "व्याप्ति"
-#: sc/inc/globstr.hrc:422
+#: sc/inc/globstr.hrc:423
msgctxt "STR_MULTI_SELECT"
msgid "(multiple)"
msgstr "(बहु)"
-#: sc/inc/globstr.hrc:423
+#: sc/inc/globstr.hrc:424
msgctxt "STR_GLOBAL_SCOPE"
msgid "Document (Global)"
msgstr "दस्तऐवज (ग्लोबल)"
-#: sc/inc/globstr.hrc:424
+#: sc/inc/globstr.hrc:425
msgctxt "STR_ERR_NAME_EXISTS"
msgid "Invalid name. Already in use for the selected scope."
msgstr "अवैध नाव. निवडलेल्या व्याप्तिकरीता आधीपासूनच वापरले जाते."
-#: sc/inc/globstr.hrc:425
+#: sc/inc/globstr.hrc:426
msgctxt "STR_ERR_NAME_INVALID"
msgid "Invalid name. Only use letters, numbers and underscore."
msgstr "अवैध नाव. फक्त अक्षरे, संख्या व अंडरस्कोरचा वापर करा."
-#: sc/inc/globstr.hrc:426
+#: sc/inc/globstr.hrc:427
msgctxt "STR_UNSAVED_EXT_REF"
msgid ""
"This Document contains external references to unsaved documents.\n"
@@ -2100,218 +2105,218 @@ msgstr ""
"\n"
"तुम्हाल पुढे जायचे?"
-#: sc/inc/globstr.hrc:427
+#: sc/inc/globstr.hrc:428
msgctxt "STR_CLOSE_WITH_UNSAVED_REFS"
msgid "This Document is referenced by another document and not yet saved. Closing it without saving will result in data loss."
msgstr "हे दस्तऐवज इतर दस्तऐवजतर्फे संदर्भ केले आहे व त्यास अजूनही साठवले गेले नाही. न साठवताच बंद केल्याने डाटा गमवाल."
-#: sc/inc/globstr.hrc:428
+#: sc/inc/globstr.hrc:429
msgctxt "STR_HEADER_RANGE"
msgid "Range"
msgstr "व्याप्ति"
-#: sc/inc/globstr.hrc:429
+#: sc/inc/globstr.hrc:430
msgctxt "STR_HEADER_COND"
msgid "First Condition"
msgstr "पहिली अट"
-#: sc/inc/globstr.hrc:430
+#: sc/inc/globstr.hrc:431
msgctxt "STR_COND_CONDITION"
msgid "Cell value is"
msgstr "कप्पा मूल्य आहे"
-#: sc/inc/globstr.hrc:431
+#: sc/inc/globstr.hrc:432
msgctxt "STR_COND_COLORSCALE"
msgid "ColorScale"
msgstr "रंगस्केल"
-#: sc/inc/globstr.hrc:432
+#: sc/inc/globstr.hrc:433
msgctxt "STR_COND_DATABAR"
msgid "DataBar"
msgstr "डाटापट्टी"
-#: sc/inc/globstr.hrc:433
+#: sc/inc/globstr.hrc:434
msgctxt "STR_COND_ICONSET"
msgid "IconSet"
msgstr "ऑयकॉनसेट"
-#: sc/inc/globstr.hrc:434
+#: sc/inc/globstr.hrc:435
msgctxt "STR_COND_BETWEEN"
msgid "between"
msgstr "मध्ये"
-#: sc/inc/globstr.hrc:435
+#: sc/inc/globstr.hrc:436
msgctxt "STR_COND_NOTBETWEEN"
msgid "not between"
msgstr "मध्ये नाही"
-#: sc/inc/globstr.hrc:436
+#: sc/inc/globstr.hrc:437
msgctxt "STR_COND_UNIQUE"
msgid "unique"
msgstr "एकमेव"
-#: sc/inc/globstr.hrc:437
+#: sc/inc/globstr.hrc:438
msgctxt "STR_COND_DUPLICATE"
msgid "duplicate"
msgstr "हुबेहुब"
-#: sc/inc/globstr.hrc:438
+#: sc/inc/globstr.hrc:439
msgctxt "STR_COND_FORMULA"
msgid "Formula is"
msgstr "सूत्र आहे"
-#: sc/inc/globstr.hrc:439
+#: sc/inc/globstr.hrc:440
msgctxt "STR_COND_TOP10"
msgid "Top Elements"
msgstr "टॉप एलिमेंट्स"
-#: sc/inc/globstr.hrc:440
+#: sc/inc/globstr.hrc:441
msgctxt "STR_COND_BOTTOM10"
msgid "Bottom Elements"
msgstr "बॉटम एलिमेंट्स"
-#: sc/inc/globstr.hrc:441
+#: sc/inc/globstr.hrc:442
msgctxt "STR_COND_TOP_PERCENT"
msgid "Top Percent"
msgstr "सर्वोत्म टक्के"
-#: sc/inc/globstr.hrc:442
+#: sc/inc/globstr.hrc:443
msgctxt "STR_COND_DATE"
msgid "Date is"
msgstr "दिनांक आहे"
-#: sc/inc/globstr.hrc:443
+#: sc/inc/globstr.hrc:444
msgctxt "STR_COND_BOTTOM_PERCENT"
msgid "Bottom Percent"
msgstr "तळ टक्के"
-#: sc/inc/globstr.hrc:444
+#: sc/inc/globstr.hrc:445
msgctxt "STR_COND_ABOVE_AVERAGE"
msgid "Above Average"
msgstr "वरील सरासरी"
-#: sc/inc/globstr.hrc:445
+#: sc/inc/globstr.hrc:446
msgctxt "STR_COND_BELOW_AVERAGE"
msgid "Below Average"
msgstr "खालील सरासरी"
-#: sc/inc/globstr.hrc:446
+#: sc/inc/globstr.hrc:447
msgctxt "STR_COND_ABOVE_EQUAL_AVERAGE"
msgid "Above or equal Average"
msgstr "वरील किंवा समांतर सरासरी"
-#: sc/inc/globstr.hrc:447
+#: sc/inc/globstr.hrc:448
msgctxt "STR_COND_BELOW_EQUAL_AVERAGE"
msgid "Below or equal Average"
msgstr "खालील किंवा समांतर सरासरी"
-#: sc/inc/globstr.hrc:448
+#: sc/inc/globstr.hrc:449
msgctxt "STR_COND_ERROR"
msgid "an Error code"
msgstr "त्रुटी कोड"
-#: sc/inc/globstr.hrc:449
+#: sc/inc/globstr.hrc:450
msgctxt "STR_COND_NOERROR"
msgid "not an Error code"
msgstr "एरर कोड नाही"
-#: sc/inc/globstr.hrc:450
+#: sc/inc/globstr.hrc:451
msgctxt "STR_COND_BEGINS_WITH"
msgid "Begins with"
msgstr "यासह सुरू होते"
-#: sc/inc/globstr.hrc:451
+#: sc/inc/globstr.hrc:452
msgctxt "STR_COND_ENDS_WITH"
msgid "Ends with"
msgstr "यासह समाप्त होते"
-#: sc/inc/globstr.hrc:452
+#: sc/inc/globstr.hrc:453
msgctxt "STR_COND_CONTAINS"
msgid "Contains"
msgstr "समावेश"
-#: sc/inc/globstr.hrc:453
+#: sc/inc/globstr.hrc:454
msgctxt "STR_COND_NOT_CONTAINS"
msgid "Not Contains"
msgstr "समावेश नाही"
-#: sc/inc/globstr.hrc:454
+#: sc/inc/globstr.hrc:455
msgctxt "STR_COND_TODAY"
msgid "today"
msgstr "आज"
-#: sc/inc/globstr.hrc:455
+#: sc/inc/globstr.hrc:456
msgctxt "STR_COND_YESTERDAY"
msgid "yesterday"
msgstr "काल"
-#: sc/inc/globstr.hrc:456
+#: sc/inc/globstr.hrc:457
msgctxt "STR_COND_TOMORROW"
msgid "tomorrow"
msgstr "उद्या"
-#: sc/inc/globstr.hrc:457
+#: sc/inc/globstr.hrc:458
msgctxt "STR_COND_LAST7DAYS"
msgid "in the last 7 days"
msgstr "मागील 7 दिवसामध्ये"
-#: sc/inc/globstr.hrc:458
+#: sc/inc/globstr.hrc:459
msgctxt "STR_COND_THISWEEK"
msgid "this week"
msgstr "ह्या सप्ताह"
-#: sc/inc/globstr.hrc:459
+#: sc/inc/globstr.hrc:460
msgctxt "STR_COND_LASTWEEK"
msgid "last week"
msgstr "मागील सप्ताह"
-#: sc/inc/globstr.hrc:460
+#: sc/inc/globstr.hrc:461
msgctxt "STR_COND_NEXTWEEK"
msgid "next week"
msgstr "पुढील सप्ताह"
-#: sc/inc/globstr.hrc:461
+#: sc/inc/globstr.hrc:462
msgctxt "STR_COND_THISMONTH"
msgid "this month"
msgstr "हा महिना"
-#: sc/inc/globstr.hrc:462
+#: sc/inc/globstr.hrc:463
msgctxt "STR_COND_LASTMONTH"
msgid "last month"
msgstr "मागील महिना"
-#: sc/inc/globstr.hrc:463
+#: sc/inc/globstr.hrc:464
msgctxt "STR_COND_NEXTMONTH"
msgid "next month"
msgstr "पुढील महिना"
-#: sc/inc/globstr.hrc:464
+#: sc/inc/globstr.hrc:465
msgctxt "STR_COND_THISYEAR"
msgid "this year"
msgstr "हा वर्ष"
-#: sc/inc/globstr.hrc:465
+#: sc/inc/globstr.hrc:466
msgctxt "STR_COND_LASTYEAR"
msgid "last year"
msgstr "मागील वर्ष"
-#: sc/inc/globstr.hrc:466
+#: sc/inc/globstr.hrc:467
msgctxt "STR_COND_NEXTYEAR"
msgid "next year"
msgstr "पुढील वर्ष"
-#: sc/inc/globstr.hrc:467
+#: sc/inc/globstr.hrc:468
#, fuzzy
msgctxt "STR_COND_AND"
msgid "and"
msgstr "आणि"
-#: sc/inc/globstr.hrc:468
+#: sc/inc/globstr.hrc:469
msgctxt "STR_ERR_CONDFORMAT_PROTECTED"
msgid "Conditional Formats can not be created, deleted or changed in protected sheets."
msgstr ""
-#: sc/inc/globstr.hrc:469
+#: sc/inc/globstr.hrc:470
msgctxt "STR_EDIT_EXISTING_COND_FORMATS"
msgid ""
"The selected cell already contains conditional formatting. You can either edit the existing conditional format or you define a new overlapping conditional format.\n"
@@ -2322,7 +2327,7 @@ msgstr ""
"\n"
" तुम्हाला नक्की अस्तित्वातील सशर्त रूपण संपादित करायचे?"
-#: sc/inc/globstr.hrc:470
+#: sc/inc/globstr.hrc:471
msgctxt "STR_QUERY_FORMULA_RECALC_ONLOAD_ODS"
msgid ""
"This document was last saved by an application other than %PRODUCTNAME. Some formula cells may produce different results when recalculated.\n"
@@ -2333,7 +2338,7 @@ msgstr ""
"\n"
"तुम्हाला नक्की या दस्तऐवजात सर्व सूत्र कप्प्यांची पुन्ह गणना करायची?"
-#: sc/inc/globstr.hrc:471
+#: sc/inc/globstr.hrc:472
msgctxt "STR_QUERY_FORMULA_RECALC_ONLOAD_XLS"
msgid ""
"This document was last saved by Excel. Some formula cells may produce different results when recalculated.\n"
@@ -2344,77 +2349,77 @@ msgstr ""
"\n"
"तुम्हाला नक्की सर्व सूत्र कप्प्यांची पुनःगणना करायची?"
-#: sc/inc/globstr.hrc:472
+#: sc/inc/globstr.hrc:473
msgctxt "STR_NO_INSERT_DELETE_OVER_PIVOT_TABLE"
msgid "You cannot insert or delete cells when the affected range intersects with pivot table."
msgstr "प्रभावीत व्याप्ति जेव्हा पिवोट तक्तासह छेडली जाते तेव्हा कप्प्यांना अंतर्भुत किंवा नष्ट करणे शक्य नाही."
-#: sc/inc/globstr.hrc:473
+#: sc/inc/globstr.hrc:474
msgctxt "STR_DPFIELD_GROUP_BY_SECONDS"
msgid "Seconds"
msgstr "सेंकद्स्"
-#: sc/inc/globstr.hrc:474
+#: sc/inc/globstr.hrc:475
msgctxt "STR_DPFIELD_GROUP_BY_MINUTES"
msgid "Minutes"
msgstr "मिनिटे"
-#: sc/inc/globstr.hrc:475
+#: sc/inc/globstr.hrc:476
msgctxt "STR_DPFIELD_GROUP_BY_HOURS"
msgid "Hours"
msgstr "तास"
-#: sc/inc/globstr.hrc:476
+#: sc/inc/globstr.hrc:477
msgctxt "STR_DPFIELD_GROUP_BY_DAYS"
msgid "Days"
msgstr "दिवस"
-#: sc/inc/globstr.hrc:477
+#: sc/inc/globstr.hrc:478
msgctxt "STR_DPFIELD_GROUP_BY_MONTHS"
msgid "Months"
msgstr "महिने"
-#: sc/inc/globstr.hrc:478
+#: sc/inc/globstr.hrc:479
msgctxt "STR_DPFIELD_GROUP_BY_QUARTERS"
msgid "Quarters"
msgstr "क्वोर्टर्स्"
-#: sc/inc/globstr.hrc:479
+#: sc/inc/globstr.hrc:480
msgctxt "STR_DPFIELD_GROUP_BY_YEARS"
msgid "Years"
msgstr "वर्ष"
-#: sc/inc/globstr.hrc:480
+#: sc/inc/globstr.hrc:481
msgctxt "STR_INVALIDVAL"
msgid "Invalid target value."
msgstr "अवैध लक्ष्य मूल्य."
-#: sc/inc/globstr.hrc:481
+#: sc/inc/globstr.hrc:482
msgctxt "STR_INVALIDVAR"
msgid "Undefined name for variable cell."
msgstr "वेरीयबल कप्पा साठी अपरिभाषित नाव."
-#: sc/inc/globstr.hrc:482
+#: sc/inc/globstr.hrc:483
msgctxt "STR_INVALIDFORM"
msgid "Undefined name as formula cell."
msgstr "सूत्र कप्पा म्हणून अपरिभाषित नाव."
-#: sc/inc/globstr.hrc:483
+#: sc/inc/globstr.hrc:484
msgctxt "STR_NOFORMULA"
msgid "Formula cell must contain a formula."
msgstr ""
-#: sc/inc/globstr.hrc:484
+#: sc/inc/globstr.hrc:485
msgctxt "STR_INVALIDINPUT"
msgid "Invalid input."
msgstr "अवैध दिलेला डाटा."
-#: sc/inc/globstr.hrc:485
+#: sc/inc/globstr.hrc:486
msgctxt "STR_INVALIDCONDITION"
msgid "Invalid condition."
msgstr "अवैध अट."
-#: sc/inc/globstr.hrc:486
+#: sc/inc/globstr.hrc:487
msgctxt "STR_QUERYREMOVE"
msgid ""
"Should the entry\n"
@@ -2422,137 +2427,137 @@ msgid ""
"be deleted?"
msgstr ""
-#: sc/inc/globstr.hrc:487
+#: sc/inc/globstr.hrc:488
msgctxt "STR_COPYLIST"
msgid "Copy List"
msgstr "सूचीचे प्रत करा"
-#: sc/inc/globstr.hrc:488
+#: sc/inc/globstr.hrc:489
#, fuzzy
msgctxt "STR_COPYFROM"
msgid "List from"
msgstr "पासून सूची"
-#: sc/inc/globstr.hrc:489
+#: sc/inc/globstr.hrc:490
msgctxt "STR_COPYERR"
msgid "Cells without text have been ignored."
msgstr ""
-#: sc/inc/globstr.hrc:490
+#: sc/inc/globstr.hrc:491
#, c-format
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%s-click to follow hyperlink:"
msgstr ""
-#: sc/inc/globstr.hrc:491
+#: sc/inc/globstr.hrc:492
msgctxt "STR_CLICKHYPERLINK"
msgid "click to open hyperlink:"
msgstr ""
-#: sc/inc/globstr.hrc:492
+#: sc/inc/globstr.hrc:493
msgctxt "STR_PRINT_PREVIEW_NODATA"
msgid "No Data"
msgstr ""
-#: sc/inc/globstr.hrc:493
+#: sc/inc/globstr.hrc:494
msgctxt "STR_PRINT_PREVIEW_EMPTY_RANGE"
msgid "Print Range Empty"
msgstr ""
-#: sc/inc/globstr.hrc:494
+#: sc/inc/globstr.hrc:495
#, fuzzy
msgctxt "STR_UNDO_CONDFORMAT"
msgid "Conditional Format"
msgstr "सशर्तींचे स्वरूपण"
-#: sc/inc/globstr.hrc:495
+#: sc/inc/globstr.hrc:496
#, fuzzy
msgctxt "STR_UNDO_CONDFORMAT_LIST"
msgid "Conditional Formats"
msgstr "सशर्तींचे स्वरूपण"
-#: sc/inc/globstr.hrc:496
+#: sc/inc/globstr.hrc:497
msgctxt "STR_UNDO_FORMULA_TO_VALUE"
msgid "Convert Formula To Value"
msgstr ""
-#: sc/inc/globstr.hrc:497
+#: sc/inc/globstr.hrc:498
msgctxt "STR_UNQUOTED_STRING"
msgid "Strings without quotes are interpreted as column/row labels."
msgstr ""
-#: sc/inc/globstr.hrc:498
+#: sc/inc/globstr.hrc:499
msgctxt "STR_ENTER_VALUE"
msgid "Enter a value!"
msgstr ""
-#: sc/inc/globstr.hrc:499
+#: sc/inc/globstr.hrc:500
msgctxt "STR_TABLE_COUNT"
msgid "Sheet %1 of %2"
msgstr ""
-#: sc/inc/globstr.hrc:500
+#: sc/inc/globstr.hrc:501
msgctxt "STR_FUNCTIONS_FOUND"
msgid "%1 and %2 more"
msgstr ""
-#: sc/inc/globstr.hrc:501
+#: sc/inc/globstr.hrc:502
msgctxt "STR_GENERAL"
msgid "General"
msgstr "सामान्य"
-#: sc/inc/globstr.hrc:502
+#: sc/inc/globstr.hrc:503
msgctxt "STR_NUMBER"
msgid "Number"
msgstr "क्रमांक"
-#: sc/inc/globstr.hrc:503
+#: sc/inc/globstr.hrc:504
msgctxt "STR_PERCENT"
msgid "Percent"
msgstr "टक्के"
-#: sc/inc/globstr.hrc:504
+#: sc/inc/globstr.hrc:505
msgctxt "STR_CURRENCY"
msgid "Currency"
msgstr "चलन"
-#: sc/inc/globstr.hrc:505
+#: sc/inc/globstr.hrc:506
msgctxt "STR_DATE"
msgid "Date"
msgstr "दिनांक"
-#: sc/inc/globstr.hrc:506
+#: sc/inc/globstr.hrc:507
msgctxt "STR_TIME"
msgid "Time"
msgstr "वेळ"
-#: sc/inc/globstr.hrc:507
+#: sc/inc/globstr.hrc:508
msgctxt "STR_SCIENTIFIC"
msgid "Scientific"
msgstr "वैज्ञानिक"
-#: sc/inc/globstr.hrc:508
+#: sc/inc/globstr.hrc:509
msgctxt "STR_FRACTION"
msgid "Fraction"
msgstr "फ्रॅक्शन"
-#: sc/inc/globstr.hrc:509
+#: sc/inc/globstr.hrc:510
msgctxt "STR_BOOLEAN_VALUE"
msgid "Boolean Value"
msgstr "बूलीयन नाव"
-#: sc/inc/globstr.hrc:510
+#: sc/inc/globstr.hrc:511
#, fuzzy
msgctxt "STR_TEXT"
msgid "Text"
msgstr "पाठ्य"
-#: sc/inc/globstr.hrc:511
+#: sc/inc/globstr.hrc:512
msgctxt "STR_QUERY_PIVOTTABLE_DELTAB"
msgid "The selected sheet(s) contain source data of related pivot tables that will be lost. Are you sure you want to delete the selected sheet(s)?"
msgstr ""
-#: sc/inc/globstr.hrc:512
+#: sc/inc/globstr.hrc:513
msgctxt "STR_ERR_NAME_INVALID_CELL_REF"
msgid "Invalid name. Reference to a cell, or a range of cells not allowed."
msgstr ""
@@ -10704,8 +10709,8 @@ msgstr "मोड"
#: sc/inc/scfuncs.hrc:3010
msgctxt "SC_OPCODE_T_TEST"
-msgid "Mode specifies the number of distribution tails to return. 1= one-tailed, 2 = two-tailed distribution"
-msgstr "अवस्था परत केल्या जाणाऱ्या वितरण पुच्छांची संख्या निर्दिष्ट करते. 1= one-tailed, 2 = two-tailed वितरण"
+msgid "Mode specifies the number of distribution tails to return. 1 = one-tailed, 2 = two-tailed distribution"
+msgstr ""
#: sc/inc/scfuncs.hrc:3011
msgctxt "SC_OPCODE_T_TEST"
@@ -10751,8 +10756,8 @@ msgstr "मोड"
#: sc/inc/scfuncs.hrc:3024
msgctxt "SC_OPCODE_T_TEST_MS"
-msgid "Mode specifies the number of distribution tails to return. 1= one-tailed, 2 = two-tailed distribution"
-msgstr "अवस्था परत केल्या जाणाऱ्या वितरण पुच्छांची संख्या निर्दिष्ट करते. 1= one-tailed, 2 = two-tailed वितरण"
+msgid "Mode specifies the number of distribution tails to return. 1 = one-tailed, 2 = two-tailed distribution"
+msgstr ""
#: sc/inc/scfuncs.hrc:3025
msgctxt "SC_OPCODE_T_TEST_MS"
@@ -18538,22 +18543,22 @@ msgctxt "mergecellsdialog|MergeCellsDialog"
msgid "Merge Cells"
msgstr "कप्पे एकत्र करा"
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:81
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:84
msgctxt "mergecellsdialog|label"
msgid "Some cells are not empty."
msgstr ""
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:96
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:99
msgctxt "mergecellsdialog|move-cells-radio"
msgid "Move the contents of the hidden cells into the first cell"
msgstr ""
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:112
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:115
msgctxt "mergecellsdialog|empty-cells-radio"
msgid "Empty the contents of the hidden cells"
msgstr ""
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:128
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:131
msgctxt "mergecellsdialog|keep-content-radio"
msgid "Keep the contents of the hidden cells"
msgstr ""
diff --git a/source/mr/sd/messages.po b/source/mr/sd/messages.po
index eef9f8b9843..6b38f577f99 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+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"
@@ -13,181 +13,181 @@ msgstr ""
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-#: sd/inc/DocumentRenderer.hrc:29
+#: sd/inc/DocumentRenderer.hrc:27
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Slides"
msgstr "स्लाइड्स"
-#: sd/inc/DocumentRenderer.hrc:30
+#: sd/inc/DocumentRenderer.hrc:28
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Handouts"
msgstr "हस्तपत्रिका"
-#: sd/inc/DocumentRenderer.hrc:31
+#: sd/inc/DocumentRenderer.hrc:29
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Notes"
msgstr "टिपां"
-#: sd/inc/DocumentRenderer.hrc:32
+#: sd/inc/DocumentRenderer.hrc:30
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Outline"
msgstr "बाह्य रूपरेषा"
-#: sd/inc/DocumentRenderer.hrc:37
+#: sd/inc/DocumentRenderer.hrc:35
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "According to layout"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:38
+#: sd/inc/DocumentRenderer.hrc:36
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "1"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:39
+#: sd/inc/DocumentRenderer.hrc:37
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "2"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:40
+#: sd/inc/DocumentRenderer.hrc:38
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "3"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:41
+#: sd/inc/DocumentRenderer.hrc:39
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "4"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:42
+#: sd/inc/DocumentRenderer.hrc:40
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "6"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:43
+#: sd/inc/DocumentRenderer.hrc:41
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "9"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:48
+#: sd/inc/DocumentRenderer.hrc:46
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_ORDER_CHOICES"
msgid "Left to right, then down"
msgstr "डावे ते उजवे, त्यानंतर खाली"
-#: sd/inc/DocumentRenderer.hrc:49
+#: sd/inc/DocumentRenderer.hrc:47
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_ORDER_CHOICES"
msgid "Top to bottom, then right"
msgstr "शीर्ष ते तळ, त्यानंतर उजवीकडे"
-#: sd/inc/DocumentRenderer.hrc:54
+#: sd/inc/DocumentRenderer.hrc:52
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Original colors"
msgstr "मूळ रंगे"
-#: sd/inc/DocumentRenderer.hrc:55
+#: sd/inc/DocumentRenderer.hrc:53
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Grayscale"
msgstr "ग्रेस्केल"
-#: sd/inc/DocumentRenderer.hrc:56
+#: sd/inc/DocumentRenderer.hrc:54
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Black & white"
msgstr "काळा व पांढरा"
-#: sd/inc/DocumentRenderer.hrc:61
+#: sd/inc/DocumentRenderer.hrc:59
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Original size"
msgstr "मूळ आकार"
-#: sd/inc/DocumentRenderer.hrc:62
+#: sd/inc/DocumentRenderer.hrc:60
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Fit to printable page"
msgstr "छपाईजोगी पानात बसवा"
-#: sd/inc/DocumentRenderer.hrc:63
+#: sd/inc/DocumentRenderer.hrc:61
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Distribute on multiple sheets of paper"
msgstr "एकापेक्षाजास्त पेपर शीटस् येथे प्रकाशीत करा"
-#: sd/inc/DocumentRenderer.hrc:64
+#: sd/inc/DocumentRenderer.hrc:62
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Tile sheet of paper with repeated slides"
msgstr "वारंवार दर्शवण्याजोगी स्लाइड्स् सह पेपरचे टाइल शीट्"
-#: sd/inc/DocumentRenderer.hrc:69
+#: sd/inc/DocumentRenderer.hrc:67
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Original size"
msgstr "मूळ आकार"
-#: sd/inc/DocumentRenderer.hrc:70
+#: sd/inc/DocumentRenderer.hrc:68
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Fit to printable page"
msgstr "छपाईजोगी पानात बसवा"
-#: sd/inc/DocumentRenderer.hrc:71
+#: sd/inc/DocumentRenderer.hrc:69
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Distribute on multiple sheets of paper"
msgstr "एकापेक्षाजास्त पेपर शीटस् येथे प्रकाशीत करा"
-#: sd/inc/DocumentRenderer.hrc:72
+#: sd/inc/DocumentRenderer.hrc:70
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Tile sheet of paper with repeated pages"
msgstr "वारंवार दर्शवण्याजोगी पेजेस् सह पेपरचे टाइल शीट्"
-#: sd/inc/DocumentRenderer.hrc:77
+#: sd/inc/DocumentRenderer.hrc:75
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "All pages"
msgstr "सर्व पाने"
-#: sd/inc/DocumentRenderer.hrc:78
+#: sd/inc/DocumentRenderer.hrc:76
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "Front sides / right pages"
msgstr "पुढील बाजू / उजवे पाने"
-#: sd/inc/DocumentRenderer.hrc:79
+#: sd/inc/DocumentRenderer.hrc:77
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "Back sides / left pages"
msgstr "मागील पाने / डावे पाने"
-#: sd/inc/DocumentRenderer.hrc:84
+#: sd/inc/DocumentRenderer.hrc:82
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~All slides"
msgstr "सर्व स्लाइड्स (_s)"
-#: sd/inc/DocumentRenderer.hrc:85
+#: sd/inc/DocumentRenderer.hrc:83
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~Slides"
msgstr "स्लाइड्स"
-#: sd/inc/DocumentRenderer.hrc:86
+#: sd/inc/DocumentRenderer.hrc:84
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Se~lection"
msgstr "नीवड (~l)"
-#: sd/inc/DocumentRenderer.hrc:91
+#: sd/inc/DocumentRenderer.hrc:89
#, fuzzy
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~All pages"
msgstr "सर्व पाने (~A)"
-#: sd/inc/DocumentRenderer.hrc:92
+#: sd/inc/DocumentRenderer.hrc:90
#, fuzzy
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Pa~ges"
msgstr "पाने"
-#: sd/inc/DocumentRenderer.hrc:93
+#: sd/inc/DocumentRenderer.hrc:91
#, fuzzy
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Se~lection"
diff --git a/source/mr/svx/messages.po b/source/mr/svx/messages.po
index 0dea9abd0c9..81ac5457bc2 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: 2018-05-16 16:53+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+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"
@@ -5514,7 +5514,7 @@ msgstr ""
#: svx/uiconfig/ui/safemodedialog.ui:432
msgctxt "safemodedialog|btn_create_zip"
-msgid "Create Zip Archive from User Profile"
+msgid "Archive User Profile"
msgstr ""
#: svx/uiconfig/ui/safemodedialog.ui:445
@@ -9164,9 +9164,9 @@ msgid "Red"
msgstr "लाल"
#: include/svx/strings.hrc:565
-msgctxt "RID_SVXSTR_COLOR_VIOLET"
-msgid "Violet"
-msgstr "गडद जांभळा"
+msgctxt "RID_SVXSTR_COLOR_MAGENTA"
+msgid "Magenta"
+msgstr "मॅजेन्टा"
#: include/svx/strings.hrc:566
#, fuzzy
@@ -9234,8 +9234,8 @@ msgid "Light Red"
msgstr "हल्का लाल"
#: include/svx/strings.hrc:579
-msgctxt "RID_SVXSTR_COLOR_LIGHTVIOLET"
-msgid "Light Violet"
+msgctxt "RID_SVXSTR_COLOR_LIGHTMAGENTA"
+msgid "Light Magenta"
msgstr ""
#: include/svx/strings.hrc:580
@@ -9301,8 +9301,8 @@ msgid "Dark Red"
msgstr "गडद लाल"
#: include/svx/strings.hrc:593
-msgctxt "RID_SVXSTR_COLOR_DARKVIOLET1"
-msgid "Dark Violet"
+msgctxt "RID_SVXSTR_COLOR_DARKMAGENTA"
+msgid "Dark Magenta"
msgstr ""
#: include/svx/strings.hrc:594
@@ -9337,55 +9337,55 @@ msgstr ""
#. Elements of the Tonal color palette
#: include/svx/strings.hrc:601
+msgctxt "RID_SVXSTR_COLOR_VIOLET"
+msgid "Violet"
+msgstr "गडद जांभळा"
+
+#: include/svx/strings.hrc:602
msgctxt "RID_SVXSTR_COLOR_VIOLET_OUG"
msgid "Violet (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:602
+#: include/svx/strings.hrc:603
msgctxt "RID_SVXSTR_COLOR_BLUE_OUG"
msgid "Blue (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:603
+#: include/svx/strings.hrc:604
msgctxt "RID_SVXSTR_COLOR_AZURE_OUG"
msgid "Azure (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:604
+#: include/svx/strings.hrc:605
msgctxt "RID_SVXSTR_COLOR_SPRINGGREEN_OUG"
msgid "Spring Green (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:605
+#: include/svx/strings.hrc:606
msgctxt "RID_SVXSTR_COLOR_GREEN_OUG"
msgid "Green (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:606
+#: include/svx/strings.hrc:607
msgctxt "RID_SVXSTR_COLOR_CHARTREUSEGREEN_OUG"
msgid "Chartreuse Green (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:607
+#: include/svx/strings.hrc:608
msgctxt "RID_SVXSTR_COLOR_ORANGE_OUG"
msgid "Orange (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:608
+#: include/svx/strings.hrc:609
msgctxt "RID_SVXSTR_COLOR_RED_OUG"
msgid "Red (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:609
+#: include/svx/strings.hrc:610
msgctxt "RID_SVXSTR_COLOR_ROSE_OUG"
msgid "Rose (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:610
-msgctxt "RID_SVXSTR_COLOR_MAGENTA"
-msgid "Magenta"
-msgstr "मॅजेन्टा"
-
#: include/svx/strings.hrc:611
msgctxt "RID_SVXSTR_COLOR_AZURE"
msgid "Azure"
@@ -12548,13 +12548,13 @@ msgstr "उजवीकडे निर्देशीत बाणनुरू
#: include/svx/strings.hrc:1273
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_6"
-msgid "Check mark bullets"
-msgstr "चिन्हाकृत बुलेटस् तपासा"
+msgid "Cross mark bullets"
+msgstr ""
#: include/svx/strings.hrc:1274
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_7"
-msgid "Tick mark bullets"
-msgstr "चिन्हाकृत बुलेटस् टिक करा"
+msgid "Check mark bullets"
+msgstr ""
#: include/svx/strings.hrc:1275
#, fuzzy
diff --git a/source/mr/sw/messages.po b/source/mr/sw/messages.po
index 1f4eff0df50..4b9e9a4786d 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: 2018-05-22 13:17+0200\n"
+"POT-Creation-Date: 2018-06-12 14:41+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"
@@ -1216,13 +1216,13 @@ msgstr "साइटेशन"
#: sw/inc/strings.hrc:172
msgctxt "STR_POOLCOLL_TOX_ILLUSH"
-msgid "Illustration Index Heading"
-msgstr "दृष्टान्त अनुक्रमणिका शीर्षक"
+msgid "Figure Index Heading"
+msgstr ""
#: sw/inc/strings.hrc:173
msgctxt "STR_POOLCOLL_TOX_ILLUS1"
-msgid "Illustration Index 1"
-msgstr "दृष्टान्त अनुक्रमणिका 1"
+msgid "Figure Index 1"
+msgstr ""
#: sw/inc/strings.hrc:174
msgctxt "STR_POOLCOLL_TOX_OBJECTH"
@@ -3721,8 +3721,8 @@ msgstr "ऑब्जेक्ट्सचा तक्ता"
#: sw/inc/strings.hrc:672
msgctxt "STR_TOX_ILL"
-msgid "Illustration Index"
-msgstr "इलस्ट्रेशन इंडेक्स"
+msgid "Table of Figures"
+msgstr ""
#: sw/inc/strings.hrc:673
#, c-format
@@ -9606,72 +9606,72 @@ msgctxt "footnotepage|label5"
msgid "Continuation Notice"
msgstr "निरंतरता पूर्वसूचना"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:49
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:55
msgctxt "footnotesendnotestabpage|ftnntnum"
msgid "_Restart numbering"
msgstr "क्रमांकन पुन्हा सुरू करा (_R)"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:91
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:93
msgctxt "footnotesendnotestabpage|ftnoffset_label"
msgid "_Start at:"
msgstr "आरंभ वेळ (_S):"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:112
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:111
msgctxt "footnotesendnotestabpage|ftnntnumfmt"
msgid "Custom _format"
msgstr "पसंतीचे रूपण (_f)"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:155
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:150
msgctxt "footnotesendnotestabpage|ftnsuffix_label"
msgid "Aft_er:"
msgstr "नंतर (_e):"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:199
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:188
msgctxt "footnotesendnotestabpage|ftnprefix_label"
msgid "Be_fore:"
msgstr "आधी (_f):"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:228
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:212
msgctxt "footnotesendnotestabpage|ftnntattextend"
msgid "Collec_t at end of text"
msgstr "मजकूरच्या समाप्तिस एकत्र करा (_t)"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:252
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:234
msgctxt "footnotesendnotestabpage|label1"
msgid "Footnotes"
msgstr "तळटिप"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:289
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:271
msgctxt "footnotesendnotestabpage|endntattextend"
msgid "C_ollect at end of section"
msgstr "विभागाच्या समाप्तिस एकत्र करा (_o)"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:315
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:295
msgctxt "footnotesendnotestabpage|endntnum"
msgid "_Restart numbering"
msgstr "क्रमांकन पुन्हा सुरू करा (_R)"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:357
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:333
msgctxt "footnotesendnotestabpage|endoffset_label"
msgid "_Start at:"
msgstr "आरंभ वेळ (_S):"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:378
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:351
msgctxt "footnotesendnotestabpage|endntnumfmt"
msgid "_Custom format"
msgstr "पसंतीचे रूपण (_C)"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:421
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:390
msgctxt "footnotesendnotestabpage|endsuffix_label"
msgid "Aft_er:"
msgstr "नंतर (_e):"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:465
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:428
msgctxt "footnotesendnotestabpage|endprefix_label"
msgid "Be_fore:"
msgstr "आधी (_f):"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:500
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:458
msgctxt "footnotesendnotestabpage|label2"
msgid "Endnotes"
msgstr "समाप्तिटिप"
@@ -9701,27 +9701,27 @@ msgctxt "formatsectiondialog|notes"
msgid "Footnotes/Endnotes"
msgstr "चरणटिप किंवा समाप्तिटिप"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:63
+#: sw/uiconfig/swriter/ui/formattablepage.ui:77
msgctxt "formattablepage|nameft"
msgid "_Name"
msgstr "नाव (_N)"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:79
+#: sw/uiconfig/swriter/ui/formattablepage.ui:91
msgctxt "formattablepage|widthft"
msgid "W_idth"
msgstr "रुंदी (_i)"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:110
+#: sw/uiconfig/swriter/ui/formattablepage.ui:120
msgctxt "formattablepage|relwidth"
msgid "Relati_ve"
msgstr "संबंधीत (_v)"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:155
+#: sw/uiconfig/swriter/ui/formattablepage.ui:160
msgctxt "formattablepage|label45"
msgid "Properties"
msgstr "गुणधर्म"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:194
+#: sw/uiconfig/swriter/ui/formattablepage.ui:195
msgctxt "formattablepage|leftft"
msgid "Lef_t"
msgstr "डावा (_t)"
@@ -9731,62 +9731,62 @@ msgctxt "formattablepage|rightft"
msgid "Ri_ght"
msgstr "उजवा (_g)"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:228
+#: sw/uiconfig/swriter/ui/formattablepage.ui:226
msgctxt "formattablepage|aboveft"
msgid "_Above"
msgstr "वर (_A)"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:245
+#: sw/uiconfig/swriter/ui/formattablepage.ui:241
msgctxt "formattablepage|belowft"
msgid "_Below"
msgstr "खाली (_B)"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:320
+#: sw/uiconfig/swriter/ui/formattablepage.ui:311
msgctxt "formattablepage|label46"
msgid "Spacing"
msgstr "अंतर"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:362
+#: sw/uiconfig/swriter/ui/formattablepage.ui:349
msgctxt "formattablepage|full"
msgid "A_utomatic"
msgstr "स्वयं (_u)"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:380
+#: sw/uiconfig/swriter/ui/formattablepage.ui:365
msgctxt "formattablepage|left"
msgid "_Left"
msgstr "डावे (_L)"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:398
+#: sw/uiconfig/swriter/ui/formattablepage.ui:381
msgctxt "formattablepage|fromleft"
msgid "_From left"
msgstr "डावीकडून (_F)"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:416
+#: sw/uiconfig/swriter/ui/formattablepage.ui:397
msgctxt "formattablepage|right"
msgid "R_ight"
msgstr "उजवा (_i)"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:435
+#: sw/uiconfig/swriter/ui/formattablepage.ui:413
msgctxt "formattablepage|center"
msgid "_Center"
msgstr "मध्य (_C)"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:453
+#: sw/uiconfig/swriter/ui/formattablepage.ui:429
msgctxt "formattablepage|free"
msgid "_Manual"
msgstr "मॅन्युअल (_M)"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:478
+#: sw/uiconfig/swriter/ui/formattablepage.ui:452
msgctxt "formattablepage|label43"
msgid "Alignment"
msgstr "संरेषण"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:522
+#: sw/uiconfig/swriter/ui/formattablepage.ui:491
msgctxt "formattablepage|label53"
msgid "Text _direction"
msgstr "मजकूर दिशा (_d)"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:553
+#: sw/uiconfig/swriter/ui/formattablepage.ui:519
msgctxt "formattablepage|label44"
msgid "Properties "
msgstr "गुणधर्म "
@@ -10145,22 +10145,27 @@ msgctxt "headerfootermenu|insert_pagenumber"
msgid "Insert Page Number"
msgstr ""
-#: sw/uiconfig/swriter/ui/indentpage.ui:52
+#: sw/uiconfig/swriter/ui/headerfootermenu.ui:42
+msgctxt "headerfootermenu|insert_pagecount"
+msgid "Insert Page Count"
+msgstr ""
+
+#: sw/uiconfig/swriter/ui/indentpage.ui:57
msgctxt "indentpage|label1"
msgid "_Before section"
msgstr "विभागाच्या आधी (_B)"
-#: sw/uiconfig/swriter/ui/indentpage.ui:67
+#: sw/uiconfig/swriter/ui/indentpage.ui:71
msgctxt "indentpage|label3"
msgid "_After section"
msgstr "विभागांनतर (_A)"
-#: sw/uiconfig/swriter/ui/indentpage.ui:113
+#: sw/uiconfig/swriter/ui/indentpage.ui:115
msgctxt "indentpage|label2"
msgid "Indent"
msgstr "मोकळी जागा"
-#: sw/uiconfig/swriter/ui/indentpage.ui:142
+#: sw/uiconfig/swriter/ui/indentpage.ui:155
msgctxt "indentpage|preview-atkobject"
msgid "Example"
msgstr "उदाहरणार्थ"
@@ -13881,7 +13886,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:68
msgctxt "optcompatpage|format"
-msgid "MS Word-compatible trailing blanks"
+msgid "Word-compatible trailing blanks"
msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:69
@@ -13891,7 +13896,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:70
msgctxt "optcompatpage|format"
-msgid "A database field (e.g., MailMerge) with empty value hides its paragraph"
+msgid "Hide paragraphs of database fields (e.g., mail merge) with an empty value"
msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:71
@@ -16709,123 +16714,123 @@ msgctxt "tableproperties|background"
msgid "Background"
msgstr "पार्श्वभूमी"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:25
-msgctxt "tabletextflowpage|liststore1"
-msgid "Horizontal"
-msgstr "आडव्या स्वरूपात"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:29
-msgctxt "tabletextflowpage|liststore1"
-msgid "Vertical"
-msgstr "उभेरित्या"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:33
-msgctxt "tabletextflowpage|liststore1"
-msgid "Use superordinate object settings"
-msgstr "सुपरऑर्डिनेट वस्तु स्थापितांचा उपयोग करा"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:47
-msgctxt "tabletextflowpage|liststore2"
-msgid "Top"
-msgstr "शीर्ष"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:51
-msgctxt "tabletextflowpage|liststore2"
-msgid "Centered"
-msgstr "मध्य"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:55
-msgctxt "tabletextflowpage|liststore2"
-msgid "Bottom"
-msgstr "तळ"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:97
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:53
msgctxt "tabletextflowpage|break"
msgid "_Break"
msgstr "खंडन (_B)"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:112
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:68
msgctxt "tabletextflowpage|page"
msgid "_Page"
msgstr "पृष्ठ (_P)"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:132
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:87
msgctxt "tabletextflowpage|column"
msgid "Col_umn"
msgstr "स्तंभ (_u)"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:151
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:106
msgctxt "tabletextflowpage|before"
msgid "Be_fore"
msgstr "पूर्वी (_f)"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:171
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:125
msgctxt "tabletextflowpage|after"
msgid "_After"
msgstr "नंतर (_A)"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:203
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:158
msgctxt "tabletextflowpage|pagestyle"
msgid "With Page St_yle"
msgstr "पृष्ठ शैलीसह (_y)"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:224
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:177
msgctxt "tabletextflowpage|pagenoft"
msgid "Page _number"
msgstr "पृष्ठ क्रमांक (_n)"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:257
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:213
#, fuzzy
msgctxt "tabletextflowpage|pagestylelb-atkobject"
msgid "With Page Style"
msgstr "पृष्ठ शैलीसह (_y)"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:274
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:230
msgctxt "tabletextflowpage|split"
msgid "Allow _table to split across pages and columns"
msgstr "तक्त्याला पृष्ठ आणि स्तंभांच्या पलिकडे दुभागले जाऊ दे (_t)"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:289
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:245
msgctxt "tabletextflowpage|splitrow"
msgid "Allow row to break a_cross pages and columns"
msgstr "ओळला पृष्ठ व स्तंभ खंडन करीता परवानगी द्या (_c)"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:306
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:262
msgctxt "tabletextflowpage|keep"
msgid "_Keep with next paragraph"
msgstr "पुढच्या परिच्छेसह संलग्न करा (_K)"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:328
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:284
msgctxt "tabletextflowpage|label40"
msgid "Text _orientation"
msgstr "मजकूर निर्देशन (_o)"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:361
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:298
+msgctxt "tabletextflowpage|liststore1"
+msgid "Horizontal"
+msgstr "आडव्या स्वरूपात"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:299
+msgctxt "tabletextflowpage|liststore1"
+msgid "Vertical"
+msgstr "उभेरित्या"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:300
+msgctxt "tabletextflowpage|liststore1"
+msgid "Use superordinate object settings"
+msgstr "सुपरऑर्डिनेट वस्तु स्थापितांचा उपयोग करा"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:321
msgctxt "tabletextflowpage|headline"
msgid "R_epeat heading"
msgstr "शीर्षकच पुनःवापर करा (_e)"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:383
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:343
msgctxt "tabletextflowpage|label38"
msgid "The first "
msgstr "प्रथम "
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:396
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:356
msgctxt "tabletextflowpage|label39"
msgid "rows"
msgstr "ओळ"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:434
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:395
msgctxt "tabletextflowpage|label35"
msgid "Text Flow"
msgstr "पाठ्य धारा"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:467
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:428
msgctxt "tabletextflowpage|label41"
msgid "_Vertical alignment"
msgstr "उभे संरेषण (_V)"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:495
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:442
+msgctxt "tabletextflowpage|liststore2"
+msgid "Top"
+msgstr "शीर्ष"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:443
+msgctxt "tabletextflowpage|liststore2"
+msgid "Centered"
+msgstr "मध्य"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:444
+msgctxt "tabletextflowpage|liststore2"
+msgid "Bottom"
+msgstr "तळ"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:460
msgctxt "tabletextflowpage|label36"
msgid "Alignment"
msgstr "संरेषण"
@@ -17629,8 +17634,8 @@ msgstr "अक्षरिय इंडेक्स"
#: sw/uiconfig/swriter/ui/tocindexpage.ui:58
msgctxt "tocindexpage|liststore1"
-msgid "Illustration Index"
-msgstr "इलस्ट्रेशन इंडेक्स"
+msgid "Table of Figures"
+msgstr ""
#: sw/uiconfig/swriter/ui/tocindexpage.ui:62
msgctxt "tocindexpage|liststore1"
diff --git a/source/mr/writerperfect/messages.po b/source/mr/writerperfect/messages.po
index 7f719aaca79..bb8a328c63d 100644
--- a/source/mr/writerperfect/messages.po
+++ b/source/mr/writerperfect/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-16 16:54+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+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"
@@ -65,99 +65,99 @@ msgctxt "exportepub|generalft"
msgid "General"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:122
+#: writerperfect/uiconfig/ui/exportepub.ui:121
#, fuzzy
msgctxt "exportepub|versionft"
msgid "Version:"
msgstr "आवृत्ती (~V):"
-#: writerperfect/uiconfig/ui/exportepub.ui:139
+#: writerperfect/uiconfig/ui/exportepub.ui:138
msgctxt "exportepub|epub3"
msgid "EPUB 3.0"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:140
+#: writerperfect/uiconfig/ui/exportepub.ui:139
msgctxt "exportepub|epub2"
msgid "EPUB 2.0"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:175
+#: writerperfect/uiconfig/ui/exportepub.ui:174
msgctxt "exportepub|splitft"
msgid "Split method:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:192
+#: writerperfect/uiconfig/ui/exportepub.ui:191
msgctxt "exportepub|splitpage"
msgid "Page break"
msgstr "पान खंडन"
-#: writerperfect/uiconfig/ui/exportepub.ui:193
+#: writerperfect/uiconfig/ui/exportepub.ui:192
#, fuzzy
msgctxt "exportepub|splitheading"
msgid "Heading"
msgstr "Heading"
-#: writerperfect/uiconfig/ui/exportepub.ui:228
+#: writerperfect/uiconfig/ui/exportepub.ui:227
msgctxt "exportepub|layoutft"
msgid "Layout method:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:245
+#: writerperfect/uiconfig/ui/exportepub.ui:244
msgctxt "exportepub|layoutreflowable"
msgid "Reflowable"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:246
+#: writerperfect/uiconfig/ui/exportepub.ui:245
msgctxt "exportepub|layoutfixed"
msgid "Fixed"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:281
+#: writerperfect/uiconfig/ui/exportepub.ui:280
msgctxt "exportepub|coverimageft"
msgid "Custom cover image:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:311
+#: writerperfect/uiconfig/ui/exportepub.ui:310
msgctxt "exportepub|coverbutton"
msgid "Browse..."
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:355
+#: writerperfect/uiconfig/ui/exportepub.ui:354
msgctxt "exportepub|mediadirft"
msgid "Custom media directory:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:385
+#: writerperfect/uiconfig/ui/exportepub.ui:384
msgctxt "exportepub|mediabutton"
msgid "Browse..."
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:429
+#: writerperfect/uiconfig/ui/exportepub.ui:428
msgctxt "exportepub|metadataft"
msgid "Metadata"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:470
+#: writerperfect/uiconfig/ui/exportepub.ui:468
msgctxt "exportepub|identifierft"
msgid "Identifier:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:485
+#: writerperfect/uiconfig/ui/exportepub.ui:483
msgctxt "exportepub|titleft"
msgid "Title:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:511
+#: writerperfect/uiconfig/ui/exportepub.ui:509
msgctxt "exportepub|authorft"
msgid "Author:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:537
+#: writerperfect/uiconfig/ui/exportepub.ui:535
msgctxt "exportepub|languageft"
msgid "Language:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:563
+#: writerperfect/uiconfig/ui/exportepub.ui:561
msgctxt "exportepub|dateft"
msgid "Date:"
msgstr ""
diff --git a/source/my/cui/messages.po b/source/my/cui/messages.po
index c9bdf228568..375d2b10031 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+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"
@@ -10384,107 +10384,107 @@ msgctxt "positionsizedialog|PositionAndSizeDialog"
msgid "Position and Size"
msgstr "တည်နေရာနှင့်နေရာလွတ်များ"
-#: cui/uiconfig/ui/positionsizedialog.ui:107
+#: cui/uiconfig/ui/positionsizedialog.ui:136
#, fuzzy
msgctxt "positionsizedialog|RID_SVXPAGE_POSITION_SIZE"
msgid "Position and Size"
msgstr "တည်နေရာနှင့်နေရာလွတ်များ"
-#: cui/uiconfig/ui/positionsizedialog.ui:129
+#: cui/uiconfig/ui/positionsizedialog.ui:182
#, fuzzy
msgctxt "positionsizedialog|RID_SVXPAGE_SWPOSSIZE"
msgid "Position and Size"
msgstr "တည်နေရာနှင့်နေရာလွတ်များ"
-#: cui/uiconfig/ui/positionsizedialog.ui:152
+#: cui/uiconfig/ui/positionsizedialog.ui:229
msgctxt "positionsizedialog|RID_SVXPAGE_ANGLE"
msgid "Rotation"
msgstr "ကိုးကားချက်"
-#: cui/uiconfig/ui/positionsizedialog.ui:175
+#: cui/uiconfig/ui/positionsizedialog.ui:276
msgctxt "positionsizedialog|RID_SVXPAGE_SLANT"
msgid "Slant & Corner Radius"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:40
+#: cui/uiconfig/ui/possizetabpage.ui:61
#, fuzzy
msgctxt "possizetabpage|FT_POS_X"
msgid "Position _X:"
msgstr "ရပ်တည်ချက်"
-#: cui/uiconfig/ui/possizetabpage.ui:56
+#: cui/uiconfig/ui/possizetabpage.ui:75
#, fuzzy
msgctxt "possizetabpage|FT_POS_Y"
msgid "Position _Y:"
msgstr "ရပ်တည်ချက်"
-#: cui/uiconfig/ui/possizetabpage.ui:110
+#: cui/uiconfig/ui/possizetabpage.ui:128
msgctxt "possizetabpage|FT_POSREFERENCE"
msgid "_Base point:"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:148
+#: cui/uiconfig/ui/possizetabpage.ui:182
msgctxt "possizetabpage|label1"
msgid "Position"
msgstr "ရပ်တည်ချက်"
-#: cui/uiconfig/ui/possizetabpage.ui:190
+#: cui/uiconfig/ui/possizetabpage.ui:224
#, fuzzy
msgctxt "possizetabpage|FT_WIDTH"
msgid "Wi_dth:"
msgstr "အကျယ် -"
-#: cui/uiconfig/ui/possizetabpage.ui:206
+#: cui/uiconfig/ui/possizetabpage.ui:238
#, fuzzy
msgctxt "possizetabpage|FT_HEIGHT"
msgid "H_eight:"
msgstr "အမြင့်"
-#: cui/uiconfig/ui/possizetabpage.ui:247
+#: cui/uiconfig/ui/possizetabpage.ui:276
#, fuzzy
msgctxt "possizetabpage|CBX_SCALE"
msgid "_Keep ratio"
msgstr "အချိုး ထိန်းသိမ်းပါ"
-#: cui/uiconfig/ui/possizetabpage.ui:279
+#: cui/uiconfig/ui/possizetabpage.ui:307
msgctxt "possizetabpage|FT_SIZEREFERENCE"
msgid "Base _point:"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:317
+#: cui/uiconfig/ui/possizetabpage.ui:361
msgctxt "possizetabpage|label2"
msgid "Size"
msgstr "အရွယ်အစား"
-#: cui/uiconfig/ui/possizetabpage.ui:356
+#: cui/uiconfig/ui/possizetabpage.ui:401
#, fuzzy
msgctxt "possizetabpage|TSB_POSPROTECT"
msgid "Positio_n"
msgstr "ရပ်တည်ချက်"
-#: cui/uiconfig/ui/possizetabpage.ui:373
+#: cui/uiconfig/ui/possizetabpage.ui:418
#, fuzzy
msgctxt "possizetabpage|TSB_SIZEPROTECT"
msgid "_Size"
msgstr "အရွယ်အစား"
-#: cui/uiconfig/ui/possizetabpage.ui:397
+#: cui/uiconfig/ui/possizetabpage.ui:441
#, fuzzy
msgctxt "possizetabpage|label3"
msgid "Protect"
msgstr "~ကာကွယ်ပါ"
-#: cui/uiconfig/ui/possizetabpage.ui:430
+#: cui/uiconfig/ui/possizetabpage.ui:475
msgctxt "possizetabpage|TSB_AUTOGROW_WIDTH"
msgid "_Fit width to text"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:447
+#: cui/uiconfig/ui/possizetabpage.ui:492
msgctxt "possizetabpage|TSB_AUTOGROW_HEIGHT"
msgid "Fit _height to text"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:471
+#: cui/uiconfig/ui/possizetabpage.ui:515
msgctxt "possizetabpage|label4"
msgid "Adapt"
msgstr ""
@@ -10697,52 +10697,52 @@ msgctxt "recordnumberdialog|label2"
msgid "go to record"
msgstr ""
-#: cui/uiconfig/ui/rotationtabpage.ui:52
+#: cui/uiconfig/ui/rotationtabpage.ui:56
#, fuzzy
msgctxt "rotationtabpage|FT_POS_X"
msgid "Position _X:"
msgstr "ရပ်တည်ချက်"
-#: cui/uiconfig/ui/rotationtabpage.ui:66
+#: cui/uiconfig/ui/rotationtabpage.ui:70
#, fuzzy
msgctxt "rotationtabpage|FT_POS_Y"
msgid "Position _Y:"
msgstr "ရပ်တည်ချက်"
-#: cui/uiconfig/ui/rotationtabpage.ui:116
+#: cui/uiconfig/ui/rotationtabpage.ui:123
#, fuzzy
msgctxt "rotationtabpage|FT_POSPRESETS"
msgid "_Default settings:"
msgstr "ပုံသေပြင်ဆင်ချိန်ညှိနိုင်မှုများ"
-#: cui/uiconfig/ui/rotationtabpage.ui:130
+#: cui/uiconfig/ui/rotationtabpage.ui:151
msgctxt "rotationtabpage|CTL_RECT|tooltip_text"
msgid "Rotation point"
msgstr ""
-#: cui/uiconfig/ui/rotationtabpage.ui:155
+#: cui/uiconfig/ui/rotationtabpage.ui:178
msgctxt "rotationtabpage|label1"
msgid "Pivot Point"
msgstr ""
-#: cui/uiconfig/ui/rotationtabpage.ui:197
+#: cui/uiconfig/ui/rotationtabpage.ui:220
#, fuzzy
msgctxt "rotationtabpage|FT_ANGLE"
msgid "_Angle:"
msgstr "_ထောင့်"
-#: cui/uiconfig/ui/rotationtabpage.ui:238
+#: cui/uiconfig/ui/rotationtabpage.ui:263
#, fuzzy
msgctxt "rotationtabpage|FT_ANGLEPRESETS"
msgid "Default _settings:"
msgstr "ပုံသေပြင်ဆင်ချိန်ညှိနိုင်မှုများ"
-#: cui/uiconfig/ui/rotationtabpage.ui:252
+#: cui/uiconfig/ui/rotationtabpage.ui:287
msgctxt "rotationtabpage|CTL_ANGLE|tooltip_text"
msgid "Rotation Angle"
msgstr "ထောင့်လည်ပတ်မှု"
-#: cui/uiconfig/ui/rotationtabpage.ui:277
+#: cui/uiconfig/ui/rotationtabpage.ui:314
msgctxt "rotationtabpage|label2"
msgid "Rotation Angle"
msgstr "ထောင့်လည်ပတ်မှု"
@@ -11137,56 +11137,56 @@ msgctxt "similaritysearchdialog|relaxbox"
msgid "_Combine"
msgstr "ပေါင်းစပ်ပါ"
-#: cui/uiconfig/ui/slantcornertabpage.ui:50
+#: cui/uiconfig/ui/slantcornertabpage.ui:70
msgctxt "slantcornertabpage|label5"
msgid "_X:"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:88
+#: cui/uiconfig/ui/slantcornertabpage.ui:110
msgctxt "slantcornertabpage|label6"
msgid "_Y:"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:125
+#: cui/uiconfig/ui/slantcornertabpage.ui:149
msgctxt "slantcornertabpage|label3"
msgid "Control Point 1"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:159
+#: cui/uiconfig/ui/slantcornertabpage.ui:183
#, fuzzy
msgctxt "slantcornertabpage|FT_RADIUS"
msgid "_Radius:"
msgstr "အချင်းဝက်"
-#: cui/uiconfig/ui/slantcornertabpage.ui:189
+#: cui/uiconfig/ui/slantcornertabpage.ui:214
#, fuzzy
msgctxt "slantcornertabpage|label1"
msgid "Corner Radius"
msgstr "အချင်းဝက် ထောင့်"
-#: cui/uiconfig/ui/slantcornertabpage.ui:223
+#: cui/uiconfig/ui/slantcornertabpage.ui:248
#, fuzzy
msgctxt "slantcornertabpage|FT_ANGLE"
msgid "_Angle:"
msgstr "_ထောင့်"
-#: cui/uiconfig/ui/slantcornertabpage.ui:253
+#: cui/uiconfig/ui/slantcornertabpage.ui:279
#, fuzzy
msgctxt "slantcornertabpage|label2"
msgid "Slant"
msgstr "အစွေသား"
-#: cui/uiconfig/ui/slantcornertabpage.ui:294
+#: cui/uiconfig/ui/slantcornertabpage.ui:320
msgctxt "slantcornertabpage|label4"
msgid "_X:"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:332
+#: cui/uiconfig/ui/slantcornertabpage.ui:360
msgctxt "slantcornertabpage|label7"
msgid "_Y:"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:369
+#: cui/uiconfig/ui/slantcornertabpage.ui:399
msgctxt "slantcornertabpage|label8"
msgid "Control Point 2"
msgstr ""
@@ -11478,124 +11478,124 @@ msgctxt "storedwebconnectiondialog|change"
msgid "_Change Password..."
msgstr "စကားဝှက်~ပြောင်းပါ..."
-#: cui/uiconfig/ui/swpossizepage.ui:74
+#: cui/uiconfig/ui/swpossizepage.ui:85
msgctxt "swpossizepage|widthft"
msgid "_Width:"
msgstr "အကျယ် -"
-#: cui/uiconfig/ui/swpossizepage.ui:111
+#: cui/uiconfig/ui/swpossizepage.ui:123
#, fuzzy
msgctxt "swpossizepage|heightft"
msgid "H_eight:"
msgstr "အမြင့်"
-#: cui/uiconfig/ui/swpossizepage.ui:128
+#: cui/uiconfig/ui/swpossizepage.ui:141
#, fuzzy
msgctxt "swpossizepage|ratio"
msgid "_Keep ratio"
msgstr "အချိုး ထိန်းသိမ်းပါ"
-#: cui/uiconfig/ui/swpossizepage.ui:149
+#: cui/uiconfig/ui/swpossizepage.ui:162
msgctxt "swpossizepage|label2"
msgid "Size"
msgstr "အရွယ်အစား"
-#: cui/uiconfig/ui/swpossizepage.ui:205
+#: cui/uiconfig/ui/swpossizepage.ui:218
#, fuzzy
msgctxt "swpossizepage|topage"
msgid "To _page"
msgstr "စာမျက်နှာသို့"
-#: cui/uiconfig/ui/swpossizepage.ui:222
+#: cui/uiconfig/ui/swpossizepage.ui:234
#, fuzzy
msgctxt "swpossizepage|topara"
msgid "To paragrap_h"
msgstr "စာပိုဒ်သို့"
-#: cui/uiconfig/ui/swpossizepage.ui:238
+#: cui/uiconfig/ui/swpossizepage.ui:250
#, fuzzy
msgctxt "swpossizepage|tochar"
msgid "To cha_racter"
msgstr "အက္ခရာများသို့"
-#: cui/uiconfig/ui/swpossizepage.ui:254
+#: cui/uiconfig/ui/swpossizepage.ui:266
#, fuzzy
msgctxt "swpossizepage|aschar"
msgid "_As character"
msgstr "အက္ခရာများအဖြစ်"
-#: cui/uiconfig/ui/swpossizepage.ui:270
+#: cui/uiconfig/ui/swpossizepage.ui:282
#, fuzzy
msgctxt "swpossizepage|toframe"
msgid "To _frame"
msgstr "ဘောင်သို့"
-#: cui/uiconfig/ui/swpossizepage.ui:292
+#: cui/uiconfig/ui/swpossizepage.ui:304
msgctxt "swpossizepage|label1"
msgid "Anchor"
msgstr "ကျောက်ဆူး"
-#: cui/uiconfig/ui/swpossizepage.ui:333
+#: cui/uiconfig/ui/swpossizepage.ui:344
#, fuzzy
msgctxt "swpossizepage|horiposft"
msgid "Hori_zontal:"
msgstr "ရေပြင်ညီ"
-#: cui/uiconfig/ui/swpossizepage.ui:347
+#: cui/uiconfig/ui/swpossizepage.ui:358
msgctxt "swpossizepage|horibyft"
msgid "b_y:"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:361
+#: cui/uiconfig/ui/swpossizepage.ui:372
msgctxt "swpossizepage|vertbyft"
msgid "_by:"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:375
+#: cui/uiconfig/ui/swpossizepage.ui:386
#, fuzzy
msgctxt "swpossizepage|horitoft"
msgid "_to:"
msgstr "သို့"
-#: cui/uiconfig/ui/swpossizepage.ui:421
+#: cui/uiconfig/ui/swpossizepage.ui:433
#, fuzzy
msgctxt "swpossizepage|vertposft"
msgid "_Vertical:"
msgstr "_ဒေါင်လိုက်"
-#: cui/uiconfig/ui/swpossizepage.ui:457
+#: cui/uiconfig/ui/swpossizepage.ui:470
msgctxt "swpossizepage|verttoft"
msgid "t_o:"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:478
+#: cui/uiconfig/ui/swpossizepage.ui:492
msgctxt "swpossizepage|mirror"
msgid "_Mirror on even pages"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:495
+#: cui/uiconfig/ui/swpossizepage.ui:509
msgctxt "swpossizepage|followtextflow"
msgid "Follow te_xt flow"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:518
+#: cui/uiconfig/ui/swpossizepage.ui:532
msgctxt "swpossizepage|label11"
msgid "Position"
msgstr "ရပ်တည်ချက်"
-#: cui/uiconfig/ui/swpossizepage.ui:549
+#: cui/uiconfig/ui/swpossizepage.ui:563
#, fuzzy
msgctxt "swpossizepage|pos"
msgid "Positio_n"
msgstr "ရပ်တည်ချက်"
-#: cui/uiconfig/ui/swpossizepage.ui:565
+#: cui/uiconfig/ui/swpossizepage.ui:579
#, fuzzy
msgctxt "swpossizepage|size"
msgid "_Size"
msgstr "အရွယ်အစား"
-#: cui/uiconfig/ui/swpossizepage.ui:587
+#: cui/uiconfig/ui/swpossizepage.ui:601
#, fuzzy
msgctxt "swpossizepage|label3"
msgid "Protect"
@@ -11799,13 +11799,13 @@ msgctxt "textattrtabpage|label2"
msgid "Spacing to Borders"
msgstr ""
-#: cui/uiconfig/ui/textattrtabpage.ui:425
+#: cui/uiconfig/ui/textattrtabpage.ui:423
#, fuzzy
msgctxt "textattrtabpage|TSB_FULL_WIDTH"
msgid "Full _width"
msgstr "အပြည့်အကျယ်"
-#: cui/uiconfig/ui/textattrtabpage.ui:448
+#: cui/uiconfig/ui/textattrtabpage.ui:446
msgctxt "textattrtabpage|label3"
msgid "Text Anchor"
msgstr ""
diff --git a/source/my/filter/source/config/fragments/filters.po b/source/my/filter/source/config/fragments/filters.po
index 8a2b48375fc..6e5d6cf4c04 100644
--- a/source/my/filter/source/config/fragments/filters.po
+++ b/source/my/filter/source/config/fragments/filters.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-16 16:54+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2016-03-11 15:43+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -464,8 +464,8 @@ msgctxt ""
"MS Word 2003 XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Word 2003 XML"
-msgstr "Microsoft Word 2003 XML"
+msgid "Word 2003 XML"
+msgstr ""
#: MS_Word_2007_XML.xcu
msgctxt ""
@@ -1289,7 +1289,7 @@ msgctxt ""
"Calc MS Excel 2007 VBA XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Excel 2007-2016 XML (macro enabled)"
+msgid "Excel 2007–2019 (macro-enabled)"
msgstr ""
#: calc_MS_Excel_2007_XML.xcu
diff --git a/source/my/filter/source/config/fragments/types.po b/source/my/filter/source/config/fragments/types.po
index 9954dd4b75b..34f6ce31950 100644
--- a/source/my/filter/source/config/fragments/types.po
+++ b/source/my/filter/source/config/fragments/types.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-08 15:11+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2015-11-11 22:37+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -293,8 +293,8 @@ msgctxt ""
"writer_MS_Word_2003_XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Word 2003 XML"
-msgstr "Microsoft Word 2003 XML"
+msgid "Word 2003 XML"
+msgstr ""
#: writer_MS_Word_2007_XML.xcu
msgctxt ""
diff --git a/source/my/fpicker/messages.po b/source/my/fpicker/messages.po
index d595b145343..5112cdf87d4 100644
--- a/source/my/fpicker/messages.po
+++ b/source/my/fpicker/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+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"
@@ -277,13 +277,13 @@ msgstr ""
#: fpicker/uiconfig/ui/foldernamedialog.ui:8
msgctxt "foldernamedialog|FolderNameDialog"
-msgid "Folder Name ?"
+msgid "Folder Name"
msgstr ""
#: fpicker/uiconfig/ui/foldernamedialog.ui:91
msgctxt "foldernamedialog|label2"
-msgid "Na_me"
-msgstr "အမည်"
+msgid "Na_me:"
+msgstr ""
#: fpicker/uiconfig/ui/foldernamedialog.ui:122
#, fuzzy
diff --git a/source/my/officecfg/registry/data/org/openoffice/Office/UI.po b/source/my/officecfg/registry/data/org/openoffice/Office/UI.po
index c8e9703bd42..07da68f4814 100644
--- a/source/my/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/my/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-22 13:17+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2016-07-05 03:23+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -26938,8 +26938,8 @@ msgctxt ""
"..WriterCommands.UserInterface.Commands..uno:TextAttributes\n"
"Label\n"
"value.text"
-msgid "Text Attributes"
-msgstr "စာသားပင်ကိုယ်အရည်အချင်းများ"
+msgid "Text Attributes..."
+msgstr ""
#: WriterCommands.xcu
msgctxt ""
diff --git a/source/my/readlicense_oo/docs.po b/source/my/readlicense_oo/docs.po
index 1f450449593..3442506b366 100644
--- a/source/my/readlicense_oo/docs.po
+++ b/source/my/readlicense_oo/docs.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-04-17 15:54+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2016-03-11 18:51+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -116,7 +116,7 @@ msgctxt ""
"readme.xrm\n"
"macxiOSX\n"
"readmeitem.text"
-msgid "MacOSX 10.8 (Mountain Lion) or higher"
+msgid "MacOSX 10.9 (Mavericks) or higher"
msgstr ""
#: readme.xrm
diff --git a/source/my/sc/messages.po b/source/my/sc/messages.po
index 4f2b6b79ac8..55bf4ecbb7d 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-12 14:40+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"
@@ -1868,16 +1868,21 @@ msgid "Nested arrays are not supported."
msgstr "နတ်စတက်အရေး(ရ်)ကို အထောက်အကူမပြုနိုင်ပါ။"
#: sc/inc/globstr.hrc:390
+msgctxt "STR_ERR_LONG_BAD_ARRAY_CONTENT"
+msgid "Unsupported inline array content."
+msgstr ""
+
+#: sc/inc/globstr.hrc:391
msgctxt "STR_UNDO_TEXTTOCOLUMNS"
msgid "Text to Columns"
msgstr "ကော်လံများအတွင်းသို့ စာသားထည့်ရန်"
-#: sc/inc/globstr.hrc:391
+#: sc/inc/globstr.hrc:392
msgctxt "STR_DOC_UPDATED"
msgid "Your spreadsheet has been updated with changes saved by other users."
msgstr "အခြားအသုံးပြုသူ ပြောင်းလဲသိမ်းဆည်းထားသည့် နောက်ဆုံးသစ်လွင်မှုများကို သင့်စာရွက်ပေါ်တွင် ထားရှိသည်။"
-#: sc/inc/globstr.hrc:392
+#: sc/inc/globstr.hrc:393
msgctxt "STR_DOC_WILLBESAVED"
msgid ""
"The spreadsheet must be saved now to activate sharing mode.\n"
@@ -1888,7 +1893,7 @@ msgstr ""
"\n"
"ဆက်လက်လုပ်ဆောင်ရန် ဆန္ဒရှိပါသလား"
-#: sc/inc/globstr.hrc:393
+#: sc/inc/globstr.hrc:394
msgctxt "STR_DOC_WILLNOTBESAVED"
msgid ""
"Already resolved merge conflicts will be lost and your changes to the shared spreadsheet will not be saved.\n"
@@ -1899,7 +1904,7 @@ msgstr ""
"\n"
"ဆက်လက်လုပ်ဆောင်ရန် ဆန္ဒရှိပါသလား"
-#: sc/inc/globstr.hrc:394
+#: sc/inc/globstr.hrc:395
msgctxt "STR_DOC_DISABLESHARED"
msgid ""
"Disabling shared mode of a spreadsheet hinders all other users of the shared spreadsheet to merge back their work.\n"
@@ -1910,7 +1915,7 @@ msgstr ""
"\n"
"ဆက်လက်လုပ်ဆောင်ရန် ဆန္ဒရှိပါသလား"
-#: sc/inc/globstr.hrc:395
+#: sc/inc/globstr.hrc:396
msgctxt "STR_DOC_NOLONGERSHARED"
msgid ""
"This spreadsheet is no longer in shared mode.\n"
@@ -1921,7 +1926,7 @@ msgstr ""
"\n"
"ဖိုင်တစ်ခုကို ပိုင်းခြားရန်နှင့် စာရွက်လွှာကို ဝေမျှရန် လက်ဖြင့်ပေါင်းစည်းမှုများ ပြုထားသည့် သင့်စာရွက်လွှာကို သိမ်းဆည်းပါ။"
-#: sc/inc/globstr.hrc:396
+#: sc/inc/globstr.hrc:397
msgctxt "STR_FILE_LOCKED_TRY_LATER"
msgid ""
"The shared spreadsheet file is locked due to a merge in progress by user: '%1'\n"
@@ -1932,7 +1937,7 @@ msgstr ""
"\n"
"သော့ကျသွားသည့် ဖိုင်ကို အသုံးမပြုနိုင်ပါ။ နောက်တကြိမ် ထပ်မံကြိုးစားပါ။"
-#: sc/inc/globstr.hrc:397
+#: sc/inc/globstr.hrc:398
msgctxt "STR_FILE_LOCKED_SAVE_LATER"
msgid ""
"The shared spreadsheet file is locked due to a merge in progress by user: '%1'\n"
@@ -1943,153 +1948,153 @@ msgstr ""
"\n"
"ပြောင်းလဲမှုများကို သိမ်းဆည်းရန် ထပ်မံကြိုးစားပါ။"
-#: sc/inc/globstr.hrc:398
+#: sc/inc/globstr.hrc:399
msgctxt "STR_UNKNOWN_USER"
msgid "Unknown User"
msgstr "အသုံးပြုသူအမည်မသိပါ-"
-#: sc/inc/globstr.hrc:399
+#: sc/inc/globstr.hrc:400
msgctxt "STR_SHAPE_AUTOSHAPE"
msgid "AutoShape"
msgstr ""
-#: sc/inc/globstr.hrc:400
+#: sc/inc/globstr.hrc:401
msgctxt "STR_SHAPE_RECTANGLE"
msgid "Rectangle"
msgstr "ထောင့်မှန်စတုဂံ"
-#: sc/inc/globstr.hrc:401
+#: sc/inc/globstr.hrc:402
#, fuzzy
msgctxt "STR_SHAPE_LINE"
msgid "Line"
msgstr "သက်တမ်း။"
-#: sc/inc/globstr.hrc:402
+#: sc/inc/globstr.hrc:403
msgctxt "STR_SHAPE_OVAL"
msgid "Oval"
msgstr "ဘဲဥပုံ"
-#: sc/inc/globstr.hrc:403
+#: sc/inc/globstr.hrc:404
msgctxt "STR_FORM_BUTTON"
msgid "Button"
msgstr "ခလုတ်"
-#: sc/inc/globstr.hrc:404
+#: sc/inc/globstr.hrc:405
#, fuzzy
msgctxt "STR_FORM_CHECKBOX"
msgid "Check Box"
msgstr "သေတ္တာ စစ်ဆေးပါ"
-#: sc/inc/globstr.hrc:405
+#: sc/inc/globstr.hrc:406
#, fuzzy
msgctxt "STR_FORM_OPTIONBUTTON"
msgid "Option Button"
msgstr "နှိပ်ရန် ခလုတ် ရွေးပိုင်ခွင့်"
-#: sc/inc/globstr.hrc:406
+#: sc/inc/globstr.hrc:407
msgctxt "STR_FORM_LABEL"
msgid "Label"
msgstr "အညွှန်း"
-#: sc/inc/globstr.hrc:407
+#: sc/inc/globstr.hrc:408
#, fuzzy
msgctxt "STR_FORM_LISTBOX"
msgid "List Box"
msgstr "စာရင်းသေတ္တာ"
-#: sc/inc/globstr.hrc:408
+#: sc/inc/globstr.hrc:409
#, fuzzy
msgctxt "STR_FORM_GROUPBOX"
msgid "Group Box"
msgstr "အုပ်စု သေတ္တာ"
-#: sc/inc/globstr.hrc:409
+#: sc/inc/globstr.hrc:410
msgctxt "STR_FORM_DROPDOWN"
msgid "Drop Down"
msgstr "အောက်သို့ ချပါ"
-#: sc/inc/globstr.hrc:410
+#: sc/inc/globstr.hrc:411
msgctxt "STR_FORM_SPINNER"
msgid "Spinner"
msgstr ""
-#: sc/inc/globstr.hrc:411
+#: sc/inc/globstr.hrc:412
#, fuzzy
msgctxt "STR_FORM_SCROLLBAR"
msgid "Scroll Bar"
msgstr "စာကြောင်းများ ထက်အောက် ရွှေ့သောဘား"
-#: sc/inc/globstr.hrc:412
+#: sc/inc/globstr.hrc:413
msgctxt "STR_STYLE_FAMILY_CELL"
msgid "Cell Styles"
msgstr "~ဆဲလ်အကွက်စတိုင်လ်များ"
-#: sc/inc/globstr.hrc:413
+#: sc/inc/globstr.hrc:414
msgctxt "STR_STYLE_FAMILY_PAGE"
msgid "Page Styles"
msgstr "စာမျက်နှာစတိုင်လ်များ"
-#: sc/inc/globstr.hrc:414
+#: sc/inc/globstr.hrc:415
msgctxt "STR_ERR_DATAPILOTSOURCE"
msgid "Pivot table source data is invalid."
msgstr "ပေးထားသော စာကြောင်းသည် မှန်ကန်မှုမရှိပါ။"
-#: sc/inc/globstr.hrc:415
+#: sc/inc/globstr.hrc:416
msgctxt "STR_OPTIONS_WARN_SEPARATORS"
msgid "Because the current formula separator settings conflict with the locale, the formula separators have been reset to their default values."
msgstr ""
-#: sc/inc/globstr.hrc:416
+#: sc/inc/globstr.hrc:417
msgctxt "STR_UNDO_INSERT_CURRENT_DATE"
msgid "Insert Current Date"
msgstr ""
-#: sc/inc/globstr.hrc:417
+#: sc/inc/globstr.hrc:418
msgctxt "STR_UNDO_INSERT_CURRENT_TIME"
msgid "Insert Current Time"
msgstr ""
-#: sc/inc/globstr.hrc:418
+#: sc/inc/globstr.hrc:419
msgctxt "STR_MANAGE_NAMES"
msgid "Manage Names..."
msgstr "ကန့်သတ်ထားသောအမည်များ"
-#: sc/inc/globstr.hrc:419
+#: sc/inc/globstr.hrc:420
msgctxt "STR_HEADER_NAME"
msgid "Name"
msgstr "အမည်"
-#: sc/inc/globstr.hrc:420
+#: sc/inc/globstr.hrc:421
msgctxt "STR_HEADER_RANGE_OR_EXPR"
msgid "Range or formula expression"
msgstr ""
-#: sc/inc/globstr.hrc:421
+#: sc/inc/globstr.hrc:422
msgctxt "STR_HEADER_SCOPE"
msgid "Scope"
msgstr "လုပ်ငန်းနယ်ပယ်"
-#: sc/inc/globstr.hrc:422
+#: sc/inc/globstr.hrc:423
msgctxt "STR_MULTI_SELECT"
msgid "(multiple)"
msgstr ""
-#: sc/inc/globstr.hrc:423
+#: sc/inc/globstr.hrc:424
msgctxt "STR_GLOBAL_SCOPE"
msgid "Document (Global)"
msgstr "မှတ်တမ်းမှတ်ရာပိတ်ပြီး"
-#: sc/inc/globstr.hrc:424
+#: sc/inc/globstr.hrc:425
msgctxt "STR_ERR_NAME_EXISTS"
msgid "Invalid name. Already in use for the selected scope."
msgstr ""
-#: sc/inc/globstr.hrc:425
+#: sc/inc/globstr.hrc:426
msgctxt "STR_ERR_NAME_INVALID"
msgid "Invalid name. Only use letters, numbers and underscore."
msgstr ""
-#: sc/inc/globstr.hrc:426
+#: sc/inc/globstr.hrc:427
msgctxt "STR_UNSAVED_EXT_REF"
msgid ""
"This Document contains external references to unsaved documents.\n"
@@ -2097,219 +2102,219 @@ msgid ""
"Do you want to continue?"
msgstr ""
-#: sc/inc/globstr.hrc:427
+#: sc/inc/globstr.hrc:428
msgctxt "STR_CLOSE_WITH_UNSAVED_REFS"
msgid "This Document is referenced by another document and not yet saved. Closing it without saving will result in data loss."
msgstr ""
-#: sc/inc/globstr.hrc:428
+#: sc/inc/globstr.hrc:429
msgctxt "STR_HEADER_RANGE"
msgid "Range"
msgstr "ကန့်သတ်ချက်နယ်ပယ်"
-#: sc/inc/globstr.hrc:429
+#: sc/inc/globstr.hrc:430
msgctxt "STR_HEADER_COND"
msgid "First Condition"
msgstr ""
-#: sc/inc/globstr.hrc:430
+#: sc/inc/globstr.hrc:431
msgctxt "STR_COND_CONDITION"
msgid "Cell value is"
msgstr "ဆဲလ်အကွက်တန်ဖိုးသည်"
-#: sc/inc/globstr.hrc:431
+#: sc/inc/globstr.hrc:432
msgctxt "STR_COND_COLORSCALE"
msgid "ColorScale"
msgstr ""
-#: sc/inc/globstr.hrc:432
+#: sc/inc/globstr.hrc:433
msgctxt "STR_COND_DATABAR"
msgid "DataBar"
msgstr ""
-#: sc/inc/globstr.hrc:433
+#: sc/inc/globstr.hrc:434
msgctxt "STR_COND_ICONSET"
msgid "IconSet"
msgstr ""
-#: sc/inc/globstr.hrc:434
+#: sc/inc/globstr.hrc:435
msgctxt "STR_COND_BETWEEN"
msgid "between"
msgstr "အကြား"
-#: sc/inc/globstr.hrc:435
+#: sc/inc/globstr.hrc:436
msgctxt "STR_COND_NOTBETWEEN"
msgid "not between"
msgstr "ကြားမဟုတ်"
-#: sc/inc/globstr.hrc:436
+#: sc/inc/globstr.hrc:437
msgctxt "STR_COND_UNIQUE"
msgid "unique"
msgstr ""
-#: sc/inc/globstr.hrc:437
+#: sc/inc/globstr.hrc:438
msgctxt "STR_COND_DUPLICATE"
msgid "duplicate"
msgstr "မူပွားပါ"
-#: sc/inc/globstr.hrc:438
+#: sc/inc/globstr.hrc:439
msgctxt "STR_COND_FORMULA"
msgid "Formula is"
msgstr "ပုံသေနည်းသည်"
-#: sc/inc/globstr.hrc:439
+#: sc/inc/globstr.hrc:440
msgctxt "STR_COND_TOP10"
msgid "Top Elements"
msgstr ""
-#: sc/inc/globstr.hrc:440
+#: sc/inc/globstr.hrc:441
msgctxt "STR_COND_BOTTOM10"
msgid "Bottom Elements"
msgstr ""
-#: sc/inc/globstr.hrc:441
+#: sc/inc/globstr.hrc:442
msgctxt "STR_COND_TOP_PERCENT"
msgid "Top Percent"
msgstr ""
-#: sc/inc/globstr.hrc:442
+#: sc/inc/globstr.hrc:443
msgctxt "STR_COND_DATE"
msgid "Date is"
msgstr ""
-#: sc/inc/globstr.hrc:443
+#: sc/inc/globstr.hrc:444
msgctxt "STR_COND_BOTTOM_PERCENT"
msgid "Bottom Percent"
msgstr ""
-#: sc/inc/globstr.hrc:444
+#: sc/inc/globstr.hrc:445
msgctxt "STR_COND_ABOVE_AVERAGE"
msgid "Above Average"
msgstr ""
-#: sc/inc/globstr.hrc:445
+#: sc/inc/globstr.hrc:446
msgctxt "STR_COND_BELOW_AVERAGE"
msgid "Below Average"
msgstr ""
-#: sc/inc/globstr.hrc:446
+#: sc/inc/globstr.hrc:447
msgctxt "STR_COND_ABOVE_EQUAL_AVERAGE"
msgid "Above or equal Average"
msgstr ""
-#: sc/inc/globstr.hrc:447
+#: sc/inc/globstr.hrc:448
msgctxt "STR_COND_BELOW_EQUAL_AVERAGE"
msgid "Below or equal Average"
msgstr ""
-#: sc/inc/globstr.hrc:448
+#: sc/inc/globstr.hrc:449
msgctxt "STR_COND_ERROR"
msgid "an Error code"
msgstr "အမှားကုဒ်"
-#: sc/inc/globstr.hrc:449
+#: sc/inc/globstr.hrc:450
msgctxt "STR_COND_NOERROR"
msgid "not an Error code"
msgstr "အမှားကုဒ်"
-#: sc/inc/globstr.hrc:450
+#: sc/inc/globstr.hrc:451
msgctxt "STR_COND_BEGINS_WITH"
msgid "Begins with"
msgstr "ဖြင့်စတင်သည်"
-#: sc/inc/globstr.hrc:451
+#: sc/inc/globstr.hrc:452
msgctxt "STR_COND_ENDS_WITH"
msgid "Ends with"
msgstr "ဖြင့်အဆုံးသတ်သည်"
-#: sc/inc/globstr.hrc:452
+#: sc/inc/globstr.hrc:453
msgctxt "STR_COND_CONTAINS"
msgid "Contains"
msgstr "ပါဝင်သည်"
-#: sc/inc/globstr.hrc:453
+#: sc/inc/globstr.hrc:454
msgctxt "STR_COND_NOT_CONTAINS"
msgid "Not Contains"
msgstr ""
-#: sc/inc/globstr.hrc:454
+#: sc/inc/globstr.hrc:455
#, fuzzy
msgctxt "STR_COND_TODAY"
msgid "today"
msgstr "ယနေ့"
-#: sc/inc/globstr.hrc:455
+#: sc/inc/globstr.hrc:456
#, fuzzy
msgctxt "STR_COND_YESTERDAY"
msgid "yesterday"
msgstr "မနေ့က"
-#: sc/inc/globstr.hrc:456
+#: sc/inc/globstr.hrc:457
msgctxt "STR_COND_TOMORROW"
msgid "tomorrow"
msgstr ""
-#: sc/inc/globstr.hrc:457
+#: sc/inc/globstr.hrc:458
msgctxt "STR_COND_LAST7DAYS"
msgid "in the last 7 days"
msgstr ""
-#: sc/inc/globstr.hrc:458
+#: sc/inc/globstr.hrc:459
msgctxt "STR_COND_THISWEEK"
msgid "this week"
msgstr ""
-#: sc/inc/globstr.hrc:459
+#: sc/inc/globstr.hrc:460
msgctxt "STR_COND_LASTWEEK"
msgid "last week"
msgstr ""
-#: sc/inc/globstr.hrc:460
+#: sc/inc/globstr.hrc:461
msgctxt "STR_COND_NEXTWEEK"
msgid "next week"
msgstr ""
-#: sc/inc/globstr.hrc:461
+#: sc/inc/globstr.hrc:462
msgctxt "STR_COND_THISMONTH"
msgid "this month"
msgstr ""
-#: sc/inc/globstr.hrc:462
+#: sc/inc/globstr.hrc:463
msgctxt "STR_COND_LASTMONTH"
msgid "last month"
msgstr ""
-#: sc/inc/globstr.hrc:463
+#: sc/inc/globstr.hrc:464
msgctxt "STR_COND_NEXTMONTH"
msgid "next month"
msgstr ""
-#: sc/inc/globstr.hrc:464
+#: sc/inc/globstr.hrc:465
msgctxt "STR_COND_THISYEAR"
msgid "this year"
msgstr ""
-#: sc/inc/globstr.hrc:465
+#: sc/inc/globstr.hrc:466
msgctxt "STR_COND_LASTYEAR"
msgid "last year"
msgstr ""
-#: sc/inc/globstr.hrc:466
+#: sc/inc/globstr.hrc:467
msgctxt "STR_COND_NEXTYEAR"
msgid "next year"
msgstr ""
-#: sc/inc/globstr.hrc:467
+#: sc/inc/globstr.hrc:468
msgctxt "STR_COND_AND"
msgid "and"
msgstr "နှင့်"
-#: sc/inc/globstr.hrc:468
+#: sc/inc/globstr.hrc:469
msgctxt "STR_ERR_CONDFORMAT_PROTECTED"
msgid "Conditional Formats can not be created, deleted or changed in protected sheets."
msgstr ""
-#: sc/inc/globstr.hrc:469
+#: sc/inc/globstr.hrc:470
msgctxt "STR_EDIT_EXISTING_COND_FORMATS"
msgid ""
"The selected cell already contains conditional formatting. You can either edit the existing conditional format or you define a new overlapping conditional format.\n"
@@ -2317,7 +2322,7 @@ msgid ""
" Do you want to edit the existing conditional format?"
msgstr ""
-#: sc/inc/globstr.hrc:470
+#: sc/inc/globstr.hrc:471
msgctxt "STR_QUERY_FORMULA_RECALC_ONLOAD_ODS"
msgid ""
"This document was last saved by an application other than %PRODUCTNAME. Some formula cells may produce different results when recalculated.\n"
@@ -2325,7 +2330,7 @@ msgid ""
"Do you want to recalculate all formula cells in this document now?"
msgstr ""
-#: sc/inc/globstr.hrc:471
+#: sc/inc/globstr.hrc:472
msgctxt "STR_QUERY_FORMULA_RECALC_ONLOAD_XLS"
msgid ""
"This document was last saved by Excel. Some formula cells may produce different results when recalculated.\n"
@@ -2333,77 +2338,77 @@ msgid ""
"Do you want to recalculate all formula cells now?"
msgstr ""
-#: sc/inc/globstr.hrc:472
+#: sc/inc/globstr.hrc:473
msgctxt "STR_NO_INSERT_DELETE_OVER_PIVOT_TABLE"
msgid "You cannot insert or delete cells when the affected range intersects with pivot table."
msgstr ""
-#: sc/inc/globstr.hrc:473
+#: sc/inc/globstr.hrc:474
msgctxt "STR_DPFIELD_GROUP_BY_SECONDS"
msgid "Seconds"
msgstr "စက္ကန့်"
-#: sc/inc/globstr.hrc:474
+#: sc/inc/globstr.hrc:475
msgctxt "STR_DPFIELD_GROUP_BY_MINUTES"
msgid "Minutes"
msgstr "မိနစ်"
-#: sc/inc/globstr.hrc:475
+#: sc/inc/globstr.hrc:476
msgctxt "STR_DPFIELD_GROUP_BY_HOURS"
msgid "Hours"
msgstr "နာရီ"
-#: sc/inc/globstr.hrc:476
+#: sc/inc/globstr.hrc:477
msgctxt "STR_DPFIELD_GROUP_BY_DAYS"
msgid "Days"
msgstr "နေ့ရက်များ"
-#: sc/inc/globstr.hrc:477
+#: sc/inc/globstr.hrc:478
msgctxt "STR_DPFIELD_GROUP_BY_MONTHS"
msgid "Months"
msgstr "လများ"
-#: sc/inc/globstr.hrc:478
+#: sc/inc/globstr.hrc:479
msgctxt "STR_DPFIELD_GROUP_BY_QUARTERS"
msgid "Quarters"
msgstr "ရပ်ကွက်များ"
-#: sc/inc/globstr.hrc:479
+#: sc/inc/globstr.hrc:480
msgctxt "STR_DPFIELD_GROUP_BY_YEARS"
msgid "Years"
msgstr "ခုနှစ်များ"
-#: sc/inc/globstr.hrc:480
+#: sc/inc/globstr.hrc:481
msgctxt "STR_INVALIDVAL"
msgid "Invalid target value."
msgstr "မမှန်ကန်သော ညွှန်ကြားချက်တစ်ခု ပစ်မှတ် တန်ဖိုး ဖြစ်သည်။"
-#: sc/inc/globstr.hrc:481
+#: sc/inc/globstr.hrc:482
msgctxt "STR_INVALIDVAR"
msgid "Undefined name for variable cell."
msgstr "ကိန်းရှင် အကွက်အတွက် အမည် အဓိပ္ပါယ် မဖေါ်ပါ။"
-#: sc/inc/globstr.hrc:482
+#: sc/inc/globstr.hrc:483
msgctxt "STR_INVALIDFORM"
msgid "Undefined name as formula cell."
msgstr "အကွက် ပုံသေနည်းအဖြစ် အမည် အဓိပ္ပါယ် မဖေါ်ပါ။"
-#: sc/inc/globstr.hrc:483
+#: sc/inc/globstr.hrc:484
msgctxt "STR_NOFORMULA"
msgid "Formula cell must contain a formula."
msgstr ""
-#: sc/inc/globstr.hrc:484
+#: sc/inc/globstr.hrc:485
msgctxt "STR_INVALIDINPUT"
msgid "Invalid input."
msgstr "အချက်အလက်သွင်းမှုအမှား"
-#: sc/inc/globstr.hrc:485
+#: sc/inc/globstr.hrc:486
msgctxt "STR_INVALIDCONDITION"
msgid "Invalid condition."
msgstr "မှားယွင်းသော အခြေအနေ"
-#: sc/inc/globstr.hrc:486
+#: sc/inc/globstr.hrc:487
msgctxt "STR_QUERYREMOVE"
msgid ""
"Should the entry\n"
@@ -2411,137 +2416,137 @@ msgid ""
"be deleted?"
msgstr ""
-#: sc/inc/globstr.hrc:487
+#: sc/inc/globstr.hrc:488
msgctxt "STR_COPYLIST"
msgid "Copy List"
msgstr ""
-#: sc/inc/globstr.hrc:488
+#: sc/inc/globstr.hrc:489
msgctxt "STR_COPYFROM"
msgid "List from"
msgstr ""
-#: sc/inc/globstr.hrc:489
+#: sc/inc/globstr.hrc:490
msgctxt "STR_COPYERR"
msgid "Cells without text have been ignored."
msgstr ""
-#: sc/inc/globstr.hrc:490
+#: sc/inc/globstr.hrc:491
#, c-format
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%s-click to follow hyperlink:"
msgstr ""
-#: sc/inc/globstr.hrc:491
+#: sc/inc/globstr.hrc:492
msgctxt "STR_CLICKHYPERLINK"
msgid "click to open hyperlink:"
msgstr ""
-#: sc/inc/globstr.hrc:492
+#: sc/inc/globstr.hrc:493
msgctxt "STR_PRINT_PREVIEW_NODATA"
msgid "No Data"
msgstr ""
-#: sc/inc/globstr.hrc:493
+#: sc/inc/globstr.hrc:494
msgctxt "STR_PRINT_PREVIEW_EMPTY_RANGE"
msgid "Print Range Empty"
msgstr ""
-#: sc/inc/globstr.hrc:494
+#: sc/inc/globstr.hrc:495
#, fuzzy
msgctxt "STR_UNDO_CONDFORMAT"
msgid "Conditional Format"
msgstr "စီစဉ် ဖွဲ့စည်းမှု ပုံစံ အခြေအနေ"
-#: sc/inc/globstr.hrc:495
+#: sc/inc/globstr.hrc:496
#, fuzzy
msgctxt "STR_UNDO_CONDFORMAT_LIST"
msgid "Conditional Formats"
msgstr "စီစဉ် ဖွဲ့စည်းမှု ပုံစံ အခြေအနေ"
-#: sc/inc/globstr.hrc:496
+#: sc/inc/globstr.hrc:497
msgctxt "STR_UNDO_FORMULA_TO_VALUE"
msgid "Convert Formula To Value"
msgstr ""
-#: sc/inc/globstr.hrc:497
+#: sc/inc/globstr.hrc:498
msgctxt "STR_UNQUOTED_STRING"
msgid "Strings without quotes are interpreted as column/row labels."
msgstr ""
-#: sc/inc/globstr.hrc:498
+#: sc/inc/globstr.hrc:499
msgctxt "STR_ENTER_VALUE"
msgid "Enter a value!"
msgstr ""
-#: sc/inc/globstr.hrc:499
+#: sc/inc/globstr.hrc:500
msgctxt "STR_TABLE_COUNT"
msgid "Sheet %1 of %2"
msgstr ""
-#: sc/inc/globstr.hrc:500
+#: sc/inc/globstr.hrc:501
msgctxt "STR_FUNCTIONS_FOUND"
msgid "%1 and %2 more"
msgstr ""
-#: sc/inc/globstr.hrc:501
+#: sc/inc/globstr.hrc:502
msgctxt "STR_GENERAL"
msgid "General"
msgstr "အထွေထွေ"
-#: sc/inc/globstr.hrc:502
+#: sc/inc/globstr.hrc:503
#, fuzzy
msgctxt "STR_NUMBER"
msgid "Number"
msgstr "နံပါတ်များ"
-#: sc/inc/globstr.hrc:503
+#: sc/inc/globstr.hrc:504
msgctxt "STR_PERCENT"
msgid "Percent"
msgstr "ရာခိုင်နှုန်း"
-#: sc/inc/globstr.hrc:504
+#: sc/inc/globstr.hrc:505
msgctxt "STR_CURRENCY"
msgid "Currency"
msgstr "အများလက်ခံနိုင်သော"
-#: sc/inc/globstr.hrc:505
+#: sc/inc/globstr.hrc:506
msgctxt "STR_DATE"
msgid "Date"
msgstr "ရက်စွဲ"
-#: sc/inc/globstr.hrc:506
+#: sc/inc/globstr.hrc:507
msgctxt "STR_TIME"
msgid "Time"
msgstr "အချိန်"
-#: sc/inc/globstr.hrc:507
+#: sc/inc/globstr.hrc:508
msgctxt "STR_SCIENTIFIC"
msgid "Scientific"
msgstr "သိပ္ပံဆိုင်ရာ"
-#: sc/inc/globstr.hrc:508
+#: sc/inc/globstr.hrc:509
#, fuzzy
msgctxt "STR_FRACTION"
msgid "Fraction"
msgstr "လုပ်ဆောင်ချက်"
-#: sc/inc/globstr.hrc:509
+#: sc/inc/globstr.hrc:510
msgctxt "STR_BOOLEAN_VALUE"
msgid "Boolean Value"
msgstr "ဘိုလီယမ်တန်ဖိုး"
-#: sc/inc/globstr.hrc:510
+#: sc/inc/globstr.hrc:511
msgctxt "STR_TEXT"
msgid "Text"
msgstr "စာသား"
-#: sc/inc/globstr.hrc:511
+#: sc/inc/globstr.hrc:512
msgctxt "STR_QUERY_PIVOTTABLE_DELTAB"
msgid "The selected sheet(s) contain source data of related pivot tables that will be lost. Are you sure you want to delete the selected sheet(s)?"
msgstr ""
-#: sc/inc/globstr.hrc:512
+#: sc/inc/globstr.hrc:513
msgctxt "STR_ERR_NAME_INVALID_CELL_REF"
msgid "Invalid name. Reference to a cell, or a range of cells not allowed."
msgstr ""
@@ -10850,8 +10855,8 @@ msgstr "နည်းလမ်း"
#: sc/inc/scfuncs.hrc:3010
msgctxt "SC_OPCODE_T_TEST"
-msgid "Mode specifies the number of distribution tails to return. 1= one-tailed, 2 = two-tailed distribution"
-msgstr "နည်းလမ်းသည် ပြန်သွားရန် အမြှီးများ ဖြန့်ဝေခြင်း၏ နံပါတ် သတ်မှတ်သည်။ ၁ = အမြှီး - တစ်ခု၊ ၂ = အမြှီး - နှစ်ခု ဖြန့်ဝေခြင်း"
+msgid "Mode specifies the number of distribution tails to return. 1 = one-tailed, 2 = two-tailed distribution"
+msgstr ""
#: sc/inc/scfuncs.hrc:3011
msgctxt "SC_OPCODE_T_TEST"
@@ -10897,8 +10902,8 @@ msgstr "နည်းလမ်း"
#: sc/inc/scfuncs.hrc:3024
msgctxt "SC_OPCODE_T_TEST_MS"
-msgid "Mode specifies the number of distribution tails to return. 1= one-tailed, 2 = two-tailed distribution"
-msgstr "နည်းလမ်းသည် ပြန်သွားရန် အမြှီးများ ဖြန့်ဝေခြင်း၏ နံပါတ် သတ်မှတ်သည်။ ၁ = အမြှီး - တစ်ခု၊ ၂ = အမြှီး - နှစ်ခု ဖြန့်ဝေခြင်း"
+msgid "Mode specifies the number of distribution tails to return. 1 = one-tailed, 2 = two-tailed distribution"
+msgstr ""
#: sc/inc/scfuncs.hrc:3025
msgctxt "SC_OPCODE_T_TEST_MS"
@@ -18702,23 +18707,23 @@ msgctxt "mergecellsdialog|MergeCellsDialog"
msgid "Merge Cells"
msgstr "ဆဲလ်အကွက်များပေါင်းပါ"
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:81
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:84
msgctxt "mergecellsdialog|label"
msgid "Some cells are not empty."
msgstr ""
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:96
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:99
#, fuzzy
msgctxt "mergecellsdialog|move-cells-radio"
msgid "Move the contents of the hidden cells into the first cell"
msgstr "ခေတ္တဖျောက်ထားသည့် မာတိကာဆဲလ်အကွက်များကို ပထမဆုံး ဆဲလ်အကွက်အတွင်းသို့ ရွှေ့ပြောင်းသင့်သလား။"
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:112
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:115
msgctxt "mergecellsdialog|empty-cells-radio"
msgid "Empty the contents of the hidden cells"
msgstr ""
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:128
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:131
msgctxt "mergecellsdialog|keep-content-radio"
msgid "Keep the contents of the hidden cells"
msgstr ""
diff --git a/source/my/sd/messages.po b/source/my/sd/messages.po
index 66d85b3b8e5..719e4191034 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+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"
@@ -13,177 +13,177 @@ msgstr ""
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-#: sd/inc/DocumentRenderer.hrc:29
+#: sd/inc/DocumentRenderer.hrc:27
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Slides"
msgstr "ရုပ်ပုံဆလိုက်များ"
-#: sd/inc/DocumentRenderer.hrc:30
+#: sd/inc/DocumentRenderer.hrc:28
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Handouts"
msgstr "လက်ကမ်းစာလွှာများ"
-#: sd/inc/DocumentRenderer.hrc:31
+#: sd/inc/DocumentRenderer.hrc:29
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Notes"
msgstr "မှတ်ချက်များ"
-#: sd/inc/DocumentRenderer.hrc:32
+#: sd/inc/DocumentRenderer.hrc:30
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Outline"
msgstr "ကောက်ကြောင်း"
-#: sd/inc/DocumentRenderer.hrc:37
+#: sd/inc/DocumentRenderer.hrc:35
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "According to layout"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:38
+#: sd/inc/DocumentRenderer.hrc:36
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "1"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:39
+#: sd/inc/DocumentRenderer.hrc:37
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "2"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:40
+#: sd/inc/DocumentRenderer.hrc:38
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "3"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:41
+#: sd/inc/DocumentRenderer.hrc:39
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "4"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:42
+#: sd/inc/DocumentRenderer.hrc:40
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "6"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:43
+#: sd/inc/DocumentRenderer.hrc:41
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "9"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:48
+#: sd/inc/DocumentRenderer.hrc:46
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_ORDER_CHOICES"
msgid "Left to right, then down"
msgstr "ဘယ်မှညာသို့၊ ထို့နောက်အောက်သို့"
-#: sd/inc/DocumentRenderer.hrc:49
+#: sd/inc/DocumentRenderer.hrc:47
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_ORDER_CHOICES"
msgid "Top to bottom, then right"
msgstr "အပေါ်မှအောက်သို့၊ ထို့နောက် ညာဘက်သို့"
-#: sd/inc/DocumentRenderer.hrc:54
+#: sd/inc/DocumentRenderer.hrc:52
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Original colors"
msgstr "မူလအ ရောင်များ"
-#: sd/inc/DocumentRenderer.hrc:55
+#: sd/inc/DocumentRenderer.hrc:53
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Grayscale"
msgstr "မီးခိုးရောင်စကေးများ"
-#: sd/inc/DocumentRenderer.hrc:56
+#: sd/inc/DocumentRenderer.hrc:54
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Black & white"
msgstr "အဖြူ၊ အမဲ"
-#: sd/inc/DocumentRenderer.hrc:61
+#: sd/inc/DocumentRenderer.hrc:59
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Original size"
msgstr "မူလအရွယ်အစား"
-#: sd/inc/DocumentRenderer.hrc:62
+#: sd/inc/DocumentRenderer.hrc:60
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Fit to printable page"
msgstr "ပရင့်ထုတ်သောစာမျက်နှာကိုသတ်မှတ်ပါ"
-#: sd/inc/DocumentRenderer.hrc:63
+#: sd/inc/DocumentRenderer.hrc:61
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Distribute on multiple sheets of paper"
msgstr "စာရွက်များဖြန့်ဝေပါ"
-#: sd/inc/DocumentRenderer.hrc:64
+#: sd/inc/DocumentRenderer.hrc:62
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Tile sheet of paper with repeated slides"
msgstr "စာရွက်တွင်ဆလိုက်များထပ်ခါထပ်ခါအကွက်ချပါ"
-#: sd/inc/DocumentRenderer.hrc:69
+#: sd/inc/DocumentRenderer.hrc:67
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Original size"
msgstr "မူလအရွယ်အစား"
-#: sd/inc/DocumentRenderer.hrc:70
+#: sd/inc/DocumentRenderer.hrc:68
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Fit to printable page"
msgstr "ပရင့်ထုတ်သောစာမျက်နှာကိုသတ်မှတ်ပါ"
-#: sd/inc/DocumentRenderer.hrc:71
+#: sd/inc/DocumentRenderer.hrc:69
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Distribute on multiple sheets of paper"
msgstr "စာရွက်များဖြန့်ဝေပါ"
-#: sd/inc/DocumentRenderer.hrc:72
+#: sd/inc/DocumentRenderer.hrc:70
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Tile sheet of paper with repeated pages"
msgstr "စာရွက်တွင်စာမျက်နှာများထပ်ခါထပ်ခါအကွက်ချပါ"
-#: sd/inc/DocumentRenderer.hrc:77
+#: sd/inc/DocumentRenderer.hrc:75
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "All pages"
msgstr "စာမျက်နှာအားလုံး"
-#: sd/inc/DocumentRenderer.hrc:78
+#: sd/inc/DocumentRenderer.hrc:76
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "Front sides / right pages"
msgstr "အရှေ့အနားများ/ညာဘက်စာမျက်နှာများ"
-#: sd/inc/DocumentRenderer.hrc:79
+#: sd/inc/DocumentRenderer.hrc:77
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "Back sides / left pages"
msgstr "အနောက်အနားများ/ဘယ်ဘက်စာမျက်နှာများ"
-#: sd/inc/DocumentRenderer.hrc:84
+#: sd/inc/DocumentRenderer.hrc:82
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~All slides"
msgstr "ရုပ်ပုံဆလိုက်များ အားလုံး"
-#: sd/inc/DocumentRenderer.hrc:85
+#: sd/inc/DocumentRenderer.hrc:83
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~Slides"
msgstr "ရုပ်ပုံဆလိုက်များ"
-#: sd/inc/DocumentRenderer.hrc:86
+#: sd/inc/DocumentRenderer.hrc:84
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Se~lection"
msgstr "~လက်ရွေးစင်"
-#: sd/inc/DocumentRenderer.hrc:91
+#: sd/inc/DocumentRenderer.hrc:89
#, fuzzy
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~All pages"
msgstr "⁠~စာမျက်နှာများအားလုံး"
-#: sd/inc/DocumentRenderer.hrc:92
+#: sd/inc/DocumentRenderer.hrc:90
#, fuzzy
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Pa~ges"
msgstr "စာမျက်နှာများ"
-#: sd/inc/DocumentRenderer.hrc:93
+#: sd/inc/DocumentRenderer.hrc:91
#, fuzzy
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Se~lection"
diff --git a/source/my/svx/messages.po b/source/my/svx/messages.po
index 6e08dd2af73..2cf8f6f675a 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: 2018-05-16 16:53+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+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"
@@ -5513,7 +5513,7 @@ msgstr ""
#: svx/uiconfig/ui/safemodedialog.ui:432
msgctxt "safemodedialog|btn_create_zip"
-msgid "Create Zip Archive from User Profile"
+msgid "Archive User Profile"
msgstr ""
#: svx/uiconfig/ui/safemodedialog.ui:445
@@ -9174,9 +9174,9 @@ msgid "Red"
msgstr "အနီရောင်"
#: include/svx/strings.hrc:565
-msgctxt "RID_SVXSTR_COLOR_VIOLET"
-msgid "Violet"
-msgstr "ခရမ်းရောင်"
+msgctxt "RID_SVXSTR_COLOR_MAGENTA"
+msgid "Magenta"
+msgstr "မရမ်း"
#: include/svx/strings.hrc:566
msgctxt "RID_SVXSTR_COLOR_PURPLE"
@@ -9242,8 +9242,8 @@ msgid "Light Red"
msgstr "အနီဖျော့"
#: include/svx/strings.hrc:579
-msgctxt "RID_SVXSTR_COLOR_LIGHTVIOLET"
-msgid "Light Violet"
+msgctxt "RID_SVXSTR_COLOR_LIGHTMAGENTA"
+msgid "Light Magenta"
msgstr ""
#: include/svx/strings.hrc:580
@@ -9309,8 +9309,8 @@ msgid "Dark Red"
msgstr "အနီရင့်ရောင်"
#: include/svx/strings.hrc:593
-msgctxt "RID_SVXSTR_COLOR_DARKVIOLET1"
-msgid "Dark Violet"
+msgctxt "RID_SVXSTR_COLOR_DARKMAGENTA"
+msgid "Dark Magenta"
msgstr ""
#: include/svx/strings.hrc:594
@@ -9345,55 +9345,55 @@ msgstr ""
#. Elements of the Tonal color palette
#: include/svx/strings.hrc:601
+msgctxt "RID_SVXSTR_COLOR_VIOLET"
+msgid "Violet"
+msgstr "ခရမ်းရောင်"
+
+#: include/svx/strings.hrc:602
msgctxt "RID_SVXSTR_COLOR_VIOLET_OUG"
msgid "Violet (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:602
+#: include/svx/strings.hrc:603
msgctxt "RID_SVXSTR_COLOR_BLUE_OUG"
msgid "Blue (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:603
+#: include/svx/strings.hrc:604
msgctxt "RID_SVXSTR_COLOR_AZURE_OUG"
msgid "Azure (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:604
+#: include/svx/strings.hrc:605
msgctxt "RID_SVXSTR_COLOR_SPRINGGREEN_OUG"
msgid "Spring Green (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:605
+#: include/svx/strings.hrc:606
msgctxt "RID_SVXSTR_COLOR_GREEN_OUG"
msgid "Green (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:606
+#: include/svx/strings.hrc:607
msgctxt "RID_SVXSTR_COLOR_CHARTREUSEGREEN_OUG"
msgid "Chartreuse Green (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:607
+#: include/svx/strings.hrc:608
msgctxt "RID_SVXSTR_COLOR_ORANGE_OUG"
msgid "Orange (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:608
+#: include/svx/strings.hrc:609
msgctxt "RID_SVXSTR_COLOR_RED_OUG"
msgid "Red (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:609
+#: include/svx/strings.hrc:610
msgctxt "RID_SVXSTR_COLOR_ROSE_OUG"
msgid "Rose (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:610
-msgctxt "RID_SVXSTR_COLOR_MAGENTA"
-msgid "Magenta"
-msgstr "မရမ်း"
-
#: include/svx/strings.hrc:611
msgctxt "RID_SVXSTR_COLOR_AZURE"
msgid "Azure"
@@ -12549,13 +12549,13 @@ msgstr ""
#: include/svx/strings.hrc:1273
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_6"
-msgid "Check mark bullets"
-msgstr "အမှတ်သင်္ကေတများကိုစစ်ပါ"
+msgid "Cross mark bullets"
+msgstr ""
#: include/svx/strings.hrc:1274
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_7"
-msgid "Tick mark bullets"
-msgstr "အမှတ်အထူသင်္ကေတများ"
+msgid "Check mark bullets"
+msgstr ""
#: include/svx/strings.hrc:1275
#, fuzzy
diff --git a/source/my/sw/messages.po b/source/my/sw/messages.po
index 737b31c3600..de0e96e3b20 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: 2018-05-22 13:17+0200\n"
+"POT-Creation-Date: 2018-06-12 14:41+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"
@@ -1218,13 +1218,13 @@ msgstr "ကိုးကားချက်"
#: sw/inc/strings.hrc:172
msgctxt "STR_POOLCOLL_TOX_ILLUSH"
-msgid "Illustration Index Heading"
-msgstr "ရုပ်ပုံပြခြင်း အညွှန်း ခေါင်းစဉ်"
+msgid "Figure Index Heading"
+msgstr ""
#: sw/inc/strings.hrc:173
msgctxt "STR_POOLCOLL_TOX_ILLUS1"
-msgid "Illustration Index 1"
-msgstr "ရုပ်ပုံပြခြင်း အညွှန်း ၁"
+msgid "Figure Index 1"
+msgstr ""
#: sw/inc/strings.hrc:174
msgctxt "STR_POOLCOLL_TOX_OBJECTH"
@@ -3704,10 +3704,9 @@ msgid "Table of Objects"
msgstr ""
#: sw/inc/strings.hrc:672
-#, fuzzy
msgctxt "STR_TOX_ILL"
-msgid "Illustration Index"
-msgstr "ရုပ်ပုံပြခြင်း အညွှန်း ၁"
+msgid "Table of Figures"
+msgstr ""
#: sw/inc/strings.hrc:673
#, c-format
@@ -9652,81 +9651,81 @@ msgctxt "footnotepage|label5"
msgid "Continuation Notice"
msgstr "ဆင့်စာ အဆက်"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:49
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:55
#, fuzzy
msgctxt "footnotesendnotestabpage|ftnntnum"
msgid "_Restart numbering"
msgstr "နံပါတ်တပ်ခြင်း ပြန်လည်စတင်ပါ"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:91
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:93
#, fuzzy
msgctxt "footnotesendnotestabpage|ftnoffset_label"
msgid "_Start at:"
msgstr "၌ စတင်ပါ"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:112
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:111
msgctxt "footnotesendnotestabpage|ftnntnumfmt"
msgid "Custom _format"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:155
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:150
#, fuzzy
msgctxt "footnotesendnotestabpage|ftnsuffix_label"
msgid "Aft_er:"
msgstr "ပြီးနောက်"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:199
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:188
#, fuzzy
msgctxt "footnotesendnotestabpage|ftnprefix_label"
msgid "Be_fore:"
msgstr "မတိုင်မီ"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:228
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:212
msgctxt "footnotesendnotestabpage|ftnntattextend"
msgid "Collec_t at end of text"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:252
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:234
#, fuzzy
msgctxt "footnotesendnotestabpage|label1"
msgid "Footnotes"
msgstr "အောက်ခြေမှတ်စု"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:289
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:271
msgctxt "footnotesendnotestabpage|endntattextend"
msgid "C_ollect at end of section"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:315
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:295
#, fuzzy
msgctxt "footnotesendnotestabpage|endntnum"
msgid "_Restart numbering"
msgstr "နံပါတ်တပ်ခြင်း ပြန်လည်စတင်ပါ"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:357
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:333
#, fuzzy
msgctxt "footnotesendnotestabpage|endoffset_label"
msgid "_Start at:"
msgstr "၌ စတင်ပါ"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:378
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:351
msgctxt "footnotesendnotestabpage|endntnumfmt"
msgid "_Custom format"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:421
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:390
#, fuzzy
msgctxt "footnotesendnotestabpage|endsuffix_label"
msgid "Aft_er:"
msgstr "ပြီးနောက်"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:465
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:428
#, fuzzy
msgctxt "footnotesendnotestabpage|endprefix_label"
msgid "Be_fore:"
msgstr "မတိုင်မီ"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:500
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:458
#, fuzzy
msgctxt "footnotesendnotestabpage|label2"
msgid "Endnotes"
@@ -9759,27 +9758,27 @@ msgctxt "formatsectiondialog|notes"
msgid "Footnotes/Endnotes"
msgstr "အောက်ခြေမှတ်စု/အဆုံးသတ်မှတ်စု"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:63
+#: sw/uiconfig/swriter/ui/formattablepage.ui:77
msgctxt "formattablepage|nameft"
msgid "_Name"
msgstr "_အမည်"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:79
+#: sw/uiconfig/swriter/ui/formattablepage.ui:91
msgctxt "formattablepage|widthft"
msgid "W_idth"
msgstr "အကျယ်"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:110
+#: sw/uiconfig/swriter/ui/formattablepage.ui:120
msgctxt "formattablepage|relwidth"
msgid "Relati_ve"
msgstr "နှီးနွယ်ဆက်စပ်မှု"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:155
+#: sw/uiconfig/swriter/ui/formattablepage.ui:160
msgctxt "formattablepage|label45"
msgid "Properties"
msgstr "ပိုင်ဆိုင်မှု"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:194
+#: sw/uiconfig/swriter/ui/formattablepage.ui:195
msgctxt "formattablepage|leftft"
msgid "Lef_t"
msgstr "ဘယ်ဖက်"
@@ -9789,62 +9788,62 @@ msgctxt "formattablepage|rightft"
msgid "Ri_ght"
msgstr "ညာဖက်"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:228
+#: sw/uiconfig/swriter/ui/formattablepage.ui:226
msgctxt "formattablepage|aboveft"
msgid "_Above"
msgstr "_အထက်"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:245
+#: sw/uiconfig/swriter/ui/formattablepage.ui:241
msgctxt "formattablepage|belowft"
msgid "_Below"
msgstr "_အောက်"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:320
+#: sw/uiconfig/swriter/ui/formattablepage.ui:311
msgctxt "formattablepage|label46"
msgid "Spacing"
msgstr "နေရာလပ်သည်"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:362
+#: sw/uiconfig/swriter/ui/formattablepage.ui:349
msgctxt "formattablepage|full"
msgid "A_utomatic"
msgstr "အလိုအလျောက်"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:380
+#: sw/uiconfig/swriter/ui/formattablepage.ui:365
msgctxt "formattablepage|left"
msgid "_Left"
msgstr "_ဘယ်ဖက်"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:398
+#: sw/uiconfig/swriter/ui/formattablepage.ui:381
msgctxt "formattablepage|fromleft"
msgid "_From left"
msgstr "_ဘယ်ဘက်မှ"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:416
+#: sw/uiconfig/swriter/ui/formattablepage.ui:397
msgctxt "formattablepage|right"
msgid "R_ight"
msgstr "ညာဖက်"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:435
+#: sw/uiconfig/swriter/ui/formattablepage.ui:413
msgctxt "formattablepage|center"
msgid "_Center"
msgstr "ဗဟို"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:453
+#: sw/uiconfig/swriter/ui/formattablepage.ui:429
msgctxt "formattablepage|free"
msgid "_Manual"
msgstr "⁠_လက်ဖြင့်တဆင့်ချင်း"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:478
+#: sw/uiconfig/swriter/ui/formattablepage.ui:452
msgctxt "formattablepage|label43"
msgid "Alignment"
msgstr "ဖြောင့်တန်းမှု"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:522
+#: sw/uiconfig/swriter/ui/formattablepage.ui:491
msgctxt "formattablepage|label53"
msgid "Text _direction"
msgstr "စာသား ဦးတည်ချက်"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:553
+#: sw/uiconfig/swriter/ui/formattablepage.ui:519
#, fuzzy
msgctxt "formattablepage|label44"
msgid "Properties "
@@ -10229,24 +10228,29 @@ msgctxt "headerfootermenu|insert_pagenumber"
msgid "Insert Page Number"
msgstr ""
-#: sw/uiconfig/swriter/ui/indentpage.ui:52
+#: sw/uiconfig/swriter/ui/headerfootermenu.ui:42
+msgctxt "headerfootermenu|insert_pagecount"
+msgid "Insert Page Count"
+msgstr ""
+
+#: sw/uiconfig/swriter/ui/indentpage.ui:57
#, fuzzy
msgctxt "indentpage|label1"
msgid "_Before section"
msgstr "အပိုင်းအလုပ်မီ"
-#: sw/uiconfig/swriter/ui/indentpage.ui:67
+#: sw/uiconfig/swriter/ui/indentpage.ui:71
#, fuzzy
msgctxt "indentpage|label3"
msgid "_After section"
msgstr "အပိုင်းလုပ်ပြီး"
-#: sw/uiconfig/swriter/ui/indentpage.ui:113
+#: sw/uiconfig/swriter/ui/indentpage.ui:115
msgctxt "indentpage|label2"
msgid "Indent"
msgstr "အမှာစာ"
-#: sw/uiconfig/swriter/ui/indentpage.ui:142
+#: sw/uiconfig/swriter/ui/indentpage.ui:155
msgctxt "indentpage|preview-atkobject"
msgid "Example"
msgstr "ဥပမာ"
@@ -14001,7 +14005,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:68
msgctxt "optcompatpage|format"
-msgid "MS Word-compatible trailing blanks"
+msgid "Word-compatible trailing blanks"
msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:69
@@ -14011,7 +14015,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:70
msgctxt "optcompatpage|format"
-msgid "A database field (e.g., MailMerge) with empty value hides its paragraph"
+msgid "Hide paragraphs of database fields (e.g., mail merge) with an empty value"
msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:71
@@ -16870,124 +16874,124 @@ msgctxt "tableproperties|background"
msgid "Background"
msgstr "နောက်ခံ"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:25
-msgctxt "tabletextflowpage|liststore1"
-msgid "Horizontal"
-msgstr "ရေပြင်ညီ"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:29
-msgctxt "tabletextflowpage|liststore1"
-msgid "Vertical"
-msgstr "မျဉ်းမတ်"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:33
-msgctxt "tabletextflowpage|liststore1"
-msgid "Use superordinate object settings"
-msgstr "ပိုမြင့်သော အရာဝတ္ထု ရွေးနိုင်ခြင်းများ သုံးပါ"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:47
-msgctxt "tabletextflowpage|liststore2"
-msgid "Top"
-msgstr "ထိပ်"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:51
-msgctxt "tabletextflowpage|liststore2"
-msgid "Centered"
-msgstr "အလယ်တည့်တည့်"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:55
-msgctxt "tabletextflowpage|liststore2"
-msgid "Bottom"
-msgstr "အောက်ခြေ"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:97
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:53
msgctxt "tabletextflowpage|break"
msgid "_Break"
msgstr "⁠_ဖြတ်တောက်ပါ"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:112
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:68
msgctxt "tabletextflowpage|page"
msgid "_Page"
msgstr "_စာမျက်နှာ"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:132
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:87
msgctxt "tabletextflowpage|column"
msgid "Col_umn"
msgstr "ကော်လံ"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:151
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:106
msgctxt "tabletextflowpage|before"
msgid "Be_fore"
msgstr "မတိုင်မီ"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:171
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:125
msgctxt "tabletextflowpage|after"
msgid "_After"
msgstr "_ပြီးနောက်"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:203
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:158
msgctxt "tabletextflowpage|pagestyle"
msgid "With Page St_yle"
msgstr "စာမျက်နှာပုံစံနှင့်အတူ"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:224
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:177
msgctxt "tabletextflowpage|pagenoft"
msgid "Page _number"
msgstr "စာမျက်နှာ နံပါတ်"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:257
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:213
#, fuzzy
msgctxt "tabletextflowpage|pagestylelb-atkobject"
msgid "With Page Style"
msgstr "စာမျက်နှာပုံစံနှင့်အတူ"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:274
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:230
msgctxt "tabletextflowpage|split"
msgid "Allow _table to split across pages and columns"
msgstr "စာမျက်နှာများနှင့်ကော်လံများကန့်လန့်ဖြတ်ခွဲထုတ်ရန်ခွင့်ပြုပါ"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:289
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:245
msgctxt "tabletextflowpage|splitrow"
msgid "Allow row to break a_cross pages and columns"
msgstr "စာမျက်နှာများနှင့်ကော်လံများကန့်လန့်ဖြတ်ခွဲထုတ်ရန်ခွင့်ပြုပါ"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:306
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:262
msgctxt "tabletextflowpage|keep"
msgid "_Keep with next paragraph"
msgstr "_နောက်ထပ်စာပိုဒ်နှင့်အတူထိန်းသိမ်းပါ"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:328
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:284
#, fuzzy
msgctxt "tabletextflowpage|label40"
msgid "Text _orientation"
msgstr "စာသားအနေအထား"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:361
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:298
+msgctxt "tabletextflowpage|liststore1"
+msgid "Horizontal"
+msgstr "ရေပြင်ညီ"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:299
+msgctxt "tabletextflowpage|liststore1"
+msgid "Vertical"
+msgstr "မျဉ်းမတ်"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:300
+msgctxt "tabletextflowpage|liststore1"
+msgid "Use superordinate object settings"
+msgstr "ပိုမြင့်သော အရာဝတ္ထု ရွေးနိုင်ခြင်းများ သုံးပါ"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:321
msgctxt "tabletextflowpage|headline"
msgid "R_epeat heading"
msgstr "ခေါင်းစဉ် နောက်တကျော့ပြုလုပ်ပါ"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:383
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:343
msgctxt "tabletextflowpage|label38"
msgid "The first "
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:396
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:356
msgctxt "tabletextflowpage|label39"
msgid "rows"
msgstr "အတန်းလိုက်"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:434
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:395
msgctxt "tabletextflowpage|label35"
msgid "Text Flow"
msgstr "စာသား စီးဆင်းမှု"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:467
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:428
msgctxt "tabletextflowpage|label41"
msgid "_Vertical alignment"
msgstr "_ထောင့်မှန်ကျကျ ဖြောင့်တန်းမှု"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:495
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:442
+msgctxt "tabletextflowpage|liststore2"
+msgid "Top"
+msgstr "ထိပ်"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:443
+msgctxt "tabletextflowpage|liststore2"
+msgid "Centered"
+msgstr "အလယ်တည့်တည့်"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:444
+msgctxt "tabletextflowpage|liststore2"
+msgid "Bottom"
+msgstr "အောက်ခြေ"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:460
msgctxt "tabletextflowpage|label36"
msgid "Alignment"
msgstr "ဖြောင့်တန်းမှု"
@@ -17806,10 +17810,9 @@ msgid "Alphabetical Index"
msgstr ""
#: sw/uiconfig/swriter/ui/tocindexpage.ui:58
-#, fuzzy
msgctxt "tocindexpage|liststore1"
-msgid "Illustration Index"
-msgstr "ရုပ်ပုံပြခြင်း အညွှန်း ၁"
+msgid "Table of Figures"
+msgstr ""
#: sw/uiconfig/swriter/ui/tocindexpage.ui:62
msgctxt "tocindexpage|liststore1"
diff --git a/source/my/writerperfect/messages.po b/source/my/writerperfect/messages.po
index 05f85246319..192a76d48f6 100644
--- a/source/my/writerperfect/messages.po
+++ b/source/my/writerperfect/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-16 16:54+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+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"
@@ -65,98 +65,98 @@ msgctxt "exportepub|generalft"
msgid "General"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:122
+#: writerperfect/uiconfig/ui/exportepub.ui:121
#, fuzzy
msgctxt "exportepub|versionft"
msgid "Version:"
msgstr "~ဗားရှင်း-"
-#: writerperfect/uiconfig/ui/exportepub.ui:139
+#: writerperfect/uiconfig/ui/exportepub.ui:138
msgctxt "exportepub|epub3"
msgid "EPUB 3.0"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:140
+#: writerperfect/uiconfig/ui/exportepub.ui:139
msgctxt "exportepub|epub2"
msgid "EPUB 2.0"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:175
+#: writerperfect/uiconfig/ui/exportepub.ui:174
msgctxt "exportepub|splitft"
msgid "Split method:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:192
+#: writerperfect/uiconfig/ui/exportepub.ui:191
msgctxt "exportepub|splitpage"
msgid "Page break"
msgstr "~စာမျက်နှာပြတ်တောက်မှု"
-#: writerperfect/uiconfig/ui/exportepub.ui:193
+#: writerperfect/uiconfig/ui/exportepub.ui:192
msgctxt "exportepub|splitheading"
msgid "Heading"
msgstr "ခေါင်းစဉ်"
-#: writerperfect/uiconfig/ui/exportepub.ui:228
+#: writerperfect/uiconfig/ui/exportepub.ui:227
msgctxt "exportepub|layoutft"
msgid "Layout method:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:245
+#: writerperfect/uiconfig/ui/exportepub.ui:244
msgctxt "exportepub|layoutreflowable"
msgid "Reflowable"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:246
+#: writerperfect/uiconfig/ui/exportepub.ui:245
msgctxt "exportepub|layoutfixed"
msgid "Fixed"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:281
+#: writerperfect/uiconfig/ui/exportepub.ui:280
msgctxt "exportepub|coverimageft"
msgid "Custom cover image:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:311
+#: writerperfect/uiconfig/ui/exportepub.ui:310
msgctxt "exportepub|coverbutton"
msgid "Browse..."
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:355
+#: writerperfect/uiconfig/ui/exportepub.ui:354
msgctxt "exportepub|mediadirft"
msgid "Custom media directory:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:385
+#: writerperfect/uiconfig/ui/exportepub.ui:384
msgctxt "exportepub|mediabutton"
msgid "Browse..."
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:429
+#: writerperfect/uiconfig/ui/exportepub.ui:428
msgctxt "exportepub|metadataft"
msgid "Metadata"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:470
+#: writerperfect/uiconfig/ui/exportepub.ui:468
msgctxt "exportepub|identifierft"
msgid "Identifier:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:485
+#: writerperfect/uiconfig/ui/exportepub.ui:483
msgctxt "exportepub|titleft"
msgid "Title:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:511
+#: writerperfect/uiconfig/ui/exportepub.ui:509
msgctxt "exportepub|authorft"
msgid "Author:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:537
+#: writerperfect/uiconfig/ui/exportepub.ui:535
msgctxt "exportepub|languageft"
msgid "Language:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:563
+#: writerperfect/uiconfig/ui/exportepub.ui:561
msgctxt "exportepub|dateft"
msgid "Date:"
msgstr ""
diff --git a/source/nb/cui/messages.po b/source/nb/cui/messages.po
index 5defc08af21..39d61297e4b 100644
--- a/source/nb/cui/messages.po
+++ b/source/nb/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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2018-01-23 14:30+0000\n"
"Last-Translator: Karl Morten Ramberg <karl.m.ramberg@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -9872,97 +9872,97 @@ msgctxt "positionsizedialog|PositionAndSizeDialog"
msgid "Position and Size"
msgstr "Posisjon og størrelse"
-#: cui/uiconfig/ui/positionsizedialog.ui:107
+#: cui/uiconfig/ui/positionsizedialog.ui:136
msgctxt "positionsizedialog|RID_SVXPAGE_POSITION_SIZE"
msgid "Position and Size"
msgstr "Posisjon og størrelse"
-#: cui/uiconfig/ui/positionsizedialog.ui:129
+#: cui/uiconfig/ui/positionsizedialog.ui:182
msgctxt "positionsizedialog|RID_SVXPAGE_SWPOSSIZE"
msgid "Position and Size"
msgstr "Posisjon og størrelse"
-#: cui/uiconfig/ui/positionsizedialog.ui:152
+#: cui/uiconfig/ui/positionsizedialog.ui:229
msgctxt "positionsizedialog|RID_SVXPAGE_ANGLE"
msgid "Rotation"
msgstr "Rotering"
-#: cui/uiconfig/ui/positionsizedialog.ui:175
+#: cui/uiconfig/ui/positionsizedialog.ui:276
msgctxt "positionsizedialog|RID_SVXPAGE_SLANT"
msgid "Slant & Corner Radius"
msgstr "Helling og hjørneradius"
-#: cui/uiconfig/ui/possizetabpage.ui:40
+#: cui/uiconfig/ui/possizetabpage.ui:61
msgctxt "possizetabpage|FT_POS_X"
msgid "Position _X:"
msgstr "Posisjon _X:"
-#: cui/uiconfig/ui/possizetabpage.ui:56
+#: cui/uiconfig/ui/possizetabpage.ui:75
msgctxt "possizetabpage|FT_POS_Y"
msgid "Position _Y:"
msgstr "Posisjon _Y:"
-#: cui/uiconfig/ui/possizetabpage.ui:110
+#: cui/uiconfig/ui/possizetabpage.ui:128
msgctxt "possizetabpage|FT_POSREFERENCE"
msgid "_Base point:"
msgstr "_Basispunkt:"
-#: cui/uiconfig/ui/possizetabpage.ui:148
+#: cui/uiconfig/ui/possizetabpage.ui:182
msgctxt "possizetabpage|label1"
msgid "Position"
msgstr "Plassering"
-#: cui/uiconfig/ui/possizetabpage.ui:190
+#: cui/uiconfig/ui/possizetabpage.ui:224
msgctxt "possizetabpage|FT_WIDTH"
msgid "Wi_dth:"
msgstr "_Bredde:"
-#: cui/uiconfig/ui/possizetabpage.ui:206
+#: cui/uiconfig/ui/possizetabpage.ui:238
msgctxt "possizetabpage|FT_HEIGHT"
msgid "H_eight:"
msgstr "_Høyde:"
-#: cui/uiconfig/ui/possizetabpage.ui:247
+#: cui/uiconfig/ui/possizetabpage.ui:276
msgctxt "possizetabpage|CBX_SCALE"
msgid "_Keep ratio"
msgstr "_Behold størrelsesforholdet"
-#: cui/uiconfig/ui/possizetabpage.ui:279
+#: cui/uiconfig/ui/possizetabpage.ui:307
msgctxt "possizetabpage|FT_SIZEREFERENCE"
msgid "Base _point:"
msgstr "_Basispunkt:"
-#: cui/uiconfig/ui/possizetabpage.ui:317
+#: cui/uiconfig/ui/possizetabpage.ui:361
msgctxt "possizetabpage|label2"
msgid "Size"
msgstr "Størrelse"
-#: cui/uiconfig/ui/possizetabpage.ui:356
+#: cui/uiconfig/ui/possizetabpage.ui:401
msgctxt "possizetabpage|TSB_POSPROTECT"
msgid "Positio_n"
msgstr "Plasseri_ng"
-#: cui/uiconfig/ui/possizetabpage.ui:373
+#: cui/uiconfig/ui/possizetabpage.ui:418
msgctxt "possizetabpage|TSB_SIZEPROTECT"
msgid "_Size"
msgstr "_Størrelse"
-#: cui/uiconfig/ui/possizetabpage.ui:397
+#: cui/uiconfig/ui/possizetabpage.ui:441
msgctxt "possizetabpage|label3"
msgid "Protect"
msgstr "Beskytt"
-#: cui/uiconfig/ui/possizetabpage.ui:430
+#: cui/uiconfig/ui/possizetabpage.ui:475
msgctxt "possizetabpage|TSB_AUTOGROW_WIDTH"
msgid "_Fit width to text"
msgstr "_Tilpass bredde til tekst"
-#: cui/uiconfig/ui/possizetabpage.ui:447
+#: cui/uiconfig/ui/possizetabpage.ui:492
msgctxt "possizetabpage|TSB_AUTOGROW_HEIGHT"
msgid "Fit _height to text"
msgstr "Tilpass _høyden til teksten"
-#: cui/uiconfig/ui/possizetabpage.ui:471
+#: cui/uiconfig/ui/possizetabpage.ui:515
msgctxt "possizetabpage|label4"
msgid "Adapt"
msgstr "Tilpass"
@@ -10162,47 +10162,47 @@ msgctxt "recordnumberdialog|label2"
msgid "go to record"
msgstr "gå til post"
-#: cui/uiconfig/ui/rotationtabpage.ui:52
+#: cui/uiconfig/ui/rotationtabpage.ui:56
msgctxt "rotationtabpage|FT_POS_X"
msgid "Position _X:"
msgstr "_X-posisjon:"
-#: cui/uiconfig/ui/rotationtabpage.ui:66
+#: cui/uiconfig/ui/rotationtabpage.ui:70
msgctxt "rotationtabpage|FT_POS_Y"
msgid "Position _Y:"
msgstr "_Y-posisjon:"
-#: cui/uiconfig/ui/rotationtabpage.ui:116
+#: cui/uiconfig/ui/rotationtabpage.ui:123
msgctxt "rotationtabpage|FT_POSPRESETS"
msgid "_Default settings:"
msgstr "_Standardinnstillinger:"
-#: cui/uiconfig/ui/rotationtabpage.ui:130
+#: cui/uiconfig/ui/rotationtabpage.ui:151
msgctxt "rotationtabpage|CTL_RECT|tooltip_text"
msgid "Rotation point"
msgstr "Omdreiingspunkt"
-#: cui/uiconfig/ui/rotationtabpage.ui:155
+#: cui/uiconfig/ui/rotationtabpage.ui:178
msgctxt "rotationtabpage|label1"
msgid "Pivot Point"
msgstr "Pivotpunkt"
-#: cui/uiconfig/ui/rotationtabpage.ui:197
+#: cui/uiconfig/ui/rotationtabpage.ui:220
msgctxt "rotationtabpage|FT_ANGLE"
msgid "_Angle:"
msgstr "_Vinkel:"
-#: cui/uiconfig/ui/rotationtabpage.ui:238
+#: cui/uiconfig/ui/rotationtabpage.ui:263
msgctxt "rotationtabpage|FT_ANGLEPRESETS"
msgid "Default _settings:"
msgstr "Standard_innstillinger:"
-#: cui/uiconfig/ui/rotationtabpage.ui:252
+#: cui/uiconfig/ui/rotationtabpage.ui:287
msgctxt "rotationtabpage|CTL_ANGLE|tooltip_text"
msgid "Rotation Angle"
msgstr "Rotasjonsvinkel"
-#: cui/uiconfig/ui/rotationtabpage.ui:277
+#: cui/uiconfig/ui/rotationtabpage.ui:314
msgctxt "rotationtabpage|label2"
msgid "Rotation Angle"
msgstr "Rotasjonsvinkel"
@@ -10582,52 +10582,52 @@ msgctxt "similaritysearchdialog|relaxbox"
msgid "_Combine"
msgstr "_Slå sammen"
-#: cui/uiconfig/ui/slantcornertabpage.ui:50
+#: cui/uiconfig/ui/slantcornertabpage.ui:70
msgctxt "slantcornertabpage|label5"
msgid "_X:"
msgstr "_X:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:88
+#: cui/uiconfig/ui/slantcornertabpage.ui:110
msgctxt "slantcornertabpage|label6"
msgid "_Y:"
msgstr "_Y:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:125
+#: cui/uiconfig/ui/slantcornertabpage.ui:149
msgctxt "slantcornertabpage|label3"
msgid "Control Point 1"
msgstr "Kontrollpunkt 1"
-#: cui/uiconfig/ui/slantcornertabpage.ui:159
+#: cui/uiconfig/ui/slantcornertabpage.ui:183
msgctxt "slantcornertabpage|FT_RADIUS"
msgid "_Radius:"
msgstr "_Radius:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:189
+#: cui/uiconfig/ui/slantcornertabpage.ui:214
msgctxt "slantcornertabpage|label1"
msgid "Corner Radius"
msgstr "Hjørneradius"
-#: cui/uiconfig/ui/slantcornertabpage.ui:223
+#: cui/uiconfig/ui/slantcornertabpage.ui:248
msgctxt "slantcornertabpage|FT_ANGLE"
msgid "_Angle:"
msgstr "_Vinkel:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:253
+#: cui/uiconfig/ui/slantcornertabpage.ui:279
msgctxt "slantcornertabpage|label2"
msgid "Slant"
msgstr "På skrå"
-#: cui/uiconfig/ui/slantcornertabpage.ui:294
+#: cui/uiconfig/ui/slantcornertabpage.ui:320
msgctxt "slantcornertabpage|label4"
msgid "_X:"
msgstr "_X:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:332
+#: cui/uiconfig/ui/slantcornertabpage.ui:360
msgctxt "slantcornertabpage|label7"
msgid "_Y:"
msgstr "_Y:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:369
+#: cui/uiconfig/ui/slantcornertabpage.ui:399
msgctxt "slantcornertabpage|label8"
msgid "Control Point 2"
msgstr "Kontrollpunkt 2"
@@ -10907,112 +10907,112 @@ msgctxt "storedwebconnectiondialog|change"
msgid "_Change Password..."
msgstr "_Endre passord …"
-#: cui/uiconfig/ui/swpossizepage.ui:74
+#: cui/uiconfig/ui/swpossizepage.ui:85
msgctxt "swpossizepage|widthft"
msgid "_Width:"
msgstr "_Bredde:"
-#: cui/uiconfig/ui/swpossizepage.ui:111
+#: cui/uiconfig/ui/swpossizepage.ui:123
msgctxt "swpossizepage|heightft"
msgid "H_eight:"
msgstr "_Høyde:"
-#: cui/uiconfig/ui/swpossizepage.ui:128
+#: cui/uiconfig/ui/swpossizepage.ui:141
msgctxt "swpossizepage|ratio"
msgid "_Keep ratio"
msgstr "_Samme størrelsesforhold"
-#: cui/uiconfig/ui/swpossizepage.ui:149
+#: cui/uiconfig/ui/swpossizepage.ui:162
msgctxt "swpossizepage|label2"
msgid "Size"
msgstr "Størrelse"
-#: cui/uiconfig/ui/swpossizepage.ui:205
+#: cui/uiconfig/ui/swpossizepage.ui:218
msgctxt "swpossizepage|topage"
msgid "To _page"
msgstr "Til _side"
-#: cui/uiconfig/ui/swpossizepage.ui:222
+#: cui/uiconfig/ui/swpossizepage.ui:234
msgctxt "swpossizepage|topara"
msgid "To paragrap_h"
msgstr "Til _avsnitt"
-#: cui/uiconfig/ui/swpossizepage.ui:238
+#: cui/uiconfig/ui/swpossizepage.ui:250
msgctxt "swpossizepage|tochar"
msgid "To cha_racter"
msgstr "Til _tegn"
-#: cui/uiconfig/ui/swpossizepage.ui:254
+#: cui/uiconfig/ui/swpossizepage.ui:266
msgctxt "swpossizepage|aschar"
msgid "_As character"
msgstr "_Som tegn"
-#: cui/uiconfig/ui/swpossizepage.ui:270
+#: cui/uiconfig/ui/swpossizepage.ui:282
msgctxt "swpossizepage|toframe"
msgid "To _frame"
msgstr "Til _ramme"
-#: cui/uiconfig/ui/swpossizepage.ui:292
+#: cui/uiconfig/ui/swpossizepage.ui:304
msgctxt "swpossizepage|label1"
msgid "Anchor"
msgstr "Forankret"
-#: cui/uiconfig/ui/swpossizepage.ui:333
+#: cui/uiconfig/ui/swpossizepage.ui:344
msgctxt "swpossizepage|horiposft"
msgid "Hori_zontal:"
msgstr "_Vannrett:"
-#: cui/uiconfig/ui/swpossizepage.ui:347
+#: cui/uiconfig/ui/swpossizepage.ui:358
msgctxt "swpossizepage|horibyft"
msgid "b_y:"
msgstr "_ved:"
-#: cui/uiconfig/ui/swpossizepage.ui:361
+#: cui/uiconfig/ui/swpossizepage.ui:372
msgctxt "swpossizepage|vertbyft"
msgid "_by:"
msgstr "v_ed:"
-#: cui/uiconfig/ui/swpossizepage.ui:375
+#: cui/uiconfig/ui/swpossizepage.ui:386
msgctxt "swpossizepage|horitoft"
msgid "_to:"
msgstr "_til:"
-#: cui/uiconfig/ui/swpossizepage.ui:421
+#: cui/uiconfig/ui/swpossizepage.ui:433
msgctxt "swpossizepage|vertposft"
msgid "_Vertical:"
msgstr "_Loddrett:"
-#: cui/uiconfig/ui/swpossizepage.ui:457
+#: cui/uiconfig/ui/swpossizepage.ui:470
msgctxt "swpossizepage|verttoft"
msgid "t_o:"
msgstr "t_il:"
-#: cui/uiconfig/ui/swpossizepage.ui:478
+#: cui/uiconfig/ui/swpossizepage.ui:492
msgctxt "swpossizepage|mirror"
msgid "_Mirror on even pages"
msgstr "Speilvend på _like sider"
-#: cui/uiconfig/ui/swpossizepage.ui:495
+#: cui/uiconfig/ui/swpossizepage.ui:509
msgctxt "swpossizepage|followtextflow"
msgid "Follow te_xt flow"
msgstr "Følg _tekstflyten"
-#: cui/uiconfig/ui/swpossizepage.ui:518
+#: cui/uiconfig/ui/swpossizepage.ui:532
msgctxt "swpossizepage|label11"
msgid "Position"
msgstr "Plassering"
-#: cui/uiconfig/ui/swpossizepage.ui:549
+#: cui/uiconfig/ui/swpossizepage.ui:563
msgctxt "swpossizepage|pos"
msgid "Positio_n"
msgstr "Plasseri_ng"
-#: cui/uiconfig/ui/swpossizepage.ui:565
+#: cui/uiconfig/ui/swpossizepage.ui:579
msgctxt "swpossizepage|size"
msgid "_Size"
msgstr "_Størrelse"
-#: cui/uiconfig/ui/swpossizepage.ui:587
+#: cui/uiconfig/ui/swpossizepage.ui:601
msgctxt "swpossizepage|label3"
msgid "Protect"
msgstr "Beskytt"
@@ -11202,12 +11202,12 @@ msgctxt "textattrtabpage|label2"
msgid "Spacing to Borders"
msgstr "Avstand til kantene"
-#: cui/uiconfig/ui/textattrtabpage.ui:425
+#: cui/uiconfig/ui/textattrtabpage.ui:423
msgctxt "textattrtabpage|TSB_FULL_WIDTH"
msgid "Full _width"
msgstr "Full _bredde"
-#: cui/uiconfig/ui/textattrtabpage.ui:448
+#: cui/uiconfig/ui/textattrtabpage.ui:446
msgctxt "textattrtabpage|label3"
msgid "Text Anchor"
msgstr "Tekstanker"
diff --git a/source/nb/filter/source/config/fragments/filters.po b/source/nb/filter/source/config/fragments/filters.po
index 57ed5483796..bcb339d87c1 100644
--- a/source/nb/filter/source/config/fragments/filters.po
+++ b/source/nb/filter/source/config/fragments/filters.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: 2018-05-16 16:54+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2018-01-16 22:40+0000\n"
"Last-Translator: Karl Morten Ramberg <karl.m.ramberg@gmail.com>\n"
"Language-Team: British English <>\n"
@@ -463,8 +463,8 @@ msgctxt ""
"MS Word 2003 XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Word 2003 XML"
-msgstr "Microsoft Word 2003 XML"
+msgid "Word 2003 XML"
+msgstr ""
#: MS_Word_2007_XML.xcu
msgctxt ""
@@ -1282,8 +1282,8 @@ msgctxt ""
"Calc MS Excel 2007 VBA XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Excel 2007-2016 XML (macro enabled)"
-msgstr "Microsoft Excel 2007-2016 XML (makro slått på)"
+msgid "Excel 2007–2019 (macro-enabled)"
+msgstr ""
#: calc_MS_Excel_2007_XML.xcu
msgctxt ""
diff --git a/source/nb/filter/source/config/fragments/types.po b/source/nb/filter/source/config/fragments/types.po
index f83dae52603..523e56af6f2 100644
--- a/source/nb/filter/source/config/fragments/types.po
+++ b/source/nb/filter/source/config/fragments/types.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: 2018-05-08 15:11+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2017-11-17 14:33+0000\n"
"Last-Translator: Karl Morten Ramberg <karl.m.ramberg@gmail.com>\n"
"Language-Team: British English <>\n"
@@ -292,8 +292,8 @@ msgctxt ""
"writer_MS_Word_2003_XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Word 2003 XML"
-msgstr "Microsoft Word 2003 XML"
+msgid "Word 2003 XML"
+msgstr ""
#: writer_MS_Word_2007_XML.xcu
msgctxt ""
diff --git a/source/nb/fpicker/messages.po b/source/nb/fpicker/messages.po
index dd217d1781d..83b7558b517 100644
--- a/source/nb/fpicker/messages.po
+++ b/source/nb/fpicker/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2018-01-16 22:37+0000\n"
"Last-Translator: Karl Morten Ramberg <karl.m.ramberg@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -272,13 +272,13 @@ msgstr "Krypter med GPG nøkkel"
#: fpicker/uiconfig/ui/foldernamedialog.ui:8
msgctxt "foldernamedialog|FolderNameDialog"
-msgid "Folder Name ?"
-msgstr "Mappenavn?"
+msgid "Folder Name"
+msgstr ""
#: fpicker/uiconfig/ui/foldernamedialog.ui:91
msgctxt "foldernamedialog|label2"
-msgid "Na_me"
-msgstr "_Navn"
+msgid "Na_me:"
+msgstr ""
#: fpicker/uiconfig/ui/foldernamedialog.ui:122
msgctxt "foldernamedialog|label1"
diff --git a/source/nb/helpcontent2/source/text/shared/00.po b/source/nb/helpcontent2/source/text/shared/00.po
index 55419040ccb..d12f84eb219 100644
--- a/source/nb/helpcontent2/source/text/shared/00.po
+++ b/source/nb/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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2018-01-24 11:35+0000\n"
"Last-Translator: Karl Morten Ramberg <karl.m.ramberg@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -397,16 +397,16 @@ msgctxt ""
"00000001.xhp\n"
"hd_id3149670\n"
"help.text"
-msgid "Back"
-msgstr "Tilbake"
+msgid "Reset"
+msgstr ""
#: 00000001.xhp
msgctxt ""
"00000001.xhp\n"
"par_id3145068\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optionsdialog/revert\">Resets modified values back to the $[officename] default values.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/optionsdialog/revert\">Tilbakestiller endrede verdier til standardverdiene i $[officename].</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optionsdialog/revert\">Resets changes made to the current tab to those applicable when this dialog was opened.</ahelp>"
+msgstr ""
#: 00000001.xhp
msgctxt ""
@@ -552,6 +552,54 @@ msgctxt ""
msgid "<variable id=\"ShiftF1\">Press Shift+F1 and point to a control to learn more about that control.</variable>"
msgstr "<variable id=\"ShiftF1\">Du kan trykke Shift+F1 og peke på en kontroll for å finne ut mer om denne kontrollen. </variable>"
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"hd_id631527692833772\n"
+"help.text"
+msgid "Options dialog buttons"
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"hd_id831527692839432\n"
+"help.text"
+msgid "OK"
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"par_id471527692844934\n"
+"help.text"
+msgid "Save the changes in the page and close the Options dialog."
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"hd_id261527692850720\n"
+"help.text"
+msgid "Cancel"
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"par_id571527692855533\n"
+"help.text"
+msgid "Close the Options dialog and discard all changes done."
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"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 Options dialog."
+msgstr ""
+
#: 00000002.xhp
msgctxt ""
"00000002.xhp\n"
@@ -11125,16 +11173,16 @@ msgctxt ""
"00040502.xhp\n"
"par_id3151293\n"
"help.text"
-msgid "<variable id=\"linienstile\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Line Styles</emph> tab </variable>"
-msgstr "<variable id=\"linienstile\">Vel fana <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Objekt → </emph></caseinline><caseinline select=\"CALC\"><emph>Bilde → </emph></caseinline></switchinline><emph>Linje → Linjestiler</emph></variable>"
+msgid "<variable id=\"linienstile\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Line Styles</emph> tab</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3149317\n"
"help.text"
-msgid "<variable id=\"linienenden\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Arrow Styles</emph> tab </variable>"
-msgstr "<variable id=\"linienenden\">Vel fana <emph>Format → </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Objekt → </emph></caseinline><caseinline select=\"CALC\"><emph>Bilde → </emph></caseinline></switchinline><emph>Linje → Pilstiler</emph> tab </variable>"
+msgid "<variable id=\"linienenden\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Arrow Styles</emph> tab</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
@@ -11173,63 +11221,63 @@ msgctxt ""
"00040502.xhp\n"
"par_id3154948\n"
"help.text"
-msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Area</emph> tab"
-msgstr "Vel fana <emph>Format → </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Objekt → </emph></caseinline><caseinline select=\"CALC\"><emph>Bilde → </emph></caseinline></switchinline><emph>Område → Område</emph>"
+msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Area</emph> tab."
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3145607\n"
"help.text"
-msgid "Choose <emph>View - Styles</emph> - open context menu and choose <emph>Modify/New - Area</emph> tab (presentation documents)"
-msgstr "Velg <emph>Format → Stilbehandler</emph>, åpne sprettoppmenyen og velg fanen <emph>Rediger/Ny → Område</emph> (i presentasjoner)"
+msgid "Choose <emph>View - Styles</emph> - open context menu and choose <emph>Modify/New - Area</emph> tab (presentation documents)."
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3152922\n"
"help.text"
-msgid "Choose <emph>Format - Title - Area</emph> tab (chart documents)"
-msgstr "Velg fanen <emph>Format → Tittel → Område</emph> (i diagram)"
+msgid "Choose <emph>Format - Title - Area</emph> tab (chart documents)."
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3157894\n"
"help.text"
-msgid "Choose <emph>Format - Legend - Area</emph> tab (chart documents)"
-msgstr "Velg fanen <emph>Format → Forklaring → Område</emph> (i diagram)"
+msgid "Choose <emph>Format - Legend - Area</emph> tab (chart documents)."
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3144444\n"
"help.text"
-msgid "Choose <emph>Format - Chart Wall - Area</emph> tab (chart documents)"
-msgstr "Velg fanen <emph>Format → Diagramvegg → Område</emph> (i diagram)"
+msgid "Choose <emph>Format - Chart Wall - Area</emph> tab (chart documents)."
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3156543\n"
"help.text"
-msgid "Choose <emph>Format - Chart Floor - Area</emph> tab (chart documents)"
-msgstr "Velg fanen <emph>Format → Diagramgulv → Område</emph> (i diagram)"
+msgid "Choose <emph>Format - Chart Floor - Area</emph> tab (chart documents)."
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3150685\n"
"help.text"
-msgid "Choose <emph>Format - Chart Area - Area</emph> tab (chart documents)"
-msgstr "Velg fanen <emph>Format → Diagramområde → Område</emph> (i diagram)"
+msgid "Choose <emph>Format - Chart Area - Area</emph> tab (chart documents)."
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3149664\n"
"help.text"
-msgid "Choose <emph>Slide - Properties - Background</emph> tab (in $[officename] Impress)"
+msgid "Choose <emph>Slide - Properties - Background</emph> tab (in $[officename] Impress)."
msgstr ""
#: 00040502.xhp
@@ -11237,7 +11285,15 @@ msgctxt ""
"00040502.xhp\n"
"par_id9149694\n"
"help.text"
-msgid "Choose <emph>Page - Properties - Background</emph> tab (in $[officename] Draw)"
+msgid "Choose <emph>Page - Properties - Background</emph> tab (in $[officename] Draw)."
+msgstr ""
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id841527083135387\n"
+"help.text"
+msgid "Choose <emph>Table - Properties - Background</emph> tab."
msgstr ""
#: 00040502.xhp
@@ -11349,32 +11405,32 @@ msgctxt ""
"00040502.xhp\n"
"par_id3150011\n"
"help.text"
-msgid "<variable id=\"schatte\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Shadow</emph> tab </variable>"
-msgstr "<variable id=\"schatte\">Vel fana <emph>Format → </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Objekt → </emph></caseinline><caseinline select=\"CALC\"><emph>Bilde → </emph></caseinline></switchinline><emph>Område → Skygge</emph></variable>"
+msgid "<variable id=\"schatte\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Shadow</emph> tab</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3147441\n"
"help.text"
-msgid "<variable id=\"verlauf\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Gradients</emph> tab </variable>"
-msgstr "<variable id=\"verlauf\">Vel fana <emph>Format → </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Objekt → </emph></caseinline><caseinline select=\"CALC\"><emph>Bilde → </emph></caseinline></switchinline><emph>Område → Fargeoverganger</emph></variable>"
+msgid "<variable id=\"verlauf\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Gradients</emph> tab</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3155308\n"
"help.text"
-msgid "<variable id=\"schraffur\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Hatching</emph> tab </variable>"
-msgstr "<variable id=\"schraffur\">Vel fana <emph>Format → </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Objekt → </emph></caseinline><caseinline select=\"CALC\"><emph>Bilde → </emph></caseinline></switchinline><emph>Område → Skravering</emph></variable>"
+msgid "<variable id=\"schraffur\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Hatching</emph> tab</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3145800\n"
"help.text"
-msgid "<variable id=\"bitmap\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Bitmaps</emph> tab </variable>"
-msgstr "<variable id=\"bitmap\">Velg fanen <emph>Format → </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Objekt → </emph></caseinline><caseinline select=\"CALC\"><emph>Bilde → </emph></caseinline></switchinline><emph>Område → Punktgrafikk</emph></variable>"
+msgid "<variable id=\"bitmap\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Bitmaps</emph> tab</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
@@ -11413,8 +11469,8 @@ msgctxt ""
"00040502.xhp\n"
"par_id3156286\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F4 key </caseinline><caseinline select=\"IMPRESS\">F4 key </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F4-tasten </caseinline><caseinline select=\"IMPRESS\">F4-tasten </caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F4 key</caseinline><caseinline select=\"IMPRESS\">F4 key</caseinline></switchinline>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
@@ -11453,8 +11509,8 @@ msgctxt ""
"00040502.xhp\n"
"par_id3153099\n"
"help.text"
-msgid "<variable id=\"position2\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Position and Size</emph> tab </variable>"
-msgstr "<variable id=\"position2\">Velg fanen <emph>Format → </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Objekt → </emph></caseinline><caseinline select=\"CALC\"><emph>Bilde → </emph></caseinline></switchinline><emph>Posisjon og størrelse → Posisjon og størrelse</emph> </variable>"
+msgid "<variable id=\"position2\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Position and Size</emph> tab</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
@@ -11485,16 +11541,16 @@ msgctxt ""
"00040502.xhp\n"
"par_id3145666\n"
"help.text"
-msgid "<variable id=\"ecke\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Slant & Corner Radius</emph> tab </variable>"
-msgstr "<variable id=\"ecke\">Vel <emph>Format → </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object → </emph></caseinline><caseinline select=\"CALC\"><emph>Bilde → </emph></caseinline></switchinline><emph>Posisjon og størrelse → Skråstilling og hjørneradius</emph> tab </variable>."
+msgid "<variable id=\"ecke\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Slant & Corner Radius</emph> tab</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3146081\n"
"help.text"
-msgid "<variable id=\"legende\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Callout</emph> tab (only for textbox callouts, not for custom shapes callouts) </variable>"
-msgstr "<variable id=\"legende\">Velg <emph>Format → </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object → </emph></caseinline><caseinline select=\"CALC\"><emph>Bilde → </emph></caseinline></switchinline><emph>Posisjon og størrelse → Skildring</emph>. (Berre for snakkebobler i tekstbokser, ikke for selvvalgte snakkebobler).</variable>."
+msgid "<variable id=\"legende\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Callout</emph> tab (only for textbox callouts, not for custom shapes callouts)</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
@@ -11517,8 +11573,8 @@ msgctxt ""
"00040502.xhp\n"
"par_id3149019\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F8 key </caseinline><caseinline select=\"IMPRESS\">F8 key </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F8-tasten</caseinline><caseinline select=\"IMPRESS\">F8-tasten</caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F8 key</caseinline><caseinline select=\"IMPRESS\">F8 key</caseinline></switchinline>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
@@ -11805,8 +11861,8 @@ msgctxt ""
"00040502.xhp\n"
"par_id3153076\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Align Center Horizontally </caseinline><defaultinline>Centered</defaultinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Midtstilt vannrett</caseinline><defaultinline>Midtstilt</defaultinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Align Center Horizontally</caseinline><defaultinline>Centered</defaultinline></switchinline>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
@@ -11845,8 +11901,8 @@ msgctxt ""
"00040502.xhp\n"
"par_id3150527\n"
"help.text"
-msgid "<variable id=\"font\">Click <emph>Fontwork</emph> icon on <emph>Drawing</emph> bar </variable>"
-msgstr "<variable id=\"font\">Velg <emph>Skriftforming</emph> fra verktøylinja <emph>Tegning</emph></variable>"
+msgid "<variable id=\"font\">Click <emph>Fontwork</emph> icon on <emph>Drawing</emph> bar</variable>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
diff --git a/source/nb/helpcontent2/source/text/shared/01.po b/source/nb/helpcontent2/source/text/shared/01.po
index d53473c0c43..625fd30a5e4 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: 2018-05-23 23:19+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2018-01-24 13:06+0000\n"
"Last-Translator: Karl Morten Ramberg <karl.m.ramberg@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -23587,6 +23587,22 @@ msgstr ""
#: 05210100.xhp
msgctxt ""
"05210100.xhp\n"
+"hd_id471527077476052\n"
+"help.text"
+msgid "Cell, Row or Table background selector"
+msgstr ""
+
+#: 05210100.xhp
+msgctxt ""
+"05210100.xhp\n"
+"par_id661527077493366\n"
+"help.text"
+msgid "Select the table object which background area is to be filled."
+msgstr ""
+
+#: 05210100.xhp
+msgctxt ""
+"05210100.xhp\n"
"hd_id3147373\n"
"help.text"
msgid "None"
@@ -31205,24 +31221,24 @@ msgctxt ""
"06040100.xhp\n"
"hd_id3145072\n"
"help.text"
-msgid "Automatic *bold* and _underline_"
-msgstr "Automatisk *halvfet* og _understreking_"
+msgid "Automatic *bold*, /italic/, -strikeout- and _underline_"
+msgstr ""
#: 06040100.xhp
msgctxt ""
"06040100.xhp\n"
"par_id3153577\n"
"help.text"
-msgid "Automatically applies bold formatting to text enclosed by asterisks (*), and underline to text enclosed by underscores ( _ ), for example, *bold*. The asterisks and underscores are not displayed after the formatting is applied."
-msgstr "Bruker automatisk halvfet formatering på tekst som er omgitt av stjerner (*), og understreking på tekst omgitt av to nedestreker (_), for eksempel *halvfet*. Stjerner og understrekingstegn vises ikke etter formateringen er tatt i bruk."
+msgid "Automatically applies bold, italic, strikethrough or underline formatting to text enclosed by asterisks (*), slashes (/), hyphens (-), and underscores (_), respectively. These characters disappear after the formatting is applied."
+msgstr ""
#: 06040100.xhp
msgctxt ""
"06040100.xhp\n"
"par_id3153127\n"
"help.text"
-msgid "This feature does not work if the formatting characters * or _ are entered with an <link href=\"text/shared/00/00000005.xhp#IME\" name=\"Input Method Editor\">Input Method Editor</link>."
-msgstr "Denne funksjonen virker ikke hvis formateringstegnene * eller _ er satt inn med en <link href=\"text/shared/00/00000005.xhp#IME\" name=\"Input Method Editor\">skrivemetode</link>."
+msgid "This feature does not work if the formatting characters <item type=\"literal\">* / - _</item> are entered with an <link href=\"text/shared/00/00000005.xhp#IME\" name=\"Input Method Editor\">Input Method Editor</link>."
+msgstr ""
#: 06040100.xhp
msgctxt ""
diff --git a/source/nb/helpcontent2/source/text/shared/optionen.po b/source/nb/helpcontent2/source/text/shared/optionen.po
index 6d2bcf20e60..9ef9356c900 100644
--- a/source/nb/helpcontent2/source/text/shared/optionen.po
+++ b/source/nb/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: 2018-05-08 15:10+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2017-02-25 22:36+0000\n"
"Last-Translator: Karl Morten Ramberg <karl.m.ramberg@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -83,6 +83,22 @@ msgstr ""
#: 01000000.xhp
msgctxt ""
"01000000.xhp\n"
+"hd_id551527692881035\n"
+"help.text"
+msgid "Help"
+msgstr ""
+
+#: 01000000.xhp
+msgctxt ""
+"01000000.xhp\n"
+"par_id831527692885723\n"
+"help.text"
+msgid "Opens the help contents for the Options page displayed."
+msgstr ""
+
+#: 01000000.xhp
+msgctxt ""
+"01000000.xhp\n"
"hd_id3159149\n"
"help.text"
msgid "<link href=\"text/shared/optionen/01010000.xhp\" name=\"$[officename]\">%PRODUCTNAME</link>"
@@ -4565,8 +4581,8 @@ msgctxt ""
"01030300.xhp\n"
"par_idN10640\n"
"help.text"
-msgid "Options"
-msgstr "Innstillinger"
+msgid "Security Options and Warnings"
+msgstr ""
#: 01030300.xhp
msgctxt ""
@@ -4597,8 +4613,8 @@ msgctxt ""
"01030300.xhp\n"
"hd_id3168736\n"
"help.text"
-msgid "Persistently save passwords protected by a master password"
-msgstr "Lagre passordene fast, beskyttet av et hovedpassord"
+msgid "Persistently save passwords for web connections"
+msgstr ""
#: 01030300.xhp
msgctxt ""
@@ -4613,8 +4629,24 @@ msgctxt ""
"01030300.xhp\n"
"hd_id3901791\n"
"help.text"
+msgid "Protected by a master password (recommended)"
+msgstr ""
+
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"par_id31527711486980\n"
+"help.text"
+msgid "Check to enable all connections' passwords to be protected by a master password."
+msgstr ""
+
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"hd_id141527711343312\n"
+"help.text"
msgid "Master Password"
-msgstr "Hovedpassord"
+msgstr ""
#: 01030300.xhp
msgctxt ""
@@ -13733,7 +13765,7 @@ msgctxt ""
"java.xhp\n"
"hd_id3148618\n"
"help.text"
-msgid "Optional (unstable) options"
+msgid "Optional Features"
msgstr ""
#: java.xhp
@@ -13749,7 +13781,7 @@ msgctxt ""
"java.xhp\n"
"par_id3156344\n"
"help.text"
-msgid "It enables features that are not yet complete or contain known bugs. The list of these features is different version by version, or even it can be empty."
+msgid "Enables features that are not yet complete or may contain known bugs. The list of these features is different version by version, or even it can be empty."
msgstr ""
#: java.xhp
@@ -13765,7 +13797,7 @@ msgctxt ""
"java.xhp\n"
"par_id3156345\n"
"help.text"
-msgid "It enables macro recording, so the <link href=\"text/shared/guide/macro_recording.xhp\" name=\"Tools - Macros - Record Macro\"><item type=\"menuitem\">Tools - Macros - Record Macro</item></link> menu item will be available."
+msgid "Enables macro recording. The <link href=\"text/shared/guide/macro_recording.xhp\" name=\"Tools - Macros - Record Macro\"><item type=\"menuitem\">Tools - Macros - Record Macro</item></link> menu item is available."
msgstr ""
#: java.xhp
diff --git a/source/nb/officecfg/registry/data/org/openoffice/Office/UI.po b/source/nb/officecfg/registry/data/org/openoffice/Office/UI.po
index ae79b67c5ca..12021832ae4 100644
--- a/source/nb/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/nb/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-22 13:17+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2018-02-14 09:18+0000\n"
"Last-Translator: Karl Morten Ramberg <karl.m.ramberg@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -26520,8 +26520,8 @@ msgctxt ""
"..WriterCommands.UserInterface.Commands..uno:TextAttributes\n"
"Label\n"
"value.text"
-msgid "Text Attributes"
-msgstr "Tekstegenskaper"
+msgid "Text Attributes..."
+msgstr ""
#: WriterCommands.xcu
msgctxt ""
diff --git a/source/nb/readlicense_oo/docs.po b/source/nb/readlicense_oo/docs.po
index 24cc947fc53..3aea3cefdd4 100644
--- a/source/nb/readlicense_oo/docs.po
+++ b/source/nb/readlicense_oo/docs.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: 2018-04-17 15:54+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2017-11-17 14:37+0000\n"
"Last-Translator: Karl Morten Ramberg <karl.m.ramberg@gmail.com>\n"
"Language-Team: British English <>\n"
@@ -117,8 +117,8 @@ msgctxt ""
"readme.xrm\n"
"macxiOSX\n"
"readmeitem.text"
-msgid "MacOSX 10.8 (Mountain Lion) or higher"
-msgstr "MacOSX 10.8 (Mountain Lion) eller høyere"
+msgid "MacOSX 10.9 (Mavericks) or higher"
+msgstr ""
#: readme.xrm
msgctxt ""
diff --git a/source/nb/sc/messages.po b/source/nb/sc/messages.po
index 5bc6ef8d77b..8997a514796 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-12 14:40+0200\n"
"PO-Revision-Date: 2018-02-14 09:25+0000\n"
"Last-Translator: Karl Morten Ramberg <karl.m.ramberg@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1870,16 +1870,21 @@ msgid "Nested arrays are not supported."
msgstr "Nøstede tabeller er ikke støttet."
#: sc/inc/globstr.hrc:390
+msgctxt "STR_ERR_LONG_BAD_ARRAY_CONTENT"
+msgid "Unsupported inline array content."
+msgstr ""
+
+#: sc/inc/globstr.hrc:391
msgctxt "STR_UNDO_TEXTTOCOLUMNS"
msgid "Text to Columns"
msgstr "Tekst til kolonner"
-#: sc/inc/globstr.hrc:391
+#: sc/inc/globstr.hrc:392
msgctxt "STR_DOC_UPDATED"
msgid "Your spreadsheet has been updated with changes saved by other users."
msgstr "Regnearket er oppdatert med endringer fra andre brukere."
-#: sc/inc/globstr.hrc:392
+#: sc/inc/globstr.hrc:393
msgctxt "STR_DOC_WILLBESAVED"
msgid ""
"The spreadsheet must be saved now to activate sharing mode.\n"
@@ -1890,7 +1895,7 @@ msgstr ""
"\n"
"Vil du fortsette?"
-#: sc/inc/globstr.hrc:393
+#: sc/inc/globstr.hrc:394
msgctxt "STR_DOC_WILLNOTBESAVED"
msgid ""
"Already resolved merge conflicts will be lost and your changes to the shared spreadsheet will not be saved.\n"
@@ -1901,7 +1906,7 @@ msgstr ""
"\n"
"Vil du fortsette?"
-#: sc/inc/globstr.hrc:394
+#: sc/inc/globstr.hrc:395
msgctxt "STR_DOC_DISABLESHARED"
msgid ""
"Disabling shared mode of a spreadsheet hinders all other users of the shared spreadsheet to merge back their work.\n"
@@ -1912,7 +1917,7 @@ msgstr ""
"\n"
"Vil du fortsette?"
-#: sc/inc/globstr.hrc:395
+#: sc/inc/globstr.hrc:396
msgctxt "STR_DOC_NOLONGERSHARED"
msgid ""
"This spreadsheet is no longer in shared mode.\n"
@@ -1923,7 +1928,7 @@ msgstr ""
"\n"
"Lagre regnearket i en annen fil og flett endringene inn i det delte regnearket manuelt."
-#: sc/inc/globstr.hrc:396
+#: sc/inc/globstr.hrc:397
msgctxt "STR_FILE_LOCKED_TRY_LATER"
msgid ""
"The shared spreadsheet file is locked due to a merge in progress by user: '%1'\n"
@@ -1934,7 +1939,7 @@ msgstr ""
"\n"
"Det er ikke mulig å slå av deling så lenge fila er låst. Prøv igjen senere."
-#: sc/inc/globstr.hrc:397
+#: sc/inc/globstr.hrc:398
msgctxt "STR_FILE_LOCKED_SAVE_LATER"
msgid ""
"The shared spreadsheet file is locked due to a merge in progress by user: '%1'\n"
@@ -1945,147 +1950,147 @@ msgstr ""
"\n"
"Prøv igjen senere for å lagre endringene dine."
-#: sc/inc/globstr.hrc:398
+#: sc/inc/globstr.hrc:399
msgctxt "STR_UNKNOWN_USER"
msgid "Unknown User"
msgstr "Ukjent bruker"
-#: sc/inc/globstr.hrc:399
+#: sc/inc/globstr.hrc:400
msgctxt "STR_SHAPE_AUTOSHAPE"
msgid "AutoShape"
msgstr "Autoform"
-#: sc/inc/globstr.hrc:400
+#: sc/inc/globstr.hrc:401
msgctxt "STR_SHAPE_RECTANGLE"
msgid "Rectangle"
msgstr "Rektangel"
-#: sc/inc/globstr.hrc:401
+#: sc/inc/globstr.hrc:402
msgctxt "STR_SHAPE_LINE"
msgid "Line"
msgstr "Linje"
-#: sc/inc/globstr.hrc:402
+#: sc/inc/globstr.hrc:403
msgctxt "STR_SHAPE_OVAL"
msgid "Oval"
msgstr "Oval"
-#: sc/inc/globstr.hrc:403
+#: sc/inc/globstr.hrc:404
msgctxt "STR_FORM_BUTTON"
msgid "Button"
msgstr "Knapp"
-#: sc/inc/globstr.hrc:404
+#: sc/inc/globstr.hrc:405
msgctxt "STR_FORM_CHECKBOX"
msgid "Check Box"
msgstr "Avkryssingsboks"
-#: sc/inc/globstr.hrc:405
+#: sc/inc/globstr.hrc:406
msgctxt "STR_FORM_OPTIONBUTTON"
msgid "Option Button"
msgstr "Valgknapp"
-#: sc/inc/globstr.hrc:406
+#: sc/inc/globstr.hrc:407
msgctxt "STR_FORM_LABEL"
msgid "Label"
msgstr "Overskrift"
-#: sc/inc/globstr.hrc:407
+#: sc/inc/globstr.hrc:408
msgctxt "STR_FORM_LISTBOX"
msgid "List Box"
msgstr "Listeboks"
-#: sc/inc/globstr.hrc:408
+#: sc/inc/globstr.hrc:409
msgctxt "STR_FORM_GROUPBOX"
msgid "Group Box"
msgstr "Gruppeboks"
-#: sc/inc/globstr.hrc:409
+#: sc/inc/globstr.hrc:410
msgctxt "STR_FORM_DROPDOWN"
msgid "Drop Down"
msgstr "Nedtrekksliste"
-#: sc/inc/globstr.hrc:410
+#: sc/inc/globstr.hrc:411
msgctxt "STR_FORM_SPINNER"
msgid "Spinner"
msgstr "Spinner"
-#: sc/inc/globstr.hrc:411
+#: sc/inc/globstr.hrc:412
msgctxt "STR_FORM_SCROLLBAR"
msgid "Scroll Bar"
msgstr "Rullefelt"
-#: sc/inc/globstr.hrc:412
+#: sc/inc/globstr.hrc:413
msgctxt "STR_STYLE_FAMILY_CELL"
msgid "Cell Styles"
msgstr "Cellestil"
-#: sc/inc/globstr.hrc:413
+#: sc/inc/globstr.hrc:414
msgctxt "STR_STYLE_FAMILY_PAGE"
msgid "Page Styles"
msgstr "Sidestiler"
-#: sc/inc/globstr.hrc:414
+#: sc/inc/globstr.hrc:415
msgctxt "STR_ERR_DATAPILOTSOURCE"
msgid "Pivot table source data is invalid."
msgstr "Datakilden til pivottabellen er ugyldig."
-#: sc/inc/globstr.hrc:415
+#: sc/inc/globstr.hrc:416
msgctxt "STR_OPTIONS_WARN_SEPARATORS"
msgid "Because the current formula separator settings conflict with the locale, the formula separators have been reset to their default values."
msgstr "Fordi gjeldende skilletegninnstillinger for formler er i konflikt med språkinnstillingen, ble skilletegnsoppsettet tilbakestilt til standardverdiene."
-#: sc/inc/globstr.hrc:416
+#: sc/inc/globstr.hrc:417
msgctxt "STR_UNDO_INSERT_CURRENT_DATE"
msgid "Insert Current Date"
msgstr "Sett inn gjeldende dato"
-#: sc/inc/globstr.hrc:417
+#: sc/inc/globstr.hrc:418
msgctxt "STR_UNDO_INSERT_CURRENT_TIME"
msgid "Insert Current Time"
msgstr "Sett inn gjeldende klokkeslett"
-#: sc/inc/globstr.hrc:418
+#: sc/inc/globstr.hrc:419
msgctxt "STR_MANAGE_NAMES"
msgid "Manage Names..."
msgstr "Håndter navn …"
-#: sc/inc/globstr.hrc:419
+#: sc/inc/globstr.hrc:420
msgctxt "STR_HEADER_NAME"
msgid "Name"
msgstr "Navn"
-#: sc/inc/globstr.hrc:420
+#: sc/inc/globstr.hrc:421
msgctxt "STR_HEADER_RANGE_OR_EXPR"
msgid "Range or formula expression"
msgstr "Område- eller formeluttrykk"
-#: sc/inc/globstr.hrc:421
+#: sc/inc/globstr.hrc:422
msgctxt "STR_HEADER_SCOPE"
msgid "Scope"
msgstr "Virkefelt"
-#: sc/inc/globstr.hrc:422
+#: sc/inc/globstr.hrc:423
msgctxt "STR_MULTI_SELECT"
msgid "(multiple)"
msgstr "(flere)"
-#: sc/inc/globstr.hrc:423
+#: sc/inc/globstr.hrc:424
msgctxt "STR_GLOBAL_SCOPE"
msgid "Document (Global)"
msgstr "Dokument (globalt)"
-#: sc/inc/globstr.hrc:424
+#: sc/inc/globstr.hrc:425
msgctxt "STR_ERR_NAME_EXISTS"
msgid "Invalid name. Already in use for the selected scope."
msgstr "Ugyldig navn. Allerede i bruk i det valgte området."
-#: sc/inc/globstr.hrc:425
+#: sc/inc/globstr.hrc:426
msgctxt "STR_ERR_NAME_INVALID"
msgid "Invalid name. Only use letters, numbers and underscore."
msgstr "Ugyldig navn. Bruk kun bokstaver, tall og understrek."
-#: sc/inc/globstr.hrc:426
+#: sc/inc/globstr.hrc:427
msgctxt "STR_UNSAVED_EXT_REF"
msgid ""
"This Document contains external references to unsaved documents.\n"
@@ -2096,217 +2101,217 @@ msgstr ""
"\n"
"Vil du fortsette?"
-#: sc/inc/globstr.hrc:427
+#: sc/inc/globstr.hrc:428
msgctxt "STR_CLOSE_WITH_UNSAVED_REFS"
msgid "This Document is referenced by another document and not yet saved. Closing it without saving will result in data loss."
msgstr "Dette dokumentet er akkreditert i et annet dokument, men er ikke lagret. Å lukke dokumentet uten å lagre det vil medføre tap av data."
-#: sc/inc/globstr.hrc:428
+#: sc/inc/globstr.hrc:429
msgctxt "STR_HEADER_RANGE"
msgid "Range"
msgstr "Område"
-#: sc/inc/globstr.hrc:429
+#: sc/inc/globstr.hrc:430
msgctxt "STR_HEADER_COND"
msgid "First Condition"
msgstr "Første vilkår"
-#: sc/inc/globstr.hrc:430
+#: sc/inc/globstr.hrc:431
msgctxt "STR_COND_CONDITION"
msgid "Cell value is"
msgstr "Celleverdien er"
-#: sc/inc/globstr.hrc:431
+#: sc/inc/globstr.hrc:432
msgctxt "STR_COND_COLORSCALE"
msgid "ColorScale"
msgstr "Fargeskala"
-#: sc/inc/globstr.hrc:432
+#: sc/inc/globstr.hrc:433
msgctxt "STR_COND_DATABAR"
msgid "DataBar"
msgstr "Datalinje"
-#: sc/inc/globstr.hrc:433
+#: sc/inc/globstr.hrc:434
msgctxt "STR_COND_ICONSET"
msgid "IconSet"
msgstr "Ikonsamling"
-#: sc/inc/globstr.hrc:434
+#: sc/inc/globstr.hrc:435
msgctxt "STR_COND_BETWEEN"
msgid "between"
msgstr "mellom"
-#: sc/inc/globstr.hrc:435
+#: sc/inc/globstr.hrc:436
msgctxt "STR_COND_NOTBETWEEN"
msgid "not between"
msgstr "ikke mellom"
-#: sc/inc/globstr.hrc:436
+#: sc/inc/globstr.hrc:437
msgctxt "STR_COND_UNIQUE"
msgid "unique"
msgstr "unik"
-#: sc/inc/globstr.hrc:437
+#: sc/inc/globstr.hrc:438
msgctxt "STR_COND_DUPLICATE"
msgid "duplicate"
msgstr "kopi"
-#: sc/inc/globstr.hrc:438
+#: sc/inc/globstr.hrc:439
msgctxt "STR_COND_FORMULA"
msgid "Formula is"
msgstr "Formelen er"
-#: sc/inc/globstr.hrc:439
+#: sc/inc/globstr.hrc:440
msgctxt "STR_COND_TOP10"
msgid "Top Elements"
msgstr "Øvre elementer"
-#: sc/inc/globstr.hrc:440
+#: sc/inc/globstr.hrc:441
msgctxt "STR_COND_BOTTOM10"
msgid "Bottom Elements"
msgstr "Nedre elementer"
-#: sc/inc/globstr.hrc:441
+#: sc/inc/globstr.hrc:442
msgctxt "STR_COND_TOP_PERCENT"
msgid "Top Percent"
msgstr "Øvre prosent"
-#: sc/inc/globstr.hrc:442
+#: sc/inc/globstr.hrc:443
msgctxt "STR_COND_DATE"
msgid "Date is"
msgstr "Datoen er"
-#: sc/inc/globstr.hrc:443
+#: sc/inc/globstr.hrc:444
msgctxt "STR_COND_BOTTOM_PERCENT"
msgid "Bottom Percent"
msgstr "Nedre prosent"
-#: sc/inc/globstr.hrc:444
+#: sc/inc/globstr.hrc:445
msgctxt "STR_COND_ABOVE_AVERAGE"
msgid "Above Average"
msgstr "Over gjennomsnittet"
-#: sc/inc/globstr.hrc:445
+#: sc/inc/globstr.hrc:446
msgctxt "STR_COND_BELOW_AVERAGE"
msgid "Below Average"
msgstr "Under gjennomsnittet"
-#: sc/inc/globstr.hrc:446
+#: sc/inc/globstr.hrc:447
msgctxt "STR_COND_ABOVE_EQUAL_AVERAGE"
msgid "Above or equal Average"
msgstr "Over eller likt gjennomsnitt"
-#: sc/inc/globstr.hrc:447
+#: sc/inc/globstr.hrc:448
msgctxt "STR_COND_BELOW_EQUAL_AVERAGE"
msgid "Below or equal Average"
msgstr "Mindre enn eller lik gjennomsnittet"
-#: sc/inc/globstr.hrc:448
+#: sc/inc/globstr.hrc:449
msgctxt "STR_COND_ERROR"
msgid "an Error code"
msgstr "En feilkode"
-#: sc/inc/globstr.hrc:449
+#: sc/inc/globstr.hrc:450
msgctxt "STR_COND_NOERROR"
msgid "not an Error code"
msgstr "ikke en feilkode"
-#: sc/inc/globstr.hrc:450
+#: sc/inc/globstr.hrc:451
msgctxt "STR_COND_BEGINS_WITH"
msgid "Begins with"
msgstr "Begynner med"
-#: sc/inc/globstr.hrc:451
+#: sc/inc/globstr.hrc:452
msgctxt "STR_COND_ENDS_WITH"
msgid "Ends with"
msgstr "Slutter med"
-#: sc/inc/globstr.hrc:452
+#: sc/inc/globstr.hrc:453
msgctxt "STR_COND_CONTAINS"
msgid "Contains"
msgstr "Inneholder"
-#: sc/inc/globstr.hrc:453
+#: sc/inc/globstr.hrc:454
msgctxt "STR_COND_NOT_CONTAINS"
msgid "Not Contains"
msgstr "Inneholder ikke"
-#: sc/inc/globstr.hrc:454
+#: sc/inc/globstr.hrc:455
msgctxt "STR_COND_TODAY"
msgid "today"
msgstr "i dag"
-#: sc/inc/globstr.hrc:455
+#: sc/inc/globstr.hrc:456
msgctxt "STR_COND_YESTERDAY"
msgid "yesterday"
msgstr "i går"
-#: sc/inc/globstr.hrc:456
+#: sc/inc/globstr.hrc:457
msgctxt "STR_COND_TOMORROW"
msgid "tomorrow"
msgstr "i morgen"
-#: sc/inc/globstr.hrc:457
+#: sc/inc/globstr.hrc:458
msgctxt "STR_COND_LAST7DAYS"
msgid "in the last 7 days"
msgstr "de siste 7 dagene"
-#: sc/inc/globstr.hrc:458
+#: sc/inc/globstr.hrc:459
msgctxt "STR_COND_THISWEEK"
msgid "this week"
msgstr "denne uka"
-#: sc/inc/globstr.hrc:459
+#: sc/inc/globstr.hrc:460
msgctxt "STR_COND_LASTWEEK"
msgid "last week"
msgstr "forrige uke"
-#: sc/inc/globstr.hrc:460
+#: sc/inc/globstr.hrc:461
msgctxt "STR_COND_NEXTWEEK"
msgid "next week"
msgstr "neste uke"
-#: sc/inc/globstr.hrc:461
+#: sc/inc/globstr.hrc:462
msgctxt "STR_COND_THISMONTH"
msgid "this month"
msgstr "denne måneden"
-#: sc/inc/globstr.hrc:462
+#: sc/inc/globstr.hrc:463
msgctxt "STR_COND_LASTMONTH"
msgid "last month"
msgstr "forrige måned"
-#: sc/inc/globstr.hrc:463
+#: sc/inc/globstr.hrc:464
msgctxt "STR_COND_NEXTMONTH"
msgid "next month"
msgstr "neste måned"
-#: sc/inc/globstr.hrc:464
+#: sc/inc/globstr.hrc:465
msgctxt "STR_COND_THISYEAR"
msgid "this year"
msgstr "dette året"
-#: sc/inc/globstr.hrc:465
+#: sc/inc/globstr.hrc:466
msgctxt "STR_COND_LASTYEAR"
msgid "last year"
msgstr "fjoråret"
-#: sc/inc/globstr.hrc:466
+#: sc/inc/globstr.hrc:467
msgctxt "STR_COND_NEXTYEAR"
msgid "next year"
msgstr "neste år"
-#: sc/inc/globstr.hrc:467
+#: sc/inc/globstr.hrc:468
msgctxt "STR_COND_AND"
msgid "and"
msgstr "og"
-#: sc/inc/globstr.hrc:468
+#: sc/inc/globstr.hrc:469
msgctxt "STR_ERR_CONDFORMAT_PROTECTED"
msgid "Conditional Formats can not be created, deleted or changed in protected sheets."
msgstr ""
-#: sc/inc/globstr.hrc:469
+#: sc/inc/globstr.hrc:470
msgctxt "STR_EDIT_EXISTING_COND_FORMATS"
msgid ""
"The selected cell already contains conditional formatting. You can either edit the existing conditional format or you define a new overlapping conditional format.\n"
@@ -2317,7 +2322,7 @@ msgstr ""
"\n"
" Vil du redigere det eksisterende vilkårsformatet?"
-#: sc/inc/globstr.hrc:470
+#: sc/inc/globstr.hrc:471
msgctxt "STR_QUERY_FORMULA_RECALC_ONLOAD_ODS"
msgid ""
"This document was last saved by an application other than %PRODUCTNAME. Some formula cells may produce different results when recalculated.\n"
@@ -2328,7 +2333,7 @@ msgstr ""
"\n"
"Vil du beregne alle formelceller på nytt nå?"
-#: sc/inc/globstr.hrc:471
+#: sc/inc/globstr.hrc:472
msgctxt "STR_QUERY_FORMULA_RECALC_ONLOAD_XLS"
msgid ""
"This document was last saved by Excel. Some formula cells may produce different results when recalculated.\n"
@@ -2339,77 +2344,77 @@ msgstr ""
"\n"
"Vil du beregne formelcellene på nytt?"
-#: sc/inc/globstr.hrc:472
+#: sc/inc/globstr.hrc:473
msgctxt "STR_NO_INSERT_DELETE_OVER_PIVOT_TABLE"
msgid "You cannot insert or delete cells when the affected range intersects with pivot table."
msgstr "Du kan ikke sette inn eller slette celler når området skjærer ved pivottabellen."
-#: sc/inc/globstr.hrc:473
+#: sc/inc/globstr.hrc:474
msgctxt "STR_DPFIELD_GROUP_BY_SECONDS"
msgid "Seconds"
msgstr "Sekunder"
-#: sc/inc/globstr.hrc:474
+#: sc/inc/globstr.hrc:475
msgctxt "STR_DPFIELD_GROUP_BY_MINUTES"
msgid "Minutes"
msgstr "Minutter"
-#: sc/inc/globstr.hrc:475
+#: sc/inc/globstr.hrc:476
msgctxt "STR_DPFIELD_GROUP_BY_HOURS"
msgid "Hours"
msgstr "Timer"
-#: sc/inc/globstr.hrc:476
+#: sc/inc/globstr.hrc:477
msgctxt "STR_DPFIELD_GROUP_BY_DAYS"
msgid "Days"
msgstr "dager"
-#: sc/inc/globstr.hrc:477
+#: sc/inc/globstr.hrc:478
msgctxt "STR_DPFIELD_GROUP_BY_MONTHS"
msgid "Months"
msgstr "måneder"
-#: sc/inc/globstr.hrc:478
+#: sc/inc/globstr.hrc:479
msgctxt "STR_DPFIELD_GROUP_BY_QUARTERS"
msgid "Quarters"
msgstr "Kvartaler"
-#: sc/inc/globstr.hrc:479
+#: sc/inc/globstr.hrc:480
msgctxt "STR_DPFIELD_GROUP_BY_YEARS"
msgid "Years"
msgstr "År"
-#: sc/inc/globstr.hrc:480
+#: sc/inc/globstr.hrc:481
msgctxt "STR_INVALIDVAL"
msgid "Invalid target value."
msgstr "Ugyldig målverdi."
-#: sc/inc/globstr.hrc:481
+#: sc/inc/globstr.hrc:482
msgctxt "STR_INVALIDVAR"
msgid "Undefined name for variable cell."
msgstr "Ikke angitt navn for variabel celle"
-#: sc/inc/globstr.hrc:482
+#: sc/inc/globstr.hrc:483
msgctxt "STR_INVALIDFORM"
msgid "Undefined name as formula cell."
msgstr "Ikke angitt navn som formelcelle"
-#: sc/inc/globstr.hrc:483
+#: sc/inc/globstr.hrc:484
msgctxt "STR_NOFORMULA"
msgid "Formula cell must contain a formula."
msgstr "Formelcella må inneholde en formel."
-#: sc/inc/globstr.hrc:484
+#: sc/inc/globstr.hrc:485
msgctxt "STR_INVALIDINPUT"
msgid "Invalid input."
msgstr "Ugyldige data."
-#: sc/inc/globstr.hrc:485
+#: sc/inc/globstr.hrc:486
msgctxt "STR_INVALIDCONDITION"
msgid "Invalid condition."
msgstr "Ugyldig vilkår."
-#: sc/inc/globstr.hrc:486
+#: sc/inc/globstr.hrc:487
msgctxt "STR_QUERYREMOVE"
msgid ""
"Should the entry\n"
@@ -2420,133 +2425,133 @@ msgstr ""
"#\n"
"slettes?"
-#: sc/inc/globstr.hrc:487
+#: sc/inc/globstr.hrc:488
msgctxt "STR_COPYLIST"
msgid "Copy List"
msgstr "Kopier liste"
-#: sc/inc/globstr.hrc:488
+#: sc/inc/globstr.hrc:489
msgctxt "STR_COPYFROM"
msgid "List from"
msgstr "Liste fra"
-#: sc/inc/globstr.hrc:489
+#: sc/inc/globstr.hrc:490
msgctxt "STR_COPYERR"
msgid "Cells without text have been ignored."
msgstr "Celler uten tekst ble oversett."
-#: sc/inc/globstr.hrc:490
+#: sc/inc/globstr.hrc:491
#, c-format
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%s-click to follow hyperlink:"
msgstr "%s-klikk for å følga hyperlenka:"
-#: sc/inc/globstr.hrc:491
+#: sc/inc/globstr.hrc:492
msgctxt "STR_CLICKHYPERLINK"
msgid "click to open hyperlink:"
msgstr "klikk for å åpne hyperlenke:"
-#: sc/inc/globstr.hrc:492
+#: sc/inc/globstr.hrc:493
msgctxt "STR_PRINT_PREVIEW_NODATA"
msgid "No Data"
msgstr "Ingen data"
-#: sc/inc/globstr.hrc:493
+#: sc/inc/globstr.hrc:494
msgctxt "STR_PRINT_PREVIEW_EMPTY_RANGE"
msgid "Print Range Empty"
msgstr "Utskriftsområdet er tomt"
-#: sc/inc/globstr.hrc:494
+#: sc/inc/globstr.hrc:495
msgctxt "STR_UNDO_CONDFORMAT"
msgid "Conditional Format"
msgstr "Vilkårsformat"
-#: sc/inc/globstr.hrc:495
+#: sc/inc/globstr.hrc:496
msgctxt "STR_UNDO_CONDFORMAT_LIST"
msgid "Conditional Formats"
msgstr "Vilkårsformatering"
-#: sc/inc/globstr.hrc:496
+#: sc/inc/globstr.hrc:497
msgctxt "STR_UNDO_FORMULA_TO_VALUE"
msgid "Convert Formula To Value"
msgstr "Konverter formel til verdi"
-#: sc/inc/globstr.hrc:497
+#: sc/inc/globstr.hrc:498
msgctxt "STR_UNQUOTED_STRING"
msgid "Strings without quotes are interpreted as column/row labels."
msgstr "Strengar uten hermetegn blir tolket som kolonne-/rad-etiketter."
-#: sc/inc/globstr.hrc:498
+#: sc/inc/globstr.hrc:499
msgctxt "STR_ENTER_VALUE"
msgid "Enter a value!"
msgstr "Skriv inn en verdi!"
-#: sc/inc/globstr.hrc:499
+#: sc/inc/globstr.hrc:500
msgctxt "STR_TABLE_COUNT"
msgid "Sheet %1 of %2"
msgstr "Ark %1 av %2"
-#: sc/inc/globstr.hrc:500
+#: sc/inc/globstr.hrc:501
msgctxt "STR_FUNCTIONS_FOUND"
msgid "%1 and %2 more"
msgstr "%1 og %2 mer"
-#: sc/inc/globstr.hrc:501
+#: sc/inc/globstr.hrc:502
msgctxt "STR_GENERAL"
msgid "General"
msgstr "Generelt"
-#: sc/inc/globstr.hrc:502
+#: sc/inc/globstr.hrc:503
msgctxt "STR_NUMBER"
msgid "Number"
msgstr "Nummer"
-#: sc/inc/globstr.hrc:503
+#: sc/inc/globstr.hrc:504
msgctxt "STR_PERCENT"
msgid "Percent"
msgstr "Prosent"
-#: sc/inc/globstr.hrc:504
+#: sc/inc/globstr.hrc:505
msgctxt "STR_CURRENCY"
msgid "Currency"
msgstr "Valuta"
-#: sc/inc/globstr.hrc:505
+#: sc/inc/globstr.hrc:506
msgctxt "STR_DATE"
msgid "Date"
msgstr "Dato"
-#: sc/inc/globstr.hrc:506
+#: sc/inc/globstr.hrc:507
msgctxt "STR_TIME"
msgid "Time"
msgstr "Tid"
-#: sc/inc/globstr.hrc:507
+#: sc/inc/globstr.hrc:508
msgctxt "STR_SCIENTIFIC"
msgid "Scientific"
msgstr "Vitenskapelig"
-#: sc/inc/globstr.hrc:508
+#: sc/inc/globstr.hrc:509
msgctxt "STR_FRACTION"
msgid "Fraction"
msgstr "Del"
-#: sc/inc/globstr.hrc:509
+#: sc/inc/globstr.hrc:510
msgctxt "STR_BOOLEAN_VALUE"
msgid "Boolean Value"
msgstr "Bolsk verdi"
-#: sc/inc/globstr.hrc:510
+#: sc/inc/globstr.hrc:511
msgctxt "STR_TEXT"
msgid "Text"
msgstr "Tekst"
-#: sc/inc/globstr.hrc:511
+#: sc/inc/globstr.hrc:512
msgctxt "STR_QUERY_PIVOTTABLE_DELTAB"
msgid "The selected sheet(s) contain source data of related pivot tables that will be lost. Are you sure you want to delete the selected sheet(s)?"
msgstr "Det merkede arket/ arkene inneholder kildedata tilhørende pivottabeller. Disse vil gå tapt. Vil du likevel slette det/de merkede arket/ arkene?"
-#: sc/inc/globstr.hrc:512
+#: sc/inc/globstr.hrc:513
msgctxt "STR_ERR_NAME_INVALID_CELL_REF"
msgid "Invalid name. Reference to a cell, or a range of cells not allowed."
msgstr "Ugyldig navn. Det er ikke lov til å referere til ni celle eller et celleområde."
@@ -10488,8 +10493,8 @@ msgstr "Modus"
#: sc/inc/scfuncs.hrc:3010
msgctxt "SC_OPCODE_T_TEST"
-msgid "Mode specifies the number of distribution tails to return. 1= one-tailed, 2 = two-tailed distribution"
-msgstr "Modusen angir antall fordelingssider. 1 gir ensidig, 2 gir tosidig fordeling."
+msgid "Mode specifies the number of distribution tails to return. 1 = one-tailed, 2 = two-tailed distribution"
+msgstr ""
#: sc/inc/scfuncs.hrc:3011
msgctxt "SC_OPCODE_T_TEST"
@@ -10533,8 +10538,8 @@ msgstr "Modus"
#: sc/inc/scfuncs.hrc:3024
msgctxt "SC_OPCODE_T_TEST_MS"
-msgid "Mode specifies the number of distribution tails to return. 1= one-tailed, 2 = two-tailed distribution"
-msgstr "Moduset gir antallet fordelingssider. 1 gir ensidig, 2 gir tosidig fordeling."
+msgid "Mode specifies the number of distribution tails to return. 1 = one-tailed, 2 = two-tailed distribution"
+msgstr ""
#: sc/inc/scfuncs.hrc:3025
msgctxt "SC_OPCODE_T_TEST_MS"
@@ -18020,22 +18025,22 @@ msgctxt "mergecellsdialog|MergeCellsDialog"
msgid "Merge Cells"
msgstr "Slå sammen celler"
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:81
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:84
msgctxt "mergecellsdialog|label"
msgid "Some cells are not empty."
msgstr "Noen celler er ikke tomme"
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:96
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:99
msgctxt "mergecellsdialog|move-cells-radio"
msgid "Move the contents of the hidden cells into the first cell"
msgstr "Flytt innholdet av de skjulte cellene inn i den første cellen"
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:112
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:115
msgctxt "mergecellsdialog|empty-cells-radio"
msgid "Empty the contents of the hidden cells"
msgstr "Tømm innholdet av de skjulte cellene"
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:128
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:131
msgctxt "mergecellsdialog|keep-content-radio"
msgid "Keep the contents of the hidden cells"
msgstr "Behold innholdet av de skjulte cellene"
diff --git a/source/nb/sd/messages.po b/source/nb/sd/messages.po
index 1935a53add6..cb27556d680 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2018-02-14 09:31+0000\n"
"Last-Translator: Karl Morten Ramberg <karl.m.ramberg@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -16,167 +16,167 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1518600691.000000\n"
-#: sd/inc/DocumentRenderer.hrc:29
+#: sd/inc/DocumentRenderer.hrc:27
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Slides"
msgstr "Lysbilder"
-#: sd/inc/DocumentRenderer.hrc:30
+#: sd/inc/DocumentRenderer.hrc:28
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Handouts"
msgstr "Støtteark"
-#: sd/inc/DocumentRenderer.hrc:31
+#: sd/inc/DocumentRenderer.hrc:29
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Notes"
msgstr "Notater"
-#: sd/inc/DocumentRenderer.hrc:32
+#: sd/inc/DocumentRenderer.hrc:30
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Outline"
msgstr "Disposisjon"
-#: sd/inc/DocumentRenderer.hrc:37
+#: sd/inc/DocumentRenderer.hrc:35
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "According to layout"
msgstr "I henhold til utformingen"
-#: sd/inc/DocumentRenderer.hrc:38
+#: sd/inc/DocumentRenderer.hrc:36
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "1"
msgstr "1"
-#: sd/inc/DocumentRenderer.hrc:39
+#: sd/inc/DocumentRenderer.hrc:37
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "2"
msgstr "2"
-#: sd/inc/DocumentRenderer.hrc:40
+#: sd/inc/DocumentRenderer.hrc:38
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "3"
msgstr "3"
-#: sd/inc/DocumentRenderer.hrc:41
+#: sd/inc/DocumentRenderer.hrc:39
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "4"
msgstr "4"
-#: sd/inc/DocumentRenderer.hrc:42
+#: sd/inc/DocumentRenderer.hrc:40
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "6"
msgstr "6"
-#: sd/inc/DocumentRenderer.hrc:43
+#: sd/inc/DocumentRenderer.hrc:41
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "9"
msgstr "9"
-#: sd/inc/DocumentRenderer.hrc:48
+#: sd/inc/DocumentRenderer.hrc:46
msgctxt "STR_IMPRESS_PRINT_UI_ORDER_CHOICES"
msgid "Left to right, then down"
msgstr "Fra venstre til høyre, deretter nedover"
-#: sd/inc/DocumentRenderer.hrc:49
+#: sd/inc/DocumentRenderer.hrc:47
msgctxt "STR_IMPRESS_PRINT_UI_ORDER_CHOICES"
msgid "Top to bottom, then right"
msgstr "Ovenfra og ned, deretter til høyre"
-#: sd/inc/DocumentRenderer.hrc:54
+#: sd/inc/DocumentRenderer.hrc:52
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Original colors"
msgstr "Orginalfarger"
-#: sd/inc/DocumentRenderer.hrc:55
+#: sd/inc/DocumentRenderer.hrc:53
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Grayscale"
msgstr "Gråtoner"
-#: sd/inc/DocumentRenderer.hrc:56
+#: sd/inc/DocumentRenderer.hrc:54
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Black & white"
msgstr "Svart og hvit"
-#: sd/inc/DocumentRenderer.hrc:61
+#: sd/inc/DocumentRenderer.hrc:59
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Original size"
msgstr "Opprinnelig størrelse"
-#: sd/inc/DocumentRenderer.hrc:62
+#: sd/inc/DocumentRenderer.hrc:60
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Fit to printable page"
msgstr "Tilpass til utskrivbar side"
-#: sd/inc/DocumentRenderer.hrc:63
+#: sd/inc/DocumentRenderer.hrc:61
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Distribute on multiple sheets of paper"
msgstr "Fordel på flere ark"
-#: sd/inc/DocumentRenderer.hrc:64
+#: sd/inc/DocumentRenderer.hrc:62
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Tile sheet of paper with repeated slides"
msgstr "Side ved side ark med gjentatte lysbilder"
-#: sd/inc/DocumentRenderer.hrc:69
+#: sd/inc/DocumentRenderer.hrc:67
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Original size"
msgstr "Opprinnelig størrelse"
-#: sd/inc/DocumentRenderer.hrc:70
+#: sd/inc/DocumentRenderer.hrc:68
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Fit to printable page"
msgstr "Tilpass til utskrivbar side"
-#: sd/inc/DocumentRenderer.hrc:71
+#: sd/inc/DocumentRenderer.hrc:69
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Distribute on multiple sheets of paper"
msgstr "Fordel på flere ark"
-#: sd/inc/DocumentRenderer.hrc:72
+#: sd/inc/DocumentRenderer.hrc:70
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Tile sheet of paper with repeated pages"
msgstr "Side ved side ark med gjentatte sider"
-#: sd/inc/DocumentRenderer.hrc:77
+#: sd/inc/DocumentRenderer.hrc:75
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "All pages"
msgstr "Alle sider"
-#: sd/inc/DocumentRenderer.hrc:78
+#: sd/inc/DocumentRenderer.hrc:76
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "Front sides / right pages"
msgstr "Forside / høyresider"
-#: sd/inc/DocumentRenderer.hrc:79
+#: sd/inc/DocumentRenderer.hrc:77
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "Back sides / left pages"
msgstr "Baksider/venstresider"
-#: sd/inc/DocumentRenderer.hrc:84
+#: sd/inc/DocumentRenderer.hrc:82
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~All slides"
msgstr "Alle lysbilder"
-#: sd/inc/DocumentRenderer.hrc:85
+#: sd/inc/DocumentRenderer.hrc:83
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~Slides"
msgstr "Lysbilder"
-#: sd/inc/DocumentRenderer.hrc:86
+#: sd/inc/DocumentRenderer.hrc:84
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Se~lection"
msgstr "Utvalg"
-#: sd/inc/DocumentRenderer.hrc:91
+#: sd/inc/DocumentRenderer.hrc:89
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~All pages"
msgstr "Alle sider"
-#: sd/inc/DocumentRenderer.hrc:92
+#: sd/inc/DocumentRenderer.hrc:90
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Pa~ges"
msgstr "Sider"
-#: sd/inc/DocumentRenderer.hrc:93
+#: sd/inc/DocumentRenderer.hrc:91
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Se~lection"
msgstr "Utvalg"
diff --git a/source/nb/svx/messages.po b/source/nb/svx/messages.po
index 03e8843926e..f93a4743347 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: 2018-05-16 16:53+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2018-02-14 09:32+0000\n"
"Last-Translator: Karl Morten Ramberg <karl.m.ramberg@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5179,8 +5179,8 @@ msgstr "Du kan også legge ved relevante deler av din brikerprofil i feilrapport
#: svx/uiconfig/ui/safemodedialog.ui:432
msgctxt "safemodedialog|btn_create_zip"
-msgid "Create Zip Archive from User Profile"
-msgstr "Skap Zip arkiv fra brukerprofilen"
+msgid "Archive User Profile"
+msgstr ""
#: svx/uiconfig/ui/safemodedialog.ui:445
msgctxt "safemodedialog|linkbutton_profile"
@@ -8769,9 +8769,9 @@ msgid "Red"
msgstr "Rød"
#: include/svx/strings.hrc:565
-msgctxt "RID_SVXSTR_COLOR_VIOLET"
-msgid "Violet"
-msgstr "Fiolett"
+msgctxt "RID_SVXSTR_COLOR_MAGENTA"
+msgid "Magenta"
+msgstr "Magentarød"
#: include/svx/strings.hrc:566
msgctxt "RID_SVXSTR_COLOR_PURPLE"
@@ -8835,9 +8835,9 @@ msgid "Light Red"
msgstr "Lyserød"
#: include/svx/strings.hrc:579
-msgctxt "RID_SVXSTR_COLOR_LIGHTVIOLET"
-msgid "Light Violet"
-msgstr "Lys fiolett"
+msgctxt "RID_SVXSTR_COLOR_LIGHTMAGENTA"
+msgid "Light Magenta"
+msgstr ""
#: include/svx/strings.hrc:580
msgctxt "RID_SVXSTR_COLOR_LIGHTPURPLE"
@@ -8901,9 +8901,9 @@ msgid "Dark Red"
msgstr "Mørk rød"
#: include/svx/strings.hrc:593
-msgctxt "RID_SVXSTR_COLOR_DARKVIOLET1"
-msgid "Dark Violet"
-msgstr "Mørk fiolett"
+msgctxt "RID_SVXSTR_COLOR_DARKMAGENTA"
+msgid "Dark Magenta"
+msgstr ""
#: include/svx/strings.hrc:594
msgctxt "RID_SVXSTR_COLOR_DARKPURPLE"
@@ -8937,55 +8937,55 @@ msgstr "Mørk lime"
#. Elements of the Tonal color palette
#: include/svx/strings.hrc:601
+msgctxt "RID_SVXSTR_COLOR_VIOLET"
+msgid "Violet"
+msgstr "Fiolett"
+
+#: include/svx/strings.hrc:602
msgctxt "RID_SVXSTR_COLOR_VIOLET_OUG"
msgid "Violet (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:602
+#: include/svx/strings.hrc:603
msgctxt "RID_SVXSTR_COLOR_BLUE_OUG"
msgid "Blue (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:603
+#: include/svx/strings.hrc:604
msgctxt "RID_SVXSTR_COLOR_AZURE_OUG"
msgid "Azure (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:604
+#: include/svx/strings.hrc:605
msgctxt "RID_SVXSTR_COLOR_SPRINGGREEN_OUG"
msgid "Spring Green (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:605
+#: include/svx/strings.hrc:606
msgctxt "RID_SVXSTR_COLOR_GREEN_OUG"
msgid "Green (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:606
+#: include/svx/strings.hrc:607
msgctxt "RID_SVXSTR_COLOR_CHARTREUSEGREEN_OUG"
msgid "Chartreuse Green (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:607
+#: include/svx/strings.hrc:608
msgctxt "RID_SVXSTR_COLOR_ORANGE_OUG"
msgid "Orange (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:608
+#: include/svx/strings.hrc:609
msgctxt "RID_SVXSTR_COLOR_RED_OUG"
msgid "Red (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:609
+#: include/svx/strings.hrc:610
msgctxt "RID_SVXSTR_COLOR_ROSE_OUG"
msgid "Rose (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:610
-msgctxt "RID_SVXSTR_COLOR_MAGENTA"
-msgid "Magenta"
-msgstr "Magentarød"
-
#: include/svx/strings.hrc:611
msgctxt "RID_SVXSTR_COLOR_AZURE"
msgid "Azure"
@@ -12091,13 +12091,13 @@ msgstr "Høyre-pekende piltegn"
#: include/svx/strings.hrc:1273
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_6"
-msgid "Check mark bullets"
-msgstr "Haketegn"
+msgid "Cross mark bullets"
+msgstr ""
#: include/svx/strings.hrc:1274
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_7"
-msgid "Tick mark bullets"
-msgstr "Avkryssingshaker"
+msgid "Check mark bullets"
+msgstr ""
#: include/svx/strings.hrc:1275
msgctxt "RID_SVXSTR_SINGLENUM_DESCRIPTION_0"
diff --git a/source/nb/sw/messages.po b/source/nb/sw/messages.po
index 8d29b11075c..ca8501ad443 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: 2018-05-22 13:17+0200\n"
+"POT-Creation-Date: 2018-06-12 14:41+0200\n"
"PO-Revision-Date: 2018-02-14 09:32+0000\n"
"Last-Translator: Karl Morten Ramberg <karl.m.ramberg@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1180,13 +1180,13 @@ msgstr "Sitat"
#: sw/inc/strings.hrc:172
msgctxt "STR_POOLCOLL_TOX_ILLUSH"
-msgid "Illustration Index Heading"
-msgstr "Overskrift for illustrasjonsliste"
+msgid "Figure Index Heading"
+msgstr ""
#: sw/inc/strings.hrc:173
msgctxt "STR_POOLCOLL_TOX_ILLUS1"
-msgid "Illustration Index 1"
-msgstr "Illustrasjonsliste 1"
+msgid "Figure Index 1"
+msgstr ""
#: sw/inc/strings.hrc:174
msgctxt "STR_POOLCOLL_TOX_OBJECTH"
@@ -3590,8 +3590,8 @@ msgstr "Objektliste"
#: sw/inc/strings.hrc:672
msgctxt "STR_TOX_ILL"
-msgid "Illustration Index"
-msgstr "Illustrasjonsliste"
+msgid "Table of Figures"
+msgstr ""
#: sw/inc/strings.hrc:673
#, c-format
@@ -9244,72 +9244,72 @@ msgctxt "footnotepage|label5"
msgid "Continuation Notice"
msgstr "Fortsettelsesmerknad"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:49
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:55
msgctxt "footnotesendnotestabpage|ftnntnum"
msgid "_Restart numbering"
msgstr "Start _nummereringa på nytt"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:91
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:93
msgctxt "footnotesendnotestabpage|ftnoffset_label"
msgid "_Start at:"
msgstr "_Start på:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:112
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:111
msgctxt "footnotesendnotestabpage|ftnntnumfmt"
msgid "Custom _format"
msgstr "_Selvvalgt format"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:155
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:150
msgctxt "footnotesendnotestabpage|ftnsuffix_label"
msgid "Aft_er:"
msgstr "Ett_er:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:199
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:188
msgctxt "footnotesendnotestabpage|ftnprefix_label"
msgid "Be_fore:"
msgstr "_Før:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:228
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:212
msgctxt "footnotesendnotestabpage|ftnntattextend"
msgid "Collec_t at end of text"
msgstr "Samle ved slutten av _teksten"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:252
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:234
msgctxt "footnotesendnotestabpage|label1"
msgid "Footnotes"
msgstr "Fotnoter"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:289
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:271
msgctxt "footnotesendnotestabpage|endntattextend"
msgid "C_ollect at end of section"
msgstr "Samle ved slutten av seksjonen"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:315
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:295
msgctxt "footnotesendnotestabpage|endntnum"
msgid "_Restart numbering"
msgstr "Start _nummereringa på nytt"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:357
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:333
msgctxt "footnotesendnotestabpage|endoffset_label"
msgid "_Start at:"
msgstr "_Start på:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:378
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:351
msgctxt "footnotesendnotestabpage|endntnumfmt"
msgid "_Custom format"
msgstr "_Selvvalgt format"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:421
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:390
msgctxt "footnotesendnotestabpage|endsuffix_label"
msgid "Aft_er:"
msgstr "Ett_er:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:465
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:428
msgctxt "footnotesendnotestabpage|endprefix_label"
msgid "Be_fore:"
msgstr "_Før:"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:500
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:458
msgctxt "footnotesendnotestabpage|label2"
msgid "Endnotes"
msgstr "Sluttnoter"
@@ -9339,27 +9339,27 @@ msgctxt "formatsectiondialog|notes"
msgid "Footnotes/Endnotes"
msgstr "Fot- og sluttnoter"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:63
+#: sw/uiconfig/swriter/ui/formattablepage.ui:77
msgctxt "formattablepage|nameft"
msgid "_Name"
msgstr "_Navn"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:79
+#: sw/uiconfig/swriter/ui/formattablepage.ui:91
msgctxt "formattablepage|widthft"
msgid "W_idth"
msgstr "B_redde"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:110
+#: sw/uiconfig/swriter/ui/formattablepage.ui:120
msgctxt "formattablepage|relwidth"
msgid "Relati_ve"
msgstr "Relati_v"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:155
+#: sw/uiconfig/swriter/ui/formattablepage.ui:160
msgctxt "formattablepage|label45"
msgid "Properties"
msgstr "Egenskaper"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:194
+#: sw/uiconfig/swriter/ui/formattablepage.ui:195
msgctxt "formattablepage|leftft"
msgid "Lef_t"
msgstr "_Venstre"
@@ -9369,62 +9369,62 @@ msgctxt "formattablepage|rightft"
msgid "Ri_ght"
msgstr "_Høyre"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:228
+#: sw/uiconfig/swriter/ui/formattablepage.ui:226
msgctxt "formattablepage|aboveft"
msgid "_Above"
msgstr "_Over"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:245
+#: sw/uiconfig/swriter/ui/formattablepage.ui:241
msgctxt "formattablepage|belowft"
msgid "_Below"
msgstr "_Under"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:320
+#: sw/uiconfig/swriter/ui/formattablepage.ui:311
msgctxt "formattablepage|label46"
msgid "Spacing"
msgstr "Avstand"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:362
+#: sw/uiconfig/swriter/ui/formattablepage.ui:349
msgctxt "formattablepage|full"
msgid "A_utomatic"
msgstr "A_utomatisk"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:380
+#: sw/uiconfig/swriter/ui/formattablepage.ui:365
msgctxt "formattablepage|left"
msgid "_Left"
msgstr "_Venstre"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:398
+#: sw/uiconfig/swriter/ui/formattablepage.ui:381
msgctxt "formattablepage|fromleft"
msgid "_From left"
msgstr "_Fra venstre"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:416
+#: sw/uiconfig/swriter/ui/formattablepage.ui:397
msgctxt "formattablepage|right"
msgid "R_ight"
msgstr "_Høyre"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:435
+#: sw/uiconfig/swriter/ui/formattablepage.ui:413
msgctxt "formattablepage|center"
msgid "_Center"
msgstr "_Midtstilt"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:453
+#: sw/uiconfig/swriter/ui/formattablepage.ui:429
msgctxt "formattablepage|free"
msgid "_Manual"
msgstr "_Manuell"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:478
+#: sw/uiconfig/swriter/ui/formattablepage.ui:452
msgctxt "formattablepage|label43"
msgid "Alignment"
msgstr "Justering"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:522
+#: sw/uiconfig/swriter/ui/formattablepage.ui:491
msgctxt "formattablepage|label53"
msgid "Text _direction"
msgstr "Tekst_retning"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:553
+#: sw/uiconfig/swriter/ui/formattablepage.ui:519
msgctxt "formattablepage|label44"
msgid "Properties "
msgstr "Egenskaper "
@@ -9779,22 +9779,27 @@ msgctxt "headerfootermenu|insert_pagenumber"
msgid "Insert Page Number"
msgstr ""
-#: sw/uiconfig/swriter/ui/indentpage.ui:52
+#: sw/uiconfig/swriter/ui/headerfootermenu.ui:42
+msgctxt "headerfootermenu|insert_pagecount"
+msgid "Insert Page Count"
+msgstr ""
+
+#: sw/uiconfig/swriter/ui/indentpage.ui:57
msgctxt "indentpage|label1"
msgid "_Before section"
msgstr "_Før seksjon"
-#: sw/uiconfig/swriter/ui/indentpage.ui:67
+#: sw/uiconfig/swriter/ui/indentpage.ui:71
msgctxt "indentpage|label3"
msgid "_After section"
msgstr "_Etter seksjon"
-#: sw/uiconfig/swriter/ui/indentpage.ui:113
+#: sw/uiconfig/swriter/ui/indentpage.ui:115
msgctxt "indentpage|label2"
msgid "Indent"
msgstr "Innrykk"
-#: sw/uiconfig/swriter/ui/indentpage.ui:142
+#: sw/uiconfig/swriter/ui/indentpage.ui:155
msgctxt "indentpage|preview-atkobject"
msgid "Example"
msgstr "Eksempel"
@@ -13285,8 +13290,8 @@ msgstr "Beskytt skjema"
#: sw/uiconfig/swriter/ui/optcompatpage.ui:68
msgctxt "optcompatpage|format"
-msgid "MS Word-compatible trailing blanks"
-msgstr "MS Word kompatible følgende tomrom"
+msgid "Word-compatible trailing blanks"
+msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:69
msgctxt "optcompatpage|format"
@@ -13295,7 +13300,7 @@ msgstr "Aksepter hvite linjer på PDF sidebakgrunner for kompatibilitet med eldr
#: sw/uiconfig/swriter/ui/optcompatpage.ui:70
msgctxt "optcompatpage|format"
-msgid "A database field (e.g., MailMerge) with empty value hides its paragraph"
+msgid "Hide paragraphs of database fields (e.g., mail merge) with an empty value"
msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:71
@@ -15979,122 +15984,122 @@ msgctxt "tableproperties|background"
msgid "Background"
msgstr "Bakgrunn"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:25
-msgctxt "tabletextflowpage|liststore1"
-msgid "Horizontal"
-msgstr "Vannrett"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:29
-msgctxt "tabletextflowpage|liststore1"
-msgid "Vertical"
-msgstr "Loddrett"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:33
-msgctxt "tabletextflowpage|liststore1"
-msgid "Use superordinate object settings"
-msgstr "Bruk innstillinger fra overordnet objekt"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:47
-msgctxt "tabletextflowpage|liststore2"
-msgid "Top"
-msgstr "Øverst"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:51
-msgctxt "tabletextflowpage|liststore2"
-msgid "Centered"
-msgstr "Midtstilt"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:55
-msgctxt "tabletextflowpage|liststore2"
-msgid "Bottom"
-msgstr "Nederst"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:97
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:53
msgctxt "tabletextflowpage|break"
msgid "_Break"
msgstr "Ko_ble fra"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:112
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:68
msgctxt "tabletextflowpage|page"
msgid "_Page"
msgstr "_Side"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:132
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:87
msgctxt "tabletextflowpage|column"
msgid "Col_umn"
msgstr "S_palte"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:151
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:106
msgctxt "tabletextflowpage|before"
msgid "Be_fore"
msgstr "_Foran"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:171
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:125
msgctxt "tabletextflowpage|after"
msgid "_After"
msgstr "_Etter"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:203
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:158
msgctxt "tabletextflowpage|pagestyle"
msgid "With Page St_yle"
msgstr "_Med sidestil"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:224
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:177
msgctxt "tabletextflowpage|pagenoft"
msgid "Page _number"
msgstr "_Sidetall"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:257
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:213
msgctxt "tabletextflowpage|pagestylelb-atkobject"
msgid "With Page Style"
msgstr "Med sidestil"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:274
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:230
msgctxt "tabletextflowpage|split"
msgid "Allow _table to split across pages and columns"
msgstr "Tillat at _tabellen deles opp over sider og spalter"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:289
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:245
msgctxt "tabletextflowpage|splitrow"
msgid "Allow row to break a_cross pages and columns"
msgstr "Tillat at _raden deles opp over sider og spalter"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:306
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:262
msgctxt "tabletextflowpage|keep"
msgid "_Keep with next paragraph"
msgstr "_Hold sammen med neste avsnitt"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:328
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:284
msgctxt "tabletextflowpage|label40"
msgid "Text _orientation"
msgstr "Tekst_retning"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:361
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:298
+msgctxt "tabletextflowpage|liststore1"
+msgid "Horizontal"
+msgstr "Vannrett"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:299
+msgctxt "tabletextflowpage|liststore1"
+msgid "Vertical"
+msgstr "Loddrett"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:300
+msgctxt "tabletextflowpage|liststore1"
+msgid "Use superordinate object settings"
+msgstr "Bruk innstillinger fra overordnet objekt"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:321
msgctxt "tabletextflowpage|headline"
msgid "R_epeat heading"
msgstr "G_jenta overskrifta"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:383
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:343
msgctxt "tabletextflowpage|label38"
msgid "The first "
msgstr "Den første "
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:396
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:356
msgctxt "tabletextflowpage|label39"
msgid "rows"
msgstr "rader"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:434
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:395
msgctxt "tabletextflowpage|label35"
msgid "Text Flow"
msgstr "Tekstflyt"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:467
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:428
msgctxt "tabletextflowpage|label41"
msgid "_Vertical alignment"
msgstr "_Loddrett justering"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:495
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:442
+msgctxt "tabletextflowpage|liststore2"
+msgid "Top"
+msgstr "Øverst"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:443
+msgctxt "tabletextflowpage|liststore2"
+msgid "Centered"
+msgstr "Midtstilt"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:444
+msgctxt "tabletextflowpage|liststore2"
+msgid "Bottom"
+msgstr "Nederst"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:460
msgctxt "tabletextflowpage|label36"
msgid "Alignment"
msgstr "Justering"
@@ -16876,8 +16881,8 @@ msgstr "Alfabetisk register"
#: sw/uiconfig/swriter/ui/tocindexpage.ui:58
msgctxt "tocindexpage|liststore1"
-msgid "Illustration Index"
-msgstr "Illustrasjonsregister"
+msgid "Table of Figures"
+msgstr ""
#: sw/uiconfig/swriter/ui/tocindexpage.ui:62
msgctxt "tocindexpage|liststore1"
diff --git a/source/nb/writerperfect/messages.po b/source/nb/writerperfect/messages.po
index 45d41358e23..05dcd604945 100644
--- a/source/nb/writerperfect/messages.po
+++ b/source/nb/writerperfect/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-16 16:54+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2017-11-17 14:31+0000\n"
"Last-Translator: Karl Morten Ramberg <karl.m.ramberg@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -66,97 +66,97 @@ msgctxt "exportepub|generalft"
msgid "General"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:122
+#: writerperfect/uiconfig/ui/exportepub.ui:121
msgctxt "exportepub|versionft"
msgid "Version:"
msgstr "Versjon:"
-#: writerperfect/uiconfig/ui/exportepub.ui:139
+#: writerperfect/uiconfig/ui/exportepub.ui:138
msgctxt "exportepub|epub3"
msgid "EPUB 3.0"
msgstr "EPUB 3.0"
-#: writerperfect/uiconfig/ui/exportepub.ui:140
+#: writerperfect/uiconfig/ui/exportepub.ui:139
msgctxt "exportepub|epub2"
msgid "EPUB 2.0"
msgstr "EPUB 2.0"
-#: writerperfect/uiconfig/ui/exportepub.ui:175
+#: writerperfect/uiconfig/ui/exportepub.ui:174
msgctxt "exportepub|splitft"
msgid "Split method:"
msgstr "Delemetode"
-#: writerperfect/uiconfig/ui/exportepub.ui:192
+#: writerperfect/uiconfig/ui/exportepub.ui:191
msgctxt "exportepub|splitpage"
msgid "Page break"
msgstr "Sideskift"
-#: writerperfect/uiconfig/ui/exportepub.ui:193
+#: writerperfect/uiconfig/ui/exportepub.ui:192
msgctxt "exportepub|splitheading"
msgid "Heading"
msgstr "Topptekst"
-#: writerperfect/uiconfig/ui/exportepub.ui:228
+#: writerperfect/uiconfig/ui/exportepub.ui:227
msgctxt "exportepub|layoutft"
msgid "Layout method:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:245
+#: writerperfect/uiconfig/ui/exportepub.ui:244
msgctxt "exportepub|layoutreflowable"
msgid "Reflowable"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:246
+#: writerperfect/uiconfig/ui/exportepub.ui:245
msgctxt "exportepub|layoutfixed"
msgid "Fixed"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:281
+#: writerperfect/uiconfig/ui/exportepub.ui:280
msgctxt "exportepub|coverimageft"
msgid "Custom cover image:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:311
+#: writerperfect/uiconfig/ui/exportepub.ui:310
msgctxt "exportepub|coverbutton"
msgid "Browse..."
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:355
+#: writerperfect/uiconfig/ui/exportepub.ui:354
msgctxt "exportepub|mediadirft"
msgid "Custom media directory:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:385
+#: writerperfect/uiconfig/ui/exportepub.ui:384
msgctxt "exportepub|mediabutton"
msgid "Browse..."
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:429
+#: writerperfect/uiconfig/ui/exportepub.ui:428
msgctxt "exportepub|metadataft"
msgid "Metadata"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:470
+#: writerperfect/uiconfig/ui/exportepub.ui:468
msgctxt "exportepub|identifierft"
msgid "Identifier:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:485
+#: writerperfect/uiconfig/ui/exportepub.ui:483
msgctxt "exportepub|titleft"
msgid "Title:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:511
+#: writerperfect/uiconfig/ui/exportepub.ui:509
msgctxt "exportepub|authorft"
msgid "Author:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:537
+#: writerperfect/uiconfig/ui/exportepub.ui:535
msgctxt "exportepub|languageft"
msgid "Language:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:563
+#: writerperfect/uiconfig/ui/exportepub.ui:561
msgctxt "exportepub|dateft"
msgid "Date:"
msgstr ""
diff --git a/source/ne/basctl/messages.po b/source/ne/basctl/messages.po
index 07af310b7a3..ea7cb7d1f13 100644
--- a/source/ne/basctl/messages.po
+++ b/source/ne/basctl/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2018-05-16 16:54+0200\n"
-"PO-Revision-Date: 2018-04-21 18:26+0000\n"
+"PO-Revision-Date: 2018-05-24 17:54+0000\n"
"Last-Translator: Saroj Dhakal <lotusnagarkot@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ne\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1524335163.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1527184488.000000\n"
#: basctl/inc/strings.hrc:25
msgctxt "RID_STR_FILTER_ALLFILES"
@@ -491,7 +491,7 @@ msgstr "[पूर्वनिर्धारित भाषा]"
#: basctl/inc/strings.hrc:115
msgctxt "RID_STR_CREATE_LANG"
msgid "<Press 'Add' to create language resources>"
-msgstr ""
+msgstr "<भाषा स्रोतहरू बनाउन 'थप्नुहोस्' मा थिच्नुहोस्>"
#: basctl/inc/strings.hrc:116
msgctxt "RID_STR_EXPORTPACKAGE"
diff --git a/source/ne/basic/messages.po b/source/ne/basic/messages.po
index 71a4b0a7a08..8d9f2562e80 100644
--- a/source/ne/basic/messages.po
+++ b/source/ne/basic/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2018-02-27 15:07+0100\n"
-"PO-Revision-Date: 2018-04-23 19:56+0000\n"
+"PO-Revision-Date: 2018-05-29 17:00+0000\n"
"Last-Translator: Saroj Dhakal <lotusnagarkot@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ne\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1524513387.000000\n"
+"X-POOTLE-MTIME: 1527613256.000000\n"
#: basic/inc/basic.hrc:27
msgctxt "RID_BASIC_START"
@@ -254,7 +254,7 @@ msgstr "डिडिइ (DDE) च्यानल बन्द गरियो
#: basic/inc/basic.hrc:74
msgctxt "RID_BASIC_START"
msgid "External application cannot execute DDE operation."
-msgstr "बाह्य अनुप्रयोगले डीडीई (DDE) कार्य कार्यान्वयन सक्दैन ।"
+msgstr "बाह्य अनुप्रयोगले डिडिइ (DDE) कार्य कार्यान्वयन सक्दैन ।"
#: basic/inc/basic.hrc:75
msgctxt "RID_BASIC_START"
@@ -262,58 +262,49 @@ msgid "Timeout while waiting for DDE response."
msgstr "डिडिइ (DDE) जवाफ प्रतिक्षा गर्दा म्याद समाप्त ।"
#: basic/inc/basic.hrc:76
-#, fuzzy
msgctxt "RID_BASIC_START"
msgid "User pressed ESCAPE during DDE operation."
-msgstr "डीडीई (DDE) सञ्चालनको अवधिमा प्रयोगकर्ताले ESCAPE थिच्यो ।"
+msgstr "डिडिइ (DDE) सञ्चालनको अवधिमा प्रयोगकर्ताद्वारा ESCAPE थिचियो ।"
#: basic/inc/basic.hrc:77
-#, fuzzy
msgctxt "RID_BASIC_START"
msgid "External application busy."
msgstr "बाह्य अनुप्रयोग ब्यस्त छ ।"
#: basic/inc/basic.hrc:78
-#, fuzzy
msgctxt "RID_BASIC_START"
msgid "DDE operation without data."
-msgstr "डेटा नभएको डीडीई (DDE) सञ्चालन ।"
+msgstr "डेटा नभएको डिडिइ (DDE) सञ्चालन ।"
#: basic/inc/basic.hrc:79
-#, fuzzy
msgctxt "RID_BASIC_START"
msgid "Data are in wrong format."
msgstr "डेटा गलत ढाँचामा छन् ।"
#: basic/inc/basic.hrc:80
-#, fuzzy
msgctxt "RID_BASIC_START"
msgid "External application has been terminated."
msgstr "बाह्य अनुप्रयोग अन्त्य गरिएको छ ।"
#: basic/inc/basic.hrc:81
-#, fuzzy
msgctxt "RID_BASIC_START"
msgid "DDE connection interrupted or modified."
-msgstr "डीडीई (DDE) जडान रोकियो वा परिमार्जन गरियो ।"
+msgstr "डिडिइ (DDE) जडान रोकियो वा परिमार्जन गरियो ।"
#: basic/inc/basic.hrc:82
-#, fuzzy
msgctxt "RID_BASIC_START"
msgid "DDE method invoked with no channel open."
-msgstr "कुनै च्यानल नखुल्ने डीडीई (DDE) विधि खारेज गरियो ।"
+msgstr "कुनै च्यानल खुला नराखी डिडिइ (DDE) विधि सञ्चालन गरियो ।"
#: basic/inc/basic.hrc:83
-#, fuzzy
msgctxt "RID_BASIC_START"
msgid "Invalid DDE link format."
-msgstr "अवैध डीडीई (DDE) लिङ्क ढाँचा ।"
+msgstr "अवैध डिडिइ (DDE) लिङ्क ढाँचा ।"
#: basic/inc/basic.hrc:84
-#, fuzzy
msgctxt "RID_BASIC_START"
msgid "DDE message has been lost."
-msgstr "डीडीई (DDE) सन्देश हराएको छ ।"
+msgstr "डिडिइ (DDE) सन्देश हराएको छ ।"
#: basic/inc/basic.hrc:85
#, fuzzy
@@ -328,10 +319,9 @@ msgid "Link mode cannot be set due to invalid link topic."
msgstr "अमान्य लिङ्क ढङ्गको कारणले लिङ्क मोड सेट गर्न सकिँदैन ।"
#: basic/inc/basic.hrc:87
-#, fuzzy
msgctxt "RID_BASIC_START"
msgid "DDE requires the DDEML.DLL file."
-msgstr "डीडीई (DDE)लाई DDEML.DLL फाइल आवश्यक हुन्छ ।"
+msgstr "डिडिइ (DDE)लाई DDEML.DLL फाइल आवश्यक हुन्छ ।"
#: basic/inc/basic.hrc:88
#, fuzzy
@@ -340,37 +330,31 @@ msgid "Module cannot be loaded; invalid format."
msgstr "मोड्युल लोड गर्न सकिँदैन; अमान्य ढाँचा ।"
#: basic/inc/basic.hrc:89
-#, fuzzy
msgctxt "RID_BASIC_START"
msgid "Invalid object index."
msgstr "अमान्य वस्तु अनुक्रमणिका ।"
#: basic/inc/basic.hrc:90
-#, fuzzy
msgctxt "RID_BASIC_START"
msgid "Object is not available."
msgstr "वस्तु उपलब्ध छैन ।"
#: basic/inc/basic.hrc:91
-#, fuzzy
msgctxt "RID_BASIC_START"
msgid "Incorrect property value."
msgstr "गलत गुण मान ।"
#: basic/inc/basic.hrc:92
-#, fuzzy
msgctxt "RID_BASIC_START"
msgid "This property is read-only."
msgstr "यो गुण पढ्ने मात्र हो ।"
#: basic/inc/basic.hrc:93
-#, fuzzy
msgctxt "RID_BASIC_START"
msgid "This property is write only."
msgstr "यो गुण लेख्ने मात्र हो ।"
#: basic/inc/basic.hrc:94
-#, fuzzy
msgctxt "RID_BASIC_START"
msgid "Invalid object reference."
msgstr "अमान्य वस्तु सन्दर्भ ।"
@@ -416,40 +400,34 @@ msgid "Named arguments are not supported by given object."
msgstr "नामकरण गरिएका argument दिएको वस्तुद्वारा समर्थन गरेको छैन ।"
#: basic/inc/basic.hrc:103
-#, fuzzy
msgctxt "RID_BASIC_START"
msgid "The current locale setting is not supported by the given object."
msgstr "हालको लोकेल सेटिङ दिएको वस्तुद्वारा समर्थन गरेको छैन ।"
#: basic/inc/basic.hrc:104
-#, fuzzy
msgctxt "RID_BASIC_START"
msgid "Named argument not found."
-msgstr "नामकरण गरिएको तर्क फेल परेन ।"
+msgstr "नामकरण गरिएको आर्गुमेन्ट फेला परेन ।"
#: basic/inc/basic.hrc:105
-#, fuzzy
msgctxt "RID_BASIC_START"
msgid "Argument is not optional."
-msgstr "तर्क वैकल्पिक छैन ।"
+msgstr "आर्गुमेन्ट ऐच्छिक हैन ।"
#: basic/inc/basic.hrc:106 basic/inc/basic.hrc:114
-#, fuzzy
msgctxt "RID_BASIC_START"
msgid "Invalid number of arguments."
-msgstr "तर्कको अमान्य सङ्ख्या ।"
+msgstr "आर्गुमेन्टको अमान्य सङ्ख्या ।"
#: basic/inc/basic.hrc:107
-#, fuzzy
msgctxt "RID_BASIC_START"
msgid "Object is not a list."
-msgstr "वस्तु सूची होइन ।"
+msgstr "वस्तु सूची होइन।"
#: basic/inc/basic.hrc:108
-#, fuzzy
msgctxt "RID_BASIC_START"
msgid "Invalid ordinal number."
-msgstr "अमान्य क्रमसङ्ख्या ।"
+msgstr "अमान्य क्रमसङ्ख्या।"
#: basic/inc/basic.hrc:109
#, fuzzy
diff --git a/source/ne/cui/messages.po b/source/ne/cui/messages.po
index 3a4862dd655..d7bf8e3a928 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2018-04-29 17:02+0000\n"
"Last-Translator: निराजन पन्त <nirajan_pant@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -10304,107 +10304,107 @@ msgctxt "positionsizedialog|PositionAndSizeDialog"
msgid "Position and Size"
msgstr "स्थिति र खाली स्थान"
-#: cui/uiconfig/ui/positionsizedialog.ui:107
+#: cui/uiconfig/ui/positionsizedialog.ui:136
#, fuzzy
msgctxt "positionsizedialog|RID_SVXPAGE_POSITION_SIZE"
msgid "Position and Size"
msgstr "स्थिति र खाली स्थान"
-#: cui/uiconfig/ui/positionsizedialog.ui:129
+#: cui/uiconfig/ui/positionsizedialog.ui:182
#, fuzzy
msgctxt "positionsizedialog|RID_SVXPAGE_SWPOSSIZE"
msgid "Position and Size"
msgstr "स्थिति र खाली स्थान"
-#: cui/uiconfig/ui/positionsizedialog.ui:152
+#: cui/uiconfig/ui/positionsizedialog.ui:229
msgctxt "positionsizedialog|RID_SVXPAGE_ANGLE"
msgid "Rotation"
msgstr "परिक्रमण"
-#: cui/uiconfig/ui/positionsizedialog.ui:175
+#: cui/uiconfig/ui/positionsizedialog.ui:276
msgctxt "positionsizedialog|RID_SVXPAGE_SLANT"
msgid "Slant & Corner Radius"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:40
+#: cui/uiconfig/ui/possizetabpage.ui:61
#, fuzzy
msgctxt "possizetabpage|FT_POS_X"
msgid "Position _X:"
msgstr "स्थान"
-#: cui/uiconfig/ui/possizetabpage.ui:56
+#: cui/uiconfig/ui/possizetabpage.ui:75
#, fuzzy
msgctxt "possizetabpage|FT_POS_Y"
msgid "Position _Y:"
msgstr "स्थान"
-#: cui/uiconfig/ui/possizetabpage.ui:110
+#: cui/uiconfig/ui/possizetabpage.ui:128
msgctxt "possizetabpage|FT_POSREFERENCE"
msgid "_Base point:"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:148
+#: cui/uiconfig/ui/possizetabpage.ui:182
msgctxt "possizetabpage|label1"
msgid "Position"
msgstr "स्थान"
-#: cui/uiconfig/ui/possizetabpage.ui:190
+#: cui/uiconfig/ui/possizetabpage.ui:224
#, fuzzy
msgctxt "possizetabpage|FT_WIDTH"
msgid "Wi_dth:"
msgstr "चौडाइ:"
-#: cui/uiconfig/ui/possizetabpage.ui:206
+#: cui/uiconfig/ui/possizetabpage.ui:238
#, fuzzy
msgctxt "possizetabpage|FT_HEIGHT"
msgid "H_eight:"
msgstr "उचाइ"
-#: cui/uiconfig/ui/possizetabpage.ui:247
+#: cui/uiconfig/ui/possizetabpage.ui:276
#, fuzzy
msgctxt "possizetabpage|CBX_SCALE"
msgid "_Keep ratio"
msgstr "अनुपात राख्नुहोस्"
-#: cui/uiconfig/ui/possizetabpage.ui:279
+#: cui/uiconfig/ui/possizetabpage.ui:307
msgctxt "possizetabpage|FT_SIZEREFERENCE"
msgid "Base _point:"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:317
+#: cui/uiconfig/ui/possizetabpage.ui:361
msgctxt "possizetabpage|label2"
msgid "Size"
msgstr "साइज"
-#: cui/uiconfig/ui/possizetabpage.ui:356
+#: cui/uiconfig/ui/possizetabpage.ui:401
#, fuzzy
msgctxt "possizetabpage|TSB_POSPROTECT"
msgid "Positio_n"
msgstr "स्थान"
-#: cui/uiconfig/ui/possizetabpage.ui:373
+#: cui/uiconfig/ui/possizetabpage.ui:418
#, fuzzy
msgctxt "possizetabpage|TSB_SIZEPROTECT"
msgid "_Size"
msgstr "साइज"
-#: cui/uiconfig/ui/possizetabpage.ui:397
+#: cui/uiconfig/ui/possizetabpage.ui:441
#, fuzzy
msgctxt "possizetabpage|label3"
msgid "Protect"
msgstr "सुरक्षा"
-#: cui/uiconfig/ui/possizetabpage.ui:430
+#: cui/uiconfig/ui/possizetabpage.ui:475
msgctxt "possizetabpage|TSB_AUTOGROW_WIDTH"
msgid "_Fit width to text"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:447
+#: cui/uiconfig/ui/possizetabpage.ui:492
msgctxt "possizetabpage|TSB_AUTOGROW_HEIGHT"
msgid "Fit _height to text"
msgstr ""
-#: cui/uiconfig/ui/possizetabpage.ui:471
+#: cui/uiconfig/ui/possizetabpage.ui:515
msgctxt "possizetabpage|label4"
msgid "Adapt"
msgstr ""
@@ -10616,53 +10616,53 @@ msgctxt "recordnumberdialog|label2"
msgid "go to record"
msgstr ""
-#: cui/uiconfig/ui/rotationtabpage.ui:52
+#: cui/uiconfig/ui/rotationtabpage.ui:56
#, fuzzy
msgctxt "rotationtabpage|FT_POS_X"
msgid "Position _X:"
msgstr "स्थान"
-#: cui/uiconfig/ui/rotationtabpage.ui:66
+#: cui/uiconfig/ui/rotationtabpage.ui:70
#, fuzzy
msgctxt "rotationtabpage|FT_POS_Y"
msgid "Position _Y:"
msgstr "स्थान"
-#: cui/uiconfig/ui/rotationtabpage.ui:116
+#: cui/uiconfig/ui/rotationtabpage.ui:123
#, fuzzy
msgctxt "rotationtabpage|FT_POSPRESETS"
msgid "_Default settings:"
msgstr "पूर्वनिर्धारित सेटिङ"
-#: cui/uiconfig/ui/rotationtabpage.ui:130
+#: cui/uiconfig/ui/rotationtabpage.ui:151
msgctxt "rotationtabpage|CTL_RECT|tooltip_text"
msgid "Rotation point"
msgstr ""
-#: cui/uiconfig/ui/rotationtabpage.ui:155
+#: cui/uiconfig/ui/rotationtabpage.ui:178
msgctxt "rotationtabpage|label1"
msgid "Pivot Point"
msgstr ""
-#: cui/uiconfig/ui/rotationtabpage.ui:197
+#: cui/uiconfig/ui/rotationtabpage.ui:220
#, fuzzy
msgctxt "rotationtabpage|FT_ANGLE"
msgid "_Angle:"
msgstr "कोण"
-#: cui/uiconfig/ui/rotationtabpage.ui:238
+#: cui/uiconfig/ui/rotationtabpage.ui:263
#, fuzzy
msgctxt "rotationtabpage|FT_ANGLEPRESETS"
msgid "Default _settings:"
msgstr "पूर्वनिर्धारित सेटिङ"
-#: cui/uiconfig/ui/rotationtabpage.ui:252
+#: cui/uiconfig/ui/rotationtabpage.ui:287
#, fuzzy
msgctxt "rotationtabpage|CTL_ANGLE|tooltip_text"
msgid "Rotation Angle"
msgstr "परिक्रमण कोण"
-#: cui/uiconfig/ui/rotationtabpage.ui:277
+#: cui/uiconfig/ui/rotationtabpage.ui:314
#, fuzzy
msgctxt "rotationtabpage|label2"
msgid "Rotation Angle"
@@ -11056,56 +11056,56 @@ msgctxt "similaritysearchdialog|relaxbox"
msgid "_Combine"
msgstr "संयोजन गर्नुहोस्"
-#: cui/uiconfig/ui/slantcornertabpage.ui:50
+#: cui/uiconfig/ui/slantcornertabpage.ui:70
msgctxt "slantcornertabpage|label5"
msgid "_X:"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:88
+#: cui/uiconfig/ui/slantcornertabpage.ui:110
msgctxt "slantcornertabpage|label6"
msgid "_Y:"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:125
+#: cui/uiconfig/ui/slantcornertabpage.ui:149
msgctxt "slantcornertabpage|label3"
msgid "Control Point 1"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:159
+#: cui/uiconfig/ui/slantcornertabpage.ui:183
#, fuzzy
msgctxt "slantcornertabpage|FT_RADIUS"
msgid "_Radius:"
msgstr "अर्धब्यास"
-#: cui/uiconfig/ui/slantcornertabpage.ui:189
+#: cui/uiconfig/ui/slantcornertabpage.ui:214
#, fuzzy
msgctxt "slantcornertabpage|label1"
msgid "Corner Radius"
msgstr "कुना अर्धव्यास"
-#: cui/uiconfig/ui/slantcornertabpage.ui:223
+#: cui/uiconfig/ui/slantcornertabpage.ui:248
#, fuzzy
msgctxt "slantcornertabpage|FT_ANGLE"
msgid "_Angle:"
msgstr "कोण"
-#: cui/uiconfig/ui/slantcornertabpage.ui:253
+#: cui/uiconfig/ui/slantcornertabpage.ui:279
#, fuzzy
msgctxt "slantcornertabpage|label2"
msgid "Slant"
msgstr "तेर्सो पार्नुहोस्"
-#: cui/uiconfig/ui/slantcornertabpage.ui:294
+#: cui/uiconfig/ui/slantcornertabpage.ui:320
msgctxt "slantcornertabpage|label4"
msgid "_X:"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:332
+#: cui/uiconfig/ui/slantcornertabpage.ui:360
msgctxt "slantcornertabpage|label7"
msgid "_Y:"
msgstr ""
-#: cui/uiconfig/ui/slantcornertabpage.ui:369
+#: cui/uiconfig/ui/slantcornertabpage.ui:399
msgctxt "slantcornertabpage|label8"
msgid "Control Point 2"
msgstr ""
@@ -11399,124 +11399,124 @@ msgctxt "storedwebconnectiondialog|change"
msgid "_Change Password..."
msgstr "पासवर्ड परिवर्तन गर्नुहोस्..."
-#: cui/uiconfig/ui/swpossizepage.ui:74
+#: cui/uiconfig/ui/swpossizepage.ui:85
msgctxt "swpossizepage|widthft"
msgid "_Width:"
msgstr "चौडाइ:"
-#: cui/uiconfig/ui/swpossizepage.ui:111
+#: cui/uiconfig/ui/swpossizepage.ui:123
#, fuzzy
msgctxt "swpossizepage|heightft"
msgid "H_eight:"
msgstr "उचाइ"
-#: cui/uiconfig/ui/swpossizepage.ui:128
+#: cui/uiconfig/ui/swpossizepage.ui:141
#, fuzzy
msgctxt "swpossizepage|ratio"
msgid "_Keep ratio"
msgstr "अनुपात राख्नुहोस्"
-#: cui/uiconfig/ui/swpossizepage.ui:149
+#: cui/uiconfig/ui/swpossizepage.ui:162
msgctxt "swpossizepage|label2"
msgid "Size"
msgstr "साइज"
-#: cui/uiconfig/ui/swpossizepage.ui:205
+#: cui/uiconfig/ui/swpossizepage.ui:218
#, fuzzy
msgctxt "swpossizepage|topage"
msgid "To _page"
msgstr "पृष्ठमा"
-#: cui/uiconfig/ui/swpossizepage.ui:222
+#: cui/uiconfig/ui/swpossizepage.ui:234
#, fuzzy
msgctxt "swpossizepage|topara"
msgid "To paragrap_h"
msgstr "अनुच्छेद"
-#: cui/uiconfig/ui/swpossizepage.ui:238
+#: cui/uiconfig/ui/swpossizepage.ui:250
#, fuzzy
msgctxt "swpossizepage|tochar"
msgid "To cha_racter"
msgstr "क्यारेक्टरमा"
-#: cui/uiconfig/ui/swpossizepage.ui:254
+#: cui/uiconfig/ui/swpossizepage.ui:266
#, fuzzy
msgctxt "swpossizepage|aschar"
msgid "_As character"
msgstr "क्यारेक्टर जस्तो"
-#: cui/uiconfig/ui/swpossizepage.ui:270
+#: cui/uiconfig/ui/swpossizepage.ui:282
#, fuzzy
msgctxt "swpossizepage|toframe"
msgid "To _frame"
msgstr "फ्रेममा"
-#: cui/uiconfig/ui/swpossizepage.ui:292
+#: cui/uiconfig/ui/swpossizepage.ui:304
msgctxt "swpossizepage|label1"
msgid "Anchor"
msgstr "एङ्कर"
-#: cui/uiconfig/ui/swpossizepage.ui:333
+#: cui/uiconfig/ui/swpossizepage.ui:344
#, fuzzy
msgctxt "swpossizepage|horiposft"
msgid "Hori_zontal:"
msgstr "तेर्सो"
-#: cui/uiconfig/ui/swpossizepage.ui:347
+#: cui/uiconfig/ui/swpossizepage.ui:358
msgctxt "swpossizepage|horibyft"
msgid "b_y:"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:361
+#: cui/uiconfig/ui/swpossizepage.ui:372
msgctxt "swpossizepage|vertbyft"
msgid "_by:"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:375
+#: cui/uiconfig/ui/swpossizepage.ui:386
#, fuzzy
msgctxt "swpossizepage|horitoft"
msgid "_to:"
msgstr "लाई"
-#: cui/uiconfig/ui/swpossizepage.ui:421
+#: cui/uiconfig/ui/swpossizepage.ui:433
#, fuzzy
msgctxt "swpossizepage|vertposft"
msgid "_Vertical:"
msgstr "ठाडो"
-#: cui/uiconfig/ui/swpossizepage.ui:457
+#: cui/uiconfig/ui/swpossizepage.ui:470
msgctxt "swpossizepage|verttoft"
msgid "t_o:"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:478
+#: cui/uiconfig/ui/swpossizepage.ui:492
msgctxt "swpossizepage|mirror"
msgid "_Mirror on even pages"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:495
+#: cui/uiconfig/ui/swpossizepage.ui:509
msgctxt "swpossizepage|followtextflow"
msgid "Follow te_xt flow"
msgstr ""
-#: cui/uiconfig/ui/swpossizepage.ui:518
+#: cui/uiconfig/ui/swpossizepage.ui:532
msgctxt "swpossizepage|label11"
msgid "Position"
msgstr "स्थान"
-#: cui/uiconfig/ui/swpossizepage.ui:549
+#: cui/uiconfig/ui/swpossizepage.ui:563
#, fuzzy
msgctxt "swpossizepage|pos"
msgid "Positio_n"
msgstr "स्थान"
-#: cui/uiconfig/ui/swpossizepage.ui:565
+#: cui/uiconfig/ui/swpossizepage.ui:579
#, fuzzy
msgctxt "swpossizepage|size"
msgid "_Size"
msgstr "साइज"
-#: cui/uiconfig/ui/swpossizepage.ui:587
+#: cui/uiconfig/ui/swpossizepage.ui:601
#, fuzzy
msgctxt "swpossizepage|label3"
msgid "Protect"
@@ -11720,13 +11720,13 @@ msgctxt "textattrtabpage|label2"
msgid "Spacing to Borders"
msgstr ""
-#: cui/uiconfig/ui/textattrtabpage.ui:425
+#: cui/uiconfig/ui/textattrtabpage.ui:423
#, fuzzy
msgctxt "textattrtabpage|TSB_FULL_WIDTH"
msgid "Full _width"
msgstr "पूरा-चौडाइ"
-#: cui/uiconfig/ui/textattrtabpage.ui:448
+#: cui/uiconfig/ui/textattrtabpage.ui:446
msgctxt "textattrtabpage|label3"
msgid "Text Anchor"
msgstr ""
diff --git a/source/ne/filter/source/config/fragments/filters.po b/source/ne/filter/source/config/fragments/filters.po
index 2695442aea8..e27d3f6aba2 100644
--- a/source/ne/filter/source/config/fragments/filters.po
+++ b/source/ne/filter/source/config/fragments/filters.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-16 16:54+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2016-03-11 15:55+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -465,8 +465,8 @@ msgctxt ""
"MS Word 2003 XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Word 2003 XML"
-msgstr "Microsoft Word 2003 XML"
+msgid "Word 2003 XML"
+msgstr ""
#: MS_Word_2007_XML.xcu
msgctxt ""
@@ -1290,7 +1290,7 @@ msgctxt ""
"Calc MS Excel 2007 VBA XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Excel 2007-2016 XML (macro enabled)"
+msgid "Excel 2007–2019 (macro-enabled)"
msgstr ""
#: calc_MS_Excel_2007_XML.xcu
diff --git a/source/ne/filter/source/config/fragments/types.po b/source/ne/filter/source/config/fragments/types.po
index 7e646b17e12..965f3105348 100644
--- a/source/ne/filter/source/config/fragments/types.po
+++ b/source/ne/filter/source/config/fragments/types.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-08 15:11+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2015-11-11 23:01+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -295,8 +295,8 @@ msgctxt ""
"writer_MS_Word_2003_XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Word 2003 XML"
-msgstr "Microsoft Word 2003 XML"
+msgid "Word 2003 XML"
+msgstr ""
#: writer_MS_Word_2007_XML.xcu
msgctxt ""
diff --git a/source/ne/fpicker/messages.po b/source/ne/fpicker/messages.po
index 173900f7d35..9efda56a23e 100644
--- a/source/ne/fpicker/messages.po
+++ b/source/ne/fpicker/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+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"
@@ -277,13 +277,13 @@ msgstr ""
#: fpicker/uiconfig/ui/foldernamedialog.ui:8
msgctxt "foldernamedialog|FolderNameDialog"
-msgid "Folder Name ?"
+msgid "Folder Name"
msgstr ""
#: fpicker/uiconfig/ui/foldernamedialog.ui:91
msgctxt "foldernamedialog|label2"
-msgid "Na_me"
-msgstr "नाम"
+msgid "Na_me:"
+msgstr ""
#: fpicker/uiconfig/ui/foldernamedialog.ui:122
#, fuzzy
diff --git a/source/ne/helpcontent2/source/auxiliary.po b/source/ne/helpcontent2/source/auxiliary.po
index 28fe0a44f7a..c3107af02a1 100644
--- a/source/ne/helpcontent2/source/auxiliary.po
+++ b/source/ne/helpcontent2/source/auxiliary.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: 2018-05-16 16:54+0200\n"
-"PO-Revision-Date: 2018-04-08 17:12+0000\n"
-"Last-Translator: Saroj Dhakal <lotusnagarkot@gmail.com>\n"
+"PO-Revision-Date: 2018-05-28 04:49+0000\n"
+"Last-Translator: सन्जोग सिग्देल <sigdelsanjog@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ne\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1523207568.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1527482958.000000\n"
#: sbasic.tree
msgctxt ""
@@ -166,7 +166,7 @@ msgctxt ""
"08091\n"
"node.text"
msgid "Pivot Chart"
-msgstr ""
+msgstr "पिभोट चार्ट"
#: scalc.tree
msgctxt ""
@@ -342,7 +342,7 @@ msgctxt ""
"10071\n"
"node.text"
msgid "Digital Signatures"
-msgstr ""
+msgstr "डिजिटल हस्ताक्षर"
#: shared.tree
msgctxt ""
diff --git a/source/ne/helpcontent2/source/text/scalc/01.po b/source/ne/helpcontent2/source/text/scalc/01.po
index 8eb2c2a668f..30a1bb88c24 100644
--- a/source/ne/helpcontent2/source/text/scalc/01.po
+++ b/source/ne/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: 2018-05-08 15:11+0200\n"
-"PO-Revision-Date: 2018-05-22 02:03+0000\n"
+"PO-Revision-Date: 2018-05-29 16:57+0000\n"
"Last-Translator: Saroj Dhakal <lotusnagarkot@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ne\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1526954607.000000\n"
+"X-POOTLE-MTIME: 1527613049.000000\n"
#: 01120000.xhp
msgctxt ""
@@ -16398,7 +16398,7 @@ msgctxt ""
"par_id3166456\n"
"help.text"
msgid "Comparison operators in an array formula treat empty cells in the same way as in a normal formula, that is, either as zero or as an empty string. For example, if cells A1 and A2 are empty the array formulas <item type=\"input\">{=A1:A2=\"\"}</item> and <item type=\"input\">{=A1:A2=0}</item> will both return a 1 column 2 row array of cells containing TRUE."
-msgstr "जब तपाईँंले एरे सूत्रमा तुलनात्मक सञ्चालन कर्ताहरू परिवर्तन गरिन्छ खाली कक्षहरूले एकल तुलानात्मकको रूपमा उही नियम अपनाउँदछन् । जसमा कित ०द्वारा वा खाली स्ट्रिङको रूपमा प्रस्तुत गर्नुपर्ने छ त्यकारण कक्ष A1 र A2 खाली भएको खण्डमा एरे सूत्रहरू {=A1:A2=\"\"} र {=A1:A2=0} दुवैले TRUE फर्काउनेछन् ।"
+msgstr "जब तपाईँंले एरे सूत्रमा तुलनात्मक सञ्चालन कर्ताहरू परिवर्तन गरिन्छ खाली कक्षहरूले एकल तुलानात्मकको रूपमा उही नियम अपनाउँदछन्, जुन कित ० वा खाली स्ट्रिङको रूपमा प्रस्तुत हुन्छ। यदि कक्ष A1 र A2 खाली भएको खण्डमा एरे सूत्रहरू <item type=\"input\">{=A1:A2=\"\"}</item> र <item type=\"input\">{=A1:A2=0}</item> दुवैले TRUE रहेको १ स्तम्भ २ पङ्क्ति सरणी फर्काउनेछन्।"
#: 04060107.xhp
msgctxt ""
@@ -17886,7 +17886,7 @@ msgctxt ""
"par_id3154428\n"
"help.text"
msgid "<emph>data_X</emph> is a corresponding single row or column range specifying the x coordinates. If <emph>data_X</emph> is omitted it defaults to <item type=\"literal\">1, 2, 3, ..., n</item>. If there is more than one set of variables <emph>data_X</emph> may be a range with corresponding multiple rows or columns."
-msgstr "<emph>Data_X</emph> (वैकल्पिकले) X डेटा एरेको प्रतिनीधित्व गर्दछ ।"
+msgstr ""
#: 04060107.xhp
msgctxt ""
@@ -17934,7 +17934,7 @@ msgctxt ""
"par_id3154176\n"
"help.text"
msgid "This function returns an array and is handled in the same way as the other array functions. Select a range for the answers and then the function. Select <emph>data_Y</emph>. If you want, you can enter other parameters. Select <emph>Array</emph> and click <emph>OK</emph>."
-msgstr "यो प्रकार्यले एरे फर्काउँदछ र अर्को एरे प्रकार्यको रूपमा उही बाटोमा ह्यान्डेल गर्दछ। उत्तरहरूका लागि दायरा चयन गर्नुहोस् र त्यसपछि प्रकार्य ।डेटाY चयन गर्नुहोस्। यदि तपाईँं चाहनुहुन्छ भने अरू परामितिहरू प्रविष्टि गर्न सक्नुहुन्छ।<emph>एरे</emph>चयन गर्नुहोस् र <emph>ठीक छ</emph> क्लिक गर्नुहोस्।"
+msgstr "यो प्रकार्यले एरे फर्काउँदछ र अर्को एरे प्रकार्यको रूपमा उही बाटोमा ह्यान्डेल गर्दछ। उत्तरहरूका लागि दायरा चयन गर्नुहोस् र त्यसपछि प्रकार्य ।<emph>डेटा Y</emph> चयन गर्नुहोस्। यदि तपाईँं चाहनुहुन्छ भने अरू परामितिहरू प्रविष्टि गर्न सक्नुहुन्छ।<emph>एरे</emph>चयन गर्नुहोस् र <emph>ठीक छ</emph> क्लिक गर्नुहोस्।"
#: 04060107.xhp
msgctxt ""
@@ -19806,7 +19806,7 @@ msgctxt ""
"par_id3149946\n"
"help.text"
msgid "<item type=\"input\">=AREAS((A1:B3;F2;G1))</item> returns 3, as it is a reference to three cells and/or areas. After entry this gets converted to =AREAS((A1:B3~F2~G1))."
-msgstr "=AREAS(A1:B3;F2;G1)ले ३ फर्काउँदछ, तीनवटा कक्षहरू र/वा क्षेत्रहरूमा यो सन्दर्भको रूपमा हुन्छ ।"
+msgstr ""
#: 04060109.xhp
msgctxt ""
@@ -42686,7 +42686,7 @@ msgctxt ""
"par_id3149200\n"
"help.text"
msgid "<emph>C</emph> (optional) = 0 or False calculates the density function; <emph>C</emph> = 1 or True calculates the distribution. When omitted, the default value True is inserted when you save the document, for best compatibility with other programs and older versions of %PRODUCTNAME."
-msgstr "<emph>C</emph> = 0 ले घनत्व प्रकार्य गणना गर्दछ; <emph>C</emph> = 1 ले वितरण गणना गर्दछ ।"
+msgstr ""
#: 04060184.xhp
msgctxt ""
@@ -42766,7 +42766,7 @@ msgctxt ""
"par_id2949200\n"
"help.text"
msgid "<emph>C</emph> (optional) = 0 or False calculates the density function; <emph>C</emph> = 1 or True calculates the distribution. When omitted, the default value True is inserted when you save the document, for best compatibility with other programs and older versions of %PRODUCTNAME."
-msgstr "<emph>C</emph> = 0 ले घनत्व प्रकार्य गणना गर्दछ; <emph>C</emph> = 1 ले वितरण गणना गर्दछ ।"
+msgstr ""
#: 04060184.xhp
msgctxt ""
diff --git a/source/ne/helpcontent2/source/text/scalc/guide.po b/source/ne/helpcontent2/source/text/scalc/guide.po
index a7103976fec..580709fd276 100644
--- a/source/ne/helpcontent2/source/text/scalc/guide.po
+++ b/source/ne/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: 2018-05-22 13:16+0200\n"
-"PO-Revision-Date: 2018-05-22 08:33+0000\n"
+"PO-Revision-Date: 2018-05-28 05:11+0000\n"
"Last-Translator: सन्जोग सिग्देल <sigdelsanjog@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ne\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1526978028.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1527484301.000000\n"
#: address_auto.xhp
msgctxt ""
@@ -70,7 +70,7 @@ msgctxt ""
"par_id3155443\n"
"help.text"
msgid "This function is active by default. To turn this function off, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Calc - Calculate</emph> and clear the <emph>Automatically find column and row labels</emph> check box."
-msgstr "यो प्रकार्य पूर्वनिर्धारितद्वारा सक्रिय छ । यो प्रकार्य बन्द गर्नका लागि <emph>उपकरणहरू - विकल्प - %PRODUCTNAME क्याल्क - गणना</emph> रोज्नुहोस् र <emph>स्वचालित रूपले फेला पार्ने स्तम्भ र पङ्क्ति लेबुलहरू</emph> जाँच बाकस खाली गर्नुहोस् ।"
+msgstr "यो प्रकार्य पूर्वनिर्धारितद्वारा सक्रिय छ। यो प्रकार्य बन्द गर्नका लागि <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - प्राथिमिक्तहरु</emph></caseinline><defaultinline><emph> उपकरणहरू - विकल्पहरु</emph></defaultinline></switchinline><emph>%PRODUCTNAME Calc - गणना</emph> रोज्नुहोस् र <emph>स्वचालित रूपले फेला पार्ने स्तम्भ र पङ्क्ति लेबुलहरू</emph> जाँच बाकस खाली गर्नुहोस्।"
#: address_auto.xhp
msgctxt ""
@@ -198,7 +198,7 @@ msgctxt ""
"par_id3147001\n"
"help.text"
msgid "Choose <item type=\"menuitem\">Tools - AutoCorrect - AutoCorrect Options</item>. Go to the <item type=\"menuitem\">Options</item> tab. Unmark <item type=\"menuitem\">Capitalize first letter of every sentence</item>."
-msgstr "<emph>उपकरणहरू - स्वत: सुधार</emph>रोज्नुहोस् । <emph>विकल्प</emph>ट्याबमा जानुहोस् । <emph>प्रत्येक वाक्यको ठूला गरिएको पहिलो अक्षर</emph> चिन्ह हटाउनुहोस् ।"
+msgstr "<item type=\"menuitem\">उपकरणहरू - स्वत: सुधार</item>>रोज्नुहोस्। <item type=\"menuitem\">विकल्प</item>ट्याबमा जानुहोस्। <item type=\"menuitem\">प्रत्येक वाक्यको ठूला गरिएको पहिलो अक्षर</item> चिन्ह हटाउनुहोस्।"
#: auto_off.xhp
msgctxt ""
@@ -214,7 +214,7 @@ msgctxt ""
"par_id3166425\n"
"help.text"
msgid "Choose <item type=\"menuitem\">Tools - AutoCorrect - AutoCorrect Options</item>. Go to the <item type=\"menuitem\">Replace</item> tab. Select the word pair and click <item type=\"menuitem\">Delete</item>."
-msgstr "<emph>उपकरणहरू - स्वत: सुधार</emph>रोज्नुहोस् । <emph>बदल्नुहोस्</emph>ट्याबमा जानुहोस् । शब्द जोडा चयन गर्नुहोस् र <emph>मेटाउनुहोस्</emph> क्लिक गर्नुहोस् ।"
+msgstr "<item type=\"menuitem\">उपकरणहरू - स्वत: सुधार</item>रोज्नुहोस्। <item type=\"menuitem\">बदल्नुहोस्</item>ट्याबमा जानुहोस्। शब्द जोडा चयन गर्नुहोस् र <item type=\"menuitem\">मेटाउनुहोस्</item> क्लिक गर्नुहोस्।"
#: auto_off.xhp
msgctxt ""
@@ -1302,7 +1302,7 @@ msgctxt ""
"par_id3154490\n"
"help.text"
msgid "If you select two or more adjacent cells that contain different numbers, and drag, the remaining cells are filled with the arithmetic pattern that is recognized in the numbers. The AutoFill function also recognizes customized lists that are defined under <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 Calc - Sort Lists</item>."
-msgstr "यदि तपाईँले फरक संख्याहरू समावेश भएको दुई वा दुई भन्दा बढी आसन्न कक्षहरू चयन गरेर तानेको खण्डमा, बाँकी कक्षहरू अंकगणित ढाँचामा भरिएका हुन्छन् जुन संख्याहरूमा पहिचान गरिन्छ​। स्वत:भर्ने प्रकार्यले पनि अनुकूलित सूचीहरू सङठित गर्दछन् जसलाई <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"menuitem\">%PRODUCTNAME - प्राथमिकताहरू </item></caseinline><defaultinline><item type=\"menuitem\">उपकरणहरू - विकल्पहरू</item></defaultinline></switchinline> - %PRODUCTNAME क्याल्क - क्रम सूचीहरू</item> तल परिभाषित गरिन्छ।"
+msgstr "यदि तपाईँले फरक संख्याहरू समावेश भएको दुई वा दुई भन्दा बढी आसन्न कक्षहरू चयन गरेर तानेको खण्डमा, बाँकी कक्षहरू अंकगणित ढाँचामा भरिएका हुन्छन् जुन संख्याहरूमा पहिचान गरिन्छ​। स्वत:भर्ने प्रकार्यले पनि अनुकूलित सूचीहरू सङठित गर्दछन् जसलाई <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"menuitem\">%PRODUCTNAME - प्राथमिकताहरू </item></caseinline><defaultinline><item type=\"menuitem\">उपकरणहरू - विकल्पहरू</item></defaultinline></switchinline><item type=\"menuitem\"> - %PRODUCTNAME क्याल्क - क्रम सूचीहरू</item>तल परिभाषित गरिन्छ।"
#: calc_series.xhp
msgctxt ""
@@ -1686,7 +1686,7 @@ msgctxt ""
"bm_id3146119\n"
"help.text"
msgid "<bookmark_value>protecting;cells and sheets</bookmark_value> <bookmark_value>cells; protecting</bookmark_value> <bookmark_value>cell protection; enabling</bookmark_value> <bookmark_value>sheets; protecting</bookmark_value> <bookmark_value>documents; protecting</bookmark_value> <bookmark_value>cells; hiding for printing</bookmark_value> <bookmark_value>changing; sheet protection</bookmark_value> <bookmark_value>hiding;formulas</bookmark_value> <bookmark_value>formulas;hiding</bookmark_value>"
-msgstr "<bookmark_value>कक्षहरू र पानाहरू; सुरक्षित गर्दा</bookmark_value> <bookmark_value>कक्षहरू; सुरक्षित गर्दा</bookmark_value> <bookmark_value>कक्ष सुरक्षा; सक्षमगर्दा</bookmark_value> <bookmark_value>पानाहरू; सुरक्षित गर्दा</bookmark_value> <bookmark_value>कागजातहरू; सुरक्षित गर्दा</bookmark_value> <bookmark_value>कक्षहरू; मुद्रणका लागि लुकाउँदा</bookmark_value> <bookmark_value>पाना सुरक्षा; परिमार्जन</bookmark_value> <bookmark_value>कागजात सुरक्षा; परिवर्तन</bookmark_value> <bookmark_value>सूत्रहरू;लुकाउँदा</bookmark_value> <bookmark_value>सूत्रहरू;लुकाउँदा</bookmark_value>"
+msgstr ""
#: cell_protect.xhp
msgctxt ""
@@ -2846,7 +2846,7 @@ msgctxt ""
"par_id3145640\n"
"help.text"
msgid "The cell number format is defined in two parts. The format for positive numbers and zero is defined in front of the semicolon; after the semicolon the formula for negative numbers is defined. You can change the code (RED) under <item type=\"menuitem\">Format code</item>. For example, instead of RED, enter <item type=\"literal\">YELLOW</item>. If the new code appears in the list after clicking the <item type=\"menuitem\">Add</item> icon, this is a valid entry."
-msgstr "कक्ष सङ्ख्या ढाँचा दुई भागहरूमा परिभाषित गरिन्छ । ढाँचा धनात्मक सङ्ख्याहरू र शून्यका लागि अर्धविरामको अघि परिभाषित गरिन्छ; अर्धविराम पछाडिका ऋणात्मक सङ्ख्याहरूका लागि सूत्र परिभाषित गरिन्छ । तपाईँ तल <emph>ढाँचा सङ्केत</emph> मा सङ्केत (RED) परिवर्तन गर्न सक्नुहुन्छ । उदाहरणका लागि, \"RED,\"को बदलामा \"YELLOW\"प्रविष्ट गर्नु । यदि <emph>थप्नुहोस्</emph> प्रतिमामा क्लिक गर्नु पछाडि सूचीमा नयाँ सङ्केत देखा पर्दछ भने, यो वैध प्रविष्टि हो ।"
+msgstr "कक्ष सङ्ख्या ढाँचा दुई भागहरूमा परिभाषित गरिन्छ। ढाँचा धनात्मक सङ्ख्याहरू र शून्यका लागि अर्धविरामको अघि परिभाषित गरिन्छ; अर्धविराम पछाडिका ऋणात्मक सङ्ख्याहरूका लागि सूत्र परिभाषित गरिन्छ। तपाईँ तल <item type=\"menuitem\">ढाँचा सङ्केत</item> मा सङ्केत (RED) परिवर्तन गर्न सक्नुहुन्छ उदाहरणका लागि, \"RED,\"को बदलामा <item type=\"literal\">YELLOW</item> प्रविष्ट गर्नु यदि <item type=\"menuitem\">थप्नुहोस्</item> प्रतिमामा क्लिक गर्नु पछाडि सूचीमा नयाँ सङ्केत देखा पर्दछ भने, यो वैध प्रविष्टि हो"
#: consolidate.xhp
msgctxt ""
@@ -5774,7 +5774,7 @@ msgctxt ""
"par_id3155764\n"
"help.text"
msgid "If you are editing a formula with references, the references and the associated cells will be highlighted with the same color. You can now resize the reference border using the mouse, and the reference in the formula displayed in the input line also changes. <emph>Show references in color</emph> can be deactivated under <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01060300.xhp\" name=\"Spreadsheet - View\">%PRODUCTNAME Calc - View</link>."
-msgstr "यदि तपाईँ सन्दर्भहरू सँग सूत्र सम्पादन गर्नुहुन्छ भने, सन्दर्भहरू र सङठित कक्षहरू उस्तै रङमा हाइलाइट गरिने छ । अब तपाईँ माउसको प्रयोग गरेर सन्दर्भ किनाराहरूलाई रिसाइज गर्न सक्नुहुन्छ, र आगत रेखामा प्रदर्शित सूत्रमा सन्दर्भ र परिवर्तनहरू पनि<emph>Show references in color</emph>,<link href=\"text/shared/optionen/01060300.xhp\" name=\"Tools - Options - Spreadsheet - View\">उपकरणहरू - विकल्प - %PRODUCTNAME Calc - View</link> अन्तर्गत निस्क्रिय गर्न सकिन्छ ।"
+msgstr ""
#: formula_enter.xhp
msgctxt ""
@@ -6638,7 +6638,7 @@ msgctxt ""
"par_id3159240\n"
"help.text"
msgid "With <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F6 you set the focus to the document."
-msgstr "<item type=\"keycode\">Ctrl+F6</item> सँग तपाईँ कागजातमा फोकस सेट गर्नुहोस् ।"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">कमाण्ड</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F6 सँग तपाईले कागजातमा फोकस सेट गर्नुहुन्छ।"
#: keyboard.xhp
msgctxt ""
diff --git a/source/ne/helpcontent2/source/text/sdraw.po b/source/ne/helpcontent2/source/text/sdraw.po
index 7dc26f2b1f2..2353eb6aa4c 100644
--- a/source/ne/helpcontent2/source/text/sdraw.po
+++ b/source/ne/helpcontent2/source/text/sdraw.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: 2017-12-20 08:16+0100\n"
-"PO-Revision-Date: 2018-04-08 05:35+0000\n"
-"Last-Translator: Saroj Dhakal <lotusnagarkot@gmail.com>\n"
+"PO-Revision-Date: 2018-05-28 04:53+0000\n"
+"Last-Translator: सन्जोग सिग्देल <sigdelsanjog@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ne\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1523165736.000000\n"
+"X-POOTLE-MTIME: 1527483231.000000\n"
#: main0000.xhp
msgctxt ""
@@ -30,7 +30,7 @@ msgctxt ""
"hd_id3155960\n"
"help.text"
msgid "Welcome to the $[officename] Draw Help"
-msgstr ""
+msgstr "$[officename] रेखाचित्र मद्दतमा स्वागत छ"
#: main0000.xhp
msgctxt ""
@@ -270,7 +270,7 @@ msgctxt ""
"par_idN105B2\n"
"help.text"
msgid "Master Slide"
-msgstr ""
+msgstr "मास्टर स्लाइड"
#: main0103.xhp
msgctxt ""
@@ -278,7 +278,7 @@ msgctxt ""
"par_idN105B6\n"
"help.text"
msgid "Switch to the master slide view."
-msgstr ""
+msgstr "मुख्य पृष्ठ दृश्यमा स्विच गर्नुहोस् ।"
#: main0103.xhp
msgctxt ""
@@ -342,7 +342,7 @@ msgctxt ""
"hd_id0915200910361385\n"
"help.text"
msgid "<link href=\"text/shared/01/04050000.xhp\" name=\"Comment\">Comment</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/04050000.xhp\" name=\"Comment\">टिप्पणी</link>"
#: main0104.xhp
msgctxt ""
@@ -382,7 +382,7 @@ msgctxt ""
"par_id0302200904020595\n"
"help.text"
msgid "Inserts a chart."
-msgstr ""
+msgstr "एउटा चित्रपट घुसाउदछ।"
#: main0104.xhp
msgctxt ""
@@ -566,7 +566,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Line and Filling Bar"
-msgstr ""
+msgstr "लाइन र भर्ने बार"
#: main0202.xhp
msgctxt ""
@@ -574,7 +574,7 @@ msgctxt ""
"hd_id3149669\n"
"help.text"
msgid "<link href=\"text/sdraw/main0202.xhp\" name=\"Line and Filling Bar\">Line and Filling Bar</link>"
-msgstr ""
+msgstr "<link href=\"text/sdraw/main0202.xhp\" name=\"Line and Filling Bar\">लाइन र भर्ने बार</link>"
#: main0202.xhp
msgctxt ""
@@ -582,7 +582,7 @@ msgctxt ""
"par_id3150543\n"
"help.text"
msgid "The Line and Filling bar contains commands for the current editing mode."
-msgstr ""
+msgstr "रेखा र भरने पट्टीले हालको सम्पादन मोडको लागि आदेशहरू समावेश गर्दछ।"
#: main0202.xhp
msgctxt ""
@@ -622,7 +622,7 @@ msgctxt ""
"hd_id3341471\n"
"help.text"
msgid "<link href=\"text/shared/01/05210600.xhp\" name=\"Shadow\">Shadow</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/01/05210600.xhp\" name=\"Shadow\">छाँया</link>"
#: main0210.xhp
msgctxt ""
@@ -702,7 +702,7 @@ msgctxt ""
"par_idN107C8\n"
"help.text"
msgid "<link href=\"text/simpress/02/10120000.xhp\" name=\"Lines and Arrows\">Lines and Arrows</link>"
-msgstr ""
+msgstr "<link href=\"text/simpress/02/10120000.xhp\" name=\"Lines and Arrows\">रेखा र तीरहरू</link>"
#: main0210.xhp
msgctxt ""
@@ -710,7 +710,7 @@ msgctxt ""
"par_idN126D7\n"
"help.text"
msgid "Opens the Arrows toolbar to insert lines and arrows."
-msgstr ""
+msgstr "रेखाहरू र तीर सम्मिलित गर्न तीर उपकरण पट्टी खोल्छ।"
#: main0210.xhp
msgctxt ""
@@ -934,7 +934,7 @@ msgctxt ""
"hd_id3154491\n"
"help.text"
msgid "Grids and Snap Lines"
-msgstr ""
+msgstr "ग्रिड र स्न्याप लाइनहरू"
#: main0503.xhp
msgctxt ""
diff --git a/source/ne/helpcontent2/source/text/shared/00.po b/source/ne/helpcontent2/source/text/shared/00.po
index 607e99f63d8..658867f0dbc 100644
--- a/source/ne/helpcontent2/source/text/shared/00.po
+++ b/source/ne/helpcontent2/source/text/shared/00.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: 2018-05-22 13:16+0200\n"
-"PO-Revision-Date: 2018-05-22 08:39+0000\n"
-"Last-Translator: सन्जोग सिग्देल <sigdelsanjog@gmail.com>\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
+"PO-Revision-Date: 2018-05-29 16:57+0000\n"
+"Last-Translator: Saroj Dhakal <lotusnagarkot@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ne\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1526978360.000000\n"
+"X-POOTLE-MTIME: 1527613057.000000\n"
#: 00000001.xhp
msgctxt ""
@@ -397,16 +397,16 @@ msgctxt ""
"00000001.xhp\n"
"hd_id3149670\n"
"help.text"
-msgid "Back"
-msgstr "पछाडि"
+msgid "Reset"
+msgstr ""
#: 00000001.xhp
msgctxt ""
"00000001.xhp\n"
"par_id3145068\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optionsdialog/revert\">Resets modified values back to the $[officename] default values.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/optionsdialog/revert\">परिमार्जित मानलाई $[officename] मा पूर्वनिर्धारित था मानहरूमा फर्काउँछ।</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optionsdialog/revert\">Resets changes made to the current tab to those applicable when this dialog was opened.</ahelp>"
+msgstr ""
#: 00000001.xhp
msgctxt ""
@@ -518,7 +518,7 @@ msgctxt ""
"par_id3147418\n"
"help.text"
msgid "<variable id=\"regulaer\">The search supports <link href=\"text/shared/01/02100001.xhp\" name=\"regular expressions\">regular expressions</link>. You can enter \"all.*\", for example to find the first location of \"all\" followed by any characters. If you want to search for a text that is also a regular expression, you must precede every character with a \\ character. You can switch the automatic evaluation of regular expression on and off in <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01060500.xhp\">%PRODUCTNAME Calc - Calculate</link>.</variable>"
-msgstr "<variable id=\"regulaer\">खोजीले <link href=\"text/shared/01/02100001.xhp\" name=\"regular expressions\">नियमित अभिव्यक्तिहरूलाई</link> समर्थन गर्दछ। तपाईं You \"all.*\" प्रविष्ट गर्न सक्नुहुन्छ, उदाहरणका लागि \"all\" पछि कुनै पनि क्यारेक्टर लागेकाे पहिलो स्थान पत्ता लगाउनका लागि। यदि तपाईँंले नियमित अभिव्यक्ति भएको पाठ खोज्न चाहनुहुन्छ भने तपाईँंले हरेक क्यारेक्टर सँग \\ क्यारेक्टर लाई अग्रगामि गर्नुपर्दछ। तपाईले नियमित अभिव्यक्तिको स्वचालित मूल्याङ्कन <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - प्राथमिकताहरू</caseinline><defaultinline>उपकरणहरू - विकल्पहरू</defaultinline></switchinline> - <link href=\"text/shared/optionen/01060500.xhp\">%PRODUCTNAME क्याल्क - गणना</link>मा गई खुला र बन्द गर्न सक्नुहुन्छ।"
+msgstr "<variable id=\"regulaer\">खोजीले <link href=\"text/shared/01/02100001.xhp\" name=\"regular expressions\">नियमित अभिव्यक्तिहरूलाई</link> समर्थन गर्दछ। तपाईं You \"all.*\" प्रविष्ट गर्न सक्नुहुन्छ, उदाहरणका लागि \"all\" पछि कुनै पनि क्यारेक्टर लागेकाे पहिलो स्थान पत्ता लगाउनका लागि। यदि तपाईँंले नियमित अभिव्यक्ति भएको पाठ खोज्न चाहनुहुन्छ भने तपाईँंले हरेक क्यारेक्टर सँग \\ क्यारेक्टर लाई अग्रगामि गर्नुपर्दछ। तपाईले नियमित अभिव्यक्तिको स्वचालित मूल्याङ्कन <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - प्राथमिकताहरू</caseinline><defaultinline>उपकरणहरू - विकल्पहरू</defaultinline></switchinline> - <link href=\"text/shared/optionen/01060500.xhp\">%PRODUCTNAME Calc - गणना</link></variable>मा गई खुला र बन्द गर्न सक्नुहुन्छ।"
#: 00000001.xhp
msgctxt ""
@@ -552,6 +552,54 @@ msgctxt ""
msgid "<variable id=\"ShiftF1\">Press Shift+F1 and point to a control to learn more about that control.</variable>"
msgstr ""
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"hd_id631527692833772\n"
+"help.text"
+msgid "Options dialog buttons"
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"hd_id831527692839432\n"
+"help.text"
+msgid "OK"
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"par_id471527692844934\n"
+"help.text"
+msgid "Save the changes in the page and close the Options dialog."
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"hd_id261527692850720\n"
+"help.text"
+msgid "Cancel"
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"par_id571527692855533\n"
+"help.text"
+msgid "Close the Options dialog and discard all changes done."
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"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 Options dialog."
+msgstr ""
+
#: 00000002.xhp
msgctxt ""
"00000002.xhp\n"
@@ -4174,7 +4222,7 @@ msgctxt ""
"par_id993144740\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Specifies whether a monochrome preview graphic in EPSI format is exported together with the PostScript file. This format only contains printable characters from the 7-bit ASCII code.</ahelp>"
-msgstr "<ahelp hid=\"GOODIES:CHECKBOX:DLG_EXPORT_EPS:CB_PREVIEW_EPSI\"> ले मोनोक्रो पूर्वावलोकन ग्राफिक EPSI ढाँचामा पोष्टस्क्रिप्ट फाइल सँग निर्यात गर्ने कि भन्ने वर्णन गर्दछ। </ahelp> यो ढाँचाले ७-बिट ASCII सङ्केत देखि मुद्रणयोग्य क्यारेक्टर मात्र समावेश गर्दछ।"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\"> ले मोनोक्रो पूर्वावलोकन ग्राफिक EPSI ढाँचामा पोष्टस्क्रिप्ट फाइल सँग निर्यात गर्ने कि भन्ने वर्णन गर्दछ। यो ढाँचाले ७-बिट ASCII सङ्केत देखि मुद्रणयोग्य क्यारेक्टर मात्र समावेश गर्दछ।</ahelp>"
#: 00000200.xhp
msgctxt ""
@@ -4182,7 +4230,7 @@ msgctxt ""
"par_id993150935\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Compression is not available at this level. Select the Level 1 option if your PostScript printer does not offer the capabilities of Level 2.</ahelp>"
-msgstr "<ahelp hid=\"GOODIES:RADIOBUTTON:DLG_EXPORT_EPS:RB_LEVEL1\"> संङ्कुचन यो स्तरमा उपलब्ध छैन। यदि तपाईँंको पोष्टस्क्रिप्ट मुद्रक स्तर २ को क्षमता अफर गर्दैन भने <emph>स्तर १ </emph> विकल्प चयन गर्नुहोस। </ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">संङ्कुचन यो स्तरमा उपलब्ध छैन। यदि तपाईँंको पोष्टस्क्रिप्ट मुद्रक स्तर २ को क्षमता अफर गर्दैन भने स्तर १ विकल्प चयन गर्नुहोस।</ahelp>"
#: 00000200.xhp
msgctxt ""
@@ -4190,7 +4238,7 @@ msgctxt ""
"par_id993159201\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Select the Level 2 option if your output device supports colored bitmaps, palette graphics and compressed graphics.</ahelp>"
-msgstr "<ahelp hid=\"GOODIES:RADIOBUTTON:DLG_EXPORT_EPS:RB_LEVEL2\"> यदि तपाईँंको निर्गत यन्त्रले रङिन बिटम्यापहरू, प्यालेट ग्राफिक र संङ्कुचित ग्राफिक्स लाई समर्थन गर्दछ भने <emph> स्तर २ </emph> विकल्प चयन गर्नुहोस। </ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\"> यदि तपाईँंको निर्गत यन्त्रले रङिन बिटम्यापहरू, प्यालेट ग्राफिक र संङ्कुचित ग्राफिक्स लाई समर्थन गर्दछ भने स्तर २ विकल्प चयन गर्नुहोस।</ahelp>"
#: 00000200.xhp
msgctxt ""
@@ -8926,7 +8974,7 @@ msgctxt ""
"par_id3149902\n"
"help.text"
msgid "<variable id=\"FehlendesElement\">In a database file window, click the <emph>Queries</emph> icon, then choose <emph>Edit - Edit</emph>. When referenced fields no longer exist, you see this dialog</variable>"
-msgstr "<variable id=\"tabellenentwurf\">डाटाबेस फाइल सञ्झ्यालमा, तालिकाहरू प्रतिमा चयन गर्नुहोस। घुसाउनुहोस -<emph> तालिका डिजाईम</emph> वा <emph>सम्पादन -सम्पादन</emph></variable> रोज्नुहोस"
+msgstr ""
#: 00000450.xhp
msgctxt ""
@@ -11125,7 +11173,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3151293\n"
"help.text"
-msgid "<variable id=\"linienstile\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Line Styles</emph> tab </variable>"
+msgid "<variable id=\"linienstile\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Line Styles</emph> tab</variable>"
msgstr ""
#: 00040502.xhp
@@ -11133,7 +11181,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3149317\n"
"help.text"
-msgid "<variable id=\"linienenden\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Arrow Styles</emph> tab </variable>"
+msgid "<variable id=\"linienenden\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Arrow Styles</emph> tab</variable>"
msgstr ""
#: 00040502.xhp
@@ -11173,7 +11221,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3154948\n"
"help.text"
-msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Area</emph> tab"
+msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Area</emph> tab."
msgstr ""
#: 00040502.xhp
@@ -11181,7 +11229,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3145607\n"
"help.text"
-msgid "Choose <emph>View - Styles</emph> - open context menu and choose <emph>Modify/New - Area</emph> tab (presentation documents)"
+msgid "Choose <emph>View - Styles</emph> - open context menu and choose <emph>Modify/New - Area</emph> tab (presentation documents)."
msgstr ""
#: 00040502.xhp
@@ -11189,47 +11237,47 @@ msgctxt ""
"00040502.xhp\n"
"par_id3152922\n"
"help.text"
-msgid "Choose <emph>Format - Title - Area</emph> tab (chart documents)"
-msgstr "<emph>ढाँचा - शीर्षक - क्षेत्र</emph> ट्याब (चित्रपट कागजात) रोज्नुहोस"
+msgid "Choose <emph>Format - Title - Area</emph> tab (chart documents)."
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3157894\n"
"help.text"
-msgid "Choose <emph>Format - Legend - Area</emph> tab (chart documents)"
-msgstr "<emph>ढाँचा - लिजेन्ड - क्षेत्र</emph> ट्याब (चित्रपट कागजात) रोज्नुहोस"
+msgid "Choose <emph>Format - Legend - Area</emph> tab (chart documents)."
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3144444\n"
"help.text"
-msgid "Choose <emph>Format - Chart Wall - Area</emph> tab (chart documents)"
-msgstr "<emph>ढाँचा - चित्रपट पर्खाल - क्षेत्र</emph> ट्याब (चित्रपट कागजात) रोज्नुहोस"
+msgid "Choose <emph>Format - Chart Wall - Area</emph> tab (chart documents)."
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3156543\n"
"help.text"
-msgid "Choose <emph>Format - Chart Floor - Area</emph> tab (chart documents)"
-msgstr "<emph>ढाँचा - चित्रपट - क्षेत्र</emph> ट्याब (चित्रपट कागजात) रोज्नुहोस"
+msgid "Choose <emph>Format - Chart Floor - Area</emph> tab (chart documents)."
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3150685\n"
"help.text"
-msgid "Choose <emph>Format - Chart Area - Area</emph> tab (chart documents)"
-msgstr "<emph>ढाँचा - चित्रपट क्षेत्र - क्षेत्र</emph> ट्याब (चित्रपट कागजात) रोज्नुहोस"
+msgid "Choose <emph>Format - Chart Area - Area</emph> tab (chart documents)."
+msgstr ""
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3149664\n"
"help.text"
-msgid "Choose <emph>Slide - Properties - Background</emph> tab (in $[officename] Impress)"
+msgid "Choose <emph>Slide - Properties - Background</emph> tab (in $[officename] Impress)."
msgstr ""
#: 00040502.xhp
@@ -11237,7 +11285,15 @@ msgctxt ""
"00040502.xhp\n"
"par_id9149694\n"
"help.text"
-msgid "Choose <emph>Page - Properties - Background</emph> tab (in $[officename] Draw)"
+msgid "Choose <emph>Page - Properties - Background</emph> tab (in $[officename] Draw)."
+msgstr ""
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id841527083135387\n"
+"help.text"
+msgid "Choose <emph>Table - Properties - Background</emph> tab."
msgstr ""
#: 00040502.xhp
@@ -11349,7 +11405,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3150011\n"
"help.text"
-msgid "<variable id=\"schatte\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Shadow</emph> tab </variable>"
+msgid "<variable id=\"schatte\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Shadow</emph> tab</variable>"
msgstr ""
#: 00040502.xhp
@@ -11357,7 +11413,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3147441\n"
"help.text"
-msgid "<variable id=\"verlauf\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Gradients</emph> tab </variable>"
+msgid "<variable id=\"verlauf\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Gradients</emph> tab</variable>"
msgstr ""
#: 00040502.xhp
@@ -11365,7 +11421,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3155308\n"
"help.text"
-msgid "<variable id=\"schraffur\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Hatching</emph> tab </variable>"
+msgid "<variable id=\"schraffur\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Hatching</emph> tab</variable>"
msgstr ""
#: 00040502.xhp
@@ -11373,7 +11429,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3145800\n"
"help.text"
-msgid "<variable id=\"bitmap\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Bitmaps</emph> tab </variable>"
+msgid "<variable id=\"bitmap\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Bitmaps</emph> tab</variable>"
msgstr ""
#: 00040502.xhp
@@ -11413,8 +11469,8 @@ msgctxt ""
"00040502.xhp\n"
"par_id3156286\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F4 key </caseinline><caseinline select=\"IMPRESS\">F4 key </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F4 कुञ्जी </caseinline><caseinline select=\"IMPRESS\">F4 कुञ्जी </caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F4 key</caseinline><caseinline select=\"IMPRESS\">F4 key</caseinline></switchinline>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
@@ -11453,7 +11509,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3153099\n"
"help.text"
-msgid "<variable id=\"position2\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Position and Size</emph> tab </variable>"
+msgid "<variable id=\"position2\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Position and Size</emph> tab</variable>"
msgstr ""
#: 00040502.xhp
@@ -11485,7 +11541,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3145666\n"
"help.text"
-msgid "<variable id=\"ecke\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Slant & Corner Radius</emph> tab </variable>"
+msgid "<variable id=\"ecke\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Slant & Corner Radius</emph> tab</variable>"
msgstr ""
#: 00040502.xhp
@@ -11493,7 +11549,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3146081\n"
"help.text"
-msgid "<variable id=\"legende\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Callout</emph> tab (only for textbox callouts, not for custom shapes callouts) </variable>"
+msgid "<variable id=\"legende\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Callout</emph> tab (only for textbox callouts, not for custom shapes callouts)</variable>"
msgstr ""
#: 00040502.xhp
@@ -11517,8 +11573,8 @@ msgctxt ""
"00040502.xhp\n"
"par_id3149019\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F8 key </caseinline><caseinline select=\"IMPRESS\">F8 key </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F8 कुञ्जी </caseinline><caseinline select=\"IMPRESS\">F8 कुञ्जी </caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F8 key</caseinline><caseinline select=\"IMPRESS\">F8 key</caseinline></switchinline>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
@@ -11805,8 +11861,8 @@ msgctxt ""
"00040502.xhp\n"
"par_id3153076\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Align Center Horizontally </caseinline><defaultinline>Centered</defaultinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">तेस्रोरूपमा केन्द्र पङ्क्तिबद्ध गर्नुहोस </caseinline><defaultinline>केन्द्रित</defaultinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Align Center Horizontally</caseinline><defaultinline>Centered</defaultinline></switchinline>"
+msgstr ""
#: 00040502.xhp
msgctxt ""
@@ -11845,7 +11901,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3150527\n"
"help.text"
-msgid "<variable id=\"font\">Click <emph>Fontwork</emph> icon on <emph>Drawing</emph> bar </variable>"
+msgid "<variable id=\"font\">Click <emph>Fontwork</emph> icon on <emph>Drawing</emph> bar</variable>"
msgstr ""
#: 00040502.xhp
@@ -12374,7 +12430,7 @@ msgctxt ""
"par_id3158428\n"
"help.text"
msgid "<ahelp hid=\"HID_GALLERY_MN_PREVIEW\">The<emph> Preview </emph>command displays the selected graphic.</ahelp>"
-msgstr "<ahelp visibility=\"visible\" hid=\"HID_GALLERY_MN_PREVIEW\">The<emph> Preview </emph>चयन गरिएको ग्राफिक आदेशले प्रदर्शन गर्छ.</ahelp> Select <emph>पूर्वावलोकन</emph> मौलिक दृश्य फेरि पूर्वावस्थामा ल्याउन. तपाईँंले स्विच पूर्वावलोकन अन वा अफ ग्राफिकमा डबल-क्लिक गरेर पनि गर्न सक्नुहुन्छ वा स्पेस बार थिचेर पनि सक्नुहुन्छ."
+msgstr ""
#: 01010000.xhp
msgctxt ""
diff --git a/source/ne/helpcontent2/source/text/shared/01.po b/source/ne/helpcontent2/source/text/shared/01.po
index a46fbb46157..f1d8f8ec5c1 100644
--- a/source/ne/helpcontent2/source/text/shared/01.po
+++ b/source/ne/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: 2018-05-23 23:19+0200\n"
-"PO-Revision-Date: 2018-05-22 08:41+0000\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
+"PO-Revision-Date: 2018-05-30 08:47+0000\n"
"Last-Translator: सन्जोग सिग्देल <sigdelsanjog@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ne\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1526978462.000000\n"
+"X-POOTLE-MTIME: 1527670022.000000\n"
#: 01010000.xhp
msgctxt ""
@@ -646,7 +646,7 @@ msgctxt ""
"par_id3155555\n"
"help.text"
msgid "To change your return address, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - </emph><link href=\"text/shared/optionen/01010100.xhp\" name=\"%PRODUCTNAME\"><emph>%PRODUCTNAME</emph></link>, and then click on the <emph>User Data</emph> tab."
-msgstr "तपाईँको फिर्ता ठेगाना परिवर्तन गर्नका लागि,<link href=\"text/shared/optionen/01010100.xhp\" name=\"Tools - Options - %PRODUCTNAME\"><emph>उपकरणहरू - विकल्प - </emph><emph><item type=\"productname\">%PRODUCTNAME</item></emph></link> रोज्नुहोस्,र त्यसपछि <emph>प्रयोगकर्ता डेटा</emph> ट्याबमा क्लिक गर्नुहोस्।"
+msgstr ""
#: 01010201.xhp
msgctxt ""
@@ -1414,7 +1414,7 @@ msgctxt ""
"par_id3147399\n"
"help.text"
msgid "Enter the contact information that you want to include on your business card. You can also modify or update these entries by choosing <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - User Data</emph>."
-msgstr "तपाईँको व्यवसायिक कार्डमा समाविष्ट गर्न चाहेको सम्पर्क सूचना प्रविष्ट गर्नुहोस्।तपाईँले <emph>उपकरणहरू - विकल्प - $[officename] - प्रयोगकर्ता डेटा</emph> लाई रोजेर परिमार्जन वा अद्यावधिक गर्न पनि सक्नुहुन्छ ।"
+msgstr ""
#: 01010303.xhp
msgctxt ""
@@ -2342,7 +2342,7 @@ msgctxt ""
"par_id3159201\n"
"help.text"
msgid "When you close the last open document window, you see the <link href=\"text/shared/guide/startcenter.xhp\">Start Center</link>."
-msgstr "जव तपाईँले अन्तिम खुला कागजात सञ्झ्याल बन्द गर्नुहुन्छ,$[officename] सुरु मोड्युल खुला रहन्छ ।"
+msgstr "जव तपाईँले अन्तिम खुला कागजात सञ्झ्याल बन्द गर्नुहुन्छ,<link href=\"text/shared/guide/startcenter.xhp\"> तपाईले सुरुवात केन्द्र देख्नुहुनेछ</link>।"
#: 01050000.xhp
msgctxt ""
@@ -2822,7 +2822,7 @@ msgctxt ""
"par_id3150710\n"
"help.text"
msgid "The following sections describe the <emph>$[officename] Export</emph> dialog box. To activate the <emph>$[officename] Open</emph> and <emph>Save</emph> dialog boxes, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - </emph><link href=\"text/shared/optionen/01010600.xhp\" name=\"$[officename] - General\"><emph>$[officename] - General</emph></link>, and then select the <emph>Use $[officename] dialogs</emph> in the <emph>Open/Save dialogs</emph> area."
-msgstr "निम्न सेक्सनले <emph>$[officename] निर्यात </emph>संवाद वर्णन गर्दछ । <emph>$[officename] सक्रिय पार्न संवाद खोल्नुहोस्</emph> र<emph> बचत गर्नुहोस्</emph>, <link href=\"text/shared/optionen/01010600.xhp\" name=\"Tools - Options - $[officename] - General\"><emph>उपकरण - विकल्प - $[officename] - सामान्य</emph></link> रोज्नुहोस्, र त्यसपछि <emph>$[officename] संवाद प्रयोग गर्नुहोस्</emph> <emph> संवाद खोल्नुहोस्/बचत गर्नुहोस्</emph> क्षेत्रमा चयन गर्नुहोस् ।"
+msgstr ""
#: 01070001.xhp
msgctxt ""
@@ -3310,7 +3310,7 @@ msgctxt ""
"par_id3143271\n"
"help.text"
msgid "<ahelp hid=\"sfx/ui/documentinfopage/userdatacb\">Saves the user's full name with the file. You can edit the name by choosing <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - $[officename] - User Data</emph>.</ahelp>"
-msgstr "<ahelp hid=\"sfx/ui/documentinfopage/userdatacb\">फाइल सँगै प्रयोगकर्ताको पूरा नाम बचत गर्दछ ।<emph>उपकरणहरू - विकल्प - $[officename] - प्रयोगकर्ता डेटा</emph>लाई रोजेर तपाईँले नाम सम्पादन गर्न सक्नुहुन्छ ।</ahelp>"
+msgstr ""
#: 01100200.xhp
msgctxt ""
@@ -4294,7 +4294,7 @@ msgctxt ""
"par_id3146848\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">To print a range of pages, use a format like 3-6. To print single pages, use a format like 7;9;11. You can print a combination of page ranges and single pages, by using a format like 3-6;8;10;12.</ahelp>"
-msgstr "<ahelp hid=\"SVTOOLS_EDIT_DLG_SVT_PRNDLG_PRINTDLG_EDT_PAGES\">पृष्ठको दायरा मुद्रण गर्नका लागि, ३-६ ढाँचा प्रयोग गर्नुहोस् । एकल पृष्ठ मुद्रण गर्नका लागि, ७;९;११ ढाँचा प्रयोग गर्नुहोस् । यदि तपाईँले चाहेमा, तपाईँले पृष्ठ दायरा र एकल पृष्ठहरूको समिश्रण ३-६;८;१०;१२ ढाँचा प्रयोग गरी मुद्रण गर्न सक्नुहुन्छ । </ahelp>"
+msgstr ""
#: 01130000.xhp
msgctxt ""
@@ -4302,7 +4302,7 @@ msgctxt ""
"par_id3150772\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Prints to a file instead of to a printer.</ahelp>"
-msgstr "<ahelp hid=\"SVTOOLS_RADIOBUTTON_DLG_SVT_PRNDLG_PRINTDLG_RBT_ALL\">सम्पूर्ण कागजात मुद्रण गर्छ ।</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">प्रिन्टरको सट्टा फाइलमा मुद्रण गर्छ।</ahelp>"
#: 01130000.xhp
msgctxt ""
@@ -12486,7 +12486,7 @@ msgctxt ""
"par_id3153716\n"
"help.text"
msgid "To set the printing options for comments in your spreadsheet, choose <emph>Format - Page</emph>, and then click the <emph>Sheet</emph> tab."
-msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">तपाईँको स्प्रेडसिटको द्रष्टव्यहरूका लागि मुद्रण विकल्प सेट गर्न, <emph>ढाँचा - पृष्ठ</emph> रोज्नुहोस्, र त्यसपछि <emph>पाना</emph> ट्याबमा क्लिक गर्नुहोस्।</caseinline></switchinline>"
+msgstr ""
#: 04050000.xhp
msgctxt ""
@@ -12654,7 +12654,7 @@ msgctxt ""
"par_id3145090\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/specialcharacters/subsetlb\">Select a Unicode category for the current font.</ahelp> The special characters for the selected Unicode category are displayed in the character table."
-msgstr "<ahelp hid=\"SVX_LISTBOX_RID_SVXDLG_CHARMAP_LB_SUBSET\">हालको फन्टका लागि एउटा युनिकोड कोटि चयन गर्नुहोस्।</ahelp> चयन गरिएको युनिकोड कोटिका लागि विशेष क्यारेक्टरहरू क्यारेक्टर तालिकामा प्रदर्शित हुन्छन् ।"
+msgstr "<ahelp hid=\"cui/ui/specialcharacters/subsetlb\">हालको फन्टका लागि एउटा युनिकोड कोटि चयन गर्नुहोस्।</ahelp> चयन गरिएको युनिकोड कोटिका लागि विशेष क्यारेक्टरहरू क्यारेक्टर तालिकामा प्रदर्शित हुन्छन्।"
#: 04100000.xhp
msgctxt ""
@@ -13070,7 +13070,7 @@ msgctxt ""
"par_id3151100\n"
"help.text"
msgid "If you want to create HTML pages that use floating frames, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - Load/Save - HTML compatibility</emph>, and then select the \"MS Internet Explorer\" option. The floating frame is bounded by <IFRAME> and </IFRAME> tags."
-msgstr "यदि तपाईँले उत्प्लावन गरिरहेको फ्रेमहरू प्रयोग गर्ने HTML पृष्ठहरू सिर्जना गर्न चाहनुहुन्छ भने, <emph>उपकरणहरू - विकल्प - लोड गर्नुहोस्बचत गर्नुहोस्- HTML मिल्दोपना</emph> रोज्नुहोस्, र त्यसपछि \"MS Internet Explorer\" विकल्प चयन गर्नुहोस् उत्प्लावन गरिरहेको फ्रेमहरू <IFRAME> र </IFRAME> ट्यागहरूद्वारा बाँधिएको हुन्छ ।"
+msgstr ""
#: 04160500.xhp
msgctxt ""
@@ -13102,7 +13102,7 @@ msgctxt ""
"par_id3149495\n"
"help.text"
msgid "<ahelp hid=\".\">Lists the databases that are registered in <item type=\"productname\">%PRODUCTNAME</item> and lets you manage the contents of the databases.</ahelp>"
-msgstr "<ahelp hid=\".uno:ViewDataSourceBrowser\">ले <item type=\"productname\">%PRODUCTNAME</item> मा दर्ता भएका डाटाबेसहरू सूचीबद्ध गर्दछ र डाटाबेसहरूको सामग्रीहरू प्रबन्ध गर्न तपाईँलाई अनुमति दिन्छ ।</ahelp>"
+msgstr "<ahelp hid=\".\"><item type=\"productname\">%PRODUCTNAME</item> मा दर्ता भएका डाटाबेसहरू सूचीबद्ध गर्दछ र डाटाबेसहरूको सामग्रीहरू प्रबन्ध गर्न तपाईँलाई अनुमति दिन्छ।</ahelp>"
#: 04180100.xhp
msgctxt ""
@@ -13326,7 +13326,7 @@ msgctxt ""
"par_id3153663\n"
"help.text"
msgid "To enable support for complex text layout and Asian character sets, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - Language Settings - Languages</emph>, and then select the <emph>Enabled </emph>box in the corresponding area."
-msgstr "जटिल पाठ सजावट र एसियाली क्यारेक्टर सेटहरूका लागि समर्थन सक्षम पार्न, <emph>उपकरणहरू - विकल्प - भाषा सेटिङहरू - भाषाहरू</emph> रोज्नुहोस्, र त्यसपछि समनुरूप डेटामा <emph>सक्षम पारिएको </emph>बाकस चयन गर्नुहोस्।"
+msgstr ""
#: 05020100.xhp
msgctxt ""
@@ -18054,7 +18054,7 @@ msgctxt ""
"par_id3153683\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/asiantypography/checkForbidList\">Prevents the characters in the list from starting or ending a line. The characters are relocated to either the previous or the next line.</ahelp> To edit the list of restricted characters, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - Language Settings - </emph><link href=\"text/shared/optionen/01150100.xhp\" name=\"Asian Layout\"><emph>Asian Layout</emph></link>."
-msgstr "<ahelp hid=\"cui/ui/asiantypography/checkForbidList\">सूचीको क्यारेक्टरहरू रेखाको सुरु वा अन्त्यबाट सुरक्षा गर्दछ । क्यारेक्टरहरू दुवै अघिल्लो वा पछिल्लो रेखामा पुन: स्थित गरिन्छ । निषेधित क्यारेक्टरहरूको सूची सम्पादन गर्न, <emph>उपकरणहरू- विकल्प - भाषा सेटिङहरू - </emph><link href=\"text/shared/optionen/01150100.xhp\" name=\"Asian Layout\"><emph>एसियाली सजावट</emph></link></ahelp>"
+msgstr ""
#: 05020700.xhp
msgctxt ""
@@ -18166,7 +18166,7 @@ msgctxt ""
"par_id3153910\n"
"help.text"
msgid "To change the measurement units used in this dialog, choose <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Writer - General, and then select a new measurement unit in the Settings area."
-msgstr "संवादमा प्रयोग गरिएका मापन इकाईहरू परिवर्तन गर्न, उपकरणहरू - विकल्प - %PRODUCTNAME लेखक - सामान्य रोज्नुहोस्, र त्यसपछि सेटिङ क्षेत्रमा नयाँ मापन इकाई चयन गर्नुहोस् ।"
+msgstr ""
#: 05030100.xhp
msgctxt ""
@@ -18174,7 +18174,7 @@ msgctxt ""
"par_id3154823\n"
"help.text"
msgid "You can also <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">set indents using the ruler</link>. To display the ruler, choose <emph>View - Ruler</emph>."
-msgstr "तपाईँले <link href=\"text/swriter/main0213.xhp\" name=\"ruler\">रुलर</link> प्रयोग गरेर इन्डेन्टहरू पनि सेट गर्न सक्नुहुन्छ । रुलर प्रदर्शन गर्न, <emph>दृश्य - रुलर</emph> रोज्नुहोस्् ।"
+msgstr "तपाईँले <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">रुलर प्रयोग गरेर इन्डेन्टहरू पनि सेट गर्न सक्नुहुन्छ</link>। रुलर प्रदर्शन गर्न, <emph>दृश्य - रुलर</emph> रोज्नुहोस्।"
#: 05030100.xhp
msgctxt ""
@@ -20646,7 +20646,7 @@ msgctxt ""
"par_id3154938\n"
"help.text"
msgid "<ahelp hid=\"svx/ui/headfootformatpage/checkSameLR\">Even and odd pages share the same content.<switchinline select=\"appl\"><caseinline select=\"CALC\"> To assign a different header to even and odd pages, clear this option, and then click <emph>Edit</emph>. </caseinline></switchinline></ahelp>"
-msgstr "<ahelp hid=\"svx/ui/headfootformatpage/checkSameLR\">दुवै बिजोर र जोर पृष्ठहरूमा हेडर थप गर्दछ । यो विकल्प केवल<emph>पूर्वनिर्धारित</emph> पृष्ठ शैलीका लागि उपलब्ध छ ।<switchinline select=\"appl\"><caseinline select=\"CALC\"> जोर र बिजोर पृष्ठहरूमा एउटा भिन्न हेडर मानाङ्कन गर्न, यो विकल्प खाली गर्नुहोस् र त्यसपछि <emph>सम्पादन गर्नुहोस्</emph> मा क्लिक गर्नुहोस्। </caseinline></switchinline></ahelp>"
+msgstr ""
#: 05040300.xhp
msgctxt ""
@@ -23587,6 +23587,22 @@ msgstr ""
#: 05210100.xhp
msgctxt ""
"05210100.xhp\n"
+"hd_id471527077476052\n"
+"help.text"
+msgid "Cell, Row or Table background selector"
+msgstr ""
+
+#: 05210100.xhp
+msgctxt ""
+"05210100.xhp\n"
+"par_id661527077493366\n"
+"help.text"
+msgid "Select the table object which background area is to be filled."
+msgstr ""
+
+#: 05210100.xhp
+msgctxt ""
+"05210100.xhp\n"
"hd_id3147373\n"
"help.text"
msgid "None"
@@ -28846,7 +28862,7 @@ msgctxt ""
"par_id3155583\n"
"help.text"
msgid "<ahelp hid=\"svx/ui/docking3deffects/mode\">Select the shading method that you want to use. Flat shading assigns a single color to a single polygon on the surface of the object. Gouraud shading blends colors across the polygons. Phong shading averages the color of each pixel based on the pixels that surround it, and requires the most processing power.</ahelp>"
-msgstr "<ahelp hid=\"SVX:LISTBOX:RID_SVXFLOAT_3D:LB_SHADEMODE\">तपाईँले प्रयोग गर्न चाहेको छायाँ विधि चयन गर्नुहोस् फ्ल्याट छायाँले वस्तुको सतहमा एउटा एकल बहुभुजमा एउटा एकल रङ मानाङ्कन गर्दछ. गोराड छायाँ ले बहुभुजको वारपार रङहरू ब्लेन्ड गर्दछ । फोंग छायाँले घेर्ने पिक्सेलमा आधारित रहेर प्रत्येक पिक्सेलको रङ औसत गर्दछ, र सबैभन्दा बढी प्रशोधन शक्ति आवश्यक गर्दछ ।</ahelp>"
+msgstr "<ahelp hid=\"svx/ui/docking3deffects/mode\">तपाईँले प्रयोग गर्न चाहेको छायाँ विधि चयन गर्नुहोस्। फ्ल्याट छायाँले वस्तुको सतहमा एउटा एकल बहुभुजमा एउटा एकल रङ मानाङ्कन गर्दछ। गोराड छायाँ ले बहुभुजको वारपार रङहरू ब्लेन्ड गर्दछ। फोंग छायाँले घेर्ने पिक्सेलमा आधारित रहेर प्रत्येक पिक्सेलको रङ औसत गर्दछ र सबैभन्दा बढी प्रशोधन शक्ति आवश्यक गर्दछ।</ahelp>"
#: 05350300.xhp
msgctxt ""
@@ -28942,7 +28958,7 @@ msgctxt ""
"par_id3156344\n"
"help.text"
msgid "<ahelp hid=\"svx/ui/docking3deffects/focal\">Enter the focal length of the camera, where a small value corresponds to a \"fisheye\" lens, and a large value to a telephoto lens.</ahelp>"
-msgstr "<ahelp hid=\"SVX:METRICFIELD:RID_SVXFLOAT_3D:MTR_FOCAL_LENGTH\">क्यामेराको फोकल लम्बाइ प्रविष्ट गर्नुहोस् जहाँ एउटा सानो मानले \"fisheye\" लेन्स, र एउटा टेलिफोटो लेन्सलाई एउटा ठूलो मान समनुरूप गर्दछ ।</ahelp>"
+msgstr "<ahelp hid=\"svx/ui/docking3deffects/focal\">क्यामेराको फोकल लम्बाइ प्रविष्ट गर्नुहोस् जहाँ एउटा सानो मानले \"fisheye\" लेन्स र एउटा टेलिफोटो लेन्सलाई एउटा ठूलो मान समनुरूप गर्दछ।</ahelp>"
#: 05350400.xhp
msgctxt ""
@@ -28998,7 +29014,7 @@ msgctxt ""
"par_id3149149\n"
"help.text"
msgid "<ahelp hid=\"svx/ui/docking3deffects/light8\">Click twice to turn the light source on, and then select a color for the light from the list. If you want, you can also set the color of the surrounding light, by selecting a color from the <emph>Ambient light</emph> box.</ahelp> You can also press the Spacebar to turn the light source on or off."
-msgstr "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_LIGHT_8\">प्रकाश स्रोत सुरु गर्न दुइपटक क्लिक गर्नुहोस् र त्यसपछि सूचीबाट प्रकाशका लागि एउटा रङ चयन गर्नुहोस् यदि तपाईँले चाहनुहुन्छ भने, तपाईँले <emph>एम्बिएन्ट प्रकाश</emph> बाकसबाट चयन गरेर घेर्ने प्रकाश पनि सेट गर्न सक्नुहुन्छ </ahelp> तपाईँले प्रकाश स्रोत सुरु वा बन्द गर्न स्पेसबारमा पनि थिच्न सक्नुहुन्छ ।"
+msgstr ""
#: 05350400.xhp
msgctxt ""
@@ -29126,7 +29142,7 @@ msgctxt ""
"par_id3147000\n"
"help.text"
msgid "<ahelp hid=\"svx/ui/docking3deffects/texture\">Sets the properties of the surface texture for the selected 3D object. This feature is only available after you apply a surface texture to the selected object. To quickly apply a surface texture, open the <emph>Gallery</emph>, hold down Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>, and then drag an image onto the selected 3D object.</ahelp>"
-msgstr "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_TEXTURE\">चयन गरिएको त्रि-आयामिक वस्तुहरूका लागि सतह बनावटको गुणहरू सेट गर्दछ । यो विशेषता तपाईँले चयन गरिएको वस्तुका लागि एउटा सतह बनावट लागू गरेपछि मात्र उपलब्ध हुन्छ. छिटो एउटा सतह बनावट लागू गर्न, <emph>सँग्रहालय</emph> खोल्नुहोस्, Shift+Ctrl तल होल्ड गर्नुहोस् र त्यसपछि चयन गरिएको त्रि-आयामिक वस्तुमा एउटा छविचित्र तान्नुहोस् </ahelp>"
+msgstr ""
#: 05350500.xhp
msgctxt ""
@@ -29286,7 +29302,7 @@ msgctxt ""
"par_id3154938\n"
"help.text"
msgid "<ahelp hid=\"svx/ui/docking3deffects/texmodulate\">Applies the texture with shading. To define the shading options for the texture, click the <emph>Shading</emph> button in this dialog.</ahelp>"
-msgstr "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_TEX_MODULATE\">छाँयाकरण सहित बनावट लागू गर्छ । बनावटका लागि छाँयाकरण विकल्प परिभाषित गर्न,<emph>छाँयाकरण</emph> यो संवादमा बटनमा क्लिक गर्नुहोस् ।</ahelp>"
+msgstr ""
#: 05350500.xhp
msgctxt ""
@@ -30774,7 +30790,7 @@ msgctxt ""
"par_id3159233\n"
"help.text"
msgid "<ahelp hid=\".\">Displays the current word, or the related term that you selected by double-clicking a line in the Alternatives list. You can also type text directly in this box to look up your text.</ahelp>"
-msgstr "<ahelp hid=\"SVX:LISTBOX:RID_SVXDLG_THESAURUS:LB_WORD\">हालको चयन प्रदर्शन गर्छ, वा शब्द जसले क्रसर समावेश गर्दछ ।</ahelp>"
+msgstr ""
#: 06020000.xhp
msgctxt ""
@@ -30806,7 +30822,7 @@ msgctxt ""
"par_id3149182\n"
"help.text"
msgid "<ahelp hid=\".\">Click an entry in the Alternatives list to copy the related term to the \"Replace with\" text box. Double-click an entry to copy the related term to the \"Current word\" text box and to look up that term.</ahelp>"
-msgstr "<ahelp hid=\"SVX:LISTBOX:RID_SVXDLG_THESAURUS:LB_MEAN\">हालको शब्दको प्रसङ्ग मिल्दो अर्थ चयन गर्नुहोस् र त्यसपछि <emph>पर्याय </emph>सूचीमा एउटा शब्द क्लिक गर्नुहोस् । </ahelp>"
+msgstr ""
#: 06020000.xhp
msgctxt ""
@@ -30822,7 +30838,7 @@ msgctxt ""
"par_id3150693\n"
"help.text"
msgid "<ahelp hid=\".\">The word or words in the \"Replace with\" text box will replace the original word in the document when you click the Replace button. You can also type text directly in this box.</ahelp>"
-msgstr "<ahelp hid=\"SVX:EDIT:RID_SVXDLG_THESAURUS:ED_REPL\">हालको शब्दका लागि एउटा सुझाव गरिएको प्रतिस्थापन प्रदर्शन गर्छ । तपाईँले यो बाकसमा एउटा नयाँ शब्द पनि टाइप गर्न सक्नुहुन्छ, वा एउटा शब्द <emph>पर्याय</emph>सूचीमामा क्लिक गर्नुहोस् ।</ahelp>"
+msgstr ""
#: 06020000.xhp
msgctxt ""
@@ -30910,7 +30926,7 @@ msgctxt ""
"par_id3146957\n"
"help.text"
msgid "<ahelp hid=\".\">Displays the color in the selected image that directly underlies the current mouse pointer position. This features only works if the Color Replacer tool is selected.</ahelp>"
-msgstr "<ahelp hid=\"HID_BMPMASK_CTL_PIPETTE\">हालको माउस प्वाइन्टर कचहरू सिधै चयन गरिएको छविचित्रमा रङ प्रदर्शन गर्छ । यदि आइड्रप उपकरण चयन गरिएको छ भने यो विशेषताहरू मात्र काम गर्छ ।</ahelp>"
+msgstr "<ahelp hid=\".\">हालको माउस प्वाइन्टर कचहरू सिधै चयन गरिएको छविचित्रमा रङ प्रदर्शन गर्छ। यदि आइड्रप उपकरण चयन गरिएको छ भने यो विशेषताहरू मात्र काम गर्छ।</ahelp>"
#: 06030000.xhp
msgctxt ""
@@ -30926,7 +30942,7 @@ msgctxt ""
"par_id3154983\n"
"help.text"
msgid "<ahelp hid=\"svx/ui/dockingcolorreplace/replace\">Replaces the selected source colors in the current image with the colors that you specify in the <emph>Replace with </emph>boxes.</ahelp>"
-msgstr "<ahelp hid=\"SVX:PUSHBUTTON:RID_SVXDLG_BMPMASK:BTN_EXEC\">ले <emph>सहित बदल्नुहोस् </emph> बाकसहरूमा तपाईँले निर्दिष्ट गरेको रङहरू सहित हालको छविचित्रमा चयन गरिएको स्रोत रङहरू बदल्दछ ।</ahelp>"
+msgstr ""
#: 06030000.xhp
msgctxt ""
@@ -31205,15 +31221,15 @@ msgctxt ""
"06040100.xhp\n"
"hd_id3145072\n"
"help.text"
-msgid "Automatic *bold* and _underline_"
-msgstr "स्वचालित*bold* and _underline_"
+msgid "Automatic *bold*, /italic/, -strikeout- and _underline_"
+msgstr ""
#: 06040100.xhp
msgctxt ""
"06040100.xhp\n"
"par_id3153577\n"
"help.text"
-msgid "Automatically applies bold formatting to text enclosed by asterisks (*), and underline to text enclosed by underscores ( _ ), for example, *bold*. The asterisks and underscores are not displayed after the formatting is applied."
+msgid "Automatically applies bold, italic, strikethrough or underline formatting to text enclosed by asterisks (*), slashes (/), hyphens (-), and underscores (_), respectively. These characters disappear after the formatting is applied."
msgstr ""
#: 06040100.xhp
@@ -31221,8 +31237,8 @@ msgctxt ""
"06040100.xhp\n"
"par_id3153127\n"
"help.text"
-msgid "This feature does not work if the formatting characters * or _ are entered with an <link href=\"text/shared/00/00000005.xhp#IME\" name=\"Input Method Editor\">Input Method Editor</link>."
-msgstr "यदि ढाँचा क्यारेक्टरहरू * वा _ एउटा <link href=\"text/shared/00/00000005.xhp#IME\" name=\"Input Method Editor\">आगत विधि सम्पादक</link> सँग प्रविष्टि गरिएको छ भने यो विशेषताले काम गर्दैन ।"
+msgid "This feature does not work if the formatting characters <item type=\"literal\">* / - _</item> are entered with an <link href=\"text/shared/00/00000005.xhp#IME\" name=\"Input Method Editor\">Input Method Editor</link>."
+msgstr ""
#: 06040100.xhp
msgctxt ""
@@ -32006,7 +32022,7 @@ msgctxt ""
"bm_id3153899\n"
"help.text"
msgid "<bookmark_value>quotes; custom</bookmark_value><bookmark_value>custom quotes</bookmark_value><bookmark_value>AutoCorrect function; quotes</bookmark_value><bookmark_value>replacing;ordinal numbers</bookmark_value><bookmark_value>ordinal numbers;replacing</bookmark_value>"
-msgstr "<bookmark_value>उद्धरण; ग्राहक</bookmark_value><bookmark_value>ग्राहक उद्धरण</bookmark_value><bookmark_value>स्वत: सुधार; उद्धरणहरू</bookmark_value>"
+msgstr ""
#: 06040400.xhp
msgctxt ""
@@ -32470,7 +32486,7 @@ msgctxt ""
"par_id3152773\n"
"help.text"
msgid "<ahelp hid=\"cui/ui/wordcompletionpage/entries\">Lists the collected words. The list is valid until you close the current document. To make the list available to other documents in the current session, disable \"When closing a document, remove the words collected from it from the list\".</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/wordcompletionpage/entries\">संकलित शब्दहरूलाई सूचीबद्ध गर्दछ । तपाईँले हालको कागजात बन्द नगर्दा सम्म सूची वैध हुन्छ. हालको सत्रमा सूचीलाई अन्य कागजातहरूलाई उपलब्ध गर्नका लागि, \"<emph>एउटा कागजात बन्द गर्दा, अन्य कागजातहरूमा पछिको प्रयोगका लागि सूची बचत गर्नुहोस्</emph>\" चयन गर्नुहोस् ।</ahelp>"
+msgstr ""
#: 06040600.xhp
msgctxt ""
@@ -33606,7 +33622,7 @@ msgctxt ""
"hd_id3156194\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Minimum space between numbering and text</caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">न्यूनतम खाली स्थान क्रमाङकन <-> पाठ </caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">न्यूनतम खाली स्थान क्रमाङकन पाठ </caseinline></switchinline>"
#: 06050600.xhp
msgctxt ""
@@ -33686,7 +33702,7 @@ msgctxt ""
"par_id3150902\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Lists the macros that are contained in the module selected in the <emph>Macro from </emph>list.</ahelp>"
-msgstr "<ahelp hid=\"HID_BASICIDE_MACROS\"> <emph>बाट म्याक्रो </emph>सूचीमा चयन गरिएको मोड्युलमा समाहित म्याक्रोहरू सूचीबद्ध गर्दछ ।</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\"> <emph>बाट म्याक्रो </emph>सूचीमा चयन गरिएको मोड्युलमा समाहित म्याक्रोहरू सूचीबद्ध गर्दछ।</ahelp>"
#: 06130000.xhp
msgctxt ""
@@ -42302,7 +42318,7 @@ msgctxt ""
"par_idN1058B\n"
"help.text"
msgid "<ahelp hid=\"uui/ui/macrowarnmedium/alwaysTrustCheckbutton\">Adds the current macro source to the list of <link href=\"text/shared/optionen/macrosecurity_ts.xhp\">trusted sources</link>.</ahelp>"
-msgstr "<ahelp hid=\".\">ले<link href=\"text/shared/optionen/macrosecurity_ts.xhp\">ट्रस्टेड स्रोतहरू</link>को सूचीमा हालको म्याक्रो स्रोत थप्छ ।</ahelp>"
+msgstr "<ahelp hid=\"uui/ui/macrowarnmedium/alwaysTrustCheckbutton\">ले <link href=\"text/shared/optionen/macrosecurity_ts.xhp\">विश्वसनीय स्रोतहरू</link> को सूचीमा हालको म्याक्रो स्रोत थप्छ।</ahelp>"
#: securitywarning.xhp
msgctxt ""
diff --git a/source/ne/helpcontent2/source/text/shared/02.po b/source/ne/helpcontent2/source/text/shared/02.po
index 14af65b1457..ba7e1369ec3 100644
--- a/source/ne/helpcontent2/source/text/shared/02.po
+++ b/source/ne/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: 2018-05-08 15:10+0200\n"
-"PO-Revision-Date: 2018-05-22 08:53+0000\n"
+"PO-Revision-Date: 2018-05-25 07:01+0000\n"
"Last-Translator: सन्जोग सिग्देल <sigdelsanjog@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ne\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1526979188.000000\n"
+"X-POOTLE-MTIME: 1527231703.000000\n"
#: 01110000.xhp
msgctxt ""
@@ -4470,7 +4470,7 @@ msgctxt ""
"par_id3163820\n"
"help.text"
msgid "To create a multi-line title, open the combo box using the arrow button. You can enter a line break by pressing Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Enter."
-msgstr "बहु-रेखा शीर्षक सिर्जना गर्न, तीर बटन प्रयोग गरी कम्बो बक्स खोल्नुहोस्। तपाईं Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">कमाण्ड</caseinline><defaultinline>Ctrl</defaultinline>+Enter थिचेर लाइन ब्रेक प्रविष्ट गर्न सक्नुहुन्छ"
+msgstr "बहु-रेखा शीर्षक सिर्जना गर्न, तीर बटन प्रयोग गरी कम्बो बक्स खोल्नुहोस्। तपाईं Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline>+Enter थिचेर लाइन ब्रेक प्रविष्ट गर्न सक्नुहुन्छ "
#: 01170101.xhp
msgctxt ""
@@ -12150,7 +12150,7 @@ msgctxt ""
"par_id3155934\n"
"help.text"
msgid "<ahelp hid=\".uno:CloseWin\">Closes the current window.</ahelp> Choose <emph>Window - Close Window</emph>, or press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F4. In the print preview of $[officename] Writer and Calc, you can close the current window by clicking the <emph>Close Preview</emph> button."
-msgstr "<ahelp hid=\".uno:CloseWin\"> हालको सन्झ्याल बन्द गर्दछ। </ahelp> छनौट गर्नुहोस् <emph> सञ्झ्याल - बन्द सञ्झ्याल </emph>वा थिच्नुहोस् <switchinline select=\"sys\"><caseinline select=\"MAC\"> कमांड </caseinline><defaultinline> Ctrl </defaultinline> </switchinline> + F4. $[Officename] लेखक र क्याल्कको मुद्रण पूर्वावलोकनमा, तपाईँले <emph> बन्द पूर्वावलोकन </emph> बटन क्लिक गरेर हालको विन्डो बन्द गर्न सक्नुहुनेछ।"
+msgstr "<ahelp hid=\".uno:CloseWin\"> हालको सन्झ्याल बन्द गर्दछ। </ahelp> छनौट गर्नुहोस् <emph> सञ्झ्याल - बन्द सञ्झ्याल </emph>, वा थिच्नुहोस् <switchinline select=\"sys\"><caseinline select=\"MAC\"> कमांड </caseinline><defaultinline> Ctrl </defaultinline> </switchinline> + F4. $[Officename] लेखक र क्याल्कको मुद्रण पूर्वावलोकनमा, तपाईँले <emph> बन्द पूर्वावलोकन </emph> बटन क्लिक गरेर हालको विन्डो बन्द गर्न सक्नुहुनेछ।"
#: 10100000.xhp
msgctxt ""
diff --git a/source/ne/helpcontent2/source/text/shared/04.po b/source/ne/helpcontent2/source/text/shared/04.po
index a4437cd70c8..274416374b6 100644
--- a/source/ne/helpcontent2/source/text/shared/04.po
+++ b/source/ne/helpcontent2/source/text/shared/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: 2018-05-08 15:10+0200\n"
-"PO-Revision-Date: 2018-05-19 08:21+0000\n"
+"PO-Revision-Date: 2018-05-25 07:02+0000\n"
"Last-Translator: सन्जोग सिग्देल <sigdelsanjog@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ne\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1526718060.000000\n"
+"X-POOTLE-MTIME: 1527231720.000000\n"
#: 01010000.xhp
msgctxt ""
@@ -550,7 +550,7 @@ msgctxt ""
"hd_id3154198\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\"/><defaultinline>Ctrl+Shift+J</defaultinline></switchinline>"
-msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\"/><defaultinline>कन्ट्रोल +शिफ्ट+J</defaultinline></switchinline>"
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\"/><defaultinline>Ctrl+Shift+J</defaultinline></switchinline>"
#: 01010000.xhp
msgctxt ""
diff --git a/source/ne/helpcontent2/source/text/shared/explorer/database.po b/source/ne/helpcontent2/source/text/shared/explorer/database.po
index 748308edd03..2d79cb28b21 100644
--- a/source/ne/helpcontent2/source/text/shared/explorer/database.po
+++ b/source/ne/helpcontent2/source/text/shared/explorer/database.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: 2018-05-16 16:54+0200\n"
-"PO-Revision-Date: 2018-05-22 09:32+0000\n"
+"PO-Revision-Date: 2018-05-25 07:02+0000\n"
"Last-Translator: सन्जोग सिग्देल <sigdelsanjog@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ne\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1526981527.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1527231747.000000\n"
#: 02000000.xhp
msgctxt ""
@@ -12974,7 +12974,7 @@ msgctxt ""
"par_idN1059E\n"
"help.text"
msgid "<ahelp hid=\".\">Select a field and click < to remove it from the list of primary key fields. The primary key is created as a concatenation of the fields in this list, from top to bottom.</ahelp>"
-msgstr "<ahelp hid=\".\">फाँट चयन गर्नुहोस् र प्राथमिक कुञ्जी फाँटहरूको सूचीबाट यसलाई हटाउन _< क्लिक गर्नुहोस्। यो सूचीमा फाँटहरूको संयोजनको रूपमा सिर्जना गरिन्छ, माथि देखि तल।</ahelp>"
+msgstr "<ahelp hid=\".\">फाँट चयन गर्नुहोस् र यसलाई प्राथमिक कुञ्जी फाँटहरूको सूचीबाट हटाउन < क्लिक गर्नुहोस्। यस सूचीमा भएका फाँटहरूको संयोजनको रूपमा प्राथमिक कुञ्जी सिर्जना गरिन्छ, शीर्ष देखि पुछारसम्म।</ahelp>"
#: tablewizard03.xhp
msgctxt ""
diff --git a/source/ne/helpcontent2/source/text/shared/guide.po b/source/ne/helpcontent2/source/text/shared/guide.po
index 9d8390fb7ee..821f5f68dbd 100644
--- a/source/ne/helpcontent2/source/text/shared/guide.po
+++ b/source/ne/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: 2018-05-16 16:54+0200\n"
-"PO-Revision-Date: 2018-05-19 08:36+0000\n"
+"PO-Revision-Date: 2018-05-28 05:24+0000\n"
"Last-Translator: सन्जोग सिग्देल <sigdelsanjog@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ne\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1526718964.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1527485091.000000\n"
#: aaa_start.xhp
msgctxt ""
@@ -14790,7 +14790,7 @@ msgctxt ""
"par_idN106CB\n"
"help.text"
msgid "Copies the object formatting that is defined in the <item type=\"menuitem\">Format - Graphics</item> or <item type=\"menuitem\">Format - Drawing Object</item> dialogs. The contents, size, position, hyperlinks, and macros in the object are not copied."
-msgstr "वस्तु ढाँचामा प्रतिलिपि बनाइएको वस्तु स्वरूपण <item type = \"menuitem\"> ढाँचा - ग्राफिक्स </item> वा <item type = \"menuitem\"> ढाँचा - आरेखण वस्तु </item> संवादमा परिभाषित गरिएको छ। सामग्रीमा आकार, आकार, स्थिति, हाइपरलिङ्कहरू र म्याक्रोहरू प्रतिलिपि गरिएका छैनन्।"
+msgstr "वस्तु ढाँचामा प्रतिलिपि बनाइएको वस्तु स्वरूपण <item type=\"menuitem\">ढाँचा - ग्राफिक्स </item>वा <item type=\"menuitem\">ढाँचा - आरेखण वस्तु </item> संवादमा परिभाषित गरिएको छ। सामग्रीमा आकार, आकार, स्थिति, हाइपरलिङ्कहरू र म्याक्रोहरू प्रतिलिपि गरिएका छैनन्।"
#: paintbrush.xhp
msgctxt ""
@@ -19110,7 +19110,7 @@ msgctxt ""
"bm_id6606036\n"
"help.text"
msgid "<bookmark_value>undoing;direct formatting</bookmark_value><bookmark_value>direct formatting;undoing all</bookmark_value><bookmark_value>deleting;all direct formatting</bookmark_value><bookmark_value>text attributes;undoing</bookmark_value><bookmark_value>formatting;undoing</bookmark_value><bookmark_value>restoring;default formatting</bookmark_value>"
-msgstr "<bookmark_value>प्रत्यक्ष ढाँचा;पूर्ववस्थामा फर्काउँदा</bookmark_value><bookmark_value>प्रत्यक्ष ढाँचा;सबै पूर्ववस्थामा फर्काउँदा</bookmark_value><bookmark_value>सबै प्रत्यक्ष ढाँचा; हटाउँदा</bookmark_value><bookmark_value>सबै प्रत्यक्ष ढाँचा;मेट्दा</bookmark_value><bookmark_value>पाठ विशेषताहरू;पूर्ववस्थामा फर्काउँदा</bookmark_value><bookmark_value>ढाँचा;पूर्ववस्थामा फर्काउँदा</bookmark_value><bookmark_value>पूर्वनिर्धारित ढाँचा;पूर्ववस्थामा ल्याउँदा</bookmark_value>"
+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>"
#: undo_formatting.xhp
msgctxt ""
diff --git a/source/ne/helpcontent2/source/text/shared/optionen.po b/source/ne/helpcontent2/source/text/shared/optionen.po
index 870bf8495b6..e6176c9c26d 100644
--- a/source/ne/helpcontent2/source/text/shared/optionen.po
+++ b/source/ne/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: 2018-05-08 15:10+0200\n"
-"PO-Revision-Date: 2018-05-13 05:34+0000\n"
-"Last-Translator: Dipesh Kumar <dipesh009@gmail.com>\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
+"PO-Revision-Date: 2018-06-01 05:02+0000\n"
+"Last-Translator: सन्जोग सिग्देल <sigdelsanjog@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ne\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1526189674.000000\n"
+"X-Generator: LibreOffice\n"
+"X-POOTLE-MTIME: 1527829361.000000\n"
#: 01000000.xhp
msgctxt ""
@@ -83,6 +83,22 @@ msgstr ""
#: 01000000.xhp
msgctxt ""
"01000000.xhp\n"
+"hd_id551527692881035\n"
+"help.text"
+msgid "Help"
+msgstr ""
+
+#: 01000000.xhp
+msgctxt ""
+"01000000.xhp\n"
+"par_id831527692885723\n"
+"help.text"
+msgid "Opens the help contents for the Options page displayed."
+msgstr ""
+
+#: 01000000.xhp
+msgctxt ""
+"01000000.xhp\n"
"hd_id3159149\n"
"help.text"
msgid "<link href=\"text/shared/optionen/01010000.xhp\" name=\"$[officename]\">%PRODUCTNAME</link>"
@@ -1374,7 +1390,7 @@ msgctxt ""
"bm_id7986388\n"
"help.text"
msgid "<bookmark_value>writing aids options</bookmark_value><bookmark_value>custom dictionaries; editing</bookmark_value><bookmark_value>user-defined dictionaries; editing</bookmark_value><bookmark_value>dictionaries; editing user-defined</bookmark_value><bookmark_value>exceptions; user-defined dictionaries</bookmark_value><bookmark_value>user-defined dictionaries; dictionary of exceptions</bookmark_value><bookmark_value>spellcheck; dictionary of exceptions</bookmark_value><bookmark_value>ignore list for spellcheck</bookmark_value><bookmark_value>spellcheck; ignore list</bookmark_value><bookmark_value>hyphenation; minimal number of characters</bookmark_value>"
-msgstr "<bookmark_value>सहायता लेखाइ; विकल्प</bookmark_value><bookmark_value>अनुकूल शव्दकोषहरू; सम्पादन</bookmark_value><bookmark_value>प्रयोगकर्ता-परिभाषित शव्दकोषहरू; सम्पादन</bookmark_value><bookmark_value>शव्दकोशहरू; प्रयोगकर्ता-परिभाषित सम्पादन</bookmark_value><bookmark_value>अपवादहरू; प्रयोगकर्ता-परिभाषित शव्दकोषहरू</bookmark_value><bookmark_value> प्रयोगकर्ता-परिभाषितत शव्दकोषहरू; अपवादहरूको शव्दकोष</bookmark_value><bookmark_value>हिज्जेपरिक्षण; अपवादहरूको शव्दकोष</bookmark_value><bookmark_value>हिज्जेपरिक्षणका लागि सूची उेपक्षा</bookmark_value><bookmark_value>हिज्जेपरिक्षण सूची उपेक्षा</bookmark_value> <bookmark_value>हिज्जेपरिक्षण; जर्मन</bookmark_value><bookmark_value>हाइफनेसन;क्यारेक्टरहरूको न्यूनतम सङ्ख्या </bookmark_value><bookmark_value>पुरानो जर्मन हिज्जेपरिक्षण</bookmark_value> <bookmark_value>नयाँ जर्मन हिज्जेपरिक्षण</bookmark_value>"
+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>"
#: 01010400.xhp
msgctxt ""
@@ -4542,7 +4558,7 @@ msgctxt ""
"bm_id2322153\n"
"help.text"
msgid "<bookmark_value>macros;selecting security warnings</bookmark_value><bookmark_value>security;options for documents with macros</bookmark_value><bookmark_value>macros;security</bookmark_value>"
-msgstr "<bookmark_value>म्याक्रोहरू;चेतावनी संवादहरू</bookmark_value><bookmark_value>सुरक्षा;म्याक्रोहरू सहितको कागजातहरूको लागि विकल्प</bookmark_value><bookmark_value>बचत;पूर्वनिर्धारित अनुसार पासवर्ड सहित</bookmark_value><bookmark_value>प्रयोगकर्ता डेटा;बचत गर्दा हटाउँदा</bookmark_value><bookmark_value>हालको कागजातको लागि फाइल साझेदारी विकल्प</bookmark_value><bookmark_value>म्याक्रोहरू;सुरक्षा</bookmark_value><bookmark_value>पढ्ने-मात्र कागजातहरू;कागजातहरू खोल्दा</bookmark_value>"
+msgstr "<bookmark_value>म्याक्रोहरू; सुरक्षा चेतावनीहरू चयन गर्नुहोस्</bookmark_value><bookmark_value>सुरक्षा; म्याक्रोसँग कागजातहरूका लागि विकल्पहरू</bookmark_value><bookmark_value>म्याक्रो; सुरक्षा</bookmark_value>"
#: 01030300.xhp
msgctxt ""
@@ -4558,15 +4574,15 @@ msgctxt ""
"par_id3153255\n"
"help.text"
msgid "<ahelp hid=\".\">Defines the security options for saving documents, for web connections, and for opening documents that contain macros.</ahelp>"
-msgstr "<ahelp hid=\"SVX_TABPAGE_RID_SVXPAGE_INET_SCRIPTING\">म्याक्रोहरू समावेश कागजातहरू बचत गर्नलाई र कागजातहरू खोल्नलाई सुरक्षा विकल्प परिभाषित गर्दछ।</ahelp>"
+msgstr "<ahelp hid=\".\"> यसले म्याक्रोको डकुमेन्टहरु, वेब जडानहरूको लागि, र यसमा हुने समावेश गर्ने डकुमेन्टहरु खोल्नका लागि सुरक्षा विकल्पहरू परिभाषित गर्दछ।</ahelp>"
#: 01030300.xhp
msgctxt ""
"01030300.xhp\n"
"par_idN10640\n"
"help.text"
-msgid "Options"
-msgstr "विकल्प"
+msgid "Security Options and Warnings"
+msgstr ""
#: 01030300.xhp
msgctxt ""
@@ -4597,7 +4613,7 @@ msgctxt ""
"01030300.xhp\n"
"hd_id3168736\n"
"help.text"
-msgid "Persistently save passwords protected by a master password"
+msgid "Persistently save passwords for web connections"
msgstr ""
#: 01030300.xhp
@@ -4613,6 +4629,22 @@ msgctxt ""
"01030300.xhp\n"
"hd_id3901791\n"
"help.text"
+msgid "Protected by a master password (recommended)"
+msgstr ""
+
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"par_id31527711486980\n"
+"help.text"
+msgid "Check to enable all connections' passwords to be protected by a master password."
+msgstr ""
+
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"hd_id141527711343312\n"
+"help.text"
msgid "Master Password"
msgstr ""
@@ -4806,7 +4838,7 @@ msgctxt ""
"bm_id3155132\n"
"help.text"
msgid "<bookmark_value>$[officename] Basic scripts in HTML documents</bookmark_value><bookmark_value>HTML;compatibility settings</bookmark_value>"
-msgstr "<bookmark_value>HTML कागजातहरूमा $[officename] आधारभूत स्क्रिप्ट</bookmark_value>"
+msgstr "<bookmark_value>$[officename] HTMLडकुमेन्टमा आधारभूत लिपिहरू</bookmark_value><bookmark_value>HTML;अनुकूलता सेटिङहरू</bookmark_value>"
#: 01030500.xhp
msgctxt ""
@@ -5062,7 +5094,7 @@ msgctxt ""
"par_id3147304\n"
"help.text"
msgid "Specifies the settings for the basic Asian fonts if Asian language support has been activated under <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - Language Settings - Languages.</emph>"
-msgstr "यदि एसियाली भाषा,समर्थन <emph>उपकरणहरू - विकल्प - भाषा सेटिङहरू - भाषाहरू अन्तर्गत सक्रिय पारिएमा सेटिङहरू वर्णन गर्दछ।</emph>"
+msgstr "यदि एसियाली भाषा समर्थन सक्रिय गरिएको छ भने आधारभूत एसियाली फन्टहरूको सेटिङहरू निर्दिष्ट गर्दछ<switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - प्राथमिकताहरू</emph></caseinline><defaultinline><emph>उपकरणहरू - विकल्पहरू</emph></defaultinline></switchinline><emph> - भाषा सेटिङहरू - भाषाहरू।</emph>"
#: 01040000.xhp
msgctxt ""
@@ -5382,7 +5414,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>फन्टहरू;पूर्वनिर्धारित सेटिङहरू</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>"
+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>"
#: 01040300.xhp
msgctxt ""
@@ -5558,7 +5590,7 @@ msgctxt ""
"bm_id3156156\n"
"help.text"
msgid "<bookmark_value>pictures; printing</bookmark_value><bookmark_value>tables in text; printing</bookmark_value><bookmark_value>drawings; printing in text documents </bookmark_value><bookmark_value>controls; printing</bookmark_value><bookmark_value>backgrounds; printing</bookmark_value><bookmark_value>printing; elements in text documents</bookmark_value><bookmark_value>text documents; print settings</bookmark_value><bookmark_value>printing; text always in black</bookmark_value><bookmark_value>black printing in Calc</bookmark_value><bookmark_value>printing; left/right pages</bookmark_value><bookmark_value>even/odd pages;printing</bookmark_value><bookmark_value>printing; text in reverse order</bookmark_value><bookmark_value>reversing printing order</bookmark_value><bookmark_value>brochures; printing several</bookmark_value><bookmark_value>printing; brochures</bookmark_value><bookmark_value>comments; printing in text</bookmark_value><bookmark_value>printing; creating individual jobs</bookmark_value><bookmark_value>faxes;selecting a fax machine</bookmark_value>"
-msgstr "<bookmark_value>तस्वीरहरू; मुद्रण</bookmark_value><bookmark_value>पाठमा तालिकाहरू; मुद्रण</bookmark_value><bookmark_value>रेखाचित्रहरू; पाठ कागजातहरूमा मुद्रण</bookmark_value><bookmark_value>नियन्त्रणहरू; मुद्रण</bookmark_value><bookmark_value>पृष्ठभूमिहरू; मुद्रण</bookmark_value><bookmark_value>पाठ कागजातहरूमा तत्वहरू; मुद्रण</bookmark_value><bookmark_value>पाठ; मुद्रण सेटिङहरू</bookmark_value><bookmark_value>पाठहरू सधै कालोमा; मुद्रण</bookmark_value><bookmark_value>कालो मुद्रण</bookmark_value><bookmark_value>बायाँ/दायाँ पृष्ठहरू; मुद्रण</bookmark_value><bookmark_value>जोर/बिजोर पृष्ठहरू; मुद्रण</bookmark_value><bookmark_value>जोर/बिजोर पृष्ठहरू;मुद्रण</bookmark_value><bookmark_value>उल्टा क्रममा पाठ; मुद्रण</bookmark_value><bookmark_value>मुद्रण क्रम; उल्टा गर्दा</bookmark_value><bookmark_value> विवरणिका; विभिन्न मुद्रण</bookmark_value><bookmark_value>विवरणिकाहरू; मुद्रण</bookmark_value><bookmark_value>द्रष्टब्यहरू; पाठमा मुद्रण</bookmark_value><bookmark_value>मुद्रण; व्यक्तिगत कार्यहरू सिर्जना गर्दा</bookmark_value><bookmark_value>फ्याक्स मेसिन चयन</bookmark_value>"
+msgstr "<bookmark_value>तस्वीरहरू;मुद्रण</bookmark_value><bookmark_value>पाठमा तालिकाहरू; मुद्रण</bookmark_value><bookmark_value>रेखाचित्रहरू; पाठ कागजातहरूमा मुद्रण</bookmark_value><bookmark_value>नियन्त्रणहरू; मुद्रण</bookmark_value><bookmark_value>पृष्ठभूमिहरू; मुद्रण</bookmark_value><bookmark_value>पाठ कागजातहरूमा तत्वहरू; मुद्रण</bookmark_value><bookmark_value>पाठ; मुद्रण सेटिङहरू</bookmark_value><bookmark_value>पाठहरू सधै कालोमा; मुद्रण</bookmark_value><bookmark_value>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>"
#: 01040400.xhp
msgctxt ""
@@ -7838,7 +7870,7 @@ msgctxt ""
"par_id3150791\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"IMPRESS\"><variable id=\"rastertext\">It is also possible to toggle the visibility of the grid with the <emph>Grid - Display Grid</emph> command in the context menu of the page. You can also select the <emph>Grid - Grid to Front</emph> submenu of this context menu to display the grid in front of objects.</variable></caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"DRAW\"><variable id=\"rastertextdraw\">पृष्ठका लागि प्रसंग मेनुमा <emph>ग्रिड - दृश्यात्मक ग्रिड </emph> संग ग्रिडको दृश्यता स्विच गर्न सम्भव छ । तपाईंले वस्तुहरूको अगाडि ग्रिड प्रदर्शन गर्नलाई यो प्रसंग मेनुको <emph>ग्रिड - अगाडि ग्रिड गर्नुहोस </emph> सहायक मेनु पनि चयन गर्न सक्नुहुन्छ। </variable></caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"IMPRESS\"><variable id=\"rastertext\">पृष्ठका लागि प्रसंग मेनुमा <emph>ग्रिड - दृश्यात्मक ग्रिड </emph> संग ग्रिडको दृश्यता स्विच गर्न सम्भव छ । तपाईंले वस्तुहरूको अगाडि ग्रिड प्रदर्शन गर्नलाई यो प्रसंग मेनुको <emph>ग्रिड - अगाडि ग्रिड गर्नुहोस </emph> सहायक मेनु पनि चयन गर्न सक्नुहुन्छ। </variable></caseinline></switchinline>"
#: 01050100.xhp
msgctxt ""
@@ -8942,7 +8974,7 @@ msgctxt ""
"par_id3147576\n"
"help.text"
msgid "<ahelp hid=\".\">Defines the calculation settings for spreadsheets.</ahelp> Defines the behavior of spreadsheets with iterative references, the date settings, the number of decimal places, and if capitalization or lower cases are to be considered when searching within sheets."
-msgstr "<ahelp hid=\"HID_SCPAGE_CALC\"> स्प्रेडसिटहरूका लागि गणना सेटिङहरू परिभाषित गर्दछ।पुनरावृत्तिक सन्दर्भहरू,मिति सेटिङहरू, दशमलव स्थानहरूको सङ्ख्या सँग स्प्रेडसिटको ब्यवहारपरिभाषित गर्दछ, र यदि पानाहरू भित्र खोजी कार्य गरिरहेको बेलामा यदि ठूलो बर्ण वा सानो बर्ण विचार गर्नु परेमा।</ahelp>"
+msgstr "<ahelp hid=\".\">स्प्रिडशिटहरूका लागि गणना सेटिङ परिभाषित गर्दछ।</ahelp>स्प्रिेडसिटको व्यवहारलाई अवधारणात्मक सन्दर्भहरू, मिति सेटिङहरू, दशमलव स्थानहरूको संख्या, र पानाहरू भित्र खोजी गर्दा पूंजीकरण वा कम घटनाहरू विचार गरिनुपर्दछ।"
#: 01060500.xhp
msgctxt ""
@@ -9254,7 +9286,7 @@ msgctxt ""
"par_id3150644\n"
"help.text"
msgid "<ahelp hid=\"modules/scalc/ui/optcalculatepage/calc\">Specifies whether to make calculations using the rounded values displayed in the sheet. Charts will be shown with the displayed values. If the <emph>Precision as shown</emph> option is not marked, the displayed numbers are rounded, but they are calculated internally using the non-rounded number.</ahelp>"
-msgstr "<ahelp hid=\"modules/scalc/ui/optcalculatepage/calc\">पानामा प्रदर्शित परिक्रमित मानहरू प्रयोग गरेर गणन गर्ने कि भन्ने कुरा वर्णन गर्दछ।</ahelp>चित्रपटहरू प्रदर्शित मानहरू सँग देखाइनेछन। यदि <emph>देखाईए जस्तै निश्चितता</emph> विकल्प चिनो नगरिएमा, प्रदर्शित सङ्ख्याहरू परिक्रमित हुन्छन, तर तिनीहरू अ-परिक्रमित सङ्ख्या प्रयोग गरेरे आन्तरिक तरीकाले गणना गरिन्छन।"
+msgstr "<ahelp hid=\"modules/scalc/ui/optcalculatepage/calc\">पानामा प्रदर्शित परिक्रमित मानहरू प्रयोग गरेर गणन गर्ने कि भन्ने कुरा वर्णन गर्दछ।चित्रपटहरू प्रदर्शित मानहरू सँग देखाइनेछन। यदि <emph>देखाईए जस्तै निश्चितता</emph> विकल्प चिनो नगरिएमा, प्रदर्शित सङ्ख्याहरू परिक्रमित हुन्छन, तर तिनीहरू अ-परिक्रमित सङ्ख्या प्रयोग गरेरे आन्तरिक तरीकाले गणना गरिन्छन।</ahelp>"
#: 01060500.xhp
msgctxt ""
@@ -10286,7 +10318,7 @@ msgctxt ""
"bm_id3147008\n"
"help.text"
msgid "<bookmark_value>rulers; visible in presentations</bookmark_value><bookmark_value>moving; using guide lines in presentations</bookmark_value><bookmark_value>guides; displaying when moving objects (Impress)</bookmark_value><bookmark_value>control point display in presentations</bookmark_value><bookmark_value>Bézier curves; control points in presentations</bookmark_value>"
-msgstr "<bookmark_value>छविहरू; प्रस्तुतीकरणहरूमा प्लेसहोल्डरहरू</bookmark_value><bookmark_value>वस्तुहरू; प्रस्तुतीकरणहरूमा रूपरेखाहरू</bookmark_value><bookmark_value>पाठ; प्रस्तुतीकरणहरूमा प्लेसहोल्डरहरू</bookmark_value><bookmark_value>लाइन रूपरेखा</bookmark_value><bookmark_value>रुलरहरू; प्रस्तुतीकरणहरूमा दृश्यात्मक</bookmark_value><bookmark_value>सार्दा; प्रस्तुतीकरणहरूमा मार्गगर्शनहरू प्रयोग गर्दा</bookmark_value><bookmark_value>मार्गदर्शन गर्दछ; प्रस्तुतीकरणहरूमा हिडिरहेको बेलामा</bookmark_value><bookmark_value>नियन्त्रण बिन्दुहरू; प्रस्तुतीकरणहरूमा प्रदर्शन</bookmark_value><bookmark_value>बेजिर वक्र; प्रस्तुतीकरणहरूमा नियन्त्रणहरू</bookmark_value>"
+msgstr "<bookmark_value>शासकहरू; प्रस्तुतीकरणमा देखिन्छन्</bookmark_value><bookmark_value>हिँड्नु; प्रस्तुतीकरणमा गाइड लाइनहरू प्रयोग गर्दै</bookmark_value><bookmark_value>गाइड; वस्तुहरू सार्दा प्रदर्शन गर्दै (इमेज)</bookmark_value><bookmark_value>प्रस्तुतिहरूमा नियन्त्रण बिन्दु प्रदर्शन</bookmark_value><bookmark_value>Bézier वक्र; प्रस्तुतिहरूमा पोइन्ट नियन्त्रण गर्नुहोस्</bookmark_value>"
#: 01070100.xhp
msgctxt ""
@@ -10406,7 +10438,7 @@ msgctxt ""
"bm_id3163802\n"
"help.text"
msgid "<bookmark_value>snapping in presentations and drawings</bookmark_value> <bookmark_value>points;reducing editing points when snapping (Impress/Draw)</bookmark_value>"
-msgstr "<bookmark_value>प्रस्तुतीकरणहरूमा स्न्याप गर्दा</bookmark_value><bookmark_value>प्रस्तुतीकरणहरूमा स्न्याप दायारा</bookmark_value><bookmark_value>प्रस्तुतीकरणहरूमा स्न्याप गरेको बेलामा बिन्दु धटाउ</bookmark_value><bookmark_value>प्रस्तुतीकरणहरूमा स्न्याप अवस्थाहरू</bookmark_value>"
+msgstr "<bookmark_value>स्न्यापिंग मा प्रस्तुतीकरण र चित्र </bookmark_value> <bookmark_value>अंक;सम्पादित बिन्दुहरूलाई कम गर्दा snapping (इम्प्रेस / ड्रा)</bookmark_value>"
#: 01070300.xhp
msgctxt ""
@@ -13733,7 +13765,7 @@ msgctxt ""
"java.xhp\n"
"hd_id3148618\n"
"help.text"
-msgid "Optional (unstable) options"
+msgid "Optional Features"
msgstr ""
#: java.xhp
@@ -13749,7 +13781,7 @@ msgctxt ""
"java.xhp\n"
"par_id3156344\n"
"help.text"
-msgid "It enables features that are not yet complete or contain known bugs. The list of these features is different version by version, or even it can be empty."
+msgid "Enables features that are not yet complete or may contain known bugs. The list of these features is different version by version, or even it can be empty."
msgstr ""
#: java.xhp
@@ -13765,7 +13797,7 @@ msgctxt ""
"java.xhp\n"
"par_id3156345\n"
"help.text"
-msgid "It enables macro recording, so the <link href=\"text/shared/guide/macro_recording.xhp\" name=\"Tools - Macros - Record Macro\"><item type=\"menuitem\">Tools - Macros - Record Macro</item></link> menu item will be available."
+msgid "Enables macro recording. The <link href=\"text/shared/guide/macro_recording.xhp\" name=\"Tools - Macros - Record Macro\"><item type=\"menuitem\">Tools - Macros - Record Macro</item></link> menu item is available."
msgstr ""
#: java.xhp
diff --git a/source/ne/helpcontent2/source/text/simpress/00.po b/source/ne/helpcontent2/source/text/simpress/00.po
index d575643ed33..fc86e4ac20b 100644
--- a/source/ne/helpcontent2/source/text/simpress/00.po
+++ b/source/ne/helpcontent2/source/text/simpress/00.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: 2018-04-17 15:54+0200\n"
-"PO-Revision-Date: 2018-04-08 17:45+0000\n"
-"Last-Translator: Saroj Dhakal <lotusnagarkot@gmail.com>\n"
+"PO-Revision-Date: 2018-05-28 05:27+0000\n"
+"Last-Translator: सन्जोग सिग्देल <sigdelsanjog@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ne\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1523209521.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1527485239.000000\n"
#: 00000004.xhp
msgctxt ""
@@ -638,7 +638,7 @@ msgctxt ""
"par_id3153935\n"
"help.text"
msgid "<variable id=\"feldbf5\">Choose <emph>Insert - Field - Page Number</emph></variable>"
-msgstr "<variable id=\"feldbf7\"><emph>घुसाउनुहोस् - फाँटहरू - फाइल नाम</emph></variable>रोज्नुहोस्"
+msgstr "<variable id=\"feldbf5\"><emph>घुसाउनुहोस् - फाँटहरू - लेखक</emph></variable>रोज्नुहोस्"
#: 00000404.xhp
msgctxt ""
diff --git a/source/ne/helpcontent2/source/text/simpress/01.po b/source/ne/helpcontent2/source/text/simpress/01.po
index 05cfcbe8553..7d34387bde5 100644
--- a/source/ne/helpcontent2/source/text/simpress/01.po
+++ b/source/ne/helpcontent2/source/text/simpress/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: 2018-05-08 15:10+0200\n"
-"PO-Revision-Date: 2018-05-14 15:14+0000\n"
-"Last-Translator: निराजन पन्त <nirajan_pant@yahoo.com>\n"
+"PO-Revision-Date: 2018-05-24 12:28+0000\n"
+"Last-Translator: सन्जोग सिग्देल <sigdelsanjog@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ne\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1526310855.000000\n"
+"X-POOTLE-MTIME: 1527164906.000000\n"
#: 01170000.xhp
msgctxt ""
@@ -182,7 +182,7 @@ msgctxt ""
"par_id3150299\n"
"help.text"
msgid "Select a paper format supported by your printer. You can also create a custom page size by selecting <emph>User </emph>and entering the size dimensions in the <emph>Width</emph> and <emph>Height</emph> boxes."
-msgstr "तपाईँको मुद्रकद्वारा समर्थित कागज ढाँचा चयन गर्नुहोस् । तपाईँ अनुकूल<emph> </emph>पृष्ठ साइज चयन गरेर <emph>प्रयोगकर्ता </emph>र साइज आयाम प्रविष्ट गर्दा <emph>चौडाइ</emph> र <emph>उचाइ</emph> बाकसहरू अनुकूलन पनि सिर्जना गर्न सक्नुहुन्छ ।"
+msgstr "तपाईँको मुद्रकद्वारा समर्थित कागज ढाँचा चयन गर्नुहोस्। तपाईँ अनुकूल पृष्ठ साइज चयन गरेर <emph>प्रयोगकर्ता </emph>र साइज आयाम प्रविष्ट गर्दा <emph>चौडाइ</emph> र <emph>उचाइ</emph> बाकसहरू अनुकूलन पनि सिर्जना गर्न सक्नुहुन्छ।"
#: 01180001.xhp
msgctxt ""
@@ -3406,7 +3406,7 @@ msgctxt ""
"par_id3154643\n"
"help.text"
msgid "<variable id=\"tabelletext\"><ahelp hid=\".\">Specifies the properties of the selected table, for example, fonts, font effects, borders, and background.</ahelp></variable>"
-msgstr "<variable id=\"tabelletext\"><ahelp hid=\".uno:TableDialog\">चयन तालिकाको गुणहरू निश्चित गर्नुहोस्, उदाहरणका लागि, नाम, पङ्क्तिबद्व, स्पेसिङ, स्तम्भ चौडाइ, किनाराहरू, र पृष्ठभूमि.</ahelp></variable>"
+msgstr "<variable id=\"tabelletext\"><ahelp hid=\".\">चयन तालिकाको गुणहरू निश्चित गर्नुहोस्, उदाहरणका लागि, नाम, पङ्क्तिबद्व, स्पेसिङ, स्तम्भ चौडाइ, किनाराहरू, र पृष्ठभूमि</ahelp></variable>"
#: 05090000m.xhp
msgctxt ""
@@ -3662,7 +3662,7 @@ msgctxt ""
"hd_id3149502\n"
"help.text"
msgid "<link href=\"text/simpress/01/05110500m.xhp\" name=\"Delete\">Delete</link>"
-msgstr "<link href=\"text/simpress/01/04010000.xhp\" name=\"Slide\">स्लाईड</link>"
+msgstr "<link href=\"text/simpress/01/05110500m.xhp\" name=\"Delete\">स्लाईड मेट्नुहोस्</link>"
#: 05110500m.xhp
msgctxt ""
@@ -3886,7 +3886,7 @@ msgctxt ""
"hd_id3145801\n"
"help.text"
msgid "<link href=\"text/simpress/01/05120500m.xhp\" name=\"Delete\">Delete</link>"
-msgstr "<link href=\"text/simpress/01/13180100.xhp\" name=\"Merge\">गाभ्नुहोस्</link>"
+msgstr "<link href=\"text/simpress/01/05120500m.xhp\" name=\"Delete\">स्लाईड मेट्नुहोस्</link>"
#: 05120500m.xhp
msgctxt ""
@@ -3942,7 +3942,7 @@ msgctxt ""
"bm_id3154754\n"
"help.text"
msgid "<bookmark_value>changing; slide layouts</bookmark_value><bookmark_value>slide layouts</bookmark_value>"
-msgstr "<bookmark_value>परिमार्जन; स्लाईड सजावटहरू</bookmark_value><bookmark_value>स्लाईड सजावटहरू</bookmark_value><bookmark_value>स्वतसजावट आदेश</bookmark_value>"
+msgstr "<bookmark_value>परिमार्जन; स्लाईड सजावटहरू</bookmark_value><bookmark_value>स्लाईड सजावटहरू</bookmark_value>"
#: 05130000.xhp
msgctxt ""
@@ -4782,7 +4782,7 @@ msgctxt ""
"bm_id3153142\n"
"help.text"
msgid "<bookmark_value>slide transitions; manual</bookmark_value><bookmark_value>slide transitions; sounds</bookmark_value><bookmark_value>sounds; on slide transitions</bookmark_value>"
-msgstr "<bookmark_value>स्लाईड कारोवारहरू;स्वचालित</bookmark_value><bookmark_value>स्वचालित स्लाईड कारोवार</bookmark_value><bookmark_value>स्लाईड कारोवारहरू; म्यानुअल</bookmark_value><bookmark_value>स्लाईड कारोवारहरू; ध्वनिहरू</bookmark_value><bookmark_value>ध्वनिहरू; स्लाईड कारोवारहरूमा</bookmark_value>"
+msgstr "<bookmark_value>स्लाईड कारोवारहरू;स्वचालित</bookmark_value><bookmark_value>स्लाईड कारोवारहरू; ध्वनिहरू</bookmark_value><bookmark_value>ध्वनिहरू; स्लाईड कारोवारहरूमा</bookmark_value>"
#: 06040000.xhp
msgctxt ""
@@ -5462,7 +5462,7 @@ msgctxt ""
"bm_id3148837\n"
"help.text"
msgid "<bookmark_value>sounds; for effects</bookmark_value><bookmark_value>effects; sounds</bookmark_value><bookmark_value>sounds; formats</bookmark_value><bookmark_value>presentations; ordering of effects</bookmark_value><bookmark_value>lists;animations</bookmark_value><bookmark_value>animations;list of</bookmark_value>"
-msgstr "<bookmark_value>ध्वनिहरू; प्रभावहरूका लागि</bookmark_value><bookmark_value>प्रभावहरू; ध्वनिहरू</bookmark_value><bookmark_value>ध्वनिहरू; ढाँचाहरू</bookmark_value><bookmark_value>प्रस्तुतिहरू; प्रभावहरूको अर्डर गर्दा</bookmark_value>"
+msgstr "<bookmark_value>ध्वनिहरू; प्रभावहरूका लागि</bookmark_value><bookmark_value>प्रभावहरू; ध्वनिहरू</bookmark_value><bookmark_value>ध्वनिहरू; ढाँचाहरू</bookmark_value><bookmark_value>प्रस्तुतिहरू; प्रभावहरूको अर्डर गर्दा</bookmark_value><bookmark_value>सूचीहरू; एनिमेसनहरू</bookmark_value><bookmark_value>एनिमेसनहरुको; सूची</bookmark_value>"
#: 06060000.xhp
msgctxt ""
@@ -6686,7 +6686,7 @@ msgctxt ""
"par_id3149947\n"
"help.text"
msgid "<ahelp hid=\"modules/simpress/ui/customslideshows/usecustomshows\">Runs the custom slide show you selected when you click <emph>Start</emph>. Otherwise, the entire presentation is shown.</ahelp>"
-msgstr "<ahelp visibility=\"visible\" hid=\"modules/simpress/ui/customslideshows/usecustomshows\">अनुकूल स्लाईड दृश्य चालु गर्नुहोस् तपाईँले चयन गर्नुभएको जब तपाईँ क्लिक गर्नुहुन्छ <emph>सुरु</emph> हैन भने, सम्पूर्ण प्रस्तुति देखाइन्छ</ahelp>"
+msgstr "<ahelp hid=\"modules/simpress/ui/customslideshows/usecustomshows\">अनुकूल स्लाईड दृश्य चालु गर्नुहोस् तपाईँले चयन गर्नुभएको जब तपाईँ क्लिक गर्नुहुन्छ <emph>सुरु</emph> हैन भने, सम्पूर्ण प्रस्तुति देखाइन्छ</ahelp>"
#: 06100000.xhp
msgctxt ""
@@ -6734,7 +6734,7 @@ msgctxt ""
"par_id3150431\n"
"help.text"
msgid "<ahelp hid=\"modules/simpress/ui/customslideshows/edit\"><link href=\"text/simpress/01/06100100.xhp\" name=\"Add, remove or reorder\">Add, remove or reorder</link> slides as well as change the name of the selected custom slide show.</ahelp>"
-msgstr "<ahelp visibility=\"visible\" hid=\"modules/simpress/ui/customslideshows/edit\"><link href=\"text/simpress/01/06100100.xhp\" name=\"Add, remove or reorder\">थप गर्नुहोस्, हटाउनुहोस् वा फरि अर्डर गर्नुहोस्</link> स्लाईडहरू र चयन अनुकूल स्लाईड दृश्यको नाम परिवर्तन गर्नुहोस्</ahelp>"
+msgstr "<ahelp hid=\"modules/simpress/ui/customslideshows/edit\"><link href=\"text/simpress/01/06100100.xhp\" name=\"Add, remove or reorder\">थप गर्नुहोस्, हटाउनुहोस् वा फरि अर्डर गर्नुहोस्</link> स्लाईडहरू र चयन अनुकूल स्लाईड दृश्यको नाम परिवर्तन गर्नुहोस्</ahelp>"
#: 06100000.xhp
msgctxt ""
@@ -6750,7 +6750,7 @@ msgctxt ""
"par_id3145236\n"
"help.text"
msgid "<ahelp hid=\"modules/simpress/ui/customslideshows/copy\">Creates a copy of the selected custom slide show. You can modify the name of the show by clicking <emph>Edit</emph>.</ahelp>"
-msgstr "<ahelp visibility=\"visible\" hid=\"modules/simpress/ui/customslideshows/copy\">चयन अनुकूल स्लाईड दृश्यको प्रतिलिपि निर्माण गर्नुहोस् । तपाईँ दृश्यको नाम परिमार्जन गर्न सक्नुहुन्छ क्लिक गरेर <emph>सम्पादन</emph>.</ahelp>"
+msgstr "<ahelp hid=\"modules/simpress/ui/customslideshows/copy\">चयन अनुकूल स्लाईड दृश्यको प्रतिलिपि निर्माण गर्नुहोस् । तपाईँ दृश्यको नाम परिमार्जन गर्न सक्नुहुन्छ क्लिक गरेर <emph>सम्पादन</emph></ahelp>"
#: 06100000.xhp
msgctxt ""
@@ -6766,7 +6766,7 @@ msgctxt ""
"par_id3157907\n"
"help.text"
msgid "<ahelp hid=\"modules/simpress/ui/customslideshows/startshow\">Runs the slide show. Ensure that <emph>Use Custom Slide Show</emph> is selected if you want to run a custom presentation.</ahelp>"
-msgstr "<ahelp visibility=\"visible\" hid=\"modules/simpress/ui/customslideshows/startshow\">स्लाईड दृश्य चालु गर्नुहोस् । निश्चित गर्नुहोस् <emph>अनुकूल स्लाईड दृश्य</emph> चयन गरियो यदि तपाईँ अनुकूल प्रस्तुति चालु गर्न चाहनुहुन्छ भन्नुहोस्</ahelp>"
+msgstr "<ahelp hid=\"modules/simpress/ui/customslideshows/startshow\">स्लाईड दृश्य चालु गर्नुहोस्। निश्चित गर्नुहोस् <emph>अनुकूल स्लाईड दृश्य</emph> चयन गरियो यदि तपाईँ अनुकूल प्रस्तुति चालु गर्न चाहनुहुन्छ भन्नुहोस्।</ahelp>"
#: 06100100.xhp
msgctxt ""
@@ -7614,7 +7614,7 @@ msgctxt ""
"par_idN105BB\n"
"help.text"
msgid "Assign an effect to an object, then click the <emph>Options</emph> button to open the Effect Options dialog."
-msgstr "वस्तुमा प्रभाव प्रदान गर्नुहोस्, त्यसपछि प्रभाव विकल्प क्लिक गर्नुहोस् (यसले तीन विकल्प प्रदर्शन गर्दछ: ...) प्रभाव विकल्प संवाद खोल्नका लागि ।"
+msgstr "वस्तुमा प्रभाव प्रदान गर्नुहोस्, त्यसपछि <emph>विकल्प</emph> क्लिक गर्नुहोस् प्रभाव विकल्प संवाद खोल्नका लागि।"
#: effectoptions.xhp
msgctxt ""
diff --git a/source/ne/helpcontent2/source/text/simpress/02.po b/source/ne/helpcontent2/source/text/simpress/02.po
index 3ad27bce30e..3ba93a9582b 100644
--- a/source/ne/helpcontent2/source/text/simpress/02.po
+++ b/source/ne/helpcontent2/source/text/simpress/02.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: 2017-10-04 11:48+0200\n"
-"PO-Revision-Date: 2018-05-07 10:02+0000\n"
-"Last-Translator: ronisha.shigdel <ronishashigdel@gmail.com>\n"
+"PO-Revision-Date: 2018-06-01 05:04+0000\n"
+"Last-Translator: सन्जोग सिग्देल <sigdelsanjog@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ne\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1525687372.000000\n"
+"X-POOTLE-MTIME: 1527829470.000000\n"
#: 04010000.xhp
msgctxt ""
@@ -1014,7 +1014,7 @@ msgctxt ""
"bm_id3149948\n"
"help.text"
msgid "<bookmark_value>object bars; editing glue points</bookmark_value>"
-msgstr "<bookmark_value>वस्तु पट्टीहरू; ग्लु बिन्दुहरू सम्पादन गरिँदा</bookmark_value><bookmark_value>ग्लु बिन्दुहरू; सम्पादन गरिँदा</bookmark_value><bookmark_value>सम्पादन गरिँदा; ग्लु बिन्दुहरू</bookmark_value>"
+msgstr "<bookmark_value>वस्तु पट्टीहरू; ग्लु बिन्दुहरू सम्पादन गरिँदा</bookmark_value>"
#: 10030200.xhp
msgctxt ""
@@ -3798,7 +3798,7 @@ msgctxt ""
"par_id3145215\n"
"help.text"
msgid "<image id=\"img_id3145225\" src=\"cmd/sc_connectorcurvearrowend.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3145225\">Icon</alt></image>"
-msgstr "<image id=\"img_id3145225\" src=\"cmd/sc_connectorcurvearrowend.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3145225\">प्रतिमा</alt></image>"
+msgstr "<image id=\"img_id3145225\" src=\"cmd/sc_connectorcurvearrowend.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3145225\">प्रतिमा</alt></image>"
#: 10100000.xhp
msgctxt ""
@@ -3862,7 +3862,7 @@ msgctxt ""
"par_id3153291\n"
"help.text"
msgid "<image id=\"img_id3153301\" src=\"cmd/sc_connectorcurvecirclestart.png\" width=\"0.423cm\" height=\"0.423cm\"><alt id=\"alt_id3153301\">Icon</alt></image>"
-msgstr "<image id=\"img_id3153301\" src=\"cmd/sc_connectorcurvecirclestart.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153301\">प्रतिमा</alt></image>"
+msgstr "<image id=\"img_id3153301\" src=\"cmd/sc_connectorcurvecirclestart.png\" width=\"0.423cm\" height=\"0.423cm\"><alt id=\"alt_id3153301\">प्रतिमा</alt></image>"
#: 10100000.xhp
msgctxt ""
@@ -4030,7 +4030,7 @@ msgctxt ""
"hd_id3157904\n"
"help.text"
msgid "<link href=\"text/shared/guide/chart_insert.xhp\">Chart</link>"
-msgstr "<link href=\"text/shared/01/04160100.xhp\" name=\"Chart\">चार्ट</link>"
+msgstr "<link href=\"text/shared/guide/chart_insert.xhp\">चार्ट</link>"
#: 10110000.xhp
msgctxt ""
@@ -5046,7 +5046,7 @@ msgctxt ""
"par_id3151074\n"
"help.text"
msgid "<ahelp hid=\".uno:SolidCreate\">If this icon on the <emph>Options</emph> bar is activated, objects are shown with their attributes, but with 50% transparency, while you move or draw them.</ahelp> If this icon is not activated, only a contour is shown while drawing, and the object is shown with all attributes when you release the mouse button."
-msgstr "<ahelp hid=\".uno:SolidCreate\">यदि <emph>विकल्प</emph> पट्टीमा यो प्रतिमा सक्रिय पारिएमा, तपाईँले कोरेको बेलामा वस्तुहरू तिनीहरूको विशेषता सँग देखिन्छन् ।</ahelp> यदि यो प्रतिमा सक्रिय नपारिएमा, कोरेको बेलामा कोनटुर मात्र देखिन्छ, तपाईँले माउस बटन छोडेको बेलामा मात्र सबै विशेषता सँग वस्तु देखिन्छ ।"
+msgstr "<ahelp hid=\".uno:SolidCreate\">यदि <emph>विकल्प</emph> पट्टीमा यो प्रतिमा सक्रिय पारिएमा, तपाईँले कोरेको बेलामा वस्तुहरू तिनीहरूको विशेषता सँग देखिन्छन् ।</ahelp> यदि यो प्रतिमा सक्रिय नपारिएमा, कोरेको बेलामा कोनटुर मात्र देखिन्छ, तपाईँले माउस बटन छोडेको बेलामा मात्र सबै विशेषता सँग वस्तु देखिन्छ।"
#: 13090000.xhp
msgctxt ""
@@ -5054,7 +5054,7 @@ msgctxt ""
"par_id3154702\n"
"help.text"
msgid "<image id=\"img_id3155962\" src=\"cmd/sc_solidcreate.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3155962\">Icon</alt></image>"
-msgstr "<image id=\"img_id3155962\" src=\"cmd/sc_solidcreate.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3155962\">प्रतिमा</alt></image>"
+msgstr "<image id=\"img_id3155962\" src=\"cmd/sc_solidcreate.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3155962\">प्रतिमा</alt></image>"
#: 13090000.xhp
msgctxt ""
@@ -5118,7 +5118,7 @@ msgctxt ""
"hd_id3153726\n"
"help.text"
msgid "<link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\">Snap to Snap Lines</link>"
-msgstr "<link href=\"text/simpress/02/13050000.xhp\" name=\"Show Snap Lines\">स्न्याप पङ्क्तिहरू देखाउनुहोस्</link>"
+msgstr "<link href=\"text/simpress/02/13140000.xhp\" name=\"Snap to Snap Lines\">वस्तु विन्दुहरूमा सटाउनुहोस्</link>"
#: 13140000.xhp
msgctxt ""
@@ -5126,7 +5126,7 @@ msgctxt ""
"par_id3150717\n"
"help.text"
msgid "<image id=\"img_id3146969\" src=\"cmd/sc_helplinesuse.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3146969\">Icon</alt></image>"
-msgstr "<image id=\"img_id3155962\" src=\"cmd/sc_solidcreate.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3155962\">प्रतिमा</alt></image>"
+msgstr "<image id=\"img_id3146969\" src=\"cmd/sc_helplinesuse.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3146969\">प्रतिमा</alt></image>"
#: 13140000.xhp
msgctxt ""
diff --git a/source/ne/helpcontent2/source/text/simpress/guide.po b/source/ne/helpcontent2/source/text/simpress/guide.po
index 13824b116a3..729c012dd06 100644
--- a/source/ne/helpcontent2/source/text/simpress/guide.po
+++ b/source/ne/helpcontent2/source/text/simpress/guide.po
@@ -4,8 +4,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2018-05-16 16:54+0200\n"
-"PO-Revision-Date: 2018-05-14 15:15+0000\n"
-"Last-Translator: निराजन पन्त <nirajan_pant@yahoo.com>\n"
+"PO-Revision-Date: 2018-06-01 05:06+0000\n"
+"Last-Translator: सन्जोग सिग्देल <sigdelsanjog@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ne\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1526310941.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1527829618.000000\n"
#: 3d_create.xhp
msgctxt ""
@@ -30,7 +30,7 @@ msgctxt ""
"bm_id3150207\n"
"help.text"
msgid "<bookmark_value>3D rotation objects; generating</bookmark_value><bookmark_value>3D objects; generating</bookmark_value><bookmark_value>3D scenes; creating</bookmark_value><bookmark_value>converting; to curves, polygons, 3D</bookmark_value><bookmark_value>extrusion objects</bookmark_value>"
-msgstr "<bookmark_value>त्रि-आयामिक परिक्रम वस्तुहरू; उत्पन्न</bookmark_value><bookmark_value>त्रि-आयामिक वस्तुहरू; उत्पन्न</bookmark_value><bookmark_value>रूपान्तर गर्दा; बक्रहरूमा, बहुभुजहरू, त्रि-आयामिक</bookmark_value><bookmark_value>निष्कासन वस्तुहरू</bookmark_value>"
+msgstr "<bookmark_value>त्रि-आयामिक परिक्रम वस्तुहरू; उत्पन्न गर्दै</bookmark_value><bookmark_value>त्रि-आयामिक वस्तुहरू; उत्पन्न गर्दै</bookmark_value><bookmark_value>त्रि-आयामिक दृश्यहरू; सिर्जना गर्दै</bookmark_value><bookmark_value>रूपान्तर गर्दै; बक्र, बहुभुज, त्रि-आयामिकहरूमा</bookmark_value><bookmark_value>निष्कासन वस्तुहरू</bookmark_value>"
#: 3d_create.xhp
msgctxt ""
@@ -1614,7 +1614,7 @@ msgctxt ""
"bm_id3146121\n"
"help.text"
msgid "<bookmark_value>importing; presentations with HTML</bookmark_value><bookmark_value>presentations; importing HTML</bookmark_value><bookmark_value>HTML; importing into presentations</bookmark_value><bookmark_value>text documents;inserting in slides</bookmark_value><bookmark_value>inserting; text in presentations</bookmark_value>"
-msgstr "<bookmark_value>आयात गर्दा; HTML सँग प्रस्तुतिहरू</bookmark_value><bookmark_value>प्रस्तुतिहरू; HTML आयात गर्दा</bookmark_value><bookmark_value>HTML; प्रस्तुतिहरूमा आयात गर्दा</bookmark_value><bookmark_value>पाठ कागजातहरू;स्लाईडहरूमा घुसाउँदा</bookmark_value>"
+msgstr "<bookmark_value>आयात गर्दै; HTML सँग प्रस्तुतिहरू</bookmark_value><bookmark_value>प्रस्तुतिहरू; HTML आयात गर्दा</bookmark_value><bookmark_value>HTML; प्रस्तुतिहरूमा आयात गर्दा</bookmark_value><bookmark_value>पाठ कागजातहरू;स्लाईडहरूमा घुसाउँदा</bookmark_value><bookmark_value>आयात गर्दै ; पाठ प्रस्तुतीकरण</bookmark_value>"
#: html_import.xhp
msgctxt ""
@@ -3254,7 +3254,7 @@ msgctxt ""
"par_id3148868\n"
"help.text"
msgid "The <emph>Curve</emph> icon <image id=\"img_id3150205\" src=\"cmd/sc_linetoolbox.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150205\">Icon</alt></image> on the <emph>Drawing</emph> toolbar opens a toolbar to draw Bézier curves. Bézier curves are defined by a start point and an end point, which are called \"anchors\". The curvature of the Bézier curve is defined by control points (\"handles\"). Moving a control point changes the shape of the Bézier curve."
-msgstr "<emph>वक्ररेखा</emph> उपकरण <image id=\"img_id3150205\" src=\"cmd/sc_linetoolbox.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3150205\">प्रतिमा</alt></image> ले तपाईँलाई एक वा भन्दा बढी लाइन खण्डहरू समावेश गर्ने वक्ररेखा कोर्न दिन्छ । प्रत्येक बेजियर वक्र खण्ड दुई डेटा बिन्दुहरू (अन्त्यबिन्दुहरू) र एक वा बढी डेटा बिन्दुहरू (ह्यान्डलहरू) द्वारा परिभाषित गर्दछ जसले गर्दा तपाईँले वक्रको चाप समायोजन गर्न तान्न सक्नुहुन्छ । एउटा निन्त्रण बिन्दु नियन्त्रण लाइनद्वारा डेटा बिन्दुमा जडित हुन्छ । नियन्त्रण बिन्दु सार्दा वक्रलाई यसको अगाडि धकेल्दछ, र व्रकको आकार परिवर्तन गर्दछ ।"
+msgstr "<emph>वक्ररेखा</emph> प्रतिमा <image id=\"img_id3150205\" src=\"cmd/sc_linetoolbox.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150205\">प्रतिमा</alt></image> <emph>रेखाचित्रमा</emph> ले तपाईँलाई एक वा भन्दा बढी लाइन खण्डहरू समावेश गर्ने वक्ररेखा कोर्न दिन्छ। प्रत्येक बेजियर वक्र खण्ड दुई डेटा बिन्दुहरू (अन्त्यबिन्दुहरू) र एक वा बढी डेटा बिन्दुहरू (ह्यान्डलहरू) द्वारा परिभाषित गर्दछ जसले गर्दा तपाईँले वक्रको चाप समायोजन गर्न तान्न सक्नुहुन्छ। एउटा निन्त्रण बिन्दु नियन्त्रण लाइनद्वारा डेटा बिन्दुमा जडित हुन्छ। नियन्त्रण बिन्दु सार्दा वक्रलाई यसको अगाडि धकेल्दछ, र व्रकको आकार परिवर्तन गर्दछ।"
#: line_draw.xhp
msgctxt ""
@@ -3278,7 +3278,7 @@ msgctxt ""
"par_id3154766\n"
"help.text"
msgid "A <emph>symmetrical</emph> anchor point has the same line curvature on either side, and two control lines that move together as a straight line."
-msgstr "सिमेट्रिकल डेटा बिन्दु सँग उही पङ्क्ति छ बक्रपन पङ्क्तिहरू वा साइडमा, र दुई नियन्त्रण पङ्क्तिहरू जुन सिधा पङ्क्तिको रूपमा सँगै चल्दछ ।"
+msgstr "<emph>सिमेट्रिकल</emph> डेटा बिन्दु सँग उही पङ्क्ति छ बक्रपन पङ्क्तिहरू वा साइडमा, र दुई नियन्त्रण पङ्क्तिहरू जुन सिधा पङ्क्तिको रूपमा सँगै चल्दछ।"
#: line_draw.xhp
msgctxt ""
@@ -3286,7 +3286,7 @@ msgctxt ""
"par_id3149874\n"
"help.text"
msgid "A <emph>smooth</emph> anchor point may have different line curvatures on either side."
-msgstr "मुलायम डेटा बिन्दु सँग बिभिन्न पङ्ति बक्रपनाहरू वा साइडमा छन्, र दुई नियन्त्रण पङ्क्तिहरू जुन सिधा पङ्क्तिमा सँगै चल्दछ ।"
+msgstr "<emph>मुलायम</emph> डेटा बिन्दुसँग बिभिन्न पङ्ति बक्रपनाहरू वा साइडमा छन् र दुई नियन्त्रण पङ्क्तिहरू जुन सिधा पङ्क्तिमासँगै चल्दछ।"
#: line_draw.xhp
msgctxt ""
@@ -3294,7 +3294,7 @@ msgctxt ""
"par_id3150435\n"
"help.text"
msgid "A <emph>corner</emph> anchor point has one or two independent control lines. Changing one side has no effect on the other side."
-msgstr "कुनो डेटा बिन्दु सँग एक वा दुई नियन्त्रण पङ्क्तिहरू छन् र बिभिन्न पङ्क्ति बिभाजकहरू जोड्दछ ।"
+msgstr "<emph>कुनो</emph> डेटा बिन्दुसँग एक वा दुई नियन्त्रण पङ्क्तिहरू छन् र बिभिन्न पङ्क्ति बिभाजकहरू जोड्दछ।"
#: line_draw.xhp
msgctxt ""
@@ -3318,7 +3318,7 @@ msgctxt ""
"par_id3155928\n"
"help.text"
msgid "Click where you want the curve to start, and drag in the direction where you want the curve to go. The control line will indicate the direction."
-msgstr "क्लिक गर्नुहोस् जहाँ तपाईँ बक्र सुरु गर्न चाहनुहुन्छ, र दिशामा छोटो दूरी तान्नुहोस् जहाँ तपाईँ बक्र लग्न चाहनुहुन्छ. सिधा पङ्क्ति बिभाजक निर्माण गर्नका लागि, होल्ड गर्नुहोस् <item type=\"keycode\">सिफ्ट</item> तपाईँले तानेको बेला."
+msgstr "क्लिक गर्नुहोस् जहाँ तपाईँ बक्र सुरु गर्न चाहनुहुन्छ, र दिशामा छोटो दूरी तान्नुहोस् जहाँ तपाईँ बक्र लग्न चाहनुहुन्छ।सिधा पङ्क्ति बिभाजक निर्माण गर्नका लागि, होल्ड गर्नुहोस् सिफ्ट तपाईँले तानेको बेला।"
#: line_draw.xhp
msgctxt ""
@@ -3398,7 +3398,7 @@ msgctxt ""
"par_id4907681\n"
"help.text"
msgid "On the Drawing toolbar, open the <emph>Curves</emph> toolbar <image id=\"Graphic2\" src=\"cmd/sc_linetoolbox.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_\">Icon</alt></image> and select the <emph>Freeform Line</emph><image id=\"Graphic3\" src=\"cmd/sc_freeline_unfilled.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_\">Icon</alt></image> tool."
-msgstr "<emph>वक्र</emph> उपकरणपट्टी खोल्नुहोस्, र <emph>वक्र</emph> उपकरण <image id=\"img_id3145829\" src=\"cmd/sc_linetoolbox.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3145829\">प्रतिमा</alt></image> चयन गर्नुहोस् ।"
+msgstr "<emph>वक्र</emph> उपकरणपट्टी खोल्नुहोस्, र <emph>वक्र</emph> उपकरण <image id=\"img_id3145829\" src=\"cmd/sc_linetoolbox.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3145829\">प्रतिमा</alt></image> चयन गर्नुहोस्।"
#: line_draw.xhp
msgctxt ""
@@ -3470,7 +3470,7 @@ msgctxt ""
"par_id3153711\n"
"help.text"
msgid "<image id=\"img_id3149018\" src=\"cmd/sc_toggleobjectbeziermode.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3149018\">Icon</alt></image>"
-msgstr "<image id=\"img_id3149018\" src=\"cmd/sc_toggleobjectbeziermode.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3149018\">प्रतिमा</alt></image>"
+msgstr "<image id=\"img_id3149018\" src=\"cmd/sc_toggleobjectbeziermode.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3149018\">प्रतिमा</alt></image>"
#: line_edit.xhp
msgctxt ""
@@ -5190,7 +5190,7 @@ msgctxt ""
"par_id5674611\n"
"help.text"
msgid "Click the Document listbox and select the type of contents to print."
-msgstr "<emph>विकल्प</emph> क्लिक गर्नुहोस् ।"
+msgstr "विकल्प क्लिक गर्नुहोस् र मुद्रण गर्न कन्टेन्ट परिकार चयन गर्नु होस्।"
#: printing.xhp
msgctxt ""
@@ -5254,7 +5254,7 @@ msgctxt ""
"par_id3154561\n"
"help.text"
msgid "Enter the slide numbers you want to print, and click <emph>OK</emph>."
-msgstr "जब चयन स्लाईडहरूको सङ्ख्याहरू <emph>पृष्ठ</emph> बाकसमा दखिन्छ, क्लिक गर्नुहोस् <emph>ठीक छ</emph>."
+msgstr "जब चयन स्लाईडहरूको सङ्ख्याहरू पृष्ठ बाकसमा दखिन्छ, क्लिक गर्नुहोस् <emph>ठीक छ</emph>"
#: rehearse_timings.xhp
msgctxt ""
@@ -5702,7 +5702,7 @@ msgctxt ""
"par_idN10626\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Selects the current table.</ahelp>"
-msgstr "<ahelp hid=\".uno:Bib/DeleteRecord\">हालको रेकर्ड मेटाउदछ ।</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">हालको तालिका चयन गर्छ।</ahelp>"
#: table_insert.xhp
msgctxt ""
@@ -5918,7 +5918,7 @@ msgctxt ""
"hd_id3150215\n"
"help.text"
msgid "Inserting a spreadsheet from a file"
-msgstr "फाइलबाट $[officename] क्याल्क स्प्रेडसिटहरू घुसाउदैछ"
+msgstr "फाईलबाट स्प्रिेडशिट घुसाउनुहोस्"
#: table_insert.xhp
msgctxt ""
diff --git a/source/ne/helpcontent2/source/text/smath/00.po b/source/ne/helpcontent2/source/text/smath/00.po
index 5ddf972ba67..8b5602d0915 100644
--- a/source/ne/helpcontent2/source/text/smath/00.po
+++ b/source/ne/helpcontent2/source/text/smath/00.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: 2017-05-09 16:45+0200\n"
-"PO-Revision-Date: 2018-04-08 17:51+0000\n"
-"Last-Translator: Saroj Dhakal <lotusnagarkot@gmail.com>\n"
+"PO-Revision-Date: 2018-05-24 12:35+0000\n"
+"Last-Translator: सन्जोग सिग्देल <sigdelsanjog@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ne\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1523209906.000000\n"
+"X-POOTLE-MTIME: 1527165336.000000\n"
#: 00000004.xhp
msgctxt ""
@@ -502,7 +502,7 @@ msgctxt ""
"par_id3153803\n"
"help.text"
msgid "<variable id=\"etsmim\">Choose <emph>Tools - Import MathML from Clipboard</emph></variable>"
-msgstr "<variable id=\"etsfim\">रोज्नुहोस् <emph>उपकरणहरू -आयात सूत्र</emph></variable>"
+msgstr "<variable id=\"etsmim\">रोज्नुहोस् <emph>MathML को उपकरणहरु - क्लिपबोर्डबाट आयात गर्नुहोस्।</emph></variable>"
#: 00000004.xhp
msgctxt ""
diff --git a/source/ne/helpcontent2/source/text/smath/01.po b/source/ne/helpcontent2/source/text/smath/01.po
index f6e14e7970d..ad4240dad9b 100644
--- a/source/ne/helpcontent2/source/text/smath/01.po
+++ b/source/ne/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: 2018-05-16 16:54+0200\n"
-"PO-Revision-Date: 2018-05-22 09:36+0000\n"
+"PO-Revision-Date: 2018-06-01 05:08+0000\n"
"Last-Translator: सन्जोग सिग्देल <sigdelsanjog@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ne\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1526981787.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1527829722.000000\n"
#: 02080000.xhp
msgctxt ""
@@ -54,7 +54,7 @@ msgctxt ""
"par_id3149051\n"
"help.text"
msgid "\"Markers\" are placeholders. They take the form of <?> in the <emph>Commands</emph> window."
-msgstr "\"Markers\" प्लेसहोल्डहरू हुन् । तिनीहरूले <emph> आदेश </emph> सञ्झ्यालमा <?> को फारम लिन्छन् ।"
+msgstr "\"Markers\" प्लेसहोल्डहरू हुन्। तिनीहरूले <?>को रुप<emph> आदेश</emph> सञ्झ्यालमा लिन्छन्।"
#: 02090000.xhp
msgctxt ""
@@ -94,7 +94,7 @@ msgctxt ""
"par_id3148488\n"
"help.text"
msgid "\"Markers\" are placeholders. They take the form of <?> in the <emph>Commands</emph> window."
-msgstr "\"Markers\" प्लेसहोल्डहरू हुन् । तिनीहरूले <emph> आदेश </emph> सञ्झ्यालमा <?> को फारम लिन्छन् ।"
+msgstr "\"Markers\" प्लेसहोल्डहरू हुन् । तिनीहरूले <?> को फारम <emph> आदेश </emph> सञ्झ्यालमा लिन्छन्।"
#: 02100000.xhp
msgctxt ""
@@ -190,7 +190,7 @@ msgctxt ""
"par_id3154490\n"
"help.text"
msgid "<ahelp hid=\".\">Increases the display scale of the formula by 25%.</ahelp> The current zoom factor is displayed on the status bar. A selection of available zoom options is accessible through the <link href=\"text/shared/00/00000001.xhp#kontextmenue\" name=\"context menu\">context menu</link>. The context menu in the work area also contains zoom commands."
-msgstr "<ahelp hid=\"SID_ZOOMIN\">२५% ले सूत्रको प्रदर्शन स्केल बढाउनुहोस्</ahelp> जुम स्केल स्थितिपट्टीमा प्रदर्शन भयो. तपाईँ स्केल पनि परिवर्तन गर्न सक्नुहुन्छ <link href=\"text/shared/00/00000001.xhp#kontextmenue\" name=\"context menu\">सामाग्री मेनु</link>स्थितिपट्टीको. कार्यस्थान सामाग्री मेनुले जुम विकल्प समावेश गर्दछ ।"
+msgstr "<ahelp hid=\".\">सूत्रहरूको प्रर्दशन मापन २५% बाट बढाउदछ।</ahelp> जुम मापन स्थितिपट्टीमा प्रर्दशित गरिन्छ। तपाईँले स्थितिपट्टीको <link href=\"text/shared/00/00000001.xhp#kontextmenue\" name=\"context menu\">प्रसंग मेनुमा</link> मापन परिवर्तन गर्न सक्नुहुन्छ। कार्यस्थान प्रसंग मेनु सँग जुम विकल्प पनि हुन्छ।"
#: 03050000.xhp
msgctxt ""
@@ -222,7 +222,7 @@ msgctxt ""
"par_id3150249\n"
"help.text"
msgid "<ahelp hid=\".\">Decreases the display scale of formulas by 25%.</ahelp> The current zoom factor is displayed on the status bar. A selection of available zoom options is accessible through the <link href=\"text/shared/00/00000001.xhp#kontextmenue\" name=\"context menu\">context menu</link>. The context menu in the work area also contains zoom commands."
-msgstr "<ahelp hid=\"SID_ZOOMOUT\">सूत्रहरूको प्रर्दशन मापन 25% बाट घटाउदछ ।</ahelp> जुम मापन स्थितिपट्टीमा प्रर्दशित गरिन्छ । तपाईँले स्थितिपट्टीको <link href=\"text/shared/00/00000001.xhp#kontextmenue\" name=\"context menu\">प्रसंग मेनुमा</link> मापन परिवर्तन गर्न सक्नुहुन्छ । कार्यस्थान प्रसंग मेनु सँग जुम विकल्प पनि हुन्छ ।"
+msgstr "<ahelp hid=\".\">सूत्रहरूको प्रर्दशन मापन २५% बाट बढाउदछ।</ahelp> जुम मापन स्थितिपट्टीमा प्रर्दशित गरिन्छ। तपाईँले स्थितिपट्टीको <link href=\"text/shared/00/00000001.xhp#kontextmenue\" name=\"context menu\">प्रसंग मेनुमा</link> मापन परिवर्तन गर्न सक्नुहुन्छ। कार्यस्थान प्रसंग मेनु सँग जुम विकल्प पनि हुन्छ।"
#: 03060000.xhp
msgctxt ""
@@ -278,7 +278,7 @@ msgctxt ""
"hd_id3153768\n"
"help.text"
msgid "<link href=\"text/smath/01/03070000.xhp\" name=\"Update\">Update</link>"
-msgstr "<link href=\"text/swriter/01/06990000.xhp\" name=\"Update\">अद्यावधिक</link>"
+msgstr "<link href=\"text/smath/01/03070000.xhp\" name=\"Update\">अपडेट</link>"
#: 03070000.xhp
msgctxt ""
@@ -326,7 +326,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=\"SID_AUTO_REDRAW\">परिमार्जित सूत्र स्वचालित रूपमा ताजा गर्न यो आदेश चयन गर्नुहोस्. यदि तपाईँले यो विकल्प चयन गर्नुभएन भने, सूत्र ताजा हुन्छ तपाईँले <emph>दृश्य - ताजा छनौट गरेपछि</emph> र F9 थिच्नुहोस्</ahelp>"
+msgstr "<ahelp hid=\".\">परिमार्जित सूत्र स्वचालित रूपमा ताजा गर्न यो आदेश चयन गर्नुहोस्. यदि तपाईँले यो विकल्प चयन गर्नुभएन भने, सूत्र ताजा हुन्छ तपाईँले <emph>दृश्य - ताजा छनौट गरेपछि</emph> र F9 थिच्नुहोस्</ahelp>"
#: 03090000.xhp
msgctxt ""
@@ -342,7 +342,7 @@ msgctxt ""
"bm_id3155963\n"
"help.text"
msgid "<bookmark_value>selection options in formulas</bookmark_value> <bookmark_value>formulas; selections</bookmark_value> <bookmark_value>elements;in Math</bookmark_value>"
-msgstr "<bookmark_value>चयनहरू; सूत्रहरू</bookmark_value><bookmark_value>सूत्रहरू; चयनहरू</bookmark_value>"
+msgstr "<bookmark_value>चयनहरू; सूत्रहरू</bookmark_value> <bookmark_value>सूत्रहरू;चयनहरू</bookmark_value> <bookmark_value>तत्वहरू; गणितमा</bookmark_value>"
#: 03090000.xhp
msgctxt ""
@@ -366,7 +366,7 @@ msgctxt ""
"par_id3148699\n"
"help.text"
msgid "Some <link href=\"text/smath/01/03090900.xhp\" name=\"examples\">examples</link> show you the range of operations."
-msgstr "केही <link href=\"text/smath/01/03090900.xhp\" name=\"examples\">उदाहरणहरूले</link> सञ्चालनकर्ताहरूको दायरा देखाउँदछ । तपाईँले बढी उदाहरणहरू <emph>नमूनाहरू - सूत्रहरू</emph> फोल्डरमा पाउन सक्नुहुन्छ ।"
+msgstr "केही <link href=\"text/smath/01/03090900.xhp\" name=\"examples\">उदाहरणहरू</link> ले तपाईंलाई कार्यवाहीहरूको दायरा देखाउँदछन्।"
#: 03090000.xhp
msgctxt ""
@@ -1478,7 +1478,7 @@ msgctxt ""
"par_id3150867\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_PRECEDES\">Inserts the logical operator <emph>precedes</emph> with two placeholders.</ahelp> You can also type <emph>prec</emph> in the <emph>Commands</emph> window."
-msgstr "<ahelp hid=\"HID_SMA_DRARROW\">लोजिकल सञ्चालनकर्ता घुसाउनुहोस् <emph>बाँण डबल पट्टी सूचीत सँग दायाँ</emph> दुई प्लेसहोल्डरहरू सँग.</ahelp> तपाईँ टाइप पनि गर्न सक्नुहुन्छ <emph>drarrow</emph><emph>आदेश</emph> सञ्झ्यालहरूमा."
+msgstr "<ahelp hid=\"HID_SMA_PRECEDES\">लोजिकल सञ्चालनकर्ता घुसाउनुहोस् <emph>बाँण डबल पट्टी सूचीत सँग दायाँ</emph> दुई प्लेसहोल्डरहरू सँग।</ahelp> तपाईँ टाइप पनि गर्न सक्नुहुन्छ <emph>prec</emph><emph>आदेश</emph> सञ्झ्यालहरूमा।"
#: 03090200.xhp
msgctxt ""
@@ -1502,7 +1502,7 @@ msgctxt ""
"par_id3150868\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_SUCCEEDS\">Inserts the logical operator <emph>succeeds</emph> with two placeholders.</ahelp> You can also type <emph>succ</emph> in the <emph>Commands</emph> window."
-msgstr "<ahelp hid=\"HID_SMA_XCIRCY\"><emph>श्रृङ्खलाबद्व चिन्ह</emph> दुई प्लेसहोल्डरहरू सँग घुसाउनुहोस् </ahelp> तपाईँले<emph>circ</emph><emph>आदेश</emph> सञ्झ्यालमा टाइप गर्न सक्नुहुन्छ ।"
+msgstr "<ahelp hid=\"HID_SMA_SUCCEEDS\"><emph>श्रृङ्खलाबद्व चिन्ह</emph> दुई प्लेसहोल्डरहरू सँग घुसाउनुहोस् </ahelp> तपाईँले<emph>succ</emph><emph>आदेश</emph> सञ्झ्यालमा टाइप गर्न सक्नुहुन्छ।"
#: 03090200.xhp
msgctxt ""
@@ -1526,7 +1526,7 @@ msgctxt ""
"par_id3150869\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_NOTPRECEDES\">Inserts the logical operator <emph>not precedes</emph> with two placeholders.</ahelp> You can also type <emph>nprec</emph> in the <emph>Commands</emph> window."
-msgstr "<ahelp hid=\"HID_SMA_DRARROW\">लोजिकल सञ्चालनकर्ता घुसाउनुहोस् <emph>बाँण डबल पट्टी सूचीत सँग दायाँ</emph> दुई प्लेसहोल्डरहरू सँग.</ahelp> तपाईँ टाइप पनि गर्न सक्नुहुन्छ <emph>drarrow</emph><emph>आदेश</emph> सञ्झ्यालहरूमा."
+msgstr "<ahelp hid=\"HID_SMA_NOTPRECEDES\">लोजिकल सञ्चालनकर्ता घुसाउनुहोस् <emph>बाँण डबल पट्टी सूचीत सँग दायाँ</emph> दुई प्लेसहोल्डरहरू सँग।</ahelp> तपाईँ टाइप पनि गर्न सक्नुहुन्छ <emph>अघि बढ्छ</emph><emph>आदेश</emph> सञ्झ्यालहरूमा।"
#: 03090200.xhp
msgctxt ""
@@ -1550,7 +1550,7 @@ msgctxt ""
"par_id3150870\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_NOTSUCCEEDS\">Inserts the logical operator <emph>not succeeds</emph> with two placeholders.</ahelp> You can also type <emph>nsucc</emph> in the <emph>Commands</emph> window."
-msgstr "<ahelp hid=\"HID_SMA_DRARROW\">लोजिकल सञ्चालनकर्ता घुसाउनुहोस् <emph>बाँण डबल पट्टी सूचीत सँग दायाँ</emph> दुई प्लेसहोल्डरहरू सँग.</ahelp> तपाईँ टाइप पनि गर्न सक्नुहुन्छ <emph>drarrow</emph><emph>आदेश</emph> सञ्झ्यालहरूमा."
+msgstr ""
#: 03090200.xhp
msgctxt ""
@@ -1574,7 +1574,7 @@ msgctxt ""
"par_id3150871\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_PRECEDESEQUAL\">Inserts the logical operator <emph>precedes or equal</emph> with two placeholders.</ahelp> You can also type <emph>preccurlyeq</emph> in the <emph>Commands</emph> window."
-msgstr "<ahelp hid=\"HID_SMA_DRARROW\">लोजिकल सञ्चालनकर्ता घुसाउनुहोस् <emph>बाँण डबल पट्टी सूचीत सँग दायाँ</emph> दुई प्लेसहोल्डरहरू सँग.</ahelp> तपाईँ टाइप पनि गर्न सक्नुहुन्छ <emph>drarrow</emph><emph>आदेश</emph> सञ्झ्यालहरूमा."
+msgstr "<ahelp hid=\"HID_SMA_PRECEDESEQUAL\">लोजिकल सञ्चालनकर्ता घुसाउनुहोस् <emph>बाँण डबल पट्टी सूचीत सँग दायाँ</emph> दुई प्लेसहोल्डरहरू सँग।</ahelp> तपाईँ टाइप पनि गर्न सक्नुहुन्छ <emph>preccurlyeq</emph><emph>आदेश</emph> सञ्झ्यालहरूमा।"
#: 03090200.xhp
msgctxt ""
@@ -3422,7 +3422,7 @@ msgctxt ""
"hd_id3154011\n"
"help.text"
msgid "<variable id=\"attributes\"><link href=\"text/smath/01/03090600.xhp\" name=\"Attributes\">Attributes</link></variable>"
-msgstr "<link href=\"text/smath/01/03090600.xhp\" name=\"Attributes\">विशेषताहरू</link>"
+msgstr "<variable id=\"attributes\"><link href=\"text/smath/01/03090600.xhp\" name=\"Attributes\">विशेषताहरू</link></variable>"
#: 03090600.xhp
msgctxt ""
@@ -3502,7 +3502,7 @@ msgctxt ""
"par_id3150018\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_GRAVEX\">Inserts a placeholder with a <emph>grave accent</emph> (grave).</ahelp> You can also type <emph>grave <?></emph> in the <emph>Commands</emph> window."
-msgstr "<ahelp hid=\"HID_SMA_BREVEX\">न्यून ब्रिभ सँग प्लेसहोल्डर घुसाउनुहोस्.</ahelp> तपाईँ टाइप पनि गर्न सक्नुहुन्छ <emph>ब्रिभ <?></emph> <emph>आदेश</emph> सञ्झ्यालहरूमा ।"
+msgstr ""
#: 03090600.xhp
msgctxt ""
@@ -3526,7 +3526,7 @@ msgctxt ""
"par_id3147167\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_CHECKX\">Inserts a placeholder with a reverse circumflex (\"checkmark\") over it.</ahelp> You can also type <emph>check <?></emph> in the <emph>Commands</emph> window."
-msgstr "<ahelp hid=\"HID_SMA_BREVEX\">न्यून ब्रिभ सँग प्लेसहोल्डर घुसाउनुहोस्.</ahelp> तपाईँ टाइप पनि गर्न सक्नुहुन्छ <emph>ब्रिभ <?></emph> <emph>आदेश</emph> सञ्झ्यालहरूमा ।"
+msgstr "<ahelp hid=\"HID_SMA_CHECKX\">न्यून ब्रिभ सँग प्लेसहोल्डर घुसाउनुहोस्।</ahelp> तपाईँ टाइप पनि गर्न सक्नुहुन्छ <emph>check <?></emph> <emph>आदेश</emph> सञ्झ्यालहरूमा।"
#: 03090600.xhp
msgctxt ""
@@ -3574,7 +3574,7 @@ msgctxt ""
"par_id3153573\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_CIRCLEX\">Inserts a placeholder with a circle over it.</ahelp> You can also type <emph>circle <?></emph> in the <emph>Commands</emph> window."
-msgstr "<ahelp hid=\"HID_SMA_BREVEX\">न्यून ब्रिभ सँग प्लेसहोल्डर घुसाउनुहोस्.</ahelp> तपाईँ टाइप पनि गर्न सक्नुहुन्छ <emph>ब्रिभ <?></emph> <emph>आदेश</emph> सञ्झ्यालहरूमा ।"
+msgstr "<ahelp hid=\"HID_SMA_CIRCLEX\">न्यून ब्रिभ सँग प्लेसहोल्डर घुसाउनुहोस्।</ahelp> तपाईँ टाइप पनि गर्न सक्नुहुन्छ <emph>circle <?></emph> <emph>आदेश</emph> सञ्झ्यालहरूमा।"
#: 03090600.xhp
msgctxt ""
@@ -3598,7 +3598,7 @@ msgctxt ""
"par_id3153539\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_VECX\">Inserts a placeholder with a vector arrow.</ahelp> You can also type <emph>vec <?></emph> in the <emph>Commands</emph> window."
-msgstr "<ahelp hid=\"HID_SMA_BREVEX\">न्यून ब्रिभ सँग प्लेसहोल्डर घुसाउनुहोस्.</ahelp> तपाईँ टाइप पनि गर्न सक्नुहुन्छ <emph>ब्रिभ <?></emph> <emph>आदेश</emph> सञ्झ्यालहरूमा ।"
+msgstr "<ahelp hid=\"HID_SMA_VECX\">न्यून ब्रिभ सँग प्लेसहोल्डर घुसाउनुहोस्।</ahelp> तपाईँ टाइप पनि गर्न सक्नुहुन्छ <emph>vec <?></emph> <emph>आदेश</emph> सञ्झ्यालहरूमा।"
#: 03090600.xhp
msgctxt ""
@@ -3622,7 +3622,7 @@ msgctxt ""
"par_id3154570\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_TILDEX\">Inserts a placeholder with a tilde.</ahelp> You can also type <emph>tilde <?></emph> in the <emph>Commands</emph> window."
-msgstr "<ahelp hid=\"HID_SMA_BREVEX\">न्यून ब्रिभ सँग प्लेसहोल्डर घुसाउनुहोस्.</ahelp> तपाईँ टाइप पनि गर्न सक्नुहुन्छ <emph>ब्रिभ <?></emph> <emph>आदेश</emph> सञ्झ्यालहरूमा ।"
+msgstr "<ahelp hid=\"HID_SMA_TILDEX\">न्यून ब्रिभ सँग प्लेसहोल्डर घुसाउनुहोस्।</ahelp> तपाईँ टाइप पनि गर्न सक्नुहुन्छ <emph>tilde <?></emph> <emph>आदेश</emph> सञ्झ्यालहरूमा।"
#: 03090600.xhp
msgctxt ""
@@ -3670,7 +3670,7 @@ msgctxt ""
"par_id3149815\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_BARX\">Inserts a line (\"bar\") above a placeholder .</ahelp> You can also type <emph>bar <?></emph> in the <emph>Commands</emph> window."
-msgstr "<ahelp hid=\"HID_SMA_SINX\">साइन प्रकार्य एउटा प्लेसहोल्डर सँग घुसाउनुहोस्.</ahelp> तपाईँ टाइप पनि गर्न सक्नुहुन्छ <emph>sin(<?>)</emph> <emph>आदेश</emph> सञ्झ्यालहरूमा."
+msgstr "<ahelp hid=\"HID_SMA_BARX\">साइन प्रकार्य एउटा प्लेसहोल्डर सँग घुसाउनुहोस्।</ahelp> तपाईँ टाइप पनि गर्न सक्नुहुन्छ <emph>bar<?></emph> <emph>आदेश</emph> सञ्झ्यालहरूमा।"
#: 03090600.xhp
msgctxt ""
@@ -3694,7 +3694,7 @@ msgctxt ""
"par_id3154900\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_DOTX\">Inserts a placeholder with a dot over it.</ahelp> You can also type <emph>dot <?></emph> in the <emph>Commands</emph> window."
-msgstr "<ahelp hid=\"HID_SMA_BOLDX\">गाढा ढाँचा सँग प्लेसहोल्डर घुसाउनुहोस्.</ahelp> तपाईँ टाइप पनि गर्न सक्नुहुन्छ <emph>bold <?></emph> <emph>आदेश</emph> सञ्झ्यालहरूमा"
+msgstr "<ahelp hid=\"HID_SMA_DOTX\">एउटा बिन्दु सहित प्लेसहोल्डर सम्मिलित गर्दछ।</ahelp> तपाईँले <emph>आदेश</emph> सञ्झ्यालमा <emph>dot<?></emph> टाइप पनि गर्न सक्नुहुन्छ।"
#: 03090600.xhp
msgctxt ""
@@ -3790,7 +3790,7 @@ msgctxt ""
"par_id3149541\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_DDOTX\">Inserts a placeholder with two dots over it.</ahelp> You can also directly enter <emph>ddot <?></emph> in the <emph>Commands</emph> window."
-msgstr "<ahelp hid=\"HID_SMA_BOLDX\">गाढा ढाँचा सँग प्लेसहोल्डर घुसाउनुहोस्.</ahelp> तपाईँ टाइप पनि गर्न सक्नुहुन्छ <emph>bold <?></emph> <emph>आदेश</emph> सञ्झ्यालहरूमा"
+msgstr "<ahelp hid=\"HID_SMA_DOTX\">दुई वटा बिन्दु सहित प्लेसहोल्डर सम्मिलित गर्दछ।</ahelp> तपाईँले <emph>आदेशहरू</emph> सञ्झ्यालमा सिधै <emph>ddot <?></emph> प्रविष्ट पनि गर्न सक्नुहुन्छ।"
#: 03090600.xhp
msgctxt ""
@@ -3918,7 +3918,7 @@ msgctxt ""
"par_idN104E1\n"
"help.text"
msgid "<image id=\"img_id3153240\" src=\"cmd/sc_bold.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3153240\">Icon</alt></image>"
-msgstr "<image id=\"img_id3150038\" src=\"cmd/sc_italic.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150038\">प्रतिमा</alt></image>"
+msgstr "<image id=\"img_id3153240\" src=\"cmd/sc_bold.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3153240\">प्रतिमा</alt></image>"
#: 03090600.xhp
msgctxt ""
@@ -3942,7 +3942,7 @@ msgctxt ""
"par_idN1051C\n"
"help.text"
msgid "<image id=\"img_id3150038\" src=\"cmd/sc_italic.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3150038\">Icon</alt></image>"
-msgstr "<image id=\"img_id3150038\" src=\"cmd/sc_italic.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150038\">प्रतिमा</alt></image>"
+msgstr "<image id=\"img_id3150038\" src=\"cmd/sc_italic.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3150038\">प्रतिमा</alt></image>"
#: 03090600.xhp
msgctxt ""
@@ -3966,7 +3966,7 @@ msgctxt ""
"par_idN1055A\n"
"help.text"
msgid "<image id=\"img_id3155801\" src=\"cmd/sc_fontheight.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3155801\">Icon</alt></image>"
-msgstr "<image id=\"img_id3155801\" src=\"cmd/sc_fontheight.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3155801\">प्रतिमा</alt></image>"
+msgstr "<image id=\"img_id3155801\" src=\"cmd/sc_fontheight.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3155801\">प्रतिमा</alt></image>"
#: 03090600.xhp
msgctxt ""
@@ -3990,7 +3990,7 @@ msgctxt ""
"par_idN10595\n"
"help.text"
msgid "<image id=\"img_id3148804\" src=\"cmd/sc_charfontname.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3148804\">Icon</alt></image>"
-msgstr "<image id=\"img_id3148804\" src=\"cmd/sc_charfontname.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3148804\">प्रतिमा</alt></image>"
+msgstr "<image id=\"img_id3148804\" src=\"cmd/sc_charfontname.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3148804\">प्रतिमा</alt></image>"
#: 03090600.xhp
msgctxt ""
@@ -5630,7 +5630,7 @@ msgctxt ""
"par_id3155761\n"
"help.text"
msgid "All types of brackets have the same grouping function as described for \"{}\" brackets."
-msgstr "सबै कोष्ठकहरूको प्रकार सँग उही समूह प्रकार्यहरू छन् जुन वर्णन गरिएको थियो \"{}\"<emph>-</emph> कोष्ठकहरूमा ।"
+msgstr "\"{}\" कोष्ठकहरूको लागि व्याख्या गरिए झैं सबै प्रकारका कोष्ठकहरूमा उस्तै समूहकरण प्रकार्यहरू छन्।"
#: 03091100.xhp
msgctxt ""
@@ -7438,7 +7438,7 @@ msgctxt ""
"hd_id4201178\n"
"help.text"
msgid "<variable id=\"set\"><link href=\"text/smath/01/03091503.xhp\" name=\"set\">Set Operators</link></variable>"
-msgstr "<variable id=\"func_win\"><link href=\"text/smath/01/03090000.xhp\" name=\"Selection\">चयन</link></variable>"
+msgstr "<variable id=\"set\"><link href=\"text/smath/01/03091503.xhp\" name=\"set\">अपरेटरहरू तय गर्नुहोस्</link></variable>"
#: 03091503.xhp
msgctxt ""
@@ -7854,7 +7854,7 @@ msgctxt ""
"hd_id645466\n"
"help.text"
msgid "<variable id=\"functions\"><link href=\"text/smath/01/03091504.xhp\" name=\"Functions\">Functions</link></variable>"
-msgstr "<variable id=\"func_win\"><link href=\"text/smath/01/03090000.xhp\" name=\"Selection\">चयन</link></variable>"
+msgstr "<variable id=\"functions\"><link href=\"text/smath/01/03091504.xhp\" name=\"Functions\">प्रकार्यहरू</link></variable>"
#: 03091504.xhp
msgctxt ""
@@ -8318,7 +8318,7 @@ msgctxt ""
"hd_id1328165\n"
"help.text"
msgid "<variable id=\"operators\"><link href=\"text/smath/01/03091505.xhp\" name=\"Operators\">Operators</link></variable>"
-msgstr "<variable id=\"func_win\"><link href=\"text/smath/01/03090000.xhp\" name=\"Selection\">चयन</link></variable>"
+msgstr "<variable id=\"operators\"><link href=\"text/smath/01/03091505.xhp\" name=\"Operators\">संचालकहरू</link></variable>"
#: 03091505.xhp
msgctxt ""
@@ -10310,7 +10310,7 @@ msgctxt ""
"par_idA3156346\n"
"help.text"
msgid "<ahelp hid=\"HID_SMA_NOTEXISTS\">Inserts the symbol for an Existence quantor.</ahelp> Command for the <emph>Commands</emph> window: <emph>notexists</emph>"
-msgstr "<ahelp hid=\"HID_SMA_EXISTS\">स्थिति क्वान्टरका लागि प्रतीक घुसाउनुहोस्.</ahelp>आदेश <emph>आदेश</emph> सञ्झ्यालहरूका लागि: <emph>exists</emph>"
+msgstr "<ahelp hid=\"HID_SMA_EXISTS\">अस्तित्व क्वान्टरका लागि प्रतीक घुसाउनुहोस्।</ahelp> <emph>आदेशहरू</emph> सञ्झ्यालका लागि आदेश: <emph>nonexists</emph>"
#: 03091600.xhp
msgctxt ""
diff --git a/source/ne/helpcontent2/source/text/swriter/01.po b/source/ne/helpcontent2/source/text/swriter/01.po
index 6bcd569379f..b9e5f92f01e 100644
--- a/source/ne/helpcontent2/source/text/swriter/01.po
+++ b/source/ne/helpcontent2/source/text/swriter/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: 2018-05-22 13:17+0200\n"
-"PO-Revision-Date: 2018-05-24 08:42+0000\n"
+"PO-Revision-Date: 2018-05-24 12:44+0000\n"
"Last-Translator: सन्जोग सिग्देल <sigdelsanjog@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ne\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1527151322.000000\n"
+"X-POOTLE-MTIME: 1527165881.000000\n"
#: 01120000.xhp
msgctxt ""
@@ -13334,7 +13334,7 @@ msgctxt ""
"bm_id2502212\n"
"help.text"
msgid "<bookmark_value>text flow;at breaks</bookmark_value><bookmark_value>paragraphs;keeping together at breaks</bookmark_value><bookmark_value>protecting;text flow</bookmark_value><bookmark_value>widows</bookmark_value><bookmark_value>orphans</bookmark_value><bookmark_value>block protect, see also widows or orphans</bookmark_value>"
-msgstr "<bookmark_value>पाठ प्रवाह; ब्रेकमा</bookmark_value><bookmark_value>अनुच्छेद; ब्रेक मा एक साथ राखन</bookmark_value><bookmark_value></bookmark_value>सुरक्षा; पाठ प्रवाह</bookmark_value><bookmark_value>विधवाहरू</bookmark_value><bookmark_value>अनाथहरू</bookmark_value><bookmark_value>रोक्नुहोस्, विधवा वा अनाथहरू पनि हेर्नुहोस्</bookmark_value>"
+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>"
#: 05030200.xhp
msgctxt ""
diff --git a/source/ne/helpcontent2/source/text/swriter/guide.po b/source/ne/helpcontent2/source/text/swriter/guide.po
index 8670ffb948b..dbb17413221 100644
--- a/source/ne/helpcontent2/source/text/swriter/guide.po
+++ b/source/ne/helpcontent2/source/text/swriter/guide.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2018-05-08 15:11+0200\n"
-"PO-Revision-Date: 2018-05-24 09:29+0000\n"
+"PO-Revision-Date: 2018-05-28 05:34+0000\n"
"Last-Translator: सन्जोग सिग्देल <sigdelsanjog@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ne\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1527154142.000000\n"
+"X-POOTLE-MTIME: 1527485691.000000\n"
#: anchor_object.xhp
msgctxt ""
@@ -7566,7 +7566,7 @@ msgctxt ""
"par_id3150219\n"
"help.text"
msgid "Close the <item type=\"menuitem\">Bibliography Database</item> window."
-msgstr "<emph> सन्दर्भ सूची डाटाबेस</emph> सञ्झ्याल बन्द गर्नुहोस् ।"
+msgstr "<item type=\"menuitem\">सन्दर्भ सूची डाटाबेस</item> सञ्झ्याल बन्द गर्नुहोस्।"
#: indices_literature.xhp
msgctxt ""
@@ -7606,7 +7606,7 @@ msgctxt ""
"par_id3153738\n"
"help.text"
msgid "Type a name for the bibliography entry in the <item type=\"menuitem\">Short name</item> box."
-msgstr "सन्दर्भ सूची प्रविष्टिका लागि <emph>छोटो नाम </emph>बाकसमा नाम टाइप गर्नुहोस् ।"
+msgstr "सन्दर्भ सूची प्रविष्टिका लागि <item type=\"menuitem\">छोटो नाम </item>बाकसमा नाम टाइप गर्नुहोस्।"
#: indices_literature.xhp
msgctxt ""
@@ -7614,7 +7614,7 @@ msgctxt ""
"par_id3153763\n"
"help.text"
msgid "Select the publication source for the record in the <item type=\"menuitem\">Type</item> box, and then add additional information in the remaining boxes."
-msgstr "<emph>प्रकार </emph>बाकसमा रेकर्डका लागि प्रकाशन स्रोत चयन गर्नुहोस् , र बाँकी बाकसहरूमा थप सूचना थप गर्नुहोस् ।"
+msgstr "<item type=\"menuitem\">प्रकार </item>बाकसमा रेकर्डका लागि प्रकाशन स्रोत चयन गर्नुहोस् र बाँकी बाकसहरूमा थप सूचना थप गर्नुहोस्।"
#: indices_literature.xhp
msgctxt ""
@@ -8478,7 +8478,7 @@ msgctxt ""
"par_id3155911\n"
"help.text"
msgid "On the <item type=\"menuitem\">Formatting</item> Bar, click the <item type=\"menuitem\">Numbering On/Off</item> icon twice."
-msgstr "<item type=\"menuitem\">ढाँचा</item> पट्टीमा, <emph>क्रमाङ्कन सुरु/बन्द </emph>प्रतिमा दोब्बर क्लिक गर्नुहोस् ।"
+msgstr "<item type=\"menuitem\">ढाँचा</item> पट्टीमा, <item type=\"menuitem\">रमाङ्कन सुरु/बन्द </item>प्रतिमा दोब्बर क्लिक गर्नुहोस् ।"
#: join_numbered_lists.xhp
msgctxt ""
@@ -8782,7 +8782,7 @@ msgctxt ""
"par_id3153377\n"
"help.text"
msgid "Click <emph>From File</emph>, locate the file containing the styles that you want to use, and then click name, and then click <emph>Open</emph>."
-msgstr "फाइल पाठ सहित अवस्थित गर्नुहोस् जुन तपाईँ थप गर्न चाहनुहुन्छ, र क्लिक गर्नुहोस् <emph>घुसाउनुहोस्</emph>."
+msgstr "<emph>फाइलबाट</emph> पाठ सहित अवस्थित गर्नुहोस् जुन तपाईँ थप गर्न चाहनुहुन्छ, नाम क्लिक गर्नुहोस् <emph>खोल्नुहोस्</emph>क्लिक गर्नुहोस्।"
#: main.xhp
msgctxt ""
@@ -9094,7 +9094,7 @@ msgctxt ""
"par_id3155919\n"
"help.text"
msgid "Right-click in a table cell and choose <item type=\"menuitem\">Number recognition</item>. When this feature is on, a check mark is displayed in front of the <item type=\"menuitem\">Number recognition</item> command."
-msgstr "तालिका कक्षमा दायाँ-क्लिक गर्नुहोस् र <emph>सङ्ख्या पहिचान</emph>रोज्नुहोस् । जब यो सुविधा खुला हुन्छ, <emph>सङ्ख्या पहिचान </emph>आदेशको नजिक जाँच चिन्ह प्रदर्शन हुन्छ ।"
+msgstr "तालिका कक्षमा दायाँ-क्लिक गर्नुहोस् र <item type=\"menuitem\">सङ्ख्या पहिचान </item>रोज्नुहोस्। जब यो सुविधा खुला हुन्छ, <item type=\"menuitem\">सङ्ख्या पहिचान </item>आदेशको नजिक जाँच चिन्ह प्रदर्शन हुन्छ।"
#: number_date_conv.xhp
msgctxt ""
@@ -9158,7 +9158,7 @@ msgctxt ""
"par_id3155048\n"
"help.text"
msgid "Choose <item type=\"menuitem\">Insert - Field - More Fields</item>, and then click the <item type=\"menuitem\">Variables</item> tab."
-msgstr "<emph>घुसाउनुहोस् -</emph><emph>फाँटहरू - अन्य</emph> रोज्नुहोस् , र <emph>चल</emph> ट्याबहरू क्लिक गर्नुहोस् ।"
+msgstr "<item type=\"menuitem\">घुसाउनुहोस् -फाँटहरू - अन्य रोज्नुहोस्</item>, र <item type=\"menuitem\">चल</item> ट्याबहरू क्लिक गर्नुहोस्।"
#: number_sequence.xhp
msgctxt ""
@@ -11190,7 +11190,7 @@ msgctxt ""
"par_id3153418\n"
"help.text"
msgid "Click <emph>Print</emph>."
-msgstr "<emph>पृष्ठ दृश्य मुद्रण गर्नुहोस्</emph> छवि <image id=\"img_id3156248\" src=\"cmd/sc_printpagepreview.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3156248\">Icon</alt></image> क्लिक गर्नुहोस् ।"
+msgstr "क्लिक गर्नुहोस्<emph>प्रिन्ट</emph>"
#: printing_order.xhp
msgctxt ""
@@ -12622,7 +12622,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 "<item type = \"menuitem\"> खण्ड </ item> बक्समा, तपाइँ सम्मिलित गर्न चाहानु भएको खण्ड चयन गर्नुहोस्।"
+msgstr "<item type=\"menuitem\">खण्ड </item>बक्समा, तपाइँ सम्मिलित गर्न चाहानु भएको खण्ड चयन गर्नुहोस्।"
#: section_insert.xhp
msgctxt ""
@@ -13990,7 +13990,7 @@ msgctxt ""
"par_id3149986\n"
"help.text"
msgid "OLE object - as with <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+V or drag-and-drop"
-msgstr "OLE वस्तु - Ctrl+V वा तान्नुहोस्-र-छोड्नुहोस् सँग"
+msgstr "OLE वस्तु - सँग <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+V वा तान्नुहोस्-र-छोड्नुहोस्"
#: table_insert.xhp
msgctxt ""
@@ -14286,7 +14286,7 @@ msgctxt ""
"par_id3149615\n"
"help.text"
msgid "<image id=\"img_id3149622\" src=\"cmd/sc_optimizetable.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3149622\">Icon</alt></image>"
-msgstr "<image id=\"img_id3155962\" src=\"cmd/sc_solidcreate.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3155962\">प्रतिमा</alt></image>"
+msgstr "<image id=\"img_id3149622\" src=\"cmd/sc_optimizetable.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3149622\">प्रतिमा</alt></image>"
#: table_sizing.xhp
msgctxt ""
@@ -14574,7 +14574,7 @@ msgctxt ""
"par_id3149829\n"
"help.text"
msgid "In the <item type=\"menuitem\">New Template</item> box, type a name for the new template."
-msgstr "<emph>नयाँ टेम्प्लेट </emph>बाकसमा, नयाँ टेम्प्लेटका लागि नाम टाइप गर्नुहोस्."
+msgstr "नयाँ टेम्प्लेट बाकसमा, <item type=\"menuitem\">नयाँ टेम्प्लेटका</item> लागि नाम टाइप गर्नुहोस्।"
#: template_create.xhp
msgctxt ""
@@ -14582,7 +14582,7 @@ msgctxt ""
"par_id3156098\n"
"help.text"
msgid "Select a template category in the <item type=\"menuitem\">Categories</item> list."
-msgstr "<emph>कोटिहरू </emph>सूचीमा टेम्प्लेट कोटि चयन गर्नुहोस्."
+msgstr "<item type=\"menuitem\">कोटिहरू </item>सूचीमा टेम्प्लेट कोटि चयन गर्नुहोस्।"
#: template_create.xhp
msgctxt ""
@@ -14806,7 +14806,7 @@ msgctxt ""
"par_id3155178\n"
"help.text"
msgid "Choose <item type=\"menuitem\">Format - Object - Text Attributes</item>, and then click the <item type=\"menuitem\">Text Animation</item> tab."
-msgstr "<emph>ढाँचा - शैलीहरू र ढाँचा</emph>रोज्नुहोस् , र <emph> पृष्ठ शैली</emph> प्रतिमा क्लिक गर्नुहोस् ।"
+msgstr "<item type=\"menuitem\">ढाँचा - शैलीहरू र ढाँचा</item>रोज्नुहोस् , र <item type=\"menuitem\">पृष्ठ शैली</item> प्रतिमा क्लिक गर्नुहोस्।"
#: text_animation.xhp
msgctxt ""
@@ -14814,7 +14814,7 @@ msgctxt ""
"par_id3149819\n"
"help.text"
msgid "In the <item type=\"menuitem\">Effect</item> box, select the animation that you want."
-msgstr "<emph>प्रभाव</emph>बाकसमा, तपाईँले चाहनु भएको एनिमेसन चयन गर्नुहोस्."
+msgstr "<item type=\"menuitem\">प्रभाव</item>बाकसमा, तपाईँले चाहनु भएको एनिमेसन चयन गर्नुहोस्।"
#: text_animation.xhp
msgctxt ""
@@ -14990,7 +14990,7 @@ msgctxt ""
"par_id3152765\n"
"help.text"
msgid "In the <item type=\"menuitem\">Anchor</item> area, select <item type=\"menuitem\">To page</item>."
-msgstr "<emph>एङ्कर </emph> क्षेत्रमा <emph>पृष्ठमा</emph>चयन गर्नुहोस्."
+msgstr "<item type=\"menuitem\">एङ्कर </item> क्षेत्रमा <item type=\"menuitem\">पृष्ठमा</item>चयन गर्नुहोस्।"
#: text_centervert.xhp
msgctxt ""
@@ -14998,7 +14998,7 @@ msgctxt ""
"par_id3149844\n"
"help.text"
msgid "In the <item type=\"menuitem\">Size</item> area, set the dimensions of the frame."
-msgstr "<emph>साइज </emph>क्षेत्रमा, फ्रेमको बिकर्णहरू सेट गर्नुहोस्."
+msgstr "<item type=\"menuitem\">आकार</item> क्षेत्रमा, खापाको आयामहरू सेट गर्नुहोस्।"
#: text_centervert.xhp
msgctxt ""
@@ -15006,7 +15006,7 @@ msgctxt ""
"par_id3156114\n"
"help.text"
msgid "In the <item type=\"menuitem\">Position</item> area, select \"Center\" in the <item type=\"menuitem\">Horizontal</item> and <item type=\"menuitem\">Vertical</item> boxes."
-msgstr "<emph>अवस्था </emph>क्षेत्रमा,<emph>तेर्सो </emph>र <emph>ठाडो </emph>बाकसहरूमा \"केन्द्र\"चयन गर्नुहोस् ."
+msgstr "<item type=\"menuitem\"> स्थिति </item>क्षेत्रमा,<item type=\"menuitem\">तेर्सो </item>र <item type=\"menuitem\">ठाडो </item>बाकसहरूमा \"केन्द्र\"चयन गर्नुहोस्।"
#: text_centervert.xhp
msgctxt ""
@@ -15078,7 +15078,7 @@ msgctxt ""
"par_idN106A3\n"
"help.text"
msgid "On the <item type=\"menuitem\">Tools</item> bar, click the <item type=\"menuitem\">Direct Cursor</item> icon <image id=\"img_id3149846\" src=\"cmd/sc_shadowcursor.png\" width=\"0.222in\" height=\"0.222in\"><alt id=\"alt_id3149846\">Icon</alt></image>."
-msgstr "<emph>उपकरण</emph> पट्टीमा, <emph>प्रत्यक्ष कर्सर</emph> प्रतिमा <image id=\"img_id3149846\" src=\"cmd/sc_shadowcursor.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3149846\">प्रतिमा</alt></image> क्लिक गर्नुहोस् ।"
+msgstr "<item type=\"menuitem\">उपकरण</item> पट्टीमा, <item type=\"menuitem\">प्रत्यक्ष कर्सर</item> प्रतिमा प्रतिमा<image id=\"img_id3149846\" src=\"cmd/sc_shadowcursor.png\" width=\"0.222in\" height=\"0.222in\"><alt id=\"alt_id3149846\">प्रतिमा</alt></image> क्लिक गर्नुहोस् ।"
#: text_direct_cursor.xhp
msgctxt ""
@@ -15094,7 +15094,7 @@ msgctxt ""
"par_idN106C8\n"
"help.text"
msgid "<image id=\"img_id5471987\" src=\"media/helpimg/dircursleft.png\" width=\"0.1457in\" height=\"0.3228in\"><alt id=\"alt_id5471987\">Icon</alt></image> Align left"
-msgstr "<image id=\"img_id5471987\" src=\"media/helpimg/dircursleft.png\" width=\"3.7mm\" height=\"8.2mm\"><alt id=\"alt_id5471987\">प्रतिमा</alt></image> बायाँ पङ्क्तिबद्ध गर्नुहोस्"
+msgstr "<image id=\"img_id5471987\" src=\"media/helpimg/dircursleft.png\" width=\"0.1457in\" height=\"0.3228in\"><alt id=\"alt_id5471987\">प्रतिमा</alt></image> बायाँ पङ्क्तिबद्ध गर्नुहोस्"
#: text_direct_cursor.xhp
msgctxt ""
@@ -15102,7 +15102,7 @@ msgctxt ""
"par_idN106E4\n"
"help.text"
msgid "<image id=\"img_id5730253\" src=\"media/helpimg/dircurscent.png\" width=\"0.2398in\" height=\"0.3228in\"><alt id=\"alt_id5730253\">Icon</alt></image> Centered"
-msgstr "<image id=\"img_id5730253\" src=\"media/helpimg/dircurscent.png\" width=\"6.09mm\" height=\"8.2mm\"><alt id=\"alt_id5730253\">प्रतिमा</alt></image> केन्द्रित गर्नुहोस्"
+msgstr "<image id=\"img_id5730253\" src=\"media/helpimg/dircurscent.png\" width=\"0.2398in\" height=\"0.3228in\"><alt id=\"alt_id5730253\">प्रतिमा</alt></image>केन्द्रित"
#: text_direct_cursor.xhp
msgctxt ""
@@ -15110,7 +15110,7 @@ msgctxt ""
"par_idN10700\n"
"help.text"
msgid "<image id=\"img_id6953622\" src=\"media/helpimg/dircursright.png\" width=\"0.1563in\" height=\"0.3228in\"><alt id=\"alt_id6953622\">Icon</alt></image> Align right"
-msgstr "<image id=\"img_id6953622\" src=\"media/helpimg/dircursright.png\" width=\"3.97mm\" height=\"8.2mm\"><alt id=\"alt_id6953622\">प्रतिमा</alt></image> दायाँ पङ्क्तिबद्ध गर्नुहोस्"
+msgstr "<image id=\"img_id6953622\" src=\"media/helpimg/dircursright.png\" width=\"0.1563in\" height=\"0.3228in\"><alt id=\"alt_id6953622\">प्रतिमा </alt></image>दायाँ पङ्क्तिबद्ध गर्नुहोस्"
#: text_direct_cursor.xhp
msgctxt ""
@@ -15174,7 +15174,7 @@ msgctxt ""
"par_id3150084\n"
"help.text"
msgid "Select the text, and then choose <item type=\"menuitem\">Insert - Frame</item>."
-msgstr "पाठ चयन गर्नुहोस्, र <emph>फ्रेम घुसाउनुहोस्</emph>रोज्नुहोस् ."
+msgstr "पाठ चयन गर्नुहोस्, र <item type=\"menuitem\">घुसाउनुहोस् - खापा</item> रोज्नुहोस्।"
#: text_emphasize.xhp
msgctxt ""
@@ -15350,7 +15350,7 @@ msgctxt ""
"par_id3150223\n"
"help.text"
msgid "On the <item type=\"menuitem\">Frame</item> Bar, click the <item type=\"menuitem\">Link Frames</item> icon <image id=\"img_id3148968\" src=\"cmd/sc_chainframes.png\" width=\"0.222in\" height=\"0.222in\"><alt id=\"alt_id3148968\">Icon</alt></image>."
-msgstr "<emph>उपकरण</emph> पट्टीमा, <emph>प्रत्यक्ष कर्सर</emph> प्रतिमा <image id=\"img_id3149846\" src=\"cmd/sc_shadowcursor.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3149846\">प्रतिमा</alt></image> क्लिक गर्नुहोस् ।"
+msgstr "On the <item type=\"menuitem\">Frame</item> Bar, click the <item type=\"menuitem\">Link Frames</item> icon <image id=\"img_id3148968\" src=\"cmd/sc_chainframes.png\" width=\"0.222in\" height=\"0.222in\"><alt id=\"alt_id3148968\">Icon</alt></image>."
#: text_frame.xhp
msgctxt ""
@@ -15542,7 +15542,7 @@ msgctxt ""
"par_id3149972\n"
"help.text"
msgid "(<switchinline select=\"sys\"><caseinline select=\"MAC\">Command+Option</caseinline><defaultinline>Ctrl+Alt</defaultinline></switchinline>) Moves the current paragraph up or down."
-msgstr "(Ctrl+Alt) ले हालको अनुच्छेदलाई माथि वा तल लैजान्छ."
+msgstr "(<switchinline select=\"sys\"><caseinline select=\"MAC\">कमाण्ड+बिकल्प</caseinline><defaultinline>Ctrl+Alt</defaultinline></switchinline>)+Up Arrow"
#: text_nav_keyb.xhp
msgctxt ""
@@ -15750,7 +15750,7 @@ msgctxt ""
"par_id3153130\n"
"help.text"
msgid "Choose <item type=\"menuitem\">View - Toolbars- Drawing</item> to open the <item type=\"menuitem\">Drawing</item> toolbar."
-msgstr "<emph>चित्राङ्कन</emph>उपकरणपट्टी खोल्नका लागि<emph>दृश्य - उपकरणपट्टीहरू- चित्राङ्कन</emph>रोज्नुहोस् ."
+msgstr "<item type=\"menuitem\">चित्राङ्कन</item>उपकरणपट्टी खोल्नका लागि<item type=\"menuitem\">दृश्य - उपकरणपट्टीहरू- चित्राङ्कन</item>रोज्नुहोस्"
#: text_rotate.xhp
msgctxt ""
@@ -15902,7 +15902,7 @@ msgctxt ""
"par_id3149642\n"
"help.text"
msgid "In the <item type=\"menuitem\">File Name</item> box, type the name of the file that you want to insert, or click the <item type=\"menuitem\">Browse</item> button and locate the file."
-msgstr "<emph>फाइल नाम </emph>बाकसमा, फाइलको नाम टाइप गर्नुहोस् जुन तपाईँ घुसाउन चाहनुहुन्छ, वा ब्राउज बटन क्लिक गर्नुहोस् (<emph>...</emph>) र फाइल अवस्थित गर्नुहोस्."
+msgstr "<item type=\"menuitem\">फाइल नाम</item>बाकसमा, फाइलको नाम टाइप गर्नुहोस् जुन तपाईँ घुसाउन चाहनुहुन्छ, वा <item type=\"menuitem\">ब्राउज</item> बटन क्लिक गर्नुहोस् र फाइल अवस्थित गर्नुहोस्।"
#: textdoc_inframe.xhp
msgctxt ""
@@ -15910,7 +15910,7 @@ msgctxt ""
"par_id3149968\n"
"help.text"
msgid "If the target text document contains sections, you can select the section that you want to insert in the <item type=\"menuitem\">Sections</item> box."
-msgstr "यदि लक्ष पाठ कागजातले सेक्सनहरू समावेश गर्छ भने, तपाईँ <emph> सेक्सन</emph> बाकसहरूमा तपाईँले घुसाउन चाहनुभएको सेक्सन चयन गर्न सक्नुहुन्छ ।"
+msgstr "यदि लक्ष पाठ कागजातले सेक्सनहरू समावेश गर्छ भने, तपाईँ <item type=\"menuitem\">सेक्सन</item> बाकसहरूमा तपाईँले घुसाउन चाहनुभएको सेक्सन चयन गर्न सक्नुहुन्छ।"
#: textdoc_inframe.xhp
msgctxt ""
@@ -16014,7 +16014,7 @@ msgctxt ""
"par_id3150101\n"
"help.text"
msgid "In the Hyphenation area, select the Automatically check box."
-msgstr "<emph>योजक चिन्ह </emph> क्षेत्रमा,<emph>स्वचालित</emph> जाँच बाकस चयन गर्नुहोस् ."
+msgstr "हाइफेनेशन क्षेत्रमा, स्वचालित रूपमा चेक बक्स चयन गर्नुहोस्।"
#: using_hyphen.xhp
msgctxt ""
@@ -16070,7 +16070,7 @@ msgctxt ""
"par_id3145106\n"
"help.text"
msgid "Click the Text Flow tab."
-msgstr "<emph>पाठ प्रवाह</emph>ट्याब क्लिक गर्नहोस् ।"
+msgstr "पाठ प्रवाह ट्याब क्लिक गर्नुहोस्।"
#: using_hyphen.xhp
msgctxt ""
@@ -16214,7 +16214,7 @@ msgctxt ""
"par_id3149635\n"
"help.text"
msgid "On the <item type=\"menuitem\">Formatting</item> Bar, click the <item type=\"menuitem\">Bullets On/Off</item> icon <image id=\"img_id3156108\" src=\"cmd/sc_defaultbullet.png\" width=\"0.423cm\" height=\"0.423cm\"><alt id=\"alt_id3156108\">Icon</alt></image>."
-msgstr "<emph>ढाँचा</emph> पट्टीमा, <emph>गोलीचिन्ह खुल्ला/बन्द</emph> प्रतिमा <image id=\"img_id3156108\" src=\"cmd/sc_defaultbullet.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3156108\">प्रतिमा</alt></image> क्लिक गर्नुहोस् ।"
+msgstr "<item type=\"menuitem\">ढाँचा</item> पट्टीमा, <item type=\"menuitem\">गोलीचिन्ह खुल्ला/बन्द</item> प्रतिमा <image id=\"img_id3156108\" src=\"cmd/sc_defaultbullet.png\" width=\"0.423cm\" height=\"0.423cm\"><alt id=\"alt_id3156108\">प्रतिमा</alt></image> क्लिक गर्नुहोस्।"
#: using_numbered_lists.xhp
msgctxt ""
@@ -16238,7 +16238,7 @@ msgctxt ""
"par_id3154416\n"
"help.text"
msgid "To change the formatting of a bulleted list, choose <item type=\"menuitem\">Format - Bullets and Numbering</item>."
-msgstr "गोलिचिन्ह सूचीहरूको ढाँचा परिवर्तन गर्न, <emph>ढाँचा - गोलिचिन्हहरू र क्रमाङ्कन</emph>रोज्नुहोस् ."
+msgstr "गोलिचिन्ह सूचीहरूको ढाँचा परिवर्तन गर्न, <item type=\"menuitem\">ढाँचा - गोलिचिन्हहरू र क्रमाङ्कन</item>रोज्नुहोस्।"
#: using_numbered_lists.xhp
msgctxt ""
@@ -16294,7 +16294,7 @@ msgctxt ""
"par_id3149968\n"
"help.text"
msgid "On the <item type=\"menuitem\">Formatting</item> Bar, click the <item type=\"menuitem\">Numbering On/Off</item> icon <image id=\"img_id3153125\" src=\"cmd/sc_defaultnumbering.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3153125\">Icon</alt></image>."
-msgstr "<emph>ढाँचा</emph> पट्टीमा, <emph>क्रमाङ्कन खोल्नु/बन्द</emph> प्रतिमा <image id=\"img_id3153125\" src=\"cmd/sc_defaultnumbering.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3153125\">प्रतिमा</alt></image> क्लिक गर्नुहोस् ।"
+msgstr "<item type=\"menuitem\">ढाँचा</item> पट्टीमा, <item type=\"menuitem\">क्रमाङ्कन खोल्नु/बन्द</item> प्रतिमा <image id=\"img_id3153125\" src=\"cmd/sc_defaultnumbering.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3153125\">प्रतिमा</alt></image> क्लिक गर्नुहोस्।"
#: using_numbered_lists2.xhp
msgctxt ""
@@ -16414,7 +16414,7 @@ msgctxt ""
"par_idN10733\n"
"help.text"
msgid "To change the bullet or numbering format for all paragraphs in the list, ensure that the cursor is in the list, choose <item type=\"menuitem\">Format - Bullets and Numbering</item>, and then click a new format."
-msgstr "सूचीको सबै अनुच्छेदहरूका लागि गोलिचिन्ह वा क्रमाङ्कन ढाँचा परिवर्तन गर्नका लागि, निश्चित गर्नुहोस् कर्सर सूचीमा छ, गोलिचिन्हहरू र क्रमाङ्कन रोज्नुहोस्, र नयाँ ढाँचा क्लिक गर्नुहोस्."
+msgstr "सूचीको सबै अनुच्छेदहरूका लागि गोलिचिन्ह वा क्रमाङ्कन ढाँचा परिवर्तन गर्नका लागि, निश्चित गर्नुहोस् कि कर्सर सूचीमा छ,<item type=\"menuitem\">ढाचा - गोलिचिन्हहरू र क्रमाङ्कन</item> रोज्नुहोस्, र नयाँ ढाँचा क्लिक गर्नुहोस्।"
#: using_numbering.xhp
msgctxt ""
diff --git a/source/ne/officecfg/registry/data/org/openoffice/Office/UI.po b/source/ne/officecfg/registry/data/org/openoffice/Office/UI.po
index 045b084b028..e8d6987acda 100644
--- a/source/ne/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/ne/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-22 13:17+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
"PO-Revision-Date: 2018-03-02 16:21+0000\n"
"Last-Translator: Saroj Dhakal <lotusnagarkot@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -26904,8 +26904,8 @@ msgctxt ""
"..WriterCommands.UserInterface.Commands..uno:TextAttributes\n"
"Label\n"
"value.text"
-msgid "Text Attributes"
-msgstr "पाठ विशेषताहरू"
+msgid "Text Attributes..."
+msgstr ""
#: WriterCommands.xcu
msgctxt ""
diff --git a/source/ne/readlicense_oo/docs.po b/source/ne/readlicense_oo/docs.po
index 79e7c8112d9..2f7a441c2d2 100644
--- a/source/ne/readlicense_oo/docs.po
+++ b/source/ne/readlicense_oo/docs.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-04-17 15:54+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2017-02-23 17:48+0000\n"
"Last-Translator: Saroj Dhakal <lotusnagarkot@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -117,7 +117,7 @@ msgctxt ""
"readme.xrm\n"
"macxiOSX\n"
"readmeitem.text"
-msgid "MacOSX 10.8 (Mountain Lion) or higher"
+msgid "MacOSX 10.9 (Mavericks) or higher"
msgstr ""
#: readme.xrm
diff --git a/source/ne/sc/messages.po b/source/ne/sc/messages.po
index db55e7af206..2aa3d7a9543 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-12 14:40+0200\n"
"PO-Revision-Date: 2018-04-29 17:02+0000\n"
"Last-Translator: निराजन पन्त <nirajan_pant@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1868,16 +1868,21 @@ msgid "Nested arrays are not supported."
msgstr "समूह एरेलाई समर्थन गर्दैन ।"
#: sc/inc/globstr.hrc:390
+msgctxt "STR_ERR_LONG_BAD_ARRAY_CONTENT"
+msgid "Unsupported inline array content."
+msgstr ""
+
+#: sc/inc/globstr.hrc:391
msgctxt "STR_UNDO_TEXTTOCOLUMNS"
msgid "Text to Columns"
msgstr "पाठलाई स्तम्भ"
-#: sc/inc/globstr.hrc:391
+#: sc/inc/globstr.hrc:392
msgctxt "STR_DOC_UPDATED"
msgid "Your spreadsheet has been updated with changes saved by other users."
msgstr ""
-#: sc/inc/globstr.hrc:392
+#: sc/inc/globstr.hrc:393
msgctxt "STR_DOC_WILLBESAVED"
msgid ""
"The spreadsheet must be saved now to activate sharing mode.\n"
@@ -1885,7 +1890,7 @@ msgid ""
"Do you want to continue?"
msgstr ""
-#: sc/inc/globstr.hrc:393
+#: sc/inc/globstr.hrc:394
msgctxt "STR_DOC_WILLNOTBESAVED"
msgid ""
"Already resolved merge conflicts will be lost and your changes to the shared spreadsheet will not be saved.\n"
@@ -1893,7 +1898,7 @@ msgid ""
"Do you want to continue?"
msgstr ""
-#: sc/inc/globstr.hrc:394
+#: sc/inc/globstr.hrc:395
msgctxt "STR_DOC_DISABLESHARED"
msgid ""
"Disabling shared mode of a spreadsheet hinders all other users of the shared spreadsheet to merge back their work.\n"
@@ -1901,7 +1906,7 @@ msgid ""
"Do you want to continue?"
msgstr ""
-#: sc/inc/globstr.hrc:395
+#: sc/inc/globstr.hrc:396
msgctxt "STR_DOC_NOLONGERSHARED"
msgid ""
"This spreadsheet is no longer in shared mode.\n"
@@ -1909,7 +1914,7 @@ msgid ""
"Save your spreadsheet to a separate file and merge your changes to the shared spreadsheet manually."
msgstr ""
-#: sc/inc/globstr.hrc:396
+#: sc/inc/globstr.hrc:397
msgctxt "STR_FILE_LOCKED_TRY_LATER"
msgid ""
"The shared spreadsheet file is locked due to a merge in progress by user: '%1'\n"
@@ -1917,7 +1922,7 @@ msgid ""
"Sharing mode of a locked file cannot be disabled. Try again later."
msgstr ""
-#: sc/inc/globstr.hrc:397
+#: sc/inc/globstr.hrc:398
msgctxt "STR_FILE_LOCKED_SAVE_LATER"
msgid ""
"The shared spreadsheet file is locked due to a merge in progress by user: '%1'\n"
@@ -1925,149 +1930,149 @@ msgid ""
"Try again later to save your changes."
msgstr ""
-#: sc/inc/globstr.hrc:398
+#: sc/inc/globstr.hrc:399
msgctxt "STR_UNKNOWN_USER"
msgid "Unknown User"
msgstr "अज्ञात प्रयोगकर्ता"
-#: sc/inc/globstr.hrc:399
+#: sc/inc/globstr.hrc:400
msgctxt "STR_SHAPE_AUTOSHAPE"
msgid "AutoShape"
msgstr ""
-#: sc/inc/globstr.hrc:400
+#: sc/inc/globstr.hrc:401
msgctxt "STR_SHAPE_RECTANGLE"
msgid "Rectangle"
msgstr "आयात"
-#: sc/inc/globstr.hrc:401
+#: sc/inc/globstr.hrc:402
#, fuzzy
msgctxt "STR_SHAPE_LINE"
msgid "Line"
msgstr "लाईफ"
-#: sc/inc/globstr.hrc:402
+#: sc/inc/globstr.hrc:403
msgctxt "STR_SHAPE_OVAL"
msgid "Oval"
msgstr "अण्डाकार"
-#: sc/inc/globstr.hrc:403
+#: sc/inc/globstr.hrc:404
msgctxt "STR_FORM_BUTTON"
msgid "Button"
msgstr "बटन"
-#: sc/inc/globstr.hrc:404
+#: sc/inc/globstr.hrc:405
msgctxt "STR_FORM_CHECKBOX"
msgid "Check Box"
msgstr "जाँच बाकस"
-#: sc/inc/globstr.hrc:405
+#: sc/inc/globstr.hrc:406
msgctxt "STR_FORM_OPTIONBUTTON"
msgid "Option Button"
msgstr "विकल्प बटन"
-#: sc/inc/globstr.hrc:406
+#: sc/inc/globstr.hrc:407
#, fuzzy
msgctxt "STR_FORM_LABEL"
msgid "Label"
msgstr "लेबल"
-#: sc/inc/globstr.hrc:407
+#: sc/inc/globstr.hrc:408
msgctxt "STR_FORM_LISTBOX"
msgid "List Box"
msgstr "सूची बाकस"
-#: sc/inc/globstr.hrc:408
+#: sc/inc/globstr.hrc:409
msgctxt "STR_FORM_GROUPBOX"
msgid "Group Box"
msgstr "समूह बाकस"
-#: sc/inc/globstr.hrc:409
+#: sc/inc/globstr.hrc:410
msgctxt "STR_FORM_DROPDOWN"
msgid "Drop Down"
msgstr "तल झार्नुहोस्"
-#: sc/inc/globstr.hrc:410
+#: sc/inc/globstr.hrc:411
msgctxt "STR_FORM_SPINNER"
msgid "Spinner"
msgstr ""
-#: sc/inc/globstr.hrc:411
+#: sc/inc/globstr.hrc:412
msgctxt "STR_FORM_SCROLLBAR"
msgid "Scroll Bar"
msgstr "स्क्रोलपट्टी"
-#: sc/inc/globstr.hrc:412
+#: sc/inc/globstr.hrc:413
msgctxt "STR_STYLE_FAMILY_CELL"
msgid "Cell Styles"
msgstr "कक्ष शैलीहरू"
-#: sc/inc/globstr.hrc:413
+#: sc/inc/globstr.hrc:414
msgctxt "STR_STYLE_FAMILY_PAGE"
msgid "Page Styles"
msgstr "पृष्ठ शैलीहरू"
-#: sc/inc/globstr.hrc:414
+#: sc/inc/globstr.hrc:415
msgctxt "STR_ERR_DATAPILOTSOURCE"
msgid "Pivot table source data is invalid."
msgstr "दिइएको प्रवाह अवैध हो ।"
-#: sc/inc/globstr.hrc:415
+#: sc/inc/globstr.hrc:416
msgctxt "STR_OPTIONS_WARN_SEPARATORS"
msgid "Because the current formula separator settings conflict with the locale, the formula separators have been reset to their default values."
msgstr ""
-#: sc/inc/globstr.hrc:416
+#: sc/inc/globstr.hrc:417
msgctxt "STR_UNDO_INSERT_CURRENT_DATE"
msgid "Insert Current Date"
msgstr ""
-#: sc/inc/globstr.hrc:417
+#: sc/inc/globstr.hrc:418
msgctxt "STR_UNDO_INSERT_CURRENT_TIME"
msgid "Insert Current Time"
msgstr ""
-#: sc/inc/globstr.hrc:418
+#: sc/inc/globstr.hrc:419
msgctxt "STR_MANAGE_NAMES"
msgid "Manage Names..."
msgstr "दायरा नामहरू"
-#: sc/inc/globstr.hrc:419
+#: sc/inc/globstr.hrc:420
msgctxt "STR_HEADER_NAME"
msgid "Name"
msgstr "नाम"
-#: sc/inc/globstr.hrc:420
+#: sc/inc/globstr.hrc:421
msgctxt "STR_HEADER_RANGE_OR_EXPR"
msgid "Range or formula expression"
msgstr ""
-#: sc/inc/globstr.hrc:421
+#: sc/inc/globstr.hrc:422
msgctxt "STR_HEADER_SCOPE"
msgid "Scope"
msgstr "Scope"
-#: sc/inc/globstr.hrc:422
+#: sc/inc/globstr.hrc:423
msgctxt "STR_MULTI_SELECT"
msgid "(multiple)"
msgstr ""
-#: sc/inc/globstr.hrc:423
+#: sc/inc/globstr.hrc:424
msgctxt "STR_GLOBAL_SCOPE"
msgid "Document (Global)"
msgstr "कागजात मोड"
-#: sc/inc/globstr.hrc:424
+#: sc/inc/globstr.hrc:425
msgctxt "STR_ERR_NAME_EXISTS"
msgid "Invalid name. Already in use for the selected scope."
msgstr ""
-#: sc/inc/globstr.hrc:425
+#: sc/inc/globstr.hrc:426
msgctxt "STR_ERR_NAME_INVALID"
msgid "Invalid name. Only use letters, numbers and underscore."
msgstr ""
-#: sc/inc/globstr.hrc:426
+#: sc/inc/globstr.hrc:427
msgctxt "STR_UNSAVED_EXT_REF"
msgid ""
"This Document contains external references to unsaved documents.\n"
@@ -2075,218 +2080,218 @@ msgid ""
"Do you want to continue?"
msgstr ""
-#: sc/inc/globstr.hrc:427
+#: sc/inc/globstr.hrc:428
msgctxt "STR_CLOSE_WITH_UNSAVED_REFS"
msgid "This Document is referenced by another document and not yet saved. Closing it without saving will result in data loss."
msgstr ""
-#: sc/inc/globstr.hrc:428
+#: sc/inc/globstr.hrc:429
msgctxt "STR_HEADER_RANGE"
msgid "Range"
msgstr "दायरा"
-#: sc/inc/globstr.hrc:429
+#: sc/inc/globstr.hrc:430
msgctxt "STR_HEADER_COND"
msgid "First Condition"
msgstr ""
-#: sc/inc/globstr.hrc:430
+#: sc/inc/globstr.hrc:431
msgctxt "STR_COND_CONDITION"
msgid "Cell value is"
msgstr "कक्ष मान..."
-#: sc/inc/globstr.hrc:431
+#: sc/inc/globstr.hrc:432
msgctxt "STR_COND_COLORSCALE"
msgid "ColorScale"
msgstr ""
-#: sc/inc/globstr.hrc:432
+#: sc/inc/globstr.hrc:433
msgctxt "STR_COND_DATABAR"
msgid "DataBar"
msgstr ""
-#: sc/inc/globstr.hrc:433
+#: sc/inc/globstr.hrc:434
msgctxt "STR_COND_ICONSET"
msgid "IconSet"
msgstr ""
-#: sc/inc/globstr.hrc:434
+#: sc/inc/globstr.hrc:435
msgctxt "STR_COND_BETWEEN"
msgid "between"
msgstr "बिचमा"
-#: sc/inc/globstr.hrc:435
+#: sc/inc/globstr.hrc:436
msgctxt "STR_COND_NOTBETWEEN"
msgid "not between"
msgstr "बिचमा छैन"
-#: sc/inc/globstr.hrc:436
+#: sc/inc/globstr.hrc:437
msgctxt "STR_COND_UNIQUE"
msgid "unique"
msgstr ""
-#: sc/inc/globstr.hrc:437
+#: sc/inc/globstr.hrc:438
msgctxt "STR_COND_DUPLICATE"
msgid "duplicate"
msgstr "नक्कल"
-#: sc/inc/globstr.hrc:438
+#: sc/inc/globstr.hrc:439
msgctxt "STR_COND_FORMULA"
msgid "Formula is"
msgstr "सूत्र..."
-#: sc/inc/globstr.hrc:439
+#: sc/inc/globstr.hrc:440
msgctxt "STR_COND_TOP10"
msgid "Top Elements"
msgstr ""
-#: sc/inc/globstr.hrc:440
+#: sc/inc/globstr.hrc:441
msgctxt "STR_COND_BOTTOM10"
msgid "Bottom Elements"
msgstr ""
-#: sc/inc/globstr.hrc:441
+#: sc/inc/globstr.hrc:442
msgctxt "STR_COND_TOP_PERCENT"
msgid "Top Percent"
msgstr ""
-#: sc/inc/globstr.hrc:442
+#: sc/inc/globstr.hrc:443
msgctxt "STR_COND_DATE"
msgid "Date is"
msgstr ""
-#: sc/inc/globstr.hrc:443
+#: sc/inc/globstr.hrc:444
msgctxt "STR_COND_BOTTOM_PERCENT"
msgid "Bottom Percent"
msgstr ""
-#: sc/inc/globstr.hrc:444
+#: sc/inc/globstr.hrc:445
msgctxt "STR_COND_ABOVE_AVERAGE"
msgid "Above Average"
msgstr ""
-#: sc/inc/globstr.hrc:445
+#: sc/inc/globstr.hrc:446
msgctxt "STR_COND_BELOW_AVERAGE"
msgid "Below Average"
msgstr ""
-#: sc/inc/globstr.hrc:446
+#: sc/inc/globstr.hrc:447
msgctxt "STR_COND_ABOVE_EQUAL_AVERAGE"
msgid "Above or equal Average"
msgstr ""
-#: sc/inc/globstr.hrc:447
+#: sc/inc/globstr.hrc:448
msgctxt "STR_COND_BELOW_EQUAL_AVERAGE"
msgid "Below or equal Average"
msgstr ""
-#: sc/inc/globstr.hrc:448
+#: sc/inc/globstr.hrc:449
msgctxt "STR_COND_ERROR"
msgid "an Error code"
msgstr "त्रुटि सङ्केत"
-#: sc/inc/globstr.hrc:449
+#: sc/inc/globstr.hrc:450
msgctxt "STR_COND_NOERROR"
msgid "not an Error code"
msgstr "त्रुटि सङ्केत"
-#: sc/inc/globstr.hrc:450
+#: sc/inc/globstr.hrc:451
msgctxt "STR_COND_BEGINS_WITH"
msgid "Begins with"
msgstr ""
-#: sc/inc/globstr.hrc:451
+#: sc/inc/globstr.hrc:452
msgctxt "STR_COND_ENDS_WITH"
msgid "Ends with"
msgstr ""
-#: sc/inc/globstr.hrc:452
+#: sc/inc/globstr.hrc:453
msgctxt "STR_COND_CONTAINS"
msgid "Contains"
msgstr "समावेश गर्दछ"
-#: sc/inc/globstr.hrc:453
+#: sc/inc/globstr.hrc:454
msgctxt "STR_COND_NOT_CONTAINS"
msgid "Not Contains"
msgstr ""
-#: sc/inc/globstr.hrc:454
+#: sc/inc/globstr.hrc:455
#, fuzzy
msgctxt "STR_COND_TODAY"
msgid "today"
msgstr "आज"
-#: sc/inc/globstr.hrc:455
+#: sc/inc/globstr.hrc:456
msgctxt "STR_COND_YESTERDAY"
msgid "yesterday"
msgstr ""
-#: sc/inc/globstr.hrc:456
+#: sc/inc/globstr.hrc:457
msgctxt "STR_COND_TOMORROW"
msgid "tomorrow"
msgstr ""
-#: sc/inc/globstr.hrc:457
+#: sc/inc/globstr.hrc:458
msgctxt "STR_COND_LAST7DAYS"
msgid "in the last 7 days"
msgstr ""
-#: sc/inc/globstr.hrc:458
+#: sc/inc/globstr.hrc:459
msgctxt "STR_COND_THISWEEK"
msgid "this week"
msgstr ""
-#: sc/inc/globstr.hrc:459
+#: sc/inc/globstr.hrc:460
msgctxt "STR_COND_LASTWEEK"
msgid "last week"
msgstr ""
-#: sc/inc/globstr.hrc:460
+#: sc/inc/globstr.hrc:461
msgctxt "STR_COND_NEXTWEEK"
msgid "next week"
msgstr ""
-#: sc/inc/globstr.hrc:461
+#: sc/inc/globstr.hrc:462
msgctxt "STR_COND_THISMONTH"
msgid "this month"
msgstr ""
-#: sc/inc/globstr.hrc:462
+#: sc/inc/globstr.hrc:463
msgctxt "STR_COND_LASTMONTH"
msgid "last month"
msgstr ""
-#: sc/inc/globstr.hrc:463
+#: sc/inc/globstr.hrc:464
msgctxt "STR_COND_NEXTMONTH"
msgid "next month"
msgstr ""
-#: sc/inc/globstr.hrc:464
+#: sc/inc/globstr.hrc:465
msgctxt "STR_COND_THISYEAR"
msgid "this year"
msgstr ""
-#: sc/inc/globstr.hrc:465
+#: sc/inc/globstr.hrc:466
msgctxt "STR_COND_LASTYEAR"
msgid "last year"
msgstr ""
-#: sc/inc/globstr.hrc:466
+#: sc/inc/globstr.hrc:467
msgctxt "STR_COND_NEXTYEAR"
msgid "next year"
msgstr ""
-#: sc/inc/globstr.hrc:467
+#: sc/inc/globstr.hrc:468
msgctxt "STR_COND_AND"
msgid "and"
msgstr "and"
-#: sc/inc/globstr.hrc:468
+#: sc/inc/globstr.hrc:469
msgctxt "STR_ERR_CONDFORMAT_PROTECTED"
msgid "Conditional Formats can not be created, deleted or changed in protected sheets."
msgstr ""
-#: sc/inc/globstr.hrc:469
+#: sc/inc/globstr.hrc:470
msgctxt "STR_EDIT_EXISTING_COND_FORMATS"
msgid ""
"The selected cell already contains conditional formatting. You can either edit the existing conditional format or you define a new overlapping conditional format.\n"
@@ -2294,7 +2299,7 @@ msgid ""
" Do you want to edit the existing conditional format?"
msgstr ""
-#: sc/inc/globstr.hrc:470
+#: sc/inc/globstr.hrc:471
msgctxt "STR_QUERY_FORMULA_RECALC_ONLOAD_ODS"
msgid ""
"This document was last saved by an application other than %PRODUCTNAME. Some formula cells may produce different results when recalculated.\n"
@@ -2302,7 +2307,7 @@ msgid ""
"Do you want to recalculate all formula cells in this document now?"
msgstr ""
-#: sc/inc/globstr.hrc:471
+#: sc/inc/globstr.hrc:472
msgctxt "STR_QUERY_FORMULA_RECALC_ONLOAD_XLS"
msgid ""
"This document was last saved by Excel. Some formula cells may produce different results when recalculated.\n"
@@ -2310,77 +2315,77 @@ msgid ""
"Do you want to recalculate all formula cells now?"
msgstr ""
-#: sc/inc/globstr.hrc:472
+#: sc/inc/globstr.hrc:473
msgctxt "STR_NO_INSERT_DELETE_OVER_PIVOT_TABLE"
msgid "You cannot insert or delete cells when the affected range intersects with pivot table."
msgstr ""
-#: sc/inc/globstr.hrc:473
+#: sc/inc/globstr.hrc:474
msgctxt "STR_DPFIELD_GROUP_BY_SECONDS"
msgid "Seconds"
msgstr "सेकेण्ड"
-#: sc/inc/globstr.hrc:474
+#: sc/inc/globstr.hrc:475
msgctxt "STR_DPFIELD_GROUP_BY_MINUTES"
msgid "Minutes"
msgstr "मिनेट"
-#: sc/inc/globstr.hrc:475
+#: sc/inc/globstr.hrc:476
msgctxt "STR_DPFIELD_GROUP_BY_HOURS"
msgid "Hours"
msgstr "घण्टा"
-#: sc/inc/globstr.hrc:476
+#: sc/inc/globstr.hrc:477
msgctxt "STR_DPFIELD_GROUP_BY_DAYS"
msgid "Days"
msgstr "दिनहरू"
-#: sc/inc/globstr.hrc:477
+#: sc/inc/globstr.hrc:478
msgctxt "STR_DPFIELD_GROUP_BY_MONTHS"
msgid "Months"
msgstr "महिनाहरू"
-#: sc/inc/globstr.hrc:478
+#: sc/inc/globstr.hrc:479
msgctxt "STR_DPFIELD_GROUP_BY_QUARTERS"
msgid "Quarters"
msgstr "चौमासिक"
-#: sc/inc/globstr.hrc:479
+#: sc/inc/globstr.hrc:480
msgctxt "STR_DPFIELD_GROUP_BY_YEARS"
msgid "Years"
msgstr "वर्ष"
-#: sc/inc/globstr.hrc:480
+#: sc/inc/globstr.hrc:481
msgctxt "STR_INVALIDVAL"
msgid "Invalid target value."
msgstr "अवैध लक्ष मान"
-#: sc/inc/globstr.hrc:481
+#: sc/inc/globstr.hrc:482
msgctxt "STR_INVALIDVAR"
msgid "Undefined name for variable cell."
msgstr "चल कक्षका लागि अपरिभाषित नाम"
-#: sc/inc/globstr.hrc:482
+#: sc/inc/globstr.hrc:483
msgctxt "STR_INVALIDFORM"
msgid "Undefined name as formula cell."
msgstr "सूत्र कक्ष जस्तै अपरिभाषित नाम"
-#: sc/inc/globstr.hrc:483
+#: sc/inc/globstr.hrc:484
msgctxt "STR_NOFORMULA"
msgid "Formula cell must contain a formula."
msgstr ""
-#: sc/inc/globstr.hrc:484
+#: sc/inc/globstr.hrc:485
msgctxt "STR_INVALIDINPUT"
msgid "Invalid input."
msgstr "अवैध अनुक्रमाणिका ।"
-#: sc/inc/globstr.hrc:485
+#: sc/inc/globstr.hrc:486
msgctxt "STR_INVALIDCONDITION"
msgid "Invalid condition."
msgstr ""
-#: sc/inc/globstr.hrc:486
+#: sc/inc/globstr.hrc:487
msgctxt "STR_QUERYREMOVE"
msgid ""
"Should the entry\n"
@@ -2388,137 +2393,137 @@ msgid ""
"be deleted?"
msgstr ""
-#: sc/inc/globstr.hrc:487
+#: sc/inc/globstr.hrc:488
msgctxt "STR_COPYLIST"
msgid "Copy List"
msgstr ""
-#: sc/inc/globstr.hrc:488
+#: sc/inc/globstr.hrc:489
msgctxt "STR_COPYFROM"
msgid "List from"
msgstr ""
-#: sc/inc/globstr.hrc:489
+#: sc/inc/globstr.hrc:490
msgctxt "STR_COPYERR"
msgid "Cells without text have been ignored."
msgstr ""
-#: sc/inc/globstr.hrc:490
+#: sc/inc/globstr.hrc:491
#, c-format
msgctxt "STR_CTRLCLICKHYPERLINK"
msgid "%s-click to follow hyperlink:"
msgstr ""
-#: sc/inc/globstr.hrc:491
+#: sc/inc/globstr.hrc:492
msgctxt "STR_CLICKHYPERLINK"
msgid "click to open hyperlink:"
msgstr ""
-#: sc/inc/globstr.hrc:492
+#: sc/inc/globstr.hrc:493
msgctxt "STR_PRINT_PREVIEW_NODATA"
msgid "No Data"
msgstr ""
-#: sc/inc/globstr.hrc:493
+#: sc/inc/globstr.hrc:494
msgctxt "STR_PRINT_PREVIEW_EMPTY_RANGE"
msgid "Print Range Empty"
msgstr ""
-#: sc/inc/globstr.hrc:494
+#: sc/inc/globstr.hrc:495
#, fuzzy
msgctxt "STR_UNDO_CONDFORMAT"
msgid "Conditional Format"
msgstr "ससर्त ढाँचा"
-#: sc/inc/globstr.hrc:495
+#: sc/inc/globstr.hrc:496
#, fuzzy
msgctxt "STR_UNDO_CONDFORMAT_LIST"
msgid "Conditional Formats"
msgstr "ससर्त ढाँचा"
-#: sc/inc/globstr.hrc:496
+#: sc/inc/globstr.hrc:497
msgctxt "STR_UNDO_FORMULA_TO_VALUE"
msgid "Convert Formula To Value"
msgstr ""
-#: sc/inc/globstr.hrc:497
+#: sc/inc/globstr.hrc:498
msgctxt "STR_UNQUOTED_STRING"
msgid "Strings without quotes are interpreted as column/row labels."
msgstr ""
-#: sc/inc/globstr.hrc:498
+#: sc/inc/globstr.hrc:499
msgctxt "STR_ENTER_VALUE"
msgid "Enter a value!"
msgstr ""
-#: sc/inc/globstr.hrc:499
+#: sc/inc/globstr.hrc:500
msgctxt "STR_TABLE_COUNT"
msgid "Sheet %1 of %2"
msgstr ""
-#: sc/inc/globstr.hrc:500
+#: sc/inc/globstr.hrc:501
msgctxt "STR_FUNCTIONS_FOUND"
msgid "%1 and %2 more"
msgstr ""
-#: sc/inc/globstr.hrc:501
+#: sc/inc/globstr.hrc:502
#, fuzzy
msgctxt "STR_GENERAL"
msgid "General"
msgstr "साधारण"
-#: sc/inc/globstr.hrc:502
+#: sc/inc/globstr.hrc:503
msgctxt "STR_NUMBER"
msgid "Number"
msgstr "नम्बर"
-#: sc/inc/globstr.hrc:503
+#: sc/inc/globstr.hrc:504
msgctxt "STR_PERCENT"
msgid "Percent"
msgstr "प्रतिशत"
-#: sc/inc/globstr.hrc:504
+#: sc/inc/globstr.hrc:505
msgctxt "STR_CURRENCY"
msgid "Currency"
msgstr "मुद्रा"
-#: sc/inc/globstr.hrc:505
+#: sc/inc/globstr.hrc:506
msgctxt "STR_DATE"
msgid "Date"
msgstr "मिति"
-#: sc/inc/globstr.hrc:506
+#: sc/inc/globstr.hrc:507
msgctxt "STR_TIME"
msgid "Time"
msgstr "समय"
-#: sc/inc/globstr.hrc:507
+#: sc/inc/globstr.hrc:508
msgctxt "STR_SCIENTIFIC"
msgid "Scientific"
msgstr ""
-#: sc/inc/globstr.hrc:508
+#: sc/inc/globstr.hrc:509
#, fuzzy
msgctxt "STR_FRACTION"
msgid "Fraction"
msgstr "प्रकार्य"
-#: sc/inc/globstr.hrc:509
+#: sc/inc/globstr.hrc:510
msgctxt "STR_BOOLEAN_VALUE"
msgid "Boolean Value"
msgstr ""
-#: sc/inc/globstr.hrc:510
+#: sc/inc/globstr.hrc:511
msgctxt "STR_TEXT"
msgid "Text"
msgstr "पाठ"
-#: sc/inc/globstr.hrc:511
+#: sc/inc/globstr.hrc:512
msgctxt "STR_QUERY_PIVOTTABLE_DELTAB"
msgid "The selected sheet(s) contain source data of related pivot tables that will be lost. Are you sure you want to delete the selected sheet(s)?"
msgstr ""
-#: sc/inc/globstr.hrc:512
+#: sc/inc/globstr.hrc:513
msgctxt "STR_ERR_NAME_INVALID_CELL_REF"
msgid "Invalid name. Reference to a cell, or a range of cells not allowed."
msgstr ""
@@ -10666,8 +10671,8 @@ msgstr "मोड"
#: sc/inc/scfuncs.hrc:3010
msgctxt "SC_OPCODE_T_TEST"
-msgid "Mode specifies the number of distribution tails to return. 1= one-tailed, 2 = two-tailed distribution"
-msgstr "फर्काउन परिणाम वितरणको नम्बर मोडले निर्दिष्ट गर्दछ । १= एक परिणाम, २= दुई परिणाम वितरण"
+msgid "Mode specifies the number of distribution tails to return. 1 = one-tailed, 2 = two-tailed distribution"
+msgstr ""
#: sc/inc/scfuncs.hrc:3011
msgctxt "SC_OPCODE_T_TEST"
@@ -10713,8 +10718,8 @@ msgstr "मोड"
#: sc/inc/scfuncs.hrc:3024
msgctxt "SC_OPCODE_T_TEST_MS"
-msgid "Mode specifies the number of distribution tails to return. 1= one-tailed, 2 = two-tailed distribution"
-msgstr "फर्काउन परिणाम वितरणको नम्बर मोडले निर्दिष्ट गर्दछ । १= एक परिणाम, २= दुई परिणाम वितरण"
+msgid "Mode specifies the number of distribution tails to return. 1 = one-tailed, 2 = two-tailed distribution"
+msgstr ""
#: sc/inc/scfuncs.hrc:3025
msgctxt "SC_OPCODE_T_TEST_MS"
@@ -18465,22 +18470,22 @@ msgctxt "mergecellsdialog|MergeCellsDialog"
msgid "Merge Cells"
msgstr "कक्षहरू गाभ्नुहोस्"
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:81
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:84
msgctxt "mergecellsdialog|label"
msgid "Some cells are not empty."
msgstr ""
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:96
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:99
msgctxt "mergecellsdialog|move-cells-radio"
msgid "Move the contents of the hidden cells into the first cell"
msgstr ""
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:112
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:115
msgctxt "mergecellsdialog|empty-cells-radio"
msgid "Empty the contents of the hidden cells"
msgstr ""
-#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:128
+#: sc/uiconfig/scalc/ui/mergecellsdialog.ui:131
msgctxt "mergecellsdialog|keep-content-radio"
msgid "Keep the contents of the hidden cells"
msgstr ""
diff --git a/source/ne/sd/messages.po b/source/ne/sd/messages.po
index 978f4429ad9..e93533bde62 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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2018-04-29 16:59+0000\n"
"Last-Translator: निराजन पन्त <nirajan_pant@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -16,174 +16,174 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1525021186.000000\n"
-#: sd/inc/DocumentRenderer.hrc:29
+#: sd/inc/DocumentRenderer.hrc:27
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Slides"
msgstr "स्लाइड"
-#: sd/inc/DocumentRenderer.hrc:30
+#: sd/inc/DocumentRenderer.hrc:28
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Handouts"
msgstr "ह्यान्डआउटहरू"
-#: sd/inc/DocumentRenderer.hrc:31
+#: sd/inc/DocumentRenderer.hrc:29
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Notes"
msgstr "द्रष्टव्य"
-#: sd/inc/DocumentRenderer.hrc:32
+#: sd/inc/DocumentRenderer.hrc:30
msgctxt "STR_IMPRESS_PRINT_UI_CONTENT_CHOICES"
msgid "Outline"
msgstr "रूपरेखा"
-#: sd/inc/DocumentRenderer.hrc:37
+#: sd/inc/DocumentRenderer.hrc:35
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "According to layout"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:38
+#: sd/inc/DocumentRenderer.hrc:36
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "1"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:39
+#: sd/inc/DocumentRenderer.hrc:37
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "2"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:40
+#: sd/inc/DocumentRenderer.hrc:38
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "3"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:41
+#: sd/inc/DocumentRenderer.hrc:39
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "4"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:42
+#: sd/inc/DocumentRenderer.hrc:40
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "6"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:43
+#: sd/inc/DocumentRenderer.hrc:41
msgctxt "STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES"
msgid "9"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:48
+#: sd/inc/DocumentRenderer.hrc:46
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_ORDER_CHOICES"
msgid "Left to right, then down"
msgstr "बायाँ बाट दायाँ, त्यसपछि तल"
-#: sd/inc/DocumentRenderer.hrc:49
+#: sd/inc/DocumentRenderer.hrc:47
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_ORDER_CHOICES"
msgid "Top to bottom, then right"
msgstr "माथिबाट तल, त्यसपछि दायाँ"
-#: sd/inc/DocumentRenderer.hrc:54
+#: sd/inc/DocumentRenderer.hrc:52
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Original colors"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:55
+#: sd/inc/DocumentRenderer.hrc:53
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Grayscale"
msgstr "ग्रेस्केलहरू"
-#: sd/inc/DocumentRenderer.hrc:56
+#: sd/inc/DocumentRenderer.hrc:54
msgctxt "STR_IMPRESS_PRINT_UI_QUALITY_CHOICES"
msgid "Black & white"
msgstr "श्यामश्वेत"
-#: sd/inc/DocumentRenderer.hrc:61
+#: sd/inc/DocumentRenderer.hrc:59
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Original size"
msgstr "मौलिक साइज"
-#: sd/inc/DocumentRenderer.hrc:62
+#: sd/inc/DocumentRenderer.hrc:60
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Fit to printable page"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:63
+#: sd/inc/DocumentRenderer.hrc:61
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Distribute on multiple sheets of paper"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:64
+#: sd/inc/DocumentRenderer.hrc:62
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES"
msgid "Tile sheet of paper with repeated slides"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:69
+#: sd/inc/DocumentRenderer.hrc:67
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Original size"
msgstr "मौलिक साइज"
-#: sd/inc/DocumentRenderer.hrc:70
+#: sd/inc/DocumentRenderer.hrc:68
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Fit to printable page"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:71
+#: sd/inc/DocumentRenderer.hrc:69
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Distribute on multiple sheets of paper"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:72
+#: sd/inc/DocumentRenderer.hrc:70
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW"
msgid "Tile sheet of paper with repeated pages"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:77
+#: sd/inc/DocumentRenderer.hrc:75
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "All pages"
msgstr "सबै पृष्ठहरू"
-#: sd/inc/DocumentRenderer.hrc:78
+#: sd/inc/DocumentRenderer.hrc:76
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "Front sides / right pages"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:79
+#: sd/inc/DocumentRenderer.hrc:77
msgctxt "STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST"
msgid "Back sides / left pages"
msgstr ""
-#: sd/inc/DocumentRenderer.hrc:84
+#: sd/inc/DocumentRenderer.hrc:82
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~All slides"
msgstr "सबै स्लाईडहरू"
-#: sd/inc/DocumentRenderer.hrc:85
+#: sd/inc/DocumentRenderer.hrc:83
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~Slides"
msgstr "स्लाइड"
-#: sd/inc/DocumentRenderer.hrc:86
+#: sd/inc/DocumentRenderer.hrc:84
#, fuzzy
msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Se~lection"
msgstr "चयन"
-#: sd/inc/DocumentRenderer.hrc:91
+#: sd/inc/DocumentRenderer.hrc:89
#, fuzzy
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "~All pages"
msgstr "सबै पृष्ठहरू"
-#: sd/inc/DocumentRenderer.hrc:92
+#: sd/inc/DocumentRenderer.hrc:90
#, fuzzy
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Pa~ges"
msgstr "पृष्ठ"
-#: sd/inc/DocumentRenderer.hrc:93
+#: sd/inc/DocumentRenderer.hrc:91
#, fuzzy
msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE"
msgid "Se~lection"
diff --git a/source/ne/svx/messages.po b/source/ne/svx/messages.po
index 99ececdf20d..617c81c358f 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: 2018-05-16 16:53+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2018-04-27 09:59+0000\n"
"Last-Translator: Dipesh Kumar <dipesh009@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -5484,7 +5484,7 @@ msgstr ""
#: svx/uiconfig/ui/safemodedialog.ui:432
msgctxt "safemodedialog|btn_create_zip"
-msgid "Create Zip Archive from User Profile"
+msgid "Archive User Profile"
msgstr ""
#: svx/uiconfig/ui/safemodedialog.ui:445
@@ -9139,9 +9139,9 @@ msgid "Red"
msgstr "रातो"
#: include/svx/strings.hrc:565
-msgctxt "RID_SVXSTR_COLOR_VIOLET"
-msgid "Violet"
-msgstr "बैजनी"
+msgctxt "RID_SVXSTR_COLOR_MAGENTA"
+msgid "Magenta"
+msgstr "म्याजेन्टा"
#: include/svx/strings.hrc:566
msgctxt "RID_SVXSTR_COLOR_PURPLE"
@@ -9206,8 +9206,8 @@ msgid "Light Red"
msgstr "हल्का रातो"
#: include/svx/strings.hrc:579
-msgctxt "RID_SVXSTR_COLOR_LIGHTVIOLET"
-msgid "Light Violet"
+msgctxt "RID_SVXSTR_COLOR_LIGHTMAGENTA"
+msgid "Light Magenta"
msgstr ""
#: include/svx/strings.hrc:580
@@ -9273,8 +9273,8 @@ msgid "Dark Red"
msgstr "गाढा रातो"
#: include/svx/strings.hrc:593
-msgctxt "RID_SVXSTR_COLOR_DARKVIOLET1"
-msgid "Dark Violet"
+msgctxt "RID_SVXSTR_COLOR_DARKMAGENTA"
+msgid "Dark Magenta"
msgstr ""
#: include/svx/strings.hrc:594
@@ -9309,55 +9309,55 @@ msgstr ""
#. Elements of the Tonal color palette
#: include/svx/strings.hrc:601
+msgctxt "RID_SVXSTR_COLOR_VIOLET"
+msgid "Violet"
+msgstr "बैजनी"
+
+#: include/svx/strings.hrc:602
msgctxt "RID_SVXSTR_COLOR_VIOLET_OUG"
msgid "Violet (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:602
+#: include/svx/strings.hrc:603
msgctxt "RID_SVXSTR_COLOR_BLUE_OUG"
msgid "Blue (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:603
+#: include/svx/strings.hrc:604
msgctxt "RID_SVXSTR_COLOR_AZURE_OUG"
msgid "Azure (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:604
+#: include/svx/strings.hrc:605
msgctxt "RID_SVXSTR_COLOR_SPRINGGREEN_OUG"
msgid "Spring Green (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:605
+#: include/svx/strings.hrc:606
msgctxt "RID_SVXSTR_COLOR_GREEN_OUG"
msgid "Green (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:606
+#: include/svx/strings.hrc:607
msgctxt "RID_SVXSTR_COLOR_CHARTREUSEGREEN_OUG"
msgid "Chartreuse Green (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:607
+#: include/svx/strings.hrc:608
msgctxt "RID_SVXSTR_COLOR_ORANGE_OUG"
msgid "Orange (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:608
+#: include/svx/strings.hrc:609
msgctxt "RID_SVXSTR_COLOR_RED_OUG"
msgid "Red (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:609
+#: include/svx/strings.hrc:610
msgctxt "RID_SVXSTR_COLOR_ROSE_OUG"
msgid "Rose (Out of Gamut)"
msgstr ""
-#: include/svx/strings.hrc:610
-msgctxt "RID_SVXSTR_COLOR_MAGENTA"
-msgid "Magenta"
-msgstr "म्याजेन्टा"
-
#: include/svx/strings.hrc:611
msgctxt "RID_SVXSTR_COLOR_AZURE"
msgid "Azure"
@@ -12509,12 +12509,12 @@ msgstr ""
#: include/svx/strings.hrc:1273
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_6"
-msgid "Check mark bullets"
+msgid "Cross mark bullets"
msgstr ""
#: include/svx/strings.hrc:1274
msgctxt "RID_SVXSTR_BULLET_DESCRIPTION_7"
-msgid "Tick mark bullets"
+msgid "Check mark bullets"
msgstr ""
#: include/svx/strings.hrc:1275
diff --git a/source/ne/sw/messages.po b/source/ne/sw/messages.po
index 7447ec6e599..f83c56162da 100644
--- a/source/ne/sw/messages.po
+++ b/source/ne/sw/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: 2018-05-22 13:17+0200\n"
-"PO-Revision-Date: 2018-05-03 16:45+0000\n"
-"Last-Translator: Dipesh Kumar <dipesh009@gmail.com>\n"
+"POT-Creation-Date: 2018-06-12 14:41+0200\n"
+"PO-Revision-Date: 2018-05-24 17:58+0000\n"
+"Last-Translator: Saroj Dhakal <lotusnagarkot@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ne\n"
"MIME-Version: 1.0\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1525365929.000000\n"
+"X-POOTLE-MTIME: 1527184739.000000\n"
#: sw/inc/app.hrc:29
#, fuzzy
@@ -1220,13 +1220,13 @@ msgstr "उद्धरण"
#: sw/inc/strings.hrc:172
msgctxt "STR_POOLCOLL_TOX_ILLUSH"
-msgid "Illustration Index Heading"
-msgstr "दृष्टान्त अनुक्रमणिका शीर्षक"
+msgid "Figure Index Heading"
+msgstr ""
#: sw/inc/strings.hrc:173
msgctxt "STR_POOLCOLL_TOX_ILLUS1"
-msgid "Illustration Index 1"
-msgstr "दृष्टान्त अनुक्रमणिका १"
+msgid "Figure Index 1"
+msgstr ""
#: sw/inc/strings.hrc:174
msgctxt "STR_POOLCOLL_TOX_OBJECTH"
@@ -3691,10 +3691,9 @@ msgid "Table of Objects"
msgstr ""
#: sw/inc/strings.hrc:672
-#, fuzzy
msgctxt "STR_TOX_ILL"
-msgid "Illustration Index"
-msgstr "दृष्टान्त अनुक्रमणिका १"
+msgid "Table of Figures"
+msgstr ""
#: sw/inc/strings.hrc:673
#, c-format
@@ -4717,12 +4716,12 @@ msgstr "पृष्ठहरू"
#: sw/inc/strings.hrc:893
msgctxt "FMT_DDE_HOT"
msgid "DDE automatic"
-msgstr "डीडीई स्वचालित"
+msgstr "डिडिइ स्वचालित"
#: sw/inc/strings.hrc:894
msgctxt "FMT_DDE_NORMAL"
msgid "DDE manual"
-msgstr "डीडीई म्यानुअल"
+msgstr "डिडिइ म्यानुअल"
#: sw/inc/strings.hrc:895
msgctxt "FLD_INPUT_TEXT"
@@ -5108,7 +5107,7 @@ msgstr "त्यसपछि, अन्य"
#: sw/inc/strings.hrc:998
msgctxt "STR_DDE_CMD"
msgid "DDE Statement"
-msgstr "डीडीई कथन"
+msgstr "डिडिइ कथन"
#: sw/inc/strings.hrc:999
msgctxt "STR_INSTEXT"
@@ -9610,81 +9609,81 @@ msgctxt "footnotepage|label5"
msgid "Continuation Notice"
msgstr "निरन्तरताको सूचना"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:49
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:55
#, fuzzy
msgctxt "footnotesendnotestabpage|ftnntnum"
msgid "_Restart numbering"
msgstr "क्रमाङ्कन पुन: सुरु गर्नुहोस्"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:91
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:93
#, fuzzy
msgctxt "footnotesendnotestabpage|ftnoffset_label"
msgid "_Start at:"
msgstr "यसमा सुरु गर्नुहोस्"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:112
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:111
msgctxt "footnotesendnotestabpage|ftnntnumfmt"
msgid "Custom _format"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:155
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:150
#, fuzzy
msgctxt "footnotesendnotestabpage|ftnsuffix_label"
msgid "Aft_er:"
msgstr "पछि"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:199
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:188
#, fuzzy
msgctxt "footnotesendnotestabpage|ftnprefix_label"
msgid "Be_fore:"
msgstr "अघि"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:228
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:212
msgctxt "footnotesendnotestabpage|ftnntattextend"
msgid "Collec_t at end of text"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:252
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:234
#, fuzzy
msgctxt "footnotesendnotestabpage|label1"
msgid "Footnotes"
msgstr "पाद टिप्पणी"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:289
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:271
msgctxt "footnotesendnotestabpage|endntattextend"
msgid "C_ollect at end of section"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:315
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:295
#, fuzzy
msgctxt "footnotesendnotestabpage|endntnum"
msgid "_Restart numbering"
msgstr "क्रमाङ्कन पुन: सुरु गर्नुहोस्"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:357
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:333
#, fuzzy
msgctxt "footnotesendnotestabpage|endoffset_label"
msgid "_Start at:"
msgstr "यसमा सुरु गर्नुहोस्"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:378
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:351
msgctxt "footnotesendnotestabpage|endntnumfmt"
msgid "_Custom format"
msgstr ""
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:421
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:390
#, fuzzy
msgctxt "footnotesendnotestabpage|endsuffix_label"
msgid "Aft_er:"
msgstr "पछि"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:465
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:428
#, fuzzy
msgctxt "footnotesendnotestabpage|endprefix_label"
msgid "Be_fore:"
msgstr "अघि"
-#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:500
+#: sw/uiconfig/swriter/ui/footnotesendnotestabpage.ui:458
#, fuzzy
msgctxt "footnotesendnotestabpage|label2"
msgid "Endnotes"
@@ -9717,27 +9716,27 @@ msgctxt "formatsectiondialog|notes"
msgid "Footnotes/Endnotes"
msgstr "पादटिप्पणीहरू..."
-#: sw/uiconfig/swriter/ui/formattablepage.ui:63
+#: sw/uiconfig/swriter/ui/formattablepage.ui:77
msgctxt "formattablepage|nameft"
msgid "_Name"
msgstr "नाम"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:79
+#: sw/uiconfig/swriter/ui/formattablepage.ui:91
msgctxt "formattablepage|widthft"
msgid "W_idth"
msgstr "चौडाइ"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:110
+#: sw/uiconfig/swriter/ui/formattablepage.ui:120
msgctxt "formattablepage|relwidth"
msgid "Relati_ve"
msgstr "सम्बन्धित"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:155
+#: sw/uiconfig/swriter/ui/formattablepage.ui:160
msgctxt "formattablepage|label45"
msgid "Properties"
msgstr "गुणहरू"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:194
+#: sw/uiconfig/swriter/ui/formattablepage.ui:195
msgctxt "formattablepage|leftft"
msgid "Lef_t"
msgstr "बायाँ"
@@ -9747,62 +9746,62 @@ msgctxt "formattablepage|rightft"
msgid "Ri_ght"
msgstr "दायाँ"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:228
+#: sw/uiconfig/swriter/ui/formattablepage.ui:226
msgctxt "formattablepage|aboveft"
msgid "_Above"
msgstr "माथि"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:245
+#: sw/uiconfig/swriter/ui/formattablepage.ui:241
msgctxt "formattablepage|belowft"
msgid "_Below"
msgstr "तल"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:320
+#: sw/uiconfig/swriter/ui/formattablepage.ui:311
msgctxt "formattablepage|label46"
msgid "Spacing"
msgstr "खाली स्थान"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:362
+#: sw/uiconfig/swriter/ui/formattablepage.ui:349
msgctxt "formattablepage|full"
msgid "A_utomatic"
msgstr "स्वचालित"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:380
+#: sw/uiconfig/swriter/ui/formattablepage.ui:365
msgctxt "formattablepage|left"
msgid "_Left"
msgstr "बायाँ"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:398
+#: sw/uiconfig/swriter/ui/formattablepage.ui:381
msgctxt "formattablepage|fromleft"
msgid "_From left"
msgstr "बायाँबाट"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:416
+#: sw/uiconfig/swriter/ui/formattablepage.ui:397
msgctxt "formattablepage|right"
msgid "R_ight"
msgstr "दायाँ"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:435
+#: sw/uiconfig/swriter/ui/formattablepage.ui:413
msgctxt "formattablepage|center"
msgid "_Center"
msgstr "केन्द्र"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:453
+#: sw/uiconfig/swriter/ui/formattablepage.ui:429
msgctxt "formattablepage|free"
msgid "_Manual"
msgstr "म्यानुअल"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:478
+#: sw/uiconfig/swriter/ui/formattablepage.ui:452
msgctxt "formattablepage|label43"
msgid "Alignment"
msgstr "पङ्क्तिबद्धता"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:522
+#: sw/uiconfig/swriter/ui/formattablepage.ui:491
msgctxt "formattablepage|label53"
msgid "Text _direction"
msgstr "पाठ दिशा"
-#: sw/uiconfig/swriter/ui/formattablepage.ui:553
+#: sw/uiconfig/swriter/ui/formattablepage.ui:519
#, fuzzy
msgctxt "formattablepage|label44"
msgid "Properties "
@@ -10185,24 +10184,29 @@ msgctxt "headerfootermenu|insert_pagenumber"
msgid "Insert Page Number"
msgstr ""
-#: sw/uiconfig/swriter/ui/indentpage.ui:52
+#: sw/uiconfig/swriter/ui/headerfootermenu.ui:42
+msgctxt "headerfootermenu|insert_pagecount"
+msgid "Insert Page Count"
+msgstr ""
+
+#: sw/uiconfig/swriter/ui/indentpage.ui:57
#, fuzzy
msgctxt "indentpage|label1"
msgid "_Before section"
msgstr "विभागको अघि"
-#: sw/uiconfig/swriter/ui/indentpage.ui:67
+#: sw/uiconfig/swriter/ui/indentpage.ui:71
#, fuzzy
msgctxt "indentpage|label3"
msgid "_After section"
msgstr "विभागको पछि"
-#: sw/uiconfig/swriter/ui/indentpage.ui:113
+#: sw/uiconfig/swriter/ui/indentpage.ui:115
msgctxt "indentpage|label2"
msgid "Indent"
msgstr "इन्डेन्ट"
-#: sw/uiconfig/swriter/ui/indentpage.ui:142
+#: sw/uiconfig/swriter/ui/indentpage.ui:155
msgctxt "indentpage|preview-atkobject"
msgid "Example"
msgstr "उदाहरण"
@@ -13949,7 +13953,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:68
msgctxt "optcompatpage|format"
-msgid "MS Word-compatible trailing blanks"
+msgid "Word-compatible trailing blanks"
msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:69
@@ -13959,7 +13963,7 @@ msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:70
msgctxt "optcompatpage|format"
-msgid "A database field (e.g., MailMerge) with empty value hides its paragraph"
+msgid "Hide paragraphs of database fields (e.g., mail merge) with an empty value"
msgstr ""
#: sw/uiconfig/swriter/ui/optcompatpage.ui:71
@@ -16799,124 +16803,124 @@ msgctxt "tableproperties|background"
msgid "Background"
msgstr "पृष्ठभूमि"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:25
-msgctxt "tabletextflowpage|liststore1"
-msgid "Horizontal"
-msgstr "तेर्सो"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:29
-msgctxt "tabletextflowpage|liststore1"
-msgid "Vertical"
-msgstr "ठाडो"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:33
-msgctxt "tabletextflowpage|liststore1"
-msgid "Use superordinate object settings"
-msgstr "उच्चकोटि वस्तुको सेटिङहरू प्रयोग गर्नुहोस्"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:47
-msgctxt "tabletextflowpage|liststore2"
-msgid "Top"
-msgstr "माथि"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:51
-msgctxt "tabletextflowpage|liststore2"
-msgid "Centered"
-msgstr "केन्द्रित"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:55
-msgctxt "tabletextflowpage|liststore2"
-msgid "Bottom"
-msgstr "तल"
-
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:97
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:53
msgctxt "tabletextflowpage|break"
msgid "_Break"
msgstr "विच्छेद गर्नुहोस्"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:112
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:68
msgctxt "tabletextflowpage|page"
msgid "_Page"
msgstr "पृष्ठ"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:132
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:87
msgctxt "tabletextflowpage|column"
msgid "Col_umn"
msgstr "स्तम्भ"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:151
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:106
msgctxt "tabletextflowpage|before"
msgid "Be_fore"
msgstr "अघि"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:171
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:125
msgctxt "tabletextflowpage|after"
msgid "_After"
msgstr "पछि"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:203
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:158
msgctxt "tabletextflowpage|pagestyle"
msgid "With Page St_yle"
msgstr "पृष्ठ शैलीसँग"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:224
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:177
msgctxt "tabletextflowpage|pagenoft"
msgid "Page _number"
msgstr "पृष्ठ सङ्ख्या"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:257
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:213
#, fuzzy
msgctxt "tabletextflowpage|pagestylelb-atkobject"
msgid "With Page Style"
msgstr "पृष्ठ शैलीसँग"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:274
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:230
msgctxt "tabletextflowpage|split"
msgid "Allow _table to split across pages and columns"
msgstr "पृष्ठहरू र स्तम्भहरू वारपार विभाजन गर्नका लागि तालिकालाई अनुमति दिनुहोस्"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:289
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:245
msgctxt "tabletextflowpage|splitrow"
msgid "Allow row to break a_cross pages and columns"
msgstr "पृष्ठहरू र स्तम्भहरू वारपार बिच्छेद गर्नका लागि पङ्क्तिलाई अनुमति दिनुहोस्"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:306
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:262
msgctxt "tabletextflowpage|keep"
msgid "_Keep with next paragraph"
msgstr "पछिल्लो अनुच्छेदसँग राख्नुहोस्"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:328
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:284
#, fuzzy
msgctxt "tabletextflowpage|label40"
msgid "Text _orientation"
msgstr "पाठ अभिमूखिकरण"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:361
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:298
+msgctxt "tabletextflowpage|liststore1"
+msgid "Horizontal"
+msgstr "तेर्सो"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:299
+msgctxt "tabletextflowpage|liststore1"
+msgid "Vertical"
+msgstr "ठाडो"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:300
+msgctxt "tabletextflowpage|liststore1"
+msgid "Use superordinate object settings"
+msgstr "उच्चकोटि वस्तुको सेटिङहरू प्रयोग गर्नुहोस्"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:321
msgctxt "tabletextflowpage|headline"
msgid "R_epeat heading"
msgstr "शीर्षक दोहोर्याउनुस्"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:383
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:343
msgctxt "tabletextflowpage|label38"
msgid "The first "
msgstr ""
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:396
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:356
msgctxt "tabletextflowpage|label39"
msgid "rows"
msgstr "पङ्क्तिहरू"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:434
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:395
msgctxt "tabletextflowpage|label35"
msgid "Text Flow"
msgstr "पाठ प्रवाह"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:467
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:428
msgctxt "tabletextflowpage|label41"
msgid "_Vertical alignment"
msgstr "ठाडो पङ्क्तिबद्धता"
-#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:495
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:442
+msgctxt "tabletextflowpage|liststore2"
+msgid "Top"
+msgstr "माथि"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:443
+msgctxt "tabletextflowpage|liststore2"
+msgid "Centered"
+msgstr "केन्द्रित"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:444
+msgctxt "tabletextflowpage|liststore2"
+msgid "Bottom"
+msgstr "तल"
+
+#: sw/uiconfig/swriter/ui/tabletextflowpage.ui:460
msgctxt "tabletextflowpage|label36"
msgid "Alignment"
msgstr "पङ्क्तिबद्धता"
@@ -17734,10 +17738,9 @@ msgid "Alphabetical Index"
msgstr ""
#: sw/uiconfig/swriter/ui/tocindexpage.ui:58
-#, fuzzy
msgctxt "tocindexpage|liststore1"
-msgid "Illustration Index"
-msgstr "दृष्टान्त अनुक्रमणिका १"
+msgid "Table of Figures"
+msgstr ""
#: sw/uiconfig/swriter/ui/tocindexpage.ui:62
msgctxt "tocindexpage|liststore1"
diff --git a/source/ne/writerperfect/messages.po b/source/ne/writerperfect/messages.po
index dc00ff91f84..0098711747b 100644
--- a/source/ne/writerperfect/messages.po
+++ b/source/ne/writerperfect/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-16 16:54+0200\n"
+"POT-Creation-Date: 2018-06-04 15:43+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"
@@ -65,99 +65,99 @@ msgctxt "exportepub|generalft"
msgid "General"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:122
+#: writerperfect/uiconfig/ui/exportepub.ui:121
#, fuzzy
msgctxt "exportepub|versionft"
msgid "Version:"
msgstr "संस्करण:"
-#: writerperfect/uiconfig/ui/exportepub.ui:139
+#: writerperfect/uiconfig/ui/exportepub.ui:138
msgctxt "exportepub|epub3"
msgid "EPUB 3.0"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:140
+#: writerperfect/uiconfig/ui/exportepub.ui:139
msgctxt "exportepub|epub2"
msgid "EPUB 2.0"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:175
+#: writerperfect/uiconfig/ui/exportepub.ui:174
msgctxt "exportepub|splitft"
msgid "Split method:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:192
+#: writerperfect/uiconfig/ui/exportepub.ui:191
msgctxt "exportepub|splitpage"
msgid "Page break"
msgstr "पृष्ठ विच्छेद"
-#: writerperfect/uiconfig/ui/exportepub.ui:193
+#: writerperfect/uiconfig/ui/exportepub.ui:192
#, fuzzy
msgctxt "exportepub|splitheading"
msgid "Heading"
msgstr "शीर्षक"
-#: writerperfect/uiconfig/ui/exportepub.ui:228
+#: writerperfect/uiconfig/ui/exportepub.ui:227
msgctxt "exportepub|layoutft"
msgid "Layout method:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:245
+#: writerperfect/uiconfig/ui/exportepub.ui:244
msgctxt "exportepub|layoutreflowable"
msgid "Reflowable"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:246
+#: writerperfect/uiconfig/ui/exportepub.ui:245
msgctxt "exportepub|layoutfixed"
msgid "Fixed"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:281
+#: writerperfect/uiconfig/ui/exportepub.ui:280
msgctxt "exportepub|coverimageft"
msgid "Custom cover image:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:311
+#: writerperfect/uiconfig/ui/exportepub.ui:310
msgctxt "exportepub|coverbutton"
msgid "Browse..."
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:355
+#: writerperfect/uiconfig/ui/exportepub.ui:354
msgctxt "exportepub|mediadirft"
msgid "Custom media directory:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:385
+#: writerperfect/uiconfig/ui/exportepub.ui:384
msgctxt "exportepub|mediabutton"
msgid "Browse..."
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:429
+#: writerperfect/uiconfig/ui/exportepub.ui:428
msgctxt "exportepub|metadataft"
msgid "Metadata"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:470
+#: writerperfect/uiconfig/ui/exportepub.ui:468
msgctxt "exportepub|identifierft"
msgid "Identifier:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:485
+#: writerperfect/uiconfig/ui/exportepub.ui:483
msgctxt "exportepub|titleft"
msgid "Title:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:511
+#: writerperfect/uiconfig/ui/exportepub.ui:509
msgctxt "exportepub|authorft"
msgid "Author:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:537
+#: writerperfect/uiconfig/ui/exportepub.ui:535
msgctxt "exportepub|languageft"
msgid "Language:"
msgstr ""
-#: writerperfect/uiconfig/ui/exportepub.ui:563
+#: writerperfect/uiconfig/ui/exportepub.ui:561
msgctxt "exportepub|dateft"
msgid "Date:"
msgstr ""
diff --git a/source/nl/cui/messages.po b/source/nl/cui/messages.po
index c663889c3ae..51cfb11e331 100644
--- a/source/nl/cui/messages.po
+++ b/source/nl/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: 2018-05-22 13:16+0200\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
"PO-Revision-Date: 2018-05-09 06:55+0000\n"
"Last-Translator: kees538 <kees538@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -9872,97 +9872,97 @@ msgctxt "positionsizedialog|PositionAndSizeDialog"
msgid "Position and Size"
msgstr "Positie en grootte"
-#: cui/uiconfig/ui/positionsizedialog.ui:107
+#: cui/uiconfig/ui/positionsizedialog.ui:136
msgctxt "positionsizedialog|RID_SVXPAGE_POSITION_SIZE"
msgid "Position and Size"
msgstr "Positie en grootte"
-#: cui/uiconfig/ui/positionsizedialog.ui:129
+#: cui/uiconfig/ui/positionsizedialog.ui:182
msgctxt "positionsizedialog|RID_SVXPAGE_SWPOSSIZE"
msgid "Position and Size"
msgstr "Positie en grootte"
-#: cui/uiconfig/ui/positionsizedialog.ui:152
+#: cui/uiconfig/ui/positionsizedialog.ui:229
msgctxt "positionsizedialog|RID_SVXPAGE_ANGLE"
msgid "Rotation"
msgstr "Rotatie"
-#: cui/uiconfig/ui/positionsizedialog.ui:175
+#: cui/uiconfig/ui/positionsizedialog.ui:276
msgctxt "positionsizedialog|RID_SVXPAGE_SLANT"
msgid "Slant & Corner Radius"
msgstr "Helling & hoekradius"
-#: cui/uiconfig/ui/possizetabpage.ui:40
+#: cui/uiconfig/ui/possizetabpage.ui:61
msgctxt "possizetabpage|FT_POS_X"
msgid "Position _X:"
msgstr "Positie _X:"
-#: cui/uiconfig/ui/possizetabpage.ui:56
+#: cui/uiconfig/ui/possizetabpage.ui:75
msgctxt "possizetabpage|FT_POS_Y"
msgid "Position _Y:"
msgstr "Positie _Y:"
-#: cui/uiconfig/ui/possizetabpage.ui:110
+#: cui/uiconfig/ui/possizetabpage.ui:128
msgctxt "possizetabpage|FT_POSREFERENCE"
msgid "_Base point:"
msgstr "_Basispunt:"
-#: cui/uiconfig/ui/possizetabpage.ui:148
+#: cui/uiconfig/ui/possizetabpage.ui:182
msgctxt "possizetabpage|label1"
msgid "Position"
msgstr "Positie"
-#: cui/uiconfig/ui/possizetabpage.ui:190
+#: cui/uiconfig/ui/possizetabpage.ui:224
msgctxt "possizetabpage|FT_WIDTH"
msgid "Wi_dth:"
msgstr "Bree_dte:"
-#: cui/uiconfig/ui/possizetabpage.ui:206
+#: cui/uiconfig/ui/possizetabpage.ui:238
msgctxt "possizetabpage|FT_HEIGHT"
msgid "H_eight:"
msgstr "H_oogte:"
-#: cui/uiconfig/ui/possizetabpage.ui:247
+#: cui/uiconfig/ui/possizetabpage.ui:276
msgctxt "possizetabpage|CBX_SCALE"
msgid "_Keep ratio"
msgstr "_Verhoudingen behouden"
-#: cui/uiconfig/ui/possizetabpage.ui:279
+#: cui/uiconfig/ui/possizetabpage.ui:307
msgctxt "possizetabpage|FT_SIZEREFERENCE"
msgid "Base _point:"
msgstr "Basis_punt:"
-#: cui/uiconfig/ui/possizetabpage.ui:317
+#: cui/uiconfig/ui/possizetabpage.ui:361
msgctxt "possizetabpage|label2"
msgid "Size"
msgstr "Grootte"
-#: cui/uiconfig/ui/possizetabpage.ui:356
+#: cui/uiconfig/ui/possizetabpage.ui:401
msgctxt "possizetabpage|TSB_POSPROTECT"
msgid "Positio_n"
msgstr "Posi_tie"
-#: cui/uiconfig/ui/possizetabpage.ui:373
+#: cui/uiconfig/ui/possizetabpage.ui:418
msgctxt "possizetabpage|TSB_SIZEPROTECT"
msgid "_Size"
msgstr "_Grootte"
-#: cui/uiconfig/ui/possizetabpage.ui:397
+#: cui/uiconfig/ui/possizetabpage.ui:441
msgctxt "possizetabpage|label3"
msgid "Protect"
msgstr "Beveilig"
-#: cui/uiconfig/ui/possizetabpage.ui:430
+#: cui/uiconfig/ui/possizetabpage.ui:475
msgctxt "possizetabpage|TSB_AUTOGROW_WIDTH"
msgid "_Fit width to text"
msgstr "_Breedte aan tekst aanpassen"
-#: cui/uiconfig/ui/possizetabpage.ui:447
+#: cui/uiconfig/ui/possizetabpage.ui:492
msgctxt "possizetabpage|TSB_AUTOGROW_HEIGHT"
msgid "Fit _height to text"
msgstr "_Hoogte aan tekst aanpassen"
-#: cui/uiconfig/ui/possizetabpage.ui:471
+#: cui/uiconfig/ui/possizetabpage.ui:515
msgctxt "possizetabpage|label4"
msgid "Adapt"
msgstr "Aanpassen"
@@ -10162,47 +10162,47 @@ msgctxt "recordnumberdialog|label2"
msgid "go to record"
msgstr "ga naar record"
-#: cui/uiconfig/ui/rotationtabpage.ui:52
+#: cui/uiconfig/ui/rotationtabpage.ui:56
msgctxt "rotationtabpage|FT_POS_X"
msgid "Position _X:"
msgstr "Positie _X:"
-#: cui/uiconfig/ui/rotationtabpage.ui:66
+#: cui/uiconfig/ui/rotationtabpage.ui:70
msgctxt "rotationtabpage|FT_POS_Y"
msgid "Position _Y:"
msgstr "Positie _Y:"
-#: cui/uiconfig/ui/rotationtabpage.ui:116
+#: cui/uiconfig/ui/rotationtabpage.ui:123
msgctxt "rotationtabpage|FT_POSPRESETS"
msgid "_Default settings:"
msgstr "_Standaardinstellingen:"
-#: cui/uiconfig/ui/rotationtabpage.ui:130
+#: cui/uiconfig/ui/rotationtabpage.ui:151
msgctxt "rotationtabpage|CTL_RECT|tooltip_text"
msgid "Rotation point"
msgstr "Draaipunt"
-#: cui/uiconfig/ui/rotationtabpage.ui:155
+#: cui/uiconfig/ui/rotationtabpage.ui:178
msgctxt "rotationtabpage|label1"
msgid "Pivot Point"
msgstr "Draaipunt"
-#: cui/uiconfig/ui/rotationtabpage.ui:197
+#: cui/uiconfig/ui/rotationtabpage.ui:220
msgctxt "rotationtabpage|FT_ANGLE"
msgid "_Angle:"
msgstr "_Hoek:"
-#: cui/uiconfig/ui/rotationtabpage.ui:238
+#: cui/uiconfig/ui/rotationtabpage.ui:263
msgctxt "rotationtabpage|FT_ANGLEPRESETS"
msgid "Default _settings:"
msgstr "Standaard in_stellingen:"
-#: cui/uiconfig/ui/rotationtabpage.ui:252
+#: cui/uiconfig/ui/rotationtabpage.ui:287
msgctxt "rotationtabpage|CTL_ANGLE|tooltip_text"
msgid "Rotation Angle"
msgstr "Draaihoek"
-#: cui/uiconfig/ui/rotationtabpage.ui:277
+#: cui/uiconfig/ui/rotationtabpage.ui:314
msgctxt "rotationtabpage|label2"
msgid "Rotation Angle"
msgstr "Draaihoek"
@@ -10582,52 +10582,52 @@ msgctxt "similaritysearchdialog|relaxbox"
msgid "_Combine"
msgstr "_Samenvoegen"
-#: cui/uiconfig/ui/slantcornertabpage.ui:50
+#: cui/uiconfig/ui/slantcornertabpage.ui:70
msgctxt "slantcornertabpage|label5"
msgid "_X:"
msgstr "_X:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:88
+#: cui/uiconfig/ui/slantcornertabpage.ui:110
msgctxt "slantcornertabpage|label6"
msgid "_Y:"
msgstr "_Y:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:125
+#: cui/uiconfig/ui/slantcornertabpage.ui:149
msgctxt "slantcornertabpage|label3"
msgid "Control Point 1"
msgstr "Controlepunt 1"
-#: cui/uiconfig/ui/slantcornertabpage.ui:159
+#: cui/uiconfig/ui/slantcornertabpage.ui:183
msgctxt "slantcornertabpage|FT_RADIUS"
msgid "_Radius:"
msgstr "_Radius:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:189
+#: cui/uiconfig/ui/slantcornertabpage.ui:214
msgctxt "slantcornertabpage|label1"
msgid "Corner Radius"
msgstr "Hoekradius"
-#: cui/uiconfig/ui/slantcornertabpage.ui:223
+#: cui/uiconfig/ui/slantcornertabpage.ui:248
msgctxt "slantcornertabpage|FT_ANGLE"
msgid "_Angle:"
msgstr "_Hoek:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:253
+#: cui/uiconfig/ui/slantcornertabpage.ui:279
msgctxt "slantcornertabpage|label2"
msgid "Slant"
msgstr "Helling instellen"
-#: cui/uiconfig/ui/slantcornertabpage.ui:294
+#: cui/uiconfig/ui/slantcornertabpage.ui:320
msgctxt "slantcornertabpage|label4"
msgid "_X:"
msgstr "_X:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:332
+#: cui/uiconfig/ui/slantcornertabpage.ui:360
msgctxt "slantcornertabpage|label7"
msgid "_Y:"
msgstr "_Y:"
-#: cui/uiconfig/ui/slantcornertabpage.ui:369
+#: cui/uiconfig/ui/slantcornertabpage.ui:399
msgctxt "slantcornertabpage|label8"
msgid "Control Point 2"
msgstr "Controlepunt 2"
@@ -10907,112 +10907,112 @@ msgctxt "storedwebconnectiondialog|change"
msgid "_Change Password..."
msgstr "_Wijzig wachtwoord..."
-#: cui/uiconfig/ui/swpossizepage.ui:74
+#: cui/uiconfig/ui/swpossizepage.ui:85
msgctxt "swpossizepage|widthft"
msgid "_Width:"
msgstr "_Breedte:"
-#: cui/uiconfig/ui/swpossizepage.ui:111
+#: cui/uiconfig/ui/swpossizepage.ui:123
msgctxt "swpossizepage|heightft"
msgid "H_eight:"
msgstr "H_oogte:"
-#: cui/uiconfig/ui/swpossizepage.ui:128
+#: cui/uiconfig/ui/swpossizepage.ui:141
msgctxt "swpossizepage|ratio"
msgid "_Keep ratio"
msgstr "_Verhoudingen behouden"
-#: cui/uiconfig/ui/swpossizepage.ui:149
+#: cui/uiconfig/ui/swpossizepage.ui:162
msgctxt "swpossizepage|label2"
msgid "Size"
msgstr "Grootte"
-#: cui/uiconfig/ui/swpossizepage.ui:205
+#: cui/uiconfig/ui/swpossizepage.ui:218
msgctxt "swpossizepage|topage"
msgid "To _page"
msgstr "Aan _pagina"
-#: cui/uiconfig/ui/swpossizepage.ui:222
+#: cui/uiconfig/ui/swpossizepage.ui:234
msgctxt "swpossizepage|topara"
msgid "To paragrap_h"
msgstr "Aan a_linea"
-#: cui/uiconfig/ui/swpossizepage.ui:238
+#: cui/uiconfig/ui/swpossizepage.ui:250
msgctxt "swpossizepage|tochar"
msgid "To cha_racter"
msgstr "Aan _teken"
-#: cui/uiconfig/ui/swpossizepage.ui:254
+#: cui/uiconfig/ui/swpossizepage.ui:266
msgctxt "swpossizepage|aschar"
msgid "_As character"
msgstr "_Als teken"
-#: cui/uiconfig/ui/swpossizepage.ui:270
+#: cui/uiconfig/ui/swpossizepage.ui:282
msgctxt "swpossizepage|toframe"
msgid "To _frame"
msgstr "Aan _frame"
-#: cui/uiconfig/ui/swpossizepage.ui:292
+#: cui/uiconfig/ui/swpossizepage.ui:304
msgctxt "swpossizepage|label1"
msgid "Anchor"
msgstr "Anker"
-#: cui/uiconfig/ui/swpossizepage.ui:333
+#: cui/uiconfig/ui/swpossizepage.ui:344
msgctxt "swpossizepage|horiposft"
msgid "Hori_zontal:"
msgstr "_Horizontaal:"
-#: cui/uiconfig/ui/swpossizepage.ui:347
+#: cui/uiconfig/ui/swpossizepage.ui:358
msgctxt "swpossizepage|horibyft"
msgid "b_y:"
msgstr "d_oor:"
-#: cui/uiconfig/ui/swpossizepage.ui:361
+#: cui/uiconfig/ui/swpossizepage.ui:372
msgctxt "swpossizepage|vertbyft"
msgid "_by:"
msgstr "_door:"
-#: cui/uiconfig/ui/swpossizepage.ui:375
+#: cui/uiconfig/ui/swpossizepage.ui:386
msgctxt "swpossizepage|horitoft"
msgid "_to:"
msgstr "_naar:"
-#: cui/uiconfig/ui/swpossizepage.ui:421
+#: cui/uiconfig/ui/swpossizepage.ui:433
msgctxt "swpossizepage|vertposft"
msgid "_Vertical:"
msgstr "_Verticaal:"
-#: cui/uiconfig/ui/swpossizepage.ui:457
+#: cui/uiconfig/ui/swpossizepage.ui:470
msgctxt "swpossizepage|verttoft"
msgid "t_o:"
msgstr "n_aar:"
-#: cui/uiconfig/ui/swpossizepage.ui:478
+#: cui/uiconfig/ui/swpossizepage.ui:492
msgctxt "swpossizepage|mirror"
msgid "_Mirror on even pages"
msgstr "Op even pagina's _spiegelen"
-#: cui/uiconfig/ui/swpossizepage.ui:495
+#: cui/uiconfig/ui/swpossizepage.ui:509
msgctxt "swpossizepage|followtextflow"
msgid "Follow te_xt flow"
msgstr "Volg te_kstverloop"
-#: cui/uiconfig/ui/swpossizepage.ui:518
+#: cui/uiconfig/ui/swpossizepage.ui:532
msgctxt "swpossizepage|label11"
msgid "Position"
msgstr "Positie"
-#: cui/uiconfig/ui/swpossizepage.ui:549
+#: cui/uiconfig/ui/swpossizepage.ui:563
msgctxt "swpossizepage|pos"
msgid "Positio_n"
msgstr "Posi_tie"
-#: cui/uiconfig/ui/swpossizepage.ui:565
+#: cui/uiconfig/ui/swpossizepage.ui:579
msgctxt "swpossizepage|size"
msgid "_Size"
msgstr "_Grootte"
-#: cui/uiconfig/ui/swpossizepage.ui:587
+#: cui/uiconfig/ui/swpossizepage.ui:601
msgctxt "swpossizepage|label3"
msgid "Protect"
msgstr "Beveiligen"
@@ -11202,12 +11202,12 @@ msgctxt "textattrtabpage|label2"
msgid "Spacing to Borders"
msgstr "Afstand tot randen"
-#: cui/uiconfig/ui/textattrtabpage.ui:425
+#: cui/uiconfig/ui/textattrtabpage.ui:423
msgctxt "textattrtabpage|TSB_FULL_WIDTH"
msgid "Full _width"
msgstr "Volledige _breedte"
-#: cui/uiconfig/ui/textattrtabpage.ui:448
+#: cui/uiconfig/ui/textattrtabpage.ui:446
msgctxt "textattrtabpage|label3"
msgid "Text Anchor"
msgstr "Tekstanker"
diff --git a/source/nl/filter/source/config/fragments/filters.po b/source/nl/filter/source/config/fragments/filters.po
index a7eaeea4224..f18e0887cfe 100644
--- a/source/nl/filter/source/config/fragments/filters.po
+++ b/source/nl/filter/source/config/fragments/filters.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: 2018-05-16 16:54+0200\n"
-"PO-Revision-Date: 2018-05-17 08:11+0000\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
+"PO-Revision-Date: 2018-06-06 06:39+0000\n"
"Last-Translator: kees538 <kees538@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: nl\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1526544696.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1528267143.000000\n"
#: ADO_rowset_XML.xcu
msgctxt ""
@@ -463,8 +463,8 @@ msgctxt ""
"MS Word 2003 XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Word 2003 XML"
-msgstr "Microsoft Word 2003 XML"
+msgid "Word 2003 XML"
+msgstr "Word 2003 XML"
#: MS_Word_2007_XML.xcu
msgctxt ""
@@ -1282,8 +1282,8 @@ msgctxt ""
"Calc MS Excel 2007 VBA XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Excel 2007-2016 XML (macro enabled)"
-msgstr "Microsoft Excel 2007-2016 XML (macro ingeschakeld)"
+msgid "Excel 2007–2019 (macro-enabled)"
+msgstr "Excel 2007–2019 (macro-ingeschakeld)"
#: calc_MS_Excel_2007_XML.xcu
msgctxt ""
diff --git a/source/nl/filter/source/config/fragments/types.po b/source/nl/filter/source/config/fragments/types.po
index 9e74098d41c..397a50327cd 100644
--- a/source/nl/filter/source/config/fragments/types.po
+++ b/source/nl/filter/source/config/fragments/types.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: 2018-05-08 15:11+0200\n"
-"PO-Revision-Date: 2018-05-09 06:57+0000\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
+"PO-Revision-Date: 2018-06-06 06:39+0000\n"
"Last-Translator: kees538 <kees538@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: nl\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1525849048.000000\n"
+"X-POOTLE-MTIME: 1528267151.000000\n"
#: MS_Excel_2007_Binary.xcu
msgctxt ""
@@ -292,8 +292,8 @@ msgctxt ""
"writer_MS_Word_2003_XML\n"
"UIName\n"
"value.text"
-msgid "Microsoft Word 2003 XML"
-msgstr "Microsoft Word 2003 XML"
+msgid "Word 2003 XML"
+msgstr "Word 2003 XML"
#: writer_MS_Word_2007_XML.xcu
msgctxt ""
diff --git a/source/nl/fpicker/messages.po b/source/nl/fpicker/messages.po
index e026a62c999..883432e0f1c 100644
--- a/source/nl/fpicker/messages.po
+++ b/source/nl/fpicker/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-22 13:16+0200\n"
-"PO-Revision-Date: 2018-03-01 08:58+0000\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
+"PO-Revision-Date: 2018-06-06 06:39+0000\n"
"Last-Translator: kees538 <kees538@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: nl\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1519894734.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1528267168.000000\n"
#: include/fpicker/strings.hrc:14
msgctxt "STR_SVT_FILEPICKER_AUTO_EXTENSION"
@@ -272,13 +272,13 @@ msgstr "Versleutel met GPG-sleutel"
#: fpicker/uiconfig/ui/foldernamedialog.ui:8
msgctxt "foldernamedialog|FolderNameDialog"
-msgid "Folder Name ?"
-msgstr "Mapnaam ?"
+msgid "Folder Name"
+msgstr "Mapnaam"
#: fpicker/uiconfig/ui/foldernamedialog.ui:91
msgctxt "foldernamedialog|label2"
-msgid "Na_me"
-msgstr "Naa_m"
+msgid "Na_me:"
+msgstr "Naa_m:"
#: fpicker/uiconfig/ui/foldernamedialog.ui:122
msgctxt "foldernamedialog|label1"
diff --git a/source/nl/helpcontent2/source/text/scalc/01.po b/source/nl/helpcontent2/source/text/scalc/01.po
index 97ea4643bd1..af0c9b74a44 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: 2018-05-08 15:11+0200\n"
-"PO-Revision-Date: 2018-05-09 07:08+0000\n"
+"PO-Revision-Date: 2018-06-04 05:55+0000\n"
"Last-Translator: kees538 <kees538@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: nl\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1525849707.000000\n"
+"X-POOTLE-MTIME: 1528091739.000000\n"
#: 01120000.xhp
msgctxt ""
@@ -13958,7 +13958,7 @@ msgctxt ""
"par_id7985168\n"
"help.text"
msgid "QUOTIENT is equivalent to <item type=\"literal\">INT(numerator/denominator)</item> for same-sign numerator and denominator, except that it may report errors with different error codes. More generally, it is equivalent to <item type=\"literal\">INT(numerator/denominator/SIGN(numerator/denominator))*SIGN(numerator/denominator)</item>."
-msgstr ""
+msgstr "QUOTIENT is equivalent met <item type=\"literal\">GEH.GET.(teller/noemer)</item> voor teller en noemer met hetzelfde teken, behalve dat het fouten met verschillende foutcodes kan geven. Meer in het algemeen is het equivalent met <item type=\"literal\">GEH.GET.(teller/noemer/POS.NEG(teller/noemer))*POS.NEG(teller/noemer)</item>."
#: 04060106.xhp
msgctxt ""
@@ -63270,7 +63270,7 @@ msgctxt ""
"par_id651517132994921\n"
"help.text"
msgid "If cell A1 contains the Cyrillic text \"автомобиль\", <item type=\"input\">=ENCODEURL(A1)</item> returns %D0%B0%D0%B2%D1%82%D0%BE%D0%BC%D0%BE%D0%B1%D0%B8%D0%BB%D1%8C (the word \"автомобиль\" means car in Russian)."
-msgstr ""
+msgstr "Als cel A1 de cyrillische tekst \"автомобиль\" bevat, <item type=\"input\">=URL.CODEREN(A1)</item> geeft %D0%B0%D0%B2%D1%82%D0%BE%D0%BC%D0%BE%D0%B1%D0%B8%D0%BB%D1%8C (het woord \"автомобиль\" betekent auto in het Russisch)."
#: func_webservice.xhp
msgctxt ""
@@ -63278,7 +63278,7 @@ msgctxt ""
"par_id991517133057478\n"
"help.text"
msgid "If cell B1 contains the text \"車\", <item type=\"input\">=ENCODEURL(B1)</item> returns %E8%BB%8A (\"車\" means car in Japanese)."
-msgstr ""
+msgstr "Als cel B1 de tekst \"車\" bevat, <item type=\"input\">=URL.CODEREN(B1)</item> geeft %E8%BB%8A (\"車\" betekent auto in Japans)."
#: func_weekday.xhp
msgctxt ""
diff --git a/source/nl/helpcontent2/source/text/shared/00.po b/source/nl/helpcontent2/source/text/shared/00.po
index 28312ea0bf8..0f285e61576 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: 2018-05-22 13:16+0200\n"
-"PO-Revision-Date: 2018-05-24 09:44+0000\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
+"PO-Revision-Date: 2018-06-09 07:39+0000\n"
"Last-Translator: kees538 <kees538@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: nl\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1527155049.000000\n"
+"X-POOTLE-MTIME: 1528529958.000000\n"
#: 00000001.xhp
msgctxt ""
@@ -397,16 +397,16 @@ msgctxt ""
"00000001.xhp\n"
"hd_id3149670\n"
"help.text"
-msgid "Back"
-msgstr "Vorige"
+msgid "Reset"
+msgstr "Herstellen"
#: 00000001.xhp
msgctxt ""
"00000001.xhp\n"
"par_id3145068\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/optionsdialog/revert\">Resets modified values back to the $[officename] default values.</ahelp>"
-msgstr "<ahelp hid=\"cui/ui/optionsdialog/revert\">Gewijzigde waarden opnieuw instellen op de standaardwaarden van $[officename].</ahelp>"
+msgid "<ahelp hid=\"cui/ui/optionsdialog/revert\">Resets changes made to the current tab to those applicable when this dialog was opened.</ahelp>"
+msgstr "<ahelp hid=\"cui/ui/optionsdialog/revert\">Herstelt wijzigingen die in het huidige tabblad zijn aangebracht, naar de wijzigingen die van toepassing waren toen dit dialoogvenster werd geopend.</ahelp>"
#: 00000001.xhp
msgctxt ""
@@ -552,6 +552,54 @@ msgctxt ""
msgid "<variable id=\"ShiftF1\">Press Shift+F1 and point to a control to learn more about that control.</variable>"
msgstr "<variable id=\"ShiftF1\">Druk op Shift+F1 en wijs een besturingselement aan om meer te weten te komen over dat besturingselement.</variable>"
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"hd_id631527692833772\n"
+"help.text"
+msgid "Options dialog buttons"
+msgstr "Knoppen van het dialoogvenster Opties"
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"hd_id831527692839432\n"
+"help.text"
+msgid "OK"
+msgstr "OK"
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"par_id471527692844934\n"
+"help.text"
+msgid "Save the changes in the page and close the Options dialog."
+msgstr "Sla de wijzigingen van de pagina op en sluit het dialoogvenster Opties."
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"hd_id261527692850720\n"
+"help.text"
+msgid "Cancel"
+msgstr "Annuleren"
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"par_id571527692855533\n"
+"help.text"
+msgid "Close the Options dialog and discard all changes done."
+msgstr "Sluit het dialoogvenster Opties en verwerp alle wijzigingen."
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"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 Options dialog."
+msgstr "Sommige opties kunnen niet worden hersteld nadat ze zijn bewerkt. Bewerk de wijzigingen handmatig of klik op <emph>Annuleren</emph> en open het dialoogvenster Opties opnieuw."
+
#: 00000002.xhp
msgctxt ""
"00000002.xhp\n"
@@ -11125,16 +11173,16 @@ msgctxt ""
"00040502.xhp\n"
"par_id3151293\n"
"help.text"
-msgid "<variable id=\"linienstile\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Line Styles</emph> tab </variable>"
-msgstr "<variable id=\"linienstile\">Kies <emph>Opmaak - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Afbeelding - </emph></caseinline></switchinline><emph>Lijn - Lijnstijlen</emph> (tabblad) </variable>"
+msgid "<variable id=\"linienstile\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Line Styles</emph> tab</variable>"
+msgstr "<variable id=\"linienstile\">Kies <emph>Opmaak - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Afbeelding - </emph></caseinline></switchinline><emph>Lijn - Stijl</emph> (tabblad)</variable>"
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3149317\n"
"help.text"
-msgid "<variable id=\"linienenden\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Arrow Styles</emph> tab </variable>"
-msgstr "<variable id=\"linienenden\">Kies <emph>Opmaak - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Afbeelding - </emph></caseinline></switchinline><emph>Lijn - Pijlstijlen</emph> (tabblad) </variable>"
+msgid "<variable id=\"linienenden\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Arrow Styles</emph> tab</variable>"
+msgstr "<variable id=\"linienenden\">Kies <emph>Opmaak - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Afbeelding - </emph></caseinline></switchinline><emph>Lijn - Pijlstijlen</emph> (tabblad)</variable>"
#: 00040502.xhp
msgctxt ""
@@ -11173,23 +11221,23 @@ msgctxt ""
"00040502.xhp\n"
"par_id3154948\n"
"help.text"
-msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Area</emph> tab"
-msgstr "Kies <emph>Opmaak - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Afbeelding - </emph></caseinline></switchinline><emph>Gebied - Gebied</emph> (tabblad)"
+msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Area</emph> tab."
+msgstr "Kies <emph>Opmaak - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Afbeelding - </emph></caseinline></switchinline><emph>Tekstvak en vorm - Vlak</emph>(tabblad)."
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3145607\n"
"help.text"
-msgid "Choose <emph>View - Styles</emph> - open context menu and choose <emph>Modify/New - Area</emph> tab (presentation documents)"
-msgstr "Kies <emph>Beeld - Stijlen en opmaak</emph>, open het contextmenu en kies <emph>Wijzigen/nieuw - Gebied</emph> (tabblad) (presentatiedocumenten)"
+msgid "Choose <emph>View - Styles</emph> - open context menu and choose <emph>Modify/New - Area</emph> tab (presentation documents)."
+msgstr "Kies <emph>Beeld - Stijlen en opmaak</emph>, open het contextmenu en kies <emph>Wijzigen/nieuw - Vlak</emph> (tabblad) (presentatiedocumenten)"
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3152922\n"
"help.text"
-msgid "Choose <emph>Format - Title - Area</emph> tab (chart documents)"
+msgid "Choose <emph>Format - Title - Area</emph> tab (chart documents)."
msgstr "Kies <emph>Opmaak - Titel - Gebied</emph> (tabblad) (diagramdocumenten)"
#: 00040502.xhp
@@ -11197,7 +11245,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3157894\n"
"help.text"
-msgid "Choose <emph>Format - Legend - Area</emph> tab (chart documents)"
+msgid "Choose <emph>Format - Legend - Area</emph> tab (chart documents)."
msgstr "Kies <emph>Opmaak - Legenda - Gebied</emph> (tabblad) (diagramdocumenten)"
#: 00040502.xhp
@@ -11205,7 +11253,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3144444\n"
"help.text"
-msgid "Choose <emph>Format - Chart Wall - Area</emph> tab (chart documents)"
+msgid "Choose <emph>Format - Chart Wall - Area</emph> tab (chart documents)."
msgstr "Kies <emph>Opmaak - Diagramwand- Gebied</emph> (tabblad, diagramdocumenten)"
#: 00040502.xhp
@@ -11213,7 +11261,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3156543\n"
"help.text"
-msgid "Choose <emph>Format - Chart Floor - Area</emph> tab (chart documents)"
+msgid "Choose <emph>Format - Chart Floor - Area</emph> tab (chart documents)."
msgstr "Kies <emph>Opmaak - Diagrambodem - Gebied</emph> (tabblad) (diagramdocumenten)"
#: 00040502.xhp
@@ -11221,7 +11269,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3150685\n"
"help.text"
-msgid "Choose <emph>Format - Chart Area - Area</emph> tab (chart documents)"
+msgid "Choose <emph>Format - Chart Area - Area</emph> tab (chart documents)."
msgstr "Kies <emph>Opmaak - Diagramgebied - Gebied</emph> (tabblad) (diagramdocumenten)"
#: 00040502.xhp
@@ -11229,7 +11277,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3149664\n"
"help.text"
-msgid "Choose <emph>Slide - Properties - Background</emph> tab (in $[officename] Impress)"
+msgid "Choose <emph>Slide - Properties - Background</emph> tab (in $[officename] Impress)."
msgstr "Kies het tabblad <emph>Dia - Dia-eigenschappen - Achtergrond</emph>(in $[officename] Impress)"
#: 00040502.xhp
@@ -11237,12 +11285,20 @@ msgctxt ""
"00040502.xhp\n"
"par_id9149694\n"
"help.text"
-msgid "Choose <emph>Page - Properties - Background</emph> tab (in $[officename] Draw)"
+msgid "Choose <emph>Page - Properties - Background</emph> tab (in $[officename] Draw)."
msgstr "Kies het tabblad <emph>Opmaak - Pagina-eigenschappen - Achtergrond</emph>(in $[officename] Draw)"
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
+"par_id841527083135387\n"
+"help.text"
+msgid "Choose <emph>Table - Properties - Background</emph> tab."
+msgstr "Kies <emph>Tabel - Eigenschappen - Achtergrond</emph> (tabblad)."
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
"par_id3154985\n"
"help.text"
msgid "Choose <emph>Format - Area - Transparency</emph> tab (drawing documents)"
@@ -11349,32 +11405,32 @@ msgctxt ""
"00040502.xhp\n"
"par_id3150011\n"
"help.text"
-msgid "<variable id=\"schatte\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Shadow</emph> tab </variable>"
-msgstr "<variable id=\"schatte\">Kies <emph>Opmaak - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>object - </emph></caseinline><caseinline select=\"CALC\"><emph>Afbeelding - </emph></caseinline></switchinline><emph>Gebied - Schaduw</emph> (tabblad) </variable>"
+msgid "<variable id=\"schatte\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Shadow</emph> tab</variable>"
+msgstr "<variable id=\"schatte\">Kies <emph>Opmaak - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Afbeelding - </emph></caseinline></switchinline><emph>Vlak - Schaduw</emph>(tabblad)</variable>."
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3147441\n"
"help.text"
-msgid "<variable id=\"verlauf\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Gradients</emph> tab </variable>"
-msgstr "<variable id=\"verlauf\">Kies <emph>Opmaak - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Afbeelding - </emph></caseinline></switchinline><emph>Gebied - Kleurovergangen </emph> (tabblad) </variable>"
+msgid "<variable id=\"verlauf\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Gradients</emph> tab</variable>"
+msgstr "<variable id=\"verlauf\">Kies <emph>Opmaak - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Afbeelding - </emph></caseinline></switchinline><emph>Vlak - Kleurovergang</emph>(tabblad)</variable>."
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3155308\n"
"help.text"
-msgid "<variable id=\"schraffur\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Hatching</emph> tab </variable>"
-msgstr "<variable id=\"schraffur\">Kies <emph>Opmaak - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Afbeelding - </emph></caseinline></switchinline><emph>Gebied - Arcering</emph> (tabblad) </variable>"
+msgid "<variable id=\"schraffur\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Hatching</emph> tab</variable>"
+msgstr "<variable id=\"schraffur\">Kies <emph>Opmaak - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Afbeelding - </emph></caseinline></switchinline><emph>Vlak - Arcering</emph>(tabblad)</variable>."
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3145800\n"
"help.text"
-msgid "<variable id=\"bitmap\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Bitmaps</emph> tab </variable>"
-msgstr "<variable id=\"bitmap\">Kies <emph>Opmaak - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\">Teken-<emph>object - </emph></caseinline><caseinline select=\"CALC\"><emph>Afbeelding - </emph></caseinline></switchinline><emph>Gebied - Bitmaps</emph> (tabblad) </variable>"
+msgid "<variable id=\"bitmap\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Bitmaps</emph> tab</variable>"
+msgstr "<variable id=\"bitmap\">Kies <emph>Opmaak - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Afbeelding - </emph></caseinline></switchinline><emph>Vlak - Rasterafbeelding</emph>(tabblad)</variable>."
#: 00040502.xhp
msgctxt ""
@@ -11413,8 +11469,8 @@ msgctxt ""
"00040502.xhp\n"
"par_id3156286\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F4 key </caseinline><caseinline select=\"IMPRESS\">F4 key </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F4-toets </caseinline><caseinline select=\"IMPRESS\">F4-toets </caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F4 key</caseinline><caseinline select=\"IMPRESS\">F4 key</caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F4-toets </caseinline><caseinline select=\"IMPRESS\">F4-toets</caseinline></switchinline>"
#: 00040502.xhp
msgctxt ""
@@ -11453,8 +11509,8 @@ msgctxt ""
"00040502.xhp\n"
"par_id3153099\n"
"help.text"
-msgid "<variable id=\"position2\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Position and Size</emph> tab </variable>"
-msgstr "<variable id=\"position2\">Kies <emph>Opmaak - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Afbeelding - </emph></caseinline></switchinline><emph>Positie en grootte - Positie en grootte</emph> (tabblad) </variable>"
+msgid "<variable id=\"position2\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Position and Size</emph> tab</variable>"
+msgstr "<variable id=\"position2\">Kies <emph>Opmaak - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Afbeelding - </emph></caseinline></switchinline><emph>Positie en grootte - Positie en grootte</emph> (tabblad)</variable>"
#: 00040502.xhp
msgctxt ""
@@ -11485,15 +11541,15 @@ msgctxt ""
"00040502.xhp\n"
"par_id3145666\n"
"help.text"
-msgid "<variable id=\"ecke\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Slant & Corner Radius</emph> tab </variable>"
-msgstr "<variable id=\"ecke\">Kies <emph>Opmaak - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Afbeelding - </emph></caseinline></switchinline><emph>Positie en grootte - Schuintrekken/hoekradius</emph> (tabblad) </variable>"
+msgid "<variable id=\"ecke\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Slant & Corner Radius</emph> tab</variable>"
+msgstr "<variable id=\"ecke\">Kies <emph>Opmaak - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Afbeelding - </emph></caseinline></switchinline><emph>Positie en grootte - Helling & hoekradius</emph> (tabblad)</variable>"
#: 00040502.xhp
msgctxt ""
"00040502.xhp\n"
"par_id3146081\n"
"help.text"
-msgid "<variable id=\"legende\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Callout</emph> tab (only for textbox callouts, not for custom shapes callouts) </variable>"
+msgid "<variable id=\"legende\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Callout</emph> tab (only for textbox callouts, not for custom shapes callouts)</variable>"
msgstr "<variable id=\"legende\">Kies <emph>Opmaak - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Afbeelding - </emph></caseinline></switchinline>tab <emph>Positie en grootte - Toelichting</emph> (alleen voor teksttoelichtingen, niet voor zelf gemaakte toelichtingen)</variable>"
#: 00040502.xhp
@@ -11517,8 +11573,8 @@ msgctxt ""
"00040502.xhp\n"
"par_id3149019\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F8 key </caseinline><caseinline select=\"IMPRESS\">F8 key </caseinline></switchinline>"
-msgstr "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F8-toets </caseinline><caseinline select=\"IMPRESS\">F8-toets </caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F8 key</caseinline><caseinline select=\"IMPRESS\">F8 key</caseinline></switchinline>"
+msgstr "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F8-toets </caseinline><caseinline select=\"IMPRESS\">F8-toets</caseinline></switchinline>"
#: 00040502.xhp
msgctxt ""
@@ -11805,7 +11861,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3153076\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Align Center Horizontally </caseinline><defaultinline>Centered</defaultinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Align Center Horizontally</caseinline><defaultinline>Centered</defaultinline></switchinline>"
msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Horizontaal gecentreerd uitlijnen</caseinline><defaultinline>Centreren</defaultinline></switchinline>"
#: 00040502.xhp
@@ -11845,7 +11901,7 @@ msgctxt ""
"00040502.xhp\n"
"par_id3150527\n"
"help.text"
-msgid "<variable id=\"font\">Click <emph>Fontwork</emph> icon on <emph>Drawing</emph> bar </variable>"
+msgid "<variable id=\"font\">Click <emph>Fontwork</emph> icon on <emph>Drawing</emph> bar</variable>"
msgstr "<variable id=\"font\">Klik op het pictogram <emph>Fontwork</emph> van de werkbalk <emph>Tekening</emph></variable>"
#: 00040502.xhp
diff --git a/source/nl/helpcontent2/source/text/shared/01.po b/source/nl/helpcontent2/source/text/shared/01.po
index 3a93e209e67..ef73cba28fb 100644
--- a/source/nl/helpcontent2/source/text/shared/01.po
+++ b/source/nl/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: 2018-05-23 23:19+0200\n"
-"PO-Revision-Date: 2018-05-24 09:49+0000\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
+"PO-Revision-Date: 2018-06-09 07:44+0000\n"
"Last-Translator: kees538 <kees538@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: nl\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1527155356.000000\n"
+"X-POOTLE-MTIME: 1528530272.000000\n"
#: 01010000.xhp
msgctxt ""
@@ -3422,7 +3422,7 @@ msgctxt ""
"par_id3156324\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Some statistic values can be used as <link href=\"text/swriter/02/14020000.xhp\" name=\"variables in formulas\">variables in formulas</link>.</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Bepaalde statistiekwaarden kunnen worden gebruikt als <link href=\"text/swriter/02/14020000.xhp\" name=\"variabelen in formules\">variabelen in formules</link>.</caseinline></switchinline>"
#: 01100400.xhp
msgctxt ""
@@ -3454,7 +3454,7 @@ msgctxt ""
"par_id3153527\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Number of tables in the file.</caseinline><caseinline select=\"CALC\">Number of sheets in the file.</caseinline></switchinline> This statistic does not include tables that were inserted as <link href=\"text/shared/00/00000005.xhp#ole\" name=\"OLE\">OLE</link> objects."
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Het aantal tabellen in het bestand.</caseinline><caseinline select=\"CALC\">Het aantal bladen in het bestand.</caseinline></switchinline> Hieronder vallen niet de tabellen die zijn ingevoegd als <link href=\"text/shared/00/00000005.xhp#ole\" name=\"OLE\">OLE</link>-objecten."
#: 01100400.xhp
msgctxt ""
@@ -3470,7 +3470,7 @@ msgctxt ""
"par_id3156114\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Number of cells with content in the file.</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Het aantal cellen met inhoud in het bestand.</caseinline></switchinline>"
#: 01100400.xhp
msgctxt ""
@@ -3478,7 +3478,7 @@ msgctxt ""
"hd_id641526904710590\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Formula groups:</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Formulegroepen:</caseinline></switchinline>"
#: 01100400.xhp
msgctxt ""
@@ -3486,7 +3486,7 @@ msgctxt ""
"par_id541526903668055\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Number of contiguous ranges in a column with same formula.</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"CALC\">Aantal opeenvolgende bereiken in een kolom met dezelfde formule.</caseinline></switchinline>"
#: 01100400.xhp
msgctxt ""
@@ -3494,7 +3494,7 @@ msgctxt ""
"hd_id3147210\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Images:</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Afbeeldingen:</caseinline></switchinline>"
#: 01100400.xhp
msgctxt ""
@@ -3502,7 +3502,7 @@ msgctxt ""
"par_id3166411\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Number of images in the file. This statistic does not include images that were inserted as <link href=\"text/shared/00/00000005.xhp#ole\" name=\"OLE\">OLE</link> objects.</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Het aantal afbeeldingen in het bestand. Hieronder vallen niet de afbeeldingen die zijn ingevoegd als <link href=\"text/shared/00/00000005.xhp#ole\" name=\"OLE\">OLE</link>-objecten.</caseinline></switchinline>"
#: 01100400.xhp
msgctxt ""
@@ -3510,7 +3510,7 @@ msgctxt ""
"hd_id3147618\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">OLE Objects:</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">OLE-objecten:</caseinline></switchinline>"
#: 01100400.xhp
msgctxt ""
@@ -3518,7 +3518,7 @@ msgctxt ""
"par_id3149820\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Number of <link href=\"text/shared/00/00000005.xhp#ole\" name=\"OLE\">OLE</link> objects in the file, including tables and graphics that were inserted as OLE objects.</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Het aantal <link href=\"text/shared/00/00000005.xhp#ole\" name=\"OLE\">OLE</link>-objecten in het bestand, inclusief tabellen en afbeeldingen die als OLE-objecten zijn ingevoegd.</caseinline></switchinline>"
#: 01100400.xhp
msgctxt ""
@@ -3526,7 +3526,7 @@ msgctxt ""
"hd_id3153665\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Paragraphs:</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Alinea's:</caseinline></switchinline>"
#: 01100400.xhp
msgctxt ""
@@ -3534,7 +3534,7 @@ msgctxt ""
"par_id3156156\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Number of paragraphs (including blank paragraphs) in the file.</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Het aantal alinea's (inclusief lege alinea's) in het bestand.</caseinline></switchinline>"
#: 01100400.xhp
msgctxt ""
@@ -3542,7 +3542,7 @@ msgctxt ""
"hd_id3155261\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Words:</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Woorden:</caseinline></switchinline>"
#: 01100400.xhp
msgctxt ""
@@ -3550,7 +3550,7 @@ msgctxt ""
"par_id3147402\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Number of words (including words consisting of a single character) in the file.</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Het aantal woorden (inclusief woorden die uit één teken bestaan) in het bestand.</caseinline></switchinline>"
#: 01100400.xhp
msgctxt ""
@@ -3558,7 +3558,7 @@ msgctxt ""
"hd_id3150466\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Characters:</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Tekens:</caseinline></switchinline>"
#: 01100400.xhp
msgctxt ""
@@ -3566,7 +3566,7 @@ msgctxt ""
"par_id3149294\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Number of characters (including spaces) in the file. Non-printable characters are not included.</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Het aantal tekens (inclusief spaties) in het bestand. Niet-afdrukbare tekens zijn niet inbegrepen.</caseinline></switchinline>"
#: 01100400.xhp
msgctxt ""
@@ -3574,7 +3574,7 @@ msgctxt ""
"hd_id3148947\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Lines:</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Regels:</caseinline></switchinline>"
#: 01100400.xhp
msgctxt ""
@@ -3582,7 +3582,7 @@ msgctxt ""
"par_id3149650\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Number of lines in the file.</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Het aantal regels in het bestand.</caseinline></switchinline>"
#: 01100400.xhp
msgctxt ""
@@ -3590,7 +3590,7 @@ msgctxt ""
"hd_id3153525\n"
"help.text"
msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Update</caseinline></switchinline>"
-msgstr ""
+msgstr "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Bijwerken</caseinline></switchinline>"
#: 01100400.xhp
msgctxt ""
@@ -23587,6 +23587,22 @@ msgstr "U kunt aangepaste kleuren, kleurverloop, arceringen, twee kleurige patro
#: 05210100.xhp
msgctxt ""
"05210100.xhp\n"
+"hd_id471527077476052\n"
+"help.text"
+msgid "Cell, Row or Table background selector"
+msgstr "Cel, rij of tabel achtergrondselector"
+
+#: 05210100.xhp
+msgctxt ""
+"05210100.xhp\n"
+"par_id661527077493366\n"
+"help.text"
+msgid "Select the table object which background area is to be filled."
+msgstr "Selecteer het tabelobject waarvan het achtergrondgebied moet worden gevuld."
+
+#: 05210100.xhp
+msgctxt ""
+"05210100.xhp\n"
"hd_id3147373\n"
"help.text"
msgid "None"
@@ -31205,24 +31221,24 @@ msgctxt ""
"06040100.xhp\n"
"hd_id3145072\n"
"help.text"
-msgid "Automatic *bold* and _underline_"
-msgstr "Automatisch *vet* en _onderstreept_"
+msgid "Automatic *bold*, /italic/, -strikeout- and _underline_"
+msgstr "Automatisch *vet*, /cursief/, -doorhalen- en _onderstrepen_"
#: 06040100.xhp
msgctxt ""
"06040100.xhp\n"
"par_id3153577\n"
"help.text"
-msgid "Automatically applies bold formatting to text enclosed by asterisks (*), and underline to text enclosed by underscores ( _ ), for example, *bold*. The asterisks and underscores are not displayed after the formatting is applied."
-msgstr "Maakt tekst die door sterretjes (*) wordt omgeven automatisch vet, en onderstreept tekst die door onderstrepingstekens ( _ ) wordt omgeven. Voorbeeld: *vet*. De sterretjes en onderstrepingstekens worden niet weergegeven nadat de opmaak is toegepast."
+msgid "Automatically applies bold, italic, strikethrough or underline formatting to text enclosed by asterisks (*), slashes (/), hyphens (-), and underscores (_), respectively. These characters disappear after the formatting is applied."
+msgstr "Past automatisch vetgedrukte, cursieve, doorgestreepte of onderstreepte opmaak toe op tekst die wordt omsloten door respectievelijk sterretjes (*), deeltekens (/), koppeltekens (-) en onderstrepingstekens (_). Deze tekens verdwijnen nadat de opmaak is toegepast."
#: 06040100.xhp
msgctxt ""
"06040100.xhp\n"
"par_id3153127\n"
"help.text"
-msgid "This feature does not work if the formatting characters * or _ are entered with an <link href=\"text/shared/00/00000005.xhp#IME\" name=\"Input Method Editor\">Input Method Editor</link>."
-msgstr "Deze functie werkt niet als de opmaaktekens * of _ met een <link href=\"text/shared/00/00000005.xhp#IME\" name=\"Invoermethode-editor\">Invoermethode-editor</link> zijn ingevoerd."
+msgid "This feature does not work if the formatting characters <item type=\"literal\">* / - _</item> are entered with an <link href=\"text/shared/00/00000005.xhp#IME\" name=\"Input Method Editor\">Input Method Editor</link>."
+msgstr "Deze functie werkt niet als de opmaaktekens <item type=\"literal\">* / _</item> met een <link href=\"text/shared/00/00000005.xhp#IME\" name=\"Input Method Editor\">Invoermethode-editor</link>zijn ingevoerd."
#: 06040100.xhp
msgctxt ""
@@ -37870,7 +37886,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Digital Signature in PDF Export"
-msgstr ""
+msgstr "Digitale handtekening in een PDF-export"
#: digitalsignaturespdf.xhp
msgctxt ""
@@ -37878,7 +37894,7 @@ msgctxt ""
"hd_id771526419375353\n"
"help.text"
msgid "Signing Exported PDF"
-msgstr ""
+msgstr "Geëxporteerde PDF ondertekenen"
#: digitalsignaturespdf.xhp
msgctxt ""
@@ -37886,7 +37902,7 @@ msgctxt ""
"par_id321526421041596\n"
"help.text"
msgid "<link href=\"text/shared/guide/digital_signatures.xhp\">About Digital Signatures</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/guide/digital_signatures.xhp\">Over digitale handtekeningen</link>"
#: extensionupdate.xhp
msgctxt ""
@@ -41110,7 +41126,7 @@ msgctxt ""
"par_idN207C2\n"
"help.text"
msgid "To export comments of Writer documents as they are shown in %PRODUCTNAME, choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer - Print</emph> and select the <emph>In margins</emph> option in the <emph>Comments</emph> area. The exported pages will be scaled down and the comments will be placed into their margins."
-msgstr ""
+msgstr "Om notities in Writerdocumenten zoals getoond in %PRODUCTNAME te exporteren, kies <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Voorkeuren</emph></caseinline><defaultinline><emph>Extra - Opties</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer - Afdrukken</emph> en selecteer de optie <emph>In marges</emph> in het gedeelte <emph>Notities</emph>. De geëxporteerde pagina's zullen verkleind worden en de notities zullen in de marges worden geplaatst."
#: ref_pdf_export.xhp
msgctxt ""
@@ -42038,7 +42054,7 @@ msgctxt ""
"par_id22107306\n"
"help.text"
msgid "The key store to be used can be selected under <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME - Security - Certificate Path</emph>."
-msgstr ""
+msgstr "De te gebruiken sleutel kan geselecteerd worden onder <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Voorkeuren</emph></caseinline><defaultinline><emph>Extra - Opties</emph></defaultinline></switchinline><emph> - %PRODUCTNAME - Beveiliging - Macrobeveiliging - Vertrouwde bronnen - Certificeringspad</emph>."
#: ref_pdf_export.xhp
msgctxt ""
@@ -42182,7 +42198,7 @@ msgctxt ""
"par_id39089022\n"
"help.text"
msgid "The list of TSA URLs that can be selected is maintained under <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME - Security - TSAs</emph>."
-msgstr ""
+msgstr "De lijst met TSA-URLs die geselecteerd kunnen worden is beschikbaar onder <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Voorkeuren</emph></caseinline><defaultinline><emph>Extra - Opties</emph></defaultinline></switchinline><emph> - %PRODUCTNAME - Beveiliging - TSAs</emph>."
#: ref_pdf_export.xhp
msgctxt ""
@@ -42414,7 +42430,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Signing Existing PDF"
-msgstr ""
+msgstr "Bestaande PDF ondertekenen"
#: signexistingpdf.xhp
msgctxt ""
@@ -42422,7 +42438,7 @@ msgctxt ""
"bm_id581526779778738\n"
"help.text"
msgid "<bookmark_value>digital signature;signing existing PDF</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>digitale handtekening;bestaande PDF ondertekenen</bookmark_value>"
#: signexistingpdf.xhp
msgctxt ""
@@ -42430,7 +42446,7 @@ msgctxt ""
"hd_id201526432498222\n"
"help.text"
msgid "<variable id=\"signexisitingpdf\"><link href=\"text/shared/01/signexistingpdf.xhp\" name=\"Sign Existing PDF Files\">Signing Existing PDF files</link></variable>"
-msgstr ""
+msgstr "<variable id=\"signexisitingpdf\"><link href=\"text/shared/01/signexistingpdf.xhp\" name=\"Sign Existing PDF Files\">Bestaande PDF-bestanden ondertekenen</link></variable>"
#: signexistingpdf.xhp
msgctxt ""
@@ -42438,7 +42454,7 @@ msgctxt ""
"par_id41526423955118\n"
"help.text"
msgid "%PRODUCTNAME can digitally sign an existing PDF document."
-msgstr ""
+msgstr "%PRODUCTNAME kan een bestaand PDF-document digitaal ondertekenen."
#: signexistingpdf.xhp
msgctxt ""
@@ -42446,7 +42462,7 @@ msgctxt ""
"par_id821526581027302\n"
"help.text"
msgid "The file opens in %PRODUCTNAME Draw in read only mode."
-msgstr ""
+msgstr "Het bestand opent in %PRODUCTNAME Draw in de modus alleen-lezen."
#: signexistingpdf.xhp
msgctxt ""
@@ -42454,7 +42470,7 @@ msgctxt ""
"par_id361526580565237\n"
"help.text"
msgid "Sign the PDF document as usual."
-msgstr ""
+msgstr "Onderteken het PDF-document zoals gewoonlijk."
#: webhtml.xhp
msgctxt ""
diff --git a/source/nl/helpcontent2/source/text/shared/optionen.po b/source/nl/helpcontent2/source/text/shared/optionen.po
index ab0ad00ce92..81e15550918 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: 2018-05-08 15:10+0200\n"
-"PO-Revision-Date: 2018-05-21 08:36+0000\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
+"PO-Revision-Date: 2018-06-09 07:48+0000\n"
"Last-Translator: kees538 <kees538@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: nl\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1526891799.000000\n"
+"X-POOTLE-MTIME: 1528530504.000000\n"
#: 01000000.xhp
msgctxt ""
@@ -83,6 +83,22 @@ msgstr "Opmerking voor gebruikers van MacOS: de Help vermeldt het menupad Extra
#: 01000000.xhp
msgctxt ""
"01000000.xhp\n"
+"hd_id551527692881035\n"
+"help.text"
+msgid "Help"
+msgstr "Hulp"
+
+#: 01000000.xhp
+msgctxt ""
+"01000000.xhp\n"
+"par_id831527692885723\n"
+"help.text"
+msgid "Opens the help contents for the Options page displayed."
+msgstr "Opent de Help-inhoud voor de weergegeven Opties-pagina."
+
+#: 01000000.xhp
+msgctxt ""
+"01000000.xhp\n"
"hd_id3159149\n"
"help.text"
msgid "<link href=\"text/shared/optionen/01010000.xhp\" name=\"$[officename]\">%PRODUCTNAME</link>"
@@ -4565,8 +4581,8 @@ msgctxt ""
"01030300.xhp\n"
"par_idN10640\n"
"help.text"
-msgid "Options"
-msgstr "Opties"
+msgid "Security Options and Warnings"
+msgstr "Beveiligingsopties en -waarschuwingen"
#: 01030300.xhp
msgctxt ""
@@ -4597,8 +4613,8 @@ msgctxt ""
"01030300.xhp\n"
"hd_id3168736\n"
"help.text"
-msgid "Persistently save passwords protected by a master password"
-msgstr "Wachtwoorden die worden beveiligd door een hoofdwachtwoord doorlopend opslaan"
+msgid "Persistently save passwords for web connections"
+msgstr "Wachtwoorden voor internetverbindingen doorlopend opslaan"
#: 01030300.xhp
msgctxt ""
@@ -4613,6 +4629,22 @@ msgctxt ""
"01030300.xhp\n"
"hd_id3901791\n"
"help.text"
+msgid "Protected by a master password (recommended)"
+msgstr "Beveiligd door een hoofdwachtwoord (aanbevolen)"
+
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"par_id31527711486980\n"
+"help.text"
+msgid "Check to enable all connections' passwords to be protected by a master password."
+msgstr "Vink aan om alle wachtwoorden van alle verbindingen te beveiligen met een hoofdwachtwoord."
+
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"hd_id141527711343312\n"
+"help.text"
msgid "Master Password"
msgstr "Hoofdwachtwoord"
@@ -11726,7 +11758,7 @@ msgctxt ""
"par_id3150084\n"
"help.text"
msgid "<ahelp hid=\".\">Specifies that the original Microsoft Basic code contained in the document is held in a special internal memory for as long as the document remains loaded in $[officename]. When saving the document in Microsoft format the Microsoft Basic is saved again with the code in an unchanged form.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Geeft aan dat de oorspronkelijke Microsoft Basic-code in het document in een speciaal intern geheugen bewaard wordt, zolang het document in $[officename] geladen is. Wanneer het document in Microsoft-indeling wordt opgeslagen, wordt de Microsoft Basic nogmaals met het document opgeslagen in onveranderde vorm.</ahelp>"
#: 01130100.xhp
msgctxt ""
@@ -13733,8 +13765,8 @@ msgctxt ""
"java.xhp\n"
"hd_id3148618\n"
"help.text"
-msgid "Optional (unstable) options"
-msgstr "Optionele (instabiele) functies"
+msgid "Optional Features"
+msgstr "Optionele functies"
#: java.xhp
msgctxt ""
@@ -13749,8 +13781,8 @@ msgctxt ""
"java.xhp\n"
"par_id3156344\n"
"help.text"
-msgid "It enables features that are not yet complete or contain known bugs. The list of these features is different version by version, or even it can be empty."
-msgstr "Zet functies aan die nog niet zijn voltooid zijn of bekende fouten bevatten. De lijst van deze functies is per versie verschillend, of kan zelfs leeg zijn."
+msgid "Enables features that are not yet complete or may contain known bugs. The list of these features is different version by version, or even it can be empty."
+msgstr "Zet functies aan die nog niet zijn voltooid zijn of bekende fouten kunnen bevatten. De lijst van deze functies is per versie verschillend of kan zelfs leeg zijn."
#: java.xhp
msgctxt ""
@@ -13765,7 +13797,7 @@ msgctxt ""
"java.xhp\n"
"par_id3156345\n"
"help.text"
-msgid "It enables macro recording, so the <link href=\"text/shared/guide/macro_recording.xhp\" name=\"Tools - Macros - Record Macro\"><item type=\"menuitem\">Tools - Macros - Record Macro</item></link> menu item will be available."
+msgid "Enables macro recording. The <link href=\"text/shared/guide/macro_recording.xhp\" name=\"Tools - Macros - Record Macro\"><item type=\"menuitem\">Tools - Macros - Record Macro</item></link> menu item is available."
msgstr "Maakt het mogelijk macro's op te nemen, zodat het menu-item <link href=\"text/shared/guide/macro_recording.xhp\" name=\"Tools-Macros-Record Macro\"> <item type=\"menuitem\"> Extra - Macro's - Macro opnemen</item></link> beschikbaar zal zijn."
#: java.xhp
diff --git a/source/nl/helpcontent2/source/text/simpress/01.po b/source/nl/helpcontent2/source/text/simpress/01.po
index 5aeac77f120..1c02d274eba 100644
--- a/source/nl/helpcontent2/source/text/simpress/01.po
+++ b/source/nl/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: 2018-05-08 15:10+0200\n"
-"PO-Revision-Date: 2018-05-21 08:43+0000\n"
+"PO-Revision-Date: 2018-06-04 05:42+0000\n"
"Last-Translator: kees538 <kees538@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: nl\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1526892194.000000\n"
+"X-POOTLE-MTIME: 1528090960.000000\n"
#: 01170000.xhp
msgctxt ""
@@ -3310,7 +3310,7 @@ msgctxt ""
"par_id3145799\n"
"help.text"
msgid "<ahelp hid=\".\">Inserts the page number into the current slide or page.</ahelp> If you want to add a page number to every slide, choose View - Master<switchinline select=\"appl\"><caseinline select=\"IMPRESS\"> Slide</caseinline></switchinline> and insert the page number field. To change the number format, choose <switchinline select=\"appl\"><caseinline select=\"IMPRESS\"><emph>Slide</emph></caseinline><caseinline select=\"DRAW\"><emph>Page</emph></caseinline></switchinline><emph> - Properties - Page</emph> tab and then select a format from the list in the <emph>Layout Settings</emph> area."
-msgstr ""
+msgstr "<ahelp hid=\".\">Voegt het paginanummer in de huidige dia of pagina in.</ahelp> Als u een paginanummer aan elke dia wilt toevoegen, kiest u Beeld - Diamodel<switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Dia</caseinline></switchinline> en voeg het paginanummerveld in. Als u de getalnotatie wilt wijzigen, kiest u<switchinline select=\"appl\"><caseinline select=\"IMPRESS\"><emph>Dia</emph></caseinline><caseinline select=\"DRAW\"><emph>Pagina</emph></caseinline></switchinline><emph> - Eigenschappen - Pagina (tabblad)</emph> en selecteer vervolgens een indeling in de lijst in het gebied <emph>Lay-outinstellingen</emph>."
#: 04990600.xhp
msgctxt ""
@@ -5606,7 +5606,7 @@ msgctxt ""
"par_idN10571\n"
"help.text"
msgid "<emph>Entrance:</emph> Select an entrance effect from the list of effects."
-msgstr ""
+msgstr "<emph>Ingang:</emph> Selecteer een ingangseffect in de lijst met effecten."
#: 06060000.xhp
msgctxt ""
@@ -5614,7 +5614,7 @@ msgctxt ""
"par_idN10578\n"
"help.text"
msgid "<emph>Emphasis:</emph> Select an emphasis effect from the list of effects."
-msgstr ""
+msgstr "<emph>Nadruk:</emph> Selecteer een nadrukeffect in de lijst met effecten.."
#: 06060000.xhp
msgctxt ""
@@ -5622,7 +5622,7 @@ msgctxt ""
"par_idN1057F\n"
"help.text"
msgid "<emph>Exit:</emph> Select an exiting effect from the list of effects."
-msgstr ""
+msgstr "<emph>Uitgang:</emph> Selecteer een uitgangseffect in de lijst met effecten."
#: 06060000.xhp
msgctxt ""
@@ -5630,7 +5630,7 @@ msgctxt ""
"par_idN10586\n"
"help.text"
msgid "<emph>Motion Paths:</emph> Select a motion path effect from the list of effects."
-msgstr ""
+msgstr "<emph>Animatiepaden:</emph> Selecteer een animatiepad-effect in de lijst met effecten.."
#: 06060000.xhp
msgctxt ""
@@ -5638,7 +5638,7 @@ msgctxt ""
"par_idN107F1\n"
"help.text"
msgid "Effect"
-msgstr ""
+msgstr "Effect"
#: 06060000.xhp
msgctxt ""
@@ -5646,7 +5646,7 @@ msgctxt ""
"par_idN107F2\n"
"help.text"
msgid "<ahelp hid=\".\">Select an animation effect.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Selecteer een animatie-effect.</ahelp>"
#: 06060000.xhp
msgctxt ""
@@ -5662,7 +5662,7 @@ msgctxt ""
"par_idN107ED\n"
"help.text"
msgid "<ahelp hid=\".\">Displays when the selected animation effect should be started.</ahelp> The following start options are available:"
-msgstr ""
+msgstr "<ahelp hid=\".\">Geeft weer wanneer het geselecteerde animatie-effect moet worden gestart.</ahelp> De volgende startopties zijn beschikbaar:"
#: 06060000.xhp
msgctxt ""
@@ -5694,7 +5694,7 @@ msgctxt ""
"par_idN10807\n"
"help.text"
msgid "Properties: Direction, Amount, Color, Fill color, Size, Line color, Font, Font size, Typeface"
-msgstr ""
+msgstr "Eigenschappen: Richting, Hoeveelheid, Kleur, Vulkleur, Grootte, Lijnkleur, Lettertype, Tekengrootte, Letterbeeld"
#: 06060000.xhp
msgctxt ""
@@ -5710,7 +5710,7 @@ msgctxt ""
"par_idN10820\n"
"help.text"
msgid "Duration"
-msgstr ""
+msgstr "Tijdsduur"
#: 06060000.xhp
msgctxt ""
@@ -5718,7 +5718,7 @@ msgctxt ""
"par_idN10824\n"
"help.text"
msgid "<ahelp hid=\".\">Specifies the duration of the selected animation effect.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Hier wordt de tijdsduur van het geselecteerde animatie-effect opgegeven.</ahelp>"
#: 06060000.xhp
msgctxt ""
@@ -5726,7 +5726,7 @@ msgctxt ""
"par_idN10835\n"
"help.text"
msgid "Delay"
-msgstr ""
+msgstr "Vertraging"
#: 06060000.xhp
msgctxt ""
@@ -5734,7 +5734,7 @@ msgctxt ""
"par_idN10839\n"
"help.text"
msgid "<ahelp hid=\".\">The animation starts delayed by this amount of time.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">De animatie begint met de aangegeven vertraging.</ahelp>"
#: 06060000.xhp
msgctxt ""
diff --git a/source/nl/helpcontent2/source/text/simpress/guide.po b/source/nl/helpcontent2/source/text/simpress/guide.po
index 6bd5cc6b545..6a73d5a08ed 100644
--- a/source/nl/helpcontent2/source/text/simpress/guide.po
+++ b/source/nl/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: 2018-05-16 16:54+0200\n"
-"PO-Revision-Date: 2018-03-19 09:45+0000\n"
+"PO-Revision-Date: 2018-05-28 07:05+0000\n"
"Last-Translator: kees538 <kees538@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: nl\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1521452707.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1527491117.000000\n"
#: 3d_create.xhp
msgctxt ""
@@ -734,7 +734,7 @@ msgctxt ""
"par_id3148826\n"
"help.text"
msgid "If you want, you can use the <emph>Zoom</emph> toolbar<image id=\"img_id3151172\" src=\"cmd/sc_zoom.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3151172\">Icon</alt></image> to change the view magnification for the slides."
-msgstr ""
+msgstr "Als u wilt, kunt u de werkbalk <emph>In- en uitzoomen</emph> gebruiken <image id=\"img_id3151172\" src=\"cmd/sc_zoom.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3151172\">Pictogram</alt></image> om de vergroting van het beeld van de dia's te wijzigen."
#: animated_slidechange.xhp
msgctxt ""
@@ -918,7 +918,7 @@ msgctxt ""
"par_id3149942\n"
"help.text"
msgid "Choose <emph>Slide - Properties</emph>, and then click on the <emph>Background</emph> tab."
-msgstr ""
+msgstr "Kies <emph>Dia - Dia-eigenschappen</emph> en klik vervolgens op het tabblad <emph>Achtergrond</emph>."
#: background.xhp
msgctxt ""
@@ -982,7 +982,7 @@ msgctxt ""
"par_id3156064\n"
"help.text"
msgid "Choose <emph>Slide - Properties</emph>, and then click on the <emph>Background</emph> tab."
-msgstr ""
+msgstr "Kies <emph>Dia - Dia-eigenschappen</emph> en klik vervolgens op het tabblad <emph>Achtergrond</emph>."
#: background.xhp
msgctxt ""
@@ -1062,7 +1062,7 @@ msgctxt ""
"par_idN1082F\n"
"help.text"
msgid "Choose <emph>Slide - Properties</emph> to change the slide background, or choose other formatting commands. Objects that you add here will be visible on all slides that are based on this master slide."
-msgstr ""
+msgstr "Kies <emph>Dia - Dia-eigenschappen</emph> om de dia-achtergrond te wijzigen of kies andere opmaakopties. Objecten die u hier toevoegt, worden zichtbaar op alle dia's die op dit diamodel zijn gebaseerd."
#: background.xhp
msgctxt ""
@@ -4638,7 +4638,7 @@ msgctxt ""
"par_id221120161524501012\n"
"help.text"
msgid "Warning: Clicking Undo will not delete a photo album. Right-click the slides on the slide panel and select <item type=\"menuitem\">Delete Slide</item> to delete the slides."
-msgstr ""
+msgstr "Waarschuwing: Klikken op Ongedaan maken zal de fotoalbum niet verwijderen. Klik met rechts op de dia's in het paneel Dia's en selecteer <item type=\"menuitem\">Dia verwijderen</item> om de dia's te verwijderen."
#: photo_album.xhp
msgctxt ""
@@ -4694,7 +4694,7 @@ msgctxt ""
"par_id91512579485395\n"
"help.text"
msgid "The Presenter Console works only on an operating system that supports multiple displays and only when two displays are connected (one may be the laptop built-in display)."
-msgstr ""
+msgstr "De Presentatie console werkt alleen op een besturingssysteem dat meerdere schermen ondersteunt en alleen wanneer twee schermen aangesloten zijn (één daarvan kan het ingebouwde scherm van een laptop zijn)."
#: presenter_console.xhp
msgctxt ""
@@ -4718,7 +4718,7 @@ msgctxt ""
"par_id351512577323192\n"
"help.text"
msgid "Choose <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 Impress - General</item>."
-msgstr ""
+msgstr "Kies <switchinline select=\"sys\"><caseinline select=\"MAC\"><item type=\"menuitem\">%PRODUCTNAME - Eigenschappen</item></caseinline><defaultinline><item type=\"menuitem\">Extra - Opties</item></defaultinline></switchinline><item type=\"menuitem\"> - %PRODUCTNAME Impress - Algemeen</item>."
#: presenter_console.xhp
msgctxt ""
@@ -4734,7 +4734,7 @@ msgctxt ""
"par_id261512578116942\n"
"help.text"
msgid "<image id=\"img_impressoptions\" src=\"media/screenshots/cui/ui/optionsdialog/impressoptionsgeneraldialog.png\" width=\"793px\" height=\"538px\"><alt id=\"alt_id821512578116950\">Enable Presenter Console option</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_impressoptions\" src=\"media/screenshots/cui/ui/optionsdialog/impressoptionsgeneraldialog.png\" width=\"793px\" height=\"538px\"><alt id=\"alt_id821512578116950\">Presenter Console activeren</alt></image>"
#: presenter_console.xhp
msgctxt ""
@@ -4758,7 +4758,7 @@ msgctxt ""
"par_id391512577726275\n"
"help.text"
msgid "Run the slide show. Press F5 or Shift-F5 or choose <item type=\"menuitem\">Slide Show - Start from First Slide</item> or <item type=\"menuitem\">Start from Current Slide</item>."
-msgstr ""
+msgstr "Start de presentatie. Druk F5 of Shift+F5 of kies <item type=\"menuitem\">Presentatie - Begin van eerste dia</item> of <item type=\"menuitem\">Start van huidige dia</item>."
#: presenter_console.xhp
msgctxt ""
@@ -4774,7 +4774,7 @@ msgctxt ""
"par_id721512827886185\n"
"help.text"
msgid "<image src=\"media/helpimg/sd_PresenterConsole04.png\" id=\"img_id401512827886185\" width=\"640\" height=\"72\"><alt id=\"alt_id71512827886185\">Presenter Console Controls</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/helpimg/sd_PresenterConsole04.png\" id=\"img_id401512827886185\" width=\"640\" height=\"72\"><alt id=\"alt_id71512827886185\">Besturingselementen van de Presenter Console</alt></image>"
#: presenter_console.xhp
msgctxt ""
@@ -4782,7 +4782,7 @@ msgctxt ""
"par_id71512828085688\n"
"help.text"
msgid "<emph>Previous</emph>: move to previous slide."
-msgstr ""
+msgstr "<emph>Vorige</emph>: ga naar vorige dia."
#: presenter_console.xhp
msgctxt ""
@@ -4790,7 +4790,7 @@ msgctxt ""
"par_id61512828110394\n"
"help.text"
msgid "<emph>Next</emph>: move to next slide."
-msgstr ""
+msgstr "<emph>Volgende</emph>: ga naar volgende dia."
#: presenter_console.xhp
msgctxt ""
@@ -4798,7 +4798,7 @@ msgctxt ""
"par_id981512828129990\n"
"help.text"
msgid "<emph>Notes</emph>: display the Presenter Console Notes mode."
-msgstr ""
+msgstr "<emph>Notities</emph>: toont de modus Notitie van de Presentatie console."
#: presenter_console.xhp
msgctxt ""
@@ -4806,7 +4806,7 @@ msgctxt ""
"par_id101512828220096\n"
"help.text"
msgid "<emph>Slide</emph>: display the Presenter Console Slide sorter mode."
-msgstr ""
+msgstr "<emph>Dia</emph>: toont de modus Sorteer van de Presentatie console."
#: presenter_console.xhp
msgctxt ""
@@ -4870,7 +4870,7 @@ msgctxt ""
"par_id311512825411947\n"
"help.text"
msgid "<image src=\"media/helpimg/sd_PresenterConsole01.png\" id=\"img_id481512825411947\" width=\"640\" height=\"360\"><alt id=\"alt_id151512825411947\">Presenter console normal mode</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/helpimg/sd_PresenterConsole01.png\" id=\"img_id481512825411947\" width=\"640\" height=\"360\"><alt id=\"alt_id151512825411947\">modus Normaal van de Presentatie console</alt></image>"
#: presenter_console.xhp
msgctxt ""
@@ -4894,7 +4894,7 @@ msgctxt ""
"par_id961512827293400\n"
"help.text"
msgid "<image src=\"media/helpimg/sd_PresenterConsole03.png\" id=\"img_id651512827293401\" width=\"640\" height=\"360\"><alt id=\"alt_id881512827293401\">Notes mode</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/helpimg/sd_PresenterConsole03.png\" id=\"img_id651512827293401\" width=\"640\" height=\"360\"><alt id=\"alt_id881512827293401\">Modus Notitie</alt></image>"
#: presenter_console.xhp
msgctxt ""
@@ -4918,7 +4918,7 @@ msgctxt ""
"par_id721512827434997\n"
"help.text"
msgid "<image src=\"media/helpimg/sd_PresenterConsole02.png\" id=\"img_id831512827434997\" width=\"640\" height=\"360\"><alt id=\"alt_id221512827434997\">Slide sorter mode</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/helpimg/sd_PresenterConsole02.png\" id=\"img_id831512827434997\" width=\"640\" height=\"360\"><alt id=\"alt_id221512827434997\">Modus Diasorteerder</alt></image>"
#: presenter_console.xhp
msgctxt ""
@@ -4974,7 +4974,7 @@ msgctxt ""
"par_id3145384\n"
"help.text"
msgid "In <emph>Normal View</emph>, choose <emph>Slide - Properties</emph>, and then click the <emph>Page</emph> tab."
-msgstr ""
+msgstr "Kies <emph>Diaweergave</emph> en <emph>Dia - Dia-eigenschappen</emph> en klik op het tabblad <emph>Pagina</emph>."
#: print_tofit.xhp
msgctxt ""
@@ -6086,7 +6086,7 @@ msgctxt ""
"bm_id3153415\n"
"help.text"
msgid "<bookmark_value>vectorizing bitmaps</bookmark_value><bookmark_value>converting; bitmaps to polygons</bookmark_value><bookmark_value>bitmaps; converting to vector graphics</bookmark_value><bookmark_value>vector graphics; converting bitmaps</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>vectorindeling; bitmaps omzetten in</bookmark_value><bookmark_value>converteren; bitmaps naar veelhoeken</bookmark_value><bookmark_value>bitmaps; converteren naar vectorafbeeldingen</bookmark_value><bookmark_value>vectorafbeeldingen;bitmaps converteren</bookmark_value>"
#: vectorize.xhp
msgctxt ""
diff --git a/source/nl/helpcontent2/source/text/smath/01.po b/source/nl/helpcontent2/source/text/smath/01.po
index 504bb3bcc05..8c5e212ea90 100644
--- a/source/nl/helpcontent2/source/text/smath/01.po
+++ b/source/nl/helpcontent2/source/text/smath/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: 2018-05-16 16:54+0200\n"
-"PO-Revision-Date: 2018-03-05 21:32+0000\n"
-"Last-Translator: vpanter <leo.moons@telenet.be>\n"
+"PO-Revision-Date: 2018-05-28 07:13+0000\n"
+"Last-Translator: kees538 <kees538@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: nl\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1520285523.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1527491589.000000\n"
#: 02080000.xhp
msgctxt ""
@@ -2134,7 +2134,7 @@ msgctxt ""
"par_id3155374\n"
"help.text"
msgid "Choose a function in the lower part of the Elements pane. These functions are also listed in the <link href=\"text/shared/00/00000001.xhp#kontextmenue\" name=\"context menu\">context menu</link> of the <emph>Commands</emph> window. Any functions not contained in the Elements pane need to be typed manually in the Commands window."
-msgstr ""
+msgstr "Kies een functie in het onderste deel van het paneel Elementen. Deze functies staan ook vermeld in het <link href=\"text/shared/00/00000001.xhp#kontextmenue\" name=\"contextmenu\">context-menu</link> van het venster <emph>Opdrachten</emph> Elke functie die niet in het paneel Elementen is opgenomen, moet handmatig worden ingevoerd in het venster Opdrachten."
#: 03090400.xhp
msgctxt ""
@@ -4094,7 +4094,7 @@ msgctxt ""
"par_id3147262\n"
"help.text"
msgid "You can choose among various options for formatting a $[officename] Math formula. The format options are displayed in the lower part of the Elements pane. These options are also listed in the <link href=\"text/shared/00/00000001.xhp#kontextmenue\" name=\"context menu\">context menu</link> of the <emph>Commands</emph> window."
-msgstr ""
+msgstr "U kunt kiezen uit verschillende opties voor het opmaken van een $[officename] Math-formule. De opties voor opmaak worden in het onderste deel van het paneel Elementen weergegeven. Deze opties staan ook vermeld in het <link href=\"text/shared/00/00000001.xhp#kontextmenue\" name=\"contextmenu\">context-menu</link> van het venster <emph>Opdrachten</emph>."
#: 03090700.xhp
msgctxt ""
@@ -4638,7 +4638,7 @@ msgctxt ""
"par_id3149290\n"
"help.text"
msgid "After selecting the <emph>Set Operations</emph> item in the Elements pane, relevant icons will be shown in the lower part of this pane. Simply click a symbol to incorporate the operator in the formula being edited in the Commands window."
-msgstr ""
+msgstr "Na het selecteren van het item <emph>Verzamelingsbewerkingen</emph> in het paneel Elementen, worden relevante pictogrammen in het onderste deel van dit paneel weergegeven. Klik eenvoudigweg op een pictogram om de operator op te nemen in de formule, die in het venster Opdrachten bewerkt wordt."
#: 03090800.xhp
msgctxt ""
@@ -5246,7 +5246,7 @@ msgctxt ""
"par_id3153818\n"
"help.text"
msgid "<image id=\"img_id3148870\" src=\"media/helpimg/smzb1.png\" width=\"95px\" height=\"80px\"><alt id=\"alt_id3148870\">Symbols with Indices</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3148870\" src=\"media/helpimg/smzb1.png\" width=\"95px\" height=\"80px\"><alt id=\"alt_id3148870\">Symbolen met indexen</alt></image>"
#: 03090902.xhp
msgctxt ""
@@ -5278,7 +5278,7 @@ msgctxt ""
"par_id3153912\n"
"help.text"
msgid "<image id=\"img_id3149126\" src=\"media/helpimg/smzb2.png\" width=\"95px\" height=\"80px\"><alt id=\"alt_id3149126\">Symbols with Indices</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3149126\" src=\"media/helpimg/smzb2.png\" width=\"95px\" height=\"80px\"><alt id=\"alt_id3149126\">Symbolen met indexen</alt></image>"
#: 03090903.xhp
msgctxt ""
@@ -5310,7 +5310,7 @@ msgctxt ""
"par_id3148866\n"
"help.text"
msgid "<image id=\"img_id3153246\" src=\"media/helpimg/smzb3.png\" width=\"175px\" height=\"80px\"><alt id=\"alt_id3153246\">Symbols with Indices</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3153246\" src=\"media/helpimg/smzb3.png\" width=\"175px\" height=\"80px\"><alt id=\"alt_id3153246\">Symbolen met indexen</alt></image>"
#: 03090904.xhp
msgctxt ""
@@ -5342,7 +5342,7 @@ msgctxt ""
"par_id3153915\n"
"help.text"
msgid "<image id=\"img_id3150213\" src=\"media/helpimg/smzb5.png\" width=\"550px\" height=\"135px\"><alt id=\"alt_id3150213\">Matrix with varying font sizes</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3150213\" src=\"media/helpimg/smzb5.png\" width=\"550px\" height=\"135px\"><alt id=\"alt_id3150213\">Matrix met verschillende tekengroottes</alt></image>"
#: 03090905.xhp
msgctxt ""
@@ -5374,7 +5374,7 @@ msgctxt ""
"par_id3153912\n"
"help.text"
msgid "<image id=\"img_id3149126\" src=\"media/helpimg/smzb4.png\" width=\"345px\" height=\"190px\"><alt id=\"alt_id3149126\">Matrix</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3149126\" src=\"media/helpimg/smzb4.png\" width=\"345px\" height=\"190px\"><alt id=\"alt_id3149126\">Matrix</alt></image>"
#: 03090906.xhp
msgctxt ""
@@ -5406,7 +5406,7 @@ msgctxt ""
"par_id3148866\n"
"help.text"
msgid "<image id=\"img_id3150210\" src=\"media/helpimg/smzb6.png\" width=\"300px\" height=\"245px\"><alt id=\"alt_id3150210\">Matrix in bold font</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3150210\" src=\"media/helpimg/smzb6.png\" width=\"300px\" height=\"245px\"><alt id=\"alt_id3150210\">Matrix in vet lettertype</alt></image>"
#: 03090907.xhp
msgctxt ""
@@ -5438,7 +5438,7 @@ msgctxt ""
"par_id3153912\n"
"help.text"
msgid "<image id=\"img_id3148871\" src=\"media/helpimg/smzb7.png\" width=\"255px\" height=\"60px\"><alt id=\"alt_id3148871\">Functions</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3148871\" src=\"media/helpimg/smzb7.png\" width=\"255px\" height=\"60px\"><alt id=\"alt_id3148871\">Functies</alt></image>"
#: 03090908.xhp
msgctxt ""
@@ -5470,7 +5470,7 @@ msgctxt ""
"par_id3148870\n"
"help.text"
msgid "<image id=\"img_id3153917\" src=\"media/helpimg/smzb8.png\" width=\"303px\" height=\"83px\"><alt id=\"alt_id3153917\">Square Root</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3153917\" src=\"media/helpimg/smzb8.png\" width=\"303px\" height=\"83px\"><alt id=\"alt_id3153917\">Vierkantswortel</alt></image>"
#: 03090909.xhp
msgctxt ""
@@ -5510,7 +5510,7 @@ msgctxt ""
"par_id3151243\n"
"help.text"
msgid "<image id=\"img_id3148871\" src=\"media/helpimg/smzb9.png\" width=\"300px\" height=\"90px\"><alt id=\"alt_id3148871\">Integral and Sum Ranges, Font Size</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3148871\" src=\"media/helpimg/smzb9.png\" width=\"300px\" height=\"90px\"><alt id=\"alt_id3148871\">Integrale en sombereiken, tekengrootte</alt></image>"
#: 03090910.xhp
msgctxt ""
@@ -5542,7 +5542,7 @@ msgctxt ""
"par_id3148703\n"
"help.text"
msgid "<image id=\"img_id3151242\" src=\"media/helpimg/smzb10.png\" width=\"295px\" height=\"40px\"><alt id=\"alt_id3151242\">Icon</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id3151242\" src=\"media/helpimg/smzb10.png\" width=\"295px\" height=\"40px\"><alt id=\"alt_id3151242\">Pictogram</alt></image>"
#: 03091100.xhp
msgctxt ""
diff --git a/source/nl/helpcontent2/source/text/smath/06.po b/source/nl/helpcontent2/source/text/smath/06.po
index 5a85dd21f14..0b2bf51826c 100644
--- a/source/nl/helpcontent2/source/text/smath/06.po
+++ b/source/nl/helpcontent2/source/text/smath/06.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: 2018-05-16 16:54+0200\n"
-"PO-Revision-Date: 2018-05-09 06:54+0000\n"
+"PO-Revision-Date: 2018-06-04 05:57+0000\n"
"Last-Translator: kees538 <kees538@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: nl\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1525848882.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1528091859.000000\n"
#: screenshots.xhp
msgctxt ""
@@ -22,7 +22,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Math screenshots"
-msgstr ""
+msgstr "Schermafbeeldingen van Math"
#: screenshots.xhp
msgctxt ""
@@ -30,7 +30,7 @@ msgctxt ""
"par_id141525570544232\n"
"help.text"
msgid "<image src=\"media/screenshots/modules/smath/ui/alignmentdialog/AlignmentDialog.png\" id=\"img_id331525570544232\" localize=\"true\"><alt id=\"alt_id641525570544232\">Alignment Dialog</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/screenshots/modules/smath/ui/alignmentdialog/AlignmentDialog.png\" id=\"img_id331525570544232\" localize=\"true\"><alt id=\"alt_id641525570544232\">Dialoogvenster Uitlijning</alt></image>"
#: screenshots.xhp
msgctxt ""
@@ -38,7 +38,7 @@ msgctxt ""
"par_id121525570707303\n"
"help.text"
msgid "<image src=\"media/screenshots/modules/smath/ui/catalogdialog/CatalogDialog.png\" id=\"img_id441525570707303\" localize=\"true\"><alt id=\"alt_id921525570707303\">Catalog Dialog</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/screenshots/modules/smath/ui/catalogdialog/CatalogDialog.png\" id=\"img_id441525570707303\" localize=\"true\"><alt id=\"alt_id921525570707303\">Dialoogvenster Catalogus</alt></image>"
#: screenshots.xhp
msgctxt ""
@@ -46,7 +46,7 @@ msgctxt ""
"par_id71525570710878\n"
"help.text"
msgid "<image src=\"media/screenshots/modules/smath/ui/fontdialog/FontDialog.png\" id=\"img_id41525570710879\" localize=\"true\"><alt id=\"alt_id931525570710879\">Font Dialog</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/screenshots/modules/smath/ui/fontdialog/FontDialog.png\" id=\"img_id41525570710879\" localize=\"true\"><alt id=\"alt_id931525570710879\">Dialoogvenster Lettertype</alt></image>"
#: screenshots.xhp
msgctxt ""
@@ -54,7 +54,7 @@ msgctxt ""
"par_id671525570713808\n"
"help.text"
msgid "<image src=\"media/screenshots/modules/smath/ui/fontsizedialog/FontSizeDialog.png\" id=\"img_id131525570713808\" localize=\"true\"><alt id=\"alt_id501525570713809\">Font Size Dialog</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/screenshots/modules/smath/ui/fontsizedialog/FontSizeDialog.png\" id=\"img_id131525570713808\" localize=\"true\"><alt id=\"alt_id501525570713809\">Dialoogvenster Tekengrootte</alt></image>"
#: screenshots.xhp
msgctxt ""
@@ -62,7 +62,7 @@ msgctxt ""
"par_id891525570718035\n"
"help.text"
msgid "<image src=\"media/screenshots/modules/smath/ui/fonttypedialog/FontsDialog.png\" id=\"img_id441525570718035\" localize=\"true\"><alt id=\"alt_id401525570718036\">Font Type Dialog</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/screenshots/modules/smath/ui/fonttypedialog/FontsDialog.png\" id=\"img_id441525570718035\" localize=\"true\"><alt id=\"alt_id401525570718036\">Dialoogvenster Lettertype</alt></image>"
#: screenshots.xhp
msgctxt ""
@@ -70,7 +70,7 @@ msgctxt ""
"par_id991525570721266\n"
"help.text"
msgid "<image src=\"media/screenshots/modules/smath/ui/savedefaultsdialog/SaveDefaultsDialog.png\" id=\"img_id571525570721266\" localize=\"true\"><alt id=\"alt_id981525570721266\">Save Default Dialog</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/screenshots/modules/smath/ui/savedefaultsdialog/SaveDefaultsDialog.png\" id=\"img_id571525570721266\" localize=\"true\"><alt id=\"alt_id981525570721266\">Dialoogvenster Standaardwaarden opslaan</alt></image>"
#: screenshots.xhp
msgctxt ""
@@ -78,7 +78,7 @@ msgctxt ""
"par_id861525570725718\n"
"help.text"
msgid "<image src=\"media/screenshots/modules/smath/ui/spacingdialog/SpacingDialog.png\" id=\"img_id81525570725718\" localize=\"true\"><alt id=\"alt_id981525570725718\">Spacing Dialog</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/screenshots/modules/smath/ui/spacingdialog/SpacingDialog.png\" id=\"img_id81525570725718\" localize=\"true\"><alt id=\"alt_id981525570725718\">Dialoogvenster Afstand</alt></image>"
#: screenshots.xhp
msgctxt ""
@@ -86,4 +86,4 @@ msgctxt ""
"par_id931525570728897\n"
"help.text"
msgid "<image src=\"media/screenshots/modules/smath/ui/symdefinedialog/EditSymbols.png\" id=\"img_id491525570728897\" localize=\"true\"><alt id=\"alt_id31525570728897\">Edit Symbols</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/screenshots/modules/smath/ui/symdefinedialog/EditSymbols.png\" id=\"img_id491525570728897\" localize=\"true\"><alt id=\"alt_id31525570728897\">Pictogrammen bewerken</alt></image>"
diff --git a/source/nl/helpcontent2/source/text/swriter.po b/source/nl/helpcontent2/source/text/swriter.po
index d5a5e287890..3fc71a9fa9a 100644
--- a/source/nl/helpcontent2/source/text/swriter.po
+++ b/source/nl/helpcontent2/source/text/swriter.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: 2018-04-05 11:28+0200\n"
-"PO-Revision-Date: 2018-03-29 12:09+0000\n"
-"Last-Translator: Cor Nouws <cor.nouws@documentfoundation.org>\n"
+"PO-Revision-Date: 2018-05-28 07:23+0000\n"
+"Last-Translator: kees538 <kees538@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: nl\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1522325354.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1527492210.000000\n"
#: classificationbar.xhp
msgctxt ""
@@ -342,7 +342,7 @@ msgctxt ""
"par_id030820161754171423\n"
"help.text"
msgid "The Classification toolbar contains listboxes to help in selecting the security of the document, according to the <item type=\"acronym\">BAF</item> category policy and <item type=\"acronym\">BAILS</item> levels. %PRODUCTNAME will add custom fields in the document properties (<item type=\"menuitem\">File - Properties</item>, Custom Properties tab) to store the classification policy as document metadata."
-msgstr ""
+msgstr "De werkbalk TSCP Rubricering bevat een keuzelijst voor het selecteren van de beveiliging van het document volgens het <item type=\"acronym\">BAF</item> beveiligingsbeleid en <item type=\"acronym\">BAILS</item> niveaus. %PRODUCTNAME voegt aangepaste velden toe in de documenteigenschappen (<item type=\"menuitem\">Bestand - Eigenschappen</item>, tabblad Gebruikergedefinieerde eigenschappen) om het classificatiebeleid als document-metagegevens op te slaan."
#: classificationbar.xhp
msgctxt ""
@@ -1150,7 +1150,7 @@ msgctxt ""
"par_idN105B5\n"
"help.text"
msgid "<link href=\"text/swriter/01/04150000.xhp\">Insert Table</link>"
-msgstr ""
+msgstr "<link href=\"text/swriter/01/04150000.xhp\">Tabel invoegen</link>"
#: main0110.xhp
msgctxt ""
diff --git a/source/nl/helpcontent2/source/text/swriter/00.po b/source/nl/helpcontent2/source/text/swriter/00.po
index 6d131646047..4ad7365189c 100644
--- a/source/nl/helpcontent2/source/text/swriter/00.po
+++ b/source/nl/helpcontent2/source/text/swriter/00.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: 2018-05-22 13:17+0200\n"
-"PO-Revision-Date: 2018-01-02 10:17+0000\n"
-"Last-Translator: vpanter <leo.moons@telenet.be>\n"
+"PO-Revision-Date: 2018-06-04 06:00+0000\n"
+"Last-Translator: kees538 <kees538@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: nl\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1514888246.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1528092026.000000\n"
#: 00000004.xhp
msgctxt ""
@@ -598,7 +598,7 @@ msgctxt ""
"par_id3155990\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F2"
-msgstr ""
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Opdracht</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F2"
#: 00000404.xhp
msgctxt ""
@@ -854,7 +854,7 @@ msgctxt ""
"par_id3150113\n"
"help.text"
msgid "<variable id=\"einfscript\">Choose <emph>Insert - Script</emph> (only HTML documents)</variable>"
-msgstr ""
+msgstr "<variable id=\"einfscript\">Kies <emph>Invoegen - Script</emph> (alleen HTML-documenten) </variable>"
#: 00000404.xhp
msgctxt ""
@@ -1094,7 +1094,7 @@ msgctxt ""
"par_id3155087\n"
"help.text"
msgid "<variable id=\"umschlagb\">Choose <emph>Insert - Envelope - Envelope</emph> tab</variable>"
-msgstr ""
+msgstr "<variable id=\"umschlagb\">Kies <emph>Invoegen - Envelop - Envelop</emph> tabblad </variable>"
#: 00000404.xhp
msgctxt ""
@@ -1102,7 +1102,7 @@ msgctxt ""
"par_id3146955\n"
"help.text"
msgid "<variable id=\"formatbr\">Choose <emph>Insert - Envelope - Format</emph> tab</variable>"
-msgstr ""
+msgstr "<variable id=\"formatbr\">Kies <emph>Invoegen - Envelop - Opmaak</emph> tabblad </variable>"
#: 00000404.xhp
msgctxt ""
@@ -1110,7 +1110,7 @@ msgctxt ""
"par_id3154342\n"
"help.text"
msgid "<variable id=\"druckerbr\">Choose <emph>Insert - Envelope - Printer</emph> tab</variable>"
-msgstr ""
+msgstr "<variable id=\"druckerbr\">Kies <emph>Invoegen - Envelop - Printer</emph> tabblad </variable>"
#: 00000404.xhp
msgctxt ""
@@ -1158,7 +1158,7 @@ msgctxt ""
"par_id3154251\n"
"help.text"
msgid "Choose <emph>Table - Insert Table</emph>"
-msgstr ""
+msgstr "Kies <emph>Tabel - Tabel invoegen </emph>"
#: 00000404.xhp
msgctxt ""
@@ -1166,7 +1166,7 @@ msgctxt ""
"par_id3153129\n"
"help.text"
msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F12"
-msgstr ""
+msgstr "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F12"
#: 00000404.xhp
msgctxt ""
@@ -1254,7 +1254,7 @@ msgctxt ""
"par_id81526422144005\n"
"help.text"
msgid "Choose <emph>Insert - Signature Line...</emph>"
-msgstr ""
+msgstr "Kies <emph>Invoegen - Handtekeningenregel...</emph>"
#: 00000405.xhp
msgctxt ""
@@ -1478,7 +1478,7 @@ msgctxt ""
"par_id3151370\n"
"help.text"
msgid "<variable id=\"eingabe\">Choose <emph>Tools - AutoCorrect - While Typing</emph></variable>"
-msgstr ""
+msgstr "<variable id=\"eingabe\">Kies <emph>Extra - AutoCorrectie - Tijdens invoer</emph></variable>"
#: 00000405.xhp
msgctxt ""
@@ -1486,7 +1486,7 @@ msgctxt ""
"par_id3149538\n"
"help.text"
msgid "<variable id=\"autoformat1\">Choose <emph>Tools - AutoCorrect</emph></variable>"
-msgstr ""
+msgstr "<variable id=\"autoformat1\">Kies <emph>Extra - AutoCorrectie</emph></variable>"
#: 00000405.xhp
msgctxt ""
@@ -1494,7 +1494,7 @@ msgctxt ""
"par_id3150117\n"
"help.text"
msgid "<variable id=\"autoformat2\">Choose <emph>Tools - AutoCorrect - Apply</emph></variable>"
-msgstr ""
+msgstr "<variable id=\"autoformat2\">Kies <emph>Extra - AutoCorrectie - Toepassen</emph></variable>"
#: 00000405.xhp
msgctxt ""
@@ -1502,7 +1502,7 @@ msgctxt ""
"par_id3155870\n"
"help.text"
msgid "<variable id=\"autoformat3\">Choose <emph>Tools - AutoCorrect - Apply and Edit Changes</emph></variable>"
-msgstr ""
+msgstr "<variable id=\"autoformat3\">Kies <emph>Extra - AutoCorrectie - Wijzigingen toepassen en bewerken</emph></variable>"
#: 00000405.xhp
msgctxt ""
diff --git a/source/nl/helpcontent2/source/text/swriter/01.po b/source/nl/helpcontent2/source/text/swriter/01.po
index 91a332124c7..4dc19886358 100644
--- a/source/nl/helpcontent2/source/text/swriter/01.po
+++ b/source/nl/helpcontent2/source/text/swriter/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: 2018-05-22 13:17+0200\n"
-"PO-Revision-Date: 2018-03-29 12:09+0000\n"
-"Last-Translator: Cor Nouws <cor.nouws@documentfoundation.org>\n"
+"PO-Revision-Date: 2018-05-29 06:40+0000\n"
+"Last-Translator: kees538 <kees538@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: nl\n"
"MIME-Version: 1.0\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1522325397.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1527576041.000000\n"
#: 01120000.xhp
msgctxt ""
@@ -382,7 +382,7 @@ msgctxt ""
"par_id3155186\n"
"help.text"
msgid "<ahelp hid=\".uno:SendOutlineToStarImpress\">Sends the outline of the active document to a new presentation document.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".uno:SendOutlineToStarImpress\">Stuurt het overzicht van het actuele document naar een nieuwe presentatie.</ahelp>"
#: 01160200.xhp
msgctxt ""
@@ -486,7 +486,7 @@ msgctxt ""
"par_id3145412\n"
"help.text"
msgid "<ahelp hid=\".uno:SendAbstractToStarImpress\">Opens the current document as a $[officename] Impress presentation. The current document must contain at least one predefined heading paragraph style.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".uno:SendAbstractToStarImpress\">Opent het huidige document als een $[officename] Impress-presentatie. Het document moet tenminste één voorgedefinieerd kopopmaakprofiel hebben.</ahelp>"
#: 01160400.xhp
msgctxt ""
@@ -5478,7 +5478,7 @@ msgctxt ""
"par_id3147167\n"
"help.text"
msgid "<ahelp hid=\".\">Fields are used to insert information about the current document, for example, file name, template, statistics, user data, date, and time.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Velden worden gebruikt om informatie over het huidige document in te voegen, zoals bestandsnaam, sjabloon, statistieken, gebruikersgegevens, datum en tijd.</ahelp>"
#: 04090001.xhp
msgctxt ""
@@ -6182,7 +6182,7 @@ msgctxt ""
"par_id7374187\n"
"help.text"
msgid "<ahelp hid=\".\">Lists the available fields for the field type selected in the <emph>Type </emph>list. To insert a field, click the field, select a format in the \"Insert reference to\" list, and then click <emph>Insert</emph>.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Geeft de beschikbare velden weer voor het veldtype dat geselecteerd is in de lijst <emph>Type</emph>. Klik op het veld, selecteer een opmaak in de lijst \"Verwijzing invoegen naar\" en selecteer <emph>Invoegen</emph> om een veld in te voegen.</ahelp>"
#: 04090002.xhp
msgctxt ""
@@ -6494,7 +6494,7 @@ msgctxt ""
"par_id3150343\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Sets additional function parameters for fields. The type of parameter depends on the field type that you select.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Stelt extra functieparameters voor velden in. Het type parameter is afhankelijk van het veldtype dat u selecteert.</ahelp>"
#: 04090003.xhp
msgctxt ""
@@ -6502,7 +6502,7 @@ msgctxt ""
"par_id3151242\n"
"help.text"
msgid "<ahelp hid=\".\">Depending on the field type that you select, you can assign conditions to certain functions. For example, you can define a field that executes a macro when you click the field in the document, or a condition that, when met, hides a field. You can also define placeholder fields that insert graphics, tables, frames and other objects into your document when needed.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Afhankelijk van het geselecteerde veldtype kunt u voorwaarden aan bepaalde functies toewijzen. Zo kunt u een veld definiëren dat een macro uitvoert wanneer u het veld in een document aanklikt, of een voorwaarde die, wanneer eraan voldaan wordt, een veld verbergt. U kunt ook velden met tijdelijke aanduidingen definiëren die afbeeldingen, tabellen, frames en andere objecten in uw document invoegen wanneer dit nodig is.</ahelp>"
#: 04090003.xhp
msgctxt ""
@@ -6702,7 +6702,7 @@ msgctxt ""
"par_id3154830\n"
"help.text"
msgid "<ahelp hid=\".\">Enter the text to display when the condition is met in the <emph>Then </emph>box, and the text to display when the condition is not met in the <emph>Else </emph>box.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Voer de tekst in die weergegeven moet worden wanneer voldaan wordt aan de voorwaarde in het vak <emph>Dan</emph>, en de tekst die weergegeven moet worden wanneer dit niet gebeurt in het vak <emph>Anders</emph>.</ahelp>"
#: 04090003.xhp
msgctxt ""
@@ -7054,7 +7054,7 @@ msgctxt ""
"par_id3149692\n"
"help.text"
msgid "<ahelp hid=\".\">DocInformation fields contain information about the properties of a document, such as the date a document was created. To view the properties of a document, choose <emph>File - Properties</emph>.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Documentinfo-velden bevatten informatie over de eigenschappen van een document, zoals de datum waarop een document gemaakt is. Kies <emph>Bestand - Eigenschappen</emph> om de eigenschappen van een document te bekijken.</ahelp>"
#: 04090004.xhp
msgctxt ""
@@ -7326,7 +7326,7 @@ msgctxt ""
"par_id3150764\n"
"help.text"
msgid "<ahelp hid=\".\">Variable fields let you add dynamic content to your document. For example, you can use a variable to reset the page numbering.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Met behulp van variabele velden kunt u dynamische inhoud aan uw document toevoegen. U kunt een variabele gebruiken om de paginanummering opnieuw in te stellen.</ahelp>"
#: 04090005.xhp
msgctxt ""
@@ -7566,7 +7566,7 @@ msgctxt ""
"hd_id3888363\n"
"help.text"
msgid "Select"
-msgstr ""
+msgstr "Selecteren"
#: 04090005.xhp
msgctxt ""
@@ -7574,7 +7574,7 @@ msgctxt ""
"par_id7453535\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/fldvarpage/select\">Lists the available fields for the field type selected in the <emph>Type </emph>list. To insert a field, click the field, and then click <emph>Insert</emph>.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/fldvarpage/select\">Geeft de beschikbare velden weer voor het veldtype dat in de lijst <emph>Type</emph> geselecteerd is. Als u een veld wilt invoegen, klikt u op het veld en vervolgens op <emph>Invoegen</emph>.</ahelp>"
#: 04090005.xhp
msgctxt ""
@@ -7750,7 +7750,7 @@ msgctxt ""
"par_id3154471\n"
"help.text"
msgid "<ahelp hid=\".\">You can insert fields from any database, for example, address fields, into your document.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">U kunt velden uit elke gegevensbron, bijvoorbeeld adresvelden, in uw document invoegen.</ahelp>"
#: 04090006.xhp
msgctxt ""
@@ -9494,7 +9494,7 @@ msgctxt ""
"par_id761519649446210\n"
"help.text"
msgid "Choose <item type=\"menuitem\">Fields</item> of the context menu of the selected field."
-msgstr ""
+msgstr "Kies <item type=\"menuitem\">Velden</item> in het contextmenu van het geselecteerde veld."
#: 04090300.xhp
msgctxt ""
@@ -12574,7 +12574,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Insert Table"
-msgstr ""
+msgstr "Tabel invoegen"
#: 04150000.xhp
msgctxt ""
@@ -12582,7 +12582,7 @@ msgctxt ""
"hd_id3147402\n"
"help.text"
msgid "<link href=\"text/swriter/01/04150000.xhp\">Insert Table</link>"
-msgstr ""
+msgstr "<link href=\"text/swriter/01/04150000.xhp\">Tabel invoegen</link>"
#: 04150000.xhp
msgctxt ""
@@ -12590,7 +12590,7 @@ msgctxt ""
"par_id3149355\n"
"help.text"
msgid "<variable id=\"table_text\"><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></variable>"
-msgstr ""
+msgstr "<variable id=\"table_text\"><variable id=\"tabelletext\"><ahelp hid=\".\">Voegt een tabel in het document in. U kunt ook op de pijl klikken, slepen om het aantal rijen en kolommen voor de tabel te selecteren, en dan in de laatste cel klikken.</ahelp></variable></variable>"
#: 04150000.xhp
msgctxt ""
@@ -12614,7 +12614,7 @@ msgctxt ""
"par_idN10642\n"
"help.text"
msgid "To insert a table into a table, click in a cell in the table and choose <emph>Table - Insert Table</emph>."
-msgstr ""
+msgstr "Klik in een cel in de tabel en kies <emph>Tabel - Tabel invoegen</emph> om een tabel in een tabel in te voegen."
#: 04150000.xhp
msgctxt ""
@@ -12710,7 +12710,7 @@ msgctxt ""
"hd_id3143270\n"
"help.text"
msgid "Repeat heading rows on new pages"
-msgstr ""
+msgstr "Koprijen op nieuwe pagina's herhalen"
#: 04150000.xhp
msgctxt ""
@@ -12726,7 +12726,7 @@ msgctxt ""
"par_idN10754\n"
"help.text"
msgid "Heading rows"
-msgstr ""
+msgstr "Koprijen"
#: 04150000.xhp
msgctxt ""
@@ -12742,7 +12742,7 @@ msgctxt ""
"hd_id3149821\n"
"help.text"
msgid "Don't split the table over pages"
-msgstr ""
+msgstr "De tabel niet over pagina's splitsen"
#: 04150000.xhp
msgctxt ""
@@ -12758,7 +12758,7 @@ msgctxt ""
"hd_id3147213\n"
"help.text"
msgid "List of AutoFormats"
-msgstr ""
+msgstr "Lijst met AutoOpmaken"
#: 04150000.xhp
msgctxt ""
@@ -12766,7 +12766,7 @@ msgctxt ""
"par_id3149036\n"
"help.text"
msgid "<ahelp hid=\".\">Select a predefined <emph>AutoFormat</emph> for the new table.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Selecteer een voorgedefinieerde <emph>AutoOpmaak</emph> voor de nieuwe tabel.</ahelp>"
#: 04150000.xhp
msgctxt ""
@@ -20326,7 +20326,7 @@ msgctxt ""
"par_id3149500\n"
"help.text"
msgid "<variable id=\"autoformattabelle\"><ahelp hid=\".\">Automatically applies formats to the current table, including fonts, shading, and borders.</ahelp></variable>"
-msgstr ""
+msgstr "<variable id=\"autoformattabelle\"><ahelp hid=\".\">Past automatisch opmaak op de huidige tabel toe, inclusief lettertypen, schaduw en randen.</ahelp></variable>"
#: 05150101.xhp
msgctxt ""
@@ -20422,7 +20422,7 @@ msgctxt ""
"par_id3151168\n"
"help.text"
msgid "In the <emph>Add AutoFormat</emph> dialog, enter a name, and then click <emph>OK</emph>."
-msgstr ""
+msgstr "Voer in het dialoogvenster <emph>AutoOpmaak</emph> een naam in en klik op <emph>OK</emph>."
#: 05150101.xhp
msgctxt ""
@@ -20430,7 +20430,7 @@ msgctxt ""
"par_id3153391\n"
"help.text"
msgid "<ahelp visibility=\"hidden\" hid=\"modules/swriter/ui/stringinput/edit\">Enter a name for the new AutoFormat, and then click<emph> OK</emph>.</ahelp>"
-msgstr ""
+msgstr "<ahelp visibility=\"hidden\" hid=\"modules/swriter/ui/stringinput/edit\">Voer hier een naam in voor de nieuwe AutoOpmaak en klik dan op<emph> OK</emph>.</ahelp>"
#: 05150101.xhp
msgctxt ""
@@ -20446,7 +20446,7 @@ msgctxt ""
"par_id3150707\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/autoformattable/remove\">Deletes the selected table style. You cannot delete the \"Default Style\" table style.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/autoformattable/remove\">Verwijdert de geselecteerde tabelstijl. U kunt het tabelopmaakprofiel Standaard niet verwijderen.</ahelp>"
#: 05150101.xhp
msgctxt ""
@@ -20558,7 +20558,7 @@ msgctxt ""
"par_id3149490\n"
"help.text"
msgid "<ahelp hid=\"modules/swriter/ui/autoformattable/rename\">Changes the name of the selected table style. You cannot rename the \"Default Style\" table style.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"modules/swriter/ui/autoformattable/rename\">Wijzigt de naam van het geselecteerde tabelopmaakprofiel. U kunt het tabelopmaakprofiel Standaard niet hernoemen.</ahelp>"
#: 05150104.xhp
msgctxt ""
@@ -20854,7 +20854,7 @@ msgctxt ""
"par_id3083446\n"
"help.text"
msgid "<variable id=\"vorlagentext\"><ahelp hid=\".\">Imports formatting styles from another document or template into the current document.</ahelp></variable>"
-msgstr ""
+msgstr "<variable id=\"vorlagentext\"><ahelp hid=\".\">>Importeert opmaakprofielen uit een ander document of andere sjabloon in het huidige document.</ahelp></variable>"
#: 05170000.xhp
msgctxt ""
@@ -21134,7 +21134,7 @@ msgctxt ""
"par_id3147401\n"
"help.text"
msgid "<ahelp hid=\".\">Combines two consecutive tables into a single table. The tables must be directly next to each other and not separated by an empty paragraph.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Voegt twee opeenvolgende tabellen samen tot één enkele tabel. De tabellen moeten direct naast elkaar staan en niet zijn gescheiden door een lege alinea.</ahelp>"
#: 05200000.xhp
msgctxt ""
@@ -23590,7 +23590,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Adding Signature Line in Text Documents"
-msgstr ""
+msgstr "Regel voor ondertekening toevoegen in tekstdocumenten"
#: addsignatureline.xhp
msgctxt ""
@@ -23598,7 +23598,7 @@ msgctxt ""
"bm_id821526779524753\n"
"help.text"
msgid "<bookmark_value>digital signature;add signature line</bookmark_value><bookmark_value>signature line;adding</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>digitale handtekening;regel voor ondertekening toevoegen</bookmark_value><bookmark_value>regel voor ondertekening;toevoegen</bookmark_value>"
#: addsignatureline.xhp
msgctxt ""
@@ -23606,7 +23606,7 @@ msgctxt ""
"hd_id501526421873817\n"
"help.text"
msgid "<variable id=\"addsignatureline01\"><link href=\"text/swriter/01/addsignatureline.xhp\" name=\"Adding Signature Line\">Adding a Signature Line in Text Documents</link></variable>"
-msgstr ""
+msgstr "<variable id=\"addsignatureline01\"><link href=\"text/swriter/01/addsignatureline.xhp\" name=\"Adding Signature Line\">Regel voor ondertekening toevoegen in tekstdocumenten</link></variable>"
#: addsignatureline.xhp
msgctxt ""
@@ -23614,7 +23614,7 @@ msgctxt ""
"par_id991526423190756\n"
"help.text"
msgid "%PRODUCTNAME Writer can insert a graphic box inside the document representing a signature line of the document."
-msgstr ""
+msgstr "%PRODUCTNAME Writer kan een grafisch vak invoegen in het document als regel voor handtekening."
#: addsignatureline.xhp
msgctxt ""
@@ -23622,7 +23622,7 @@ msgctxt ""
"par_id751526436546030\n"
"help.text"
msgid "<image src=\"media/helpimg/sw_signatureline01.png\" id=\"img_id91526436546031\" width=\"311px\" height=\"179px\"> <alt id=\"alt_id351526436546031\">Signature Line Box</alt> </image>"
-msgstr ""
+msgstr "<image src=\"media/helpimg/sw_signatureline01.png\" id=\"img_id91526436546031\" width=\"311px\" height=\"179px\"> <alt id=\"alt_id351526436546031\">Vak voor handtekening</alt> </image>"
#: addsignatureline.xhp
msgctxt ""
@@ -23630,7 +23630,7 @@ msgctxt ""
"par_id651526423393786\n"
"help.text"
msgid "The signature line displays an horizontal line, a location mark, the name, title and e-mail of signer."
-msgstr ""
+msgstr "De regel voor ondertekening is een horizontale lijn, een locatieteken, de naam, titel en e-mail van de ondertekenaar."
#: addsignatureline.xhp
msgctxt ""
@@ -23638,7 +23638,7 @@ msgctxt ""
"hd_id631526467960460\n"
"help.text"
msgid "Name"
-msgstr ""
+msgstr "Naam"
#: addsignatureline.xhp
msgctxt ""
@@ -23646,7 +23646,7 @@ msgctxt ""
"par_id351526467968348\n"
"help.text"
msgid "Insert the name of the signer. The name is displayed in the signature line graphic box."
-msgstr ""
+msgstr "Voer de naam van de ondertekenaar in. De naam wordt weergegeven in het grafische vak van de handtekening."
#: addsignatureline.xhp
msgctxt ""
@@ -23654,7 +23654,7 @@ msgctxt ""
"hd_id171526467974440\n"
"help.text"
msgid "Title"
-msgstr ""
+msgstr "Titel"
#: addsignatureline.xhp
msgctxt ""
@@ -23662,7 +23662,7 @@ msgctxt ""
"par_id701526467979209\n"
"help.text"
msgid "Enter the title of the signer. The title is displayed in the signature line graphic box."
-msgstr ""
+msgstr "Voer de titel van de ondertekenaar in. De naam wordt weergegeven in het grafische vak van de handtekening."
#: addsignatureline.xhp
msgctxt ""
@@ -23670,7 +23670,7 @@ msgctxt ""
"hd_id431526467986157\n"
"help.text"
msgid "Email"
-msgstr ""
+msgstr "E-mail"
#: addsignatureline.xhp
msgctxt ""
@@ -23678,7 +23678,7 @@ msgctxt ""
"par_id111526467993387\n"
"help.text"
msgid "Enter the e-mail of the signer. The email is not displayed in the signature line graphic box, and is be used for the digital signature."
-msgstr ""
+msgstr "Voer de e-mail van de ondertekenaar in. De e-mail wordt niet weergegeven in het grafische vak van de ondertekening en wordt gebruikt voor de digitale handtekening."
#: addsignatureline.xhp
msgctxt ""
@@ -23686,7 +23686,7 @@ msgctxt ""
"hd_id451526468019876\n"
"help.text"
msgid "Signer can add comments"
-msgstr ""
+msgstr "Ondertekenaar kan opmerkingen toevoegen"
#: addsignatureline.xhp
msgctxt ""
@@ -23702,7 +23702,7 @@ msgctxt ""
"hd_id31526468046686\n"
"help.text"
msgid "Show sign date in signature line"
-msgstr ""
+msgstr "Datum van ondertekening weergeven in regel voor ondertekening"
#: addsignatureline.xhp
msgctxt ""
@@ -23710,7 +23710,7 @@ msgctxt ""
"par_id11526468051934\n"
"help.text"
msgid "Mark this checkbox to display the date of the signature, at the time when the document is digitally signed."
-msgstr ""
+msgstr "Markeer dit selectievakje om de datum van de handtekening weer te geven van het moment dat het document digitaal is ondertekend."
#: addsignatureline.xhp
msgctxt ""
@@ -23718,7 +23718,7 @@ msgctxt ""
"hd_id791526468057743\n"
"help.text"
msgid "Instructions to the signer"
-msgstr ""
+msgstr "Instructies voor de ondertekenaar"
#: addsignatureline.xhp
msgctxt ""
@@ -26358,7 +26358,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Signing the Signature Line"
-msgstr ""
+msgstr "Onderteken de regel voor de handtekening"
#: signsignatureline.xhp
msgctxt ""
@@ -26366,7 +26366,7 @@ msgctxt ""
"bm_id651526779220785\n"
"help.text"
msgid "<bookmark_value>digital signature;sign signature line</bookmark_value><bookmark_value>signature line;signing</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>digitale handtekening;regel voor ondertekening</bookmark_value><bookmark_value>regel voor ondertekening;ondertekenen</bookmark_value>"
#: signsignatureline.xhp
msgctxt ""
@@ -26374,7 +26374,7 @@ msgctxt ""
"hd_id401526575112776\n"
"help.text"
msgid "<variable id=\"signsignatureline01\"><link href=\"text/swriter/01/signsignatureline.xhp\" name=\"Sign Signature Line\">Digitally Signing the Signature Line</link></variable>"
-msgstr ""
+msgstr "<variable id=\"signsignatureline01\"><link href=\"text/swriter/01/signsignatureline.xhp\" name=\"Sign Signature Line\">De handtekeningenregel digitaal ondertekenen</link></variable>"
#: signsignatureline.xhp
msgctxt ""
@@ -26382,7 +26382,7 @@ msgctxt ""
"par_id611526575121298\n"
"help.text"
msgid "%PRODUCTNAME Writer lets you sign digitally a signature line."
-msgstr ""
+msgstr "In %PRODUCTNAME Writer kunt u de handtekeningenregel digitaal ondertekenen."
#: signsignatureline.xhp
msgctxt ""
@@ -26390,7 +26390,7 @@ msgctxt ""
"par_id511526575127337\n"
"help.text"
msgid "On signing a signature line, %PRODUCTNAME Writer fills the line with the name of signer, adds the digital certificate issuer information and optionally insert the date of signature."
-msgstr ""
+msgstr "Bij het ondertekenen van een handtekeningenregel vult %PRODUCTNAME Writer de regel met de naam van ondertekenaar, voegt de informatie over de digitale certificaatuitgever toe en voegt optioneel de datum van handtekening in."
#: signsignatureline.xhp
msgctxt ""
@@ -26406,7 +26406,7 @@ msgctxt ""
"hd_id311526563971364\n"
"help.text"
msgid "Your Name"
-msgstr ""
+msgstr "Uw naam"
#: signsignatureline.xhp
msgctxt ""
@@ -26414,7 +26414,7 @@ msgctxt ""
"par_id511526564217965\n"
"help.text"
msgid "Enter your name as signer of the document. Your name will be inserted above the signature horizontal line."
-msgstr ""
+msgstr "Voer uw naam in als ondertekenaar van het document. Uw naam wordt ingevoegd boven de horizontale handtekeningenlijn."
#: signsignatureline.xhp
msgctxt ""
@@ -26422,7 +26422,7 @@ msgctxt ""
"hd_id401526563978041\n"
"help.text"
msgid "Certificate"
-msgstr ""
+msgstr "Certificaat"
#: signsignatureline.xhp
msgctxt ""
@@ -26430,7 +26430,7 @@ msgctxt ""
"par_id31526564223526\n"
"help.text"
msgid "Click on the Select Certificate button to open the Select Certificate dialog box, where your certificates are listed. Select the certificate suitable for signing the document."
-msgstr ""
+msgstr "Klik op de knop Certificaat selecteren om het dialoogvenster Certificaat selecteren te openen, waar uw certificaten worden vermeld. Selecteer het geschikte certificaat voor ondertekening van het document."
#: signsignatureline.xhp
msgctxt ""
@@ -26438,7 +26438,7 @@ msgctxt ""
"par_id251526576138883\n"
"help.text"
msgid "The information of the certificate issuer is inserted in the bottom of the Signature Line object."
-msgstr ""
+msgstr "De informatie van de uitgever van het certificaat wordt onderin het object voor de handtekeningenregel ingevoegd."
#: signsignatureline.xhp
msgctxt ""
@@ -26446,7 +26446,7 @@ msgctxt ""
"hd_id301526563985718\n"
"help.text"
msgid "Instructions from the document creator"
-msgstr ""
+msgstr "Instructies van de maker van het document"
#: signsignatureline.xhp
msgctxt ""
@@ -26454,7 +26454,7 @@ msgctxt ""
"par_id271526564228571\n"
"help.text"
msgid "This area displays the instructions entered by the document creator when <link href=\"text/swriter/01/addsignatureline.xhp\" name=\"Adding the Signature Line\">adding the signature line</link>."
-msgstr ""
+msgstr "In dit gebied worden de instructies weergegeven die door de maker van het document zijn ingevoerd wanneer <link href=\"text/swriter/01/addsignatureline.xhp\" name=\"Adding the Signature Line\"> de handtekeningenregel wordt toegevoegd</link>."
#: signsignatureline.xhp
msgctxt ""
@@ -26462,7 +26462,7 @@ msgctxt ""
"hd_id161526563992082\n"
"help.text"
msgid "Add comments"
-msgstr ""
+msgstr "Opmerking toevoegen"
#: signsignatureline.xhp
msgctxt ""
@@ -26470,7 +26470,7 @@ msgctxt ""
"par_id21526564234712\n"
"help.text"
msgid "Enter comments about the signature. The comments are displayed in the <emph>Description</emph> field of the certificate."
-msgstr ""
+msgstr "Voer opmerkingen over de handtekening in. De opmerkingen worden weergegeven in het veld <emph>Beschrijving</emph> van het certificaat."
#: signsignatureline.xhp
msgctxt ""
@@ -26478,7 +26478,7 @@ msgctxt ""
"par_id621526576147414\n"
"help.text"
msgid "If enabled when the signature line was created, the date of signature is inserted on the top right of the signature line object."
-msgstr ""
+msgstr "Als dit is ingeschakeld wanneer de handtekeningenregel gemaakt werd, wordt de datum van handtekening in de rechterbovenhoek van het object van de handtekeningenregel ingevoegd."
#: signsignatureline.xhp
msgctxt ""
@@ -26486,7 +26486,7 @@ msgctxt ""
"par_id21526579319036\n"
"help.text"
msgid "<image src=\"media/helpimg/sw_signatureline02.png\" id=\"img_id551526579319036\" width=\"280px\" height=\"173px\"><alt id=\"alt_id641526579319036\">Signed Signature Line</alt></image>"
-msgstr ""
+msgstr "<image src=\"media/helpimg/sw_signatureline02.png\" id=\"img_id551526579319036\" width=\"280px\" height=\"173px\"><alt id=\"alt_id641526579319036\">Getekende handtekeningenregel</alt></image>"
#: title_page.xhp
msgctxt ""
@@ -26822,7 +26822,7 @@ msgctxt ""
"par_id761516899094991\n"
"help.text"
msgid "Choose <item type=\"menuitem\">Format - Watermark</item>."
-msgstr ""
+msgstr "Kies <item type=\"menuitem\">Opmaak - Watermerk</item>."
#: watermark.xhp
msgctxt ""
@@ -26862,7 +26862,7 @@ msgctxt ""
"par_id47418\n"
"help.text"
msgid "<image id=\"img_id16673\" src=\"media/screenshots/modules/swriter/ui/watermarkdialog/WatermarkDialog.png\" width=\"11cm\" height=\"8cm\"><alt id=\"alt_id47763\">Watermark dialog</alt></image>"
-msgstr ""
+msgstr "<image id=\"img_id16673\" src=\"media/screenshots/modules/swriter/ui/watermarkdialog/WatermarkDialog.png\" width=\"11cm\" height=\"8cm\"><alt id=\"alt_id47763\">Dialoogvenster Watermerk</alt></image>"
#: watermark.xhp
msgctxt ""
@@ -26878,7 +26878,7 @@ msgctxt ""
"par_id181516900309119\n"
"help.text"
msgid "<ahelp hid=\".\">Enter the watermark text to be displayed as image in the page background.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Voer de watermerktekst in die als afbeelding op de pagina-achtergrond moet worden weergegeven.</ahelp>"
#: watermark.xhp
msgctxt ""
@@ -26894,7 +26894,7 @@ msgctxt ""
"par_id781516900322735\n"
"help.text"
msgid "<ahelp hid=\".\">Select the font from the list.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Selecteer het lettertype in de keuzelijst.</ahelp>"
#: watermark.xhp
msgctxt ""
@@ -26918,7 +26918,7 @@ msgctxt ""
"par_id531516900343270\n"
"help.text"
msgid "<ahelp hid=\".\">Select the slant angle for the watermark. A positive angle displays the watermark from bottom to top. A negative value displays the watermark text from top to bottom.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Selecteer de schuine hoek voor het watermerk. Een positieve hoek geeft het watermerk van onder naar boven weer. Een negatieve waarde geeft de watermerktekst van boven naar beneden weer.</ahelp>"
#: watermark.xhp
msgctxt ""
@@ -26934,7 +26934,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 ""
+msgstr "<ahelp hid=\".\">Selecteer de transparantie-index voor het watermerk. De waarde 0% produceert een ondoorzichtig watermerk en een waarde van 100% is volledig transparant (onzichtbaar).</ahelp>"
#: watermark.xhp
msgctxt ""
@@ -26950,7 +26950,7 @@ msgctxt ""
"par_id521516900373461\n"
"help.text"
msgid "<ahelp hid=\".\">Select a color from the drop-down box.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\".\">Selecteer een kleur in de vervolgkeuzelijst.</ahelp>"
#: watermark.xhp
msgctxt ""
@@ -26966,7 +26966,7 @@ msgctxt ""
"par_id831516906589936\n"
"help.text"
msgid "If the watermark in use is a text inserted by the <item type=\"menuitem\">Format - Watermark</item> menu command or by the <link href=\"text/swriter/classificationbar.xhp\" name=\"classification bar\">document classification settings</link>, you can edit the contents and settings on opening the watermark dialog."
-msgstr ""
+msgstr "Als het gebruikte watermerk een tekst is die is ingevoegd in de menuoptie <item type=\"menuitem\">Opmaak - Watermerk</item> of via de <link href=\"text/swriter/classificationbar.xhp\" name=\"classification bar\"> instellingen voor documentclassificatie</link>, kunt u de inhoud en instellingen bewerken bij het openen van het dialoogvenster Watermerk."
#: watermark.xhp
msgctxt ""
diff --git a/source/nl/helpcontent2/source/text/swriter/guide.po b/source/nl/helpcontent2/source/text/swriter/guide.po
index c1a38322501..2300c5b3314 100644
--- a/source/nl/helpcontent2/source/text/swriter/guide.po
+++ b/source/nl/helpcontent2/source/text/swriter/guide.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2018-05-08 15:11+0200\n"
-"PO-Revision-Date: 2018-03-19 09:41+0000\n"
+"PO-Revision-Date: 2018-05-29 06:45+0000\n"
"Last-Translator: kees538 <kees538@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: nl\n"
@@ -13,8 +13,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1521452482.000000\n"
+"X-Generator: Pootle 2.8\n"
+"X-POOTLE-MTIME: 1527576326.000000\n"
#: anchor_object.xhp
msgctxt ""
@@ -366,7 +366,7 @@ msgctxt ""
"par_id3152867\n"
"help.text"
msgid "Choose <emph>Tools - AutoCorrect</emph>, and ensure that <emph>While Typing</emph> is selected."
-msgstr ""
+msgstr "Kies <emph>Opmaak - AutoCorrectie</emph> en selecteer <emph>Tijdens invoer</emph>."
#: auto_numbering.xhp
msgctxt ""
@@ -470,7 +470,7 @@ msgctxt ""
"par_idN10846\n"
"help.text"
msgid "To turn off most AutoCorrect features, remove the check mark from the menu <emph>Tools - AutoCorrect - While Typing</emph>."
-msgstr ""
+msgstr "U kunt de meeste functies voor AutoCorrectie uitschakelen door het vinkje in het menu <emph>Opmaak - AutoCorrectie - Tijdens invoer</emph> weg te halen."
#: auto_off.xhp
msgctxt ""
@@ -2254,7 +2254,7 @@ msgctxt ""
"par_id3154243\n"
"help.text"
msgid "Choose <emph>Table - Insert Table</emph>, and insert a table with one column and more than one row into a text document."
-msgstr ""
+msgstr "Kies <emph>Tabel - Tabel invoegen</emph> en voeg in een tekstdocument een tabel in met één kolom en meerdere rijen."
#: calculate_intable.xhp
msgctxt ""
@@ -3790,7 +3790,7 @@ msgctxt ""
"par_id3147812\n"
"help.text"
msgid "Opens a dialog to insert the object corresponding to the placeholder, except for text placeholders. For text placeholders, click on the placeholder and type over it."
-msgstr ""
+msgstr "Opent een dialoogvenster om het object in te voegen dat overeenkomt met de tijdelijke aanduiding, behalve tijdelijke aanduidingen voor tekst. Voor tijdelijke aanduidingen voor tekst, klikt u op de tijdelijke aanduiding en typt u eroverheen."
#: fields.xhp
msgctxt ""
@@ -9470,7 +9470,7 @@ msgctxt ""
"par_id2212591\n"
"help.text"
msgid "<link href=\"https://wiki.documentfoundation.org/Documentation/How_Tos/Setting_up_a_Style_for_Numbering_Lines_in_Code_Listings\" name=\"wiki.documentfoundation.org Setting up a Style for Numbering Lines in Code Listings\">Wiki page about numbering paragraphs by styles</link>"
-msgstr ""
+msgstr "<link href=\"https://wiki.documentfoundation.org/Documentation/How_Tos/Setting_up_a_Style_for_Numbering_Lines_in_Code_Listings\" name=\"wiki.documentfoundation.org Setting up a Style for Numbering Lines in Code Listings\">Wiki-pagina over het nummeren van alinea's met opmaakprofielen</link>"
#: numbering_paras.xhp
msgctxt ""
@@ -9598,7 +9598,7 @@ msgctxt ""
"par_id6943571\n"
"help.text"
msgid "<link href=\"https://wiki.documentfoundation.org/Documentation/How_Tos/Setting_up_a_Style_for_Numbering_Lines_in_Code_Listings\" name=\"wiki.documentfoundation.org Setting up a Style for Numbering Lines in Code Listings\">Wiki page about numbering paragraphs by styles</link>"
-msgstr ""
+msgstr "<link href=\"https://wiki.documentfoundation.org/Documentation/How_Tos/Setting_up_a_Style_for_Numbering_Lines_in_Code_Listings\" name=\"wiki.documentfoundation.org Setting up a Style for Numbering Lines in Code Listings\">Wiki-pagina over het nummeren van alinea's met opmaakprofielen</link>"
#: page_break.xhp
msgctxt ""
@@ -12038,7 +12038,7 @@ msgctxt ""
"par_id3153388\n"
"help.text"
msgid "Choose <emph>Tools - AutoCorrect - Apply</emph>."
-msgstr ""
+msgstr "Kies <emph>Extra - AutoCorrectie - Toepassen</emph>."
#: reset_format.xhp
msgctxt ""
@@ -13886,7 +13886,7 @@ msgctxt ""
"par_id3149609\n"
"help.text"
msgid "Choose <emph>Table - Insert Table</emph>."
-msgstr ""
+msgstr "Kies <emph>Tabel - Tabel invoegen </emph>."
#: table_insert.xhp
msgctxt ""
@@ -14166,7 +14166,7 @@ msgctxt ""
"par_id3145098\n"
"help.text"
msgid "Choose <emph>Table - Insert Table</emph>."
-msgstr ""
+msgstr "Kies <emph>Tabel - Tabel invoegen </emph>."
#: table_repeat_multiple_headers.xhp
msgctxt ""
@@ -14174,7 +14174,7 @@ msgctxt ""
"par_id3156240\n"
"help.text"
msgid "Select the <item type=\"menuitem\">Heading</item> and the <item type=\"menuitem\">Repeat heading rows on new pages</item> check boxes."
-msgstr ""
+msgstr "Selecteer de keuzevakken <item type=\"menuitem\">Kop</item> en <item type=\"menuitem\">Kop herhalen</item>."
#: table_repeat_multiple_headers.xhp
msgctxt ""
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 8407aa4b042..804ca8f804c 100644
--- a/source/nl/officecfg/registry/data/org/openoffice/Office/UI.po
+++ b/source/nl/officecfg/registry/data/org/openoffice/Office/UI.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2018-05-22 13:17+0200\n"
-"PO-Revision-Date: 2018-05-24 09:23+0000\n"
+"POT-Creation-Date: 2018-06-04 15:43+0200\n"
+"PO-Revision-Date: 2018-06-06 06:39+0000\n"
"Last-Translator: kees538 <kees538@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: nl\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1527153796.000000\n"
+"X-POOTLE-MTIME: 1528267175.000000\n"
#: BaseWindowState.xcu
msgctxt ""
@@ -26520,8 +26520,8 @@ msgctxt ""
"..WriterCommands.UserInterface.Commands..uno:TextAttributes\n"
"Label\n"
"value.text"
-msgid "Text Attributes"
-msgstr "Tekstattributen"
+msgid "Text Attributes..."
+msgstr "Tekstattributen..."
#: WriterCommands.xcu
msgctxt ""
diff --git a/source/nl/readlicense_oo/docs.po b/source/nl/readlicense_oo/docs.po
index 5cb7b860c9d..dd728f44b44 100644
--- a/source/nl/readlicense_oo/docs.po
+++ b/source/nl/readlicense_oo/docs.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: 2018-04-17 15:54+0200\n"
-"PO-Revision-Date: 2018-04-22 08:01+0000\n"
+"POT-Creation-Date: 2018-06-04 15:42+0200\n"
+"PO-Revision-Date: 2018-06-06 06:39+0000\n"
"Last-Translator: kees538 <kees538@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: nl\n"
@@ -14,7 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: Pootle 2.8\n"
-"X-POOTLE-MTIME: 1524384117.000000\n"
+"X-POOTLE-MTIME: 1528267195.000000\n"
#: readme.xrm
msgctxt ""
@@ -117,8 +117,8 @@ msgctxt ""
"readme.xrm\n"
"macxiOSX\n"
"readmeitem.text"
-msgid "MacOSX 10.8 (Mountain Lion) or higher"
-msgstr "MacOSX 10.8 (Mountain Lion) of hoger"
+msgid "MacOSX 10.9 (Mavericks) or higher"
+msgstr "MacOSX 10.9 (Mavericks) of hoger"
#: readme.xrm
msgctxt ""
diff --git a/source/nl/sc/messages.po b/source/nl/sc/messages.po
index d19fda6ef5e..099ec93cdd8 100644
--- a/source/nl/sc/messages.po
+++ b/source/nl/sc/messages.po