summaryrefslogtreecommitdiff
path: root/config.guess
blob: 76b022d3d0665e47967be29f45575753a14abc93 (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
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
#! /bin/sh
# Attempt to guess a canonical system name.
#   Copyright 1992-2020 Free Software Foundation, Inc.

timestamp='2020-08-06'

# This file is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
# General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, see <https://www.gnu.org/licenses/>.
#
# As a special exception to the GNU General Public License, if you
# distribute this file as part of a program that contains a
# configuration script generated by Autoconf, you may include it under
# the same distribution terms that you use for the rest of that
# program.  This Exception is an additional permission under section 7
# of the GNU General Public License, version 3 ("GPLv3").
#
# Originally written by Per Bothner; maintained since 2000 by Ben Elliston.
#
# You can get the latest version of this script from:
# https://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess
#
# Please send patches to <config-patches@gnu.org>.


me=`echo "$0" | sed -e 's,.*/,,'`

usage="\
Usage: $0 [OPTION]

Output the configuration name of the system \`$me' is run on.

Options:
  -h, --help         print this help, then exit
  -t, --time-stamp   print date of last modification, then exit
  -v, --version      print version number, then exit

Report bugs and patches to <config-patches@gnu.org>."

version="\
GNU config.guess ($timestamp)

Originally written by Per Bothner.
Copyright 1992-2020 Free Software Foundation, Inc.

This is free software; see the source for copying conditions.  There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE."

help="
Try \`$me --help' for more information."

# Parse command line
while test $# -gt 0 ; do
  case $1 in
    --time-stamp | --time* | -t )
       echo "$timestamp" ; exit ;;
    --version | -v )
       echo "$version" ; exit ;;
    --help | --h* | -h )
       echo "$usage"; exit ;;
    -- )     # Stop option processing
       shift; break ;;
    - )	# Use stdin as input.
       break ;;
    -* )
       echo "$me: invalid option $1$help" >&2
       exit 1 ;;
    * )
       break ;;
  esac
done

if test $# != 0; then
  echo "$me: too many arguments$help" >&2
  exit 1
fi

# CC_FOR_BUILD -- compiler used by this script. Note that the use of a
# compiler to aid in system detection is discouraged as it requires
# temporary files to be created and, as you can see below, it is a
# headache to deal with in a portable fashion.

# Historically, `CC_FOR_BUILD' used to be named `HOST_CC'. We still
# use `HOST_CC' if defined, but it is deprecated.

# Portable tmp directory creation inspired by the Autoconf team.

tmp=
# shellcheck disable=SC2172
trap 'test -z "$tmp" || rm -fr "$tmp"' 0 1 2 13 15

set_cc_for_build() {
    # prevent multiple calls if $tmp is already set
    test "$tmp" && return 0
    : "${TMPDIR=/tmp}"
    # shellcheck disable=SC2039
    { tmp=`(umask 077 && mktemp -d "$TMPDIR/cgXXXXXX") 2>/dev/null` && test -n "$tmp" && test -d "$tmp" ; } ||
	{ test -n "$RANDOM" && tmp=$TMPDIR/cg$$-$RANDOM && (umask 077 && mkdir "$tmp" 2>/dev/null) ; } ||
	{ tmp=$TMPDIR/cg-$$ && (umask 077 && mkdir "$tmp" 2>/dev/null) && echo "Warning: creating insecure temp directory" >&2 ; } ||
	{ echo "$me: cannot create a temporary directory in $TMPDIR" >&2 ; exit 1 ; }
    dummy=$tmp/dummy
    case ${CC_FOR_BUILD-},${HOST_CC-},${CC-} in
	,,)    echo "int x;" > "$dummy.c"
	       for driver in cc gcc c89 c99 ; do
		   if ($driver -c -o "$dummy.o" "$dummy.c") >/dev/null 2>&1 ; then
		       CC_FOR_BUILD="$driver"
		       break
		   fi
	       done
	       if test x"$CC_FOR_BUILD" = x ; then
		   CC_FOR_BUILD=no_compiler_found
	       fi
	       ;;
	,,*)   CC_FOR_BUILD=$CC ;;
	,*,*)  CC_FOR_BUILD=$HOST_CC ;;
    esac
}

# This is needed to find uname on a Pyramid OSx when run in the BSD universe.
# (ghazi@noc.rutgers.edu 1994-08-24)
if test -f /.attbin/uname ; then
	PATH=$PATH:/.attbin ; export PATH
fi

UNAME_MACHINE=`(uname -m) 2>/dev/null` || UNAME_MACHINE=unknown
UNAME_RELEASE=`(uname -r) 2>/dev/null` || UNAME_RELEASE=unknown
UNAME_SYSTEM=`(uname -s) 2>/dev/null`  || UNAME_SYSTEM=unknown
UNAME_VERSION=`(uname -v) 2>/dev/null` || UNAME_VERSION=unknown

case "$UNAME_SYSTEM" in
Linux|GNU|GNU/*)
	# If the system lacks a compiler, then just pick glibc.
	# We could probably try harder.
	LIBC=gnu

	set_cc_for_build
	cat <<-EOF > "$dummy.c"
	#include <features.h>
	#if defined(__UCLIBC__)
	LIBC=uclibc
	#elif defined(__dietlibc__)
	LIBC=dietlibc
	#else
	LIBC=gnu
	#endif
	EOF
	eval "`$CC_FOR_BUILD -E "$dummy.c" 2>/dev/null | grep '^LIBC' | sed 's, ,,g'`"

	# If ldd exists, use it to detect musl libc.
	if command -v ldd >/dev/null && \
		ldd --version 2>&1 | grep -q ^musl
	then
	    LIBC=musl
	fi
	;;
esac

# Note: order is significant - the case branches are not exclusive.

case "$UNAME_MACHINE:$UNAME_SYSTEM:$UNAME_RELEASE:$UNAME_VERSION" in
    *:NetBSD:*:*)
	# NetBSD (nbsd) targets should (where applicable) match one or
	# more of the tuples: *-*-netbsdelf*, *-*-netbsdaout*,
	# *-*-netbsdecoff* and *-*-netbsd*.  For targets that recently
	# switched to ELF, *-*-netbsd* would select the old
	# object file format.  This provides both forward
	# compatibility and a consistent mechanism for selecting the
	# object file format.
	#
	# Note: NetBSD doesn't particularly care about the vendor
	# portion of the name.  We always set it to "unknown".
	sysctl="sysctl -n hw.machine_arch"
	UNAME_MACHINE_ARCH=`(uname -p 2>/dev/null || \
	    "/sbin/$sysctl" 2>/dev/null || \
	    "/usr/sbin/$sysctl" 2>/dev/null || \
	    echo unknown)`
	case "$UNAME_MACHINE_ARCH" in
	    armeb) machine=armeb-unknown ;;
	    arm*) machine=arm-unknown ;;
	    sh3el) machine=shl-unknown ;;
	    sh3eb) machine=sh-unknown ;;
	    sh5el) machine=sh5le-unknown ;;
	    earmv*)
		arch=`echo "$UNAME_MACHINE_ARCH" | sed -e 's,^e\(armv[0-9]\).*$,\1,'`
		endian=`echo "$UNAME_MACHINE_ARCH" | sed -ne 's,^.*\(eb\)$,\1,p'`
		machine="${arch}${endian}"-unknown
		;;
	    *) machine="$UNAME_MACHINE_ARCH"-unknown ;;
	esac
	# The Operating System including object format, if it has switched
	# to ELF recently (or will in the future) and ABI.
	case "$UNAME_MACHINE_ARCH" in
	    earm*)
		os=netbsdelf
		;;
	    arm*|i386|m68k|ns32k|sh3*|sparc|vax)
		set_cc_for_build
		if echo __ELF__ | $CC_FOR_BUILD -E - 2>/dev/null \
			| grep -q __ELF__
		then
		    # Once all utilities can be ECOFF (netbsdecoff) or a.out (netbsdaout).
		    # Return netbsd for either.  FIX?
		    os=netbsd
		else
		    os=netbsdelf
		fi
		;;
	    *)
		os=netbsd
		;;
	esac
	# Determine ABI tags.
	case "$UNAME_MACHINE_ARCH" in
	    earm*)
		expr='s/^earmv[0-9]/-eabi/;s/eb$//'
		abi=`echo "$UNAME_MACHINE_ARCH" | sed -e "$expr"`
		;;
	esac
	# The OS release
	# Debian GNU/NetBSD machines have a different userland, and
	# thus, need a distinct triplet. However, they do not need
	# kernel version information, so it can be replaced with a
	# suitable tag, in the style of linux-gnu.
	case "$UNAME_VERSION" in
	    Debian*)
		release='-gnu'
		;;
	    *)
		release=`echo "$UNAME_RELEASE" | sed -e 's/[-_].*//' | cut -d. -f1,2`
		;;
	esac
	# Since CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM:
	# contains redundant information, the shorter form:
	# CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM is used.
	echo "$machine-${os}${release}${abi-}"
	exit ;;
    *:Bitrig:*:*)
	UNAME_MACHINE_ARCH=`arch | sed 's/Bitrig.//'`
	echo "$UNAME_MACHINE_ARCH"-unknown-bitrig"$UNAME_RELEASE"
	exit ;;
    *:OpenBSD:*:*)
	UNAME_MACHINE_ARCH=`arch | sed 's/OpenBSD.//'`
	echo "$UNAME_MACHINE_ARCH"-unknown-openbsd"$UNAME_RELEASE"
	exit ;;
    *:LibertyBSD:*:*)
	UNAME_MACHINE_ARCH=`arch | sed 's/^.*BSD\.//'`
	echo "$UNAME_MACHINE_ARCH"-unknown-libertybsd"$UNAME_RELEASE"
	exit ;;
    *:MidnightBSD:*:*)
	echo "$UNAME_MACHINE"-unknown-midnightbsd"$UNAME_RELEASE"
	exit ;;
    *:ekkoBSD:*:*)
	echo "$UNAME_MACHINE"-unknown-ekkobsd"$UNAME_RELEASE"
	exit ;;
    *:SolidBSD:*:*)
	echo "$UNAME_MACHINE"-unknown-solidbsd"$UNAME_RELEASE"
	exit ;;
    *:OS108:*:*)
	echo "$UNAME_MACHINE"-unknown-os108_"$UNAME_RELEASE"
	exit ;;
    macppc:MirBSD:*:*)
	echo powerpc-unknown-mirbsd"$UNAME_RELEASE"
	exit ;;
    *:MirBSD:*:*)
	echo "$UNAME_MACHINE"-unknown-mirbsd"$UNAME_RELEASE"
	exit ;;
    *:Sortix:*:*)
	echo "$UNAME_MACHINE"-unknown-sortix
	exit ;;
    *:Twizzler:*:*)
	echo "$UNAME_MACHINE"-unknown-twizzler
	exit ;;
    *:Redox:*:*)
	echo "$UNAME_MACHINE"-unknown-redox
	exit ;;
    mips:OSF1:*.*)
	echo mips-dec-osf1
	exit ;;
    alpha:OSF1:*:*)
	case $UNAME_RELEASE in
	*4.0)
		UNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $3}'`
		;;
	*5.*)
		UNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $4}'`
		;;
	esac
	# According to Compaq, /usr/sbin/psrinfo has been available on
	# OSF/1 and Tru64 systems produced since 1995.  I hope that
	# covers most systems running today.  This code pipes the CPU
	# types through head -n 1, so we only detect the type of CPU 0.
	ALPHA_CPU_TYPE=`/usr/sbin/psrinfo -v | sed -n -e 's/^  The alpha \(.*\) processor.*$/\1/p' | head -n 1`
	case "$ALPHA_CPU_TYPE" in
	    "EV4 (21064)")
		UNAME_MACHINE=alpha ;;
	    "EV4.5 (21064)")
		UNAME_MACHINE=alpha ;;
	    "LCA4 (21066/21068)")
		UNAME_MACHINE=alpha ;;
	    "EV5 (21164)")
		UNAME_MACHINE=alphaev5 ;;
	    "EV5.6 (21164A)")
		UNAME_MACHINE=alphaev56 ;;
	    "EV5.6 (21164PC)")
		UNAME_MACHINE=alphapca56 ;;
	    "EV5.7 (21164PC)")
		UNAME_MACHINE=alphapca57 ;;
	    "EV6 (21264)")
		UNAME_MACHINE=alphaev6 ;;
	    "EV6.7 (21264A)")
		UNAME_MACHINE=alphaev67 ;;
	    "EV6.8CB (21264C)")
		UNAME_MACHINE=alphaev68 ;;
	    "EV6.8AL (21264B)")
		UNAME_MACHINE=alphaev68 ;;
	    "EV6.8CX (21264D)")
		UNAME_MACHINE=alphaev68 ;;
	    "EV6.9A (21264/EV69A)")
		UNAME_MACHINE=alphaev69 ;;
	    "EV7 (21364)")
		UNAME_MACHINE=alphaev7 ;;
	    "EV7.9 (21364A)")
		UNAME_MACHINE=alphaev79 ;;
	esac
	# A Pn.n version is a patched version.
	# A Vn.n version is a released version.
	# A Tn.n version is a released field test version.
	# A Xn.n version is an unreleased experimental baselevel.
	# 1.2 uses "1.2" for uname -r.
	echo "$UNAME_MACHINE"-dec-osf"`echo "$UNAME_RELEASE" | sed -e 's/^[PVTX]//' | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz`"
	# Reset EXIT trap before exiting to avoid spurious non-zero exit code.
	exitcode=$?
	trap '' 0
	exit $exitcode ;;
    Amiga*:UNIX_System_V:4.0:*)
	echo m68k-unknown-sysv4
	exit ;;
    *:[Aa]miga[Oo][Ss]:*:*)
	echo "$UNAME_MACHINE"-unknown-amigaos
	exit ;;
    *:[Mm]orph[Oo][Ss]:*:*)
	echo "$UNAME_MACHINE"-unknown-morphos
	exit ;;
    *:OS/390:*:*)
	echo i370-ibm-openedition
	exit ;;
    *:z/VM:*:*)
	echo s390-ibm-zvmoe
	exit ;;
    *:OS400:*:*)
	echo powerpc-ibm-os400
	exit ;;
    arm:RISC*:1.[012]*:*|arm:riscix:1.[012]*:*)
	echo arm-acorn-riscix"$UNAME_RELEASE"
	exit ;;
    arm*:riscos:*:*|arm*:RISCOS:*:*)
	echo arm-unknown-riscos
	exit ;;
    SR2?01:HI-UX/MPP:*:* | SR8000:HI-UX/MPP:*:*)
	echo hppa1.1-hitachi-hiuxmpp
	exit ;;
    Pyramid*:OSx*:*:* | MIS*:OSx*:*:* | MIS*:SMP_DC-OSx*:*:*)
	# akee@wpdis03.wpafb.af.mil (Earle F. Ake) contributed MIS and NILE.
	if test "`(/bin/universe) 2>/dev/null`" = att ; then
		echo pyramid-pyramid-sysv3
	else
		echo pyramid-pyramid-bsd
	fi
	exit ;;
    NILE*:*:*:dcosx)
	echo pyramid-pyramid-svr4
	exit ;;
    DRS?6000:unix:4.0:6*)
	echo sparc-icl-nx6
	exit ;;
    DRS?6000:UNIX_SV:4.2*:7* | DRS?6000:isis:4.2*:7*)
	case `/usr/bin/uname -p` in
	    sparc) echo sparc-icl-nx7; exit ;;
	esac ;;
    s390x:SunOS:*:*)
	echo "$UNAME_MACHINE"-ibm-solaris2"`echo "$UNAME_RELEASE" | sed -e 's/[^.]*//'`"
	exit ;;
    sun4H:SunOS:5.*:*)
	echo sparc-hal-solaris2"`echo "$UNAME_RELEASE"|sed -e 's/[^.]*//'`"
	exit ;;
    sun4*:SunOS:5.*:* | tadpole*:SunOS:5.*:*)
	echo sparc-sun-solaris2"`echo "$UNAME_RELEASE" | sed -e 's/[^.]*//'`"
	exit ;;
    i86pc:AuroraUX:5.*:* | i86xen:AuroraUX:5.*:*)
	echo i386-pc-auroraux"$UNAME_RELEASE"
	exit ;;
    i86pc:SunOS:5.*:* | i86xen:SunOS:5.*:*)
	set_cc_for_build
	SUN_ARCH=i386
	# If there is a compiler, see if it is configured for 64-bit objects.
	# Note that the Sun cc does not turn __LP64__ into 1 like gcc does.
	# This test works for both compilers.
	if [ "$CC_FOR_BUILD" != no_compiler_found ]; then
	    if (echo '#ifdef __amd64'; echo IS_64BIT_ARCH; echo '#endif') | \
		(CCOPTS="" $CC_FOR_BUILD -E - 2>/dev/null) | \
		grep IS_64BIT_ARCH >/dev/null
	    then
		SUN_ARCH=x86_64
	    fi
	fi
	echo "$SUN_ARCH"-pc-solaris2"`echo "$UNAME_RELEASE"|sed -e 's/[^.]*//'`"
	exit ;;
    sun4*:SunOS:6*:*)
	# According to config.sub, this is the proper way to canonicalize
	# SunOS6.  Hard to guess exactly what SunOS6 will be like, but
	# it's likely to be more like Solaris than SunOS4.
	echo sparc-sun-solaris3"`echo "$UNAME_RELEASE"|sed -e 's/[^.]*//'`"
	exit ;;
    sun4*:SunOS:*:*)
	case "`/usr/bin/arch -k`" in
	    Series*|S4*)
		UNAME_RELEASE=`uname -v`
		;;
	esac
	# Japanese Language versions have a version number like `4.1.3-JL'.
	echo sparc-sun-sunos"`echo "$UNAME_RELEASE"|sed -e 's/-/_/'`"
	exit ;;
    sun3*:SunOS:*:*)
	echo m68k-sun-sunos"$UNAME_RELEASE"
	exit ;;
    sun*:*:4.2BSD:*)
	UNAME_RELEASE=`(sed 1q /etc/motd | awk '{print substr($5,1,3)}') 2>/dev/null`
	test "x$UNAME_RELEASE" = x && UNAME_RELEASE=3
	case "`/bin/arch`" in
	    sun3)
		echo m68k-sun-sunos"$UNAME_RELEASE"
		;;
	    sun4)
		echo sparc-sun-sunos"$UNAME_RELEASE"
		;;
	esac
	exit ;;
    aushp:SunOS:*:*)
	echo sparc-auspex-sunos"$UNAME_RELEASE"
	exit ;;
    # The situation for MiNT is a little confusing.  The machine name
    # can be virtually everything (everything which is not
    # "atarist" or "atariste" at least should have a processor
    # > m68000).  The system name ranges from "MiNT" over "FreeMiNT"
    # to the lowercase version "mint" (or "freemint").  Finally
    # the system name "TOS" denotes a system which is actually not
    # MiNT.  But MiNT is downward compatible to TOS, so this should
    # be no problem.
    atarist[e]:*MiNT:*:* | atarist[e]:*mint:*:* | atarist[e]:*TOS:*:*)
	echo m68k-atari-mint"$UNAME_RELEASE"
	exit ;;
    atari*:*MiNT:*:* | atari*:*mint:*:* | atarist[e]:*TOS:*:*)
	echo m68k-atari-mint"$UNAME_RELEASE"
	exit ;;
    *falcon*:*MiNT:*:* | *falcon*:*mint:*:* | *falcon*:*TOS:*:*)
	echo m68k-atari-mint"$UNAME_RELEASE"
	exit ;;
    milan*:*MiNT:*:* | milan*:*mint:*:* | *milan*:*TOS:*:*)
	echo m68k-milan-mint"$UNAME_RELEASE"
	exit ;;
    hades*:*MiNT:*:* | hades*:*mint:*:* | *hades*:*TOS:*:*)
	echo m68k-hades-mint"$UNAME_RELEASE"
	exit ;;
    *:*MiNT:*:* | *:*mint:*:* | *:*TOS:*:*)
	echo m68k-unknown-mint"$UNAME_RELEASE"
	exit ;;
    m68k:machten:*:*)
	echo m68k-apple-machten"$UNAME_RELEASE"
	exit ;;
    powerpc:machten:*:*)
	echo powerpc-apple-machten"$UNAME_RELEASE"
	exit ;;
    RISC*:Mach:*:*)
	echo mips-dec-mach_bsd4.3
	exit ;;
    RISC*:ULTRIX:*:*)
	echo mips-dec-ultrix"$UNAME_RELEASE"
	exit ;;
    VAX*:ULTRIX*:*:*)
	echo vax-dec-ultrix"$UNAME_RELEASE"
	exit ;;
    2020:CLIX:*:* | 2430:CLIX:*:*)
	echo clipper-intergraph-clix"$UNAME_RELEASE"
	exit ;;
    mips:*:*:UMIPS | mips:*:*:RISCos)
	set_cc_for_build
	sed 's/^	//' << EOF > "$dummy.c"
#ifdef __cplusplus
#include <stdio.h>  /* for printf() prototype */
	int main (int argc, char *argv[]) {
#else
	int main (argc, argv) int argc; char *argv[]; {
#endif
	#if defined (host_mips) && defined (MIPSEB)
	#if defined (SYSTYPE_SYSV)
	  printf ("mips-mips-riscos%ssysv\\n", argv[1]); exit (0);
	#endif
	#if defined (SYSTYPE_SVR4)
	  printf ("mips-mips-riscos%ssvr4\\n", argv[1]); exit (0);
	#endif
	#if defined (SYSTYPE_BSD43) || defined(SYSTYPE_BSD)
	  printf ("mips-mips-riscos%sbsd\\n", argv[1]); exit (0);
	#endif
	#endif
	  exit (-1);
	}
EOF
	$CC_FOR_BUILD -o "$dummy" "$dummy.c" &&
	  dummyarg=`echo "$UNAME_RELEASE" | sed -n 's/\([0-9]*\).*/\1/p'` &&
	  SYSTEM_NAME=`"$dummy" "$dummyarg"` &&
	    { echo "$SYSTEM_NAME"; exit; }
	echo mips-mips-riscos"$UNAME_RELEASE"
	exit ;;
    Motorola:PowerMAX_OS:*:*)
	echo powerpc-motorola-powermax
	exit ;;
    Motorola:*:4.3:PL8-*)
	echo powerpc-harris-powermax
	exit ;;
    Night_Hawk:*:*:PowerMAX_OS | Synergy:PowerMAX_OS:*:*)
	echo powerpc-harris-powermax
	exit ;;
    Night_Hawk:Power_UNIX:*:*)
	echo powerpc-harris-powerunix
	exit ;;
    m88k:CX/UX:7*:*)
	echo m88k-harris-cxux7
	exit ;;
    m88k:*:4*:R4*)
	echo m88k-motorola-sysv4
	exit ;;
    m88k:*:3*:R3*)
	echo m88k-motorola-sysv3
	exit ;;
    AViiON:dgux:*:*)
	# DG/UX returns AViiON for all architectures
	UNAME_PROCESSOR=`/usr/bin/uname -p`
	if [ "$UNAME_PROCESSOR" = mc88100 ] || [ "$UNAME_PROCESSOR" = mc88110 ]
	then
	    if [ "$TARGET_BINARY_INTERFACE"x = m88kdguxelfx ] || \
	       [ "$TARGET_BINARY_INTERFACE"x = x ]
	    then
		echo m88k-dg-dgux"$UNAME_RELEASE"
	    else
		echo m88k-dg-dguxbcs"$UNAME_RELEASE"
	    fi
	else
	    echo i586-dg-dgux"$UNAME_RELEASE"
	fi
	exit ;;
    M88*:DolphinOS:*:*)	# DolphinOS (SVR3)
	echo m88k-dolphin-sysv3
	exit ;;
    M88*:*:R3*:*)
	# Delta 88k system running SVR3
	echo m88k-motorola-sysv3
	exit ;;
    XD88*:*:*:*) # Tektronix XD88 system running UTekV (SVR3)
	echo m88k-tektronix-sysv3
	exit ;;
    Tek43[0-9][0-9]:UTek:*:*) # Tektronix 4300 system running UTek (BSD)
	echo m68k-tektronix-bsd
	exit ;;
    *:IRIX*:*:*)
	echo mips-sgi-irix"`echo "$UNAME_RELEASE"|sed -e 's/-/_/g'`"
	exit ;;
    ????????:AIX?:[12].1:2)   # AIX 2.2.1 or AIX 2.1.1 is RT/PC AIX.
	echo romp-ibm-aix     # uname -m gives an 8 hex-code CPU id
	exit ;;               # Note that: echo "'`uname -s`'" gives 'AIX '
    i*86:AIX:*:*)
	echo i386-ibm-aix
	exit ;;
    ia64:AIX:*:*)
	if [ -x /usr/bin/oslevel ] ; then
		IBM_REV=`/usr/bin/oslevel`
	else
		IBM_REV="$UNAME_VERSION.$UNAME_RELEASE"
	fi
	echo "$UNAME_MACHINE"-ibm-aix"$IBM_REV"
	exit ;;
    *:AIX:2:3)
	if grep bos325 /usr/include/stdio.h >/dev/null 2>&1; then
		set_cc_for_build
		sed 's/^		//' << EOF > "$dummy.c"
		#include <sys/systemcfg.h>

		main()
			{
			if (!__power_pc())
				exit(1);
			puts("powerpc-ibm-aix3.2.5");
			exit(0);
			}
EOF
		if $CC_FOR_BUILD -o "$dummy" "$dummy.c" && SYSTEM_NAME=`"$dummy"`
		then
			echo "$SYSTEM_NAME"
		else
			echo rs6000-ibm-aix3.2.5
		fi
	elif grep bos324 /usr/include/stdio.h >/dev/null 2>&1; then
		echo rs6000-ibm-aix3.2.4
	else
		echo rs6000-ibm-aix3.2
	fi
	exit ;;
    *:AIX:*:[4567])
	IBM_CPU_ID=`/usr/sbin/lsdev -C -c processor -S available | sed 1q | awk '{ print $1 }'`
	if /usr/sbin/lsattr -El "$IBM_CPU_ID" | grep ' POWER' >/dev/null 2>&1; then
		IBM_ARCH=rs6000
	else
		IBM_ARCH=powerpc
	fi
	if [ -x /usr/bin/lslpp ] ; then
		IBM_REV=`/usr/bin/lslpp -Lqc bos.rte.libc |
			   awk -F: '{ print $3 }' | sed s/[0-9]*$/0/`
	else
		IBM_REV="$UNAME_VERSION.$UNAME_RELEASE"
	fi
	echo "$IBM_ARCH"-ibm-aix"$IBM_REV"
	exit ;;
    *:AIX:*:*)
	echo rs6000-ibm-aix
	exit ;;
    ibmrt:4.4BSD:*|romp-ibm:4.4BSD:*)
	echo romp-ibm-bsd4.4
	exit ;;
    ibmrt:*BSD:*|romp-ibm:BSD:*)            # covers RT/PC BSD and
	echo romp-ibm-bsd"$UNAME_RELEASE"   # 4.3 with uname added to
	exit ;;                             # report: romp-ibm BSD 4.3
    *:BOSX:*:*)
	echo rs6000-bull-bosx
	exit ;;
    DPX/2?00:B.O.S.:*:*)
	echo m68k-bull-sysv3
	exit ;;
    9000/[34]??:4.3bsd:1.*:*)
	echo m68k-hp-bsd
	exit ;;
    hp300:4.4BSD:*:* | 9000/[34]??:4.3bsd:2.*:*)
	echo m68k-hp-bsd4.4
	exit ;;
    9000/[34678]??:HP-UX:*:*)
	HPUX_REV=`echo "$UNAME_RELEASE"|sed -e 's/[^.]*.[0B]*//'`
	case "$UNAME_MACHINE" in
	    9000/31?)            HP_ARCH=m68000 ;;
	    9000/[34]??)         HP_ARCH=m68k ;;
	    9000/[678][0-9][0-9])
		if [ -x /usr/bin/getconf ]; then
		    sc_cpu_version=`/usr/bin/getconf SC_CPU_VERSION 2>/dev/null`
		    sc_kernel_bits=`/usr/bin/getconf SC_KERNEL_BITS 2>/dev/null`
		    case "$sc_cpu_version" in
		      523) HP_ARCH=hppa1.0 ;; # CPU_PA_RISC1_0
		      528) HP_ARCH=hppa1.1 ;; # CPU_PA_RISC1_1
		      532)                      # CPU_PA_RISC2_0
			case "$sc_kernel_bits" in
			  32) HP_ARCH=hppa2.0n ;;
			  64) HP_ARCH=hppa2.0w ;;
			  '') HP_ARCH=hppa2.0 ;;   # HP-UX 10.20
			esac ;;
		    esac
		fi
		if [ "$HP_ARCH" = "" ]; then
		    set_cc_for_build
		    sed 's/^		//' << EOF > "$dummy.c"

		#define _HPUX_SOURCE
		#include <stdlib.h>
		#include <unistd.h>

		int main ()
		{
		#if defined(_SC_KERNEL_BITS)
		    long bits = sysconf(_SC_KERNEL_BITS);
		#endif
		    long cpu  = sysconf (_SC_CPU_VERSION);

		    switch (cpu)
			{
			case CPU_PA_RISC1_0: puts ("hppa1.0"); break;
			case CPU_PA_RISC1_1: puts ("hppa1.1"); break;
			case CPU_PA_RISC2_0:
		#if defined(_SC_KERNEL_BITS)
			    switch (bits)
				{
				case 64: puts ("hppa2.0w"); break;
				case 32: puts ("hppa2.0n"); break;
				default: puts ("hppa2.0"); break;
				} break;
		#else  /* !defined(_SC_KERNEL_BITS) */
			    puts ("hppa2.0"); break;
		#endif
			default: puts ("hppa1.0"); break;
			}
		    exit (0);
		}
EOF
		    (CCOPTS="" $CC_FOR_BUILD -o "$dummy" "$dummy.c" 2>/dev/null) && HP_ARCH=`"$dummy"`
		    test -z "$HP_ARCH" && HP_ARCH=hppa
		fi ;;
	esac
	if [ "$HP_ARCH" = hppa2.0w ]
	then
	    set_cc_for_build

	    # hppa2.0w-hp-hpux* has a 64-bit kernel and a compiler generating
	    # 32-bit code.  hppa64-hp-hpux* has the same kernel and a compiler
	    # generating 64-bit code.  GNU and HP use different nomenclature:
	    #
	    # $ CC_FOR_BUILD=cc ./config.guess
	    # => hppa2.0w-hp-hpux11.23
	    # $ CC_FOR_BUILD="cc +DA2.0w" ./config.guess
	    # => hppa64-hp-hpux11.23

	    if echo __LP64__ | (CCOPTS="" $CC_FOR_BUILD -E - 2>/dev/null) |
		grep -q __LP64__
	    then
		HP_ARCH=hppa2.0w
	    else
		HP_ARCH=hppa64
	    fi
	fi
	echo "$HP_ARCH"-hp-hpux"$HPUX_REV"
	exit ;;
    ia64:HP-UX:*:*)
	HPUX_REV=`echo "$UNAME_RELEASE"|sed -e 's/[^.]*.[0B]*//'`
	echo ia64-hp-hpux"$HPUX_REV"
	exit ;;
    3050*:HI-UX:*:*)
	set_cc_for_build
	sed 's/^	//' << EOF > "$dummy.c"
	#include <unistd.h>
	int
	main ()
	{
	  long cpu = sysconf (_SC_CPU_VERSION);
	  /* The order matters, because CPU_IS_HP_MC68K erroneously returns
	     true for CPU_PA_RISC1_0.  CPU_IS_PA_RISC returns correct
	     results, however.  */
	  if (CPU_IS_PA_RISC (cpu))
	    {
	      switch (cpu)
		{
		  case CPU_PA_RISC1_0: puts ("hppa1.0-hitachi-hiuxwe2"); break;
		  case CPU_PA_RISC1_1: puts ("hppa1.1-hitachi-hiuxwe2"); break;
		  case CPU_PA_RISC2_0: puts ("hppa2.0-hitachi-hiuxwe2"); break;
		  default: puts ("hppa-hitachi-hiuxwe2"); break;
		}
	    }
	  else if (CPU_IS_HP_MC68K (cpu))
	    puts ("m68k-hitachi-hiuxwe2");
	  else puts ("unknown-hitachi-hiuxwe2");
	  exit (0);
	}
EOF
	$CC_FOR_BUILD -o "$dummy" "$dummy.c" && SYSTEM_NAME=`"$dummy"` &&
		{ echo "$SYSTEM_NAME"; exit; }
	echo unknown-hitachi-hiuxwe2
	exit ;;
    9000/7??:4.3bsd:*:* | 9000/8?[79]:4.3bsd:*:*)
	echo hppa1.1-hp-bsd
	exit ;;
    9000/8??:4.3bsd:*:*)
	echo hppa1.0-hp-bsd
	exit ;;
    *9??*:MPE/iX:*:* | *3000*:MPE/iX:*:*)
	echo hppa1.0-hp-mpeix
	exit ;;
    hp7??:OSF1:*:* | hp8?[79]:OSF1:*:*)
	echo hppa1.1-hp-osf
	exit ;;
    hp8??:OSF1:*:*)
	echo hppa1.0-hp-osf
	exit ;;
    i*86:OSF1:*:*)
	if [ -x /usr/sbin/sysversion ] ; then
	    echo "$UNAME_MACHINE"-unknown-osf1mk
	else
	    echo "$UNAME_MACHINE"-unknown-osf1
	fi
	exit ;;
    parisc*:Lites*:*:*)
	echo hppa1.1-hp-lites
	exit ;;
    C1*:ConvexOS:*:* | convex:ConvexOS:C1*:*)
	echo c1-convex-bsd
	exit ;;
    C2*:ConvexOS:*:* | convex:ConvexOS:C2*:*)
	if getsysinfo -f scalar_acc
	then echo c32-convex-bsd
	else echo c2-convex-bsd
	fi
	exit ;;
    C34*:ConvexOS:*:* | convex:ConvexOS:C34*:*)
	echo c34-convex-bsd
	exit ;;
    C38*:ConvexOS:*:* | convex:ConvexOS:C38*:*)
	echo c38-convex-bsd
	exit ;;
    C4*:ConvexOS:*:* | convex:ConvexOS:C4*:*)
	echo c4-convex-bsd
	exit ;;
    CRAY*Y-MP:*:*:*)
	echo ymp-cray-unicos"$UNAME_RELEASE" | sed -e 's/\.[^.]*$/.X/'
	exit ;;
    CRAY*[A-Z]90:*:*:*)
	echo "$UNAME_MACHINE"-cray-unicos"$UNAME_RELEASE" \
	| sed -e 's/CRAY.*\([A-Z]90\)/\1/' \
	      -e y/ABCDEFGHIJKLMNOPQRSTUVWXYZ/abcdefghijklmnopqrstuvwxyz/ \
	      -e 's/\.[^.]*$/.X/'
	exit ;;
    CRAY*TS:*:*:*)
	echo t90-cray-unicos"$UNAME_RELEASE" | sed -e 's/\.[^.]*$/.X/'
	exit ;;
    CRAY*T3E:*:*:*)
	echo alphaev5-cray-unicosmk"$UNAME_RELEASE" | sed -e 's/\.[^.]*$/.X/'
	exit ;;
    CRAY*SV1:*:*:*)
	echo sv1-cray-unicos"$UNAME_RELEASE" | sed -e 's/\.[^.]*$/.X/'
	exit ;;
    *:UNICOS/mp:*:*)
	echo craynv-cray-unicosmp"$UNAME_RELEASE" | sed -e 's/\.[^.]*$/.X/'
	exit ;;
    F30[01]:UNIX_System_V:*:* | F700:UNIX_System_V:*:*)
	FUJITSU_PROC=`uname -m | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz`
	FUJITSU_SYS=`uname -p | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz | sed -e 's/\///'`
	FUJITSU_REL=`echo "$UNAME_RELEASE" | sed -e 's/ /_/'`
	echo "${FUJITSU_PROC}-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}"
	exit ;;
    5000:UNIX_System_V:4.*:*)
	FUJITSU_SYS=`uname -p | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz | sed -e 's/\///'`
	FUJITSU_REL=`echo "$UNAME_RELEASE" | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz | sed -e 's/ /_/'`
	echo "sparc-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}"
	exit ;;
    i*86:BSD/386:*:* | i*86:BSD/OS:*:* | *:Ascend\ Embedded/OS:*:*)
	echo "$UNAME_MACHINE"-pc-bsdi"$UNAME_RELEASE"
	exit ;;
    sparc*:BSD/OS:*:*)
	echo sparc-unknown-bsdi"$UNAME_RELEASE"
	exit ;;
    *:BSD/OS:*:*)
	echo "$UNAME_MACHINE"-unknown-bsdi"$UNAME_RELEASE"
	exit ;;
    arm:FreeBSD:*:*)
	UNAME_PROCESSOR=`uname -p`
	set_cc_for_build
	if echo __ARM_PCS_VFP | $CC_FOR_BUILD -E - 2>/dev/null \
	    | grep -q __ARM_PCS_VFP
	then
	    echo "${UNAME_PROCESSOR}"-unknown-freebsd"`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`"-gnueabi
	else
	    echo "${UNAME_PROCESSOR}"-unknown-freebsd"`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`"-gnueabihf
	fi
	exit ;;
    *:FreeBSD:*:*)
	UNAME_PROCESSOR=`/usr/bin/uname -p`
	case "$UNAME_PROCESSOR" in
	    amd64)
		UNAME_PROCESSOR=x86_64 ;;
	    i386)
		UNAME_PROCESSOR=i586 ;;
	esac
	echo "$UNAME_PROCESSOR"-unknown-freebsd"`echo "$UNAME_RELEASE"|sed -e 's/[-(].*//'`"
	exit ;;
    i*:CYGWIN*:*)
	echo "$UNAME_MACHINE"-pc-cygwin
	exit ;;
    *:MINGW64*:*)
	echo "$UNAME_MACHINE"-pc-mingw64
	exit ;;
    *:MINGW*:*)
	echo "$UNAME_MACHINE"-pc-mingw32
	exit ;;
    *:MSYS*:*)
	echo "$UNAME_MACHINE"-pc-msys
	exit ;;
    i*:PW*:*)
	echo "$UNAME_MACHINE"-pc-pw32
	exit ;;
    *:Interix*:*)
	case "$UNAME_MACHINE" in
	    x86)
		echo i586-pc-interix"$UNAME_RELEASE"
		exit ;;
	    authenticamd | genuineintel | EM64T)
		echo x86_64-unknown-interix"$UNAME_RELEASE"
		exit ;;
	    IA64)
		echo ia64-unknown-interix"$UNAME_RELEASE"
		exit ;;
	esac ;;
    i*:UWIN*:*)
	echo "$UNAME_MACHINE"-pc-uwin
	exit ;;
    amd64:CYGWIN*:*:* | x86_64:CYGWIN*:*:*)
	echo x86_64-pc-cygwin
	exit ;;
    prep*:SunOS:5.*:*)
	echo powerpcle-unknown-solaris2"`echo "$UNAME_RELEASE"|sed -e 's/[^.]*//'`"
	exit ;;
    *:GNU:*:*)
	# the GNU system
	echo "`echo "$UNAME_MACHINE"|sed -e 's,[-/].*$,,'`-unknown-$LIBC`echo "$UNAME_RELEASE"|sed -e 's,/.*$,,'`"
	exit ;;
    *:GNU/*:*:*)
	# other systems with GNU libc and userland
	echo "$UNAME_MACHINE-unknown-`echo "$UNAME_SYSTEM" | sed 's,^[^/]*/,,' | tr "[:upper:]" "[:lower:]"``echo "$UNAME_RELEASE"|sed -e 's/[-(].*//'`-$LIBC"
	exit ;;
    *:Minix:*:*)
	echo "$UNAME_MACHINE"-unknown-minix
	exit ;;
    aarch64:Linux:*:*)
	echo "$UNAME_MACHINE"-unknown-linux-"$LIBC"
	exit ;;
    aarch64_be:Linux:*:*)
	UNAME_MACHINE=aarch64_be
	echo "$UNAME_MACHINE"-unknown-linux-"$LIBC"
	exit ;;
    alpha:Linux:*:*)
	case `sed -n '/^cpu model/s/^.*: \(.*\)/\1/p' /proc/cpuinfo 2>/dev/null` in
	  EV5)   UNAME_MACHINE=alphaev5 ;;
	  EV56)  UNAME_MACHINE=alphaev56 ;;
	  PCA56) UNAME_MACHINE=alphapca56 ;;
	  PCA57) UNAME_MACHINE=alphapca56 ;;
	  EV6)   UNAME_MACHINE=alphaev6 ;;
	  EV67)  UNAME_MACHINE=alphaev67 ;;
	  EV68*) UNAME_MACHINE=alphaev68 ;;
	esac
	objdump --private-headers /bin/sh | grep -q ld.so.1
	if test "$?" = 0 ; then LIBC=gnulibc1 ; fi
	echo "$UNAME_MACHINE"-unknown-linux-"$LIBC"
	exit ;;
    arc:Linux:*:* | arceb:Linux:*:*)
	echo "$UNAME_MACHINE"-unknown-linux-"$LIBC"
	exit ;;
    arm*:Linux:*:*)
	set_cc_for_build
	if echo __ARM_EABI__ | $CC_FOR_BUILD -E - 2>/dev/null \
	    | grep -q __ARM_EABI__
	then
	    echo "$UNAME_MACHINE"-unknown-linux-"$LIBC"
	else
	    if echo __ARM_PCS_VFP | $CC_FOR_BUILD -E - 2>/dev/null \
		| grep -q __ARM_PCS_VFP
	    then
		echo "$UNAME_MACHINE"-unknown-linux-"$LIBC"eabi
	    else
		echo "$UNAME_MACHINE"-unknown-linux-"$LIBC"eabihf
	    fi
	fi
	exit ;;
    avr32*:Linux:*:*)
	echo "$UNAME_MACHINE"-unknown-linux-"$LIBC"
	exit ;;
    cris:Linux:*:*)
	echo "$UNAME_MACHINE"-axis-linux-"$LIBC"
	exit ;;
    crisv32:Linux:*:*)
	echo "$UNAME_MACHINE"-axis-linux-"$LIBC"
	exit ;;
    e2k:Linux:*:*)
	echo "$UNAME_MACHINE"-unknown-linux-"$LIBC"
	exit ;;
    frv:Linux:*:*)
	echo "$UNAME_MACHINE"-unknown-linux-"$LIBC"
	exit ;;
    hexagon:Linux:*:*)
	echo "$UNAME_MACHINE"-unknown-linux-"$LIBC"
	exit ;;
    i*86:Linux:*:*)
	echo "$UNAME_MACHINE"-pc-linux-"$LIBC"
	exit ;;
    ia64:Linux:*:*)
	echo "$UNAME_MACHINE"-unknown-linux-"$LIBC"
	exit ;;
    k1om:Linux:*:*)
	echo "$UNAME_MACHINE"-unknown-linux-"$LIBC"
	exit ;;
    m32r*:Linux:*:*)
	echo "$UNAME_MACHINE"-unknown-linux-"$LIBC"
	exit ;;
    m68*:Linux:*:*)
	echo "$UNAME_MACHINE"-unknown-linux-"$LIBC"
	exit ;;
    mips:Linux:*:* | mips64:Linux:*:*)
	set_cc_for_build
	IS_GLIBC=0
	test x"${LIBC}" = xgnu && IS_GLIBC=1
	sed 's/^	//' << EOF > "$dummy.c"
	#undef CPU
	#undef mips
	#undef mipsel
	#undef mips64
	#undef mips64el
	#if ${IS_GLIBC} && defined(_ABI64)
	LIBCABI=gnuabi64
	#else
	#if ${IS_GLIBC} && defined(_ABIN32)
	LIBCABI=gnuabin32
	#else
	LIBCABI=${LIBC}
	#endif
	#endif

	#if ${IS_GLIBC} && defined(__mips64) && defined(__mips_isa_rev) && __mips_isa_rev>=6
	CPU=mipsisa64r6
	#else
	#if ${IS_GLIBC} && !defined(__mips64) && defined(__mips_isa_rev) && __mips_isa_rev>=6
	CPU=mipsisa32r6
	#else
	#if defined(__mips64)
	CPU=mips64
	#else
	CPU=mips
	#endif
	#endif
	#endif

	#if defined(__MIPSEL__) || defined(__MIPSEL) || defined(_MIPSEL) || defined(MIPSEL)
	MIPS_ENDIAN=el
	#else
	#if defined(__MIPSEB__) || defined(__MIPSEB) || defined(_MIPSEB) || defined(MIPSEB)
	MIPS_ENDIAN=
	#else
	MIPS_ENDIAN=
	#endif
	#endif
EOF
	eval "`$CC_FOR_BUILD -E "$dummy.c" 2>/dev/null | grep '^CPU\|^MIPS_ENDIAN\|^LIBCABI'`"
	test "x$CPU" != x && { echo "$CPU${MIPS_ENDIAN}-unknown-linux-$LIBCABI"; exit; }
	;;
    mips64el:Linux:*:*)
	echo "$UNAME_MACHINE"-unknown-linux-"$LIBC"
	exit ;;
    openrisc*:Linux:*:*)
	echo or1k-unknown-linux-"$LIBC"
	exit ;;
    or32:Linux:*:* | or1k*:Linux:*:*)
	echo "$UNAME_MACHINE"-unknown-linux-"$LIBC"
	exit ;;
    padre:Linux:*:*)
	echo sparc-unknown-linux-"$LIBC"
	exit ;;
    parisc64:Linux:*:* | hppa64:Linux:*:*)
	echo hppa64-unknown-linux-"$LIBC"
	exit ;;
    parisc:Linux:*:* | hppa:Linux:*:*)
	# Look for CPU level
	case `grep '^cpu[^a-z]*:' /proc/cpuinfo 2>/dev/null | cut -d' ' -f2` in
	  PA7*) echo hppa1.1-unknown-linux-"$LIBC" ;;
	  PA8*) echo hppa2.0-unknown-linux-"$LIBC" ;;
	  *)    echo hppa-unknown-linux-"$LIBC" ;;
	esac
	exit ;;
    ppc64:Linux:*:*)
	echo powerpc64-unknown-linux-"$LIBC"
	exit ;;
    ppc:Linux:*:*)
	echo powerpc-unknown-linux-"$LIBC"
	exit ;;
    ppc64le:Linux:*:*)
	echo powerpc64le-unknown-linux-"$LIBC"
	exit ;;
    ppcle:Linux:*:*)
	echo powerpcle-unknown-linux-"$LIBC"
	exit ;;
    riscv32:Linux:*:* | riscv64:Linux:*:*)
	echo "$UNAME_MACHINE"-unknown-linux-"$LIBC"
	exit ;;
    s390:Linux:*:* | s390x:Linux:*:*)
	echo "$UNAME_MACHINE"-ibm-linux-"$LIBC"
	exit ;;
    sh64*:Linux:*:*)
	echo "$UNAME_MACHINE"-unknown-linux-"$LIBC"
	exit ;;
    sh*:Linux:*:*)
	echo "$UNAME_MACHINE"-unknown-linux-"$LIBC"
	exit ;;
    sparc:Linux:*:* | sparc64:Linux:*:*)
	echo "$UNAME_MACHINE"-unknown-linux-"$LIBC"
	exit ;;
    tile*:Linux:*:*)
	echo "$UNAME_MACHINE"-unknown-linux-"$LIBC"
	exit ;;
    vax:Linux:*:*)
	echo "$UNAME_MACHINE"-dec-linux-"$LIBC"
	exit ;;
    x86_64:Linux:*:*)
	set_cc_for_build
	LIBCABI=$LIBC
	if [ "$CC_FOR_BUILD" != no_compiler_found ]; then
	    if (echo '#ifdef __ILP32__'; echo IS_X32; echo '#endif') | \
		(CCOPTS="" $CC_FOR_BUILD -E - 2>/dev/null) | \
		grep IS_X32 >/dev/null
	    then
		LIBCABI="$LIBC"x32
	    fi
	fi
	echo "$UNAME_MACHINE"-pc-linux-"$LIBCABI"
	exit ;;
    xtensa*:Linux:*:*)
	echo "$UNAME_MACHINE"-unknown-linux-"$LIBC"
	exit ;;
    i*86:DYNIX/ptx:4*:*)
	# ptx 4.0 does uname -s correctly, with DYNIX/ptx in there.
	# earlier versions are messed up and put the nodename in both
	# sysname and nodename.
	echo i386-sequent-sysv4
	exit ;;
    i*86:UNIX_SV:4.2MP:2.*)
	# Unixware is an offshoot of SVR4, but it has its own version
	# number series starting with 2...
	# I am not positive that other SVR4 systems won't match this,
	# I just have to hope.  -- rms.
	# Use sysv4.2uw... so that sysv4* matches it.
	echo "$UNAME_MACHINE"-pc-sysv4.2uw"$UNAME_VERSION"
	exit ;;
    i*86:OS/2:*:*)
	# If we were able to find `uname', then EMX Unix compatibility
	# is probably installed.
	echo "$UNAME_MACHINE"-pc-os2-emx
	exit ;;
    i*86:XTS-300:*:STOP)
	echo "$UNAME_MACHINE"-unknown-stop
	exit ;;
    i*86:atheos:*:*)
	echo "$UNAME_MACHINE"-unknown-atheos
	exit ;;
    i*86:syllable:*:*)
	echo "$UNAME_MACHINE"-pc-syllable
	exit ;;
    i*86:LynxOS:2.*:* | i*86:LynxOS:3.[01]*:* | i*86:LynxOS:4.[02]*:*)
	echo i386-unknown-lynxos"$UNAME_RELEASE"
	exit ;;
    i*86:*DOS:*:*)
	echo "$UNAME_MACHINE"-pc-msdosdjgpp
	exit ;;
    i*86:*:4.*:*)
	UNAME_REL=`echo "$UNAME_RELEASE" | sed 's/\/MP$//'`
	if grep Novell /usr/include/link.h >/dev/null 2>/dev/null; then
		echo "$UNAME_MACHINE"-univel-sysv"$UNAME_REL"
	else
		echo "$UNAME_MACHINE"-pc-sysv"$UNAME_REL"
	fi
	exit ;;
    i*86:*:5:[678]*)
	# UnixWare 7.x, OpenUNIX and OpenServer 6.
	case `/bin/uname -X | grep "^Machine"` in
	    *486*)	     UNAME_MACHINE=i486 ;;
	    *Pentium)	     UNAME_MACHINE=i586 ;;
	    *Pent*|*Celeron) UNAME_MACHINE=i686 ;;
	esac
	echo "$UNAME_MACHINE-unknown-sysv${UNAME_RELEASE}${UNAME_SYSTEM}${UNAME_VERSION}"
	exit ;;
    i*86:*:3.2:*)
	if test -f /usr/options/cb.name; then
		UNAME_REL=`sed -n 's/.*Version //p' </usr/options/cb.name`
		echo "$UNAME_MACHINE"-pc-isc"$UNAME_REL"
	elif /bin/uname -X 2>/dev/null >/dev/null ; then
		UNAME_REL=`(/bin/uname -X|grep Release|sed -e 's/.*= //')`
		(/bin/uname -X|grep i80486 >/dev/null) && UNAME_MACHINE=i486
		(/bin/uname -X|grep '^Machine.*Pentium' >/dev/null) \
			&& UNAME_MACHINE=i586
		(/bin/uname -X|grep '^Machine.*Pent *II' >/dev/null) \
			&& UNAME_MACHINE=i686
		(/bin/uname -X|grep '^Machine.*Pentium Pro' >/dev/null) \
			&& UNAME_MACHINE=i686
		echo "$UNAME_MACHINE"-pc-sco"$UNAME_REL"
	else
		echo "$UNAME_MACHINE"-pc-sysv32
	fi
	exit ;;
    pc:*:*:*)
	# Left here for compatibility:
	# uname -m prints for DJGPP always 'pc', but it prints nothing about
	# the processor, so we play safe by assuming i586.
	# Note: whatever this is, it MUST be the same as what config.sub
	# prints for the "djgpp" host, or else GDB configure will decide that
	# this is a cross-build.
	echo i586-pc-msdosdjgpp
	exit ;;
    Intel:Mach:3*:*)
	echo i386-pc-mach3
	exit ;;
    paragon:*:*:*)
	echo i860-intel-osf1
	exit ;;
    i860:*:4.*:*) # i860-SVR4
	if grep Stardent /usr/include/sys/uadmin.h >/dev/null 2>&1 ; then
	  echo i860-stardent-sysv"$UNAME_RELEASE" # Stardent Vistra i860-SVR4
	else # Add other i860-SVR4 vendors below as they are discovered.
	  echo i860-unknown-sysv"$UNAME_RELEASE"  # Unknown i860-SVR4
	fi
	exit ;;
    mini*:CTIX:SYS*5:*)
	# "miniframe"
	echo m68010-convergent-sysv
	exit ;;
    mc68k:UNIX:SYSTEM5:3.51m)
	echo m68k-convergent-sysv
	exit ;;
    M680?0:D-NIX:5.3:*)
	echo m68k-diab-dnix
	exit ;;
    M68*:*:R3V[5678]*:*)
	test -r /sysV68 && { echo 'm68k-motorola-sysv'; exit; } ;;
    3[345]??:*:4.0:3.0 | 3[34]??A:*:4.0:3.0 | 3[34]??,*:*:4.0:3.0 | 3[34]??/*:*:4.0:3.0 | 4400:*:4.0:3.0 | 4850:*:4.0:3.0 | SKA40:*:4.0:3.0 | SDS2:*:4.0:3.0 | SHG2:*:4.0:3.0 | S7501*:*:4.0:3.0)
	OS_REL=''
	test -r /etc/.relid \
	&& OS_REL=.`sed -n 's/[^ ]* [^ ]* \([0-9][0-9]\).*/\1/p' < /etc/.relid`
	/bin/uname -p 2>/dev/null | grep 86 >/dev/null \
	  && { echo i486-ncr-sysv4.3"$OS_REL"; exit; }
	/bin/uname -p 2>/dev/null | /bin/grep entium >/dev/null \
	  && { echo i586-ncr-sysv4.3"$OS_REL"; exit; } ;;
    3[34]??:*:4.0:* | 3[34]??,*:*:4.0:*)
	/bin/uname -p 2>/dev/null | grep 86 >/dev/null \
	  && { echo i486-ncr-sysv4; exit; } ;;
    NCR*:*:4.2:* | MPRAS*:*:4.2:*)
	OS_REL='.3'
	test -r /etc/.relid \
	    && OS_REL=.`sed -n 's/[^ ]* [^ ]* \([0-9][0-9]\).*/\1/p' < /etc/.relid`
	/bin/uname -p 2>/dev/null | grep 86 >/dev/null \
	    && { echo i486-ncr-sysv4.3"$OS_REL"; exit; }
	/bin/uname -p 2>/dev/null | /bin/grep entium >/dev/null \
	    && { echo i586-ncr-sysv4.3"$OS_REL"; exit; }
	/bin/uname -p 2>/dev/null | /bin/grep pteron >/dev/null \
	    && { echo i586-ncr-sysv4.3"$OS_REL"; exit; } ;;
    m68*:LynxOS:2.*:* | m68*:LynxOS:3.0*:*)
	echo m68k-unknown-lynxos"$UNAME_RELEASE"
	exit ;;
    mc68030:UNIX_System_V:4.*:*)
	echo m68k-atari-sysv4
	exit ;;
    TSUNAMI:LynxOS:2.*:*)
	echo sparc-unknown-lynxos"$UNAME_RELEASE"
	exit ;;
    rs6000:LynxOS:2.*:*)
	echo rs6000-unknown-lynxos"$UNAME_RELEASE"
	exit ;;
    PowerPC:LynxOS:2.*:* | PowerPC:LynxOS:3.[01]*:* | PowerPC:LynxOS:4.[02]*:*)
	echo powerpc-unknown-lynxos"$UNAME_RELEASE"
	exit ;;
    SM[BE]S:UNIX_SV:*:*)
	echo mips-dde-sysv"$UNAME_RELEASE"
	exit ;;
    RM*:ReliantUNIX-*:*:*)
	echo mips-sni-sysv4
	exit ;;
    RM*:SINIX-*:*:*)
	echo mips-sni-sysv4
	exit ;;
    *:SINIX-*:*:*)
	if uname -p 2>/dev/null >/dev/null ; then
		UNAME_MACHINE=`(uname -p) 2>/dev/null`
		echo "$UNAME_MACHINE"-sni-sysv4
	else
		echo ns32k-sni-sysv
	fi
	exit ;;
    PENTIUM:*:4.0*:*)	# Unisys `ClearPath HMP IX 4000' SVR4/MP effort
			# says <Richard.M.Bartel@ccMail.Census.GOV>
	echo i586-unisys-sysv4
	exit ;;
    *:UNIX_System_V:4*:FTX*)
	# From Gerald Hewes <hewes@openmarket.com>.
	# How about differentiating between stratus architectures? -djm
	echo hppa1.1-stratus-sysv4
	exit ;;
    *:*:*:FTX*)
	# From seanf@swdc.stratus.com.
	echo i860-stratus-sysv4
	exit ;;
    i*86:VOS:*:*)
	# From Paul.Green@stratus.com.
	echo "$UNAME_MACHINE"-stratus-vos
	exit ;;
    *:VOS:*:*)
	# From Paul.Green@stratus.com.
	echo hppa1.1-stratus-vos
	exit ;;
    mc68*:A/UX:*:*)
	echo m68k-apple-aux"$UNAME_RELEASE"
	exit ;;
    news*:NEWS-OS:6*:*)
	echo mips-sony-newsos6
	exit ;;
    R[34]000:*System_V*:*:* | R4000:UNIX_SYSV:*:* | R*000:UNIX_SV:*:*)
	if [ -d /usr/nec ]; then
		echo mips-nec-sysv"$UNAME_RELEASE"
	else
		echo mips-unknown-sysv"$UNAME_RELEASE"
	fi
	exit ;;
    BeBox:BeOS:*:*)	# BeOS running on hardware made by Be, PPC only.
	echo powerpc-be-beos
	exit ;;
    BeMac:BeOS:*:*)	# BeOS running on Mac or Mac clone, PPC only.
	echo powerpc-apple-beos
	exit ;;
    BePC:BeOS:*:*)	# BeOS running on Intel PC compatible.
	echo i586-pc-beos
	exit ;;
    BePC:Haiku:*:*)	# Haiku running on Intel PC compatible.
	echo i586-pc-haiku
	exit ;;
    x86_64:Haiku:*:*)
	echo x86_64-unknown-haiku
	exit ;;
    SX-4:SUPER-UX:*:*)
	echo sx4-nec-superux"$UNAME_RELEASE"
	exit ;;
    SX-5:SUPER-UX:*:*)
	echo sx5-nec-superux"$UNAME_RELEASE"
	exit ;;
    SX-6:SUPER-UX:*:*)
	echo sx6-nec-superux"$UNAME_RELEASE"
	exit ;;
    SX-7:SUPER-UX:*:*)
	echo sx7-nec-superux"$UNAME_RELEASE"
	exit ;;
    SX-8:SUPER-UX:*:*)
	echo sx8-nec-superux"$UNAME_RELEASE"
	exit ;;
    SX-8R:SUPER-UX:*:*)
	echo sx8r-nec-superux"$UNAME_RELEASE"
	exit ;;
    SX-ACE:SUPER-UX:*:*)
	echo sxace-nec-superux"$UNAME_RELEASE"
	exit ;;
    Power*:Rhapsody:*:*)
	echo powerpc-apple-rhapsody"$UNAME_RELEASE"
	exit ;;
    *:Rhapsody:*:*)
	echo "$UNAME_MACHINE"-apple-rhapsody"$UNAME_RELEASE"
	exit ;;
    arm64:Darwin:*:*)
	echo aarch64-apple-darwin"$UNAME_RELEASE"
	exit ;;
    *:Darwin:*:*)
	UNAME_PROCESSOR=`uname -p`
	case $UNAME_PROCESSOR in
	    unknown) UNAME_PROCESSOR=powerpc ;;
	esac
	if command -v xcode-select > /dev/null 2> /dev/null && \
		! xcode-select --print-path > /dev/null 2> /dev/null ; then
	    # Avoid executing cc if there is no toolchain installed as
	    # cc will be a stub that puts up a graphical alert
	    # prompting the user to install developer tools.
	    CC_FOR_BUILD=no_compiler_found
	else
	    set_cc_for_build
	fi
	if [ "$CC_FOR_BUILD" != no_compiler_found ]; then
	    if (echo '#ifdef __LP64__'; echo IS_64BIT_ARCH; echo '#endif') | \
		   (CCOPTS="" $CC_FOR_BUILD -E - 2>/dev/null) | \
		   grep IS_64BIT_ARCH >/dev/null
	    then
		case $UNAME_PROCESSOR in
		    i386) UNAME_PROCESSOR=x86_64 ;;
		    powerpc) UNAME_PROCESSOR=powerpc64 ;;
		esac
	    fi
	    # On 10.4-10.6 one might compile for PowerPC via gcc -arch ppc
	    if (echo '#ifdef __POWERPC__'; echo IS_PPC; echo '#endif') | \
		   (CCOPTS="" $CC_FOR_BUILD -E - 2>/dev/null) | \
		   grep IS_PPC >/dev/null
	    then
		UNAME_PROCESSOR=powerpc
	    fi
	elif test "$UNAME_PROCESSOR" = i386 ; then
	    # uname -m returns i386 or x86_64
	    UNAME_PROCESSOR=$UNAME_MACHINE
	fi
	echo "$UNAME_PROCESSOR"-apple-darwin"$UNAME_RELEASE"
	exit ;;
    *:procnto*:*:* | *:QNX:[0123456789]*:*)
	UNAME_PROCESSOR=`uname -p`
	if test "$UNAME_PROCESSOR" = x86; then
		UNAME_PROCESSOR=i386
		UNAME_MACHINE=pc
	fi
	echo "$UNAME_PROCESSOR"-"$UNAME_MACHINE"-nto-qnx"$UNAME_RELEASE"
	exit ;;
    *:QNX:*:4*)
	echo i386-pc-qnx
	exit ;;
    NEO-*:NONSTOP_KERNEL:*:*)
	echo neo-tandem-nsk"$UNAME_RELEASE"
	exit ;;
    NSE-*:NONSTOP_KERNEL:*:*)
	echo nse-tandem-nsk"$UNAME_RELEASE"
	exit ;;
    NSR-*:NONSTOP_KERNEL:*:*)
	echo nsr-tandem-nsk"$UNAME_RELEASE"
	exit ;;
    NSV-*:NONSTOP_KERNEL:*:*)
	echo nsv-tandem-nsk"$UNAME_RELEASE"
	exit ;;
    NSX-*:NONSTOP_KERNEL:*:*)
	echo nsx-tandem-nsk"$UNAME_RELEASE"
	exit ;;
    *:NonStop-UX:*:*)
	echo mips-compaq-nonstopux
	exit ;;
    BS2000:POSIX*:*:*)
	echo bs2000-siemens-sysv
	exit ;;
    DS/*:UNIX_System_V:*:*)
	echo "$UNAME_MACHINE"-"$UNAME_SYSTEM"-"$UNAME_RELEASE"
	exit ;;
    *:Plan9:*:*)
	# "uname -m" is not consistent, so use $cputype instead. 386
	# is converted to i386 for consistency with other x86
	# operating systems.
	# shellcheck disable=SC2154
	if test "$cputype" = 386; then
	    UNAME_MACHINE=i386
	else
	    UNAME_MACHINE="$cputype"
	fi
	echo "$UNAME_MACHINE"-unknown-plan9
	exit ;;
    *:TOPS-10:*:*)
	echo pdp10-unknown-tops10
	exit ;;
    *:TENEX:*:*)
	echo pdp10-unknown-tenex
	exit ;;
    KS10:TOPS-20:*:* | KL10:TOPS-20:*:* | TYPE4:TOPS-20:*:*)
	echo pdp10-dec-tops20
	exit ;;
    XKL-1:TOPS-20:*:* | TYPE5:TOPS-20:*:*)
	echo pdp10-xkl-tops20
	exit ;;
    *:TOPS-20:*:*)
	echo pdp10-unknown-tops20
	exit ;;
    *:ITS:*:*)
	echo pdp10-unknown-its
	exit ;;
    SEI:*:*:SEIUX)
	echo mips-sei-seiux"$UNAME_RELEASE"
	exit ;;
    *:DragonFly:*:*)
	echo "$UNAME_MACHINE"-unknown-dragonfly"`echo "$UNAME_RELEASE"|sed -e 's/[-(].*//'`"
	exit ;;
    *:*VMS:*:*)
	UNAME_MACHINE=`(uname -p) 2>/dev/null`
	case "$UNAME_MACHINE" in
	    A*) echo alpha-dec-vms ; exit ;;
	    I*) echo ia64-dec-vms ; exit ;;
	    V*) echo vax-dec-vms ; exit ;;
	esac ;;
    *:XENIX:*:SysV)
	echo i386-pc-xenix
	exit ;;
    i*86:skyos:*:*)
	echo "$UNAME_MACHINE"-pc-skyos"`echo "$UNAME_RELEASE" | sed -e 's/ .*$//'`"
	exit ;;
    i*86:rdos:*:*)
	echo "$UNAME_MACHINE"-pc-rdos
	exit ;;
    i*86:AROS:*:*)
	echo "$UNAME_MACHINE"-pc-aros
	exit ;;
    x86_64:VMkernel:*:*)
	echo "$UNAME_MACHINE"-unknown-esx
	exit ;;
    amd64:Isilon\ OneFS:*:*)
	echo x86_64-unknown-onefs
	exit ;;
    *:Unleashed:*:*)
	echo "$UNAME_MACHINE"-unknown-unleashed"$UNAME_RELEASE"
	exit ;;
esac

# No uname command or uname output not recognized.
set_cc_for_build
cat > "$dummy.c" <<EOF
#ifdef _SEQUENT_
#include <sys/types.h>
#include <sys/utsname.h>
#endif
#if defined(ultrix) || defined(_ultrix) || defined(__ultrix) || defined(__ultrix__)
#if defined (vax) || defined (__vax) || defined (__vax__) || defined(mips) || defined(__mips) || defined(__mips__) || defined(MIPS) || defined(__MIPS__)
#include <signal.h>
#if defined(_SIZE_T_) || defined(SIGLOST)
#include <sys/utsname.h>
#endif
#endif
#endif
main ()
{
#if defined (sony)
#if defined (MIPSEB)
  /* BFD wants "bsd" instead of "newsos".  Perhaps BFD should be changed,
     I don't know....  */
  printf ("mips-sony-bsd\n"); exit (0);
#else
#include <sys/param.h>
  printf ("m68k-sony-newsos%s\n",
#ifdef NEWSOS4
  "4"
#else
  ""
#endif
  ); exit (0);
#endif
#endif

#if defined (NeXT)
#if !defined (__ARCHITECTURE__)
#define __ARCHITECTURE__ "m68k"
#endif
  int version;
  version=`(hostinfo | sed -n 's/.*NeXT Mach \([0-9]*\).*/\1/p') 2>/dev/null`;
  if (version < 4)
    printf ("%s-next-nextstep%d\n", __ARCHITECTURE__, version);
  else
    printf ("%s-next-openstep%d\n", __ARCHITECTURE__, version);
  exit (0);
#endif

#if defined (MULTIMAX) || defined (n16)
#if defined (UMAXV)
  printf ("ns32k-encore-sysv\n"); exit (0);
#else
#if defined (CMU)
  printf ("ns32k-encore-mach\n"); exit (0);
#else
  printf ("ns32k-encore-bsd\n"); exit (0);
#endif
#endif
#endif

#if defined (__386BSD__)
  printf ("i386-pc-bsd\n"); exit (0);
#endif

#if defined (sequent)
#if defined (i386)
  printf ("i386-sequent-dynix\n"); exit (0);
#endif
#if defined (ns32000)
  printf ("ns32k-sequent-dynix\n"); exit (0);
#endif
#endif

#if defined (_SEQUENT_)
  struct utsname un;

  uname(&un);
  if (strncmp(un.version, "V2", 2) == 0) {
    printf ("i386-sequent-ptx2\n"); exit (0);
  }
  if (strncmp(un.version, "V1", 2) == 0) { /* XXX is V1 correct? */
    printf ("i386-sequent-ptx1\n"); exit (0);
  }
  printf ("i386-sequent-ptx\n"); exit (0);
#endif

#if defined (vax)
#if !defined (ultrix)
#include <sys/param.h>
#if defined (BSD)
#if BSD == 43
  printf ("vax-dec-bsd4.3\n"); exit (0);
#else
#if BSD == 199006
  printf ("vax-dec-bsd4.3reno\n"); exit (0);
#else
  printf ("vax-dec-bsd\n"); exit (0);
#endif
#endif
#else
  printf ("vax-dec-bsd\n"); exit (0);
#endif
#else
#if defined(_SIZE_T_) || defined(SIGLOST)
  struct utsname un;
  uname (&un);
  printf ("vax-dec-ultrix%s\n", un.release); exit (0);
#else
  printf ("vax-dec-ultrix\n"); exit (0);
#endif
#endif
#endif
#if defined(ultrix) || defined(_ultrix) || defined(__ultrix) || defined(__ultrix__)
#if defined(mips) || defined(__mips) || defined(__mips__) || defined(MIPS) || defined(__MIPS__)
#if defined(_SIZE_T_) || defined(SIGLOST)
  struct utsname *un;
  uname (&un);
  printf ("mips-dec-ultrix%s\n", un.release); exit (0);
#else
  printf ("mips-dec-ultrix\n"); exit (0);
#endif
#endif
#endif

#if defined (alliant) && defined (i860)
  printf ("i860-alliant-bsd\n"); exit (0);
#endif

  exit (1);
}
EOF

$CC_FOR_BUILD -o "$dummy" "$dummy.c" 2>/dev/null && SYSTEM_NAME=`$dummy` &&
	{ echo "$SYSTEM_NAME"; exit; }

# Apollos put the system type in the environment.
test -d /usr/apollo && { echo "$ISP-apollo-$SYSTYPE"; exit; }

echo "$0: unable to guess system type" >&2

case "$UNAME_MACHINE:$UNAME_SYSTEM" in
    mips:Linux | mips64:Linux)
	# If we got here on MIPS GNU/Linux, output extra information.
	cat >&2 <<EOF

NOTE: MIPS GNU/Linux systems require a C compiler to fully recognize
the system type. Please install a C compiler and try again.
EOF
	;;
esac

cat >&2 <<EOF

This script (version $timestamp), has failed to recognize the
operating system you are using. If your script is old, overwrite *all*
copies of config.guess and config.sub with the latest versions from:

  https://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess
and
  https://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.sub
EOF

year=`echo $timestamp | sed 's,-.*,,'`
# shellcheck disable=SC2003
if test "`expr "\`date +%Y\`" - "$year"`" -lt 3 ; then
   cat >&2 <<EOF

If $0 has already been updated, send the following data and any
information you think might be pertinent to config-patches@gnu.org to
provide the necessary information to handle your system.

config.guess timestamp = $timestamp

uname -m = `(uname -m) 2>/dev/null || echo unknown`
uname -r = `(uname -r) 2>/dev/null || echo unknown`
uname -s = `(uname -s) 2>/dev/null || echo unknown`
uname -v = `(uname -v) 2>/dev/null || echo unknown`

/usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null`
/bin/uname -X     = `(/bin/uname -X) 2>/dev/null`

hostinfo               = `(hostinfo) 2>/dev/null`
/bin/universe          = `(/bin/universe) 2>/dev/null`
/usr/bin/arch -k       = `(/usr/bin/arch -k) 2>/dev/null`
/bin/arch              = `(/bin/arch) 2>/dev/null`
/usr/bin/oslevel       = `(/usr/bin/oslevel) 2>/dev/null`
/usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null`

UNAME_MACHINE = "$UNAME_MACHINE"
UNAME_RELEASE = "$UNAME_RELEASE"
UNAME_SYSTEM  = "$UNAME_SYSTEM"
UNAME_VERSION = "$UNAME_VERSION"
EOF
fi

exit 1

# Local variables:
# eval: (add-hook 'before-save-hook 'time-stamp)
# time-stamp-start: "timestamp='"
# time-stamp-format: "%:y-%02m-%02d"
# time-stamp-end: "'"
# End:
tyle='width: 99.6%;'/> -rw-r--r--source/en-GB/helpcontent2/source/text/swriter/guide.po85
-rw-r--r--source/en-GB/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po12
-rw-r--r--source/en-GB/officecfg/registry/data/org/openoffice/Office/UI.po54
-rw-r--r--source/en-GB/sc/messages.po402
-rw-r--r--source/en-GB/sd/messages.po6
-rw-r--r--source/en-GB/sfx2/messages.po286
-rw-r--r--source/en-GB/svtools/messages.po6
-rw-r--r--source/en-GB/svx/messages.po455
-rw-r--r--source/en-GB/sw/messages.po1369
-rw-r--r--source/en-ZA/cui/messages.po144
-rw-r--r--source/en-ZA/filter/messages.po10
-rw-r--r--source/en-ZA/helpcontent2/source/text/scalc/01.po6
-rw-r--r--source/en-ZA/helpcontent2/source/text/scalc/guide.po8
-rw-r--r--source/en-ZA/helpcontent2/source/text/shared/00.po31
-rw-r--r--source/en-ZA/helpcontent2/source/text/shared/01.po32
-rw-r--r--source/en-ZA/helpcontent2/source/text/shared/guide.po21
-rw-r--r--source/en-ZA/helpcontent2/source/text/smath/guide.po26
-rw-r--r--source/en-ZA/helpcontent2/source/text/swriter/01.po10
-rw-r--r--source/en-ZA/helpcontent2/source/text/swriter/guide.po6
-rw-r--r--source/en-ZA/svx/messages.po6
-rw-r--r--source/en-ZA/sw/messages.po125
-rw-r--r--source/eo/cui/messages.po146
-rw-r--r--source/eo/filter/messages.po16
-rw-r--r--source/eo/helpcontent2/source/text/scalc/01.po6
-rw-r--r--source/eo/helpcontent2/source/text/scalc/guide.po8
-rw-r--r--source/eo/helpcontent2/source/text/shared/00.po31
-rw-r--r--source/eo/helpcontent2/source/text/shared/01.po32
-rw-r--r--source/eo/helpcontent2/source/text/shared/guide.po19
-rw-r--r--source/eo/helpcontent2/source/text/smath/guide.po18
-rw-r--r--source/eo/helpcontent2/source/text/swriter/01.po10
-rw-r--r--source/eo/helpcontent2/source/text/swriter/guide.po6
-rw-r--r--source/eo/svx/messages.po6
-rw-r--r--source/eo/sw/messages.po128
-rw-r--r--source/es/chart2/messages.po10
-rw-r--r--source/es/cui/messages.po248
-rw-r--r--source/es/dbaccess/messages.po26
-rw-r--r--source/es/extensions/messages.po22
-rw-r--r--source/es/filter/messages.po34
-rw-r--r--source/es/formula/messages.po18
-rw-r--r--source/es/helpcontent2/source/auxiliary.po14
-rw-r--r--source/es/helpcontent2/source/text/sbasic/shared.po12
-rw-r--r--source/es/helpcontent2/source/text/sbasic/shared/03.po14
-rw-r--r--source/es/helpcontent2/source/text/scalc/00.po6
-rw-r--r--source/es/helpcontent2/source/text/scalc/01.po56
-rw-r--r--source/es/helpcontent2/source/text/scalc/02.po6
-rw-r--r--source/es/helpcontent2/source/text/scalc/guide.po20
-rw-r--r--source/es/helpcontent2/source/text/schart/01.po60
-rw-r--r--source/es/helpcontent2/source/text/sdatabase.po44
-rw-r--r--source/es/helpcontent2/source/text/sdraw/guide.po8
-rw-r--r--source/es/helpcontent2/source/text/shared.po6
-rw-r--r--source/es/helpcontent2/source/text/shared/00.po57
-rw-r--r--source/es/helpcontent2/source/text/shared/01.po54
-rw-r--r--source/es/helpcontent2/source/text/shared/02.po34
-rw-r--r--source/es/helpcontent2/source/text/shared/autopi.po170
-rw-r--r--source/es/helpcontent2/source/text/shared/guide.po149
-rw-r--r--source/es/helpcontent2/source/text/shared/optionen.po12
-rw-r--r--source/es/helpcontent2/source/text/simpress/01.po10
-rw-r--r--source/es/helpcontent2/source/text/simpress/02.po14
-rw-r--r--source/es/helpcontent2/source/text/simpress/guide.po12
-rw-r--r--source/es/helpcontent2/source/text/smath/01.po12
-rw-r--r--source/es/helpcontent2/source/text/smath/guide.po26
-rw-r--r--source/es/helpcontent2/source/text/swriter.po6
-rw-r--r--source/es/helpcontent2/source/text/swriter/00.po10
-rw-r--r--source/es/helpcontent2/source/text/swriter/01.po48
-rw-r--r--source/es/helpcontent2/source/text/swriter/02.po12
-rw-r--r--source/es/helpcontent2/source/text/swriter/guide.po30
-rw-r--r--source/es/officecfg/registry/data/org/openoffice/Office/UI.po22
-rw-r--r--source/es/sc/messages.po10
-rw-r--r--source/es/sd/messages.po16
-rw-r--r--source/es/sfx2/messages.po8
-rw-r--r--source/es/starmath/messages.po8
-rw-r--r--source/es/svtools/messages.po8
-rw-r--r--source/es/svx/messages.po30
-rw-r--r--source/es/sw/messages.po172
-rw-r--r--source/es/wizards/messages.po10
-rw-r--r--source/es/wizards/source/resources.po14
-rw-r--r--source/et/cui/messages.po146
-rw-r--r--source/et/filter/messages.po12
-rw-r--r--source/et/helpcontent2/source/text/scalc/01.po6
-rw-r--r--source/et/helpcontent2/source/text/scalc/guide.po8
-rw-r--r--source/et/helpcontent2/source/text/shared/00.po31
-rw-r--r--source/et/helpcontent2/source/text/shared/01.po36
-rw-r--r--source/et/helpcontent2/source/text/shared/guide.po23
-rw-r--r--source/et/helpcontent2/source/text/smath/guide.po26
-rw-r--r--source/et/helpcontent2/source/text/swriter/01.po10
-rw-r--r--source/et/helpcontent2/source/text/swriter/guide.po6
-rw-r--r--source/et/svx/messages.po6
-rw-r--r--source/et/sw/messages.po124
-rw-r--r--source/eu/cui/messages.po176
-rw-r--r--source/eu/editeng/messages.po12
-rw-r--r--source/eu/filter/messages.po16
-rw-r--r--source/eu/helpcontent2/source/text/scalc/01.po6
-rw-r--r--source/eu/helpcontent2/source/text/scalc/guide.po8
-rw-r--r--source/eu/helpcontent2/source/text/shared/00.po39
-rw-r--r--source/eu/helpcontent2/source/text/shared/01.po36
-rw-r--r--source/eu/helpcontent2/source/text/shared/guide.po23
-rw-r--r--source/eu/helpcontent2/source/text/smath/guide.po28
-rw-r--r--source/eu/helpcontent2/source/text/swriter/01.po14
-rw-r--r--source/eu/helpcontent2/source/text/swriter/guide.po6
-rw-r--r--source/eu/officecfg/registry/data/org/openoffice/Office/UI.po8
-rw-r--r--source/eu/sd/messages.po6
-rw-r--r--source/eu/svtools/messages.po6
-rw-r--r--source/eu/svx/messages.po6
-rw-r--r--source/eu/sw/messages.po136
-rw-r--r--source/fa/cui/messages.po134
-rw-r--r--source/fa/filter/messages.po10
-rw-r--r--source/fa/svx/messages.po6
-rw-r--r--source/fa/sw/messages.po105
-rw-r--r--source/fi/cui/messages.po173
-rw-r--r--source/fi/filter/messages.po10
-rw-r--r--source/fi/helpcontent2/source/text/sbasic/shared.po10
-rw-r--r--source/fi/helpcontent2/source/text/scalc/01.po6
-rw-r--r--source/fi/helpcontent2/source/text/scalc/guide.po10
-rw-r--r--source/fi/helpcontent2/source/text/shared/00.po31
-rw-r--r--source/fi/helpcontent2/source/text/shared/01.po36
-rw-r--r--source/fi/helpcontent2/source/text/shared/guide.po21
-rw-r--r--source/fi/helpcontent2/source/text/shared/help.po8
-rw-r--r--source/fi/helpcontent2/source/text/smath/guide.po26
-rw-r--r--source/fi/helpcontent2/source/text/swriter/01.po10
-rw-r--r--source/fi/helpcontent2/source/text/swriter/guide.po6
-rw-r--r--source/fi/helpcontent2/source/text/swriter/menu.po10
-rw-r--r--source/fi/officecfg/registry/data/org/openoffice/Office/UI.po8
-rw-r--r--source/fi/sc/messages.po6
-rw-r--r--source/fi/sd/messages.po6
-rw-r--r--source/fi/svx/messages.po10
-rw-r--r--source/fi/sw/messages.po140
-rw-r--r--source/fr/cui/messages.po146
-rw-r--r--source/fr/filter/messages.po14
-rw-r--r--source/fr/helpcontent2/source/text/scalc/01.po6
-rw-r--r--source/fr/helpcontent2/source/text/scalc/guide.po10
-rw-r--r--source/fr/helpcontent2/source/text/shared/00.po95
-rw-r--r--source/fr/helpcontent2/source/text/shared/01.po107
-rw-r--r--source/fr/helpcontent2/source/text/shared/02.po82
-rw-r--r--source/fr/helpcontent2/source/text/shared/guide.po95
-rw-r--r--source/fr/helpcontent2/source/text/shared/optionen.po6
-rw-r--r--source/fr/helpcontent2/source/text/simpress/guide.po10
-rw-r--r--source/fr/helpcontent2/source/text/smath/guide.po26
-rw-r--r--source/fr/helpcontent2/source/text/swriter/01.po40
-rw-r--r--source/fr/helpcontent2/source/text/swriter/guide.po24
-rw-r--r--source/fr/svx/messages.po6
-rw-r--r--source/fr/sw/messages.po128
-rw-r--r--source/fur/cui/messages.po140
-rw-r--r--source/fur/filter/messages.po10
-rw-r--r--source/fur/svx/messages.po6
-rw-r--r--source/fur/sw/messages.po104
-rw-r--r--source/fy/cui/messages.po144
-rw-r--r--source/fy/filter/messages.po10
-rw-r--r--source/fy/svx/messages.po6
-rw-r--r--source/fy/sw/messages.po112
-rw-r--r--source/ga/cui/messages.po134
-rw-r--r--source/ga/filter/messages.po10
-rw-r--r--source/ga/svx/messages.po6
-rw-r--r--source/ga/sw/messages.po104
-rw-r--r--source/gd/cui/messages.po134
-rw-r--r--source/gd/filter/messages.po10
-rw-r--r--source/gd/svx/messages.po6
-rw-r--r--source/gd/sw/messages.po104
-rw-r--r--source/gl/chart2/messages.po6
-rw-r--r--source/gl/cui/messages.po204
-rw-r--r--source/gl/extras/source/autocorr/emoji.po8
-rw-r--r--source/gl/filter/messages.po14
-rw-r--r--source/gl/helpcontent2/source/text/scalc/01.po6
-rw-r--r--source/gl/helpcontent2/source/text/scalc/guide.po10
-rw-r--r--source/gl/helpcontent2/source/text/shared/00.po31
-rw-r--r--source/gl/helpcontent2/source/text/shared/01.po36
-rw-r--r--source/gl/helpcontent2/source/text/shared/guide.po21
-rw-r--r--source/gl/helpcontent2/source/text/smath/guide.po26
-rw-r--r--source/gl/helpcontent2/source/text/swriter/01.po10
-rw-r--r--source/gl/helpcontent2/source/text/swriter/guide.po6
-rw-r--r--source/gl/officecfg/registry/data/org/openoffice/Office/UI.po24
-rw-r--r--source/gl/sc/messages.po25
-rw-r--r--source/gl/sd/messages.po4
-rw-r--r--source/gl/svtools/messages.po6
-rw-r--r--source/gl/svx/messages.po18
-rw-r--r--source/gl/sw/messages.po228
-rw-r--r--source/gl/vcl/messages.po6
-rw-r--r--source/gu/cui/messages.po144
-rw-r--r--source/gu/filter/messages.po10
-rw-r--r--source/gu/helpcontent2/source/text/scalc/01.po6
-rw-r--r--source/gu/helpcontent2/source/text/scalc/guide.po8
-rw-r--r--source/gu/helpcontent2/source/text/shared/00.po31
-rw-r--r--source/gu/helpcontent2/source/text/shared/01.po32
-rw-r--r--source/gu/helpcontent2/source/text/shared/guide.po21
-rw-r--r--source/gu/helpcontent2/source/text/smath/guide.po22
-rw-r--r--source/gu/helpcontent2/source/text/swriter/01.po10
-rw-r--r--source/gu/helpcontent2/source/text/swriter/guide.po6
-rw-r--r--source/gu/svx/messages.po6
-rw-r--r--source/gu/sw/messages.po112
-rw-r--r--source/gug/cui/messages.po134
-rw-r--r--source/gug/filter/messages.po10
-rw-r--r--source/gug/helpcontent2/source/auxiliary.po14
-rw-r--r--source/gug/helpcontent2/source/text/sbasic/shared.po12
-rw-r--r--source/gug/helpcontent2/source/text/sbasic/shared/03.po14
-rw-r--r--source/gug/helpcontent2/source/text/scalc/00.po6
-rw-r--r--source/gug/helpcontent2/source/text/scalc/01.po56
-rw-r--r--source/gug/helpcontent2/source/text/scalc/02.po6
-rw-r--r--source/gug/helpcontent2/source/text/scalc/guide.po20
-rw-r--r--source/gug/helpcontent2/source/text/schart/01.po60
-rw-r--r--source/gug/helpcontent2/source/text/sdatabase.po44
-rw-r--r--source/gug/helpcontent2/source/text/sdraw/guide.po8
-rw-r--r--source/gug/helpcontent2/source/text/shared.po6
-rw-r--r--source/gug/helpcontent2/source/text/shared/00.po57
-rw-r--r--source/gug/helpcontent2/source/text/shared/01.po54
-rw-r--r--source/gug/helpcontent2/source/text/shared/02.po34
-rw-r--r--source/gug/helpcontent2/source/text/shared/autopi.po170
-rw-r--r--source/gug/helpcontent2/source/text/shared/guide.po149
-rw-r--r--source/gug/helpcontent2/source/text/shared/optionen.po12
-rw-r--r--source/gug/helpcontent2/source/text/simpress/01.po10
-rw-r--r--source/gug/helpcontent2/source/text/simpress/02.po14
-rw-r--r--source/gug/helpcontent2/source/text/simpress/guide.po12
-rw-r--r--source/gug/helpcontent2/source/text/smath/01.po12
-rw-r--r--source/gug/helpcontent2/source/text/smath/guide.po26
-rw-r--r--source/gug/helpcontent2/source/text/swriter.po6
-rw-r--r--source/gug/helpcontent2/source/text/swriter/00.po10
-rw-r--r--source/gug/helpcontent2/source/text/swriter/01.po48
-rw-r--r--source/gug/helpcontent2/source/text/swriter/02.po12
-rw-r--r--source/gug/helpcontent2/source/text/swriter/guide.po30
-rw-r--r--source/gug/svx/messages.po6
-rw-r--r--source/gug/sw/messages.po104
-rw-r--r--source/he/cui/messages.po134
-rw-r--r--source/he/filter/messages.po10
-rw-r--r--source/he/helpcontent2/source/text/scalc/01.po6
-rw-r--r--source/he/helpcontent2/source/text/scalc/guide.po8
-rw-r--r--source/he/helpcontent2/source/text/shared/00.po31
-rw-r--r--source/he/helpcontent2/source/text/shared/01.po30
-rw-r--r--source/he/helpcontent2/source/text/shared/guide.po21
-rw-r--r--source/he/helpcontent2/source/text/smath/guide.po22
-rw-r--r--source/he/helpcontent2/source/text/swriter/01.po10
-rw-r--r--source/he/helpcontent2/source/text/swriter/guide.po6
-rw-r--r--source/he/svx/messages.po6
-rw-r--r--source/he/sw/messages.po105
-rw-r--r--source/hi/cui/messages.po134
-rw-r--r--source/hi/filter/messages.po10
-rw-r--r--source/hi/helpcontent2/source/text/scalc/01.po6
-rw-r--r--source/hi/helpcontent2/source/text/scalc/guide.po8
-rw-r--r--source/hi/helpcontent2/source/text/shared/00.po31
-rw-r--r--source/hi/helpcontent2/source/text/shared/01.po26
-rw-r--r--source/hi/helpcontent2/source/text/shared/guide.po19
-rw-r--r--source/hi/helpcontent2/source/text/smath/guide.po18
-rw-r--r--source/hi/helpcontent2/source/text/swriter/01.po10
-rw-r--r--source/hi/helpcontent2/source/text/swriter/guide.po6
-rw-r--r--source/hi/svx/messages.po6
-rw-r--r--source/hi/sw/messages.po104
-rw-r--r--source/hr/cui/messages.po134
-rw-r--r--source/hr/filter/messages.po10
-rw-r--r--source/hr/helpcontent2/source/text/scalc/01.po6
-rw-r--r--source/hr/helpcontent2/source/text/scalc/guide.po6
-rw-r--r--source/hr/helpcontent2/source/text/shared/00.po31
-rw-r--r--source/hr/helpcontent2/source/text/shared/01.po26
-rw-r--r--source/hr/helpcontent2/source/text/shared/guide.po19
-rw-r--r--source/hr/helpcontent2/source/text/smath/guide.po18
-rw-r--r--source/hr/helpcontent2/source/text/swriter/01.po10
-rw-r--r--source/hr/helpcontent2/source/text/swriter/guide.po6
-rw-r--r--source/hr/svx/messages.po6
-rw-r--r--source/hr/sw/messages.po104
-rw-r--r--source/hsb/cui/messages.po184
-rw-r--r--source/hsb/editeng/messages.po12
-rw-r--r--source/hsb/filter/messages.po16
-rw-r--r--source/hsb/officecfg/registry/data/org/openoffice/Office/UI.po10
-rw-r--r--source/hsb/sd/messages.po6
-rw-r--r--source/hsb/svx/messages.po12
-rw-r--r--source/hsb/sw/messages.po150
-rw-r--r--source/hu/cui/messages.po146
-rw-r--r--source/hu/filter/messages.po12
-rw-r--r--source/hu/helpcontent2/source/text/scalc/01.po6
-rw-r--r--source/hu/helpcontent2/source/text/scalc/guide.po8
-rw-r--r--source/hu/helpcontent2/source/text/shared/00.po31
-rw-r--r--source/hu/helpcontent2/source/text/shared/01.po36
-rw-r--r--source/hu/helpcontent2/source/text/shared/guide.po21
-rw-r--r--source/hu/helpcontent2/source/text/smath/guide.po26
-rw-r--r--source/hu/helpcontent2/source/text/swriter/01.po10
-rw-r--r--source/hu/helpcontent2/source/text/swriter/guide.po6
-rw-r--r--source/hu/svx/messages.po6
-rw-r--r--source/hu/sw/messages.po128
-rw-r--r--source/id/cui/messages.po146
-rw-r--r--source/id/filter/messages.po16
-rw-r--r--source/id/helpcontent2/source/text/scalc/01.po6
-rw-r--r--source/id/helpcontent2/source/text/scalc/guide.po8
-rw-r--r--source/id/helpcontent2/source/text/shared/00.po31
-rw-r--r--source/id/helpcontent2/source/text/shared/01.po36
-rw-r--r--source/id/helpcontent2/source/text/shared/guide.po21
-rw-r--r--source/id/helpcontent2/source/text/smath/guide.po26
-rw-r--r--source/id/helpcontent2/source/text/swriter/01.po10
-rw-r--r--source/id/helpcontent2/source/text/swriter/guide.po6
-rw-r--r--source/id/svx/messages.po6
-rw-r--r--source/id/sw/messages.po128
-rw-r--r--source/is/cui/messages.po134
-rw-r--r--source/is/filter/messages.po12
-rw-r--r--source/is/helpcontent2/source/text/scalc/01.po6
-rw-r--r--source/is/helpcontent2/source/text/scalc/guide.po6
-rw-r--r--source/is/helpcontent2/source/text/shared/00.po31
-rw-r--r--source/is/helpcontent2/source/text/shared/01.po30
-rw-r--r--source/is/helpcontent2/source/text/shared/guide.po19
-rw-r--r--source/is/helpcontent2/source/text/smath/guide.po18
-rw-r--r--source/is/helpcontent2/source/text/swriter/01.po10
-rw-r--r--source/is/helpcontent2/source/text/swriter/guide.po6
-rw-r--r--source/is/svx/messages.po6
-rw-r--r--source/is/sw/messages.po108
-rw-r--r--source/it/cui/messages.po146
-rw-r--r--source/it/editeng/messages.po6
-rw-r--r--source/it/filter/messages.po16
-rw-r--r--source/it/helpcontent2/source/text/scalc/01.po8
-rw-r--r--source/it/helpcontent2/source/text/scalc/guide.po10
-rw-r--r--source/it/helpcontent2/source/text/shared/00.po41
-rw-r--r--source/it/helpcontent2/source/text/shared/01.po156
-rw-r--r--source/it/helpcontent2/source/text/shared/02.po98
-rw-r--r--source/it/helpcontent2/source/text/shared/autopi.po8
-rw-r--r--source/it/helpcontent2/source/text/shared/guide.po145
-rw-r--r--source/it/helpcontent2/source/text/shared/optionen.po14
-rw-r--r--source/it/helpcontent2/source/text/simpress.po12
-rw-r--r--source/it/helpcontent2/source/text/simpress/02.po58
-rw-r--r--source/it/helpcontent2/source/text/smath/00.po24
-rw-r--r--source/it/helpcontent2/source/text/smath/01.po8
-rw-r--r--source/it/helpcontent2/source/text/smath/guide.po80
-rw-r--r--source/it/helpcontent2/source/text/swriter.po114
-rw-r--r--source/it/helpcontent2/source/text/swriter/00.po16
-rw-r--r--source/it/helpcontent2/source/text/swriter/01.po86
-rw-r--r--source/it/helpcontent2/source/text/swriter/02.po48
-rw-r--r--source/it/helpcontent2/source/text/swriter/04.po8
-rw-r--r--source/it/helpcontent2/source/text/swriter/guide.po32
-rw-r--r--source/it/officecfg/registry/data/org/openoffice/Office/UI.po8
-rw-r--r--source/it/svx/messages.po20
-rw-r--r--source/it/sw/messages.po140
-rw-r--r--source/ja/cui/messages.po146
-rw-r--r--source/ja/filter/messages.po14
-rw-r--r--source/ja/helpcontent2/source/text/scalc/01.po6
-rw-r--r--source/ja/helpcontent2/source/text/scalc/guide.po10
-rw-r--r--source/ja/helpcontent2/source/text/shared/00.po31
-rw-r--r--source/ja/helpcontent2/source/text/shared/01.po32
-rw-r--r--source/ja/helpcontent2/source/text/shared/guide.po21
-rw-r--r--source/ja/helpcontent2/source/text/smath/guide.po28
-rw-r--r--source/ja/helpcontent2/source/text/swriter/01.po10
-rw-r--r--source/ja/helpcontent2/source/text/swriter/guide.po6
-rw-r--r--source/ja/svx/messages.po12
-rw-r--r--source/ja/sw/messages.po128
-rw-r--r--source/jv/cui/messages.po134
-rw-r--r--source/jv/filter/messages.po10
-rw-r--r--source/jv/svx/messages.po6
-rw-r--r--source/jv/sw/messages.po104
-rw-r--r--source/ka/cui/messages.po136
-rw-r--r--source/ka/filter/messages.po10
-rw-r--r--source/ka/helpcontent2/source/text/scalc/01.po6
-rw-r--r--source/ka/helpcontent2/source/text/scalc/guide.po6
-rw-r--r--source/ka/helpcontent2/source/text/shared/00.po31
-rw-r--r--source/ka/helpcontent2/source/text/shared/01.po30
-rw-r--r--source/ka/helpcontent2/source/text/shared/guide.po19
-rw-r--r--source/ka/helpcontent2/source/text/smath/guide.po18
-rw-r--r--source/ka/helpcontent2/source/text/swriter/01.po10
-rw-r--r--source/ka/helpcontent2/source/text/swriter/guide.po6
-rw-r--r--source/ka/svx/messages.po6
-rw-r--r--source/ka/sw/messages.po111
-rw-r--r--source/kab/cui/messages.po134
-rw-r--r--source/kab/filter/messages.po10
-rw-r--r--source/kab/svx/messages.po6
-rw-r--r--source/kab/sw/messages.po104
-rw-r--r--source/kk/cui/messages.po136
-rw-r--r--source/kk/filter/messages.po10
-rw-r--r--source/kk/svx/messages.po6
-rw-r--r--source/kk/sw/messages.po104
-rw-r--r--source/kl/cui/messages.po134
-rw-r--r--source/kl/filter/messages.po10
-rw-r--r--source/kl/svx/messages.po6
-rw-r--r--source/kl/sw/messages.po105
-rw-r--r--source/km/cui/messages.po144
-rw-r--r--source/km/filter/messages.po10
-rw-r--r--source/km/helpcontent2/source/text/scalc/01.po6
-rw-r--r--source/km/helpcontent2/source/text/scalc/guide.po8
-rw-r--r--source/km/helpcontent2/source/text/shared/00.po31
-rw-r--r--source/km/helpcontent2/source/text/shared/01.po32
-rw-r--r--source/km/helpcontent2/source/text/shared/guide.po21
-rw-r--r--source/km/helpcontent2/source/text/smath/guide.po26
-rw-r--r--source/km/helpcontent2/source/text/swriter/01.po10
-rw-r--r--source/km/helpcontent2/source/text/swriter/guide.po6
-rw-r--r--source/km/svx/messages.po6
-rw-r--r--source/km/sw/messages.po124
-rw-r--r--source/kmr-Latn/cui/messages.po134
-rw-r--r--source/kmr-Latn/filter/messages.po10
-rw-r--r--source/kmr-Latn/svx/messages.po6
-rw-r--r--source/kmr-Latn/sw/messages.po105
-rw-r--r--source/kn/cui/messages.po134
-rw-r--r--source/kn/filter/messages.po10
-rw-r--r--source/kn/svx/messages.po6
-rw-r--r--source/kn/sw/messages.po105
-rw-r--r--source/ko/cui/messages.po144
-rw-r--r--source/ko/filter/messages.po10
-rw-r--r--source/ko/helpcontent2/source/text/scalc/01.po6
-rw-r--r--source/ko/helpcontent2/source/text/scalc/guide.po8
-rw-r--r--source/ko/helpcontent2/source/text/shared/00.po31
-rw-r--r--source/ko/helpcontent2/source/text/shared/01.po32
-rw-r--r--source/ko/helpcontent2/source/text/shared/guide.po21
-rw-r--r--source/ko/helpcontent2/source/text/smath/guide.po26
-rw-r--r--source/ko/helpcontent2/source/text/swriter/01.po10
-rw-r--r--source/ko/helpcontent2/source/text/swriter/guide.po6
-rw-r--r--source/ko/svx/messages.po6
-rw-r--r--source/ko/sw/messages.po124
-rw-r--r--source/kok/cui/messages.po134
-rw-r--r--source/kok/filter/messages.po10
-rw-r--r--source/kok/svx/messages.po6
-rw-r--r--source/kok/sw/messages.po105
-rw-r--r--source/ks/cui/messages.po134
-rw-r--r--source/ks/filter/messages.po10
-rw-r--r--source/ks/svx/messages.po6
-rw-r--r--source/ks/sw/messages.po105
-rw-r--r--source/ky/cui/messages.po134
-rw-r--r--source/ky/filter/messages.po10
-rw-r--r--source/ky/svx/messages.po6
-rw-r--r--source/ky/sw/messages.po104
-rw-r--r--source/lb/cui/messages.po134
-rw-r--r--source/lb/filter/messages.po10
-rw-r--r--source/lb/svx/messages.po6
-rw-r--r--source/lb/sw/messages.po105
-rw-r--r--source/lo/cui/messages.po134
-rw-r--r--source/lo/filter/messages.po10
-rw-r--r--source/lo/helpcontent2/source/text/scalc/01.po6
-rw-r--r--source/lo/helpcontent2/source/text/scalc/guide.po6
-rw-r--r--source/lo/helpcontent2/source/text/shared/00.po31
-rw-r--r--source/lo/helpcontent2/source/text/shared/01.po26
-rw-r--r--source/lo/helpcontent2/source/text/shared/guide.po19
-rw-r--r--source/lo/helpcontent2/source/text/smath/guide.po18
-rw-r--r--source/lo/helpcontent2/source/text/swriter/01.po10
-rw-r--r--source/lo/helpcontent2/source/text/swriter/guide.po6
-rw-r--r--source/lo/svx/messages.po6
-rw-r--r--source/lo/sw/messages.po105
-rw-r--r--source/lt/cui/messages.po142
-rw-r--r--source/lt/filter/messages.po12
-rw-r--r--source/lt/helpcontent2/source/text/scalc/01.po6
-rw-r--r--source/lt/helpcontent2/source/text/scalc/guide.po8
-rw-r--r--source/lt/helpcontent2/source/text/shared/00.po31
-rw-r--r--source/lt/helpcontent2/source/text/shared/01.po26
-rw-r--r--source/lt/helpcontent2/source/text/shared/guide.po21
-rw-r--r--source/lt/helpcontent2/source/text/smath/guide.po26
-rw-r--r--source/lt/helpcontent2/source/text/swriter/01.po10
-rw-r--r--source/lt/helpcontent2/source/text/swriter/guide.po6
-rw-r--r--source/lt/svx/messages.po6
-rw-r--r--source/lt/sw/messages.po124
-rw-r--r--source/lv/cui/messages.po134
-rw-r--r--source/lv/filter/messages.po10
-rw-r--r--source/lv/helpcontent2/source/text/scalc/01.po6
-rw-r--r--source/lv/helpcontent2/source/text/scalc/guide.po6
-rw-r--r--source/lv/helpcontent2/source/text/shared/00.po31
-rw-r--r--source/lv/helpcontent2/source/text/shared/01.po32
-rw-r--r--source/lv/helpcontent2/source/text/shared/guide.po19
-rw-r--r--source/lv/helpcontent2/source/text/smath/guide.po18
-rw-r--r--source/lv/helpcontent2/source/text/swriter/01.po10
-rw-r--r--source/lv/helpcontent2/source/text/swriter/guide.po6
-rw-r--r--source/lv/svx/messages.po6
-rw-r--r--source/lv/sw/messages.po106
-rw-r--r--source/mai/cui/messages.po134
-rw-r--r--source/mai/filter/messages.po10
-rw-r--r--source/mai/svx/messages.po6
-rw-r--r--source/mai/sw/messages.po105
-rw-r--r--source/mk/cui/messages.po144
-rw-r--r--source/mk/filter/messages.po10
-rw-r--r--source/mk/helpcontent2/source/text/scalc/01.po6
-rw-r--r--source/mk/helpcontent2/source/text/scalc/guide.po8
-rw-r--r--source/mk/helpcontent2/source/text/shared/00.po31
-rw-r--r--source/mk/helpcontent2/source/text/shared/01.po32
-rw-r--r--source/mk/helpcontent2/source/text/shared/guide.po21
-rw-r--r--source/mk/helpcontent2/source/text/smath/guide.po22
-rw-r--r--source/mk/helpcontent2/source/text/swriter/01.po10
-rw-r--r--source/mk/helpcontent2/source/text/swriter/guide.po6
-rw-r--r--source/mk/svx/messages.po6
-rw-r--r--source/mk/sw/messages.po125
-rw-r--r--source/ml/cui/messages.po134
-rw-r--r--source/ml/filter/messages.po10
-rw-r--r--source/ml/svx/messages.po6
-rw-r--r--source/ml/sw/messages.po105
-rw-r--r--source/mn/cui/messages.po136
-rw-r--r--source/mn/filter/messages.po12
-rw-r--r--source/mn/svx/messages.po6
-rw-r--r--source/mn/sw/messages.po107
-rw-r--r--source/mni/cui/messages.po134
-rw-r--r--source/mni/filter/messages.po10
-rw-r--r--source/mni/svx/messages.po6
-rw-r--r--source/mni/sw/messages.po105
-rw-r--r--source/mr/cui/messages.po134
-rw-r--r--source/mr/filter/messages.po10
-rw-r--r--source/mr/svx/messages.po6
-rw-r--r--source/mr/sw/messages.po104
-rw-r--r--source/my/cui/messages.po134
-rw-r--r--source/my/filter/messages.po10
-rw-r--r--source/my/svx/messages.po6
-rw-r--r--source/my/sw/messages.po105
-rw-r--r--source/nb/cui/messages.po146
-rw-r--r--source/nb/filter/messages.po16
-rw-r--r--source/nb/helpcontent2/source/text/scalc/01.po6
-rw-r--r--source/nb/helpcontent2/source/text/scalc/guide.po10
-rw-r--r--source/nb/helpcontent2/source/text/shared/00.po39
-rw-r--r--source/nb/helpcontent2/source/text/shared/01.po32
-rw-r--r--source/nb/helpcontent2/source/text/shared/guide.po23
-rw-r--r--source/nb/helpcontent2/source/text/smath/guide.po28
-rw-r--r--source/nb/helpcontent2/source/text/swriter/01.po14
-rw-r--r--source/nb/helpcontent2/source/text/swriter/guide.po6
-rw-r--r--source/nb/svx/messages.po6
-rw-r--r--source/nb/sw/messages.po128
-rw-r--r--source/ne/cui/messages.po144
-rw-r--r--source/ne/filter/messages.po10
-rw-r--r--source/ne/helpcontent2/source/text/scalc/01.po6
-rw-r--r--source/ne/helpcontent2/source/text/scalc/guide.po8
-rw-r--r--source/ne/helpcontent2/source/text/shared/00.po31
-rw-r--r--source/ne/helpcontent2/source/text/shared/01.po32
-rw-r--r--source/ne/helpcontent2/source/text/shared/guide.po21
-rw-r--r--source/ne/helpcontent2/source/text/smath/guide.po22
-rw-r--r--source/ne/helpcontent2/source/text/swriter/01.po10
-rw-r--r--source/ne/helpcontent2/source/text/swriter/guide.po6
-rw-r--r--source/ne/svx/messages.po6
-rw-r--r--source/ne/sw/messages.po125
-rw-r--r--source/nl/cui/messages.po164
-rw-r--r--source/nl/filter/messages.po16
-rw-r--r--source/nl/helpcontent2/source/text/sbasic/python.po26
-rw-r--r--source/nl/helpcontent2/source/text/sbasic/shared.po186
-rw-r--r--source/nl/helpcontent2/source/text/sbasic/shared/03.po2002
-rw-r--r--source/nl/helpcontent2/source/text/scalc/01.po15
-rw-r--r--source/nl/helpcontent2/source/text/scalc/guide.po10
-rw-r--r--source/nl/helpcontent2/source/text/shared/00.po93
-rw-r--r--source/nl/helpcontent2/source/text/shared/01.po118
-rw-r--r--source/nl/helpcontent2/source/text/shared/02.po10
-rw-r--r--source/nl/helpcontent2/source/text/shared/guide.po99
-rw-r--r--source/nl/helpcontent2/source/text/shared/optionen.po8
-rw-r--r--source/nl/helpcontent2/source/text/simpress/01.po6
-rw-r--r--source/nl/helpcontent2/source/text/simpress/guide.po12
-rw-r--r--source/nl/helpcontent2/source/text/smath/guide.po28
-rw-r--r--source/nl/helpcontent2/source/text/swriter/00.po8
-rw-r--r--source/nl/helpcontent2/source/text/swriter/01.po60
-rw-r--r--source/nl/helpcontent2/source/text/swriter/guide.po32
-rw-r--r--source/nl/sd/messages.po8
-rw-r--r--source/nl/svtools/messages.po6
-rw-r--r--source/nl/svx/messages.po14
-rw-r--r--source/nl/sw/messages.po130
-rw-r--r--source/nn/cui/messages.po146
-rw-r--r--source/nn/filter/messages.po14
-rw-r--r--source/nn/helpcontent2/source/text/sbasic/python.po10
-rw-r--r--source/nn/helpcontent2/source/text/sbasic/shared/02.po10
-rw-r--r--source/nn/helpcontent2/source/text/sbasic/shared/03.po56
-rw-r--r--source/nn/helpcontent2/source/text/scalc/01.po6
-rw-r--r--source/nn/helpcontent2/source/text/scalc/guide.po10
-rw-r--r--source/nn/helpcontent2/source/text/shared/00.po39
-rw-r--r--source/nn/helpcontent2/source/text/shared/01.po36
-rw-r--r--source/nn/helpcontent2/source/text/shared/guide.po23
-rw-r--r--source/nn/helpcontent2/source/text/smath/guide.po26
-rw-r--r--source/nn/helpcontent2/source/text/swriter/01.po14
-rw-r--r--source/nn/helpcontent2/source/text/swriter/guide.po6
-rw-r--r--source/nn/svx/messages.po6
-rw-r--r--source/nn/sw/messages.po128
-rw-r--r--source/nr/cui/messages.po134
-rw-r--r--source/nr/filter/messages.po10
-rw-r--r--source/nr/svx/messages.po6
-rw-r--r--source/nr/sw/messages.po105
-rw-r--r--source/nso/cui/messages.po134
-rw-r--r--source/nso/filter/messages.po10
-rw-r--r--source/nso/svx/messages.po6
-rw-r--r--source/nso/sw/messages.po105
-rw-r--r--source/oc/cui/messages.po134
-rw-r--r--source/oc/filter/messages.po10
-rw-r--r--source/oc/svx/messages.po6
-rw-r--r--source/oc/sw/messages.po106
-rw-r--r--source/om/cui/messages.po144
-rw-r--r--source/om/filter/messages.po10
-rw-r--r--source/om/helpcontent2/source/text/scalc/01.po6
-rw-r--r--source/om/helpcontent2/source/text/scalc/guide.po8
-rw-r--r--source/om/helpcontent2/source/text/shared/00.po31
-rw-r--r--source/om/helpcontent2/source/text/shared/01.po32
-rw-r--r--source/om/helpcontent2/source/text/shared/guide.po21
-rw-r--r--source/om/helpcontent2/source/text/smath/guide.po26
-rw-r--r--source/om/helpcontent2/source/text/swriter/01.po10
-rw-r--r--source/om/helpcontent2/source/text/swriter/guide.po6
-rw-r--r--source/om/svx/messages.po6
-rw-r--r--source/om/sw/messages.po113
-rw-r--r--source/or/cui/messages.po134
-rw-r--r--source/or/filter/messages.po10
-rw-r--r--source/or/svx/messages.po6
-rw-r--r--source/or/sw/messages.po104
-rw-r--r--source/pa-IN/cui/messages.po134
-rw-r--r--source/pa-IN/desktop/messages.po8
-rw-r--r--source/pa-IN/editeng/messages.po14
-rw-r--r--source/pa-IN/filter/messages.po10
-rw-r--r--source/pa-IN/officecfg/registry/data/org/openoffice/Office/UI.po23
-rw-r--r--source/pa-IN/sc/messages.po169
-rw-r--r--source/pa-IN/sd/messages.po24
-rw-r--r--source/pa-IN/starmath/messages.po35
-rw-r--r--source/pa-IN/svx/messages.po6
-rw-r--r--source/pa-IN/sw/messages.po104
-rw-r--r--source/pl/cui/messages.po164
-rw-r--r--source/pl/filter/messages.po16
-rw-r--r--source/pl/helpcontent2/source/text/scalc/01.po6
-rw-r--r--source/pl/helpcontent2/source/text/scalc/guide.po8
-rw-r--r--source/pl/helpcontent2/source/text/shared/00.po31
-rw-r--r--source/pl/helpcontent2/source/text/shared/01.po36
-rw-r--r--source/pl/helpcontent2/source/text/shared/guide.po21
-rw-r--r--source/pl/helpcontent2/source/text/smath/guide.po26
-rw-r--r--source/pl/helpcontent2/source/text/swriter/01.po10
-rw-r--r--source/pl/helpcontent2/source/text/swriter/guide.po6
-rw-r--r--source/pl/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver.po8
-rw-r--r--source/pl/svtools/messages.po6
-rw-r--r--source/pl/svx/messages.po8
-rw-r--r--source/pl/sw/messages.po130
-rw-r--r--source/pt-BR/cui/messages.po212
-rw-r--r--source/pt-BR/filter/messages.po16
-rw-r--r--source/pt-BR/helpcontent2/source/text/scalc/01.po102
-rw-r--r--source/pt-BR/helpcontent2/source/text/scalc/guide.po10
-rw-r--r--source/pt-BR/helpcontent2/source/text/shared/00.po39
-rw-r--r--source/pt-BR/helpcontent2/source/text/shared/01.po114
-rw-r--r--source/pt-BR/helpcontent2/source/text/shared/02.po10
-rw-r--r--source/pt-BR/helpcontent2/source/text/shared/guide.po23
-rw-r--r--source/pt-BR/helpcontent2/source/text/shared/optionen.po6
-rw-r--r--source/pt-BR/helpcontent2/source/text/simpress/guide.po10
-rw-r--r--source/pt-BR/helpcontent2/source/text/smath/guide.po28
-rw-r--r--source/pt-BR/helpcontent2/source/text/swriter/00.po12
-rw-r--r--source/pt-BR/helpcontent2/source/text/swriter/01.po66
-rw-r--r--source/pt-BR/helpcontent2/source/text/swriter/guide.po24
-rw-r--r--source/pt-BR/officecfg/registry/data/org/openoffice/Office/UI.po8
-rw-r--r--source/pt-BR/svtools/messages.po6
-rw-r--r--source/pt-BR/svx/messages.po16
-rw-r--r--source/pt-BR/sw/messages.po170
-rw-r--r--source/pt-BR/swext/mediawiki/help.po6
-rw-r--r--source/pt-BR/vcl/messages.po6
-rw-r--r--source/pt/cui/messages.po146
-rw-r--r--source/pt/filter/messages.po16
-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.po31
-rw-r--r--source/pt/helpcontent2/source/text/shared/01.po36
-rw-r--r--source/pt/helpcontent2/source/text/shared/guide.po21
-rw-r--r--source/pt/helpcontent2/source/text/smath/guide.po26
-rw-r--r--source/pt/helpcontent2/source/text/swriter/01.po10
-rw-r--r--source/pt/helpcontent2/source/text/swriter/guide.po6
-rw-r--r--source/pt/svx/messages.po6
-rw-r--r--source/pt/sw/messages.po128
-rw-r--r--source/ro/cui/messages.po134
-rw-r--r--source/ro/filter/messages.po10
-rw-r--r--source/ro/helpcontent2/source/text/scalc/01.po6
-rw-r--r--source/ro/helpcontent2/source/text/scalc/guide.po6
-rw-r--r--source/ro/helpcontent2/source/text/shared/00.po31
-rw-r--r--source/ro/helpcontent2/source/text/shared/01.po26
-rw-r--r--source/ro/helpcontent2/source/text/shared/guide.po19
-rw-r--r--source/ro/helpcontent2/source/text/smath/guide.po18
-rw-r--r--source/ro/helpcontent2/source/text/swriter/01.po10
-rw-r--r--source/ro/helpcontent2/source/text/swriter/guide.po6
-rw-r--r--source/ro/svx/messages.po6
-rw-r--r--source/ro/sw/messages.po112
-rw-r--r--source/ru/cui/messages.po146
-rw-r--r--source/ru/filter/messages.po14
-rw-r--r--source/ru/helpcontent2/source/text/scalc/01.po6
-rw-r--r--source/ru/helpcontent2/source/text/scalc/guide.po8
-rw-r--r--source/ru/helpcontent2/source/text/shared/00.po31
-rw-r--r--source/ru/helpcontent2/source/text/shared/01.po32
-rw-r--r--source/ru/helpcontent2/source/text/shared/guide.po21
-rw-r--r--source/ru/helpcontent2/source/text/smath/guide.po26
-rw-r--r--source/ru/helpcontent2/source/text/swriter/01.po10
-rw-r--r--source/ru/helpcontent2/source/text/swriter/guide.po6
-rw-r--r--source/ru/svx/messages.po6
-rw-r--r--source/ru/sw/messages.po124
-rw-r--r--source/rw/cui/messages.po134
-rw-r--r--source/rw/filter/messages.po10
-rw-r--r--source/rw/svx/messages.po6
-rw-r--r--source/rw/sw/messages.po105
-rw-r--r--source/sa-IN/cui/messages.po134
-rw-r--r--source/sa-IN/filter/messages.po10
-rw-r--r--source/sa-IN/svx/messages.po6
-rw-r--r--source/sa-IN/sw/messages.po104
-rw-r--r--source/sah/cui/messages.po134
-rw-r--r--source/sah/filter/messages.po10
-rw-r--r--source/sah/svx/messages.po6
-rw-r--r--source/sah/sw/messages.po104
-rw-r--r--source/sat/cui/messages.po134
-rw-r--r--source/sat/filter/messages.po10
-rw-r--r--source/sat/svx/messages.po6
-rw-r--r--source/sat/sw/messages.po104
-rw-r--r--source/sd/cui/messages.po134
-rw-r--r--source/sd/filter/messages.po10
-rw-r--r--source/sd/svx/messages.po6
-rw-r--r--source/sd/sw/messages.po104
-rw-r--r--source/si/cui/messages.po134
-rw-r--r--source/si/filter/messages.po10
-rw-r--r--source/si/helpcontent2/source/text/scalc/01.po6
-rw-r--r--source/si/helpcontent2/source/text/scalc/guide.po6
-rw-r--r--source/si/helpcontent2/source/text/shared/00.po31
-rw-r--r--source/si/helpcontent2/source/text/shared/01.po30
-rw-r--r--source/si/helpcontent2/source/text/shared/guide.po19
-rw-r--r--source/si/helpcontent2/source/text/smath/guide.po22
-rw-r--r--source/si/helpcontent2/source/text/swriter/01.po10
-rw-r--r--source/si/helpcontent2/source/text/swriter/guide.po6
-rw-r--r--source/si/svx/messages.po6
-rw-r--r--source/si/sw/messages.po105
-rw-r--r--source/sid/cui/messages.po138
-rw-r--r--source/sid/filter/messages.po10
-rw-r--r--source/sid/helpcontent2/source/text/scalc/01.po6
-rw-r--r--source/sid/helpcontent2/source/text/scalc/guide.po8
-rw-r--r--source/sid/helpcontent2/source/text/shared/00.po31
-rw-r--r--source/sid/helpcontent2/source/text/shared/01.po30
-rw-r--r--source/sid/helpcontent2/source/text/shared/guide.po21
-rw-r--r--source/sid/helpcontent2/source/text/smath/guide.po26
-rw-r--r--source/sid/helpcontent2/source/text/swriter/01.po10
-rw-r--r--source/sid/helpcontent2/source/text/swriter/guide.po6
-rw-r--r--source/sid/svx/messages.po6
-rw-r--r--source/sid/sw/messages.po121
-rw-r--r--source/sk/cui/messages.po154
-rw-r--r--source/sk/filter/messages.po16
-rw-r--r--source/sk/helpcontent2/source/text/scalc/01.po6
-rw-r--r--source/sk/helpcontent2/source/text/scalc/guide.po8
-rw-r--r--source/sk/helpcontent2/source/text/shared/00.po31
-rw-r--r--source/sk/helpcontent2/source/text/shared/01.po30
-rw-r--r--source/sk/helpcontent2/source/text/shared/guide.po21
-rw-r--r--source/sk/helpcontent2/source/text/smath/guide.po26
-rw-r--r--source/sk/helpcontent2/source/text/swriter/01.po10
-rw-r--r--source/sk/helpcontent2/source/text/swriter/guide.po6
-rw-r--r--source/sk/svx/messages.po6
-rw-r--r--source/sk/sw/messages.po128
-rw-r--r--source/sq/cui/messages.po134
-rw-r--r--source/sq/filter/messages.po10
-rw-r--r--source/sq/helpcontent2/source/text/scalc/01.po6
-rw-r--r--source/sq/helpcontent2/source/text/scalc/guide.po6
-rw-r--r--source/sq/helpcontent2/source/text/shared/00.po31
-rw-r--r--source/sq/helpcontent2/source/text/shared/01.po26
-rw-r--r--source/sq/helpcontent2/source/text/shared/guide.po19
-rw-r--r--source/sq/helpcontent2/source/text/smath/guide.po18
-rw-r--r--source/sq/helpcontent2/source/text/swriter/01.po10
-rw-r--r--source/sq/helpcontent2/source/text/swriter/guide.po6
-rw-r--r--source/sq/svx/messages.po6
-rw-r--r--source/sq/sw/messages.po104
-rw-r--r--source/sr-Latn/cui/messages.po134
-rw-r--r--source/sr-Latn/filter/messages.po10
-rw-r--r--source/sr-Latn/svx/messages.po6
-rw-r--r--source/sr-Latn/sw/messages.po105
-rw-r--r--source/sr/cui/messages.po146
-rw-r--r--source/sr/filter/messages.po10
-rw-r--r--source/sr/svx/messages.po6
-rw-r--r--source/sr/sw/messages.po124
-rw-r--r--source/ss/cui/messages.po134
-rw-r--r--source/ss/filter/messages.po10
-rw-r--r--source/ss/svx/messages.po6
-rw-r--r--source/ss/sw/messages.po105
-rw-r--r--source/st/cui/messages.po134
-rw-r--r--source/st/filter/messages.po10
-rw-r--r--source/st/svx/messages.po6
-rw-r--r--source/st/sw/messages.po105
-rw-r--r--source/sv/cui/messages.po146
-rw-r--r--source/sv/filter/messages.po16
-rw-r--r--source/sv/helpcontent2/source/text/scalc/01.po6
-rw-r--r--source/sv/helpcontent2/source/text/scalc/guide.po8
-rw-r--r--source/sv/helpcontent2/source/text/shared/00.po31
-rw-r--r--source/sv/helpcontent2/source/text/shared/01.po34
-rw-r--r--source/sv/helpcontent2/source/text/shared/guide.po21
-rw-r--r--source/sv/helpcontent2/source/text/smath/guide.po26
-rw-r--r--source/sv/helpcontent2/source/text/swriter/01.po10
-rw-r--r--source/sv/helpcontent2/source/text/swriter/guide.po6
-rw-r--r--source/sv/officecfg/registry/data/org/openoffice/Office/UI.po10
-rw-r--r--source/sv/sc/messages.po14
-rw-r--r--source/sv/svx/messages.po6
-rw-r--r--source/sv/sw/messages.po128
-rw-r--r--source/sw-TZ/cui/messages.po134
-rw-r--r--source/sw-TZ/filter/messages.po10
-rw-r--r--source/sw-TZ/svx/messages.po6
-rw-r--r--source/sw-TZ/sw/messages.po105
-rw-r--r--source/szl/cui/messages.po134
-rw-r--r--source/szl/filter/messages.po10
-rw-r--r--source/szl/svx/messages.po6
-rw-r--r--source/szl/sw/messages.po106
-rw-r--r--source/ta/cui/messages.po140
-rw-r--r--source/ta/filter/messages.po10
-rw-r--r--source/ta/helpcontent2/source/text/scalc/01.po6
-rw-r--r--source/ta/helpcontent2/source/text/scalc/guide.po6
-rw-r--r--source/ta/helpcontent2/source/text/shared/00.po31
-rw-r--r--source/ta/helpcontent2/source/text/shared/01.po30
-rw-r--r--source/ta/helpcontent2/source/text/shared/guide.po19
-rw-r--r--source/ta/helpcontent2/source/text/smath/guide.po26
-rw-r--r--source/ta/helpcontent2/source/text/swriter/01.po10
-rw-r--r--source/ta/helpcontent2/source/text/swriter/guide.po6
-rw-r--r--source/ta/svx/messages.po6
-rw-r--r--source/ta/sw/messages.po112
-rw-r--r--source/te/cui/messages.po134
-rw-r--r--source/te/filter/messages.po10
-rw-r--r--source/te/svx/messages.po6
-rw-r--r--source/te/sw/messages.po105
-rw-r--r--source/tg/cui/messages.po134
-rw-r--r--source/tg/filter/messages.po10
-rw-r--r--source/tg/helpcontent2/source/text/scalc/01.po6
-rw-r--r--source/tg/helpcontent2/source/text/scalc/guide.po8
-rw-r--r--source/tg/helpcontent2/source/text/shared/00.po31
-rw-r--r--source/tg/helpcontent2/source/text/shared/01.po32
-rw-r--r--source/tg/helpcontent2/source/text/shared/guide.po21
-rw-r--r--source/tg/helpcontent2/source/text/smath/guide.po22
-rw-r--r--source/tg/helpcontent2/source/text/swriter/01.po10
-rw-r--r--source/tg/helpcontent2/source/text/swriter/guide.po6
-rw-r--r--source/tg/svx/messages.po6
-rw-r--r--source/tg/sw/messages.po117
-rw-r--r--source/th/cui/messages.po134
-rw-r--r--source/th/filter/messages.po12
-rw-r--r--source/th/svx/messages.po6
-rw-r--r--source/th/sw/messages.po105
-rw-r--r--source/ti/cui/messages.po134
-rw-r--r--source/ti/filter/messages.po10
-rw-r--r--source/ti/svx/messages.po6
-rw-r--r--source/ti/sw/messages.po104
-rw-r--r--source/tn/cui/messages.po134
-rw-r--r--source/tn/filter/messages.po10
-rw-r--r--source/tn/svx/messages.po6
-rw-r--r--source/tn/sw/messages.po105
-rw-r--r--source/tr/cui/messages.po180
-rw-r--r--source/tr/editeng/messages.po12
-rw-r--r--source/tr/filter/messages.po16
-rw-r--r--source/tr/helpcontent2/source/text/scalc/01.po6
-rw-r--r--source/tr/helpcontent2/source/text/scalc/guide.po8
-rw-r--r--source/tr/helpcontent2/source/text/shared/00.po31
-rw-r--r--source/tr/helpcontent2/source/text/shared/01.po36
-rw-r--r--source/tr/helpcontent2/source/text/shared/guide.po21
-rw-r--r--source/tr/helpcontent2/source/text/smath/guide.po26
-rw-r--r--source/tr/helpcontent2/source/text/swriter/01.po10
-rw-r--r--source/tr/helpcontent2/source/text/swriter/guide.po6
-rw-r--r--source/tr/officecfg/registry/data/org/openoffice/Office/UI.po22
-rw-r--r--source/tr/sc/messages.po34
-rw-r--r--source/tr/svtools/messages.po6
-rw-r--r--source/tr/svx/messages.po12
-rw-r--r--source/tr/sw/messages.po162
-rw-r--r--source/ts/cui/messages.po134
-rw-r--r--source/ts/filter/messages.po10
-rw-r--r--source/ts/svx/messages.po6
-rw-r--r--source/ts/sw/messages.po105
-rw-r--r--source/tt/cui/messages.po134
-rw-r--r--source/tt/filter/messages.po10
-rw-r--r--source/tt/svx/messages.po6
-rw-r--r--source/tt/sw/messages.po105
-rw-r--r--source/ug/cui/messages.po134
-rw-r--r--source/ug/filter/messages.po10
-rw-r--r--source/ug/helpcontent2/source/text/scalc/01.po6
-rw-r--r--source/ug/helpcontent2/source/text/scalc/guide.po6
-rw-r--r--source/ug/helpcontent2/source/text/shared/00.po31
-rw-r--r--source/ug/helpcontent2/source/text/shared/01.po32
-rw-r--r--source/ug/helpcontent2/source/text/shared/guide.po19
-rw-r--r--source/ug/helpcontent2/source/text/smath/guide.po26
-rw-r--r--source/ug/helpcontent2/source/text/swriter/01.po10
-rw-r--r--source/ug/helpcontent2/source/text/swriter/guide.po6
-rw-r--r--source/ug/svx/messages.po6
-rw-r--r--source/ug/sw/messages.po105
-rw-r--r--source/uk/cui/messages.po146
-rw-r--r--source/uk/filter/messages.po16
-rw-r--r--source/uk/helpcontent2/source/text/scalc/01.po6
-rw-r--r--source/uk/helpcontent2/source/text/scalc/guide.po8
-rw-r--r--source/uk/helpcontent2/source/text/shared/00.po31
-rw-r--r--source/uk/helpcontent2/source/text/shared/01.po36
-rw-r--r--source/uk/helpcontent2/source/text/shared/guide.po19
-rw-r--r--source/uk/helpcontent2/source/text/smath/guide.po26
-rw-r--r--source/uk/helpcontent2/source/text/swriter/01.po10
-rw-r--r--source/uk/helpcontent2/source/text/swriter/guide.po6
-rw-r--r--source/uk/svx/messages.po6
-rw-r--r--source/uk/sw/messages.po122
-rw-r--r--source/ur/cui/messages.po134
-rw-r--r--source/ur/filter/messages.po12
-rw-r--r--source/ur/svx/messages.po6
-rw-r--r--source/ur/sw/messages.po104
-rw-r--r--source/uz/cui/messages.po134
-rw-r--r--source/uz/filter/messages.po10
-rw-r--r--source/uz/svx/messages.po6
-rw-r--r--source/uz/sw/messages.po105
-rw-r--r--source/ve/cui/messages.po134
-rw-r--r--source/ve/filter/messages.po10
-rw-r--r--source/ve/svx/messages.po6
-rw-r--r--source/ve/sw/messages.po105
-rw-r--r--source/vec/cui/messages.po134
-rw-r--r--source/vec/filter/messages.po10
-rw-r--r--source/vec/svx/messages.po6
-rw-r--r--source/vec/sw/messages.po106
-rw-r--r--source/vi/cui/messages.po144
-rw-r--r--source/vi/filter/messages.po10
-rw-r--r--source/vi/helpcontent2/source/text/scalc/01.po6
-rw-r--r--source/vi/helpcontent2/source/text/scalc/guide.po8
-rw-r--r--source/vi/helpcontent2/source/text/shared/00.po31
-rw-r--r--source/vi/helpcontent2/source/text/shared/01.po32
-rw-r--r--source/vi/helpcontent2/source/text/shared/guide.po19
-rw-r--r--source/vi/helpcontent2/source/text/smath/guide.po26
-rw-r--r--source/vi/helpcontent2/source/text/swriter/01.po10
-rw-r--r--source/vi/helpcontent2/source/text/swriter/guide.po6
-rw-r--r--source/vi/svx/messages.po6
-rw-r--r--source/vi/sw/messages.po113
-rw-r--r--source/xh/cui/messages.po134
-rw-r--r--source/xh/filter/messages.po10
-rw-r--r--source/xh/svx/messages.po6
-rw-r--r--source/xh/sw/messages.po105
-rw-r--r--source/zh-CN/cui/messages.po208
-rw-r--r--source/zh-CN/filter/messages.po16
-rw-r--r--source/zh-CN/helpcontent2/source/text/scalc/01.po6
-rw-r--r--source/zh-CN/helpcontent2/source/text/scalc/guide.po8
-rw-r--r--source/zh-CN/helpcontent2/source/text/shared/00.po31
-rw-r--r--source/zh-CN/helpcontent2/source/text/shared/01.po36
-rw-r--r--source/zh-CN/helpcontent2/source/text/shared/guide.po21
-rw-r--r--source/zh-CN/helpcontent2/source/text/smath/guide.po26
-rw-r--r--source/zh-CN/helpcontent2/source/text/swriter/01.po10
-rw-r--r--source/zh-CN/helpcontent2/source/text/swriter/guide.po6
-rw-r--r--source/zh-CN/sd/messages.po6
-rw-r--r--source/zh-CN/svtools/messages.po6
-rw-r--r--source/zh-CN/svx/messages.po8
-rw-r--r--source/zh-CN/sw/messages.po124
-rw-r--r--source/zh-TW/cui/messages.po164
-rw-r--r--source/zh-TW/filter/messages.po16
-rw-r--r--source/zh-TW/helpcontent2/source/text/scalc/01.po6
-rw-r--r--source/zh-TW/helpcontent2/source/text/scalc/guide.po8
-rw-r--r--source/zh-TW/helpcontent2/source/text/shared/00.po31
-rw-r--r--source/zh-TW/helpcontent2/source/text/shared/01.po34
-rw-r--r--source/zh-TW/helpcontent2/source/text/shared/guide.po21
-rw-r--r--source/zh-TW/helpcontent2/source/text/smath/guide.po26
-rw-r--r--source/zh-TW/helpcontent2/source/text/swriter/01.po10
-rw-r--r--source/zh-TW/helpcontent2/source/text/swriter/guide.po6
-rw-r--r--source/zh-TW/svtools/messages.po6
-rw-r--r--source/zh-TW/svx/messages.po8
-rw-r--r--source/zh-TW/sw/messages.po130
-rw-r--r--source/zu/cui/messages.po134
-rw-r--r--source/zu/filter/messages.po10
-rw-r--r--source/zu/svx/messages.po6
-rw-r--r--source/zu/sw/messages.po105
1212 files changed, 28177 insertions, 28264 deletions
diff --git a/source/ab/cui/messages.po b/source/ab/cui/messages.po
index 7182304e942..9f5dfa69ca9 100644
--- a/source/ab/cui/messages.po
+++ b/source/ab/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2022-06-10 13:57+0200\n"
+"POT-Creation-Date: 2022-06-15 22:27+0200\n"
"PO-Revision-Date: 2021-02-04 19:36+0000\n"
"Last-Translator: Андрей Абухба <aabuchba@mail.ru>\n"
"Language-Team: Abkhazian <https://translations.documentfoundation.org/projects/libo_ui-master/cuimessages/ab/>\n"
@@ -3113,10 +3113,10 @@ msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Need custom contents for metadata properties? File ▸ Properties ▸ Custom Properties tab lets you create what you want."
msgstr ""
-#. 9TnEA
+#. beSc7
#: cui/inc/tipoftheday.hrc:208
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Want to see, but not print, an object in Draw? Draw it on a layer for which the “Printable” flag is not set (right click on the tab and “Modify Layer”)."
+msgid "Want to see, but not print, an object in Draw? Draw it on a layer for which the “Printable” flag is not set (right-click the layer’s tab and choose “Modify Layer”)."
msgstr ""
#. CGQaY
@@ -4908,25 +4908,25 @@ msgid "[M]: Replace while modifying existing text"
msgstr ""
#. FtXg9
-#: cui/uiconfig/ui/applyautofmtpage.ui:90
+#: cui/uiconfig/ui/applyautofmtpage.ui:93
msgctxt "applyautofmtpage|label2"
msgid "[T]: AutoCorrect while typing"
msgstr ""
#. NujUD
-#: cui/uiconfig/ui/applyautofmtpage.ui:136
+#: cui/uiconfig/ui/applyautofmtpage.ui:142
msgctxt "applyautofmtpage|m"
msgid "[M]"
msgstr ""
#. qanx6
-#: cui/uiconfig/ui/applyautofmtpage.ui:158
+#: cui/uiconfig/ui/applyautofmtpage.ui:164
msgctxt "applyautofmtpage|t"
msgid "[T]"
msgstr ""
#. 2tG6L
-#: cui/uiconfig/ui/applyautofmtpage.ui:205
+#: cui/uiconfig/ui/applyautofmtpage.ui:211
msgctxt "applyautofmtpage|extended_tip|ApplyAutoFmtPage"
msgid "Select the options for automatically correcting errors as you type, and then click OK."
msgstr ""
@@ -8287,10 +8287,10 @@ msgctxt "dimensionlinestabpage|TSB_PARALLEL"
msgid "_Parallel to line"
msgstr "Аҵәаӷәа иапараллельны"
-#. gZdFr
+#. CCTEb
#: cui/uiconfig/ui/dimensionlinestabpage.ui:440
msgctxt "dimensionlinestabpage|extended_tip|TSB_PARALLEL"
-msgid "Displays the text parallel to or at 90 degrees to the dimension line."
+msgid "If enabled, displays the text parallel to the dimension line. If disabled, the text is shown at 90 degrees to the dimension line."
msgstr ""
#. QNscD
@@ -8299,10 +8299,10 @@ msgctxt "dimensionlinestabpage|TSB_SHOW_UNIT"
msgid "Show _measurement units"
msgstr ""
-#. cJRA9
+#. KQGtM
#: cui/uiconfig/ui/dimensionlinestabpage.ui:461
msgctxt "dimensionlinestabpage|extended_tip|TSB_SHOW_UNIT"
-msgid "Shows or hides the dimension measurement units. You can also select a measurement unit you want to display from the list."
+msgid "Shows or hides the dimension measurement unit. You can select a measurement unit you want to display from the list."
msgstr ""
#. EEaqi
@@ -10310,10 +10310,10 @@ msgctxt "hangulhanjaoptdialog|extended_tip|delete"
msgid "Deletes the selected user-defined dictionary."
msgstr ""
-#. v7Bkk
+#. eG9Qx
#: cui/uiconfig/ui/hangulhanjaoptdialog.ui:231
msgctxt "hangulhanjaoptdialog|extended_tip|dicts"
-msgid "Lists all user-defined dictionaries. Select the check box next to the dictionary that you want to use. Clear the check box next to the dictionary that you do not want to use."
+msgid "Lists all user-defined dictionaries. Select the check box next to the dictionaries that you want to use. Clear the check box next to the dictionaries that you do not want to use."
msgstr ""
#. DmfuX
@@ -10696,19 +10696,19 @@ msgid "Opens the Assign Macro dialog, in which you can give events such as \"mou
msgstr ""
#. TXrCH
-#: cui/uiconfig/ui/hyperlinkdocpage.ui:399
+#: cui/uiconfig/ui/hyperlinkdocpage.ui:391
msgctxt "hyperlinkdocpage|extended_tip|frame"
msgid "Enter the name of the frame that you want the linked file to open in, or select a predefined frame from the list. If you leave this box blank, the linked file opens in the current browser window."
msgstr ""
#. frjow
-#: cui/uiconfig/ui/hyperlinkdocpage.ui:420
+#: cui/uiconfig/ui/hyperlinkdocpage.ui:412
msgctxt "hyperlinkdocpage|label1"
msgid "Further Settings"
msgstr ""
#. 789Vi
-#: cui/uiconfig/ui/hyperlinkdocpage.ui:435
+#: cui/uiconfig/ui/hyperlinkdocpage.ui:427
msgctxt "hyperlinkdocpage|extended_tip|HyperlinkDocPage"
msgid "Hyperlinks to any document or targets in documents can be edited using the Document tab from the Hyperlink dialog."
msgstr ""
@@ -10852,19 +10852,19 @@ msgid "Opens the Assign Macro dialog, in which you can give events such as \"mou
msgstr ""
#. C5Hqs
-#: cui/uiconfig/ui/hyperlinkinternetpage.ui:409
+#: cui/uiconfig/ui/hyperlinkinternetpage.ui:401
msgctxt "hyperlinkinternetpage|extended_tip|frame"
msgid "Enter the name of the frame that you want the linked file to open in, or select a predefined frame from the list. If you leave this box blank, the linked file opens in the current browser window."
msgstr ""
#. UKQMX
-#: cui/uiconfig/ui/hyperlinkinternetpage.ui:430
+#: cui/uiconfig/ui/hyperlinkinternetpage.ui:422
msgctxt "hyperlinkinternetpage|label1"
msgid "Further Settings"
msgstr ""
#. 8UdTe
-#: cui/uiconfig/ui/hyperlinkinternetpage.ui:445
+#: cui/uiconfig/ui/hyperlinkinternetpage.ui:437
msgctxt "hyperlinkinternetpage|extended_tip|HyperlinkInternetPage"
msgid "Use the Internet page of the Hyperlink dialog to edit hyperlinks with WWW or FTP addresses."
msgstr ""
@@ -10966,19 +10966,19 @@ msgid "Opens the Assign Macro dialog, in which you can give events such as \"mou
msgstr ""
#. CwHdi
-#: cui/uiconfig/ui/hyperlinkmailpage.ui:324
+#: cui/uiconfig/ui/hyperlinkmailpage.ui:316
msgctxt "hyperlinkmailpage|extended_tip|frame"
msgid "Enter the name of the frame that you want the linked file to open in, or select a predefined frame from the list. If you leave this box blank, the linked file opens in the current browser window."
msgstr ""
#. BmHDh
-#: cui/uiconfig/ui/hyperlinkmailpage.ui:345
+#: cui/uiconfig/ui/hyperlinkmailpage.ui:337
msgctxt "hyperlinkmailpage|label1"
msgid "Further Settings"
msgstr ""
#. SvyDu
-#: cui/uiconfig/ui/hyperlinkmailpage.ui:360
+#: cui/uiconfig/ui/hyperlinkmailpage.ui:352
msgctxt "hyperlinkmailpage|extended_tip|HyperlinkMailPage"
msgid "On the Mail page in the Hyperlink dialog you can edit hyperlinks for email addresses."
msgstr ""
@@ -11140,19 +11140,19 @@ msgid "Opens the Assign Macro dialog, in which you can give events such as \"mou
msgstr ""
#. rXaNm
-#: cui/uiconfig/ui/hyperlinknewdocpage.ui:408
+#: cui/uiconfig/ui/hyperlinknewdocpage.ui:400
msgctxt "hyperlinknewdocpage|extended_tip|frame"
msgid "Enter the name of the frame that you want the linked file to open in, or select a predefined frame from the list. If you leave this box blank, the linked file opens in the current browser window."
msgstr ""
#. MS2Cn
-#: cui/uiconfig/ui/hyperlinknewdocpage.ui:429
+#: cui/uiconfig/ui/hyperlinknewdocpage.ui:421
msgctxt "hyperlinknewdocpage|label1"
msgid "Further Settings"
msgstr ""
#. ztAbs
-#: cui/uiconfig/ui/hyperlinknewdocpage.ui:444
+#: cui/uiconfig/ui/hyperlinknewdocpage.ui:436
msgctxt "hyperlinknewdocpage|extended_tip|HyperlinkNewDocPage"
msgid "Use the New Document tab from the Hyperlink dialog to set up a hyperlink to a new document and create the new document simultaneously."
msgstr ""
@@ -11913,10 +11913,10 @@ msgctxt "langtoolconfigpage|base"
msgid "Base URL:"
msgstr ""
-#. 9to2D
+#. z58D6
#: cui/uiconfig/ui/langtoolconfigpage.ui:111
msgctxt "langtoolconfigpage|usernamelbl"
-msgid "User name:"
+msgid "Username:"
msgstr ""
#. B8kMr
@@ -11925,32 +11925,32 @@ msgctxt "langtoolconfigpage|apikeylbl"
msgid "API key:"
msgstr ""
-#. AoT7Z
+#. LBMkb
#: cui/uiconfig/ui/langtoolconfigpage.ui:159
msgctxt "langtoolconfigpage|urldesc"
-msgid "Please use the base URL e.g. without \"/check\" at the end."
+msgid "Please use the base URL, i.e., without “/check”, at the end."
msgstr ""
-#. EDETM
-#: cui/uiconfig/ui/langtoolconfigpage.ui:171
+#. 77oav
+#: cui/uiconfig/ui/langtoolconfigpage.ui:174
msgctxt "langtoolconfigpage|usernamedesc"
-msgid "Your LanguageTool account's username for premium usage."
+msgid "Your LanguageTool account’s username for premium usage."
msgstr ""
-#. aDGJf
-#: cui/uiconfig/ui/langtoolconfigpage.ui:183
+#. tGuAh
+#: cui/uiconfig/ui/langtoolconfigpage.ui:189
msgctxt "langtoolconfigpage|apikeydesc"
-msgid "Your LanguageTool account's api key for premium usage."
+msgid "Your LanguageTool account’s API key for premium usage."
msgstr ""
#. Dn8bb
-#: cui/uiconfig/ui/langtoolconfigpage.ui:206
+#: cui/uiconfig/ui/langtoolconfigpage.ui:215
msgctxt "langtoolconfigpage|apisettingsheader"
msgid "API Settings"
msgstr ""
#. Ntss5
-#: cui/uiconfig/ui/langtoolconfigpage.ui:225
+#: cui/uiconfig/ui/langtoolconfigpage.ui:234
msgctxt "langtoolconfigpage|langtoolsettings"
msgid "LanguageTool API Options"
msgstr ""
@@ -14473,73 +14473,73 @@ msgstr ""
#. PiDB7
#. The [S] here is repeated as the column title for the "Save" column of this options page
-#: cui/uiconfig/ui/optfltrembedpage.ui:163
+#: cui/uiconfig/ui/optfltrembedpage.ui:166
msgctxt "optfltrembedpage|label3"
msgid "[S]: Convert and save the object"
msgstr ""
#. f2hGQ
-#: cui/uiconfig/ui/optfltrembedpage.ui:185
+#: cui/uiconfig/ui/optfltrembedpage.ui:191
msgctxt "optfltrembedpage|label1"
msgid "Embedded Objects"
msgstr ""
#. nvE89
-#: cui/uiconfig/ui/optfltrembedpage.ui:215
+#: cui/uiconfig/ui/optfltrembedpage.ui:221
msgctxt "optfltrembedpage|label5"
msgid "Export as:"
msgstr "Иекспорттәуп иаба(ишҧа):"
#. FEeH6
-#: cui/uiconfig/ui/optfltrembedpage.ui:230
+#: cui/uiconfig/ui/optfltrembedpage.ui:236
msgctxt "optfltrembedpage|highlighting"
msgid "Highlighting"
msgstr ""
#. qBuyX
-#: cui/uiconfig/ui/optfltrembedpage.ui:239
+#: cui/uiconfig/ui/optfltrembedpage.ui:245
msgctxt "extended_tip|highlighting"
msgid "Microsoft Office has two character attributes similar to Writer character background. Select the appropriate attribute (highlighting or shading) which you would like to use during export to Microsoft Office file formats."
msgstr ""
#. Dnrx7
-#: cui/uiconfig/ui/optfltrembedpage.ui:251
+#: cui/uiconfig/ui/optfltrembedpage.ui:257
msgctxt "optfltrembedpage|shading"
msgid "Shading"
msgstr ""
#. 3PFE2
-#: cui/uiconfig/ui/optfltrembedpage.ui:260
+#: cui/uiconfig/ui/optfltrembedpage.ui:266
msgctxt "extended_tip|shading"
msgid "Microsoft Office has two character attributes similar to Writer character background. Select the appropriate attribute (highlighting or shading) which you would like to use during export to Microsoft Office file formats."
msgstr ""
#. gKwdG
-#: cui/uiconfig/ui/optfltrembedpage.ui:283
+#: cui/uiconfig/ui/optfltrembedpage.ui:289
msgctxt "optfltrembedpage|label4"
msgid "Character Highlighting"
msgstr "Асмволқәа рырлашара"
#. tyACF
-#: cui/uiconfig/ui/optfltrembedpage.ui:310
+#: cui/uiconfig/ui/optfltrembedpage.ui:316
msgctxt "optfltrembedpage|mso_lockfile"
msgid "Create MSO lock file"
msgstr "Иаԥҵалатәуп амҩаркра афаил MSO"
#. qc4GD
-#: cui/uiconfig/ui/optfltrembedpage.ui:319
+#: cui/uiconfig/ui/optfltrembedpage.ui:325
msgctxt "extended_tip|mso_lockfile"
msgid "Mark this checkbox to generate a Microsoft Office lock file in addition to this office suite's own lock file."
msgstr ""
#. Sg5Bw
-#: cui/uiconfig/ui/optfltrembedpage.ui:335
+#: cui/uiconfig/ui/optfltrembedpage.ui:341
msgctxt "optfltrembedpage|label5"
msgid "Lock Files"
msgstr ""
#. EUBnP
-#: cui/uiconfig/ui/optfltrembedpage.ui:349
+#: cui/uiconfig/ui/optfltrembedpage.ui:355
msgctxt "extended_tip|OptFilterPage"
msgid "Specifies the settings for importing and exporting Microsoft Office and other documents."
msgstr ""
@@ -14808,10 +14808,10 @@ msgctxt "optgeneralpage|exthelp"
msgid "_Extended tips"
msgstr ""
-#. ypuz2
+#. TyqBV
#: cui/uiconfig/ui/optgeneralpage.ui:42
msgctxt "extended_tip | exthelp"
-msgid "Displays a help text when you rest the cursor on an icon, a menu command, or a control on a dialog."
+msgid "Displays a help text when you rest the mouse pointer on an icon, a menu command, or a control on a dialog."
msgstr ""
#. Cbeuc
@@ -16509,7 +16509,7 @@ msgid "Passwords are protected by a master password. You will be asked to enter
msgstr ""
#. 7gzb7
-#: cui/uiconfig/ui/optsecuritypage.ui:303
+#: cui/uiconfig/ui/optsecuritypage.ui:306
msgctxt "optsecuritypage|nopasswordsave"
msgid ""
"Disabling the function to persistently store passwords deletes the list of passwords stored and resets the master password.\n"
@@ -16518,61 +16518,61 @@ msgid ""
msgstr ""
#. hwg3F
-#: cui/uiconfig/ui/optsecuritypage.ui:341
+#: cui/uiconfig/ui/optsecuritypage.ui:344
msgctxt "optsecuritypage|connections"
msgid "Connect_ions..."
msgstr "Аимадарақәа..."
#. GLEjB
-#: cui/uiconfig/ui/optsecuritypage.ui:349
+#: cui/uiconfig/ui/optsecuritypage.ui:352
msgctxt "extended_tip|connections"
msgid "Asks for the master password. If master password is correct, shows the Stored Web Connection Information dialog."
msgstr ""
#. SWrMn
-#: cui/uiconfig/ui/optsecuritypage.ui:371
+#: cui/uiconfig/ui/optsecuritypage.ui:374
msgctxt "optsecuritypage|masterpassword"
msgid "_Master Password..."
msgstr "Ажәамаӡа-азҟаза..."
#. w3TQo
-#: cui/uiconfig/ui/optsecuritypage.ui:379
+#: cui/uiconfig/ui/optsecuritypage.ui:382
msgctxt "extended_tip|masterpassword"
msgid "Opens the Enter Master Password dialog."
msgstr ""
#. UtNEn
-#: cui/uiconfig/ui/optsecuritypage.ui:406
+#: cui/uiconfig/ui/optsecuritypage.ui:409
msgctxt "optsecuritypage|label2"
msgid "Passwords for Web Connections"
msgstr ""
#. EYFvA
-#: cui/uiconfig/ui/optsecuritypage.ui:439
+#: cui/uiconfig/ui/optsecuritypage.ui:442
msgctxt "optsecuritypage|label4"
msgid "Adjust security related options and define warnings for hidden information in documents. "
msgstr ""
#. CBnzU
-#: cui/uiconfig/ui/optsecuritypage.ui:452
+#: cui/uiconfig/ui/optsecuritypage.ui:455
msgctxt "optsecuritypage|options"
msgid "O_ptions..."
msgstr "Апараметрқәа..."
#. pepKZ
-#: cui/uiconfig/ui/optsecuritypage.ui:460
+#: cui/uiconfig/ui/optsecuritypage.ui:463
msgctxt "extended_tip|options"
msgid "Opens the \"Security Options and Warnings\" dialog."
msgstr ""
#. GqVkJ
-#: cui/uiconfig/ui/optsecuritypage.ui:475
+#: cui/uiconfig/ui/optsecuritypage.ui:478
msgctxt "optsecuritypage|label1"
msgid "Security Options and Warnings"
msgstr ""
#. rwtuC
-#: cui/uiconfig/ui/optsecuritypage.ui:489
+#: cui/uiconfig/ui/optsecuritypage.ui:492
msgctxt "extended_tip|OptSecurityPage"
msgid "Defines the security options for saving documents, for web connections, and for opening documents that contain macros."
msgstr ""
@@ -20078,10 +20078,10 @@ msgctxt "specialcharacters|srchft"
msgid "Search:"
msgstr "Аҧшаара:"
-#. eCjVg
+#. zPCZ7
#: cui/uiconfig/ui/specialcharacters.ui:166
msgctxt "specialcharacters|extended_tip|subsetlb"
-msgid "Select a Unicode category for the current font."
+msgid "Select a Unicode block for the current font."
msgstr ""
#. JPWW8
@@ -20115,19 +20115,19 @@ msgid "Maximum Limit: 16 Characters"
msgstr ""
#. ti8sG
-#: cui/uiconfig/ui/specialcharacters.ui:371
+#: cui/uiconfig/ui/specialcharacters.ui:374
msgctxt "specialcharacters|symboltext1"
msgid "Recent Characters:"
msgstr "Ааигәатәи асимволқәа:"
#. LQZ7q
-#: cui/uiconfig/ui/specialcharacters.ui:605
+#: cui/uiconfig/ui/specialcharacters.ui:608
msgctxt "specialcharacters|favbtn|symboltext2"
msgid "Favorite Characters:"
msgstr ""
#. DhG6L
-#: cui/uiconfig/ui/specialcharacters.ui:903
+#: cui/uiconfig/ui/specialcharacters.ui:906
msgctxt "specialcharacters|extended_tip|SpecialCharactersDialog"
msgid "Allows a user to insert characters from the range of symbols found in the installed fonts."
msgstr ""
diff --git a/source/ab/filter/messages.po b/source/ab/filter/messages.po
index 24dbfc92257..51a4896af1d 100644
--- a/source/ab/filter/messages.po
+++ b/source/ab/filter/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2022-01-31 18:19+0100\n"
+"POT-Creation-Date: 2022-06-15 22:28+0200\n"
"PO-Revision-Date: 2021-02-02 17:36+0000\n"
"Last-Translator: Андрей Абухба <aabuchba@mail.ru>\n"
"Language-Team: Abkhazian <https://translations.documentfoundation.org/projects/libo_ui-master/filtermessages/ab/>\n"
@@ -1513,10 +1513,10 @@ msgctxt "pdfviewpage|fitvis"
msgid "Fit _visible"
msgstr ""
-#. FD8Pp
+#. EBBzj
#: filter/uiconfig/ui/pdfviewpage.ui:254
msgctxt "pdfviewpage|extended_tip|fitvis"
-msgid "Select to generate a PDF file that shows the text and graphics on the page zoomed to fit the width of the reader's window."
+msgid "Select to generate a PDF file that shows the text and graphics on the page zoomed to fit the reader's window."
msgstr ""
#. NGpWy
@@ -1915,10 +1915,10 @@ msgctxt "xmlfiltertabpagegeneral|extended_tip|filtername"
msgid "Enter the name that you want to display in the list box of the XML Filter Settings dialog."
msgstr ""
-#. Tbmcc
+#. D5aZP
#: filter/uiconfig/ui/xmlfiltertabpagegeneral.ui:119
msgctxt "xmlfiltertabpagegeneral|extended_tip|extension"
-msgid "Enter the file extension to use when you open a file without specifying a filter. The file extension to used to determine which filter to use."
+msgid "Enter the file extension to use when you open a file without specifying a filter. The file extension is used to determine which filter to use."
msgstr ""
#. fZvBA
diff --git a/source/ab/svx/messages.po b/source/ab/svx/messages.po
index 943b9f33b24..717b6e71659 100644
--- a/source/ab/svx/messages.po
+++ b/source/ab/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2022-06-09 11:50+0200\n"
+"POT-Creation-Date: 2022-06-15 22:28+0200\n"
"PO-Revision-Date: 2021-02-04 19:36+0000\n"
"Last-Translator: Андрей Абухба <aabuchba@mail.ru>\n"
"Language-Team: Abkhazian <https://translations.documentfoundation.org/projects/libo_ui-master/svxmessages/ab/>\n"
@@ -17055,13 +17055,13 @@ msgid "_Kern Character Pairs"
msgstr ""
#. 8SKCU
-#: svx/uiconfig/ui/fontworkgallerydialog.ui:18
+#: svx/uiconfig/ui/fontworkgallerydialog.ui:16
msgctxt "fontworkgallerydialog|FontworkGalleryDialog"
msgid "Fontwork Gallery"
msgstr "Атеқсттә еффектқәа ргалереиа"
#. GB7pa
-#: svx/uiconfig/ui/fontworkgallerydialog.ui:101
+#: svx/uiconfig/ui/fontworkgallerydialog.ui:99
msgctxt "fontworkgallerydialog|label1"
msgid "Select a Fontwork style:"
msgstr "Иалышәх атеқсттә еффект астиль:"
diff --git a/source/ab/sw/messages.po b/source/ab/sw/messages.po
index 12b8c35cddb..aa3b9d71f00 100644
--- a/source/ab/sw/messages.po
+++ b/source/ab/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2022-06-09 11:51+0200\n"
+"POT-Creation-Date: 2022-06-15 22:29+0200\n"
"PO-Revision-Date: 2020-10-31 11:36+0000\n"
"Last-Translator: Christian Lohmaier <cloph@documentfoundation.org>\n"
"Language-Team: Abkhazian <https://weblate.documentfoundation.org/projects/libo_ui-master/swmessages/ab/>\n"
@@ -14235,10 +14235,10 @@ msgctxt "envprinterpage|setup"
msgid "Setup..."
msgstr ""
-#. jyNbK
+#. 4GuQN
#: sw/uiconfig/swriter/ui/envprinterpage.ui:467
msgctxt "envprinterpage|extended_tip|setup"
-msgid "Opens the Print Setup dialog where you can define additional printer settings, such as paper format and orientation."
+msgid "Opens the Printer Setup dialog where you can define additional printer settings, such as paper format and orientation."
msgstr ""
#. AKs6U
@@ -17743,10 +17743,10 @@ msgctxt "insertdbcolumnsdialog|extended_tip|tabledbcols"
msgid "Specifies the database columns to be inserted into the text table."
msgstr ""
-#. XmaQd
+#. xupgr
#: sw/uiconfig/swriter/ui/insertdbcolumnsdialog.ui:559
msgctxt "insertdbcolumnsdialog|extended_tip|tabletxtcols"
-msgid "Select the database columns that you want to insert it in the document."
+msgid "Select the database columns that you want to insert in the document."
msgstr ""
#. DJStE
@@ -18281,46 +18281,39 @@ msgctxt "labeldialog|extended_tip|ok"
msgid "Creates a new document for editing."
msgstr ""
-#. EtFBT
-#: sw/uiconfig/swriter/ui/labeldialog.ui:141
-#, fuzzy
-msgctxt "labeldialog|medium"
-msgid "Medium"
-msgstr "ибжьаратәу"
-
#. hJSCq
-#: sw/uiconfig/swriter/ui/labeldialog.ui:188
+#: sw/uiconfig/swriter/ui/labeldialog.ui:144
#, fuzzy
msgctxt "labeldialog|labels"
msgid "Labels"
msgstr "Анапаҵаҩра"
#. G378Z
-#: sw/uiconfig/swriter/ui/labeldialog.ui:236
+#: sw/uiconfig/swriter/ui/labeldialog.ui:192
msgctxt "labeldialog|private"
msgid "Private"
msgstr ""
#. CAEMT
-#: sw/uiconfig/swriter/ui/labeldialog.ui:284
+#: sw/uiconfig/swriter/ui/labeldialog.ui:240
msgctxt "labeldialog|business"
msgid "Business"
msgstr ""
#. a7BSb
-#: sw/uiconfig/swriter/ui/labeldialog.ui:332
+#: sw/uiconfig/swriter/ui/labeldialog.ui:288
msgctxt "labeldialog|format"
msgid "Format"
msgstr "Аформат"
#. cs8CW
-#: sw/uiconfig/swriter/ui/labeldialog.ui:380
+#: sw/uiconfig/swriter/ui/labeldialog.ui:336
msgctxt "labeldialog|options"
msgid "Options"
msgstr "Апараметрқәа"
#. uB6wE
-#: sw/uiconfig/swriter/ui/labeldialog.ui:407
+#: sw/uiconfig/swriter/ui/labeldialog.ui:363
msgctxt "labeldialog|extended_tip|LabelDialog"
msgid "Allows you to create labels. Labels are created in a text document."
msgstr ""
@@ -20545,26 +20538,32 @@ msgctxt "mmselectpage|extended_tip|browsetemplate"
msgid "Opens a template selector dialog."
msgstr ""
-#. qieQK
+#. EDivp
#: sw/uiconfig/swriter/ui/mmselectpage.ui:191
-msgctxt "mmselectpage|extended_tip|datasourcewarning"
+msgctxt "mmselectpage|datasourcewarning"
msgid "Data source of the current document is not registered. Please exchange database."
msgstr ""
-#. QcsgV
+#. NGYGa
#: sw/uiconfig/swriter/ui/mmselectpage.ui:200
+msgctxt "mmselectpage|exchangedatabase"
+msgid "Exchange Databases..."
+msgstr ""
+
+#. YjZmM
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:208
msgctxt "mmselectpage|extended_tip|exchangedatabase"
-msgid "Exchange Database..."
+msgid "Click to exchange the databases of your mail merge."
msgstr ""
#. 8ESAz
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:218
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:223
msgctxt "mmselectpage|label1"
msgid "Select Starting Document for the Mail Merge"
msgstr ""
#. Hpca5
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:233
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:238
msgctxt "mmselectpage|extended_tip|MMSelectPage"
msgid "Specify the document that you want to use as a base for the mail merge document."
msgstr ""
@@ -22742,49 +22741,49 @@ msgid "OLE Object"
msgstr ""
#. eRTnb
-#: sw/uiconfig/swriter/ui/objectdialog.ui:109
+#: sw/uiconfig/swriter/ui/objectdialog.ui:110
msgctxt "objectdialog|type"
msgid "Position and Size"
msgstr ""
#. ADJiB
-#: sw/uiconfig/swriter/ui/objectdialog.ui:132
+#: sw/uiconfig/swriter/ui/objectdialog.ui:133
msgctxt "objectdialog|options"
msgid "Options"
msgstr "Апараметрқәа"
#. s9Kta
-#: sw/uiconfig/swriter/ui/objectdialog.ui:156
+#: sw/uiconfig/swriter/ui/objectdialog.ui:157
msgctxt "objectdialog|wrap"
msgid "Wrap"
msgstr ""
#. vtCHo
-#: sw/uiconfig/swriter/ui/objectdialog.ui:180
+#: sw/uiconfig/swriter/ui/objectdialog.ui:181
msgctxt "objectdialog|hyperlink"
msgid "Hyperlink"
msgstr "Агиперзхьарҧш"
#. GquSU
-#: sw/uiconfig/swriter/ui/objectdialog.ui:204
+#: sw/uiconfig/swriter/ui/objectdialog.ui:205
msgctxt "objectdialog|borders"
msgid "Borders"
msgstr ""
#. L6dGA
-#: sw/uiconfig/swriter/ui/objectdialog.ui:228
+#: sw/uiconfig/swriter/ui/objectdialog.ui:229
msgctxt "objectdialog|area"
msgid "Area"
msgstr ""
#. zJ76x
-#: sw/uiconfig/swriter/ui/objectdialog.ui:252
+#: sw/uiconfig/swriter/ui/objectdialog.ui:253
msgctxt "objectdialog|transparence"
msgid "Transparency"
msgstr ""
#. FVDe9
-#: sw/uiconfig/swriter/ui/objectdialog.ui:276
+#: sw/uiconfig/swriter/ui/objectdialog.ui:277
#, fuzzy
msgctxt "objectdialog|macro"
msgid "Macro"
@@ -25524,10 +25523,10 @@ msgctxt "printoptionspage|background"
msgid "Page ba_ckground"
msgstr "Адаҟьа аҿаҧшыра"
-#. ocn5F
+#. DAfze
#: sw/uiconfig/swriter/ui/printoptionspage.ui:80
-msgctxt "extended_tip|background"
-msgid "Specifies whether to include colors and objects that are inserted to the background of the page (Format - Page - Background) in the printed document."
+msgctxt "printoptionspage|extended_tip|background"
+msgid "Specifies whether to include colors and objects that are inserted to the background of the page style (Format - Page Style - Area) in the printed document."
msgstr ""
#. FWBUe
@@ -25635,10 +25634,10 @@ msgctxt "printoptionspage|none"
msgid "_None"
msgstr "Мап"
-#. CDv8b
+#. d4YMs
#: sw/uiconfig/swriter/ui/printoptionspage.ui:298
-msgctxt "extended_tip|none"
-msgid "Specifies whether comments in your document are printed."
+msgctxt "printoptionspage|extended_tip|none"
+msgid "Do not print document comments."
msgstr ""
#. 6vPTt
@@ -25647,10 +25646,10 @@ msgctxt "printoptionspage|only"
msgid "Comments _only"
msgstr ""
-#. KsL3A
+#. aBf74
#: sw/uiconfig/swriter/ui/printoptionspage.ui:318
-msgctxt "extended_tip|only"
-msgid "Specifies whether comments in your document are printed."
+msgctxt "printoptionspage|extended_tip|only"
+msgid "Only print the comments of your document."
msgstr ""
#. n5M2U
@@ -25659,10 +25658,10 @@ msgctxt "printoptionspage|end"
msgid "End of docu_ment"
msgstr ""
-#. VxM7F
+#. LgZCr
#: sw/uiconfig/swriter/ui/printoptionspage.ui:338
-msgctxt "extended_tip|end"
-msgid "Specifies whether comments in your document are printed."
+msgctxt "printoptionspage|extended_tip|end"
+msgid "Print comments on a new page at end of the document."
msgstr ""
#. pRqdi
@@ -25671,10 +25670,10 @@ msgctxt "printoptionspage|endpage"
msgid "_End of page"
msgstr "_Адаҟьа анҵәамҭаҿ"
-#. hxM9Z
+#. c2JD2
#: sw/uiconfig/swriter/ui/printoptionspage.ui:358
msgctxt "extended_tip|endpage"
-msgid "Specifies whether comments in your document are printed."
+msgid "Print comments on a new page after the current page."
msgstr ""
#. oBR83
@@ -25683,10 +25682,10 @@ msgctxt "printoptionspage|inmargins"
msgid "In margins"
msgstr ""
-#. 7aAXX
+#. HTtDH
#: sw/uiconfig/swriter/ui/printoptionspage.ui:378
-msgctxt "extended_tip|inmargins"
-msgid "Specifies whether comments in your document are printed."
+msgctxt "printoptionspage|extended_tip|inmargins"
+msgid "Include the comments boxes on the margin of the page. The page contents is rendered to fit both contents and the comments boxes."
msgstr ""
#. VeG6V
@@ -28605,10 +28604,10 @@ msgctxt "textgridpage|labelFT_RUBYSIZE"
msgid "Max. Ruby text size:"
msgstr "Атеқст хада ашәагаа"
-#. FxPwc
+#. hHaUA
#: sw/uiconfig/swriter/ui/textgridpage.ui:363
msgctxt "textgridpage|extended_tip|spinMF_RUBYSIZE"
-msgid "Enter the font size for the Ruby text."
+msgid "Enter the maximum font size for the Ruby text."
msgstr ""
#. FJFVs
@@ -29775,10 +29774,10 @@ msgctxt "tocindexpage|casesens"
msgid "Case sensitive"
msgstr ""
-#. rAwSj
+#. sNHCm
#: sw/uiconfig/swriter/ui/tocindexpage.ui:1003
msgctxt "tocindexpage|extended_tip|casesens"
-msgid "Distinguishes between uppercase and lowercase letters in identical index entries. For Asian languages special handling applies."
+msgid "Distinguishes between uppercase and lowercase letters in otherwise identical index entries. For Asian languages special handling applies."
msgstr ""
#. e35vc
diff --git a/source/af/cui/messages.po b/source/af/cui/messages.po
index 496186fc96b..3261d7695c5 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: 2022-06-10 13:57+0200\n"
+"POT-Creation-Date: 2022-06-15 22:27+0200\n"
"PO-Revision-Date: 2022-03-09 06:26+0000\n"
"Last-Translator: Paul Roos <iNetRoos@gmail.com>\n"
"Language-Team: Afrikaans <https://translations.documentfoundation.org/projects/libo_ui-master/cuimessages/af/>\n"
@@ -3128,11 +3128,11 @@ msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Need custom contents for metadata properties? File ▸ Properties ▸ Custom Properties tab lets you create what you want."
msgstr "As u gepaste inhoud vir metadata-eienskappe in \"Writer\" benodig, kies dan »File ▸ Properties ... ▸ Tab: Custom Properties« en skep wat u daar wil hê."
-#. 9TnEA
+#. beSc7
#: cui/inc/tipoftheday.hrc:208
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Want to see, but not print, an object in Draw? Draw it on a layer for which the “Printable” flag is not set (right click on the tab and “Modify Layer”)."
-msgstr "As u 'n skets in 'Draw' net wil sien, kies 'n laag waarin die 'Printable'-vlaggie nie gestel is nie (klik met die regtermuisknoppie op 'n Laag-oortjie en kies »Wysig laag ...«, en kies opsie »2«)."
+msgid "Want to see, but not print, an object in Draw? Draw it on a layer for which the “Printable” flag is not set (right-click the layer’s tab and choose “Modify Layer”)."
+msgstr ""
#. CGQaY
#: cui/inc/tipoftheday.hrc:209
@@ -4922,25 +4922,25 @@ msgid "[M]: Replace while modifying existing text"
msgstr "[W]: Vervang terwyl bestaande teks gewysig word"
#. FtXg9
-#: cui/uiconfig/ui/applyautofmtpage.ui:90
+#: cui/uiconfig/ui/applyautofmtpage.ui:93
msgctxt "applyautofmtpage|label2"
msgid "[T]: AutoCorrect while typing"
msgstr "[T]: Outokorrigeer terwyl daar getik word"
#. NujUD
-#: cui/uiconfig/ui/applyautofmtpage.ui:136
+#: cui/uiconfig/ui/applyautofmtpage.ui:142
msgctxt "applyautofmtpage|m"
msgid "[M]"
msgstr "[W]"
#. qanx6
-#: cui/uiconfig/ui/applyautofmtpage.ui:158
+#: cui/uiconfig/ui/applyautofmtpage.ui:164
msgctxt "applyautofmtpage|t"
msgid "[T]"
msgstr "[T]"
#. 2tG6L
-#: cui/uiconfig/ui/applyautofmtpage.ui:205
+#: cui/uiconfig/ui/applyautofmtpage.ui:211
msgctxt "applyautofmtpage|extended_tip|ApplyAutoFmtPage"
msgid "Select the options for automatically correcting errors as you type, and then click OK."
msgstr "Kies die opsies vir outomatiese regstelling van foute terwyl u tik, en klik dan OK."
@@ -8297,11 +8297,11 @@ msgctxt "dimensionlinestabpage|TSB_PARALLEL"
msgid "_Parallel to line"
msgstr "_Parallel aan lyn"
-#. gZdFr
+#. CCTEb
#: cui/uiconfig/ui/dimensionlinestabpage.ui:440
msgctxt "dimensionlinestabpage|extended_tip|TSB_PARALLEL"
-msgid "Displays the text parallel to or at 90 degrees to the dimension line."
-msgstr "Toon die teks parallel met die dimensielyn of 90 grade verreken."
+msgid "If enabled, displays the text parallel to the dimension line. If disabled, the text is shown at 90 degrees to the dimension line."
+msgstr ""
#. QNscD
#: cui/uiconfig/ui/dimensionlinestabpage.ui:452
@@ -8309,11 +8309,11 @@ msgctxt "dimensionlinestabpage|TSB_SHOW_UNIT"
msgid "Show _measurement units"
msgstr "Wys _meeteenhede"
-#. cJRA9
+#. KQGtM
#: cui/uiconfig/ui/dimensionlinestabpage.ui:461
msgctxt "dimensionlinestabpage|extended_tip|TSB_SHOW_UNIT"
-msgid "Shows or hides the dimension measurement units. You can also select a measurement unit you want to display from the list."
-msgstr "Toon of verberg die meeteenheid van die dimensie. Kies die eenheid uit die lys."
+msgid "Shows or hides the dimension measurement unit. You can select a measurement unit you want to display from the list."
+msgstr ""
#. EEaqi
#: cui/uiconfig/ui/dimensionlinestabpage.ui:479
@@ -10320,11 +10320,11 @@ msgctxt "hangulhanjaoptdialog|extended_tip|delete"
msgid "Deletes the selected user-defined dictionary."
msgstr "Verwyder die geselekteerde gebruikerswoordeboek."
-#. v7Bkk
+#. eG9Qx
#: cui/uiconfig/ui/hangulhanjaoptdialog.ui:231
msgctxt "hangulhanjaoptdialog|extended_tip|dicts"
-msgid "Lists all user-defined dictionaries. Select the check box next to the dictionary that you want to use. Clear the check box next to the dictionary that you do not want to use."
-msgstr "Lys alle gebruikerswoordeboeke. Merk die regmerkie langs die gewenste woordeboek in. Vee uit die regmerkie langs die woordeboek wat u nie wil gebruik nie."
+msgid "Lists all user-defined dictionaries. Select the check box next to the dictionaries that you want to use. Clear the check box next to the dictionaries that you do not want to use."
+msgstr ""
#. DmfuX
#: cui/uiconfig/ui/hangulhanjaoptdialog.ui:248
@@ -10705,19 +10705,19 @@ msgid "Opens the Assign Macro dialog, in which you can give events such as \"mou
msgstr "Open die \"Makro Toewys\"-dialoog waarin u, u eie programkode kan toedeel aan gebeure soos \"Muis oor objek\" of \"Aktiverende hiperskakel\"."
#. TXrCH
-#: cui/uiconfig/ui/hyperlinkdocpage.ui:399
+#: cui/uiconfig/ui/hyperlinkdocpage.ui:391
msgctxt "hyperlinkdocpage|extended_tip|frame"
msgid "Enter the name of the frame that you want the linked file to open in, or select a predefined frame from the list. If you leave this box blank, the linked file opens in the current browser window."
msgstr "Voer in die naam van die raam waarin die gekoppelde lêer oopgemaak moet word of kies 'n vooraf gedefinieerde raam vanuit die lys. As u hierdie veld leeg laat, sal die gekoppelde lêer in die huidige blaaiervenster oopgemaak word."
#. frjow
-#: cui/uiconfig/ui/hyperlinkdocpage.ui:420
+#: cui/uiconfig/ui/hyperlinkdocpage.ui:412
msgctxt "hyperlinkdocpage|label1"
msgid "Further Settings"
msgstr "Verdere instellings"
#. 789Vi
-#: cui/uiconfig/ui/hyperlinkdocpage.ui:435
+#: cui/uiconfig/ui/hyperlinkdocpage.ui:427
msgctxt "hyperlinkdocpage|extended_tip|HyperlinkDocPage"
msgid "Hyperlinks to any document or targets in documents can be edited using the Document tab from the Hyperlink dialog."
msgstr "In die Dokument-oortjie van die \"Hiperskakel\"-dialoog kan hiperskakels na enige dokumente of bestemmings in dokumente geredigeer word."
@@ -10861,19 +10861,19 @@ msgid "Opens the Assign Macro dialog, in which you can give events such as \"mou
msgstr "Open die \"Makro Toewys\"-dialoog waarin u, u eie programkode kan toedeel aan gebeure soos \"Muis oor objek\" of \"Aktiverende hiperskakel\"."
#. C5Hqs
-#: cui/uiconfig/ui/hyperlinkinternetpage.ui:409
+#: cui/uiconfig/ui/hyperlinkinternetpage.ui:401
msgctxt "hyperlinkinternetpage|extended_tip|frame"
msgid "Enter the name of the frame that you want the linked file to open in, or select a predefined frame from the list. If you leave this box blank, the linked file opens in the current browser window."
msgstr "Voer in die naam van die raam waarin die gekoppelde lêer oopgemaak moet word of kies 'n vooraf gedefinieerde raam vanuit die lys. As u hierdie veld leeg laat, sal die gekoppelde lêer in die huidige blaaiervenster oopgemaak word."
#. UKQMX
-#: cui/uiconfig/ui/hyperlinkinternetpage.ui:430
+#: cui/uiconfig/ui/hyperlinkinternetpage.ui:422
msgctxt "hyperlinkinternetpage|label1"
msgid "Further Settings"
msgstr "Verdere instellings"
#. 8UdTe
-#: cui/uiconfig/ui/hyperlinkinternetpage.ui:445
+#: cui/uiconfig/ui/hyperlinkinternetpage.ui:437
msgctxt "hyperlinkinternetpage|extended_tip|HyperlinkInternetPage"
msgid "Use the Internet page of the Hyperlink dialog to edit hyperlinks with WWW or FTP addresses."
msgstr "Gebruik die Internet bladsy van die \"Hyperlink\"-dialoog om die hiperskakels in WWW- of FTP-adresse te wysig."
@@ -10975,19 +10975,19 @@ msgid "Opens the Assign Macro dialog, in which you can give events such as \"mou
msgstr "Open die \"Makro Toewys\"-dialoog waarin u, u eie programkode kan toedeel aan gebeure soos \"Muis oor objek\" of \"Aktiverende hiperskakel\"."
#. CwHdi
-#: cui/uiconfig/ui/hyperlinkmailpage.ui:324
+#: cui/uiconfig/ui/hyperlinkmailpage.ui:316
msgctxt "hyperlinkmailpage|extended_tip|frame"
msgid "Enter the name of the frame that you want the linked file to open in, or select a predefined frame from the list. If you leave this box blank, the linked file opens in the current browser window."
msgstr "Voer in die naam van die raam waarin die gekoppelde lêer oopgemaak moet word of kies 'n vooraf gedefinieerde raam vanuit die lys. As u hierdie veld leeg laat, sal die gekoppelde lêer in die huidige blaaiervenster oopgemaak word."
#. BmHDh
-#: cui/uiconfig/ui/hyperlinkmailpage.ui:345
+#: cui/uiconfig/ui/hyperlinkmailpage.ui:337
msgctxt "hyperlinkmailpage|label1"
msgid "Further Settings"
msgstr "Verdere instellings"
#. SvyDu
-#: cui/uiconfig/ui/hyperlinkmailpage.ui:360
+#: cui/uiconfig/ui/hyperlinkmailpage.ui:352
msgctxt "hyperlinkmailpage|extended_tip|HyperlinkMailPage"
msgid "On the Mail page in the Hyperlink dialog you can edit hyperlinks for email addresses."
msgstr "Op die e-pos-bladsy in die \"Hiperlink\"-dialoog kan u hiperskakels vir e-posadresse wysig."
@@ -11149,19 +11149,19 @@ msgid "Opens the Assign Macro dialog, in which you can give events such as \"mou
msgstr "Open die \"Makro Toewys\"-dialoog waarin u, u eie programkode kan toedeel aan gebeure soos \"Muis oor objek\" of \"Aktiverende hiperskakel\"."
#. rXaNm
-#: cui/uiconfig/ui/hyperlinknewdocpage.ui:408
+#: cui/uiconfig/ui/hyperlinknewdocpage.ui:400
msgctxt "hyperlinknewdocpage|extended_tip|frame"
msgid "Enter the name of the frame that you want the linked file to open in, or select a predefined frame from the list. If you leave this box blank, the linked file opens in the current browser window."
msgstr "Voer in die naam van die raam waarin die gekoppelde lêer oopgemaak moet word of kies 'n vooraf gedefinieerde raam vanuit die lys. As u hierdie veld leeg laat, sal die gekoppelde lêer in die huidige blaaiervenster oopgemaak word."
#. MS2Cn
-#: cui/uiconfig/ui/hyperlinknewdocpage.ui:429
+#: cui/uiconfig/ui/hyperlinknewdocpage.ui:421
msgctxt "hyperlinknewdocpage|label1"
msgid "Further Settings"
msgstr "Verdere instellings"
#. ztAbs
-#: cui/uiconfig/ui/hyperlinknewdocpage.ui:444
+#: cui/uiconfig/ui/hyperlinknewdocpage.ui:436
msgctxt "hyperlinknewdocpage|extended_tip|HyperlinkNewDocPage"
msgid "Use the New Document tab from the Hyperlink dialog to set up a hyperlink to a new document and create the new document simultaneously."
msgstr "Gebruik die \"Nuwe dokument\"-tabblad van die \"Hiperskakel\"-dialoog om 'n hiperskakel na 'n nuwe dokument op te stel en terselfdertyd die nuwe dokument te skep."
@@ -11926,10 +11926,10 @@ msgctxt "langtoolconfigpage|base"
msgid "Base URL:"
msgstr ""
-#. 9to2D
+#. z58D6
#: cui/uiconfig/ui/langtoolconfigpage.ui:111
msgctxt "langtoolconfigpage|usernamelbl"
-msgid "User name:"
+msgid "Username:"
msgstr ""
#. B8kMr
@@ -11938,32 +11938,32 @@ msgctxt "langtoolconfigpage|apikeylbl"
msgid "API key:"
msgstr ""
-#. AoT7Z
+#. LBMkb
#: cui/uiconfig/ui/langtoolconfigpage.ui:159
msgctxt "langtoolconfigpage|urldesc"
-msgid "Please use the base URL e.g. without \"/check\" at the end."
+msgid "Please use the base URL, i.e., without “/check”, at the end."
msgstr ""
-#. EDETM
-#: cui/uiconfig/ui/langtoolconfigpage.ui:171
+#. 77oav
+#: cui/uiconfig/ui/langtoolconfigpage.ui:174
msgctxt "langtoolconfigpage|usernamedesc"
-msgid "Your LanguageTool account's username for premium usage."
+msgid "Your LanguageTool account’s username for premium usage."
msgstr ""
-#. aDGJf
-#: cui/uiconfig/ui/langtoolconfigpage.ui:183
+#. tGuAh
+#: cui/uiconfig/ui/langtoolconfigpage.ui:189
msgctxt "langtoolconfigpage|apikeydesc"
-msgid "Your LanguageTool account's api key for premium usage."
+msgid "Your LanguageTool account’s API key for premium usage."
msgstr ""
#. Dn8bb
-#: cui/uiconfig/ui/langtoolconfigpage.ui:206
+#: cui/uiconfig/ui/langtoolconfigpage.ui:215
msgctxt "langtoolconfigpage|apisettingsheader"
msgid "API Settings"
msgstr ""
#. Ntss5
-#: cui/uiconfig/ui/langtoolconfigpage.ui:225
+#: cui/uiconfig/ui/langtoolconfigpage.ui:234
msgctxt "langtoolconfigpage|langtoolsettings"
msgid "LanguageTool API Options"
msgstr ""
@@ -14481,73 +14481,73 @@ msgstr "[L]: Laai en skakel die objek om"
#. PiDB7
#. The [S] here is repeated as the column title for the "Save" column of this options page
-#: cui/uiconfig/ui/optfltrembedpage.ui:163
+#: cui/uiconfig/ui/optfltrembedpage.ui:166
msgctxt "optfltrembedpage|label3"
msgid "[S]: Convert and save the object"
msgstr "[S]: Skakel die objek om en stoor"
#. f2hGQ
-#: cui/uiconfig/ui/optfltrembedpage.ui:185
+#: cui/uiconfig/ui/optfltrembedpage.ui:191
msgctxt "optfltrembedpage|label1"
msgid "Embedded Objects"
msgstr "Ingebedde objekte"
#. nvE89
-#: cui/uiconfig/ui/optfltrembedpage.ui:215
+#: cui/uiconfig/ui/optfltrembedpage.ui:221
msgctxt "optfltrembedpage|label5"
msgid "Export as:"
msgstr "Voer uit as:"
#. FEeH6
-#: cui/uiconfig/ui/optfltrembedpage.ui:230
+#: cui/uiconfig/ui/optfltrembedpage.ui:236
msgctxt "optfltrembedpage|highlighting"
msgid "Highlighting"
msgstr "Teks merking"
#. qBuyX
-#: cui/uiconfig/ui/optfltrembedpage.ui:239
+#: cui/uiconfig/ui/optfltrembedpage.ui:245
msgctxt "extended_tip|highlighting"
msgid "Microsoft Office has two character attributes similar to Writer character background. Select the appropriate attribute (highlighting or shading) which you would like to use during export to Microsoft Office file formats."
msgstr "Microsoft Office het twee karakterkenmerke soortgelyk is aan Writer se karakter agtergrond. Kies die toepaslike kenmerk (uitligting of verdowwing) wat jy wil gebruik tydens uitskryf met Microsoft Office-lêerformate."
#. Dnrx7
-#: cui/uiconfig/ui/optfltrembedpage.ui:251
+#: cui/uiconfig/ui/optfltrembedpage.ui:257
msgctxt "optfltrembedpage|shading"
msgid "Shading"
msgstr "Skakering"
#. 3PFE2
-#: cui/uiconfig/ui/optfltrembedpage.ui:260
+#: cui/uiconfig/ui/optfltrembedpage.ui:266
msgctxt "extended_tip|shading"
msgid "Microsoft Office has two character attributes similar to Writer character background. Select the appropriate attribute (highlighting or shading) which you would like to use during export to Microsoft Office file formats."
msgstr "Microsoft Office het twee karakterkenmerke soortgelyk is aan Writer se karakter agtergrond. Kies die toepaslike kenmerk (uitligting of verdowwing) wat jy wil gebruik tydens uitskryf met Microsoft Office-lêerformate."
#. gKwdG
-#: cui/uiconfig/ui/optfltrembedpage.ui:283
+#: cui/uiconfig/ui/optfltrembedpage.ui:289
msgctxt "optfltrembedpage|label4"
msgid "Character Highlighting"
msgstr "Karakter beklemtoning"
#. tyACF
-#: cui/uiconfig/ui/optfltrembedpage.ui:310
+#: cui/uiconfig/ui/optfltrembedpage.ui:316
msgctxt "optfltrembedpage|mso_lockfile"
msgid "Create MSO lock file"
msgstr "Skep 'n MSO grendellêer"
#. qc4GD
-#: cui/uiconfig/ui/optfltrembedpage.ui:319
+#: cui/uiconfig/ui/optfltrembedpage.ui:325
msgctxt "extended_tip|mso_lockfile"
msgid "Mark this checkbox to generate a Microsoft Office lock file in addition to this office suite's own lock file."
msgstr "Merk hierdie merkblokkie om 'n Microsoft Office-slotlêer bykomend tot hierdieoffice-pakket se eie slotlêer te genereer."
#. Sg5Bw
-#: cui/uiconfig/ui/optfltrembedpage.ui:335
+#: cui/uiconfig/ui/optfltrembedpage.ui:341
msgctxt "optfltrembedpage|label5"
msgid "Lock Files"
msgstr "Slotlêers"
#. EUBnP
-#: cui/uiconfig/ui/optfltrembedpage.ui:349
+#: cui/uiconfig/ui/optfltrembedpage.ui:355
msgctxt "extended_tip|OptFilterPage"
msgid "Specifies the settings for importing and exporting Microsoft Office and other documents."
msgstr "Spesifiseer die instellings vir die invoer en uitskryf van Microsoft Office en ander dokumente."
@@ -14816,11 +14816,11 @@ msgctxt "optgeneralpage|exthelp"
msgid "_Extended tips"
msgstr "Uitg_ebreide wenke"
-#. ypuz2
+#. TyqBV
#: cui/uiconfig/ui/optgeneralpage.ui:42
msgctxt "extended_tip | exthelp"
-msgid "Displays a help text when you rest the cursor on an icon, a menu command, or a control on a dialog."
-msgstr "Hierdie opsie vertoon hulpteks wanneer u die wyser oor 'n ikoon, menu-opdrag of beheerelement in 'n dialoog hou."
+msgid "Displays a help text when you rest the mouse pointer on an icon, a menu command, or a control on a dialog."
+msgstr ""
#. Cbeuc
#: cui/uiconfig/ui/optgeneralpage.ui:53
@@ -16516,7 +16516,7 @@ msgid "Passwords are protected by a master password. You will be asked to enter
msgstr "Wagwoorde word beskerm deur ’n meesterwagwoord. U sal een keer per sessie gevra word om dit in te tik as %PRODUCTNAME ’n wagwoord uit die beskermde wagwoordlys kry."
#. 7gzb7
-#: cui/uiconfig/ui/optsecuritypage.ui:303
+#: cui/uiconfig/ui/optsecuritypage.ui:306
msgctxt "optsecuritypage|nopasswordsave"
msgid ""
"Disabling the function to persistently store passwords deletes the list of passwords stored and resets the master password.\n"
@@ -16528,61 +16528,61 @@ msgstr ""
"Wil u die wagwoordlys skrap en die meesterwagwoord herstel?"
#. hwg3F
-#: cui/uiconfig/ui/optsecuritypage.ui:341
+#: cui/uiconfig/ui/optsecuritypage.ui:344
msgctxt "optsecuritypage|connections"
msgid "Connect_ions..."
msgstr "Verb_indings..."
#. GLEjB
-#: cui/uiconfig/ui/optsecuritypage.ui:349
+#: cui/uiconfig/ui/optsecuritypage.ui:352
msgctxt "extended_tip|connections"
msgid "Asks for the master password. If master password is correct, shows the Stored Web Connection Information dialog."
msgstr "Vra vir die hoofwagwoord. As die hoofwagwoord korrek is, word die \"Gestoorde internetverbindings\"-dialoog vertoon."
#. SWrMn
-#: cui/uiconfig/ui/optsecuritypage.ui:371
+#: cui/uiconfig/ui/optsecuritypage.ui:374
msgctxt "optsecuritypage|masterpassword"
msgid "_Master Password..."
msgstr "_Meesterwagwoord..."
#. w3TQo
-#: cui/uiconfig/ui/optsecuritypage.ui:379
+#: cui/uiconfig/ui/optsecuritypage.ui:382
msgctxt "extended_tip|masterpassword"
msgid "Opens the Enter Master Password dialog."
msgstr "Open die \"Hoofwagwoord\"-dialoogvenster."
#. UtNEn
-#: cui/uiconfig/ui/optsecuritypage.ui:406
+#: cui/uiconfig/ui/optsecuritypage.ui:409
msgctxt "optsecuritypage|label2"
msgid "Passwords for Web Connections"
msgstr "Wagwoorde vir webverbindings"
#. EYFvA
-#: cui/uiconfig/ui/optsecuritypage.ui:439
+#: cui/uiconfig/ui/optsecuritypage.ui:442
msgctxt "optsecuritypage|label4"
msgid "Adjust security related options and define warnings for hidden information in documents. "
msgstr "Verstel sekuriteitverwante opsies en definieer waarskuwings vir versteekte inligting in dokumente. "
#. CBnzU
-#: cui/uiconfig/ui/optsecuritypage.ui:452
+#: cui/uiconfig/ui/optsecuritypage.ui:455
msgctxt "optsecuritypage|options"
msgid "O_ptions..."
msgstr "O_psies..."
#. pepKZ
-#: cui/uiconfig/ui/optsecuritypage.ui:460
+#: cui/uiconfig/ui/optsecuritypage.ui:463
msgctxt "extended_tip|options"
msgid "Opens the \"Security Options and Warnings\" dialog."
msgstr "Open die \"Veiligheids-opsies en Waarskuwings\"-dialoog."
#. GqVkJ
-#: cui/uiconfig/ui/optsecuritypage.ui:475
+#: cui/uiconfig/ui/optsecuritypage.ui:478
msgctxt "optsecuritypage|label1"
msgid "Security Options and Warnings"
msgstr "Sekuriteitsopsies en -waarskuwings"
#. rwtuC
-#: cui/uiconfig/ui/optsecuritypage.ui:489
+#: cui/uiconfig/ui/optsecuritypage.ui:492
msgctxt "extended_tip|OptSecurityPage"
msgid "Defines the security options for saving documents, for web connections, and for opening documents that contain macros."
msgstr "Spesifiseer die veiligheidsopsies vir die stoor van dokumente, vir internetverbindings en vir die opening van dokumente met makro's."
@@ -20086,11 +20086,11 @@ msgctxt "specialcharacters|srchft"
msgid "Search:"
msgstr "Soek:"
-#. eCjVg
+#. zPCZ7
#: cui/uiconfig/ui/specialcharacters.ui:166
msgctxt "specialcharacters|extended_tip|subsetlb"
-msgid "Select a Unicode category for the current font."
-msgstr "Selekteer 'n Unicode kategorie vir die huidige font."
+msgid "Select a Unicode block for the current font."
+msgstr ""
#. JPWW8
#: cui/uiconfig/ui/specialcharacters.ui:190
@@ -20123,19 +20123,19 @@ msgid "Maximum Limit: 16 Characters"
msgstr "Limiet: 16 karakters"
#. ti8sG
-#: cui/uiconfig/ui/specialcharacters.ui:371
+#: cui/uiconfig/ui/specialcharacters.ui:374
msgctxt "specialcharacters|symboltext1"
msgid "Recent Characters:"
msgstr "Onlangse karakters:"
#. LQZ7q
-#: cui/uiconfig/ui/specialcharacters.ui:605
+#: cui/uiconfig/ui/specialcharacters.ui:608
msgctxt "specialcharacters|favbtn|symboltext2"
msgid "Favorite Characters:"
msgstr "Gunstelingkarakters:"
#. DhG6L
-#: cui/uiconfig/ui/specialcharacters.ui:903
+#: cui/uiconfig/ui/specialcharacters.ui:906
msgctxt "specialcharacters|extended_tip|SpecialCharactersDialog"
msgid "Allows a user to insert characters from the range of symbols found in the installed fonts."
msgstr "Laat die gebruiker toe om karakters in te voeg uit die simboolstelle van die geïnstalleerde fonte."
diff --git a/source/af/filter/messages.po b/source/af/filter/messages.po
index 4762af833f9..de9c35a6299 100644
--- a/source/af/filter/messages.po
+++ b/source/af/filter/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2022-01-31 18:19+0100\n"
+"POT-Creation-Date: 2022-06-15 22:28+0200\n"
"PO-Revision-Date: 2022-02-02 13:39+0000\n"
"Last-Translator: Paul Roos <iNetRoos@gmail.com>\n"
"Language-Team: Afrikaans <https://translations.documentfoundation.org/projects/libo_ui-master/filtermessages/af/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.8.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1560927302.000000\n"
#. 5AQgJ
@@ -1512,11 +1512,11 @@ msgctxt "pdfviewpage|fitvis"
msgid "Fit _visible"
msgstr "Pas _sigbare"
-#. FD8Pp
+#. EBBzj
#: filter/uiconfig/ui/pdfviewpage.ui:254
msgctxt "pdfviewpage|extended_tip|fitvis"
-msgid "Select to generate a PDF file that shows the text and graphics on the page zoomed to fit the width of the reader's window."
-msgstr "Kies hierdie opsie om 'n PDF-lêer te skep waarin die teks en grafika op die bladsy aangepas word om die breedte van die leesvenster te pas."
+msgid "Select to generate a PDF file that shows the text and graphics on the page zoomed to fit the reader's window."
+msgstr ""
#. NGpWy
#: filter/uiconfig/ui/pdfviewpage.ui:271
@@ -1914,11 +1914,11 @@ msgctxt "xmlfiltertabpagegeneral|extended_tip|filtername"
msgid "Enter the name that you want to display in the list box of the XML Filter Settings dialog."
msgstr "Voer die naam in wat in die lys-venster van die XML-filterinstellings-dialoog moet verskyn."
-#. Tbmcc
+#. D5aZP
#: filter/uiconfig/ui/xmlfiltertabpagegeneral.ui:119
msgctxt "xmlfiltertabpagegeneral|extended_tip|extension"
-msgid "Enter the file extension to use when you open a file without specifying a filter. The file extension to used to determine which filter to use."
-msgstr "Voer die lêernaam uitbreiding in om te gebruik wanneer jy 'n lêer oopmaak sonder om 'n filter te spesifiseer. Die uitbreiding wat gebruik word om te bepaal watter filter gaan gebruik word."
+msgid "Enter the file extension to use when you open a file without specifying a filter. The file extension is used to determine which filter to use."
+msgstr ""
#. fZvBA
#: filter/uiconfig/ui/xmlfiltertabpagegeneral.ui:138
diff --git a/source/af/svx/messages.po b/source/af/svx/messages.po
index de8c9891319..9b52b58417e 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: 2022-06-09 11:50+0200\n"
+"POT-Creation-Date: 2022-06-15 22:28+0200\n"
"PO-Revision-Date: 2022-02-27 12:39+0000\n"
"Last-Translator: Paul Roos <iNetRoos@gmail.com>\n"
"Language-Team: Afrikaans <https://translations.documentfoundation.org/projects/libo_ui-master/svxmessages/af/>\n"
@@ -17073,13 +17073,13 @@ msgid "_Kern Character Pairs"
msgstr "Kern-karakterpare"
#. 8SKCU
-#: svx/uiconfig/ui/fontworkgallerydialog.ui:18
+#: svx/uiconfig/ui/fontworkgallerydialog.ui:16
msgctxt "fontworkgallerydialog|FontworkGalleryDialog"
msgid "Fontwork Gallery"
msgstr "Fontwerk Gallery"
#. GB7pa
-#: svx/uiconfig/ui/fontworkgallerydialog.ui:101
+#: svx/uiconfig/ui/fontworkgallerydialog.ui:99
msgctxt "fontworkgallerydialog|label1"
msgid "Select a Fontwork style:"
msgstr "Kies ’n Fontwerk-styl:"
diff --git a/source/af/sw/messages.po b/source/af/sw/messages.po
index 2f5232728d4..c55a353c5b9 100644
--- a/source/af/sw/messages.po
+++ b/source/af/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2022-06-09 11:51+0200\n"
+"POT-Creation-Date: 2022-06-15 22:29+0200\n"
"PO-Revision-Date: 2022-02-18 11:42+0000\n"
"Last-Translator: Paul Roos <iNetRoos@gmail.com>\n"
"Language-Team: Afrikaans <https://translations.documentfoundation.org/projects/libo_ui-master/swmessages/af/>\n"
@@ -14136,11 +14136,11 @@ msgctxt "envprinterpage|setup"
msgid "Setup..."
msgstr "Opstelling..."
-#. jyNbK
+#. 4GuQN
#: sw/uiconfig/swriter/ui/envprinterpage.ui:467
msgctxt "envprinterpage|extended_tip|setup"
-msgid "Opens the Print Setup dialog where you can define additional printer settings, such as paper format and orientation."
-msgstr "Hierdie knoppie open die \"Printer Settings\"-dialoog. Afhangend van die drukker in gebruik, kan u hier verdere instellings maak, byvoorbeeld die papierformaat in gebruik en die oriëntasie."
+msgid "Opens the Printer Setup dialog where you can define additional printer settings, such as paper format and orientation."
+msgstr ""
#. AKs6U
#: sw/uiconfig/swriter/ui/envprinterpage.ui:481
@@ -17572,11 +17572,11 @@ msgctxt "insertdbcolumnsdialog|extended_tip|tabledbcols"
msgid "Specifies the database columns to be inserted into the text table."
msgstr "Spesifiseer die databasis kolomme wat in die teks tabel ingevoeg moet word."
-#. XmaQd
+#. xupgr
#: sw/uiconfig/swriter/ui/insertdbcolumnsdialog.ui:559
msgctxt "insertdbcolumnsdialog|extended_tip|tabletxtcols"
-msgid "Select the database columns that you want to insert it in the document."
-msgstr "Selekteer die databasis-kolomme wat u in die dokument wil invoeg."
+msgid "Select the database columns that you want to insert in the document."
+msgstr ""
#. DJStE
#: sw/uiconfig/swriter/ui/insertdbcolumnsdialog.ui:623
@@ -18100,44 +18100,38 @@ msgctxt "labeldialog|extended_tip|ok"
msgid "Creates a new document for editing."
msgstr "Skep 'n nuwe dokument vir redigering."
-#. EtFBT
-#: sw/uiconfig/swriter/ui/labeldialog.ui:141
-msgctxt "labeldialog|medium"
-msgid "Medium"
-msgstr "Medium"
-
#. hJSCq
-#: sw/uiconfig/swriter/ui/labeldialog.ui:188
+#: sw/uiconfig/swriter/ui/labeldialog.ui:144
msgctxt "labeldialog|labels"
msgid "Labels"
msgstr "Etikette"
#. G378Z
-#: sw/uiconfig/swriter/ui/labeldialog.ui:236
+#: sw/uiconfig/swriter/ui/labeldialog.ui:192
msgctxt "labeldialog|private"
msgid "Private"
msgstr "Privaat"
#. CAEMT
-#: sw/uiconfig/swriter/ui/labeldialog.ui:284
+#: sw/uiconfig/swriter/ui/labeldialog.ui:240
msgctxt "labeldialog|business"
msgid "Business"
msgstr "Besigheid"
#. a7BSb
-#: sw/uiconfig/swriter/ui/labeldialog.ui:332
+#: sw/uiconfig/swriter/ui/labeldialog.ui:288
msgctxt "labeldialog|format"
msgid "Format"
msgstr "Formaat"
#. cs8CW
-#: sw/uiconfig/swriter/ui/labeldialog.ui:380
+#: sw/uiconfig/swriter/ui/labeldialog.ui:336
msgctxt "labeldialog|options"
msgid "Options"
msgstr "Opsies"
#. uB6wE
-#: sw/uiconfig/swriter/ui/labeldialog.ui:407
+#: sw/uiconfig/swriter/ui/labeldialog.ui:363
msgctxt "labeldialog|extended_tip|LabelDialog"
msgid "Allows you to create labels. Labels are created in a text document."
msgstr "Hiermee kan u etikette maak. Etikette word geskep in 'n teks dokument."
@@ -20314,26 +20308,32 @@ msgctxt "mmselectpage|extended_tip|browsetemplate"
msgid "Opens a template selector dialog."
msgstr "Open die \"Sjabloon Selekteerder\"-dialoog."
-#. qieQK
+#. EDivp
#: sw/uiconfig/swriter/ui/mmselectpage.ui:191
-msgctxt "mmselectpage|extended_tip|datasourcewarning"
+msgctxt "mmselectpage|datasourcewarning"
msgid "Data source of the current document is not registered. Please exchange database."
-msgstr "Die huidige dokument se databron is nie geregistreer. Verwissel databasis asseblief."
+msgstr ""
-#. QcsgV
+#. NGYGa
#: sw/uiconfig/swriter/ui/mmselectpage.ui:200
+msgctxt "mmselectpage|exchangedatabase"
+msgid "Exchange Databases..."
+msgstr ""
+
+#. YjZmM
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:208
msgctxt "mmselectpage|extended_tip|exchangedatabase"
-msgid "Exchange Database..."
-msgstr "Uitruil Databasis..."
+msgid "Click to exchange the databases of your mail merge."
+msgstr ""
#. 8ESAz
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:218
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:223
msgctxt "mmselectpage|label1"
msgid "Select Starting Document for the Mail Merge"
msgstr "Kies begindokument vir die massapos"
#. Hpca5
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:233
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:238
msgctxt "mmselectpage|extended_tip|MMSelectPage"
msgid "Specify the document that you want to use as a base for the mail merge document."
msgstr "Spesifiseer die dokument wat gebruik moet word as basis vir die epos saamvoegdokument."
@@ -22494,49 +22494,49 @@ msgid "OLE Object"
msgstr ""
#. eRTnb
-#: sw/uiconfig/swriter/ui/objectdialog.ui:109
+#: sw/uiconfig/swriter/ui/objectdialog.ui:110
msgctxt "objectdialog|type"
msgid "Position and Size"
msgstr ""
#. ADJiB
-#: sw/uiconfig/swriter/ui/objectdialog.ui:132
+#: sw/uiconfig/swriter/ui/objectdialog.ui:133
msgctxt "objectdialog|options"
msgid "Options"
msgstr "Opsies"
#. s9Kta
-#: sw/uiconfig/swriter/ui/objectdialog.ui:156
+#: sw/uiconfig/swriter/ui/objectdialog.ui:157
msgctxt "objectdialog|wrap"
msgid "Wrap"
msgstr "Vou om"
#. vtCHo
-#: sw/uiconfig/swriter/ui/objectdialog.ui:180
+#: sw/uiconfig/swriter/ui/objectdialog.ui:181
msgctxt "objectdialog|hyperlink"
msgid "Hyperlink"
msgstr "Hiperskakel"
#. GquSU
-#: sw/uiconfig/swriter/ui/objectdialog.ui:204
+#: sw/uiconfig/swriter/ui/objectdialog.ui:205
msgctxt "objectdialog|borders"
msgid "Borders"
msgstr "Rande"
#. L6dGA
-#: sw/uiconfig/swriter/ui/objectdialog.ui:228
+#: sw/uiconfig/swriter/ui/objectdialog.ui:229
msgctxt "objectdialog|area"
msgid "Area"
msgstr "Area"
#. zJ76x
-#: sw/uiconfig/swriter/ui/objectdialog.ui:252
+#: sw/uiconfig/swriter/ui/objectdialog.ui:253
msgctxt "objectdialog|transparence"
msgid "Transparency"
msgstr "Deursigtigheid"
#. FVDe9
-#: sw/uiconfig/swriter/ui/objectdialog.ui:276
+#: sw/uiconfig/swriter/ui/objectdialog.ui:277
msgctxt "objectdialog|macro"
msgid "Macro"
msgstr "Makro"
@@ -25205,11 +25205,11 @@ msgctxt "printoptionspage|background"
msgid "Page ba_ckground"
msgstr "~Bladsyagtergrond"
-#. ocn5F
+#. DAfze
#: sw/uiconfig/swriter/ui/printoptionspage.ui:80
-msgctxt "extended_tip|background"
-msgid "Specifies whether to include colors and objects that are inserted to the background of the page (Format - Page - Background) in the printed document."
-msgstr "Spesifiseer of die kleure en objekte wat op die agtergrond van die bladsy aangebring is (Formatteer → Bladsy → Agtergrond) moet gedruk word."
+msgctxt "printoptionspage|extended_tip|background"
+msgid "Specifies whether to include colors and objects that are inserted to the background of the page style (Format - Page Style - Area) in the printed document."
+msgstr ""
#. FWBUe
#: sw/uiconfig/swriter/ui/printoptionspage.ui:91
@@ -25313,11 +25313,11 @@ msgctxt "printoptionspage|none"
msgid "_None"
msgstr "Gee_n"
-#. CDv8b
+#. d4YMs
#: sw/uiconfig/swriter/ui/printoptionspage.ui:298
-msgctxt "extended_tip|none"
-msgid "Specifies whether comments in your document are printed."
-msgstr "Bepaal of die opmerkings in u dokument gedruk moet word."
+msgctxt "printoptionspage|extended_tip|none"
+msgid "Do not print document comments."
+msgstr ""
#. 6vPTt
#: sw/uiconfig/swriter/ui/printoptionspage.ui:309
@@ -25325,11 +25325,11 @@ msgctxt "printoptionspage|only"
msgid "Comments _only"
msgstr "Net _opmerkings"
-#. KsL3A
+#. aBf74
#: sw/uiconfig/swriter/ui/printoptionspage.ui:318
-msgctxt "extended_tip|only"
-msgid "Specifies whether comments in your document are printed."
-msgstr "Bepaal of die opmerkings in u dokument gedruk moet word."
+msgctxt "printoptionspage|extended_tip|only"
+msgid "Only print the comments of your document."
+msgstr ""
#. n5M2U
#: sw/uiconfig/swriter/ui/printoptionspage.ui:329
@@ -25337,11 +25337,11 @@ msgctxt "printoptionspage|end"
msgid "End of docu_ment"
msgstr "Einde van doku_ment"
-#. VxM7F
+#. LgZCr
#: sw/uiconfig/swriter/ui/printoptionspage.ui:338
-msgctxt "extended_tip|end"
-msgid "Specifies whether comments in your document are printed."
-msgstr "Bepaal of die opmerkings in u dokument gedruk moet word."
+msgctxt "printoptionspage|extended_tip|end"
+msgid "Print comments on a new page at end of the document."
+msgstr ""
#. pRqdi
#: sw/uiconfig/swriter/ui/printoptionspage.ui:349
@@ -25349,11 +25349,11 @@ msgctxt "printoptionspage|endpage"
msgid "_End of page"
msgstr "_Einde van bladsy"
-#. hxM9Z
+#. c2JD2
#: sw/uiconfig/swriter/ui/printoptionspage.ui:358
msgctxt "extended_tip|endpage"
-msgid "Specifies whether comments in your document are printed."
-msgstr "Bepaal of die opmerkings in u dokument gedruk moet word."
+msgid "Print comments on a new page after the current page."
+msgstr ""
#. oBR83
#: sw/uiconfig/swriter/ui/printoptionspage.ui:369
@@ -25361,11 +25361,11 @@ msgctxt "printoptionspage|inmargins"
msgid "In margins"
msgstr "In kantlyne"
-#. 7aAXX
+#. HTtDH
#: sw/uiconfig/swriter/ui/printoptionspage.ui:378
-msgctxt "extended_tip|inmargins"
-msgid "Specifies whether comments in your document are printed."
-msgstr "Bepaal of die opmerkings in u dokument gedruk moet word."
+msgctxt "printoptionspage|extended_tip|inmargins"
+msgid "Include the comments boxes on the margin of the page. The page contents is rendered to fit both contents and the comments boxes."
+msgstr ""
#. VeG6V
#: sw/uiconfig/swriter/ui/printoptionspage.ui:393
@@ -28233,11 +28233,11 @@ msgctxt "textgridpage|labelFT_RUBYSIZE"
msgid "Max. Ruby text size:"
msgstr "Maks. Ruby-Teksgrootte:"
-#. FxPwc
+#. hHaUA
#: sw/uiconfig/swriter/ui/textgridpage.ui:363
msgctxt "textgridpage|extended_tip|spinMF_RUBYSIZE"
-msgid "Enter the font size for the Ruby text."
-msgstr "Voer in die fontgrootte vir die Ruby-teks."
+msgid "Enter the maximum font size for the Ruby text."
+msgstr ""
#. FJFVs
#: sw/uiconfig/swriter/ui/textgridpage.ui:377
@@ -29385,11 +29385,11 @@ msgctxt "tocindexpage|casesens"
msgid "Case sensitive"
msgstr "Kassensitief"
-#. rAwSj
+#. sNHCm
#: sw/uiconfig/swriter/ui/tocindexpage.ui:1003
msgctxt "tocindexpage|extended_tip|casesens"
-msgid "Distinguishes between uppercase and lowercase letters in identical index entries. For Asian languages special handling applies."
-msgstr "Maak onderskeid tussen hoofletters en kleinletters in identiese indeks inskrywings. Vir Asiatiese tale word spesiale hantering toegepas."
+msgid "Distinguishes between uppercase and lowercase letters in otherwise identical index entries. For Asian languages special handling applies."
+msgstr ""
#. e35vc
#: sw/uiconfig/swriter/ui/tocindexpage.ui:1014
diff --git a/source/am/cui/messages.po b/source/am/cui/messages.po
index 32aba7453a8..00f4372276b 100644
--- a/source/am/cui/messages.po
+++ b/source/am/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2022-06-10 13:57+0200\n"
+"POT-Creation-Date: 2022-06-15 22:27+0200\n"
"PO-Revision-Date: 2022-06-06 17:37+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: Amharic <https://translations.documentfoundation.org/projects/libo_ui-master/cuimessages/am/>\n"
@@ -3126,10 +3126,10 @@ msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Need custom contents for metadata properties? File ▸ Properties ▸ Custom Properties tab lets you create what you want."
msgstr ""
-#. 9TnEA
+#. beSc7
#: cui/inc/tipoftheday.hrc:208
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Want to see, but not print, an object in Draw? Draw it on a layer for which the “Printable” flag is not set (right click on the tab and “Modify Layer”)."
+msgid "Want to see, but not print, an object in Draw? Draw it on a layer for which the “Printable” flag is not set (right-click the layer’s tab and choose “Modify Layer”)."
msgstr ""
#. CGQaY
@@ -4920,25 +4920,25 @@ msgid "[M]: Replace while modifying existing text"
msgstr "[M]: የ ነበረውን ጽሁፍ በሚያሻሽሉ ጊዜ መቀየሪያ"
#. FtXg9
-#: cui/uiconfig/ui/applyautofmtpage.ui:90
+#: cui/uiconfig/ui/applyautofmtpage.ui:93
msgctxt "applyautofmtpage|label2"
msgid "[T]: AutoCorrect while typing"
msgstr "[T]: በራሱ አራሚ በሚጽፉ ጊዜ"
#. NujUD
-#: cui/uiconfig/ui/applyautofmtpage.ui:136
+#: cui/uiconfig/ui/applyautofmtpage.ui:142
msgctxt "applyautofmtpage|m"
msgid "[M]"
msgstr "[M]"
#. qanx6
-#: cui/uiconfig/ui/applyautofmtpage.ui:158
+#: cui/uiconfig/ui/applyautofmtpage.ui:164
msgctxt "applyautofmtpage|t"
msgid "[T]"
msgstr "[T]"
#. 2tG6L
-#: cui/uiconfig/ui/applyautofmtpage.ui:205
+#: cui/uiconfig/ui/applyautofmtpage.ui:211
msgctxt "applyautofmtpage|extended_tip|ApplyAutoFmtPage"
msgid "Select the options for automatically correcting errors as you type, and then click OK."
msgstr "ይምረጡ ከ ምርጫዎች ውስጥ ለ ራሱ በራሱ ስህተት እንዲያርም እርስዎ በሚጽፉ ጊዜ እና ከዛ ይጫኑ እሺ:"
@@ -8295,11 +8295,11 @@ msgctxt "dimensionlinestabpage|TSB_PARALLEL"
msgid "_Parallel to line"
msgstr "ከ መስመሩ _አጓዳኝ"
-#. gZdFr
+#. CCTEb
#: cui/uiconfig/ui/dimensionlinestabpage.ui:440
msgctxt "dimensionlinestabpage|extended_tip|TSB_PARALLEL"
-msgid "Displays the text parallel to or at 90 degrees to the dimension line."
-msgstr "ጽሁፍ ማሳያ በ አጓዳኝ ወደ ወይንም በ 90 ዲግሪዎች በ አቅጣጫ መስመር ውስጥ"
+msgid "If enabled, displays the text parallel to the dimension line. If disabled, the text is shown at 90 degrees to the dimension line."
+msgstr ""
#. QNscD
#: cui/uiconfig/ui/dimensionlinestabpage.ui:452
@@ -8307,11 +8307,11 @@ msgctxt "dimensionlinestabpage|TSB_SHOW_UNIT"
msgid "Show _measurement units"
msgstr "ማሳያ _የመለኪያ ክፍሎች"
-#. cJRA9
+#. KQGtM
#: cui/uiconfig/ui/dimensionlinestabpage.ui:461
msgctxt "dimensionlinestabpage|extended_tip|TSB_SHOW_UNIT"
-msgid "Shows or hides the dimension measurement units. You can also select a measurement unit you want to display from the list."
-msgstr "የ አቅጣጫ መለኪያ ክፍል ማሳያ ወይንም መደበቂያ: እርስዎ መምረጥ ይችላሉ የ መለኪያ ክፍል ማሳየት የሚፈልጉትን ከ ዝርዝር ውስጥ:"
+msgid "Shows or hides the dimension measurement unit. You can select a measurement unit you want to display from the list."
+msgstr ""
#. EEaqi
#: cui/uiconfig/ui/dimensionlinestabpage.ui:479
@@ -10318,11 +10318,11 @@ msgctxt "hangulhanjaoptdialog|extended_tip|delete"
msgid "Deletes the selected user-defined dictionary."
msgstr "የተመረጠውን በተጠቃሚ-የሚገለጽ መዝገበ ቃላት ማጥፊያ"
-#. v7Bkk
+#. eG9Qx
#: cui/uiconfig/ui/hangulhanjaoptdialog.ui:231
msgctxt "hangulhanjaoptdialog|extended_tip|dicts"
-msgid "Lists all user-defined dictionaries. Select the check box next to the dictionary that you want to use. Clear the check box next to the dictionary that you do not want to use."
-msgstr "ሁሉንም በ ተጠቃሚ-የተገለጹ መዝገበ ቃላቶች ዝርዝር: ከ መዝገበ ቃላት አጠገብ ያለውን ምልክት ማድረጊያ ይምረጡ እርስዎ መጠቀም የሚፈልጉትን: ከ መዝገበ ቃላት አጠገብ ያለውን ምልክት ማድረጊያ እርስዎ ያጽዱ መጠቀም የማይፈልጉትን:"
+msgid "Lists all user-defined dictionaries. Select the check box next to the dictionaries that you want to use. Clear the check box next to the dictionaries that you do not want to use."
+msgstr ""
#. DmfuX
#: cui/uiconfig/ui/hangulhanjaoptdialog.ui:248
@@ -10703,19 +10703,19 @@ msgid "Opens the Assign Macro dialog, in which you can give events such as \"mou
msgstr ""
#. TXrCH
-#: cui/uiconfig/ui/hyperlinkdocpage.ui:399
+#: cui/uiconfig/ui/hyperlinkdocpage.ui:391
msgctxt "hyperlinkdocpage|extended_tip|frame"
msgid "Enter the name of the frame that you want the linked file to open in, or select a predefined frame from the list. If you leave this box blank, the linked file opens in the current browser window."
msgstr "የ ክፈፍ ስም ያስገቡ እርስዎ እንዲገናኝ የሚፈልጉትን ፋይል ለ መክፈቻ ውስጥ: ወይንም ይምረጡ በቅድሚያ የ ተገለጸ ክፈፍ ከ ዝርዝር ውስጥ: እርስዎ ሳጥኑን ባዶ ከተዉት: የ ተገናኘው ፋይል ይከፈታል በ አሁኑ መቃኛ መስኮት ውስጥ:"
#. frjow
-#: cui/uiconfig/ui/hyperlinkdocpage.ui:420
+#: cui/uiconfig/ui/hyperlinkdocpage.ui:412
msgctxt "hyperlinkdocpage|label1"
msgid "Further Settings"
msgstr "በበለጠ ማሰናጃዎች"
#. 789Vi
-#: cui/uiconfig/ui/hyperlinkdocpage.ui:435
+#: cui/uiconfig/ui/hyperlinkdocpage.ui:427
msgctxt "hyperlinkdocpage|extended_tip|HyperlinkDocPage"
msgid "Hyperlinks to any document or targets in documents can be edited using the Document tab from the Hyperlink dialog."
msgstr ""
@@ -10859,19 +10859,19 @@ msgid "Opens the Assign Macro dialog, in which you can give events such as \"mou
msgstr ""
#. C5Hqs
-#: cui/uiconfig/ui/hyperlinkinternetpage.ui:409
+#: cui/uiconfig/ui/hyperlinkinternetpage.ui:401
msgctxt "hyperlinkinternetpage|extended_tip|frame"
msgid "Enter the name of the frame that you want the linked file to open in, or select a predefined frame from the list. If you leave this box blank, the linked file opens in the current browser window."
msgstr "የ ክፈፍ ስም ያስገቡ እርስዎ እንዲገናኝ የሚፈልጉትን ፋይል ለ መክፈቻ ውስጥ: ወይንም ይምረጡ በቅድሚያ የ ተገለጸ ክፈፍ ከ ዝርዝር ውስጥ: እርስዎ ሳጥኑን ባዶ ከተዉት: የ ተገናኘው ፋይል ይከፈታል በ አሁኑ መቃኛ መስኮት ውስጥ:"
#. UKQMX
-#: cui/uiconfig/ui/hyperlinkinternetpage.ui:430
+#: cui/uiconfig/ui/hyperlinkinternetpage.ui:422
msgctxt "hyperlinkinternetpage|label1"
msgid "Further Settings"
msgstr "በበለጠ ማሰናጃዎች"
#. 8UdTe
-#: cui/uiconfig/ui/hyperlinkinternetpage.ui:445
+#: cui/uiconfig/ui/hyperlinkinternetpage.ui:437
msgctxt "hyperlinkinternetpage|extended_tip|HyperlinkInternetPage"
msgid "Use the Internet page of the Hyperlink dialog to edit hyperlinks with WWW or FTP addresses."
msgstr ""
@@ -10973,19 +10973,19 @@ msgid "Opens the Assign Macro dialog, in which you can give events such as \"mou
msgstr ""
#. CwHdi
-#: cui/uiconfig/ui/hyperlinkmailpage.ui:324
+#: cui/uiconfig/ui/hyperlinkmailpage.ui:316
msgctxt "hyperlinkmailpage|extended_tip|frame"
msgid "Enter the name of the frame that you want the linked file to open in, or select a predefined frame from the list. If you leave this box blank, the linked file opens in the current browser window."
msgstr "የ ክፈፍ ስም ያስገቡ እርስዎ እንዲገናኝ የሚፈልጉትን ፋይል ለ መክፈቻ ውስጥ: ወይንም ይምረጡ በቅድሚያ የ ተገለጸ ክፈፍ ከ ዝርዝር ውስጥ: እርስዎ ሳጥኑን ባዶ ከተዉት: የ ተገናኘው ፋይል ይከፈታል በ አሁኑ መቃኛ መስኮት ውስጥ:"
#. BmHDh
-#: cui/uiconfig/ui/hyperlinkmailpage.ui:345
+#: cui/uiconfig/ui/hyperlinkmailpage.ui:337
msgctxt "hyperlinkmailpage|label1"
msgid "Further Settings"
msgstr "በበለጠ ማሰናጃዎች"
#. SvyDu
-#: cui/uiconfig/ui/hyperlinkmailpage.ui:360
+#: cui/uiconfig/ui/hyperlinkmailpage.ui:352
msgctxt "hyperlinkmailpage|extended_tip|HyperlinkMailPage"
msgid "On the Mail page in the Hyperlink dialog you can edit hyperlinks for email addresses."
msgstr ""
@@ -11147,19 +11147,19 @@ msgid "Opens the Assign Macro dialog, in which you can give events such as \"mou
msgstr ""
#. rXaNm
-#: cui/uiconfig/ui/hyperlinknewdocpage.ui:408
+#: cui/uiconfig/ui/hyperlinknewdocpage.ui:400
msgctxt "hyperlinknewdocpage|extended_tip|frame"
msgid "Enter the name of the frame that you want the linked file to open in, or select a predefined frame from the list. If you leave this box blank, the linked file opens in the current browser window."
msgstr "የ ክፈፍ ስም ያስገቡ እርስዎ እንዲገናኝ የሚፈልጉትን ፋይል ለ መክፈቻ ውስጥ: ወይንም ይምረጡ በቅድሚያ የ ተገለጸ ክፈፍ ከ ዝርዝር ውስጥ: እርስዎ ሳጥኑን ባዶ ከተዉት: የ ተገናኘው ፋይል ይከፈታል በ አሁኑ መቃኛ መስኮት ውስጥ:"
#. MS2Cn
-#: cui/uiconfig/ui/hyperlinknewdocpage.ui:429
+#: cui/uiconfig/ui/hyperlinknewdocpage.ui:421
msgctxt "hyperlinknewdocpage|label1"
msgid "Further Settings"
msgstr "በበለጠ ማሰናጃዎች"
#. ztAbs
-#: cui/uiconfig/ui/hyperlinknewdocpage.ui:444
+#: cui/uiconfig/ui/hyperlinknewdocpage.ui:436
msgctxt "hyperlinknewdocpage|extended_tip|HyperlinkNewDocPage"
msgid "Use the New Document tab from the Hyperlink dialog to set up a hyperlink to a new document and create the new document simultaneously."
msgstr ""
@@ -11924,10 +11924,10 @@ msgctxt "langtoolconfigpage|base"
msgid "Base URL:"
msgstr ""
-#. 9to2D
+#. z58D6
#: cui/uiconfig/ui/langtoolconfigpage.ui:111
msgctxt "langtoolconfigpage|usernamelbl"
-msgid "User name:"
+msgid "Username:"
msgstr ""
#. B8kMr
@@ -11936,32 +11936,32 @@ msgctxt "langtoolconfigpage|apikeylbl"
msgid "API key:"
msgstr ""
-#. AoT7Z
+#. LBMkb
#: cui/uiconfig/ui/langtoolconfigpage.ui:159
msgctxt "langtoolconfigpage|urldesc"
-msgid "Please use the base URL e.g. without \"/check\" at the end."
+msgid "Please use the base URL, i.e., without “/check”, at the end."
msgstr ""
-#. EDETM
-#: cui/uiconfig/ui/langtoolconfigpage.ui:171
+#. 77oav
+#: cui/uiconfig/ui/langtoolconfigpage.ui:174
msgctxt "langtoolconfigpage|usernamedesc"
-msgid "Your LanguageTool account's username for premium usage."
+msgid "Your LanguageTool account’s username for premium usage."
msgstr ""
-#. aDGJf
-#: cui/uiconfig/ui/langtoolconfigpage.ui:183
+#. tGuAh
+#: cui/uiconfig/ui/langtoolconfigpage.ui:189
msgctxt "langtoolconfigpage|apikeydesc"
-msgid "Your LanguageTool account's api key for premium usage."
+msgid "Your LanguageTool account’s API key for premium usage."
msgstr ""
#. Dn8bb
-#: cui/uiconfig/ui/langtoolconfigpage.ui:206
+#: cui/uiconfig/ui/langtoolconfigpage.ui:215
msgctxt "langtoolconfigpage|apisettingsheader"
msgid "API Settings"
msgstr ""
#. Ntss5
-#: cui/uiconfig/ui/langtoolconfigpage.ui:225
+#: cui/uiconfig/ui/langtoolconfigpage.ui:234
msgctxt "langtoolconfigpage|langtoolsettings"
msgid "LanguageTool API Options"
msgstr ""
@@ -14479,73 +14479,73 @@ msgstr "[L]: እቃውን መጫኛ እና መቀየሪያ"
#. PiDB7
#. The [S] here is repeated as the column title for the "Save" column of this options page
-#: cui/uiconfig/ui/optfltrembedpage.ui:163
+#: cui/uiconfig/ui/optfltrembedpage.ui:166
msgctxt "optfltrembedpage|label3"
msgid "[S]: Convert and save the object"
msgstr "[S]: እቃውን መቀየሪያ እና ማስቀመጫ"
#. f2hGQ
-#: cui/uiconfig/ui/optfltrembedpage.ui:185
+#: cui/uiconfig/ui/optfltrembedpage.ui:191
msgctxt "optfltrembedpage|label1"
msgid "Embedded Objects"
msgstr "የ ተጣበቁ እቃዎች"
#. nvE89
-#: cui/uiconfig/ui/optfltrembedpage.ui:215
+#: cui/uiconfig/ui/optfltrembedpage.ui:221
msgctxt "optfltrembedpage|label5"
msgid "Export as:"
msgstr "መላኪያ እንደ:"
#. FEeH6
-#: cui/uiconfig/ui/optfltrembedpage.ui:230
+#: cui/uiconfig/ui/optfltrembedpage.ui:236
msgctxt "optfltrembedpage|highlighting"
msgid "Highlighting"
msgstr "ማድመቂያ"
#. qBuyX
-#: cui/uiconfig/ui/optfltrembedpage.ui:239
+#: cui/uiconfig/ui/optfltrembedpage.ui:245
msgctxt "extended_tip|highlighting"
msgid "Microsoft Office has two character attributes similar to Writer character background. Select the appropriate attribute (highlighting or shading) which you would like to use during export to Microsoft Office file formats."
msgstr ""
#. Dnrx7
-#: cui/uiconfig/ui/optfltrembedpage.ui:251
+#: cui/uiconfig/ui/optfltrembedpage.ui:257
msgctxt "optfltrembedpage|shading"
msgid "Shading"
msgstr "ጥላ"
#. 3PFE2
-#: cui/uiconfig/ui/optfltrembedpage.ui:260
+#: cui/uiconfig/ui/optfltrembedpage.ui:266
msgctxt "extended_tip|shading"
msgid "Microsoft Office has two character attributes similar to Writer character background. Select the appropriate attribute (highlighting or shading) which you would like to use during export to Microsoft Office file formats."
msgstr ""
#. gKwdG
-#: cui/uiconfig/ui/optfltrembedpage.ui:283
+#: cui/uiconfig/ui/optfltrembedpage.ui:289
msgctxt "optfltrembedpage|label4"
msgid "Character Highlighting"
msgstr "ባህሪ ማድመቂያ"
#. tyACF
-#: cui/uiconfig/ui/optfltrembedpage.ui:310
+#: cui/uiconfig/ui/optfltrembedpage.ui:316
msgctxt "optfltrembedpage|mso_lockfile"
msgid "Create MSO lock file"
msgstr "የ MSO ፋይል መቆለፊያ መፍጠሪያ"
#. qc4GD
-#: cui/uiconfig/ui/optfltrembedpage.ui:319
+#: cui/uiconfig/ui/optfltrembedpage.ui:325
msgctxt "extended_tip|mso_lockfile"
msgid "Mark this checkbox to generate a Microsoft Office lock file in addition to this office suite's own lock file."
msgstr ""
#. Sg5Bw
-#: cui/uiconfig/ui/optfltrembedpage.ui:335
+#: cui/uiconfig/ui/optfltrembedpage.ui:341
msgctxt "optfltrembedpage|label5"
msgid "Lock Files"
msgstr ""
#. EUBnP
-#: cui/uiconfig/ui/optfltrembedpage.ui:349
+#: cui/uiconfig/ui/optfltrembedpage.ui:355
msgctxt "extended_tip|OptFilterPage"
msgid "Specifies the settings for importing and exporting Microsoft Office and other documents."
msgstr ""
@@ -14814,11 +14814,11 @@ msgctxt "optgeneralpage|exthelp"
msgid "_Extended tips"
msgstr "የ _ተስፋፉ ምክሮች"
-#. ypuz2
+#. TyqBV
#: cui/uiconfig/ui/optgeneralpage.ui:42
msgctxt "extended_tip | exthelp"
-msgid "Displays a help text when you rest the cursor on an icon, a menu command, or a control on a dialog."
-msgstr "መጠቆሚያውን በ ምልክት ላይ ሲያደርጉ የ እርዳታ ጽሁፍ: ዝርዝር ትእዛዝ ወይንም የ ንግግር መቆጣጠሪያ ማሳያ"
+msgid "Displays a help text when you rest the mouse pointer on an icon, a menu command, or a control on a dialog."
+msgstr ""
#. Cbeuc
#: cui/uiconfig/ui/optgeneralpage.ui:53
@@ -16514,7 +16514,7 @@ msgid "Passwords are protected by a master password. You will be asked to enter
msgstr "የ መግቢያ ቃሎች በዋናው የ መግቢያ ቃል የተጠበቁ ናቸው: በ ክፍለ ጊዜ ውስጥ ቢያንስ አንድ ጊዜ እንዲያስገቡ ይጠየቃሉ: የ %PRODUCTNAME መግቢያ ቃሉን ከሚጠበቁት የ መግቢያ ቃሎች ፈልጎ ያገኛል"
#. 7gzb7
-#: cui/uiconfig/ui/optsecuritypage.ui:303
+#: cui/uiconfig/ui/optsecuritypage.ui:306
msgctxt "optsecuritypage|nopasswordsave"
msgid ""
"Disabling the function to persistently store passwords deletes the list of passwords stored and resets the master password.\n"
@@ -16526,61 +16526,61 @@ msgstr ""
"የ መግቢያ ቃሉን ማጥፋት ይፈልጋሉ እና ዋናው የ መግቢያ ቃል እንደነበር መመለስ ይፈልጋሉ?"
#. hwg3F
-#: cui/uiconfig/ui/optsecuritypage.ui:341
+#: cui/uiconfig/ui/optsecuritypage.ui:344
msgctxt "optsecuritypage|connections"
msgid "Connect_ions..."
msgstr "ግንኙነ_ቶች..."
#. GLEjB
-#: cui/uiconfig/ui/optsecuritypage.ui:349
+#: cui/uiconfig/ui/optsecuritypage.ui:352
msgctxt "extended_tip|connections"
msgid "Asks for the master password. If master password is correct, shows the Stored Web Connection Information dialog."
msgstr "ዋናውን የ መግቢያ ቃል ይጠይቃል: የ መግቢያ ቃሉ ትክክለኛ ከሆነ: የ ተጠራቀመውን የ ዌብ ግንኙነት መረጃ ንግግር ያስያል "
#. SWrMn
-#: cui/uiconfig/ui/optsecuritypage.ui:371
+#: cui/uiconfig/ui/optsecuritypage.ui:374
msgctxt "optsecuritypage|masterpassword"
msgid "_Master Password..."
msgstr "_ዋናው የ መግቢያ ቃል..."
#. w3TQo
-#: cui/uiconfig/ui/optsecuritypage.ui:379
+#: cui/uiconfig/ui/optsecuritypage.ui:382
msgctxt "extended_tip|masterpassword"
msgid "Opens the Enter Master Password dialog."
msgstr "ዋናውን የ መግቢያ ቃል ንግግር መክፈቻ"
#. UtNEn
-#: cui/uiconfig/ui/optsecuritypage.ui:406
+#: cui/uiconfig/ui/optsecuritypage.ui:409
msgctxt "optsecuritypage|label2"
msgid "Passwords for Web Connections"
msgstr "የ መግቢያ ቃሎች ወደ ዌብ መገናኛዎች"
#. EYFvA
-#: cui/uiconfig/ui/optsecuritypage.ui:439
+#: cui/uiconfig/ui/optsecuritypage.ui:442
msgctxt "optsecuritypage|label4"
msgid "Adjust security related options and define warnings for hidden information in documents. "
msgstr "ደህንነትን የ ተዛመዱ ምርጫዎች ማስተካከያ እና ማስጠንቀቂያዎችን መግለጫ ለ ተደበቁ መረጃዎች በ ሰነዶች ውስጥ "
#. CBnzU
-#: cui/uiconfig/ui/optsecuritypage.ui:452
+#: cui/uiconfig/ui/optsecuritypage.ui:455
msgctxt "optsecuritypage|options"
msgid "O_ptions..."
msgstr "ም_ርጫዎች..."
#. pepKZ
-#: cui/uiconfig/ui/optsecuritypage.ui:460
+#: cui/uiconfig/ui/optsecuritypage.ui:463
msgctxt "extended_tip|options"
msgid "Opens the \"Security Options and Warnings\" dialog."
msgstr "መክፈቻ የ \"ደህንነት ምርጫዎች እና ማስጠንቀቂያዎች\" ንግግር"
#. GqVkJ
-#: cui/uiconfig/ui/optsecuritypage.ui:475
+#: cui/uiconfig/ui/optsecuritypage.ui:478
msgctxt "optsecuritypage|label1"
msgid "Security Options and Warnings"
msgstr "የ ደህንነት ምርጫዎች እና ማስጠንቀቂያዎች"
#. rwtuC
-#: cui/uiconfig/ui/optsecuritypage.ui:489
+#: cui/uiconfig/ui/optsecuritypage.ui:492
msgctxt "extended_tip|OptSecurityPage"
msgid "Defines the security options for saving documents, for web connections, and for opening documents that contain macros."
msgstr "የ ደህንነት ምርጫ መግለጫ ሰነዶች ለ ማስቀመጫ: ለ ዌብ ግንኙነት እና ሰነዶችን ለ መክፈቻ ማክሮስ የያዙ"
@@ -20084,11 +20084,11 @@ msgctxt "specialcharacters|srchft"
msgid "Search:"
msgstr "መፈለጊያ:"
-#. eCjVg
+#. zPCZ7
#: cui/uiconfig/ui/specialcharacters.ui:166
msgctxt "specialcharacters|extended_tip|subsetlb"
-msgid "Select a Unicode category for the current font."
-msgstr "ይምረጡ የ Unicode ምድብ ለ አሁኑ ፊደል "
+msgid "Select a Unicode block for the current font."
+msgstr ""
#. JPWW8
#: cui/uiconfig/ui/specialcharacters.ui:190
@@ -20121,19 +20121,19 @@ msgid "Maximum Limit: 16 Characters"
msgstr "ከፍተኛው መጠን: 16 ባህሪዎች"
#. ti8sG
-#: cui/uiconfig/ui/specialcharacters.ui:371
+#: cui/uiconfig/ui/specialcharacters.ui:374
msgctxt "specialcharacters|symboltext1"
msgid "Recent Characters:"
msgstr "የ ቅርብ ጊዜ ባህሪዎ:"
#. LQZ7q
-#: cui/uiconfig/ui/specialcharacters.ui:605
+#: cui/uiconfig/ui/specialcharacters.ui:608
msgctxt "specialcharacters|favbtn|symboltext2"
msgid "Favorite Characters:"
msgstr "የምወዳቸው ባህሪዎች:"
#. DhG6L
-#: cui/uiconfig/ui/specialcharacters.ui:903
+#: cui/uiconfig/ui/specialcharacters.ui:906
msgctxt "specialcharacters|extended_tip|SpecialCharactersDialog"
msgid "Allows a user to insert characters from the range of symbols found in the installed fonts."
msgstr ""
diff --git a/source/am/filter/messages.po b/source/am/filter/messages.po
index 87353895aa4..46f09bbf538 100644
--- a/source/am/filter/messages.po
+++ b/source/am/filter/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2022-01-31 18:19+0100\n"
+"POT-Creation-Date: 2022-06-15 22:28+0200\n"
"PO-Revision-Date: 2022-05-25 10:44+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: Amharic <https://translations.documentfoundation.org/projects/libo_ui-master/filtermessages/am/>\n"
@@ -1512,10 +1512,10 @@ msgctxt "pdfviewpage|fitvis"
msgid "Fit _visible"
msgstr "በ _ሚታየው ልክ"
-#. FD8Pp
+#. EBBzj
#: filter/uiconfig/ui/pdfviewpage.ui:254
msgctxt "pdfviewpage|extended_tip|fitvis"
-msgid "Select to generate a PDF file that shows the text and graphics on the page zoomed to fit the width of the reader's window."
+msgid "Select to generate a PDF file that shows the text and graphics on the page zoomed to fit the reader's window."
msgstr ""
#. NGpWy
@@ -1914,10 +1914,10 @@ msgctxt "xmlfiltertabpagegeneral|extended_tip|filtername"
msgid "Enter the name that you want to display in the list box of the XML Filter Settings dialog."
msgstr "በ ዝርዝር ሳጥን ውስጥ እንዲታይ የሚፈልጉትን ስም ያስገቡ በ XML ማጣሪያ ማሰናጃ ንግግር ውስጥ:"
-#. Tbmcc
+#. D5aZP
#: filter/uiconfig/ui/xmlfiltertabpagegeneral.ui:119
msgctxt "xmlfiltertabpagegeneral|extended_tip|extension"
-msgid "Enter the file extension to use when you open a file without specifying a filter. The file extension to used to determine which filter to use."
+msgid "Enter the file extension to use when you open a file without specifying a filter. The file extension is used to determine which filter to use."
msgstr ""
#. fZvBA
diff --git a/source/am/helpcontent2/source/text/scalc/01.po b/source/am/helpcontent2/source/text/scalc/01.po
index a29f2236d0f..66a69adf80d 100644
--- a/source/am/helpcontent2/source/text/scalc/01.po
+++ b/source/am/helpcontent2/source/text/scalc/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2022-06-09 11:50+0200\n"
+"POT-Creation-Date: 2022-06-15 22:28+0200\n"
"PO-Revision-Date: 2021-10-31 12:36+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: Amharic <https://translations.documentfoundation.org/projects/libo_help-master/textscalc01/am/>\n"
@@ -69028,13 +69028,13 @@ msgctxt ""
msgid "<emph>Group</emph>: sets the minimum (maximum) value based on the lower and higher values found in the group of sparklines."
msgstr ""
-#. E6s55
+#. NNez9
#: sparklines.xhp
msgctxt ""
"sparklines.xhp\n"
"par_id51654181442414\n"
"help.text"
-msgid "<emph>Custom:</emph> enter the minimum (maximum) value for the sparkline group."
+msgid "<emph>Custom</emph>: enter the minimum (maximum) value for the sparkline group. Enter the minimum (maximum) values or use the spin buttons."
msgstr ""
#. CNBDD
diff --git a/source/am/helpcontent2/source/text/scalc/guide.po b/source/am/helpcontent2/source/text/scalc/guide.po
index 3cd3c40b8c3..c41c90f1464 100644
--- a/source/am/helpcontent2/source/text/scalc/guide.po
+++ b/source/am/helpcontent2/source/text/scalc/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2022-02-04 12:33+0100\n"
+"POT-Creation-Date: 2022-06-15 22:28+0200\n"
"PO-Revision-Date: 2020-04-16 16:16+0000\n"
"Last-Translator: serval2412 <serval2412@yahoo.fr>\n"
"Language-Team: Amharic <https://weblate.documentfoundation.org/projects/libo_help-master/textscalcguide/am/>\n"
@@ -2275,14 +2275,14 @@ msgctxt ""
msgid "Copy, delete, move, or format a selection of currently visible cells."
msgstr "ኮፒ: ማጥፊያ: ማንቀሳቀሻ ወይንም አሁን ለሚታዩት ክፍሎች አቀራረብ ምርጫ"
-#. FEuz7
+#. VccAs
#: cellcopy.xhp
msgctxt ""
"cellcopy.xhp\n"
"par_id3154371\n"
"help.text"
-msgid "All cells of the selection, including the hidden cells, are copied, deleted, moved, or formatted."
-msgstr "የተመረጡት ክፍሎች: የ ተደበቁ ክፍሎችን ጨምሮ ኮፒ ይደረጋሉ: ይጠፋሉ: ይንቀሳቀሳሉ: ይቀርባሉ"
+msgid "By default, all cells of the selection, including the hidden cells, are copied, deleted, moved, or formatted. Restrict the selection to visible rows choosing <menuitem>Edit - Select - Select Visible Rows Only</menuitem> or to visible columns choosing <menuitem>Edit - Select - Select Visible Columns Only</menuitem>."
+msgstr ""
#. rBtUY
#: cellreference_dragdrop.xhp
diff --git a/source/am/helpcontent2/source/text/shared/00.po b/source/am/helpcontent2/source/text/shared/00.po
index 61c017fe1cd..6869bceec95 100644
--- a/source/am/helpcontent2/source/text/shared/00.po
+++ b/source/am/helpcontent2/source/text/shared/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2022-06-09 11:50+0200\n"
+"POT-Creation-Date: 2022-06-15 22:28+0200\n"
"PO-Revision-Date: 2018-11-17 21:27+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -7963,13 +7963,22 @@ msgctxt ""
msgid "OLE Object"
msgstr "የ OLE እቃ"
-#. UFnGc
+#. 36hBn
+#: 00000404.xhp
+msgctxt ""
+"00000404.xhp\n"
+"par_id761566316165430\n"
+"help.text"
+msgid "Choose <menuitem>Insert - OLE Object - QR and Barcode</menuitem>."
+msgstr ""
+
+#. F9Wus
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
"par_id3150393\n"
"help.text"
-msgid "Choose <menuitem>Insert - OLE Object - Formula Object</menuitem>."
+msgid "<variable id=\"insert_formula\">Choose <menuitem>Insert - OLE Object - Formula Object</menuitem>.</variable>"
msgstr ""
#. kQdhV
@@ -15019,13 +15028,13 @@ msgctxt ""
msgid "<variable id=\"linkae\">Choose <menuitem>Edit - Links to External Files - Modify...</menuitem> (DDE links only).</variable>"
msgstr ""
-#. qo8gR
+#. bgzTi
#: edit_menu.xhp
msgctxt ""
"edit_menu.xhp\n"
"par_id3148927\n"
"help.text"
-msgid "Select a frame, then choose <menuitem>Edit - Object - Properties</menuitem>."
+msgid "Select a frame, then choose <menuitem>Edit - OLE Object - Properties</menuitem>."
msgstr ""
#. cDcix
@@ -15037,31 +15046,31 @@ msgctxt ""
msgid "Open context menu of selected frame, choose <menuitem>Properties</menuitem>."
msgstr ""
-#. jmnro
+#. 5TkgL
#: edit_menu.xhp
msgctxt ""
"edit_menu.xhp\n"
"par_id3149259\n"
"help.text"
-msgid "<variable id=\"edit1\">Choose <menuitem>Edit - Object</menuitem>.</variable>"
+msgid "<variable id=\"edit1\">Choose <menuitem>Edit - OLE Object</menuitem>.</variable>"
msgstr ""
-#. XAqNW
+#. ApejL
#: edit_menu.xhp
msgctxt ""
"edit_menu.xhp\n"
"par_id3154966\n"
"help.text"
-msgid "<variable id=\"edit2\">Choose <menuitem>Edit - Object - Edit</menuitem>, also in the context menu of selected object.</variable>"
+msgid "<variable id=\"edit2\">Choose <menuitem>Edit - OLE Object - Edit</menuitem>, also in the context menu of selected object.</variable>"
msgstr ""
-#. sA6YF
+#. 9Gp6Z
#: edit_menu.xhp
msgctxt ""
"edit_menu.xhp\n"
"par_id3149565\n"
"help.text"
-msgid "<variable id=\"edit3\">Choose <menuitem>Edit - Object - Open</menuitem>.</variable>"
+msgid "<variable id=\"edit3\">Choose <menuitem>Edit - OLE Object - Open</menuitem>.</variable>"
msgstr ""
#. kQifg
diff --git a/source/am/helpcontent2/source/text/shared/01.po b/source/am/helpcontent2/source/text/shared/01.po
index 2f8cff7d501..9e65ce45f53 100644
--- a/source/am/helpcontent2/source/text/shared/01.po
+++ b/source/am/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2022-06-09 11:50+0200\n"
+"POT-Creation-Date: 2022-06-15 22:28+0200\n"
"PO-Revision-Date: 2022-05-25 10:44+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: Amharic <https://translations.documentfoundation.org/projects/libo_help-master/textshared01/am/>\n"
@@ -11050,41 +11050,41 @@ msgctxt ""
msgid "<ahelp hid=\"sfx/ui/linkeditdialog/category\">Lists the section or object that the link refers to in the source file. If you want, you can enter a new section or object here.</ahelp>"
msgstr ""
-#. nWEMa
+#. 4FLU6
#: 02200000.xhp
msgctxt ""
"02200000.xhp\n"
"tit\n"
"help.text"
-msgid "Edit Object"
-msgstr "እቃ ማረሚያ"
+msgid "OLE Object (Edit)"
+msgstr ""
-#. nBCA7
+#. VrRPX
#: 02200000.xhp
msgctxt ""
"02200000.xhp\n"
"hd_id3146959\n"
"help.text"
-msgid "<link href=\"text/shared/01/02200000.xhp\" name=\"Object\">Edit Object</link>"
-msgstr "<link href=\"text/shared/01/02200000.xhp\" name=\"Object\">እቃ ማረሚያ</link>"
+msgid "<link href=\"text/shared/01/02200000.xhp\" name=\"Object\">OLE Object</link>"
+msgstr ""
-#. 6bDqk
+#. QMGSE
#: 02200000.xhp
msgctxt ""
"02200000.xhp\n"
"par_id3154840\n"
"help.text"
-msgid "<variable id=\"object_text\"><ahelp hid=\".uno:ObjectMenue\">Lets you edit a selected object in your file that you inserted with the <item type=\"menuitem\">Insert - Object</item> command.</ahelp></variable>"
-msgstr "<variable id=\"object_text\"><ahelp hid=\".uno:ObjectMenue\">በ እርስዎ ፋይል ውስጥ በ መምረጥ ያስገቡትን እቃ ማረም ያስችሎታል በ <item type=\"menuitem\">ማስገቢያ - እቃ</item> ትእዛዝ</ahelp></variable>"
+msgid "<variable id=\"object_text\"><ahelp hid=\".uno:ObjectMenue\">Lets you edit a selected OLE object that you inserted from the <menuitem>Insert - OLE Object</menuitem> submenu.</ahelp></variable>"
+msgstr ""
-#. YDqFE
+#. NWE46
#: 02200000.xhp
msgctxt ""
"02200000.xhp\n"
"par_id3153551\n"
"help.text"
-msgid "<link href=\"text/shared/01/04150000.xhp\" name=\"Insert - Object\">Insert - Object</link>"
-msgstr "<link href=\"text/shared/01/04150000.xhp\" name=\"Insert - Object\">ማስገቢያ - እቃዎች</link>"
+msgid "<embedvar href=\"text/shared/01/04150000.xhp#oleobjecth1\"/>"
+msgstr ""
#. HB6iE
#: 02200000.xhp
@@ -11122,14 +11122,14 @@ msgctxt ""
msgid "<link href=\"text/shared/01/02200100.xhp\" name=\"Edit\">Edit</link>"
msgstr "<link href=\"text/shared/01/02200100.xhp\" name=\"Edit\">ማረሚያ</link>"
-#. MmR4v
+#. CP7mz
#: 02200100.xhp
msgctxt ""
"02200100.xhp\n"
"par_id3150008\n"
"help.text"
-msgid "<ahelp visibility=\"visible\" hid=\".\">Lets you edit a selected object in your file that you inserted with the <emph>Insert – Object</emph> command.</ahelp>"
-msgstr "<ahelp visibility=\"visible\" hid=\".\">በ እርስዎ ፋይል ውስጥ በ መምረጥ ያስገቡትን እቃ ማረም ያስችሎታል በ <emph>ማስገቢያ - እቃ </emph>ትእዛዝ</ahelp>"
+msgid "<ahelp visibility=\"visible\" hid=\".\">Lets you edit a selected OLE object that you inserted with the <menuitem>Insert – OLE Object</menuitem> command.</ahelp>"
+msgstr ""
#. PXv8N
#: 02200200.xhp
@@ -15469,13 +15469,13 @@ msgctxt ""
msgid "OLE Object (Insert Menu)"
msgstr ""
-#. hq7i8
+#. 9hJLy
#: 04150000.xhp
msgctxt ""
"04150000.xhp\n"
"hd_id3146873\n"
"help.text"
-msgid "<link href=\"text/shared/01/04150000.xhp\" name=\"Object\">OLE Object</link>"
+msgid "<variable id=\"oleobjecth1\"><link href=\"text/shared/01/04150000.xhp\" name=\"Object\">OLE Object</link></variable>"
msgstr ""
#. s2t34
diff --git a/source/am/helpcontent2/source/text/shared/guide.po b/source/am/helpcontent2/source/text/shared/guide.po
index e9a854e3115..507f0602590 100644
--- a/source/am/helpcontent2/source/text/shared/guide.po
+++ b/source/am/helpcontent2/source/text/shared/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2022-06-10 13:58+0200\n"
+"POT-Creation-Date: 2022-06-15 22:28+0200\n"
"PO-Revision-Date: 2018-12-09 17:46+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2626,13 +2626,13 @@ msgctxt ""
msgid "<bookmark_value>custom;classification levels</bookmark_value> <bookmark_value>classification levels;customizing</bookmark_value>"
msgstr ""
-#. 3wmPg
+#. NfubP
#: classification.xhp
msgctxt ""
"classification.xhp\n"
"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 <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><menuitem> - LibreOffice - Paths - Classification</menuitem> into a local folder and edit the contents."
+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 <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><menuitem> - %PRODUCTNAME - Paths - Classification</menuitem> into a local folder and edit the contents."
msgstr ""
#. Tcss6
@@ -11482,14 +11482,14 @@ msgctxt ""
msgid "To edit the OLE object, double-click on it."
msgstr "የ OLE እቃ ለማረም ሁለት ጊዜ-ይጫኑ በላዩ ላይ"
-#. FTF7g
+#. 8DbMH
#: dragdrop_table.xhp
msgctxt ""
"dragdrop_table.xhp\n"
"par_id3155389\n"
"help.text"
-msgid "Alternatively, select the object and choose <emph>Edit - Object - Edit</emph> or choose <emph>Edit</emph> from the context menu. You edit the object in its own frame within the text document, but you see the icons and menu commands needed for spreadsheets."
-msgstr "በ አማራጭ: ይምረጡ እቃ እና ይምረጡ <emph> ማረሚያ - እቃ - ማረሚያ </emph> ወይንም ይምረጡ <emph> ማረሚያ </emph> ከ አገባብ ዝርዝር ውስጥ: እርስዎ እቃውን ማረም ይችላሉ በራሱ ክፈፍ ውስጥ በ ጽሁፍ ሰነድ ውስጥ: ነገር ግን ለ እርስዎ ይህ ምልክት እና ዝርዝር ትእዛዝ ይታያል ለ ሰንጠረዥ የሚያስፈልግ"
+msgid "Alternatively, select the object and choose <menuitem>Edit - OLE Object - Edit</menuitem> or choose <menuitem>Edit</menuitem> from the context menu. You edit the object in its own frame within the text document, but you see the icons and menu commands needed for spreadsheets."
+msgstr ""
#. uFCGU
#: dragdrop_table.xhp
@@ -22660,15 +22660,6 @@ msgctxt ""
msgid "The QR and Barcode generation feature allows you to encode any text string or URL as a barcode or a QR code and insert it as a graphical object in a document for scanning."
msgstr ""
-#. N32UF
-#: qrcode.xhp
-msgctxt ""
-"qrcode.xhp\n"
-"par_id761566316165430\n"
-"help.text"
-msgid "Choose <menuitem>Insert - Object - QR and Barcode</menuitem>."
-msgstr ""
-
#. UCeXG
#: qrcode.xhp
msgctxt ""
diff --git a/source/am/helpcontent2/source/text/smath/guide.po b/source/am/helpcontent2/source/text/smath/guide.po
index 65a3498eb43..1f6981059ac 100644
--- a/source/am/helpcontent2/source/text/smath/guide.po
+++ b/source/am/helpcontent2/source/text/smath/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2022-01-31 18:20+0100\n"
+"POT-Creation-Date: 2022-06-15 22:28+0200\n"
"PO-Revision-Date: 2017-10-07 23:43+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -835,14 +835,14 @@ msgctxt ""
msgid "Select the formula"
msgstr "መቀመሪያ ይምረጡ"
-#. bN6uQ
+#. F2ipo
#: keyboard.xhp
msgctxt ""
"keyboard.xhp\n"
"par_id3150213\n"
"help.text"
-msgid "Choose the command <emph>Insert - Object - Formula</emph>."
-msgstr "ይምረጡ ትእዛዝ <emph> ማስገቢያ - እቃ - መቀመሪያ </emph>."
+msgid "Choose the command <menuitem>Insert - OLE Object - Formula Object</menuitem>."
+msgstr ""
#. aowxC
#: keyboard.xhp
@@ -853,14 +853,14 @@ msgctxt ""
msgid "Inserting a Formula using a Window"
msgstr "መስኮት በ መጠቀም መቀመሪያ ማስገቢያ"
-#. Tqx4F
+#. Jvobx
#: keyboard.xhp
msgctxt ""
"keyboard.xhp\n"
"par_id3149875\n"
"help.text"
-msgid "If you want to use the $[officename] Math interface to edit a formula, choose the command <emph>Insert - Object - Formula</emph> without any text selected."
-msgstr "እርስዎ መጠቀም ከ ፈለጉ የ $[officename] ሂሳብ ገጽታ መቀመሪያ ለማረም: ይምረጡ ይህን ትእዛዝ <emph> ማስገቢያ - እቃ - መቀመሪያ </emph> ምንም ጽሁፍ ሳይመረጥ"
+msgid "If you want to use the $[officename] Math interface to edit a formula, choose the command <menuitem>Insert - OLE Object - Formula Object</menuitem> without any text selected."
+msgstr ""
#. sEBBM
#: keyboard.xhp
@@ -943,14 +943,14 @@ msgctxt ""
msgid "You want to insert a summation formula like \"summation of s^k from k = 0 to n\" at the cursor in a Writer text document."
msgstr "እርስዎ መቀመሪያ ማስገቢያ መጨመር ይፈልጋሉ እንደ \"መጨመሪያ ለ s^k ከ k = 0 ለ n\" መጠቆሚያው ባለበት በ መጻፊያ ጽሁፍ ሰነድ ውስጥ"
-#. 5oKcr
+#. kEJWp
#: limits.xhp
msgctxt ""
"limits.xhp\n"
"par_id8811304\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Insert - Object - Formula</item>."
-msgstr "ይምረጡ <item type=\"menuitem\"> ማስገቢያ - እቃ - መቀመሪያ </item>."
+msgid "<embedvar href=\"text/shared/00/00000404.xhp#insert_formula\"/>"
+msgstr ""
#. qAFch
#: limits.xhp
@@ -1033,14 +1033,14 @@ msgctxt ""
msgid "In the same way, you can enter an Integral formula with limits. When you click an icon from the Elements pane, the assigned text command is inserted in the input window. If you know the text commands, you can enter the commands directly in the input window."
msgstr "በ ተመሳሳይ መንገድ: እርስዎ ማስገባት ይችላሉ ኢንትግራል መቀመሪያ በ መጠኖች ውስጥ: እርስዎ ሲጫኑ በ ምልክት ላይ ከ አካላቶች መስኮት ውስጥ: የ ተመደበው የ ጽሁፍ ትእዛዝ ይገባል ወደ ማስገቢያ መስኮት ውስጥ: እርስዎ የ ጽሁፉን ትእዛዝ የሚያውቁት ከሆነ: እርስዎ ማስገባት ይችላሉ ትእዛዞቹን በ ቀጥታ በ ማስገቢያ መስኮት ውስጥ"
-#. q8yAH
+#. 57GSa
#: limits.xhp
msgctxt ""
"limits.xhp\n"
"par_id5866267\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Insert - Object - Formula</item>."
-msgstr "ይምረጡ <item type=\"menuitem\"> ማስገቢያ - እቃ - መቀመሪያ </item>."
+msgid "<embedvar href=\"text/shared/00/00000404.xhp#insert_formula\"/>"
+msgstr ""
#. VAoyi
#: limits.xhp
diff --git a/source/am/helpcontent2/source/text/swriter/01.po b/source/am/helpcontent2/source/text/swriter/01.po
index 7e0d5b06891..7905fe41bbb 100644
--- a/source/am/helpcontent2/source/text/swriter/01.po
+++ b/source/am/helpcontent2/source/text/swriter/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2022-06-09 11:50+0200\n"
+"POT-Creation-Date: 2022-06-15 22:28+0200\n"
"PO-Revision-Date: 2018-12-09 17:43+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -18169,22 +18169,22 @@ msgctxt ""
msgid "<emph>Right paragraph border:</emph> the object is positioned considering the width of the indent space available to the right of the paragraph."
msgstr ""
-#. UWViJ
+#. QrQHe
#: 05060100.xhp
msgctxt ""
"05060100.xhp\n"
"par_id171629211714933\n"
"help.text"
-msgid "<emph>Left page border:</emph> the object is positioned considering the space available between the left page border and the left paragraph border."
+msgid "<menuitem>Left of page text area</menuitem>: the object is positioned in the region between the left edge of the page and the left margin plus any left page padding."
msgstr ""
-#. F9qZf
+#. DzD2e
#: 05060100.xhp
msgctxt ""
"05060100.xhp\n"
"par_id131629211715280\n"
"help.text"
-msgid "<emph>Right page border:</emph> the object is positioned considering the space available between the right page border and the right paragraph border."
+msgid "<menuitem>Right of page text area</menuitem>: the object is positioned in the region between the right edge of the page and the right margin plus any right page padding."
msgstr ""
#. norkq
diff --git a/source/am/helpcontent2/source/text/swriter/guide.po b/source/am/helpcontent2/source/text/swriter/guide.po
index d83e4c5e260..3041fe5d861 100644
--- a/source/am/helpcontent2/source/text/swriter/guide.po
+++ b/source/am/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2022-06-09 11:50+0200\n"
+"POT-Creation-Date: 2022-06-15 22:28+0200\n"
"PO-Revision-Date: 2018-12-09 17:44+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -43,13 +43,13 @@ msgctxt ""
msgid "<variable id=\"anchor_object\"><link href=\"text/swriter/guide/anchor_object.xhp\" name=\"Positioning Objects\">Positioning Objects</link></variable>"
msgstr "<variable id=\"anchor_object\"><link href=\"text/swriter/guide/anchor_object.xhp\" name=\"Positioning Objects\">እቃዎችን ቦታ መስጫ</link></variable>"
-#. MDGBe
+#. WBVDD
#: anchor_object.xhp
msgctxt ""
"anchor_object.xhp\n"
"par_id181634295881266\n"
"help.text"
-msgid "An object, such as an image or frame, is positioned within a document using anchors attached to other elements."
+msgid "An object, such as an image or frame, is positioned within a document using an anchor attached to another element."
msgstr ""
#. FAyRX
diff --git a/source/am/svx/messages.po b/source/am/svx/messages.po
index ea21001914e..dc9df1cae1b 100644
--- a/source/am/svx/messages.po
+++ b/source/am/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2022-06-09 11:50+0200\n"
+"POT-Creation-Date: 2022-06-15 22:28+0200\n"
"PO-Revision-Date: 2022-06-06 17:38+0000\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: Amharic <https://translations.documentfoundation.org/projects/libo_ui-master/svxmessages/am/>\n"
@@ -17070,13 +17070,13 @@ msgid "_Kern Character Pairs"
msgstr ""
#. 8SKCU
-#: svx/uiconfig/ui/fontworkgallerydialog.ui:18
+#: svx/uiconfig/ui/fontworkgallerydialog.ui:16
msgctxt "fontworkgallerydialog|FontworkGalleryDialog"
msgid "Fontwork Gallery"
msgstr "የ ፊደል ስራ አዳራሽ"
#. GB7pa
-#: svx/uiconfig/ui/fontworkgallerydialog.ui:101
+#: svx/uiconfig/ui/fontworkgallerydialog.ui:99
msgctxt "fontworkgallerydialog|label1"
msgid "Select a Fontwork style:"
msgstr "የ ፊደል ስራ ዘዴ ይምረጡ:"
diff --git a/source/am/sw/messages.po b/source/am/sw/messages.po
index 2893423456a..1ff38581dd9 100644
--- a/source/am/sw/messages.po
+++ b/source/am/sw/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2022-06-09 11:51+0200\n"
-"PO-Revision-Date: 2022-06-09 12:58+0200\n"
+"POT-Creation-Date: 2022-06-15 22:29+0200\n"
+"PO-Revision-Date: 2022-06-15 23:20+0200\n"
"Last-Translator: Samson B <sambelet@yahoo.com>\n"
"Language-Team: Amharic <https://translations.documentfoundation.org/projects/libo_ui-master/swmessages/am/>\n"
"Language: am\n"
@@ -14124,11 +14124,11 @@ msgctxt "envprinterpage|setup"
msgid "Setup..."
msgstr "ማሰናጃ..."
-#. jyNbK
+#. 4GuQN
#: sw/uiconfig/swriter/ui/envprinterpage.ui:467
msgctxt "envprinterpage|extended_tip|setup"
-msgid "Opens the Print Setup dialog where you can define additional printer settings, such as paper format and orientation."
-msgstr "የ ማተሚያ ማሰናጃ ንግግር መክፈቻ: እርስዎ ተጨማሪ የ ማተሚያ ማሰናጃ የሚያስተካክሉበት: እንደ ወረቀት አቀራረብ እና አቅጣጫ የሚገልጹበት"
+msgid "Opens the Printer Setup dialog where you can define additional printer settings, such as paper format and orientation."
+msgstr ""
#. AKs6U
#: sw/uiconfig/swriter/ui/envprinterpage.ui:481
@@ -17560,11 +17560,11 @@ msgctxt "insertdbcolumnsdialog|extended_tip|tabledbcols"
msgid "Specifies the database columns to be inserted into the text table."
msgstr "ወደ ጽሁፍ ሰንጠረዥ የሚገባውን የ ዳታቤዝ አምድ መወሰኛ: "
-#. XmaQd
+#. xupgr
#: sw/uiconfig/swriter/ui/insertdbcolumnsdialog.ui:559
msgctxt "insertdbcolumnsdialog|extended_tip|tabletxtcols"
-msgid "Select the database columns that you want to insert it in the document."
-msgstr " የ ዳታቤዝ አምዶች ይምረጡ በ ሰነድ ውስጥ መጨመር የሚፈልጉትን "
+msgid "Select the database columns that you want to insert in the document."
+msgstr ""
#. DJStE
#: sw/uiconfig/swriter/ui/insertdbcolumnsdialog.ui:623
@@ -18088,44 +18088,38 @@ msgctxt "labeldialog|extended_tip|ok"
msgid "Creates a new document for editing."
msgstr "አዲስ ሰነድ ለማረሚያ መፍጠሪያ"
-#. EtFBT
-#: sw/uiconfig/swriter/ui/labeldialog.ui:141
-msgctxt "labeldialog|medium"
-msgid "Medium"
-msgstr "መገናኛ"
-
#. hJSCq
-#: sw/uiconfig/swriter/ui/labeldialog.ui:188
+#: sw/uiconfig/swriter/ui/labeldialog.ui:144
msgctxt "labeldialog|labels"
msgid "Labels"
msgstr "ምልክቶች"
#. G378Z
-#: sw/uiconfig/swriter/ui/labeldialog.ui:236
+#: sw/uiconfig/swriter/ui/labeldialog.ui:192
msgctxt "labeldialog|private"
msgid "Private"
msgstr "የግል"
#. CAEMT
-#: sw/uiconfig/swriter/ui/labeldialog.ui:284
+#: sw/uiconfig/swriter/ui/labeldialog.ui:240
msgctxt "labeldialog|business"
msgid "Business"
msgstr "ንግድ"
#. a7BSb
-#: sw/uiconfig/swriter/ui/labeldialog.ui:332
+#: sw/uiconfig/swriter/ui/labeldialog.ui:288
msgctxt "labeldialog|format"
msgid "Format"
msgstr "አቀራረብ"
#. cs8CW
-#: sw/uiconfig/swriter/ui/labeldialog.ui:380
+#: sw/uiconfig/swriter/ui/labeldialog.ui:336
msgctxt "labeldialog|options"
msgid "Options"
msgstr "ምርጫዎች"
#. uB6wE
-#: sw/uiconfig/swriter/ui/labeldialog.ui:407
+#: sw/uiconfig/swriter/ui/labeldialog.ui:363
msgctxt "labeldialog|extended_tip|LabelDialog"
msgid "Allows you to create labels. Labels are created in a text document."
msgstr ""
@@ -20302,26 +20296,32 @@ msgctxt "mmselectpage|extended_tip|browsetemplate"
msgid "Opens a template selector dialog."
msgstr "የ ቲምፕሌት መምረጫ ንግግር መክፈቻ "
-#. qieQK
+#. EDivp
#: sw/uiconfig/swriter/ui/mmselectpage.ui:191
-msgctxt "mmselectpage|extended_tip|datasourcewarning"
+msgctxt "mmselectpage|datasourcewarning"
msgid "Data source of the current document is not registered. Please exchange database."
msgstr ""
-#. QcsgV
+#. NGYGa
#: sw/uiconfig/swriter/ui/mmselectpage.ui:200
+msgctxt "mmselectpage|exchangedatabase"
+msgid "Exchange Databases..."
+msgstr ""
+
+#. YjZmM
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:208
msgctxt "mmselectpage|extended_tip|exchangedatabase"
-msgid "Exchange Database..."
+msgid "Click to exchange the databases of your mail merge."
msgstr ""
#. 8ESAz
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:218
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:223
msgctxt "mmselectpage|label1"
msgid "Select Starting Document for the Mail Merge"
msgstr "ለ ደብዳቤ ማዋሀጃ መጀመሪያ ሰነድ ይምረጡ"
#. Hpca5
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:233
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:238
msgctxt "mmselectpage|extended_tip|MMSelectPage"
msgid "Specify the document that you want to use as a base for the mail merge document."
msgstr "እርስዎ እንደ መሰረት መጠቀም የሚፈልጉትን የ ደብዳቤ ማዋሀጃ ሰነድ ይምረጡ "
@@ -22482,49 +22482,49 @@ msgid "OLE Object"
msgstr ""
#. eRTnb
-#: sw/uiconfig/swriter/ui/objectdialog.ui:109
+#: sw/uiconfig/swriter/ui/objectdialog.ui:110
msgctxt "objectdialog|type"
msgid "Position and Size"
msgstr ""
#. ADJiB
-#: sw/uiconfig/swriter/ui/objectdialog.ui:132
+#: sw/uiconfig/swriter/ui/objectdialog.ui:133
msgctxt "objectdialog|options"
msgid "Options"
msgstr "ምርጫዎች"
#. s9Kta
-#: sw/uiconfig/swriter/ui/objectdialog.ui:156
+#: sw/uiconfig/swriter/ui/objectdialog.ui:157
msgctxt "objectdialog|wrap"
msgid "Wrap"
msgstr "መጠቅለያ"
#. vtCHo
-#: sw/uiconfig/swriter/ui/objectdialog.ui:180
+#: sw/uiconfig/swriter/ui/objectdialog.ui:181
msgctxt "objectdialog|hyperlink"
msgid "Hyperlink"
msgstr "Hyperlink"
#. GquSU
-#: sw/uiconfig/swriter/ui/objectdialog.ui:204
+#: sw/uiconfig/swriter/ui/objectdialog.ui:205
msgctxt "objectdialog|borders"
msgid "Borders"
msgstr "ድንበሮች"
#. L6dGA
-#: sw/uiconfig/swriter/ui/objectdialog.ui:228
+#: sw/uiconfig/swriter/ui/objectdialog.ui:229
msgctxt "objectdialog|area"
msgid "Area"
msgstr "ቦታ"
#. zJ76x
-#: sw/uiconfig/swriter/ui/objectdialog.ui:252
+#: sw/uiconfig/swriter/ui/objectdialog.ui:253
msgctxt "objectdialog|transparence"
msgid "Transparency"
msgstr "ግልጽነት"
#. FVDe9
-#: sw/uiconfig/swriter/ui/objectdialog.ui:276
+#: sw/uiconfig/swriter/ui/objectdialog.ui:277
msgctxt "objectdialog|macro"
msgid "Macro"
msgstr "Macro"
@@ -25191,11 +25191,11 @@ msgctxt "printoptionspage|background"
msgid "Page ba_ckground"
msgstr "የገጽ መደ_ብ"
-#. ocn5F
+#. DAfze
#: sw/uiconfig/swriter/ui/printoptionspage.ui:80
-msgctxt "extended_tip|background"
-msgid "Specifies whether to include colors and objects that are inserted to the background of the page (Format - Page - Background) in the printed document."
-msgstr "ቀለሞች እና እቃዎች በ መደቡ ላይ የ ገቡ በ ገጹ ላይ ይታተሙ እንደሆን መወሰኛ በ (አቀራረብ - ገጽ - መደብ) በሚታተመው ሰነድ ላይ"
+msgctxt "printoptionspage|extended_tip|background"
+msgid "Specifies whether to include colors and objects that are inserted to the background of the page style (Format - Page Style - Area) in the printed document."
+msgstr ""
#. FWBUe
#: sw/uiconfig/swriter/ui/printoptionspage.ui:91
@@ -25299,11 +25299,11 @@ msgctxt "printoptionspage|none"
msgid "_None"
msgstr "_ምንም"
-#. CDv8b
+#. d4YMs
#: sw/uiconfig/swriter/ui/printoptionspage.ui:298
-msgctxt "extended_tip|none"
-msgid "Specifies whether comments in your document are printed."
-msgstr "በ እርስዎ ሰነድ ውስጥ አስተያየቶች ይታተሙ እንደሆን መወሰኛ "
+msgctxt "printoptionspage|extended_tip|none"
+msgid "Do not print document comments."
+msgstr ""
#. 6vPTt
#: sw/uiconfig/swriter/ui/printoptionspage.ui:309
@@ -25311,11 +25311,11 @@ msgctxt "printoptionspage|only"
msgid "Comments _only"
msgstr "አስተያየት _ብቻ"
-#. KsL3A
+#. aBf74
#: sw/uiconfig/swriter/ui/printoptionspage.ui:318
-msgctxt "extended_tip|only"
-msgid "Specifies whether comments in your document are printed."
-msgstr "በ እርስዎ ሰነድ ውስጥ አስተያየቶች ይታተሙ እንደሆን መወሰኛ "
+msgctxt "printoptionspage|extended_tip|only"
+msgid "Only print the comments of your document."
+msgstr ""
#. n5M2U
#: sw/uiconfig/swriter/ui/printoptionspage.ui:329
@@ -25323,11 +25323,11 @@ msgctxt "printoptionspage|end"
msgid "End of docu_ment"
msgstr "የ ሰ_ነዱ መጨረሻ"
-#. VxM7F
+#. LgZCr
#: sw/uiconfig/swriter/ui/printoptionspage.ui:338
-msgctxt "extended_tip|end"
-msgid "Specifies whether comments in your document are printed."
-msgstr "በ እርስዎ ሰነድ ውስጥ አስተያየቶች ይታተሙ እንደሆን መወሰኛ "
+msgctxt "printoptionspage|extended_tip|end"
+msgid "Print comments on a new page at end of the document."
+msgstr ""
#. pRqdi
#: sw/uiconfig/swriter/ui/printoptionspage.ui:349
@@ -25335,11 +25335,11 @@ msgctxt "printoptionspage|endpage"
msgid "_End of page"
msgstr "የ ገጽ _መጨረሻ"
-#. hxM9Z
+#. c2JD2
#: sw/uiconfig/swriter/ui/printoptionspage.ui:358
msgctxt "extended_tip|endpage"
-msgid "Specifies whether comments in your document are printed."
-msgstr "በ እርስዎ ሰነድ ውስጥ አስተያየቶች ይታተሙ እንደሆን መወሰኛ "
+msgid "Print comments on a new page after the current page."
+msgstr ""
#. oBR83
#: sw/uiconfig/swriter/ui/printoptionspage.ui:369
@@ -25347,11 +25347,11 @@ msgctxt "printoptionspage|inmargins"
msgid "In margins"
msgstr "በ መስመሮች ውስጥ"
-#. 7aAXX
+#. HTtDH
#: sw/uiconfig/swriter/ui/printoptionspage.ui:378
-msgctxt "extended_tip|inmargins"
-msgid "Specifies whether comments in your document are printed."
-msgstr "በ እርስዎ ሰነድ ውስጥ አስተያየቶች ይታተሙ እንደሆን መወሰኛ "
+msgctxt "printoptionspage|extended_tip|inmargins"
+msgid "Include the comments boxes on the margin of the page. The page contents is rendered to fit both contents and the comments boxes."
+msgstr ""
#. VeG6V
#: sw/uiconfig/swriter/ui/printoptionspage.ui:393
@@ -28219,11 +28219,11 @@ msgctxt "textgridpage|labelFT_RUBYSIZE"
msgid "Max. Ruby text size:"
msgstr "ከፍተኛ. የ Ruby ጽሁፍ መጠን:"
-#. FxPwc
+#. hHaUA
#: sw/uiconfig/swriter/ui/textgridpage.ui:363
msgctxt "textgridpage|extended_tip|spinMF_RUBYSIZE"
-msgid "Enter the font size for the Ruby text."
-msgstr "የ ፊደል መጠን ለ Ruby ጽሁፍ ያስገቡ"
+msgid "Enter the maximum font size for the Ruby text."
+msgstr ""
#. FJFVs
#: sw/uiconfig/swriter/ui/textgridpage.ui:377
@@ -29371,11 +29371,11 @@ msgctxt "tocindexpage|casesens"
msgid "Case sensitive"
msgstr "ፊደል መመጠኛ"
-#. rAwSj
+#. sNHCm
#: sw/uiconfig/swriter/ui/tocindexpage.ui:1003
msgctxt "tocindexpage|extended_tip|casesens"
-msgid "Distinguishes between uppercase and lowercase letters in identical index entries. For Asian languages special handling applies."
-msgstr "በ ላይኛው ጉዳይ እና በ ታችኛው ጉዳይ ፊደሎች በ ተመሳሳይ ማውጫ ማስገቢያ መለያ: ለ እስያ ቋንቋዎች የ ተለየ አያያዝ ይፈጸማል:"
+msgid "Distinguishes between uppercase and lowercase letters in otherwise identical index entries. For Asian languages special handling applies."
+msgstr ""
#. e35vc
#: sw/uiconfig/swriter/ui/tocindexpage.ui:1014
diff --git a/source/an/cui/messages.po b/source/an/cui/messages.po
index 40c2cec5628..124102279fe 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: 2022-06-10 13:57+0200\n"
+"POT-Creation-Date: 2022-06-15 22:27+0200\n"
"PO-Revision-Date: 2022-06-06 17:37+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Aragonese <https://translations.documentfoundation.org/projects/libo_ui-master/cuimessages/an/>\n"
@@ -3113,10 +3113,10 @@ msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Need custom contents for metadata properties? File ▸ Properties ▸ Custom Properties tab lets you create what you want."
msgstr ""
-#. 9TnEA
+#. beSc7
#: cui/inc/tipoftheday.hrc:208
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Want to see, but not print, an object in Draw? Draw it on a layer for which the “Printable” flag is not set (right click on the tab and “Modify Layer”)."
+msgid "Want to see, but not print, an object in Draw? Draw it on a layer for which the “Printable” flag is not set (right-click the layer’s tab and choose “Modify Layer”)."
msgstr ""
#. CGQaY
@@ -4927,25 +4927,25 @@ msgid "[M]: Replace while modifying existing text"
msgstr ""
#. FtXg9
-#: cui/uiconfig/ui/applyautofmtpage.ui:90
+#: cui/uiconfig/ui/applyautofmtpage.ui:93
msgctxt "applyautofmtpage|label2"
msgid "[T]: AutoCorrect while typing"
msgstr ""
#. NujUD
-#: cui/uiconfig/ui/applyautofmtpage.ui:136
+#: cui/uiconfig/ui/applyautofmtpage.ui:142
msgctxt "applyautofmtpage|m"
msgid "[M]"
msgstr ""
#. qanx6
-#: cui/uiconfig/ui/applyautofmtpage.ui:158
+#: cui/uiconfig/ui/applyautofmtpage.ui:164
msgctxt "applyautofmtpage|t"
msgid "[T]"
msgstr ""
#. 2tG6L
-#: cui/uiconfig/ui/applyautofmtpage.ui:205
+#: cui/uiconfig/ui/applyautofmtpage.ui:211
msgctxt "applyautofmtpage|extended_tip|ApplyAutoFmtPage"
msgid "Select the options for automatically correcting errors as you type, and then click OK."
msgstr ""
@@ -8336,10 +8336,10 @@ msgctxt "dimensionlinestabpage|TSB_PARALLEL"
msgid "_Parallel to line"
msgstr ""
-#. gZdFr
+#. CCTEb
#: cui/uiconfig/ui/dimensionlinestabpage.ui:440
msgctxt "dimensionlinestabpage|extended_tip|TSB_PARALLEL"
-msgid "Displays the text parallel to or at 90 degrees to the dimension line."
+msgid "If enabled, displays the text parallel to the dimension line. If disabled, the text is shown at 90 degrees to the dimension line."
msgstr ""
#. QNscD
@@ -8348,10 +8348,10 @@ msgctxt "dimensionlinestabpage|TSB_SHOW_UNIT"
msgid "Show _measurement units"
msgstr ""
-#. cJRA9
+#. KQGtM
#: cui/uiconfig/ui/dimensionlinestabpage.ui:461
msgctxt "dimensionlinestabpage|extended_tip|TSB_SHOW_UNIT"
-msgid "Shows or hides the dimension measurement units. You can also select a measurement unit you want to display from the list."
+msgid "Shows or hides the dimension measurement unit. You can select a measurement unit you want to display from the list."
msgstr ""
#. EEaqi
@@ -10375,10 +10375,10 @@ msgctxt "hangulhanjaoptdialog|extended_tip|delete"
msgid "Deletes the selected user-defined dictionary."
msgstr ""
-#. v7Bkk
+#. eG9Qx
#: cui/uiconfig/ui/hangulhanjaoptdialog.ui:231
msgctxt "hangulhanjaoptdialog|extended_tip|dicts"
-msgid "Lists all user-defined dictionaries. Select the check box next to the dictionary that you want to use. Clear the check box next to the dictionary that you do not want to use."
+msgid "Lists all user-defined dictionaries. Select the check box next to the dictionaries that you want to use. Clear the check box next to the dictionaries that you do not want to use."
msgstr ""
#. DmfuX
@@ -10761,19 +10761,19 @@ msgid "Opens the Assign Macro dialog, in which you can give events such as \"mou
msgstr ""
#. TXrCH
-#: cui/uiconfig/ui/hyperlinkdocpage.ui:399
+#: cui/uiconfig/ui/hyperlinkdocpage.ui:391
msgctxt "hyperlinkdocpage|extended_tip|frame"
msgid "Enter the name of the frame that you want the linked file to open in, or select a predefined frame from the list. If you leave this box blank, the linked file opens in the current browser window."
msgstr ""
#. frjow
-#: cui/uiconfig/ui/hyperlinkdocpage.ui:420
+#: cui/uiconfig/ui/hyperlinkdocpage.ui:412
msgctxt "hyperlinkdocpage|label1"
msgid "Further Settings"
msgstr ""
#. 789Vi
-#: cui/uiconfig/ui/hyperlinkdocpage.ui:435
+#: cui/uiconfig/ui/hyperlinkdocpage.ui:427
msgctxt "hyperlinkdocpage|extended_tip|HyperlinkDocPage"
msgid "Hyperlinks to any document or targets in documents can be edited using the Document tab from the Hyperlink dialog."
msgstr ""
@@ -10918,19 +10918,19 @@ msgid "Opens the Assign Macro dialog, in which you can give events such as \"mou
msgstr ""
#. C5Hqs
-#: cui/uiconfig/ui/hyperlinkinternetpage.ui:409
+#: cui/uiconfig/ui/hyperlinkinternetpage.ui:401
msgctxt "hyperlinkinternetpage|extended_tip|frame"
msgid "Enter the name of the frame that you want the linked file to open in, or select a predefined frame from the list. If you leave this box blank, the linked file opens in the current browser window."
msgstr ""
#. UKQMX
-#: cui/uiconfig/ui/hyperlinkinternetpage.ui:430
+#: cui/uiconfig/ui/hyperlinkinternetpage.ui:422
msgctxt "hyperlinkinternetpage|label1"
msgid "Further Settings"
msgstr ""
#. 8UdTe
-#: cui/uiconfig/ui/hyperlinkinternetpage.ui:445
+#: cui/uiconfig/ui/hyperlinkinternetpage.ui:437
msgctxt "hyperlinkinternetpage|extended_tip|HyperlinkInternetPage"
msgid "Use the Internet page of the Hyperlink dialog to edit hyperlinks with WWW or FTP addresses."
msgstr ""
@@ -11033,19 +11033,19 @@ msgid "Opens the Assign Macro dialog, in which you can give events such as \"mou
msgstr ""
#. CwHdi
-#: cui/uiconfig/ui/hyperlinkmailpage.ui:324
+#: cui/uiconfig/ui/hyperlinkmailpage.ui:316
msgctxt "hyperlinkmailpage|extended_tip|frame"
msgid "Enter the name of the frame that you want the linked file to open in, or select a predefined frame from the list. If you leave this box blank, the linked file opens in the current browser window."
msgstr ""
#. BmHDh
-#: cui/uiconfig/ui/hyperlinkmailpage.ui:345
+#: cui/uiconfig/ui/hyperlinkmailpage.ui:337
msgctxt "hyperlinkmailpage|label1"
msgid "Further Settings"
msgstr ""
#. SvyDu
-#: cui/uiconfig/ui/hyperlinkmailpage.ui:360
+#: cui/uiconfig/ui/hyperlinkmailpage.ui:352
msgctxt "hyperlinkmailpage|extended_tip|HyperlinkMailPage"
msgid "On the Mail page in the Hyperlink dialog you can edit hyperlinks for email addresses."
msgstr ""
@@ -11210,19 +11210,19 @@ msgid "Opens the Assign Macro dialog, in which you can give events such as \"mou
msgstr ""
#. rXaNm
-#: cui/uiconfig/ui/hyperlinknewdocpage.ui:408
+#: cui/uiconfig/ui/hyperlinknewdocpage.ui:400
msgctxt "hyperlinknewdocpage|extended_tip|frame"
msgid "Enter the name of the frame that you want the linked file to open in, or select a predefined frame from the list. If you leave this box blank, the linked file opens in the current browser window."
msgstr ""
#. MS2Cn
-#: cui/uiconfig/ui/hyperlinknewdocpage.ui:429
+#: cui/uiconfig/ui/hyperlinknewdocpage.ui:421
msgctxt "hyperlinknewdocpage|label1"
msgid "Further Settings"
msgstr ""
#. ztAbs
-#: cui/uiconfig/ui/hyperlinknewdocpage.ui:444
+#: cui/uiconfig/ui/hyperlinknewdocpage.ui:436
msgctxt "hyperlinknewdocpage|extended_tip|HyperlinkNewDocPage"
msgid "Use the New Document tab from the Hyperlink dialog to set up a hyperlink to a new document and create the new document simultaneously."
msgstr ""
@@ -11990,10 +11990,10 @@ msgctxt "langtoolconfigpage|base"
msgid "Base URL:"
msgstr ""
-#. 9to2D
+#. z58D6
#: cui/uiconfig/ui/langtoolconfigpage.ui:111
msgctxt "langtoolconfigpage|usernamelbl"
-msgid "User name:"
+msgid "Username:"
msgstr ""
#. B8kMr
@@ -12002,32 +12002,32 @@ msgctxt "langtoolconfigpage|apikeylbl"
msgid "API key:"
msgstr ""
-#. AoT7Z
+#. LBMkb
#: cui/uiconfig/ui/langtoolconfigpage.ui:159
msgctxt "langtoolconfigpage|urldesc"
-msgid "Please use the base URL e.g. without \"/check\" at the end."
+msgid "Please use the base URL, i.e., without “/check”, at the end."
msgstr ""
-#. EDETM
-#: cui/uiconfig/ui/langtoolconfigpage.ui:171
+#. 77oav
+#: cui/uiconfig/ui/langtoolconfigpage.ui:174
msgctxt "langtoolconfigpage|usernamedesc"
-msgid "Your LanguageTool account's username for premium usage."
+msgid "Your LanguageTool account’s username for premium usage."
msgstr ""
-#. aDGJf
-#: cui/uiconfig/ui/langtoolconfigpage.ui:183
+#. tGuAh
+#: cui/uiconfig/ui/langtoolconfigpage.ui:189
msgctxt "langtoolconfigpage|apikeydesc"
-msgid "Your LanguageTool account's api key for premium usage."
+msgid "Your LanguageTool account’s API key for premium usage."
msgstr ""
#. Dn8bb
-#: cui/uiconfig/ui/langtoolconfigpage.ui:206
+#: cui/uiconfig/ui/langtoolconfigpage.ui:215
msgctxt "langtoolconfigpage|apisettingsheader"
msgid "API Settings"
msgstr ""
#. Ntss5
-#: cui/uiconfig/ui/langtoolconfigpage.ui:225
+#: cui/uiconfig/ui/langtoolconfigpage.ui:234
msgctxt "langtoolconfigpage|langtoolsettings"
msgid "LanguageTool API Options"
msgstr ""
@@ -14572,73 +14572,73 @@ msgstr ""
#. PiDB7
#. The [S] here is repeated as the column title for the "Save" column of this options page
-#: cui/uiconfig/ui/optfltrembedpage.ui:163
+#: cui/uiconfig/ui/optfltrembedpage.ui:166
msgctxt "optfltrembedpage|label3"
msgid "[S]: Convert and save the object"
msgstr ""
#. f2hGQ
-#: cui/uiconfig/ui/optfltrembedpage.ui:185
+#: cui/uiconfig/ui/optfltrembedpage.ui:191
msgctxt "optfltrembedpage|label1"
msgid "Embedded Objects"
msgstr ""
#. nvE89
-#: cui/uiconfig/ui/optfltrembedpage.ui:215
+#: cui/uiconfig/ui/optfltrembedpage.ui:221
msgctxt "optfltrembedpage|label5"
msgid "Export as:"
msgstr ""
#. FEeH6
-#: cui/uiconfig/ui/optfltrembedpage.ui:230
+#: cui/uiconfig/ui/optfltrembedpage.ui:236
msgctxt "optfltrembedpage|highlighting"
msgid "Highlighting"
msgstr ""
#. qBuyX
-#: cui/uiconfig/ui/optfltrembedpage.ui:239
+#: cui/uiconfig/ui/optfltrembedpage.ui:245
msgctxt "extended_tip|highlighting"
msgid "Microsoft Office has two character attributes similar to Writer character background. Select the appropriate attribute (highlighting or shading) which you would like to use during export to Microsoft Office file formats."
msgstr ""
#. Dnrx7
-#: cui/uiconfig/ui/optfltrembedpage.ui:251
+#: cui/uiconfig/ui/optfltrembedpage.ui:257
msgctxt "optfltrembedpage|shading"
msgid "Shading"
msgstr ""
#. 3PFE2
-#: cui/uiconfig/ui/optfltrembedpage.ui:260
+#: cui/uiconfig/ui/optfltrembedpage.ui:266
msgctxt "extended_tip|shading"
msgid "Microsoft Office has two character attributes similar to Writer character background. Select the appropriate attribute (highlighting or shading) which you would like to use during export to Microsoft Office file formats."
msgstr ""
#. gKwdG
-#: cui/uiconfig/ui/optfltrembedpage.ui:283
+#: cui/uiconfig/ui/optfltrembedpage.ui:289
msgctxt "optfltrembedpage|label4"
msgid "Character Highlighting"
msgstr ""
#. tyACF
-#: cui/uiconfig/ui/optfltrembedpage.ui:310
+#: cui/uiconfig/ui/optfltrembedpage.ui:316
msgctxt "optfltrembedpage|mso_lockfile"
msgid "Create MSO lock file"
msgstr ""
#. qc4GD
-#: cui/uiconfig/ui/optfltrembedpage.ui:319
+#: cui/uiconfig/ui/optfltrembedpage.ui:325
msgctxt "extended_tip|mso_lockfile"
msgid "Mark this checkbox to generate a Microsoft Office lock file in addition to this office suite's own lock file."
msgstr ""
#. Sg5Bw
-#: cui/uiconfig/ui/optfltrembedpage.ui:335
+#: cui/uiconfig/ui/optfltrembedpage.ui:341
msgctxt "optfltrembedpage|label5"
msgid "Lock Files"
msgstr ""
#. EUBnP
-#: cui/uiconfig/ui/optfltrembedpage.ui:349
+#: cui/uiconfig/ui/optfltrembedpage.ui:355
msgctxt "extended_tip|OptFilterPage"
msgid "Specifies the settings for importing and exporting Microsoft Office and other documents."
msgstr ""
@@ -14908,10 +14908,10 @@ msgctxt "optgeneralpage|exthelp"
msgid "_Extended tips"
msgstr ""
-#. ypuz2
+#. TyqBV
#: cui/uiconfig/ui/optgeneralpage.ui:42
msgctxt "extended_tip | exthelp"
-msgid "Displays a help text when you rest the cursor on an icon, a menu command, or a control on a dialog."
+msgid "Displays a help text when you rest the mouse pointer on an icon, a menu command, or a control on a dialog."
msgstr ""
#. Cbeuc
@@ -16623,7 +16623,7 @@ msgid "Passwords are protected by a master password. You will be asked to enter
msgstr ""
#. 7gzb7
-#: cui/uiconfig/ui/optsecuritypage.ui:303
+#: cui/uiconfig/ui/optsecuritypage.ui:306
msgctxt "optsecuritypage|nopasswordsave"
msgid ""
"Disabling the function to persistently store passwords deletes the list of passwords stored and resets the master password.\n"
@@ -16632,62 +16632,62 @@ msgid ""
msgstr ""
#. hwg3F
-#: cui/uiconfig/ui/optsecuritypage.ui:341
+#: cui/uiconfig/ui/optsecuritypage.ui:344
msgctxt "optsecuritypage|connections"
msgid "Connect_ions..."
msgstr ""
#. GLEjB
-#: cui/uiconfig/ui/optsecuritypage.ui:349
+#: cui/uiconfig/ui/optsecuritypage.ui:352
msgctxt "extended_tip|connections"
msgid "Asks for the master password. If master password is correct, shows the Stored Web Connection Information dialog."
msgstr ""
#. SWrMn
-#: cui/uiconfig/ui/optsecuritypage.ui:371
+#: cui/uiconfig/ui/optsecuritypage.ui:374
msgctxt "optsecuritypage|masterpassword"
msgid "_Master Password..."
msgstr "Clau de paso _mayestra…"
#. w3TQo
-#: cui/uiconfig/ui/optsecuritypage.ui:379
+#: cui/uiconfig/ui/optsecuritypage.ui:382
msgctxt "extended_tip|masterpassword"
msgid "Opens the Enter Master Password dialog."
msgstr ""
#. UtNEn
-#: cui/uiconfig/ui/optsecuritypage.ui:406
+#: cui/uiconfig/ui/optsecuritypage.ui:409
msgctxt "optsecuritypage|label2"
msgid "Passwords for Web Connections"
msgstr ""
#. EYFvA
-#: cui/uiconfig/ui/optsecuritypage.ui:439
+#: cui/uiconfig/ui/optsecuritypage.ui:442
msgctxt "optsecuritypage|label4"
msgid "Adjust security related options and define warnings for hidden information in documents. "
msgstr ""
#. CBnzU
-#: cui/uiconfig/ui/optsecuritypage.ui:452
+#: cui/uiconfig/ui/optsecuritypage.ui:455
#, fuzzy
msgctxt "optsecuritypage|options"
msgid "O_ptions..."
msgstr "Opcions..."
#. pepKZ
-#: cui/uiconfig/ui/optsecuritypage.ui:460
+#: cui/uiconfig/ui/optsecuritypage.ui:463
msgctxt "extended_tip|options"
msgid "Opens the \"Security Options and Warnings\" dialog."
msgstr ""
#. GqVkJ
-#: cui/uiconfig/ui/optsecuritypage.ui:475
+#: cui/uiconfig/ui/optsecuritypage.ui:478
msgctxt "optsecuritypage|label1"
msgid "Security Options and Warnings"
msgstr ""
#. rwtuC
-#: cui/uiconfig/ui/optsecuritypage.ui:489
+#: cui/uiconfig/ui/optsecuritypage.ui:492
msgctxt "extended_tip|OptSecurityPage"
msgid "Defines the security options for saving documents, for web connections, and for opening documents that contain macros."
msgstr ""
@@ -20228,10 +20228,10 @@ msgctxt "specialcharacters|srchft"
msgid "Search:"
msgstr ""
-#. eCjVg
+#. zPCZ7
#: cui/uiconfig/ui/specialcharacters.ui:166
msgctxt "specialcharacters|extended_tip|subsetlb"
-msgid "Select a Unicode category for the current font."
+msgid "Select a Unicode block for the current font."
msgstr ""
#. JPWW8
@@ -20266,19 +20266,19 @@ msgid "Maximum Limit: 16 Characters"
msgstr ""
#. ti8sG
-#: cui/uiconfig/ui/specialcharacters.ui:371
+#: cui/uiconfig/ui/specialcharacters.ui:374
msgctxt "specialcharacters|symboltext1"
msgid "Recent Characters:"
msgstr ""
#. LQZ7q
-#: cui/uiconfig/ui/specialcharacters.ui:605
+#: cui/uiconfig/ui/specialcharacters.ui:608
msgctxt "specialcharacters|favbtn|symboltext2"
msgid "Favorite Characters:"
msgstr ""
#. DhG6L
-#: cui/uiconfig/ui/specialcharacters.ui:903
+#: cui/uiconfig/ui/specialcharacters.ui:906
msgctxt "specialcharacters|extended_tip|SpecialCharactersDialog"
msgid "Allows a user to insert characters from the range of symbols found in the installed fonts."
msgstr ""
diff --git a/source/an/filter/messages.po b/source/an/filter/messages.po
index 034f6b1232a..d0959207154 100644
--- a/source/an/filter/messages.po
+++ b/source/an/filter/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2022-01-31 18:19+0100\n"
+"POT-Creation-Date: 2022-06-15 22:28+0200\n"
"PO-Revision-Date: 2022-01-17 16:38+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Aragonese <https://translations.documentfoundation.org/projects/libo_ui-master/filtermessages/an/>\n"
@@ -1518,10 +1518,10 @@ msgctxt "pdfviewpage|fitvis"
msgid "Fit _visible"
msgstr ""
-#. FD8Pp
+#. EBBzj
#: filter/uiconfig/ui/pdfviewpage.ui:254
msgctxt "pdfviewpage|extended_tip|fitvis"
-msgid "Select to generate a PDF file that shows the text and graphics on the page zoomed to fit the width of the reader's window."
+msgid "Select to generate a PDF file that shows the text and graphics on the page zoomed to fit the reader's window."
msgstr ""
#. NGpWy
@@ -1923,10 +1923,10 @@ msgctxt "xmlfiltertabpagegeneral|extended_tip|filtername"
msgid "Enter the name that you want to display in the list box of the XML Filter Settings dialog."
msgstr ""
-#. Tbmcc
+#. D5aZP
#: filter/uiconfig/ui/xmlfiltertabpagegeneral.ui:119
msgctxt "xmlfiltertabpagegeneral|extended_tip|extension"
-msgid "Enter the file extension to use when you open a file without specifying a filter. The file extension to used to determine which filter to use."
+msgid "Enter the file extension to use when you open a file without specifying a filter. The file extension is used to determine which filter to use."
msgstr ""
#. fZvBA
diff --git a/source/an/svx/messages.po b/source/an/svx/messages.po
index 127e6947146..0b088997e7b 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: 2022-06-09 11:50+0200\n"
+"POT-Creation-Date: 2022-06-15 22:28+0200\n"
"PO-Revision-Date: 2022-05-10 13:19+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Aragonese <https://translations.documentfoundation.org/projects/libo_ui-master/svxmessages/an/>\n"
@@ -17154,13 +17154,13 @@ msgid "_Kern Character Pairs"
msgstr ""
#. 8SKCU
-#: svx/uiconfig/ui/fontworkgallerydialog.ui:18
+#: svx/uiconfig/ui/fontworkgallerydialog.ui:16
msgctxt "fontworkgallerydialog|FontworkGalleryDialog"
msgid "Fontwork Gallery"
msgstr ""
#. GB7pa
-#: svx/uiconfig/ui/fontworkgallerydialog.ui:101
+#: svx/uiconfig/ui/fontworkgallerydialog.ui:99
msgctxt "fontworkgallerydialog|label1"
msgid "Select a Fontwork style:"
msgstr ""
diff --git a/source/an/sw/messages.po b/source/an/sw/messages.po
index 872a85ea0fe..6fc7fe17837 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: 2022-06-09 11:51+0200\n"
+"POT-Creation-Date: 2022-06-15 22:29+0200\n"
"PO-Revision-Date: 2022-06-06 17:38+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Aragonese <https://translations.documentfoundation.org/projects/libo_ui-master/swmessages/an/>\n"
@@ -14320,10 +14320,10 @@ msgctxt "envprinterpage|setup"
msgid "Setup..."
msgstr ""
-#. jyNbK
+#. 4GuQN
#: sw/uiconfig/swriter/ui/envprinterpage.ui:467
msgctxt "envprinterpage|extended_tip|setup"
-msgid "Opens the Print Setup dialog where you can define additional printer settings, such as paper format and orientation."
+msgid "Opens the Printer Setup dialog where you can define additional printer settings, such as paper format and orientation."
msgstr ""
#. AKs6U
@@ -17814,10 +17814,10 @@ msgctxt "insertdbcolumnsdialog|extended_tip|tabledbcols"
msgid "Specifies the database columns to be inserted into the text table."
msgstr ""
-#. XmaQd
+#. xupgr
#: sw/uiconfig/swriter/ui/insertdbcolumnsdialog.ui:559
msgctxt "insertdbcolumnsdialog|extended_tip|tabletxtcols"
-msgid "Select the database columns that you want to insert it in the document."
+msgid "Select the database columns that you want to insert in the document."
msgstr ""
#. DJStE
@@ -18354,45 +18354,39 @@ msgctxt "labeldialog|extended_tip|ok"
msgid "Creates a new document for editing."
msgstr ""
-#. EtFBT
-#: sw/uiconfig/swriter/ui/labeldialog.ui:141
-msgctxt "labeldialog|medium"
-msgid "Medium"
-msgstr ""
-
#. hJSCq
-#: sw/uiconfig/swriter/ui/labeldialog.ui:188
+#: sw/uiconfig/swriter/ui/labeldialog.ui:144
msgctxt "labeldialog|labels"
msgid "Labels"
msgstr "~Etiquetas"
#. G378Z
-#: sw/uiconfig/swriter/ui/labeldialog.ui:236
+#: sw/uiconfig/swriter/ui/labeldialog.ui:192
msgctxt "labeldialog|private"
msgid "Private"
msgstr ""
#. CAEMT
-#: sw/uiconfig/swriter/ui/labeldialog.ui:284
+#: sw/uiconfig/swriter/ui/labeldialog.ui:240
msgctxt "labeldialog|business"
msgid "Business"
msgstr "Negocios"
#. a7BSb
-#: sw/uiconfig/swriter/ui/labeldialog.ui:332
+#: sw/uiconfig/swriter/ui/labeldialog.ui:288
#, fuzzy
msgctxt "labeldialog|format"
msgid "Format"
msgstr "~Formato"
#. cs8CW
-#: sw/uiconfig/swriter/ui/labeldialog.ui:380
+#: sw/uiconfig/swriter/ui/labeldialog.ui:336
msgctxt "labeldialog|options"
msgid "Options"
msgstr "Opcions"
#. uB6wE
-#: sw/uiconfig/swriter/ui/labeldialog.ui:407
+#: sw/uiconfig/swriter/ui/labeldialog.ui:363
msgctxt "labeldialog|extended_tip|LabelDialog"
msgid "Allows you to create labels. Labels are created in a text document."
msgstr ""
@@ -20595,26 +20589,32 @@ msgctxt "mmselectpage|extended_tip|browsetemplate"
msgid "Opens a template selector dialog."
msgstr ""
-#. qieQK
+#. EDivp
#: sw/uiconfig/swriter/ui/mmselectpage.ui:191
-msgctxt "mmselectpage|extended_tip|datasourcewarning"
+msgctxt "mmselectpage|datasourcewarning"
msgid "Data source of the current document is not registered. Please exchange database."
msgstr ""
-#. QcsgV
+#. NGYGa
#: sw/uiconfig/swriter/ui/mmselectpage.ui:200
+msgctxt "mmselectpage|exchangedatabase"
+msgid "Exchange Databases..."
+msgstr ""
+
+#. YjZmM
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:208
msgctxt "mmselectpage|extended_tip|exchangedatabase"
-msgid "Exchange Database..."
+msgid "Click to exchange the databases of your mail merge."
msgstr ""
#. 8ESAz
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:218
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:223
msgctxt "mmselectpage|label1"
msgid "Select Starting Document for the Mail Merge"
msgstr ""
#. Hpca5
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:233
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:238
msgctxt "mmselectpage|extended_tip|MMSelectPage"
msgid "Specify the document that you want to use as a base for the mail merge document."
msgstr ""
@@ -22786,49 +22786,49 @@ msgid "OLE Object"
msgstr "Obchecto OLE"
#. eRTnb
-#: sw/uiconfig/swriter/ui/objectdialog.ui:109
+#: sw/uiconfig/swriter/ui/objectdialog.ui:110
msgctxt "objectdialog|type"
msgid "Position and Size"
msgstr "Posición y grandaria"
#. ADJiB
-#: sw/uiconfig/swriter/ui/objectdialog.ui:132
+#: sw/uiconfig/swriter/ui/objectdialog.ui:133
msgctxt "objectdialog|options"
msgid "Options"
msgstr "Opcions"
#. s9Kta
-#: sw/uiconfig/swriter/ui/objectdialog.ui:156
+#: sw/uiconfig/swriter/ui/objectdialog.ui:157
msgctxt "objectdialog|wrap"
msgid "Wrap"
msgstr ""
#. vtCHo
-#: sw/uiconfig/swriter/ui/objectdialog.ui:180
+#: sw/uiconfig/swriter/ui/objectdialog.ui:181
msgctxt "objectdialog|hyperlink"
msgid "Hyperlink"
msgstr "Hipervinclo"
#. GquSU
-#: sw/uiconfig/swriter/ui/objectdialog.ui:204
+#: sw/uiconfig/swriter/ui/objectdialog.ui:205
msgctxt "objectdialog|borders"
msgid "Borders"
msgstr "Cantos"
#. L6dGA
-#: sw/uiconfig/swriter/ui/objectdialog.ui:228
+#: sw/uiconfig/swriter/ui/objectdialog.ui:229
msgctxt "objectdialog|area"
msgid "Area"
msgstr ""
#. zJ76x
-#: sw/uiconfig/swriter/ui/objectdialog.ui:252
+#: sw/uiconfig/swriter/ui/objectdialog.ui:253
msgctxt "objectdialog|transparence"
msgid "Transparency"
msgstr "Transparencia"
#. FVDe9
-#: sw/uiconfig/swriter/ui/objectdialog.ui:276
+#: sw/uiconfig/swriter/ui/objectdialog.ui:277
msgctxt "objectdialog|macro"
msgid "Macro"
msgstr "Macro"
@@ -25548,10 +25548,10 @@ msgctxt "printoptionspage|background"
msgid "Page ba_ckground"
msgstr ""
-#. ocn5F
+#. DAfze
#: sw/uiconfig/swriter/ui/printoptionspage.ui:80
-msgctxt "extended_tip|background"
-msgid "Specifies whether to include colors and objects that are inserted to the background of the page (Format - Page - Background) in the printed document."
+msgctxt "printoptionspage|extended_tip|background"
+msgid "Specifies whether to include colors and objects that are inserted to the background of the page style (Format - Page Style - Area) in the printed document."
msgstr ""
#. FWBUe
@@ -25657,10 +25657,10 @@ msgctxt "printoptionspage|none"
msgid "_None"
msgstr "Nota"
-#. CDv8b
+#. d4YMs
#: sw/uiconfig/swriter/ui/printoptionspage.ui:298
-msgctxt "extended_tip|none"
-msgid "Specifies whether comments in your document are printed."
+msgctxt "printoptionspage|extended_tip|none"
+msgid "Do not print document comments."
msgstr ""
#. 6vPTt
@@ -25669,10 +25669,10 @@ msgctxt "printoptionspage|only"
msgid "Comments _only"
msgstr ""
-#. KsL3A
+#. aBf74
#: sw/uiconfig/swriter/ui/printoptionspage.ui:318
-msgctxt "extended_tip|only"
-msgid "Specifies whether comments in your document are printed."
+msgctxt "printoptionspage|extended_tip|only"
+msgid "Only print the comments of your document."
msgstr ""
#. n5M2U
@@ -25681,10 +25681,10 @@ msgctxt "printoptionspage|end"
msgid "End of docu_ment"
msgstr ""
-#. VxM7F
+#. LgZCr
#: sw/uiconfig/swriter/ui/printoptionspage.ui:338
-msgctxt "extended_tip|end"
-msgid "Specifies whether comments in your document are printed."
+msgctxt "printoptionspage|extended_tip|end"
+msgid "Print comments on a new page at end of the document."
msgstr ""
#. pRqdi
@@ -25693,10 +25693,10 @@ msgctxt "printoptionspage|endpage"
msgid "_End of page"
msgstr ""
-#. hxM9Z
+#. c2JD2
#: sw/uiconfig/swriter/ui/printoptionspage.ui:358
msgctxt "extended_tip|endpage"
-msgid "Specifies whether comments in your document are printed."
+msgid "Print comments on a new page after the current page."
msgstr ""
#. oBR83
@@ -25705,10 +25705,10 @@ msgctxt "printoptionspage|inmargins"
msgid "In margins"
msgstr ""
-#. 7aAXX
+#. HTtDH
#: sw/uiconfig/swriter/ui/printoptionspage.ui:378
-msgctxt "extended_tip|inmargins"
-msgid "Specifies whether comments in your document are printed."
+msgctxt "printoptionspage|extended_tip|inmargins"
+msgid "Include the comments boxes on the margin of the page. The page contents is rendered to fit both contents and the comments boxes."
msgstr ""
#. VeG6V
@@ -28633,10 +28633,10 @@ msgctxt "textgridpage|labelFT_RUBYSIZE"
msgid "Max. Ruby text size:"
msgstr ""
-#. FxPwc
+#. hHaUA
#: sw/uiconfig/swriter/ui/textgridpage.ui:363
msgctxt "textgridpage|extended_tip|spinMF_RUBYSIZE"
-msgid "Enter the font size for the Ruby text."
+msgid "Enter the maximum font size for the Ruby text."
msgstr ""
#. FJFVs
@@ -29810,10 +29810,10 @@ msgctxt "tocindexpage|casesens"
msgid "Case sensitive"
msgstr ""
-#. rAwSj
+#. sNHCm
#: sw/uiconfig/swriter/ui/tocindexpage.ui:1003
msgctxt "tocindexpage|extended_tip|casesens"
-msgid "Distinguishes between uppercase and lowercase letters in identical index entries. For Asian languages special handling applies."
+msgid "Distinguishes between uppercase and lowercase letters in otherwise identical index entries. For Asian languages special handling applies."
msgstr ""
#. e35vc
diff --git a/source/ar/cui/messages.po b/source/ar/cui/messages.po
index 4f7411b13c1..179e4ae2ac7 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: 2022-06-10 13:57+0200\n"
+"POT-Creation-Date: 2022-06-15 22:27+0200\n"
"PO-Revision-Date: 2022-06-06 17:37+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_ui-master/cuimessages/ar/>\n"
@@ -3126,10 +3126,10 @@ msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Need custom contents for metadata properties? File ▸ Properties ▸ Custom Properties tab lets you create what you want."
msgstr ""
-#. 9TnEA
+#. beSc7
#: cui/inc/tipoftheday.hrc:208
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Want to see, but not print, an object in Draw? Draw it on a layer for which the “Printable” flag is not set (right click on the tab and “Modify Layer”)."
+msgid "Want to see, but not print, an object in Draw? Draw it on a layer for which the “Printable” flag is not set (right-click the layer’s tab and choose “Modify Layer”)."
msgstr ""
#. CGQaY
@@ -4920,25 +4920,25 @@ msgid "[M]: Replace while modifying existing text"
msgstr "[ت]: تنسيق تلقائي أثناء تعديل النص الموجود"
#. FtXg9
-#: cui/uiconfig/ui/applyautofmtpage.ui:90
+#: cui/uiconfig/ui/applyautofmtpage.ui:93
msgctxt "applyautofmtpage|label2"
msgid "[T]: AutoCorrect while typing"
msgstr "[ك]: تصحيح تلقائي أثناء الكتابة"
#. NujUD
-#: cui/uiconfig/ui/applyautofmtpage.ui:136
+#: cui/uiconfig/ui/applyautofmtpage.ui:142
msgctxt "applyautofmtpage|m"
msgid "[M]"
msgstr "[ت]"
#. qanx6
-#: cui/uiconfig/ui/applyautofmtpage.ui:158
+#: cui/uiconfig/ui/applyautofmtpage.ui:164
msgctxt "applyautofmtpage|t"
msgid "[T]"
msgstr "[ك]"
#. 2tG6L
-#: cui/uiconfig/ui/applyautofmtpage.ui:205
+#: cui/uiconfig/ui/applyautofmtpage.ui:211
msgctxt "applyautofmtpage|extended_tip|ApplyAutoFmtPage"
msgid "Select the options for automatically correcting errors as you type, and then click OK."
msgstr ""
@@ -8295,10 +8295,10 @@ msgctxt "dimensionlinestabpage|TSB_PARALLEL"
msgid "_Parallel to line"
msgstr "م_توازٍ مع الخط"
-#. gZdFr
+#. CCTEb
#: cui/uiconfig/ui/dimensionlinestabpage.ui:440
msgctxt "dimensionlinestabpage|extended_tip|TSB_PARALLEL"
-msgid "Displays the text parallel to or at 90 degrees to the dimension line."
+msgid "If enabled, displays the text parallel to the dimension line. If disabled, the text is shown at 90 degrees to the dimension line."
msgstr ""
#. QNscD
@@ -8307,10 +8307,10 @@ msgctxt "dimensionlinestabpage|TSB_SHOW_UNIT"
msgid "Show _measurement units"
msgstr "اعرض وحدات ال_قياس"
-#. cJRA9
+#. KQGtM
#: cui/uiconfig/ui/dimensionlinestabpage.ui:461
msgctxt "dimensionlinestabpage|extended_tip|TSB_SHOW_UNIT"
-msgid "Shows or hides the dimension measurement units. You can also select a measurement unit you want to display from the list."
+msgid "Shows or hides the dimension measurement unit. You can select a measurement unit you want to display from the list."
msgstr ""
#. EEaqi
@@ -10318,11 +10318,11 @@ msgctxt "hangulhanjaoptdialog|extended_tip|delete"
msgid "Deletes the selected user-defined dictionary."
msgstr "يحذف القاموس المحدد الذي عرّفه المستخدم."
-#. v7Bkk
+#. eG9Qx
#: cui/uiconfig/ui/hangulhanjaoptdialog.ui:231
msgctxt "hangulhanjaoptdialog|extended_tip|dicts"
-msgid "Lists all user-defined dictionaries. Select the check box next to the dictionary that you want to use. Clear the check box next to the dictionary that you do not want to use."
-msgstr "يسرد كل القواميس التي عرّفها المستخدم. حدد مربع التأشير بجانب القاموس الذي تريد استخدامه. فرّغ مربع التأشير بجانب القاموس الذي لا تريد استخدامه."
+msgid "Lists all user-defined dictionaries. Select the check box next to the dictionaries that you want to use. Clear the check box next to the dictionaries that you do not want to use."
+msgstr ""
#. DmfuX
#: cui/uiconfig/ui/hangulhanjaoptdialog.ui:248
@@ -10703,19 +10703,19 @@ msgid "Opens the Assign Macro dialog, in which you can give events such as \"mou
msgstr ""
#. TXrCH
-#: cui/uiconfig/ui/hyperlinkdocpage.ui:399
+#: cui/uiconfig/ui/hyperlinkdocpage.ui:391
msgctxt "hyperlinkdocpage|extended_tip|frame"
msgid "Enter the name of the frame that you want the linked file to open in, or select a predefined frame from the list. If you leave this box blank, the linked file opens in the current browser window."
msgstr ""
#. frjow
-#: cui/uiconfig/ui/hyperlinkdocpage.ui:420
+#: cui/uiconfig/ui/hyperlinkdocpage.ui:412
msgctxt "hyperlinkdocpage|label1"
msgid "Further Settings"
msgstr "إعدادات أخرى"
#. 789Vi
-#: cui/uiconfig/ui/hyperlinkdocpage.ui:435
+#: cui/uiconfig/ui/hyperlinkdocpage.ui:427
msgctxt "hyperlinkdocpage|extended_tip|HyperlinkDocPage"
msgid "Hyperlinks to any document or targets in documents can be edited using the Document tab from the Hyperlink dialog."
msgstr ""
@@ -10859,19 +10859,19 @@ msgid "Opens the Assign Macro dialog, in which you can give events such as \"mou
msgstr ""
#. C5Hqs
-#: cui/uiconfig/ui/hyperlinkinternetpage.ui:409
+#: cui/uiconfig/ui/hyperlinkinternetpage.ui:401
msgctxt "hyperlinkinternetpage|extended_tip|frame"
msgid "Enter the name of the frame that you want the linked file to open in, or select a predefined frame from the list. If you leave this box blank, the linked file opens in the current browser window."
msgstr ""
#. UKQMX
-#: cui/uiconfig/ui/hyperlinkinternetpage.ui:430
+#: cui/uiconfig/ui/hyperlinkinternetpage.ui:422
msgctxt "hyperlinkinternetpage|label1"
msgid "Further Settings"
msgstr "إعدادات أخرى"
#. 8UdTe
-#: cui/uiconfig/ui/hyperlinkinternetpage.ui:445
+#: cui/uiconfig/ui/hyperlinkinternetpage.ui:437
msgctxt "hyperlinkinternetpage|extended_tip|HyperlinkInternetPage"
msgid "Use the Internet page of the Hyperlink dialog to edit hyperlinks with WWW or FTP addresses."
msgstr ""
@@ -10973,19 +10973,19 @@ msgid "Opens the Assign Macro dialog, in which you can give events such as \"mou
msgstr ""
#. CwHdi
-#: cui/uiconfig/ui/hyperlinkmailpage.ui:324
+#: cui/uiconfig/ui/hyperlinkmailpage.ui:316
msgctxt "hyperlinkmailpage|extended_tip|frame"
msgid "Enter the name of the frame that you want the linked file to open in, or select a predefined frame from the list. If you leave this box blank, the linked file opens in the current browser window."
msgstr ""
#. BmHDh
-#: cui/uiconfig/ui/hyperlinkmailpage.ui:345
+#: cui/uiconfig/ui/hyperlinkmailpage.ui:337
msgctxt "hyperlinkmailpage|label1"
msgid "Further Settings"
msgstr "إعدادات أخرى"
#. SvyDu
-#: cui/uiconfig/ui/hyperlinkmailpage.ui:360
+#: cui/uiconfig/ui/hyperlinkmailpage.ui:352
msgctxt "hyperlinkmailpage|extended_tip|HyperlinkMailPage"
msgid "On the Mail page in the Hyperlink dialog you can edit hyperlinks for email addresses."
msgstr ""
@@ -11147,19 +11147,19 @@ msgid "Opens the Assign Macro dialog, in which you can give events such as \"mou
msgstr ""
#. rXaNm
-#: cui/uiconfig/ui/hyperlinknewdocpage.ui:408
+#: cui/uiconfig/ui/hyperlinknewdocpage.ui:400
msgctxt "hyperlinknewdocpage|extended_tip|frame"
msgid "Enter the name of the frame that you want the linked file to open in, or select a predefined frame from the list. If you leave this box blank, the linked file opens in the current browser window."
msgstr ""
#. MS2Cn
-#: cui/uiconfig/ui/hyperlinknewdocpage.ui:429
+#: cui/uiconfig/ui/hyperlinknewdocpage.ui:421
msgctxt "hyperlinknewdocpage|label1"
msgid "Further Settings"
msgstr "إعدادات أخرى"
#. ztAbs
-#: cui/uiconfig/ui/hyperlinknewdocpage.ui:444
+#: cui/uiconfig/ui/hyperlinknewdocpage.ui:436
msgctxt "hyperlinknewdocpage|extended_tip|HyperlinkNewDocPage"
msgid "Use the New Document tab from the Hyperlink dialog to set up a hyperlink to a new document and create the new document simultaneously."
msgstr ""
@@ -11924,10 +11924,10 @@ msgctxt "langtoolconfigpage|base"
msgid "Base URL:"
msgstr ""
-#. 9to2D
+#. z58D6
#: cui/uiconfig/ui/langtoolconfigpage.ui:111
msgctxt "langtoolconfigpage|usernamelbl"
-msgid "User name:"
+msgid "Username:"
msgstr ""
#. B8kMr
@@ -11936,32 +11936,32 @@ msgctxt "langtoolconfigpage|apikeylbl"
msgid "API key:"
msgstr ""
-#. AoT7Z
+#. LBMkb
#: cui/uiconfig/ui/langtoolconfigpage.ui:159
msgctxt "langtoolconfigpage|urldesc"
-msgid "Please use the base URL e.g. without \"/check\" at the end."
+msgid "Please use the base URL, i.e., without “/check”, at the end."
msgstr ""
-#. EDETM
-#: cui/uiconfig/ui/langtoolconfigpage.ui:171
+#. 77oav
+#: cui/uiconfig/ui/langtoolconfigpage.ui:174
msgctxt "langtoolconfigpage|usernamedesc"
-msgid "Your LanguageTool account's username for premium usage."
+msgid "Your LanguageTool account’s username for premium usage."
msgstr ""
-#. aDGJf
-#: cui/uiconfig/ui/langtoolconfigpage.ui:183
+#. tGuAh
+#: cui/uiconfig/ui/langtoolconfigpage.ui:189
msgctxt "langtoolconfigpage|apikeydesc"
-msgid "Your LanguageTool account's api key for premium usage."
+msgid "Your LanguageTool account’s API key for premium usage."
msgstr ""
#. Dn8bb
-#: cui/uiconfig/ui/langtoolconfigpage.ui:206
+#: cui/uiconfig/ui/langtoolconfigpage.ui:215
msgctxt "langtoolconfigpage|apisettingsheader"
msgid "API Settings"
msgstr ""
#. Ntss5
-#: cui/uiconfig/ui/langtoolconfigpage.ui:225
+#: cui/uiconfig/ui/langtoolconfigpage.ui:234
msgctxt "langtoolconfigpage|langtoolsettings"
msgid "LanguageTool API Options"
msgstr ""
@@ -14479,73 +14479,73 @@ msgstr "[م]: تحميل وتحويل الكائن"
#. PiDB7
#. The [S] here is repeated as the column title for the "Save" column of this options page
-#: cui/uiconfig/ui/optfltrembedpage.ui:163
+#: cui/uiconfig/ui/optfltrembedpage.ui:166
msgctxt "optfltrembedpage|label3"
msgid "[S]: Convert and save the object"
msgstr "[ح]: تحويل وحفظ الكائن"
#. f2hGQ
-#: cui/uiconfig/ui/optfltrembedpage.ui:185
+#: cui/uiconfig/ui/optfltrembedpage.ui:191
msgctxt "optfltrembedpage|label1"
msgid "Embedded Objects"
msgstr "كائنات مضمَّنة"
#. nvE89
-#: cui/uiconfig/ui/optfltrembedpage.ui:215
+#: cui/uiconfig/ui/optfltrembedpage.ui:221
msgctxt "optfltrembedpage|label5"
msgid "Export as:"
msgstr "صدّر ك‍:"
#. FEeH6
-#: cui/uiconfig/ui/optfltrembedpage.ui:230
+#: cui/uiconfig/ui/optfltrembedpage.ui:236
msgctxt "optfltrembedpage|highlighting"
msgid "Highlighting"
msgstr "الإبراز"
#. qBuyX
-#: cui/uiconfig/ui/optfltrembedpage.ui:239
+#: cui/uiconfig/ui/optfltrembedpage.ui:245
msgctxt "extended_tip|highlighting"
msgid "Microsoft Office has two character attributes similar to Writer character background. Select the appropriate attribute (highlighting or shading) which you would like to use during export to Microsoft Office file formats."
msgstr ""
#. Dnrx7
-#: cui/uiconfig/ui/optfltrembedpage.ui:251
+#: cui/uiconfig/ui/optfltrembedpage.ui:257
msgctxt "optfltrembedpage|shading"
msgid "Shading"
msgstr "الظلال"
#. 3PFE2
-#: cui/uiconfig/ui/optfltrembedpage.ui:260
+#: cui/uiconfig/ui/optfltrembedpage.ui:266
msgctxt "extended_tip|shading"
msgid "Microsoft Office has two character attributes similar to Writer character background. Select the appropriate attribute (highlighting or shading) which you would like to use during export to Microsoft Office file formats."
msgstr ""
#. gKwdG
-#: cui/uiconfig/ui/optfltrembedpage.ui:283
+#: cui/uiconfig/ui/optfltrembedpage.ui:289
msgctxt "optfltrembedpage|label4"
msgid "Character Highlighting"
msgstr "تمييز المحارف"
#. tyACF
-#: cui/uiconfig/ui/optfltrembedpage.ui:310
+#: cui/uiconfig/ui/optfltrembedpage.ui:316
msgctxt "optfltrembedpage|mso_lockfile"
msgid "Create MSO lock file"
msgstr "أنشيء ملف بقفل ميكروسوفت MSO"
#. qc4GD
-#: cui/uiconfig/ui/optfltrembedpage.ui:319
+#: cui/uiconfig/ui/optfltrembedpage.ui:325
msgctxt "extended_tip|mso_lockfile"
msgid "Mark this checkbox to generate a Microsoft Office lock file in addition to this office suite's own lock file."
msgstr ""
#. Sg5Bw
-#: cui/uiconfig/ui/optfltrembedpage.ui:335
+#: cui/uiconfig/ui/optfltrembedpage.ui:341
msgctxt "optfltrembedpage|label5"
msgid "Lock Files"
msgstr "قفل الملفات"
#. EUBnP
-#: cui/uiconfig/ui/optfltrembedpage.ui:349
+#: cui/uiconfig/ui/optfltrembedpage.ui:355
msgctxt "extended_tip|OptFilterPage"
msgid "Specifies the settings for importing and exporting Microsoft Office and other documents."
msgstr ""
@@ -14814,10 +14814,10 @@ msgctxt "optgeneralpage|exthelp"
msgid "_Extended tips"
msgstr "تل_ميحات موسّعة"
-#. ypuz2
+#. TyqBV
#: cui/uiconfig/ui/optgeneralpage.ui:42
msgctxt "extended_tip | exthelp"
-msgid "Displays a help text when you rest the cursor on an icon, a menu command, or a control on a dialog."
+msgid "Displays a help text when you rest the mouse pointer on an icon, a menu command, or a control on a dialog."
msgstr ""
#. Cbeuc
@@ -16514,7 +16514,7 @@ msgid "Passwords are protected by a master password. You will be asked to enter
msgstr "تُحمى كلمات السر بكلمة سر رئيسية. سيُطلب منك إدخالها مرة واحدة في كل جلسة عمل إذا جلب %PRODUCTNAME كلمة سر من قائمة كلمات السر المحمية."
#. 7gzb7
-#: cui/uiconfig/ui/optsecuritypage.ui:303
+#: cui/uiconfig/ui/optsecuritypage.ui:306
msgctxt "optsecuritypage|nopasswordsave"
msgid ""
"Disabling the function to persistently store passwords deletes the list of passwords stored and resets the master password.\n"
@@ -16526,61 +16526,61 @@ msgstr ""
"هل تريد حذف قائمة كلمات السر وإعادة ضبط الكلمة السر الرئيسية؟"
#. hwg3F
-#: cui/uiconfig/ui/optsecuritypage.ui:341
+#: cui/uiconfig/ui/optsecuritypage.ui:344
msgctxt "optsecuritypage|connections"
msgid "Connect_ions..."
msgstr "الات_صالات..."
#. GLEjB
-#: cui/uiconfig/ui/optsecuritypage.ui:349
+#: cui/uiconfig/ui/optsecuritypage.ui:352
msgctxt "extended_tip|connections"
msgid "Asks for the master password. If master password is correct, shows the Stored Web Connection Information dialog."
msgstr ""
#. SWrMn
-#: cui/uiconfig/ui/optsecuritypage.ui:371
+#: cui/uiconfig/ui/optsecuritypage.ui:374
msgctxt "optsecuritypage|masterpassword"
msgid "_Master Password..."
msgstr "كلمة السر الرئي_سية..."
#. w3TQo
-#: cui/uiconfig/ui/optsecuritypage.ui:379
+#: cui/uiconfig/ui/optsecuritypage.ui:382
msgctxt "extended_tip|masterpassword"
msgid "Opens the Enter Master Password dialog."
msgstr ""
#. UtNEn
-#: cui/uiconfig/ui/optsecuritypage.ui:406
+#: cui/uiconfig/ui/optsecuritypage.ui:409
msgctxt "optsecuritypage|label2"
msgid "Passwords for Web Connections"
msgstr "كلمات السر لاتصالات الوب"
#. EYFvA
-#: cui/uiconfig/ui/optsecuritypage.ui:439
+#: cui/uiconfig/ui/optsecuritypage.ui:442
msgctxt "optsecuritypage|label4"
msgid "Adjust security related options and define warnings for hidden information in documents. "
msgstr "اضبط الخيارات المتعلقة بالأمان وعرف التحذيرات للمعلومات المخفية في المستندات. "
#. CBnzU
-#: cui/uiconfig/ui/optsecuritypage.ui:452
+#: cui/uiconfig/ui/optsecuritypage.ui:455
msgctxt "optsecuritypage|options"
msgid "O_ptions..."
msgstr "_خيارات..."
#. pepKZ
-#: cui/uiconfig/ui/optsecuritypage.ui:460
+#: cui/uiconfig/ui/optsecuritypage.ui:463
msgctxt "extended_tip|options"
msgid "Opens the \"Security Options and Warnings\" dialog."
msgstr ""
#. GqVkJ
-#: cui/uiconfig/ui/optsecuritypage.ui:475
+#: cui/uiconfig/ui/optsecuritypage.ui:478
msgctxt "optsecuritypage|label1"
msgid "Security Options and Warnings"
msgstr "خيارات الأمن و التحذيرات"
#. rwtuC
-#: cui/uiconfig/ui/optsecuritypage.ui:489
+#: cui/uiconfig/ui/optsecuritypage.ui:492
msgctxt "extended_tip|OptSecurityPage"
msgid "Defines the security options for saving documents, for web connections, and for opening documents that contain macros."
msgstr ""
@@ -20085,10 +20085,10 @@ msgctxt "specialcharacters|srchft"
msgid "Search:"
msgstr "ابحث عن:"
-#. eCjVg
+#. zPCZ7
#: cui/uiconfig/ui/specialcharacters.ui:166
msgctxt "specialcharacters|extended_tip|subsetlb"
-msgid "Select a Unicode category for the current font."
+msgid "Select a Unicode block for the current font."
msgstr ""
#. JPWW8
@@ -20122,19 +20122,19 @@ msgid "Maximum Limit: 16 Characters"
msgstr "أقصى حدّ: ١٦ محرفًا"
#. ti8sG
-#: cui/uiconfig/ui/specialcharacters.ui:371
+#: cui/uiconfig/ui/specialcharacters.ui:374
msgctxt "specialcharacters|symboltext1"
msgid "Recent Characters:"
msgstr "أحدث المحارف:"
#. LQZ7q
-#: cui/uiconfig/ui/specialcharacters.ui:605
+#: cui/uiconfig/ui/specialcharacters.ui:608
msgctxt "specialcharacters|favbtn|symboltext2"
msgid "Favorite Characters:"
msgstr "المحارف المفضّلة:"
#. DhG6L
-#: cui/uiconfig/ui/specialcharacters.ui:903
+#: cui/uiconfig/ui/specialcharacters.ui:906
msgctxt "specialcharacters|extended_tip|SpecialCharactersDialog"
msgid "Allows a user to insert characters from the range of symbols found in the installed fonts."
msgstr ""
diff --git a/source/ar/filter/messages.po b/source/ar/filter/messages.po
index 168e9c2d04c..22d870de2c9 100644
--- a/source/ar/filter/messages.po
+++ b/source/ar/filter/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2022-01-31 18:19+0100\n"
+"POT-Creation-Date: 2022-06-15 22:28+0200\n"
"PO-Revision-Date: 2022-05-25 10:44+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_ui-master/filtermessages/ar/>\n"
@@ -1516,10 +1516,10 @@ msgctxt "pdfviewpage|fitvis"
msgid "Fit _visible"
msgstr "لائم ال_رؤية"
-#. FD8Pp
+#. EBBzj
#: filter/uiconfig/ui/pdfviewpage.ui:254
msgctxt "pdfviewpage|extended_tip|fitvis"
-msgid "Select to generate a PDF file that shows the text and graphics on the page zoomed to fit the width of the reader's window."
+msgid "Select to generate a PDF file that shows the text and graphics on the page zoomed to fit the reader's window."
msgstr ""
#. NGpWy
@@ -1919,10 +1919,10 @@ msgctxt "xmlfiltertabpagegeneral|extended_tip|filtername"
msgid "Enter the name that you want to display in the list box of the XML Filter Settings dialog."
msgstr ""
-#. Tbmcc
+#. D5aZP
#: filter/uiconfig/ui/xmlfiltertabpagegeneral.ui:119
msgctxt "xmlfiltertabpagegeneral|extended_tip|extension"
-msgid "Enter the file extension to use when you open a file without specifying a filter. The file extension to used to determine which filter to use."
+msgid "Enter the file extension to use when you open a file without specifying a filter. The file extension is used to determine which filter to use."
msgstr ""
#. fZvBA
diff --git a/source/ar/helpcontent2/source/text/scalc/01.po b/source/ar/helpcontent2/source/text/scalc/01.po
index 25e67fbc6d8..9c2178908c2 100644
--- a/source/ar/helpcontent2/source/text/scalc/01.po
+++ b/source/ar/helpcontent2/source/text/scalc/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2022-06-09 11:50+0200\n"
+"POT-Creation-Date: 2022-06-15 22:28+0200\n"
"PO-Revision-Date: 2021-02-18 20:36+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_help-master/textscalc01/ar/>\n"
@@ -69028,13 +69028,13 @@ msgctxt ""
msgid "<emph>Group</emph>: sets the minimum (maximum) value based on the lower and higher values found in the group of sparklines."
msgstr ""
-#. E6s55
+#. NNez9
#: sparklines.xhp
msgctxt ""
"sparklines.xhp\n"
"par_id51654181442414\n"
"help.text"
-msgid "<emph>Custom:</emph> enter the minimum (maximum) value for the sparkline group."
+msgid "<emph>Custom</emph>: enter the minimum (maximum) value for the sparkline group. Enter the minimum (maximum) values or use the spin buttons."
msgstr ""
#. CNBDD
diff --git a/source/ar/helpcontent2/source/text/scalc/guide.po b/source/ar/helpcontent2/source/text/scalc/guide.po
index 766de8b4242..468735a6585 100644
--- a/source/ar/helpcontent2/source/text/scalc/guide.po
+++ b/source/ar/helpcontent2/source/text/scalc/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2022-02-04 12:33+0100\n"
+"POT-Creation-Date: 2022-06-15 22:28+0200\n"
"PO-Revision-Date: 2021-03-08 14:24+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_help-master/textscalcguide/ar/>\n"
@@ -2275,13 +2275,13 @@ msgctxt ""
msgid "Copy, delete, move, or format a selection of currently visible cells."
msgstr ""
-#. FEuz7
+#. VccAs
#: cellcopy.xhp
msgctxt ""
"cellcopy.xhp\n"
"par_id3154371\n"
"help.text"
-msgid "All cells of the selection, including the hidden cells, are copied, deleted, moved, or formatted."
+msgid "By default, all cells of the selection, including the hidden cells, are copied, deleted, moved, or formatted. Restrict the selection to visible rows choosing <menuitem>Edit - Select - Select Visible Rows Only</menuitem> or to visible columns choosing <menuitem>Edit - Select - Select Visible Columns Only</menuitem>."
msgstr ""
#. rBtUY
diff --git a/source/ar/helpcontent2/source/text/shared/00.po b/source/ar/helpcontent2/source/text/shared/00.po
index 5ca1f3a1c1e..17d3a11b435 100644
--- a/source/ar/helpcontent2/source/text/shared/00.po
+++ b/source/ar/helpcontent2/source/text/shared/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2022-06-09 11:50+0200\n"
+"POT-Creation-Date: 2022-06-15 22:28+0200\n"
"PO-Revision-Date: 2021-03-07 18:15+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_help-master/textshared00/ar/>\n"
@@ -7963,13 +7963,22 @@ msgctxt ""
msgid "OLE Object"
msgstr ""
-#. UFnGc
+#. 36hBn
+#: 00000404.xhp
+msgctxt ""
+"00000404.xhp\n"
+"par_id761566316165430\n"
+"help.text"
+msgid "Choose <menuitem>Insert - OLE Object - QR and Barcode</menuitem>."
+msgstr ""
+
+#. F9Wus
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
"par_id3150393\n"
"help.text"
-msgid "Choose <menuitem>Insert - OLE Object - Formula Object</menuitem>."
+msgid "<variable id=\"insert_formula\">Choose <menuitem>Insert - OLE Object - Formula Object</menuitem>.</variable>"
msgstr ""
#. kQdhV
@@ -15019,13 +15028,13 @@ msgctxt ""
msgid "<variable id=\"linkae\">Choose <menuitem>Edit - Links to External Files - Modify...</menuitem> (DDE links only).</variable>"
msgstr ""
-#. qo8gR
+#. bgzTi
#: edit_menu.xhp
msgctxt ""
"edit_menu.xhp\n"
"par_id3148927\n"
"help.text"
-msgid "Select a frame, then choose <menuitem>Edit - Object - Properties</menuitem>."
+msgid "Select a frame, then choose <menuitem>Edit - OLE Object - Properties</menuitem>."
msgstr ""
#. cDcix
@@ -15037,31 +15046,31 @@ msgctxt ""
msgid "Open context menu of selected frame, choose <menuitem>Properties</menuitem>."
msgstr ""
-#. jmnro
+#. 5TkgL
#: edit_menu.xhp
msgctxt ""
"edit_menu.xhp\n"
"par_id3149259\n"
"help.text"
-msgid "<variable id=\"edit1\">Choose <menuitem>Edit - Object</menuitem>.</variable>"
+msgid "<variable id=\"edit1\">Choose <menuitem>Edit - OLE Object</menuitem>.</variable>"
msgstr ""
-#. XAqNW
+#. ApejL
#: edit_menu.xhp
msgctxt ""
"edit_menu.xhp\n"
"par_id3154966\n"
"help.text"
-msgid "<variable id=\"edit2\">Choose <menuitem>Edit - Object - Edit</menuitem>, also in the context menu of selected object.</variable>"
+msgid "<variable id=\"edit2\">Choose <menuitem>Edit - OLE Object - Edit</menuitem>, also in the context menu of selected object.</variable>"
msgstr ""
-#. sA6YF
+#. 9Gp6Z
#: edit_menu.xhp
msgctxt ""
"edit_menu.xhp\n"
"par_id3149565\n"
"help.text"
-msgid "<variable id=\"edit3\">Choose <menuitem>Edit - Object - Open</menuitem>.</variable>"
+msgid "<variable id=\"edit3\">Choose <menuitem>Edit - OLE Object - Open</menuitem>.</variable>"
msgstr ""
#. kQifg
diff --git a/source/ar/helpcontent2/source/text/shared/01.po b/source/ar/helpcontent2/source/text/shared/01.po
index be74f009164..733f3868d5e 100644
--- a/source/ar/helpcontent2/source/text/shared/01.po
+++ b/source/ar/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2022-06-09 11:50+0200\n"
+"POT-Creation-Date: 2022-06-15 22:28+0200\n"
"PO-Revision-Date: 2021-03-08 14:24+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_help-master/textshared01/ar/>\n"
@@ -11050,41 +11050,41 @@ msgctxt ""
msgid "<ahelp hid=\"sfx/ui/linkeditdialog/category\">Lists the section or object that the link refers to in the source file. If you want, you can enter a new section or object here.</ahelp>"
msgstr ""
-#. nWEMa
+#. 4FLU6
#: 02200000.xhp
msgctxt ""
"02200000.xhp\n"
"tit\n"
"help.text"
-msgid "Edit Object"
+msgid "OLE Object (Edit)"
msgstr ""
-#. nBCA7
+#. VrRPX
#: 02200000.xhp
msgctxt ""
"02200000.xhp\n"
"hd_id3146959\n"
"help.text"
-msgid "<link href=\"text/shared/01/02200000.xhp\" name=\"Object\">Edit Object</link>"
-msgstr "<link href=\"text/shared/01/01020000.xhp\" name=\"Open\">فتح</link>"
+msgid "<link href=\"text/shared/01/02200000.xhp\" name=\"Object\">OLE Object</link>"
+msgstr ""
-#. 6bDqk
+#. QMGSE
#: 02200000.xhp
msgctxt ""
"02200000.xhp\n"
"par_id3154840\n"
"help.text"
-msgid "<variable id=\"object_text\"><ahelp hid=\".uno:ObjectMenue\">Lets you edit a selected object in your file that you inserted with the <item type=\"menuitem\">Insert - Object</item> command.</ahelp></variable>"
+msgid "<variable id=\"object_text\"><ahelp hid=\".uno:ObjectMenue\">Lets you edit a selected OLE object that you inserted from the <menuitem>Insert - OLE Object</menuitem> submenu.</ahelp></variable>"
msgstr ""
-#. YDqFE
+#. NWE46
#: 02200000.xhp
msgctxt ""
"02200000.xhp\n"
"par_id3153551\n"
"help.text"
-msgid "<link href=\"text/shared/01/04150000.xhp\" name=\"Insert - Object\">Insert - Object</link>"
-msgstr "<link href=\"text/shared/01/01020000.xhp\" name=\"Open\">فتح</link>"
+msgid "<embedvar href=\"text/shared/01/04150000.xhp#oleobjecth1\"/>"
+msgstr ""
#. HB6iE
#: 02200000.xhp
@@ -11122,13 +11122,13 @@ msgctxt ""
msgid "<link href=\"text/shared/01/02200100.xhp\" name=\"Edit\">Edit</link>"
msgstr "<link href=\"text/shared/01/02230401.xhp\" name=\"List\">قائمة</link>"
-#. MmR4v
+#. CP7mz
#: 02200100.xhp
msgctxt ""
"02200100.xhp\n"
"par_id3150008\n"
"help.text"
-msgid "<ahelp visibility=\"visible\" hid=\".\">Lets you edit a selected object in your file that you inserted with the <emph>Insert – Object</emph> command.</ahelp>"
+msgid "<ahelp visibility=\"visible\" hid=\".\">Lets you edit a selected OLE object that you inserted with the <menuitem>Insert – OLE Object</menuitem> command.</ahelp>"
msgstr ""
#. PXv8N
@@ -15469,13 +15469,13 @@ msgctxt ""
msgid "OLE Object (Insert Menu)"
msgstr ""
-#. hq7i8
+#. 9hJLy
#: 04150000.xhp
msgctxt ""
"04150000.xhp\n"
"hd_id3146873\n"
"help.text"
-msgid "<link href=\"text/shared/01/04150000.xhp\" name=\"Object\">OLE Object</link>"
+msgid "<variable id=\"oleobjecth1\"><link href=\"text/shared/01/04150000.xhp\" name=\"Object\">OLE Object</link></variable>"
msgstr ""
#. s2t34
diff --git a/source/ar/helpcontent2/source/text/shared/guide.po b/source/ar/helpcontent2/source/text/shared/guide.po
index fe79933ed5f..fd95137bb43 100644
--- a/source/ar/helpcontent2/source/text/shared/guide.po
+++ b/source/ar/helpcontent2/source/text/shared/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2022-06-10 13:58+0200\n"
+"POT-Creation-Date: 2022-06-15 22:28+0200\n"
"PO-Revision-Date: 2021-11-26 20:38+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_help-master/textsharedguide/ar/>\n"
@@ -2626,13 +2626,13 @@ msgctxt ""
msgid "<bookmark_value>custom;classification levels</bookmark_value> <bookmark_value>classification levels;customizing</bookmark_value>"
msgstr ""
-#. 3wmPg
+#. NfubP
#: classification.xhp
msgctxt ""
"classification.xhp\n"
"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 <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><menuitem> - LibreOffice - Paths - Classification</menuitem> into a local folder and edit the contents."
+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 <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><menuitem> - %PRODUCTNAME - Paths - Classification</menuitem> into a local folder and edit the contents."
msgstr ""
#. Tcss6
@@ -11482,13 +11482,13 @@ msgctxt ""
msgid "To edit the OLE object, double-click on it."
msgstr ""
-#. FTF7g
+#. 8DbMH
#: dragdrop_table.xhp
msgctxt ""
"dragdrop_table.xhp\n"
"par_id3155389\n"
"help.text"
-msgid "Alternatively, select the object and choose <emph>Edit - Object - Edit</emph> or choose <emph>Edit</emph> from the context menu. You edit the object in its own frame within the text document, but you see the icons and menu commands needed for spreadsheets."
+msgid "Alternatively, select the object and choose <menuitem>Edit - OLE Object - Edit</menuitem> or choose <menuitem>Edit</menuitem> from the context menu. You edit the object in its own frame within the text document, but you see the icons and menu commands needed for spreadsheets."
msgstr ""
#. uFCGU
@@ -22660,15 +22660,6 @@ msgctxt ""
msgid "The QR and Barcode generation feature allows you to encode any text string or URL as a barcode or a QR code and insert it as a graphical object in a document for scanning."
msgstr ""
-#. N32UF
-#: qrcode.xhp
-msgctxt ""
-"qrcode.xhp\n"
-"par_id761566316165430\n"
-"help.text"
-msgid "Choose <menuitem>Insert - Object - QR and Barcode</menuitem>."
-msgstr ""
-
#. UCeXG
#: qrcode.xhp
msgctxt ""
diff --git a/source/ar/helpcontent2/source/text/smath/guide.po b/source/ar/helpcontent2/source/text/smath/guide.po
index b29dc00c000..2203f8ab888 100644
--- a/source/ar/helpcontent2/source/text/smath/guide.po
+++ b/source/ar/helpcontent2/source/text/smath/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2022-01-31 18:20+0100\n"
+"POT-Creation-Date: 2022-06-15 22:28+0200\n"
"PO-Revision-Date: 2017-05-09 15:54+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -835,13 +835,13 @@ msgctxt ""
msgid "Select the formula"
msgstr ""
-#. bN6uQ
+#. F2ipo
#: keyboard.xhp
msgctxt ""
"keyboard.xhp\n"
"par_id3150213\n"
"help.text"
-msgid "Choose the command <emph>Insert - Object - Formula</emph>."
+msgid "Choose the command <menuitem>Insert - OLE Object - Formula Object</menuitem>."
msgstr ""
#. aowxC
@@ -853,13 +853,13 @@ msgctxt ""
msgid "Inserting a Formula using a Window"
msgstr ""
-#. Tqx4F
+#. Jvobx
#: keyboard.xhp
msgctxt ""
"keyboard.xhp\n"
"par_id3149875\n"
"help.text"
-msgid "If you want to use the $[officename] Math interface to edit a formula, choose the command <emph>Insert - Object - Formula</emph> without any text selected."
+msgid "If you want to use the $[officename] Math interface to edit a formula, choose the command <menuitem>Insert - OLE Object - Formula Object</menuitem> without any text selected."
msgstr ""
#. sEBBM
@@ -943,13 +943,13 @@ msgctxt ""
msgid "You want to insert a summation formula like \"summation of s^k from k = 0 to n\" at the cursor in a Writer text document."
msgstr ""
-#. 5oKcr
+#. kEJWp
#: limits.xhp
msgctxt ""
"limits.xhp\n"
"par_id8811304\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Insert - Object - Formula</item>."
+msgid "<embedvar href=\"text/shared/00/00000404.xhp#insert_formula\"/>"
msgstr ""
#. qAFch
@@ -1033,13 +1033,13 @@ msgctxt ""
msgid "In the same way, you can enter an Integral formula with limits. When you click an icon from the Elements pane, the assigned text command is inserted in the input window. If you know the text commands, you can enter the commands directly in the input window."
msgstr ""
-#. q8yAH
+#. 57GSa
#: limits.xhp
msgctxt ""
"limits.xhp\n"
"par_id5866267\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Insert - Object - Formula</item>."
+msgid "<embedvar href=\"text/shared/00/00000404.xhp#insert_formula\"/>"
msgstr ""
#. VAoyi
diff --git a/source/ar/helpcontent2/source/text/swriter/01.po b/source/ar/helpcontent2/source/text/swriter/01.po
index c408b96cce9..102bf130550 100644
--- a/source/ar/helpcontent2/source/text/swriter/01.po
+++ b/source/ar/helpcontent2/source/text/swriter/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2022-06-09 11:50+0200\n"
+"POT-Creation-Date: 2022-06-15 22:28+0200\n"
"PO-Revision-Date: 2021-03-07 18:15+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_help-master/textswriter01/ar/>\n"
@@ -18169,22 +18169,22 @@ msgctxt ""
msgid "<emph>Right paragraph border:</emph> the object is positioned considering the width of the indent space available to the right of the paragraph."
msgstr ""
-#. UWViJ
+#. QrQHe
#: 05060100.xhp
msgctxt ""
"05060100.xhp\n"
"par_id171629211714933\n"
"help.text"
-msgid "<emph>Left page border:</emph> the object is positioned considering the space available between the left page border and the left paragraph border."
+msgid "<menuitem>Left of page text area</menuitem>: the object is positioned in the region between the left edge of the page and the left margin plus any left page padding."
msgstr ""
-#. F9qZf
+#. DzD2e
#: 05060100.xhp
msgctxt ""
"05060100.xhp\n"
"par_id131629211715280\n"
"help.text"
-msgid "<emph>Right page border:</emph> the object is positioned considering the space available between the right page border and the right paragraph border."
+msgid "<menuitem>Right of page text area</menuitem>: the object is positioned in the region between the right edge of the page and the right margin plus any right page padding."
msgstr ""
#. norkq
diff --git a/source/ar/helpcontent2/source/text/swriter/guide.po b/source/ar/helpcontent2/source/text/swriter/guide.po
index 36a80b84536..2fc5cc2889d 100644
--- a/source/ar/helpcontent2/source/text/swriter/guide.po
+++ b/source/ar/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2022-06-09 11:50+0200\n"
+"POT-Creation-Date: 2022-06-15 22:28+0200\n"
"PO-Revision-Date: 2021-03-07 18:15+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_help-master/textswriterguide/ar/>\n"
@@ -43,13 +43,13 @@ msgctxt ""
msgid "<variable id=\"anchor_object\"><link href=\"text/swriter/guide/anchor_object.xhp\" name=\"Positioning Objects\">Positioning Objects</link></variable>"
msgstr "<variable id=\"anchor_object\"><link href=\"text/swriter/guide/anchor_object.xhp\" name=\"Positioning Objects\">مَوضَعة الكائنات</link></variable>"
-#. MDGBe
+#. WBVDD
#: anchor_object.xhp
msgctxt ""
"anchor_object.xhp\n"
"par_id181634295881266\n"
"help.text"
-msgid "An object, such as an image or frame, is positioned within a document using anchors attached to other elements."
+msgid "An object, such as an image or frame, is positioned within a document using an anchor attached to another element."
msgstr ""
#. FAyRX
diff --git a/source/ar/svx/messages.po b/source/ar/svx/messages.po
index ba263eae29b..fc1fa5bd4b3 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: 2022-06-09 11:50+0200\n"
+"POT-Creation-Date: 2022-06-15 22:28+0200\n"
"PO-Revision-Date: 2022-06-06 17:38+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_ui-master/svxmessages/ar/>\n"
@@ -17177,13 +17177,13 @@ msgid "_Kern Character Pairs"
msgstr ""
#. 8SKCU
-#: svx/uiconfig/ui/fontworkgallerydialog.ui:18
+#: svx/uiconfig/ui/fontworkgallerydialog.ui:16
msgctxt "fontworkgallerydialog|FontworkGalleryDialog"
msgid "Fontwork Gallery"
msgstr "معرض معمل الخطوط"
#. GB7pa
-#: svx/uiconfig/ui/fontworkgallerydialog.ui:101
+#: svx/uiconfig/ui/fontworkgallerydialog.ui:99
msgctxt "fontworkgallerydialog|label1"
msgid "Select a Fontwork style:"
msgstr "حدد طراز معمل الخطوط:"
diff --git a/source/ar/sw/messages.po b/source/ar/sw/messages.po
index 2da3483efe6..eb87986c156 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: 2022-06-09 11:51+0200\n"
+"POT-Creation-Date: 2022-06-15 22:29+0200\n"
"PO-Revision-Date: 2022-06-06 17:38+0000\n"
"Last-Translator: Riyadh Talal <riyadhtalal@gmail.com>\n"
"Language-Team: Arabic <https://translations.documentfoundation.org/projects/libo_ui-master/swmessages/ar/>\n"
@@ -14172,11 +14172,11 @@ msgctxt "envprinterpage|setup"
msgid "Setup..."
msgstr "أعدّ..."
-#. jyNbK
+#. 4GuQN
#: sw/uiconfig/swriter/ui/envprinterpage.ui:467
msgctxt "envprinterpage|extended_tip|setup"
-msgid "Opens the Print Setup dialog where you can define additional printer settings, such as paper format and orientation."
-msgstr "يفتح حوار إعدادات الطابعة حيث يمكنك تعريف إعدادات إضافية للطابعة مثل تنسيق واتجاه الورق."
+msgid "Opens the Printer Setup dialog where you can define additional printer settings, such as paper format and orientation."
+msgstr ""
#. AKs6U
#: sw/uiconfig/swriter/ui/envprinterpage.ui:481
@@ -17620,10 +17620,10 @@ msgctxt "insertdbcolumnsdialog|extended_tip|tabledbcols"
msgid "Specifies the database columns to be inserted into the text table."
msgstr ""
-#. XmaQd
+#. xupgr
#: sw/uiconfig/swriter/ui/insertdbcolumnsdialog.ui:559
msgctxt "insertdbcolumnsdialog|extended_tip|tabletxtcols"
-msgid "Select the database columns that you want to insert it in the document."
+msgid "Select the database columns that you want to insert in the document."
msgstr ""
#. DJStE
@@ -18149,45 +18149,39 @@ msgctxt "labeldialog|extended_tip|ok"
msgid "Creates a new document for editing."
msgstr "ينشئ مستنداً جديداً للتحرير."
-#. EtFBT
-#: sw/uiconfig/swriter/ui/labeldialog.ui:141
-msgctxt "labeldialog|medium"
-msgid "Medium"
-msgstr "متوسط"
-
#. hJSCq
-#: sw/uiconfig/swriter/ui/labeldialog.ui:188
+#: sw/uiconfig/swriter/ui/labeldialog.ui:144
msgctxt "labeldialog|labels"
msgid "Labels"
msgstr "اللصائق"
#. G378Z
-#: sw/uiconfig/swriter/ui/labeldialog.ui:236
+#: sw/uiconfig/swriter/ui/labeldialog.ui:192
msgctxt "labeldialog|private"
msgid "Private"
msgstr "شخصي"
#. CAEMT
-#: sw/uiconfig/swriter/ui/labeldialog.ui:284
+#: sw/uiconfig/swriter/ui/labeldialog.ui:240
#, fuzzy
msgctxt "labeldialog|business"
msgid "Business"
msgstr "عمل"
#. a7BSb
-#: sw/uiconfig/swriter/ui/labeldialog.ui:332
+#: sw/uiconfig/swriter/ui/labeldialog.ui:288
msgctxt "labeldialog|format"
msgid "Format"
msgstr "التنسيق"
#. cs8CW
-#: sw/uiconfig/swriter/ui/labeldialog.ui:380
+#: sw/uiconfig/swriter/ui/labeldialog.ui:336
msgctxt "labeldialog|options"
msgid "Options"
msgstr "خيارات"
#. uB6wE
-#: sw/uiconfig/swriter/ui/labeldialog.ui:407
+#: sw/uiconfig/swriter/ui/labeldialog.ui:363
msgctxt "labeldialog|extended_tip|LabelDialog"
msgid "Allows you to create labels. Labels are created in a text document."
msgstr ""
@@ -20389,26 +20383,32 @@ msgctxt "mmselectpage|extended_tip|browsetemplate"
msgid "Opens a template selector dialog."
msgstr ""
-#. qieQK
+#. EDivp
#: sw/uiconfig/swriter/ui/mmselectpage.ui:191
-msgctxt "mmselectpage|extended_tip|datasourcewarning"
+msgctxt "mmselectpage|datasourcewarning"
msgid "Data source of the current document is not registered. Please exchange database."
msgstr ""
-#. QcsgV
+#. NGYGa
#: sw/uiconfig/swriter/ui/mmselectpage.ui:200
+msgctxt "mmselectpage|exchangedatabase"
+msgid "Exchange Databases..."
+msgstr ""
+
+#. YjZmM
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:208
msgctxt "mmselectpage|extended_tip|exchangedatabase"
-msgid "Exchange Database..."
+msgid "Click to exchange the databases of your mail merge."
msgstr ""
#. 8ESAz
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:218
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:223
msgctxt "mmselectpage|label1"
msgid "Select Starting Document for the Mail Merge"
msgstr "اختر مستند البداية لدمج المراسلات"
#. Hpca5
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:233
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:238
msgctxt "mmselectpage|extended_tip|MMSelectPage"
msgid "Specify the document that you want to use as a base for the mail merge document."
msgstr ""
@@ -22580,49 +22580,49 @@ msgid "OLE Object"
msgstr ""
#. eRTnb
-#: sw/uiconfig/swriter/ui/objectdialog.ui:109
+#: sw/uiconfig/swriter/ui/objectdialog.ui:110
msgctxt "objectdialog|type"
msgid "Position and Size"
msgstr ""
#. ADJiB
-#: sw/uiconfig/swriter/ui/objectdialog.ui:132
+#: sw/uiconfig/swriter/ui/objectdialog.ui:133
msgctxt "objectdialog|options"
msgid "Options"
msgstr "خيارات"
#. s9Kta
-#: sw/uiconfig/swriter/ui/objectdialog.ui:156
+#: sw/uiconfig/swriter/ui/objectdialog.ui:157
msgctxt "objectdialog|wrap"
msgid "Wrap"
msgstr "التفاف"
#. vtCHo
-#: sw/uiconfig/swriter/ui/objectdialog.ui:180
+#: sw/uiconfig/swriter/ui/objectdialog.ui:181
msgctxt "objectdialog|hyperlink"
msgid "Hyperlink"
msgstr "رابط تشعبي"
#. GquSU
-#: sw/uiconfig/swriter/ui/objectdialog.ui:204
+#: sw/uiconfig/swriter/ui/objectdialog.ui:205
msgctxt "objectdialog|borders"
msgid "Borders"
msgstr "الحدود"
#. L6dGA
-#: sw/uiconfig/swriter/ui/objectdialog.ui:228
+#: sw/uiconfig/swriter/ui/objectdialog.ui:229
msgctxt "objectdialog|area"
msgid "Area"
msgstr "منطقة"
#. zJ76x
-#: sw/uiconfig/swriter/ui/objectdialog.ui:252
+#: sw/uiconfig/swriter/ui/objectdialog.ui:253
msgctxt "objectdialog|transparence"
msgid "Transparency"
msgstr "الشفافية"
#. FVDe9
-#: sw/uiconfig/swriter/ui/objectdialog.ui:276
+#: sw/uiconfig/swriter/ui/objectdialog.ui:277
msgctxt "objectdialog|macro"
msgid "Macro"
msgstr "ماكرو"
@@ -25306,10 +25306,10 @@ msgctxt "printoptionspage|background"
msgid "Page ba_ckground"
msgstr "خل_فية الصفحة"
-#. ocn5F
+#. DAfze
#: sw/uiconfig/swriter/ui/printoptionspage.ui:80
-msgctxt "extended_tip|background"
-msgid "Specifies whether to include colors and objects that are inserted to the background of the page (Format - Page - Background) in the printed document."
+msgctxt "printoptionspage|extended_tip|background"
+msgid "Specifies whether to include colors and objects that are inserted to the background of the page style (Format - Page Style - Area) in the printed document."
msgstr ""
#. FWBUe
@@ -25414,10 +25414,10 @@ msgctxt "printoptionspage|none"
msgid "_None"
msgstr "_بلا"
-#. CDv8b
+#. d4YMs
#: sw/uiconfig/swriter/ui/printoptionspage.ui:298
-msgctxt "extended_tip|none"
-msgid "Specifies whether comments in your document are printed."
+msgctxt "printoptionspage|extended_tip|none"
+msgid "Do not print document comments."
msgstr ""
#. 6vPTt
@@ -25426,10 +25426,10 @@ msgctxt "printoptionspage|only"
msgid "Comments _only"
msgstr "التعليقات _فقط"
-#. KsL3A
+#. aBf74
#: sw/uiconfig/swriter/ui/printoptionspage.ui:318
-msgctxt "extended_tip|only"
-msgid "Specifies whether comments in your document are printed."
+msgctxt "printoptionspage|extended_tip|only"
+msgid "Only print the comments of your document."
msgstr ""
#. n5M2U
@@ -25438,10 +25438,10 @@ msgctxt "printoptionspage|end"
msgid "End of docu_ment"
msgstr "_نهاية المستند"
-#. VxM7F
+#. LgZCr
#: sw/uiconfig/swriter/ui/printoptionspage.ui:338
-msgctxt "extended_tip|end"
-msgid "Specifies whether comments in your document are printed."
+msgctxt "printoptionspage|extended_tip|end"
+msgid "Print comments on a new page at end of the document."
msgstr ""
#. pRqdi
@@ -25450,10 +25450,10 @@ msgctxt "printoptionspage|endpage"
msgid "_End of page"
msgstr "ن_هاية الصفحة"
-#. hxM9Z
+#. c2JD2
#: sw/uiconfig/swriter/ui/printoptionspage.ui:358
msgctxt "extended_tip|endpage"
-msgid "Specifies whether comments in your document are printed."
+msgid "Print comments on a new page after the current page."
msgstr ""
#. oBR83
@@ -25462,10 +25462,10 @@ msgctxt "printoptionspage|inmargins"
msgid "In margins"
msgstr ""
-#. 7aAXX
+#. HTtDH
#: sw/uiconfig/swriter/ui/printoptionspage.ui:378
-msgctxt "extended_tip|inmargins"
-msgid "Specifies whether comments in your document are printed."
+msgctxt "printoptionspage|extended_tip|inmargins"
+msgid "Include the comments boxes on the margin of the page. The page contents is rendered to fit both contents and the comments boxes."
msgstr ""
#. VeG6V
@@ -28345,10 +28345,10 @@ msgctxt "textgridpage|labelFT_RUBYSIZE"
msgid "Max. Ruby text size:"
msgstr "الحجم الأقصى لنص روبي:"
-#. FxPwc
+#. hHaUA
#: sw/uiconfig/swriter/ui/textgridpage.ui:363
msgctxt "textgridpage|extended_tip|spinMF_RUBYSIZE"
-msgid "Enter the font size for the Ruby text."
+msgid "Enter the maximum font size for the Ruby text."
msgstr ""
#. FJFVs
@@ -29514,10 +29514,10 @@ msgctxt "tocindexpage|casesens"
msgid "Case sensitive"
msgstr "_حسّاس للحالة"
-#. rAwSj
+#. sNHCm
#: sw/uiconfig/swriter/ui/tocindexpage.ui:1003
msgctxt "tocindexpage|extended_tip|casesens"
-msgid "Distinguishes between uppercase and lowercase letters in identical index entries. For Asian languages special handling applies."
+msgid "Distinguishes between uppercase and lowercase letters in otherwise identical index entries. For Asian languages special handling applies."
msgstr ""
#. e35vc
diff --git a/source/as/cui/messages.po b/source/as/cui/messages.po
index 257586a2cb7..d9be41648e0 100644
--- a/source/as/cui/messages.po
+++ b/source/as/cui/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2022-06-10 13:57+0200\n"
+"POT-Creation-Date: 2022-06-15 22:27+0200\n"
"PO-Revision-Date: 2021-05-13 23:37+0000\n"
"Last-Translator: Mondeep Kalita <epicdeep09@gmail.com>\n"
"Language-Team: Assamese <https://translations.documentfoundation.org/projects/libo_ui-master/cuimessages/as/>\n"
@@ -3135,10 +3135,10 @@ msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Need custom contents for metadata properties? File ▸ Properties ▸ Custom Properties tab lets you create what you want."
msgstr ""
-#. 9TnEA
+#. beSc7
#: cui/inc/tipoftheday.hrc:208
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Want to see, but not print, an object in Draw? Draw it on a layer for which the “Printable” flag is not set (right click on the tab and “Modify Layer”)."
+msgid "Want to see, but not print, an object in Draw? Draw it on a layer for which the “Printable” flag is not set (right-click the layer’s tab and choose “Modify Layer”)."
msgstr ""
#. CGQaY
@@ -4972,25 +4972,25 @@ msgid "[M]: Replace while modifying existing text"
msgstr "[M]: স্থায়ী লিখনী পৰিবৰ্তন কৰোতে প্ৰতিস্থাপন কৰিব"
#. FtXg9
-#: cui/uiconfig/ui/applyautofmtpage.ui:90
+#: cui/uiconfig/ui/applyautofmtpage.ui:93
msgctxt "applyautofmtpage|label2"
msgid "[T]: AutoCorrect while typing"
msgstr ""
#. NujUD
-#: cui/uiconfig/ui/applyautofmtpage.ui:136
+#: cui/uiconfig/ui/applyautofmtpage.ui:142
msgctxt "applyautofmtpage|m"
msgid "[M]"
msgstr "[M]"
#. qanx6
-#: cui/uiconfig/ui/applyautofmtpage.ui:158
+#: cui/uiconfig/ui/applyautofmtpage.ui:164
msgctxt "applyautofmtpage|t"
msgid "[T]"
msgstr "[T]"
#. 2tG6L
-#: cui/uiconfig/ui/applyautofmtpage.ui:205
+#: cui/uiconfig/ui/applyautofmtpage.ui:211
msgctxt "applyautofmtpage|extended_tip|ApplyAutoFmtPage"
msgid "Select the options for automatically correcting errors as you type, and then click OK."
msgstr ""
@@ -8439,10 +8439,10 @@ msgctxt "dimensionlinestabpage|TSB_PARALLEL"
msgid "_Parallel to line"
msgstr "শাৰীৰ সৈতে সমান্তৰাল (_P)"
-#. gZdFr
+#. CCTEb
#: cui/uiconfig/ui/dimensionlinestabpage.ui:440
msgctxt "dimensionlinestabpage|extended_tip|TSB_PARALLEL"
-msgid "Displays the text parallel to or at 90 degrees to the dimension line."
+msgid "If enabled, displays the text parallel to the dimension line. If disabled, the text is shown at 90 degrees to the dimension line."
msgstr ""
#. QNscD
@@ -8451,10 +8451,10 @@ msgctxt "dimensionlinestabpage|TSB_SHOW_UNIT"
msgid "Show _measurement units"
msgstr "মাপৰ এককসমূহ দেখুৱাওক (_m)"
-#. cJRA9
+#. KQGtM
#: cui/uiconfig/ui/dimensionlinestabpage.ui:461
msgctxt "dimensionlinestabpage|extended_tip|TSB_SHOW_UNIT"
-msgid "Shows or hides the dimension measurement units. You can also select a measurement unit you want to display from the list."
+msgid "Shows or hides the dimension measurement unit. You can select a measurement unit you want to display from the list."
msgstr ""
#. EEaqi
@@ -10522,10 +10522,10 @@ msgctxt "hangulhanjaoptdialog|extended_tip|delete"
msgid "Deletes the selected user-defined dictionary."
msgstr ""
-#. v7Bkk
+#. eG9Qx
#: cui/uiconfig/ui/hangulhanjaoptdialog.ui:231
msgctxt "hangulhanjaoptdialog|extended_tip|dicts"
-msgid "Lists all user-defined dictionaries. Select the check box next to the dictionary that you want to use. Clear the check box next to the dictionary that you do not want to use."
+msgid "Lists all user-defined dictionaries. Select the check box next to the dictionaries that you want to use. Clear the check box next to the dictionaries that you do not want to use."
msgstr ""
#. DmfuX
@@ -10923,20 +10923,20 @@ msgid "Opens the Assign Macro dialog, in which you can give events such as \"mou
msgstr ""
#. TXrCH
-#: cui/uiconfig/ui/hyperlinkdocpage.ui:399
+#: cui/uiconfig/ui/hyperlinkdocpage.ui:391
msgctxt "hyperlinkdocpage|extended_tip|frame"
msgid "Enter the name of the frame that you want the linked file to open in, or select a predefined frame from the list. If you leave this box blank, the linked file opens in the current browser window."
msgstr ""
#. frjow
-#: cui/uiconfig/ui/hyperlinkdocpage.ui:420
+#: cui/uiconfig/ui/hyperlinkdocpage.ui:412
#, fuzzy
msgctxt "hyperlinkdocpage|label1"
msgid "Further Settings"
msgstr "পৰৱৰ্তী সংহতিসমূহ"
#. 789Vi
-#: cui/uiconfig/ui/hyperlinkdocpage.ui:435
+#: cui/uiconfig/ui/hyperlinkdocpage.ui:427
msgctxt "hyperlinkdocpage|extended_tip|HyperlinkDocPage"
msgid "Hyperlinks to any document or targets in documents can be edited using the Document tab from the Hyperlink dialog."
msgstr ""
@@ -11090,20 +11090,20 @@ msgid "Opens the Assign Macro dialog, in which you can give events such as \"mou
msgstr ""
#. C5Hqs
-#: cui/uiconfig/ui/hyperlinkinternetpage.ui:409
+#: cui/uiconfig/ui/hyperlinkinternetpage.ui:401
msgctxt "hyperlinkinternetpage|extended_tip|frame"
msgid "Enter the name of the frame that you want the linked file to open in, or select a predefined frame from the list. If you leave this box blank, the linked file opens in the current browser window."
msgstr ""
#. UKQMX
-#: cui/uiconfig/ui/hyperlinkinternetpage.ui:430
+#: cui/uiconfig/ui/hyperlinkinternetpage.ui:422
#, fuzzy
msgctxt "hyperlinkinternetpage|label1"
msgid "Further Settings"
msgstr "পৰৱৰ্তী সংহতিসমূহ"
#. 8UdTe
-#: cui/uiconfig/ui/hyperlinkinternetpage.ui:445
+#: cui/uiconfig/ui/hyperlinkinternetpage.ui:437
msgctxt "hyperlinkinternetpage|extended_tip|HyperlinkInternetPage"
msgid "Use the Internet page of the Hyperlink dialog to edit hyperlinks with WWW or FTP addresses."
msgstr ""
@@ -11211,20 +11211,20 @@ msgid "Opens the Assign Macro dialog, in which you can give events such as \"mou
msgstr ""
#. CwHdi
-#: cui/uiconfig/ui/hyperlinkmailpage.ui:324
+#: cui/uiconfig/ui/hyperlinkmailpage.ui:316
msgctxt "hyperlinkmailpage|extended_tip|frame"
msgid "Enter the name of the frame that you want the linked file to open in, or select a predefined frame from the list. If you leave this box blank, the linked file opens in the current browser window."
msgstr ""
#. BmHDh
-#: cui/uiconfig/ui/hyperlinkmailpage.ui:345
+#: cui/uiconfig/ui/hyperlinkmailpage.ui:337
#, fuzzy
msgctxt "hyperlinkmailpage|label1"
msgid "Further Settings"
msgstr "পৰৱৰ্তী সংহতিসমূহ"
#. SvyDu
-#: cui/uiconfig/ui/hyperlinkmailpage.ui:360
+#: cui/uiconfig/ui/hyperlinkmailpage.ui:352
msgctxt "hyperlinkmailpage|extended_tip|HyperlinkMailPage"
msgid "On the Mail page in the Hyperlink dialog you can edit hyperlinks for email addresses."
msgstr ""
@@ -11399,20 +11399,20 @@ msgid "Opens the Assign Macro dialog, in which you can give events such as \"mou
msgstr ""
#. rXaNm
-#: cui/uiconfig/ui/hyperlinknewdocpage.ui:408
+#: cui/uiconfig/ui/hyperlinknewdocpage.ui:400
msgctxt "hyperlinknewdocpage|extended_tip|frame"
msgid "Enter the name of the frame that you want the linked file to open in, or select a predefined frame from the list. If you leave this box blank, the linked file opens in the current browser window."
msgstr ""
#. MS2Cn
-#: cui/uiconfig/ui/hyperlinknewdocpage.ui:429
+#: cui/uiconfig/ui/hyperlinknewdocpage.ui:421
#, fuzzy
msgctxt "hyperlinknewdocpage|label1"
msgid "Further Settings"
msgstr "পৰৱৰ্তী সংহতিসমূহ"
#. ztAbs
-#: cui/uiconfig/ui/hyperlinknewdocpage.ui:444
+#: cui/uiconfig/ui/hyperlinknewdocpage.ui:436
msgctxt "hyperlinknewdocpage|extended_tip|HyperlinkNewDocPage"
msgid "Use the New Document tab from the Hyperlink dialog to set up a hyperlink to a new document and create the new document simultaneously."
msgstr ""
@@ -12192,10 +12192,10 @@ msgctxt "langtoolconfigpage|base"
msgid "Base URL:"
msgstr ""
-#. 9to2D
+#. z58D6
#: cui/uiconfig/ui/langtoolconfigpage.ui:111
msgctxt "langtoolconfigpage|usernamelbl"
-msgid "User name:"
+msgid "Username:"
msgstr ""
#. B8kMr
@@ -12204,32 +12204,32 @@ msgctxt "langtoolconfigpage|apikeylbl"
msgid "API key:"
msgstr ""
-#. AoT7Z
+#. LBMkb
#: cui/uiconfig/ui/langtoolconfigpage.ui:159
msgctxt "langtoolconfigpage|urldesc"
-msgid "Please use the base URL e.g. without \"/check\" at the end."
+msgid "Please use the base URL, i.e., without “/check”, at the end."
msgstr ""
-#. EDETM
-#: cui/uiconfig/ui/langtoolconfigpage.ui:171
+#. 77oav
+#: cui/uiconfig/ui/langtoolconfigpage.ui:174
msgctxt "langtoolconfigpage|usernamedesc"
-msgid "Your LanguageTool account's username for premium usage."
+msgid "Your LanguageTool account’s username for premium usage."
msgstr ""
-#. aDGJf
-#: cui/uiconfig/ui/langtoolconfigpage.ui:183
+#. tGuAh
+#: cui/uiconfig/ui/langtoolconfigpage.ui:189
msgctxt "langtoolconfigpage|apikeydesc"
-msgid "Your LanguageTool account's api key for premium usage."
+msgid "Your LanguageTool account’s API key for premium usage."
msgstr ""
#. Dn8bb
-#: cui/uiconfig/ui/langtoolconfigpage.ui:206
+#: cui/uiconfig/ui/langtoolconfigpage.ui:215
msgctxt "langtoolconfigpage|apisettingsheader"
msgid "API Settings"
msgstr ""
#. Ntss5
-#: cui/uiconfig/ui/langtoolconfigpage.ui:225
+#: cui/uiconfig/ui/langtoolconfigpage.ui:234
msgctxt "langtoolconfigpage|langtoolsettings"
msgid "LanguageTool API Options"
msgstr ""
@@ -14813,76 +14813,76 @@ msgstr "[L]: অভজেক্টটো লোড কৰি পৰিৱৰ্
#. PiDB7
#. The [S] here is repeated as the column title for the "Save" column of this options page
-#: cui/uiconfig/ui/optfltrembedpage.ui:163
+#: cui/uiconfig/ui/optfltrembedpage.ui:166
msgctxt "optfltrembedpage|label3"
msgid "[S]: Convert and save the object"
msgstr "[S]: অবজেক্টটো পৰিৱৰ্তন কৰি সঞ্চয় কৰক"
#. f2hGQ
-#: cui/uiconfig/ui/optfltrembedpage.ui:185
+#: cui/uiconfig/ui/optfltrembedpage.ui:191
#, fuzzy
msgctxt "optfltrembedpage|label1"
msgid "Embedded Objects"
msgstr "অন্তৰ্ভুক্ত অবজেক্টসমূহ"
#. nvE89
-#: cui/uiconfig/ui/optfltrembedpage.ui:215
+#: cui/uiconfig/ui/optfltrembedpage.ui:221
msgctxt "optfltrembedpage|label5"
msgid "Export as:"
msgstr ""
#. FEeH6
-#: cui/uiconfig/ui/optfltrembedpage.ui:230
+#: cui/uiconfig/ui/optfltrembedpage.ui:236
#, fuzzy
msgctxt "optfltrembedpage|highlighting"
msgid "Highlighting"
msgstr "আলোকিত কৰি আছে"
#. qBuyX
-#: cui/uiconfig/ui/optfltrembedpage.ui:239
+#: cui/uiconfig/ui/optfltrembedpage.ui:245
msgctxt "extended_tip|highlighting"
msgid "Microsoft Office has two character attributes similar to Writer character background. Select the appropriate attribute (highlighting or shading) which you would like to use during export to Microsoft Office file formats."
msgstr ""
#. Dnrx7
-#: cui/uiconfig/ui/optfltrembedpage.ui:251
+#: cui/uiconfig/ui/optfltrembedpage.ui:257
#, fuzzy
msgctxt "optfltrembedpage|shading"
msgid "Shading"
msgstr "Shading"
#. 3PFE2
-#: cui/uiconfig/ui/optfltrembedpage.ui:260
+#: cui/uiconfig/ui/optfltrembedpage.ui:266
msgctxt "extended_tip|shading"
msgid "Microsoft Office has two character attributes similar to Writer character background. Select the appropriate attribute (highlighting or shading) which you would like to use during export to Microsoft Office file formats."
msgstr ""
#. gKwdG
-#: cui/uiconfig/ui/optfltrembedpage.ui:283
+#: cui/uiconfig/ui/optfltrembedpage.ui:289
msgctxt "optfltrembedpage|label4"
msgid "Character Highlighting"
msgstr ""
#. tyACF
-#: cui/uiconfig/ui/optfltrembedpage.ui:310
+#: cui/uiconfig/ui/optfltrembedpage.ui:316
msgctxt "optfltrembedpage|mso_lockfile"
msgid "Create MSO lock file"
msgstr ""
#. qc4GD
-#: cui/uiconfig/ui/optfltrembedpage.ui:319
+#: cui/uiconfig/ui/optfltrembedpage.ui:325
msgctxt "extended_tip|mso_lockfile"
msgid "Mark this checkbox to generate a Microsoft Office lock file in addition to this office suite's own lock file."
msgstr ""
#. Sg5Bw
-#: cui/uiconfig/ui/optfltrembedpage.ui:335
+#: cui/uiconfig/ui/optfltrembedpage.ui:341
msgctxt "optfltrembedpage|label5"
msgid "Lock Files"
msgstr ""
#. EUBnP
-#: cui/uiconfig/ui/optfltrembedpage.ui:349
+#: cui/uiconfig/ui/optfltrembedpage.ui:355
msgctxt "extended_tip|OptFilterPage"
msgid "Specifies the settings for importing and exporting Microsoft Office and other documents."
msgstr ""
@@ -15157,10 +15157,10 @@ msgctxt "optgeneralpage|exthelp"
msgid "_Extended tips"
msgstr "প্ৰসাৰিত সহায়সমূহ (_E)"
-#. ypuz2
+#. TyqBV
#: cui/uiconfig/ui/optgeneralpage.ui:42
msgctxt "extended_tip | exthelp"
-msgid "Displays a help text when you rest the cursor on an icon, a menu command, or a control on a dialog."
+msgid "Displays a help text when you rest the mouse pointer on an icon, a menu command, or a control on a dialog."
msgstr ""
#. Cbeuc
@@ -16900,7 +16900,7 @@ msgid "Passwords are protected by a master password. You will be asked to enter
msgstr "ৱেব সংযোগৰ বাবে পাছৱৰ্ডক সুৰক্ষিত কৰা হয়। পৰতি অধিবেশনে আপুনি তাক দিব লাগিব, যদি %PRODUCTNAME এ সেই তালিকাৰ পৰা কোনো পাছৱৰ্ড উদ্ধাৰ কৰে।"
#. 7gzb7
-#: cui/uiconfig/ui/optsecuritypage.ui:303
+#: cui/uiconfig/ui/optsecuritypage.ui:306
msgctxt "optsecuritypage|nopasswordsave"
msgid ""
"Disabling the function to persistently store passwords deletes the list of passwords stored and resets the master password.\n"
@@ -16912,63 +16912,63 @@ msgstr ""
"আপুনি পাছৱৰ্ড তালিকা গুচাই মূখ্য পাছৱৰ্ড পুনঃ স্থাপন কৰিব বিচাৰে নেকি ?"
#. hwg3F
-#: cui/uiconfig/ui/optsecuritypage.ui:341
+#: cui/uiconfig/ui/optsecuritypage.ui:344
msgctxt "optsecuritypage|connections"
msgid "Connect_ions..."
msgstr "সংযোগসমূহ (_i)..."
#. GLEjB
-#: cui/uiconfig/ui/optsecuritypage.ui:349
+#: cui/uiconfig/ui/optsecuritypage.ui:352
msgctxt "extended_tip|connections"
msgid "Asks for the master password. If master password is correct, shows the Stored Web Connection Information dialog."
msgstr ""
#. SWrMn
-#: cui/uiconfig/ui/optsecuritypage.ui:371
+#: cui/uiconfig/ui/optsecuritypage.ui:374
msgctxt "optsecuritypage|masterpassword"
msgid "_Master Password..."
msgstr "মাস্টাৰ পাছৱাৰ্ড (_M)..."
#. w3TQo
-#: cui/uiconfig/ui/optsecuritypage.ui:379
+#: cui/uiconfig/ui/optsecuritypage.ui:382
msgctxt "extended_tip|masterpassword"
msgid "Opens the Enter Master Password dialog."
msgstr ""
#. UtNEn
-#: cui/uiconfig/ui/optsecuritypage.ui:406
+#: cui/uiconfig/ui/optsecuritypage.ui:409
#, fuzzy
msgctxt "optsecuritypage|label2"
msgid "Passwords for Web Connections"
msgstr "সংযোগবোৰ ৰ কাৰণে পাছৱৰ্ড"
#. EYFvA
-#: cui/uiconfig/ui/optsecuritypage.ui:439
+#: cui/uiconfig/ui/optsecuritypage.ui:442
msgctxt "optsecuritypage|label4"
msgid "Adjust security related options and define warnings for hidden information in documents. "
msgstr "সুৰক্ষাৰ বিকল্প সলনি কৰক আৰু ডকুমেন্টৰ লুকুৱা তথ্যৰ বাবে সকিয়নিৰ সংজ্ঞা দিয়ক। "
#. CBnzU
-#: cui/uiconfig/ui/optsecuritypage.ui:452
+#: cui/uiconfig/ui/optsecuritypage.ui:455
msgctxt "optsecuritypage|options"
msgid "O_ptions..."
msgstr "বিকল্পসমূহ (_p)..."
#. pepKZ
-#: cui/uiconfig/ui/optsecuritypage.ui:460
+#: cui/uiconfig/ui/optsecuritypage.ui:463
msgctxt "extended_tip|options"
msgid "Opens the \"Security Options and Warnings\" dialog."
msgstr ""
#. GqVkJ
-#: cui/uiconfig/ui/optsecuritypage.ui:475
+#: cui/uiconfig/ui/optsecuritypage.ui:478
#, fuzzy
msgctxt "optsecuritypage|label1"
msgid "Security Options and Warnings"
msgstr "সুৰক্ষাৰ বিকল্প আৰু সকিয়নি"
#. rwtuC
-#: cui/uiconfig/ui/optsecuritypage.ui:489
+#: cui/uiconfig/ui/optsecuritypage.ui:492
msgctxt "extended_tip|OptSecurityPage"
msgid "Defines the security options for saving documents, for web connections, and for opening documents that contain macros."
msgstr ""
@@ -20572,10 +20572,10 @@ msgctxt "specialcharacters|srchft"
msgid "Search:"
msgstr "সন্ধান"
-#. eCjVg
+#. zPCZ7
#: cui/uiconfig/ui/specialcharacters.ui:166
msgctxt "specialcharacters|extended_tip|subsetlb"
-msgid "Select a Unicode category for the current font."
+msgid "Select a Unicode block for the current font."
msgstr ""
#. JPWW8
@@ -20610,19 +20610,19 @@ msgid "Maximum Limit: 16 Characters"
msgstr ""
#. ti8sG
-#: cui/uiconfig/ui/specialcharacters.ui:371
+#: cui/uiconfig/ui/specialcharacters.ui:374
msgctxt "specialcharacters|symboltext1"
msgid "Recent Characters:"
msgstr ""
#. LQZ7q
-#: cui/uiconfig/ui/specialcharacters.ui:605
+#: cui/uiconfig/ui/specialcharacters.ui:608
msgctxt "specialcharacters|favbtn|symboltext2"
msgid "Favorite Characters:"
msgstr ""
#. DhG6L
-#: cui/uiconfig/ui/specialcharacters.ui:903
+#: cui/uiconfig/ui/specialcharacters.ui:906
msgctxt "specialcharacters|extended_tip|SpecialCharactersDialog"
msgid "Allows a user to insert characters from the range of symbols found in the installed fonts."
msgstr ""
diff --git a/source/as/filter/messages.po b/source/as/filter/messages.po
index 34553b2586d..24fc150ae2f 100644
--- a/source/as/filter/messages.po
+++ b/source/as/filter/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2022-01-31 18:19+0100\n"
+"POT-Creation-Date: 2022-06-15 22:28+0200\n"
"PO-Revision-Date: 2021-05-12 07:37+0000\n"
"Last-Translator: Mondeep Kalita <epicdeep09@gmail.com>\n"
"Language-Team: Assamese <https://translations.documentfoundation.org/projects/libo_ui-master/filtermessages/as/>\n"
@@ -1535,10 +1535,10 @@ msgctxt "pdfviewpage|fitvis"
msgid "Fit _visible"
msgstr ""
-#. FD8Pp
+#. EBBzj
#: filter/uiconfig/ui/pdfviewpage.ui:254
msgctxt "pdfviewpage|extended_tip|fitvis"
-msgid "Select to generate a PDF file that shows the text and graphics on the page zoomed to fit the width of the reader's window."
+msgid "Select to generate a PDF file that shows the text and graphics on the page zoomed to fit the reader's window."
msgstr ""
#. NGpWy
@@ -1943,10 +1943,10 @@ msgctxt "xmlfiltertabpagegeneral|extended_tip|filtername"
msgid "Enter the name that you want to display in the list box of the XML Filter Settings dialog."
msgstr ""
-#. Tbmcc
+#. D5aZP
#: filter/uiconfig/ui/xmlfiltertabpagegeneral.ui:119
msgctxt "xmlfiltertabpagegeneral|extended_tip|extension"
-msgid "Enter the file extension to use when you open a file without specifying a filter. The file extension to used to determine which filter to use."
+msgid "Enter the file extension to use when you open a file without specifying a filter. The file extension is used to determine which filter to use."
msgstr ""
#. fZvBA
diff --git a/source/as/svx/messages.po b/source/as/svx/messages.po
index d7ce2824f05..00d0d4a22e8 100644
--- a/source/as/svx/messages.po
+++ b/source/as/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2022-06-09 11:50+0200\n"
+"POT-Creation-Date: 2022-06-15 22:28+0200\n"
"PO-Revision-Date: 2021-05-12 07:37+0000\n"
"Last-Translator: Mondeep Kalita <epicdeep09@gmail.com>\n"
"Language-Team: Assamese <https://translations.documentfoundation.org/projects/libo_ui-master/svxmessages/as/>\n"
@@ -17421,14 +17421,14 @@ msgid "_Kern Character Pairs"
msgstr ""
#. 8SKCU
-#: svx/uiconfig/ui/fontworkgallerydialog.ui:18
+#: svx/uiconfig/ui/fontworkgallerydialog.ui:16
#, fuzzy
msgctxt "fontworkgallerydialog|FontworkGalleryDialog"
msgid "Fontwork Gallery"
msgstr "ফন্টৱর্ক গেলাৰী..."
#. GB7pa
-#: svx/uiconfig/ui/fontworkgallerydialog.ui:101
+#: svx/uiconfig/ui/fontworkgallerydialog.ui:99
msgctxt "fontworkgallerydialog|label1"
msgid "Select a Fontwork style:"
msgstr ""
diff --git a/source/as/sw/messages.po b/source/as/sw/messages.po
index 61da52cc9fd..456b0890266 100644
--- a/source/as/sw/messages.po
+++ b/source/as/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2022-06-09 11:51+0200\n"
+"POT-Creation-Date: 2022-06-15 22:29+0200\n"
"PO-Revision-Date: 2021-05-12 07:37+0000\n"
"Last-Translator: Mondeep Kalita <epicdeep09@gmail.com>\n"
"Language-Team: Assamese <https://translations.documentfoundation.org/projects/libo_ui-master/swmessages/as/>\n"
@@ -14470,10 +14470,10 @@ msgctxt "envprinterpage|setup"
msgid "Setup..."
msgstr ""
-#. jyNbK
+#. 4GuQN
#: sw/uiconfig/swriter/ui/envprinterpage.ui:467
msgctxt "envprinterpage|extended_tip|setup"
-msgid "Opens the Print Setup dialog where you can define additional printer settings, such as paper format and orientation."
+msgid "Opens the Printer Setup dialog where you can define additional printer settings, such as paper format and orientation."
msgstr ""
#. AKs6U
@@ -17998,10 +17998,10 @@ msgctxt "insertdbcolumnsdialog|extended_tip|tabledbcols"
msgid "Specifies the database columns to be inserted into the text table."
msgstr ""
-#. XmaQd
+#. xupgr
#: sw/uiconfig/swriter/ui/insertdbcolumnsdialog.ui:559
msgctxt "insertdbcolumnsdialog|extended_tip|tabletxtcols"
-msgid "Select the database columns that you want to insert it in the document."
+msgid "Select the database columns that you want to insert in the document."
msgstr ""
#. DJStE
@@ -18541,45 +18541,38 @@ msgctxt "labeldialog|extended_tip|ok"
msgid "Creates a new document for editing."
msgstr ""
-#. EtFBT
-#: sw/uiconfig/swriter/ui/labeldialog.ui:141
-#, fuzzy
-msgctxt "labeldialog|medium"
-msgid "Medium"
-msgstr "মধ্যম"
-
#. hJSCq
-#: sw/uiconfig/swriter/ui/labeldialog.ui:188
+#: sw/uiconfig/swriter/ui/labeldialog.ui:144
msgctxt "labeldialog|labels"
msgid "Labels"
msgstr "লেবেলবোৰ"
#. G378Z
-#: sw/uiconfig/swriter/ui/labeldialog.ui:236
+#: sw/uiconfig/swriter/ui/labeldialog.ui:192
msgctxt "labeldialog|private"
msgid "Private"
msgstr "ব্যক্তিগত"
#. CAEMT
-#: sw/uiconfig/swriter/ui/labeldialog.ui:284
+#: sw/uiconfig/swriter/ui/labeldialog.ui:240
msgctxt "labeldialog|business"
msgid "Business"
msgstr "ব্যৱসায়"
#. a7BSb
-#: sw/uiconfig/swriter/ui/labeldialog.ui:332
+#: sw/uiconfig/swriter/ui/labeldialog.ui:288
msgctxt "labeldialog|format"
msgid "Format"
msgstr "বিন্যাস"
#. cs8CW
-#: sw/uiconfig/swriter/ui/labeldialog.ui:380
+#: sw/uiconfig/swriter/ui/labeldialog.ui:336
msgctxt "labeldialog|options"
msgid "Options"
msgstr "বিকল্পসমূহ"
#. uB6wE
-#: sw/uiconfig/swriter/ui/labeldialog.ui:407
+#: sw/uiconfig/swriter/ui/labeldialog.ui:363
msgctxt "labeldialog|extended_tip|LabelDialog"
msgid "Allows you to create labels. Labels are created in a text document."
msgstr ""
@@ -20859,26 +20852,32 @@ msgctxt "mmselectpage|extended_tip|browsetemplate"
msgid "Opens a template selector dialog."
msgstr ""
-#. qieQK
+#. EDivp
#: sw/uiconfig/swriter/ui/mmselectpage.ui:191
-msgctxt "mmselectpage|extended_tip|datasourcewarning"
+msgctxt "mmselectpage|datasourcewarning"
msgid "Data source of the current document is not registered. Please exchange database."
msgstr ""
-#. QcsgV
+#. NGYGa
#: sw/uiconfig/swriter/ui/mmselectpage.ui:200
+msgctxt "mmselectpage|exchangedatabase"
+msgid "Exchange Databases..."
+msgstr ""
+
+#. YjZmM
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:208
msgctxt "mmselectpage|extended_tip|exchangedatabase"
-msgid "Exchange Database..."
+msgid "Click to exchange the databases of your mail merge."
msgstr ""
#. 8ESAz
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:218
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:223
msgctxt "mmselectpage|label1"
msgid "Select Starting Document for the Mail Merge"
msgstr ""
#. Hpca5
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:233
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:238
msgctxt "mmselectpage|extended_tip|MMSelectPage"
msgid "Specify the document that you want to use as a base for the mail merge document."
msgstr ""
@@ -23063,52 +23062,52 @@ msgid "OLE Object"
msgstr ""
#. eRTnb
-#: sw/uiconfig/swriter/ui/objectdialog.ui:109
+#: sw/uiconfig/swriter/ui/objectdialog.ui:110
msgctxt "objectdialog|type"
msgid "Position and Size"
msgstr ""
#. ADJiB
-#: sw/uiconfig/swriter/ui/objectdialog.ui:132
+#: sw/uiconfig/swriter/ui/objectdialog.ui:133
msgctxt "objectdialog|options"
msgid "Options"
msgstr "বিকল্পসমূহ"
#. s9Kta
-#: sw/uiconfig/swriter/ui/objectdialog.ui:156
+#: sw/uiconfig/swriter/ui/objectdialog.ui:157
#, fuzzy
msgctxt "objectdialog|wrap"
msgid "Wrap"
msgstr "আবৃত কৰক (~W)"
#. vtCHo
-#: sw/uiconfig/swriter/ui/objectdialog.ui:180
+#: sw/uiconfig/swriter/ui/objectdialog.ui:181
msgctxt "objectdialog|hyperlink"
msgid "Hyperlink"
msgstr "হাইপাৰলিংক"
#. GquSU
-#: sw/uiconfig/swriter/ui/objectdialog.ui:204
+#: sw/uiconfig/swriter/ui/objectdialog.ui:205
msgctxt "objectdialog|borders"
msgid "Borders"
msgstr "সীমাৰেখাবোৰ"
#. L6dGA
-#: sw/uiconfig/swriter/ui/objectdialog.ui:228
+#: sw/uiconfig/swriter/ui/objectdialog.ui:229
#, fuzzy
msgctxt "objectdialog|area"
msgid "Area"
msgstr "ক্ষেত্ৰ"
#. zJ76x
-#: sw/uiconfig/swriter/ui/objectdialog.ui:252
+#: sw/uiconfig/swriter/ui/objectdialog.ui:253
#, fuzzy
msgctxt "objectdialog|transparence"
msgid "Transparency"
msgstr "স্বচ্ছতা"
#. FVDe9
-#: sw/uiconfig/swriter/ui/objectdialog.ui:276
+#: sw/uiconfig/swriter/ui/objectdialog.ui:277
#, fuzzy
msgctxt "objectdialog|macro"
msgid "Macro"
@@ -25896,10 +25895,10 @@ msgctxt "printoptionspage|background"
msgid "Page ba_ckground"
msgstr "পৃষ্ঠা পটভূমী (_c)"
-#. ocn5F
+#. DAfze
#: sw/uiconfig/swriter/ui/printoptionspage.ui:80
-msgctxt "extended_tip|background"
-msgid "Specifies whether to include colors and objects that are inserted to the background of the page (Format - Page - Background) in the printed document."
+msgctxt "printoptionspage|extended_tip|background"
+msgid "Specifies whether to include colors and objects that are inserted to the background of the page style (Format - Page Style - Area) in the printed document."
msgstr ""
#. FWBUe
@@ -26004,10 +26003,10 @@ msgctxt "printoptionspage|none"
msgid "_None"
msgstr "কোনো নহয় (_N)"
-#. CDv8b
+#. d4YMs
#: sw/uiconfig/swriter/ui/printoptionspage.ui:298
-msgctxt "extended_tip|none"
-msgid "Specifies whether comments in your document are printed."
+msgctxt "printoptionspage|extended_tip|none"
+msgid "Do not print document comments."
msgstr ""
#. 6vPTt
@@ -26016,10 +26015,10 @@ msgctxt "printoptionspage|only"
msgid "Comments _only"
msgstr "কেৱল মন্তব্যসমূহ (‌_o)"
-#. KsL3A
+#. aBf74
#: sw/uiconfig/swriter/ui/printoptionspage.ui:318
-msgctxt "extended_tip|only"
-msgid "Specifies whether comments in your document are printed."
+msgctxt "printoptionspage|extended_tip|only"
+msgid "Only print the comments of your document."
msgstr ""
#. n5M2U
@@ -26028,10 +26027,10 @@ msgctxt "printoptionspage|end"
msgid "End of docu_ment"
msgstr "দস্তাবেজৰ অন্ত (_m)"
-#. VxM7F
+#. LgZCr
#: sw/uiconfig/swriter/ui/printoptionspage.ui:338
-msgctxt "extended_tip|end"
-msgid "Specifies whether comments in your document are printed."
+msgctxt "printoptionspage|extended_tip|end"
+msgid "Print comments on a new page at end of the document."
msgstr ""
#. pRqdi
@@ -26040,10 +26039,10 @@ msgctxt "printoptionspage|endpage"
msgid "_End of page"
msgstr "পৃষ্ঠাৰ অন্ত (_E)"
-#. hxM9Z
+#. c2JD2
#: sw/uiconfig/swriter/ui/printoptionspage.ui:358
msgctxt "extended_tip|endpage"
-msgid "Specifies whether comments in your document are printed."
+msgid "Print comments on a new page after the current page."
msgstr ""
#. oBR83
@@ -26052,10 +26051,10 @@ msgctxt "printoptionspage|inmargins"
msgid "In margins"
msgstr ""
-#. 7aAXX
+#. HTtDH
#: sw/uiconfig/swriter/ui/printoptionspage.ui:378
-msgctxt "extended_tip|inmargins"
-msgid "Specifies whether comments in your document are printed."
+msgctxt "printoptionspage|extended_tip|inmargins"
+msgid "Include the comments boxes on the margin of the page. The page contents is rendered to fit both contents and the comments boxes."
msgstr ""
#. VeG6V
@@ -29003,10 +29002,10 @@ msgctxt "textgridpage|labelFT_RUBYSIZE"
msgid "Max. Ruby text size:"
msgstr "সৰ্বাধিক Ruby লিখনীৰ আকাৰ:"
-#. FxPwc
+#. hHaUA
#: sw/uiconfig/swriter/ui/textgridpage.ui:363
msgctxt "textgridpage|extended_tip|spinMF_RUBYSIZE"
-msgid "Enter the font size for the Ruby text."
+msgid "Enter the maximum font size for the Ruby text."
msgstr ""
#. FJFVs
@@ -30191,10 +30190,10 @@ msgctxt "tocindexpage|casesens"
msgid "Case sensitive"
msgstr "ফলা সংবেদ্য (_C)"
-#. rAwSj
+#. sNHCm
#: sw/uiconfig/swriter/ui/tocindexpage.ui:1003
msgctxt "tocindexpage|extended_tip|casesens"
-msgid "Distinguishes between uppercase and lowercase letters in identical index entries. For Asian languages special handling applies."
+msgid "Distinguishes between uppercase and lowercase letters in otherwise identical index entries. For Asian languages special handling applies."
msgstr ""
#. e35vc
diff --git a/source/ast/chart2/messages.po b/source/ast/chart2/messages.po
index 9fa752973a0..5a515c1e3e7 100644
--- a/source/ast/chart2/messages.po
+++ b/source/ast/chart2/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2022-01-31 18:18+0100\n"
-"PO-Revision-Date: 2022-05-12 09:33+0000\n"
+"PO-Revision-Date: 2022-06-15 20:37+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_ui-master/chart2messages/ast/>\n"
"Language: ast\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.11.2\n"
+"X-Generator: Weblate 4.12.2\n"
"X-POOTLE-MTIME: 1540149368.000000\n"
#. NCRDD
@@ -3005,19 +3005,19 @@ msgstr "Marque'l caxellu de Perspectiva pa ver el gráficu al traviés d'una len
#: chart2/uiconfig/ui/tp_3D_SceneGeometry.ui:150
msgctxt "tp_3D_SceneGeometry|extended_tip|MTR_FLD_Z_ROTATION"
msgid "Sets the rotation of the chart on the z axis. The preview responds to the new settings."
-msgstr "Afita la rotación del gráficu sobre la exa Z. La vista previa respuende a les nueves configuraciones."
+msgstr "Afita'l xiru de la gráfica sobre la exa Z. La vista previa respuende a los axustes nuevos."
#. AyMWn
#: chart2/uiconfig/ui/tp_3D_SceneGeometry.ui:168
msgctxt "tp_3D_SceneGeometry|extended_tip|MTR_FLD_Y_ROTATION"
msgid "Sets the rotation of the chart on the y axis. The preview responds to the new settings."
-msgstr "Afita la rotación del gráficu sobre la exa Y. La vista previa respuende a les nueves configuraciones."
+msgstr "Afita'l xiru de la gráfica sobre la exa Y. La vista previa respuende a los axustes nuevos."
#. EGS4B
#: chart2/uiconfig/ui/tp_3D_SceneGeometry.ui:186
msgctxt "tp_3D_SceneGeometry|extended_tip|MTR_FLD_X_ROTATION"
msgid "Sets the rotation of the chart on the x axis. The preview responds to the new settings."
-msgstr "Afita la rotación del gráficu sobre la exa X. La vista previa respuende a les nueves configuraciones."
+msgstr "Afita'l xiru de la gráfica sobre la exa X. La vista previa respuende a los axustes nuevos."
#. RGQDC
#: chart2/uiconfig/ui/tp_3D_SceneIllumination.ui:92
diff --git a/source/ast/cui/messages.po b/source/ast/cui/messages.po
index 086612a0bdf..0ed325a9d69 100644
--- a/source/ast/cui/messages.po
+++ b/source/ast/cui/messages.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2022-06-10 13:57+0200\n"
-"PO-Revision-Date: 2022-06-10 12:05+0000\n"
+"POT-Creation-Date: 2022-06-15 22:27+0200\n"
+"PO-Revision-Date: 2022-06-15 20:37+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_ui-master/cuimessages/ast/>\n"
"Language: ast\n"
@@ -3126,10 +3126,10 @@ msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Need custom contents for metadata properties? File ▸ Properties ▸ Custom Properties tab lets you create what you want."
msgstr ""
-#. 9TnEA
+#. beSc7
#: cui/inc/tipoftheday.hrc:208
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Want to see, but not print, an object in Draw? Draw it on a layer for which the “Printable” flag is not set (right click on the tab and “Modify Layer”)."
+msgid "Want to see, but not print, an object in Draw? Draw it on a layer for which the “Printable” flag is not set (right-click the layer’s tab and choose “Modify Layer”)."
msgstr ""
#. CGQaY
@@ -3786,7 +3786,7 @@ msgstr "Disposición de testu complexu"
#: cui/inc/treeopt.hrc:59
msgctxt "SID_LANGUAGE_OPTIONS_RES"
msgid "LanguageTool Server Settings"
-msgstr ""
+msgstr "Axustes del sirvidor de LanguageTool"
#. TGnig
#: cui/inc/treeopt.hrc:64
@@ -4920,25 +4920,25 @@ msgid "[M]: Replace while modifying existing text"
msgstr "[M]: Sustituir al camudar testu esistente"
#. FtXg9
-#: cui/uiconfig/ui/applyautofmtpage.ui:90
+#: cui/uiconfig/ui/applyautofmtpage.ui:93
msgctxt "applyautofmtpage|label2"
msgid "[T]: AutoCorrect while typing"
msgstr ""
#. NujUD
-#: cui/uiconfig/ui/applyautofmtpage.ui:136
+#: cui/uiconfig/ui/applyautofmtpage.ui:142
msgctxt "applyautofmtpage|m"
msgid "[M]"
msgstr "[M]"
#. qanx6
-#: cui/uiconfig/ui/applyautofmtpage.ui:158
+#: cui/uiconfig/ui/applyautofmtpage.ui:164
msgctxt "applyautofmtpage|t"
msgid "[T]"
msgstr "[T]"
#. 2tG6L
-#: cui/uiconfig/ui/applyautofmtpage.ui:205
+#: cui/uiconfig/ui/applyautofmtpage.ui:211
msgctxt "applyautofmtpage|extended_tip|ApplyAutoFmtPage"
msgid "Select the options for automatically correcting errors as you type, and then click OK."
msgstr ""
@@ -5235,7 +5235,7 @@ msgstr ""
#: cui/uiconfig/ui/areatabpage.ui:106
msgctxt "areatabpage|btnbitmap"
msgid "Image"
-msgstr ""
+msgstr "Imaxe"
#. ELAno
#: cui/uiconfig/ui/areatabpage.ui:112
@@ -5877,7 +5877,7 @@ msgstr ""
#: cui/uiconfig/ui/bulletandposition.ui:382
msgctxt "bulletandposition|colorft"
msgid "Color:"
-msgstr ""
+msgstr "Color:"
#. XqDTh
#: cui/uiconfig/ui/bulletandposition.ui:405
@@ -8295,11 +8295,11 @@ msgctxt "dimensionlinestabpage|TSB_PARALLEL"
msgid "_Parallel to line"
msgstr "_Paralela a la llinia"
-#. gZdFr
+#. CCTEb
#: cui/uiconfig/ui/dimensionlinestabpage.ui:440
msgctxt "dimensionlinestabpage|extended_tip|TSB_PARALLEL"
-msgid "Displays the text parallel to or at 90 degrees to the dimension line."
-msgstr "Amuesa'l testu paralelu a la llinia de dimensiones o con un ángulu de 90 graos con al respective de ésta."
+msgid "If enabled, displays the text parallel to the dimension line. If disabled, the text is shown at 90 degrees to the dimension line."
+msgstr ""
#. QNscD
#: cui/uiconfig/ui/dimensionlinestabpage.ui:452
@@ -8307,11 +8307,11 @@ msgctxt "dimensionlinestabpage|TSB_SHOW_UNIT"
msgid "Show _measurement units"
msgstr "Ver les unidaes de _midida"
-#. cJRA9
+#. KQGtM
#: cui/uiconfig/ui/dimensionlinestabpage.ui:461
msgctxt "dimensionlinestabpage|extended_tip|TSB_SHOW_UNIT"
-msgid "Shows or hides the dimension measurement units. You can also select a measurement unit you want to display from the list."
-msgstr "Amuesa o anubre les unidaes de midida de la dimensión. Tamién pue escoyese na llista la unidá de midida que se deseya amosar."
+msgid "Shows or hides the dimension measurement unit. You can select a measurement unit you want to display from the list."
+msgstr ""
#. EEaqi
#: cui/uiconfig/ui/dimensionlinestabpage.ui:479
@@ -10334,10 +10334,10 @@ msgctxt "hangulhanjaoptdialog|extended_tip|delete"
msgid "Deletes the selected user-defined dictionary."
msgstr ""
-#. v7Bkk
+#. eG9Qx
#: cui/uiconfig/ui/hangulhanjaoptdialog.ui:231
msgctxt "hangulhanjaoptdialog|extended_tip|dicts"
-msgid "Lists all user-defined dictionaries. Select the check box next to the dictionary that you want to use. Clear the check box next to the dictionary that you do not want to use."
+msgid "Lists all user-defined dictionaries. Select the check box next to the dictionaries that you want to use. Clear the check box next to the dictionaries that you do not want to use."
msgstr ""
#. DmfuX
@@ -10734,19 +10734,19 @@ msgid "Opens the Assign Macro dialog, in which you can give events such as \"mou
msgstr ""
#. TXrCH
-#: cui/uiconfig/ui/hyperlinkdocpage.ui:399
+#: cui/uiconfig/ui/hyperlinkdocpage.ui:391
msgctxt "hyperlinkdocpage|extended_tip|frame"
msgid "Enter the name of the frame that you want the linked file to open in, or select a predefined frame from the list. If you leave this box blank, the linked file opens in the current browser window."
msgstr "Introduza'l nome del marcu onde deseye que s'abrir el ficheru enllazáu, o escueya un marcu predefiníu na llista. Si dexa esti cuadru en blancu, el ficheru enllazáu abrir na ventana actual del esplorador."
#. frjow
-#: cui/uiconfig/ui/hyperlinkdocpage.ui:420
+#: cui/uiconfig/ui/hyperlinkdocpage.ui:412
msgctxt "hyperlinkdocpage|label1"
msgid "Further Settings"
msgstr "Más axustes"
#. 789Vi
-#: cui/uiconfig/ui/hyperlinkdocpage.ui:435
+#: cui/uiconfig/ui/hyperlinkdocpage.ui:427
msgctxt "hyperlinkdocpage|extended_tip|HyperlinkDocPage"
msgid "Hyperlinks to any document or targets in documents can be edited using the Document tab from the Hyperlink dialog."
msgstr ""
@@ -10899,19 +10899,19 @@ msgid "Opens the Assign Macro dialog, in which you can give events such as \"mou
msgstr ""
#. C5Hqs
-#: cui/uiconfig/ui/hyperlinkinternetpage.ui:409
+#: cui/uiconfig/ui/hyperlinkinternetpage.ui:401
msgctxt "hyperlinkinternetpage|extended_tip|frame"
msgid "Enter the name of the frame that you want the linked file to open in, or select a predefined frame from the list. If you leave this box blank, the linked file opens in the current browser window."
msgstr "Introduza'l nome del marcu onde deseye que s'abrir el ficheru enllazáu, o escueya un marcu predefiníu na llista. Si dexa esti cuadru en blancu, el ficheru enllazáu abrir na ventana actual del esplorador."
#. UKQMX
-#: cui/uiconfig/ui/hyperlinkinternetpage.ui:430
+#: cui/uiconfig/ui/hyperlinkinternetpage.ui:422
msgctxt "hyperlinkinternetpage|label1"
msgid "Further Settings"
msgstr "Más axustes"
#. 8UdTe
-#: cui/uiconfig/ui/hyperlinkinternetpage.ui:445
+#: cui/uiconfig/ui/hyperlinkinternetpage.ui:437
msgctxt "hyperlinkinternetpage|extended_tip|HyperlinkInternetPage"
msgid "Use the Internet page of the Hyperlink dialog to edit hyperlinks with WWW or FTP addresses."
msgstr ""
@@ -11019,19 +11019,19 @@ msgid "Opens the Assign Macro dialog, in which you can give events such as \"mou
msgstr ""
#. CwHdi
-#: cui/uiconfig/ui/hyperlinkmailpage.ui:324
+#: cui/uiconfig/ui/hyperlinkmailpage.ui:316
msgctxt "hyperlinkmailpage|extended_tip|frame"
msgid "Enter the name of the frame that you want the linked file to open in, or select a predefined frame from the list. If you leave this box blank, the linked file opens in the current browser window."
msgstr "Introduza'l nome del marcu onde deseye que s'abrir el ficheru enllazáu, o escueya un marcu predefiníu na llista. Si dexa esti cuadru en blancu, el ficheru enllazáu abrir na ventana actual del esplorador."
#. BmHDh
-#: cui/uiconfig/ui/hyperlinkmailpage.ui:345
+#: cui/uiconfig/ui/hyperlinkmailpage.ui:337
msgctxt "hyperlinkmailpage|label1"
msgid "Further Settings"
msgstr "Más axustes"
#. SvyDu
-#: cui/uiconfig/ui/hyperlinkmailpage.ui:360
+#: cui/uiconfig/ui/hyperlinkmailpage.ui:352
msgctxt "hyperlinkmailpage|extended_tip|HyperlinkMailPage"
msgid "On the Mail page in the Hyperlink dialog you can edit hyperlinks for email addresses."
msgstr ""
@@ -11204,19 +11204,19 @@ msgid "Opens the Assign Macro dialog, in which you can give events such as \"mou
msgstr ""
#. rXaNm
-#: cui/uiconfig/ui/hyperlinknewdocpage.ui:408
+#: cui/uiconfig/ui/hyperlinknewdocpage.ui:400
msgctxt "hyperlinknewdocpage|extended_tip|frame"
msgid "Enter the name of the frame that you want the linked file to open in, or select a predefined frame from the list. If you leave this box blank, the linked file opens in the current browser window."
msgstr "Introduza'l nome del marcu onde deseye que s'abrir el ficheru enllazáu, o escueya un marcu predefiníu na llista. Si dexa esti cuadru en blancu, el ficheru enllazáu abrir na ventana actual del esplorador."
#. MS2Cn
-#: cui/uiconfig/ui/hyperlinknewdocpage.ui:429
+#: cui/uiconfig/ui/hyperlinknewdocpage.ui:421
msgctxt "hyperlinknewdocpage|label1"
msgid "Further Settings"
msgstr "Más axustes"
#. ztAbs
-#: cui/uiconfig/ui/hyperlinknewdocpage.ui:444
+#: cui/uiconfig/ui/hyperlinknewdocpage.ui:436
msgctxt "hyperlinknewdocpage|extended_tip|HyperlinkNewDocPage"
msgid "Use the New Document tab from the Hyperlink dialog to set up a hyperlink to a new document and create the new document simultaneously."
msgstr ""
@@ -11372,13 +11372,13 @@ msgstr ""
#: cui/uiconfig/ui/imagetabpage.ui:84
msgctxt "imagetabpage|label1"
msgid "Image"
-msgstr ""
+msgstr "Imaxe"
#. 4HvEn
#: cui/uiconfig/ui/imagetabpage.ui:127
msgctxt "imagetabpage|label3"
msgid "Style:"
-msgstr ""
+msgstr "Estilu:"
#. cAwPK
#: cui/uiconfig/ui/imagetabpage.ui:143
@@ -11402,19 +11402,19 @@ msgstr ""
#: cui/uiconfig/ui/imagetabpage.ui:171
msgctxt "imagetabpage|label4"
msgid "Size:"
-msgstr ""
+msgstr "Tamañu:"
#. YtPnn
#: cui/uiconfig/ui/imagetabpage.ui:189
msgctxt "imagetabpage|label5"
msgid "Width:"
-msgstr ""
+msgstr "Anchor:"
#. GAfGG
#: cui/uiconfig/ui/imagetabpage.ui:228
msgctxt "imagetabpage|label6"
msgid "Height:"
-msgstr ""
+msgstr "Altor:"
#. HBRGU
#: cui/uiconfig/ui/imagetabpage.ui:260
@@ -11979,7 +11979,7 @@ msgstr ""
#: cui/uiconfig/ui/langtoolconfigpage.ui:55
msgctxt "langtoolconfigpage|activate"
msgid "Enable LanguageTool"
-msgstr ""
+msgstr "Activar LanguageTool"
#. tUmXv
#: cui/uiconfig/ui/langtoolconfigpage.ui:86
@@ -11987,10 +11987,10 @@ msgctxt "langtoolconfigpage|base"
msgid "Base URL:"
msgstr ""
-#. 9to2D
+#. z58D6
#: cui/uiconfig/ui/langtoolconfigpage.ui:111
msgctxt "langtoolconfigpage|usernamelbl"
-msgid "User name:"
+msgid "Username:"
msgstr ""
#. B8kMr
@@ -11999,35 +11999,35 @@ msgctxt "langtoolconfigpage|apikeylbl"
msgid "API key:"
msgstr ""
-#. AoT7Z
+#. LBMkb
#: cui/uiconfig/ui/langtoolconfigpage.ui:159
msgctxt "langtoolconfigpage|urldesc"
-msgid "Please use the base URL e.g. without \"/check\" at the end."
+msgid "Please use the base URL, i.e., without “/check”, at the end."
msgstr ""
-#. EDETM
-#: cui/uiconfig/ui/langtoolconfigpage.ui:171
+#. 77oav
+#: cui/uiconfig/ui/langtoolconfigpage.ui:174
msgctxt "langtoolconfigpage|usernamedesc"
-msgid "Your LanguageTool account's username for premium usage."
+msgid "Your LanguageTool account’s username for premium usage."
msgstr ""
-#. aDGJf
-#: cui/uiconfig/ui/langtoolconfigpage.ui:183
+#. tGuAh
+#: cui/uiconfig/ui/langtoolconfigpage.ui:189
msgctxt "langtoolconfigpage|apikeydesc"
-msgid "Your LanguageTool account's api key for premium usage."
+msgid "Your LanguageTool account’s API key for premium usage."
msgstr ""
#. Dn8bb
-#: cui/uiconfig/ui/langtoolconfigpage.ui:206
+#: cui/uiconfig/ui/langtoolconfigpage.ui:215
msgctxt "langtoolconfigpage|apisettingsheader"
msgid "API Settings"
-msgstr ""
+msgstr "Axustes de l'API"
#. Ntss5
-#: cui/uiconfig/ui/langtoolconfigpage.ui:225
+#: cui/uiconfig/ui/langtoolconfigpage.ui:234
msgctxt "langtoolconfigpage|langtoolsettings"
msgid "LanguageTool API Options"
-msgstr ""
+msgstr "Opciones de l'API de LanguageTool"
#. RdoKs
#: cui/uiconfig/ui/linedialog.ui:8
@@ -13510,10 +13510,9 @@ msgstr "_Tamañu rellativu"
#. 6r484
#: cui/uiconfig/ui/numberingoptionspage.ui:602
-#, fuzzy
msgctxt "numberingoptionspage|colorft"
msgid "Color:"
-msgstr "Colo_r:"
+msgstr "Color:"
#. ksG2M
#: cui/uiconfig/ui/numberingoptionspage.ui:616
@@ -14598,75 +14597,75 @@ msgstr "[C]: Cargar y convertir l'oxetu"
#. PiDB7
#. The [S] here is repeated as the column title for the "Save" column of this options page
-#: cui/uiconfig/ui/optfltrembedpage.ui:163
+#: cui/uiconfig/ui/optfltrembedpage.ui:166
msgctxt "optfltrembedpage|label3"
msgid "[S]: Convert and save the object"
msgstr "[G]: Convertir y guardar l'oxetu"
#. f2hGQ
-#: cui/uiconfig/ui/optfltrembedpage.ui:185
+#: cui/uiconfig/ui/optfltrembedpage.ui:191
#, fuzzy
msgctxt "optfltrembedpage|label1"
msgid "Embedded Objects"
msgstr "Oxetos incrustaos"
#. nvE89
-#: cui/uiconfig/ui/optfltrembedpage.ui:215
+#: cui/uiconfig/ui/optfltrembedpage.ui:221
msgctxt "optfltrembedpage|label5"
msgid "Export as:"
msgstr ""
#. FEeH6
-#: cui/uiconfig/ui/optfltrembedpage.ui:230
+#: cui/uiconfig/ui/optfltrembedpage.ui:236
msgctxt "optfltrembedpage|highlighting"
msgid "Highlighting"
msgstr "Resalte"
#. qBuyX
-#: cui/uiconfig/ui/optfltrembedpage.ui:239
+#: cui/uiconfig/ui/optfltrembedpage.ui:245
msgctxt "extended_tip|highlighting"
msgid "Microsoft Office has two character attributes similar to Writer character background. Select the appropriate attribute (highlighting or shading) which you would like to use during export to Microsoft Office file formats."
msgstr ""
#. Dnrx7
-#: cui/uiconfig/ui/optfltrembedpage.ui:251
+#: cui/uiconfig/ui/optfltrembedpage.ui:257
#, fuzzy
msgctxt "optfltrembedpage|shading"
msgid "Shading"
msgstr "Representación"
#. 3PFE2
-#: cui/uiconfig/ui/optfltrembedpage.ui:260
+#: cui/uiconfig/ui/optfltrembedpage.ui:266
msgctxt "extended_tip|shading"
msgid "Microsoft Office has two character attributes similar to Writer character background. Select the appropriate attribute (highlighting or shading) which you would like to use during export to Microsoft Office file formats."
msgstr ""
#. gKwdG
-#: cui/uiconfig/ui/optfltrembedpage.ui:283
+#: cui/uiconfig/ui/optfltrembedpage.ui:289
msgctxt "optfltrembedpage|label4"
msgid "Character Highlighting"
msgstr ""
#. tyACF
-#: cui/uiconfig/ui/optfltrembedpage.ui:310
+#: cui/uiconfig/ui/optfltrembedpage.ui:316
msgctxt "optfltrembedpage|mso_lockfile"
msgid "Create MSO lock file"
msgstr ""
#. qc4GD
-#: cui/uiconfig/ui/optfltrembedpage.ui:319
+#: cui/uiconfig/ui/optfltrembedpage.ui:325
msgctxt "extended_tip|mso_lockfile"
msgid "Mark this checkbox to generate a Microsoft Office lock file in addition to this office suite's own lock file."
msgstr ""
#. Sg5Bw
-#: cui/uiconfig/ui/optfltrembedpage.ui:335
+#: cui/uiconfig/ui/optfltrembedpage.ui:341
msgctxt "optfltrembedpage|label5"
msgid "Lock Files"
msgstr ""
#. EUBnP
-#: cui/uiconfig/ui/optfltrembedpage.ui:349
+#: cui/uiconfig/ui/optfltrembedpage.ui:355
msgctxt "extended_tip|OptFilterPage"
msgid "Specifies the settings for importing and exporting Microsoft Office and other documents."
msgstr ""
@@ -14941,11 +14940,11 @@ msgctxt "optgeneralpage|exthelp"
msgid "_Extended tips"
msgstr "Ayuda emerxente e_stendía"
-#. ypuz2
+#. TyqBV
#: cui/uiconfig/ui/optgeneralpage.ui:42
msgctxt "extended_tip | exthelp"
-msgid "Displays a help text when you rest the cursor on an icon, a menu command, or a control on a dialog."
-msgstr "Amuesa un testu d'ayuda cuando'l cursor déxase sobre un iconu, un comandu de menú o un control nun cuadru de diálogu."
+msgid "Displays a help text when you rest the mouse pointer on an icon, a menu command, or a control on a dialog."
+msgstr ""
#. Cbeuc
#: cui/uiconfig/ui/optgeneralpage.ui:53
@@ -16678,7 +16677,7 @@ msgid "Passwords are protected by a master password. You will be asked to enter
msgstr "Les contraseñes tán protexíes por una contraseña maestra. Tendrás d'introducila una vegada por sesión, si %PRODUCTNAME necesita recuperar una contraseña de la llista de contraseñes protexíes."
#. 7gzb7
-#: cui/uiconfig/ui/optsecuritypage.ui:303
+#: cui/uiconfig/ui/optsecuritypage.ui:306
msgctxt "optsecuritypage|nopasswordsave"
msgid ""
"Disabling the function to persistently store passwords deletes the list of passwords stored and resets the master password.\n"
@@ -16690,63 +16689,63 @@ msgstr ""
"¿Quies desaniciar la llista de contraseñes y la contraseña maestra?"
#. hwg3F
-#: cui/uiconfig/ui/optsecuritypage.ui:341
+#: cui/uiconfig/ui/optsecuritypage.ui:344
msgctxt "optsecuritypage|connections"
msgid "Connect_ions..."
msgstr "Cone_xones..."
#. GLEjB
-#: cui/uiconfig/ui/optsecuritypage.ui:349
+#: cui/uiconfig/ui/optsecuritypage.ui:352
msgctxt "extended_tip|connections"
msgid "Asks for the master password. If master password is correct, shows the Stored Web Connection Information dialog."
msgstr "Pide la contraseña maestra. Si la contraseña maestra ye correcta, l'amuesa nel diálogu d'Información Almacenada de les Conexones Web."
#. SWrMn
-#: cui/uiconfig/ui/optsecuritypage.ui:371
+#: cui/uiconfig/ui/optsecuritypage.ui:374
msgctxt "optsecuritypage|masterpassword"
msgid "_Master Password..."
msgstr "Contraseña _maestra..."
#. w3TQo
-#: cui/uiconfig/ui/optsecuritypage.ui:379
+#: cui/uiconfig/ui/optsecuritypage.ui:382
msgctxt "extended_tip|masterpassword"
msgid "Opens the Enter Master Password dialog."
msgstr "Abre'l diálogu pa introducir la contraseña maestra."
#. UtNEn
-#: cui/uiconfig/ui/optsecuritypage.ui:406
+#: cui/uiconfig/ui/optsecuritypage.ui:409
#, fuzzy
msgctxt "optsecuritypage|label2"
msgid "Passwords for Web Connections"
msgstr "Contraseñes pa les conexones web"
#. EYFvA
-#: cui/uiconfig/ui/optsecuritypage.ui:439
+#: cui/uiconfig/ui/optsecuritypage.ui:442
msgctxt "optsecuritypage|label4"
msgid "Adjust security related options and define warnings for hidden information in documents. "
msgstr "Axustar les opciones relatives a la seguridá y definir alertes pa la información anubrida dientro de los documentos. "
#. CBnzU
-#: cui/uiconfig/ui/optsecuritypage.ui:452
+#: cui/uiconfig/ui/optsecuritypage.ui:455
msgctxt "optsecuritypage|options"
msgid "O_ptions..."
msgstr "O_pciones..."
#. pepKZ
-#: cui/uiconfig/ui/optsecuritypage.ui:460
+#: cui/uiconfig/ui/optsecuritypage.ui:463
msgctxt "extended_tip|options"
msgid "Opens the \"Security Options and Warnings\" dialog."
msgstr ""
#. GqVkJ
-#: cui/uiconfig/ui/optsecuritypage.ui:475
+#: cui/uiconfig/ui/optsecuritypage.ui:478
#, fuzzy
msgctxt "optsecuritypage|label1"
msgid "Security Options and Warnings"
msgstr "Opciones de seguridá y alertes"
#. rwtuC
-#: cui/uiconfig/ui/optsecuritypage.ui:489
+#: cui/uiconfig/ui/optsecuritypage.ui:492
msgctxt "extended_tip|OptSecurityPage"
msgid "Defines the security options for saving documents, for web connections, and for opening documents that contain macros."
msgstr "Define les opciones de seguridá pa guardar documentos, pa les conexones web, y p'abrir documentos que contienen macros."
@@ -20307,10 +20306,10 @@ msgctxt "specialcharacters|srchft"
msgid "Search:"
msgstr "Guetar:"
-#. eCjVg
+#. zPCZ7
#: cui/uiconfig/ui/specialcharacters.ui:166
msgctxt "specialcharacters|extended_tip|subsetlb"
-msgid "Select a Unicode category for the current font."
+msgid "Select a Unicode block for the current font."
msgstr ""
#. JPWW8
@@ -20345,19 +20344,19 @@ msgid "Maximum Limit: 16 Characters"
msgstr ""
#. ti8sG
-#: cui/uiconfig/ui/specialcharacters.ui:371
+#: cui/uiconfig/ui/specialcharacters.ui:374
msgctxt "specialcharacters|symboltext1"
msgid "Recent Characters:"
msgstr "Caráuteres recién:"
#. LQZ7q
-#: cui/uiconfig/ui/specialcharacters.ui:605
+#: cui/uiconfig/ui/specialcharacters.ui:608
msgctxt "specialcharacters|favbtn|symboltext2"
msgid "Favorite Characters:"
msgstr ""
#. DhG6L
-#: cui/uiconfig/ui/specialcharacters.ui:903
+#: cui/uiconfig/ui/specialcharacters.ui:906
msgctxt "specialcharacters|extended_tip|SpecialCharactersDialog"
msgid "Allows a user to insert characters from the range of symbols found in the installed fonts."
msgstr ""
diff --git a/source/ast/dbaccess/messages.po b/source/ast/dbaccess/messages.po
index c8c1ec39aea..3c1ee7b56de 100644
--- a/source/ast/dbaccess/messages.po
+++ b/source/ast/dbaccess/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2022-05-25 12:36+0200\n"
-"PO-Revision-Date: 2022-05-12 09:33+0000\n"
+"PO-Revision-Date: 2022-06-12 16:30+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_ui-master/dbaccessmessages/ast/>\n"
"Language: ast\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.12.2\n"
"X-POOTLE-MTIME: 1524566374.000000\n"
#. BiN6g
@@ -3169,10 +3169,9 @@ msgstr ""
#. QCHBC
#: dbaccess/uiconfig/ui/directsqldialog.ui:116
-#, fuzzy
msgctxt "directsqldialog|sql_label"
msgid "_Command to execute:"
-msgstr "_Orde a executar"
+msgstr "_Comandu a executar:"
#. KDRkq
#: dbaccess/uiconfig/ui/directsqldialog.ui:134
diff --git a/source/ast/filter/messages.po b/source/ast/filter/messages.po
index 045c5fc103a..47d8b1e0d5a 100644
--- a/source/ast/filter/messages.po
+++ b/source/ast/filter/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2022-01-31 18:19+0100\n"
+"POT-Creation-Date: 2022-06-15 22:28+0200\n"
"PO-Revision-Date: 2022-05-12 09:33+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_ui-master/filtermessages/ast/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.11.2\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1516029128.000000\n"
#. 5AQgJ
@@ -1525,10 +1525,10 @@ msgctxt "pdfviewpage|fitvis"
msgid "Fit _visible"
msgstr "Axustar _visible"
-#. FD8Pp
+#. EBBzj
#: filter/uiconfig/ui/pdfviewpage.ui:254
msgctxt "pdfviewpage|extended_tip|fitvis"
-msgid "Select to generate a PDF file that shows the text and graphics on the page zoomed to fit the width of the reader's window."
+msgid "Select to generate a PDF file that shows the text and graphics on the page zoomed to fit the reader's window."
msgstr ""
#. NGpWy
@@ -1933,10 +1933,10 @@ msgctxt "xmlfiltertabpagegeneral|extended_tip|filtername"
msgid "Enter the name that you want to display in the list box of the XML Filter Settings dialog."
msgstr ""
-#. Tbmcc
+#. D5aZP
#: filter/uiconfig/ui/xmlfiltertabpagegeneral.ui:119
msgctxt "xmlfiltertabpagegeneral|extended_tip|extension"
-msgid "Enter the file extension to use when you open a file without specifying a filter. The file extension to used to determine which filter to use."
+msgid "Enter the file extension to use when you open a file without specifying a filter. The file extension is used to determine which filter to use."
msgstr ""
#. fZvBA
diff --git a/source/ast/helpcontent2/source/text/scalc/01.po b/source/ast/helpcontent2/source/text/scalc/01.po
index b56ccef4941..fb9126e5fc5 100644
--- a/source/ast/helpcontent2/source/text/scalc/01.po
+++ b/source/ast/helpcontent2/source/text/scalc/01.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2022-06-09 11:50+0200\n"
-"PO-Revision-Date: 2022-06-10 12:06+0000\n"
+"POT-Creation-Date: 2022-06-15 22:28+0200\n"
+"PO-Revision-Date: 2022-06-15 20:39+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_help-master/textscalc01/ast/>\n"
"Language: ast\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.12.2\n"
+"X-Generator: LibreOffice\n"
"X-Poedit-SourceCharset: utf-8\n"
"X-POOTLE-MTIME: 1542028585.000000\n"
@@ -68730,7 +68730,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Sparklines"
-msgstr ""
+msgstr "Minigráfiques"
#. 82qW9
#: sparklines.xhp
@@ -68739,7 +68739,7 @@ msgctxt ""
"bm_id901654173679276\n"
"help.text"
msgid "<bookmark_value>sparklines</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>minigráfiques</bookmark_value>"
#. KVEHr
#: sparklines.xhp
@@ -68748,7 +68748,7 @@ msgctxt ""
"hd_id721654173263812\n"
"help.text"
msgid "<variable id=\"sparklines\"><link href=\"text/scalc/01/sparklines.xhp\" name=\"Sparklines\">Sparklines</link></variable>"
-msgstr ""
+msgstr "<variable id=\"sparklines\"><link href=\"text/scalc/01/sparklines.xhp\" name=\"Sparklines\">Minigráfiques</link></variable>"
#. wUPfH
#: sparklines.xhp
@@ -68811,7 +68811,7 @@ msgctxt ""
"hd_id651654174597644\n"
"help.text"
msgid "Properties"
-msgstr ""
+msgstr "Propiedaes"
#. mRxgt
#: sparklines.xhp
@@ -68991,7 +68991,7 @@ msgctxt ""
"hd_id251654180880861\n"
"help.text"
msgid "Axes"
-msgstr ""
+msgstr "Exes"
#. mRJUH
#: sparklines.xhp
@@ -69029,13 +69029,13 @@ msgctxt ""
msgid "<emph>Group</emph>: sets the minimum (maximum) value based on the lower and higher values found in the group of sparklines."
msgstr ""
-#. E6s55
+#. NNez9
#: sparklines.xhp
msgctxt ""
"sparklines.xhp\n"
"par_id51654181442414\n"
"help.text"
-msgid "<emph>Custom:</emph> enter the minimum (maximum) value for the sparkline group."
+msgid "<emph>Custom</emph>: enter the minimum (maximum) value for the sparkline group. Enter the minimum (maximum) values or use the spin buttons."
msgstr ""
#. CNBDD
diff --git a/source/ast/helpcontent2/source/text/scalc/guide.po b/source/ast/helpcontent2/source/text/scalc/guide.po
index faa3d4b32e3..c88f1629a32 100644
--- a/source/ast/helpcontent2/source/text/scalc/guide.po
+++ b/source/ast/helpcontent2/source/text/scalc/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: guide\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2022-02-04 12:33+0100\n"
+"POT-Creation-Date: 2022-06-15 22:28+0200\n"
"PO-Revision-Date: 2022-06-06 18:31+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_help-master/textscalcguide/ast/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.12.2\n"
+"X-Generator: LibreOffice\n"
"X-Poedit-SourceCharset: utf-8\n"
"X-POOTLE-MTIME: 1542196265.000000\n"
@@ -2276,14 +2276,14 @@ msgctxt ""
msgid "Copy, delete, move, or format a selection of currently visible cells."
msgstr "Copiar, desaniciar, mover o dar formatu a una seleición de caxelles que tean visibles."
-#. FEuz7
+#. VccAs
#: cellcopy.xhp
msgctxt ""
"cellcopy.xhp\n"
"par_id3154371\n"
"help.text"
-msgid "All cells of the selection, including the hidden cells, are copied, deleted, moved, or formatted."
-msgstr "Cópiense o mueven toles caxelles, inclusive les ocultes."
+msgid "By default, all cells of the selection, including the hidden cells, are copied, deleted, moved, or formatted. Restrict the selection to visible rows choosing <menuitem>Edit - Select - Select Visible Rows Only</menuitem> or to visible columns choosing <menuitem>Edit - Select - Select Visible Columns Only</menuitem>."
+msgstr ""
#. rBtUY
#: cellreference_dragdrop.xhp
diff --git a/source/ast/helpcontent2/source/text/schart/01.po b/source/ast/helpcontent2/source/text/schart/01.po
index e72c21d058b..a1aba1e184b 100644
--- a/source/ast/helpcontent2/source/text/schart/01.po
+++ b/source/ast/helpcontent2/source/text/schart/01.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-09-10 23:11+0200\n"
-"PO-Revision-Date: 2022-05-25 10:44+0000\n"
+"PO-Revision-Date: 2022-06-15 20:39+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_help-master/textschart01/ast/>\n"
"Language: ast\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.12.2\n"
"X-POOTLE-MTIME: 1519748866.000000\n"
#. DsZFP
@@ -5243,7 +5243,7 @@ msgctxt ""
"par_id4721823\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Sets the rotation of the chart on the x axis. The preview responds to the new settings.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Afita la rotación del gráficu sobre la exa X. La vista previa respuende a les nueves configuraciones.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Afita'l xiru de la gráfica sobre la exa X. La vista previa respuende a los axustes nuevos.</ahelp>"
#. r68Bu
#: three_d_view.xhp
@@ -5252,7 +5252,7 @@ msgctxt ""
"par_id5806756\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Sets the rotation of the chart on the y axis. The preview responds to the new settings.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Afita la rotación del gráficu sobre la exa Y. La vista previa respuende a les nueves configuraciones.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Afita'l xiru de la gráfica sobre la exa Y. La vista previa respuende a los axustes nuevos.</ahelp>"
#. HG7NF
#: three_d_view.xhp
@@ -5261,7 +5261,7 @@ msgctxt ""
"par_id8915372\n"
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Sets the rotation of the chart on the z axis. The preview responds to the new settings.</ahelp>"
-msgstr "<ahelp hid=\".\" visibility=\"hidden\">Afita la rotación del gráficu sobre la exa Z. La vista previa respuende a les nueves configuraciones.</ahelp>"
+msgstr "<ahelp hid=\".\" visibility=\"hidden\">Afita'l xiru de la gráfica sobre la exa Z. La vista previa respuende a los axustes nuevos.</ahelp>"
#. P3E59
#: three_d_view.xhp
diff --git a/source/ast/helpcontent2/source/text/sdraw/guide.po b/source/ast/helpcontent2/source/text/sdraw/guide.po
index 44a2c2cdce8..17d489a749b 100644
--- a/source/ast/helpcontent2/source/text/sdraw/guide.po
+++ b/source/ast/helpcontent2/source/text/sdraw/guide.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-09-10 23:11+0200\n"
-"PO-Revision-Date: 2022-05-25 10:44+0000\n"
+"PO-Revision-Date: 2022-06-15 20:39+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_help-master/textsdrawguide/ast/>\n"
"Language: ast\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.12.2\n"
"X-POOTLE-MTIME: 1523977270.000000\n"
#. cZbDh
@@ -1859,7 +1859,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Shortcut Keys for Drawing Objects"
-msgstr "Tecles d'accesu direutu pa oxetos de dibuxu"
+msgstr "Tecles d'atayu pa oxetos de dibuxu"
#. WaKgD
#: keyboard.xhp
diff --git a/source/ast/helpcontent2/source/text/shared/00.po b/source/ast/helpcontent2/source/text/shared/00.po
index 2a10a3dd07c..9425eea6274 100644
--- a/source/ast/helpcontent2/source/text/shared/00.po
+++ b/source/ast/helpcontent2/source/text/shared/00.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2022-06-09 11:50+0200\n"
-"PO-Revision-Date: 2022-06-06 18:31+0000\n"
+"POT-Creation-Date: 2022-06-15 22:28+0200\n"
+"PO-Revision-Date: 2022-06-15 20:39+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_help-master/textshared00/ast/>\n"
"Language: ast\n"
@@ -2012,7 +2012,7 @@ msgctxt ""
"par_id3152946\n"
"help.text"
msgid "<image id=\"img_id3155904\" src=\"cmd/sc_exportdirecttopdf.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3155904\">Icon</alt></image>"
-msgstr "<image src=\"cmd/sc_exportdireuttopdf.png\" id=\"img_id3155904\"><alt id=\"alt_id3155904\">Iconu</alt></image>"
+msgstr "<image id=\"img_id3155904\" src=\"cmd/sc_exportdirecttopdf.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3155904\">Iconu</alt></image>"
#. QDsEn
#: 00000004.xhp
@@ -3587,7 +3587,7 @@ msgctxt ""
"par_id3150129\n"
"help.text"
msgid "\"Font: 10pt\" switches to a 10pt font, with bold, italic, small caps off."
-msgstr "\"Fonte: 10pt\" pasa a una fonte con 10pt y coles mesmes negrina, cursiva y versalita."
+msgstr "«Font: 10pt» pasa a una fonte con 10 pt y ensin negrina, cursiva o versalita."
#. sx5EP
#: 00000020.xhp
@@ -7963,13 +7963,22 @@ msgctxt ""
msgid "OLE Object"
msgstr "Oxetu OLE"
-#. UFnGc
+#. 36hBn
+#: 00000404.xhp
+msgctxt ""
+"00000404.xhp\n"
+"par_id761566316165430\n"
+"help.text"
+msgid "Choose <menuitem>Insert - OLE Object - QR and Barcode</menuitem>."
+msgstr ""
+
+#. F9Wus
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
"par_id3150393\n"
"help.text"
-msgid "Choose <menuitem>Insert - OLE Object - Formula Object</menuitem>."
+msgid "<variable id=\"insert_formula\">Choose <menuitem>Insert - OLE Object - Formula Object</menuitem>.</variable>"
msgstr ""
#. kQdhV
@@ -12263,7 +12272,7 @@ msgctxt ""
"par_id3154763\n"
"help.text"
msgid "Anchor"
-msgstr ""
+msgstr "Ancla"
#. Y2HFo
#: 00040501.xhp
@@ -15019,13 +15028,13 @@ msgctxt ""
msgid "<variable id=\"linkae\">Choose <menuitem>Edit - Links to External Files - Modify...</menuitem> (DDE links only).</variable>"
msgstr ""
-#. qo8gR
+#. bgzTi
#: edit_menu.xhp
msgctxt ""
"edit_menu.xhp\n"
"par_id3148927\n"
"help.text"
-msgid "Select a frame, then choose <menuitem>Edit - Object - Properties</menuitem>."
+msgid "Select a frame, then choose <menuitem>Edit - OLE Object - Properties</menuitem>."
msgstr ""
#. cDcix
@@ -15037,31 +15046,31 @@ msgctxt ""
msgid "Open context menu of selected frame, choose <menuitem>Properties</menuitem>."
msgstr ""
-#. jmnro
+#. 5TkgL
#: edit_menu.xhp
msgctxt ""
"edit_menu.xhp\n"
"par_id3149259\n"
"help.text"
-msgid "<variable id=\"edit1\">Choose <menuitem>Edit - Object</menuitem>.</variable>"
+msgid "<variable id=\"edit1\">Choose <menuitem>Edit - OLE Object</menuitem>.</variable>"
msgstr ""
-#. XAqNW
+#. ApejL
#: edit_menu.xhp
msgctxt ""
"edit_menu.xhp\n"
"par_id3154966\n"
"help.text"
-msgid "<variable id=\"edit2\">Choose <menuitem>Edit - Object - Edit</menuitem>, also in the context menu of selected object.</variable>"
+msgid "<variable id=\"edit2\">Choose <menuitem>Edit - OLE Object - Edit</menuitem>, also in the context menu of selected object.</variable>"
msgstr ""
-#. sA6YF
+#. 9Gp6Z
#: edit_menu.xhp
msgctxt ""
"edit_menu.xhp\n"
"par_id3149565\n"
"help.text"
-msgid "<variable id=\"edit3\">Choose <menuitem>Edit - Object - Open</menuitem>.</variable>"
+msgid "<variable id=\"edit3\">Choose <menuitem>Edit - OLE Object - Open</menuitem>.</variable>"
msgstr ""
#. kQifg
diff --git a/source/ast/helpcontent2/source/text/shared/01.po b/source/ast/helpcontent2/source/text/shared/01.po
index 66af4710a6a..b91e466dd54 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: 2022-06-09 11:50+0200\n"
+"POT-Creation-Date: 2022-06-15 22:28+0200\n"
"PO-Revision-Date: 2022-06-10 12:06+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_help-master/textshared01/ast/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.12.2\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1542196269.000000\n"
#. 3u8hR
@@ -11050,40 +11050,40 @@ msgctxt ""
msgid "<ahelp hid=\"sfx/ui/linkeditdialog/category\">Lists the section or object that the link refers to in the source file. If you want, you can enter a new section or object here.</ahelp>"
msgstr ""
-#. nWEMa
+#. 4FLU6
#: 02200000.xhp
msgctxt ""
"02200000.xhp\n"
"tit\n"
"help.text"
-msgid "Edit Object"
+msgid "OLE Object (Edit)"
msgstr ""
-#. nBCA7
+#. VrRPX
#: 02200000.xhp
msgctxt ""
"02200000.xhp\n"
"hd_id3146959\n"
"help.text"
-msgid "<link href=\"text/shared/01/02200000.xhp\" name=\"Object\">Edit Object</link>"
+msgid "<link href=\"text/shared/01/02200000.xhp\" name=\"Object\">OLE Object</link>"
msgstr ""
-#. 6bDqk
+#. QMGSE
#: 02200000.xhp
msgctxt ""
"02200000.xhp\n"
"par_id3154840\n"
"help.text"
-msgid "<variable id=\"object_text\"><ahelp hid=\".uno:ObjectMenue\">Lets you edit a selected object in your file that you inserted with the <item type=\"menuitem\">Insert - Object</item> command.</ahelp></variable>"
+msgid "<variable id=\"object_text\"><ahelp hid=\".uno:ObjectMenue\">Lets you edit a selected OLE object that you inserted from the <menuitem>Insert - OLE Object</menuitem> submenu.</ahelp></variable>"
msgstr ""
-#. YDqFE
+#. NWE46
#: 02200000.xhp
msgctxt ""
"02200000.xhp\n"
"par_id3153551\n"
"help.text"
-msgid "<link href=\"text/shared/01/04150000.xhp\" name=\"Insert - Object\">Insert - Object</link>"
+msgid "<embedvar href=\"text/shared/01/04150000.xhp#oleobjecth1\"/>"
msgstr ""
#. HB6iE
@@ -11122,13 +11122,13 @@ msgctxt ""
msgid "<link href=\"text/shared/01/02200100.xhp\" name=\"Edit\">Edit</link>"
msgstr ""
-#. MmR4v
+#. CP7mz
#: 02200100.xhp
msgctxt ""
"02200100.xhp\n"
"par_id3150008\n"
"help.text"
-msgid "<ahelp visibility=\"visible\" hid=\".\">Lets you edit a selected object in your file that you inserted with the <emph>Insert – Object</emph> command.</ahelp>"
+msgid "<ahelp visibility=\"visible\" hid=\".\">Lets you edit a selected OLE object that you inserted with the <menuitem>Insert – OLE Object</menuitem> command.</ahelp>"
msgstr ""
#. PXv8N
@@ -15469,13 +15469,13 @@ msgctxt ""
msgid "OLE Object (Insert Menu)"
msgstr ""
-#. hq7i8
+#. 9hJLy
#: 04150000.xhp
msgctxt ""
"04150000.xhp\n"
"hd_id3146873\n"
"help.text"
-msgid "<link href=\"text/shared/01/04150000.xhp\" name=\"Object\">OLE Object</link>"
+msgid "<variable id=\"oleobjecth1\"><link href=\"text/shared/01/04150000.xhp\" name=\"Object\">OLE Object</link></variable>"
msgstr ""
#. s2t34
diff --git a/source/ast/helpcontent2/source/text/shared/04.po b/source/ast/helpcontent2/source/text/shared/04.po
index 5ff65ec53db..b5795afff7e 100644
--- a/source/ast/helpcontent2/source/text/shared/04.po
+++ b/source/ast/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: 2022-03-21 12:31+0100\n"
-"PO-Revision-Date: 2022-05-25 10:44+0000\n"
+"PO-Revision-Date: 2022-06-15 20:40+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_help-master/textshared04/ast/>\n"
"Language: ast\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.12.2\n"
"X-Poedit-SourceCharset: utf-8\n"
"X-POOTLE-MTIME: 1531064732.000000\n"
@@ -24,7 +24,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "General Shortcut Keys in $[officename]"
-msgstr "Tecles d'accesu direutu xenerales en $[officename]"
+msgstr "Tecles d'atayu xenerales en $[officename]"
#. xFAX2
#: 01010000.xhp
@@ -2337,7 +2337,7 @@ msgctxt ""
"bm_id3149809\n"
"help.text"
msgid "<bookmark_value>shortcut keys; in databases</bookmark_value><bookmark_value>databases; shortcut keys</bookmark_value>"
-msgstr "<bookmark_value>tecles d'accesu direutu;bases de datos</bookmark_value><bookmark_value>bases de datos;tecles d'accesu direutu</bookmark_value>"
+msgstr "<bookmark_value>tecles d'atayu;bases de datos</bookmark_value><bookmark_value>bases de datos;tecles d'atayu</bookmark_value>"
#. b99D3
#: 01020000.xhp
diff --git a/source/ast/helpcontent2/source/text/shared/guide.po b/source/ast/helpcontent2/source/text/shared/guide.po
index 4956dbbb977..d620068fe39 100644
--- a/source/ast/helpcontent2/source/text/shared/guide.po
+++ b/source/ast/helpcontent2/source/text/shared/guide.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2022-06-10 13:58+0200\n"
-"PO-Revision-Date: 2022-05-25 10:44+0000\n"
+"POT-Creation-Date: 2022-06-15 22:28+0200\n"
+"PO-Revision-Date: 2022-06-15 20:39+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_help-master/textsharedguide/ast/>\n"
"Language: ast\n"
@@ -2626,13 +2626,13 @@ msgctxt ""
msgid "<bookmark_value>custom;classification levels</bookmark_value> <bookmark_value>classification levels;customizing</bookmark_value>"
msgstr ""
-#. 3wmPg
+#. NfubP
#: classification.xhp
msgctxt ""
"classification.xhp\n"
"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 <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><menuitem> - LibreOffice - Paths - Classification</menuitem> into a local folder and edit the contents."
+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 <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><menuitem> - %PRODUCTNAME - Paths - Classification</menuitem> into a local folder and edit the contents."
msgstr ""
#. Tcss6
@@ -3983,7 +3983,7 @@ msgctxt ""
"par_id3150443\n"
"help.text"
msgid "You can change the shortcut keys."
-msgstr "Les tecles d'accesu direutu puen modificar."
+msgstr "Pues modificar les tecles d'atayu."
#. 7GQeh
#: configure_overview.xhp
@@ -10598,7 +10598,7 @@ msgctxt ""
"par_id3156113\n"
"help.text"
msgid "Click the <emph>Save</emph> icon or press the shortcut keys <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+S."
-msgstr "Faiga clic nel iconu <emph>Guardar</emph> o calque les tecles d'accesu direutu <switchinline select=\"sys\"><caseinline select=\"MAC\">Comandu</caseinline><defaultinline>Ctrl</defaultinline></switchinline> + G."
+msgstr "Calca l'iconu <emph>Guardar</emph> o calca les tecles d'atayu <switchinline select=\"sys\"><caseinline select=\"MAC\">Comandu</caseinline><defaultinline>Ctrl</defaultinline></switchinline> + S."
#. JubEi
#: doc_save.xhp
@@ -11482,14 +11482,14 @@ msgctxt ""
msgid "To edit the OLE object, double-click on it."
msgstr "Pa editalo, calque dos vegaes sobre l'oxetu OLE."
-#. FTF7g
+#. 8DbMH
#: dragdrop_table.xhp
msgctxt ""
"dragdrop_table.xhp\n"
"par_id3155389\n"
"help.text"
-msgid "Alternatively, select the object and choose <emph>Edit - Object - Edit</emph> or choose <emph>Edit</emph> from the context menu. You edit the object in its own frame within the text document, but you see the icons and menu commands needed for spreadsheets."
-msgstr "Otra posibilidá ye, teniendo l'oxetu escoyíu, activar el comandu <emph>Editar - Oxetu - Editar</emph> o activar el comandu <emph>Editar</emph> del menú contestual. L'oxetu va editase dientro d'un marcu nel documentu de testu, pero va ver los símbolos y comandos típicos d'una fueya de cálculu."
+msgid "Alternatively, select the object and choose <menuitem>Edit - OLE Object - Edit</menuitem> or choose <menuitem>Edit</menuitem> from the context menu. You edit the object in its own frame within the text document, but you see the icons and menu commands needed for spreadsheets."
+msgstr ""
#. uFCGU
#: dragdrop_table.xhp
@@ -14873,7 +14873,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Shortcuts (%PRODUCTNAME Accessibility)"
-msgstr "Tecles d'accesu direutu (Accesibilidá de %PRODUCTNAME)"
+msgstr "Tecles d'atayu (Accesibilidá de %PRODUCTNAME)"
#. DCFvC
#: keyboard.xhp
@@ -14882,7 +14882,7 @@ msgctxt ""
"bm_id3158421\n"
"help.text"
msgid "<bookmark_value>accessibility;general shortcuts</bookmark_value> <bookmark_value>shortcut keys; %PRODUCTNAME accessibility</bookmark_value>"
-msgstr "<bookmark_value>accesibilidá;accesos direutos xenerales</bookmark_value> <bookmark_value>tecles d'accesu direutu; accesibilidá de %PRODUCTNAME</bookmark_value>"
+msgstr "<bookmark_value>accesibilidá;atayos xenerales</bookmark_value><bookmark_value>tecles d'atayu; accesibilidá de %PRODUCTNAME</bookmark_value>"
#. ArwDt
#: keyboard.xhp
@@ -14891,7 +14891,7 @@ msgctxt ""
"hd_id3158421\n"
"help.text"
msgid "<variable id=\"keyboard\"><link href=\"text/shared/guide/keyboard.xhp\" name=\"Shortcuts (%PRODUCTNAME Accessibility)\">Shortcuts (<item type=\"productname\">%PRODUCTNAME</item> Accessibility)</link></variable>"
-msgstr "<variable id=\"keyboard\"><link href=\"text/shared/guide/keyboard.xhp\" name=\"Tecles de acceso direuto (Accesibilidad de %PRODUCTNAME)\">Tecles d'accesu direutu (Accesibilidá de <item type=\"productname\">%PRODUCTNAME</item>)</link></variable>"
+msgstr "<variable id=\"keyboard\"><link href=\"text/shared/guide/keyboard.xhp\" name=\"Shortcuts (%PRODUCTNAME Accessibility)\">Tecles d'atayu (Accesibilidá de <item type=\"productname\">%PRODUCTNAME</item>)</link></variable>"
#. 2drEq
#: keyboard.xhp
@@ -19409,7 +19409,7 @@ msgctxt ""
"par_id1029200801240965\n"
"help.text"
msgid "<link href=\"text/swriter/guide/text_direct_cursor.xhp\">Direct Cursor</link>"
-msgstr "<link href=\"text/swriter/guide/text_direut_cursor.xhp\">Cursor direutu</link>"
+msgstr "<link href=\"text/swriter/guide/text_direct_cursor.xhp\">Cursor direutu</link>"
#. 4jGFy
#: microsoft_terms.xhp
@@ -22660,15 +22660,6 @@ msgctxt ""
msgid "The QR and Barcode generation feature allows you to encode any text string or URL as a barcode or a QR code and insert it as a graphical object in a document for scanning."
msgstr "La funcionalidá de xeneración de códigos de barres y QR te dexa codificar cualisquier cadena de testu o URL como códigu QR o de barres ya inxertalu como oxetu gráficu nun documentu pa escanialu darréu."
-#. N32UF
-#: qrcode.xhp
-msgctxt ""
-"qrcode.xhp\n"
-"par_id761566316165430\n"
-"help.text"
-msgid "Choose <menuitem>Insert - Object - QR and Barcode</menuitem>."
-msgstr ""
-
#. UCeXG
#: qrcode.xhp
msgctxt ""
@@ -24017,7 +24008,7 @@ msgctxt ""
"par_idN10A78\n"
"help.text"
msgid "Select a key combination from the <emph>Shortcut keys</emph> list box and click <emph>Modify</emph>."
-msgstr "Escueya una combinación de tecles del cuadru de llista <emph>Tecles d'accesu direutu</emph> y faiga clic en <emph>Modificar</emph>."
+msgstr "Escueya una combinación de tecles del cuadru de llista <emph>Tecles d'atayu</emph> y faiga clic en <emph>Modificar</emph>."
#. qzjKN
#: scripting.xhp
diff --git a/source/ast/helpcontent2/source/text/simpress/04.po b/source/ast/helpcontent2/source/text/simpress/04.po
index 6ac7d64bc33..d5800cfbc59 100644
--- a/source/ast/helpcontent2/source/text/simpress/04.po
+++ b/source/ast/helpcontent2/source/text/simpress/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: 2021-01-14 18:09+0100\n"
-"PO-Revision-Date: 2022-05-25 10:44+0000\n"
+"PO-Revision-Date: 2022-06-15 20:39+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_help-master/textsimpress04/ast/>\n"
"Language: ast\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.12.2\n"
"X-POOTLE-MTIME: 1513600491.000000\n"
#. mYCYv
@@ -23,7 +23,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Shortcut Keys for $[officename] Impress"
-msgstr "Tecles d'accesu direutu de $[officename] Impress"
+msgstr "Tecles d'atayu de $[officename] Impress"
#. sHrEU
#: 01020000.xhp
@@ -1355,7 +1355,7 @@ msgctxt ""
"hd_id3156192\n"
"help.text"
msgid "Shortcut Keys in $[officename] Impress"
-msgstr "Tecles d'accesu direutu de $[officename] Impress"
+msgstr "Tecles d'atayu de $[officename] Impress"
#. MaLzD
#: 01020000.xhp
diff --git a/source/ast/helpcontent2/source/text/simpress/guide.po b/source/ast/helpcontent2/source/text/simpress/guide.po
index 5e80f883b87..8d1653ce8a2 100644
--- a/source/ast/helpcontent2/source/text/simpress/guide.po
+++ b/source/ast/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: 2022-06-09 11:50+0200\n"
-"PO-Revision-Date: 2022-05-25 10:44+0000\n"
+"PO-Revision-Date: 2022-06-15 20:39+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_help-master/textsimpressguide/ast/>\n"
"Language: ast\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.12.2\n"
"X-POOTLE-MTIME: 1535978253.000000\n"
#. S83CC
@@ -2696,7 +2696,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Using Shortcut Keys in $[officename] Impress"
-msgstr "Utilizar tecles d'accesu direutu de $[officename] Impress"
+msgstr "Utilizar tecles d'atayu de $[officename] Impress"
#. wGBuB
#: keyboard.xhp
@@ -2714,7 +2714,7 @@ msgctxt ""
"hd_id3154702\n"
"help.text"
msgid "<variable id=\"keyboard\"><link href=\"text/simpress/guide/keyboard.xhp\" name=\"Using Shortcut Keys in $[officename] Impress\">Using Shortcut Keys in $[officename] Impress</link></variable>"
-msgstr "<variable id=\"keyboard\"><link href=\"text/simpress/guide/keyboard.xhp\" name=\"Using Shortcut Keys in $[officename] Impress\">Usar tecles d'accesu direutu de $[officename] Impress</link></variable>"
+msgstr "<variable id=\"keyboard\"><link href=\"text/simpress/guide/keyboard.xhp\" name=\"Using Shortcut Keys in $[officename] Impress\">Usar tecles d'atayu de $[officename] Impress</link></variable>"
#. 8sLBi
#: keyboard.xhp
diff --git a/source/ast/helpcontent2/source/text/smath/guide.po b/source/ast/helpcontent2/source/text/smath/guide.po
index db4e84f5436..1ab2ba9cd86 100644
--- a/source/ast/helpcontent2/source/text/smath/guide.po
+++ b/source/ast/helpcontent2/source/text/smath/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: guide\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2022-01-31 18:20+0100\n"
+"POT-Creation-Date: 2022-06-15 22:28+0200\n"
"PO-Revision-Date: 2022-05-25 10:44+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_help-master/textsmathguide/ast/>\n"
@@ -836,14 +836,14 @@ msgctxt ""
msgid "Select the formula"
msgstr "Escueya la fórmula"
-#. bN6uQ
+#. F2ipo
#: keyboard.xhp
msgctxt ""
"keyboard.xhp\n"
"par_id3150213\n"
"help.text"
-msgid "Choose the command <emph>Insert - Object - Formula</emph>."
-msgstr "Escueya la orde <emph>Inxertar - Oxetu - Fórmula</emph>."
+msgid "Choose the command <menuitem>Insert - OLE Object - Formula Object</menuitem>."
+msgstr ""
#. aowxC
#: keyboard.xhp
@@ -854,14 +854,14 @@ msgctxt ""
msgid "Inserting a Formula using a Window"
msgstr "Insertamientu d'una fórmula por aciu d'una ventana"
-#. Tqx4F
+#. Jvobx
#: keyboard.xhp
msgctxt ""
"keyboard.xhp\n"
"par_id3149875\n"
"help.text"
-msgid "If you want to use the $[officename] Math interface to edit a formula, choose the command <emph>Insert - Object - Formula</emph> without any text selected."
-msgstr "Si deseya usar la interfaz de $[officename] Math pa editar una fórmula, escueya la orde <emph>Inxertar - Oxetu - Fórmula</emph> ensin testu escoyíu."
+msgid "If you want to use the $[officename] Math interface to edit a formula, choose the command <menuitem>Insert - OLE Object - Formula Object</menuitem> without any text selected."
+msgstr ""
#. sEBBM
#: keyboard.xhp
@@ -944,14 +944,14 @@ msgctxt ""
msgid "You want to insert a summation formula like \"summation of s^k from k = 0 to n\" at the cursor in a Writer text document."
msgstr "Quier inxertar una fórmula de sumatoria tal como \"sumatoria de s^k dende k = 0 hasta n\" na posición del cursor d'un documentu de testu de Writer."
-#. 5oKcr
+#. kEJWp
#: limits.xhp
msgctxt ""
"limits.xhp\n"
"par_id8811304\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Insert - Object - Formula</item>."
-msgstr "Escueya <item type=\"menuitem\">Inxertar - Oxetu - Fórmula</item>."
+msgid "<embedvar href=\"text/shared/00/00000404.xhp#insert_formula\"/>"
+msgstr ""
#. qAFch
#: limits.xhp
@@ -1034,14 +1034,14 @@ msgctxt ""
msgid "In the same way, you can enter an Integral formula with limits. When you click an icon from the Elements pane, the assigned text command is inserted in the input window. If you know the text commands, you can enter the commands directly in the input window."
msgstr ""
-#. q8yAH
+#. 57GSa
#: limits.xhp
msgctxt ""
"limits.xhp\n"
"par_id5866267\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Insert - Object - Formula</item>."
-msgstr "Escueya <item type=\"menuitem\">Inxertar - Oxetu - Fórmula</item>."
+msgid "<embedvar href=\"text/shared/00/00000404.xhp#insert_formula\"/>"
+msgstr ""
#. VAoyi
#: limits.xhp
diff --git a/source/ast/helpcontent2/source/text/swriter/01.po b/source/ast/helpcontent2/source/text/swriter/01.po
index 3e5e3932d39..79a21da8340 100644
--- a/source/ast/helpcontent2/source/text/swriter/01.po
+++ b/source/ast/helpcontent2/source/text/swriter/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2022-06-09 11:50+0200\n"
+"POT-Creation-Date: 2022-06-15 22:28+0200\n"
"PO-Revision-Date: 2022-06-10 12:06+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_help-master/textswriter01/ast/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.12.2\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1540152130.000000\n"
#. sZfWF
@@ -18169,22 +18169,22 @@ msgctxt ""
msgid "<emph>Right paragraph border:</emph> the object is positioned considering the width of the indent space available to the right of the paragraph."
msgstr ""
-#. UWViJ
+#. QrQHe
#: 05060100.xhp
msgctxt ""
"05060100.xhp\n"
"par_id171629211714933\n"
"help.text"
-msgid "<emph>Left page border:</emph> the object is positioned considering the space available between the left page border and the left paragraph border."
+msgid "<menuitem>Left of page text area</menuitem>: the object is positioned in the region between the left edge of the page and the left margin plus any left page padding."
msgstr ""
-#. F9qZf
+#. DzD2e
#: 05060100.xhp
msgctxt ""
"05060100.xhp\n"
"par_id131629211715280\n"
"help.text"
-msgid "<emph>Right page border:</emph> the object is positioned considering the space available between the right page border and the right paragraph border."
+msgid "<menuitem>Right of page text area</menuitem>: the object is positioned in the region between the right edge of the page and the right margin plus any right page padding."
msgstr ""
#. norkq
diff --git a/source/ast/helpcontent2/source/text/swriter/04.po b/source/ast/helpcontent2/source/text/swriter/04.po
index 265b42a3f66..2bd31932d5f 100644
--- a/source/ast/helpcontent2/source/text/swriter/04.po
+++ b/source/ast/helpcontent2/source/text/swriter/04.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2022-05-04 12:42+0200\n"
-"PO-Revision-Date: 2022-05-25 10:44+0000\n"
+"PO-Revision-Date: 2022-06-15 20:39+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_help-master/textswriter04/ast/>\n"
"Language: ast\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.12.2\n"
"X-POOTLE-MTIME: 1507112028.000000\n"
#. brcGC
@@ -41,7 +41,7 @@ msgctxt ""
"hd_id3145763\n"
"help.text"
msgid "<variable id=\"text_keys\"><link href=\"text/swriter/04/01020000.xhp\" name=\"Shortcut Keys for %PRODUCTNAME Writer\">Shortcut Keys for <item type=\"productname\">%PRODUCTNAME</item> Writer</link></variable>"
-msgstr "<variable id=\"text_keys\"><link href=\"text/swriter/04/01020000.xhp\" name=\"Tecles de acceso direuto de %PRODUCTNAME Writer\">Tecles d'accesu direutu de <item type=\"productname\">%PRODUCTNAME</item> Writer</link></variable>"
+msgstr "<variable id=\"text_keys\"><link href=\"text/swriter/04/01020000.xhp\" name=\"Shortcut Keys for %PRODUCTNAME Writer\">Tecles d'atayu de <item type=\"productname\">%PRODUCTNAME</item> Writer</link></variable>"
#. qbPEo
#: 01020000.xhp
diff --git a/source/ast/helpcontent2/source/text/swriter/guide.po b/source/ast/helpcontent2/source/text/swriter/guide.po
index 852a7ad01e0..78a1e45c0a2 100644
--- a/source/ast/helpcontent2/source/text/swriter/guide.po
+++ b/source/ast/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2022-06-09 11:50+0200\n"
+"POT-Creation-Date: 2022-06-15 22:28+0200\n"
"PO-Revision-Date: 2022-05-25 10:44+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_help-master/textswriterguide/ast/>\n"
@@ -43,13 +43,13 @@ msgctxt ""
msgid "<variable id=\"anchor_object\"><link href=\"text/swriter/guide/anchor_object.xhp\" name=\"Positioning Objects\">Positioning Objects</link></variable>"
msgstr "<variable id=\"anchor_object\"><link href=\"text/swriter/guide/anchor_object.xhp\" name=\"Posicionar oxetos\">Asitiar oxetos</link></variable>"
-#. MDGBe
+#. WBVDD
#: anchor_object.xhp
msgctxt ""
"anchor_object.xhp\n"
"par_id181634295881266\n"
"help.text"
-msgid "An object, such as an image or frame, is positioned within a document using anchors attached to other elements."
+msgid "An object, such as an image or frame, is positioned within a document using an anchor attached to another element."
msgstr ""
#. FAyRX
diff --git a/source/ast/instsetoo_native/inc_openoffice/windows/msi_languages.po b/source/ast/instsetoo_native/inc_openoffice/windows/msi_languages.po
index 715e8eb8a3a..457b194ed14 100644
--- a/source/ast/instsetoo_native/inc_openoffice/windows/msi_languages.po
+++ b/source/ast/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: 2022-03-21 12:32+0100\n"
-"PO-Revision-Date: 2022-04-25 17:32+0000\n"
+"PO-Revision-Date: 2022-06-15 20:37+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_ui-master/instsetoo_nativeinc_openofficewindowsmsi_languages/ast/>\n"
"Language: ast\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.11.2\n"
+"X-Generator: Weblate 4.12.2\n"
"X-POOTLE-MTIME: 1542022490.000000\n"
#. tBfTE
@@ -158,7 +158,7 @@ msgctxt ""
"OOO_ACTIONTEXT_16\n"
"LngText.text"
msgid "Shortcut: [1]"
-msgstr "Accesu direutu: [1]"
+msgstr "Atayu: [1]"
#. GeKVY
#: ActionTe.ulf
@@ -761,7 +761,7 @@ msgctxt ""
"OOO_ACTIONTEXT_83\n"
"LngText.text"
msgid "Shortcut: [1]"
-msgstr "Accesu direutu: [1]"
+msgstr "Atayu: [1]"
#. A8hxh
#: ActionTe.ulf
@@ -4118,7 +4118,7 @@ msgctxt ""
"OOO_ERROR_105\n"
"LngText.text"
msgid "Could not create shortcut [2]. Verify that the destination folder exists and that you can access it."
-msgstr "Nun se puede crear l'accesu direutu [2]. Mira a ver si la carpeta de destín existe y que puedes acceder a ella."
+msgstr "Nun se puede crear l'atayu [2]. Mira a ver si la carpeta de destín existe y que puedes acceder a ella."
#. QXqrx
#: Error.ulf
@@ -4127,7 +4127,7 @@ msgctxt ""
"OOO_ERROR_106\n"
"LngText.text"
msgid "Could not remove shortcut [2]. Verify that the shortcut file exists and that you can access it."
-msgstr "Nun se puede desaniciar l'accesu direutu [2]. Mira a ver que'l ficheru d'accesu direutu existe y que puedes acceder a elli."
+msgstr "Nun se puede desaniciar l'atayu [2]. Mira a ver que'l ficheru d'atayu existe y que puedes acceder a elli."
#. 3MqnE
#: Error.ulf
diff --git a/source/ast/readlicense_oo/docs.po b/source/ast/readlicense_oo/docs.po
index 29cc6f5e7f1..a575cf969fc 100644
--- a/source/ast/readlicense_oo/docs.po
+++ b/source/ast/readlicense_oo/docs.po
@@ -4,16 +4,16 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2021-09-10 23:12+0200\n"
-"PO-Revision-Date: 2020-02-25 19:15+0000\n"
-"Last-Translator: Xuacu Saturio <xuacusk8@gmail.com>\n"
-"Language-Team: Asturian <https://weblate.documentfoundation.org/projects/libo_ui-master/readlicense_oodocs/ast/>\n"
+"PO-Revision-Date: 2022-06-15 20:37+0000\n"
+"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
+"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_ui-master/readlicense_oodocs/ast/>\n"
"Language: ast\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.12.2\n"
"X-POOTLE-MTIME: 1542022493.000000\n"
#. q6Gg3
@@ -644,7 +644,7 @@ msgctxt ""
"w32e1\n"
"readmeitem.text"
msgid "Only shortcut keys (key combinations) not used by the operating system can be used in ${PRODUCTNAME}. If a key combination in ${PRODUCTNAME} does not work as described in the ${PRODUCTNAME} Help, check if that shortcut is already used by the operating system. To rectify such conflicts, you can change the keys assigned by your operating system. Alternatively, you can change almost any key assignment in ${PRODUCTNAME}. For more information on this topic, refer to the ${PRODUCTNAME} Help or the Help documentation of your operating system."
-msgstr "En ${PRODUCTNAME} sólo pueden usase les tecles d'accesu direutu (combinaciones de tecles) que nun use'l sistema operativu. Si una combinación de tecles de ${PRODUCTNAME} nun funciona como se describe na ayuda de ${PRODUCTNAME}, comprueba si esi accesu direutu yá lu usa'l sistema operativu. Pa iguar estos problemes, pues camudar les tecles asignaes pol sistema operativu. Tamién, pues camudar casi cualesquier asignación de tecles en ${PRODUCTNAME}. Si quies más información, consulta la ayuda de ${PRODUCTNAME} o la documentación d'ayuda del sistema operativu."
+msgstr "En ${PRODUCTNAME} sólo pueden usase les tecles d'atayu (combinaciones de tecles) que nun use'l sistema operativu. Si una combinación de tecles de ${PRODUCTNAME} nun funciona como se describe na ayuda de ${PRODUCTNAME}, comprueba si esi atayu yá lu usa'l sistema operativu. Pa iguar estos problemes, pues camudar les tecles asignaes pol sistema operativu. Tamién, pues camudar casi cualesquier asignación de tecles en ${PRODUCTNAME}. Si quies más información, consulta la ayuda de ${PRODUCTNAME} o la documentación d'ayuda del sistema operativu."
#. DBXZ8
#: readme.xrm
diff --git a/source/ast/sc/messages.po b/source/ast/sc/messages.po
index 00ecc95c2c8..60c794dd81e 100644
--- a/source/ast/sc/messages.po
+++ b/source/ast/sc/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2022-06-09 11:50+0200\n"
-"PO-Revision-Date: 2022-06-06 17:38+0000\n"
+"PO-Revision-Date: 2022-06-15 20:37+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_ui-master/scmessages/ast/>\n"
"Language: ast\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.12.2\n"
"X-POOTLE-MTIME: 1542022495.000000\n"
#. kBovX
@@ -17197,7 +17197,7 @@ msgstr "Escoyer fueyes"
#: sc/inc/strings.hrc:90
msgctxt "STR_DLG_SELECTTABLE_TITLE"
msgid "Go to Sheet"
-msgstr ""
+msgstr "Dir a la fueya"
#. iHTDF
#: sc/inc/strings.hrc:91
@@ -23883,7 +23883,7 @@ msgstr "Abre un diálogu nel que pue resolvese una ecuación con una variable."
#: sc/uiconfig/scalc/ui/gotosheetdialog.ui:16
msgctxt "gotosheetdialog|GoToSheetDialog"
msgid "Go to Sheet"
-msgstr ""
+msgstr "Dir a la fueya"
#. ybsRg
#: sc/uiconfig/scalc/ui/gotosheetdialog.ui:103
diff --git a/source/ast/sd/messages.po b/source/ast/sd/messages.po
index df0c85905a5..d60578437a1 100644
--- a/source/ast/sd/messages.po
+++ b/source/ast/sd/messages.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2022-06-09 11:51+0200\n"
-"PO-Revision-Date: 2022-06-06 17:37+0000\n"
+"PO-Revision-Date: 2022-06-15 20:37+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_ui-master/sdmessages/ast/>\n"
"Language: ast\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.12.2\n"
"X-POOTLE-MTIME: 1542022496.000000\n"
#. WDjkB
@@ -2684,10 +2684,9 @@ msgstr "Radios"
#. eJ4qZ
#: sd/inc/strings.hrc:412
-#, fuzzy
msgctxt "STR_CUSTOMANIMATION_FIRST_COLOR_PROPERTY"
msgid "First color:"
-msgstr "Primer columna"
+msgstr "Primer color:"
#. CSbCE
#: sd/inc/strings.hrc:413
@@ -2752,10 +2751,9 @@ msgstr "Tamañu de fonte"
#. R3GgU
#: sd/inc/strings.hrc:422
-#, fuzzy
msgctxt "STR_CUSTOMANIMATION_SCALE_PROPERTY"
msgid "Size:"
-msgstr "Tamañu"
+msgstr "Tamañu:"
#. YEwoz
#: sd/inc/strings.hrc:423
@@ -2766,10 +2764,9 @@ msgstr "Importe"
#. wiQPZ
#: sd/inc/strings.hrc:424
-#, fuzzy
msgctxt "STR_CUSTOMANIMATION_COLOR_PROPERTY"
msgid "Color:"
-msgstr "Color"
+msgstr "Color:"
#. f5u6C
#: sd/inc/strings.hrc:425
diff --git a/source/ast/svtools/messages.po b/source/ast/svtools/messages.po
index 356762a77ec..fef6514d576 100644
--- a/source/ast/svtools/messages.po
+++ b/source/ast/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: 2022-06-10 13:58+0200\n"
-"PO-Revision-Date: 2022-05-12 09:33+0000\n"
+"PO-Revision-Date: 2022-06-15 20:37+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_ui-master/svtoolsmessages/ast/>\n"
"Language: ast\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.12.2\n"
"X-POOTLE-MTIME: 1542195213.000000\n"
#. fLdeV
@@ -5142,7 +5142,7 @@ msgstr "_Renomar"
#: svtools/uiconfig/ui/graphicexport.ui:51
msgctxt "graphicexport|GraphicExportDialog"
msgid "%1 Options"
-msgstr " Opciones de %1"
+msgstr "Opciones de %1"
#. C3C7t
#: svtools/uiconfig/ui/graphicexport.ui:141
diff --git a/source/ast/svx/messages.po b/source/ast/svx/messages.po
index 9f10fb74721..cb2e415777a 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: 2022-06-09 11:50+0200\n"
+"POT-Creation-Date: 2022-06-15 22:28+0200\n"
"PO-Revision-Date: 2022-06-06 17:38+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_ui-master/svxmessages/ast/>\n"
@@ -17332,14 +17332,14 @@ msgid "_Kern Character Pairs"
msgstr ""
#. 8SKCU
-#: svx/uiconfig/ui/fontworkgallerydialog.ui:18
+#: svx/uiconfig/ui/fontworkgallerydialog.ui:16
#, fuzzy
msgctxt "fontworkgallerydialog|FontworkGalleryDialog"
msgid "Fontwork Gallery"
msgstr "Galería de Fontwork..."
#. GB7pa
-#: svx/uiconfig/ui/fontworkgallerydialog.ui:101
+#: svx/uiconfig/ui/fontworkgallerydialog.ui:99
msgctxt "fontworkgallerydialog|label1"
msgid "Select a Fontwork style:"
msgstr ""
diff --git a/source/ast/sw/messages.po b/source/ast/sw/messages.po
index 6186d4b8076..ec2193f18c5 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: 2022-06-09 11:51+0200\n"
+"POT-Creation-Date: 2022-06-15 22:29+0200\n"
"PO-Revision-Date: 2022-06-10 12:05+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fito@libreoffice.org>\n"
"Language-Team: Asturian <https://translations.documentfoundation.org/projects/libo_ui-master/swmessages/ast/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.12.2\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1542195213.000000\n"
#. v3oJv
@@ -14328,11 +14328,11 @@ msgctxt "envprinterpage|setup"
msgid "Setup..."
msgstr "Configuración..."
-#. jyNbK
+#. 4GuQN
#: sw/uiconfig/swriter/ui/envprinterpage.ui:467
msgctxt "envprinterpage|extended_tip|setup"
-msgid "Opens the Print Setup dialog where you can define additional printer settings, such as paper format and orientation."
-msgstr "Abre'l diálogu Configurar imprentadora, nel que puen definise otros parámetros de la imprentadora, por exemplu el formatu y l'orientación del papel."
+msgid "Opens the Printer Setup dialog where you can define additional printer settings, such as paper format and orientation."
+msgstr ""
#. AKs6U
#: sw/uiconfig/swriter/ui/envprinterpage.ui:481
@@ -17791,11 +17791,11 @@ msgctxt "insertdbcolumnsdialog|extended_tip|tabledbcols"
msgid "Specifies the database columns to be inserted into the text table."
msgstr "Especifica les columnes de la base de datos que se deben inxertar na tabla de testu."
-#. XmaQd
+#. xupgr
#: sw/uiconfig/swriter/ui/insertdbcolumnsdialog.ui:559
msgctxt "insertdbcolumnsdialog|extended_tip|tabletxtcols"
-msgid "Select the database columns that you want to insert it in the document."
-msgstr "Escueya les columnes de la base de datos que deseye inxertar nel documentu."
+msgid "Select the database columns that you want to insert in the document."
+msgstr ""
#. DJStE
#: sw/uiconfig/swriter/ui/insertdbcolumnsdialog.ui:623
@@ -18326,44 +18326,38 @@ msgctxt "labeldialog|extended_tip|ok"
msgid "Creates a new document for editing."
msgstr ""
-#. EtFBT
-#: sw/uiconfig/swriter/ui/labeldialog.ui:141
-msgctxt "labeldialog|medium"
-msgid "Medium"
-msgstr "Mediu"
-
#. hJSCq
-#: sw/uiconfig/swriter/ui/labeldialog.ui:188
+#: sw/uiconfig/swriter/ui/labeldialog.ui:144
msgctxt "labeldialog|labels"
msgid "Labels"
msgstr "Etiquetes"
#. G378Z
-#: sw/uiconfig/swriter/ui/labeldialog.ui:236
+#: sw/uiconfig/swriter/ui/labeldialog.ui:192
msgctxt "labeldialog|private"
msgid "Private"
msgstr "Priváu"
#. CAEMT
-#: sw/uiconfig/swriter/ui/labeldialog.ui:284
+#: sw/uiconfig/swriter/ui/labeldialog.ui:240
msgctxt "labeldialog|business"
msgid "Business"
msgstr "Empresa"
#. a7BSb
-#: sw/uiconfig/swriter/ui/labeldialog.ui:332
+#: sw/uiconfig/swriter/ui/labeldialog.ui:288
msgctxt "labeldialog|format"
msgid "Format"
msgstr "Formatu"
#. cs8CW
-#: sw/uiconfig/swriter/ui/labeldialog.ui:380
+#: sw/uiconfig/swriter/ui/labeldialog.ui:336
msgctxt "labeldialog|options"
msgid "Options"
msgstr "Opciones"
#. uB6wE
-#: sw/uiconfig/swriter/ui/labeldialog.ui:407
+#: sw/uiconfig/swriter/ui/labeldialog.ui:363
msgctxt "labeldialog|extended_tip|LabelDialog"
msgid "Allows you to create labels. Labels are created in a text document."
msgstr ""
@@ -20618,27 +20612,33 @@ msgctxt "mmselectpage|extended_tip|browsetemplate"
msgid "Opens a template selector dialog."
msgstr ""
-#. qieQK
+#. EDivp
#: sw/uiconfig/swriter/ui/mmselectpage.ui:191
-msgctxt "mmselectpage|extended_tip|datasourcewarning"
+msgctxt "mmselectpage|datasourcewarning"
msgid "Data source of the current document is not registered. Please exchange database."
msgstr ""
-#. QcsgV
+#. NGYGa
#: sw/uiconfig/swriter/ui/mmselectpage.ui:200
+msgctxt "mmselectpage|exchangedatabase"
+msgid "Exchange Databases..."
+msgstr ""
+
+#. YjZmM
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:208
msgctxt "mmselectpage|extended_tip|exchangedatabase"
-msgid "Exchange Database..."
+msgid "Click to exchange the databases of your mail merge."
msgstr ""
#. 8ESAz
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:218
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:223
#, fuzzy
msgctxt "mmselectpage|label1"
msgid "Select Starting Document for the Mail Merge"
msgstr "Seleicionar documentu de partida pa la combinación de corréu"
#. Hpca5
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:233
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:238
msgctxt "mmselectpage|extended_tip|MMSelectPage"
msgid "Specify the document that you want to use as a base for the mail merge document."
msgstr ""
@@ -22814,49 +22814,49 @@ msgid "OLE Object"
msgstr "Oxetu OLE"
#. eRTnb
-#: sw/uiconfig/swriter/ui/objectdialog.ui:109
+#: sw/uiconfig/swriter/ui/objectdialog.ui:110
msgctxt "objectdialog|type"
msgid "Position and Size"
msgstr "Posición y tamañu"
#. ADJiB
-#: sw/uiconfig/swriter/ui/objectdialog.ui:132
+#: sw/uiconfig/swriter/ui/objectdialog.ui:133
msgctxt "objectdialog|options"
msgid "Options"
msgstr "Opciones"
#. s9Kta
-#: sw/uiconfig/swriter/ui/objectdialog.ui:156
+#: sw/uiconfig/swriter/ui/objectdialog.ui:157
msgctxt "objectdialog|wrap"
msgid "Wrap"
msgstr "Axuste"
#. vtCHo
-#: sw/uiconfig/swriter/ui/objectdialog.ui:180
+#: sw/uiconfig/swriter/ui/objectdialog.ui:181
msgctxt "objectdialog|hyperlink"
msgid "Hyperlink"
msgstr "Hiperenllaz"
#. GquSU
-#: sw/uiconfig/swriter/ui/objectdialog.ui:204
+#: sw/uiconfig/swriter/ui/objectdialog.ui:205
msgctxt "objectdialog|borders"
msgid "Borders"
msgstr "Berbesos"
#. L6dGA
-#: sw/uiconfig/swriter/ui/objectdialog.ui:228
+#: sw/uiconfig/swriter/ui/objectdialog.ui:229
msgctxt "objectdialog|area"
msgid "Area"
msgstr "Área"
#. zJ76x
-#: sw/uiconfig/swriter/ui/objectdialog.ui:252
+#: sw/uiconfig/swriter/ui/objectdialog.ui:253
msgctxt "objectdialog|transparence"
msgid "Transparency"
msgstr "Tresparencia"
#. FVDe9
-#: sw/uiconfig/swriter/ui/objectdialog.ui:276
+#: sw/uiconfig/swriter/ui/objectdialog.ui:277
msgctxt "objectdialog|macro"
msgid "Macro"
msgstr "Macro"
@@ -25570,11 +25570,11 @@ msgctxt "printoptionspage|background"
msgid "Page ba_ckground"
msgstr "Fondu de la pá_xina"
-#. ocn5F
+#. DAfze
#: sw/uiconfig/swriter/ui/printoptionspage.ui:80
-msgctxt "extended_tip|background"
-msgid "Specifies whether to include colors and objects that are inserted to the background of the page (Format - Page - Background) in the printed document."
-msgstr "Especifica si tienen d'incluyise o non el colores y oxetos inxertaos no fondero de la páxina (Formatu - Páxina - Fondu) nel documentu impresu."
+msgctxt "printoptionspage|extended_tip|background"
+msgid "Specifies whether to include colors and objects that are inserted to the background of the page style (Format - Page Style - Area) in the printed document."
+msgstr ""
#. FWBUe
#: sw/uiconfig/swriter/ui/printoptionspage.ui:91
@@ -25678,11 +25678,11 @@ msgctxt "printoptionspage|none"
msgid "_None"
msgstr "_Nengún"
-#. CDv8b
+#. d4YMs
#: sw/uiconfig/swriter/ui/printoptionspage.ui:298
-msgctxt "extended_tip|none"
-msgid "Specifies whether comments in your document are printed."
-msgstr "Especifica si tienen d'imprimise, o non, los comentarios de los documentos."
+msgctxt "printoptionspage|extended_tip|none"
+msgid "Do not print document comments."
+msgstr ""
#. 6vPTt
#: sw/uiconfig/swriter/ui/printoptionspage.ui:309
@@ -25690,11 +25690,11 @@ msgctxt "printoptionspage|only"
msgid "Comments _only"
msgstr "Namái c_omentarios"
-#. KsL3A
+#. aBf74
#: sw/uiconfig/swriter/ui/printoptionspage.ui:318
-msgctxt "extended_tip|only"
-msgid "Specifies whether comments in your document are printed."
-msgstr "Especifica si tienen d'imprimise, o non, los comentarios de los documentos."
+msgctxt "printoptionspage|extended_tip|only"
+msgid "Only print the comments of your document."
+msgstr ""
#. n5M2U
#: sw/uiconfig/swriter/ui/printoptionspage.ui:329
@@ -25702,11 +25702,11 @@ msgctxt "printoptionspage|end"
msgid "End of docu_ment"
msgstr "Final del docu_mentu"
-#. VxM7F
+#. LgZCr
#: sw/uiconfig/swriter/ui/printoptionspage.ui:338
-msgctxt "extended_tip|end"
-msgid "Specifies whether comments in your document are printed."
-msgstr "Especifica si tienen d'imprimise, o non, los comentarios de los documentos."
+msgctxt "printoptionspage|extended_tip|end"
+msgid "Print comments on a new page at end of the document."
+msgstr ""
#. pRqdi
#: sw/uiconfig/swriter/ui/printoptionspage.ui:349
@@ -25714,11 +25714,11 @@ msgctxt "printoptionspage|endpage"
msgid "_End of page"
msgstr "Fin d_e páxina"
-#. hxM9Z
+#. c2JD2
#: sw/uiconfig/swriter/ui/printoptionspage.ui:358
msgctxt "extended_tip|endpage"
-msgid "Specifies whether comments in your document are printed."
-msgstr "Especifica si tienen d'imprimise, o non, los comentarios de los documentos."
+msgid "Print comments on a new page after the current page."
+msgstr ""
#. oBR83
#: sw/uiconfig/swriter/ui/printoptionspage.ui:369
@@ -25726,11 +25726,11 @@ msgctxt "printoptionspage|inmargins"
msgid "In margins"
msgstr ""
-#. 7aAXX
+#. HTtDH
#: sw/uiconfig/swriter/ui/printoptionspage.ui:378
-msgctxt "extended_tip|inmargins"
-msgid "Specifies whether comments in your document are printed."
-msgstr "Especifica si tienen d'imprimise, o non, los comentarios de los documentos."
+msgctxt "printoptionspage|extended_tip|inmargins"
+msgid "Include the comments boxes on the margin of the page. The page contents is rendered to fit both contents and the comments boxes."
+msgstr ""
#. VeG6V
#: sw/uiconfig/swriter/ui/printoptionspage.ui:393
@@ -28637,11 +28637,11 @@ msgctxt "textgridpage|labelFT_RUBYSIZE"
msgid "Max. Ruby text size:"
msgstr "Tamañu max. de testu Ruby:"
-#. FxPwc
+#. hHaUA
#: sw/uiconfig/swriter/ui/textgridpage.ui:363
msgctxt "textgridpage|extended_tip|spinMF_RUBYSIZE"
-msgid "Enter the font size for the Ruby text."
-msgstr "Escriba'l tamañu del tipu de lletra pal testu Ruby."
+msgid "Enter the maximum font size for the Ruby text."
+msgstr ""
#. FJFVs
#: sw/uiconfig/swriter/ui/textgridpage.ui:377
@@ -29810,11 +29810,11 @@ msgctxt "tocindexpage|casesens"
msgid "Case sensitive"
msgstr "Distinguir mayúscules"
-#. rAwSj
+#. sNHCm
#: sw/uiconfig/swriter/ui/tocindexpage.ui:1003
msgctxt "tocindexpage|extended_tip|casesens"
-msgid "Distinguishes between uppercase and lowercase letters in identical index entries. For Asian languages special handling applies."
-msgstr "Estrema ente mayúscules y minúscules n'entraes d'índiz idéntiques. Los idiomes asiáticos rexir por criterios especiales."
+msgid "Distinguishes between uppercase and lowercase letters in otherwise identical index entries. For Asian languages special handling applies."
+msgstr ""
#. e35vc
#: sw/uiconfig/swriter/ui/tocindexpage.ui:1014
diff --git a/source/az/cui/messages.po b/source/az/cui/messages.po
index 71ce6959160..c0c873c04d0 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: 2022-06-10 13:57+0200\n"
+"POT-Creation-Date: 2022-06-15 22:27+0200\n"
"PO-Revision-Date: 2018-11-14 11:33+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3112,10 +3112,10 @@ msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Need custom contents for metadata properties? File ▸ Properties ▸ Custom Properties tab lets you create what you want."
msgstr ""
-#. 9TnEA
+#. beSc7
#: cui/inc/tipoftheday.hrc:208
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Want to see, but not print, an object in Draw? Draw it on a layer for which the “Printable” flag is not set (right click on the tab and “Modify Layer”)."
+msgid "Want to see, but not print, an object in Draw? Draw it on a layer for which the “Printable” flag is not set (right-click the layer’s tab and choose “Modify Layer”)."
msgstr ""
#. CGQaY
@@ -4919,25 +4919,25 @@ msgid "[M]: Replace while modifying existing text"
msgstr ""
#. FtXg9
-#: cui/uiconfig/ui/applyautofmtpage.ui:90
+#: cui/uiconfig/ui/applyautofmtpage.ui:93
msgctxt "applyautofmtpage|label2"
msgid "[T]: AutoCorrect while typing"
msgstr ""
#. NujUD
-#: cui/uiconfig/ui/applyautofmtpage.ui:136
+#: cui/uiconfig/ui/applyautofmtpage.ui:142
msgctxt "applyautofmtpage|m"
msgid "[M]"
msgstr ""
#. qanx6
-#: cui/uiconfig/ui/applyautofmtpage.ui:158
+#: cui/uiconfig/ui/applyautofmtpage.ui:164
msgctxt "applyautofmtpage|t"
msgid "[T]"
msgstr ""
#. 2tG6L
-#: cui/uiconfig/ui/applyautofmtpage.ui:205
+#: cui/uiconfig/ui/applyautofmtpage.ui:211
msgctxt "applyautofmtpage|extended_tip|ApplyAutoFmtPage"
msgid "Select the options for automatically correcting errors as you type, and then click OK."
msgstr ""
@@ -8323,10 +8323,10 @@ msgctxt "dimensionlinestabpage|TSB_PARALLEL"
msgid "_Parallel to line"
msgstr ""
-#. gZdFr
+#. CCTEb
#: cui/uiconfig/ui/dimensionlinestabpage.ui:440
msgctxt "dimensionlinestabpage|extended_tip|TSB_PARALLEL"
-msgid "Displays the text parallel to or at 90 degrees to the dimension line."
+msgid "If enabled, displays the text parallel to the dimension line. If disabled, the text is shown at 90 degrees to the dimension line."
msgstr ""
#. QNscD
@@ -8335,10 +8335,10 @@ msgctxt "dimensionlinestabpage|TSB_SHOW_UNIT"
msgid "Show _measurement units"
msgstr ""
-#. cJRA9
+#. KQGtM
#: cui/uiconfig/ui/dimensionlinestabpage.ui:461
msgctxt "dimensionlinestabpage|extended_tip|TSB_SHOW_UNIT"
-msgid "Shows or hides the dimension measurement units. You can also select a measurement unit you want to display from the list."
+msgid "Shows or hides the dimension measurement unit. You can select a measurement unit you want to display from the list."
msgstr ""
#. EEaqi
@@ -10368,10 +10368,10 @@ msgctxt "hangulhanjaoptdialog|extended_tip|delete"
msgid "Deletes the selected user-defined dictionary."
msgstr ""
-#. v7Bkk
+#. eG9Qx
#: cui/uiconfig/ui/hangulhanjaoptdialog.ui:231
msgctxt "hangulhanjaoptdialog|extended_tip|dicts"
-msgid "Lists all user-defined dictionaries. Select the check box next to the dictionary that you want to use. Clear the check box next to the dictionary that you do not want to use."
+msgid "Lists all user-defined dictionaries. Select the check box next to the dictionaries that you want to use. Clear the check box next to the dictionaries that you do not want to use."
msgstr ""
#. DmfuX
@@ -10757,19 +10757,19 @@ msgid "Opens the Assign Macro dialog, in which you can give events such as \"mou
msgstr ""
#. TXrCH
-#: cui/uiconfig/ui/hyperlinkdocpage.ui:399
+#: cui/uiconfig/ui/hyperlinkdocpage.ui:391
msgctxt "hyperlinkdocpage|extended_tip|frame"
msgid "Enter the name of the frame that you want the linked file to open in, or select a predefined frame from the list. If you leave this box blank, the linked file opens in the current browser window."
msgstr ""
#. frjow
-#: cui/uiconfig/ui/hyperlinkdocpage.ui:420
+#: cui/uiconfig/ui/hyperlinkdocpage.ui:412
msgctxt "hyperlinkdocpage|label1"
msgid "Further Settings"
msgstr ""
#. 789Vi
-#: cui/uiconfig/ui/hyperlinkdocpage.ui:435
+#: cui/uiconfig/ui/hyperlinkdocpage.ui:427
msgctxt "hyperlinkdocpage|extended_tip|HyperlinkDocPage"
msgid "Hyperlinks to any document or targets in documents can be edited using the Document tab from the Hyperlink dialog."
msgstr ""
@@ -10914,19 +10914,19 @@ msgid "Opens the Assign Macro dialog, in which you can give events such as \"mou
msgstr ""
#. C5Hqs
-#: cui/uiconfig/ui/hyperlinkinternetpage.ui:409
+#: cui/uiconfig/ui/hyperlinkinternetpage.ui:401
msgctxt "hyperlinkinternetpage|extended_tip|frame"
msgid "Enter the name of the frame that you want the linked file to open in, or select a predefined frame from the list. If you leave this box blank, the linked file opens in the current browser window."
msgstr ""
#. UKQMX
-#: cui/uiconfig/ui/hyperlinkinternetpage.ui:430
+#: cui/uiconfig/ui/hyperlinkinternetpage.ui:422
msgctxt "hyperlinkinternetpage|label1"
msgid "Further Settings"
msgstr ""
#. 8UdTe
-#: cui/uiconfig/ui/hyperlinkinternetpage.ui:445
+#: cui/uiconfig/ui/hyperlinkinternetpage.ui:437
msgctxt "hyperlinkinternetpage|extended_tip|HyperlinkInternetPage"
msgid "Use the Internet page of the Hyperlink dialog to edit hyperlinks with WWW or FTP addresses."
msgstr ""
@@ -11029,19 +11029,19 @@ msgid "Opens the Assign Macro dialog, in which you can give events such as \"mou
msgstr ""
#. CwHdi
-#: cui/uiconfig/ui/hyperlinkmailpage.ui:324
+#: cui/uiconfig/ui/hyperlinkmailpage.ui:316
msgctxt "hyperlinkmailpage|extended_tip|frame"
msgid "Enter the name of the frame that you want the linked file to open in, or select a predefined frame from the list. If you leave this box blank, the linked file opens in the current browser window."
msgstr ""
#. BmHDh
-#: cui/uiconfig/ui/hyperlinkmailpage.ui:345
+#: cui/uiconfig/ui/hyperlinkmailpage.ui:337
msgctxt "hyperlinkmailpage|label1"
msgid "Further Settings"
msgstr ""
#. SvyDu
-#: cui/uiconfig/ui/hyperlinkmailpage.ui:360
+#: cui/uiconfig/ui/hyperlinkmailpage.ui:352
msgctxt "hyperlinkmailpage|extended_tip|HyperlinkMailPage"
msgid "On the Mail page in the Hyperlink dialog you can edit hyperlinks for email addresses."
msgstr ""
@@ -11206,19 +11206,19 @@ msgid "Opens the Assign Macro dialog, in which you can give events such as \"mou
msgstr ""
#. rXaNm
-#: cui/uiconfig/ui/hyperlinknewdocpage.ui:408
+#: cui/uiconfig/ui/hyperlinknewdocpage.ui:400
msgctxt "hyperlinknewdocpage|extended_tip|frame"
msgid "Enter the name of the frame that you want the linked file to open in, or select a predefined frame from the list. If you leave this box blank, the linked file opens in the current browser window."
msgstr ""
#. MS2Cn
-#: cui/uiconfig/ui/hyperlinknewdocpage.ui:429
+#: cui/uiconfig/ui/hyperlinknewdocpage.ui:421
msgctxt "hyperlinknewdocpage|label1"
msgid "Further Settings"
msgstr ""
#. ztAbs
-#: cui/uiconfig/ui/hyperlinknewdocpage.ui:444
+#: cui/uiconfig/ui/hyperlinknewdocpage.ui:436
msgctxt "hyperlinknewdocpage|extended_tip|HyperlinkNewDocPage"
msgid "Use the New Document tab from the Hyperlink dialog to set up a hyperlink to a new document and create the new document simultaneously."
msgstr ""
@@ -11988,10 +11988,10 @@ msgctxt "langtoolconfigpage|base"
msgid "Base URL:"
msgstr ""
-#. 9to2D
+#. z58D6
#: cui/uiconfig/ui/langtoolconfigpage.ui:111
msgctxt "langtoolconfigpage|usernamelbl"
-msgid "User name:"
+msgid "Username:"
msgstr ""
#. B8kMr
@@ -12000,32 +12000,32 @@ msgctxt "langtoolconfigpage|apikeylbl"
msgid "API key:"
msgstr ""
-#. AoT7Z
+#. LBMkb
#: cui/uiconfig/ui/langtoolconfigpage.ui:159
msgctxt "langtoolconfigpage|urldesc"
-msgid "Please use the base URL e.g. without \"/check\" at the end."
+msgid "Please use the base URL, i.e., without “/check”, at the end."
msgstr ""
-#. EDETM
-#: cui/uiconfig/ui/langtoolconfigpage.ui:171
+#. 77oav
+#: cui/uiconfig/ui/langtoolconfigpage.ui:174
msgctxt "langtoolconfigpage|usernamedesc"
-msgid "Your LanguageTool account's username for premium usage."
+msgid "Your LanguageTool account’s username for premium usage."
msgstr ""
-#. aDGJf
-#: cui/uiconfig/ui/langtoolconfigpage.ui:183
+#. tGuAh
+#: cui/uiconfig/ui/langtoolconfigpage.ui:189
msgctxt "langtoolconfigpage|apikeydesc"
-msgid "Your LanguageTool account's api key for premium usage."
+msgid "Your LanguageTool account’s API key for premium usage."
msgstr ""
#. Dn8bb
-#: cui/uiconfig/ui/langtoolconfigpage.ui:206
+#: cui/uiconfig/ui/langtoolconfigpage.ui:215
msgctxt "langtoolconfigpage|apisettingsheader"
msgid "API Settings"
msgstr ""
#. Ntss5
-#: cui/uiconfig/ui/langtoolconfigpage.ui:225
+#: cui/uiconfig/ui/langtoolconfigpage.ui:234
msgctxt "langtoolconfigpage|langtoolsettings"
msgid "LanguageTool API Options"
msgstr ""
@@ -14563,73 +14563,73 @@ msgstr ""
#. PiDB7
#. The [S] here is repeated as the column title for the "Save" column of this options page
-#: cui/uiconfig/ui/optfltrembedpage.ui:163
+#: cui/uiconfig/ui/optfltrembedpage.ui:166
msgctxt "optfltrembedpage|label3"
msgid "[S]: Convert and save the object"
msgstr ""
#. f2hGQ
-#: cui/uiconfig/ui/optfltrembedpage.ui:185
+#: cui/uiconfig/ui/optfltrembedpage.ui:191
msgctxt "optfltrembedpage|label1"
msgid "Embedded Objects"
msgstr ""
#. nvE89
-#: cui/uiconfig/ui/optfltrembedpage.ui:215
+#: cui/uiconfig/ui/optfltrembedpage.ui:221
msgctxt "optfltrembedpage|label5"
msgid "Export as:"
msgstr ""
#. FEeH6
-#: cui/uiconfig/ui/optfltrembedpage.ui:230
+#: cui/uiconfig/ui/optfltrembedpage.ui:236
msgctxt "optfltrembedpage|highlighting"
msgid "Highlighting"
msgstr ""
#. qBuyX
-#: cui/uiconfig/ui/optfltrembedpage.ui:239
+#: cui/uiconfig/ui/optfltrembedpage.ui:245
msgctxt "extended_tip|highlighting"
msgid "Microsoft Office has two character attributes similar to Writer character background. Select the appropriate attribute (highlighting or shading) which you would like to use during export to Microsoft Office file formats."
msgstr ""
#. Dnrx7
-#: cui/uiconfig/ui/optfltrembedpage.ui:251
+#: cui/uiconfig/ui/optfltrembedpage.ui:257
msgctxt "optfltrembedpage|shading"
msgid "Shading"
msgstr ""
#. 3PFE2
-#: cui/uiconfig/ui/optfltrembedpage.ui:260
+#: cui/uiconfig/ui/optfltrembedpage.ui:266
msgctxt "extended_tip|shading"
msgid "Microsoft Office has two character attributes similar to Writer character background. Select the appropriate attribute (highlighting or shading) which you would like to use during export to Microsoft Office file formats."
msgstr ""
#. gKwdG
-#: cui/uiconfig/ui/optfltrembedpage.ui:283
+#: cui/uiconfig/ui/optfltrembedpage.ui:289
msgctxt "optfltrembedpage|label4"
msgid "Character Highlighting"
msgstr ""
#. tyACF
-#: cui/uiconfig/ui/optfltrembedpage.ui:310
+#: cui/uiconfig/ui/optfltrembedpage.ui:316
msgctxt "optfltrembedpage|mso_lockfile"
msgid "Create MSO lock file"
msgstr ""
#. qc4GD
-#: cui/uiconfig/ui/optfltrembedpage.ui:319
+#: cui/uiconfig/ui/optfltrembedpage.ui:325
msgctxt "extended_tip|mso_lockfile"
msgid "Mark this checkbox to generate a Microsoft Office lock file in addition to this office suite's own lock file."
msgstr ""
#. Sg5Bw
-#: cui/uiconfig/ui/optfltrembedpage.ui:335
+#: cui/uiconfig/ui/optfltrembedpage.ui:341
msgctxt "optfltrembedpage|label5"
msgid "Lock Files"
msgstr ""
#. EUBnP
-#: cui/uiconfig/ui/optfltrembedpage.ui:349
+#: cui/uiconfig/ui/optfltrembedpage.ui:355
msgctxt "extended_tip|OptFilterPage"
msgid "Specifies the settings for importing and exporting Microsoft Office and other documents."
msgstr ""
@@ -14899,10 +14899,10 @@ msgctxt "optgeneralpage|exthelp"
msgid "_Extended tips"
msgstr ""
-#. ypuz2
+#. TyqBV
#: cui/uiconfig/ui/optgeneralpage.ui:42
msgctxt "extended_tip | exthelp"
-msgid "Displays a help text when you rest the cursor on an icon, a menu command, or a control on a dialog."
+msgid "Displays a help text when you rest the mouse pointer on an icon, a menu command, or a control on a dialog."
msgstr ""
#. Cbeuc
@@ -16606,7 +16606,7 @@ msgid "Passwords are protected by a master password. You will be asked to enter
msgstr ""
#. 7gzb7
-#: cui/uiconfig/ui/optsecuritypage.ui:303
+#: cui/uiconfig/ui/optsecuritypage.ui:306
msgctxt "optsecuritypage|nopasswordsave"
msgid ""
"Disabling the function to persistently store passwords deletes the list of passwords stored and resets the master password.\n"
@@ -16615,62 +16615,62 @@ msgid ""
msgstr ""
#. hwg3F
-#: cui/uiconfig/ui/optsecuritypage.ui:341
+#: cui/uiconfig/ui/optsecuritypage.ui:344
msgctxt "optsecuritypage|connections"
msgid "Connect_ions..."
msgstr ""
#. GLEjB
-#: cui/uiconfig/ui/optsecuritypage.ui:349
+#: cui/uiconfig/ui/optsecuritypage.ui:352
msgctxt "extended_tip|connections"
msgid "Asks for the master password. If master password is correct, shows the Stored Web Connection Information dialog."
msgstr ""
#. SWrMn
-#: cui/uiconfig/ui/optsecuritypage.ui:371
+#: cui/uiconfig/ui/optsecuritypage.ui:374
msgctxt "optsecuritypage|masterpassword"
msgid "_Master Password..."
msgstr ""
#. w3TQo
-#: cui/uiconfig/ui/optsecuritypage.ui:379
+#: cui/uiconfig/ui/optsecuritypage.ui:382
msgctxt "extended_tip|masterpassword"
msgid "Opens the Enter Master Password dialog."
msgstr ""
#. UtNEn
-#: cui/uiconfig/ui/optsecuritypage.ui:406
+#: cui/uiconfig/ui/optsecuritypage.ui:409
msgctxt "optsecuritypage|label2"
msgid "Passwords for Web Connections"
msgstr ""
#. EYFvA
-#: cui/uiconfig/ui/optsecuritypage.ui:439
+#: cui/uiconfig/ui/optsecuritypage.ui:442
msgctxt "optsecuritypage|label4"
msgid "Adjust security related options and define warnings for hidden information in documents. "
msgstr ""
#. CBnzU
-#: cui/uiconfig/ui/optsecuritypage.ui:452
+#: cui/uiconfig/ui/optsecuritypage.ui:455
#, fuzzy
msgctxt "optsecuritypage|options"
msgid "O_ptions..."
msgstr "~Seçimlər..."
#. pepKZ
-#: cui/uiconfig/ui/optsecuritypage.ui:460
+#: cui/uiconfig/ui/optsecuritypage.ui:463
msgctxt "extended_tip|options"
msgid "Opens the \"Security Options and Warnings\" dialog."
msgstr ""
#. GqVkJ
-#: cui/uiconfig/ui/optsecuritypage.ui:475
+#: cui/uiconfig/ui/optsecuritypage.ui:478
msgctxt "optsecuritypage|label1"
msgid "Security Options and Warnings"
msgstr ""
#. rwtuC
-#: cui/uiconfig/ui/optsecuritypage.ui:489
+#: cui/uiconfig/ui/optsecuritypage.ui:492
msgctxt "extended_tip|OptSecurityPage"
msgid "Defines the security options for saving documents, for web connections, and for opening documents that contain macros."
msgstr ""
@@ -20191,10 +20191,10 @@ msgctxt "specialcharacters|srchft"
msgid "Search:"
msgstr ""
-#. eCjVg
+#. zPCZ7
#: cui/uiconfig/ui/specialcharacters.ui:166
msgctxt "specialcharacters|extended_tip|subsetlb"
-msgid "Select a Unicode category for the current font."
+msgid "Select a Unicode block for the current font."
msgstr ""
#. JPWW8
@@ -20228,19 +20228,19 @@ msgid "Maximum Limit: 16 Characters"
msgstr ""
#. ti8sG
-#: cui/uiconfig/ui/specialcharacters.ui:371
+#: cui/uiconfig/ui/specialcharacters.ui:374
msgctxt "specialcharacters|symboltext1"
msgid "Recent Characters:"
msgstr ""
#. LQZ7q
-#: cui/uiconfig/ui/specialcharacters.ui:605
+#: cui/uiconfig/ui/specialcharacters.ui:608
msgctxt "specialcharacters|favbtn|symboltext2"
msgid "Favorite Characters:"
msgstr ""
#. DhG6L
-#: cui/uiconfig/ui/specialcharacters.ui:903
+#: cui/uiconfig/ui/specialcharacters.ui:906
msgctxt "specialcharacters|extended_tip|SpecialCharactersDialog"
msgid "Allows a user to insert characters from the range of symbols found in the installed fonts."
msgstr ""
diff --git a/source/az/filter/messages.po b/source/az/filter/messages.po
index 7c73593a169..afafaa9e768 100644
--- a/source/az/filter/messages.po
+++ b/source/az/filter/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2022-01-31 18:19+0100\n"
+"POT-Creation-Date: 2022-06-15 22:28+0200\n"
"PO-Revision-Date: 2018-01-15 15:12+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1518,10 +1518,10 @@ msgctxt "pdfviewpage|fitvis"
msgid "Fit _visible"
msgstr ""
-#. FD8Pp
+#. EBBzj
#: filter/uiconfig/ui/pdfviewpage.ui:254
msgctxt "pdfviewpage|extended_tip|fitvis"
-msgid "Select to generate a PDF file that shows the text and graphics on the page zoomed to fit the width of the reader's window."
+msgid "Select to generate a PDF file that shows the text and graphics on the page zoomed to fit the reader's window."
msgstr ""
#. NGpWy
@@ -1923,10 +1923,10 @@ msgctxt "xmlfiltertabpagegeneral|extended_tip|filtername"
msgid "Enter the name that you want to display in the list box of the XML Filter Settings dialog."
msgstr ""
-#. Tbmcc
+#. D5aZP
#: filter/uiconfig/ui/xmlfiltertabpagegeneral.ui:119
msgctxt "xmlfiltertabpagegeneral|extended_tip|extension"
-msgid "Enter the file extension to use when you open a file without specifying a filter. The file extension to used to determine which filter to use."
+msgid "Enter the file extension to use when you open a file without specifying a filter. The file extension is used to determine which filter to use."
msgstr ""
#. fZvBA
diff --git a/source/az/svx/messages.po b/source/az/svx/messages.po
index fe6282d1789..e678e135dac 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: 2022-06-09 11:50+0200\n"
+"POT-Creation-Date: 2022-06-15 22:28+0200\n"
"PO-Revision-Date: 2018-11-12 11:35+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -17114,13 +17114,13 @@ msgid "_Kern Character Pairs"
msgstr ""
#. 8SKCU
-#: svx/uiconfig/ui/fontworkgallerydialog.ui:18
+#: svx/uiconfig/ui/fontworkgallerydialog.ui:16
msgctxt "fontworkgallerydialog|FontworkGalleryDialog"
msgid "Fontwork Gallery"
msgstr ""
#. GB7pa
-#: svx/uiconfig/ui/fontworkgallerydialog.ui:101
+#: svx/uiconfig/ui/fontworkgallerydialog.ui:99
msgctxt "fontworkgallerydialog|label1"
msgid "Select a Fontwork style:"
msgstr ""
diff --git a/source/az/sw/messages.po b/source/az/sw/messages.po
index 44591743ce2..7815d5f5e28 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: 2022-06-09 11:51+0200\n"
+"POT-Creation-Date: 2022-06-15 22:29+0200\n"
"PO-Revision-Date: 2018-11-14 11:33+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -14249,10 +14249,10 @@ msgctxt "envprinterpage|setup"
msgid "Setup..."
msgstr ""
-#. jyNbK
+#. 4GuQN
#: sw/uiconfig/swriter/ui/envprinterpage.ui:467
msgctxt "envprinterpage|extended_tip|setup"
-msgid "Opens the Print Setup dialog where you can define additional printer settings, such as paper format and orientation."
+msgid "Opens the Printer Setup dialog where you can define additional printer settings, such as paper format and orientation."
msgstr ""
#. AKs6U
@@ -17716,10 +17716,10 @@ msgctxt "insertdbcolumnsdialog|extended_tip|tabledbcols"
msgid "Specifies the database columns to be inserted into the text table."
msgstr ""
-#. XmaQd
+#. xupgr
#: sw/uiconfig/swriter/ui/insertdbcolumnsdialog.ui:559
msgctxt "insertdbcolumnsdialog|extended_tip|tabletxtcols"
-msgid "Select the database columns that you want to insert it in the document."
+msgid "Select the database columns that you want to insert in the document."
msgstr ""
#. DJStE
@@ -18251,44 +18251,38 @@ msgctxt "labeldialog|extended_tip|ok"
msgid "Creates a new document for editing."
msgstr ""
-#. EtFBT
-#: sw/uiconfig/swriter/ui/labeldialog.ui:141
-msgctxt "labeldialog|medium"
-msgid "Medium"
-msgstr ""
-
#. hJSCq
-#: sw/uiconfig/swriter/ui/labeldialog.ui:188
+#: sw/uiconfig/swriter/ui/labeldialog.ui:144
msgctxt "labeldialog|labels"
msgid "Labels"
msgstr ""
#. G378Z
-#: sw/uiconfig/swriter/ui/labeldialog.ui:236
+#: sw/uiconfig/swriter/ui/labeldialog.ui:192
msgctxt "labeldialog|private"
msgid "Private"
msgstr ""
#. CAEMT
-#: sw/uiconfig/swriter/ui/labeldialog.ui:284
+#: sw/uiconfig/swriter/ui/labeldialog.ui:240
msgctxt "labeldialog|business"
msgid "Business"
msgstr ""
#. a7BSb
-#: sw/uiconfig/swriter/ui/labeldialog.ui:332
+#: sw/uiconfig/swriter/ui/labeldialog.ui:288
msgctxt "labeldialog|format"
msgid "Format"
msgstr ""
#. cs8CW
-#: sw/uiconfig/swriter/ui/labeldialog.ui:380
+#: sw/uiconfig/swriter/ui/labeldialog.ui:336
msgctxt "labeldialog|options"
msgid "Options"
msgstr "Seçimlər"
#. uB6wE
-#: sw/uiconfig/swriter/ui/labeldialog.ui:407
+#: sw/uiconfig/swriter/ui/labeldialog.ui:363
msgctxt "labeldialog|extended_tip|LabelDialog"
msgid "Allows you to create labels. Labels are created in a text document."
msgstr ""
@@ -20479,26 +20473,32 @@ msgctxt "mmselectpage|extended_tip|browsetemplate"
msgid "Opens a template selector dialog."
msgstr ""
-#. qieQK
+#. EDivp
#: sw/uiconfig/swriter/ui/mmselectpage.ui:191
-msgctxt "mmselectpage|extended_tip|datasourcewarning"
+msgctxt "mmselectpage|datasourcewarning"
msgid "Data source of the current document is not registered. Please exchange database."
msgstr ""
-#. QcsgV
+#. NGYGa
#: sw/uiconfig/swriter/ui/mmselectpage.ui:200
+msgctxt "mmselectpage|exchangedatabase"
+msgid "Exchange Databases..."
+msgstr ""
+
+#. YjZmM
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:208
msgctxt "mmselectpage|extended_tip|exchangedatabase"
-msgid "Exchange Database..."
+msgid "Click to exchange the databases of your mail merge."
msgstr ""
#. 8ESAz
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:218
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:223
msgctxt "mmselectpage|label1"
msgid "Select Starting Document for the Mail Merge"
msgstr ""
#. Hpca5
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:233
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:238
msgctxt "mmselectpage|extended_tip|MMSelectPage"
msgid "Specify the document that you want to use as a base for the mail merge document."
msgstr ""
@@ -22669,49 +22669,49 @@ msgid "OLE Object"
msgstr ""
#. eRTnb
-#: sw/uiconfig/swriter/ui/objectdialog.ui:109
+#: sw/uiconfig/swriter/ui/objectdialog.ui:110
msgctxt "objectdialog|type"
msgid "Position and Size"
msgstr ""
#. ADJiB
-#: sw/uiconfig/swriter/ui/objectdialog.ui:132
+#: sw/uiconfig/swriter/ui/objectdialog.ui:133
msgctxt "objectdialog|options"
msgid "Options"
msgstr "Seçimlər"
#. s9Kta
-#: sw/uiconfig/swriter/ui/objectdialog.ui:156
+#: sw/uiconfig/swriter/ui/objectdialog.ui:157
msgctxt "objectdialog|wrap"
msgid "Wrap"
msgstr ""
#. vtCHo
-#: sw/uiconfig/swriter/ui/objectdialog.ui:180
+#: sw/uiconfig/swriter/ui/objectdialog.ui:181
msgctxt "objectdialog|hyperlink"
msgid "Hyperlink"
msgstr ""
#. GquSU
-#: sw/uiconfig/swriter/ui/objectdialog.ui:204
+#: sw/uiconfig/swriter/ui/objectdialog.ui:205
msgctxt "objectdialog|borders"
msgid "Borders"
msgstr ""
#. L6dGA
-#: sw/uiconfig/swriter/ui/objectdialog.ui:228
+#: sw/uiconfig/swriter/ui/objectdialog.ui:229
msgctxt "objectdialog|area"
msgid "Area"
msgstr ""
#. zJ76x
-#: sw/uiconfig/swriter/ui/objectdialog.ui:252
+#: sw/uiconfig/swriter/ui/objectdialog.ui:253
msgctxt "objectdialog|transparence"
msgid "Transparency"
msgstr ""
#. FVDe9
-#: sw/uiconfig/swriter/ui/objectdialog.ui:276
+#: sw/uiconfig/swriter/ui/objectdialog.ui:277
msgctxt "objectdialog|macro"
msgid "Macro"
msgstr ""
@@ -25400,10 +25400,10 @@ msgctxt "printoptionspage|background"
msgid "Page ba_ckground"
msgstr ""
-#. ocn5F
+#. DAfze
#: sw/uiconfig/swriter/ui/printoptionspage.ui:80
-msgctxt "extended_tip|background"
-msgid "Specifies whether to include colors and objects that are inserted to the background of the page (Format - Page - Background) in the printed document."
+msgctxt "printoptionspage|extended_tip|background"
+msgid "Specifies whether to include colors and objects that are inserted to the background of the page style (Format - Page Style - Area) in the printed document."
msgstr ""
#. FWBUe
@@ -25509,10 +25509,10 @@ msgctxt "printoptionspage|none"
msgid "_None"
msgstr ""
-#. CDv8b
+#. d4YMs
#: sw/uiconfig/swriter/ui/printoptionspage.ui:298
-msgctxt "extended_tip|none"
-msgid "Specifies whether comments in your document are printed."
+msgctxt "printoptionspage|extended_tip|none"
+msgid "Do not print document comments."
msgstr ""
#. 6vPTt
@@ -25521,10 +25521,10 @@ msgctxt "printoptionspage|only"
msgid "Comments _only"
msgstr ""
-#. KsL3A
+#. aBf74
#: sw/uiconfig/swriter/ui/printoptionspage.ui:318
-msgctxt "extended_tip|only"
-msgid "Specifies whether comments in your document are printed."
+msgctxt "printoptionspage|extended_tip|only"
+msgid "Only print the comments of your document."
msgstr ""
#. n5M2U
@@ -25533,10 +25533,10 @@ msgctxt "printoptionspage|end"
msgid "End of docu_ment"
msgstr ""
-#. VxM7F
+#. LgZCr
#: sw/uiconfig/swriter/ui/printoptionspage.ui:338
-msgctxt "extended_tip|end"
-msgid "Specifies whether comments in your document are printed."
+msgctxt "printoptionspage|extended_tip|end"
+msgid "Print comments on a new page at end of the document."
msgstr ""
#. pRqdi
@@ -25545,10 +25545,10 @@ msgctxt "printoptionspage|endpage"
msgid "_End of page"
msgstr ""
-#. hxM9Z
+#. c2JD2
#: sw/uiconfig/swriter/ui/printoptionspage.ui:358
msgctxt "extended_tip|endpage"
-msgid "Specifies whether comments in your document are printed."
+msgid "Print comments on a new page after the current page."
msgstr ""
#. oBR83
@@ -25557,10 +25557,10 @@ msgctxt "printoptionspage|inmargins"
msgid "In margins"
msgstr ""
-#. 7aAXX
+#. HTtDH
#: sw/uiconfig/swriter/ui/printoptionspage.ui:378
-msgctxt "extended_tip|inmargins"
-msgid "Specifies whether comments in your document are printed."
+msgctxt "printoptionspage|extended_tip|inmargins"
+msgid "Include the comments boxes on the margin of the page. The page contents is rendered to fit both contents and the comments boxes."
msgstr ""
#. VeG6V
@@ -28460,10 +28460,10 @@ msgctxt "textgridpage|labelFT_RUBYSIZE"
msgid "Max. Ruby text size:"
msgstr ""
-#. FxPwc
+#. hHaUA
#: sw/uiconfig/swriter/ui/textgridpage.ui:363
msgctxt "textgridpage|extended_tip|spinMF_RUBYSIZE"
-msgid "Enter the font size for the Ruby text."
+msgid "Enter the maximum font size for the Ruby text."
msgstr ""
#. FJFVs
@@ -29621,10 +29621,10 @@ msgctxt "tocindexpage|casesens"
msgid "Case sensitive"
msgstr ""
-#. rAwSj
+#. sNHCm
#: sw/uiconfig/swriter/ui/tocindexpage.ui:1003
msgctxt "tocindexpage|extended_tip|casesens"
-msgid "Distinguishes between uppercase and lowercase letters in identical index entries. For Asian languages special handling applies."
+msgid "Distinguishes between uppercase and lowercase letters in otherwise identical index entries. For Asian languages special handling applies."
msgstr ""
#. e35vc
diff --git a/source/be/cui/messages.po b/source/be/cui/messages.po
index d9698afef5f..0ea5bcbcd3d 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: 2022-06-10 13:57+0200\n"
+"POT-Creation-Date: 2022-06-15 22:27+0200\n"
"PO-Revision-Date: 2018-11-14 11:33+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3124,10 +3124,10 @@ msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Need custom contents for metadata properties? File ▸ Properties ▸ Custom Properties tab lets you create what you want."
msgstr ""
-#. 9TnEA
+#. beSc7
#: cui/inc/tipoftheday.hrc:208
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Want to see, but not print, an object in Draw? Draw it on a layer for which the “Printable” flag is not set (right click on the tab and “Modify Layer”)."
+msgid "Want to see, but not print, an object in Draw? Draw it on a layer for which the “Printable” flag is not set (right-click the layer’s tab and choose “Modify Layer”)."
msgstr ""
#. CGQaY
@@ -4918,25 +4918,25 @@ msgid "[M]: Replace while modifying existing text"
msgstr "[M]: мяняць пры змяненні наяўнага тэксту"
#. FtXg9
-#: cui/uiconfig/ui/applyautofmtpage.ui:90
+#: cui/uiconfig/ui/applyautofmtpage.ui:93
msgctxt "applyautofmtpage|label2"
msgid "[T]: AutoCorrect while typing"
msgstr "[T]: аўта-карэкцыя пры наборы тэксту"
#. NujUD
-#: cui/uiconfig/ui/applyautofmtpage.ui:136
+#: cui/uiconfig/ui/applyautofmtpage.ui:142
msgctxt "applyautofmtpage|m"
msgid "[M]"
msgstr "[M]"
#. qanx6
-#: cui/uiconfig/ui/applyautofmtpage.ui:158
+#: cui/uiconfig/ui/applyautofmtpage.ui:164
msgctxt "applyautofmtpage|t"
msgid "[T]"
msgstr "[T]"
#. 2tG6L
-#: cui/uiconfig/ui/applyautofmtpage.ui:205
+#: cui/uiconfig/ui/applyautofmtpage.ui:211
msgctxt "applyautofmtpage|extended_tip|ApplyAutoFmtPage"
msgid "Select the options for automatically correcting errors as you type, and then click OK."
msgstr ""
@@ -8293,10 +8293,10 @@ msgctxt "dimensionlinestabpage|TSB_PARALLEL"
msgid "_Parallel to line"
msgstr "Паралельна лініі"
-#. gZdFr
+#. CCTEb
#: cui/uiconfig/ui/dimensionlinestabpage.ui:440
msgctxt "dimensionlinestabpage|extended_tip|TSB_PARALLEL"
-msgid "Displays the text parallel to or at 90 degrees to the dimension line."
+msgid "If enabled, displays the text parallel to the dimension line. If disabled, the text is shown at 90 degrees to the dimension line."
msgstr ""
#. QNscD
@@ -8305,10 +8305,10 @@ msgctxt "dimensionlinestabpage|TSB_SHOW_UNIT"
msgid "Show _measurement units"
msgstr "Паказац_ь адзінкі вымярэння"
-#. cJRA9
+#. KQGtM
#: cui/uiconfig/ui/dimensionlinestabpage.ui:461
msgctxt "dimensionlinestabpage|extended_tip|TSB_SHOW_UNIT"
-msgid "Shows or hides the dimension measurement units. You can also select a measurement unit you want to display from the list."
+msgid "Shows or hides the dimension measurement unit. You can select a measurement unit you want to display from the list."
msgstr ""
#. EEaqi
@@ -10316,10 +10316,10 @@ msgctxt "hangulhanjaoptdialog|extended_tip|delete"
msgid "Deletes the selected user-defined dictionary."
msgstr ""
-#. v7Bkk
+#. eG9Qx
#: cui/uiconfig/ui/hangulhanjaoptdialog.ui:231
msgctxt "hangulhanjaoptdialog|extended_tip|dicts"
-msgid "Lists all user-defined dictionaries. Select the check box next to the dictionary that you want to use. Clear the check box next to the dictionary that you do not want to use."
+msgid "Lists all user-defined dictionaries. Select the check box next to the dictionaries that you want to use. Clear the check box next to the dictionaries that you do not want to use."
msgstr ""
#. DmfuX
@@ -10701,19 +10701,19 @@ msgid "Opens the Assign Macro dialog, in which you can give events such as \"mou
msgstr ""
#. TXrCH
-#: cui/uiconfig/ui/hyperlinkdocpage.ui:399
+#: cui/uiconfig/ui/hyperlinkdocpage.ui:391
msgctxt "hyperlinkdocpage|extended_tip|frame"
msgid "Enter the name of the frame that you want the linked file to open in, or select a predefined frame from the list. If you leave this box blank, the linked file opens in the current browser window."
msgstr ""
#. frjow
-#: cui/uiconfig/ui/hyperlinkdocpage.ui:420
+#: cui/uiconfig/ui/hyperlinkdocpage.ui:412
msgctxt "hyperlinkdocpage|label1"
msgid "Further Settings"
msgstr "Далейшыя настаўленні"
#. 789Vi
-#: cui/uiconfig/ui/hyperlinkdocpage.ui:435
+#: cui/uiconfig/ui/hyperlinkdocpage.ui:427
msgctxt "hyperlinkdocpage|extended_tip|HyperlinkDocPage"
msgid "Hyperlinks to any document or targets in documents can be edited using the Document tab from the Hyperlink dialog."
msgstr ""
@@ -10857,19 +10857,19 @@ msgid "Opens the Assign Macro dialog, in which you can give events such as \"mou
msgstr ""
#. C5Hqs
-#: cui/uiconfig/ui/hyperlinkinternetpage.ui:409
+#: cui/uiconfig/ui/hyperlinkinternetpage.ui:401
msgctxt "hyperlinkinternetpage|extended_tip|frame"
msgid "Enter the name of the frame that you want the linked file to open in, or select a predefined frame from the list. If you leave this box blank, the linked file opens in the current browser window."
msgstr ""
#. UKQMX
-#: cui/uiconfig/ui/hyperlinkinternetpage.ui:430
+#: cui/uiconfig/ui/hyperlinkinternetpage.ui:422
msgctxt "hyperlinkinternetpage|label1"
msgid "Further Settings"
msgstr "Далейшыя настаўленні"
#. 8UdTe
-#: cui/uiconfig/ui/hyperlinkinternetpage.ui:445
+#: cui/uiconfig/ui/hyperlinkinternetpage.ui:437
msgctxt "hyperlinkinternetpage|extended_tip|HyperlinkInternetPage"
msgid "Use the Internet page of the Hyperlink dialog to edit hyperlinks with WWW or FTP addresses."
msgstr ""
@@ -10971,19 +10971,19 @@ msgid "Opens the Assign Macro dialog, in which you can give events such as \"mou
msgstr ""
#. CwHdi
-#: cui/uiconfig/ui/hyperlinkmailpage.ui:324
+#: cui/uiconfig/ui/hyperlinkmailpage.ui:316
msgctxt "hyperlinkmailpage|extended_tip|frame"
msgid "Enter the name of the frame that you want the linked file to open in, or select a predefined frame from the list. If you leave this box blank, the linked file opens in the current browser window."
msgstr ""
#. BmHDh
-#: cui/uiconfig/ui/hyperlinkmailpage.ui:345
+#: cui/uiconfig/ui/hyperlinkmailpage.ui:337
msgctxt "hyperlinkmailpage|label1"
msgid "Further Settings"
msgstr "Далейшыя настаўленні"
#. SvyDu
-#: cui/uiconfig/ui/hyperlinkmailpage.ui:360
+#: cui/uiconfig/ui/hyperlinkmailpage.ui:352
msgctxt "hyperlinkmailpage|extended_tip|HyperlinkMailPage"
msgid "On the Mail page in the Hyperlink dialog you can edit hyperlinks for email addresses."
msgstr ""
@@ -11145,19 +11145,19 @@ msgid "Opens the Assign Macro dialog, in which you can give events such as \"mou
msgstr ""
#. rXaNm
-#: cui/uiconfig/ui/hyperlinknewdocpage.ui:408
+#: cui/uiconfig/ui/hyperlinknewdocpage.ui:400
msgctxt "hyperlinknewdocpage|extended_tip|frame"
msgid "Enter the name of the frame that you want the linked file to open in, or select a predefined frame from the list. If you leave this box blank, the linked file opens in the current browser window."
msgstr ""
#. MS2Cn
-#: cui/uiconfig/ui/hyperlinknewdocpage.ui:429
+#: cui/uiconfig/ui/hyperlinknewdocpage.ui:421
msgctxt "hyperlinknewdocpage|label1"
msgid "Further Settings"
msgstr "Далейшыя настаўленні"
#. ztAbs
-#: cui/uiconfig/ui/hyperlinknewdocpage.ui:444
+#: cui/uiconfig/ui/hyperlinknewdocpage.ui:436
msgctxt "hyperlinknewdocpage|extended_tip|HyperlinkNewDocPage"
msgid "Use the New Document tab from the Hyperlink dialog to set up a hyperlink to a new document and create the new document simultaneously."
msgstr ""
@@ -11922,10 +11922,10 @@ msgctxt "langtoolconfigpage|base"
msgid "Base URL:"
msgstr ""
-#. 9to2D
+#. z58D6
#: cui/uiconfig/ui/langtoolconfigpage.ui:111
msgctxt "langtoolconfigpage|usernamelbl"
-msgid "User name:"
+msgid "Username:"
msgstr ""
#. B8kMr
@@ -11934,32 +11934,32 @@ msgctxt "langtoolconfigpage|apikeylbl"
msgid "API key:"
msgstr ""
-#. AoT7Z
+#. LBMkb
#: cui/uiconfig/ui/langtoolconfigpage.ui:159
msgctxt "langtoolconfigpage|urldesc"
-msgid "Please use the base URL e.g. without \"/check\" at the end."
+msgid "Please use the base URL, i.e., without “/check”, at the end."
msgstr ""
-#. EDETM
-#: cui/uiconfig/ui/langtoolconfigpage.ui:171
+#. 77oav
+#: cui/uiconfig/ui/langtoolconfigpage.ui:174
msgctxt "langtoolconfigpage|usernamedesc"
-msgid "Your LanguageTool account's username for premium usage."
+msgid "Your LanguageTool account’s username for premium usage."
msgstr ""
-#. aDGJf
-#: cui/uiconfig/ui/langtoolconfigpage.ui:183
+#. tGuAh
+#: cui/uiconfig/ui/langtoolconfigpage.ui:189
msgctxt "langtoolconfigpage|apikeydesc"
-msgid "Your LanguageTool account's api key for premium usage."
+msgid "Your LanguageTool account’s API key for premium usage."
msgstr ""
#. Dn8bb
-#: cui/uiconfig/ui/langtoolconfigpage.ui:206
+#: cui/uiconfig/ui/langtoolconfigpage.ui:215
msgctxt "langtoolconfigpage|apisettingsheader"
msgid "API Settings"
msgstr ""
#. Ntss5
-#: cui/uiconfig/ui/langtoolconfigpage.ui:225
+#: cui/uiconfig/ui/langtoolconfigpage.ui:234
msgctxt "langtoolconfigpage|langtoolsettings"
msgid "LanguageTool API Options"
msgstr ""
@@ -14477,73 +14477,73 @@ msgstr "[L]: Чытанне і ператварэнне аб'екта"
#. PiDB7
#. The [S] here is repeated as the column title for the "Save" column of this options page
-#: cui/uiconfig/ui/optfltrembedpage.ui:163
+#: cui/uiconfig/ui/optfltrembedpage.ui:166
msgctxt "optfltrembedpage|label3"
msgid "[S]: Convert and save the object"
msgstr "[S]: Ператварэнне і запіс аб'екта"
#. f2hGQ
-#: cui/uiconfig/ui/optfltrembedpage.ui:185
+#: cui/uiconfig/ui/optfltrembedpage.ui:191
msgctxt "optfltrembedpage|label1"
msgid "Embedded Objects"
msgstr "Убудаваныя аб'екты"
#. nvE89
-#: cui/uiconfig/ui/optfltrembedpage.ui:215
+#: cui/uiconfig/ui/optfltrembedpage.ui:221
msgctxt "optfltrembedpage|label5"
msgid "Export as:"
msgstr "Экспартаваць як:"
#. FEeH6
-#: cui/uiconfig/ui/optfltrembedpage.ui:230
+#: cui/uiconfig/ui/optfltrembedpage.ui:236
msgctxt "optfltrembedpage|highlighting"
msgid "Highlighting"
msgstr "Падсвятленне"
#. qBuyX
-#: cui/uiconfig/ui/optfltrembedpage.ui:239
+#: cui/uiconfig/ui/optfltrembedpage.ui:245
msgctxt "extended_tip|highlighting"
msgid "Microsoft Office has two character attributes similar to Writer character background. Select the appropriate attribute (highlighting or shading) which you would like to use during export to Microsoft Office file formats."
msgstr ""
#. Dnrx7
-#: cui/uiconfig/ui/optfltrembedpage.ui:251
+#: cui/uiconfig/ui/optfltrembedpage.ui:257
msgctxt "optfltrembedpage|shading"
msgid "Shading"
msgstr "Зацяненне"
#. 3PFE2
-#: cui/uiconfig/ui/optfltrembedpage.ui:260
+#: cui/uiconfig/ui/optfltrembedpage.ui:266
msgctxt "extended_tip|shading"
msgid "Microsoft Office has two character attributes similar to Writer character background. Select the appropriate attribute (highlighting or shading) which you would like to use during export to Microsoft Office file formats."
msgstr ""
#. gKwdG
-#: cui/uiconfig/ui/optfltrembedpage.ui:283
+#: cui/uiconfig/ui/optfltrembedpage.ui:289
msgctxt "optfltrembedpage|label4"
msgid "Character Highlighting"
msgstr "Падсвятленне знакаў"
#. tyACF
-#: cui/uiconfig/ui/optfltrembedpage.ui:310
+#: cui/uiconfig/ui/optfltrembedpage.ui:316
msgctxt "optfltrembedpage|mso_lockfile"
msgid "Create MSO lock file"
msgstr ""
#. qc4GD
-#: cui/uiconfig/ui/optfltrembedpage.ui:319
+#: cui/uiconfig/ui/optfltrembedpage.ui:325
msgctxt "extended_tip|mso_lockfile"
msgid "Mark this checkbox to generate a Microsoft Office lock file in addition to this office suite's own lock file."
msgstr ""
#. Sg5Bw
-#: cui/uiconfig/ui/optfltrembedpage.ui:335
+#: cui/uiconfig/ui/optfltrembedpage.ui:341
msgctxt "optfltrembedpage|label5"
msgid "Lock Files"
msgstr ""
#. EUBnP
-#: cui/uiconfig/ui/optfltrembedpage.ui:349
+#: cui/uiconfig/ui/optfltrembedpage.ui:355
msgctxt "extended_tip|OptFilterPage"
msgid "Specifies the settings for importing and exporting Microsoft Office and other documents."
msgstr ""
@@ -14812,10 +14812,10 @@ msgctxt "optgeneralpage|exthelp"
msgid "_Extended tips"
msgstr "Пашыраныя наменкі"
-#. ypuz2
+#. TyqBV
#: cui/uiconfig/ui/optgeneralpage.ui:42
msgctxt "extended_tip | exthelp"
-msgid "Displays a help text when you rest the cursor on an icon, a menu command, or a control on a dialog."
+msgid "Displays a help text when you rest the mouse pointer on an icon, a menu command, or a control on a dialog."
msgstr ""
#. Cbeuc
@@ -16512,7 +16512,7 @@ msgid "Passwords are protected by a master password. You will be asked to enter
msgstr "Паролі засцерагаюцца майстар-паролем. Яго трэба ўпісваць раз за сеанс, калі %PRODUCTNAME бярэ пароль з ліку засцераганых."
#. 7gzb7
-#: cui/uiconfig/ui/optsecuritypage.ui:303
+#: cui/uiconfig/ui/optsecuritypage.ui:306
msgctxt "optsecuritypage|nopasswordsave"
msgid ""
"Disabling the function to persistently store passwords deletes the list of passwords stored and resets the master password.\n"
@@ -16524,61 +16524,61 @@ msgstr ""
"Ці жадаеце сцерці запісаныя паролі і вярнуць пачатковы майстар-пароль?"
#. hwg3F
-#: cui/uiconfig/ui/optsecuritypage.ui:341
+#: cui/uiconfig/ui/optsecuritypage.ui:344
msgctxt "optsecuritypage|connections"
msgid "Connect_ions..."
msgstr "Далучэнні..."
#. GLEjB
-#: cui/uiconfig/ui/optsecuritypage.ui:349
+#: cui/uiconfig/ui/optsecuritypage.ui:352
msgctxt "extended_tip|connections"
msgid "Asks for the master password. If master password is correct, shows the Stored Web Connection Information dialog."
msgstr ""
#. SWrMn
-#: cui/uiconfig/ui/optsecuritypage.ui:371
+#: cui/uiconfig/ui/optsecuritypage.ui:374
msgctxt "optsecuritypage|masterpassword"
msgid "_Master Password..."
msgstr "Майстар-пароль..."
#. w3TQo
-#: cui/uiconfig/ui/optsecuritypage.ui:379
+#: cui/uiconfig/ui/optsecuritypage.ui:382
msgctxt "extended_tip|masterpassword"
msgid "Opens the Enter Master Password dialog."
msgstr ""
#. UtNEn
-#: cui/uiconfig/ui/optsecuritypage.ui:406
+#: cui/uiconfig/ui/optsecuritypage.ui:409
msgctxt "optsecuritypage|label2"
msgid "Passwords for Web Connections"
msgstr "Паролі для сеціўных далучэнняў"
#. EYFvA
-#: cui/uiconfig/ui/optsecuritypage.ui:439
+#: cui/uiconfig/ui/optsecuritypage.ui:442
msgctxt "optsecuritypage|label4"
msgid "Adjust security related options and define warnings for hidden information in documents. "
msgstr "Настройка параметраў бяспекі і вызначэнне папярэджанняў для прыхаванай інфармацыі ў дакументах. "
#. CBnzU
-#: cui/uiconfig/ui/optsecuritypage.ui:452
+#: cui/uiconfig/ui/optsecuritypage.ui:455
msgctxt "optsecuritypage|options"
msgid "O_ptions..."
msgstr "Настаўленні..."
#. pepKZ
-#: cui/uiconfig/ui/optsecuritypage.ui:460
+#: cui/uiconfig/ui/optsecuritypage.ui:463
msgctxt "extended_tip|options"
msgid "Opens the \"Security Options and Warnings\" dialog."
msgstr ""
#. GqVkJ
-#: cui/uiconfig/ui/optsecuritypage.ui:475
+#: cui/uiconfig/ui/optsecuritypage.ui:478
msgctxt "optsecuritypage|label1"
msgid "Security Options and Warnings"
msgstr "Настаўленні бяспекі і папярэджанні"
#. rwtuC
-#: cui/uiconfig/ui/optsecuritypage.ui:489
+#: cui/uiconfig/ui/optsecuritypage.ui:492
msgctxt "extended_tip|OptSecurityPage"
msgid "Defines the security options for saving documents, for web connections, and for opening documents that contain macros."
msgstr ""
@@ -20082,10 +20082,10 @@ msgctxt "specialcharacters|srchft"
msgid "Search:"
msgstr "Пошук:"
-#. eCjVg
+#. zPCZ7
#: cui/uiconfig/ui/specialcharacters.ui:166
msgctxt "specialcharacters|extended_tip|subsetlb"
-msgid "Select a Unicode category for the current font."
+msgid "Select a Unicode block for the current font."
msgstr ""
#. JPWW8
@@ -20119,19 +20119,19 @@ msgid "Maximum Limit: 16 Characters"
msgstr "Максімум: 16 знакаў"
#. ti8sG
-#: cui/uiconfig/ui/specialcharacters.ui:371
+#: cui/uiconfig/ui/specialcharacters.ui:374
msgctxt "specialcharacters|symboltext1"
msgid "Recent Characters:"
msgstr "Нядаўнія знакі:"
#. LQZ7q
-#: cui/uiconfig/ui/specialcharacters.ui:605
+#: cui/uiconfig/ui/specialcharacters.ui:608
msgctxt "specialcharacters|favbtn|symboltext2"
msgid "Favorite Characters:"
msgstr "Абраныя знакі:"
#. DhG6L
-#: cui/uiconfig/ui/specialcharacters.ui:903
+#: cui/uiconfig/ui/specialcharacters.ui:906
msgctxt "specialcharacters|extended_tip|SpecialCharactersDialog"
msgid "Allows a user to insert characters from the range of symbols found in the installed fonts."
msgstr ""
diff --git a/source/be/filter/messages.po b/source/be/filter/messages.po
index ef9974221f1..120fae665e4 100644
--- a/source/be/filter/messages.po
+++ b/source/be/filter/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2022-01-31 18:19+0100\n"
+"POT-Creation-Date: 2022-06-15 22:28+0200\n"
"PO-Revision-Date: 2017-12-10 14:22+0000\n"
"Last-Translator: Мікалай Удодаў <crom-a@tut.by>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1512,10 +1512,10 @@ msgctxt "pdfviewpage|fitvis"
msgid "Fit _visible"
msgstr "Да памераў бачнага"
-#. FD8Pp
+#. EBBzj
#: filter/uiconfig/ui/pdfviewpage.ui:254
msgctxt "pdfviewpage|extended_tip|fitvis"
-msgid "Select to generate a PDF file that shows the text and graphics on the page zoomed to fit the width of the reader's window."
+msgid "Select to generate a PDF file that shows the text and graphics on the page zoomed to fit the reader's window."
msgstr ""
#. NGpWy
@@ -1914,10 +1914,10 @@ msgctxt "xmlfiltertabpagegeneral|extended_tip|filtername"
msgid "Enter the name that you want to display in the list box of the XML Filter Settings dialog."
msgstr ""
-#. Tbmcc
+#. D5aZP
#: filter/uiconfig/ui/xmlfiltertabpagegeneral.ui:119
msgctxt "xmlfiltertabpagegeneral|extended_tip|extension"
-msgid "Enter the file extension to use when you open a file without specifying a filter. The file extension to used to determine which filter to use."
+msgid "Enter the file extension to use when you open a file without specifying a filter. The file extension is used to determine which filter to use."
msgstr ""
#. fZvBA
diff --git a/source/be/svx/messages.po b/source/be/svx/messages.po
index c35454c2e2f..c08f0632557 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: 2022-06-09 11:50+0200\n"
+"POT-Creation-Date: 2022-06-15 22:28+0200\n"
"PO-Revision-Date: 2020-05-20 11:22+0000\n"
"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
"Language-Team: Belarusian <https://weblate.documentfoundation.org/projects/libo_ui-master/svxmessages/be/>\n"
@@ -17087,13 +17087,13 @@ msgid "_Kern Character Pairs"
msgstr ""
#. 8SKCU
-#: svx/uiconfig/ui/fontworkgallerydialog.ui:18
+#: svx/uiconfig/ui/fontworkgallerydialog.ui:16
msgctxt "fontworkgallerydialog|FontworkGalleryDialog"
msgid "Fontwork Gallery"
msgstr "Галерэя тэкставых эфектаў"
#. GB7pa
-#: svx/uiconfig/ui/fontworkgallerydialog.ui:101
+#: svx/uiconfig/ui/fontworkgallerydialog.ui:99
msgctxt "fontworkgallerydialog|label1"
msgid "Select a Fontwork style:"
msgstr "Выберыце стыль Шрыфтавання:"
diff --git a/source/be/sw/messages.po b/source/be/sw/messages.po
index d9dbff75350..e6976c1819b 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: 2022-06-09 11:51+0200\n"
+"POT-Creation-Date: 2022-06-15 22:29+0200\n"
"PO-Revision-Date: 2018-11-14 11:33+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -14138,10 +14138,10 @@ msgctxt "envprinterpage|setup"
msgid "Setup..."
msgstr "Настаўленні..."
-#. jyNbK
+#. 4GuQN
#: sw/uiconfig/swriter/ui/envprinterpage.ui:467
msgctxt "envprinterpage|extended_tip|setup"
-msgid "Opens the Print Setup dialog where you can define additional printer settings, such as paper format and orientation."
+msgid "Opens the Printer Setup dialog where you can define additional printer settings, such as paper format and orientation."
msgstr ""
#. AKs6U
@@ -17574,10 +17574,10 @@ msgctxt "insertdbcolumnsdialog|extended_tip|tabledbcols"
msgid "Specifies the database columns to be inserted into the text table."
msgstr ""
-#. XmaQd
+#. xupgr
#: sw/uiconfig/swriter/ui/insertdbcolumnsdialog.ui:559
msgctxt "insertdbcolumnsdialog|extended_tip|tabletxtcols"
-msgid "Select the database columns that you want to insert it in the document."
+msgid "Select the database columns that you want to insert in the document."
msgstr ""
#. DJStE
@@ -18102,44 +18102,38 @@ msgctxt "labeldialog|extended_tip|ok"
msgid "Creates a new document for editing."
msgstr ""
-#. EtFBT
-#: sw/uiconfig/swriter/ui/labeldialog.ui:141
-msgctxt "labeldialog|medium"
-msgid "Medium"
-msgstr "Носьбіт"
-
#. hJSCq
-#: sw/uiconfig/swriter/ui/labeldialog.ui:188
+#: sw/uiconfig/swriter/ui/labeldialog.ui:144
msgctxt "labeldialog|labels"
msgid "Labels"
msgstr "Цэтлікі"
#. G378Z
-#: sw/uiconfig/swriter/ui/labeldialog.ui:236
+#: sw/uiconfig/swriter/ui/labeldialog.ui:192
msgctxt "labeldialog|private"
msgid "Private"
msgstr "Прыватнае"
#. CAEMT
-#: sw/uiconfig/swriter/ui/labeldialog.ui:284
+#: sw/uiconfig/swriter/ui/labeldialog.ui:240
msgctxt "labeldialog|business"
msgid "Business"
msgstr "Праца"
#. a7BSb
-#: sw/uiconfig/swriter/ui/labeldialog.ui:332
+#: sw/uiconfig/swriter/ui/labeldialog.ui:288
msgctxt "labeldialog|format"
msgid "Format"
msgstr "Фармат"
#. cs8CW
-#: sw/uiconfig/swriter/ui/labeldialog.ui:380
+#: sw/uiconfig/swriter/ui/labeldialog.ui:336
msgctxt "labeldialog|options"
msgid "Options"
msgstr "Настаўленні"
#. uB6wE
-#: sw/uiconfig/swriter/ui/labeldialog.ui:407
+#: sw/uiconfig/swriter/ui/labeldialog.ui:363
msgctxt "labeldialog|extended_tip|LabelDialog"
msgid "Allows you to create labels. Labels are created in a text document."
msgstr ""
@@ -20316,26 +20310,32 @@ msgctxt "mmselectpage|extended_tip|browsetemplate"
msgid "Opens a template selector dialog."
msgstr ""
-#. qieQK
+#. EDivp
#: sw/uiconfig/swriter/ui/mmselectpage.ui:191
-msgctxt "mmselectpage|extended_tip|datasourcewarning"
+msgctxt "mmselectpage|datasourcewarning"
msgid "Data source of the current document is not registered. Please exchange database."
msgstr ""
-#. QcsgV
+#. NGYGa
#: sw/uiconfig/swriter/ui/mmselectpage.ui:200
+msgctxt "mmselectpage|exchangedatabase"
+msgid "Exchange Databases..."
+msgstr ""
+
+#. YjZmM
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:208
msgctxt "mmselectpage|extended_tip|exchangedatabase"
-msgid "Exchange Database..."
+msgid "Click to exchange the databases of your mail merge."
msgstr ""
#. 8ESAz
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:218
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:223
msgctxt "mmselectpage|label1"
msgid "Select Starting Document for the Mail Merge"
msgstr "Выбраць дакумент як аснову для памножанай пошты"
#. Hpca5
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:233
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:238
msgctxt "mmselectpage|extended_tip|MMSelectPage"
msgid "Specify the document that you want to use as a base for the mail merge document."
msgstr ""
@@ -22496,49 +22496,49 @@ msgid "OLE Object"
msgstr ""
#. eRTnb
-#: sw/uiconfig/swriter/ui/objectdialog.ui:109
+#: sw/uiconfig/swriter/ui/objectdialog.ui:110
msgctxt "objectdialog|type"
msgid "Position and Size"
msgstr ""
#. ADJiB
-#: sw/uiconfig/swriter/ui/objectdialog.ui:132
+#: sw/uiconfig/swriter/ui/objectdialog.ui:133
msgctxt "objectdialog|options"
msgid "Options"
msgstr "Настаўленні"
#. s9Kta
-#: sw/uiconfig/swriter/ui/objectdialog.ui:156
+#: sw/uiconfig/swriter/ui/objectdialog.ui:157
msgctxt "objectdialog|wrap"
msgid "Wrap"
msgstr "Загарнуць"
#. vtCHo
-#: sw/uiconfig/swriter/ui/objectdialog.ui:180
+#: sw/uiconfig/swriter/ui/objectdialog.ui:181
msgctxt "objectdialog|hyperlink"
msgid "Hyperlink"
msgstr "Спасылка"
#. GquSU
-#: sw/uiconfig/swriter/ui/objectdialog.ui:204
+#: sw/uiconfig/swriter/ui/objectdialog.ui:205
msgctxt "objectdialog|borders"
msgid "Borders"
msgstr "Межы"
#. L6dGA
-#: sw/uiconfig/swriter/ui/objectdialog.ui:228
+#: sw/uiconfig/swriter/ui/objectdialog.ui:229
msgctxt "objectdialog|area"
msgid "Area"
msgstr "Абсяг"
#. zJ76x
-#: sw/uiconfig/swriter/ui/objectdialog.ui:252
+#: sw/uiconfig/swriter/ui/objectdialog.ui:253
msgctxt "objectdialog|transparence"
msgid "Transparency"
msgstr "Празрыстасць"
#. FVDe9
-#: sw/uiconfig/swriter/ui/objectdialog.ui:276
+#: sw/uiconfig/swriter/ui/objectdialog.ui:277
msgctxt "objectdialog|macro"
msgid "Macro"
msgstr "Макрас"
@@ -25205,10 +25205,10 @@ msgctxt "printoptionspage|background"
msgid "Page ba_ckground"
msgstr "Фон старонкі"
-#. ocn5F
+#. DAfze
#: sw/uiconfig/swriter/ui/printoptionspage.ui:80
-msgctxt "extended_tip|background"
-msgid "Specifies whether to include colors and objects that are inserted to the background of the page (Format - Page - Background) in the printed document."
+msgctxt "printoptionspage|extended_tip|background"
+msgid "Specifies whether to include colors and objects that are inserted to the background of the page style (Format - Page Style - Area) in the printed document."
msgstr ""
#. FWBUe
@@ -25313,10 +25313,10 @@ msgctxt "printoptionspage|none"
msgid "_None"
msgstr "Няма"
-#. CDv8b
+#. d4YMs
#: sw/uiconfig/swriter/ui/printoptionspage.ui:298
-msgctxt "extended_tip|none"
-msgid "Specifies whether comments in your document are printed."
+msgctxt "printoptionspage|extended_tip|none"
+msgid "Do not print document comments."
msgstr ""
#. 6vPTt
@@ -25325,10 +25325,10 @@ msgctxt "printoptionspage|only"
msgid "Comments _only"
msgstr "Толькі заўвагі"
-#. KsL3A
+#. aBf74
#: sw/uiconfig/swriter/ui/printoptionspage.ui:318
-msgctxt "extended_tip|only"
-msgid "Specifies whether comments in your document are printed."
+msgctxt "printoptionspage|extended_tip|only"
+msgid "Only print the comments of your document."
msgstr ""
#. n5M2U
@@ -25337,10 +25337,10 @@ msgctxt "printoptionspage|end"
msgid "End of docu_ment"
msgstr "Канец дакумента"
-#. VxM7F
+#. LgZCr
#: sw/uiconfig/swriter/ui/printoptionspage.ui:338
-msgctxt "extended_tip|end"
-msgid "Specifies whether comments in your document are printed."
+msgctxt "printoptionspage|extended_tip|end"
+msgid "Print comments on a new page at end of the document."
msgstr ""
#. pRqdi
@@ -25349,10 +25349,10 @@ msgctxt "printoptionspage|endpage"
msgid "_End of page"
msgstr "Канец старонкі"
-#. hxM9Z
+#. c2JD2
#: sw/uiconfig/swriter/ui/printoptionspage.ui:358
msgctxt "extended_tip|endpage"
-msgid "Specifies whether comments in your document are printed."
+msgid "Print comments on a new page after the current page."
msgstr ""
#. oBR83
@@ -25361,10 +25361,10 @@ msgctxt "printoptionspage|inmargins"
msgid "In margins"
msgstr "На межах"
-#. 7aAXX
+#. HTtDH
#: sw/uiconfig/swriter/ui/printoptionspage.ui:378
-msgctxt "extended_tip|inmargins"
-msgid "Specifies whether comments in your document are printed."
+msgctxt "printoptionspage|extended_tip|inmargins"
+msgid "Include the comments boxes on the margin of the page. The page contents is rendered to fit both contents and the comments boxes."
msgstr ""
#. VeG6V
@@ -28231,10 +28231,10 @@ msgctxt "textgridpage|labelFT_RUBYSIZE"
msgid "Max. Ruby text size:"
msgstr "Макс. памер тэксту фанетычнага гіда"
-#. FxPwc
+#. hHaUA
#: sw/uiconfig/swriter/ui/textgridpage.ui:363
msgctxt "textgridpage|extended_tip|spinMF_RUBYSIZE"
-msgid "Enter the font size for the Ruby text."
+msgid "Enter the maximum font size for the Ruby text."
msgstr ""
#. FJFVs
@@ -29383,10 +29383,10 @@ msgctxt "tocindexpage|casesens"
msgid "Case sensitive"
msgstr "Улічваць рэгістр"
-#. rAwSj
+#. sNHCm
#: sw/uiconfig/swriter/ui/tocindexpage.ui:1003
msgctxt "tocindexpage|extended_tip|casesens"
-msgid "Distinguishes between uppercase and lowercase letters in identical index entries. For Asian languages special handling applies."
+msgid "Distinguishes between uppercase and lowercase letters in otherwise identical index entries. For Asian languages special handling applies."
msgstr ""
#. e35vc
diff --git a/source/bg/cui/messages.po b/source/bg/cui/messages.po
index 17fe62a5b34..aec95055596 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: 2022-06-10 13:57+0200\n"
-"PO-Revision-Date: 2022-06-10 12:05+0000\n"
+"POT-Creation-Date: 2022-06-15 22:27+0200\n"
+"PO-Revision-Date: 2022-06-15 20:37+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: Bulgarian <https://translations.documentfoundation.org/projects/libo_ui-master/cuimessages/bg/>\n"
"Language: bg\n"
@@ -3126,11 +3126,11 @@ msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Need custom contents for metadata properties? File ▸ Properties ▸ Custom Properties tab lets you create what you want."
msgstr "Искате да зададете ваши собствени свойства в метаданните? Можете да ги зададете в раздела „Файл ▸ Свойства ▸ Потребителски свойства“."
-#. 9TnEA
+#. beSc7
#: cui/inc/tipoftheday.hrc:208
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Want to see, but not print, an object in Draw? Draw it on a layer for which the “Printable” flag is not set (right click on the tab and “Modify Layer”)."
-msgstr "Искате да виждате обект в Draw, но не и да го отпечатвате? Нарисувайте го на слой, за който настройката „Печата се“ е изключена (щракнете с десния бутон върху етикета на слоя, изберете „Промяна на слой“)."
+msgid "Want to see, but not print, an object in Draw? Draw it on a layer for which the “Printable” flag is not set (right-click the layer’s tab and choose “Modify Layer”)."
+msgstr ""
#. CGQaY
#: cui/inc/tipoftheday.hrc:209
@@ -3515,7 +3515,7 @@ msgstr "Искате курсорът да преминава в клеткат
#: cui/inc/tipoftheday.hrc:270
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "To display the scrollbar to the left, enable Tools ▸ Options ▸ Language Settings ▸ Languages ▸ Complex text and right click a sheet in Sheet tabs above Status bar ▸ Right-To-Left."
-msgstr ""
+msgstr "За да преместите лентата за превъртане отляво, разрешете „Инструменти ▸ Настройки ▸ Езикови настройки ▸ Езици ▸ Сложни писмености“ и щракнете с десния бутон върху езиче на лист над лентата на състоянието ▸ „От дясно наляво“."
#. gqs9W
#: cui/inc/tipoftheday.hrc:271
@@ -3551,7 +3551,7 @@ msgstr "Никога не използвате определени стилов
#: cui/inc/tipoftheday.hrc:276
msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Don’t like the position of some icons on your toolbar? Change it with Tools ▸ Customize ▸ Toolbars tab ▸ Target."
-msgstr ""
+msgstr "Не харесвате позицията на някои икони в лентата с инструменти? Променете я с „Инструменти ▸ Персонализиране ▸ Ленти с инструменти ▸ Цел“."
#. hsZPg
#: cui/inc/tipoftheday.hrc:279
@@ -3786,7 +3786,7 @@ msgstr "Сложни писмености"
#: cui/inc/treeopt.hrc:59
msgctxt "SID_LANGUAGE_OPTIONS_RES"
msgid "LanguageTool Server Settings"
-msgstr ""
+msgstr "Настройки за сървър на LanguageTools"
#. TGnig
#: cui/inc/treeopt.hrc:64
@@ -4920,25 +4920,25 @@ msgid "[M]: Replace while modifying existing text"
msgstr "[П]: Замяна при промяна на съществуващ текст"
#. FtXg9
-#: cui/uiconfig/ui/applyautofmtpage.ui:90
+#: cui/uiconfig/ui/applyautofmtpage.ui:93
msgctxt "applyautofmtpage|label2"
msgid "[T]: AutoCorrect while typing"
msgstr "[В]: Автокорекция при въвеждане"
#. NujUD
-#: cui/uiconfig/ui/applyautofmtpage.ui:136
+#: cui/uiconfig/ui/applyautofmtpage.ui:142
msgctxt "applyautofmtpage|m"
msgid "[M]"
msgstr "[П]"
#. qanx6
-#: cui/uiconfig/ui/applyautofmtpage.ui:158
+#: cui/uiconfig/ui/applyautofmtpage.ui:164
msgctxt "applyautofmtpage|t"
msgid "[T]"
msgstr "[В]"
#. 2tG6L
-#: cui/uiconfig/ui/applyautofmtpage.ui:205
+#: cui/uiconfig/ui/applyautofmtpage.ui:211
msgctxt "applyautofmtpage|extended_tip|ApplyAutoFmtPage"
msgid "Select the options for automatically correcting errors as you type, and then click OK."
msgstr "Изберете настройките за автоматичното поправяне на грешки по време на въвеждане, след което щракнете върху OK."
@@ -6657,13 +6657,13 @@ msgstr "Възможности..."
#: cui/uiconfig/ui/charnamepage.ui:277
msgctxt "charnamepage|extended_tip|westfontnamelb-nocjk"
msgid "Select the font that you want to apply."
-msgstr ""
+msgstr "Изберете шрифта, който искате да приложите."
#. a6gqN
#: cui/uiconfig/ui/charnamepage.ui:334
msgctxt "charnamepage|Tab_Western"
msgid "Western"
-msgstr ""
+msgstr "Западни"
#. q4WZB
#: cui/uiconfig/ui/charnamepage.ui:380
@@ -6699,7 +6699,7 @@ msgstr "Възможности..."
#: cui/uiconfig/ui/charnamepage.ui:522
msgctxt "charnamepage|extended_tip|trCJKFontName"
msgid "Select the font that you want to apply."
-msgstr ""
+msgstr "Изберете шрифта, който искате да приложите."
#. KLJQT
#: cui/uiconfig/ui/charnamepage.ui:570
@@ -6711,7 +6711,7 @@ msgstr "Определя езика, използван за проверка н
#: cui/uiconfig/ui/charnamepage.ui:610
msgctxt "charnamepage|Tab_Asian"
msgid "Asian"
-msgstr ""
+msgstr "Азиатски"
#. FSm5y
#: cui/uiconfig/ui/charnamepage.ui:660
@@ -6753,13 +6753,13 @@ msgstr "Определя езика, използван за проверка н
#: cui/uiconfig/ui/charnamepage.ui:805
msgctxt "charnamepage|extended_tip|trCTLFontName"
msgid "Select the font that you want to apply."
-msgstr ""
+msgstr "Изберете шрифта, който искате да приложите."
#. U2Qki
#: cui/uiconfig/ui/charnamepage.ui:864
msgctxt "charnamepage|Tab_Complex"
msgid "Complex"
-msgstr ""
+msgstr "Сложни писмености"
#. RyyME
#: cui/uiconfig/ui/charnamepage.ui:905
@@ -7981,19 +7981,19 @@ msgstr "Въведете име за изображението."
#: cui/uiconfig/ui/cuiimapdlg.ui:245
msgctxt "cuiimapdlg|label4"
msgid "_Text Alternative:"
-msgstr ""
+msgstr "Текстова алтернатива:"
#. EP7Gk
#: cui/uiconfig/ui/cuiimapdlg.ui:246
msgctxt "cuiimapdlg|label4"
msgid "Enter a short description of essential features of the image map for persons who do not see the image."
-msgstr ""
+msgstr "Въведете кратко описание на съществените черти на чувствителното изображение за хора, които не го виждат."
#. YrTXB
#: cui/uiconfig/ui/cuiimapdlg.ui:266
msgctxt "cuiimapdlg|extended_tip|textentry"
msgid "Enter the text that you want to display when the mouse rests on the hotspot in a browser. This text can also be used by assistive technologies."
-msgstr ""
+msgstr "Въведете текста, който искате да се показва, когато показалецът на мишката се задържи върху чувствителната зона в браузър. Този текст може да се използва и от технологиите за достъпност."
#. bsgYj
#: cui/uiconfig/ui/cuiimapdlg.ui:294
@@ -8005,7 +8005,7 @@ msgstr "_Описание:"
#: cui/uiconfig/ui/cuiimapdlg.ui:295
msgctxt "cuiimapdlg|label5"
msgid "Give a longer explanation of the image map if it is too complex to be described briefly in “Text Alternative.”"
-msgstr ""
+msgstr "Задайте по-дълго обяснение за чувствителното изображение, ако е твърде сложно, за да бъде описано накратко в „Текстова алтернатива“."
#. mF6Pw
#: cui/uiconfig/ui/cuiimapdlg.ui:324
@@ -8295,11 +8295,11 @@ msgctxt "dimensionlinestabpage|TSB_PARALLEL"
msgid "_Parallel to line"
msgstr "_Успоредно на линията"
-#. gZdFr
+#. CCTEb
#: cui/uiconfig/ui/dimensionlinestabpage.ui:440
msgctxt "dimensionlinestabpage|extended_tip|TSB_PARALLEL"
-msgid "Displays the text parallel to or at 90 degrees to the dimension line."
-msgstr "Показва текста успоредно или перпендикулярно на размерната линия."
+msgid "If enabled, displays the text parallel to the dimension line. If disabled, the text is shown at 90 degrees to the dimension line."
+msgstr ""
#. QNscD
#: cui/uiconfig/ui/dimensionlinestabpage.ui:452
@@ -8307,11 +8307,11 @@ msgctxt "dimensionlinestabpage|TSB_SHOW_UNIT"
msgid "Show _measurement units"
msgstr "Видими _мерни единици"
-#. cJRA9
+#. KQGtM
#: cui/uiconfig/ui/dimensionlinestabpage.ui:461
msgctxt "dimensionlinestabpage|extended_tip|TSB_SHOW_UNIT"
-msgid "Shows or hides the dimension measurement units. You can also select a measurement unit you want to display from the list."
-msgstr "Показва или скрива мерните единици на размера. Освен това от списъка можете да изберете мерната единица, която да се показва."
+msgid "Shows or hides the dimension measurement unit. You can select a measurement unit you want to display from the list."
+msgstr ""
#. EEaqi
#: cui/uiconfig/ui/dimensionlinestabpage.ui:479
@@ -10318,11 +10318,11 @@ msgctxt "hangulhanjaoptdialog|extended_tip|delete"
msgid "Deletes the selected user-defined dictionary."
msgstr "Изтрива избрания потребителски речник."
-#. v7Bkk
+#. eG9Qx
#: cui/uiconfig/ui/hangulhanjaoptdialog.ui:231
msgctxt "hangulhanjaoptdialog|extended_tip|dicts"
-msgid "Lists all user-defined dictionaries. Select the check box next to the dictionary that you want to use. Clear the check box next to the dictionary that you do not want to use."
-msgstr "Показва всички потребителски речници. Поставете отметки срещу речниците, които желаете да ползвате. Премахнете отметките от нежеланите."
+msgid "Lists all user-defined dictionaries. Select the check box next to the dictionaries that you want to use. Clear the check box next to the dictionaries that you do not want to use."
+msgstr ""
#. DmfuX
#: cui/uiconfig/ui/hangulhanjaoptdialog.ui:248
@@ -10703,19 +10703,19 @@ msgid "Opens the Assign Macro dialog, in which you can give events such as \"mou
msgstr "Отваря диалоговия прозорец Приписване на макрос, в който можете да задавате програмен код за събития като „курсорът е върху обекта“ или „задействана е хипервръзка“."
#. TXrCH
-#: cui/uiconfig/ui/hyperlinkdocpage.ui:399
+#: cui/uiconfig/ui/hyperlinkdocpage.ui:391
msgctxt "hyperlinkdocpage|extended_tip|frame"
msgid "Enter the name of the frame that you want the linked file to open in, or select a predefined frame from the list. If you leave this box blank, the linked file opens in the current browser window."
msgstr "Въведете името на рамката, в която желаете да се отвори свързаният файл, или изберете предварително дефинирано име от списъка. Ако оставите това поле празно, свързаният файл ще се отвори в текущия прозорец на браузъра."
#. frjow
-#: cui/uiconfig/ui/hyperlinkdocpage.ui:420
+#: cui/uiconfig/ui/hyperlinkdocpage.ui:412
msgctxt "hyperlinkdocpage|label1"
msgid "Further Settings"
msgstr "Допълнителни настройки"
#. 789Vi
-#: cui/uiconfig/ui/hyperlinkdocpage.ui:435
+#: cui/uiconfig/ui/hyperlinkdocpage.ui:427
msgctxt "hyperlinkdocpage|extended_tip|HyperlinkDocPage"
msgid "Hyperlinks to any document or targets in documents can be edited using the Document tab from the Hyperlink dialog."
msgstr "Хипервръзките към произволен документ или цели в документи могат да бъдат редактирани чрез раздела Документ на диалоговия прозорец Хипервръзка."
@@ -10859,19 +10859,19 @@ msgid "Opens the Assign Macro dialog, in which you can give events such as \"mou
msgstr "Отваря диалоговия прозорец Приписване на макрос, в който можете да задавате програмен код за събития като „курсорът е върху обекта“ или „задействана е хипервръзка“."
#. C5Hqs
-#: cui/uiconfig/ui/hyperlinkinternetpage.ui:409
+#: cui/uiconfig/ui/hyperlinkinternetpage.ui:401
msgctxt "hyperlinkinternetpage|extended_tip|frame"
msgid "Enter the name of the frame that you want the linked file to open in, or select a predefined frame from the list. If you leave this box blank, the linked file opens in the current browser window."
msgstr "Въведете името на рамката, в която желаете да се отвори свързаният файл, или изберете предварително дефинирано име от списъка. Ако оставите това поле празно, свързаният файл ще се отвори в текущия прозорец на браузъра."
#. UKQMX
-#: cui/uiconfig/ui/hyperlinkinternetpage.ui:430
+#: cui/uiconfig/ui/hyperlinkinternetpage.ui:422
msgctxt "hyperlinkinternetpage|label1"
msgid "Further Settings"
msgstr "Допълнителни настройки"
#. 8UdTe
-#: cui/uiconfig/ui/hyperlinkinternetpage.ui:445
+#: cui/uiconfig/ui/hyperlinkinternetpage.ui:437
msgctxt "hyperlinkinternetpage|extended_tip|HyperlinkInternetPage"
msgid "Use the Internet page of the Hyperlink dialog to edit hyperlinks with WWW or FTP addresses."
msgstr "Използвайте страницата Интернет на диалоговия прозорец Хипервръзка, за да редактирате хипервръзки с адреси за WWW или FTP."
@@ -10973,19 +10973,19 @@ msgid "Opens the Assign Macro dialog, in which you can give events such as \"mou
msgstr "Отваря диалоговия прозорец Приписване на макрос, в който можете да задавате програмен код за събития като „курсорът е върху обекта“ или „задействана е хипервръзка“."
#. CwHdi
-#: cui/uiconfig/ui/hyperlinkmailpage.ui:324
+#: cui/uiconfig/ui/hyperlinkmailpage.ui:316
msgctxt "hyperlinkmailpage|extended_tip|frame"
msgid "Enter the name of the frame that you want the linked file to open in, or select a predefined frame from the list. If you leave this box blank, the linked file opens in the current browser window."
msgstr "Въведете името на рамката, в която желаете да се отвори свързаният файл, или изберете предварително дефинирано име от списъка. Ако оставите това поле празно, свързаният файл ще се отвори в текущия прозорец на браузъра."
#. BmHDh
-#: cui/uiconfig/ui/hyperlinkmailpage.ui:345
+#: cui/uiconfig/ui/hyperlinkmailpage.ui:337
msgctxt "hyperlinkmailpage|label1"
msgid "Further Settings"
msgstr "Допълнителни настройки"
#. SvyDu
-#: cui/uiconfig/ui/hyperlinkmailpage.ui:360
+#: cui/uiconfig/ui/hyperlinkmailpage.ui:352
msgctxt "hyperlinkmailpage|extended_tip|HyperlinkMailPage"
msgid "On the Mail page in the Hyperlink dialog you can edit hyperlinks for email addresses."
msgstr "В страницата Поща от диалоговия прозорец Хипервръзка можете да редактирате хипервръзки към адреси за е-поща."
@@ -11147,19 +11147,19 @@ msgid "Opens the Assign Macro dialog, in which you can give events such as \"mou
msgstr "Отваря диалоговия прозорец Приписване на макрос, в който можете да задавате програмен код за събития като „курсорът е върху обекта“ или „задействана е хипервръзка“."
#. rXaNm
-#: cui/uiconfig/ui/hyperlinknewdocpage.ui:408
+#: cui/uiconfig/ui/hyperlinknewdocpage.ui:400
msgctxt "hyperlinknewdocpage|extended_tip|frame"
msgid "Enter the name of the frame that you want the linked file to open in, or select a predefined frame from the list. If you leave this box blank, the linked file opens in the current browser window."
msgstr "Въведете името на рамката, в която желаете да се отвори свързаният файл, или изберете предварително дефинирано име от списъка. Ако оставите това поле празно, свързаният файл ще се отвори в текущия прозорец на браузъра."
#. MS2Cn
-#: cui/uiconfig/ui/hyperlinknewdocpage.ui:429
+#: cui/uiconfig/ui/hyperlinknewdocpage.ui:421
msgctxt "hyperlinknewdocpage|label1"
msgid "Further Settings"
msgstr "Допълнителни настройки"
#. ztAbs
-#: cui/uiconfig/ui/hyperlinknewdocpage.ui:444
+#: cui/uiconfig/ui/hyperlinknewdocpage.ui:436
msgctxt "hyperlinknewdocpage|extended_tip|HyperlinkNewDocPage"
msgid "Use the New Document tab from the Hyperlink dialog to set up a hyperlink to a new document and create the new document simultaneously."
msgstr "Използвайте раздела Нов документ от диалоговия прозорец Хипервръзка, за да зададете хипервръзка към нов документ и едновременно да създадете новия документ."
@@ -11904,67 +11904,67 @@ msgstr "Изтрива избрания начален параметър."
#: cui/uiconfig/ui/langtoolconfigpage.ui:29
msgctxt "langtoolconfigpage|disclaimer"
msgid "If you enable this, the data will be sent to an external server."
-msgstr ""
+msgstr "Ако разрешите това, данните ще бъдат изпращани към външен сървър."
#. kF4mt
#: cui/uiconfig/ui/langtoolconfigpage.ui:39
msgctxt "langtoolconfigpage|policy"
msgid "Please read the privacy policy"
-msgstr ""
+msgstr "Моля, прочетете правилата за поверителност."
#. ZRJcn
#: cui/uiconfig/ui/langtoolconfigpage.ui:55
msgctxt "langtoolconfigpage|activate"
msgid "Enable LanguageTool"
-msgstr ""
+msgstr "Разрешаване на LanguageTool"
#. tUmXv
#: cui/uiconfig/ui/langtoolconfigpage.ui:86
msgctxt "langtoolconfigpage|base"
msgid "Base URL:"
-msgstr ""
+msgstr "Базов URL:"
-#. 9to2D
+#. z58D6
#: cui/uiconfig/ui/langtoolconfigpage.ui:111
msgctxt "langtoolconfigpage|usernamelbl"
-msgid "User name:"
+msgid "Username:"
msgstr ""
#. B8kMr
#: cui/uiconfig/ui/langtoolconfigpage.ui:125
msgctxt "langtoolconfigpage|apikeylbl"
msgid "API key:"
-msgstr ""
+msgstr "Ключ за API:"
-#. AoT7Z
+#. LBMkb
#: cui/uiconfig/ui/langtoolconfigpage.ui:159
msgctxt "langtoolconfigpage|urldesc"
-msgid "Please use the base URL e.g. without \"/check\" at the end."
+msgid "Please use the base URL, i.e., without “/check”, at the end."
msgstr ""
-#. EDETM
-#: cui/uiconfig/ui/langtoolconfigpage.ui:171
+#. 77oav
+#: cui/uiconfig/ui/langtoolconfigpage.ui:174
msgctxt "langtoolconfigpage|usernamedesc"
-msgid "Your LanguageTool account's username for premium usage."
+msgid "Your LanguageTool account’s username for premium usage."
msgstr ""
-#. aDGJf
-#: cui/uiconfig/ui/langtoolconfigpage.ui:183
+#. tGuAh
+#: cui/uiconfig/ui/langtoolconfigpage.ui:189
msgctxt "langtoolconfigpage|apikeydesc"
-msgid "Your LanguageTool account's api key for premium usage."
+msgid "Your LanguageTool account’s API key for premium usage."
msgstr ""
#. Dn8bb
-#: cui/uiconfig/ui/langtoolconfigpage.ui:206
+#: cui/uiconfig/ui/langtoolconfigpage.ui:215
msgctxt "langtoolconfigpage|apisettingsheader"
msgid "API Settings"
-msgstr ""
+msgstr "Настройки на API"
#. Ntss5
-#: cui/uiconfig/ui/langtoolconfigpage.ui:225
+#: cui/uiconfig/ui/langtoolconfigpage.ui:234
msgctxt "langtoolconfigpage|langtoolsettings"
msgid "LanguageTool API Options"
-msgstr ""
+msgstr "Настройки на LanguageTools API"
#. RdoKs
#: cui/uiconfig/ui/linedialog.ui:8
@@ -14479,73 +14479,73 @@ msgstr "[О]: Зареждане и преобразуване на обекта
#. PiDB7
#. The [S] here is repeated as the column title for the "Save" column of this options page
-#: cui/uiconfig/ui/optfltrembedpage.ui:163
+#: cui/uiconfig/ui/optfltrembedpage.ui:166
msgctxt "optfltrembedpage|label3"
msgid "[S]: Convert and save the object"
msgstr "[З]: Преобразуване и записване на обекта"
#. f2hGQ
-#: cui/uiconfig/ui/optfltrembedpage.ui:185
+#: cui/uiconfig/ui/optfltrembedpage.ui:191
msgctxt "optfltrembedpage|label1"
msgid "Embedded Objects"
msgstr "Вградени обекти"
#. nvE89
-#: cui/uiconfig/ui/optfltrembedpage.ui:215
+#: cui/uiconfig/ui/optfltrembedpage.ui:221
msgctxt "optfltrembedpage|label5"
msgid "Export as:"
msgstr "Експортиране като:"
#. FEeH6
-#: cui/uiconfig/ui/optfltrembedpage.ui:230
+#: cui/uiconfig/ui/optfltrembedpage.ui:236
msgctxt "optfltrembedpage|highlighting"
msgid "Highlighting"
msgstr "Осветяване"
#. qBuyX
-#: cui/uiconfig/ui/optfltrembedpage.ui:239
+#: cui/uiconfig/ui/optfltrembedpage.ui:245
msgctxt "extended_tip|highlighting"
msgid "Microsoft Office has two character attributes similar to Writer character background. Select the appropriate attribute (highlighting or shading) which you would like to use during export to Microsoft Office file formats."
msgstr "Microsoft Office поддържа два знакови атрибута, подобни на фона на знаците в Writer. Изберете кой от двата (осветяване на текст или оцветяване на фона) искате да се използва при експортиране във формати на Microsoft Office."
#. Dnrx7
-#: cui/uiconfig/ui/optfltrembedpage.ui:251
+#: cui/uiconfig/ui/optfltrembedpage.ui:257
msgctxt "optfltrembedpage|shading"
msgid "Shading"
msgstr "Оцветяване"
#. 3PFE2
-#: cui/uiconfig/ui/optfltrembedpage.ui:260
+#: cui/uiconfig/ui/optfltrembedpage.ui:266
msgctxt "extended_tip|shading"
msgid "Microsoft Office has two character attributes similar to Writer character background. Select the appropriate attribute (highlighting or shading) which you would like to use during export to Microsoft Office file formats."
msgstr "Microsoft Office поддържа два знакови атрибута, подобни на фона на знаците в Writer. Изберете кой от двата (осветяване на текст или оцветяване на фона) искате да се използва при експортиране във формати на Microsoft Office."
#. gKwdG
-#: cui/uiconfig/ui/optfltrembedpage.ui:283
+#: cui/uiconfig/ui/optfltrembedpage.ui:289
msgctxt "optfltrembedpage|label4"
msgid "Character Highlighting"
msgstr "Осветяване на знаците"
#. tyACF
-#: cui/uiconfig/ui/optfltrembedpage.ui:310
+#: cui/uiconfig/ui/optfltrembedpage.ui:316
msgctxt "optfltrembedpage|mso_lockfile"
msgid "Create MSO lock file"
msgstr "Създаване на заключващ файл за MSO"
#. qc4GD
-#: cui/uiconfig/ui/optfltrembedpage.ui:319
+#: cui/uiconfig/ui/optfltrembedpage.ui:325
msgctxt "extended_tip|mso_lockfile"
msgid "Mark this checkbox to generate a Microsoft Office lock file in addition to this office suite's own lock file."
msgstr "Отметнете това поле, за да се генерират и заключващи файлове за Microsoft Office освен собствените на този офис пакет."
#. Sg5Bw
-#: cui/uiconfig/ui/optfltrembedpage.ui:335
+#: cui/uiconfig/ui/optfltrembedpage.ui:341
msgctxt "optfltrembedpage|label5"
msgid "Lock Files"
msgstr "Заключващи файлове"
#. EUBnP
-#: cui/uiconfig/ui/optfltrembedpage.ui:349
+#: cui/uiconfig/ui/optfltrembedpage.ui:355
msgctxt "extended_tip|OptFilterPage"
msgid "Specifies the settings for importing and exporting Microsoft Office and other documents."
msgstr "Задава настройките за импортиране и експортиране на документи на Microsoft Office и други документи."
@@ -14814,11 +14814,11 @@ msgctxt "optgeneralpage|exthelp"
msgid "_Extended tips"
msgstr "_Разширени подсказки"
-#. ypuz2
+#. TyqBV
#: cui/uiconfig/ui/optgeneralpage.ui:42
msgctxt "extended_tip | exthelp"
-msgid "Displays a help text when you rest the cursor on an icon, a menu command, or a control on a dialog."
-msgstr "Показва помощен текст, когато задържите курсора върху икона, команда от меню или контрола в диалогов прозорец."
+msgid "Displays a help text when you rest the mouse pointer on an icon, a menu command, or a control on a dialog."
+msgstr ""
#. Cbeuc
#: cui/uiconfig/ui/optgeneralpage.ui:53
@@ -16514,7 +16514,7 @@ msgid "Passwords are protected by a master password. You will be asked to enter
msgstr "Паролите са защитени с главна парола. Тя ще ви бъде поискана веднъж на сесия ако %PRODUCTNAME вземе парола от списъка със защитени пароли."
#. 7gzb7
-#: cui/uiconfig/ui/optsecuritypage.ui:303
+#: cui/uiconfig/ui/optsecuritypage.ui:306
msgctxt "optsecuritypage|nopasswordsave"
msgid ""
"Disabling the function to persistently store passwords deletes the list of passwords stored and resets the master password.\n"
@@ -16526,61 +16526,61 @@ msgstr ""
"Желаете ли наистина да изтриете списъка с пароли и да премахнете главната парола?"
#. hwg3F
-#: cui/uiconfig/ui/optsecuritypage.ui:341
+#: cui/uiconfig/ui/optsecuritypage.ui:344
msgctxt "optsecuritypage|connections"
msgid "Connect_ions..."
msgstr "_Връзки..."
#. GLEjB
-#: cui/uiconfig/ui/optsecuritypage.ui:349
+#: cui/uiconfig/ui/optsecuritypage.ui:352
msgctxt "extended_tip|connections"
msgid "Asks for the master password. If master password is correct, shows the Stored Web Connection Information dialog."
msgstr "Пита за главната парола. Ако я въведете правилно, се показва диалоговият прозорец „Съхранена информация за връзка с Уеб“."
#. SWrMn
-#: cui/uiconfig/ui/optsecuritypage.ui:371
+#: cui/uiconfig/ui/optsecuritypage.ui:374
msgctxt "optsecuritypage|masterpassword"
msgid "_Master Password..."
msgstr "_Главна парола..."
#. w3TQo
-#: cui/uiconfig/ui/optsecuritypage.ui:379
+#: cui/uiconfig/ui/optsecuritypage.ui:382
msgctxt "extended_tip|masterpassword"
msgid "Opens the Enter Master Password dialog."
msgstr "Отваря диалоговия прозорец за въвеждане на главната парола."
#. UtNEn
-#: cui/uiconfig/ui/optsecuritypage.ui:406
+#: cui/uiconfig/ui/optsecuritypage.ui:409
msgctxt "optsecuritypage|label2"
msgid "Passwords for Web Connections"
msgstr "Пароли за връзки с Уеб"
#. EYFvA
-#: cui/uiconfig/ui/optsecuritypage.ui:439
+#: cui/uiconfig/ui/optsecuritypage.ui:442
msgctxt "optsecuritypage|label4"
msgid "Adjust security related options and define warnings for hidden information in documents. "
msgstr "Задаване на настройки, свързани със сигурността, и предупреждения за скрита информация в документите. "
#. CBnzU
-#: cui/uiconfig/ui/optsecuritypage.ui:452
+#: cui/uiconfig/ui/optsecuritypage.ui:455
msgctxt "optsecuritypage|options"
msgid "O_ptions..."
msgstr "_Настройки..."
#. pepKZ
-#: cui/uiconfig/ui/optsecuritypage.ui:460
+#: cui/uiconfig/ui/optsecuritypage.ui:463
msgctxt "extended_tip|options"
msgid "Opens the \"Security Options and Warnings\" dialog."
msgstr "Отваря диалоговия прозорец „Настройки и предупреждения за сигурността“."
#. GqVkJ
-#: cui/uiconfig/ui/optsecuritypage.ui:475
+#: cui/uiconfig/ui/optsecuritypage.ui:478
msgctxt "optsecuritypage|label1"
msgid "Security Options and Warnings"
msgstr "Настройки и предупреждения за сигурността"
#. rwtuC
-#: cui/uiconfig/ui/optsecuritypage.ui:489
+#: cui/uiconfig/ui/optsecuritypage.ui:492
msgctxt "extended_tip|OptSecurityPage"
msgid "Defines the security options for saving documents, for web connections, and for opening documents that contain macros."
msgstr "Определя настойките на сигурността при записване на документи, при свързване с Уеб и при отваряне на документи, съдържащи макроси."
@@ -18834,19 +18834,19 @@ msgstr "Генериране на линейни и матрични кодов
#: cui/uiconfig/ui/querychangelineenddialog.ui:7
msgctxt "querychangelineenddialog|AskChangeLineEndDialog"
msgid "Save Arrow Style?"
-msgstr ""
+msgstr "Да се запише ли стилът за краища?"
#. CwxRp
#: cui/uiconfig/ui/querychangelineenddialog.ui:14
msgctxt "querychangelineenddialog|AskChangeLineEndDialog"
msgid "The arrow style was modified without saving."
-msgstr ""
+msgstr "Стилът за краища бе променен, без да е записан."
#. KR9rL
#: cui/uiconfig/ui/querychangelineenddialog.ui:15
msgctxt "querychangelineenddialog|AskChangeLineEndDialog"
msgid "Would you like to save the arrow style now?"
-msgstr ""
+msgstr "Искате ли да бъде записан сега?"
#. cew2A
#: cui/uiconfig/ui/querydeletebitmapdialog.ui:7
@@ -18936,13 +18936,13 @@ msgstr "Желаете ли щриховката да бъде изтрита?"
#: cui/uiconfig/ui/querydeletelineenddialog.ui:7
msgctxt "querydeletelineenddialog|AskDelLineEndDialog"
msgid "Delete Arrow Style?"
-msgstr ""
+msgstr "Да се изтрие ли стилът за краища?"
#. x6t6L
#: cui/uiconfig/ui/querydeletelineenddialog.ui:14
msgctxt "querydeletelineenddialog|AskDelLineEndDialog"
msgid "Do you really want to delete the arrow style?"
-msgstr ""
+msgstr "Наистина ли искате да изтриете стила за краища?"
#. 4AubG
#: cui/uiconfig/ui/querydeletelineenddialog.ui:15
@@ -20084,11 +20084,11 @@ msgctxt "specialcharacters|srchft"
msgid "Search:"
msgstr "Търсене:"
-#. eCjVg
+#. zPCZ7
#: cui/uiconfig/ui/specialcharacters.ui:166
msgctxt "specialcharacters|extended_tip|subsetlb"
-msgid "Select a Unicode category for the current font."
-msgstr "Изберете категория на Уникод за текущия шрифт."
+msgid "Select a Unicode block for the current font."
+msgstr ""
#. JPWW8
#: cui/uiconfig/ui/specialcharacters.ui:190
@@ -20121,19 +20121,19 @@ msgid "Maximum Limit: 16 Characters"
msgstr "Максимум: 16 знака"
#. ti8sG
-#: cui/uiconfig/ui/specialcharacters.ui:371
+#: cui/uiconfig/ui/specialcharacters.ui:374
msgctxt "specialcharacters|symboltext1"
msgid "Recent Characters:"
msgstr "Най-скорошни знаци:"
#. LQZ7q
-#: cui/uiconfig/ui/specialcharacters.ui:605
+#: cui/uiconfig/ui/specialcharacters.ui:608
msgctxt "specialcharacters|favbtn|symboltext2"
msgid "Favorite Characters:"
msgstr "Предпочитани знаци:"
#. DhG6L
-#: cui/uiconfig/ui/specialcharacters.ui:903
+#: cui/uiconfig/ui/specialcharacters.ui:906
msgctxt "specialcharacters|extended_tip|SpecialCharactersDialog"
msgid "Allows a user to insert characters from the range of symbols found in the installed fonts."
msgstr "Позволява на потребителя да вмъква знаци измежду наличните в инсталираните шрифтове."
@@ -21144,7 +21144,7 @@ msgstr "Автоматично вмъква тирета за пренос къ
#: cui/uiconfig/ui/textflowpage.ui:111
msgctxt "textflowpage|extended_tip|spinMinLen"
msgid "Enter the minimum word length in characters that can be hyphenated."
-msgstr ""
+msgstr "Въведете минималната дължина в знаци на думите, които подлежат на сричкопренасяне."
#. MzDMB
#: cui/uiconfig/ui/textflowpage.ui:131
@@ -21186,7 +21186,7 @@ msgstr "Максимум последователни пренесени ред
#: cui/uiconfig/ui/textflowpage.ui:227
msgctxt "textflowpage|labelMinLen"
msgid "_Minimum word length in characters"
-msgstr ""
+msgstr "Минимална дължина на думата в знаци"
#. GgHhP
#: cui/uiconfig/ui/textflowpage.ui:238
@@ -21198,13 +21198,13 @@ msgstr "Без пренасяне на думи с ГЛАВНИ букви"
#: cui/uiconfig/ui/textflowpage.ui:253
msgctxt "textflowpage|checkNoLastWord"
msgid "Don't hyphenate the last word"
-msgstr ""
+msgstr "Последната дума не се пренася"
#. 582fA
#: cui/uiconfig/ui/textflowpage.ui:292
msgctxt "textflowpage|labelHyphenZone"
msgid "Hyphenation _zone:"
-msgstr ""
+msgstr "Зона за сричкопренасяне:"
#. stYh3
#: cui/uiconfig/ui/textflowpage.ui:315
diff --git a/source/bg/filter/messages.po b/source/bg/filter/messages.po
index ff04e4527c3..df83a79c79a 100644
--- a/source/bg/filter/messages.po
+++ b/source/bg/filter/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2022-01-31 18:19+0100\n"
+"POT-Creation-Date: 2022-06-15 22:28+0200\n"
"PO-Revision-Date: 2022-02-04 11:39+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: Bulgarian <https://translations.documentfoundation.org/projects/libo_ui-master/filtermessages/bg/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.8.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1562424692.000000\n"
#. 5AQgJ
@@ -1512,11 +1512,11 @@ msgctxt "pdfviewpage|fitvis"
msgid "Fit _visible"
msgstr "Побиране на видимите елементи"
-#. FD8Pp
+#. EBBzj
#: filter/uiconfig/ui/pdfviewpage.ui:254
msgctxt "pdfviewpage|extended_tip|fitvis"
-msgid "Select to generate a PDF file that shows the text and graphics on the page zoomed to fit the width of the reader's window."
-msgstr "Изберете за генериране на PDF файл, който показва текста и графиката в страницата с такова увеличение, че да се поберат по ширина в прозореца на четеца."
+msgid "Select to generate a PDF file that shows the text and graphics on the page zoomed to fit the reader's window."
+msgstr ""
#. NGpWy
#: filter/uiconfig/ui/pdfviewpage.ui:271
@@ -1914,11 +1914,11 @@ msgctxt "xmlfiltertabpagegeneral|extended_tip|filtername"
msgid "Enter the name that you want to display in the list box of the XML Filter Settings dialog."
msgstr "Въведете името, която желаете да се показва в списъка в диалоговия прозорец Настройки на филтри за XML."
-#. Tbmcc
+#. D5aZP
#: filter/uiconfig/ui/xmlfiltertabpagegeneral.ui:119
msgctxt "xmlfiltertabpagegeneral|extended_tip|extension"
-msgid "Enter the file extension to use when you open a file without specifying a filter. The file extension to used to determine which filter to use."
-msgstr "Въведете файловото разширение, което да се използва при отваряне на файл без зададен филтър. По разширението се определя кой филтър да бъде използван."
+msgid "Enter the file extension to use when you open a file without specifying a filter. The file extension is used to determine which filter to use."
+msgstr ""
#. fZvBA
#: filter/uiconfig/ui/xmlfiltertabpagegeneral.ui:138
diff --git a/source/bg/helpcontent2/source/text/scalc/01.po b/source/bg/helpcontent2/source/text/scalc/01.po
index 1ab3ab12d15..3a0b2372041 100644
--- a/source/bg/helpcontent2/source/text/scalc/01.po
+++ b/source/bg/helpcontent2/source/text/scalc/01.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2022-06-09 11:50+0200\n"
-"PO-Revision-Date: 2022-06-06 18:31+0000\n"
+"POT-Creation-Date: 2022-06-15 22:28+0200\n"
+"PO-Revision-Date: 2022-06-15 20:39+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: Bulgarian <https://translations.documentfoundation.org/projects/libo_help-master/textscalc01/bg/>\n"
"Language: bg\n"
@@ -2877,7 +2877,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Go to Sheet"
-msgstr ""
+msgstr "Скок към лист"
#. W6vyo
#: 02220000.xhp
@@ -2886,7 +2886,7 @@ msgctxt ""
"bm_id781654171314500\n"
"help.text"
msgid "<bookmark_value>Go to sheet</bookmark_value><bookmark_value>jump; to given sheet</bookmark_value><bookmark_value>sheet; go to directly</bookmark_value><bookmark_value>sheet; search and go to</bookmark_value>"
-msgstr ""
+msgstr "<bookmark_value>отиване на лист</bookmark_value><bookmark_value>скок; към даден лист</bookmark_value><bookmark_value>лист; пряк скок към</bookmark_value><bookmark_value>лист; търсене и скок към</bookmark_value>"
#. Af3Da
#: 02220000.xhp
@@ -2895,7 +2895,7 @@ msgctxt ""
"hd_id3156025\n"
"help.text"
msgid "Go to Sheet"
-msgstr ""
+msgstr "Скок към лист"
#. UmffC
#: 02220000.xhp
@@ -2904,7 +2904,7 @@ msgctxt ""
"par_id3147266\n"
"help.text"
msgid "<variable id=\"gototable\"><ahelp hid=\".uno:JumpToTable\" visibility=\"visible\">Go to a specified sheet.</ahelp></variable>"
-msgstr ""
+msgstr "<variable id=\"gototable\"><ahelp hid=\".uno:JumpToTable\" visibility=\"visible\">Преминаване към указан лист.</ahelp></variable>"
#. dPFgf
#: 02220000.xhp
@@ -2913,7 +2913,7 @@ msgctxt ""
"hd_id3125862\n"
"help.text"
msgid "Type a sheet name"
-msgstr ""
+msgstr "Въведете име на лист"
#. hyRiU
#: 02220000.xhp
@@ -2922,7 +2922,7 @@ msgctxt ""
"par_id3153975\n"
"help.text"
msgid "<ahelp hid=\"SC_HID_GOTOTABLEMASK\">Type some characters contained in the searched sheet name. List of sheets will be limited to the sheet names containing these characters.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"SC_HID_GOTOTABLEMASK\">Въведете няколко знака от името на търсения лист. Списъкът с листове ще бъде стеснен до имената на листове, съдържащи тези знаци.</ahelp>"
#. aCw4F
#: 02220000.xhp
@@ -2931,7 +2931,7 @@ msgctxt ""
"hd_id3125866\n"
"help.text"
msgid "Sheets"
-msgstr ""
+msgstr "Листове"
#. XJVcD
#: 02220000.xhp
@@ -2940,7 +2940,7 @@ msgctxt ""
"par_id3153971\n"
"help.text"
msgid "<ahelp hid=\"SC_HID_GOTOTABLE\">Lists the sheets in the current document. Hidden sheets are not listed. To select a sheet, press the up or down arrow keys to move to a sheet in the list. Double click on a name will directly jump to this sheet.</ahelp>"
-msgstr ""
+msgstr "<ahelp hid=\"SC_HID_GOTOTABLE\">Изброява листовете в текущия документ. Скритите листове не се показват. За да изберете лист, натискайте клавишите със стрелки нагоре и надолу, за да преминете към желания лист в списъка. Щракнете двукратно върху име, за да отидете направо на този лист.</ahelp>"
#. eomCF
#: 03070000.xhp
@@ -56193,7 +56193,7 @@ msgctxt ""
"par_id631586642933797\n"
"help.text"
msgid "This function calculates identical results to the <link href=\"text/scalc/01/func_ceiling.xhp#isoceiling\" name=\"iso ceiling\">ISO.CEILING</link> function."
-msgstr ""
+msgstr "Резултатите, изчислявани от тази функция, са еднакви с тези на функцията <link href=\"text/scalc/01/func_ceiling.xhp#isoceiling\" name=\"iso ceiling\">ISO.CEILING</link>."
#. BASfr
#: func_ceiling.xhp
@@ -56481,7 +56481,7 @@ msgctxt ""
"par_id821586214265060\n"
"help.text"
msgid "This function calculates identical results to the <link href=\"text/scalc/01/func_ceiling.xhp#ceilingprecise\" name=\"ceiling precise\">CEILING.PRECISE</link> function."
-msgstr ""
+msgstr "Резултатите, изчислявани от тази функция, са еднакви с тези на функцията <link href=\"text/scalc/01/func_ceiling.xhp#ceilingprecise\" name=\"ceiling precise\">CEILING.PRECISE</link>."
#. GRocX
#: func_ceiling.xhp
@@ -64077,7 +64077,7 @@ msgctxt ""
"par_id211542232209275\n"
"help.text"
msgid "<emph>Expression</emph>: A text representing the regular expression, using <link href=\"https://unicode-org.github.io/icu/userguide/strings/regexp.html#regular-expression-metacharacters\" name=\"ICU REGEXP\">ICU regular expressions</link>. If there is no match and <emph>Replacement</emph> is not given, #N/A is returned."
-msgstr ""
+msgstr "<emph>Израз</emph>: текст, представящ регулярния израз като <link href=\"https://unicode-org.github.io/icu/userguide/strings/regexp.html#regular-expression-metacharacters\" name=\"ICU REGEXP\">регулярен израз на ICU</link>. Ако няма съвпадение и не е зададено <emph>Заместване</emph>, резултатът е #N/A."
#. ZBTYi
#: func_regex.xhp
@@ -67722,7 +67722,7 @@ msgctxt ""
"par_id501589912905479\n"
"help.text"
msgid "Solver settings are not saved to the file by %PRODUCTNAME Calc. Closing and reopening the file will reset the solver dialog to default settings."
-msgstr ""
+msgstr "Настройките на Solver не се записват във файла от %PRODUCTNAME Calc. Затварянето и повторното отваряне на файла ще върне диалога на решателя към подразбираните настройки."
#. GgVk7
#: solver.xhp
@@ -68730,7 +68730,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Sparklines"
-msgstr ""
+msgstr "Блещукащи линии"
#. 82qW9
#: sparklines.xhp
@@ -69029,13 +69029,13 @@ msgctxt ""
msgid "<emph>Group</emph>: sets the minimum (maximum) value based on the lower and higher values found in the group of sparklines."
msgstr ""
-#. E6s55
+#. NNez9
#: sparklines.xhp
msgctxt ""
"sparklines.xhp\n"
"par_id51654181442414\n"
"help.text"
-msgid "<emph>Custom:</emph> enter the minimum (maximum) value for the sparkline group."
+msgid "<emph>Custom</emph>: enter the minimum (maximum) value for the sparkline group. Enter the minimum (maximum) values or use the spin buttons."
msgstr ""
#. CNBDD
diff --git a/source/bg/helpcontent2/source/text/scalc/guide.po b/source/bg/helpcontent2/source/text/scalc/guide.po
index 22c03fe4f39..e0d718077d5 100644
--- a/source/bg/helpcontent2/source/text/scalc/guide.po
+++ b/source/bg/helpcontent2/source/text/scalc/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2022-02-04 12:33+0100\n"
+"POT-Creation-Date: 2022-06-15 22:28+0200\n"
"PO-Revision-Date: 2022-02-18 11:44+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: Bulgarian <https://translations.documentfoundation.org/projects/libo_help-master/textscalcguide/bg/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.8.1\n"
+"X-Generator: LibreOffice\n"
"X-Project-Style: openoffice\n"
"X-POOTLE-MTIME: 1562356865.000000\n"
@@ -2276,14 +2276,14 @@ msgctxt ""
msgid "Copy, delete, move, or format a selection of currently visible cells."
msgstr "Копиране, изтриване, преместване или форматиране на избрана област от видими в момента клетки."
-#. FEuz7
+#. VccAs
#: cellcopy.xhp
msgctxt ""
"cellcopy.xhp\n"
"par_id3154371\n"
"help.text"
-msgid "All cells of the selection, including the hidden cells, are copied, deleted, moved, or formatted."
-msgstr "Всички клетки от областта, включително и скритите клетки, се копират, изтриват, преместват или форматират."
+msgid "By default, all cells of the selection, including the hidden cells, are copied, deleted, moved, or formatted. Restrict the selection to visible rows choosing <menuitem>Edit - Select - Select Visible Rows Only</menuitem> or to visible columns choosing <menuitem>Edit - Select - Select Visible Columns Only</menuitem>."
+msgstr ""
#. rBtUY
#: cellreference_dragdrop.xhp
diff --git a/source/bg/helpcontent2/source/text/shared/00.po b/source/bg/helpcontent2/source/text/shared/00.po
index 75f55cf5c59..ac91a78578c 100644
--- a/source/bg/helpcontent2/source/text/shared/00.po
+++ b/source/bg/helpcontent2/source/text/shared/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2022-06-09 11:50+0200\n"
+"POT-Creation-Date: 2022-06-15 22:28+0200\n"
"PO-Revision-Date: 2022-05-03 12:47+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: Bulgarian <https://translations.documentfoundation.org/projects/libo_help-master/textshared00/bg/>\n"
@@ -7963,13 +7963,22 @@ msgctxt ""
msgid "OLE Object"
msgstr "OLE обект"
-#. UFnGc
+#. 36hBn
+#: 00000404.xhp
+msgctxt ""
+"00000404.xhp\n"
+"par_id761566316165430\n"
+"help.text"
+msgid "Choose <menuitem>Insert - OLE Object - QR and Barcode</menuitem>."
+msgstr ""
+
+#. F9Wus
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
"par_id3150393\n"
"help.text"
-msgid "Choose <menuitem>Insert - OLE Object - Formula Object</menuitem>."
+msgid "<variable id=\"insert_formula\">Choose <menuitem>Insert - OLE Object - Formula Object</menuitem>.</variable>"
msgstr ""
#. kQdhV
@@ -15019,14 +15028,14 @@ msgctxt ""
msgid "<variable id=\"linkae\">Choose <menuitem>Edit - Links to External Files - Modify...</menuitem> (DDE links only).</variable>"
msgstr "<variable id=\"linkae\">Изберете <menuitem>Редактиране - Връзки към външни файлове - Промяна...</menuitem> (само за DDE връзки).</variable>"
-#. qo8gR
+#. bgzTi
#: edit_menu.xhp
msgctxt ""
"edit_menu.xhp\n"
"par_id3148927\n"
"help.text"
-msgid "Select a frame, then choose <menuitem>Edit - Object - Properties</menuitem>."
-msgstr "Изберете рамка, после изберете <menuitem>Редактиране - Обект - Свойства</menuitem>."
+msgid "Select a frame, then choose <menuitem>Edit - OLE Object - Properties</menuitem>."
+msgstr ""
#. cDcix
#: edit_menu.xhp
@@ -15037,32 +15046,32 @@ msgctxt ""
msgid "Open context menu of selected frame, choose <menuitem>Properties</menuitem>."
msgstr "Отворете контекстното меню на избраната рамка, изберете <menuitem>Свойства</menuitem>."
-#. jmnro
+#. 5TkgL
#: edit_menu.xhp
msgctxt ""
"edit_menu.xhp\n"
"par_id3149259\n"
"help.text"
-msgid "<variable id=\"edit1\">Choose <menuitem>Edit - Object</menuitem>.</variable>"
-msgstr "<variable id=\"edit1\">Изберете <menuitem>Редактиране - Обект</menuitem>.</variable>"
+msgid "<variable id=\"edit1\">Choose <menuitem>Edit - OLE Object</menuitem>.</variable>"
+msgstr ""
-#. XAqNW
+#. ApejL
#: edit_menu.xhp
msgctxt ""
"edit_menu.xhp\n"
"par_id3154966\n"
"help.text"
-msgid "<variable id=\"edit2\">Choose <menuitem>Edit - Object - Edit</menuitem>, also in the context menu of selected object.</variable>"
-msgstr "<variable id=\"edit2\">Изберете <menuitem>Редактиране - Обект - Редактиране</menuitem>, също и в контекстното меню на избран обект.</variable>"
+msgid "<variable id=\"edit2\">Choose <menuitem>Edit - OLE Object - Edit</menuitem>, also in the context menu of selected object.</variable>"
+msgstr ""
-#. sA6YF
+#. 9Gp6Z
#: edit_menu.xhp
msgctxt ""
"edit_menu.xhp\n"
"par_id3149565\n"
"help.text"
-msgid "<variable id=\"edit3\">Choose <menuitem>Edit - Object - Open</menuitem>.</variable>"
-msgstr "<variable id=\"edit3\">Изберете <menuitem>Редактиране - Обект - Отваряне</menuitem>.</variable>"
+msgid "<variable id=\"edit3\">Choose <menuitem>Edit - OLE Object - Open</menuitem>.</variable>"
+msgstr ""
#. kQifg
#: edit_menu.xhp
diff --git a/source/bg/helpcontent2/source/text/shared/01.po b/source/bg/helpcontent2/source/text/shared/01.po
index 57722e829d8..c949218de3c 100644
--- a/source/bg/helpcontent2/source/text/shared/01.po
+++ b/source/bg/helpcontent2/source/text/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2022-06-09 11:50+0200\n"
+"POT-Creation-Date: 2022-06-15 22:28+0200\n"
"PO-Revision-Date: 2022-05-10 09:33+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: Bulgarian <https://translations.documentfoundation.org/projects/libo_help-master/textshared01/bg/>\n"
@@ -11051,41 +11051,41 @@ msgctxt ""
msgid "<ahelp hid=\"sfx/ui/linkeditdialog/category\">Lists the section or object that the link refers to in the source file. If you want, you can enter a new section or object here.</ahelp>"
msgstr "<ahelp hid=\"sfx/ui/linkeditdialog/category\">Показва раздела или обекта, който връзката сочи във файла източник. Ако желаете, тук можете да въведете друг раздел или обект.</ahelp>"
-#. nWEMa
+#. 4FLU6
#: 02200000.xhp
msgctxt ""
"02200000.xhp\n"
"tit\n"
"help.text"
-msgid "Edit Object"
-msgstr "Редактиране на обект"
+msgid "OLE Object (Edit)"
+msgstr ""
-#. nBCA7
+#. VrRPX
#: 02200000.xhp
msgctxt ""
"02200000.xhp\n"
"hd_id3146959\n"
"help.text"
-msgid "<link href=\"text/shared/01/02200000.xhp\" name=\"Object\">Edit Object</link>"
-msgstr "<link href=\"text/shared/01/02200000.xhp\" name=\"Обект\">Редактиране на обект</link>"
+msgid "<link href=\"text/shared/01/02200000.xhp\" name=\"Object\">OLE Object</link>"
+msgstr ""
-#. 6bDqk
+#. QMGSE
#: 02200000.xhp
msgctxt ""
"02200000.xhp\n"
"par_id3154840\n"
"help.text"
-msgid "<variable id=\"object_text\"><ahelp hid=\".uno:ObjectMenue\">Lets you edit a selected object in your file that you inserted with the <item type=\"menuitem\">Insert - Object</item> command.</ahelp></variable>"
-msgstr "<variable id=\"object_text\"><ahelp hid=\".uno:ObjectMenue\">Позволява редактирането на избран обект във файла, който е бил вмъкнат с командата <item type=\"menuitem\">Вмъкване - Обект</item>.</ahelp></variable>"
+msgid "<variable id=\"object_text\"><ahelp hid=\".uno:ObjectMenue\">Lets you edit a selected OLE object that you inserted from the <menuitem>Insert - OLE Object</menuitem> submenu.</ahelp></variable>"
+msgstr ""
-#. YDqFE
+#. NWE46
#: 02200000.xhp
msgctxt ""
"02200000.xhp\n"
"par_id3153551\n"
"help.text"
-msgid "<link href=\"text/shared/01/04150000.xhp\" name=\"Insert - Object\">Insert - Object</link>"
-msgstr "<link href=\"text/shared/01/04150000.xhp\" name=\"Вмъкване - Обект\">Вмъкване - Обект</link>"
+msgid "<embedvar href=\"text/shared/01/04150000.xhp#oleobjecth1\"/>"
+msgstr ""
#. HB6iE
#: 02200000.xhp
@@ -11123,14 +11123,14 @@ msgctxt ""
msgid "<link href=\"text/shared/01/02200100.xhp\" name=\"Edit\">Edit</link>"
msgstr "<link href=\"text/shared/01/02200100.xhp\" name=\"Редактиране\">Редактиране</link>"
-#. MmR4v
+#. CP7mz
#: 02200100.xhp
msgctxt ""
"02200100.xhp\n"
"par_id3150008\n"
"help.text"
-msgid "<ahelp visibility=\"visible\" hid=\".\">Lets you edit a selected object in your file that you inserted with the <emph>Insert – Object</emph> command.</ahelp>"
-msgstr "<ahelp visibility=\"visible\" hid=\".\">Позволява ви да редактирате избран обект във файла, който сте вмъкнали с командата <emph>Вмъкване – Обект</emph>.</ahelp>"
+msgid "<ahelp visibility=\"visible\" hid=\".\">Lets you edit a selected OLE object that you inserted with the <menuitem>Insert – OLE Object</menuitem> command.</ahelp>"
+msgstr ""
#. PXv8N
#: 02200200.xhp
@@ -15470,13 +15470,13 @@ msgctxt ""
msgid "OLE Object (Insert Menu)"
msgstr ""
-#. hq7i8
+#. 9hJLy
#: 04150000.xhp
msgctxt ""
"04150000.xhp\n"
"hd_id3146873\n"
"help.text"
-msgid "<link href=\"text/shared/01/04150000.xhp\" name=\"Object\">OLE Object</link>"
+msgid "<variable id=\"oleobjecth1\"><link href=\"text/shared/01/04150000.xhp\" name=\"Object\">OLE Object</link></variable>"
msgstr ""
#. s2t34
diff --git a/source/bg/helpcontent2/source/text/shared/02.po b/source/bg/helpcontent2/source/text/shared/02.po
index 5945ccffee1..1f07f5560e9 100644
--- a/source/bg/helpcontent2/source/text/shared/02.po
+++ b/source/bg/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: 2022-06-09 11:50+0200\n"
-"PO-Revision-Date: 2022-05-22 12:50+0000\n"
+"PO-Revision-Date: 2022-06-15 20:39+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: Bulgarian <https://translations.documentfoundation.org/projects/libo_help-master/textshared02/bg/>\n"
"Language: bg\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.12.2\n"
"X-Project-Style: openoffice\n"
"X-POOTLE-MTIME: 1562357690.000000\n"
@@ -11859,7 +11859,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Anchor (menu)"
-msgstr ""
+msgstr "Котва (меню)"
#. n59sV
#: 03200000.xhp
@@ -11877,7 +11877,7 @@ msgctxt ""
"hd_id3153323\n"
"help.text"
msgid "<link href=\"text/shared/02/03200000.xhp\" name=\"Change Anchor\">Anchor</link>"
-msgstr ""
+msgstr "<link href=\"text/shared/02/03200000.xhp\" name=\"Change Anchor\">Котва</link>"
#. e4cEL
#: 03200000.xhp
@@ -11886,7 +11886,7 @@ msgctxt ""
"par_id3150499\n"
"help.text"
msgid "<variable id=\"verankerungtext\"><ahelp hid=\".uno:ToggleAnchorType\">Allows you to switch between anchoring options.</ahelp></variable> The <menuitem>Anchor</menuitem> icon is only visible when an object such as a graphic or control field <switchinline select=\"appl\"><caseinline select=\"WRITER\">or frame</caseinline></switchinline> is selected."
-msgstr ""
+msgstr "<variable id=\"verankerungtext\"><ahelp hid=\".uno:ToggleAnchorType\">Позволява ви да превключвате между възможностите за закотвяне.</ahelp></variable> Иконата <menuitem>Котва</menuitem> е видима само ако е избрана графика, поле на контрола, <switchinline select=\"appl\"><caseinline select=\"WRITER\">рамка</caseinline></switchinline> или подобен обект."
#. 7Rrur
#: 03200000.xhp
diff --git a/source/bg/helpcontent2/source/text/shared/guide.po b/source/bg/helpcontent2/source/text/shared/guide.po
index feb0de87ede..2cb8d22b04e 100644
--- a/source/bg/helpcontent2/source/text/shared/guide.po
+++ b/source/bg/helpcontent2/source/text/shared/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2022-06-10 13:58+0200\n"
+"POT-Creation-Date: 2022-06-15 22:28+0200\n"
"PO-Revision-Date: 2022-06-09 09:58+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: Bulgarian <https://translations.documentfoundation.org/projects/libo_help-master/textsharedguide/bg/>\n"
@@ -2627,14 +2627,14 @@ msgctxt ""
msgid "<bookmark_value>custom;classification levels</bookmark_value> <bookmark_value>classification levels;customizing</bookmark_value>"
msgstr "<bookmark_value>персонализиране;нива на класификация</bookmark_value> <bookmark_value>класификация, нива на;персонализиране</bookmark_value>"
-#. 3wmPg
+#. NfubP
#: classification.xhp
msgctxt ""
"classification.xhp\n"
"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 <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><menuitem> - LibreOffice - Paths - Classification</menuitem> into a local folder and edit the contents."
-msgstr "%PRODUCTNAME ви позволява да персонализирате нивата на класификация за собственото си предприятие. За да промените броя и имената на нивата, копирайте файла <item type=\"literal\">example.xml</item> от <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Инструменти - Настройки</menuitem></defaultinline></switchinline><menuitem> - LibreOffice - Пътища - Класификация</menuitem> в локална папка и редактирайте съдържанието му."
+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 <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><menuitem> - %PRODUCTNAME - Paths - Classification</menuitem> into a local folder and edit the contents."
+msgstr ""
#. Tcss6
#: classification.xhp
@@ -11483,14 +11483,14 @@ msgctxt ""
msgid "To edit the OLE object, double-click on it."
msgstr "За да редактирате OLE обекта, щракнете двукратно върху него."
-#. FTF7g
+#. 8DbMH
#: dragdrop_table.xhp
msgctxt ""
"dragdrop_table.xhp\n"
"par_id3155389\n"
"help.text"
-msgid "Alternatively, select the object and choose <emph>Edit - Object - Edit</emph> or choose <emph>Edit</emph> from the context menu. You edit the object in its own frame within the text document, but you see the icons and menu commands needed for spreadsheets."
-msgstr "Можете също така да изберете обекта и после да изберете <emph>Редактиране - Обект - Редактиране</emph> или да посочите <emph>Редактиране</emph> от контекстното меню. Ще редактирате документа в неговата собствена рамка в текстовия документ, но ще виждате иконите и менютата, необходими за редактиране на електронни таблици."
+msgid "Alternatively, select the object and choose <menuitem>Edit - OLE Object - Edit</menuitem> or choose <menuitem>Edit</menuitem> from the context menu. You edit the object in its own frame within the text document, but you see the icons and menu commands needed for spreadsheets."
+msgstr ""
#. uFCGU
#: dragdrop_table.xhp
@@ -22661,15 +22661,6 @@ msgctxt ""
msgid "The QR and Barcode generation feature allows you to encode any text string or URL as a barcode or a QR code and insert it as a graphical object in a document for scanning."
msgstr ""
-#. N32UF
-#: qrcode.xhp
-msgctxt ""
-"qrcode.xhp\n"
-"par_id761566316165430\n"
-"help.text"
-msgid "Choose <menuitem>Insert - Object - QR and Barcode</menuitem>."
-msgstr ""
-
#. UCeXG
#: qrcode.xhp
msgctxt ""
diff --git a/source/bg/helpcontent2/source/text/smath/guide.po b/source/bg/helpcontent2/source/text/smath/guide.po
index 38af981aaa6..9fa02c946a0 100644
--- a/source/bg/helpcontent2/source/text/smath/guide.po
+++ b/source/bg/helpcontent2/source/text/smath/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2022-01-31 18:20+0100\n"
+"POT-Creation-Date: 2022-06-15 22:28+0200\n"
"PO-Revision-Date: 2022-03-01 13:39+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: Bulgarian <https://translations.documentfoundation.org/projects/libo_help-master/textsmathguide/bg/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.8.1\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1547856998.000000\n"
#. P9FEQ
@@ -835,14 +835,14 @@ msgctxt ""
msgid "Select the formula"
msgstr "Изберете формулата."
-#. bN6uQ
+#. F2ipo
#: keyboard.xhp
msgctxt ""
"keyboard.xhp\n"
"par_id3150213\n"
"help.text"
-msgid "Choose the command <emph>Insert - Object - Formula</emph>."
-msgstr "Изберете командата <emph>Вмъкване - Обект - Формула</emph>."
+msgid "Choose the command <menuitem>Insert - OLE Object - Formula Object</menuitem>."
+msgstr ""
#. aowxC
#: keyboard.xhp
@@ -853,14 +853,14 @@ msgctxt ""
msgid "Inserting a Formula using a Window"
msgstr "Вмъкване на формула чрез прозорец"
-#. Tqx4F
+#. Jvobx
#: keyboard.xhp
msgctxt ""
"keyboard.xhp\n"
"par_id3149875\n"
"help.text"
-msgid "If you want to use the $[officename] Math interface to edit a formula, choose the command <emph>Insert - Object - Formula</emph> without any text selected."
-msgstr "Ако искате да ползвате интерфейса на $[officename] Math, за да редактирате формула, изберете командата <emph>Вмъкване - Обект - Формула</emph> без да е избран текст."
+msgid "If you want to use the $[officename] Math interface to edit a formula, choose the command <menuitem>Insert - OLE Object - Formula Object</menuitem> without any text selected."
+msgstr ""
#. sEBBM
#: keyboard.xhp
@@ -943,14 +943,14 @@ msgctxt ""
msgid "You want to insert a summation formula like \"summation of s^k from k = 0 to n\" at the cursor in a Writer text document."
msgstr "Да предположим, че искате да вмъкнете формула за сумиране от рода на „сума на s^k за k от 0 до n“ на позицията на курсора в текстов документ на Writer."
-#. 5oKcr
+#. kEJWp
#: limits.xhp
msgctxt ""
"limits.xhp\n"
"par_id8811304\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Insert - Object - Formula</item>."
-msgstr "Изберете <item type=\"menuitem\">Вмъкване - Обект - Формула</item>."
+msgid "<embedvar href=\"text/shared/00/00000404.xhp#insert_formula\"/>"
+msgstr ""
#. qAFch
#: limits.xhp
@@ -1033,14 +1033,14 @@ msgctxt ""
msgid "In the same way, you can enter an Integral formula with limits. When you click an icon from the Elements pane, the assigned text command is inserted in the input window. If you know the text commands, you can enter the commands directly in the input window."
msgstr "По същия начин можете да въведете формула, съдържаща интеграл с граници. Когато щракнете върху икона от панела „Елементи“, съответната текстова команда се вмъква в прозореца за въвеждане. Ако знаете текстовите команди, можете направо да ги въвеждате там."
-#. q8yAH
+#. 57GSa
#: limits.xhp
msgctxt ""
"limits.xhp\n"
"par_id5866267\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Insert - Object - Formula</item>."
-msgstr "Изберете <item type=\"menuitem\">Вмъкване - Обект - Формула</item>."
+msgid "<embedvar href=\"text/shared/00/00000404.xhp#insert_formula\"/>"
+msgstr ""
#. VAoyi
#: limits.xhp
diff --git a/source/bg/helpcontent2/source/text/swriter/01.po b/source/bg/helpcontent2/source/text/swriter/01.po
index 9eeba9b0433..39052ea9576 100644
--- a/source/bg/helpcontent2/source/text/swriter/01.po
+++ b/source/bg/helpcontent2/source/text/swriter/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2022-06-09 11:50+0200\n"
+"POT-Creation-Date: 2022-06-15 22:28+0200\n"
"PO-Revision-Date: 2022-06-06 18:31+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: Bulgarian <https://translations.documentfoundation.org/projects/libo_help-master/textswriter01/bg/>\n"
@@ -18170,23 +18170,23 @@ msgctxt ""
msgid "<emph>Right paragraph border:</emph> the object is positioned considering the width of the indent space available to the right of the paragraph."
msgstr "<emph>Десен кант на абзаца:</emph> обектът се позиционира според ширината на пространството за отстъп, налично вдясно от абзаца."
-#. UWViJ
+#. QrQHe
#: 05060100.xhp
msgctxt ""
"05060100.xhp\n"
"par_id171629211714933\n"
"help.text"
-msgid "<emph>Left page border:</emph> the object is positioned considering the space available between the left page border and the left paragraph border."
-msgstr "<emph>Ляв кант на страницата:</emph> обектът се позиционира с оглед на пространството между левия ръб на страницата и левия край на абзаца."
+msgid "<menuitem>Left of page text area</menuitem>: the object is positioned in the region between the left edge of the page and the left margin plus any left page padding."
+msgstr ""
-#. F9qZf
+#. DzD2e
#: 05060100.xhp
msgctxt ""
"05060100.xhp\n"
"par_id131629211715280\n"
"help.text"
-msgid "<emph>Right page border:</emph> the object is positioned considering the space available between the right page border and the right paragraph border."
-msgstr "<emph>Десен кант на страницата:</emph> обектът се позиционира с оглед на пространството между десния ръб на страницата и десния край на абзаца."
+msgid "<menuitem>Right of page text area</menuitem>: the object is positioned in the region between the right edge of the page and the right margin plus any right page padding."
+msgstr ""
#. norkq
#: 05060100.xhp
diff --git a/source/bg/helpcontent2/source/text/swriter/guide.po b/source/bg/helpcontent2/source/text/swriter/guide.po
index 4acf12304da..2d93709dd05 100644
--- a/source/bg/helpcontent2/source/text/swriter/guide.po
+++ b/source/bg/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2022-06-09 11:50+0200\n"
+"POT-Creation-Date: 2022-06-15 22:28+0200\n"
"PO-Revision-Date: 2022-06-06 18:31+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: Bulgarian <https://translations.documentfoundation.org/projects/libo_help-master/textswriterguide/bg/>\n"
@@ -43,13 +43,13 @@ msgctxt ""
msgid "<variable id=\"anchor_object\"><link href=\"text/swriter/guide/anchor_object.xhp\" name=\"Positioning Objects\">Positioning Objects</link></variable>"
msgstr "<variable id=\"anchor_object\"><link href=\"text/swriter/guide/anchor_object.xhp\" name=\"Позициониране на обекти\">Позициониране на обекти</link></variable>"
-#. MDGBe
+#. WBVDD
#: anchor_object.xhp
msgctxt ""
"anchor_object.xhp\n"
"par_id181634295881266\n"
"help.text"
-msgid "An object, such as an image or frame, is positioned within a document using anchors attached to other elements."
+msgid "An object, such as an image or frame, is positioned within a document using an anchor attached to another element."
msgstr ""
#. FAyRX
diff --git a/source/bg/svtools/messages.po b/source/bg/svtools/messages.po
index 0367fb60603..fc83232bf0e 100644
--- a/source/bg/svtools/messages.po
+++ b/source/bg/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: 2022-06-10 13:58+0200\n"
-"PO-Revision-Date: 2022-02-08 10:50+0000\n"
+"PO-Revision-Date: 2022-06-15 20:37+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: Bulgarian <https://translations.documentfoundation.org/projects/libo_ui-master/svtoolsmessages/bg/>\n"
"Language: bg\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: LibreOffice\n"
+"X-Generator: Weblate 4.12.2\n"
"X-POOTLE-MTIME: 1559419310.000000\n"
#. fLdeV
@@ -1745,7 +1745,7 @@ msgstr "Списък с игнорирани думи"
#: include/svtools/strings.hrc:345
msgctxt "STR_DESCRIPTION_LANGUAGETOOL"
msgid "LanguageTool Remote Grammar Checker"
-msgstr ""
+msgstr "LanguageTool – отдалечена граматична проверка"
#. wH3TZ
msgctxt "stock"
diff --git a/source/bg/svx/messages.po b/source/bg/svx/messages.po
index 8f73571fcb6..e1b1b3e5ee8 100644
--- a/source/bg/svx/messages.po
+++ b/source/bg/svx/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2022-06-09 11:50+0200\n"
+"POT-Creation-Date: 2022-06-15 22:28+0200\n"
"PO-Revision-Date: 2022-06-10 12:05+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: Bulgarian <https://translations.documentfoundation.org/projects/libo_ui-master/svxmessages/bg/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.12.2\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1562357387.000000\n"
#. 3GkZj
@@ -17071,13 +17071,13 @@ msgid "_Kern Character Pairs"
msgstr "Кърнинг на двойки знаци"
#. 8SKCU
-#: svx/uiconfig/ui/fontworkgallerydialog.ui:18
+#: svx/uiconfig/ui/fontworkgallerydialog.ui:16
msgctxt "fontworkgallerydialog|FontworkGalleryDialog"
msgid "Fontwork Gallery"
msgstr "Галерия на Fontwork"
#. GB7pa
-#: svx/uiconfig/ui/fontworkgallerydialog.ui:101
+#: svx/uiconfig/ui/fontworkgallerydialog.ui:99
msgctxt "fontworkgallerydialog|label1"
msgid "Select a Fontwork style:"
msgstr "Изберете стил на Fontwork:"
diff --git a/source/bg/sw/messages.po b/source/bg/sw/messages.po
index a2bc936bce9..077efe6e1a7 100644
--- a/source/bg/sw/messages.po
+++ b/source/bg/sw/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2022-06-09 11:51+0200\n"
+"POT-Creation-Date: 2022-06-15 22:29+0200\n"
"PO-Revision-Date: 2022-06-10 12:05+0000\n"
"Last-Translator: Mihail Balabanov <m.balabanov@gmail.com>\n"
"Language-Team: Bulgarian <https://translations.documentfoundation.org/projects/libo_ui-master/swmessages/bg/>\n"
@@ -13,7 +13,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Accelerator-Marker: ~\n"
-"X-Generator: Weblate 4.12.2\n"
+"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1562504032.000000\n"
#. v3oJv
@@ -14136,11 +14136,11 @@ msgctxt "envprinterpage|setup"
msgid "Setup..."
msgstr "Настройка..."
-#. jyNbK
+#. 4GuQN
#: sw/uiconfig/swriter/ui/envprinterpage.ui:467
msgctxt "envprinterpage|extended_tip|setup"
-msgid "Opens the Print Setup dialog where you can define additional printer settings, such as paper format and orientation."
-msgstr "Отваря диалоговия прозорец Настройки на принтера, в който можете зададете допълнителни настройки на принтера, например формат и ориентация на хартията."
+msgid "Opens the Printer Setup dialog where you can define additional printer settings, such as paper format and orientation."
+msgstr ""
#. AKs6U
#: sw/uiconfig/swriter/ui/envprinterpage.ui:481
@@ -17572,11 +17572,11 @@ msgctxt "insertdbcolumnsdialog|extended_tip|tabledbcols"
msgid "Specifies the database columns to be inserted into the text table."
msgstr "Задава колоните на базата от данни, които да бъдат вмъкнати в текстовата таблица."
-#. XmaQd
+#. xupgr
#: sw/uiconfig/swriter/ui/insertdbcolumnsdialog.ui:559
msgctxt "insertdbcolumnsdialog|extended_tip|tabletxtcols"
-msgid "Select the database columns that you want to insert it in the document."
-msgstr "Изберете колоните на базата от данни, които желаете да вмъкнете в документа."
+msgid "Select the database columns that you want to insert in the document."
+msgstr ""
#. DJStE
#: sw/uiconfig/swriter/ui/insertdbcolumnsdialog.ui:623
@@ -18100,44 +18100,38 @@ msgctxt "labeldialog|extended_tip|ok"
msgid "Creates a new document for editing."
msgstr "Създава нов документ за редактиране."
-#. EtFBT
-#: sw/uiconfig/swriter/ui/labeldialog.ui:141
-msgctxt "labeldialog|medium"
-msgid "Medium"
-msgstr "Хартия"
-
#. hJSCq
-#: sw/uiconfig/swriter/ui/labeldialog.ui:188
+#: sw/uiconfig/swriter/ui/labeldialog.ui:144
msgctxt "labeldialog|labels"
msgid "Labels"
msgstr "Етикети"
#. G378Z
-#: sw/uiconfig/swriter/ui/labeldialog.ui:236
+#: sw/uiconfig/swriter/ui/labeldialog.ui:192
msgctxt "labeldialog|private"
msgid "Private"
msgstr "Лична"
#. CAEMT
-#: sw/uiconfig/swriter/ui/labeldialog.ui:284
+#: sw/uiconfig/swriter/ui/labeldialog.ui:240
msgctxt "labeldialog|business"
msgid "Business"
msgstr "Служебна"
#. a7BSb
-#: sw/uiconfig/swriter/ui/labeldialog.ui:332
+#: sw/uiconfig/swriter/ui/labeldialog.ui:288
msgctxt "labeldialog|format"
msgid "Format"
msgstr "Формат"
#. cs8CW
-#: sw/uiconfig/swriter/ui/labeldialog.ui:380
+#: sw/uiconfig/swriter/ui/labeldialog.ui:336
msgctxt "labeldialog|options"
msgid "Options"
msgstr "Настройки"
#. uB6wE
-#: sw/uiconfig/swriter/ui/labeldialog.ui:407
+#: sw/uiconfig/swriter/ui/labeldialog.ui:363
msgctxt "labeldialog|extended_tip|LabelDialog"
msgid "Allows you to create labels. Labels are created in a text document."
msgstr "Позволява ви да изготвяте етикети. Етикетите се създават в текстов документ."
@@ -20314,26 +20308,32 @@ msgctxt "mmselectpage|extended_tip|browsetemplate"
msgid "Opens a template selector dialog."
msgstr "Отваря диалог за избор на шаблон."
-#. qieQK
+#. EDivp
#: sw/uiconfig/swriter/ui/mmselectpage.ui:191
-msgctxt "mmselectpage|extended_tip|datasourcewarning"
+msgctxt "mmselectpage|datasourcewarning"
msgid "Data source of the current document is not registered. Please exchange database."
-msgstr "Източникът на данни на текущия документ не е регистриран. Моля, сменете базата от данни."
+msgstr ""
-#. QcsgV
+#. NGYGa
#: sw/uiconfig/swriter/ui/mmselectpage.ui:200
+msgctxt "mmselectpage|exchangedatabase"
+msgid "Exchange Databases..."
+msgstr ""
+
+#. YjZmM
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:208
msgctxt "mmselectpage|extended_tip|exchangedatabase"
-msgid "Exchange Database..."
-msgstr "Смяна на базата от данни..."
+msgid "Click to exchange the databases of your mail merge."
+msgstr ""
#. 8ESAz
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:218
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:223
msgctxt "mmselectpage|label1"
msgid "Select Starting Document for the Mail Merge"
msgstr "Изберете начален документ за циркулярно писмо"
#. Hpca5
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:233
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:238
msgctxt "mmselectpage|extended_tip|MMSelectPage"
msgid "Specify the document that you want to use as a base for the mail merge document."
msgstr "Укажете документа, който искате да се използва за основа на циркулярното писмо."
@@ -22494,49 +22494,49 @@ msgid "OLE Object"
msgstr "OLE обект"
#. eRTnb
-#: sw/uiconfig/swriter/ui/objectdialog.ui:109
+#: sw/uiconfig/swriter/ui/objectdialog.ui:110
msgctxt "objectdialog|type"
msgid "Position and Size"
msgstr "Позиция и размер"
#. ADJiB
-#: sw/uiconfig/swriter/ui/objectdialog.ui:132
+#: sw/uiconfig/swriter/ui/objectdialog.ui:133
msgctxt "objectdialog|options"
msgid "Options"
msgstr "Настройки"
#. s9Kta
-#: sw/uiconfig/swriter/ui/objectdialog.ui:156
+#: sw/uiconfig/swriter/ui/objectdialog.ui:157
msgctxt "objectdialog|wrap"
msgid "Wrap"
msgstr "Обтичане"
#. vtCHo
-#: sw/uiconfig/swriter/ui/objectdialog.ui:180
+#: sw/uiconfig/swriter/ui/objectdialog.ui:181
msgctxt "objectdialog|hyperlink"
msgid "Hyperlink"
msgstr "Хипервръзка"
#. GquSU
-#: sw/uiconfig/swriter/ui/objectdialog.ui:204
+#: sw/uiconfig/swriter/ui/objectdialog.ui:205
msgctxt "objectdialog|borders"
msgid "Borders"
msgstr "Кантове"
#. L6dGA
-#: sw/uiconfig/swriter/ui/objectdialog.ui:228
+#: sw/uiconfig/swriter/ui/objectdialog.ui:229
msgctxt "objectdialog|area"
msgid "Area"
msgstr "Област"
#. zJ76x
-#: sw/uiconfig/swriter/ui/objectdialog.ui:252
+#: sw/uiconfig/swriter/ui/objectdialog.ui:253
msgctxt "objectdialog|transparence"
msgid "Transparency"
msgstr "Прозрачност"
#. FVDe9
-#: sw/uiconfig/swriter/ui/objectdialog.ui:276
+#: sw/uiconfig/swriter/ui/objectdialog.ui:277
msgctxt "objectdialog|macro"
msgid "Macro"
msgstr "Макрос"
@@ -25205,11 +25205,11 @@ msgctxt "printoptionspage|background"
msgid "Page ba_ckground"
msgstr "Фон на страници"
-#. ocn5F
+#. DAfze
#: sw/uiconfig/swriter/ui/printoptionspage.ui:80
-msgctxt "extended_tip|background"
-msgid "Specifies whether to include colors and objects that are inserted to the background of the page (Format - Page - Background) in the printed document."
-msgstr "Определя дали в отпечатания документ да се включат цветовете и обектите, вмъкнати във фона на страницата (Форматиране - Страница - Фон)."
+msgctxt "printoptionspage|extended_tip|background"
+msgid "Specifies whether to include colors and objects that are inserted to the background of the page style (Format - Page Style - Area) in the printed document."
+msgstr ""
#. FWBUe
#: sw/uiconfig/swriter/ui/printoptionspage.ui:91
@@ -25313,11 +25313,11 @@ msgctxt "printoptionspage|none"
msgid "_None"
msgstr "Няма"
-#. CDv8b
+#. d4YMs
#: sw/uiconfig/swriter/ui/printoptionspage.ui:298
-msgctxt "extended_tip|none"
-msgid "Specifies whether comments in your document are printed."
-msgstr "Забранява отпечатването на коментарите в документа."
+msgctxt "printoptionspage|extended_tip|none"
+msgid "Do not print document comments."
+msgstr ""
#. 6vPTt
#: sw/uiconfig/swriter/ui/printoptionspage.ui:309
@@ -25325,11 +25325,11 @@ msgctxt "printoptionspage|only"
msgid "Comments _only"
msgstr "Само коментари"
-#. KsL3A
+#. aBf74
#: sw/uiconfig/swriter/ui/printoptionspage.ui:318
-msgctxt "extended_tip|only"
-msgid "Specifies whether comments in your document are printed."
-msgstr "Забранява отпечатването на коментарите в документа."
+msgctxt "printoptionspage|extended_tip|only"
+msgid "Only print the comments of your document."
+msgstr ""
#. n5M2U
#: sw/uiconfig/swriter/ui/printoptionspage.ui:329
@@ -25337,11 +25337,11 @@ msgctxt "printoptionspage|end"
msgid "End of docu_ment"
msgstr "В края на документа"
-#. VxM7F
+#. LgZCr
#: sw/uiconfig/swriter/ui/printoptionspage.ui:338
-msgctxt "extended_tip|end"
-msgid "Specifies whether comments in your document are printed."
-msgstr "Забранява отпечатването на коментарите в документа."
+msgctxt "printoptionspage|extended_tip|end"
+msgid "Print comments on a new page at end of the document."
+msgstr ""
#. pRqdi
#: sw/uiconfig/swriter/ui/printoptionspage.ui:349
@@ -25349,11 +25349,11 @@ msgctxt "printoptionspage|endpage"
msgid "_End of page"
msgstr "В края на страницата"
-#. hxM9Z
+#. c2JD2
#: sw/uiconfig/swriter/ui/printoptionspage.ui:358
msgctxt "extended_tip|endpage"
-msgid "Specifies whether comments in your document are printed."
-msgstr "Забранява отпечатването на коментарите в документа."
+msgid "Print comments on a new page after the current page."
+msgstr ""
#. oBR83
#: sw/uiconfig/swriter/ui/printoptionspage.ui:369
@@ -25361,11 +25361,11 @@ msgctxt "printoptionspage|inmargins"
msgid "In margins"
msgstr "В полетата"
-#. 7aAXX
+#. HTtDH
#: sw/uiconfig/swriter/ui/printoptionspage.ui:378
-msgctxt "extended_tip|inmargins"
-msgid "Specifies whether comments in your document are printed."
-msgstr "Забранява отпечатването на коментарите в документа."
+msgctxt "printoptionspage|extended_tip|inmargins"
+msgid "Include the comments boxes on the margin of the page. The page contents is rendered to fit both contents and the comments boxes."
+msgstr ""
#. VeG6V
#: sw/uiconfig/swriter/ui/printoptionspage.ui:393
@@ -28233,11 +28233,11 @@ msgctxt "textgridpage|labelFT_RUBYSIZE"
msgid "Max. Ruby text size:"
msgstr "Макс. размер на транслитерация:"
-#. FxPwc
+#. hHaUA
#: sw/uiconfig/swriter/ui/textgridpage.ui:363
msgctxt "textgridpage|extended_tip|spinMF_RUBYSIZE"
-msgid "Enter the font size for the Ruby text."
-msgstr "Въведете размера на шрифта за транслитериран тест."
+msgid "Enter the maximum font size for the Ruby text."
+msgstr ""
#. FJFVs
#: sw/uiconfig/swriter/ui/textgridpage.ui:377
@@ -29385,11 +29385,11 @@ msgctxt "tocindexpage|casesens"
msgid "Case sensitive"
msgstr "Зачитане на регистъра"
-#. rAwSj
+#. sNHCm
#: sw/uiconfig/swriter/ui/tocindexpage.ui:1003
msgctxt "tocindexpage|extended_tip|casesens"
-msgid "Distinguishes between uppercase and lowercase letters in identical index entries. For Asian languages special handling applies."
-msgstr "Главните и малките букви в еднакви елементи от указател ще се смятат за различни. За азиатски езици се прилага специална обработка."
+msgid "Distinguishes between uppercase and lowercase letters in otherwise identical index entries. For Asian languages special handling applies."
+msgstr ""
#. e35vc
#: sw/uiconfig/swriter/ui/tocindexpage.ui:1014
diff --git a/source/bn-IN/cui/messages.po b/source/bn-IN/cui/messages.po
index f2f32383f26..a4f52e487ca 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: 2022-06-10 13:57+0200\n"
+"POT-Creation-Date: 2022-06-15 22:27+0200\n"
"PO-Revision-Date: 2021-08-25 05:04+0000\n"
"Last-Translator: Shaunak Basu <basushaunak@msn.com>\n"
"Language-Team: Bengali (India) <https://translations.documentfoundation.org/projects/libo_ui-master/cuimessages/bn_IN/>\n"
@@ -3127,10 +3127,10 @@ msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Need custom contents for metadata properties? File ▸ Properties ▸ Custom Properties tab lets you create what you want."
msgstr ""
-#. 9TnEA
+#. beSc7
#: cui/inc/tipoftheday.hrc:208
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Want to see, but not print, an object in Draw? Draw it on a layer for which the “Printable” flag is not set (right click on the tab and “Modify Layer”)."
+msgid "Want to see, but not print, an object in Draw? Draw it on a layer for which the “Printable” flag is not set (right-click the layer’s tab and choose “Modify Layer”)."
msgstr ""
#. CGQaY
@@ -4942,25 +4942,25 @@ msgid "[M]: Replace while modifying existing text"
msgstr "[M]: বিদ্যমান পাঠ্য পরিবর্তন করার সময় প্রতিস্থাপন করুন"
#. FtXg9
-#: cui/uiconfig/ui/applyautofmtpage.ui:90
+#: cui/uiconfig/ui/applyautofmtpage.ui:93
msgctxt "applyautofmtpage|label2"
msgid "[T]: AutoCorrect while typing"
msgstr "[T]: টাইপ করার সময় স্বয়ংক্রিয় সংশোধন"
#. NujUD
-#: cui/uiconfig/ui/applyautofmtpage.ui:136
+#: cui/uiconfig/ui/applyautofmtpage.ui:142
msgctxt "applyautofmtpage|m"
msgid "[M]"
msgstr "[M]"
#. qanx6
-#: cui/uiconfig/ui/applyautofmtpage.ui:158
+#: cui/uiconfig/ui/applyautofmtpage.ui:164
msgctxt "applyautofmtpage|t"
msgid "[T]"
msgstr "[T]"
#. 2tG6L
-#: cui/uiconfig/ui/applyautofmtpage.ui:205
+#: cui/uiconfig/ui/applyautofmtpage.ui:211
msgctxt "applyautofmtpage|extended_tip|ApplyAutoFmtPage"
msgid "Select the options for automatically correcting errors as you type, and then click OK."
msgstr ""
@@ -8319,11 +8319,11 @@ msgctxt "dimensionlinestabpage|TSB_PARALLEL"
msgid "_Parallel to line"
msgstr "রেখার সমান্তরাল (_P)"
-#. gZdFr
+#. CCTEb
#: cui/uiconfig/ui/dimensionlinestabpage.ui:440
msgctxt "dimensionlinestabpage|extended_tip|TSB_PARALLEL"
-msgid "Displays the text parallel to or at 90 degrees to the dimension line."
-msgstr "পাঠ মাত্রা রেখার সমান্তরালে বা ৯০ ডিগ্রীতে প্রদর্শন করে।"
+msgid "If enabled, displays the text parallel to the dimension line. If disabled, the text is shown at 90 degrees to the dimension line."
+msgstr ""
#. QNscD
#: cui/uiconfig/ui/dimensionlinestabpage.ui:452
@@ -8331,11 +8331,11 @@ msgctxt "dimensionlinestabpage|TSB_SHOW_UNIT"
msgid "Show _measurement units"
msgstr "পরিমাপ ইউনিট দেখান (_m)"
-#. cJRA9
+#. KQGtM
#: cui/uiconfig/ui/dimensionlinestabpage.ui:461
msgctxt "dimensionlinestabpage|extended_tip|TSB_SHOW_UNIT"
-msgid "Shows or hides the dimension measurement units. You can also select a measurement unit you want to display from the list."
-msgstr "মাত্রা পরিমাপ এককসমূহ প্রদর্শন করে বা লুকিয়ে রাখে। আপনি তালিকা হতে প্রদর্শন করতে চান এমন পরিমাপ এককও নির্বাচন করতে পারেন।"
+msgid "Shows or hides the dimension measurement unit. You can select a measurement unit you want to display from the list."
+msgstr ""
#. EEaqi
#: cui/uiconfig/ui/dimensionlinestabpage.ui:479
@@ -10344,10 +10344,10 @@ msgctxt "hangulhanjaoptdialog|extended_tip|delete"
msgid "Deletes the selected user-defined dictionary."
msgstr ""
-#. v7Bkk
+#. eG9Qx
#: cui/uiconfig/ui/hangulhanjaoptdialog.ui:231
msgctxt "hangulhanjaoptdialog|extended_tip|dicts"
-msgid "Lists all user-defined dictionaries. Select the check box next to the dictionary that you want to use. Clear the check box next to the dictionary that you do not want to use."
+msgid "Lists all user-defined dictionaries. Select the check box next to the dictionaries that you want to use. Clear the check box next to the dictionaries that you do not want to use."
msgstr ""
#. DmfuX
@@ -10733,19 +10733,19 @@ msgid "Opens the Assign Macro dialog, in which you can give events such as \"mou
msgstr ""
#. TXrCH
-#: cui/uiconfig/ui/hyperlinkdocpage.ui:399
+#: cui/uiconfig/ui/hyperlinkdocpage.ui:391
msgctxt "hyperlinkdocpage|extended_tip|frame"
msgid "Enter the name of the frame that you want the linked file to open in, or select a predefined frame from the list. If you leave this box blank, the linked file opens in the current browser window."
msgstr "আপনি যে ফ্রেমে লিংককৃত ফাইলটি খুলতে চান তার জন্য একটি নাম সন্নিবেশ করুন, বা পূর্বনির্ধারিত ফ্রেম থেকে একটি নির্বাচন করুন। যদি আপনি এই বাক্সটিকে খালি রাখেন, তবে লিংককৃত ফাইলটি বর্তমান ব্রাউজার উইন্ডোতে খোলে।"
#. frjow
-#: cui/uiconfig/ui/hyperlinkdocpage.ui:420
+#: cui/uiconfig/ui/hyperlinkdocpage.ui:412
msgctxt "hyperlinkdocpage|label1"
msgid "Further Settings"
msgstr "অন্যান্য সেটিংসমূহ"
#. 789Vi
-#: cui/uiconfig/ui/hyperlinkdocpage.ui:435
+#: cui/uiconfig/ui/hyperlinkdocpage.ui:427
msgctxt "hyperlinkdocpage|extended_tip|HyperlinkDocPage"
msgid "Hyperlinks to any document or targets in documents can be edited using the Document tab from the Hyperlink dialog."
msgstr ""
@@ -10889,19 +10889,19 @@ msgid "Opens the Assign Macro dialog, in which you can give events such as \"mou
msgstr ""
#. C5Hqs
-#: cui/uiconfig/ui/hyperlinkinternetpage.ui:409
+#: cui/uiconfig/ui/hyperlinkinternetpage.ui:401
msgctxt "hyperlinkinternetpage|extended_tip|frame"
msgid "Enter the name of the frame that you want the linked file to open in, or select a predefined frame from the list. If you leave this box blank, the linked file opens in the current browser window."
msgstr "আপনি যে ফ্রেমে লিংককৃত ফাইলটি খুলতে চান তার জন্য একটি নাম সন্নিবেশ করুন, বা পূর্বনির্ধারিত ফ্রেম থেকে একটি নির্বাচন করুন। যদি আপনি এই বাক্সটিকে খালি রাখেন, তবে লিংককৃত ফাইলটি বর্তমান ব্রাউজার উইন্ডোতে খোলে।"
#. UKQMX
-#: cui/uiconfig/ui/hyperlinkinternetpage.ui:430
+#: cui/uiconfig/ui/hyperlinkinternetpage.ui:422
msgctxt "hyperlinkinternetpage|label1"
msgid "Further Settings"
msgstr "অন্যান্য সেটিংসমূহ"
#. 8UdTe
-#: cui/uiconfig/ui/hyperlinkinternetpage.ui:445
+#: cui/uiconfig/ui/hyperlinkinternetpage.ui:437
msgctxt "hyperlinkinternetpage|extended_tip|HyperlinkInternetPage"
msgid "Use the Internet page of the Hyperlink dialog to edit hyperlinks with WWW or FTP addresses."
msgstr ""
@@ -11003,19 +11003,19 @@ msgid "Opens the Assign Macro dialog, in which you can give events such as \"mou
msgstr ""
#. CwHdi
-#: cui/uiconfig/ui/hyperlinkmailpage.ui:324
+#: cui/uiconfig/ui/hyperlinkmailpage.ui:316
msgctxt "hyperlinkmailpage|extended_tip|frame"
msgid "Enter the name of the frame that you want the linked file to open in, or select a predefined frame from the list. If you leave this box blank, the linked file opens in the current browser window."
msgstr "আপনি যে ফ্রেমে লিংককৃত ফাইলটি খুলতে চান তার জন্য একটি নাম সন্নিবেশ করুন, বা পূর্বনির্ধারিত ফ্রেম থেকে একটি নির্বাচন করুন। যদি আপনি এই বাক্সটিকে খালি রাখেন, তবে লিংককৃত ফাইলটি বর্তমান ব্রাউজার উইন্ডোতে খোলে।"
#. BmHDh
-#: cui/uiconfig/ui/hyperlinkmailpage.ui:345
+#: cui/uiconfig/ui/hyperlinkmailpage.ui:337
msgctxt "hyperlinkmailpage|label1"
msgid "Further Settings"
msgstr "অন্যান্য সেটিংসমূহ"
#. SvyDu
-#: cui/uiconfig/ui/hyperlinkmailpage.ui:360
+#: cui/uiconfig/ui/hyperlinkmailpage.ui:352
msgctxt "hyperlinkmailpage|extended_tip|HyperlinkMailPage"
msgid "On the Mail page in the Hyperlink dialog you can edit hyperlinks for email addresses."
msgstr ""
@@ -11177,19 +11177,19 @@ msgid "Opens the Assign Macro dialog, in which you can give events such as \"mou
msgstr ""
#. rXaNm
-#: cui/uiconfig/ui/hyperlinknewdocpage.ui:408
+#: cui/uiconfig/ui/hyperlinknewdocpage.ui:400
msgctxt "hyperlinknewdocpage|extended_tip|frame"
msgid "Enter the name of the frame that you want the linked file to open in, or select a predefined frame from the list. If you leave this box blank, the linked file opens in the current browser window."
msgstr "আপনি যে ফ্রেমে লিংককৃত ফাইলটি খুলতে চান তার জন্য একটি নাম সন্নিবেশ করুন, বা পূর্বনির্ধারিত ফ্রেম থেকে একটি নির্বাচন করুন। যদি আপনি এই বাক্সটিকে খালি রাখেন, তবে লিংককৃত ফাইলটি বর্তমান ব্রাউজার উইন্ডোতে খোলে।"
#. MS2Cn
-#: cui/uiconfig/ui/hyperlinknewdocpage.ui:429
+#: cui/uiconfig/ui/hyperlinknewdocpage.ui:421
msgctxt "hyperlinknewdocpage|label1"
msgid "Further Settings"
msgstr "অন্যান্য সেটিংসমূহ"
#. ztAbs
-#: cui/uiconfig/ui/hyperlinknewdocpage.ui:444
+#: cui/uiconfig/ui/hyperlinknewdocpage.ui:436
msgctxt "hyperlinknewdocpage|extended_tip|HyperlinkNewDocPage"
msgid "Use the New Document tab from the Hyperlink dialog to set up a hyperlink to a new document and create the new document simultaneously."
msgstr ""
@@ -11955,10 +11955,10 @@ msgctxt "langtoolconfigpage|base"
msgid "Base URL:"
msgstr ""
-#. 9to2D
+#. z58D6
#: cui/uiconfig/ui/langtoolconfigpage.ui:111
msgctxt "langtoolconfigpage|usernamelbl"
-msgid "User name:"
+msgid "Username:"
msgstr ""
#. B8kMr
@@ -11967,32 +11967,32 @@ msgctxt "langtoolconfigpage|apikeylbl"
msgid "API key:"
msgstr ""
-#. AoT7Z
+#. LBMkb
#: cui/uiconfig/ui/langtoolconfigpage.ui:159
msgctxt "langtoolconfigpage|urldesc"
-msgid "Please use the base URL e.g. without \"/check\" at the end."
+msgid "Please use the base URL, i.e., without “/check”, at the end."
msgstr ""
-#. EDETM
-#: cui/uiconfig/ui/langtoolconfigpage.ui:171
+#. 77oav
+#: cui/uiconfig/ui/langtoolconfigpage.ui:174
msgctxt "langtoolconfigpage|usernamedesc"
-msgid "Your LanguageTool account's username for premium usage."
+msgid "Your LanguageTool account’s username for premium usage."
msgstr ""
-#. aDGJf
-#: cui/uiconfig/ui/langtoolconfigpage.ui:183
+#. tGuAh
+#: cui/uiconfig/ui/langtoolconfigpage.ui:189
msgctxt "langtoolconfigpage|apikeydesc"
-msgid "Your LanguageTool account's api key for premium usage."
+msgid "Your LanguageTool account’s API key for premium usage."
msgstr ""
#. Dn8bb
-#: cui/uiconfig/ui/langtoolconfigpage.ui:206
+#: cui/uiconfig/ui/langtoolconfigpage.ui:215
msgctxt "langtoolconfigpage|apisettingsheader"
msgid "API Settings"
msgstr ""
#. Ntss5
-#: cui/uiconfig/ui/langtoolconfigpage.ui:225
+#: cui/uiconfig/ui/langtoolconfigpage.ui:234
msgctxt "langtoolconfigpage|langtoolsettings"
msgid "LanguageTool API Options"
msgstr ""
@@ -14513,73 +14513,73 @@ msgstr "[L]: অবজেক্ট লোড এবং রূপান্তর"
#. PiDB7
#. The [S] here is repeated as the column title for the "Save" column of this options page
-#: cui/uiconfig/ui/optfltrembedpage.ui:163
+#: cui/uiconfig/ui/optfltrembedpage.ui:166
msgctxt "optfltrembedpage|label3"
msgid "[S]: Convert and save the object"
msgstr "[S]: অবজেক্ট রূপান্তর এবং সংরক্ষণ"
#. f2hGQ
-#: cui/uiconfig/ui/optfltrembedpage.ui:185
+#: cui/uiconfig/ui/optfltrembedpage.ui:191
msgctxt "optfltrembedpage|label1"
msgid "Embedded Objects"
msgstr "এম্বেড করা বিষয়বস্তু"
#. nvE89
-#: cui/uiconfig/ui/optfltrembedpage.ui:215
+#: cui/uiconfig/ui/optfltrembedpage.ui:221
msgctxt "optfltrembedpage|label5"
msgid "Export as:"
msgstr ""
#. FEeH6
-#: cui/uiconfig/ui/optfltrembedpage.ui:230
+#: cui/uiconfig/ui/optfltrembedpage.ui:236
msgctxt "optfltrembedpage|highlighting"
msgid "Highlighting"
msgstr "উজ্জ্বলকরণ"
#. qBuyX
-#: cui/uiconfig/ui/optfltrembedpage.ui:239
+#: cui/uiconfig/ui/optfltrembedpage.ui:245
msgctxt "extended_tip|highlighting"
msgid "Microsoft Office has two character attributes similar to Writer character background. Select the appropriate attribute (highlighting or shading) which you would like to use during export to Microsoft Office file formats."
msgstr ""
#. Dnrx7
-#: cui/uiconfig/ui/optfltrembedpage.ui:251
+#: cui/uiconfig/ui/optfltrembedpage.ui:257
msgctxt "optfltrembedpage|shading"
msgid "Shading"
msgstr "ছায়াকরণ"
#. 3PFE2
-#: cui/uiconfig/ui/optfltrembedpage.ui:260
+#: cui/uiconfig/ui/optfltrembedpage.ui:266
msgctxt "extended_tip|shading"
msgid "Microsoft Office has two character attributes similar to Writer character background. Select the appropriate attribute (highlighting or shading) which you would like to use during export to Microsoft Office file formats."
msgstr ""
#. gKwdG
-#: cui/uiconfig/ui/optfltrembedpage.ui:283
+#: cui/uiconfig/ui/optfltrembedpage.ui:289
msgctxt "optfltrembedpage|label4"
msgid "Character Highlighting"
msgstr ""
#. tyACF
-#: cui/uiconfig/ui/optfltrembedpage.ui:310
+#: cui/uiconfig/ui/optfltrembedpage.ui:316
msgctxt "optfltrembedpage|mso_lockfile"
msgid "Create MSO lock file"
msgstr ""
#. qc4GD
-#: cui/uiconfig/ui/optfltrembedpage.ui:319
+#: cui/uiconfig/ui/optfltrembedpage.ui:325
msgctxt "extended_tip|mso_lockfile"
msgid "Mark this checkbox to generate a Microsoft Office lock file in addition to this office suite's own lock file."
msgstr ""
#. Sg5Bw
-#: cui/uiconfig/ui/optfltrembedpage.ui:335
+#: cui/uiconfig/ui/optfltrembedpage.ui:341
msgctxt "optfltrembedpage|label5"
msgid "Lock Files"
msgstr ""
#. EUBnP
-#: cui/uiconfig/ui/optfltrembedpage.ui:349
+#: cui/uiconfig/ui/optfltrembedpage.ui:355
msgctxt "extended_tip|OptFilterPage"
msgid "Specifies the settings for importing and exporting Microsoft Office and other documents."
msgstr ""
@@ -14848,11 +14848,11 @@ msgctxt "optgeneralpage|exthelp"
msgid "_Extended tips"
msgstr "বর্ধিত পরামর্শ (_E)"
-#. ypuz2
+#. TyqBV
#: cui/uiconfig/ui/optgeneralpage.ui:42
msgctxt "extended_tip | exthelp"
-msgid "Displays a help text when you rest the cursor on an icon, a menu command, or a control on a dialog."
-msgstr "আপনি কার্সারটি ডায়ালগের একটি আইকন, তালিকার নির্দেশ, বা নিয়ন্ত্রণের উপর স্থির রাখার সময় সহায়িকার পাঠ্য প্রদর্শিত হয়।"
+msgid "Displays a help text when you rest the mouse pointer on an icon, a menu command, or a control on a dialog."
+msgstr ""
#. Cbeuc
#: cui/uiconfig/ui/optgeneralpage.ui:53
@@ -16551,7 +16551,7 @@ msgid "Passwords are protected by a master password. You will be asked to enter
msgstr "পাসওয়ার্ডগুলো মাস্টার পাসওয়ার্ড দিয়ে সংরক্ষিত। প্রত্যেক অধিবেশনে এটি একবার সন্নিবেশ করতে বলা হবে, যদি %PRODUCTNAME সুরক্ষিত পাসওয়ার্ড তালিকা থেকে একটি পাসওয়ার্ড পুনরুদ্ধার করে।"
#. 7gzb7
-#: cui/uiconfig/ui/optsecuritypage.ui:303
+#: cui/uiconfig/ui/optsecuritypage.ui:306
msgctxt "optsecuritypage|nopasswordsave"
msgid ""
"Disabling the function to persistently store passwords deletes the list of passwords stored and resets the master password.\n"
@@ -16563,61 +16563,61 @@ msgstr ""
"আপনি কি পাসওয়ার্ডের তালিকা মুছে ফেলতে চান এবং মাস্টার পাসওয়ার্ড পুনঃনির্ধারণ করতে চান?"
#. hwg3F
-#: cui/uiconfig/ui/optsecuritypage.ui:341
+#: cui/uiconfig/ui/optsecuritypage.ui:344
msgctxt "optsecuritypage|connections"
msgid "Connect_ions..."
msgstr "সংযোগ (_i)..."
#. GLEjB
-#: cui/uiconfig/ui/optsecuritypage.ui:349
+#: cui/uiconfig/ui/optsecuritypage.ui:352
msgctxt "extended_tip|connections"
msgid "Asks for the master password. If master password is correct, shows the Stored Web Connection Information dialog."
msgstr "মাষ্টার গুপ্তসঙ্কেতের জন্য কোয়েরি করুন। মাষ্টার গুপ্তসঙ্কেত যদি সঠিক হয়, সংরক্ষিত ওয়েব সংযোগের তথ্য ডায়ালগ প্রদর্শন করে।"
#. SWrMn
-#: cui/uiconfig/ui/optsecuritypage.ui:371
+#: cui/uiconfig/ui/optsecuritypage.ui:374
msgctxt "optsecuritypage|masterpassword"
msgid "_Master Password..."
msgstr "প্রধান পাসওয়ার্ড (_M)..."
#. w3TQo
-#: cui/uiconfig/ui/optsecuritypage.ui:379
+#: cui/uiconfig/ui/optsecuritypage.ui:382
msgctxt "extended_tip|masterpassword"
msgid "Opens the Enter Master Password dialog."
msgstr "মাষ্টার গুপ্তসঙ্কেত ডায়ালগ খোলে।"
#. UtNEn
-#: cui/uiconfig/ui/optsecuritypage.ui:406
+#: cui/uiconfig/ui/optsecuritypage.ui:409
msgctxt "optsecuritypage|label2"
msgid "Passwords for Web Connections"
msgstr "ওয়েব সংযোগের জন্য পাসওয়ার্ড"
#. EYFvA
-#: cui/uiconfig/ui/optsecuritypage.ui:439
+#: cui/uiconfig/ui/optsecuritypage.ui:442
msgctxt "optsecuritypage|label4"
msgid "Adjust security related options and define warnings for hidden information in documents. "
msgstr "নিরাপত্তা সম্বন্ধীয় বিকল্প সামঞ্জস্যপূর্ণ করুন এবং নথিতে লুকানো তথ্যের জন্য সতর্কতা নির্দিষ্ট করুন। "
#. CBnzU
-#: cui/uiconfig/ui/optsecuritypage.ui:452
+#: cui/uiconfig/ui/optsecuritypage.ui:455
msgctxt "optsecuritypage|options"
msgid "O_ptions..."
msgstr "অপশন... (_p)"
#. pepKZ
-#: cui/uiconfig/ui/optsecuritypage.ui:460
+#: cui/uiconfig/ui/optsecuritypage.ui:463
msgctxt "extended_tip|options"
msgid "Opens the \"Security Options and Warnings\" dialog."
msgstr ""
#. GqVkJ
-#: cui/uiconfig/ui/optsecuritypage.ui:475
+#: cui/uiconfig/ui/optsecuritypage.ui:478
msgctxt "optsecuritypage|label1"
msgid "Security Options and Warnings"
msgstr "নিরাপত্তা সংক্রান্ত বিকল্প ও সতর্কতা"
#. rwtuC
-#: cui/uiconfig/ui/optsecuritypage.ui:489
+#: cui/uiconfig/ui/optsecuritypage.ui:492
msgctxt "extended_tip|OptSecurityPage"
msgid "Defines the security options for saving documents, for web connections, and for opening documents that contain macros."
msgstr ""
@@ -20126,10 +20126,10 @@ msgctxt "specialcharacters|srchft"
msgid "Search:"
msgstr "অনুসন্ধান করুনঃ"
-#. eCjVg
+#. zPCZ7
#: cui/uiconfig/ui/specialcharacters.ui:166
msgctxt "specialcharacters|extended_tip|subsetlb"
-msgid "Select a Unicode category for the current font."
+msgid "Select a Unicode block for the current font."
msgstr ""
#. JPWW8
@@ -20164,19 +20164,19 @@ msgid "Maximum Limit: 16 Characters"
msgstr ""
#. ti8sG
-#: cui/uiconfig/ui/specialcharacters.ui:371
+#: cui/uiconfig/ui/specialcharacters.ui:374
msgctxt "specialcharacters|symboltext1"
msgid "Recent Characters:"
msgstr ""
#. LQZ7q
-#: cui/uiconfig/ui/specialcharacters.ui:605
+#: cui/uiconfig/ui/specialcharacters.ui:608
msgctxt "specialcharacters|favbtn|symboltext2"
msgid "Favorite Characters:"
msgstr ""
#. DhG6L
-#: cui/uiconfig/ui/specialcharacters.ui:903
+#: cui/uiconfig/ui/specialcharacters.ui:906
msgctxt "specialcharacters|extended_tip|SpecialCharactersDialog"
msgid "Allows a user to insert characters from the range of symbols found in the installed fonts."
msgstr ""
diff --git a/source/bn-IN/filter/messages.po b/source/bn-IN/filter/messages.po
index e984487496f..fdac7f93e81 100644
--- a/source/bn-IN/filter/messages.po
+++ b/source/bn-IN/filter/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2022-01-31 18:19+0100\n"
+"POT-Creation-Date: 2022-06-15 22:28+0200\n"
"PO-Revision-Date: 2018-11-11 05:50+0000\n"
"Last-Translator: SHUBHRANIL NAG <nagshubhranil96@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1512,10 +1512,10 @@ msgctxt "pdfviewpage|fitvis"
msgid "Fit _visible"
msgstr "দৃশ্যমান এলাকা জুড়ে (_v)"
-#. FD8Pp
+#. EBBzj
#: filter/uiconfig/ui/pdfviewpage.ui:254
msgctxt "pdfviewpage|extended_tip|fitvis"
-msgid "Select to generate a PDF file that shows the text and graphics on the page zoomed to fit the width of the reader's window."
+msgid "Select to generate a PDF file that shows the text and graphics on the page zoomed to fit the reader's window."
msgstr ""
#. NGpWy
@@ -1914,10 +1914,10 @@ msgctxt "xmlfiltertabpagegeneral|extended_tip|filtername"
msgid "Enter the name that you want to display in the list box of the XML Filter Settings dialog."
msgstr ""
-#. Tbmcc
+#. D5aZP
#: filter/uiconfig/ui/xmlfiltertabpagegeneral.ui:119
msgctxt "xmlfiltertabpagegeneral|extended_tip|extension"
-msgid "Enter the file extension to use when you open a file without specifying a filter. The file extension to used to determine which filter to use."
+msgid "Enter the file extension to use when you open a file without specifying a filter. The file extension is used to determine which filter to use."
msgstr ""
#. fZvBA
diff --git a/source/bn-IN/helpcontent2/source/text/scalc/01.po b/source/bn-IN/helpcontent2/source/text/scalc/01.po
index 293131bee82..2e099cfe5b7 100644
--- a/source/bn-IN/helpcontent2/source/text/scalc/01.po
+++ b/source/bn-IN/helpcontent2/source/text/scalc/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2022-06-09 11:50+0200\n"
+"POT-Creation-Date: 2022-06-15 22:28+0200\n"
"PO-Revision-Date: 2020-12-31 12:36+0000\n"
"Last-Translator: serval2412 <serval2412@yahoo.fr>\n"
"Language-Team: Bengali (India) <https://translations.documentfoundation.org/projects/libo_help-master/textscalc01/bn_IN/>\n"
@@ -69028,13 +69028,13 @@ msgctxt ""
msgid "<emph>Group</emph>: sets the minimum (maximum) value based on the lower and higher values found in the group of sparklines."
msgstr ""
-#. E6s55
+#. NNez9
#: sparklines.xhp
msgctxt ""
"sparklines.xhp\n"
"par_id51654181442414\n"
"help.text"
-msgid "<emph>Custom:</emph> enter the minimum (maximum) value for the sparkline group."
+msgid "<emph>Custom</emph>: enter the minimum (maximum) value for the sparkline group. Enter the minimum (maximum) values or use the spin buttons."
msgstr ""
#. CNBDD
diff --git a/source/bn-IN/helpcontent2/source/text/scalc/guide.po b/source/bn-IN/helpcontent2/source/text/scalc/guide.po
index 0bb03742d19..fb6ca7389e7 100644
--- a/source/bn-IN/helpcontent2/source/text/scalc/guide.po
+++ b/source/bn-IN/helpcontent2/source/text/scalc/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2022-02-04 12:33+0100\n"
+"POT-Creation-Date: 2022-06-15 22:28+0200\n"
"PO-Revision-Date: 2018-11-14 11:52+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2275,14 +2275,14 @@ msgctxt ""
msgid "Copy, delete, move, or format a selection of currently visible cells."
msgstr "বর্তমান দৃশ্যমান কক্ষের একটি নির্বাচন অনুলিপি করুন, মুছে ফেলুন, সরিয়ে ফেলুন অথবা বিন্যাস করুন।"
-#. FEuz7
+#. VccAs
#: cellcopy.xhp
msgctxt ""
"cellcopy.xhp\n"
"par_id3154371\n"
"help.text"
-msgid "All cells of the selection, including the hidden cells, are copied, deleted, moved, or formatted."
-msgstr "লুকায়িত ঘর অন্তর্ভূক্ত করে নির্বাচনের সব ঘর অনুলিপি করা, মুছে ফেলা, সরিয়ে নেওয়া, অথবা বিন্যাস করা হয়েছে।"
+msgid "By default, all cells of the selection, including the hidden cells, are copied, deleted, moved, or formatted. Restrict the selection to visible rows choosing <menuitem>Edit - Select - Select Visible Rows Only</menuitem> or to visible columns choosing <menuitem>Edit - Select - Select Visible Columns Only</menuitem>."
+msgstr ""
#. rBtUY
#: cellreference_dragdrop.xhp
diff --git a/source/bn-IN/helpcontent2/source/text/shared/00.po b/source/bn-IN/helpcontent2/source/text/shared/00.po
index 1bf37a9643d..d3836d79e8d 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: 2022-06-09 11:50+0200\n"
+"POT-Creation-Date: 2022-06-15 22:28+0200\n"
"PO-Revision-Date: 2018-11-14 11:52+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -7963,13 +7963,22 @@ msgctxt ""
msgid "OLE Object"
msgstr "OLE অবজেক্ট"
-#. UFnGc
+#. 36hBn
+#: 00000404.xhp
+msgctxt ""
+"00000404.xhp\n"
+"par_id761566316165430\n"
+"help.text"
+msgid "Choose <menuitem>Insert - OLE Object - QR and Barcode</menuitem>."
+msgstr ""
+
+#. F9Wus
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
"par_id3150393\n"
"help.text"
-msgid "Choose <menuitem>Insert - OLE Object - Formula Object</menuitem>."
+msgid "<variable id=\"insert_formula\">Choose <menuitem>Insert - OLE Object - Formula Object</menuitem>.</variable>"
msgstr ""
#. kQdhV
@@ -15019,13 +15028,13 @@ msgctxt ""
msgid "<variable id=\"linkae\">Choose <menuitem>Edit - Links to External Files - Modify...</menuitem> (DDE links only).</variable>"
msgstr ""
-#. qo8gR
+#. bgzTi
#: edit_menu.xhp
msgctxt ""
"edit_menu.xhp\n"
"par_id3148927\n"
"help.text"
-msgid "Select a frame, then choose <menuitem>Edit - Object - Properties</menuitem>."
+msgid "Select a frame, then choose <menuitem>Edit - OLE Object - Properties</menuitem>."
msgstr ""
#. cDcix
@@ -15037,31 +15046,31 @@ msgctxt ""
msgid "Open context menu of selected frame, choose <menuitem>Properties</menuitem>."
msgstr ""
-#. jmnro
+#. 5TkgL
#: edit_menu.xhp
msgctxt ""
"edit_menu.xhp\n"
"par_id3149259\n"
"help.text"
-msgid "<variable id=\"edit1\">Choose <menuitem>Edit - Object</menuitem>.</variable>"
+msgid "<variable id=\"edit1\">Choose <menuitem>Edit - OLE Object</menuitem>.</variable>"
msgstr ""
-#. XAqNW
+#. ApejL
#: edit_menu.xhp
msgctxt ""
"edit_menu.xhp\n"
"par_id3154966\n"
"help.text"
-msgid "<variable id=\"edit2\">Choose <menuitem>Edit - Object - Edit</menuitem>, also in the context menu of selected object.</variable>"
+msgid "<variable id=\"edit2\">Choose <menuitem>Edit - OLE Object - Edit</menuitem>, also in the context menu of selected object.</variable>"
msgstr ""
-#. sA6YF
+#. 9Gp6Z
#: edit_menu.xhp
msgctxt ""
"edit_menu.xhp\n"
"par_id3149565\n"
"help.text"
-msgid "<variable id=\"edit3\">Choose <menuitem>Edit - Object - Open</menuitem>.</variable>"
+msgid "<variable id=\"edit3\">Choose <menuitem>Edit - OLE Object - Open</menuitem>.</variable>"
msgstr ""
#. kQifg
diff --git a/source/bn-IN/helpcontent2/source/text/shared/01.po b/source/bn-IN/helpcontent2/source/text/shared/01.po
index 8a6bcc2ff4a..bbad6292937 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: 2022-06-09 11:50+0200\n"
+"POT-Creation-Date: 2022-06-15 22:28+0200\n"
"PO-Revision-Date: 2021-11-15 11:38+0000\n"
"Last-Translator: Shaunak Basu <basushaunak@msn.com>\n"
"Language-Team: Bengali (India) <https://translations.documentfoundation.org/projects/libo_help-master/textshared01/bn_IN/>\n"
@@ -11050,40 +11050,40 @@ msgctxt ""
msgid "<ahelp hid=\"sfx/ui/linkeditdialog/category\">Lists the section or object that the link refers to in the source file. If you want, you can enter a new section or object here.</ahelp>"
msgstr ""
-#. nWEMa
+#. 4FLU6
#: 02200000.xhp
msgctxt ""
"02200000.xhp\n"
"tit\n"
"help.text"
-msgid "Edit Object"
+msgid "OLE Object (Edit)"
msgstr ""
-#. nBCA7
+#. VrRPX
#: 02200000.xhp
msgctxt ""
"02200000.xhp\n"
"hd_id3146959\n"
"help.text"
-msgid "<link href=\"text/shared/01/02200000.xhp\" name=\"Object\">Edit Object</link>"
+msgid "<link href=\"text/shared/01/02200000.xhp\" name=\"Object\">OLE Object</link>"
msgstr ""
-#. 6bDqk
+#. QMGSE
#: 02200000.xhp
msgctxt ""
"02200000.xhp\n"
"par_id3154840\n"
"help.text"
-msgid "<variable id=\"object_text\"><ahelp hid=\".uno:ObjectMenue\">Lets you edit a selected object in your file that you inserted with the <item type=\"menuitem\">Insert - Object</item> command.</ahelp></variable>"
+msgid "<variable id=\"object_text\"><ahelp hid=\".uno:ObjectMenue\">Lets you edit a selected OLE object that you inserted from the <menuitem>Insert - OLE Object</menuitem> submenu.</ahelp></variable>"
msgstr ""
-#. YDqFE
+#. NWE46
#: 02200000.xhp
msgctxt ""
"02200000.xhp\n"
"par_id3153551\n"
"help.text"
-msgid "<link href=\"text/shared/01/04150000.xhp\" name=\"Insert - Object\">Insert - Object</link>"
+msgid "<embedvar href=\"text/shared/01/04150000.xhp#oleobjecth1\"/>"
msgstr ""
#. HB6iE
@@ -11122,13 +11122,13 @@ msgctxt ""
msgid "<link href=\"text/shared/01/02200100.xhp\" name=\"Edit\">Edit</link>"
msgstr ""
-#. MmR4v
+#. CP7mz
#: 02200100.xhp
msgctxt ""
"02200100.xhp\n"
"par_id3150008\n"
"help.text"
-msgid "<ahelp visibility=\"visible\" hid=\".\">Lets you edit a selected object in your file that you inserted with the <emph>Insert – Object</emph> command.</ahelp>"
+msgid "<ahelp visibility=\"visible\" hid=\".\">Lets you edit a selected OLE object that you inserted with the <menuitem>Insert – OLE Object</menuitem> command.</ahelp>"
msgstr ""
#. PXv8N
@@ -15469,13 +15469,13 @@ msgctxt ""
msgid "OLE Object (Insert Menu)"
msgstr ""
-#. hq7i8
+#. 9hJLy
#: 04150000.xhp
msgctxt ""
"04150000.xhp\n"
"hd_id3146873\n"
"help.text"
-msgid "<link href=\"text/shared/01/04150000.xhp\" name=\"Object\">OLE Object</link>"
+msgid "<variable id=\"oleobjecth1\"><link href=\"text/shared/01/04150000.xhp\" name=\"Object\">OLE Object</link></variable>"
msgstr ""
#. s2t34
diff --git a/source/bn-IN/helpcontent2/source/text/shared/guide.po b/source/bn-IN/helpcontent2/source/text/shared/guide.po
index f686864f1d9..77d3fc45c49 100644
--- a/source/bn-IN/helpcontent2/source/text/shared/guide.po
+++ b/source/bn-IN/helpcontent2/source/text/shared/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2022-06-10 13:58+0200\n"
+"POT-Creation-Date: 2022-06-15 22:28+0200\n"
"PO-Revision-Date: 2021-11-19 15:26+0000\n"
"Last-Translator: Shaunak Basu <basushaunak@msn.com>\n"
"Language-Team: Bengali (India) <https://translations.documentfoundation.org/projects/libo_help-master/textsharedguide/bn_IN/>\n"
@@ -2626,13 +2626,13 @@ msgctxt ""
msgid "<bookmark_value>custom;classification levels</bookmark_value> <bookmark_value>classification levels;customizing</bookmark_value>"
msgstr ""
-#. 3wmPg
+#. NfubP
#: classification.xhp
msgctxt ""
"classification.xhp\n"
"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 <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><menuitem> - LibreOffice - Paths - Classification</menuitem> into a local folder and edit the contents."
+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 <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><menuitem> - %PRODUCTNAME - Paths - Classification</menuitem> into a local folder and edit the contents."
msgstr ""
#. Tcss6
@@ -11482,14 +11482,14 @@ msgctxt ""
msgid "To edit the OLE object, double-click on it."
msgstr "OLE বস্তু সম্পাদনা করার জন্য এটিতে ডাবল-ক্লিক করুন।"
-#. FTF7g
+#. 8DbMH
#: dragdrop_table.xhp
msgctxt ""
"dragdrop_table.xhp\n"
"par_id3155389\n"
"help.text"
-msgid "Alternatively, select the object and choose <emph>Edit - Object - Edit</emph> or choose <emph>Edit</emph> from the context menu. You edit the object in its own frame within the text document, but you see the icons and menu commands needed for spreadsheets."
-msgstr "বিকল্প হিসেবে বিষয়বস্তু নির্বাচন করুন এবং <emph> সম্পাদনা করুন- বিষয়বস্তু- সম্পাদনা করুন</emph>পছন্দ করুন অথবা প্রসঙ্গ মেনু থেকে<emph> সম্পাদনা করুন</emph>পছন্দ করুন। আপনি টেক্সট নথির মধ্যে নিজস্ব ছকে বিষয়বস্তু সম্পাদনা করেন কিন্তু আপনি আইকন এবং স্প্রেডশীটের জন্য প্রয়োজনীয় মেনু র্নিদেশাবলী দেখতে পান।"
+msgid "Alternatively, select the object and choose <menuitem>Edit - OLE Object - Edit</menuitem> or choose <menuitem>Edit</menuitem> from the context menu. You edit the object in its own frame within the text document, but you see the icons and menu commands needed for spreadsheets."
+msgstr ""
#. uFCGU
#: dragdrop_table.xhp
@@ -22660,15 +22660,6 @@ msgctxt ""
msgid "The QR and Barcode generation feature allows you to encode any text string or URL as a barcode or a QR code and insert it as a graphical object in a document for scanning."
msgstr ""
-#. N32UF
-#: qrcode.xhp
-msgctxt ""
-"qrcode.xhp\n"
-"par_id761566316165430\n"
-"help.text"
-msgid "Choose <menuitem>Insert - Object - QR and Barcode</menuitem>."
-msgstr ""
-
#. UCeXG
#: qrcode.xhp
msgctxt ""
diff --git a/source/bn-IN/helpcontent2/source/text/smath/guide.po b/source/bn-IN/helpcontent2/source/text/smath/guide.po
index fb82b272f80..f76fec03c3e 100644
--- a/source/bn-IN/helpcontent2/source/text/smath/guide.po
+++ b/source/bn-IN/helpcontent2/source/text/smath/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2022-01-31 18:20+0100\n"
+"POT-Creation-Date: 2022-06-15 22:28+0200\n"
"PO-Revision-Date: 2021-11-19 15:26+0000\n"
"Last-Translator: Shaunak Basu <basushaunak@msn.com>\n"
"Language-Team: Bengali (India) <https://translations.documentfoundation.org/projects/libo_help-master/textsmathguide/bn_IN/>\n"
@@ -835,14 +835,14 @@ msgctxt ""
msgid "Select the formula"
msgstr "সূত্রটি নির্বাচন করুন"
-#. bN6uQ
+#. F2ipo
#: keyboard.xhp
msgctxt ""
"keyboard.xhp\n"
"par_id3150213\n"
"help.text"
-msgid "Choose the command <emph>Insert - Object - Formula</emph>."
-msgstr "<emph>অন্তর্ভুক্ত - বস্তু - সূত্র</emph> কমান্ডটি নির্বাচন করুন।"
+msgid "Choose the command <menuitem>Insert - OLE Object - Formula Object</menuitem>."
+msgstr ""
#. aowxC
#: keyboard.xhp
@@ -853,14 +853,14 @@ msgctxt ""
msgid "Inserting a Formula using a Window"
msgstr "একটি উইন্ডো ব্যবহার করে সূত্র সন্নিবেশ করানো হচ্ছে"
-#. Tqx4F
+#. Jvobx
#: keyboard.xhp
msgctxt ""
"keyboard.xhp\n"
"par_id3149875\n"
"help.text"
-msgid "If you want to use the $[officename] Math interface to edit a formula, choose the command <emph>Insert - Object - Formula</emph> without any text selected."
-msgstr "আপনি যদি একটি সূত্র সম্পাদনা করতে $[officename] Math ইন্টারফেস ব্যবহার করতে চান, তাহলে কোন নির্বাচিত পাঠ্য ব্যতীত <emph> অন্তর্ভুক্ত - বস্তু- সূত্র</emph> কমান্ডটি নির্বাচন করুন।"
+msgid "If you want to use the $[officename] Math interface to edit a formula, choose the command <menuitem>Insert - OLE Object - Formula Object</menuitem> without any text selected."
+msgstr ""
#. sEBBM
#: keyboard.xhp
@@ -943,14 +943,14 @@ msgctxt ""
msgid "You want to insert a summation formula like \"summation of s^k from k = 0 to n\" at the cursor in a Writer text document."
msgstr "আপনি \"summation of s^k from k = 0 to n\" এর মত একটি যোগ করার সূত্র লেখনী পাঠ্য নথিতে বিদ্যমান একটি কারসারে অন্তর্ভুক্ত করতে চান।"
-#. 5oKcr
+#. kEJWp
#: limits.xhp
msgctxt ""
"limits.xhp\n"
"par_id8811304\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Insert - Object - Formula</item>."
-msgstr "<item type=\"menuitem\">অন্তর্ভুক্ত - বস্তু - সূত্র</item> নির্বাচন করুন।"
+msgid "<embedvar href=\"text/shared/00/00000404.xhp#insert_formula\"/>"
+msgstr ""
#. qAFch
#: limits.xhp
@@ -1033,14 +1033,14 @@ msgctxt ""
msgid "In the same way, you can enter an Integral formula with limits. When you click an icon from the Elements pane, the assigned text command is inserted in the input window. If you know the text commands, you can enter the commands directly in the input window."
msgstr ""
-#. q8yAH
+#. 57GSa
#: limits.xhp
msgctxt ""
"limits.xhp\n"
"par_id5866267\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Insert - Object - Formula</item>."
-msgstr "<item type=\"menuitem\">অন্তর্ভুক্ত - বস্তু - সূত্র</item> নির্বাচন করুন।"
+msgid "<embedvar href=\"text/shared/00/00000404.xhp#insert_formula\"/>"
+msgstr ""
#. VAoyi
#: limits.xhp
diff --git a/source/bn-IN/helpcontent2/source/text/swriter/01.po b/source/bn-IN/helpcontent2/source/text/swriter/01.po
index 9b6a26ba03d..8609a7f7b4f 100644
--- a/source/bn-IN/helpcontent2/source/text/swriter/01.po
+++ b/source/bn-IN/helpcontent2/source/text/swriter/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2022-06-09 11:50+0200\n"
+"POT-Creation-Date: 2022-06-15 22:28+0200\n"
"PO-Revision-Date: 2018-10-21 20:04+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -18169,22 +18169,22 @@ msgctxt ""
msgid "<emph>Right paragraph border:</emph> the object is positioned considering the width of the indent space available to the right of the paragraph."
msgstr ""
-#. UWViJ
+#. QrQHe
#: 05060100.xhp
msgctxt ""
"05060100.xhp\n"
"par_id171629211714933\n"
"help.text"
-msgid "<emph>Left page border:</emph> the object is positioned considering the space available between the left page border and the left paragraph border."
+msgid "<menuitem>Left of page text area</menuitem>: the object is positioned in the region between the left edge of the page and the left margin plus any left page padding."
msgstr ""
-#. F9qZf
+#. DzD2e
#: 05060100.xhp
msgctxt ""
"05060100.xhp\n"
"par_id131629211715280\n"
"help.text"
-msgid "<emph>Right page border:</emph> the object is positioned considering the space available between the right page border and the right paragraph border."
+msgid "<menuitem>Right of page text area</menuitem>: the object is positioned in the region between the right edge of the page and the right margin plus any right page padding."
msgstr ""
#. norkq
diff --git a/source/bn-IN/helpcontent2/source/text/swriter/guide.po b/source/bn-IN/helpcontent2/source/text/swriter/guide.po
index bd30162632f..b713b14aa18 100644
--- a/source/bn-IN/helpcontent2/source/text/swriter/guide.po
+++ b/source/bn-IN/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2022-06-09 11:50+0200\n"
+"POT-Creation-Date: 2022-06-15 22:28+0200\n"
"PO-Revision-Date: 2018-11-12 13:19+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -43,13 +43,13 @@ msgctxt ""
msgid "<variable id=\"anchor_object\"><link href=\"text/swriter/guide/anchor_object.xhp\" name=\"Positioning Objects\">Positioning Objects</link></variable>"
msgstr "<variable id=\"anchor_object\"><link href=\"text/swriter/guide/anchor_object.xhp\" name=\"Positioning Objects\">বস্তুর অবস্থান নির্ধারণ করা হচ্ছে</link></variable>"
-#. MDGBe
+#. WBVDD
#: anchor_object.xhp
msgctxt ""
"anchor_object.xhp\n"
"par_id181634295881266\n"
"help.text"
-msgid "An object, such as an image or frame, is positioned within a document using anchors attached to other elements."
+msgid "An object, such as an image or frame, is positioned within a document using an anchor attached to another element."
msgstr ""
#. FAyRX
diff --git a/source/bn-IN/svx/messages.po b/source/bn-IN/svx/messages.po
index 26ae902eb3c..8d715387a50 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: 2022-06-09 11:50+0200\n"
+"POT-Creation-Date: 2022-06-15 22:28+0200\n"
"PO-Revision-Date: 2021-11-17 12:37+0000\n"
"Last-Translator: Shaunak Basu <basushaunak@msn.com>\n"
"Language-Team: Bengali (India) <https://translations.documentfoundation.org/projects/libo_ui-master/svxmessages/bn_IN/>\n"
@@ -17324,13 +17324,13 @@ msgid "_Kern Character Pairs"
msgstr ""
#. 8SKCU
-#: svx/uiconfig/ui/fontworkgallerydialog.ui:18
+#: svx/uiconfig/ui/fontworkgallerydialog.ui:16
msgctxt "fontworkgallerydialog|FontworkGalleryDialog"
msgid "Fontwork Gallery"
msgstr "ফন্টওয়ার্ক গ্যালারি"
#. GB7pa
-#: svx/uiconfig/ui/fontworkgallerydialog.ui:101
+#: svx/uiconfig/ui/fontworkgallerydialog.ui:99
msgctxt "fontworkgallerydialog|label1"
msgid "Select a Fontwork style:"
msgstr ""
diff --git a/source/bn-IN/sw/messages.po b/source/bn-IN/sw/messages.po
index 4c8cb203443..ce2c73048e1 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: 2022-06-09 11:51+0200\n"
+"POT-Creation-Date: 2022-06-15 22:29+0200\n"
"PO-Revision-Date: 2021-11-17 12:37+0000\n"
"Last-Translator: Shaunak Basu <basushaunak@msn.com>\n"
"Language-Team: Bengali (India) <https://translations.documentfoundation.org/projects/libo_ui-master/swmessages/bn_IN/>\n"
@@ -14438,11 +14438,11 @@ msgctxt "envprinterpage|setup"
msgid "Setup..."
msgstr ""
-#. jyNbK
+#. 4GuQN
#: sw/uiconfig/swriter/ui/envprinterpage.ui:467
msgctxt "envprinterpage|extended_tip|setup"
-msgid "Opens the Print Setup dialog where you can define additional printer settings, such as paper format and orientation."
-msgstr "মুদ্রণ সেটাপ ডায়ালগ খোলা হয় যেখানে আপনি অতিরিক্ত মুদ্রণ যন্ত্র সেটিং, যেমন কাগজ বিন্যাস এবং স্থিতিবিন্যাস উল্লেখ করতে পারেন।"
+msgid "Opens the Printer Setup dialog where you can define additional printer settings, such as paper format and orientation."
+msgstr ""
#. AKs6U
#: sw/uiconfig/swriter/ui/envprinterpage.ui:481
@@ -17967,11 +17967,11 @@ msgctxt "insertdbcolumnsdialog|extended_tip|tabledbcols"
msgid "Specifies the database columns to be inserted into the text table."
msgstr "টেক্সট সারণিতে সন্নিবেশযোগ্য ডাটাবেস কলাম উল্লেখ করে।"
-#. XmaQd
+#. xupgr
#: sw/uiconfig/swriter/ui/insertdbcolumnsdialog.ui:559
msgctxt "insertdbcolumnsdialog|extended_tip|tabletxtcols"
-msgid "Select the database columns that you want to insert it in the document."
-msgstr "নথিতে প্রবশের জন্য আপনার পছন্দসই ডাটাবেস কলাম নির্বাচন করুন।"
+msgid "Select the database columns that you want to insert in the document."
+msgstr ""
#. DJStE
#: sw/uiconfig/swriter/ui/insertdbcolumnsdialog.ui:623
@@ -18510,46 +18510,39 @@ msgctxt "labeldialog|extended_tip|ok"
msgid "Creates a new document for editing."
msgstr ""
-#. EtFBT
-#: sw/uiconfig/swriter/ui/labeldialog.ui:141
-#, fuzzy
-msgctxt "labeldialog|medium"
-msgid "Medium"
-msgstr "মাঝারি"
-
#. hJSCq
-#: sw/uiconfig/swriter/ui/labeldialog.ui:188
+#: sw/uiconfig/swriter/ui/labeldialog.ui:144
#, fuzzy
msgctxt "labeldialog|labels"
msgid "Labels"
msgstr "স্তর"
#. G378Z
-#: sw/uiconfig/swriter/ui/labeldialog.ui:236
+#: sw/uiconfig/swriter/ui/labeldialog.ui:192
msgctxt "labeldialog|private"
msgid "Private"
msgstr "ব্যক্তিগত"
#. CAEMT
-#: sw/uiconfig/swriter/ui/labeldialog.ui:284
+#: sw/uiconfig/swriter/ui/labeldialog.ui:240
msgctxt "labeldialog|business"
msgid "Business"
msgstr "ব্যবসা"
#. a7BSb
-#: sw/uiconfig/swriter/ui/labeldialog.ui:332
+#: sw/uiconfig/swriter/ui/labeldialog.ui:288
msgctxt "labeldialog|format"
msgid "Format"
msgstr "বিন্যাস"
#. cs8CW
-#: sw/uiconfig/swriter/ui/labeldialog.ui:380
+#: sw/uiconfig/swriter/ui/labeldialog.ui:336
msgctxt "labeldialog|options"
msgid "Options"
msgstr "অপশন"
#. uB6wE
-#: sw/uiconfig/swriter/ui/labeldialog.ui:407
+#: sw/uiconfig/swriter/ui/labeldialog.ui:363
msgctxt "labeldialog|extended_tip|LabelDialog"
msgid "Allows you to create labels. Labels are created in a text document."
msgstr ""
@@ -20825,26 +20818,32 @@ msgctxt "mmselectpage|extended_tip|browsetemplate"
msgid "Opens a template selector dialog."
msgstr ""
-#. qieQK
+#. EDivp
#: sw/uiconfig/swriter/ui/mmselectpage.ui:191
-msgctxt "mmselectpage|extended_tip|datasourcewarning"
+msgctxt "mmselectpage|datasourcewarning"
msgid "Data source of the current document is not registered. Please exchange database."
msgstr ""
-#. QcsgV
+#. NGYGa
#: sw/uiconfig/swriter/ui/mmselectpage.ui:200
+msgctxt "mmselectpage|exchangedatabase"
+msgid "Exchange Databases..."
+msgstr ""
+
+#. YjZmM
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:208
msgctxt "mmselectpage|extended_tip|exchangedatabase"
-msgid "Exchange Database..."
+msgid "Click to exchange the databases of your mail merge."
msgstr ""
#. 8ESAz
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:218
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:223
msgctxt "mmselectpage|label1"
msgid "Select Starting Document for the Mail Merge"
msgstr ""
#. Hpca5
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:233
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:238
msgctxt "mmselectpage|extended_tip|MMSelectPage"
msgid "Specify the document that you want to use as a base for the mail merge document."
msgstr ""
@@ -23032,51 +23031,51 @@ msgid "OLE Object"
msgstr ""
#. eRTnb
-#: sw/uiconfig/swriter/ui/objectdialog.ui:109
+#: sw/uiconfig/swriter/ui/objectdialog.ui:110
msgctxt "objectdialog|type"
msgid "Position and Size"
msgstr ""
#. ADJiB
-#: sw/uiconfig/swriter/ui/objectdialog.ui:132
+#: sw/uiconfig/swriter/ui/objectdialog.ui:133
msgctxt "objectdialog|options"
msgid "Options"
msgstr "অপশন"
#. s9Kta
-#: sw/uiconfig/swriter/ui/objectdialog.ui:156
+#: sw/uiconfig/swriter/ui/objectdialog.ui:157
#, fuzzy
msgctxt "objectdialog|wrap"
msgid "Wrap"
msgstr "মোড়ানো (~W)"
#. vtCHo
-#: sw/uiconfig/swriter/ui/objectdialog.ui:180
+#: sw/uiconfig/swriter/ui/objectdialog.ui:181
msgctxt "objectdialog|hyperlink"
msgid "Hyperlink"
msgstr "হাইপারলিংক"
#. GquSU
-#: sw/uiconfig/swriter/ui/objectdialog.ui:204
+#: sw/uiconfig/swriter/ui/objectdialog.ui:205
msgctxt "objectdialog|borders"
msgid "Borders"
msgstr "সীমানা"
#. L6dGA
-#: sw/uiconfig/swriter/ui/objectdialog.ui:228
+#: sw/uiconfig/swriter/ui/objectdialog.ui:229
#, fuzzy
msgctxt "objectdialog|area"
msgid "Area"
msgstr "এলাকা"
#. zJ76x
-#: sw/uiconfig/swriter/ui/objectdialog.ui:252
+#: sw/uiconfig/swriter/ui/objectdialog.ui:253
msgctxt "objectdialog|transparence"
msgid "Transparency"
msgstr "স্বচ্ছতা"
#. FVDe9
-#: sw/uiconfig/swriter/ui/objectdialog.ui:276
+#: sw/uiconfig/swriter/ui/objectdialog.ui:277
msgctxt "objectdialog|macro"
msgid "Macro"
msgstr "ম্যাক্রো"
@@ -25861,10 +25860,10 @@ msgctxt "printoptionspage|background"
msgid "Page ba_ckground"
msgstr "পৃষ্ঠার পটভূমি (_c)"
-#. ocn5F
+#. DAfze
#: sw/uiconfig/swriter/ui/printoptionspage.ui:80
-msgctxt "extended_tip|background"
-msgid "Specifies whether to include colors and objects that are inserted to the background of the page (Format - Page - Background) in the printed document."
+msgctxt "printoptionspage|extended_tip|background"
+msgid "Specifies whether to include colors and objects that are inserted to the background of the page style (Format - Page Style - Area) in the printed document."
msgstr ""
#. FWBUe
@@ -25969,10 +25968,10 @@ msgctxt "printoptionspage|none"
msgid "_None"
msgstr "কোনটি না (_N)"
-#. CDv8b
+#. d4YMs
#: sw/uiconfig/swriter/ui/printoptionspage.ui:298
-msgctxt "extended_tip|none"
-msgid "Specifies whether comments in your document are printed."
+msgctxt "printoptionspage|extended_tip|none"
+msgid "Do not print document comments."
msgstr ""
#. 6vPTt
@@ -25981,10 +25980,10 @@ msgctxt "printoptionspage|only"
msgid "Comments _only"
msgstr "শুধুমাত্র মন্তব্য (_o)"
-#. KsL3A
+#. aBf74
#: sw/uiconfig/swriter/ui/printoptionspage.ui:318
-msgctxt "extended_tip|only"
-msgid "Specifies whether comments in your document are printed."
+msgctxt "printoptionspage|extended_tip|only"
+msgid "Only print the comments of your document."
msgstr ""
#. n5M2U
@@ -25993,10 +25992,10 @@ msgctxt "printoptionspage|end"
msgid "End of docu_ment"
msgstr "নথির শেষ (_m)"
-#. VxM7F
+#. LgZCr
#: sw/uiconfig/swriter/ui/printoptionspage.ui:338
-msgctxt "extended_tip|end"
-msgid "Specifies whether comments in your document are printed."
+msgctxt "printoptionspage|extended_tip|end"
+msgid "Print comments on a new page at end of the document."
msgstr ""
#. pRqdi
@@ -26005,10 +26004,10 @@ msgctxt "printoptionspage|endpage"
msgid "_End of page"
msgstr "পৃষ্ঠার শেষ (_m)"
-#. hxM9Z
+#. c2JD2
#: sw/uiconfig/swriter/ui/printoptionspage.ui:358
msgctxt "extended_tip|endpage"
-msgid "Specifies whether comments in your document are printed."
+msgid "Print comments on a new page after the current page."
msgstr ""
#. oBR83
@@ -26017,10 +26016,10 @@ msgctxt "printoptionspage|inmargins"
msgid "In margins"
msgstr ""
-#. 7aAXX
+#. HTtDH
#: sw/uiconfig/swriter/ui/printoptionspage.ui:378
-msgctxt "extended_tip|inmargins"
-msgid "Specifies whether comments in your document are printed."
+msgctxt "printoptionspage|extended_tip|inmargins"
+msgid "Include the comments boxes on the margin of the page. The page contents is rendered to fit both contents and the comments boxes."
msgstr ""
#. VeG6V
@@ -28961,11 +28960,11 @@ msgctxt "textgridpage|labelFT_RUBYSIZE"
msgid "Max. Ruby text size:"
msgstr ""
-#. FxPwc
+#. hHaUA
#: sw/uiconfig/swriter/ui/textgridpage.ui:363
msgctxt "textgridpage|extended_tip|spinMF_RUBYSIZE"
-msgid "Enter the font size for the Ruby text."
-msgstr "রুবি পাঠ্যের জন্য ফন্টের আকার সন্নিবেশ করুন।"
+msgid "Enter the maximum font size for the Ruby text."
+msgstr ""
#. FJFVs
#: sw/uiconfig/swriter/ui/textgridpage.ui:377
@@ -30148,11 +30147,11 @@ msgctxt "tocindexpage|casesens"
msgid "Case sensitive"
msgstr "বড় বা ছোট হাতের অক্ষর সংবেদনশীল (_C)"
-#. rAwSj
+#. sNHCm
#: sw/uiconfig/swriter/ui/tocindexpage.ui:1003
msgctxt "tocindexpage|extended_tip|casesens"
-msgid "Distinguishes between uppercase and lowercase letters in identical index entries. For Asian languages special handling applies."
-msgstr "Distinguishes between uppercase and lowercase letters in identical index entries. For Asian languages special handling applies."
+msgid "Distinguishes between uppercase and lowercase letters in otherwise identical index entries. For Asian languages special handling applies."
+msgstr ""
#. e35vc
#: sw/uiconfig/swriter/ui/tocindexpage.ui:1014
diff --git a/source/bn/cui/messages.po b/source/bn/cui/messages.po
index 4d0890e787f..9cd01cf84be 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: 2022-06-10 13:57+0200\n"
+"POT-Creation-Date: 2022-06-15 22:27+0200\n"
"PO-Revision-Date: 2020-10-31 11:35+0000\n"
"Last-Translator: Christian Lohmaier <cloph@documentfoundation.org>\n"
"Language-Team: Bengali <https://weblate.documentfoundation.org/projects/libo_ui-master/cuimessages/bn/>\n"
@@ -3153,10 +3153,10 @@ msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Need custom contents for metadata properties? File ▸ Properties ▸ Custom Properties tab lets you create what you want."
msgstr ""
-#. 9TnEA
+#. beSc7
#: cui/inc/tipoftheday.hrc:208
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Want to see, but not print, an object in Draw? Draw it on a layer for which the “Printable” flag is not set (right click on the tab and “Modify Layer”)."
+msgid "Want to see, but not print, an object in Draw? Draw it on a layer for which the “Printable” flag is not set (right-click the layer’s tab and choose “Modify Layer”)."
msgstr ""
#. CGQaY
@@ -5012,25 +5012,25 @@ msgid "[M]: Replace while modifying existing text"
msgstr ""
#. FtXg9
-#: cui/uiconfig/ui/applyautofmtpage.ui:90
+#: cui/uiconfig/ui/applyautofmtpage.ui:93
msgctxt "applyautofmtpage|label2"
msgid "[T]: AutoCorrect while typing"
msgstr ""
#. NujUD
-#: cui/uiconfig/ui/applyautofmtpage.ui:136
+#: cui/uiconfig/ui/applyautofmtpage.ui:142
msgctxt "applyautofmtpage|m"
msgid "[M]"
msgstr ""
#. qanx6
-#: cui/uiconfig/ui/applyautofmtpage.ui:158
+#: cui/uiconfig/ui/applyautofmtpage.ui:164
msgctxt "applyautofmtpage|t"
msgid "[T]"
msgstr ""
#. 2tG6L
-#: cui/uiconfig/ui/applyautofmtpage.ui:205
+#: cui/uiconfig/ui/applyautofmtpage.ui:211
msgctxt "applyautofmtpage|extended_tip|ApplyAutoFmtPage"
msgid "Select the options for automatically correcting errors as you type, and then click OK."
msgstr ""
@@ -8500,11 +8500,11 @@ msgctxt "dimensionlinestabpage|TSB_PARALLEL"
msgid "_Parallel to line"
msgstr ""
-#. gZdFr
+#. CCTEb
#: cui/uiconfig/ui/dimensionlinestabpage.ui:440
msgctxt "dimensionlinestabpage|extended_tip|TSB_PARALLEL"
-msgid "Displays the text parallel to or at 90 degrees to the dimension line."
-msgstr "পাঠ মাত্রা রেখার সমান্তরালে বা ৯০ ডিগ্রীতে প্রদর্শন করে।"
+msgid "If enabled, displays the text parallel to the dimension line. If disabled, the text is shown at 90 degrees to the dimension line."
+msgstr ""
#. QNscD
#: cui/uiconfig/ui/dimensionlinestabpage.ui:452
@@ -8512,11 +8512,11 @@ msgctxt "dimensionlinestabpage|TSB_SHOW_UNIT"
msgid "Show _measurement units"
msgstr ""
-#. cJRA9
+#. KQGtM
#: cui/uiconfig/ui/dimensionlinestabpage.ui:461
msgctxt "dimensionlinestabpage|extended_tip|TSB_SHOW_UNIT"
-msgid "Shows or hides the dimension measurement units. You can also select a measurement unit you want to display from the list."
-msgstr "মাত্রা পরিমাপ এককসমূহ প্রদর্শন করে বা লুকিয়ে রাখে। আপনি তালিকা হতে প্রদর্শন করতে চান এমন পরিমাপ এককও নির্বাচন করতে পারেন।"
+msgid "Shows or hides the dimension measurement unit. You can select a measurement unit you want to display from the list."
+msgstr ""
#. EEaqi
#: cui/uiconfig/ui/dimensionlinestabpage.ui:479
@@ -10600,10 +10600,10 @@ msgctxt "hangulhanjaoptdialog|extended_tip|delete"
msgid "Deletes the selected user-defined dictionary."
msgstr ""
-#. v7Bkk
+#. eG9Qx
#: cui/uiconfig/ui/hangulhanjaoptdialog.ui:231
msgctxt "hangulhanjaoptdialog|extended_tip|dicts"
-msgid "Lists all user-defined dictionaries. Select the check box next to the dictionary that you want to use. Clear the check box next to the dictionary that you do not want to use."
+msgid "Lists all user-defined dictionaries. Select the check box next to the dictionaries that you want to use. Clear the check box next to the dictionaries that you do not want to use."
msgstr ""
#. DmfuX
@@ -11002,20 +11002,20 @@ msgid "Opens the Assign Macro dialog, in which you can give events such as \"mou
msgstr ""
#. TXrCH
-#: cui/uiconfig/ui/hyperlinkdocpage.ui:399
+#: cui/uiconfig/ui/hyperlinkdocpage.ui:391
msgctxt "hyperlinkdocpage|extended_tip|frame"
msgid "Enter the name of the frame that you want the linked file to open in, or select a predefined frame from the list. If you leave this box blank, the linked file opens in the current browser window."
msgstr "আপনি যে ফ্রেমে লিংককৃত ফাইলটি খুলতে চান তার জন্য একটি নাম সন্নিবেশ করুন, বা পূর্বনির্ধারিত ফ্রেম থেকে একটি নির্বাচন করুন। যদি আপনি এই বাক্সটিকে খালি রাখেন, তবে লিংককৃত ফাইলটি বর্তমান ব্রাউজার উইন্ডোতে খোলে।"
#. frjow
-#: cui/uiconfig/ui/hyperlinkdocpage.ui:420
+#: cui/uiconfig/ui/hyperlinkdocpage.ui:412
#, fuzzy
msgctxt "hyperlinkdocpage|label1"
msgid "Further Settings"
msgstr "অন্যান্য সেটিংসমূহ"
#. 789Vi
-#: cui/uiconfig/ui/hyperlinkdocpage.ui:435
+#: cui/uiconfig/ui/hyperlinkdocpage.ui:427
msgctxt "hyperlinkdocpage|extended_tip|HyperlinkDocPage"
msgid "Hyperlinks to any document or targets in documents can be edited using the Document tab from the Hyperlink dialog."
msgstr ""
@@ -11167,20 +11167,20 @@ msgid "Opens the Assign Macro dialog, in which you can give events such as \"mou
msgstr ""
#. C5Hqs
-#: cui/uiconfig/ui/hyperlinkinternetpage.ui:409
+#: cui/uiconfig/ui/hyperlinkinternetpage.ui:401
msgctxt "hyperlinkinternetpage|extended_tip|frame"
msgid "Enter the name of the frame that you want the linked file to open in, or select a predefined frame from the list. If you leave this box blank, the linked file opens in the current browser window."
msgstr "আপনি যে ফ্রেমে লিংককৃত ফাইলটি খুলতে চান তার জন্য একটি নাম সন্নিবেশ করুন, বা পূর্বনির্ধারিত ফ্রেম থেকে একটি নির্বাচন করুন। যদি আপনি এই বাক্সটিকে খালি রাখেন, তবে লিংককৃত ফাইলটি বর্তমান ব্রাউজার উইন্ডোতে খোলে।"
#. UKQMX
-#: cui/uiconfig/ui/hyperlinkinternetpage.ui:430
+#: cui/uiconfig/ui/hyperlinkinternetpage.ui:422
#, fuzzy
msgctxt "hyperlinkinternetpage|label1"
msgid "Further Settings"
msgstr "অন্যান্য সেটিংসমূহ"
#. 8UdTe
-#: cui/uiconfig/ui/hyperlinkinternetpage.ui:445
+#: cui/uiconfig/ui/hyperlinkinternetpage.ui:437
msgctxt "hyperlinkinternetpage|extended_tip|HyperlinkInternetPage"
msgid "Use the Internet page of the Hyperlink dialog to edit hyperlinks with WWW or FTP addresses."
msgstr ""
@@ -11286,20 +11286,20 @@ msgid "Opens the Assign Macro dialog, in which you can give events such as \"mou
msgstr ""
#. CwHdi
-#: cui/uiconfig/ui/hyperlinkmailpage.ui:324
+#: cui/uiconfig/ui/hyperlinkmailpage.ui:316
msgctxt "hyperlinkmailpage|extended_tip|frame"
msgid "Enter the name of the frame that you want the linked file to open in, or select a predefined frame from the list. If you leave this box blank, the linked file opens in the current browser window."
msgstr "আপনি যে ফ্রেমে লিংককৃত ফাইলটি খুলতে চান তার জন্য একটি নাম সন্নিবেশ করুন, বা পূর্বনির্ধারিত ফ্রেম থেকে একটি নির্বাচন করুন। যদি আপনি এই বাক্সটিকে খালি রাখেন, তবে লিংককৃত ফাইলটি বর্তমান ব্রাউজার উইন্ডোতে খোলে।"
#. BmHDh
-#: cui/uiconfig/ui/hyperlinkmailpage.ui:345
+#: cui/uiconfig/ui/hyperlinkmailpage.ui:337
#, fuzzy
msgctxt "hyperlinkmailpage|label1"
msgid "Further Settings"
msgstr "অন্যান্য সেটিংসমূহ"
#. SvyDu
-#: cui/uiconfig/ui/hyperlinkmailpage.ui:360
+#: cui/uiconfig/ui/hyperlinkmailpage.ui:352
msgctxt "hyperlinkmailpage|extended_tip|HyperlinkMailPage"
msgid "On the Mail page in the Hyperlink dialog you can edit hyperlinks for email addresses."
msgstr ""
@@ -11472,20 +11472,20 @@ msgid "Opens the Assign Macro dialog, in which you can give events such as \"mou
msgstr ""
#. rXaNm
-#: cui/uiconfig/ui/hyperlinknewdocpage.ui:408
+#: cui/uiconfig/ui/hyperlinknewdocpage.ui:400
msgctxt "hyperlinknewdocpage|extended_tip|frame"
msgid "Enter the name of the frame that you want the linked file to open in, or select a predefined frame from the list. If you leave this box blank, the linked file opens in the current browser window."
msgstr "আপনি যে ফ্রেমে লিংককৃত ফাইলটি খুলতে চান তার জন্য একটি নাম সন্নিবেশ করুন, বা পূর্বনির্ধারিত ফ্রেম থেকে একটি নির্বাচন করুন। যদি আপনি এই বাক্সটিকে খালি রাখেন, তবে লিংককৃত ফাইলটি বর্তমান ব্রাউজার উইন্ডোতে খোলে।"
#. MS2Cn
-#: cui/uiconfig/ui/hyperlinknewdocpage.ui:429
+#: cui/uiconfig/ui/hyperlinknewdocpage.ui:421
#, fuzzy
msgctxt "hyperlinknewdocpage|label1"
msgid "Further Settings"
msgstr "অন্যান্য সেটিংসমূহ"
#. ztAbs
-#: cui/uiconfig/ui/hyperlinknewdocpage.ui:444
+#: cui/uiconfig/ui/hyperlinknewdocpage.ui:436
msgctxt "hyperlinknewdocpage|extended_tip|HyperlinkNewDocPage"
msgid "Use the New Document tab from the Hyperlink dialog to set up a hyperlink to a new document and create the new document simultaneously."
msgstr ""
@@ -12277,10 +12277,10 @@ msgctxt "langtoolconfigpage|base"
msgid "Base URL:"
msgstr ""
-#. 9to2D
+#. z58D6
#: cui/uiconfig/ui/langtoolconfigpage.ui:111
msgctxt "langtoolconfigpage|usernamelbl"
-msgid "User name:"
+msgid "Username:"
msgstr ""
#. B8kMr
@@ -12289,32 +12289,32 @@ msgctxt "langtoolconfigpage|apikeylbl"
msgid "API key:"
msgstr ""
-#. AoT7Z
+#. LBMkb
#: cui/uiconfig/ui/langtoolconfigpage.ui:159
msgctxt "langtoolconfigpage|urldesc"
-msgid "Please use the base URL e.g. without \"/check\" at the end."
+msgid "Please use the base URL, i.e., without “/check”, at the end."
msgstr ""
-#. EDETM
-#: cui/uiconfig/ui/langtoolconfigpage.ui:171
+#. 77oav
+#: cui/uiconfig/ui/langtoolconfigpage.ui:174
msgctxt "langtoolconfigpage|usernamedesc"
-msgid "Your LanguageTool account's username for premium usage."
+msgid "Your LanguageTool account’s username for premium usage."
msgstr ""
-#. aDGJf
-#: cui/uiconfig/ui/langtoolconfigpage.ui:183
+#. tGuAh
+#: cui/uiconfig/ui/langtoolconfigpage.ui:189
msgctxt "langtoolconfigpage|apikeydesc"
-msgid "Your LanguageTool account's api key for premium usage."
+msgid "Your LanguageTool account’s API key for premium usage."
msgstr ""
#. Dn8bb
-#: cui/uiconfig/ui/langtoolconfigpage.ui:206
+#: cui/uiconfig/ui/langtoolconfigpage.ui:215
msgctxt "langtoolconfigpage|apisettingsheader"
msgid "API Settings"
msgstr ""
#. Ntss5
-#: cui/uiconfig/ui/langtoolconfigpage.ui:225
+#: cui/uiconfig/ui/langtoolconfigpage.ui:234
msgctxt "langtoolconfigpage|langtoolsettings"
msgid "LanguageTool API Options"
msgstr ""
@@ -14927,75 +14927,75 @@ msgstr ""
#. PiDB7
#. The [S] here is repeated as the column title for the "Save" column of this options page
-#: cui/uiconfig/ui/optfltrembedpage.ui:163
+#: cui/uiconfig/ui/optfltrembedpage.ui:166
msgctxt "optfltrembedpage|label3"
msgid "[S]: Convert and save the object"
msgstr ""
#. f2hGQ
-#: cui/uiconfig/ui/optfltrembedpage.ui:185
+#: cui/uiconfig/ui/optfltrembedpage.ui:191
msgctxt "optfltrembedpage|label1"
msgid "Embedded Objects"
msgstr ""
#. nvE89
-#: cui/uiconfig/ui/optfltrembedpage.ui:215
+#: cui/uiconfig/ui/optfltrembedpage.ui:221
msgctxt "optfltrembedpage|label5"
msgid "Export as:"
msgstr ""
#. FEeH6
-#: cui/uiconfig/ui/optfltrembedpage.ui:230
+#: cui/uiconfig/ui/optfltrembedpage.ui:236
#, fuzzy
msgctxt "optfltrembedpage|highlighting"
msgid "Highlighting"
msgstr "উজ্জ্বলকরণ"
#. qBuyX
-#: cui/uiconfig/ui/optfltrembedpage.ui:239
+#: cui/uiconfig/ui/optfltrembedpage.ui:245
msgctxt "extended_tip|highlighting"
msgid "Microsoft Office has two character attributes similar to Writer character background. Select the appropriate attribute (highlighting or shading) which you would like to use during export to Microsoft Office file formats."
msgstr ""
#. Dnrx7
-#: cui/uiconfig/ui/optfltrembedpage.ui:251
+#: cui/uiconfig/ui/optfltrembedpage.ui:257
#, fuzzy
msgctxt "optfltrembedpage|shading"
msgid "Shading"
msgstr "ছায়াকরণ"
#. 3PFE2
-#: cui/uiconfig/ui/optfltrembedpage.ui:260
+#: cui/uiconfig/ui/optfltrembedpage.ui:266
msgctxt "extended_tip|shading"
msgid "Microsoft Office has two character attributes similar to Writer character background. Select the appropriate attribute (highlighting or shading) which you would like to use during export to Microsoft Office file formats."
msgstr ""
#. gKwdG
-#: cui/uiconfig/ui/optfltrembedpage.ui:283
+#: cui/uiconfig/ui/optfltrembedpage.ui:289
msgctxt "optfltrembedpage|label4"
msgid "Character Highlighting"
msgstr ""
#. tyACF
-#: cui/uiconfig/ui/optfltrembedpage.ui:310
+#: cui/uiconfig/ui/optfltrembedpage.ui:316
msgctxt "optfltrembedpage|mso_lockfile"
msgid "Create MSO lock file"
msgstr ""
#. qc4GD
-#: cui/uiconfig/ui/optfltrembedpage.ui:319
+#: cui/uiconfig/ui/optfltrembedpage.ui:325
msgctxt "extended_tip|mso_lockfile"
msgid "Mark this checkbox to generate a Microsoft Office lock file in addition to this office suite's own lock file."
msgstr ""
#. Sg5Bw
-#: cui/uiconfig/ui/optfltrembedpage.ui:335
+#: cui/uiconfig/ui/optfltrembedpage.ui:341
msgctxt "optfltrembedpage|label5"
msgid "Lock Files"
msgstr ""
#. EUBnP
-#: cui/uiconfig/ui/optfltrembedpage.ui:349
+#: cui/uiconfig/ui/optfltrembedpage.ui:355
msgctxt "extended_tip|OptFilterPage"
msgid "Specifies the settings for importing and exporting Microsoft Office and other documents."
msgstr ""
@@ -15271,11 +15271,11 @@ msgctxt "optgeneralpage|exthelp"
msgid "_Extended tips"
msgstr "বর্ধিত পরামর্শ"
-#. ypuz2
+#. TyqBV
#: cui/uiconfig/ui/optgeneralpage.ui:42
msgctxt "extended_tip | exthelp"
-msgid "Displays a help text when you rest the cursor on an icon, a menu command, or a control on a dialog."
-msgstr "আপনি কার্সারটি ডায়ালগের একটি আইকন, তালিকার নির্দেশ, বা নিয়ন্ত্রণের উপর স্থির রাখার সময় সহায়িকার পাঠ্য প্রদর্শিত হয়।"
+msgid "Displays a help text when you rest the mouse pointer on an icon, a menu command, or a control on a dialog."
+msgstr ""
#. Cbeuc
#: cui/uiconfig/ui/optgeneralpage.ui:53
@@ -17001,7 +17001,7 @@ msgid "Passwords are protected by a master password. You will be asked to enter
msgstr ""
#. 7gzb7
-#: cui/uiconfig/ui/optsecuritypage.ui:303
+#: cui/uiconfig/ui/optsecuritypage.ui:306
msgctxt "optsecuritypage|nopasswordsave"
msgid ""
"Disabling the function to persistently store passwords deletes the list of passwords stored and resets the master password.\n"
@@ -17010,63 +17010,63 @@ msgid ""
msgstr ""
#. hwg3F
-#: cui/uiconfig/ui/optsecuritypage.ui:341
+#: cui/uiconfig/ui/optsecuritypage.ui:344
#, fuzzy
msgctxt "optsecuritypage|connections"
msgid "Connect_ions..."
msgstr "সংযোগ করছে..."
#. GLEjB
-#: cui/uiconfig/ui/optsecuritypage.ui:349
+#: cui/uiconfig/ui/optsecuritypage.ui:352
msgctxt "extended_tip|connections"
msgid "Asks for the master password. If master password is correct, shows the Stored Web Connection Information dialog."
msgstr "মাষ্টার গুপ্তসঙ্কেতের জন্য কোয়েরি করুন। মাষ্টার গুপ্তসঙ্কেত যদি সঠিক হয়, সংরক্ষিত ওয়েব সংযোগের তথ্য ডায়ালগ প্রদর্শন করে।"
#. SWrMn
-#: cui/uiconfig/ui/optsecuritypage.ui:371
+#: cui/uiconfig/ui/optsecuritypage.ui:374
msgctxt "optsecuritypage|masterpassword"
msgid "_Master Password..."
msgstr ""
#. w3TQo
-#: cui/uiconfig/ui/optsecuritypage.ui:379
+#: cui/uiconfig/ui/optsecuritypage.ui:382
msgctxt "extended_tip|masterpassword"
msgid "Opens the Enter Master Password dialog."
msgstr "মাষ্টার গুপ্তসঙ্কেত ডায়ালগ খোলে।"
#. UtNEn
-#: cui/uiconfig/ui/optsecuritypage.ui:406
+#: cui/uiconfig/ui/optsecuritypage.ui:409
msgctxt "optsecuritypage|label2"
msgid "Passwords for Web Connections"
msgstr ""
#. EYFvA
-#: cui/uiconfig/ui/optsecuritypage.ui:439
+#: cui/uiconfig/ui/optsecuritypage.ui:442
msgctxt "optsecuritypage|label4"
msgid "Adjust security related options and define warnings for hidden information in documents. "
msgstr ""
#. CBnzU
-#: cui/uiconfig/ui/optsecuritypage.ui:452
+#: cui/uiconfig/ui/optsecuritypage.ui:455
#, fuzzy
msgctxt "optsecuritypage|options"
msgid "O_ptions..."
msgstr "অপশন..."
#. pepKZ
-#: cui/uiconfig/ui/optsecuritypage.ui:460
+#: cui/uiconfig/ui/optsecuritypage.ui:463
msgctxt "extended_tip|options"
msgid "Opens the \"Security Options and Warnings\" dialog."
msgstr ""
#. GqVkJ
-#: cui/uiconfig/ui/optsecuritypage.ui:475
+#: cui/uiconfig/ui/optsecuritypage.ui:478
msgctxt "optsecuritypage|label1"
msgid "Security Options and Warnings"
msgstr ""
#. rwtuC
-#: cui/uiconfig/ui/optsecuritypage.ui:489
+#: cui/uiconfig/ui/optsecuritypage.ui:492
msgctxt "extended_tip|OptSecurityPage"
msgid "Defines the security options for saving documents, for web connections, and for opening documents that contain macros."
msgstr ""
@@ -20694,10 +20694,10 @@ msgctxt "specialcharacters|srchft"
msgid "Search:"
msgstr "অনুসন্ধান"
-#. eCjVg
+#. zPCZ7
#: cui/uiconfig/ui/specialcharacters.ui:166
msgctxt "specialcharacters|extended_tip|subsetlb"
-msgid "Select a Unicode category for the current font."
+msgid "Select a Unicode block for the current font."
msgstr ""
#. JPWW8
@@ -20732,19 +20732,19 @@ msgid "Maximum Limit: 16 Characters"
msgstr ""
#. ti8sG
-#: cui/uiconfig/ui/specialcharacters.ui:371
+#: cui/uiconfig/ui/specialcharacters.ui:374
msgctxt "specialcharacters|symboltext1"
msgid "Recent Characters:"
msgstr ""
#. LQZ7q
-#: cui/uiconfig/ui/specialcharacters.ui:605
+#: cui/uiconfig/ui/specialcharacters.ui:608
msgctxt "specialcharacters|favbtn|symboltext2"
msgid "Favorite Characters:"
msgstr ""
#. DhG6L
-#: cui/uiconfig/ui/specialcharacters.ui:903
+#: cui/uiconfig/ui/specialcharacters.ui:906
msgctxt "specialcharacters|extended_tip|SpecialCharactersDialog"
msgid "Allows a user to insert characters from the range of symbols found in the installed fonts."
msgstr ""
diff --git a/source/bn/filter/messages.po b/source/bn/filter/messages.po
index 151081aa53e..3d555d2869b 100644
--- a/source/bn/filter/messages.po
+++ b/source/bn/filter/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2022-01-31 18:19+0100\n"
+"POT-Creation-Date: 2022-06-15 22:28+0200\n"
"PO-Revision-Date: 2018-01-15 19:18+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1530,10 +1530,10 @@ msgctxt "pdfviewpage|fitvis"
msgid "Fit _visible"
msgstr ""
-#. FD8Pp
+#. EBBzj
#: filter/uiconfig/ui/pdfviewpage.ui:254
msgctxt "pdfviewpage|extended_tip|fitvis"
-msgid "Select to generate a PDF file that shows the text and graphics on the page zoomed to fit the width of the reader's window."
+msgid "Select to generate a PDF file that shows the text and graphics on the page zoomed to fit the reader's window."
msgstr ""
#. NGpWy
@@ -1942,10 +1942,10 @@ msgctxt "xmlfiltertabpagegeneral|extended_tip|filtername"
msgid "Enter the name that you want to display in the list box of the XML Filter Settings dialog."
msgstr ""
-#. Tbmcc
+#. D5aZP
#: filter/uiconfig/ui/xmlfiltertabpagegeneral.ui:119
msgctxt "xmlfiltertabpagegeneral|extended_tip|extension"
-msgid "Enter the file extension to use when you open a file without specifying a filter. The file extension to used to determine which filter to use."
+msgid "Enter the file extension to use when you open a file without specifying a filter. The file extension is used to determine which filter to use."
msgstr ""
#. fZvBA
diff --git a/source/bn/helpcontent2/source/text/scalc/01.po b/source/bn/helpcontent2/source/text/scalc/01.po
index be160e68ee0..c74efc0e69f 100644
--- a/source/bn/helpcontent2/source/text/scalc/01.po
+++ b/source/bn/helpcontent2/source/text/scalc/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2022-06-09 11:50+0200\n"
+"POT-Creation-Date: 2022-06-15 22:28+0200\n"
"PO-Revision-Date: 2019-08-08 17:28+0000\n"
"Last-Translator: serval2412 <serval2412@yahoo.fr>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -69028,13 +69028,13 @@ msgctxt ""
msgid "<emph>Group</emph>: sets the minimum (maximum) value based on the lower and higher values found in the group of sparklines."
msgstr ""
-#. E6s55
+#. NNez9
#: sparklines.xhp
msgctxt ""
"sparklines.xhp\n"
"par_id51654181442414\n"
"help.text"
-msgid "<emph>Custom:</emph> enter the minimum (maximum) value for the sparkline group."
+msgid "<emph>Custom</emph>: enter the minimum (maximum) value for the sparkline group. Enter the minimum (maximum) values or use the spin buttons."
msgstr ""
#. CNBDD
diff --git a/source/bn/helpcontent2/source/text/scalc/guide.po b/source/bn/helpcontent2/source/text/scalc/guide.po
index 2044fe9bcb9..b53331e79e0 100644
--- a/source/bn/helpcontent2/source/text/scalc/guide.po
+++ b/source/bn/helpcontent2/source/text/scalc/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2022-02-04 12:33+0100\n"
+"POT-Creation-Date: 2022-06-15 22:28+0200\n"
"PO-Revision-Date: 2018-11-14 11:51+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2275,14 +2275,14 @@ msgctxt ""
msgid "Copy, delete, move, or format a selection of currently visible cells."
msgstr "বর্তমান দৃশ্যমান কক্ষের একটি নির্বাচন অনুলিপি করুন, মুছে ফেলুন, সরিয়ে ফেলুন অথবা বিন্যাস করুন।"
-#. FEuz7
+#. VccAs
#: cellcopy.xhp
msgctxt ""
"cellcopy.xhp\n"
"par_id3154371\n"
"help.text"
-msgid "All cells of the selection, including the hidden cells, are copied, deleted, moved, or formatted."
-msgstr "লুকায়িত ঘর অন্তর্ভূক্ত করে নির্বাচনের সব ঘর অনুলিপি করা, মুছে ফেলা, সরিয়ে নেওয়া, অথবা বিন্যাস করা হয়েছে।"
+msgid "By default, all cells of the selection, including the hidden cells, are copied, deleted, moved, or formatted. Restrict the selection to visible rows choosing <menuitem>Edit - Select - Select Visible Rows Only</menuitem> or to visible columns choosing <menuitem>Edit - Select - Select Visible Columns Only</menuitem>."
+msgstr ""
#. rBtUY
#: cellreference_dragdrop.xhp
diff --git a/source/bn/helpcontent2/source/text/shared/00.po b/source/bn/helpcontent2/source/text/shared/00.po
index 51d47eaba6c..9dcaa075cab 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: 2022-06-09 11:50+0200\n"
+"POT-Creation-Date: 2022-06-15 22:28+0200\n"
"PO-Revision-Date: 2018-11-14 11:51+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -7963,13 +7963,22 @@ msgctxt ""
msgid "OLE Object"
msgstr "OLE অবজেক্ট"
-#. UFnGc
+#. 36hBn
+#: 00000404.xhp
+msgctxt ""
+"00000404.xhp\n"
+"par_id761566316165430\n"
+"help.text"
+msgid "Choose <menuitem>Insert - OLE Object - QR and Barcode</menuitem>."
+msgstr ""
+
+#. F9Wus
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
"par_id3150393\n"
"help.text"
-msgid "Choose <menuitem>Insert - OLE Object - Formula Object</menuitem>."
+msgid "<variable id=\"insert_formula\">Choose <menuitem>Insert - OLE Object - Formula Object</menuitem>.</variable>"
msgstr ""
#. kQdhV
@@ -15019,13 +15028,13 @@ msgctxt ""
msgid "<variable id=\"linkae\">Choose <menuitem>Edit - Links to External Files - Modify...</menuitem> (DDE links only).</variable>"
msgstr ""
-#. qo8gR
+#. bgzTi
#: edit_menu.xhp
msgctxt ""
"edit_menu.xhp\n"
"par_id3148927\n"
"help.text"
-msgid "Select a frame, then choose <menuitem>Edit - Object - Properties</menuitem>."
+msgid "Select a frame, then choose <menuitem>Edit - OLE Object - Properties</menuitem>."
msgstr ""
#. cDcix
@@ -15037,31 +15046,31 @@ msgctxt ""
msgid "Open context menu of selected frame, choose <menuitem>Properties</menuitem>."
msgstr ""
-#. jmnro
+#. 5TkgL
#: edit_menu.xhp
msgctxt ""
"edit_menu.xhp\n"
"par_id3149259\n"
"help.text"
-msgid "<variable id=\"edit1\">Choose <menuitem>Edit - Object</menuitem>.</variable>"
+msgid "<variable id=\"edit1\">Choose <menuitem>Edit - OLE Object</menuitem>.</variable>"
msgstr ""
-#. XAqNW
+#. ApejL
#: edit_menu.xhp
msgctxt ""
"edit_menu.xhp\n"
"par_id3154966\n"
"help.text"
-msgid "<variable id=\"edit2\">Choose <menuitem>Edit - Object - Edit</menuitem>, also in the context menu of selected object.</variable>"
+msgid "<variable id=\"edit2\">Choose <menuitem>Edit - OLE Object - Edit</menuitem>, also in the context menu of selected object.</variable>"
msgstr ""
-#. sA6YF
+#. 9Gp6Z
#: edit_menu.xhp
msgctxt ""
"edit_menu.xhp\n"
"par_id3149565\n"
"help.text"
-msgid "<variable id=\"edit3\">Choose <menuitem>Edit - Object - Open</menuitem>.</variable>"
+msgid "<variable id=\"edit3\">Choose <menuitem>Edit - OLE Object - Open</menuitem>.</variable>"
msgstr ""
#. kQifg
diff --git a/source/bn/helpcontent2/source/text/shared/01.po b/source/bn/helpcontent2/source/text/shared/01.po
index 080a57a5e59..ae4f7c5ed52 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: 2022-06-09 11:50+0200\n"
+"POT-Creation-Date: 2022-06-15 22:28+0200\n"
"PO-Revision-Date: 2018-11-14 11:51+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -11050,40 +11050,40 @@ msgctxt ""
msgid "<ahelp hid=\"sfx/ui/linkeditdialog/category\">Lists the section or object that the link refers to in the source file. If you want, you can enter a new section or object here.</ahelp>"
msgstr ""
-#. nWEMa
+#. 4FLU6
#: 02200000.xhp
msgctxt ""
"02200000.xhp\n"
"tit\n"
"help.text"
-msgid "Edit Object"
+msgid "OLE Object (Edit)"
msgstr ""
-#. nBCA7
+#. VrRPX
#: 02200000.xhp
msgctxt ""
"02200000.xhp\n"
"hd_id3146959\n"
"help.text"
-msgid "<link href=\"text/shared/01/02200000.xhp\" name=\"Object\">Edit Object</link>"
+msgid "<link href=\"text/shared/01/02200000.xhp\" name=\"Object\">OLE Object</link>"
msgstr ""
-#. 6bDqk
+#. QMGSE
#: 02200000.xhp
msgctxt ""
"02200000.xhp\n"
"par_id3154840\n"
"help.text"
-msgid "<variable id=\"object_text\"><ahelp hid=\".uno:ObjectMenue\">Lets you edit a selected object in your file that you inserted with the <item type=\"menuitem\">Insert - Object</item> command.</ahelp></variable>"
+msgid "<variable id=\"object_text\"><ahelp hid=\".uno:ObjectMenue\">Lets you edit a selected OLE object that you inserted from the <menuitem>Insert - OLE Object</menuitem> submenu.</ahelp></variable>"
msgstr ""
-#. YDqFE
+#. NWE46
#: 02200000.xhp
msgctxt ""
"02200000.xhp\n"
"par_id3153551\n"
"help.text"
-msgid "<link href=\"text/shared/01/04150000.xhp\" name=\"Insert - Object\">Insert - Object</link>"
+msgid "<embedvar href=\"text/shared/01/04150000.xhp#oleobjecth1\"/>"
msgstr ""
#. HB6iE
@@ -11122,13 +11122,13 @@ msgctxt ""
msgid "<link href=\"text/shared/01/02200100.xhp\" name=\"Edit\">Edit</link>"
msgstr ""
-#. MmR4v
+#. CP7mz
#: 02200100.xhp
msgctxt ""
"02200100.xhp\n"
"par_id3150008\n"
"help.text"
-msgid "<ahelp visibility=\"visible\" hid=\".\">Lets you edit a selected object in your file that you inserted with the <emph>Insert – Object</emph> command.</ahelp>"
+msgid "<ahelp visibility=\"visible\" hid=\".\">Lets you edit a selected OLE object that you inserted with the <menuitem>Insert – OLE Object</menuitem> command.</ahelp>"
msgstr ""
#. PXv8N
@@ -15469,13 +15469,13 @@ msgctxt ""
msgid "OLE Object (Insert Menu)"
msgstr ""
-#. hq7i8
+#. 9hJLy
#: 04150000.xhp
msgctxt ""
"04150000.xhp\n"
"hd_id3146873\n"
"help.text"
-msgid "<link href=\"text/shared/01/04150000.xhp\" name=\"Object\">OLE Object</link>"
+msgid "<variable id=\"oleobjecth1\"><link href=\"text/shared/01/04150000.xhp\" name=\"Object\">OLE Object</link></variable>"
msgstr ""
#. s2t34
diff --git a/source/bn/helpcontent2/source/text/shared/guide.po b/source/bn/helpcontent2/source/text/shared/guide.po
index 8b23ea46e3d..7f5fabc8596 100644
--- a/source/bn/helpcontent2/source/text/shared/guide.po
+++ b/source/bn/helpcontent2/source/text/shared/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2022-06-10 13:58+0200\n"
+"POT-Creation-Date: 2022-06-15 22:28+0200\n"
"PO-Revision-Date: 2019-08-08 17:29+0000\n"
"Last-Translator: serval2412 <serval2412@yahoo.fr>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2626,13 +2626,13 @@ msgctxt ""
msgid "<bookmark_value>custom;classification levels</bookmark_value> <bookmark_value>classification levels;customizing</bookmark_value>"
msgstr ""
-#. 3wmPg
+#. NfubP
#: classification.xhp
msgctxt ""
"classification.xhp\n"
"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 <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><menuitem> - LibreOffice - Paths - Classification</menuitem> into a local folder and edit the contents."
+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 <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><menuitem> - %PRODUCTNAME - Paths - Classification</menuitem> into a local folder and edit the contents."
msgstr ""
#. Tcss6
@@ -11482,14 +11482,14 @@ msgctxt ""
msgid "To edit the OLE object, double-click on it."
msgstr "OLE বস্তু সম্পাদনা করার জন্য এটিতে ডাবল-ক্লিক করুন।"
-#. FTF7g
+#. 8DbMH
#: dragdrop_table.xhp
msgctxt ""
"dragdrop_table.xhp\n"
"par_id3155389\n"
"help.text"
-msgid "Alternatively, select the object and choose <emph>Edit - Object - Edit</emph> or choose <emph>Edit</emph> from the context menu. You edit the object in its own frame within the text document, but you see the icons and menu commands needed for spreadsheets."
-msgstr "বিকল্প হিসেবে বিষয়বস্তু নির্বাচন করুন এবং <emph> সম্পাদনা করুন- বিষয়বস্তু- সম্পাদনা করুন</emph>পছন্দ করুন অথবা প্রসঙ্গ মেনু থেকে<emph> সম্পাদনা করুন</emph>পছন্দ করুন। আপনি টেক্সট নথির মধ্যে নিজস্ব ছকে বিষয়বস্তু সম্পাদনা করেন কিন্তু আপনি আইকন এবং স্প্রেডশীটের জন্য প্রয়োজনীয় মেনু র্নিদেশাবলী দেখতে পান।"
+msgid "Alternatively, select the object and choose <menuitem>Edit - OLE Object - Edit</menuitem> or choose <menuitem>Edit</menuitem> from the context menu. You edit the object in its own frame within the text document, but you see the icons and menu commands needed for spreadsheets."
+msgstr ""
#. uFCGU
#: dragdrop_table.xhp
@@ -22660,15 +22660,6 @@ msgctxt ""
msgid "The QR and Barcode generation feature allows you to encode any text string or URL as a barcode or a QR code and insert it as a graphical object in a document for scanning."
msgstr ""
-#. N32UF
-#: qrcode.xhp
-msgctxt ""
-"qrcode.xhp\n"
-"par_id761566316165430\n"
-"help.text"
-msgid "Choose <menuitem>Insert - Object - QR and Barcode</menuitem>."
-msgstr ""
-
#. UCeXG
#: qrcode.xhp
msgctxt ""
diff --git a/source/bn/helpcontent2/source/text/smath/guide.po b/source/bn/helpcontent2/source/text/smath/guide.po
index c9fce7ab911..a0ad9f5f929 100644
--- a/source/bn/helpcontent2/source/text/smath/guide.po
+++ b/source/bn/helpcontent2/source/text/smath/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2022-01-31 18:20+0100\n"
+"POT-Creation-Date: 2022-06-15 22:28+0200\n"
"PO-Revision-Date: 2017-05-09 16:53+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -835,14 +835,14 @@ msgctxt ""
msgid "Select the formula"
msgstr "সূত্রটি নির্বাচন করুন"
-#. bN6uQ
+#. F2ipo
#: keyboard.xhp
msgctxt ""
"keyboard.xhp\n"
"par_id3150213\n"
"help.text"
-msgid "Choose the command <emph>Insert - Object - Formula</emph>."
-msgstr "<emph>অন্তর্ভুক্ত - বস্তু - সূত্র</emph> কমান্ডটি নির্বাচন করুন।"
+msgid "Choose the command <menuitem>Insert - OLE Object - Formula Object</menuitem>."
+msgstr ""
#. aowxC
#: keyboard.xhp
@@ -853,14 +853,14 @@ msgctxt ""
msgid "Inserting a Formula using a Window"
msgstr "একটি উইন্ডো ব্যবহার করে সূত্র সন্নিবেশ করানো হচ্ছে"
-#. Tqx4F
+#. Jvobx
#: keyboard.xhp
msgctxt ""
"keyboard.xhp\n"
"par_id3149875\n"
"help.text"
-msgid "If you want to use the $[officename] Math interface to edit a formula, choose the command <emph>Insert - Object - Formula</emph> without any text selected."
-msgstr "আপনি যদি একটি সূত্র সম্পাদনা করতে $[officename] Math ইন্টারফেস ব্যবহার করতে চান, তাহলে কোন নির্বাচিত পাঠ্য ব্যতীত <emph> অন্তর্ভুক্ত - বস্তু- সূত্র</emph> কমান্ডটি নির্বাচন করুন।"
+msgid "If you want to use the $[officename] Math interface to edit a formula, choose the command <menuitem>Insert - OLE Object - Formula Object</menuitem> without any text selected."
+msgstr ""
#. sEBBM
#: keyboard.xhp
@@ -943,14 +943,14 @@ msgctxt ""
msgid "You want to insert a summation formula like \"summation of s^k from k = 0 to n\" at the cursor in a Writer text document."
msgstr "আপনি \"summation of s^k from k = 0 to n\" এর মত একটি যোগ করার সূত্র লেখনী পাঠ্য নথিতে বিদ্যমান একটি কারসারে অন্তর্ভুক্ত করতে চান।"
-#. 5oKcr
+#. kEJWp
#: limits.xhp
msgctxt ""
"limits.xhp\n"
"par_id8811304\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Insert - Object - Formula</item>."
-msgstr "<item type=\"menuitem\">অন্তর্ভুক্ত - বস্তু - সূত্র</item> নির্বাচন করুন।"
+msgid "<embedvar href=\"text/shared/00/00000404.xhp#insert_formula\"/>"
+msgstr ""
#. qAFch
#: limits.xhp
@@ -1033,14 +1033,14 @@ msgctxt ""
msgid "In the same way, you can enter an Integral formula with limits. When you click an icon from the Elements pane, the assigned text command is inserted in the input window. If you know the text commands, you can enter the commands directly in the input window."
msgstr ""
-#. q8yAH
+#. 57GSa
#: limits.xhp
msgctxt ""
"limits.xhp\n"
"par_id5866267\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Insert - Object - Formula</item>."
-msgstr "<item type=\"menuitem\">অন্তর্ভুক্ত - বস্তু - সূত্র</item> নির্বাচন করুন।"
+msgid "<embedvar href=\"text/shared/00/00000404.xhp#insert_formula\"/>"
+msgstr ""
#. VAoyi
#: limits.xhp
diff --git a/source/bn/helpcontent2/source/text/swriter/01.po b/source/bn/helpcontent2/source/text/swriter/01.po
index e680179adef..e5a8fefa215 100644
--- a/source/bn/helpcontent2/source/text/swriter/01.po
+++ b/source/bn/helpcontent2/source/text/swriter/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2022-06-09 11:50+0200\n"
+"POT-Creation-Date: 2022-06-15 22:28+0200\n"
"PO-Revision-Date: 2018-10-21 20:03+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -18169,22 +18169,22 @@ msgctxt ""
msgid "<emph>Right paragraph border:</emph> the object is positioned considering the width of the indent space available to the right of the paragraph."
msgstr ""
-#. UWViJ
+#. QrQHe
#: 05060100.xhp
msgctxt ""
"05060100.xhp\n"
"par_id171629211714933\n"
"help.text"
-msgid "<emph>Left page border:</emph> the object is positioned considering the space available between the left page border and the left paragraph border."
+msgid "<menuitem>Left of page text area</menuitem>: the object is positioned in the region between the left edge of the page and the left margin plus any left page padding."
msgstr ""
-#. F9qZf
+#. DzD2e
#: 05060100.xhp
msgctxt ""
"05060100.xhp\n"
"par_id131629211715280\n"
"help.text"
-msgid "<emph>Right page border:</emph> the object is positioned considering the space available between the right page border and the right paragraph border."
+msgid "<menuitem>Right of page text area</menuitem>: the object is positioned in the region between the right edge of the page and the right margin plus any right page padding."
msgstr ""
#. norkq
diff --git a/source/bn/helpcontent2/source/text/swriter/guide.po b/source/bn/helpcontent2/source/text/swriter/guide.po
index 32da03cb788..4219d238ed7 100644
--- a/source/bn/helpcontent2/source/text/swriter/guide.po
+++ b/source/bn/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2022-06-09 11:50+0200\n"
+"POT-Creation-Date: 2022-06-15 22:28+0200\n"
"PO-Revision-Date: 2018-11-12 13:18+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -43,13 +43,13 @@ msgctxt ""
msgid "<variable id=\"anchor_object\"><link href=\"text/swriter/guide/anchor_object.xhp\" name=\"Positioning Objects\">Positioning Objects</link></variable>"
msgstr "<variable id=\"anchor_object\"><link href=\"text/swriter/guide/anchor_object.xhp\" name=\"Positioning Objects\">বস্তুর অবস্থান নির্ধারণ করা হচ্ছে</link></variable>"
-#. MDGBe
+#. WBVDD
#: anchor_object.xhp
msgctxt ""
"anchor_object.xhp\n"
"par_id181634295881266\n"
"help.text"
-msgid "An object, such as an image or frame, is positioned within a document using anchors attached to other elements."
+msgid "An object, such as an image or frame, is positioned within a document using an anchor attached to another element."
msgstr ""
#. FAyRX
diff --git a/source/bn/svx/messages.po b/source/bn/svx/messages.po
index 3fa45a71036..461f73f3a53 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: 2022-06-09 11:50+0200\n"
+"POT-Creation-Date: 2022-06-15 22:28+0200\n"
"PO-Revision-Date: 2020-05-20 11:23+0000\n"
"Last-Translator: sophie <gautier.sophie@gmail.com>\n"
"Language-Team: Bengali <https://weblate.documentfoundation.org/projects/libo_ui-master/svxmessages/bn/>\n"
@@ -17440,13 +17440,13 @@ msgid "_Kern Character Pairs"
msgstr ""
#. 8SKCU
-#: svx/uiconfig/ui/fontworkgallerydialog.ui:18
+#: svx/uiconfig/ui/fontworkgallerydialog.ui:16
msgctxt "fontworkgallerydialog|FontworkGalleryDialog"
msgid "Fontwork Gallery"
msgstr ""
#. GB7pa
-#: svx/uiconfig/ui/fontworkgallerydialog.ui:101
+#: svx/uiconfig/ui/fontworkgallerydialog.ui:99
msgctxt "fontworkgallerydialog|label1"
msgid "Select a Fontwork style:"
msgstr ""
diff --git a/source/bn/sw/messages.po b/source/bn/sw/messages.po
index 6418332df39..7344746d6c4 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: 2022-06-09 11:51+0200\n"
+"POT-Creation-Date: 2022-06-15 22:29+0200\n"
"PO-Revision-Date: 2019-07-11 19:00+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -14554,11 +14554,11 @@ msgctxt "envprinterpage|setup"
msgid "Setup..."
msgstr ""
-#. jyNbK
+#. 4GuQN
#: sw/uiconfig/swriter/ui/envprinterpage.ui:467
msgctxt "envprinterpage|extended_tip|setup"
-msgid "Opens the Print Setup dialog where you can define additional printer settings, such as paper format and orientation."
-msgstr "মুদ্রণ সেটাপ ডায়ালগ খোলা হয় যেখানে আপনি অতিরিক্ত মুদ্রণ যন্ত্র সেটিং, যেমন কাগজ বিন্যাস এবং স্থিতিবিন্যাস উল্লেখ করতে পারেন।"
+msgid "Opens the Printer Setup dialog where you can define additional printer settings, such as paper format and orientation."
+msgstr ""
#. AKs6U
#: sw/uiconfig/swriter/ui/envprinterpage.ui:481
@@ -18138,11 +18138,11 @@ msgctxt "insertdbcolumnsdialog|extended_tip|tabledbcols"
msgid "Specifies the database columns to be inserted into the text table."
msgstr "টেক্সট সারণিতে সন্নিবেশযোগ্য ডাটাবেস কলাম উল্লেখ করে।"
-#. XmaQd
+#. xupgr
#: sw/uiconfig/swriter/ui/insertdbcolumnsdialog.ui:559
msgctxt "insertdbcolumnsdialog|extended_tip|tabletxtcols"
-msgid "Select the database columns that you want to insert it in the document."
-msgstr "নথিতে প্রবশের জন্য আপনার পছন্দসই ডাটাবেস কলাম নির্বাচন করুন।"
+msgid "Select the database columns that you want to insert in the document."
+msgstr ""
#. DJStE
#: sw/uiconfig/swriter/ui/insertdbcolumnsdialog.ui:623
@@ -18690,47 +18690,40 @@ msgctxt "labeldialog|extended_tip|ok"
msgid "Creates a new document for editing."
msgstr ""
-#. EtFBT
-#: sw/uiconfig/swriter/ui/labeldialog.ui:141
-#, fuzzy
-msgctxt "labeldialog|medium"
-msgid "Medium"
-msgstr "মধ্যম"
-
#. hJSCq
-#: sw/uiconfig/swriter/ui/labeldialog.ui:188
+#: sw/uiconfig/swriter/ui/labeldialog.ui:144
#, fuzzy
msgctxt "labeldialog|labels"
msgid "Labels"
msgstr "স্তর"
#. G378Z
-#: sw/uiconfig/swriter/ui/labeldialog.ui:236
+#: sw/uiconfig/swriter/ui/labeldialog.ui:192
msgctxt "labeldialog|private"
msgid "Private"
msgstr "ব্যক্তিগত"
#. CAEMT
-#: sw/uiconfig/swriter/ui/labeldialog.ui:284
+#: sw/uiconfig/swriter/ui/labeldialog.ui:240
msgctxt "labeldialog|business"
msgid "Business"
msgstr "ব্যবসা"
#. a7BSb
-#: sw/uiconfig/swriter/ui/labeldialog.ui:332
+#: sw/uiconfig/swriter/ui/labeldialog.ui:288
#, fuzzy
msgctxt "labeldialog|format"
msgid "Format"
msgstr "বিন্যাস"
#. cs8CW
-#: sw/uiconfig/swriter/ui/labeldialog.ui:380
+#: sw/uiconfig/swriter/ui/labeldialog.ui:336
msgctxt "labeldialog|options"
msgid "Options"
msgstr "অপশন"
#. uB6wE
-#: sw/uiconfig/swriter/ui/labeldialog.ui:407
+#: sw/uiconfig/swriter/ui/labeldialog.ui:363
msgctxt "labeldialog|extended_tip|LabelDialog"
msgid "Allows you to create labels. Labels are created in a text document."
msgstr ""
@@ -21009,26 +21002,32 @@ msgctxt "mmselectpage|extended_tip|browsetemplate"
msgid "Opens a template selector dialog."
msgstr ""
-#. qieQK
+#. EDivp
#: sw/uiconfig/swriter/ui/mmselectpage.ui:191
-msgctxt "mmselectpage|extended_tip|datasourcewarning"
+msgctxt "mmselectpage|datasourcewarning"
msgid "Data source of the current document is not registered. Please exchange database."
msgstr ""
-#. QcsgV
+#. NGYGa
#: sw/uiconfig/swriter/ui/mmselectpage.ui:200
+msgctxt "mmselectpage|exchangedatabase"
+msgid "Exchange Databases..."
+msgstr ""
+
+#. YjZmM
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:208
msgctxt "mmselectpage|extended_tip|exchangedatabase"
-msgid "Exchange Database..."
+msgid "Click to exchange the databases of your mail merge."
msgstr ""
#. 8ESAz
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:218
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:223
msgctxt "mmselectpage|label1"
msgid "Select Starting Document for the Mail Merge"
msgstr ""
#. Hpca5
-#: sw/uiconfig/swriter/ui/mmselectpage.ui:233
+#: sw/uiconfig/swriter/ui/mmselectpage.ui:238
msgctxt "mmselectpage|extended_tip|MMSelectPage"
msgid "Specify the document that you want to use as a base for the mail merge document."
msgstr ""
@@ -23237,50 +23236,50 @@ msgid "OLE Object"
msgstr ""
#. eRTnb
-#: sw/uiconfig/swriter/ui/objectdialog.ui:109
+#: sw/uiconfig/swriter/ui/objectdialog.ui:110
msgctxt "objectdialog|type"
msgid "Position and Size"
msgstr ""
#. ADJiB
-#: sw/uiconfig/swriter/ui/objectdialog.ui:132
+#: sw/uiconfig/swriter/ui/objectdialog.ui:133
msgctxt "objectdialog|options"
msgid "Options"
msgstr "অপশন"
#. s9Kta
-#: sw/uiconfig/swriter/ui/objectdialog.ui:156
+#: sw/uiconfig/swriter/ui/objectdialog.ui:157
#, fuzzy
msgctxt "objectdialog|wrap"
msgid "Wrap"
msgstr "মোড়ানো (~W)"
#. vtCHo
-#: sw/uiconfig/swriter/ui/objectdialog.ui:180
+#: sw/uiconfig/swriter/ui/objectdialog.ui:181
msgctxt "objectdialog|hyperlink"
msgid "Hyperlink"
msgstr "হাইপারলিংক"
#. GquSU
-#: sw/uiconfig/swriter/ui/objectdialog.ui:204
+#: sw/uiconfig/swriter/ui/objectdialog.ui:205
msgctxt "objectdialog|borders"
msgid "Borders"
msgstr "সীমানা"
#. L6dGA
-#: sw/uiconfig/swriter/ui/objectdialog.ui:228
+#: sw/uiconfig/swriter/ui/objectdialog.ui:229
msgctxt "objectdialog|area"
msgid "Area"
msgstr "এলাকা"
#. zJ76x
-#: sw/uiconfig/swriter/ui/objectdialog.ui:252
+#: sw/uiconfig/swriter/ui/objectdialog.ui:253
msgctxt "objectdialog|transparence"
msgid "Transparency"
msgstr "স্বচ্ছতা"
#. FVDe9
-#: sw/uiconfig/swriter/ui/objectdialog.ui:276
+#: sw/uiconfig/swriter/ui/objectdialog.ui:277
msgctxt "objectdialog|macro"
msgid "Macro"
msgstr "ম্যাক্রো"
@@ -26074,10 +26073,10 @@ msgctxt "printoptionspage|background"
msgid "Page ba_ckground"
msgstr "পৃষ্ঠার পটভূমি (~c)"
-#. ocn5F
+#. DAfze
#: sw/uiconfig/swriter/ui/printoptionspage.ui:80
-msgctxt "extended_tip|background"
-msgid "Specifies whether to include colors and objects that are inserted to the background of the page (Format - Page - Background) in the printed document."
+msgctxt "printoptionspage|extended_tip|background"
+msgid "Specifies whether to include colors and objects that are inserted to the background of the page style (Format - Page Style - Area) in the printed document."
msgstr ""
#. FWBUe
@@ -26189,10 +26188,10 @@ msgctxt "printoptionspage|none"
msgid "_None"
msgstr "নোট"
-#. CDv8b
+#. d4YMs
#: sw/uiconfig/swriter/ui/printoptionspage.ui:298
-msgctxt "extended_tip|none"
-msgid "Specifies whether comments in your document are printed."
+msgctxt "printoptionspage|extended_tip|none"
+msgid "Do not print document comments."
msgstr ""
#. 6vPTt
@@ -26202,10 +26201,10 @@ msgctxt "printoptionspage|only"
msgid "Comments _only"
msgstr "শুধু মন্তব্য"
-#. KsL3A
+#. aBf74
#: sw/uiconfig/swriter/ui/printoptionspage.ui:318
-msgctxt "extended_tip|only"
-msgid "Specifies whether comments in your document are printed."
+msgctxt "printoptionspage|extended_tip|only"
+msgid "Only print the comments of your document."
msgstr ""
#. n5M2U
@@ -26215,10 +26214,10 @@ msgctxt "printoptionspage|end"
msgid "End of docu_ment"
msgstr "নথির শেষ (~m)"
-#. VxM7F
+#. LgZCr
#: sw/uiconfig/swriter/ui/printoptionspage.ui:338
-msgctxt "extended_tip|end"
-msgid "Specifies whether comments in your document are printed."
+msgctxt "printoptionspage|extended_tip|end"
+msgid "Print comments on a new page at end of the document."
msgstr ""
#. pRqdi
@@ -26228,10 +26227,10 @@ msgctxt "printoptionspage|endpage"
msgid "_End of page"
msgstr "পৃষ্ঠার শেষে (~o)"
-#. hxM9Z
+#. c2JD2
#: sw/uiconfig/swriter/ui/printoptionspage.ui:358
msgctxt "extended_tip|endpage"
-msgid "Specifies whether comments in your document are printed."
+msgid "Print comments on a new page after the current page."
msgstr ""
#. oBR83
@@ -26240,10 +26239,10 @@ msgctxt "printoptionspage|inmargins"
msgid "In margins"
msgstr ""
-#. 7aAXX
+#. HTtDH
#: sw/uiconfig/swriter/ui/printoptionspage.ui:378
-msgctxt "extended_tip|inmargins"
-msgid "Specifies whether comments in your document are printed."
+msgctxt "printoptionspage|extended_tip|inmargins"
+msgid "Include the comments boxes on the margin of the page. The page contents is rendered to fit both contents and the comments boxes."
msgstr ""
#. VeG6V
@@ -29219,11 +29218,11 @@ msgctxt "textgridpage|labelFT_RUBYSIZE"
msgid "Max. Ruby text size:"
msgstr ""
-#. FxPwc
+#. hHaUA
#: sw/uiconfig/swriter/ui/textgridpage.ui:363
msgctxt "textgridpage|extended_tip|spinMF_RUBYSIZE"
-msgid "Enter the font size for the Ruby text."
-msgstr "রুবি পাঠ্যের জন্য ফন্টের আকার সন্নিবেশ করুন।"
+msgid "Enter the maximum font size for the Ruby text."
+msgstr ""
#. FJFVs
#: sw/uiconfig/swriter/ui/textgridpage.ui:377
@@ -30420,11 +30419,11 @@ msgctxt "tocindexpage|casesens"
msgid "Case sensitive"
msgstr ""
-#. rAwSj
+#. sNHCm
#: sw/uiconfig/swriter/ui/tocindexpage.ui:1003
msgctxt "tocindexpage|extended_tip|casesens"
-msgid "Distinguishes between uppercase and lowercase letters in identical index entries. For Asian languages special handling applies."
-msgstr "Distinguishes between uppercase and lowercase letters in identical index entries. For Asian languages special handling applies."
+msgid "Distinguishes between uppercase and lowercase letters in otherwise identical index entries. For Asian languages special handling applies."
+msgstr ""
#. e35vc
#: sw/uiconfig/swriter/ui/tocindexpage.ui:1014
diff --git a/source/bo/cui/messages.po b/source/bo/cui/messages.po
index 9882be9cef5..1644cd5f82d 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: 2022-06-10 13:57+0200\n"
+"POT-Creation-Date: 2022-06-15 22:27+0200\n"
"PO-Revision-Date: 2020-10-31 11:35+0000\n"
"Last-Translator: Christian Lohmaier <cloph@documentfoundation.org>\n"
"Language-Team: Tibetan <https://weblate.documentfoundation.org/projects/libo_ui-master/cuimessages/bo/>\n"
@@ -3155,10 +3155,10 @@ msgctxt "RID_CUI_TIPOFTHEDAY"
msgid "Need custom contents for metadata properties? File ▸ Properties ▸ Custom Properties tab lets you create what you want."
msgstr ""
-#. 9TnEA
+#. beSc7
#: cui/inc/tipoftheday.hrc:208
msgctxt "RID_CUI_TIPOFTHEDAY"
-msgid "Want to see, but not print, an object in Draw? Draw it on a layer for which the “Printable” flag is not set (right click on the tab and “Modify Layer”)."
+msgid "Want to see, but not print, an object in Draw? Draw it on a layer for which the “Printable” flag is not set (right-click the layer’s tab and choose “Modify Layer”)."
msgstr ""
#. CGQaY
@@ -5001,25 +5001,25 @@ msgid "[M]: Replace while modifying existing text"
msgstr ""
#. FtXg9
-#: cui/uiconfig/ui/applyautofmtpage.ui:90
+#: cui/uiconfig/ui/applyautofmtpage.ui:93
msgctxt "applyautofmtpage|label2"
msgid "[T]: AutoCorrect while typing"
msgstr ""
#. NujUD
-#: cui/uiconfig/ui/applyautofmtpage.ui:136
+#: cui/uiconfig/ui/applyautofmtpage.ui:142
msgctxt "applyautofmtpage|m"
msgid "[M]"
msgstr ""
#. qanx6
-#: cui/uiconfig/ui/applyautofmtpage.ui:158
+#: cui/uiconfig/ui/applyautofmtpage.ui:164
msgctxt "applyautofmtpage|t"
msgid "[T]"
msgstr ""
#. 2tG6L
-#: cui/uiconfig/ui/applyautofmtpage.ui:205
+#: cui/uiconfig/ui/applyautofmtpage.ui:211
msgctxt "applyautofmtpage|extended_tip|ApplyAutoFmtPage"
msgid "Select the options for automatically correcting errors as you type, and then click OK."
msgstr ""
@@ -8489,11 +8489,11 @@ msgctxt "dimensionlinestabpage|TSB_PARALLEL"
msgid "_Parallel to line"
msgstr ""
-#. gZdFr
+#. CCTEb
#: cui/uiconfig/ui/dimensionlinestabpage.ui:440
msgctxt "dimensionlinestabpage|extended_tip|TSB_PARALLEL"
-msgid "Displays the text parallel to or at 90 degrees to the dimension line."
-msgstr "ཚད་ངེས་ཐིག་དང་མཉམ་གཤིབ་བམ་དྲང་འཕྱང་དུ་ཡི་གེ་མངོན་པ་"
+msgid "If enabled, displays the text parallel to the dimension line. If disabled, the text is shown at 90 degrees to the dimension line."
+msgstr ""
#. QNscD
#: cui/uiconfig/ui/dimensionlinestabpage.ui:452
@@ -8501,11 +8501,11 @@ msgctxt "dimensionlinestabpage|TSB_SHOW_UNIT"
msgid "Show _measurement units"
msgstr ""
-#. cJRA9
+#. KQGtM
#: cui/uiconfig/ui/dimensionlinestabpage.ui:461
msgctxt "dimensionlinestabpage|extended_tip|TSB_SHOW_UNIT"
-msgid "Shows or hides the dimension measurement units. You can also select a measurement unit you want to display from the list."
-msgstr "ཁྲེ་ཚུན་གྱི་འཇལ་ཚད་མངོན་པའམ་གབ་པ་རེའུ་འགོད་ཀྱི་ནང་ནས་ཀྱང་མངོན་དགོས་རྒྱུའི་འཇལ་ཚད་གདེམས་ཆོག་གོ་"
+msgid "Shows or hides the dimension measurement unit. You can select a measurement unit you want to display from the list."
+msgstr ""
#. EEaqi
#: cui/uiconfig/ui/dimensionlinestabpage.ui:479
@@ -10577,10 +10577,10 @@ msgctxt "hangulhanjaoptdialog|extended_tip|delete"
msgid "Deletes the selected user-defined dictionary."
msgstr ""
-#. v7Bkk
+#. eG9Qx
#: cui/uiconfig/ui/hangulhanjaoptdialog.ui:231
msgctxt "hangulhanjaoptdialog|extended_tip|dicts"
-msgid "Lists all user-defined dictionaries. Select the check box next to the dictionary that you want to use. Clear the check box next to the dictionary that you do not want to use."
+msgid "Lists all user-defined dictionaries. Select the check box next to the dictionaries that you want to use. Clear the check box next to the dictionaries that you do not want to use."
msgstr ""
#. DmfuX
@@ -10975,19 +10975,19 @@ msgid "Opens the Assign Macro dialog, in which you can give events such as \"mou
msgstr ""
#. TXrCH
-#: cui/uiconfig/ui/hyperlinkdocpage.ui:399
+#: cui/uiconfig/ui/hyperlinkdocpage.ui:391
msgctxt "hyperlinkdocpage|extended_tip|frame"
msgid "Enter the name of the frame that you want the linked file to open in, or select a predefined frame from the list. If you leave this box blank, the linked file opens in the current browser window."
msgstr ""
#. frjow
-#: cui/uiconfig/ui/hyperlinkdocpage.ui:420
+#: cui/uiconfig/ui/hyperlinkdocpage.ui:412
msgctxt "hyperlinkdocpage|label1"
msgid "Further Settings"
msgstr ""
#. 789Vi
-#: cui/uiconfig/ui/hyperlinkdocpage.ui:435
+#: cui/uiconfig/ui/hyperlinkdocpage.ui:427
msgctxt "hyperlinkdocpage|extended_tip|HyperlinkDocPage"
msgid "Hyperlinks to any document or targets in documents can be edited using the Document tab from the Hyperlink dialog."
msgstr ""
@@ -11134,19 +11134,19 @@ msgid "Opens the Assign Macro dialog, in which you can give events such as \"mou
msgstr ""
#. C5Hqs
-#: cui/uiconfig/ui/hyperlinkinternetpage.ui:409
+#: cui/uiconfig/ui/hyperlinkinternetpage.ui:401
msgctxt "hyperlinkinternetpage|extended_tip|frame"
msgid "Enter the name of the frame that you want the linked file to open in, or select a predefined frame from the list. If you leave this box blank, the linked file opens in the current browser window."
msgstr ""
#. UKQMX
-#: cui/uiconfig/ui/hyperlinkinternetpage.ui:430
+#: cui/uiconfig/ui/hyperlinkinternetpage.ui:422
msgctxt "hyperlinkinternetpage|label1"
msgid "Further Settings"
msgstr ""
#. 8UdTe
-#: cui/uiconfig/ui/hyperlinkinternetpage.ui:445
+#: cui/uiconfig/ui/hyperlinkinternetpage.ui:437
msgctxt "hyperlinkinternetpage|extended_tip|HyperlinkInternetPage"
msgid "Use the Internet page of the Hyperlink dialog to edit hyperlinks with WWW or FTP addresses."
msgstr ""
@@ -11252,19 +11252,19 @@ msgid "Opens the Assign Macro dialog, in which you can give events such as \"mou
msgstr ""
#. CwHdi
-#: cui/uiconfig/ui/hyperlinkmailpage.ui:324
+#: cui/uiconfig/ui/hyperlinkmailpage.ui:316
msgctxt "hyperlinkmailpage|extended_tip|frame"
msgid "Enter the name of the frame that you want the linked file to open in, or select a predefined frame from the list. If you leave this box blank, the linked file opens in the current browser window."
msgstr ""
#. BmHDh
-#: cui/uiconfig/ui/hyperlinkmailpage.ui:345
+#: cui/uiconfig/ui/hyperlinkmailpage.ui:337
msgctxt "hyperlinkmailpage|label1"
msgid "Further Settings"
msgstr ""
#. SvyDu
-#: cui/uiconfig/ui/hyperlinkmailpage.ui:360
+#: cui/uiconfig/ui/hyperlinkmailpage.ui:352
msgctxt "hyperlinkmailpage|extended_tip|HyperlinkMailPage"
msgid "On the Mail page in the Hyperlink dialog you can edit hyperlinks for email addresses."
msgstr ""
@@ -11433,19 +11433,19 @@ msgid "Opens the Assign Macro dialog, in which you can give events such as \"mou
msgstr ""
#. rXaNm
-#: cui/uiconfig/ui/hyperlinknewdocpage.ui:408
+#: cui/uiconfig/ui/hyperlinknewdocpage.ui:400
msgctxt "hyperlinknewdocpage|extended_tip|frame"
msgid "Enter the name of the frame that you want the linked file to open in, or select a predefined frame from the list. If you leave this box blank, the linked file opens in the current browser window."
msgstr ""
#. MS2Cn
-#: cui/uiconfig/ui/hyperlinknewdocpage.ui:429
+#: cui/uiconfig/ui/hyperlinknewdocpage.ui:421
msgctxt "hyperlinknewdocpage|label1"
msgid "Further Settings"
msgstr ""
#. ztAbs
-#: cui/uiconfig/ui/hyperlinknewdocpage.ui:444
+#: cui/uiconfig/ui/hyperlinknewdocpage.ui:436
msgctxt "hyperlinknewdocpage|extended_tip|HyperlinkNewDocPage"
msgid "Use the New Document tab from the Hyperlink dialog to set up a hyperlink to a new document and create the new document simultaneously."
msgstr ""
@@ -12225,10 +12225,10 @@ msgctxt "langtoolconfigpage|base"
msgid "Base URL:"
msgstr ""
-#. 9to2D
+#. z58D6
#: cui/uiconfig/ui/langtoolconfigpage.ui:111
msgctxt "langtoolconfigpage|usernamelbl"
-msgid "User name:"
+msgid "Username:"
msgstr ""
#. B8kMr
@@ -12237,32 +12237,32 @@ msgctxt "langtoolconfigpage|apikeylbl"
msgid "API key:"
msgstr ""
-#. AoT7Z
+#. LBMkb
#: cui/uiconfig/ui/langtoolconfigpage.ui:159
msgctxt "langtoolconfigpage|urldesc"
-msgid "Please use the base URL e.g. without \"/check\" at the end."
+msgid "Please use the base URL, i.e., without “/check”, at the end."
msgstr ""
-#. EDETM
-#: cui/uiconfig/ui/langtoolconfigpage.ui:171
+#. 77oav
+#: cui/uiconfig/ui/langtoolconfigpage.ui:174
msgctxt "langtoolconfigpage|usernamedesc"
-msgid "Your LanguageTool account's username for premium usage."
+msgid "Your LanguageTool account’s username for premium usage."
msgstr ""
-#. aDGJf
-#: cui/uiconfig/ui/langtoolconfigpage.ui:183
+#. tGuAh
+#: cui/uiconfig/ui/langtoolconfigpage.ui:189
msgctxt "langtoolconfigpage|apikeydesc"
-msgid "Your LanguageTool account's api key for premium usage."
+msgid "Your LanguageTool account’s API key for premium usage."
msgstr ""
#. Dn8bb
-#: cui/uiconfig/ui/langtoolconfigpage.ui:206
+#: cui/uiconfig/ui/langtoolconfigpage.ui:215
msgctxt "langtoolconfigpage|apisettingsheader"
msgid "API Settings"
msgstr ""
#. Ntss5
-#: cui/uiconfig/ui/langtoolconfigpage.ui:225
+#: cui/uiconfig/ui/langtoolconfigpage.ui:234
msgctxt "langtoolconfigpage|langtoolsettings"
msgid "LanguageTool API Options"
msgstr ""
@@ -14877,75 +14877,75 @@ msgstr ""
#. PiDB7
#. The [S] here is repeated as the column title for the "Save" column of this options page
-#: cui/uiconfig/ui/optfltrembedpage.ui:163
+#: cui/uiconfig/ui/optfltrembedpage.ui:166
msgctxt "optfltrembedpage|label3"
msgid "[S]: Convert and save the object"
msgstr ""
#. f2hGQ
-#: cui/uiconfig/ui/optfltrembedpage.ui:185
+#: cui/uiconfig/ui/optfltrembedpage.ui:191
msgctxt "optfltrembedpage|label1"
msgid "Embedded Objects"
msgstr ""
#. nvE89
-#: cui/uiconfig/ui/optfltrembedpage.ui:215
+#: cui/uiconfig/ui/optfltrembedpage.ui:221
msgctxt "optfltrembedpage|label5"
msgid "Export as:"
msgstr ""
#. FEeH6
-#: cui/uiconfig/ui/optfltrembedpage.ui:230
+#: cui/uiconfig/ui/optfltrembedpage.ui:236
#, fuzzy
msgctxt "optfltrembedpage|highlighting"
msgid "Highlighting"
msgstr "ཡིག་རྟགས་ཀྱི་རྒྱབ་ལྗོངས།"
#. qBuyX
-#: cui/uiconfig/ui/optfltrembedpage.ui:239
+#: cui/uiconfig/ui/optfltrembedpage.ui:245
msgctxt "extended_tip|highlighting"
msgid "Microsoft Office has two character attributes similar to Writer character background. Select the appropriate attribute (highlighting or shading) which you would like to use during export to Microsoft Office file formats."
msgstr ""
#. Dnrx7
-#: cui/uiconfig/ui/optfltrembedpage.ui:251
+#: cui/uiconfig/ui/optfltrembedpage.ui:257
#, fuzzy
msgctxt "optfltrembedpage|shading"
msgid "Shading"
msgstr "གསལ་བ།"
#. 3PFE2
-#: cui/uiconfig/ui/optfltrembedpage.ui:260
+#: cui/uiconfig/ui/optfltrembedpage.ui:266
msgctxt "extended_tip|shading"
msgid "Microsoft Office has two character attributes similar to Writer character background. Select the appropriate attribute (highlighting or shading) which you would like to use during export to Microsoft Office file formats."
msgstr ""
#. gKwdG
-#: cui/uiconfig/ui/optfltrembedpage.ui:283
+#: cui/uiconfig/ui/optfltrembedpage.ui:289
msgctxt "optfltrembedpage|label4"
msgid "Character Highlighting"
msgstr ""
#. tyACF
-#: cui/uiconfig/ui/optfltrembedpage.ui:310
+#: cui/uiconfig/ui/optfltrembedpage.ui:316
msgctxt "optfltrembedpage|mso_lockfile"
msgid "Create MSO lock file"
msgstr ""
#. qc4GD
-#: cui/uiconfig/ui/optfltrembedpage.ui:319
+#: cui/uiconfig/ui/optfltrembedpage.ui:325
msgctxt "extended_tip|mso_lockfile"
msgid "Mark this checkbox to generate a Microsoft Office lock file in addition to this office suite's own lock file."
msgstr ""
#. Sg5Bw
-#: cui/uiconfig/ui/optfltrembedpage.ui:335
+#: cui/uiconfig/ui/optfltrembedpage.ui:341
msgctxt "optfltrembedpage|label5"
msgid "Lock Files"
msgstr ""
#. EUBnP
-#: cui/uiconfig/ui/optfltrembedpage.ui:349
+#: cui/uiconfig/ui/optfltrembedpage.ui:355
msgctxt "extended_tip|OptFilterPage"
msgid "Specifies the settings for importing and exporting Microsoft Office and other documents."
msgstr ""
@@ -15220,11 +15220,11 @@ msgctxt "optgeneralpage|exthelp"
msgid "_Extended tips"
msgstr "གསལ་བཤད་རྩོམ་ཡིག"
-#. ypuz2
+#. TyqBV
#: cui/uiconfig/ui/optgeneralpage.ui:42
msgctxt "extended_tip | exthelp"
-msgid "Displays a help text when you rest the cursor on an icon, a menu command, or a control on a dialog."
-msgstr "འོད་རྟགས་ཉིད་རིས་རྟགས་དང་ཚལ་ཐོའི་བཀའ་ཚིག་གམ་གླེང་སྒྲོམ་གྱི་ཚོད་ཆས་ཐོག་འཇོག་པའི་སྐབས་སྟབས་བདེའི་རོགས་རམ་ཡི་གེ་མངོན། "
+msgid "Displays a help text when you rest the mouse pointer on an icon, a menu command, or a control on a dialog."
+msgstr ""
#. Cbeuc
#: cui/uiconfig/ui/optgeneralpage.ui:53
@@ -16954,7 +16954,7 @@ msgid "Passwords are protected by a master password. You will be asked to enter
msgstr ""
#. 7gzb7
-#: cui/uiconfig/ui/optsecuritypage.ui:303
+#: cui/uiconfig/ui/optsecuritypage.ui:306
msgctxt "optsecuritypage|nopasswordsave"
msgid ""
"Disabling the function to persistently store passwords deletes the list of passwords stored and resets the master password.\n"
@@ -16963,63 +16963,63 @@ msgid ""
msgstr ""
#. hwg3F
-#: cui/uiconfig/ui/optsecuritypage.ui:341
+#: cui/uiconfig/ui/optsecuritypage.ui:344
#, fuzzy
msgctxt "optsecuritypage|connections"
msgid "Connect_ions..."
msgstr "འབྲེལ་མཐུད་བྱེད་བཞིན་ཡོད།..."
#. GLEjB
-#: cui/uiconfig/ui/optsecuritypage.ui:349
+#: cui/uiconfig/ui/optsecuritypage.ui:352
msgctxt "extended_tip|connections"
msgid "Asks for the master password. If master password is correct, shows the Stored Web Connection Information dialog."
msgstr ""
#. SWrMn
-#: cui/uiconfig/ui/optsecuritypage.ui:371
+#: cui/uiconfig/ui/optsecuritypage.ui:374
msgctxt "optsecuritypage|masterpassword"
msgid "_Master Password..."
msgstr ""
#. w3TQo
-#: cui/uiconfig/ui/optsecuritypage.ui:379
+#: cui/uiconfig/ui/optsecuritypage.ui:382
msgctxt "extended_tip|masterpassword"
msgid "Opens the Enter Master Password dialog."
msgstr ""
#. UtNEn
-#: cui/uiconfig/ui/optsecuritypage.ui:406
+#: cui/uiconfig/ui/optsecuritypage.ui:409
msgctxt "optsecuritypage|label2"
msgid "Passwords for Web Connections"
msgstr ""
#. EYFvA
-#: cui/uiconfig/ui/optsecuritypage.ui:439
+#: cui/uiconfig/ui/optsecuritypage.ui:442
msgctxt "optsecuritypage|label4"
msgid "Adjust security related options and define warnings for hidden information in documents. "
msgstr ""
#. CBnzU
-#: cui/uiconfig/ui/optsecuritypage.ui:452
+#: cui/uiconfig/ui/optsecuritypage.ui:455
#, fuzzy
msgctxt "optsecuritypage|options"
msgid "O_ptions..."
msgstr "འདེམས་གཞི།(~O)..."
#. pepKZ
-#: cui/uiconfig/ui/optsecuritypage.ui:460
+#: cui/uiconfig/ui/optsecuritypage.ui:463
msgctxt "extended_tip|options"
msgid "Opens the \"Security Options and Warnings\" dialog."
msgstr ""
#. GqVkJ
-#: cui/uiconfig/ui/optsecuritypage.ui:475
+#: cui/uiconfig/ui/optsecuritypage.ui:478
msgctxt "optsecuritypage|label1"
msgid "Security Options and Warnings"
msgstr ""
#. rwtuC
-#: cui/uiconfig/ui/optsecuritypage.ui:489
+#: cui/uiconfig/ui/optsecuritypage.ui:492
msgctxt "extended_tip|OptSecurityPage"
msgid "Defines the security options for saving documents, for web connections, and for opening documents that contain macros."
msgstr ""
@@ -20642,10 +20642,10 @@ msgctxt "specialcharacters|srchft"
msgid "Search:"
msgstr "འཚོལ་བ།"
-#. eCjVg
+#. zPCZ7
#: cui/uiconfig/ui/specialcharacters.ui:166
msgctxt "specialcharacters|extended_tip|subsetlb"
-msgid "Select a Unicode category for the current font."
+msgid "Select a Unicode block for the current font."
msgstr ""
#. JPWW8
@@ -20680,19 +20680,19 @@ msgid "Maximum Limit: 16 Characters"
msgstr ""
#. ti8sG
-#: cui/uiconfig/ui/specialcharacters.ui:371
+#: cui/uiconfig/ui/specialcharacters.ui:374
msgctxt "specialcharacters|symboltext1"
msgid "Recent Characters:"
msgstr ""
#. LQZ7q
-#: cui/uiconfig/ui/specialcharacters.ui:605
+#: cui/uiconfig/ui/specialcharacters.ui:608
msgctxt "specialcharacters|favbtn|symboltext2"
msgid "Favorite Characters:"
msgstr ""
#. DhG6L
-#: cui/uiconfig/ui/specialcharacters.ui:903
+#: cui/uiconfig/ui/specialcharacters.ui:906
msgctxt "specialcharacters|extended_tip|SpecialCharactersDialog"
msgid "Allows a user to insert characters from the range of symbols found in the installed fonts."
msgstr ""
diff --git a/source/bo/filter/messages.po b/source/bo/filter/messages.po
index 1f3cd6909f3..1ceed4852dc 100644
--- a/source/bo/filter/messages.po
+++ b/source/bo/filter/messages.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2022-01-31 18:19+0100\n"
+"POT-Creation-Date: 2022-06-15 22:28+0200\n"
"PO-Revision-Date: 2018-01-15 19:19+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1532,10 +1532,10 @@ msgctxt "pdfviewpage|fitvis"
msgid "Fit _visible"
msgstr ""
-#. FD8Pp
+#. EBBzj
#: filter/uiconfig/ui/pdfviewpage.ui:254
msgctxt "pdfviewpage|extended_tip|fitvis"
-msgid "Select to generate a PDF file that shows the text and graphics on the page zoomed to fit the width of the reader's window."
+msgid "Select to generate a PDF file that shows the text and graphics on the page zoomed to fit the reader's window."
msgstr ""
#. NGpWy
@@ -1942,10 +1942,10 @@ msgctxt "xmlfiltertabpagegeneral|extended_tip|filtername"
msgid "Enter the name that you want to display in the list box of the XML Filter Settings dialog."
msgstr ""
-#. Tbmcc
+#. D5aZP
#: filter/uiconfig/ui/xmlfiltertabpagegeneral.ui:119
msgctxt "xmlfiltertabpagegeneral|extended_tip|extension"
-msgid "Enter the file extension to use when you open a file without specifying a filter. The file extension to used to determine which filter to use."
+msgid "Enter the file extension to use when you open a file without specifying a filter. The file extension is used to determine which filter to use."
msgstr ""
#. fZvBA
diff --git a/source/bo/helpcontent2/source/text/scalc/01.po b/source/bo/helpcontent2/source/text/scalc/01.po
index bfc58f506d6..c98c6db9555 100644
--- a/source/bo/helpcontent2/source/text/scalc/01.po
+++ b/source/bo/helpcontent2/source/text/scalc/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2022-06-09 11:50+0200\n"
+"POT-Creation-Date: 2022-06-15 22:28+0200\n"
"PO-Revision-Date: 2019-08-09 08:33+0000\n"
"Last-Translator: serval2412 <serval2412@yahoo.fr>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -69028,13 +69028,13 @@ msgctxt ""
msgid "<emph>Group</emph>: sets the minimum (maximum) value based on the lower and higher values found in the group of sparklines."
msgstr ""
-#. E6s55
+#. NNez9
#: sparklines.xhp
msgctxt ""
"sparklines.xhp\n"
"par_id51654181442414\n"
"help.text"
-msgid "<emph>Custom:</emph> enter the minimum (maximum) value for the sparkline group."
+msgid "<emph>Custom</emph>: enter the minimum (maximum) value for the sparkline group. Enter the minimum (maximum) values or use the spin buttons."
msgstr ""
#. CNBDD
diff --git a/source/bo/helpcontent2/source/text/scalc/guide.po b/source/bo/helpcontent2/source/text/scalc/guide.po
index e25c5d7f734..54c4ebe796a 100644
--- a/source/bo/helpcontent2/source/text/scalc/guide.po
+++ b/source/bo/helpcontent2/source/text/scalc/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2022-02-04 12:33+0100\n"
+"POT-Creation-Date: 2022-06-15 22:28+0200\n"
"PO-Revision-Date: 2018-11-14 11:52+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2275,14 +2275,14 @@ msgctxt ""
msgid "Copy, delete, move, or format a selection of currently visible cells."
msgstr "མིག་སྔར་མཐོང་རུང་དྲ་མིག་ནང་གི་བདམས་པའི་ནང་དོན་འདྲ་ཕབ་དང་ སུབ་པ་ སྤོ་སྒུལ་ཡང་ན་རྣམ་གཞག་ཅན་དུ་བསྒྱུར་བ།"
-#. FEuz7
+#. VccAs
#: cellcopy.xhp
msgctxt ""
"cellcopy.xhp\n"
"par_id3154371\n"
"help.text"
-msgid "All cells of the selection, including the hidden cells, are copied, deleted, moved, or formatted."
-msgstr "དྲ་མིག་གབ་པའི་དྲ་མིག་ཆུང་བ་རྣམས་འདྲ་ཕབ་དང་སུབ་པ་ སྤོ་སྒུལ་ཡང་ན་རྣམ་གཞག་ཅན་དུ་བསྒྱུར་བར་བྱ།"
+msgid "By default, all cells of the selection, including the hidden cells, are copied, deleted, moved, or formatted. Restrict the selection to visible rows choosing <menuitem>Edit - Select - Select Visible Rows Only</menuitem> or to visible columns choosing <menuitem>Edit - Select - Select Visible Columns Only</menuitem>."
+msgstr ""
#. rBtUY
#: cellreference_dragdrop.xhp
diff --git a/source/bo/helpcontent2/source/text/shared/00.po b/source/bo/helpcontent2/source/text/shared/00.po
index efaf140a9dc..fe7507b952a 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: 2022-06-09 11:50+0200\n"
+"POT-Creation-Date: 2022-06-15 22:28+0200\n"
"PO-Revision-Date: 2018-11-14 11:52+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -7963,13 +7963,22 @@ msgctxt ""
msgid "OLE Object"
msgstr "OLE བྱ་ཡུལ།"
-#. UFnGc
+#. 36hBn
+#: 00000404.xhp
+msgctxt ""
+"00000404.xhp\n"
+"par_id761566316165430\n"
+"help.text"
+msgid "Choose <menuitem>Insert - OLE Object - QR and Barcode</menuitem>."
+msgstr ""
+
+#. F9Wus
#: 00000404.xhp
msgctxt ""
"00000404.xhp\n"
"par_id3150393\n"
"help.text"
-msgid "Choose <menuitem>Insert - OLE Object - Formula Object</menuitem>."
+msgid "<variable id=\"insert_formula\">Choose <menuitem>Insert - OLE Object - Formula Object</menuitem>.</variable>"
msgstr ""
#. kQdhV
@@ -15019,13 +15028,13 @@ msgctxt ""
msgid "<variable id=\"linkae\">Choose <menuitem>Edit - Links to External Files - Modify...</menuitem> (DDE links only).</variable>"
msgstr ""
-#. qo8gR
+#. bgzTi
#: edit_menu.xhp
msgctxt ""
"edit_menu.xhp\n"
"par_id3148927\n"
"help.text"
-msgid "Select a frame, then choose <menuitem>Edit - Object - Properties</menuitem>."
+msgid "Select a frame, then choose <menuitem>Edit - OLE Object - Properties</menuitem>."
msgstr ""
#. cDcix
@@ -15037,31 +15046,31 @@ msgctxt ""
msgid "Open context menu of selected frame, choose <menuitem>Properties</menuitem>."
msgstr ""
-#. jmnro
+#. 5TkgL
#: edit_menu.xhp
msgctxt ""
"edit_menu.xhp\n"
"par_id3149259\n"
"help.text"
-msgid "<variable id=\"edit1\">Choose <menuitem>Edit - Object</menuitem>.</variable>"
+msgid "<variable id=\"edit1\">Choose <menuitem>Edit - OLE Object</menuitem>.</variable>"
msgstr ""
-#. XAqNW
+#. ApejL
#: edit_menu.xhp
msgctxt ""
"edit_menu.xhp\n"
"par_id3154966\n"
"help.text"
-msgid "<variable id=\"edit2\">Choose <menuitem>Edit - Object - Edit</menuitem>, also in the context menu of selected object.</variable>"
+msgid "<variable id=\"edit2\">Choose <menuitem>Edit - OLE Object - Edit</menuitem>, also in the context menu of selected object.</variable>"
msgstr ""
-#. sA6YF
+#. 9Gp6Z
#: edit_menu.xhp
msgctxt ""
"edit_menu.xhp\n"
"par_id3149565\n"
"help.text"
-msgid "<variable id=\"edit3\">Choose <menuitem>Edit - Object - Open</menuitem>.</variable>"
+msgid "<variable id=\"edit3\">Choose <menuitem>Edit - OLE Object - Open</menuitem>.</variable>"
msgstr ""
#. kQifg
diff --git a/source/bo/helpcontent2/source/text/shared/01.po b/source/bo/helpcontent2/source/text/shared/01.po
index 1c459657c02..32bdfee60a9 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: 2022-06-09 11:50+0200\n"
+"POT-Creation-Date: 2022-06-15 22:28+0200\n"
"PO-Revision-Date: 2018-11-14 11:52+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -11050,40 +11050,40 @@ msgctxt ""
msgid "<ahelp hid=\"sfx/ui/linkeditdialog/category\">Lists the section or object that the link refers to in the source file. If you want, you can enter a new section or object here.</ahelp>"
msgstr ""
-#. nWEMa
+#. 4FLU6
#: 02200000.xhp
msgctxt ""
"02200000.xhp\n"
"tit\n"
"help.text"
-msgid "Edit Object"
+msgid "OLE Object (Edit)"
msgstr ""
-#. nBCA7
+#. VrRPX
#: 02200000.xhp
msgctxt ""
"02200000.xhp\n"
"hd_id3146959\n"
"help.text"
-msgid "<link href=\"text/shared/01/02200000.xhp\" name=\"Object\">Edit Object</link>"
+msgid "<link href=\"text/shared/01/02200000.xhp\" name=\"Object\">OLE Object</link>"
msgstr ""
-#. 6bDqk
+#. QMGSE
#: 02200000.xhp
msgctxt ""
"02200000.xhp\n"
"par_id3154840\n"
"help.text"
-msgid "<variable id=\"object_text\"><ahelp hid=\".uno:ObjectMenue\">Lets you edit a selected object in your file that you inserted with the <item type=\"menuitem\">Insert - Object</item> command.</ahelp></variable>"
+msgid "<variable id=\"object_text\"><ahelp hid=\".uno:ObjectMenue\">Lets you edit a selected OLE object that you inserted from the <menuitem>Insert - OLE Object</menuitem> submenu.</ahelp></variable>"
msgstr ""
-#. YDqFE
+#. NWE46
#: 02200000.xhp
msgctxt ""
"02200000.xhp\n"
"par_id3153551\n"
"help.text"
-msgid "<link href=\"text/shared/01/04150000.xhp\" name=\"Insert - Object\">Insert - Object</link>"
+msgid "<embedvar href=\"text/shared/01/04150000.xhp#oleobjecth1\"/>"
msgstr ""
#. HB6iE
@@ -11122,13 +11122,13 @@ msgctxt ""
msgid "<link href=\"text/shared/01/02200100.xhp\" name=\"Edit\">Edit</link>"
msgstr ""
-#. MmR4v
+#. CP7mz
#: 02200100.xhp
msgctxt ""
"02200100.xhp\n"
"par_id3150008\n"
"help.text"
-msgid "<ahelp visibility=\"visible\" hid=\".\">Lets you edit a selected object in your file that you inserted with the <emph>Insert – Object</emph> command.</ahelp>"
+msgid "<ahelp visibility=\"visible\" hid=\".\">Lets you edit a selected OLE object that you inserted with the <menuitem>Insert – OLE Object</menuitem> command.</ahelp>"
msgstr ""
#. PXv8N
@@ -15469,13 +15469,13 @@ msgctxt ""
msgid "OLE Object (Insert Menu)"
msgstr ""
-#. hq7i8
+#. 9hJLy
#: 04150000.xhp
msgctxt ""
"04150000.xhp\n"
"hd_id3146873\n"
"help.text"
-msgid "<link href=\"text/shared/01/04150000.xhp\" name=\"Object\">OLE Object</link>"
+msgid "<variable id=\"oleobjecth1\"><link href=\"text/shared/01/04150000.xhp\" name=\"Object\">OLE Object</link></variable>"
msgstr ""
#. s2t34
diff --git a/source/bo/helpcontent2/source/text/shared/guide.po b/source/bo/helpcontent2/source/text/shared/guide.po
index f4d4877511b..cb242cdcbf9 100644
--- a/source/bo/helpcontent2/source/text/shared/guide.po
+++ b/source/bo/helpcontent2/source/text/shared/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2022-06-10 13:58+0200\n"
+"POT-Creation-Date: 2022-06-15 22:28+0200\n"
"PO-Revision-Date: 2018-11-14 11:52+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2626,13 +2626,13 @@ msgctxt ""
msgid "<bookmark_value>custom;classification levels</bookmark_value> <bookmark_value>classification levels;customizing</bookmark_value>"
msgstr ""
-#. 3wmPg
+#. NfubP
#: classification.xhp
msgctxt ""
"classification.xhp\n"
"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 <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><menuitem> - LibreOffice - Paths - Classification</menuitem> into a local folder and edit the contents."
+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 <switchinline select=\"sys\"><caseinline select=\"MAC\"><menuitem>%PRODUCTNAME - Preferences</menuitem></caseinline><defaultinline><menuitem>Tools - Options</menuitem></defaultinline></switchinline><menuitem> - %PRODUCTNAME - Paths - Classification</menuitem> into a local folder and edit the contents."
msgstr ""
#. Tcss6
@@ -11482,14 +11482,14 @@ msgctxt ""
msgid "To edit the OLE object, double-click on it."
msgstr "OLE བྱ་ཡུལ་འདི་ཆ་རྡེབ་བྱེད་ན་དེ་རྩོམ་སྒྲིག་ཆོག"
-#. FTF7g
+#. 8DbMH
#: dragdrop_table.xhp
msgctxt ""
"dragdrop_table.xhp\n"
"par_id3155389\n"
"help.text"
-msgid "Alternatively, select the object and choose <emph>Edit - Object - Edit</emph> or choose <emph>Edit</emph> from the context menu. You edit the object in its own frame within the text document, but you see the icons and menu commands needed for spreadsheets."
-msgstr "ཁྱེད་ཀྱིས་བྱ་ཡུལ་འདེམས་སྐབས་ བཀའ་ཚིག་<emph>རྩོམ་སྒྲིག་ - བྱ་ཡུལ་ - རྩོམ་སྒྲིག་</emph>སྒུལ་སློང་བྱེད་ ཡང་ན་གཡས་མཐེབ་ཚལ་ཐོའི་ནང་བཀའ་ཚིག་<emph>རྩོམ་སྒྲིག་སྒུལ་སློང་བྱེད་</emph>བྱ་ཡུལ་འདི་ཡི་གེ་ལས་སྣོན་ཡིག་ཚགས་ནང་རང་གི་སྒྲོམ་ནང་མངོན་ཡིན་འང། ཁྱེད་ཀྱིས་ལས་དེབ་དགོས་ངེས་ཀྱི་རིས་རྟགས་དང་ཚལ་ཐོའི་བཀའ་ཚིག་བཀའ་ཚིག་མཐོང་ཐུབ།"
+msgid "Alternatively, select the object and choose <menuitem>Edit - OLE Object - Edit</menuitem> or choose <menuitem>Edit</menuitem> from the context menu. You edit the object in its own frame within the text document, but you see the icons and menu commands needed for spreadsheets."
+msgstr ""
#. uFCGU
#: dragdrop_table.xhp
@@ -22660,15 +22660,6 @@ msgctxt ""
msgid "The QR and Barcode generation feature allows you to encode any text string or URL as a barcode or a QR code and insert it as a graphical object in a document for scanning."
msgstr ""
-#. N32UF
-#: qrcode.xhp
-msgctxt ""
-"qrcode.xhp\n"
-"par_id761566316165430\n"
-"help.text"
-msgid "Choose <menuitem>Insert - Object - QR and Barcode</menuitem>."
-msgstr ""
-
#. UCeXG
#: qrcode.xhp
msgctxt ""
diff --git a/source/bo/helpcontent2/source/text/smath/guide.po b/source/bo/helpcontent2/source/text/smath/guide.po
index 1d4ef4df1fb..2291c1e8bb3 100644
--- a/source/bo/helpcontent2/source/text/smath/guide.po
+++ b/source/bo/helpcontent2/source/text/smath/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2022-01-31 18:20+0100\n"
+"POT-Creation-Date: 2022-06-15 22:28+0200\n"
"PO-Revision-Date: 2017-05-09 17:31+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -835,14 +835,14 @@ msgctxt ""
msgid "Select the formula"
msgstr "སྤྱི་འགྲོས་འདེམས་"
-#. bN6uQ
+#. F2ipo
#: keyboard.xhp
msgctxt ""
"keyboard.xhp\n"
"par_id3150213\n"
"help.text"
-msgid "Choose the command <emph>Insert - Object - Formula</emph>."
-msgstr "བཀའ་ཚིག་འདེམས་དེ་<emph>བསྒར་འཛུད་ - བྱ་ཡུལ་ - སྤྱི་འགྲོས།</emph>"
+msgid "Choose the command <menuitem>Insert - OLE Object - Formula Object</menuitem>."
+msgstr ""
#. aowxC
#: keyboard.xhp
@@ -853,14 +853,14 @@ msgctxt ""
msgid "Inserting a Formula using a Window"
msgstr "སྒེའུ་ཁུང་སྤྱད་དེ་སྤྱི་འགྲོས་བསྒར་འཛུད་བྱེད་"
-#. Tqx4F
+#. Jvobx
#: keyboard.xhp
msgctxt ""
"keyboard.xhp\n"
"par_id3149875\n"
"help.text"
-msgid "If you want to use the $[officename] Math interface to edit a formula, choose the command <emph>Insert - Object - Formula</emph> without any text selected."
-msgstr "གལ་སྲིད་$[officename] སྤྱི་འགྲོས་འཆར་ངོས་རྩོམ་སྒྲིག་སྤྱི་འགྲོས་སྤྱད་ན་ཡི་གེའི་ཆ་རྐྱེན་གང་རུང་ཞིག་འདེམས་མེད་པའི་འོག་བཀའ་ཚིག་འདེམས་ཏེ་<emph>བསྒར་འཛུད་ - བྱ་ཡུལ་ - སྤྱི་འགྲོས་</emph>བྱེད།"
+msgid "If you want to use the $[officename] Math interface to edit a formula, choose the command <menuitem>Insert - OLE Object - Formula Object</menuitem> without any text selected."
+msgstr ""
#. sEBBM
#: keyboard.xhp
@@ -943,13 +943,13 @@ msgctxt ""
msgid "You want to insert a summation formula like \"summation of s^k from k = 0 to n\" at the cursor in a Writer text document."
msgstr ""
-#. 5oKcr
+#. kEJWp
#: limits.xhp
msgctxt ""
"limits.xhp\n"
"par_id8811304\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Insert - Object - Formula</item>."
+msgid "<embedvar href=\"text/shared/00/00000404.xhp#insert_formula\"/>"
msgstr ""
#. qAFch
@@ -1033,13 +1033,13 @@ msgctxt ""
msgid "In the same way, you can enter an Integral formula with limits. When you click an icon from the Elements pane, the assigned text command is inserted in the input window. If you know the text commands, you can enter the commands directly in the input window."
msgstr ""
-#. q8yAH
+#. 57GSa
#: limits.xhp
msgctxt ""
"limits.xhp\n"
"par_id5866267\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Insert - Object - Formula</item>."
+msgid "<embedvar href=\"text/shared/00/00000404.xhp#insert_formula\"/>"
msgstr ""
#. VAoyi
diff --git a/source/bo/helpcontent2/source/text/swriter/01.po b/source/bo/helpcontent2/source/text/swriter/01.po
index 7036ff8d1f5..284d5dd5ab4 100644
--- a/source/bo/helpcontent2/source/text/swriter/01.po
+++ b/source/bo/helpcontent2/source/text/swriter/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2022-06-09 11:50+0200\n"
+"POT-Creation-Date: 2022-06-15 22:28+0200\n"
"PO-Revision-Date: 2018-10-21 20:04+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -18169,22 +18169,22 @@ msgctxt ""
msgid "<emph>Right paragraph border:</emph> the object is positioned considering the width of the indent space available to the right of the paragraph."
msgstr ""
-#. UWViJ
+#. QrQHe
#: 05060100.xhp
msgctxt ""
"05060100.xhp\n"
"par_id171629211714933\n"
"help.text"
-msgid "<emph>Left page border:</emph> the object is positioned considering the space available between the left page border and the left paragraph border."
+msgid "<menuitem>Left of page text area</menuitem>: the object is positioned in the region between the left edge of the page and the left margin plus any left page padding."
msgstr ""
-#. F9qZf
+#. DzD2e
#: 05060100.xhp
msgctxt ""
"05060100.xhp\n"
"par_id131629211715280\n"
"help.text"
-msgid "<emph>Right page border:</emph> the object is positioned considering the space available between the right page border and the right paragraph border."
+msgid "<menuitem>Right of page text area</menuitem>: the object is positioned in the region between the right edge of the page and the right margin plus any right page padding."
msgstr ""
#. norkq
diff --git a/source/bo/helpcontent2/source/text/swriter/guide.po b/source/bo/helpcontent2/source/text/swriter/guide.po
index 664070ed1c7..1b47bf75194 100644
--- a/source/bo/helpcontent2/source/text/swriter/guide.po
+++ b/source/bo/helpcontent2/source/text/swriter/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2022-06-09 11:50+0200\n"
+"POT-Creation-Date: 2022-06-15 22:28+0200\n"
"PO-Revision-Date: 2018-11-12 13:20+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -43,13 +43,13 @@ msgctxt ""
msgid "<variable id=\"anchor_object\"><link href=\"text/swriter/guide/anchor_object.xhp\" name=\"Positioning Objects\">Positioning Objects</link></variable>"
msgstr "<variable id=\"anchor_object\"><link href=\"text/swriter/guide/anchor_object.xhp\" name=\"གནས་ངེས་བྱ་ཡུལ་\">གནས་ངེས་བྱ་ཡུལ་</link></variable>"
-#. MDGBe
+#. WBVDD
#: anchor_object.xhp
msgctxt ""
"anchor_object.xhp\n"
"par_id181634295881266\n"
"help.text"
-msgid "An object, such as an image or frame, is positioned within a document using anchors attached to other elements."
+msgid "An object, such as an image or frame, is positioned within a document using an anchor attached to another element."
msgstr ""
#. FAyRX
diff --git a/source/bo/svx/messages.po b/source/bo/svx/messages.po
index 9491b466688..1be50eb483e 100644
--- a/source/bo/svx/messages.po
+++ b/source/bo/svx/messages.po